From f04e38b8aeafe2aa9fb91e05d7e68148b995fc2b Mon Sep 17 00:00:00 2001 From: 67 <67@67.sigma> Date: Tue, 16 Jun 2026 15:18:44 +0800 Subject: [PATCH] Initial commit: DayZ memory C++ port with DMA backend and overlay --- .gitignore | 11 + CMakeLists.txt | 312 + TODO.md | 3 + config/config.cfg | 36 + config/item_filters.json | 41 + external/lumin/framework/data/fonts.h | 57510 ++++++++++++++++ external/lumin/framework/data/uicons/LICENSE | 11 + .../data/uicons/uicons-regular-rounded.ttf | Bin 0 -> 1092548 bytes external/lumin/framework/gui.cpp | 597 + external/lumin/framework/headers/draw.h | 66 + external/lumin/framework/headers/flags.h | 477 + external/lumin/framework/headers/fonts.h | 34 + external/lumin/framework/headers/functions.h | 253 + external/lumin/framework/headers/includes.h | 17 + external/lumin/framework/headers/widgets.h | 107 + external/lumin/framework/helpers/draw.cpp | 1208 + external/lumin/framework/helpers/fonts.cpp | 112 + external/lumin/framework/settings/colors.h | 20 + external/lumin/framework/settings/elements.h | 24 + external/lumin/framework/settings/variables.h | 47 + external/lumin/framework/widgets/helpers.cpp | 1242 + external/lumin/framework/widgets/notify.cpp | 164 + .../lumin/framework/widgets/text_field.cpp | 1501 + external/lumin/framework/widgets/widgets.cpp | 1850 + external/lumin/framework/widgets/window.cpp | 1666 + external/lumin/thirdparty/freetype/FTL.TXT | 169 + .../lumin/thirdparty/freetype/LICENSE.TXT | 42 + .../include/freetype/config/ftconfig.h | 51 + .../include/freetype/config/ftheader.h | 836 + .../include/freetype/config/ftmodule.h | 33 + .../include/freetype/config/ftoption.h | 1029 + .../include/freetype/config/ftstdlib.h | 185 + .../include/freetype/config/integer-types.h | 250 + .../include/freetype/config/mac-support.h | 49 + .../include/freetype/config/public-macros.h | 138 + .../freetype/include/freetype/freetype.h | 5050 ++ .../freetype/include/freetype/ftadvanc.h | 188 + .../freetype/include/freetype/ftbbox.h | 101 + .../freetype/include/freetype/ftbdf.h | 212 + .../freetype/include/freetype/ftbitmap.h | 329 + .../freetype/include/freetype/ftbzip2.h | 102 + .../freetype/include/freetype/ftcache.h | 1087 + .../freetype/include/freetype/ftchapters.h | 149 + .../freetype/include/freetype/ftcid.h | 167 + .../freetype/include/freetype/ftcolor.h | 1718 + .../freetype/include/freetype/ftdriver.h | 1250 + .../freetype/include/freetype/fterrdef.h | 283 + .../freetype/include/freetype/fterrors.h | 296 + .../freetype/include/freetype/ftfntfmt.h | 93 + .../freetype/include/freetype/ftgasp.h | 143 + .../freetype/include/freetype/ftglyph.h | 750 + .../freetype/include/freetype/ftgxval.h | 354 + .../freetype/include/freetype/ftgzip.h | 151 + .../freetype/include/freetype/ftimage.h | 1278 + .../freetype/include/freetype/ftincrem.h | 348 + .../freetype/include/freetype/ftlcdfil.h | 323 + .../freetype/include/freetype/ftlist.h | 296 + .../freetype/include/freetype/ftlogging.h | 184 + .../freetype/include/freetype/ftlzw.h | 100 + .../freetype/include/freetype/ftmac.h | 289 + .../freetype/include/freetype/ftmm.h | 755 + .../freetype/include/freetype/ftmodapi.h | 807 + .../freetype/include/freetype/ftmoderr.h | 204 + .../freetype/include/freetype/ftotval.h | 206 + .../freetype/include/freetype/ftoutln.h | 588 + .../freetype/include/freetype/ftparams.h | 218 + .../freetype/include/freetype/ftpfr.h | 179 + .../freetype/include/freetype/ftrender.h | 244 + .../freetype/include/freetype/ftsizes.h | 159 + .../freetype/include/freetype/ftsnames.h | 272 + .../freetype/include/freetype/ftstroke.h | 773 + .../freetype/include/freetype/ftsynth.h | 83 + .../freetype/include/freetype/ftsystem.h | 352 + .../freetype/include/freetype/fttrigon.h | 350 + .../freetype/include/freetype/fttypes.h | 614 + .../freetype/include/freetype/ftwinfnt.h | 276 + .../freetype/include/freetype/otsvg.h | 336 + .../freetype/include/freetype/t1tables.h | 793 + .../freetype/include/freetype/ttnameid.h | 1235 + .../freetype/include/freetype/tttables.h | 855 + .../freetype/include/freetype/tttags.h | 124 + .../thirdparty/freetype/include/ft2build.h | 42 + .../thirdparty/freetype/win64/freetype.lib | Bin 0 -> 4592880 bytes external/lumin/thirdparty/imgui/LICENSE.txt | 21 + .../imgui/backends/imgui_impl_dx11.cpp | 606 + .../imgui/backends/imgui_impl_dx11.h | 32 + .../imgui/backends/imgui_impl_win32.cpp | 933 + .../imgui/backends/imgui_impl_win32.h | 52 + .../example_win32_directx11.vcxproj | 205 + .../example_win32_directx11.vcxproj.filters | 138 + .../examples/example_win32_directx11/main.cpp | 322 + external/lumin/thirdparty/imgui/imconfig.h | 140 + external/lumin/thirdparty/imgui/imgui.cpp | 16684 +++++ external/lumin/thirdparty/imgui/imgui.h | 3731 + .../lumin/thirdparty/imgui/imgui_draw.cpp | 5612 ++ .../lumin/thirdparty/imgui/imgui_freetype.cpp | 950 + .../lumin/thirdparty/imgui/imgui_freetype.h | 51 + .../lumin/thirdparty/imgui/imgui_internal.h | 3526 + .../lumin/thirdparty/imgui/imgui_tables.cpp | 4464 ++ .../lumin/thirdparty/imgui/imgui_widgets.cpp | 10250 +++ .../lumin/thirdparty/imgui/imstb_rectpack.h | 627 + .../lumin/thirdparty/imgui/imstb_textedit.h | 1469 + .../lumin/thirdparty/imgui/imstb_truetype.h | 5085 ++ .../imgui/misc/freetype/imgui_freetype.h | 5 + src/Config.cpp | 133 + src/Config.h | 66 + src/Core/Models.h | 234 + src/Core/RuntimeSession.h | 9 + src/EmbeddedMaps.h | 11 + src/Logger.h | 49 + src/Memory/MemoryValidation.h | 156 + src/Memory/VmmAccessor.cpp | 299 + src/Memory/VmmAccessor.h | 152 + src/Offsets.h | 166 + src/Overlay/GameOverlay.cpp | 850 + src/Overlay/GameOverlay.h | 190 + src/Overlay/MenuBridge.h | 77 + src/Overlay/OverlayWindow.cpp | 296 + src/Overlay/OverlayWindow.h | 74 + src/Readers/BulletTableReader.cpp | 261 + src/Readers/BulletTableReader.h | 73 + src/Readers/ClientScoreboardReader.cpp | 238 + src/Readers/ClientScoreboardReader.h | 64 + src/Readers/EntityCategoryProjector.cpp | 298 + src/Readers/EntityCategoryProjector.h | 93 + src/Readers/EntityTypeCache.cpp | 204 + src/Readers/EntityTypeCache.h | 91 + src/Readers/FarEntityListReader.cpp | 417 + src/Readers/FarEntityListReader.h | 87 + src/Readers/ItemFilterCatalog.cpp | 271 + src/Readers/ItemFilterCatalog.h | 81 + src/Readers/ItemListReader.cpp | 379 + src/Readers/ItemListReader.h | 97 + src/Readers/NearEntityListReader.cpp | 158 + src/Readers/NearEntityListReader.h | 33 + src/Readers/SlowEntityListReader.cpp | 336 + src/Readers/SlowEntityListReader.h | 86 + src/Resolvers/BaseObjectResolver.cpp | 99 + src/Resolvers/BaseObjectResolver.h | 42 + src/Resolvers/LocalPlayerResolver.cpp | 98 + src/Resolvers/LocalPlayerResolver.h | 27 + src/Resolvers/NetworkMetadataReader.cpp | 109 + src/Resolvers/NetworkMetadataReader.h | 26 + src/Runtime/DayZRuntimeService.cpp | 1359 + src/Runtime/DayZRuntimeService.h | 296 + src/RuntimeOffsets.h | 60 + src/SigScanner/SigScanner.cpp | 360 + src/SigScanner/SigScanner.h | 85 + src/Web/BulletTrackCache.cpp | 144 + src/Web/BulletTrackCache.h | 65 + src/Web/MapRegistry.cpp | 126 + src/Web/MapRegistry.h | 38 + src/Web/MapTileService.cpp | 158 + src/Web/MapTileService.h | 36 + src/Web/WebRadarServer.cpp | 463 + src/Web/WebRadarServer.h | 84 + src/Web/WebSnapshotService.cpp | 453 + src/Web/WebSnapshotService.h | 34 + src/Web/stb_impl.cpp | 20 + src/main.cpp | 128 + webroot/app.js | 2424 + webroot/index.html | 134 + webroot/style.css | 783 + 163 files changed, 163380 insertions(+) create mode 100644 .gitignore create mode 100644 CMakeLists.txt create mode 100644 TODO.md create mode 100644 config/config.cfg create mode 100644 config/item_filters.json create mode 100644 external/lumin/framework/data/fonts.h create mode 100644 external/lumin/framework/data/uicons/LICENSE create mode 100644 external/lumin/framework/data/uicons/uicons-regular-rounded.ttf create mode 100644 external/lumin/framework/gui.cpp create mode 100644 external/lumin/framework/headers/draw.h create mode 100644 external/lumin/framework/headers/flags.h create mode 100644 external/lumin/framework/headers/fonts.h create mode 100644 external/lumin/framework/headers/functions.h create mode 100644 external/lumin/framework/headers/includes.h create mode 100644 external/lumin/framework/headers/widgets.h create mode 100644 external/lumin/framework/helpers/draw.cpp create mode 100644 external/lumin/framework/helpers/fonts.cpp create mode 100644 external/lumin/framework/settings/colors.h create mode 100644 external/lumin/framework/settings/elements.h create mode 100644 external/lumin/framework/settings/variables.h create mode 100644 external/lumin/framework/widgets/helpers.cpp create mode 100644 external/lumin/framework/widgets/notify.cpp create mode 100644 external/lumin/framework/widgets/text_field.cpp create mode 100644 external/lumin/framework/widgets/widgets.cpp create mode 100644 external/lumin/framework/widgets/window.cpp create mode 100644 external/lumin/thirdparty/freetype/FTL.TXT create mode 100644 external/lumin/thirdparty/freetype/LICENSE.TXT create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/ftconfig.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/ftheader.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/ftmodule.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/ftoption.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/ftstdlib.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/integer-types.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/mac-support.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/config/public-macros.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/freetype.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftadvanc.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftbbox.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftbdf.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftbitmap.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftbzip2.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftcache.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftchapters.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftcid.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftcolor.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftdriver.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/fterrdef.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/fterrors.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftfntfmt.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftgasp.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftglyph.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftgxval.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftgzip.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftimage.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftincrem.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftlcdfil.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftlist.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftlogging.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftlzw.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftmac.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftmm.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftmodapi.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftmoderr.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftotval.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftoutln.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftparams.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftpfr.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftrender.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftsizes.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftsnames.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftstroke.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftsynth.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftsystem.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/fttrigon.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/fttypes.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ftwinfnt.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/otsvg.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/t1tables.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/ttnameid.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/tttables.h create mode 100644 external/lumin/thirdparty/freetype/include/freetype/tttags.h create mode 100644 external/lumin/thirdparty/freetype/include/ft2build.h create mode 100644 external/lumin/thirdparty/freetype/win64/freetype.lib create mode 100644 external/lumin/thirdparty/imgui/LICENSE.txt create mode 100644 external/lumin/thirdparty/imgui/backends/imgui_impl_dx11.cpp create mode 100644 external/lumin/thirdparty/imgui/backends/imgui_impl_dx11.h create mode 100644 external/lumin/thirdparty/imgui/backends/imgui_impl_win32.cpp create mode 100644 external/lumin/thirdparty/imgui/backends/imgui_impl_win32.h create mode 100644 external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj create mode 100644 external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters create mode 100644 external/lumin/thirdparty/imgui/examples/example_win32_directx11/main.cpp create mode 100644 external/lumin/thirdparty/imgui/imconfig.h create mode 100644 external/lumin/thirdparty/imgui/imgui.cpp create mode 100644 external/lumin/thirdparty/imgui/imgui.h create mode 100644 external/lumin/thirdparty/imgui/imgui_draw.cpp create mode 100644 external/lumin/thirdparty/imgui/imgui_freetype.cpp create mode 100644 external/lumin/thirdparty/imgui/imgui_freetype.h create mode 100644 external/lumin/thirdparty/imgui/imgui_internal.h create mode 100644 external/lumin/thirdparty/imgui/imgui_tables.cpp create mode 100644 external/lumin/thirdparty/imgui/imgui_widgets.cpp create mode 100644 external/lumin/thirdparty/imgui/imstb_rectpack.h create mode 100644 external/lumin/thirdparty/imgui/imstb_textedit.h create mode 100644 external/lumin/thirdparty/imgui/imstb_truetype.h create mode 100644 external/lumin/thirdparty/imgui/misc/freetype/imgui_freetype.h create mode 100644 src/Config.cpp create mode 100644 src/Config.h create mode 100644 src/Core/Models.h create mode 100644 src/Core/RuntimeSession.h create mode 100644 src/EmbeddedMaps.h create mode 100644 src/Logger.h create mode 100644 src/Memory/MemoryValidation.h create mode 100644 src/Memory/VmmAccessor.cpp create mode 100644 src/Memory/VmmAccessor.h create mode 100644 src/Offsets.h create mode 100644 src/Overlay/GameOverlay.cpp create mode 100644 src/Overlay/GameOverlay.h create mode 100644 src/Overlay/MenuBridge.h create mode 100644 src/Overlay/OverlayWindow.cpp create mode 100644 src/Overlay/OverlayWindow.h create mode 100644 src/Readers/BulletTableReader.cpp create mode 100644 src/Readers/BulletTableReader.h create mode 100644 src/Readers/ClientScoreboardReader.cpp create mode 100644 src/Readers/ClientScoreboardReader.h create mode 100644 src/Readers/EntityCategoryProjector.cpp create mode 100644 src/Readers/EntityCategoryProjector.h create mode 100644 src/Readers/EntityTypeCache.cpp create mode 100644 src/Readers/EntityTypeCache.h create mode 100644 src/Readers/FarEntityListReader.cpp create mode 100644 src/Readers/FarEntityListReader.h create mode 100644 src/Readers/ItemFilterCatalog.cpp create mode 100644 src/Readers/ItemFilterCatalog.h create mode 100644 src/Readers/ItemListReader.cpp create mode 100644 src/Readers/ItemListReader.h create mode 100644 src/Readers/NearEntityListReader.cpp create mode 100644 src/Readers/NearEntityListReader.h create mode 100644 src/Readers/SlowEntityListReader.cpp create mode 100644 src/Readers/SlowEntityListReader.h create mode 100644 src/Resolvers/BaseObjectResolver.cpp create mode 100644 src/Resolvers/BaseObjectResolver.h create mode 100644 src/Resolvers/LocalPlayerResolver.cpp create mode 100644 src/Resolvers/LocalPlayerResolver.h create mode 100644 src/Resolvers/NetworkMetadataReader.cpp create mode 100644 src/Resolvers/NetworkMetadataReader.h create mode 100644 src/Runtime/DayZRuntimeService.cpp create mode 100644 src/Runtime/DayZRuntimeService.h create mode 100644 src/RuntimeOffsets.h create mode 100644 src/SigScanner/SigScanner.cpp create mode 100644 src/SigScanner/SigScanner.h create mode 100644 src/Web/BulletTrackCache.cpp create mode 100644 src/Web/BulletTrackCache.h create mode 100644 src/Web/MapRegistry.cpp create mode 100644 src/Web/MapRegistry.h create mode 100644 src/Web/MapTileService.cpp create mode 100644 src/Web/MapTileService.h create mode 100644 src/Web/WebRadarServer.cpp create mode 100644 src/Web/WebRadarServer.h create mode 100644 src/Web/WebSnapshotService.cpp create mode 100644 src/Web/WebSnapshotService.h create mode 100644 src/Web/stb_impl.cpp create mode 100644 src/main.cpp create mode 100644 webroot/app.js create mode 100644 webroot/index.html create mode 100644 webroot/style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85a3aa4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +build/ +cmake-build-*/ +.idea/ +.claude/ +maps/ +vpcc +out/ +*.obj +*.exe +*.pdb +*.ilk diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d64483c --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,312 @@ +cmake_minimum_required(VERSION 3.20) +project(dayz-memory-cpp CXX) +set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + +# ------------------------------------------------------------------------- +# Platform guard +# ------------------------------------------------------------------------- +if(NOT WIN32) + message(FATAL_ERROR "dayz-memory-cpp is Windows-only (requires VolkDMA / WinAPI)") +endif() + +# ------------------------------------------------------------------------- +# Paths to VolkDMA (sibling checkout) +# ------------------------------------------------------------------------- +set(VOLKDMA_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/../dayz-dma/dma-dayz-cpp-master/VolkDMA") + +# ------------------------------------------------------------------------- +# Dependencies — nlohmann/json, spdlog via FetchContent; ImGui from local copy +# ------------------------------------------------------------------------- +include(FetchContent) + +FetchContent_Declare(json + URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz + URL_HASH SHA256=d6c65aca6b1ed68e7a182f4757257b107ae403032760ed6ef121c9d55e81757d +) + +FetchContent_Declare(spdlog + GIT_REPOSITORY https://github.com/gabime/spdlog.git + GIT_TAG v1.14.1 + GIT_SHALLOW TRUE +) + +# cpp-httplib — header-only HTTP/1.1 server used by WebRadarServer +FetchContent_Declare(httplib + GIT_REPOSITORY https://github.com/yhirose/cpp-httplib.git + GIT_TAG v0.18.1 + GIT_SHALLOW TRUE +) + +# stb — single-file image load/write libraries +FetchContent_Declare(stb + GIT_REPOSITORY https://github.com/nothings/stb.git + GIT_TAG master + GIT_SHALLOW TRUE +) + +FetchContent_MakeAvailable(json spdlog httplib stb) + +# Vendored Lumin ImGui (1.91.3 + FreeType) and its menu framework. +set(LUMIN_DIR "${CMAKE_CURRENT_SOURCE_DIR}/external/lumin") +set(IMGUI_DIR "${LUMIN_DIR}/thirdparty/imgui") +set(FREETYPE_DIR "${LUMIN_DIR}/thirdparty/freetype") +set(FRAMEWORK_DIR "${LUMIN_DIR}/framework") + +# ------------------------------------------------------------------------- +# ImGui sources (Lumin's bundled ImGui + FreeType atlas builder) +# ------------------------------------------------------------------------- +set(IMGUI_SOURCES + "${IMGUI_DIR}/imgui.cpp" + "${IMGUI_DIR}/imgui_draw.cpp" + "${IMGUI_DIR}/imgui_tables.cpp" + "${IMGUI_DIR}/imgui_widgets.cpp" + "${IMGUI_DIR}/imgui_freetype.cpp" + "${IMGUI_DIR}/backends/imgui_impl_win32.cpp" + "${IMGUI_DIR}/backends/imgui_impl_dx11.cpp" +) + +# ------------------------------------------------------------------------- +# Lumin menu framework sources (the actual menu UI) +# ------------------------------------------------------------------------- +set(FRAMEWORK_SOURCES + "${FRAMEWORK_DIR}/gui.cpp" + "${FRAMEWORK_DIR}/helpers/draw.cpp" + "${FRAMEWORK_DIR}/helpers/fonts.cpp" + "${FRAMEWORK_DIR}/widgets/helpers.cpp" + "${FRAMEWORK_DIR}/widgets/notify.cpp" + "${FRAMEWORK_DIR}/widgets/text_field.cpp" + "${FRAMEWORK_DIR}/widgets/widgets.cpp" + "${FRAMEWORK_DIR}/widgets/window.cpp" +) + +# ------------------------------------------------------------------------- +# Sources — project + VolkDMA implementation files +# ------------------------------------------------------------------------- +file(GLOB_RECURSE PROJECT_SOURCES "src/*.cpp") +# Explicit list ensures new files are picked up without a CMake cache reset. +list(APPEND PROJECT_SOURCES + "${CMAKE_CURRENT_SOURCE_DIR}/src/SigScanner/SigScanner.cpp" + "${CMAKE_CURRENT_SOURCE_DIR}/src/Overlay/OverlayWindow.cpp" + "${CMAKE_CURRENT_SOURCE_DIR}/src/Overlay/GameOverlay.cpp" +) +list(REMOVE_DUPLICATES PROJECT_SOURCES) + +set(VOLKDMA_SOURCES + "${VOLKDMA_ROOT}/src/dma.cpp" + "${VOLKDMA_ROOT}/src/process.cpp" + "${VOLKDMA_ROOT}/src/inputstate.cpp" +) + +# ------------------------------------------------------------------------- +# Embed map PNGs as Windows RCDATA resources +# +# Maps present in maps/ at configure time are baked into the binary so the +# server works out-of-the-box without copying anything next to the exe. +# A PNG placed on disk at runtime (maps/.png next to the exe) still +# takes priority, so maps can be updated without rebuilding. +# +# Re-run CMake if you add new PNGs to maps/ after the initial configure. +# ------------------------------------------------------------------------- +set(MAPS_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/maps") +set(EMBEDDED_MAPS_RC "${CMAKE_CURRENT_BINARY_DIR}/maps_embedded.rc") +set(EMBEDDED_MAPS_CPP "${CMAKE_CURRENT_BINARY_DIR}/EmbeddedMaps.cpp") + +set(MAP_IDS chernarusplus livonia namalsk banov deadfall deerisle esseker lux sakhal takistan alteria) +set(MAP_RIDS 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011) + +set(RC_LINES "") +set(CPP_CASES "") +foreach(MAP_ID MAP_RID IN ZIP_LISTS MAP_IDS MAP_RIDS) + if(EXISTS "${MAPS_SOURCE_DIR}/${MAP_ID}.png") + string(APPEND RC_LINES "${MAP_RID} RCDATA \"${MAPS_SOURCE_DIR}/${MAP_ID}.png\"\n") + string(APPEND CPP_CASES " if (mapId == \"${MAP_ID}\") return LoadRcData(${MAP_RID});\n") + message(STATUS "Embedding map: ${MAP_ID}") + else() + message(STATUS "Skipping map (not found): ${MAP_ID}") + endif() +endforeach() + +file(WRITE "${EMBEDDED_MAPS_RC}" "// Auto-generated by CMake — do not edit.\n${RC_LINES}") +file(WRITE "${EMBEDDED_MAPS_CPP}" +"// Auto-generated by CMake — do not edit. +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include +#include +#include +#include \"EmbeddedMaps.h\" + +static std::pair LoadRcData(int resourceId) { + HRSRC hRes = FindResource(nullptr, MAKEINTRESOURCE(resourceId), RT_RCDATA); + if (!hRes) return {nullptr, 0}; + HGLOBAL hData = LoadResource(nullptr, hRes); + if (!hData) return {nullptr, 0}; + const void* ptr = LockResource(hData); + DWORD sz = SizeofResource(nullptr, hRes); + if (!ptr || sz == 0) return {nullptr, 0}; + return {static_cast(ptr), sz}; +} + +std::pair GetEmbeddedMap(const std::string& mapId) { +${CPP_CASES} return {nullptr, 0}; +} +") + +add_executable(dayz-memory-cpp + ${PROJECT_SOURCES} + ${VOLKDMA_SOURCES} + ${IMGUI_SOURCES} + ${FRAMEWORK_SOURCES} +) + +# Wire in the generated RC + CPP files. +target_sources(dayz-memory-cpp PRIVATE + "${EMBEDDED_MAPS_RC}" + "${EMBEDDED_MAPS_CPP}" +) + +# ------------------------------------------------------------------------- +# Include directories +# ------------------------------------------------------------------------- +target_include_directories(dayz-memory-cpp PRIVATE + # Own source tree + "${CMAKE_CURRENT_SOURCE_DIR}/src" + + # ImGui core + Win32/DX11 backends + "${IMGUI_DIR}" + "${IMGUI_DIR}/backends" + + # FreeType headers (atlas builder) + "${FREETYPE_DIR}/include" + + # Lumin framework root — lets sources include "framework/headers/includes.h" + "${LUMIN_DIR}" + "${FRAMEWORK_DIR}" + + # VolkDMA repo root — VolkDMA's own source files use paths like + # "include/VolkDMA/dma.hh" and "external/vmm/vmmdll.h" that are + # relative to this root, so this entry must come first. + "${VOLKDMA_ROOT}" + + # VolkDMA public headers (provides etc.) + "${VOLKDMA_ROOT}/include" + + # VolkLog (required by VolkDMA's dma.cpp / process.cpp) + "${VOLKDMA_ROOT}/external/VolkLog/include" + + # Raw vmmdll / leechcore headers (used in VmmAccessor.cpp + VolkDMA sources) + "${VOLKDMA_ROOT}/external/vmm" + "${VOLKDMA_ROOT}/external/leechcore" + + # cpp-httplib (header-only; FetchContent populates httplib_SOURCE_DIR) + "${httplib_SOURCE_DIR}" + + # stb (header-only image library; stb_impl.cpp provides the implementation) + "${stb_SOURCE_DIR}" +) + +# ------------------------------------------------------------------------- +# Link directories +# ------------------------------------------------------------------------- +target_link_directories(dayz-memory-cpp PRIVATE + "${VOLKDMA_ROOT}/external/vmm" + "${VOLKDMA_ROOT}/external/leechcore" +) + +# ------------------------------------------------------------------------- +# Link libraries +# ------------------------------------------------------------------------- +target_link_libraries(dayz-memory-cpp PRIVATE + nlohmann_json::nlohmann_json + spdlog::spdlog + vmm + leechcore + # FreeType (prebuilt x64) — Lumin font atlas builder + "${FREETYPE_DIR}/win64/freetype.lib" + # DirectX 11 + DXGI (for ImGui DX11 window) + d3d11 + dxgi + # WinSock2 — required by cpp-httplib on Windows + Ws2_32 +) + +# ------------------------------------------------------------------------- +# Post-build: copy VolkDMA runtime DLLs next to the executable. +# Without these (vmm.dll, leechcore.dll, FTD3XX.dll) the process exits with +# 0xC0000135 (STATUS_DLL_NOT_FOUND) immediately on launch. +# ------------------------------------------------------------------------- +set(VOLKDMA_DLLS_DIR "${VOLKDMA_ROOT}/dlls") +foreach(DLL vmm.dll leechcore.dll FTD3XX.dll) + add_custom_command(TARGET dayz-memory-cpp POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_if_different + "${VOLKDMA_DLLS_DIR}/${DLL}" + "$/${DLL}" + COMMENT "Copying ${DLL} to output directory" + ) +endforeach() + +# Copy webroot/ directory next to the executable so the HTTP server can serve it. +add_custom_command(TARGET dayz-memory-cpp POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + "${CMAKE_CURRENT_SOURCE_DIR}/webroot" + "$/webroot" + COMMENT "Copying webroot to output directory" +) + +# Copy the Lumin icon font next to the executable so the menu's tab icons load +# (flaticon_uicons_regular_rounded_path is resolved relative to the work dir). +add_custom_command(TARGET dayz-memory-cpp POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + "${FRAMEWORK_DIR}/data/uicons" + "$/data/uicons" + COMMENT "Copying Lumin uicons font to output directory" +) + +# Copy config/ directory next to the executable (config.cfg, item_filters.json). +add_custom_command(TARGET dayz-memory-cpp POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + "${CMAKE_CURRENT_SOURCE_DIR}/config" + "$/config" + COMMENT "Copying config to output directory" +) + +# Copy maps/ directory next to the executable so MapTileService can find PNGs. +# maps/ is git-ignored (user-supplied), so only copy when it exists. +if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/maps") + add_custom_command(TARGET dayz-memory-cpp POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy_directory + "${CMAKE_CURRENT_SOURCE_DIR}/maps" + "$/maps" + COMMENT "Copying maps to output directory" + ) +endif() + +# ------------------------------------------------------------------------- +# Compiler definitions +# ------------------------------------------------------------------------- +target_compile_definitions(dayz-memory-cpp PRIVATE + _WIN32_WINNT=0x0601 + # Build the ImGui font atlas with FreeType (Lumin requirement; also set in + # the vendored imconfig.h, kept here so every TU agrees). + IMGUI_ENABLE_FREETYPE + IMGUI_DEFINE_MATH_OPERATORS + # WIN32_LEAN_AND_MEAN is intentionally NOT set globally: vmmdll.h requires + # NTSTATUS from , which windows.h omits when LEAN_AND_MEAN is + # defined. Our own headers define it locally before including . + NOMINMAX +) + +# ------------------------------------------------------------------------- +# MSVC-specific flags +# ------------------------------------------------------------------------- +if(MSVC) + target_compile_options(dayz-memory-cpp PRIVATE + /W4 + /WX- # vmmdll / VolkDMA headers generate some W4 noise + /permissive- + /utf-8 + ) +endif() diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..6d68bcd --- /dev/null +++ b/TODO.md @@ -0,0 +1,3 @@ +# TODO + +(none) diff --git a/config/config.cfg b/config/config.cfg new file mode 100644 index 0000000..a9180d2 --- /dev/null +++ b/config/config.cfg @@ -0,0 +1,36 @@ +# DayZ Memory Reader — runtime config +# Lines starting with # are comments. +# Changes take effect on next launch. + +# ---- Refresh intervals (milliseconds) ---- +nearEntityRefreshMs = 50 +farEntityRefreshMs = 100 +slowEntityRefreshMs = 100 +playersRefreshMs = 50 +bulletRefreshMs = 50 +itemRefreshMs = 200 +scoreboardRefreshMs = 30000 +networkMetadataRefreshMs = 30000 + +# ---- Batch sizes (entities processed per tick) ---- +farEntityBatchSize = 64 +slowEntityBatchSize = 64 +itemBatchSize = 64 + +# ---- Main loop idle sleep (ms) — lower = more CPU, more responsive ---- +liveLoopIdleMs = 1 + +# ---- VMM page-cache flush interval (ms) ---- +# ForceRefresh flushes VMMDLL's internal page cache so stale physical-memory +# entries don't accumulate. Without this the tool stops working ~1 h into a +# session as the game heap reallocates and cached pages go stale. +# 30 s is a safe default; lower values increase DMA bus load slightly. +vmmRefreshMs = 30000 + +# ---- Reconnect behaviour ---- +reconnectThreshold = 5 # consecutive failures before reconnect +reconnectGracePeriodMs = 5000 # ms to wait after session lost before reconnecting + +# ---- Process ---- +processName = DayZ_x64.exe +useMemoryMap = true diff --git a/config/item_filters.json b/config/item_filters.json new file mode 100644 index 0000000..00753ec --- /dev/null +++ b/config/item_filters.json @@ -0,0 +1,41 @@ +{ + "isHouse": { + "desc": "Structures and storage", + "Color": "#06b6d4", + "ModelName": [ + "\\containers\\", + "\\camping\\", + "\\cooking\\", + "dex_storage\\data\\guncase\\dex_guncase.p3d", + "dex_storage\\data\\box", + "\\gear\\cultivation", + "tr_modules\\tr_models\\tr_garagedoor.p3d", + "tr_modules\\tr_models\\tr_shieldsmall.p3d", + "tr_modules\\tr_models\\tr_narrowdoor.p3d", + "tr_modules\\tr_models\\tr_mediumdoor.p3d", + "tr_fortification\\tr_models\\tr_fortification.p3d", + "oh_furniture_pvp_client\\lockercabin\\lockercabin.p3d", + "oh_furniture_pvp_client\\military_box\\", + "oh_furniture_pvp_client\\fridge_small\\ohfridge.p3d", + "oh_furniture_pvp_client\\big_locker\\big_locker.p3d", + "oh_furniture_pvp_client\\metal_shelving_barrel_big\\metal_shelving_barrel_big.p3d", + "oh_furniture_pvp_client\\singlelocker\\ohsingle_locker.p3d" + ] + }, + "isWeapon": {"desc": "Weapons", "Color": "#f43f5e", "TypeName": "weapon"}, + "isAmmo": {"desc": "Ammo", "Color": "#f59e0b", "ModelName": "\\ammunition\\"}, + "isFood": {"desc": "Food and drinks", "Color": "#22c55e", "ModelName": ["\\food\\", "\\drinks\\"]}, + "isClothing": {"desc": "Clothing", "Color": "#eab308", "TypeName": "clothing"}, + "isBackpack": {"desc": "Backpacks", "Color": "#84cc16", "ModelName": "\\characters\\vests\\", "TypeName": "backpack"}, + "isMedical": {"desc": "Medical supplies", "Color": "#ec4899", "ModelName": "\\medical\\"}, + "isVehiclePart": {"desc": "Vehicle parts", "Color": "#0ea5e9", "ModelName": ["\\vehicles\\parts\\", "\\vehicles\\wheeled\\", "bastard_framework\\proxy\\motobattery.p3d"], "TypeName": "carwheel"}, + "isTool": {"desc": "Tools", "Color": "#14b8a6", "ModelName": "\\tools\\"}, + "isCrafting": {"desc": "Crafting materials", "Color": "#c084fc", "ModelName": "\\crafting\\"}, + "isConsumables": {"desc": "Consumables", "Color": "#f97316", "ModelName": ["\\consumables\\", "\\str_consumables\\"]}, + "isOptics": {"desc": "Optics", "Color": "#d946ef", "TypeName": "itemoptics"}, + "isMelee": {"desc": "Melee weapons", "Color": "#dc2626", "ModelName": "\\weapons\\melee\\", "TypeName": "weapon"}, + "isWeaponAttachments": {"desc": "Weapon attachments", "Color": "#fbbf24", "ModelName": ["weapons\\attachments\\", "weapon_b\\attachments\\", "weapon_a\\attachments\\"]}, + "isExplosives": {"desc": "Explosives", "Color": "#fb923c", "ModelName": "\\explosives\\"}, + "isForBuilding": {"desc": "Base building", "Color": "#0891b2", "ModelName": "\\codelock\\"}, + "isOtherLoot": {"desc": "Other loot", "Color": "#64748b"} +} diff --git a/external/lumin/framework/data/fonts.h b/external/lumin/framework/data/fonts.h new file mode 100644 index 0000000..5a7f539 --- /dev/null +++ b/external/lumin/framework/data/fonts.h @@ -0,0 +1,57510 @@ +#pragma once +#include + +inline std::vector inter_semibold = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x47, 0x44, 0x45, 0x46, 0x66, 0xD6, 0x60, 0xD7, 0x00, 0x00, 0x02, 0x54, + 0x00, 0x00, 0x03, 0xFA, 0x47, 0x50, 0x4F, 0x53, 0x70, 0xCC, 0x71, 0xC4, + 0x00, 0x01, 0xAF, 0x14, 0x00, 0x01, 0x72, 0x4A, 0x47, 0x53, 0x55, 0x42, + 0xD4, 0x98, 0x8B, 0x6D, 0x00, 0x00, 0x6B, 0xAC, 0x00, 0x00, 0x5F, 0x94, + 0x4F, 0x53, 0x2F, 0x32, 0x18, 0x1C, 0x65, 0x63, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, 0x57, 0xDC, 0x40, 0x09, + 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x00, 0x5A, 0x63, 0x6D, 0x61, 0x70, + 0x4D, 0x8D, 0x9D, 0xF1, 0x00, 0x00, 0xCB, 0x40, 0x00, 0x00, 0x64, 0x8A, + 0x67, 0x61, 0x73, 0x70, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x14, + 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, 0xFF, 0x5A, 0x2A, 0xFE, + 0x00, 0x03, 0x21, 0x60, 0x00, 0x02, 0x1B, 0x6B, 0x68, 0x65, 0x61, 0x64, + 0x32, 0x5D, 0x5A, 0xB2, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x00, 0x36, + 0x68, 0x68, 0x65, 0x61, 0x16, 0x19, 0x1F, 0x0E, 0x00, 0x00, 0x01, 0x3C, + 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, 0x31, 0x99, 0x69, 0x95, + 0x00, 0x00, 0x10, 0x38, 0x00, 0x00, 0x2D, 0xB8, 0x6C, 0x6F, 0x63, 0x61, + 0x0B, 0x40, 0x18, 0x5E, 0x00, 0x00, 0x3D, 0xF0, 0x00, 0x00, 0x2D, 0xBC, + 0x6D, 0x61, 0x78, 0x70, 0x0B, 0x89, 0x00, 0xF6, 0x00, 0x00, 0x01, 0x1C, + 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x74, 0x99, 0xA0, 0x05, + 0x00, 0x00, 0x06, 0x50, 0x00, 0x00, 0x09, 0xE8, 0x70, 0x6F, 0x73, 0x74, + 0xCF, 0xFD, 0x5F, 0x21, 0x00, 0x01, 0x2F, 0xCC, 0x00, 0x00, 0x7F, 0x48, + 0x70, 0x72, 0x65, 0x70, 0x68, 0x06, 0x8C, 0x85, 0x00, 0x00, 0x01, 0x0C, + 0x00, 0x00, 0x00, 0x07, 0xB8, 0x01, 0xFF, 0x85, 0xB0, 0x04, 0x8D, 0x00, + 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, + 0x0B, 0x6E, 0x00, 0x84, 0x00, 0x0C, 0x00, 0x70, 0x00, 0x07, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x07, 0xC0, 0xFE, 0x12, + 0x00, 0x00, 0x15, 0x4B, 0xF9, 0xC0, 0xF8, 0x43, 0x14, 0x96, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0B, 0x6E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x42, + 0x57, 0x50, 0x2C, 0x1E, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x03, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xE2, 0x76, 0x87, 0x90, 0x00, 0x00, 0x00, 0x00, + 0xE2, 0x76, 0x87, 0x9D, 0xF9, 0xC0, 0xFD, 0x58, 0x14, 0x96, 0x08, 0xF2, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x02, 0x6F, 0x70, 0x73, 0x7A, + 0x01, 0x38, 0x00, 0x00, 0x77, 0x67, 0x68, 0x74, 0x01, 0x01, 0x00, 0x01, + 0x69, 0x74, 0x61, 0x6C, 0x01, 0x40, 0x00, 0x02, 0x00, 0x22, 0x00, 0x16, + 0x00, 0x06, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, + 0x01, 0x34, 0x02, 0x58, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x3F, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x05, 0x03, + 0x02, 0x58, 0x00, 0x05, 0x00, 0x00, 0x05, 0x33, 0x04, 0xCD, 0x00, 0x00, + 0x00, 0x9A, 0x05, 0x33, 0x04, 0xCD, 0x00, 0x00, 0x02, 0xCD, 0x00, 0xB5, + 0x02, 0x82, 0x00, 0x00, 0x02, 0x00, 0x05, 0x03, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x04, 0xE0, 0x00, 0x02, 0xFF, 0x12, 0x00, 0xA1, 0xFF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x53, 0x4D, 0x53, 0x00, 0xC0, + 0x00, 0x00, 0xFF, 0xFF, 0x07, 0xC0, 0xFE, 0x12, 0x00, 0x00, 0x08, 0xDD, + 0x02, 0x94, 0x00, 0x00, 0x01, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x04, 0x2E, + 0x05, 0xD2, 0x00, 0x00, 0x00, 0x20, 0x00, 0x0C, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBA, 0x00, 0x02, + 0x00, 0x9C, 0x00, 0x02, 0x00, 0xAD, 0x00, 0x01, 0x00, 0xAF, 0x01, 0x16, + 0x00, 0x01, 0x01, 0x18, 0x01, 0x8A, 0x00, 0x01, 0x01, 0x8C, 0x01, 0x99, + 0x00, 0x01, 0x01, 0x9B, 0x01, 0xD8, 0x00, 0x01, 0x01, 0xDA, 0x01, 0xF9, + 0x00, 0x01, 0x01, 0xFB, 0x02, 0x48, 0x00, 0x01, 0x02, 0x4A, 0x02, 0x85, + 0x00, 0x01, 0x02, 0x87, 0x02, 0xA3, 0x00, 0x01, 0x02, 0xA5, 0x02, 0xA5, + 0x00, 0x01, 0x02, 0xA8, 0x02, 0xC7, 0x00, 0x01, 0x02, 0xCB, 0x02, 0xCE, + 0x00, 0x01, 0x02, 0xD0, 0x02, 0xD1, 0x00, 0x01, 0x02, 0xD6, 0x02, 0xE4, + 0x00, 0x01, 0x02, 0xE6, 0x02, 0xFC, 0x00, 0x01, 0x02, 0xFE, 0x03, 0x48, + 0x00, 0x01, 0x03, 0x4A, 0x03, 0x58, 0x00, 0x01, 0x03, 0x5B, 0x03, 0x64, + 0x00, 0x01, 0x03, 0x67, 0x03, 0x75, 0x00, 0x01, 0x03, 0x78, 0x03, 0x79, + 0x00, 0x01, 0x03, 0x7B, 0x03, 0x7B, 0x00, 0x01, 0x03, 0x7D, 0x03, 0x94, + 0x00, 0x01, 0x03, 0x96, 0x03, 0xE2, 0x00, 0x01, 0x03, 0xE4, 0x03, 0xFA, + 0x00, 0x01, 0x03, 0xFC, 0x03, 0xFD, 0x00, 0x01, 0x04, 0x00, 0x04, 0x06, + 0x00, 0x01, 0x04, 0x08, 0x04, 0x08, 0x00, 0x01, 0x04, 0x0A, 0x04, 0x0A, + 0x00, 0x01, 0x04, 0x10, 0x04, 0x24, 0x00, 0x01, 0x04, 0x26, 0x04, 0x28, + 0x00, 0x01, 0x04, 0x2B, 0x04, 0x2C, 0x00, 0x01, 0x04, 0x2E, 0x04, 0x31, + 0x00, 0x01, 0x04, 0x34, 0x04, 0x37, 0x00, 0x01, 0x04, 0x39, 0x04, 0x4A, + 0x00, 0x01, 0x04, 0x4C, 0x04, 0x4C, 0x00, 0x01, 0x04, 0x4E, 0x04, 0x52, + 0x00, 0x01, 0x04, 0x54, 0x04, 0x6D, 0x00, 0x01, 0x04, 0x6F, 0x04, 0x6F, + 0x00, 0x01, 0x04, 0x71, 0x04, 0x72, 0x00, 0x01, 0x04, 0x74, 0x04, 0x75, + 0x00, 0x01, 0x04, 0x77, 0x04, 0x7E, 0x00, 0x01, 0x04, 0x80, 0x04, 0x97, + 0x00, 0x01, 0x04, 0x99, 0x04, 0xAB, 0x00, 0x01, 0x04, 0xAE, 0x04, 0xB1, + 0x00, 0x01, 0x04, 0xB5, 0x04, 0xC6, 0x00, 0x01, 0x04, 0xCA, 0x04, 0xE1, + 0x00, 0x01, 0x04, 0xE5, 0x04, 0xE7, 0x00, 0x01, 0x04, 0xE9, 0x04, 0xEE, + 0x00, 0x01, 0x04, 0xF0, 0x04, 0xF0, 0x00, 0x01, 0x04, 0xF2, 0x04, 0xFE, + 0x00, 0x01, 0x05, 0x01, 0x05, 0x08, 0x00, 0x01, 0x05, 0x0B, 0x05, 0x0B, + 0x00, 0x01, 0x05, 0x0E, 0x05, 0x0E, 0x00, 0x01, 0x05, 0x10, 0x05, 0x11, + 0x00, 0x01, 0x05, 0x13, 0x05, 0x15, 0x00, 0x01, 0x05, 0x17, 0x05, 0x1C, + 0x00, 0x01, 0x05, 0x25, 0x05, 0x25, 0x00, 0x01, 0x05, 0x2A, 0x05, 0x2A, + 0x00, 0x01, 0x05, 0x2C, 0x05, 0x2F, 0x00, 0x01, 0x05, 0x31, 0x05, 0x31, + 0x00, 0x01, 0x05, 0x36, 0x05, 0x36, 0x00, 0x01, 0x05, 0x38, 0x05, 0x3B, + 0x00, 0x01, 0x05, 0x3D, 0x05, 0x3F, 0x00, 0x01, 0x05, 0x47, 0x05, 0x47, + 0x00, 0x01, 0x05, 0x49, 0x05, 0x49, 0x00, 0x01, 0x05, 0x4D, 0x05, 0x4D, + 0x00, 0x01, 0x05, 0x4F, 0x05, 0x50, 0x00, 0x01, 0x05, 0x57, 0x05, 0x57, + 0x00, 0x01, 0x05, 0x59, 0x05, 0x59, 0x00, 0x01, 0x05, 0x66, 0x05, 0x67, + 0x00, 0x01, 0x05, 0x6C, 0x05, 0x6D, 0x00, 0x01, 0x05, 0x9D, 0x05, 0xA0, + 0x00, 0x01, 0x05, 0xA6, 0x05, 0xA7, 0x00, 0x01, 0x06, 0x16, 0x06, 0x17, + 0x00, 0x01, 0x06, 0x21, 0x06, 0x21, 0x00, 0x01, 0x06, 0x25, 0x06, 0x40, + 0x00, 0x01, 0x06, 0x43, 0x06, 0x45, 0x00, 0x01, 0x06, 0x51, 0x06, 0x52, + 0x00, 0x01, 0x06, 0x56, 0x06, 0x5E, 0x00, 0x01, 0x06, 0x60, 0x06, 0x71, + 0x00, 0x01, 0x06, 0x74, 0x06, 0x76, 0x00, 0x01, 0x06, 0x82, 0x06, 0x83, + 0x00, 0x01, 0x06, 0x88, 0x06, 0x89, 0x00, 0x01, 0x06, 0x8C, 0x06, 0x8E, + 0x00, 0x01, 0x06, 0xA1, 0x06, 0xA2, 0x00, 0x01, 0x06, 0xA5, 0x06, 0xA7, + 0x00, 0x01, 0x06, 0xBB, 0x06, 0xBE, 0x00, 0x01, 0x06, 0xC0, 0x06, 0xC0, + 0x00, 0x01, 0x06, 0xC2, 0x06, 0xC3, 0x00, 0x01, 0x06, 0xC9, 0x06, 0xC9, + 0x00, 0x01, 0x06, 0xCD, 0x06, 0xCD, 0x00, 0x01, 0x06, 0xD1, 0x06, 0xD5, + 0x00, 0x01, 0x06, 0xDB, 0x06, 0xDB, 0x00, 0x01, 0x06, 0xE7, 0x06, 0xEE, + 0x00, 0x03, 0x07, 0x00, 0x07, 0x04, 0x00, 0x01, 0x07, 0x54, 0x07, 0x54, + 0x00, 0x01, 0x07, 0x6D, 0x07, 0x87, 0x00, 0x01, 0x07, 0x89, 0x07, 0x8A, + 0x00, 0x01, 0x07, 0x91, 0x07, 0x91, 0x00, 0x01, 0x07, 0x93, 0x07, 0x93, + 0x00, 0x01, 0x07, 0xAA, 0x07, 0xC5, 0x00, 0x01, 0x07, 0xC7, 0x07, 0xC8, + 0x00, 0x01, 0x07, 0xCF, 0x07, 0xCF, 0x00, 0x01, 0x07, 0xD1, 0x07, 0xD1, + 0x00, 0x01, 0x07, 0xE8, 0x07, 0xF6, 0x00, 0x01, 0x07, 0xF7, 0x07, 0xF7, + 0x00, 0x03, 0x08, 0x03, 0x08, 0x64, 0x00, 0x01, 0x08, 0x67, 0x08, 0xC9, + 0x00, 0x01, 0x08, 0xDC, 0x08, 0xDC, 0x00, 0x01, 0x08, 0xE0, 0x08, 0xE5, + 0x00, 0x03, 0x08, 0xE8, 0x08, 0xEA, 0x00, 0x01, 0x08, 0xEF, 0x08, 0xEF, + 0x00, 0x01, 0x08, 0xFE, 0x09, 0x0C, 0x00, 0x01, 0x09, 0x0D, 0x09, 0x0D, + 0x00, 0x03, 0x09, 0x17, 0x09, 0x18, 0x00, 0x01, 0x09, 0x1A, 0x09, 0x1B, + 0x00, 0x01, 0x09, 0x1E, 0x09, 0x20, 0x00, 0x01, 0x09, 0x22, 0x09, 0x25, + 0x00, 0x01, 0x09, 0x27, 0x09, 0x28, 0x00, 0x01, 0x09, 0x31, 0x09, 0x31, + 0x00, 0x01, 0x09, 0x35, 0x09, 0x36, 0x00, 0x01, 0x09, 0x3B, 0x09, 0x3B, + 0x00, 0x01, 0x09, 0x3E, 0x09, 0x3E, 0x00, 0x01, 0x09, 0x40, 0x09, 0x41, + 0x00, 0x01, 0x09, 0x43, 0x09, 0x43, 0x00, 0x01, 0x09, 0x47, 0x09, 0x47, + 0x00, 0x01, 0x09, 0x4B, 0x09, 0x4B, 0x00, 0x01, 0x09, 0x4D, 0x09, 0x4D, + 0x00, 0x01, 0x09, 0x4F, 0x09, 0x4F, 0x00, 0x01, 0x09, 0x51, 0x09, 0x51, + 0x00, 0x01, 0x09, 0x59, 0x09, 0x59, 0x00, 0x01, 0x09, 0x6D, 0x09, 0x70, + 0x00, 0x01, 0x09, 0x7B, 0x09, 0x7F, 0x00, 0x01, 0x09, 0x81, 0x09, 0x85, + 0x00, 0x01, 0x09, 0x87, 0x09, 0x87, 0x00, 0x01, 0x09, 0x8F, 0x09, 0xA9, + 0x00, 0x01, 0x09, 0xB2, 0x09, 0xC6, 0x00, 0x01, 0x09, 0xCA, 0x09, 0xCC, + 0x00, 0x01, 0x09, 0xCF, 0x09, 0xD2, 0x00, 0x01, 0x09, 0xD7, 0x09, 0xD7, + 0x00, 0x01, 0x09, 0xDB, 0x09, 0xE3, 0x00, 0x01, 0x09, 0xE7, 0x0A, 0x06, + 0x00, 0x01, 0x0A, 0x4F, 0x0A, 0x71, 0x00, 0x03, 0x0A, 0x74, 0x0A, 0x7B, + 0x00, 0x03, 0x0A, 0x8B, 0x0A, 0xDE, 0x00, 0x03, 0x0A, 0xF2, 0x0A, 0xF2, + 0x00, 0x03, 0x0A, 0xF8, 0x0A, 0xF8, 0x00, 0x01, 0x0B, 0x00, 0x0B, 0x00, + 0x00, 0x01, 0x0B, 0x18, 0x0B, 0x18, 0x00, 0x01, 0x0B, 0x36, 0x0B, 0x36, + 0x00, 0x03, 0x0B, 0x42, 0x0B, 0x43, 0x00, 0x01, 0x0B, 0x46, 0x0B, 0x46, + 0x00, 0x02, 0x0B, 0x49, 0x0B, 0x49, 0x00, 0x01, 0x0B, 0x4A, 0x0B, 0x4A, + 0x00, 0x03, 0x0B, 0x54, 0x0B, 0x54, 0x00, 0x03, 0x0B, 0x55, 0x0B, 0x56, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x3A, 0x00, 0x00, + 0x00, 0x0C, 0x00, 0x01, 0x00, 0x15, 0x06, 0xE8, 0x06, 0xE9, 0x06, 0xEA, + 0x06, 0xEB, 0x06, 0xEC, 0x08, 0xE0, 0x08, 0xE1, 0x0A, 0x8B, 0x0A, 0x8C, + 0x0A, 0x8D, 0x0A, 0x8E, 0x0A, 0x8F, 0x0A, 0x90, 0x0A, 0x91, 0x0A, 0xAB, + 0x0A, 0xB2, 0x0A, 0xB8, 0x0A, 0xDE, 0x0A, 0xF2, 0x0B, 0x4A, 0x0B, 0x54, + 0x00, 0x01, 0x00, 0x01, 0x06, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, + 0x02, 0xD6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, 0x00, 0x90, + 0x06, 0x82, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x26, + 0x06, 0x5C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, + 0x06, 0x4E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x3A, + 0x06, 0x14, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x26, + 0x06, 0x5C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x36, + 0x05, 0xDE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x24, + 0x05, 0xBA, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x07, 0x00, 0x54, + 0x05, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x08, 0x00, 0x08, + 0x05, 0x5E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x09, 0x00, 0x20, + 0x05, 0x3E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0B, 0x00, 0x20, + 0x05, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0C, 0x00, 0x20, + 0x05, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0D, 0x01, 0x22, + 0x03, 0xFC, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0E, 0x00, 0x36, + 0x03, 0xC6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x10, 0x00, 0x14, + 0x03, 0xB2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x11, 0x00, 0x10, + 0x03, 0xA2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x19, 0x00, 0x0A, + 0x03, 0x98, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x00, 0x00, 0x18, + 0x03, 0x80, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x01, 0x00, 0x0C, + 0x03, 0x74, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x14, 0x00, 0x16, + 0x03, 0x5E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x15, 0x00, 0x1C, + 0x03, 0x42, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x16, 0x00, 0x2A, + 0x03, 0x18, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x17, 0x00, 0x40, + 0x02, 0xD8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x18, 0x00, 0x24, + 0x02, 0xB4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x19, 0x00, 0x24, + 0x02, 0x90, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1A, 0x00, 0x24, + 0x02, 0x6C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1B, 0x00, 0x1A, + 0x02, 0x52, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1C, 0x00, 0x1A, + 0x02, 0x38, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1D, 0x00, 0x12, + 0x02, 0x26, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1E, 0x00, 0x10, + 0x02, 0x16, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1F, 0x00, 0x12, + 0x02, 0x04, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x20, 0x00, 0x2C, + 0x01, 0xD8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x21, 0x00, 0x18, + 0x01, 0xC0, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x22, 0x00, 0x22, + 0x01, 0x9E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x23, 0x00, 0x2E, + 0x01, 0x70, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x24, 0x00, 0x1C, + 0x01, 0x54, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x25, 0x00, 0x26, + 0x01, 0x2E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x26, 0x00, 0x1C, + 0x01, 0x12, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x27, 0x00, 0x12, + 0x01, 0x00, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x28, 0x00, 0x12, + 0x00, 0xEE, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x29, 0x00, 0x32, + 0x00, 0xBC, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x2F, 0x00, 0x08, + 0x00, 0xB4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x30, 0x00, 0x14, + 0x00, 0xA0, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x31, 0x00, 0x0A, + 0x00, 0x96, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x32, 0x00, 0x0E, + 0x06, 0x4E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x33, 0x00, 0x0C, + 0x00, 0x8A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x34, 0x00, 0x10, + 0x03, 0xA2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x35, 0x00, 0x08, + 0x00, 0x82, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x36, 0x00, 0x12, + 0x00, 0x70, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x37, 0x00, 0x0A, + 0x00, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x38, 0x00, 0x18, + 0x00, 0x4E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x39, 0x00, 0x08, + 0x00, 0x46, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3A, 0x00, 0x08, + 0x00, 0x3E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3B, 0x00, 0x08, + 0x00, 0x36, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3C, 0x00, 0x08, + 0x00, 0x2E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3D, 0x00, 0x08, + 0x00, 0x26, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3E, 0x00, 0x08, + 0x00, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3F, 0x00, 0x08, + 0x00, 0x16, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x40, 0x00, 0x0C, + 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x41, 0x00, 0x0A, + 0x00, 0x00, 0x00, 0x52, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, + 0x00, 0x49, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, + 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x32, 0x00, 0x34, + 0x00, 0x70, 0x00, 0x74, 0x00, 0x32, 0x00, 0x30, 0x00, 0x70, 0x00, 0x74, + 0x00, 0x31, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x31, 0x00, 0x37, + 0x00, 0x70, 0x00, 0x74, 0x00, 0x31, 0x00, 0x36, 0x00, 0x70, 0x00, 0x74, + 0x00, 0x31, 0x00, 0x34, 0x00, 0x70, 0x00, 0x74, 0x00, 0x4F, 0x00, 0x70, + 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, + 0x00, 0x53, 0x00, 0x69, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x42, 0x00, 0x6C, + 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x45, 0x00, 0x78, 0x00, 0x74, + 0x00, 0x72, 0x00, 0x61, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, + 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x4D, 0x00, 0x65, + 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, 0x00, 0x4C, 0x00, 0x69, + 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x45, 0x00, 0x78, 0x00, 0x74, + 0x00, 0x72, 0x00, 0x61, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, + 0x00, 0x74, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x41, + 0x00, 0x6C, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x61, + 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, 0x00, 0x61, 0x00, 0x70, + 0x00, 0x69, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x73, + 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x70, 0x00, 0x20, 0x00, 0x53, + 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, + 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, + 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x66, + 0x00, 0x53, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, 0x00, 0x6C, 0x00, 0x65, + 0x00, 0x2D, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x79, + 0x00, 0x20, 0x00, 0x61, 0x00, 0x43, 0x00, 0x61, 0x00, 0x70, 0x00, 0x69, + 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x47, 0x00, 0x20, + 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x73, + 0x00, 0x70, 0x00, 0x75, 0x00, 0x72, 0x00, 0x46, 0x00, 0x6C, 0x00, 0x61, + 0x00, 0x74, 0x00, 0x2D, 0x00, 0x74, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x20, + 0x00, 0x74, 0x00, 0x68, 0x00, 0x72, 0x00, 0x65, 0x00, 0x65, 0x00, 0x55, + 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x63, + 0x00, 0x61, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x20, + 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x73, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x66, 0x00, 0x41, 0x00, 0x6C, + 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, + 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, + 0x00, 0x70, 0x00, 0x20, 0x00, 0x73, 0x00, 0x53, 0x00, 0x69, 0x00, 0x6D, + 0x00, 0x70, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x66, 0x00, 0x69, 0x00, 0x65, + 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x4C, 0x00, 0x6F, 0x00, 0x77, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x63, 0x00, 0x61, 0x00, 0x73, + 0x00, 0x65, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, + 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x74, 0x00, 0x61, 0x00, 0x69, + 0x00, 0x6C, 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, + 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x4F, 0x00, 0x70, + 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x73, 0x00, 0x69, 0x00, 0x78, + 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x66, + 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x74, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x53, 0x00, 0x71, + 0x00, 0x75, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, 0x00, 0x71, + 0x00, 0x75, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x53, + 0x00, 0x71, 0x00, 0x75, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x20, + 0x00, 0x70, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, 0x00, 0x74, 0x00, 0x75, + 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x53, + 0x00, 0x71, 0x00, 0x75, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, 0x00, 0x64, + 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, + 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x43, + 0x00, 0x69, 0x00, 0x72, 0x00, 0x63, 0x00, 0x6C, 0x00, 0x65, 0x00, 0x64, + 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, + 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x44, + 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x69, + 0x00, 0x67, 0x00, 0x75, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x20, 0x00, 0x28, 0x00, 0x6E, 0x00, 0x6F, 0x00, 0x20, + 0x00, 0x73, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x73, 0x00, 0x68, 0x00, 0x65, + 0x00, 0x64, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6F, + 0x00, 0x29, 0x00, 0x52, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, + 0x00, 0x20, 0x00, 0x71, 0x00, 0x75, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x73, 0x00, 0x20, 0x00, 0x26, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6F, + 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x73, 0x00, 0x44, 0x00, 0x69, + 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x62, 0x00, 0x69, 0x00, 0x67, + 0x00, 0x75, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x64, + 0x00, 0x69, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x73, 0x00, 0x57, + 0x00, 0x65, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x4F, + 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6C, + 0x00, 0x20, 0x00, 0x73, 0x00, 0x69, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x49, + 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x53, 0x00, 0x65, + 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, + 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, + 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x68, 0x00, 0x74, + 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, + 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x6F, 0x00, 0x72, + 0x00, 0x67, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, + 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x53, + 0x00, 0x6F, 0x00, 0x66, 0x00, 0x74, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, + 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6C, + 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, + 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, + 0x00, 0x53, 0x00, 0x49, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x70, + 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x74, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x56, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, + 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6C, + 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, + 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76, + 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, + 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, + 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x46, 0x00, 0x41, 0x00, 0x51, + 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x68, + 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, + 0x00, 0x2F, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x66, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, + 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x6F, + 0x00, 0x72, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, + 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x72, 0x00, 0x73, + 0x00, 0x6D, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2F, + 0x00, 0x52, 0x00, 0x61, 0x00, 0x73, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x73, + 0x00, 0x20, 0x00, 0x41, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x73, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x72, 0x00, 0x73, + 0x00, 0x6D, 0x00, 0x73, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x20, 0x00, 0x55, 0x00, 0x49, 0x00, 0x20, 0x00, 0x61, + 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, + 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x64, + 0x00, 0x65, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x20, + 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x72, 0x00, 0x73, 0x00, 0x6D, + 0x00, 0x73, 0x00, 0x2E, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x2D, + 0x00, 0x53, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, 0x00, 0x6F, + 0x00, 0x6C, 0x00, 0x64, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, + 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, + 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x3B, 0x00, 0x67, 0x00, 0x69, + 0x00, 0x74, 0x00, 0x2D, 0x00, 0x36, 0x00, 0x36, 0x00, 0x36, 0x00, 0x34, + 0x00, 0x37, 0x00, 0x63, 0x00, 0x30, 0x00, 0x62, 0x00, 0x62, 0x00, 0x34, + 0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x3B, 0x00, 0x52, + 0x00, 0x53, 0x00, 0x4D, 0x00, 0x53, 0x00, 0x3B, 0x00, 0x49, 0x00, 0x6E, + 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, + 0x00, 0x74, 0x00, 0x2D, 0x00, 0x53, 0x00, 0x65, 0x00, 0x6D, 0x00, 0x69, + 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x52, 0x00, 0x65, + 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x72, 0x00, 0x49, + 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x32, + 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, 0x00, 0x53, 0x00, 0x65, + 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, + 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, + 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, + 0x00, 0x31, 0x00, 0x36, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, + 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x20, 0x00, 0x50, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6A, 0x00, 0x65, + 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x41, 0x00, 0x75, 0x00, 0x74, + 0x00, 0x68, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, + 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, + 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, + 0x00, 0x75, 0x00, 0x62, 0x00, 0x2E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, + 0x00, 0x2F, 0x00, 0x72, 0x00, 0x73, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x2F, + 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x29, + 0x05, 0x40, 0x01, 0x48, 0x02, 0x5B, 0x00, 0x00, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0xBF, 0x00, 0x39, + 0x05, 0xC7, 0x00, 0x40, 0x06, 0xB5, 0x00, 0x37, 0x06, 0xD4, 0x00, 0x37, + 0x06, 0xC3, 0x00, 0x37, 0x06, 0xD7, 0x00, 0x37, 0x06, 0x3A, 0x00, 0x37, + 0x06, 0x4D, 0x00, 0x37, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0xFF, 0xD9, 0x05, 0x9B, 0x00, 0x15, 0x05, 0xC6, 0x00, 0x40, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0xBF, 0x00, 0x39, 0x05, 0xC7, 0x00, 0x40, 0x06, 0xB5, 0x00, 0x37, + 0x06, 0xD4, 0x00, 0x37, 0x06, 0xC3, 0x00, 0x37, 0x06, 0xD7, 0x00, 0x37, + 0x06, 0x3A, 0x00, 0x37, 0x06, 0x4D, 0x00, 0x37, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x08, 0x06, 0x00, 0x15, 0x08, 0x06, 0x00, 0x15, + 0x08, 0x06, 0x00, 0x15, 0x08, 0x06, 0x00, 0x15, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x51, 0x00, 0x06, 0x06, 0x8B, 0x00, 0x27, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4F, + 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4F, + 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4F, + 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4B, 0x05, 0xD2, 0x00, 0x4F, + 0x05, 0x9F, 0x00, 0x81, 0x06, 0xFF, 0x00, 0x27, 0x05, 0x9F, 0x00, 0x81, + 0x05, 0x9F, 0x00, 0x81, 0x05, 0x9F, 0x00, 0x81, 0x05, 0x9F, 0x00, 0x81, + 0x05, 0x9F, 0x00, 0x81, 0x05, 0x9F, 0x00, 0x81, 0x05, 0xF1, 0x00, 0x15, + 0x09, 0xCA, 0x00, 0x81, 0x09, 0xCA, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x4E, + 0x04, 0xCD, 0x00, 0x81, 0x05, 0xF7, 0x00, 0x37, 0x06, 0x15, 0x00, 0x37, + 0x06, 0x29, 0x00, 0x37, 0x07, 0x42, 0x00, 0x37, 0x07, 0x61, 0x00, 0x37, + 0x07, 0x50, 0x00, 0x37, 0x07, 0x64, 0x00, 0x37, 0x06, 0x1A, 0xFF, 0xCA, + 0x05, 0xF7, 0x00, 0x37, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0x9C, 0x00, 0x81, + 0x04, 0x9C, 0xFF, 0xAB, 0x04, 0x9C, 0x00, 0x81, 0x04, 0x9C, 0x00, 0x3A, + 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xE6, 0x00, 0x4F, + 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xE6, 0x00, 0x4F, + 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xE6, 0x00, 0x4F, + 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, + 0x05, 0xFB, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, + 0x05, 0xFB, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, + 0x05, 0xFB, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, 0x05, 0xC6, 0x00, 0x81, + 0x05, 0xC6, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, + 0x05, 0xC6, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, + 0x05, 0xC6, 0x00, 0x81, 0x06, 0x27, 0x00, 0x37, 0x05, 0xC6, 0x00, 0x81, + 0x05, 0xF1, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, 0x07, 0xCB, 0x00, 0x81, + 0x08, 0x8D, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, 0x06, 0xF0, 0x00, 0x37, + 0x07, 0x0E, 0x00, 0x37, 0x07, 0x22, 0x00, 0x37, 0x08, 0x3B, 0x00, 0x37, + 0x08, 0x5A, 0x00, 0x37, 0x08, 0x49, 0x00, 0x37, 0x08, 0x5D, 0x00, 0x37, + 0x07, 0xC0, 0x00, 0x37, 0x07, 0xD3, 0x00, 0x37, 0x07, 0x13, 0xFF, 0xCA, + 0x06, 0xF0, 0x00, 0x37, 0x05, 0xC6, 0x00, 0x81, 0x07, 0x0E, 0x00, 0x37, + 0x07, 0x22, 0x00, 0x37, 0x08, 0x3B, 0x00, 0x37, 0x08, 0x5A, 0x00, 0x37, + 0x08, 0x49, 0x00, 0x37, 0x08, 0x5D, 0x00, 0x37, 0x07, 0xC0, 0x00, 0x37, + 0x07, 0xD3, 0x00, 0x37, 0x05, 0xC6, 0x00, 0x81, 0x02, 0x0C, 0x00, 0x81, + 0x04, 0x18, 0x00, 0x81, 0x02, 0x0C, 0xFF, 0x9B, 0x02, 0x0C, 0xFF, 0x94, + 0x02, 0xB2, 0x00, 0x10, 0x02, 0x0C, 0xFF, 0xC0, 0x02, 0x0C, 0xFF, 0xCF, + 0x02, 0x0C, 0x00, 0x81, 0x02, 0x0C, 0xFF, 0xA5, 0x02, 0x0C, 0xFF, 0xC0, + 0x02, 0x0C, 0xFF, 0xE9, 0x02, 0x0C, 0xFF, 0xC2, 0x02, 0x0C, 0x00, 0x02, + 0x02, 0x0C, 0x00, 0x6F, 0x02, 0x0C, 0xFF, 0xA5, 0x02, 0x0C, 0xFF, 0x19, + 0x02, 0x0C, 0xFF, 0xC0, 0x02, 0x0C, 0x00, 0x51, 0x02, 0x0C, 0x00, 0x6F, + 0x02, 0x23, 0x00, 0x75, 0x02, 0x0C, 0x00, 0x81, 0x03, 0x36, 0x00, 0x37, + 0x02, 0x0C, 0xFF, 0x9B, 0x03, 0x54, 0x00, 0x37, 0x03, 0x68, 0x00, 0x37, + 0x04, 0x82, 0x00, 0x37, 0x04, 0xA0, 0x00, 0x37, 0x04, 0x90, 0x00, 0x37, + 0x04, 0xA4, 0x00, 0x37, 0x04, 0x06, 0x00, 0x37, 0x04, 0x19, 0x00, 0x37, + 0x02, 0x0C, 0xFF, 0xC2, 0x02, 0x0C, 0xFF, 0xE9, 0x03, 0x59, 0xFF, 0xCA, + 0x03, 0x36, 0x00, 0x37, 0x02, 0x0C, 0x00, 0x81, 0x02, 0x0C, 0xFF, 0x9B, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x29, 0x03, 0x27, 0x00, 0x21, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x32, 0x03, 0x27, 0x00, 0x48, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x32, 0x03, 0x27, 0xFF, 0xA6, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, + 0x04, 0x9F, 0x00, 0x37, 0x04, 0xB3, 0x00, 0x37, 0x06, 0x0F, 0x00, 0x37, + 0x05, 0xEB, 0x00, 0x37, 0x05, 0xDA, 0x00, 0x37, 0x05, 0xEE, 0x00, 0x37, + 0x05, 0x51, 0x00, 0x37, 0x05, 0x64, 0x00, 0x37, 0x03, 0x27, 0x00, 0x48, + 0x03, 0x27, 0x00, 0x48, 0x04, 0x74, 0xFF, 0x9A, 0x04, 0x81, 0x00, 0x37, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x29, 0x04, 0x79, 0x00, 0x43, + 0x04, 0x79, 0x00, 0x43, 0x04, 0xCC, 0x00, 0x43, 0x04, 0x79, 0x00, 0x43, + 0x04, 0x79, 0x00, 0x43, 0x05, 0x69, 0x00, 0x81, 0x05, 0x69, 0x00, 0x81, + 0x05, 0x69, 0x00, 0x81, 0x05, 0x69, 0x00, 0x81, 0x05, 0x69, 0x00, 0x81, + 0x05, 0x69, 0x00, 0x81, 0x06, 0xBB, 0x00, 0x37, 0x05, 0xC4, 0x00, 0x81, + 0x05, 0x7F, 0x00, 0x81, 0x05, 0x69, 0x00, 0x81, 0x04, 0x6D, 0x00, 0x81, + 0x04, 0x6D, 0x00, 0x81, 0x04, 0x6D, 0x00, 0x81, 0x04, 0x6D, 0x00, 0x81, + 0x04, 0x6D, 0x00, 0x81, 0x04, 0x6D, 0xFF, 0xE9, 0x04, 0x6D, 0x00, 0x81, + 0x04, 0x6D, 0x00, 0x81, 0x04, 0xB7, 0x00, 0x0E, 0x04, 0xBF, 0x00, 0x17, + 0x06, 0x57, 0x00, 0x81, 0x07, 0x20, 0x00, 0x81, 0x07, 0x20, 0x00, 0x81, + 0x07, 0x20, 0x00, 0x81, 0x07, 0x20, 0x00, 0x81, 0x07, 0x20, 0x00, 0x81, + 0x07, 0x20, 0x00, 0x81, 0x07, 0x20, 0x00, 0x81, 0x07, 0x20, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0xFF, 0xAB, 0x05, 0xD5, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, 0x07, 0xBE, 0x00, 0x81, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x08, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x08, 0x00, 0x4F, 0x06, 0x08, 0x00, 0x4F, + 0x06, 0x08, 0x00, 0x4F, 0x06, 0x08, 0x00, 0x4F, 0x06, 0x08, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0xC8, 0x00, 0x37, + 0x06, 0xE6, 0x00, 0x37, 0x06, 0xFA, 0x00, 0x37, 0x08, 0x13, 0x00, 0x37, + 0x08, 0x32, 0x00, 0x37, 0x08, 0x21, 0x00, 0x37, 0x08, 0x35, 0x00, 0x37, + 0x06, 0x05, 0xFE, 0xE8, 0x06, 0x05, 0x00, 0x4F, 0x06, 0xC8, 0x00, 0x37, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x08, 0x1D, 0x00, 0x4F, + 0x05, 0x09, 0x00, 0x81, 0x05, 0x09, 0x00, 0x81, 0x05, 0x09, 0x00, 0x81, + 0x05, 0x0C, 0x00, 0x86, 0x06, 0x69, 0x00, 0x29, 0x05, 0x09, 0x00, 0x81, + 0x06, 0x7F, 0x00, 0x37, 0x06, 0x07, 0x00, 0x4F, 0x06, 0x0B, 0x00, 0x4F, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x11, 0x00, 0x84, 0x05, 0xB7, 0x00, 0x81, + 0x05, 0x28, 0xFF, 0xFF, 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, + 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, + 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, + 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, + 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, 0x05, 0x7B, 0x00, 0x81, + 0x05, 0x13, 0x00, 0x37, 0x05, 0x13, 0x00, 0x37, 0x05, 0x13, 0x00, 0x37, + 0x05, 0x13, 0x00, 0x37, 0x05, 0x13, 0x00, 0x37, 0x05, 0x13, 0x00, 0x37, + 0x05, 0x13, 0x00, 0x37, 0x05, 0x13, 0x00, 0x37, 0x05, 0x56, 0x00, 0x4A, + 0x05, 0x18, 0x01, 0xC6, 0x05, 0x13, 0x00, 0x37, 0x05, 0x13, 0x00, 0x37, + 0x05, 0x13, 0x00, 0x37, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xAF, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xAF, 0x00, 0x7D, 0x05, 0xAF, 0x00, 0x7D, 0x05, 0xAF, 0x00, 0x7D, + 0x05, 0xAF, 0x00, 0x7D, 0x05, 0xAF, 0x00, 0x7D, 0x05, 0xDC, 0xFF, 0xE3, + 0x05, 0x93, 0x00, 0x15, 0x05, 0x93, 0x00, 0x15, 0x05, 0x93, 0x00, 0x15, + 0x07, 0xEB, 0x00, 0x15, 0x07, 0xEB, 0x00, 0x15, 0x07, 0xEB, 0x00, 0x15, + 0x07, 0xEB, 0x00, 0x15, 0x07, 0xEB, 0x00, 0x15, 0x07, 0xEB, 0x00, 0x15, + 0x07, 0xEB, 0x00, 0x15, 0x05, 0x83, 0x00, 0x18, 0x05, 0x83, 0x00, 0x18, + 0x05, 0x83, 0x00, 0x18, 0x05, 0xBB, 0x00, 0x18, 0x05, 0xEA, 0x00, 0x18, + 0x05, 0x83, 0x00, 0x18, 0x05, 0x77, 0x00, 0x15, 0x05, 0xE5, 0x00, 0x22, + 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, + 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, + 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, + 0x05, 0x76, 0xFF, 0xF9, 0x05, 0x77, 0x00, 0x15, 0x07, 0x0D, 0x00, 0x37, + 0x05, 0x77, 0x00, 0x15, 0x07, 0x3F, 0x00, 0x37, 0x08, 0x77, 0x00, 0x37, + 0x08, 0x7B, 0x00, 0x37, 0x07, 0xF0, 0x00, 0x37, 0x05, 0x77, 0x00, 0x15, + 0x05, 0x77, 0x00, 0x15, 0x06, 0x0D, 0xFE, 0xA7, 0x07, 0x0D, 0x00, 0x37, + 0x05, 0x77, 0x00, 0x15, 0x05, 0x10, 0x00, 0x46, 0x05, 0x10, 0x00, 0x46, + 0x05, 0x10, 0x00, 0x46, 0x05, 0x10, 0x00, 0x46, 0x05, 0x10, 0x00, 0x46, + 0x05, 0x10, 0x00, 0x46, 0x05, 0x10, 0x00, 0x46, 0x05, 0x10, 0x00, 0x46, + 0x05, 0x10, 0x00, 0x46, 0x05, 0x10, 0x00, 0x46, 0x04, 0xEF, 0x00, 0x46, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x3E, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x75, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x07, 0x19, 0x00, 0x47, 0x07, 0x19, 0x00, 0x47, 0x07, 0x19, 0x00, 0x47, + 0x07, 0x19, 0x00, 0x47, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x75, + 0x04, 0xC3, 0xFF, 0xE7, 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC2, 0x00, 0x75, + 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC3, 0x00, 0x75, + 0x04, 0xC3, 0x00, 0x75, 0x04, 0x6D, 0x00, 0x44, 0x04, 0x6D, 0x00, 0x44, + 0x05, 0x1A, 0x00, 0x44, 0x04, 0x6D, 0x00, 0x44, 0x04, 0x6D, 0x00, 0x44, + 0x04, 0x6D, 0x00, 0x44, 0x04, 0x6D, 0x00, 0x44, 0x04, 0x6D, 0x00, 0x44, + 0x04, 0x6D, 0x00, 0x44, 0x04, 0x6D, 0x00, 0x44, 0x04, 0x6D, 0x00, 0x44, + 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, 0x06, 0x03, 0x00, 0x44, + 0x05, 0xAF, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, + 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, + 0x08, 0xEE, 0x00, 0x44, 0x08, 0x8E, 0x00, 0x44, 0x08, 0xEE, 0x00, 0x44, + 0x07, 0xE7, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x40, 0x02, 0xE9, 0x00, 0xC2, 0x02, 0xDD, 0x00, 0x12, + 0x02, 0x80, 0x00, 0x75, 0x02, 0xAE, 0x00, 0x12, 0x02, 0x53, 0x00, 0x75, + 0x02, 0x80, 0x00, 0x75, 0x06, 0x7A, 0x00, 0x75, 0x02, 0x5C, 0x00, 0x75, + 0x02, 0xE9, 0x00, 0x28, 0x02, 0x5C, 0x00, 0x75, 0x02, 0xDD, 0x00, 0x12, + 0x06, 0xD6, 0x00, 0x12, 0x04, 0xC4, 0x00, 0x44, 0x04, 0xC4, 0x00, 0x44, + 0x05, 0x46, 0x00, 0x44, 0x04, 0xC4, 0x00, 0x44, 0x04, 0xC4, 0x00, 0x44, + 0x04, 0xC4, 0x00, 0x44, 0x04, 0xC4, 0x00, 0x44, 0x04, 0xC4, 0x00, 0x44, + 0x04, 0xC4, 0x00, 0x44, 0x04, 0xC4, 0x00, 0x44, 0x04, 0x4B, 0x00, 0x30, + 0x04, 0xAB, 0x00, 0x30, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0xFF, 0xE5, 0x04, 0xA7, 0xFF, 0xE5, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x07, 0x92, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x05, 0x27, 0x00, 0x12, 0x05, 0x27, 0x00, 0x12, 0x04, 0xA7, 0xFF, 0xE5, + 0x04, 0xA7, 0xFF, 0x92, 0x04, 0xA7, 0xFF, 0x92, 0x04, 0xA7, 0x00, 0x5D, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0xFF, 0x89, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x01, 0xE9, 0x00, 0x5D, + 0x01, 0xE9, 0x00, 0x75, 0x03, 0xD2, 0x00, 0x75, 0x01, 0xE9, 0xFF, 0x8A, + 0x01, 0xE9, 0xFF, 0x82, 0x01, 0xE9, 0xFF, 0xAF, 0x01, 0xE9, 0xFF, 0xAF, + 0x01, 0xE9, 0xFF, 0xAF, 0x01, 0xE9, 0xFF, 0x8F, 0x01, 0xE9, 0xFF, 0xBD, + 0x01, 0xE9, 0x00, 0x75, 0x01, 0xE9, 0xFF, 0x93, 0x01, 0xE9, 0xFF, 0xD8, + 0x01, 0xE9, 0xFF, 0xB0, 0x01, 0xE9, 0xFF, 0xEB, 0x01, 0xE9, 0xFF, 0xEB, + 0x01, 0xE9, 0xFF, 0x93, 0x01, 0xE9, 0xFF, 0x07, 0x01, 0xE9, 0xFF, 0xAE, + 0x01, 0xE9, 0x00, 0x3F, 0x01, 0xE9, 0x00, 0x5D, 0x01, 0xE9, 0x00, 0x5E, + 0x01, 0xEA, 0xFF, 0xC3, 0x01, 0xEA, 0xFF, 0x8F, 0x01, 0xEA, 0xFF, 0x8F, + 0x01, 0xEA, 0xFF, 0x8F, 0x01, 0xE9, 0x00, 0x5D, 0x01, 0xE9, 0xFF, 0x8A, + 0x03, 0xD3, 0x00, 0x5D, 0x02, 0x7D, 0x00, 0x2C, 0x01, 0xEA, 0xFF, 0xC3, + 0x03, 0x37, 0xFF, 0xF5, 0x03, 0x37, 0xFF, 0xF5, 0x01, 0xEA, 0xFF, 0x94, + 0x01, 0xEA, 0xFF, 0x94, 0x01, 0xEA, 0xFF, 0xC3, 0x01, 0xEA, 0xFF, 0xC3, + 0x03, 0xD3, 0x00, 0x75, 0x04, 0x59, 0x00, 0x75, 0x04, 0x59, 0x00, 0x75, + 0x04, 0x59, 0x00, 0x75, 0x04, 0x59, 0xFF, 0x93, 0x04, 0x59, 0x00, 0x75, + 0x04, 0x59, 0x00, 0x75, 0x04, 0x59, 0x00, 0x75, 0x04, 0x59, 0xFF, 0xFC, + 0x04, 0x59, 0x00, 0x75, 0x01, 0xE9, 0x00, 0x75, 0x01, 0xE9, 0xFF, 0xDA, + 0x01, 0xE9, 0xFF, 0x8E, 0x01, 0xE9, 0xFF, 0x91, 0x01, 0xE9, 0x00, 0x75, + 0x03, 0x95, 0xFF, 0xFC, 0x03, 0x29, 0xFF, 0x78, 0x03, 0x29, 0x00, 0x75, + 0x01, 0xE9, 0x00, 0x75, 0x01, 0xE9, 0x00, 0x24, 0x02, 0xD5, 0x00, 0x75, + 0x01, 0xE9, 0x00, 0x5D, 0x01, 0xE9, 0xFF, 0xD8, 0x01, 0xE9, 0xFF, 0xD7, + 0x01, 0xE9, 0xFF, 0x93, 0x02, 0x23, 0x00, 0x75, 0x02, 0x7A, 0x00, 0x12, + 0x02, 0xED, 0x00, 0x12, 0x02, 0xF7, 0x00, 0x12, 0x03, 0x93, 0x00, 0x12, + 0x03, 0x62, 0x00, 0x75, 0x02, 0x23, 0x00, 0x75, 0x02, 0x23, 0x00, 0x63, + 0x02, 0xD3, 0x00, 0x75, 0x02, 0x23, 0x00, 0x75, 0x02, 0x23, 0xFF, 0xD8, + 0x02, 0x23, 0x00, 0x15, 0x02, 0x23, 0xFF, 0xD1, 0x01, 0xE9, 0x00, 0x75, + 0x03, 0xB0, 0x00, 0x75, 0x07, 0x02, 0x00, 0x75, 0x07, 0x02, 0x00, 0x75, + 0x07, 0x02, 0x00, 0x75, 0x07, 0x02, 0x00, 0x75, 0x07, 0x02, 0x00, 0x75, + 0x07, 0x02, 0x00, 0x75, 0x07, 0x02, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x05, 0xE6, 0x00, 0x75, 0x04, 0xA6, 0xFF, 0x9D, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x06, 0x90, 0x00, 0x75, + 0x04, 0xDC, 0x00, 0x75, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x3A, 0x04, 0xA0, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA0, 0x00, 0x44, + 0x04, 0xA0, 0x00, 0x44, 0x04, 0xA0, 0x00, 0x44, 0x04, 0xA0, 0x00, 0x44, + 0x04, 0xA0, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x3A, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x07, 0x9D, 0x00, 0x44, 0x06, 0x54, 0x00, 0x44, 0x08, 0xE3, 0x00, 0x44, + 0x04, 0xC3, 0x00, 0x75, 0x04, 0xBA, 0x00, 0x7A, 0x04, 0xC3, 0x00, 0x75, + 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC3, 0x00, 0x75, + 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x02, 0xEC, 0x00, 0x75, 0x02, 0xEC, 0x00, 0x75, 0x02, 0xEC, 0xFF, 0x90, + 0x02, 0xEC, 0x00, 0x22, 0x02, 0xEC, 0x00, 0x22, 0x02, 0xDC, 0x00, 0x22, + 0x02, 0xDC, 0x00, 0x75, 0x02, 0xEC, 0x00, 0x75, 0x02, 0xEC, 0x00, 0x75, + 0x02, 0xEC, 0x00, 0x25, 0x02, 0xEC, 0x00, 0x3B, 0x02, 0xEC, 0xFF, 0xAF, + 0x02, 0xEC, 0x00, 0x56, 0x02, 0xEC, 0x00, 0x75, 0x02, 0xEC, 0x00, 0x5D, + 0x02, 0xEC, 0x00, 0x5D, 0x02, 0xEC, 0xFF, 0xD8, 0x04, 0x67, 0x00, 0x75, + 0x04, 0x67, 0x00, 0x75, 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, + 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, + 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, + 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, + 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, + 0x04, 0x1D, 0x00, 0x42, 0x04, 0xF5, 0x00, 0x81, 0x05, 0x00, 0x00, 0x81, + 0x02, 0xCD, 0x00, 0x12, 0x02, 0xCD, 0x00, 0x12, 0x02, 0xB7, 0x00, 0x12, + 0x03, 0x8E, 0xFF, 0xB1, 0x06, 0xAF, 0x00, 0x12, 0x02, 0xCD, 0x00, 0x2C, + 0x02, 0xCD, 0x00, 0x12, 0x02, 0xCD, 0x00, 0x12, 0x03, 0x55, 0x00, 0x12, + 0x02, 0xCD, 0x00, 0x12, 0x02, 0xCD, 0x00, 0x12, 0x02, 0xCD, 0x00, 0x12, + 0x02, 0xCD, 0x00, 0x12, 0x02, 0xCD, 0x00, 0x12, 0x02, 0xCD, 0xFF, 0xD8, + 0x02, 0x7F, 0x00, 0x75, 0x02, 0x7F, 0x00, 0x75, 0x02, 0x7F, 0x00, 0x75, + 0x03, 0x07, 0x00, 0x75, 0x02, 0x7F, 0x00, 0x75, 0x02, 0x7F, 0x00, 0x5D, + 0x02, 0x7F, 0x00, 0x75, 0x02, 0x7F, 0x00, 0x38, 0x02, 0x7F, 0xFF, 0xF4, + 0x02, 0x7F, 0xFF, 0x8A, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x05, 0x10, 0x00, 0x75, 0x04, 0xB8, 0x00, 0x75, + 0x05, 0x3C, 0x00, 0x12, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x66, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x05, 0x10, 0x00, 0x75, + 0x05, 0x10, 0x00, 0x75, 0x05, 0x10, 0x00, 0x75, 0x05, 0x10, 0x00, 0x75, + 0x05, 0x10, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x05, 0x3C, 0x00, 0x12, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x66, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x05, 0x12, 0x00, 0x75, 0x05, 0x12, 0x00, 0x75, 0x05, 0x12, 0x00, 0x75, + 0x05, 0x12, 0x00, 0x75, 0x05, 0x12, 0x00, 0x75, 0x05, 0x12, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0x67, 0x00, 0x16, 0x04, 0x67, 0x00, 0x16, 0x04, 0x67, 0x00, 0x16, + 0x04, 0x67, 0x00, 0x16, 0x06, 0x72, 0x00, 0x18, 0x06, 0x72, 0x00, 0x18, + 0x06, 0x72, 0x00, 0x18, 0x06, 0x72, 0x00, 0x18, 0x06, 0x72, 0x00, 0x18, + 0x06, 0x72, 0x00, 0x18, 0x06, 0x72, 0x00, 0x18, 0x06, 0x72, 0x00, 0x18, + 0x06, 0x72, 0x00, 0x18, 0x04, 0x4A, 0x00, 0x19, 0x04, 0x4A, 0x00, 0x19, + 0x04, 0x4A, 0x00, 0x19, 0x04, 0x4A, 0x00, 0x19, 0x04, 0x81, 0x00, 0x12, + 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, 0x05, 0x80, 0x00, 0x16, + 0x04, 0x6D, 0x00, 0x19, 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, + 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, + 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, + 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, + 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, + 0x04, 0x68, 0x00, 0x16, 0x05, 0x21, 0x00, 0x15, 0x05, 0x21, 0x00, 0x15, + 0x05, 0x21, 0x00, 0x15, 0x04, 0x68, 0x00, 0x16, 0x04, 0x75, 0x00, 0x16, + 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, + 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, + 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, + 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, 0x05, 0x16, 0x00, 0x7A, + 0x04, 0x72, 0x00, 0x81, 0x05, 0x88, 0x00, 0x15, 0x06, 0x05, 0x00, 0x4F, + 0x05, 0x1F, 0x00, 0x53, 0x05, 0xC6, 0x00, 0x81, 0x05, 0x39, 0x00, 0x4E, + 0x06, 0xED, 0x00, 0x4F, 0x06, 0xF2, 0x00, 0x81, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0xCF, 0x00, 0x37, 0x06, 0xCF, 0x00, 0x37, 0x06, 0xED, 0x00, 0x37, + 0x07, 0x01, 0x00, 0x37, 0x08, 0x1B, 0x00, 0x37, 0x08, 0x39, 0x00, 0x37, + 0x08, 0x29, 0x00, 0x37, 0x08, 0x3D, 0x00, 0x37, 0x07, 0x9F, 0x00, 0x37, + 0x07, 0xB2, 0x00, 0x37, 0x06, 0xE2, 0xFF, 0xBD, 0x06, 0xED, 0x00, 0x37, + 0x07, 0x01, 0x00, 0x37, 0x08, 0x1B, 0x00, 0x37, 0x08, 0x39, 0x00, 0x37, + 0x08, 0x29, 0x00, 0x37, 0x08, 0x3D, 0x00, 0x37, 0x07, 0x9F, 0x00, 0x37, + 0x07, 0xB2, 0x00, 0x37, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x54, + 0x05, 0x54, 0x00, 0x37, 0x06, 0xD1, 0x00, 0x37, 0x05, 0x54, 0x00, 0x37, + 0x05, 0x71, 0x00, 0x1C, 0x05, 0x00, 0x00, 0x81, 0x04, 0x72, 0x00, 0x81, + 0x04, 0xC4, 0x00, 0x15, 0x06, 0x77, 0x00, 0x37, 0x07, 0xE7, 0x00, 0x18, + 0x08, 0x1F, 0x00, 0x18, 0x04, 0xF1, 0x00, 0x56, 0x05, 0x69, 0x00, 0x81, + 0x05, 0x64, 0x00, 0x81, 0x05, 0x58, 0x00, 0x81, 0x05, 0xCC, 0x00, 0x37, + 0x06, 0x05, 0x00, 0x4F, 0x05, 0xA4, 0x00, 0x81, 0x05, 0x21, 0x00, 0x15, + 0x06, 0x93, 0x00, 0x4F, 0x05, 0xE3, 0x00, 0x81, 0x07, 0x67, 0x00, 0x37, + 0x05, 0x77, 0x00, 0x75, 0x05, 0xA2, 0x00, 0x75, 0x05, 0x77, 0x00, 0x75, + 0x05, 0x77, 0x00, 0x81, 0x06, 0xEF, 0x00, 0x37, 0x07, 0xA5, 0x00, 0x81, + 0x07, 0xD0, 0x00, 0x81, 0x06, 0x6C, 0x00, 0x37, 0x06, 0xEF, 0x00, 0x81, + 0x05, 0x19, 0x00, 0x81, 0x08, 0xBB, 0x00, 0x37, 0x08, 0xD2, 0x00, 0x81, + 0x05, 0xD2, 0x00, 0x4B, 0x08, 0x23, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x35, + 0x05, 0x21, 0x00, 0x81, 0x08, 0xBC, 0x00, 0x81, 0x05, 0xD2, 0x00, 0x4F, + 0x08, 0x12, 0x00, 0x4F, 0x06, 0xEF, 0x00, 0x12, 0x05, 0xE2, 0x00, 0x58, + 0x04, 0xE8, 0x00, 0x56, 0x05, 0xB2, 0x00, 0x15, 0x06, 0xA5, 0x00, 0x37, + 0x04, 0x93, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, 0x05, 0x4C, 0x00, 0x44, + 0x04, 0xA9, 0x00, 0x75, 0x04, 0x67, 0x00, 0x16, 0x04, 0x9C, 0x00, 0x44, + 0x04, 0x1D, 0x00, 0x43, 0x04, 0x1D, 0x00, 0x43, 0x04, 0x47, 0x00, 0x43, + 0x04, 0x1D, 0x00, 0x43, 0x04, 0x1D, 0x00, 0x42, 0x04, 0x47, 0x00, 0x44, + 0x05, 0xBC, 0x00, 0x42, 0x04, 0x1D, 0x00, 0x43, 0x04, 0x1D, 0x00, 0x43, + 0x04, 0x1D, 0x00, 0x43, 0x04, 0x1D, 0x00, 0x43, 0x04, 0x1D, 0x00, 0x43, + 0x04, 0x1D, 0x00, 0x43, 0x04, 0x1D, 0x00, 0x43, 0x04, 0x00, 0x00, 0x44, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xCD, 0x00, 0x4F, 0x02, 0x23, 0x00, 0x75, 0x02, 0x23, 0xFF, 0xA4, + 0x02, 0x23, 0x00, 0x75, 0x02, 0x23, 0xFF, 0x89, 0x02, 0x23, 0x00, 0x75, + 0x02, 0x23, 0x00, 0x63, 0x02, 0x23, 0xFF, 0xCF, 0x02, 0x23, 0xFF, 0xA4, + 0x02, 0x23, 0xFF, 0xD1, 0x02, 0x23, 0xFF, 0xAE, 0x02, 0x23, 0xFF, 0xB9, + 0x02, 0x23, 0xFF, 0xB8, 0x02, 0x23, 0x00, 0x37, 0x02, 0x23, 0xFF, 0xB0, + 0x02, 0x23, 0xFF, 0xD7, 0x02, 0x23, 0xFF, 0x35, 0x02, 0x23, 0xFF, 0xAE, + 0x02, 0x23, 0xFF, 0x81, 0x04, 0xDD, 0x00, 0x16, 0x04, 0x35, 0x00, 0x46, + 0x05, 0x0C, 0x00, 0x2C, 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC3, 0x00, 0x75, + 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC3, 0xFF, 0xBF, 0x04, 0x6C, 0x00, 0x44, + 0x04, 0xF5, 0x00, 0x44, 0x03, 0xEE, 0x00, 0x12, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x06, 0x05, 0x00, 0x44, + 0x05, 0x9C, 0x00, 0x44, 0x06, 0x57, 0x00, 0x75, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, + 0x06, 0x6A, 0x00, 0x44, 0x06, 0x6A, 0x00, 0x44, 0x04, 0xEC, 0x00, 0x41, + 0x04, 0x9D, 0x00, 0x44, 0x04, 0x58, 0x00, 0x75, 0x03, 0x83, 0x00, 0x75, + 0x03, 0x83, 0x00, 0x75, 0x03, 0x83, 0xFF, 0xDE, 0x05, 0x09, 0x00, 0x1A, + 0x06, 0x8C, 0x00, 0x19, 0x06, 0xC6, 0x00, 0x19, 0x03, 0xED, 0x00, 0x40, + 0x04, 0xB8, 0x00, 0x75, 0x04, 0xB8, 0x00, 0x75, 0x04, 0x60, 0x00, 0x75, + 0x04, 0xB4, 0x00, 0x75, 0x04, 0xA4, 0x00, 0x75, 0x04, 0xC3, 0x00, 0x75, + 0x05, 0x25, 0x00, 0x12, 0x04, 0xA6, 0x00, 0x12, 0x04, 0xA6, 0x00, 0x12, + 0x04, 0xD1, 0x00, 0x12, 0x06, 0x27, 0x00, 0x75, 0x06, 0x27, 0x00, 0x75, + 0x04, 0xB4, 0x00, 0x75, 0x04, 0xDF, 0x00, 0x75, 0x05, 0x90, 0x00, 0x75, + 0x04, 0xB4, 0x00, 0x75, 0x04, 0xB4, 0x00, 0x75, 0x04, 0xA8, 0x00, 0x75, + 0x03, 0xEE, 0x00, 0x12, 0x05, 0xC2, 0x00, 0x44, 0x04, 0x19, 0x00, 0x19, + 0x04, 0x91, 0x00, 0x19, 0x04, 0xF2, 0x00, 0x75, 0x04, 0xA8, 0x00, 0x75, + 0x04, 0x91, 0x00, 0x75, 0x04, 0xBC, 0x00, 0x75, 0x04, 0x91, 0x00, 0x75, + 0x06, 0x98, 0x00, 0x75, 0x06, 0xC3, 0x00, 0x75, 0x04, 0x59, 0x00, 0x75, + 0x05, 0x1E, 0x00, 0x12, 0x05, 0xE0, 0x00, 0x75, 0x04, 0xD7, 0x00, 0x12, + 0x04, 0xD7, 0x00, 0x12, 0x07, 0x42, 0x00, 0x2C, 0x07, 0x1B, 0x00, 0x75, + 0x04, 0x6D, 0x00, 0x3F, 0x06, 0x99, 0x00, 0x75, 0x04, 0x67, 0x00, 0x16, + 0x04, 0x52, 0x00, 0x75, 0x07, 0x5B, 0x00, 0x75, 0x04, 0x6D, 0x00, 0x44, + 0x06, 0x6C, 0x00, 0x44, 0x05, 0x77, 0x00, 0x12, 0x05, 0xC1, 0x00, 0x12, + 0x04, 0xE8, 0x00, 0x56, 0x04, 0xAB, 0x00, 0x16, 0x05, 0x23, 0x00, 0x4E, + 0x04, 0x6D, 0x00, 0x44, 0x04, 0x57, 0x00, 0x0A, 0x04, 0xDB, 0x00, 0x4C, + 0x03, 0x56, 0x00, 0x26, 0x04, 0xD8, 0x00, 0x56, 0x05, 0xA0, 0x00, 0x43, + 0x05, 0x44, 0x00, 0x24, 0x04, 0x53, 0x00, 0x2F, 0x05, 0x1C, 0x00, 0x3F, + 0x07, 0x6D, 0x00, 0x81, 0x05, 0x66, 0x00, 0x37, 0x05, 0xFE, 0x00, 0x26, + 0x07, 0xE9, 0x00, 0x2C, 0x04, 0xDB, 0x00, 0x4C, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x74, 0x00, 0x87, 0x05, 0xEF, 0x00, 0x12, 0x05, 0xE6, 0x00, 0x4F, + 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4F, 0x05, 0xA3, 0x00, 0x4F, + 0x05, 0x13, 0x00, 0x37, 0x0B, 0x24, 0x00, 0x44, 0x06, 0xB8, 0x00, 0x74, + 0x06, 0xE5, 0x00, 0x8A, 0x05, 0xD2, 0x00, 0x77, 0x08, 0xF8, 0x00, 0x81, + 0x05, 0xD1, 0x00, 0x7D, 0x04, 0xD6, 0xFF, 0xF8, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x24, 0x00, 0x4F, 0x03, 0x1F, 0x00, 0x36, + 0x04, 0xC1, 0x00, 0x5A, 0x04, 0xC1, 0x00, 0x5A, 0x04, 0xF1, 0x00, 0x56, + 0x05, 0x31, 0x00, 0x44, 0x04, 0xC6, 0x00, 0x4A, 0x05, 0x0A, 0x00, 0x37, + 0x04, 0xE9, 0x00, 0x4F, 0x04, 0x60, 0x00, 0x37, 0x04, 0xE5, 0x00, 0x4F, + 0x04, 0xE9, 0x00, 0x4F, 0x05, 0x24, 0x00, 0x4F, 0x03, 0x19, 0x00, 0x66, + 0x04, 0xE8, 0x00, 0x56, 0x05, 0x31, 0x00, 0x44, 0x04, 0xBF, 0x00, 0x4F, + 0x04, 0xBF, 0x00, 0x4F, 0x05, 0x29, 0x00, 0x5E, 0x05, 0x29, 0x00, 0xC8, + 0x05, 0x29, 0x00, 0x8F, 0x05, 0x29, 0x00, 0x68, 0x05, 0x29, 0x00, 0x3F, + 0x05, 0x29, 0x00, 0x7B, 0x05, 0x29, 0x00, 0x6F, 0x05, 0x29, 0x00, 0x9B, + 0x05, 0x29, 0x00, 0x71, 0x05, 0x29, 0x00, 0x6F, 0x05, 0x29, 0x00, 0x5E, + 0x05, 0x29, 0x00, 0xC8, 0x05, 0x29, 0x00, 0x6B, 0x05, 0x29, 0x00, 0x3F, + 0x05, 0x29, 0x00, 0x84, 0x05, 0x29, 0x00, 0x84, 0x02, 0x26, 0x00, 0x5C, + 0x02, 0x26, 0x00, 0x7A, 0x02, 0x26, 0x00, 0x7A, 0x02, 0x26, 0x00, 0x7A, + 0x02, 0x26, 0x00, 0x5C, 0x03, 0x20, 0x00, 0xEC, 0x03, 0x20, 0x00, 0x4F, + 0x03, 0x20, 0x00, 0x4B, 0x03, 0x20, 0x00, 0x4F, 0x03, 0x20, 0x01, 0x12, + 0x03, 0x20, 0x00, 0x4F, 0x03, 0x20, 0x00, 0xEC, 0x03, 0x20, 0x00, 0x4F, + 0x03, 0x20, 0x00, 0x4B, 0x03, 0x20, 0x00, 0x4F, 0x03, 0x20, 0x01, 0x12, + 0x03, 0x20, 0x00, 0x4F, 0x05, 0x29, 0x01, 0x46, 0x05, 0x29, 0x01, 0x46, + 0x05, 0x29, 0x00, 0xA5, 0x05, 0x29, 0x00, 0xA5, 0x05, 0x29, 0x00, 0xA5, + 0x05, 0x29, 0x00, 0xA5, 0x05, 0x29, 0x00, 0xB4, 0x05, 0x29, 0x00, 0xB4, + 0x05, 0x29, 0x00, 0x9F, 0x05, 0x29, 0x00, 0xA9, 0x05, 0x29, 0x00, 0x9C, + 0x05, 0x29, 0x00, 0xA9, 0x05, 0x29, 0x00, 0xA5, 0x05, 0x29, 0x00, 0x85, + 0x05, 0x29, 0x00, 0x82, 0x05, 0x29, 0x00, 0xFD, 0x05, 0x29, 0x00, 0xA5, + 0x05, 0x29, 0x00, 0xA5, 0x05, 0x29, 0x00, 0xA5, 0x05, 0x29, 0x00, 0xA5, + 0x05, 0x29, 0x00, 0xB4, 0x05, 0x29, 0x00, 0xB4, 0x05, 0x29, 0x00, 0x9F, + 0x05, 0x29, 0x00, 0xA9, 0x05, 0x29, 0x00, 0x9C, 0x05, 0x29, 0x00, 0xA9, + 0x05, 0x29, 0x00, 0xA5, 0x05, 0x29, 0x00, 0x85, 0x05, 0x29, 0x00, 0x82, + 0x05, 0x29, 0x00, 0xA9, 0x02, 0x26, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x05, 0x20, 0x00, 0x44, 0x03, 0x71, 0x00, 0x37, + 0x02, 0x0D, 0x00, 0x6A, 0x04, 0x19, 0x00, 0x6A, 0x02, 0x13, 0x00, 0x6A, + 0x06, 0x75, 0x00, 0x6A, 0x04, 0x68, 0x00, 0x44, 0x08, 0xD0, 0x00, 0x44, + 0x06, 0x75, 0x00, 0x44, 0x04, 0x68, 0x00, 0x59, 0x04, 0x3D, 0x00, 0x44, + 0x04, 0x3D, 0x00, 0x59, 0x02, 0xA8, 0x00, 0x8E, 0x02, 0xA8, 0x00, 0x36, + 0x02, 0xA8, 0x00, 0x99, 0x02, 0xA8, 0x00, 0x99, 0x02, 0xA8, 0x00, 0x50, + 0x02, 0xA8, 0x00, 0x50, 0x03, 0x6E, 0x00, 0x7A, 0x03, 0x6E, 0x00, 0x50, + 0x07, 0xF9, 0x00, 0x4F, 0x02, 0xA8, 0x00, 0x8E, 0x02, 0xA8, 0x00, 0x36, + 0x02, 0xA8, 0x00, 0x99, 0x02, 0xA8, 0x00, 0x50, 0x03, 0x6E, 0x00, 0x7A, + 0x03, 0x6E, 0x00, 0x50, 0x07, 0xF9, 0x00, 0x4F, 0x04, 0xFB, 0x00, 0x06, + 0x05, 0xD4, 0x00, 0x6E, 0x02, 0xDB, 0x00, 0x0D, 0x02, 0xB0, 0x00, 0xE2, + 0x02, 0x5A, 0x00, 0xB9, 0x02, 0xDB, 0x00, 0x0D, 0x03, 0x90, 0x00, 0x7A, + 0x04, 0x00, 0x00, 0x00, 0x05, 0x29, 0x00, 0x4A, 0x08, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x00, 0x00, 0x03, 0xB5, 0x00, 0x9B, 0x03, 0xB5, 0x00, 0x9B, + 0x03, 0xB5, 0x00, 0xC2, 0x03, 0xB5, 0x01, 0x08, 0x04, 0xA9, 0x00, 0x7E, + 0x04, 0xA9, 0x00, 0x8D, 0x03, 0xB5, 0x00, 0xC9, 0x03, 0x90, 0x00, 0x7A, + 0x04, 0x00, 0x00, 0x00, 0x05, 0x29, 0x00, 0x4A, 0x08, 0x00, 0x00, 0x00, + 0x03, 0xB5, 0x00, 0x9B, 0x03, 0xB5, 0x00, 0x9B, 0x03, 0xB5, 0x00, 0xC2, + 0x03, 0xB5, 0x01, 0x08, 0x04, 0xA9, 0x00, 0x7E, 0x04, 0xA9, 0x00, 0x8D, + 0x03, 0xB5, 0x00, 0xC9, 0x01, 0xDB, 0x00, 0x5E, 0x01, 0xDB, 0x00, 0x5E, + 0x02, 0x3B, 0x00, 0xA6, 0x03, 0xBA, 0x00, 0xA6, 0x03, 0x66, 0x00, 0x5E, + 0x03, 0x5D, 0x00, 0x5E, 0x03, 0x39, 0x00, 0x3A, 0x01, 0xB8, 0x00, 0x3A, + 0x01, 0xDB, 0x00, 0x2F, 0x03, 0x5D, 0x00, 0x2F, 0x01, 0xE3, 0x00, 0x5C, + 0x03, 0xC5, 0x00, 0x5C, 0x05, 0xA7, 0x00, 0x5C, 0x07, 0x88, 0x00, 0x5C, + 0x01, 0xE3, 0x00, 0x5C, 0x03, 0xC5, 0x00, 0x5C, 0x05, 0xA7, 0x00, 0x5C, + 0x01, 0xCF, 0x00, 0x64, 0x03, 0x9E, 0x00, 0x64, 0x02, 0x09, 0x00, 0x42, + 0x02, 0x09, 0x00, 0x69, 0x06, 0x1C, 0x00, 0x69, 0x04, 0x13, 0x00, 0x69, + 0x02, 0x09, 0x00, 0x69, 0x02, 0x09, 0x00, 0x69, 0x02, 0x09, 0x00, 0x69, + 0x02, 0x12, 0x00, 0x42, 0x02, 0x09, 0x00, 0x69, 0x02, 0x09, 0x00, 0x69, + 0x02, 0x12, 0x00, 0x42, 0x03, 0x06, 0x00, 0x43, 0x03, 0x06, 0x00, 0x30, + 0x04, 0xC6, 0x00, 0x43, 0x04, 0xC6, 0x00, 0x30, 0x05, 0x37, 0x00, 0x99, + 0x05, 0x37, 0x00, 0xC0, 0x05, 0x37, 0x00, 0xAC, 0x05, 0x37, 0x00, 0xAC, + 0x05, 0x37, 0x00, 0xBA, 0x05, 0x37, 0x00, 0xBA, 0x05, 0x37, 0x00, 0xA6, + 0x05, 0x37, 0x00, 0xB0, 0x05, 0x37, 0x00, 0xA3, 0x05, 0x37, 0x00, 0xB0, + 0x05, 0x37, 0x00, 0xAC, 0x05, 0x37, 0x00, 0x8C, 0x05, 0x37, 0x00, 0x89, + 0x05, 0x37, 0x00, 0x99, 0x05, 0x37, 0x00, 0xC0, 0x05, 0x37, 0x00, 0xAC, + 0x05, 0x37, 0x00, 0xAC, 0x05, 0x37, 0x00, 0xBA, 0x05, 0x37, 0x00, 0xBA, + 0x05, 0x37, 0x00, 0xA6, 0x05, 0x37, 0x00, 0xB0, 0x05, 0x37, 0x00, 0xA3, + 0x05, 0x37, 0x00, 0xB0, 0x05, 0x37, 0x00, 0xAC, 0x05, 0x37, 0x00, 0x8C, + 0x05, 0x37, 0x00, 0x89, 0x05, 0x37, 0x00, 0xD2, 0x03, 0xBF, 0x00, 0x00, + 0x04, 0x4C, 0x00, 0x7D, 0x04, 0x4C, 0x00, 0x7D, 0x03, 0xAF, 0x00, 0x35, + 0x04, 0x27, 0x00, 0x7D, 0x05, 0x24, 0x00, 0xA6, 0x05, 0x22, 0x00, 0x4B, + 0x07, 0x27, 0x00, 0x94, 0x07, 0x27, 0x00, 0x94, 0x07, 0x27, 0x00, 0x94, + 0x04, 0xE0, 0x00, 0x3E, 0x04, 0xCD, 0x00, 0x3E, 0x05, 0xA7, 0x00, 0x3E, + 0x05, 0xFB, 0x00, 0x4A, 0x04, 0xE0, 0x00, 0x4A, 0x05, 0x01, 0x00, 0x4A, + 0x03, 0x80, 0x00, 0x64, 0x03, 0x89, 0x00, 0x37, 0x03, 0xB9, 0x00, 0x35, + 0x01, 0x83, 0x00, 0x38, 0x03, 0x33, 0x00, 0x40, 0x04, 0x9A, 0x00, 0x3E, + 0x04, 0x9A, 0x00, 0x81, 0x04, 0x5B, 0x00, 0x4F, 0x07, 0x8C, 0x00, 0x46, + 0x05, 0x17, 0x00, 0x8E, 0x05, 0x76, 0x00, 0x6C, 0x05, 0xDA, 0x00, 0xB6, + 0x02, 0xCC, 0xFF, 0xC3, 0x05, 0x18, 0x00, 0x5D, 0x05, 0x58, 0x00, 0x4C, + 0x04, 0x7D, 0x00, 0x39, 0x03, 0x03, 0x00, 0x40, 0x03, 0x3C, 0x00, 0x5B, + 0x03, 0x07, 0x00, 0x40, 0x03, 0x3C, 0x00, 0x40, 0x03, 0x0D, 0x00, 0x40, + 0x02, 0x25, 0x00, 0x26, 0x03, 0x3C, 0x00, 0x40, 0x03, 0x33, 0x00, 0x5B, + 0x01, 0x83, 0x00, 0x55, 0x01, 0x83, 0xFF, 0xF0, 0x03, 0x04, 0x00, 0x5B, + 0x01, 0x82, 0x00, 0x5B, 0x04, 0xA8, 0x00, 0x5B, 0x03, 0x33, 0x00, 0x5B, + 0x03, 0x26, 0x00, 0x40, 0x03, 0x3C, 0x00, 0x5B, 0x03, 0x3C, 0x00, 0x40, + 0x02, 0x29, 0x00, 0x5B, 0x02, 0xE2, 0x00, 0x3E, 0x02, 0x16, 0x00, 0x26, + 0x03, 0x33, 0x00, 0x5B, 0x03, 0x10, 0x00, 0x22, 0x04, 0x5D, 0x00, 0x21, + 0x02, 0xF5, 0x00, 0x24, 0x03, 0x12, 0x00, 0x22, 0x02, 0xEA, 0x00, 0x5B, + 0x03, 0x80, 0x00, 0x43, 0x03, 0x80, 0x00, 0x43, 0x02, 0x3A, 0x00, 0x3D, + 0x02, 0x37, 0x00, 0x51, 0x03, 0x40, 0x00, 0x4B, 0x03, 0x59, 0x00, 0x4D, + 0x03, 0x54, 0x00, 0x4D, 0x03, 0x72, 0x00, 0x48, 0x03, 0x72, 0x00, 0x48, + 0x03, 0x40, 0x00, 0x47, 0x03, 0x56, 0x00, 0x43, 0x03, 0x37, 0x00, 0x43, + 0x03, 0x00, 0x00, 0x3A, 0x03, 0x55, 0x00, 0x43, 0x03, 0x56, 0x00, 0x43, + 0x03, 0x37, 0x00, 0x43, 0x01, 0xF2, 0x00, 0x67, 0x01, 0xF2, 0x00, 0x37, + 0x01, 0xF2, 0x00, 0x6F, 0x01, 0xF2, 0x00, 0x49, 0x03, 0x74, 0x00, 0x7E, + 0x03, 0x75, 0x00, 0x81, 0x03, 0x74, 0x00, 0x84, 0x03, 0x03, 0x00, 0x40, + 0x03, 0x3C, 0x00, 0x5B, 0x03, 0x07, 0x00, 0x40, 0x03, 0x3C, 0x00, 0x40, + 0x03, 0x0D, 0x00, 0x40, 0x02, 0x25, 0x00, 0x26, 0x03, 0x3C, 0x00, 0x40, + 0x03, 0x33, 0x00, 0x5B, 0x01, 0x83, 0x00, 0x55, 0x01, 0x83, 0xFF, 0xF0, + 0x03, 0x04, 0x00, 0x5B, 0x01, 0x82, 0x00, 0x5B, 0x04, 0xA8, 0x00, 0x5B, + 0x03, 0x33, 0x00, 0x5B, 0x03, 0x26, 0x00, 0x40, 0x03, 0x3C, 0x00, 0x5B, + 0x03, 0x3C, 0x00, 0x40, 0x02, 0x29, 0x00, 0x5B, 0x02, 0xE2, 0x00, 0x3E, + 0x02, 0x16, 0x00, 0x26, 0x03, 0x33, 0x00, 0x5B, 0x03, 0x10, 0x00, 0x22, + 0x04, 0x5D, 0x00, 0x21, 0x02, 0xF5, 0x00, 0x24, 0x03, 0x12, 0x00, 0x22, + 0x02, 0xEA, 0x00, 0x5B, 0x03, 0x80, 0x00, 0x43, 0x03, 0x80, 0x00, 0x43, + 0x02, 0x3A, 0x00, 0x3D, 0x02, 0x37, 0x00, 0x51, 0x03, 0x40, 0x00, 0x4B, + 0x03, 0x59, 0x00, 0x4D, 0x03, 0x54, 0x00, 0x4D, 0x03, 0x72, 0x00, 0x48, + 0x03, 0x72, 0x00, 0x48, 0x03, 0x40, 0x00, 0x47, 0x03, 0x56, 0x00, 0x43, + 0x03, 0x37, 0x00, 0x43, 0x03, 0x00, 0x00, 0x3A, 0x03, 0x55, 0x00, 0x43, + 0x03, 0x56, 0x00, 0x43, 0x03, 0x37, 0x00, 0x43, 0x01, 0xF2, 0x00, 0x67, + 0x01, 0xF2, 0x00, 0x37, 0x01, 0xF2, 0x00, 0x6F, 0x01, 0xF2, 0x00, 0x49, + 0x03, 0x74, 0x00, 0x7E, 0x03, 0x75, 0x00, 0x81, 0x03, 0x74, 0x00, 0x84, + 0x01, 0x64, 0xFE, 0x4D, 0x03, 0x20, 0x00, 0x3D, 0x03, 0x22, 0x00, 0x3D, + 0x02, 0x00, 0x00, 0x36, 0x01, 0xFB, 0x00, 0x49, 0x02, 0xE7, 0x00, 0x44, + 0x03, 0x01, 0x00, 0x47, 0x02, 0xFE, 0x00, 0x47, 0x03, 0x26, 0x00, 0x40, + 0x03, 0x26, 0x00, 0x40, 0x02, 0xEA, 0x00, 0x42, 0x02, 0xFF, 0x00, 0x3D, + 0x02, 0xDE, 0x00, 0x3D, 0x02, 0xB0, 0x00, 0x35, 0x02, 0xFC, 0x00, 0x3D, + 0x02, 0xFF, 0x00, 0x3D, 0x02, 0xDE, 0x00, 0x3D, 0x03, 0x1F, 0x00, 0x72, + 0x03, 0x1E, 0x00, 0x73, 0x03, 0x20, 0x00, 0x78, 0x01, 0xC0, 0x00, 0x5E, + 0x01, 0xC0, 0x00, 0x31, 0x01, 0x74, 0x00, 0x43, 0x01, 0x88, 0x00, 0x25, + 0x01, 0x92, 0x00, 0x43, 0x01, 0x8C, 0x00, 0x58, 0x03, 0x20, 0x00, 0x3D, + 0x03, 0x22, 0x00, 0x3D, 0x02, 0x00, 0x00, 0x36, 0x01, 0xFB, 0x00, 0x49, + 0x02, 0xE7, 0x00, 0x44, 0x03, 0x01, 0x00, 0x47, 0x02, 0xFE, 0x00, 0x47, + 0x03, 0x26, 0x00, 0x40, 0x03, 0x26, 0x00, 0x40, 0x02, 0xEA, 0x00, 0x42, + 0x02, 0xFF, 0x00, 0x3D, 0x02, 0xDE, 0x00, 0x3D, 0x02, 0xB0, 0x00, 0x35, + 0x02, 0xFC, 0x00, 0x3D, 0x02, 0xFF, 0x00, 0x3D, 0x02, 0xDE, 0x00, 0x3D, + 0x03, 0x1F, 0x00, 0x72, 0x03, 0x1E, 0x00, 0x73, 0x03, 0x20, 0x00, 0x78, + 0x01, 0xC0, 0x00, 0x5E, 0x01, 0xC0, 0x00, 0x31, 0x01, 0x74, 0x00, 0x43, + 0x01, 0x88, 0x00, 0x25, 0x01, 0x92, 0x00, 0x43, 0x01, 0x8C, 0x00, 0x58, + 0x03, 0x9E, 0x00, 0x36, 0x06, 0x84, 0x00, 0x36, 0x07, 0x90, 0x00, 0x3D, + 0x06, 0xA9, 0x00, 0x36, 0x07, 0x8F, 0x00, 0x44, 0x06, 0x41, 0x00, 0x36, + 0x06, 0xEB, 0x00, 0x47, 0x06, 0xBE, 0x00, 0x36, 0x07, 0xA4, 0x00, 0x44, + 0x07, 0x69, 0x00, 0x47, 0x07, 0xAB, 0x00, 0x40, 0x06, 0x9D, 0x00, 0x36, + 0x07, 0x4D, 0x00, 0x42, 0x06, 0xC3, 0x00, 0x36, 0x06, 0x9A, 0x00, 0x36, + 0x07, 0x44, 0x00, 0x47, 0x07, 0x4A, 0x00, 0x42, 0x06, 0x6A, 0x00, 0x35, + 0x06, 0x9D, 0x00, 0x36, 0x08, 0xBE, 0x00, 0x36, 0x07, 0x6D, 0x00, 0x91, + 0x0A, 0x48, 0x00, 0x91, 0x0D, 0x23, 0x00, 0x91, 0x06, 0xA7, 0x00, 0x20, + 0x07, 0x07, 0x00, 0x40, 0x06, 0xCD, 0x00, 0x40, 0x06, 0xBD, 0x00, 0x40, + 0x06, 0x9F, 0x00, 0x40, 0x02, 0x59, 0x00, 0x64, 0x03, 0xB7, 0x00, 0x64, + 0x02, 0x59, 0x00, 0x58, 0x02, 0x59, 0x00, 0xB0, 0x04, 0xA6, 0x00, 0xE8, + 0x06, 0x5A, 0x00, 0xE8, 0x03, 0x4A, 0x00, 0x44, 0x03, 0xD9, 0x00, 0xAB, + 0x03, 0x43, 0x00, 0x85, 0x03, 0x56, 0x00, 0x67, 0x03, 0x66, 0x00, 0x6B, + 0x02, 0x02, 0x00, 0x6A, 0x02, 0xAD, 0x00, 0x58, 0x03, 0x4A, 0x00, 0x44, + 0x05, 0x52, 0x00, 0xE8, 0x02, 0x7E, 0x00, 0xC3, 0x02, 0x07, 0x00, 0x49, + 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, 0x00, 0xAB, + 0x02, 0x02, 0x00, 0x6A, 0x00, 0x00, 0xFC, 0xCC, 0x01, 0xDB, 0x00, 0x00, + 0x01, 0xDB, 0x00, 0x00, 0x01, 0x2A, 0x00, 0x00, 0x02, 0x2A, 0x00, 0x00, + 0x04, 0x7D, 0x00, 0x00, 0x08, 0xED, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x00, 0x00, 0x02, 0xAC, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x01, 0x54, 0x00, 0x00, 0x05, 0x29, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, + 0x01, 0x2A, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x08, 0x9D, 0x00, 0x81, 0x09, 0x4B, 0x00, 0x64, 0x08, 0x1C, 0x00, 0x64, + 0x05, 0x69, 0x00, 0x81, 0x05, 0x9B, 0x00, 0x15, 0x06, 0x05, 0x00, 0x4F, + 0x05, 0x19, 0x00, 0x86, 0x07, 0x79, 0x00, 0xB6, 0x0A, 0x91, 0x00, 0xB6, + 0x15, 0x4B, 0x00, 0xB6, 0x07, 0x79, 0x00, 0xB6, 0x0A, 0x91, 0x00, 0xB6, + 0x07, 0x79, 0x00, 0xEC, 0x0A, 0x91, 0x00, 0xEC, 0x15, 0x4B, 0x00, 0xEC, + 0x07, 0x79, 0x00, 0xEC, 0x0A, 0x91, 0x00, 0xEC, 0x05, 0xDC, 0x00, 0xD3, + 0x05, 0xDC, 0x00, 0xC8, 0x05, 0xDC, 0x00, 0xC8, 0x05, 0xDC, 0x00, 0xD3, + 0x0A, 0x91, 0x00, 0xB6, 0x0D, 0xD7, 0x00, 0xB6, 0x0A, 0x91, 0x00, 0xB6, + 0x0D, 0xD7, 0x00, 0xB6, 0x06, 0xE4, 0x00, 0xB6, 0x06, 0xE4, 0x00, 0xB6, + 0x06, 0xB3, 0x00, 0xB7, 0x06, 0xB0, 0x00, 0xB6, 0x09, 0x10, 0x00, 0xB6, + 0x09, 0x10, 0x00, 0xA6, 0x07, 0x79, 0x00, 0xB6, 0x0A, 0x91, 0x00, 0xB6, + 0x15, 0x4B, 0x00, 0xB6, 0x07, 0x79, 0x00, 0xB6, 0x0A, 0x91, 0x00, 0xB6, + 0x07, 0x79, 0x00, 0xEC, 0x0A, 0x91, 0x00, 0xEC, 0x15, 0x4B, 0x00, 0xEC, + 0x07, 0x79, 0x00, 0xEC, 0x0A, 0x91, 0x00, 0xEC, 0x0A, 0x91, 0x00, 0xB6, + 0x0D, 0xD7, 0x00, 0xB6, 0x0A, 0x91, 0x00, 0xB6, 0x0D, 0xD7, 0x00, 0xB6, + 0x05, 0xDC, 0x00, 0xC8, 0x05, 0xDC, 0x00, 0xC8, 0x05, 0xDC, 0x00, 0xD3, + 0x05, 0xDC, 0x00, 0xD3, 0x06, 0xE4, 0x00, 0xBA, 0x06, 0xE5, 0x01, 0x4F, + 0x08, 0x1B, 0x00, 0x5A, 0x08, 0x1B, 0x00, 0x5A, 0x07, 0x5C, 0x00, 0x56, + 0x07, 0x5C, 0x00, 0xB9, 0x08, 0x1B, 0x00, 0x5A, 0x08, 0x1B, 0x00, 0x5A, + 0x07, 0x5C, 0x00, 0x56, 0x07, 0x5C, 0x00, 0xB9, 0x08, 0x1B, 0x00, 0x34, + 0x07, 0x27, 0x00, 0x94, 0x07, 0x27, 0x00, 0x94, 0x07, 0x27, 0x00, 0xAC, + 0x07, 0x27, 0x00, 0xAC, 0x07, 0x27, 0x00, 0xAC, 0x07, 0x27, 0x00, 0xAC, + 0x07, 0x27, 0x00, 0xAC, 0x08, 0x4C, 0x00, 0x54, 0x08, 0x4C, 0x00, 0x54, + 0x08, 0x4C, 0x00, 0x54, 0x08, 0x4C, 0x00, 0x54, 0x08, 0x63, 0x00, 0x9E, + 0x08, 0x63, 0x00, 0x9E, 0x08, 0x05, 0x00, 0x83, 0x08, 0x05, 0x00, 0x83, + 0x08, 0x05, 0x00, 0x83, 0x08, 0x33, 0x00, 0xA6, 0x08, 0x33, 0x00, 0xA6, + 0x08, 0x6C, 0x00, 0x95, 0x08, 0x6C, 0x00, 0x95, 0x08, 0x6C, 0x00, 0x95, + 0x07, 0xAD, 0x00, 0xCD, 0x06, 0x36, 0x00, 0xB6, 0x06, 0x36, 0x00, 0xB6, + 0x06, 0x36, 0x00, 0xB6, 0x06, 0x35, 0x00, 0x52, 0x08, 0x05, 0x00, 0xA6, + 0x08, 0x05, 0x00, 0xA6, 0x07, 0x79, 0x00, 0xD4, 0x07, 0x79, 0x00, 0xD4, + 0x07, 0x79, 0x00, 0xD4, 0x09, 0x91, 0x00, 0x9A, 0x09, 0x91, 0x00, 0xA6, + 0x07, 0xD8, 0x00, 0x81, 0x06, 0xBF, 0x00, 0x72, 0x07, 0xDC, 0x00, 0xB6, + 0x07, 0xDC, 0x00, 0xB6, 0x07, 0xDC, 0x00, 0xB8, 0x07, 0xDC, 0x00, 0xB6, + 0x07, 0xDC, 0x00, 0xB8, 0x06, 0xD3, 0x00, 0xB8, 0x08, 0x22, 0x00, 0xA6, + 0x08, 0x22, 0x00, 0xA6, 0x04, 0xD5, 0x00, 0x95, 0x04, 0xD5, 0x00, 0x95, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x05, 0xE6, 0x00, 0x4F, + 0x05, 0xFB, 0x00, 0x4F, 0x05, 0x69, 0x00, 0x81, 0x04, 0x6D, 0x00, 0x81, + 0x05, 0xD5, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, 0x05, 0x23, 0x00, 0x4E, + 0x04, 0x59, 0x00, 0x75, 0x01, 0xE9, 0x00, 0x6B, 0x02, 0x23, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x02, 0xEC, 0x00, 0x6B, 0x04, 0x1E, 0x00, 0x43, + 0x02, 0xCD, 0x00, 0x12, 0x02, 0x7F, 0x00, 0x75, 0x00, 0x00, 0x00, 0x7B, + 0x02, 0x09, 0x00, 0x5F, 0x02, 0x09, 0x00, 0x5F, 0x02, 0x09, 0x00, 0x59, + 0x03, 0xD5, 0x00, 0x64, 0x03, 0xD5, 0x00, 0x64, 0x02, 0x19, 0x00, 0x64, + 0x02, 0x19, 0x00, 0x64, 0x02, 0x19, 0x00, 0x64, 0x03, 0xD5, 0x00, 0x64, + 0x02, 0x19, 0x00, 0x64, 0x03, 0xD5, 0x00, 0x64, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, + 0x05, 0x9B, 0x00, 0x15, 0x05, 0x9B, 0x00, 0x15, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0xD2, 0x00, 0x4F, 0x05, 0x9F, 0x00, 0x81, + 0x05, 0x9F, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, + 0x04, 0xCD, 0x00, 0x81, 0x04, 0xCD, 0x00, 0x81, 0x04, 0x9C, 0x00, 0x81, + 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xC6, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, + 0x05, 0xC6, 0x00, 0x81, 0x02, 0x0C, 0xFF, 0xBB, 0x02, 0x0C, 0xFF, 0xBB, + 0x02, 0x0C, 0x00, 0x81, 0x02, 0x0C, 0x00, 0x81, 0x05, 0x69, 0x00, 0x81, + 0x04, 0x6D, 0x00, 0x81, 0x04, 0x6D, 0xFF, 0xE9, 0x07, 0x20, 0x00, 0x81, + 0x07, 0x20, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x06, 0x05, 0x00, 0x4F, 0x06, 0x08, 0x00, 0x4F, + 0x06, 0x05, 0x00, 0x4F, 0x05, 0x09, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x2B, 0x00, 0x81, 0x05, 0x23, 0x00, 0x4E, + 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, 0x05, 0x23, 0x00, 0x4E, + 0x05, 0x13, 0x00, 0x37, 0x05, 0x13, 0x00, 0x37, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, + 0x05, 0xAF, 0x00, 0x7D, 0x05, 0xB0, 0x00, 0x7D, 0x05, 0x93, 0x00, 0x15, + 0x07, 0xEB, 0x00, 0x15, 0x07, 0xEB, 0x00, 0x15, 0x07, 0xEB, 0x00, 0x15, + 0x05, 0x83, 0x00, 0x18, 0x05, 0x83, 0x00, 0x18, 0x05, 0x77, 0x00, 0x15, + 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, 0x05, 0x10, 0x00, 0x46, + 0x05, 0x10, 0x00, 0x46, 0x05, 0xFB, 0x00, 0x4F, 0x03, 0x27, 0x00, 0x48, + 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, 0x03, 0x27, 0x00, 0x48, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, 0x04, 0x63, 0x00, 0x47, + 0x04, 0xC3, 0x00, 0x75, 0x04, 0xC3, 0x00, 0x75, 0x04, 0x6D, 0x00, 0x44, + 0x04, 0xC3, 0x00, 0x44, 0x04, 0xC3, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, 0x04, 0x7E, 0x00, 0x44, + 0x02, 0xDD, 0x00, 0x12, 0x04, 0xC4, 0x00, 0x44, 0x04, 0xA7, 0xFF, 0xA8, + 0x04, 0xA7, 0x00, 0x71, 0x04, 0xA7, 0x00, 0x75, 0x01, 0xE9, 0x00, 0x71, + 0x01, 0xE9, 0xFF, 0xA9, 0x01, 0xE9, 0xFF, 0xA9, 0x01, 0xE9, 0x00, 0x71, + 0x01, 0xE9, 0xFF, 0xEB, 0x01, 0xEA, 0xFF, 0xC3, 0x01, 0xEA, 0xFF, 0x8F, + 0x04, 0x59, 0x00, 0x75, 0x03, 0x31, 0x00, 0x75, 0x01, 0xE9, 0x00, 0x70, + 0x01, 0xE9, 0xFF, 0xD8, 0x07, 0x02, 0x00, 0x75, 0x07, 0x02, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA0, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xC3, 0x00, 0x75, 0x02, 0xEC, 0x00, 0x75, 0x02, 0xEC, 0x00, 0x71, + 0x02, 0xEC, 0x00, 0x71, 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, + 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, 0x04, 0x1E, 0x00, 0x43, + 0x02, 0xCD, 0xFF, 0xF8, 0x02, 0xCD, 0x00, 0x12, 0x02, 0xCD, 0x00, 0x12, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0xA7, 0x00, 0x75, 0x05, 0x10, 0x00, 0x75, 0x04, 0xA7, 0x00, 0x75, + 0x04, 0x67, 0x00, 0x16, 0x06, 0x72, 0x00, 0x18, 0x06, 0x72, 0x00, 0x18, + 0x06, 0x72, 0x00, 0x18, 0x04, 0x4A, 0x00, 0x19, 0x04, 0x4A, 0x00, 0x19, + 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, 0x04, 0x68, 0x00, 0x16, + 0x04, 0x2B, 0x00, 0x65, 0x04, 0x2B, 0x00, 0x65, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x44, 0x04, 0xC2, 0x00, 0x44, 0x01, 0xE9, 0x00, 0x72, + 0x02, 0x80, 0x00, 0x75, 0x03, 0x62, 0x00, 0x75, 0x02, 0x23, 0x00, 0x75, + 0x02, 0x23, 0xFF, 0xD8, 0x02, 0x7F, 0xFF, 0xA9, 0x02, 0x7F, 0x00, 0x71, + 0x02, 0x7F, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x05, 0x12, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xCD, 0x00, 0x81, 0x02, 0x0C, 0xFF, 0xBB, + 0x05, 0xE2, 0x00, 0x58, 0x07, 0xE7, 0x00, 0x18, 0x04, 0xF1, 0x00, 0x56, + 0x05, 0xD5, 0x00, 0x81, 0x06, 0x05, 0x00, 0x4F, 0x05, 0xD2, 0x00, 0x4B, + 0x05, 0x21, 0x00, 0x15, 0x05, 0x77, 0x00, 0x75, 0x06, 0xEF, 0x00, 0x81, + 0x03, 0x27, 0x00, 0x48, 0x04, 0x7E, 0x00, 0x40, 0x06, 0x8C, 0x00, 0x19, + 0x03, 0xED, 0x00, 0x40, 0x04, 0xB8, 0x00, 0x75, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0x6D, 0x00, 0x3F, 0x04, 0x91, 0x00, 0x75, 0x05, 0xE0, 0x00, 0x75, + 0x05, 0x54, 0x00, 0x37, 0x02, 0x23, 0xFF, 0xA8, 0x04, 0xA6, 0x00, 0x75, + 0x04, 0xA6, 0x00, 0x75, 0x02, 0x23, 0xFF, 0x42, 0x02, 0x23, 0xFF, 0xA9, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x02, 0x09, 0x00, 0x76, 0x02, 0x09, 0x00, 0x76, 0x02, 0x09, 0x00, 0x76, + 0x02, 0x09, 0x00, 0x76, 0x02, 0x09, 0x00, 0x76, 0x06, 0x1C, 0x00, 0x76, + 0x01, 0xF7, 0x00, 0x6D, 0x04, 0x68, 0x00, 0x44, 0x02, 0x09, 0x00, 0x76, + 0x02, 0x09, 0x00, 0x76, 0x04, 0x13, 0x00, 0x76, 0x02, 0x09, 0x00, 0x76, + 0x02, 0x26, 0x00, 0x84, 0x02, 0x26, 0x00, 0x84, 0x02, 0x26, 0x00, 0x84, + 0x02, 0x26, 0x00, 0x84, 0x02, 0x26, 0x00, 0x84, 0x02, 0x09, 0x00, 0x76, + 0x05, 0x6B, 0x01, 0x08, 0x05, 0x6B, 0x01, 0x08, 0x05, 0x6B, 0x01, 0x08, + 0x03, 0xC0, 0x00, 0x95, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x00, 0x7E, + 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x76, + 0x00, 0x00, 0x00, 0x76, 0x04, 0xA6, 0x01, 0x08, 0x02, 0x02, 0x00, 0x7E, + 0x06, 0x49, 0x01, 0x08, 0x03, 0x37, 0xFF, 0xF5, 0x02, 0x5C, 0x00, 0x75, + 0x02, 0x02, 0x00, 0x7E, 0x02, 0x09, 0x00, 0x76, 0x05, 0x6B, 0x01, 0x08, + 0x04, 0xA6, 0x01, 0x08, 0x02, 0x49, 0x00, 0x2E, 0x03, 0x7E, 0x00, 0x5E, + 0x03, 0x7E, 0x00, 0x5E, 0x04, 0xB6, 0x01, 0x0F, 0x04, 0xB6, 0x01, 0x0F, + 0x04, 0xB6, 0x01, 0x0C, 0x04, 0xB6, 0x01, 0x0C, 0x04, 0xB6, 0x01, 0x0F, + 0x04, 0xB6, 0x01, 0x0F, 0x04, 0xA6, 0x01, 0x0B, 0x04, 0xA6, 0x01, 0x0B, + 0x03, 0x43, 0x00, 0x5A, 0x03, 0x43, 0x00, 0x5A, 0x03, 0xD7, 0x00, 0xA4, + 0x03, 0xD7, 0x00, 0xA4, 0x05, 0xE6, 0x00, 0x4F, 0x05, 0xFB, 0x00, 0x4F, + 0x05, 0x69, 0x00, 0x81, 0x04, 0x6D, 0x00, 0x81, 0x05, 0xD5, 0x00, 0x81, + 0x05, 0x2B, 0x00, 0x81, 0x05, 0x23, 0x00, 0x4E, 0x04, 0x59, 0x00, 0x75, + 0x01, 0xE9, 0x00, 0x75, 0x02, 0x23, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, + 0x02, 0xEC, 0x00, 0x75, 0x04, 0x1E, 0x00, 0x43, 0x02, 0xCD, 0x00, 0x12, + 0x02, 0x7F, 0x00, 0x75, 0x00, 0x00, 0x00, 0x63, 0x01, 0xC5, 0x00, 0x54, + 0x03, 0x5F, 0x00, 0x54, 0x03, 0x5F, 0x00, 0x54, 0x03, 0x5F, 0x00, 0x54, + 0x01, 0xC5, 0x00, 0x54, 0x01, 0xC5, 0x00, 0x54, 0x01, 0xC5, 0x00, 0x54, + 0x03, 0x5F, 0x00, 0x54, 0x05, 0x13, 0x00, 0x81, 0x0A, 0xAF, 0x00, 0x81, + 0x05, 0xF1, 0x00, 0x15, 0x05, 0x15, 0x00, 0x66, 0x05, 0xF1, 0x00, 0x15, + 0x04, 0xF1, 0x00, 0x4F, 0x05, 0x0F, 0x00, 0x46, 0x05, 0xE4, 0x00, 0x58, + 0x05, 0x49, 0x00, 0x37, 0x05, 0x49, 0x00, 0x37, 0x05, 0x49, 0x00, 0x46, + 0x05, 0x14, 0x00, 0x6C, 0x06, 0x85, 0x00, 0x81, 0x08, 0xE5, 0x00, 0x81, + 0x04, 0x6C, 0x00, 0x84, 0x0A, 0x4D, 0x00, 0x81, 0x07, 0x19, 0x00, 0x5A, + 0x05, 0x13, 0x00, 0x37, 0x06, 0x45, 0x00, 0x15, 0x05, 0x12, 0x00, 0x5B, + 0x05, 0xD1, 0x00, 0x54, 0x07, 0x50, 0x00, 0x8F, 0x05, 0x75, 0x00, 0x80, + 0x05, 0x16, 0x00, 0x6F, 0x05, 0x15, 0x00, 0x4C, 0x04, 0x56, 0x00, 0x41, + 0x05, 0xD1, 0x00, 0x50, 0x06, 0xB9, 0x00, 0xA4, 0x04, 0xB6, 0x00, 0x62, + 0x05, 0xCD, 0x00, 0x3C, 0x05, 0x7B, 0x00, 0x81, 0x04, 0xC2, 0x00, 0x44, + 0x04, 0xC2, 0x00, 0x75, 0x05, 0x72, 0x00, 0x3C, 0x04, 0x54, 0x00, 0x4C, + 0x04, 0xB7, 0x00, 0x5E, 0x04, 0x54, 0x00, 0x3F, 0x02, 0xCC, 0xFF, 0xC3, + 0x04, 0x53, 0x00, 0x44, 0x04, 0xB5, 0x00, 0x6A, 0x04, 0x7E, 0x00, 0x40, + 0x06, 0x28, 0x00, 0x40, 0x04, 0xE8, 0x00, 0x56, 0x04, 0xE8, 0x00, 0x56, + 0x05, 0x0D, 0x00, 0x56, 0x04, 0xF2, 0x00, 0x4F, 0x04, 0x56, 0x00, 0x51, + 0x05, 0xCE, 0x00, 0x75, 0x03, 0xF7, 0x00, 0x5C, 0x04, 0xC4, 0x00, 0x44, + 0x04, 0x54, 0x00, 0x4C, 0x04, 0x54, 0x00, 0x4C, 0x04, 0x56, 0x00, 0x5F, + 0x04, 0x54, 0x00, 0x4C, 0x04, 0x54, 0x00, 0x4C, 0x04, 0x54, 0x00, 0x4C, + 0x04, 0x57, 0x00, 0x6B, 0x02, 0xCC, 0xFF, 0xC2, 0x04, 0x53, 0x00, 0x75, + 0x04, 0xDD, 0x00, 0x16, 0x05, 0x48, 0x00, 0x81, 0x05, 0x70, 0x00, 0x39, + 0x06, 0xF0, 0x00, 0x80, 0x04, 0x54, 0x00, 0x4C, 0x05, 0x74, 0x00, 0x84, + 0x02, 0xD9, 0x00, 0x43, 0x05, 0x1A, 0x00, 0x3B, 0x02, 0xBA, 0x00, 0x12, + 0x04, 0xB8, 0x00, 0x6A, 0x05, 0x60, 0x00, 0x16, 0x06, 0x0F, 0x00, 0x12, + 0x05, 0x14, 0x00, 0x50, 0x07, 0x4D, 0x00, 0x5C, 0x07, 0x4D, 0x00, 0x5C, + 0x04, 0x57, 0x00, 0x71, 0x04, 0x58, 0x00, 0x75, 0x05, 0xF8, 0x00, 0x75, + 0x03, 0xFA, 0x00, 0x45, 0x02, 0xD6, 0x00, 0x0D, 0x04, 0xB6, 0x00, 0x5F, + 0x05, 0x11, 0x00, 0x4C, 0x04, 0xB7, 0x00, 0x6A, 0x05, 0x0F, 0x00, 0x32, + 0x04, 0x54, 0x00, 0x4C, 0x05, 0x14, 0x00, 0x67, 0x04, 0x57, 0x00, 0x61, + 0x05, 0x19, 0x00, 0xA4, 0x04, 0x48, 0x00, 0x0B, 0x04, 0xB4, 0x00, 0x75, + 0x06, 0x27, 0x00, 0x75, 0x03, 0xEE, 0x00, 0x12, 0x03, 0x9A, 0x00, 0x5F, + 0x02, 0x0D, 0x00, 0x6A, 0x02, 0x21, 0x00, 0xBA, 0x02, 0xE1, 0x00, 0x90, + 0x01, 0xE9, 0xFF, 0x8E, 0x09, 0x85, 0x00, 0x5F, 0x03, 0x98, 0x00, 0x56, + 0x02, 0xD7, 0x00, 0x44, 0x03, 0x9C, 0x00, 0x79, 0x02, 0x19, 0x00, 0x2E, + 0x04, 0x72, 0x00, 0x81, 0x04, 0x72, 0x00, 0x81, 0x04, 0x72, 0x00, 0x81, + 0x04, 0x72, 0xFF, 0xC3, 0x05, 0x69, 0x00, 0x81, 0x05, 0xC6, 0x00, 0x81, + 0x05, 0x09, 0x00, 0x81, 0x05, 0xD2, 0x00, 0x4F, 0x05, 0x13, 0x00, 0x37, + 0x05, 0x21, 0x00, 0x15, 0x05, 0x83, 0x00, 0x18, 0x07, 0x67, 0x00, 0x81, + 0x05, 0x8A, 0x00, 0x16, 0x07, 0xB5, 0x00, 0x81, 0x05, 0x9B, 0x00, 0x15, + 0x07, 0xA8, 0x00, 0x81, 0x06, 0xCC, 0x00, 0x75, 0x09, 0x31, 0x00, 0x81, + 0x04, 0x52, 0x00, 0x5C, 0x06, 0xF2, 0x00, 0x81, 0x05, 0xB2, 0x00, 0x15, + 0x0A, 0x6D, 0x00, 0x4F, 0x04, 0xF1, 0x00, 0x56, 0x05, 0xD2, 0x00, 0x4F, + 0x05, 0x13, 0x00, 0x37, 0x05, 0x77, 0x00, 0x15, 0x05, 0x77, 0x00, 0x15, + 0x06, 0xEF, 0x00, 0x12, 0x02, 0x0C, 0x00, 0x81, 0x07, 0xE7, 0x00, 0x18, + 0x05, 0xCC, 0x00, 0x37, 0x05, 0xA2, 0x00, 0x75, 0x05, 0xE2, 0x00, 0x58, + 0x07, 0xE7, 0x00, 0x18, 0x04, 0xF1, 0x00, 0x56, 0x05, 0xD2, 0x00, 0x4B, + 0x05, 0x77, 0x00, 0x75, 0x06, 0xEF, 0x00, 0x81, 0x05, 0x83, 0x00, 0x18, + 0x05, 0xA3, 0x00, 0x4F, 0x05, 0x8A, 0x00, 0x16, 0x03, 0x83, 0x00, 0x75, + 0x03, 0x83, 0x00, 0x75, 0x03, 0x83, 0xFF, 0xDE, 0x04, 0xB8, 0x00, 0x75, + 0x04, 0xB8, 0x00, 0x75, 0x04, 0x60, 0x00, 0x75, 0x06, 0xA7, 0x00, 0x75, + 0x06, 0x4E, 0x00, 0x75, 0x04, 0x89, 0x00, 0x16, 0x06, 0x61, 0x00, 0x75, + 0x05, 0xC8, 0x00, 0x62, 0x07, 0xCE, 0x00, 0x75, 0x04, 0x13, 0x00, 0x3A, + 0x06, 0x57, 0x00, 0x75, 0x04, 0xAB, 0x00, 0x16, 0x03, 0xED, 0x00, 0x40, + 0x04, 0x6D, 0x00, 0x44, 0x03, 0xEE, 0x00, 0x12, 0x04, 0x67, 0x00, 0x16, + 0x04, 0x67, 0x00, 0x16, 0x05, 0xC1, 0x00, 0x12, 0x06, 0x8C, 0x00, 0x19, + 0x04, 0xBC, 0x00, 0x75, 0x04, 0x7E, 0x00, 0x40, 0x04, 0x7E, 0x00, 0x40, + 0x06, 0x8C, 0x00, 0x19, 0x03, 0xED, 0x00, 0x40, 0x04, 0xB8, 0x00, 0x75, + 0x04, 0xB8, 0x00, 0x75, 0x04, 0xA1, 0x00, 0x44, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0x6D, 0x00, 0x3F, 0x04, 0x91, 0x00, 0x75, 0x05, 0xE0, 0x00, 0x75, + 0x04, 0x4A, 0x00, 0x19, 0x04, 0x6B, 0x00, 0x44, 0x04, 0xAF, 0x00, 0x81, + 0x05, 0x69, 0x00, 0x81, 0x05, 0xD2, 0x00, 0x4B, 0x05, 0xD2, 0x00, 0x4F, + 0x05, 0xD2, 0x00, 0x4B, 0x04, 0x53, 0x00, 0x75, 0x04, 0xB8, 0x00, 0x75, + 0x04, 0x8D, 0x00, 0x16, 0x04, 0x6D, 0x00, 0x3F, 0x04, 0x6D, 0x00, 0x44, + 0x04, 0x6D, 0x00, 0x3F, 0x04, 0x20, 0x00, 0x75, 0x04, 0x53, 0x00, 0x75, + 0x05, 0x17, 0x00, 0x8E, 0x05, 0x15, 0x00, 0x6B, 0x06, 0xF0, 0x00, 0x48, + 0x05, 0xD3, 0x00, 0x62, 0x05, 0x17, 0x00, 0x8D, 0x03, 0x97, 0x00, 0x36, + 0x05, 0x4C, 0x00, 0x44, 0x04, 0x1D, 0x00, 0x43, 0x04, 0xA7, 0x00, 0x75, + 0x02, 0x23, 0x00, 0x75, 0x02, 0x23, 0xFF, 0xA4, 0x04, 0xA1, 0x00, 0x44, + 0x04, 0xA6, 0x00, 0x75, 0x04, 0xA6, 0x00, 0x75, 0x06, 0x6A, 0x00, 0x44, + 0x02, 0x1E, 0x00, 0x8C, 0x02, 0x1E, 0x00, 0x8C, 0x03, 0x97, 0x00, 0x48, + 0x02, 0x0C, 0x00, 0x81, 0x04, 0x18, 0x00, 0x81, 0x06, 0x24, 0x00, 0x81, + 0x07, 0x9F, 0x00, 0x81, 0x05, 0x93, 0x00, 0x15, 0x07, 0x9F, 0x00, 0x15, + 0x09, 0xAC, 0x00, 0x15, 0x0B, 0xB8, 0x00, 0x15, 0x07, 0x8F, 0x00, 0x81, + 0x05, 0x83, 0x00, 0x18, 0x07, 0x8F, 0x00, 0x18, 0x09, 0x9B, 0x00, 0x18, + 0x04, 0x6D, 0x00, 0x81, 0x05, 0xD2, 0x00, 0x4F, 0x05, 0x9F, 0x00, 0x81, + 0x07, 0x20, 0x00, 0x81, 0x02, 0x0E, 0x00, 0x56, 0x03, 0xD2, 0x00, 0x5D, + 0x05, 0xBC, 0x00, 0x5D, 0x06, 0x50, 0x00, 0x5D, 0x04, 0x4C, 0x00, 0x11, + 0x06, 0x1C, 0x00, 0x0F, 0x08, 0x3A, 0x00, 0x16, 0x0A, 0x23, 0x00, 0x16, + 0x06, 0x33, 0x00, 0x5D, 0x04, 0x4A, 0x00, 0x11, 0x06, 0x33, 0x00, 0x19, + 0x08, 0x1D, 0x00, 0x19, 0x01, 0xE9, 0x00, 0x75, 0x04, 0x6D, 0x00, 0x44, + 0x04, 0xAF, 0x00, 0x40, 0x07, 0x02, 0x00, 0x75, 0x05, 0x73, 0x00, 0x69, + 0x05, 0xD3, 0x00, 0x9A, 0x06, 0xEC, 0x00, 0x6F, 0x00, 0x00, 0x00, 0x00, + 0x04, 0xB5, 0x00, 0x34, 0x02, 0x7C, 0x00, 0x63, 0x05, 0xD6, 0x00, 0x86, + 0x03, 0xF5, 0x00, 0x5A, 0x03, 0x95, 0x00, 0x3E, 0x06, 0x89, 0x00, 0x2A, + 0x02, 0x09, 0x00, 0x69, 0x02, 0x09, 0x00, 0x69, 0x03, 0xF0, 0x00, 0x32, + 0x05, 0xD3, 0x00, 0x81, 0x02, 0x12, 0x00, 0x69, 0x06, 0x89, 0x00, 0x2A, + 0x04, 0x27, 0x00, 0x7D, 0x06, 0x88, 0x00, 0x21, 0x04, 0x5A, 0x00, 0xE2, + 0x05, 0xD1, 0x00, 0x6A, 0x06, 0x89, 0x00, 0x2A, 0x05, 0x17, 0x00, 0x9E, + 0x04, 0x17, 0x00, 0xE2, 0x03, 0x37, 0x00, 0x59, 0x03, 0x37, 0x00, 0x59, + 0x03, 0x96, 0xFF, 0xF7, 0x03, 0x97, 0x00, 0x41, 0x05, 0x16, 0x00, 0x6F, + 0x02, 0x1C, 0x00, 0x92, 0x02, 0x1C, 0x00, 0x61, 0x03, 0x97, 0x00, 0x36, + 0x03, 0x98, 0x00, 0x52, 0x03, 0xFC, 0x00, 0x80, 0x03, 0xFC, 0x00, 0x80, + 0x03, 0x98, 0x00, 0x52, 0x02, 0xDE, 0x00, 0x88, 0x02, 0xDC, 0x00, 0x64, + 0x02, 0x7B, 0x00, 0x44, 0x02, 0xDE, 0x00, 0x88, 0x02, 0x09, 0x00, 0x69, + 0x01, 0x35, 0x00, 0x3A, 0x01, 0x4A, 0x00, 0x3D, 0x03, 0xF8, 0x00, 0x87, + 0x03, 0x9B, 0x00, 0x7D, 0x02, 0xDC, 0x00, 0x64, 0x02, 0xDC, 0x00, 0x63, + 0x02, 0xDC, 0x00, 0x63, 0x02, 0x9E, 0x00, 0x56, 0x02, 0xDB, 0x00, 0x8F, + 0x04, 0x46, 0x00, 0xA6, 0x04, 0x46, 0x00, 0xA6, 0x03, 0x98, 0x00, 0x52, + 0x02, 0x7F, 0x00, 0x71, 0x02, 0x7F, 0x00, 0x71, 0x02, 0x7F, 0x00, 0x71, + 0x02, 0x7F, 0x00, 0x71, 0x03, 0x9A, 0x00, 0x69, 0x03, 0x9D, 0x00, 0x80, + 0x03, 0xFD, 0x00, 0x74, 0x02, 0xDE, 0x00, 0x88, 0x02, 0xD9, 0x00, 0x5E, + 0x02, 0xD9, 0x00, 0x5E, 0x02, 0xD9, 0x00, 0x5E, 0x02, 0xD9, 0x00, 0x5E, + 0x02, 0xD9, 0x00, 0x5E, 0x02, 0xD9, 0x00, 0x61, 0x02, 0x1E, 0xFF, 0xD0, + 0x03, 0x9A, 0x00, 0x6B, 0x03, 0xC7, 0x00, 0x12, 0x05, 0xD1, 0x00, 0x7D, + 0x05, 0xD0, 0x00, 0x65, 0x05, 0x9F, 0x00, 0x60, 0x00, 0x00, 0xFC, 0x8A, + 0x00, 0x00, 0xFC, 0x87, 0x00, 0x00, 0xFD, 0x3A, 0x00, 0x00, 0xFC, 0x7C, + 0x00, 0x00, 0xFC, 0x91, 0x00, 0x00, 0xFC, 0x88, 0x00, 0x00, 0xFC, 0x7E, + 0x00, 0x00, 0xFC, 0x91, 0x00, 0x00, 0xFB, 0xE5, 0x00, 0x00, 0xFD, 0x0B, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0xFC, 0x7E, 0x00, 0x00, 0xFC, 0x9A, + 0x00, 0x00, 0xFD, 0x0A, 0x00, 0x00, 0xFB, 0xF2, 0x00, 0x00, 0xFB, 0xDD, + 0x00, 0x00, 0xFB, 0xD2, 0x00, 0x00, 0xFB, 0xC9, 0x00, 0x00, 0xFC, 0x64, + 0x00, 0x00, 0xFC, 0x64, 0x00, 0x00, 0xFC, 0x76, 0x00, 0x00, 0xFC, 0x66, + 0x00, 0x00, 0xFC, 0x92, 0x00, 0x00, 0xFD, 0x37, 0x00, 0x00, 0xFC, 0xCF, + 0x00, 0x00, 0xFC, 0x20, 0x00, 0x00, 0xFC, 0xA9, 0x00, 0x00, 0xFC, 0x58, + 0x00, 0x00, 0xFC, 0x78, 0x00, 0x00, 0xFC, 0xC0, 0x00, 0x00, 0xFC, 0x83, + 0x00, 0x00, 0xFD, 0x31, 0x00, 0x00, 0xFC, 0x96, 0x00, 0x00, 0xFC, 0x5A, + 0x00, 0x00, 0xFC, 0x6B, 0x00, 0x00, 0xF9, 0xC0, 0x00, 0x00, 0xF9, 0xF6, + 0x00, 0x00, 0xFC, 0x23, 0x00, 0x00, 0xFC, 0x2E, 0x00, 0x00, 0xFD, 0x4E, + 0x00, 0x00, 0xFD, 0x6F, 0x00, 0x00, 0xFB, 0xDE, 0x00, 0x00, 0xFC, 0x25, + 0x00, 0x00, 0xFC, 0x41, 0x00, 0x00, 0x00, 0x28, 0x01, 0xC1, 0x00, 0x50, + 0x01, 0xC1, 0x00, 0x50, 0x01, 0xC1, 0x00, 0x50, 0x02, 0xA3, 0x00, 0x50, + 0x02, 0xC7, 0x00, 0x50, 0x02, 0xE7, 0x00, 0x50, 0x02, 0xF4, 0x00, 0x50, + 0x02, 0x77, 0x00, 0x00, 0x02, 0x77, 0x00, 0x00, 0x05, 0x52, 0x00, 0xE8, + 0x05, 0x52, 0x00, 0xE8, 0x03, 0xC0, 0x00, 0x6D, 0x01, 0x5D, 0x00, 0x28, + 0x02, 0x59, 0x00, 0xB0, 0x03, 0xD7, 0x00, 0xAB, 0x00, 0x00, 0x00, 0xE8, + 0x00, 0x00, 0x00, 0x6A, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x68, + 0x00, 0x00, 0x01, 0xBF, 0x00, 0x00, 0x01, 0xBF, 0x00, 0x00, 0xFE, 0x2D, + 0x00, 0x00, 0x00, 0xC3, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0xFB, 0xD3, 0x00, 0x00, 0xFB, 0x6F, 0x00, 0x00, 0xFC, 0x13, + 0x00, 0x00, 0xFC, 0x4C, 0x00, 0x00, 0xFC, 0xAE, 0x00, 0x00, 0xFC, 0xCE, + 0x00, 0x00, 0xFB, 0xE4, 0x00, 0x00, 0xFB, 0xE2, 0x00, 0x00, 0xFC, 0x06, + 0x00, 0x00, 0xFB, 0xB6, 0x00, 0x00, 0xFC, 0x97, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFC, 0x34, 0x00, 0x00, 0xFD, 0x29, 0x00, 0x00, 0xFC, 0x26, + 0x00, 0x00, 0xFC, 0xB9, 0x00, 0x00, 0xFC, 0xAB, 0x00, 0x00, 0xFC, 0xB1, + 0x00, 0x00, 0xFB, 0xF1, 0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x6A, + 0x00, 0x00, 0xFC, 0x98, 0x00, 0x00, 0xFB, 0xF8, 0x00, 0x00, 0xFC, 0xB1, + 0x00, 0x00, 0xFC, 0xD4, 0x00, 0x00, 0xFC, 0xF0, 0x00, 0x00, 0xFB, 0x59, + 0x00, 0x00, 0xFB, 0x59, 0x00, 0x00, 0xFB, 0xD5, 0x00, 0x00, 0xFC, 0xF0, + 0x00, 0x00, 0xFC, 0xD6, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x85, + 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0xFB, 0x63, + 0x00, 0x00, 0xFB, 0x6F, 0x00, 0x00, 0xFC, 0xCA, 0x00, 0x00, 0xFC, 0x83, + 0x00, 0x00, 0xFB, 0xE2, 0x00, 0x00, 0xFC, 0x58, 0x00, 0x00, 0xFC, 0x1D, + 0x00, 0x00, 0xFB, 0xCA, 0x00, 0x00, 0xFC, 0x01, 0x00, 0x00, 0xFB, 0x06, + 0x00, 0x00, 0xFA, 0xE2, 0x00, 0x00, 0xFC, 0x6F, 0x00, 0x00, 0xFC, 0x9A, + 0x00, 0x00, 0xFC, 0x94, 0x00, 0x00, 0xFC, 0x81, 0x00, 0x00, 0xFC, 0x52, + 0x00, 0x00, 0xFC, 0x54, 0x00, 0x00, 0xFC, 0x88, 0x00, 0x00, 0xFC, 0x78, + 0x00, 0x00, 0xFC, 0x7E, 0x00, 0x00, 0xFC, 0xD0, 0x00, 0x00, 0xFC, 0xB9, + 0x00, 0x00, 0xFC, 0x30, 0x00, 0x00, 0xFC, 0x99, 0x00, 0x00, 0xFC, 0xA8, + 0x00, 0x00, 0xFC, 0x26, 0x00, 0x00, 0xFB, 0xFB, 0x00, 0x00, 0xFC, 0x8A, + 0x00, 0x00, 0xFC, 0x70, 0x00, 0x00, 0xFC, 0x87, 0x00, 0x00, 0xFC, 0xE0, + 0x00, 0x00, 0xFC, 0xE3, 0x00, 0x00, 0xFC, 0x32, 0x00, 0x00, 0xFC, 0x52, + 0x00, 0x00, 0xFB, 0x04, 0x00, 0x00, 0xFC, 0x25, 0x03, 0x43, 0x00, 0x85, + 0x02, 0xD9, 0x00, 0x78, 0x02, 0xDB, 0x00, 0x8F, 0x03, 0x3A, 0x00, 0x59, + 0x03, 0x39, 0x00, 0x69, 0x04, 0xB6, 0x00, 0xE8, 0x03, 0x4A, 0x00, 0x44, + 0x02, 0x02, 0xFF, 0xE4, 0x04, 0xA6, 0x00, 0xE8, 0x04, 0xB6, 0x00, 0xE8, + 0x03, 0x43, 0x00, 0x3B, 0x03, 0xD7, 0x00, 0xAB, 0x04, 0xB6, 0x00, 0xE8, + 0x04, 0xB6, 0x00, 0xE8, 0x04, 0xA6, 0x00, 0xE8, 0x04, 0xB6, 0x00, 0xE8, + 0x02, 0x02, 0xFF, 0xE4, 0x04, 0xB6, 0x00, 0xE8, 0x03, 0xD7, 0x00, 0xAB, + 0x00, 0x00, 0x00, 0x58, 0x02, 0x59, 0x00, 0xB0, 0x03, 0xB7, 0x00, 0x64, + 0x02, 0x59, 0x00, 0x64, 0x00, 0x03, 0xFC, 0x86, 0x00, 0x02, 0xFB, 0xE1, + 0x03, 0x4A, 0x00, 0x5E, 0x03, 0x4A, 0x00, 0x5E, 0x00, 0x02, 0xFC, 0x61, + 0x00, 0x02, 0xFC, 0x3E, 0x00, 0x00, 0xFC, 0x1A, 0x00, 0x02, 0xFC, 0x26, + 0x00, 0x00, 0xFC, 0x46, 0x00, 0x00, 0xFC, 0xDE, 0x00, 0x08, 0xFD, 0x09, + 0x05, 0x52, 0x00, 0xE8, 0x04, 0xA6, 0x00, 0xE8, 0x02, 0x59, 0x00, 0x58, + 0x00, 0x03, 0xFC, 0xAB, 0x02, 0x2F, 0x00, 0x64, 0x00, 0x01, 0xFD, 0x91, + 0x00, 0x00, 0xFE, 0xAA, 0x00, 0x09, 0xFD, 0x24, 0x00, 0x0B, 0xFD, 0x53, + 0x00, 0x05, 0xFC, 0xBF, 0x00, 0x0B, 0xFD, 0x52, 0x03, 0x43, 0x00, 0x85, + 0x00, 0x01, 0xFB, 0xB5, 0x00, 0x02, 0xFB, 0xA1, 0x00, 0x00, 0xFD, 0x1F, + 0x01, 0x4A, 0x00, 0x3D, 0x00, 0x00, 0xFC, 0xA9, 0x00, 0x02, 0xFB, 0xF6, + 0x00, 0x02, 0xFC, 0x5F, 0x00, 0x02, 0xFC, 0x60, 0x00, 0x01, 0xFB, 0xB3, + 0x00, 0x02, 0xFB, 0x9E, 0x00, 0x08, 0xFC, 0xBA, 0x02, 0x49, 0x00, 0x28, + 0x03, 0x7E, 0x00, 0x5E, 0x03, 0x7E, 0x00, 0x5E, 0x02, 0xAC, 0x00, 0x58, + 0x02, 0xAC, 0x00, 0x58, 0x03, 0xD7, 0x00, 0x88, 0x03, 0xD7, 0x00, 0x88, + 0x03, 0xD7, 0x00, 0xAB, 0x02, 0xA8, 0x00, 0x28, 0x03, 0x55, 0x00, 0x67, + 0x03, 0x55, 0x00, 0x66, 0x03, 0x55, 0x00, 0x6A, 0x03, 0x48, 0x00, 0x44, + 0x03, 0x73, 0x00, 0x44, 0x03, 0x48, 0x00, 0x44, 0x03, 0x48, 0x00, 0x44, + 0x01, 0xEE, 0x00, 0x98, 0x02, 0xD9, 0x00, 0x78, 0x02, 0x1E, 0x00, 0x6D, + 0x02, 0x1E, 0x00, 0x6D, 0x02, 0x1E, 0x00, 0x70, 0x02, 0x1E, 0x00, 0x6F, + 0x03, 0x9E, 0x00, 0x78, 0x03, 0x9E, 0x00, 0x78, 0x02, 0xDB, 0x00, 0x8F, + 0x01, 0x5F, 0x00, 0x57, 0x03, 0x43, 0x00, 0x85, 0x01, 0x35, 0x00, 0x3A, + 0x01, 0x4A, 0x00, 0x3D, 0x01, 0x5F, 0x00, 0x57, 0x00, 0x00, 0xFB, 0x5A, + 0x03, 0x07, 0x00, 0x20, 0x05, 0x1F, 0xFF, 0xE0, 0x02, 0xE2, 0x00, 0x28, + 0x03, 0xB7, 0x00, 0x82, 0x01, 0xB4, 0x00, 0x83, 0x02, 0x27, 0x00, 0x7B, + 0x01, 0xB8, 0x00, 0x32, 0x02, 0x02, 0x00, 0x80, 0x02, 0x47, 0x00, 0x32, + 0x04, 0x9F, 0x00, 0xC5, 0x04, 0xA0, 0x00, 0x3A, 0x04, 0xA8, 0x00, 0x75, + 0x01, 0xE9, 0xFF, 0x8F, 0x01, 0xC3, 0x00, 0x7C, 0x01, 0xBB, 0x00, 0x27, + 0x06, 0x26, 0x00, 0x44, 0x04, 0x52, 0x00, 0x40, 0x02, 0x13, 0x00, 0x6A, + 0x05, 0xA4, 0x00, 0x81, 0x00, 0x00, 0x00, 0x67, 0x04, 0x57, 0x00, 0xD8, + 0x01, 0xC1, 0x00, 0x50, 0x02, 0xA3, 0x00, 0x50, 0x02, 0xC7, 0x00, 0x50, + 0x02, 0xE7, 0x00, 0x50, 0x02, 0xF4, 0x00, 0x50, 0x02, 0x77, 0x00, 0x00, + 0x02, 0x77, 0x00, 0x00, 0x01, 0x9D, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x78, + 0x02, 0x59, 0x00, 0x5E, 0x02, 0x59, 0x00, 0x5E, 0x02, 0x08, 0x00, 0x3F, + 0x03, 0x52, 0xFF, 0xDE, 0x03, 0x52, 0x00, 0x3D, 0x02, 0x19, 0x00, 0x49, + 0x02, 0x77, 0x00, 0x5A, 0x02, 0xCE, 0xFF, 0xC1, 0x01, 0xDD, 0x00, 0x40, + 0x02, 0xCE, 0xFF, 0xD9, 0x00, 0x03, 0xFC, 0x9F, 0x00, 0x00, 0xFA, 0xEA, + 0x03, 0xAA, 0x00, 0x70, 0x00, 0x07, 0xFC, 0xA6, 0x00, 0x00, 0xFC, 0xA1, + 0x00, 0x05, 0xFC, 0x8B, 0x00, 0x00, 0xFC, 0xAC, 0x00, 0x05, 0xFC, 0xE0, + 0x00, 0x0A, 0xFD, 0x07, 0x03, 0xB8, 0x00, 0x32, 0x03, 0x80, 0x00, 0x32, + 0x02, 0x33, 0x00, 0x00, 0x03, 0x29, 0x00, 0x00, 0x03, 0x06, 0x00, 0x1F, + 0x02, 0x20, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD3, + 0x00, 0x00, 0x00, 0xD3, 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x01, 0x38, + 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x01, 0x80, + 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xC8, + 0x00, 0x00, 0x01, 0xE8, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x18, + 0x00, 0x00, 0x02, 0x30, 0x00, 0x00, 0x02, 0x48, 0x00, 0x00, 0x02, 0x60, + 0x00, 0x00, 0x02, 0x78, 0x00, 0x00, 0x02, 0x90, 0x00, 0x00, 0x02, 0xA8, + 0x00, 0x00, 0x02, 0xC0, 0x00, 0x00, 0x02, 0xD8, 0x00, 0x00, 0x02, 0xF0, + 0x00, 0x00, 0x03, 0x08, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x03, 0x38, + 0x00, 0x00, 0x03, 0x50, 0x00, 0x00, 0x03, 0x68, 0x00, 0x00, 0x03, 0x88, + 0x00, 0x00, 0x03, 0xA0, 0x00, 0x00, 0x03, 0xB8, 0x00, 0x00, 0x03, 0xD0, + 0x00, 0x00, 0x03, 0xE8, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x04, 0x18, + 0x00, 0x00, 0x04, 0x2E, 0x00, 0x00, 0x04, 0x44, 0x00, 0x00, 0x04, 0x5A, + 0x00, 0x00, 0x04, 0x72, 0x00, 0x00, 0x04, 0x8A, 0x00, 0x00, 0x04, 0xA2, + 0x00, 0x00, 0x04, 0xBA, 0x00, 0x00, 0x04, 0xD2, 0x00, 0x00, 0x04, 0xEA, + 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x05, 0x1A, 0x00, 0x00, 0x05, 0x30, + 0x00, 0x00, 0x05, 0x92, 0x00, 0x00, 0x05, 0xA8, 0x00, 0x00, 0x05, 0xB8, + 0x00, 0x00, 0x05, 0xD0, 0x00, 0x00, 0x05, 0xE8, 0x00, 0x00, 0x06, 0x06, + 0x00, 0x00, 0x06, 0x24, 0x00, 0x00, 0x06, 0x44, 0x00, 0x00, 0x06, 0x64, + 0x00, 0x00, 0x06, 0x84, 0x00, 0x00, 0x06, 0xA4, 0x00, 0x00, 0x06, 0xC4, + 0x00, 0x00, 0x06, 0xE4, 0x00, 0x00, 0x06, 0xFC, 0x00, 0x00, 0x07, 0x3C, + 0x00, 0x00, 0x07, 0x86, 0x00, 0x00, 0x07, 0x9E, 0x00, 0x00, 0x07, 0xB6, + 0x00, 0x00, 0x07, 0xC6, 0x00, 0x00, 0x08, 0x3F, 0x00, 0x00, 0x08, 0x57, + 0x00, 0x00, 0x08, 0x6F, 0x00, 0x00, 0x08, 0x87, 0x00, 0x00, 0x08, 0x9F, + 0x00, 0x00, 0x09, 0x38, 0x00, 0x00, 0x09, 0x48, 0x00, 0x00, 0x09, 0x58, + 0x00, 0x00, 0x09, 0xCC, 0x00, 0x00, 0x0A, 0x6E, 0x00, 0x00, 0x0A, 0x86, + 0x00, 0x00, 0x0A, 0x9E, 0x00, 0x00, 0x0A, 0xB6, 0x00, 0x00, 0x0A, 0xCE, + 0x00, 0x00, 0x0A, 0xE6, 0x00, 0x00, 0x0B, 0x06, 0x00, 0x00, 0x0B, 0x8B, + 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x0C, 0x10, 0x00, 0x00, 0x0C, 0x6B, + 0x00, 0x00, 0x0C, 0xE6, 0x00, 0x00, 0x0C, 0xFE, 0x00, 0x00, 0x0D, 0x16, + 0x00, 0x00, 0x0D, 0x2E, 0x00, 0x00, 0x0D, 0x46, 0x00, 0x00, 0x0D, 0x5E, + 0x00, 0x00, 0x0D, 0x76, 0x00, 0x00, 0x0D, 0x8C, 0x00, 0x00, 0x0D, 0xA4, + 0x00, 0x00, 0x0D, 0xC4, 0x00, 0x00, 0x0D, 0xF2, 0x00, 0x00, 0x0E, 0x0A, + 0x00, 0x00, 0x0E, 0x22, 0x00, 0x00, 0x0E, 0x3A, 0x00, 0x00, 0x0E, 0x52, + 0x00, 0x00, 0x0E, 0x6A, 0x00, 0x00, 0x0E, 0x82, 0x00, 0x00, 0x0E, 0x9A, + 0x00, 0x00, 0x0E, 0xB2, 0x00, 0x00, 0x0E, 0xCA, 0x00, 0x00, 0x0E, 0xE2, + 0x00, 0x00, 0x0E, 0xFA, 0x00, 0x00, 0x0F, 0x12, 0x00, 0x00, 0x0F, 0x2A, + 0x00, 0x00, 0x0F, 0x42, 0x00, 0x00, 0x0F, 0x5A, 0x00, 0x00, 0x0F, 0x72, + 0x00, 0x00, 0x0F, 0x92, 0x00, 0x00, 0x0F, 0xAA, 0x00, 0x00, 0x0F, 0xC2, + 0x00, 0x00, 0x0F, 0xDA, 0x00, 0x00, 0x0F, 0xF2, 0x00, 0x00, 0x10, 0x0A, + 0x00, 0x00, 0x10, 0x22, 0x00, 0x00, 0x10, 0x3A, 0x00, 0x00, 0x10, 0x5A, + 0x00, 0x00, 0x10, 0x9C, 0x00, 0x00, 0x10, 0xCD, 0x00, 0x00, 0x10, 0xDD, + 0x00, 0x00, 0x10, 0xF5, 0x00, 0x00, 0x11, 0x0D, 0x00, 0x00, 0x11, 0x25, + 0x00, 0x00, 0x11, 0x3D, 0x00, 0x00, 0x11, 0x55, 0x00, 0x00, 0x11, 0x6D, + 0x00, 0x00, 0x11, 0x85, 0x00, 0x00, 0x11, 0x9F, 0x00, 0x00, 0x11, 0xB7, + 0x00, 0x00, 0x11, 0xC7, 0x00, 0x00, 0x11, 0xDF, 0x00, 0x00, 0x11, 0xF7, + 0x00, 0x00, 0x12, 0x0F, 0x00, 0x00, 0x12, 0x38, 0x00, 0x00, 0x12, 0x8D, + 0x00, 0x00, 0x12, 0xA5, 0x00, 0x00, 0x12, 0xD1, 0x00, 0x00, 0x13, 0x4C, + 0x00, 0x00, 0x13, 0x64, 0x00, 0x00, 0x14, 0x0C, 0x00, 0x00, 0x14, 0x24, + 0x00, 0x00, 0x14, 0x3C, 0x00, 0x00, 0x14, 0x54, 0x00, 0x00, 0x14, 0x6C, + 0x00, 0x00, 0x14, 0x84, 0x00, 0x00, 0x14, 0x9C, 0x00, 0x00, 0x14, 0xB4, + 0x00, 0x00, 0x15, 0x3D, 0x00, 0x00, 0x15, 0x55, 0x00, 0x00, 0x16, 0x0B, + 0x00, 0x00, 0x16, 0x23, 0x00, 0x00, 0x16, 0x3B, 0x00, 0x00, 0x16, 0x53, + 0x00, 0x00, 0x16, 0x6B, 0x00, 0x00, 0x16, 0x83, 0x00, 0x00, 0x16, 0x9B, + 0x00, 0x00, 0x16, 0xB3, 0x00, 0x00, 0x16, 0xE4, 0x00, 0x00, 0x16, 0xFA, + 0x00, 0x00, 0x17, 0x12, 0x00, 0x00, 0x17, 0x2A, 0x00, 0x00, 0x17, 0x42, + 0x00, 0x00, 0x17, 0x5A, 0x00, 0x00, 0x17, 0x72, 0x00, 0x00, 0x17, 0x8A, + 0x00, 0x00, 0x17, 0xCB, 0x00, 0x00, 0x18, 0x2A, 0x00, 0x00, 0x18, 0x42, + 0x00, 0x00, 0x18, 0x5A, 0x00, 0x00, 0x18, 0x9D, 0x00, 0x00, 0x18, 0xFE, + 0x00, 0x00, 0x19, 0x0E, 0x00, 0x00, 0x19, 0x26, 0x00, 0x00, 0x19, 0x3E, + 0x00, 0x00, 0x19, 0x56, 0x00, 0x00, 0x19, 0x6E, 0x00, 0x00, 0x19, 0x86, + 0x00, 0x00, 0x19, 0x9E, 0x00, 0x00, 0x19, 0xB6, 0x00, 0x00, 0x19, 0xCE, + 0x00, 0x00, 0x19, 0xE6, 0x00, 0x00, 0x1A, 0x00, 0x00, 0x00, 0x1A, 0x18, + 0x00, 0x00, 0x1A, 0x28, 0x00, 0x00, 0x1A, 0x48, 0x00, 0x00, 0x1A, 0x68, + 0x00, 0x00, 0x1A, 0x88, 0x00, 0x00, 0x1A, 0xA8, 0x00, 0x00, 0x1A, 0xC8, + 0x00, 0x00, 0x1A, 0xE8, 0x00, 0x00, 0x1B, 0x08, 0x00, 0x00, 0x1B, 0x28, + 0x00, 0x00, 0x1B, 0x40, 0x00, 0x00, 0x1B, 0x5C, 0x00, 0x00, 0x1B, 0x74, + 0x00, 0x00, 0x1B, 0x8C, 0x00, 0x00, 0x1B, 0xA4, 0x00, 0x00, 0x1B, 0xBA, + 0x00, 0x00, 0x1B, 0xD2, 0x00, 0x00, 0x1B, 0xEA, 0x00, 0x00, 0x1C, 0x02, + 0x00, 0x00, 0x1C, 0x1A, 0x00, 0x00, 0x1C, 0x32, 0x00, 0x00, 0x1C, 0x4A, + 0x00, 0x00, 0x1C, 0x62, 0x00, 0x00, 0x1C, 0x78, 0x00, 0x00, 0x1C, 0x90, + 0x00, 0x00, 0x1C, 0xA8, 0x00, 0x00, 0x1C, 0xC0, 0x00, 0x00, 0x1C, 0xD8, + 0x00, 0x00, 0x1C, 0xF0, 0x00, 0x00, 0x1D, 0x08, 0x00, 0x00, 0x1D, 0x18, + 0x00, 0x00, 0x1D, 0x28, 0x00, 0x00, 0x1D, 0x40, 0x00, 0x00, 0x1D, 0x58, + 0x00, 0x00, 0x1D, 0x70, 0x00, 0x00, 0x1D, 0x88, 0x00, 0x00, 0x1D, 0xA0, + 0x00, 0x00, 0x1D, 0xB8, 0x00, 0x00, 0x1D, 0xD0, 0x00, 0x00, 0x1D, 0xE8, + 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x1E, 0x18, 0x00, 0x00, 0x1E, 0x30, + 0x00, 0x00, 0x1E, 0x48, 0x00, 0x00, 0x1E, 0x62, 0x00, 0x00, 0x1E, 0x7A, + 0x00, 0x00, 0x1E, 0x8A, 0x00, 0x00, 0x1E, 0xA2, 0x00, 0x00, 0x1E, 0xCB, + 0x00, 0x00, 0x1E, 0xE3, 0x00, 0x00, 0x1E, 0xFB, 0x00, 0x00, 0x1F, 0x11, + 0x00, 0x00, 0x1F, 0x29, 0x00, 0x00, 0x1F, 0x41, 0x00, 0x00, 0x1F, 0x59, + 0x00, 0x00, 0x1F, 0x71, 0x00, 0x00, 0x1F, 0x89, 0x00, 0x00, 0x1F, 0xA1, + 0x00, 0x00, 0x1F, 0xB9, 0x00, 0x00, 0x1F, 0xD1, 0x00, 0x00, 0x1F, 0xE9, + 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x20, 0x19, 0x00, 0x00, 0x20, 0x31, + 0x00, 0x00, 0x20, 0x49, 0x00, 0x00, 0x20, 0x61, 0x00, 0x00, 0x20, 0x79, + 0x00, 0x00, 0x20, 0x91, 0x00, 0x00, 0x20, 0xA9, 0x00, 0x00, 0x20, 0xC1, + 0x00, 0x00, 0x20, 0xD9, 0x00, 0x00, 0x20, 0xF1, 0x00, 0x00, 0x21, 0x09, + 0x00, 0x00, 0x21, 0x21, 0x00, 0x00, 0x21, 0x39, 0x00, 0x00, 0x21, 0x51, + 0x00, 0x00, 0x21, 0x6B, 0x00, 0x00, 0x21, 0x83, 0x00, 0x00, 0x21, 0x93, + 0x00, 0x00, 0x21, 0xAB, 0x00, 0x00, 0x21, 0xE9, 0x00, 0x00, 0x22, 0x01, + 0x00, 0x00, 0x22, 0x19, 0x00, 0x00, 0x22, 0x29, 0x00, 0x00, 0x22, 0x39, + 0x00, 0x00, 0x22, 0x96, 0x00, 0x00, 0x22, 0xAE, 0x00, 0x00, 0x22, 0xC6, + 0x00, 0x00, 0x22, 0xDE, 0x00, 0x00, 0x22, 0xF6, 0x00, 0x00, 0x23, 0x0E, + 0x00, 0x00, 0x23, 0x59, 0x00, 0x00, 0x23, 0x71, 0x00, 0x00, 0x23, 0xC1, + 0x00, 0x00, 0x23, 0xD1, 0x00, 0x00, 0x23, 0xEF, 0x00, 0x00, 0x24, 0x07, + 0x00, 0x00, 0x24, 0x1F, 0x00, 0x00, 0x24, 0x37, 0x00, 0x00, 0x24, 0x4F, + 0x00, 0x00, 0x24, 0x6F, 0x00, 0x00, 0x24, 0x87, 0x00, 0x00, 0x24, 0x9F, + 0x00, 0x00, 0x24, 0xB5, 0x00, 0x00, 0x24, 0xCB, 0x00, 0x00, 0x24, 0xEB, + 0x00, 0x00, 0x25, 0x79, 0x00, 0x00, 0x25, 0x91, 0x00, 0x00, 0x25, 0xA9, + 0x00, 0x00, 0x25, 0xC1, 0x00, 0x00, 0x25, 0xD9, 0x00, 0x00, 0x25, 0xE9, + 0x00, 0x00, 0x25, 0xF9, 0x00, 0x00, 0x26, 0x09, 0x00, 0x00, 0x26, 0x68, + 0x00, 0x00, 0x26, 0x80, 0x00, 0x00, 0x26, 0x98, 0x00, 0x00, 0x26, 0xB0, + 0x00, 0x00, 0x26, 0xC8, 0x00, 0x00, 0x26, 0xE0, 0x00, 0x00, 0x26, 0xF8, + 0x00, 0x00, 0x27, 0x10, 0x00, 0x00, 0x27, 0x28, 0x00, 0x00, 0x27, 0x40, + 0x00, 0x00, 0x27, 0xCB, 0x00, 0x00, 0x28, 0x58, 0x00, 0x00, 0x28, 0xBA, + 0x00, 0x00, 0x28, 0xD2, 0x00, 0x00, 0x28, 0xEA, 0x00, 0x00, 0x29, 0x02, + 0x00, 0x00, 0x29, 0x1A, 0x00, 0x00, 0x29, 0x3A, 0x00, 0x00, 0x29, 0x4A, + 0x00, 0x00, 0x29, 0x5A, 0x00, 0x00, 0x29, 0x7A, 0x00, 0x00, 0x29, 0xE5, + 0x00, 0x00, 0x29, 0xFD, 0x00, 0x00, 0x2A, 0x15, 0x00, 0x00, 0x2A, 0x2D, + 0x00, 0x00, 0x2A, 0xC8, 0x00, 0x00, 0x2A, 0xE0, 0x00, 0x00, 0x2A, 0xF8, + 0x00, 0x00, 0x2B, 0x10, 0x00, 0x00, 0x2B, 0x28, 0x00, 0x00, 0x2B, 0x40, + 0x00, 0x00, 0x2B, 0x58, 0x00, 0x00, 0x2B, 0x70, 0x00, 0x00, 0x2B, 0x88, + 0x00, 0x00, 0x2B, 0xA8, 0x00, 0x00, 0x2B, 0xC0, 0x00, 0x00, 0x2B, 0xD8, + 0x00, 0x00, 0x2B, 0xF0, 0x00, 0x00, 0x2C, 0x08, 0x00, 0x00, 0x2C, 0x20, + 0x00, 0x00, 0x2C, 0x38, 0x00, 0x00, 0x2C, 0x50, 0x00, 0x00, 0x2C, 0x68, + 0x00, 0x00, 0x2C, 0x80, 0x00, 0x00, 0x2C, 0x98, 0x00, 0x00, 0x2C, 0xB0, + 0x00, 0x00, 0x2C, 0xC8, 0x00, 0x00, 0x2C, 0xE0, 0x00, 0x00, 0x2C, 0xF8, + 0x00, 0x00, 0x2D, 0x10, 0x00, 0x00, 0x2D, 0x28, 0x00, 0x00, 0x2D, 0x48, + 0x00, 0x00, 0x2D, 0x60, 0x00, 0x00, 0x2D, 0x78, 0x00, 0x00, 0x2D, 0x90, + 0x00, 0x00, 0x2D, 0xA8, 0x00, 0x00, 0x2D, 0xC0, 0x00, 0x00, 0x2D, 0xE0, + 0x00, 0x00, 0x2D, 0xF0, 0x00, 0x00, 0x2E, 0x08, 0x00, 0x00, 0x2E, 0x20, + 0x00, 0x00, 0x2E, 0x38, 0x00, 0x00, 0x2E, 0x50, 0x00, 0x00, 0x2E, 0x68, + 0x00, 0x00, 0x2E, 0x80, 0x00, 0x00, 0x2E, 0x98, 0x00, 0x00, 0x2E, 0xB0, + 0x00, 0x00, 0x2F, 0x2A, 0x00, 0x00, 0x2F, 0x42, 0x00, 0x00, 0x2F, 0x52, + 0x00, 0x00, 0x2F, 0x6A, 0x00, 0x00, 0x2F, 0x7A, 0x00, 0x00, 0x2F, 0x8A, + 0x00, 0x00, 0x2F, 0xA2, 0x00, 0x00, 0x30, 0x0E, 0x00, 0x00, 0x30, 0x5A, + 0x00, 0x00, 0x30, 0x72, 0x00, 0x00, 0x30, 0x8A, 0x00, 0x00, 0x30, 0xED, + 0x00, 0x00, 0x31, 0x59, 0x00, 0x00, 0x31, 0x69, 0x00, 0x00, 0x31, 0x81, + 0x00, 0x00, 0x32, 0x06, 0x00, 0x00, 0x32, 0xA9, 0x00, 0x00, 0x33, 0x07, + 0x00, 0x00, 0x33, 0x1F, 0x00, 0x00, 0x33, 0x37, 0x00, 0x00, 0x33, 0x4F, + 0x00, 0x00, 0x33, 0x67, 0x00, 0x00, 0x33, 0x7F, 0x00, 0x00, 0x33, 0x97, + 0x00, 0x00, 0x33, 0xAF, 0x00, 0x00, 0x33, 0xCF, 0x00, 0x00, 0x33, 0xE7, + 0x00, 0x00, 0x34, 0x63, 0x00, 0x00, 0x34, 0xD5, 0x00, 0x00, 0x35, 0x44, + 0x00, 0x00, 0x35, 0xDB, 0x00, 0x00, 0x35, 0xF3, 0x00, 0x00, 0x36, 0x0B, + 0x00, 0x00, 0x36, 0x23, 0x00, 0x00, 0x36, 0x3B, 0x00, 0x00, 0x36, 0x53, + 0x00, 0x00, 0x36, 0x6B, 0x00, 0x00, 0x36, 0x83, 0x00, 0x00, 0x36, 0x9B, + 0x00, 0x00, 0x36, 0xB3, 0x00, 0x00, 0x36, 0xD3, 0x00, 0x00, 0x36, 0xE3, + 0x00, 0x00, 0x37, 0x79, 0x00, 0x00, 0x37, 0xE2, 0x00, 0x00, 0x38, 0x07, + 0x00, 0x00, 0x38, 0x1F, 0x00, 0x00, 0x38, 0x37, 0x00, 0x00, 0x38, 0x4F, + 0x00, 0x00, 0x38, 0x67, 0x00, 0x00, 0x38, 0x7F, 0x00, 0x00, 0x38, 0x97, + 0x00, 0x00, 0x38, 0xAF, 0x00, 0x00, 0x38, 0xF1, 0x00, 0x00, 0x39, 0x17, + 0x00, 0x00, 0x39, 0x6A, 0x00, 0x00, 0x39, 0xA1, 0x00, 0x00, 0x39, 0xB1, + 0x00, 0x00, 0x39, 0xFD, 0x00, 0x00, 0x3A, 0x66, 0x00, 0x00, 0x3A, 0x7E, + 0x00, 0x00, 0x3A, 0x96, 0x00, 0x00, 0x3A, 0xAE, 0x00, 0x00, 0x3A, 0xC6, + 0x00, 0x00, 0x3A, 0xDE, 0x00, 0x00, 0x3A, 0xF6, 0x00, 0x00, 0x3B, 0x0E, + 0x00, 0x00, 0x3B, 0x26, 0x00, 0x00, 0x3B, 0x3E, 0x00, 0x00, 0x3B, 0x56, + 0x00, 0x00, 0x3B, 0x6E, 0x00, 0x00, 0x3B, 0x86, 0x00, 0x00, 0x3B, 0x9E, + 0x00, 0x00, 0x3B, 0xB6, 0x00, 0x00, 0x3B, 0xCE, 0x00, 0x00, 0x3B, 0xE6, + 0x00, 0x00, 0x3B, 0xFE, 0x00, 0x00, 0x3C, 0x16, 0x00, 0x00, 0x3C, 0x2E, + 0x00, 0x00, 0x3C, 0x46, 0x00, 0x00, 0x3C, 0x5E, 0x00, 0x00, 0x3C, 0x76, + 0x00, 0x00, 0x3C, 0x8E, 0x00, 0x00, 0x3C, 0xA6, 0x00, 0x00, 0x3C, 0xBE, + 0x00, 0x00, 0x3C, 0xD6, 0x00, 0x00, 0x3C, 0xEE, 0x00, 0x00, 0x3D, 0x06, + 0x00, 0x00, 0x3D, 0x1E, 0x00, 0x00, 0x3D, 0x79, 0x00, 0x00, 0x3D, 0xBA, + 0x00, 0x00, 0x3D, 0xD2, 0x00, 0x00, 0x3D, 0xEA, 0x00, 0x00, 0x3E, 0x6D, + 0x00, 0x00, 0x3E, 0x85, 0x00, 0x00, 0x3E, 0x9D, 0x00, 0x00, 0x3E, 0xB5, + 0x00, 0x00, 0x3E, 0xCD, 0x00, 0x00, 0x3E, 0xE5, 0x00, 0x00, 0x3E, 0xFD, + 0x00, 0x00, 0x3F, 0x6E, 0x00, 0x00, 0x3F, 0x86, 0x00, 0x00, 0x3F, 0x9E, + 0x00, 0x00, 0x3F, 0xB6, 0x00, 0x00, 0x3F, 0xCE, 0x00, 0x00, 0x3F, 0xDE, + 0x00, 0x00, 0x40, 0x23, 0x00, 0x00, 0x40, 0x75, 0x00, 0x00, 0x40, 0x8D, + 0x00, 0x00, 0x40, 0xA5, 0x00, 0x00, 0x40, 0xBD, 0x00, 0x00, 0x40, 0xD5, + 0x00, 0x00, 0x40, 0xED, 0x00, 0x00, 0x41, 0x05, 0x00, 0x00, 0x41, 0x1D, + 0x00, 0x00, 0x41, 0x35, 0x00, 0x00, 0x41, 0x4D, 0x00, 0x00, 0x41, 0xA2, + 0x00, 0x00, 0x41, 0xB2, 0x00, 0x00, 0x41, 0xCA, 0x00, 0x00, 0x41, 0xE2, + 0x00, 0x00, 0x41, 0xFA, 0x00, 0x00, 0x42, 0x12, 0x00, 0x00, 0x42, 0x2A, + 0x00, 0x00, 0x42, 0x42, 0x00, 0x00, 0x42, 0x5A, 0x00, 0x00, 0x42, 0x72, + 0x00, 0x00, 0x42, 0x8C, 0x00, 0x00, 0x42, 0xA4, 0x00, 0x00, 0x42, 0xBC, + 0x00, 0x00, 0x43, 0x0F, 0x00, 0x00, 0x43, 0x27, 0x00, 0x00, 0x43, 0x3F, + 0x00, 0x00, 0x43, 0x57, 0x00, 0x00, 0x43, 0x6F, 0x00, 0x00, 0x43, 0x87, + 0x00, 0x00, 0x43, 0x9F, 0x00, 0x00, 0x44, 0x20, 0x00, 0x00, 0x44, 0x38, + 0x00, 0x00, 0x44, 0x48, 0x00, 0x00, 0x44, 0xA6, 0x00, 0x00, 0x45, 0x4A, + 0x00, 0x00, 0x45, 0x62, 0x00, 0x00, 0x45, 0x7A, 0x00, 0x00, 0x45, 0x92, + 0x00, 0x00, 0x45, 0xB2, 0x00, 0x00, 0x45, 0xCA, 0x00, 0x00, 0x45, 0xE2, + 0x00, 0x00, 0x45, 0xFA, 0x00, 0x00, 0x46, 0x12, 0x00, 0x00, 0x46, 0x2A, + 0x00, 0x00, 0x46, 0x42, 0x00, 0x00, 0x46, 0x62, 0x00, 0x00, 0x46, 0x7A, + 0x00, 0x00, 0x46, 0x92, 0x00, 0x00, 0x46, 0xAA, 0x00, 0x00, 0x46, 0xC0, + 0x00, 0x00, 0x46, 0xD6, 0x00, 0x00, 0x46, 0xEC, 0x00, 0x00, 0x47, 0x04, + 0x00, 0x00, 0x47, 0x1C, 0x00, 0x00, 0x47, 0x34, 0x00, 0x00, 0x47, 0x4C, + 0x00, 0x00, 0x47, 0x64, 0x00, 0x00, 0x47, 0x7C, 0x00, 0x00, 0x47, 0x94, + 0x00, 0x00, 0x47, 0xAC, 0x00, 0x00, 0x47, 0xC4, 0x00, 0x00, 0x47, 0xDC, + 0x00, 0x00, 0x47, 0xF4, 0x00, 0x00, 0x48, 0x14, 0x00, 0x00, 0x48, 0x2C, + 0x00, 0x00, 0x48, 0x42, 0x00, 0x00, 0x48, 0xE7, 0x00, 0x00, 0x48, 0xF7, + 0x00, 0x00, 0x49, 0x0F, 0x00, 0x00, 0x49, 0x25, 0x00, 0x00, 0x4A, 0x11, + 0x00, 0x00, 0x4A, 0x29, 0x00, 0x00, 0x4A, 0x41, 0x00, 0x00, 0x4A, 0x51, + 0x00, 0x00, 0x4A, 0xC4, 0x00, 0x00, 0x4A, 0xDC, 0x00, 0x00, 0x4A, 0xF4, + 0x00, 0x00, 0x4B, 0x0C, 0x00, 0x00, 0x4B, 0x2C, 0x00, 0x00, 0x4B, 0x44, + 0x00, 0x00, 0x4B, 0x5C, 0x00, 0x00, 0x4B, 0x74, 0x00, 0x00, 0x4B, 0x8C, + 0x00, 0x00, 0x4B, 0xA4, 0x00, 0x00, 0x4B, 0xBC, 0x00, 0x00, 0x4B, 0xDC, + 0x00, 0x00, 0x4B, 0xF4, 0x00, 0x00, 0x4C, 0x0C, 0x00, 0x00, 0x4C, 0x24, + 0x00, 0x00, 0x4C, 0x3A, 0x00, 0x00, 0x4C, 0x50, 0x00, 0x00, 0x4C, 0x66, + 0x00, 0x00, 0x4C, 0x7E, 0x00, 0x00, 0x4C, 0x96, 0x00, 0x00, 0x4C, 0xAE, + 0x00, 0x00, 0x4C, 0xC6, 0x00, 0x00, 0x4C, 0xDE, 0x00, 0x00, 0x4C, 0xF6, + 0x00, 0x00, 0x4D, 0x0E, 0x00, 0x00, 0x4D, 0x26, 0x00, 0x00, 0x4D, 0x3E, + 0x00, 0x00, 0x4D, 0x56, 0x00, 0x00, 0x4D, 0x6E, 0x00, 0x00, 0x4D, 0x86, + 0x00, 0x00, 0x4D, 0x9C, 0x00, 0x00, 0x4E, 0x10, 0x00, 0x00, 0x4E, 0x28, + 0x00, 0x00, 0x4E, 0xAB, 0x00, 0x00, 0x4F, 0x4C, 0x00, 0x00, 0x4F, 0x64, + 0x00, 0x00, 0x4F, 0x7C, 0x00, 0x00, 0x4F, 0x94, 0x00, 0x00, 0x50, 0x09, + 0x00, 0x00, 0x50, 0x79, 0x00, 0x00, 0x50, 0xFC, 0x00, 0x00, 0x51, 0x9E, + 0x00, 0x00, 0x51, 0xB6, 0x00, 0x00, 0x51, 0xCE, 0x00, 0x00, 0x51, 0xE6, + 0x00, 0x00, 0x51, 0xFE, 0x00, 0x00, 0x52, 0x16, 0x00, 0x00, 0x52, 0x36, + 0x00, 0x00, 0x52, 0x46, 0x00, 0x00, 0x52, 0x56, 0x00, 0x00, 0x52, 0xCA, + 0x00, 0x00, 0x52, 0xE2, 0x00, 0x00, 0x53, 0x83, 0x00, 0x00, 0x54, 0x24, + 0x00, 0x00, 0x54, 0xA8, 0x00, 0x00, 0x55, 0x78, 0x00, 0x00, 0x55, 0x90, + 0x00, 0x00, 0x55, 0xA8, 0x00, 0x00, 0x55, 0xC0, 0x00, 0x00, 0x55, 0xD8, + 0x00, 0x00, 0x55, 0xF0, 0x00, 0x00, 0x56, 0x08, 0x00, 0x00, 0x56, 0x20, + 0x00, 0x00, 0x56, 0xB8, 0x00, 0x00, 0x56, 0xD8, 0x00, 0x00, 0x57, 0xAB, + 0x00, 0x00, 0x57, 0xCB, 0x00, 0x00, 0x58, 0x40, 0x00, 0x00, 0x58, 0x56, + 0x00, 0x00, 0x58, 0xDE, 0x00, 0x00, 0x58, 0xF6, 0x00, 0x00, 0x59, 0x0E, + 0x00, 0x00, 0x59, 0x26, 0x00, 0x00, 0x59, 0x3E, 0x00, 0x00, 0x59, 0x56, + 0x00, 0x00, 0x59, 0x6E, 0x00, 0x00, 0x59, 0x86, 0x00, 0x00, 0x59, 0x9E, + 0x00, 0x00, 0x59, 0xB4, 0x00, 0x00, 0x59, 0xCC, 0x00, 0x00, 0x59, 0xE4, + 0x00, 0x00, 0x59, 0xFC, 0x00, 0x00, 0x5A, 0x14, 0x00, 0x00, 0x5A, 0x2C, + 0x00, 0x00, 0x5A, 0x44, 0x00, 0x00, 0x5A, 0x64, 0x00, 0x00, 0x5A, 0x7C, + 0x00, 0x00, 0x5A, 0x94, 0x00, 0x00, 0x5A, 0xAA, 0x00, 0x00, 0x5A, 0xC2, + 0x00, 0x00, 0x5A, 0xDA, 0x00, 0x00, 0x5A, 0xF2, 0x00, 0x00, 0x5B, 0x0A, + 0x00, 0x00, 0x5B, 0x2A, 0x00, 0x00, 0x5B, 0x3A, 0x00, 0x00, 0x5B, 0x52, + 0x00, 0x00, 0x5B, 0x68, 0x00, 0x00, 0x5B, 0x80, 0x00, 0x00, 0x5B, 0xF6, + 0x00, 0x00, 0x5C, 0x30, 0x00, 0x00, 0x5C, 0x7A, 0x00, 0x00, 0x5C, 0xC4, + 0x00, 0x00, 0x5D, 0x0C, 0x00, 0x00, 0x5D, 0x53, 0x00, 0x00, 0x5D, 0x6B, + 0x00, 0x00, 0x5D, 0x83, 0x00, 0x00, 0x5D, 0x93, 0x00, 0x00, 0x5D, 0xA9, + 0x00, 0x00, 0x5D, 0xC1, 0x00, 0x00, 0x5D, 0xD9, 0x00, 0x00, 0x5D, 0xF1, + 0x00, 0x00, 0x5E, 0x8D, 0x00, 0x00, 0x5F, 0x56, 0x00, 0x00, 0x5F, 0x6E, + 0x00, 0x00, 0x5F, 0x86, 0x00, 0x00, 0x5F, 0x9E, 0x00, 0x00, 0x5F, 0xB6, + 0x00, 0x00, 0x5F, 0xCE, 0x00, 0x00, 0x5F, 0xE6, 0x00, 0x00, 0x5F, 0xFE, + 0x00, 0x00, 0x60, 0x16, 0x00, 0x00, 0x60, 0x83, 0x00, 0x00, 0x61, 0x22, + 0x00, 0x00, 0x61, 0x6D, 0x00, 0x00, 0x61, 0x83, 0x00, 0x00, 0x61, 0x9B, + 0x00, 0x00, 0x62, 0x1E, 0x00, 0x00, 0x62, 0x93, 0x00, 0x00, 0x63, 0x33, + 0x00, 0x00, 0x63, 0xAB, 0x00, 0x00, 0x63, 0xF6, 0x00, 0x00, 0x64, 0x65, + 0x00, 0x00, 0x64, 0xF3, 0x00, 0x00, 0x65, 0x0B, 0x00, 0x00, 0x65, 0x23, + 0x00, 0x00, 0x65, 0x3B, 0x00, 0x00, 0x65, 0x53, 0x00, 0x00, 0x65, 0x6B, + 0x00, 0x00, 0x65, 0x83, 0x00, 0x00, 0x65, 0x9B, 0x00, 0x00, 0x65, 0xB3, + 0x00, 0x00, 0x65, 0xC3, 0x00, 0x00, 0x65, 0xD9, 0x00, 0x00, 0x65, 0xF1, + 0x00, 0x00, 0x66, 0x09, 0x00, 0x00, 0x66, 0x21, 0x00, 0x00, 0x66, 0x39, + 0x00, 0x00, 0x66, 0x51, 0x00, 0x00, 0x66, 0x6F, 0x00, 0x00, 0x66, 0x87, + 0x00, 0x00, 0x66, 0xA5, 0x00, 0x00, 0x66, 0xBD, 0x00, 0x00, 0x66, 0xD3, + 0x00, 0x00, 0x66, 0xEB, 0x00, 0x00, 0x67, 0x03, 0x00, 0x00, 0x67, 0x1B, + 0x00, 0x00, 0x67, 0x31, 0x00, 0x00, 0x67, 0x4D, 0x00, 0x00, 0x67, 0x65, + 0x00, 0x00, 0x67, 0x7D, 0x00, 0x00, 0x67, 0x95, 0x00, 0x00, 0x67, 0xAB, + 0x00, 0x00, 0x67, 0xC9, 0x00, 0x00, 0x67, 0xE1, 0x00, 0x00, 0x68, 0x10, + 0x00, 0x00, 0x68, 0x28, 0x00, 0x00, 0x68, 0x46, 0x00, 0x00, 0x68, 0x5E, + 0x00, 0x00, 0x68, 0x74, 0x00, 0x00, 0x68, 0x8C, 0x00, 0x00, 0x68, 0xB2, + 0x00, 0x00, 0x68, 0xDB, 0x00, 0x00, 0x68, 0xF1, 0x00, 0x00, 0x69, 0x58, + 0x00, 0x00, 0x69, 0x70, 0x00, 0x00, 0x69, 0x88, 0x00, 0x00, 0x69, 0xA0, + 0x00, 0x00, 0x69, 0xB6, 0x00, 0x00, 0x69, 0xCC, 0x00, 0x00, 0x69, 0xEC, + 0x00, 0x00, 0x6A, 0x34, 0x00, 0x00, 0x6A, 0xA7, 0x00, 0x00, 0x6A, 0xBF, + 0x00, 0x00, 0x6A, 0xD7, 0x00, 0x00, 0x6A, 0xEF, 0x00, 0x00, 0x6B, 0x07, + 0x00, 0x00, 0x6B, 0x1F, 0x00, 0x00, 0x6B, 0x67, 0x00, 0x00, 0x6B, 0xAF, + 0x00, 0x00, 0x6B, 0xCA, 0x00, 0x00, 0x6B, 0xE0, 0x00, 0x00, 0x6B, 0xF8, + 0x00, 0x00, 0x6C, 0x10, 0x00, 0x00, 0x6C, 0x54, 0x00, 0x00, 0x6C, 0xBC, + 0x00, 0x00, 0x6D, 0x32, 0x00, 0x00, 0x6D, 0x4A, 0x00, 0x00, 0x6D, 0x62, + 0x00, 0x00, 0x6D, 0x78, 0x00, 0x00, 0x6D, 0x90, 0x00, 0x00, 0x6D, 0xA8, + 0x00, 0x00, 0x6D, 0xC8, 0x00, 0x00, 0x6D, 0xE0, 0x00, 0x00, 0x6D, 0xF8, + 0x00, 0x00, 0x6E, 0x31, 0x00, 0x00, 0x6E, 0x47, 0x00, 0x00, 0x6E, 0x5F, + 0x00, 0x00, 0x6E, 0x75, 0x00, 0x00, 0x6E, 0xF5, 0x00, 0x00, 0x6F, 0x0D, + 0x00, 0x00, 0x6F, 0x25, 0x00, 0x00, 0x6F, 0x3B, 0x00, 0x00, 0x6F, 0x53, + 0x00, 0x00, 0x6F, 0x6B, 0x00, 0x00, 0x6F, 0x8B, 0x00, 0x00, 0x6F, 0xA3, + 0x00, 0x00, 0x6F, 0xBB, 0x00, 0x00, 0x6F, 0xCB, 0x00, 0x00, 0x6F, 0xE8, + 0x00, 0x00, 0x70, 0x5F, 0x00, 0x00, 0x71, 0x03, 0x00, 0x00, 0x71, 0x7D, + 0x00, 0x00, 0x72, 0x05, 0x00, 0x00, 0x72, 0x1D, 0x00, 0x00, 0x72, 0x35, + 0x00, 0x00, 0x72, 0x4D, 0x00, 0x00, 0x72, 0x99, 0x00, 0x00, 0x72, 0xAF, + 0x00, 0x00, 0x73, 0x25, 0x00, 0x00, 0x73, 0x9A, 0x00, 0x00, 0x74, 0x41, + 0x00, 0x00, 0x74, 0xB5, 0x00, 0x00, 0x74, 0xC5, 0x00, 0x00, 0x74, 0xDD, + 0x00, 0x00, 0x74, 0xF5, 0x00, 0x00, 0x75, 0x0D, 0x00, 0x00, 0x75, 0x25, + 0x00, 0x00, 0x75, 0x3D, 0x00, 0x00, 0x75, 0x55, 0x00, 0x00, 0x75, 0x6D, + 0x00, 0x00, 0x75, 0x85, 0x00, 0x00, 0x75, 0xA5, 0x00, 0x00, 0x75, 0xFB, + 0x00, 0x00, 0x76, 0x5E, 0x00, 0x00, 0x76, 0x74, 0x00, 0x00, 0x76, 0x8A, + 0x00, 0x00, 0x76, 0xA0, 0x00, 0x00, 0x77, 0x2D, 0x00, 0x00, 0x77, 0x45, + 0x00, 0x00, 0x77, 0x5D, 0x00, 0x00, 0x77, 0x75, 0x00, 0x00, 0x77, 0x8D, + 0x00, 0x00, 0x77, 0xA5, 0x00, 0x00, 0x77, 0xBD, 0x00, 0x00, 0x77, 0xD5, + 0x00, 0x00, 0x77, 0xED, 0x00, 0x00, 0x78, 0x0D, 0x00, 0x00, 0x78, 0x23, + 0x00, 0x00, 0x78, 0x3B, 0x00, 0x00, 0x78, 0x51, 0x00, 0x00, 0x78, 0x67, + 0x00, 0x00, 0x78, 0x7F, 0x00, 0x00, 0x78, 0x97, 0x00, 0x00, 0x78, 0xAD, + 0x00, 0x00, 0x78, 0xC3, 0x00, 0x00, 0x78, 0xDB, 0x00, 0x00, 0x78, 0xF3, + 0x00, 0x00, 0x79, 0x0B, 0x00, 0x00, 0x79, 0x23, 0x00, 0x00, 0x79, 0x3B, + 0x00, 0x00, 0x79, 0x53, 0x00, 0x00, 0x79, 0x6B, 0x00, 0x00, 0x79, 0x83, + 0x00, 0x00, 0x79, 0xA3, 0x00, 0x00, 0x79, 0xBB, 0x00, 0x00, 0x79, 0xD3, + 0x00, 0x00, 0x79, 0xEB, 0x00, 0x00, 0x7A, 0xB8, 0x00, 0x00, 0x7A, 0xD0, + 0x00, 0x00, 0x7A, 0xEE, 0x00, 0x00, 0x7A, 0xFE, 0x00, 0x00, 0x7B, 0x16, + 0x00, 0x00, 0x7B, 0x2E, 0x00, 0x00, 0x7B, 0x46, 0x00, 0x00, 0x7B, 0x5E, + 0x00, 0x00, 0x7B, 0x76, 0x00, 0x00, 0x7B, 0x8E, 0x00, 0x00, 0x7B, 0xA6, + 0x00, 0x00, 0x7B, 0xBE, 0x00, 0x00, 0x7B, 0xD4, 0x00, 0x00, 0x7C, 0x46, + 0x00, 0x00, 0x7C, 0x56, 0x00, 0x00, 0x7C, 0x6C, 0x00, 0x00, 0x7C, 0x84, + 0x00, 0x00, 0x7D, 0x01, 0x00, 0x00, 0x7D, 0x19, 0x00, 0x00, 0x7D, 0x8F, + 0x00, 0x00, 0x7E, 0x1A, 0x00, 0x00, 0x7E, 0xBC, 0x00, 0x00, 0x7E, 0xD4, + 0x00, 0x00, 0x7E, 0xEC, 0x00, 0x00, 0x7E, 0xFC, 0x00, 0x00, 0x7F, 0x72, + 0x00, 0x00, 0x80, 0x14, 0x00, 0x00, 0x80, 0xB4, 0x00, 0x00, 0x80, 0xF4, + 0x00, 0x00, 0x81, 0x61, 0x00, 0x00, 0x81, 0x79, 0x00, 0x00, 0x81, 0xBC, + 0x00, 0x00, 0x82, 0x2A, 0x00, 0x00, 0x82, 0x68, 0x00, 0x00, 0x82, 0xA7, + 0x00, 0x00, 0x82, 0xF7, 0x00, 0x00, 0x83, 0x0F, 0x00, 0x00, 0x83, 0x25, + 0x00, 0x00, 0x83, 0x3B, 0x00, 0x00, 0x83, 0x53, 0x00, 0x00, 0x83, 0x69, + 0x00, 0x00, 0x83, 0x81, 0x00, 0x00, 0x83, 0x99, 0x00, 0x00, 0x83, 0xB7, + 0x00, 0x00, 0x83, 0xCF, 0x00, 0x00, 0x84, 0x20, 0x00, 0x00, 0x84, 0x71, + 0x00, 0x00, 0x84, 0xF5, 0x00, 0x00, 0x85, 0xAA, 0x00, 0x00, 0x86, 0x63, + 0x00, 0x00, 0x86, 0x7B, 0x00, 0x00, 0x86, 0x93, 0x00, 0x00, 0x86, 0xAB, + 0x00, 0x00, 0x86, 0xC3, 0x00, 0x00, 0x86, 0xDB, 0x00, 0x00, 0x86, 0xF3, + 0x00, 0x00, 0x87, 0x0B, 0x00, 0x00, 0x87, 0x23, 0x00, 0x00, 0x87, 0x3B, + 0x00, 0x00, 0x87, 0x5B, 0x00, 0x00, 0x87, 0x6B, 0x00, 0x00, 0x87, 0xEA, + 0x00, 0x00, 0x88, 0x62, 0x00, 0x00, 0x88, 0xF2, 0x00, 0x00, 0x89, 0x37, + 0x00, 0x00, 0x89, 0xA8, 0x00, 0x00, 0x89, 0xF0, 0x00, 0x00, 0x8A, 0x73, + 0x00, 0x00, 0x8B, 0x2F, 0x00, 0x00, 0x8B, 0x72, 0x00, 0x00, 0x8B, 0xC5, + 0x00, 0x00, 0x8B, 0xDD, 0x00, 0x00, 0x8B, 0xF5, 0x00, 0x00, 0x8C, 0x0D, + 0x00, 0x00, 0x8C, 0x25, 0x00, 0x00, 0x8C, 0x3D, 0x00, 0x00, 0x8C, 0x55, + 0x00, 0x00, 0x8C, 0x6D, 0x00, 0x00, 0x8C, 0x85, 0x00, 0x00, 0x8C, 0xCA, + 0x00, 0x00, 0x8D, 0x3B, 0x00, 0x00, 0x8D, 0x53, 0x00, 0x00, 0x8D, 0x6B, + 0x00, 0x00, 0x8D, 0x81, 0x00, 0x00, 0x8D, 0x99, 0x00, 0x00, 0x8D, 0xB1, + 0x00, 0x00, 0x8D, 0xC9, 0x00, 0x00, 0x8D, 0xE1, 0x00, 0x00, 0x8D, 0xF9, + 0x00, 0x00, 0x8E, 0x44, 0x00, 0x00, 0x8E, 0x5A, 0x00, 0x00, 0x8E, 0x70, + 0x00, 0x00, 0x8E, 0xD8, 0x00, 0x00, 0x8F, 0x43, 0x00, 0x00, 0x8F, 0x9D, + 0x00, 0x00, 0x8F, 0xB5, 0x00, 0x00, 0x8F, 0xCD, 0x00, 0x00, 0x8F, 0xE5, + 0x00, 0x00, 0x8F, 0xFD, 0x00, 0x00, 0x90, 0x15, 0x00, 0x00, 0x90, 0x2D, + 0x00, 0x00, 0x90, 0x45, 0x00, 0x00, 0x90, 0x5D, 0x00, 0x00, 0x90, 0x75, + 0x00, 0x00, 0x90, 0x8B, 0x00, 0x00, 0x90, 0xA1, 0x00, 0x00, 0x90, 0xB7, + 0x00, 0x00, 0x90, 0xCD, 0x00, 0x00, 0x90, 0xE3, 0x00, 0x00, 0x90, 0xFB, + 0x00, 0x00, 0x91, 0x13, 0x00, 0x00, 0x91, 0x2B, 0x00, 0x00, 0x91, 0x43, + 0x00, 0x00, 0x91, 0x59, 0x00, 0x00, 0x91, 0x71, 0x00, 0x00, 0x91, 0x89, + 0x00, 0x00, 0x91, 0xA1, 0x00, 0x00, 0x91, 0xB9, 0x00, 0x00, 0x91, 0xD1, + 0x00, 0x00, 0x91, 0xE9, 0x00, 0x00, 0x91, 0xFF, 0x00, 0x00, 0x92, 0x17, + 0x00, 0x00, 0x92, 0x5F, 0x00, 0x00, 0x92, 0x77, 0x00, 0x00, 0x92, 0xCE, + 0x00, 0x00, 0x92, 0xE6, 0x00, 0x00, 0x92, 0xFE, 0x00, 0x00, 0x93, 0x16, + 0x00, 0x00, 0x93, 0x2E, 0x00, 0x00, 0x93, 0x44, 0x00, 0x00, 0x93, 0x5A, + 0x00, 0x00, 0x93, 0x70, 0x00, 0x00, 0x93, 0x88, 0x00, 0x00, 0x93, 0x9E, + 0x00, 0x00, 0x93, 0xB4, 0x00, 0x00, 0x93, 0xCA, 0x00, 0x00, 0x93, 0xE2, + 0x00, 0x00, 0x93, 0xFA, 0x00, 0x00, 0x94, 0x12, 0x00, 0x00, 0x94, 0x77, + 0x00, 0x00, 0x94, 0x8F, 0x00, 0x00, 0x94, 0xA7, 0x00, 0x00, 0x94, 0xBF, + 0x00, 0x00, 0x94, 0xD7, 0x00, 0x00, 0x94, 0xED, 0x00, 0x00, 0x95, 0x05, + 0x00, 0x00, 0x95, 0x1D, 0x00, 0x00, 0x95, 0x35, 0x00, 0x00, 0x95, 0x4D, + 0x00, 0x00, 0x95, 0x65, 0x00, 0x00, 0x95, 0x7D, 0x00, 0x00, 0x95, 0x93, + 0x00, 0x00, 0x95, 0xA9, 0x00, 0x00, 0x95, 0xC1, 0x00, 0x00, 0x95, 0xFE, + 0x00, 0x00, 0x96, 0x3D, 0x00, 0x00, 0x96, 0x53, 0x00, 0x00, 0x96, 0x6B, + 0x00, 0x00, 0x96, 0xE9, 0x00, 0x00, 0x97, 0x01, 0x00, 0x00, 0x97, 0x81, + 0x00, 0x00, 0x97, 0x99, 0x00, 0x00, 0x97, 0xB1, 0x00, 0x00, 0x97, 0xC9, + 0x00, 0x00, 0x97, 0xE1, 0x00, 0x00, 0x97, 0xF9, 0x00, 0x00, 0x98, 0x11, + 0x00, 0x00, 0x98, 0x78, 0x00, 0x00, 0x98, 0x90, 0x00, 0x00, 0x98, 0xA6, + 0x00, 0x00, 0x98, 0xB6, 0x00, 0x00, 0x99, 0x2F, 0x00, 0x00, 0x99, 0x91, + 0x00, 0x00, 0x99, 0xA7, 0x00, 0x00, 0x9A, 0x3D, 0x00, 0x00, 0x9A, 0xAD, + 0x00, 0x00, 0x9A, 0xC5, 0x00, 0x00, 0x9A, 0xDD, 0x00, 0x00, 0x9A, 0xF5, + 0x00, 0x00, 0x9B, 0x0D, 0x00, 0x00, 0x9B, 0x25, 0x00, 0x00, 0x9B, 0x3D, + 0x00, 0x00, 0x9B, 0x55, 0x00, 0x00, 0x9B, 0x6D, 0x00, 0x00, 0x9B, 0x83, + 0x00, 0x00, 0x9B, 0x93, 0x00, 0x00, 0x9B, 0xAB, 0x00, 0x00, 0x9B, 0xC3, + 0x00, 0x00, 0x9B, 0xD9, 0x00, 0x00, 0x9B, 0xF1, 0x00, 0x00, 0x9C, 0x54, + 0x00, 0x00, 0x9C, 0x6C, 0x00, 0x00, 0x9C, 0x84, 0x00, 0x00, 0x9C, 0x9C, + 0x00, 0x00, 0x9C, 0xB4, 0x00, 0x00, 0x9C, 0xF7, 0x00, 0x00, 0x9D, 0x26, + 0x00, 0x00, 0x9D, 0x3E, 0x00, 0x00, 0x9D, 0x82, 0x00, 0x00, 0x9D, 0xF4, + 0x00, 0x00, 0x9E, 0x50, 0x00, 0x00, 0x9E, 0x68, 0x00, 0x00, 0x9E, 0x80, + 0x00, 0x00, 0x9E, 0x98, 0x00, 0x00, 0x9E, 0xB0, 0x00, 0x00, 0x9E, 0xC8, + 0x00, 0x00, 0x9E, 0xE0, 0x00, 0x00, 0x9F, 0x37, 0x00, 0x00, 0x9F, 0x58, + 0x00, 0x00, 0x9F, 0x85, 0x00, 0x00, 0x9F, 0xFF, 0x00, 0x00, 0xA0, 0x32, + 0x00, 0x00, 0xA0, 0x5A, 0x00, 0x00, 0xA0, 0xD5, 0x00, 0x00, 0xA1, 0x57, + 0x00, 0x00, 0xA1, 0xBD, 0x00, 0x00, 0xA2, 0x35, 0x00, 0x00, 0xA2, 0x4D, + 0x00, 0x00, 0xA2, 0x65, 0x00, 0x00, 0xA2, 0x7D, 0x00, 0x00, 0xA2, 0x95, + 0x00, 0x00, 0xA2, 0xAD, 0x00, 0x00, 0xA2, 0xC5, 0x00, 0x00, 0xA2, 0xDD, + 0x00, 0x00, 0xA2, 0xF5, 0x00, 0x00, 0xA3, 0x0D, 0x00, 0x00, 0xA3, 0x25, + 0x00, 0x00, 0xA3, 0x3F, 0x00, 0x00, 0xA3, 0x5F, 0x00, 0x00, 0xA3, 0x7F, + 0x00, 0x00, 0xA3, 0x9F, 0x00, 0x00, 0xA3, 0xBF, 0x00, 0x00, 0xA3, 0xDF, + 0x00, 0x00, 0xA3, 0xFF, 0x00, 0x00, 0xA4, 0x1F, 0x00, 0x00, 0xA4, 0x3F, + 0x00, 0x00, 0xA4, 0x57, 0x00, 0x00, 0xA4, 0xD6, 0x00, 0x00, 0xA5, 0x45, + 0x00, 0x00, 0xA5, 0x5D, 0x00, 0x00, 0xA5, 0x75, 0x00, 0x00, 0xA5, 0xE9, + 0x00, 0x00, 0xA6, 0x38, 0x00, 0x00, 0xA6, 0x66, 0x00, 0x00, 0xA6, 0x82, + 0x00, 0x00, 0xA6, 0xDC, 0x00, 0x00, 0xA7, 0x35, 0x00, 0x00, 0xA7, 0x4D, + 0x00, 0x00, 0xA7, 0x5D, 0x00, 0x00, 0xA7, 0x97, 0x00, 0x00, 0xA7, 0xE4, + 0x00, 0x00, 0xA8, 0x48, 0x00, 0x00, 0xA8, 0x8A, 0x00, 0x00, 0xA8, 0x9A, + 0x00, 0x00, 0xA8, 0xB2, 0x00, 0x00, 0xA9, 0x0A, 0x00, 0x00, 0xA9, 0x8C, + 0x00, 0x00, 0xA9, 0xA4, 0x00, 0x00, 0xA9, 0xED, 0x00, 0x00, 0xAA, 0x39, + 0x00, 0x00, 0xAA, 0x51, 0x00, 0x00, 0xAA, 0x69, 0x00, 0x00, 0xAA, 0xB5, + 0x00, 0x00, 0xAB, 0x11, 0x00, 0x00, 0xAB, 0x44, 0x00, 0x00, 0xAB, 0x5C, + 0x00, 0x00, 0xAB, 0xB5, 0x00, 0x00, 0xAB, 0xCD, 0x00, 0x00, 0xAC, 0x1A, + 0x00, 0x00, 0xAC, 0x96, 0x00, 0x00, 0xAC, 0xFB, 0x00, 0x00, 0xAD, 0x7D, + 0x00, 0x00, 0xAE, 0x06, 0x00, 0x00, 0xAE, 0x65, 0x00, 0x00, 0xAE, 0x7D, + 0x00, 0x00, 0xAE, 0x95, 0x00, 0x00, 0xAF, 0x17, 0x00, 0x00, 0xAF, 0xDB, + 0x00, 0x00, 0xB0, 0x7A, 0x00, 0x00, 0xB0, 0xF7, 0x00, 0x00, 0xB1, 0x07, + 0x00, 0x00, 0xB1, 0x47, 0x00, 0x00, 0xB1, 0x5F, 0x00, 0x00, 0xB1, 0xFA, + 0x00, 0x00, 0xB2, 0x82, 0x00, 0x00, 0xB2, 0x9A, 0x00, 0x00, 0xB2, 0xB2, + 0x00, 0x00, 0xB2, 0xCA, 0x00, 0x00, 0xB2, 0xE2, 0x00, 0x00, 0xB2, 0xFA, + 0x00, 0x00, 0xB3, 0x12, 0x00, 0x00, 0xB3, 0x2A, 0x00, 0x00, 0xB3, 0x42, + 0x00, 0x00, 0xB3, 0x5A, 0x00, 0x00, 0xB3, 0x72, 0x00, 0x00, 0xB3, 0x92, + 0x00, 0x00, 0xB3, 0xB2, 0x00, 0x00, 0xB3, 0xD2, 0x00, 0x00, 0xB3, 0xF2, + 0x00, 0x00, 0xB4, 0x12, 0x00, 0x00, 0xB4, 0x32, 0x00, 0x00, 0xB4, 0x52, + 0x00, 0x00, 0xB4, 0x72, 0x00, 0x00, 0xB4, 0x8A, 0x00, 0x00, 0xB4, 0xA2, + 0x00, 0x00, 0xB4, 0xC2, 0x00, 0x00, 0xB4, 0xDA, 0x00, 0x00, 0xB4, 0xFA, + 0x00, 0x00, 0xB5, 0x10, 0x00, 0x00, 0xB5, 0x2E, 0x00, 0x00, 0xB5, 0xC9, + 0x00, 0x00, 0xB6, 0x15, 0x00, 0x00, 0xB6, 0xB0, 0x00, 0x00, 0xB7, 0x49, + 0x00, 0x00, 0xB7, 0x61, 0x00, 0x00, 0xB7, 0xF7, 0x00, 0x00, 0xB8, 0x07, + 0x00, 0x00, 0xB8, 0x9F, 0x00, 0x00, 0xB9, 0x36, 0x00, 0x00, 0xBA, 0x06, + 0x00, 0x00, 0xBA, 0x1E, 0x00, 0x00, 0xBA, 0x36, 0x00, 0x00, 0xBA, 0x4E, + 0x00, 0x00, 0xBA, 0x66, 0x00, 0x00, 0xBA, 0x7E, 0x00, 0x00, 0xBA, 0x96, + 0x00, 0x00, 0xBA, 0xAE, 0x00, 0x00, 0xBB, 0x2F, 0x00, 0x00, 0xBB, 0x7B, + 0x00, 0x00, 0xBB, 0x93, 0x00, 0x00, 0xBB, 0xAB, 0x00, 0x00, 0xBB, 0xC3, + 0x00, 0x00, 0xBB, 0xDB, 0x00, 0x00, 0xBB, 0xF3, 0x00, 0x00, 0xBC, 0x0B, + 0x00, 0x00, 0xBC, 0x23, 0x00, 0x00, 0xBC, 0x3B, 0x00, 0x00, 0xBC, 0x53, + 0x00, 0x00, 0xBC, 0x6B, 0x00, 0x00, 0xBC, 0x89, 0x00, 0x00, 0xBC, 0xA7, + 0x00, 0x00, 0xBC, 0xC5, 0x00, 0x00, 0xBC, 0xE3, 0x00, 0x00, 0xBD, 0x01, + 0x00, 0x00, 0xBD, 0x1F, 0x00, 0x00, 0xBD, 0x3D, 0x00, 0x00, 0xBD, 0x5B, + 0x00, 0x00, 0xBD, 0x79, 0x00, 0x00, 0xBD, 0x8F, 0x00, 0x00, 0xBD, 0xAD, + 0x00, 0x00, 0xBD, 0xC3, 0x00, 0x00, 0xBD, 0xDF, 0x00, 0x00, 0xBE, 0x4F, + 0x00, 0x00, 0xBE, 0x88, 0x00, 0x00, 0xBE, 0xA0, 0x00, 0x00, 0xBE, 0xB6, + 0x00, 0x00, 0xBE, 0xCE, 0x00, 0x00, 0xBE, 0xE4, 0x00, 0x00, 0xBE, 0xFA, + 0x00, 0x00, 0xBF, 0x12, 0x00, 0x00, 0xBF, 0x2A, 0x00, 0x00, 0xBF, 0x42, + 0x00, 0x00, 0xBF, 0x5A, 0x00, 0x00, 0xBF, 0x70, 0x00, 0x00, 0xBF, 0x86, + 0x00, 0x00, 0xBF, 0x9C, 0x00, 0x00, 0xBF, 0xB4, 0x00, 0x00, 0xBF, 0xCC, + 0x00, 0x00, 0xBF, 0xE4, 0x00, 0x00, 0xBF, 0xFC, 0x00, 0x00, 0xC0, 0x14, + 0x00, 0x00, 0xC0, 0x95, 0x00, 0x00, 0xC1, 0x26, 0x00, 0x00, 0xC1, 0x7B, + 0x00, 0x00, 0xC1, 0xEC, 0x00, 0x00, 0xC2, 0x04, 0x00, 0x00, 0xC2, 0x1C, + 0x00, 0x00, 0xC2, 0x34, 0x00, 0x00, 0xC2, 0xA4, 0x00, 0x00, 0xC3, 0x13, + 0x00, 0x00, 0xC3, 0x56, 0x00, 0x00, 0xC3, 0x66, 0x00, 0x00, 0xC3, 0x7C, + 0x00, 0x00, 0xC3, 0x92, 0x00, 0x00, 0xC3, 0xAA, 0x00, 0x00, 0xC3, 0xC2, + 0x00, 0x00, 0xC3, 0xDA, 0x00, 0x00, 0xC3, 0xF2, 0x00, 0x00, 0xC4, 0x0A, + 0x00, 0x00, 0xC4, 0x22, 0x00, 0x00, 0xC4, 0x3A, 0x00, 0x00, 0xC4, 0x52, + 0x00, 0x00, 0xC4, 0x6A, 0x00, 0x00, 0xC4, 0x82, 0x00, 0x00, 0xC4, 0x9A, + 0x00, 0x00, 0xC4, 0xB2, 0x00, 0x00, 0xC4, 0xC8, 0x00, 0x00, 0xC4, 0xDE, + 0x00, 0x00, 0xC4, 0xF6, 0x00, 0x00, 0xC5, 0x7F, 0x00, 0x00, 0xC5, 0xF8, + 0x00, 0x00, 0xC6, 0x52, 0x00, 0x00, 0xC6, 0xDF, 0x00, 0x00, 0xC6, 0xF7, + 0x00, 0x00, 0xC7, 0x0F, 0x00, 0x00, 0xC7, 0x27, 0x00, 0x00, 0xC7, 0x3F, + 0x00, 0x00, 0xC7, 0x57, 0x00, 0x00, 0xC7, 0x6F, 0x00, 0x00, 0xC7, 0x87, + 0x00, 0x00, 0xC7, 0x9F, 0x00, 0x00, 0xC7, 0xB7, 0x00, 0x00, 0xC7, 0xCF, + 0x00, 0x00, 0xC7, 0xEF, 0x00, 0x00, 0xC8, 0x0F, 0x00, 0x00, 0xC8, 0x2F, + 0x00, 0x00, 0xC8, 0x4F, 0x00, 0x00, 0xC8, 0x6F, 0x00, 0x00, 0xC8, 0x8F, + 0x00, 0x00, 0xC8, 0xAF, 0x00, 0x00, 0xC8, 0xCF, 0x00, 0x00, 0xC8, 0xEF, + 0x00, 0x00, 0xC9, 0x07, 0x00, 0x00, 0xC9, 0x27, 0x00, 0x00, 0xC9, 0x3F, + 0x00, 0x00, 0xC9, 0x5F, 0x00, 0x00, 0xC9, 0xCD, 0x00, 0x00, 0xCA, 0x66, + 0x00, 0x00, 0xCA, 0xCF, 0x00, 0x00, 0xCA, 0xEF, 0x00, 0x00, 0xCB, 0x1A, + 0x00, 0x00, 0xCB, 0x38, 0x00, 0x00, 0xCB, 0x8E, 0x00, 0x00, 0xCB, 0xE7, + 0x00, 0x00, 0xCB, 0xFF, 0x00, 0x00, 0xCC, 0x80, 0x00, 0x00, 0xCC, 0xB0, + 0x00, 0x00, 0xCC, 0xD0, 0x00, 0x00, 0xCD, 0x09, 0x00, 0x00, 0xCD, 0x72, + 0x00, 0x00, 0xCD, 0x8A, 0x00, 0x00, 0xCD, 0xD1, 0x00, 0x00, 0xCE, 0x19, + 0x00, 0x00, 0xCE, 0x5A, 0x00, 0x00, 0xCE, 0x72, 0x00, 0x00, 0xCE, 0x8A, + 0x00, 0x00, 0xCE, 0x9A, 0x00, 0x00, 0xCE, 0xB2, 0x00, 0x00, 0xCE, 0xC2, + 0x00, 0x00, 0xCE, 0xDA, 0x00, 0x00, 0xCF, 0x1C, 0x00, 0x00, 0xCF, 0x7A, + 0x00, 0x00, 0xCF, 0x92, 0x00, 0x00, 0xCF, 0xB8, 0x00, 0x00, 0xCF, 0xC8, + 0x00, 0x00, 0xD0, 0x41, 0x00, 0x00, 0xD0, 0xB6, 0x00, 0x00, 0xD0, 0xCE, + 0x00, 0x00, 0xD0, 0xE6, 0x00, 0x00, 0xD0, 0xFE, 0x00, 0x00, 0xD1, 0x47, + 0x00, 0x00, 0xD1, 0x5F, 0x00, 0x00, 0xD1, 0x77, 0x00, 0x00, 0xD1, 0xA7, + 0x00, 0x00, 0xD1, 0xBF, 0x00, 0x00, 0xD2, 0x07, 0x00, 0x00, 0xD2, 0x5A, + 0x00, 0x00, 0xD2, 0x72, 0x00, 0x00, 0xD2, 0xD4, 0x00, 0x00, 0xD3, 0x36, + 0x00, 0x00, 0xD3, 0x4E, 0x00, 0x00, 0xD3, 0xB0, 0x00, 0x00, 0xD4, 0x2E, + 0x00, 0x00, 0xD4, 0xAB, 0x00, 0x00, 0xD4, 0xFC, 0x00, 0x00, 0xD5, 0x65, + 0x00, 0x00, 0xD5, 0xC2, 0x00, 0x00, 0xD6, 0x40, 0x00, 0x00, 0xD6, 0xF3, + 0x00, 0x00, 0xD7, 0x3A, 0x00, 0x00, 0xD7, 0xC7, 0x00, 0x00, 0xD7, 0xD9, + 0x00, 0x00, 0xD8, 0x15, 0x00, 0x00, 0xD8, 0xB9, 0x00, 0x00, 0xD9, 0x35, + 0x00, 0x00, 0xD9, 0x91, 0x00, 0x00, 0xDA, 0x19, 0x00, 0x00, 0xDA, 0x83, + 0x00, 0x00, 0xDA, 0xE6, 0x00, 0x00, 0xDB, 0x42, 0x00, 0x00, 0xDB, 0xC9, + 0x00, 0x00, 0xDC, 0x3E, 0x00, 0x00, 0xDC, 0x74, 0x00, 0x00, 0xDC, 0x8C, + 0x00, 0x00, 0xDC, 0xF5, 0x00, 0x00, 0xDD, 0x4D, 0x00, 0x00, 0xDD, 0xB3, + 0x00, 0x00, 0xDE, 0x49, 0x00, 0x00, 0xDE, 0xA7, 0x00, 0x00, 0xDF, 0x4F, + 0x00, 0x00, 0xDF, 0xCC, 0x00, 0x00, 0xE0, 0x54, 0x00, 0x00, 0xE0, 0xEC, + 0x00, 0x00, 0xE1, 0x6D, 0x00, 0x00, 0xE2, 0x1B, 0x00, 0x00, 0xE2, 0x5F, + 0x00, 0x00, 0xE3, 0x79, 0x00, 0x00, 0xE4, 0x05, 0x00, 0x00, 0xE4, 0x62, + 0x00, 0x00, 0xE4, 0xB9, 0x00, 0x00, 0xE4, 0xD1, 0x00, 0x00, 0xE5, 0x60, + 0x00, 0x00, 0xE5, 0x78, 0x00, 0x00, 0xE6, 0x01, 0x00, 0x00, 0xE6, 0xB2, + 0x00, 0x00, 0xE7, 0x1D, 0x00, 0x00, 0xE7, 0x45, 0x00, 0x00, 0xE7, 0xA7, + 0x00, 0x00, 0xE7, 0xBF, 0x00, 0x00, 0xE8, 0x52, 0x00, 0x00, 0xE8, 0x93, + 0x00, 0x00, 0xE9, 0x09, 0x00, 0x00, 0xE9, 0x8E, 0x00, 0x00, 0xEA, 0x26, + 0x00, 0x00, 0xEA, 0x4C, 0x00, 0x00, 0xEB, 0x04, 0x00, 0x00, 0xEB, 0x9E, + 0x00, 0x00, 0xEC, 0x1B, 0x00, 0x00, 0xEC, 0x50, 0x00, 0x00, 0xEC, 0xBD, + 0x00, 0x00, 0xEC, 0xFA, 0x00, 0x00, 0xED, 0x74, 0x00, 0x00, 0xED, 0xEF, + 0x00, 0x00, 0xEE, 0x56, 0x00, 0x00, 0xEE, 0x89, 0x00, 0x00, 0xEE, 0x99, + 0x00, 0x00, 0xEE, 0xA9, 0x00, 0x00, 0xEE, 0xB9, 0x00, 0x00, 0xEE, 0xC9, + 0x00, 0x00, 0xEE, 0xD9, 0x00, 0x00, 0xEE, 0xE9, 0x00, 0x00, 0xEE, 0xF9, + 0x00, 0x00, 0xEF, 0x09, 0x00, 0x00, 0xEF, 0x82, 0x00, 0x00, 0xEF, 0xC2, + 0x00, 0x00, 0xEF, 0xD2, 0x00, 0x00, 0xEF, 0xE2, 0x00, 0x00, 0xEF, 0xF2, + 0x00, 0x00, 0xF0, 0x02, 0x00, 0x00, 0xF0, 0x14, 0x00, 0x00, 0xF0, 0x24, + 0x00, 0x00, 0xF0, 0x3C, 0x00, 0x00, 0xF0, 0x56, 0x00, 0x00, 0xF0, 0x70, + 0x00, 0x00, 0xF0, 0x80, 0x00, 0x00, 0xF0, 0x90, 0x00, 0x00, 0xF1, 0x0E, + 0x00, 0x00, 0xF1, 0x8F, 0x00, 0x00, 0xF1, 0x9F, 0x00, 0x00, 0xF1, 0xAF, + 0x00, 0x00, 0xF1, 0xBF, 0x00, 0x00, 0xF1, 0xCF, 0x00, 0x00, 0xF1, 0xDF, + 0x00, 0x00, 0xF1, 0xEF, 0x00, 0x00, 0xF1, 0xFF, 0x00, 0x00, 0xF2, 0x0F, + 0x00, 0x00, 0xF2, 0x21, 0x00, 0x00, 0xF2, 0x33, 0x00, 0x00, 0xF2, 0x43, + 0x00, 0x00, 0xF2, 0x53, 0x00, 0x00, 0xF2, 0x63, 0x00, 0x00, 0xF2, 0x73, + 0x00, 0x00, 0xF2, 0x83, 0x00, 0x00, 0xF2, 0x93, 0x00, 0x00, 0xF2, 0xA3, + 0x00, 0x00, 0xF2, 0xB3, 0x00, 0x00, 0xF2, 0xC3, 0x00, 0x00, 0xF2, 0xD3, + 0x00, 0x00, 0xF2, 0xE3, 0x00, 0x00, 0xF2, 0xF3, 0x00, 0x00, 0xF3, 0x03, + 0x00, 0x00, 0xF3, 0x15, 0x00, 0x00, 0xF3, 0x27, 0x00, 0x00, 0xF3, 0x39, + 0x00, 0x00, 0xF3, 0x4B, 0x00, 0x00, 0xF3, 0x5D, 0x00, 0x00, 0xF3, 0x6F, + 0x00, 0x00, 0xF3, 0x81, 0x00, 0x00, 0xF3, 0x93, 0x00, 0x00, 0xF3, 0xA5, + 0x00, 0x00, 0xF3, 0xB7, 0x00, 0x00, 0xF3, 0xC9, 0x00, 0x00, 0xF3, 0xDB, + 0x00, 0x00, 0xF3, 0xED, 0x00, 0x00, 0xF3, 0xFF, 0x00, 0x00, 0xF4, 0x0F, + 0x00, 0x00, 0xF4, 0x0F, 0x00, 0x00, 0xF4, 0x0F, 0x00, 0x00, 0xF4, 0x0F, + 0x00, 0x00, 0xF4, 0xCE, 0x00, 0x00, 0xF4, 0xF1, 0x00, 0x00, 0xF5, 0x2E, + 0x00, 0x00, 0xF5, 0x46, 0x00, 0x00, 0xF5, 0x82, 0x00, 0x00, 0xF5, 0x9A, + 0x00, 0x00, 0xF6, 0x20, 0x00, 0x00, 0xF6, 0x38, 0x00, 0x00, 0xF6, 0x50, + 0x00, 0x00, 0xF6, 0xD6, 0x00, 0x00, 0xF7, 0x6B, 0x00, 0x00, 0xF8, 0x00, + 0x00, 0x00, 0xF8, 0x44, 0x00, 0x00, 0xF8, 0x88, 0x00, 0x00, 0xF8, 0xAB, + 0x00, 0x00, 0xF8, 0xDC, 0x00, 0x00, 0xF8, 0xFF, 0x00, 0x00, 0xF9, 0x30, + 0x00, 0x00, 0xF9, 0xAE, 0x00, 0x00, 0xFA, 0x2F, 0x00, 0x00, 0xFB, 0x35, + 0x00, 0x00, 0xFB, 0x45, 0x00, 0x00, 0xFB, 0x55, 0x00, 0x00, 0xFB, 0x65, + 0x00, 0x00, 0xFB, 0x75, 0x00, 0x00, 0xFB, 0x85, 0x00, 0x00, 0xFB, 0x95, + 0x00, 0x00, 0xFB, 0xA7, 0x00, 0x00, 0xFB, 0xF3, 0x00, 0x00, 0xFC, 0x9B, + 0x00, 0x00, 0xFC, 0xBA, 0x00, 0x00, 0xFC, 0xD5, 0x00, 0x00, 0xFC, 0xFC, + 0x00, 0x00, 0xFD, 0x1A, 0x00, 0x00, 0xFD, 0x34, 0x00, 0x00, 0xFD, 0x4E, + 0x00, 0x00, 0xFD, 0x68, 0x00, 0x00, 0xFD, 0x82, 0x00, 0x00, 0xFD, 0x92, + 0x00, 0x00, 0xFD, 0xCB, 0x00, 0x00, 0xFE, 0x23, 0x00, 0x00, 0xFE, 0x3D, + 0x00, 0x00, 0xFE, 0x58, 0x00, 0x00, 0xFE, 0x9A, 0x00, 0x00, 0xFE, 0xDD, + 0x00, 0x00, 0xFE, 0xF8, 0x00, 0x00, 0xFF, 0x0A, 0x00, 0x00, 0xFF, 0x1C, + 0x00, 0x00, 0xFF, 0x2C, 0x00, 0x00, 0xFF, 0x3E, 0x00, 0x00, 0xFF, 0x50, + 0x00, 0x00, 0xFF, 0x62, 0x00, 0x00, 0xFF, 0x74, 0x00, 0x00, 0xFF, 0x86, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0xFF, 0xAA, 0x00, 0x00, 0xFF, 0xBC, + 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x01, 0x00, 0x10, + 0x00, 0x01, 0x00, 0x28, 0x00, 0x01, 0x00, 0x40, 0x00, 0x01, 0x00, 0x58, + 0x00, 0x01, 0x00, 0x72, 0x00, 0x01, 0x00, 0x84, 0x00, 0x01, 0x00, 0x9F, + 0x00, 0x01, 0x00, 0xB7, 0x00, 0x01, 0x00, 0xD3, 0x00, 0x01, 0x00, 0xEB, + 0x00, 0x01, 0x01, 0x0B, 0x00, 0x01, 0x01, 0x33, 0x00, 0x01, 0x01, 0x4E, + 0x00, 0x01, 0x01, 0x66, 0x00, 0x01, 0x01, 0x86, 0x00, 0x01, 0x01, 0xA3, + 0x00, 0x01, 0x01, 0xBB, 0x00, 0x01, 0x01, 0xCD, 0x00, 0x01, 0x01, 0xF9, + 0x00, 0x01, 0x02, 0x19, 0x00, 0x01, 0x02, 0x31, 0x00, 0x01, 0x02, 0x49, + 0x00, 0x01, 0x02, 0x63, 0x00, 0x01, 0x02, 0x7D, 0x00, 0x01, 0x02, 0x97, + 0x00, 0x01, 0x02, 0xA9, 0x00, 0x01, 0x02, 0xBB, 0x00, 0x01, 0x02, 0xD5, + 0x00, 0x01, 0x02, 0xFE, 0x00, 0x01, 0x03, 0x26, 0x00, 0x01, 0x03, 0x3E, + 0x00, 0x01, 0x03, 0x56, 0x00, 0x01, 0x03, 0x85, 0x00, 0x01, 0x03, 0xB8, + 0x00, 0x01, 0x03, 0xF4, 0x00, 0x01, 0x04, 0x2F, 0x00, 0x01, 0x04, 0x56, + 0x00, 0x01, 0x04, 0x90, 0x00, 0x01, 0x04, 0xB8, 0x00, 0x01, 0x04, 0xD2, + 0x00, 0x01, 0x05, 0x02, 0x00, 0x01, 0x05, 0x5F, 0x00, 0x01, 0x05, 0x94, + 0x00, 0x01, 0x06, 0x3A, 0x00, 0x01, 0x06, 0x94, 0x00, 0x01, 0x06, 0xA6, + 0x00, 0x01, 0x06, 0xB8, 0x00, 0x01, 0x06, 0xCA, 0x00, 0x01, 0x06, 0xDC, + 0x00, 0x01, 0x06, 0xEE, 0x00, 0x01, 0x07, 0x00, 0x00, 0x01, 0x07, 0x12, + 0x00, 0x01, 0x07, 0x24, 0x00, 0x01, 0x07, 0x36, 0x00, 0x01, 0x07, 0x48, + 0x00, 0x01, 0x07, 0x5A, 0x00, 0x01, 0x07, 0x6C, 0x00, 0x01, 0x07, 0x7E, + 0x00, 0x01, 0x07, 0x9E, 0x00, 0x01, 0x07, 0xB6, 0x00, 0x01, 0x07, 0xE7, + 0x00, 0x01, 0x08, 0x24, 0x00, 0x01, 0x08, 0x5C, 0x00, 0x01, 0x08, 0xA9, + 0x00, 0x01, 0x09, 0x09, 0x00, 0x01, 0x09, 0xB9, 0x00, 0x01, 0x0A, 0x8F, + 0x00, 0x01, 0x0B, 0x65, 0x00, 0x01, 0x0C, 0x18, 0x00, 0x01, 0x0C, 0x74, + 0x00, 0x01, 0x0D, 0x1B, 0x00, 0x01, 0x0D, 0x76, 0x00, 0x01, 0x0D, 0xE2, + 0x00, 0x01, 0x0E, 0x62, 0x00, 0x01, 0x0E, 0xE8, 0x00, 0x01, 0x0F, 0x4C, + 0x00, 0x01, 0x0F, 0xE0, 0x00, 0x01, 0x10, 0x44, 0x00, 0x01, 0x10, 0x7E, + 0x00, 0x01, 0x10, 0xC2, 0x00, 0x01, 0x11, 0x02, 0x00, 0x01, 0x11, 0x3F, + 0x00, 0x01, 0x12, 0x2F, 0x00, 0x01, 0x13, 0x2A, 0x00, 0x01, 0x13, 0xBE, + 0x00, 0x01, 0x14, 0x05, 0x00, 0x01, 0x14, 0x2D, 0x00, 0x01, 0x14, 0x85, + 0x00, 0x01, 0x14, 0xC5, 0x00, 0x01, 0x15, 0x45, 0x00, 0x01, 0x15, 0x90, + 0x00, 0x01, 0x16, 0x18, 0x00, 0x01, 0x16, 0x7C, 0x00, 0x01, 0x16, 0xDF, + 0x00, 0x01, 0x17, 0x43, 0x00, 0x01, 0x17, 0xAC, 0x00, 0x01, 0x17, 0xF2, + 0x00, 0x01, 0x18, 0x7B, 0x00, 0x01, 0x18, 0xC3, 0x00, 0x01, 0x18, 0xFD, + 0x00, 0x01, 0x19, 0x4B, 0x00, 0x01, 0x19, 0x8C, 0x00, 0x01, 0x19, 0xA7, + 0x00, 0x01, 0x1A, 0x18, 0x00, 0x01, 0x1A, 0x60, 0x00, 0x01, 0x1A, 0xBE, + 0x00, 0x01, 0x1B, 0x22, 0x00, 0x01, 0x1B, 0x87, 0x00, 0x01, 0x1B, 0xC6, + 0x00, 0x01, 0x1C, 0x46, 0x00, 0x01, 0x1C, 0x8B, 0x00, 0x01, 0x1C, 0xD3, + 0x00, 0x01, 0x1D, 0x0E, 0x00, 0x01, 0x1D, 0x82, 0x00, 0x01, 0x1D, 0xE7, + 0x00, 0x01, 0x1E, 0x47, 0x00, 0x01, 0x1E, 0x78, 0x00, 0x01, 0x1E, 0xC4, + 0x00, 0x01, 0x1F, 0x20, 0x00, 0x01, 0x1F, 0x45, 0x00, 0x01, 0x1F, 0x79, + 0x00, 0x01, 0x1F, 0xD0, 0x00, 0x01, 0x20, 0x50, 0x00, 0x01, 0x20, 0xB1, + 0x00, 0x01, 0x20, 0xEE, 0x00, 0x01, 0x21, 0x27, 0x00, 0x01, 0x21, 0x90, + 0x00, 0x01, 0x22, 0x14, 0x00, 0x01, 0x22, 0x81, 0x00, 0x01, 0x22, 0xA9, + 0x00, 0x01, 0x23, 0x4A, 0x00, 0x01, 0x23, 0xD2, 0x00, 0x01, 0x24, 0x3F, + 0x00, 0x01, 0x24, 0x7A, 0x00, 0x01, 0x24, 0xB3, 0x00, 0x01, 0x24, 0xD6, + 0x00, 0x01, 0x24, 0xF9, 0x00, 0x01, 0x25, 0x21, 0x00, 0x01, 0x25, 0x3B, + 0x00, 0x01, 0x25, 0x62, 0x00, 0x01, 0x25, 0x74, 0x00, 0x01, 0x25, 0x86, + 0x00, 0x01, 0x25, 0x98, 0x00, 0x01, 0x25, 0xAA, 0x00, 0x01, 0x25, 0xBC, + 0x00, 0x01, 0x25, 0xCE, 0x00, 0x01, 0x25, 0xE0, 0x00, 0x01, 0x25, 0xF2, + 0x00, 0x01, 0x26, 0x04, 0x00, 0x01, 0x26, 0x16, 0x00, 0x01, 0x26, 0x28, + 0x00, 0x01, 0x26, 0x3A, 0x00, 0x01, 0x26, 0x4C, 0x00, 0x01, 0x26, 0x5E, + 0x00, 0x01, 0x26, 0x70, 0x00, 0x01, 0x26, 0x82, 0x00, 0x01, 0x26, 0x94, + 0x00, 0x01, 0x26, 0xA6, 0x00, 0x01, 0x26, 0xB8, 0x00, 0x01, 0x26, 0xCA, + 0x00, 0x01, 0x26, 0xDC, 0x00, 0x01, 0x26, 0xEE, 0x00, 0x01, 0x27, 0x00, + 0x00, 0x01, 0x27, 0x12, 0x00, 0x01, 0x27, 0x24, 0x00, 0x01, 0x27, 0x36, + 0x00, 0x01, 0x27, 0x48, 0x00, 0x01, 0x27, 0x5A, 0x00, 0x01, 0x27, 0x6C, + 0x00, 0x01, 0x27, 0x7E, 0x00, 0x01, 0x27, 0x90, 0x00, 0x01, 0x27, 0xA2, + 0x00, 0x01, 0x27, 0xB4, 0x00, 0x01, 0x27, 0xC6, 0x00, 0x01, 0x27, 0xD8, + 0x00, 0x01, 0x27, 0xEA, 0x00, 0x01, 0x27, 0xFC, 0x00, 0x01, 0x28, 0x0E, + 0x00, 0x01, 0x28, 0x20, 0x00, 0x01, 0x28, 0x32, 0x00, 0x01, 0x28, 0x44, + 0x00, 0x01, 0x28, 0x56, 0x00, 0x01, 0x28, 0x68, 0x00, 0x01, 0x28, 0x7A, + 0x00, 0x01, 0x28, 0x8C, 0x00, 0x01, 0x28, 0x9E, 0x00, 0x01, 0x28, 0xB0, + 0x00, 0x01, 0x28, 0xC2, 0x00, 0x01, 0x28, 0xD4, 0x00, 0x01, 0x28, 0xF1, + 0x00, 0x01, 0x29, 0x3C, 0x00, 0x01, 0x29, 0x97, 0x00, 0x01, 0x29, 0xBC, + 0x00, 0x01, 0x29, 0xED, 0x00, 0x01, 0x2A, 0x3F, 0x00, 0x01, 0x2A, 0xBD, + 0x00, 0x01, 0x2B, 0x21, 0x00, 0x01, 0x2B, 0x5D, 0x00, 0x01, 0x2B, 0x95, + 0x00, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x2C, 0x81, 0x00, 0x01, 0x2C, 0xE4, + 0x00, 0x01, 0x2D, 0x0A, 0x00, 0x01, 0x2D, 0xAA, 0x00, 0x01, 0x2E, 0x32, + 0x00, 0x01, 0x2E, 0x99, 0x00, 0x01, 0x2E, 0xC0, 0x00, 0x01, 0x2E, 0xDA, + 0x00, 0x01, 0x2F, 0x01, 0x00, 0x01, 0x2F, 0x3C, 0x00, 0x01, 0x2F, 0x74, + 0x00, 0x01, 0x2F, 0x9F, 0x00, 0x01, 0x2F, 0xBA, 0x00, 0x01, 0x2F, 0xFF, + 0x00, 0x01, 0x30, 0x2F, 0x00, 0x01, 0x30, 0x41, 0x00, 0x01, 0x30, 0x53, + 0x00, 0x01, 0x30, 0x65, 0x00, 0x01, 0x30, 0x77, 0x00, 0x01, 0x30, 0x89, + 0x00, 0x01, 0x30, 0x9B, 0x00, 0x01, 0x30, 0xAD, 0x00, 0x01, 0x30, 0xBF, + 0x00, 0x01, 0x30, 0xD1, 0x00, 0x01, 0x30, 0xE3, 0x00, 0x01, 0x30, 0xF5, + 0x00, 0x01, 0x31, 0x07, 0x00, 0x01, 0x31, 0x19, 0x00, 0x01, 0x31, 0x2B, + 0x00, 0x01, 0x31, 0x3D, 0x00, 0x01, 0x31, 0x4F, 0x00, 0x01, 0x31, 0x61, + 0x00, 0x01, 0x31, 0x73, 0x00, 0x01, 0x31, 0x85, 0x00, 0x01, 0x31, 0x97, + 0x00, 0x01, 0x31, 0xA9, 0x00, 0x01, 0x31, 0xD5, 0x00, 0x01, 0x31, 0xF1, + 0x00, 0x01, 0x32, 0x03, 0x00, 0x01, 0x32, 0x15, 0x00, 0x01, 0x32, 0x2F, + 0x00, 0x01, 0x32, 0x51, 0x00, 0x01, 0x32, 0x73, 0x00, 0x01, 0x32, 0x95, + 0x00, 0x01, 0x32, 0xB7, 0x00, 0x01, 0x32, 0xD9, 0x00, 0x01, 0x32, 0xFB, + 0x00, 0x01, 0x33, 0x1D, 0x00, 0x01, 0x33, 0x3F, 0x00, 0x01, 0x33, 0x61, + 0x00, 0x01, 0x33, 0x83, 0x00, 0x01, 0x33, 0xA5, 0x00, 0x01, 0x33, 0xC7, + 0x00, 0x01, 0x33, 0xE9, 0x00, 0x01, 0x34, 0x0B, 0x00, 0x01, 0x34, 0x2D, + 0x00, 0x01, 0x34, 0x4F, 0x00, 0x01, 0x34, 0x71, 0x00, 0x01, 0x34, 0x93, + 0x00, 0x01, 0x34, 0xBD, 0x00, 0x01, 0x35, 0x83, 0x00, 0x01, 0x36, 0x9C, + 0x00, 0x01, 0x38, 0x08, 0x00, 0x01, 0x38, 0x28, 0x00, 0x01, 0x38, 0x48, + 0x00, 0x01, 0x38, 0x68, 0x00, 0x01, 0x38, 0x88, 0x00, 0x01, 0x38, 0xA8, + 0x00, 0x01, 0x38, 0xB8, 0x00, 0x01, 0x38, 0xE1, 0x00, 0x01, 0x38, 0xF1, + 0x00, 0x01, 0x39, 0x01, 0x00, 0x01, 0x39, 0x11, 0x00, 0x01, 0x39, 0x7C, + 0x00, 0x01, 0x39, 0x8C, 0x00, 0x01, 0x39, 0x9C, 0x00, 0x01, 0x39, 0xAC, + 0x00, 0x01, 0x39, 0xBC, 0x00, 0x01, 0x39, 0xCC, 0x00, 0x01, 0x39, 0xDC, + 0x00, 0x01, 0x39, 0xEC, 0x00, 0x01, 0x39, 0xFC, 0x00, 0x01, 0x3A, 0x57, + 0x00, 0x01, 0x3A, 0x67, 0x00, 0x01, 0x3A, 0x77, 0x00, 0x01, 0x3A, 0x93, + 0x00, 0x01, 0x3A, 0xB0, 0x00, 0x01, 0x3A, 0xCD, 0x00, 0x01, 0x3A, 0xF9, + 0x00, 0x01, 0x3B, 0x13, 0x00, 0x01, 0x3B, 0x60, 0x00, 0x01, 0x3B, 0x72, + 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, + 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, + 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, + 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, + 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, + 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3B, 0x9B, 0x00, 0x01, 0x3C, 0x30, + 0x00, 0x01, 0x3C, 0x48, 0x00, 0x01, 0x3C, 0x60, 0x00, 0x01, 0x3C, 0x70, + 0x00, 0x01, 0x3C, 0x88, 0x00, 0x01, 0x3C, 0xA0, 0x00, 0x01, 0x3D, 0x16, + 0x00, 0x01, 0x3D, 0x76, 0x00, 0x01, 0x3D, 0xD6, 0x00, 0x01, 0x3E, 0x07, + 0x00, 0x01, 0x3E, 0x4D, 0x00, 0x01, 0x3E, 0x93, 0x00, 0x01, 0x3E, 0xF1, + 0x00, 0x01, 0x3F, 0x4F, 0x00, 0x01, 0x3F, 0x7E, 0x00, 0x01, 0x3F, 0xC3, + 0x00, 0x01, 0x40, 0x08, 0x00, 0x01, 0x40, 0x67, 0x00, 0x01, 0x40, 0xC6, + 0x00, 0x01, 0x41, 0x27, 0x00, 0x01, 0x41, 0x86, 0x00, 0x01, 0x42, 0x2D, + 0x00, 0x01, 0x42, 0xD4, 0x00, 0x01, 0x43, 0x36, 0x00, 0x01, 0x43, 0x98, + 0x00, 0x01, 0x43, 0xF8, 0x00, 0x01, 0x44, 0x58, 0x00, 0x01, 0x44, 0xC5, + 0x00, 0x01, 0x45, 0x6B, 0x00, 0x01, 0x45, 0xF7, 0x00, 0x01, 0x46, 0x81, + 0x00, 0x01, 0x46, 0x91, 0x00, 0x01, 0x46, 0xA1, 0x00, 0x01, 0x46, 0xB1, + 0x00, 0x01, 0x46, 0xC1, 0x00, 0x01, 0x46, 0xD1, 0x00, 0x01, 0x46, 0xE1, + 0x00, 0x01, 0x46, 0xF1, 0x00, 0x01, 0x47, 0x01, 0x00, 0x01, 0x47, 0x11, + 0x00, 0x01, 0x47, 0x21, 0x00, 0x01, 0x47, 0x31, 0x00, 0x01, 0x47, 0x41, + 0x00, 0x01, 0x47, 0x51, 0x00, 0x01, 0x47, 0x61, 0x00, 0x01, 0x47, 0x73, + 0x00, 0x01, 0x47, 0x85, 0x00, 0x01, 0x47, 0x97, 0x00, 0x01, 0x47, 0xA9, + 0x00, 0x01, 0x47, 0xD0, 0x00, 0x01, 0x48, 0x00, 0x00, 0x01, 0x48, 0x1A, + 0x00, 0x01, 0x48, 0x34, 0x00, 0x01, 0x48, 0x50, 0x00, 0x01, 0x48, 0x69, + 0x00, 0x01, 0x48, 0x92, 0x00, 0x01, 0x48, 0xBA, 0x00, 0x01, 0x48, 0xE4, + 0x00, 0x01, 0x49, 0x0C, 0x00, 0x01, 0x49, 0x55, 0x00, 0x01, 0x49, 0xA1, + 0x00, 0x01, 0x4A, 0x20, 0x00, 0x01, 0x4A, 0x39, 0x00, 0x01, 0x4A, 0x61, + 0x00, 0x01, 0x4A, 0xBE, 0x00, 0x01, 0x4B, 0x2B, 0x00, 0x01, 0x4B, 0x98, + 0x00, 0x01, 0x4B, 0xB8, 0x00, 0x01, 0x4C, 0x0E, 0x00, 0x01, 0x4C, 0x40, + 0x00, 0x01, 0x4C, 0xD8, 0x00, 0x01, 0x4D, 0xBE, 0x00, 0x01, 0x4E, 0x79, + 0x00, 0x01, 0x4F, 0x08, 0x00, 0x01, 0x4F, 0x55, 0x00, 0x01, 0x4F, 0x65, + 0x00, 0x01, 0x4F, 0x9D, 0x00, 0x01, 0x4F, 0xFB, 0x00, 0x01, 0x50, 0x23, + 0x00, 0x01, 0x50, 0x62, 0x00, 0x01, 0x50, 0xC2, 0x00, 0x01, 0x52, 0x06, + 0x00, 0x01, 0x52, 0x2E, 0x00, 0x01, 0x52, 0x63, 0x00, 0x01, 0x52, 0x8B, + 0x00, 0x01, 0x53, 0x2D, 0x00, 0x01, 0x53, 0x64, 0x00, 0x01, 0x53, 0x97, + 0x00, 0x01, 0x54, 0x1A, 0x00, 0x01, 0x54, 0x90, 0x00, 0x01, 0x55, 0x02, + 0x00, 0x01, 0x55, 0x59, 0x00, 0x01, 0x55, 0xB4, 0x00, 0x01, 0x56, 0x01, + 0x00, 0x01, 0x56, 0x2B, 0x00, 0x01, 0x56, 0x6E, 0x00, 0x01, 0x56, 0xA3, + 0x00, 0x01, 0x56, 0xD6, 0x00, 0x01, 0x57, 0x0D, 0x00, 0x01, 0x57, 0x44, + 0x00, 0x01, 0x57, 0x7B, 0x00, 0x01, 0x57, 0xB3, 0x00, 0x01, 0x57, 0xEA, + 0x00, 0x01, 0x58, 0x30, 0x00, 0x01, 0x58, 0x74, 0x00, 0x01, 0x58, 0xDD, + 0x00, 0x01, 0x59, 0x99, 0x00, 0x01, 0x59, 0xFE, 0x00, 0x01, 0x5A, 0x0E, + 0x00, 0x01, 0x5A, 0x1E, 0x00, 0x01, 0x5A, 0x36, 0x00, 0x01, 0x5A, 0x4E, + 0x00, 0x01, 0x5A, 0x66, 0x00, 0x01, 0x5A, 0x7E, 0x00, 0x01, 0x5A, 0x96, + 0x00, 0x01, 0x5A, 0xAE, 0x00, 0x01, 0x5A, 0xC6, 0x00, 0x01, 0x5A, 0xDE, + 0x00, 0x01, 0x5A, 0xF6, 0x00, 0x01, 0x5B, 0x0E, 0x00, 0x01, 0x5B, 0x26, + 0x00, 0x01, 0x5B, 0x3E, 0x00, 0x01, 0x5B, 0x56, 0x00, 0x01, 0x5B, 0x6E, + 0x00, 0x01, 0x5B, 0x86, 0x00, 0x01, 0x5B, 0x9E, 0x00, 0x01, 0x5B, 0xB6, + 0x00, 0x01, 0x5B, 0xCE, 0x00, 0x01, 0x5B, 0xE6, 0x00, 0x01, 0x5B, 0xFE, + 0x00, 0x01, 0x5C, 0x16, 0x00, 0x01, 0x5C, 0x2E, 0x00, 0x01, 0x5C, 0x46, + 0x00, 0x01, 0x5C, 0x5E, 0x00, 0x01, 0x5C, 0x76, 0x00, 0x01, 0x5C, 0x8E, + 0x00, 0x01, 0x5C, 0xA6, 0x00, 0x01, 0x5C, 0xBE, 0x00, 0x01, 0x5C, 0xD6, + 0x00, 0x01, 0x5C, 0xEE, 0x00, 0x01, 0x5D, 0x06, 0x00, 0x01, 0x5D, 0x1E, + 0x00, 0x01, 0x5D, 0x36, 0x00, 0x01, 0x5D, 0x4E, 0x00, 0x01, 0x5D, 0x66, + 0x00, 0x01, 0x5D, 0x7E, 0x00, 0x01, 0x5D, 0x96, 0x00, 0x01, 0x5D, 0xAE, + 0x00, 0x01, 0x5D, 0xC6, 0x00, 0x01, 0x5D, 0xDE, 0x00, 0x01, 0x5D, 0xF6, + 0x00, 0x01, 0x5E, 0x0E, 0x00, 0x01, 0x5E, 0x26, 0x00, 0x01, 0x5E, 0x3E, + 0x00, 0x01, 0x5E, 0x56, 0x00, 0x01, 0x5E, 0x6E, 0x00, 0x01, 0x5E, 0x86, + 0x00, 0x01, 0x5E, 0x9E, 0x00, 0x01, 0x5E, 0xB6, 0x00, 0x01, 0x5F, 0x8E, + 0x00, 0x01, 0x5F, 0xA6, 0x00, 0x01, 0x60, 0x73, 0x00, 0x01, 0x60, 0x8B, + 0x00, 0x01, 0x60, 0xA3, 0x00, 0x01, 0x60, 0xBB, 0x00, 0x01, 0x60, 0xD3, + 0x00, 0x01, 0x60, 0xEB, 0x00, 0x01, 0x61, 0x03, 0x00, 0x01, 0x61, 0x1B, + 0x00, 0x01, 0x61, 0x33, 0x00, 0x01, 0x61, 0x4B, 0x00, 0x01, 0x61, 0x63, + 0x00, 0x01, 0x61, 0x7B, 0x00, 0x01, 0x61, 0x93, 0x00, 0x01, 0x61, 0xAB, + 0x00, 0x01, 0x61, 0xC3, 0x00, 0x01, 0x61, 0xDB, 0x00, 0x01, 0x61, 0xF3, + 0x00, 0x01, 0x62, 0x0B, 0x00, 0x01, 0x62, 0x23, 0x00, 0x01, 0x62, 0x3B, + 0x00, 0x01, 0x62, 0x53, 0x00, 0x01, 0x62, 0x6B, 0x00, 0x01, 0x62, 0x83, + 0x00, 0x01, 0x62, 0x9B, 0x00, 0x01, 0x62, 0xB3, 0x00, 0x01, 0x62, 0xCB, + 0x00, 0x01, 0x62, 0xE3, 0x00, 0x01, 0x62, 0xFB, 0x00, 0x01, 0x63, 0x13, + 0x00, 0x01, 0x63, 0x2B, 0x00, 0x01, 0x63, 0x43, 0x00, 0x01, 0x63, 0x5B, + 0x00, 0x01, 0x63, 0x73, 0x00, 0x01, 0x63, 0x8B, 0x00, 0x01, 0x63, 0xA3, + 0x00, 0x01, 0x63, 0xBB, 0x00, 0x01, 0x63, 0xD3, 0x00, 0x01, 0x63, 0xEB, + 0x00, 0x01, 0x64, 0x03, 0x00, 0x01, 0x64, 0x1B, 0x00, 0x01, 0x64, 0x33, + 0x00, 0x01, 0x64, 0x4B, 0x00, 0x01, 0x64, 0x63, 0x00, 0x01, 0x64, 0x7B, + 0x00, 0x01, 0x64, 0x93, 0x00, 0x01, 0x64, 0xAB, 0x00, 0x01, 0x64, 0xC3, + 0x00, 0x01, 0x64, 0xDB, 0x00, 0x01, 0x64, 0xF3, 0x00, 0x01, 0x65, 0x0B, + 0x00, 0x01, 0x65, 0x23, 0x00, 0x01, 0x65, 0x3B, 0x00, 0x01, 0x65, 0x53, + 0x00, 0x01, 0x65, 0x6B, 0x00, 0x01, 0x65, 0x83, 0x00, 0x01, 0x65, 0x9B, + 0x00, 0x01, 0x65, 0xB3, 0x00, 0x01, 0x65, 0xCB, 0x00, 0x01, 0x65, 0xE3, + 0x00, 0x01, 0x65, 0xFB, 0x00, 0x01, 0x66, 0x7C, 0x00, 0x01, 0x66, 0x94, + 0x00, 0x01, 0x67, 0x0A, 0x00, 0x01, 0x67, 0x22, 0x00, 0x01, 0x67, 0x3A, + 0x00, 0x01, 0x67, 0x52, 0x00, 0x01, 0x67, 0x6A, 0x00, 0x01, 0x67, 0x82, + 0x00, 0x01, 0x67, 0x9A, 0x00, 0x01, 0x67, 0xB2, 0x00, 0x01, 0x67, 0xCA, + 0x00, 0x01, 0x67, 0xE2, 0x00, 0x01, 0x67, 0xFA, 0x00, 0x01, 0x68, 0x12, + 0x00, 0x01, 0x68, 0x2A, 0x00, 0x01, 0x68, 0x42, 0x00, 0x01, 0x68, 0x5A, + 0x00, 0x01, 0x68, 0x72, 0x00, 0x01, 0x68, 0x8A, 0x00, 0x01, 0x68, 0xA2, + 0x00, 0x01, 0x68, 0xB8, 0x00, 0x01, 0x68, 0xCE, 0x00, 0x01, 0x68, 0xE6, + 0x00, 0x01, 0x68, 0xFC, 0x00, 0x01, 0x69, 0x14, 0x00, 0x01, 0x69, 0x2C, + 0x00, 0x01, 0x69, 0x42, 0x00, 0x01, 0x69, 0x88, 0x00, 0x01, 0x69, 0x9A, + 0x00, 0x01, 0x69, 0xB4, 0x00, 0x01, 0x6A, 0x20, 0x00, 0x01, 0x6A, 0x38, + 0x00, 0x01, 0x6A, 0x50, 0x00, 0x01, 0x6A, 0x9C, 0x00, 0x01, 0x6A, 0xE7, + 0x00, 0x01, 0x6B, 0x33, 0x00, 0x01, 0x6B, 0xBE, 0x00, 0x01, 0x6B, 0xD0, + 0x00, 0x01, 0x6B, 0xEA, 0x00, 0x01, 0x6C, 0x0A, 0x00, 0x01, 0x6C, 0x2A, + 0x00, 0x01, 0x6C, 0x42, 0x00, 0x01, 0x6C, 0x5A, 0x00, 0x01, 0x6C, 0x72, + 0x00, 0x01, 0x6C, 0x8A, 0x00, 0x01, 0x6C, 0xA2, 0x00, 0x01, 0x6C, 0xBA, + 0x00, 0x01, 0x6C, 0xD2, 0x00, 0x01, 0x6C, 0xEA, 0x00, 0x01, 0x6D, 0x02, + 0x00, 0x01, 0x6D, 0x22, 0x00, 0x01, 0x6D, 0x3A, 0x00, 0x01, 0x6D, 0x52, + 0x00, 0x01, 0x6D, 0x6A, 0x00, 0x01, 0x6D, 0x82, 0x00, 0x01, 0x6D, 0x9A, + 0x00, 0x01, 0x6D, 0xB2, 0x00, 0x01, 0x6D, 0xCA, 0x00, 0x01, 0x6D, 0xE2, + 0x00, 0x01, 0x6D, 0xFA, 0x00, 0x01, 0x6E, 0x12, 0x00, 0x01, 0x6E, 0x2A, + 0x00, 0x01, 0x6E, 0x42, 0x00, 0x01, 0x6E, 0x5A, 0x00, 0x01, 0x6E, 0x72, + 0x00, 0x01, 0x6E, 0x92, 0x00, 0x01, 0x6E, 0xAA, 0x00, 0x01, 0x6E, 0xC2, + 0x00, 0x01, 0x6E, 0xDA, 0x00, 0x01, 0x6E, 0xF2, 0x00, 0x01, 0x6F, 0x12, + 0x00, 0x01, 0x6F, 0x2A, 0x00, 0x01, 0x6F, 0x42, 0x00, 0x01, 0x6F, 0x5A, + 0x00, 0x01, 0x6F, 0x72, 0x00, 0x01, 0x6F, 0x8A, 0x00, 0x01, 0x6F, 0xA2, + 0x00, 0x01, 0x6F, 0xBA, 0x00, 0x01, 0x6F, 0xD2, 0x00, 0x01, 0x6F, 0xEA, + 0x00, 0x01, 0x70, 0x0A, 0x00, 0x01, 0x70, 0x22, 0x00, 0x01, 0x70, 0x3A, + 0x00, 0x01, 0x70, 0x52, 0x00, 0x01, 0x70, 0x72, 0x00, 0x01, 0x70, 0x8A, + 0x00, 0x01, 0x70, 0xA2, 0x00, 0x01, 0x70, 0xBA, 0x00, 0x01, 0x70, 0xD2, + 0x00, 0x01, 0x70, 0xEA, 0x00, 0x01, 0x71, 0x02, 0x00, 0x01, 0x71, 0x1A, + 0x00, 0x01, 0x71, 0x32, 0x00, 0x01, 0x71, 0x4A, 0x00, 0x01, 0x71, 0x62, + 0x00, 0x01, 0x71, 0x7A, 0x00, 0x01, 0x71, 0x92, 0x00, 0x01, 0x71, 0xAA, + 0x00, 0x01, 0x71, 0xC2, 0x00, 0x01, 0x71, 0xDA, 0x00, 0x01, 0x71, 0xF2, + 0x00, 0x01, 0x72, 0x0A, 0x00, 0x01, 0x72, 0x22, 0x00, 0x01, 0x72, 0x3A, + 0x00, 0x01, 0x72, 0x52, 0x00, 0x01, 0x72, 0x6A, 0x00, 0x01, 0x72, 0x82, + 0x00, 0x01, 0x72, 0x9A, 0x00, 0x01, 0x72, 0xB2, 0x00, 0x01, 0x72, 0xCA, + 0x00, 0x01, 0x72, 0xE2, 0x00, 0x01, 0x72, 0xFA, 0x00, 0x01, 0x73, 0x1A, + 0x00, 0x01, 0x73, 0x3A, 0x00, 0x01, 0x73, 0x50, 0x00, 0x01, 0x73, 0x66, + 0x00, 0x01, 0x73, 0x7E, 0x00, 0x01, 0x73, 0x96, 0x00, 0x01, 0x73, 0xAE, + 0x00, 0x01, 0x73, 0xC6, 0x00, 0x01, 0x73, 0xDE, 0x00, 0x01, 0x73, 0xF6, + 0x00, 0x01, 0x74, 0x0E, 0x00, 0x01, 0x74, 0x2E, 0x00, 0x01, 0x74, 0x44, + 0x00, 0x01, 0x74, 0x5C, 0x00, 0x01, 0x74, 0x74, 0x00, 0x01, 0x74, 0x8C, + 0x00, 0x01, 0x74, 0xA4, 0x00, 0x01, 0x74, 0xBC, 0x00, 0x01, 0x74, 0xD4, + 0x00, 0x01, 0x74, 0xEC, 0x00, 0x01, 0x75, 0x02, 0x00, 0x01, 0x75, 0x1A, + 0x00, 0x01, 0x75, 0x32, 0x00, 0x01, 0x75, 0x50, 0x00, 0x01, 0x75, 0x6C, + 0x00, 0x01, 0x75, 0x82, 0x00, 0x01, 0x75, 0xA0, 0x00, 0x01, 0x75, 0xB8, + 0x00, 0x01, 0x75, 0xD0, 0x00, 0x01, 0x75, 0xE8, 0x00, 0x01, 0x76, 0x08, + 0x00, 0x01, 0x76, 0x20, 0x00, 0x01, 0x76, 0x38, 0x00, 0x01, 0x76, 0x50, + 0x00, 0x01, 0x76, 0x68, 0x00, 0x01, 0x76, 0x88, 0x00, 0x01, 0x76, 0x9E, + 0x00, 0x01, 0x76, 0xB4, 0x00, 0x01, 0x76, 0xCC, 0x00, 0x01, 0x76, 0xE4, + 0x00, 0x01, 0x76, 0xFC, 0x00, 0x01, 0x77, 0x12, 0x00, 0x01, 0x77, 0x2A, + 0x00, 0x01, 0x77, 0x42, 0x00, 0x01, 0x77, 0x5A, 0x00, 0x01, 0x77, 0x78, + 0x00, 0x01, 0x77, 0x90, 0x00, 0x01, 0x77, 0xA8, 0x00, 0x01, 0x77, 0xC0, + 0x00, 0x01, 0x77, 0xD8, 0x00, 0x01, 0x77, 0xF8, 0x00, 0x01, 0x78, 0x10, + 0x00, 0x01, 0x78, 0x28, 0x00, 0x01, 0x78, 0x40, 0x00, 0x01, 0x78, 0x56, + 0x00, 0x01, 0x78, 0x6C, 0x00, 0x01, 0x78, 0x84, 0x00, 0x01, 0x78, 0x9A, + 0x00, 0x01, 0x78, 0xB0, 0x00, 0x01, 0x78, 0xC6, 0x00, 0x01, 0x78, 0xDE, + 0x00, 0x01, 0x78, 0xF6, 0x00, 0x01, 0x79, 0x0E, 0x00, 0x01, 0x79, 0x26, + 0x00, 0x01, 0x79, 0x3E, 0x00, 0x01, 0x79, 0x56, 0x00, 0x01, 0x79, 0x6E, + 0x00, 0x01, 0x79, 0x84, 0x00, 0x01, 0x79, 0x9C, 0x00, 0x01, 0x79, 0xB2, + 0x00, 0x01, 0x79, 0xCA, 0x00, 0x01, 0x79, 0xE2, 0x00, 0x01, 0x79, 0xFA, + 0x00, 0x01, 0x7A, 0x12, 0x00, 0x01, 0x7A, 0x32, 0x00, 0x01, 0x7A, 0x52, + 0x00, 0x01, 0x7A, 0x68, 0x00, 0x01, 0x7A, 0x7E, 0x00, 0x01, 0x7A, 0x96, + 0x00, 0x01, 0x7A, 0xAE, 0x00, 0x01, 0x7A, 0xC6, 0x00, 0x01, 0x7A, 0xDE, + 0x00, 0x01, 0x7A, 0xF6, 0x00, 0x01, 0x7B, 0x0E, 0x00, 0x01, 0x7B, 0x2E, + 0x00, 0x01, 0x7B, 0x46, 0x00, 0x01, 0x7B, 0x5E, 0x00, 0x01, 0x7B, 0x76, + 0x00, 0x01, 0x7B, 0x8C, 0x00, 0x01, 0x7B, 0xA2, 0x00, 0x01, 0x7B, 0xBA, + 0x00, 0x01, 0x7B, 0xD0, 0x00, 0x01, 0x7B, 0xE6, 0x00, 0x01, 0x7B, 0xFC, + 0x00, 0x01, 0x7C, 0x14, 0x00, 0x01, 0x7C, 0x2C, 0x00, 0x01, 0x7C, 0x44, + 0x00, 0x01, 0x7C, 0x5C, 0x00, 0x01, 0x7C, 0x74, 0x00, 0x01, 0x7C, 0x8C, + 0x00, 0x01, 0x7C, 0xA4, 0x00, 0x01, 0x7C, 0xBC, 0x00, 0x01, 0x7C, 0xD4, + 0x00, 0x01, 0x7C, 0xEC, 0x00, 0x01, 0x7D, 0x04, 0x00, 0x01, 0x7D, 0x1C, + 0x00, 0x01, 0x7D, 0x34, 0x00, 0x01, 0x7D, 0x54, 0x00, 0x01, 0x7D, 0x6C, + 0x00, 0x01, 0x7D, 0x82, 0x00, 0x01, 0x7D, 0x9A, 0x00, 0x01, 0x7D, 0xB0, + 0x00, 0x01, 0x7D, 0xC6, 0x00, 0x01, 0x7D, 0xE2, 0x00, 0x01, 0x7D, 0xF8, + 0x00, 0x01, 0x7E, 0x0E, 0x00, 0x01, 0x7E, 0x2E, 0x00, 0x01, 0x7E, 0x46, + 0x00, 0x01, 0x7E, 0x5E, 0x00, 0x01, 0x7E, 0x74, 0x00, 0x01, 0x7E, 0x8A, + 0x00, 0x01, 0x7E, 0xA2, 0x00, 0x01, 0x7E, 0xBA, 0x00, 0x01, 0x7E, 0xD0, + 0x00, 0x01, 0x7E, 0xE6, 0x00, 0x01, 0x7E, 0xFE, 0x00, 0x01, 0x7F, 0x10, + 0x00, 0x01, 0x7F, 0x29, 0x00, 0x01, 0x7F, 0x5D, 0x00, 0x01, 0x7F, 0x75, + 0x00, 0x01, 0x7F, 0x8D, 0x00, 0x01, 0x7F, 0xAD, 0x00, 0x01, 0x7F, 0xDA, + 0x00, 0x01, 0x80, 0x50, 0x00, 0x01, 0x80, 0x62, 0x00, 0x01, 0x80, 0xA5, + 0x00, 0x01, 0x80, 0xBD, 0x00, 0x01, 0x80, 0xD7, 0x00, 0x01, 0x80, 0xE7, + 0x00, 0x01, 0x80, 0xF7, 0x00, 0x01, 0x81, 0x0F, 0x00, 0x01, 0x81, 0x27, + 0x00, 0x01, 0x81, 0x41, 0x00, 0x01, 0x81, 0x5B, 0x00, 0x01, 0x81, 0x8F, + 0x00, 0x01, 0x81, 0xC2, 0x00, 0x01, 0x81, 0xD2, 0x00, 0x01, 0x82, 0x34, + 0x00, 0x01, 0x82, 0x57, 0x00, 0x01, 0x82, 0x70, 0x00, 0x01, 0x82, 0x80, + 0x00, 0x01, 0x82, 0xAA, 0x00, 0x01, 0x82, 0xCC, 0x00, 0x01, 0x82, 0xEE, + 0x00, 0x01, 0x82, 0xFE, 0x00, 0x01, 0x83, 0x0E, 0x00, 0x01, 0x83, 0x3B, + 0x00, 0x01, 0x83, 0x53, 0x00, 0x01, 0x83, 0x6B, 0x00, 0x01, 0x83, 0x7D, + 0x00, 0x01, 0x83, 0x8D, 0x00, 0x01, 0x83, 0x9D, 0x00, 0x01, 0x83, 0xAF, + 0x00, 0x01, 0x83, 0xDA, 0x00, 0x01, 0x84, 0x0E, 0x00, 0x01, 0x84, 0x20, + 0x00, 0x01, 0x84, 0x54, 0x00, 0x01, 0x84, 0x66, 0x00, 0x01, 0x84, 0xA5, + 0x00, 0x01, 0x84, 0xB7, 0x00, 0x01, 0x84, 0xEB, 0x00, 0x01, 0x84, 0xFD, + 0x00, 0x01, 0x85, 0x2D, 0x00, 0x01, 0x85, 0x3F, 0x00, 0x01, 0x85, 0x51, + 0x00, 0x01, 0x85, 0x80, 0x00, 0x01, 0x85, 0xE4, 0x00, 0x01, 0x85, 0xF4, + 0x00, 0x01, 0x86, 0x0C, 0x00, 0x01, 0x86, 0x24, 0x00, 0x01, 0x86, 0x3C, + 0x00, 0x01, 0x86, 0x54, 0x00, 0x01, 0x86, 0x6C, 0x00, 0x01, 0x86, 0x84, + 0x00, 0x01, 0x86, 0x9C, 0x00, 0x01, 0x86, 0xB4, 0x00, 0x01, 0x86, 0xCA, + 0x00, 0x01, 0x86, 0xE0, 0x00, 0x01, 0x86, 0xF8, 0x00, 0x01, 0x87, 0x0E, + 0x00, 0x01, 0x87, 0x26, 0x00, 0x01, 0x87, 0x3E, 0x00, 0x01, 0x87, 0x54, + 0x00, 0x01, 0x87, 0x85, 0x00, 0x01, 0x87, 0x95, 0x00, 0x01, 0x87, 0xAD, + 0x00, 0x01, 0x87, 0xC5, 0x00, 0x01, 0x87, 0xDF, 0x00, 0x01, 0x88, 0x14, + 0x00, 0x01, 0x88, 0x26, 0x00, 0x01, 0x88, 0x5B, 0x00, 0x01, 0x88, 0x73, + 0x00, 0x01, 0x88, 0xC5, 0x00, 0x01, 0x88, 0xDD, 0x00, 0x01, 0x88, 0xF3, + 0x00, 0x01, 0x89, 0x47, 0x00, 0x01, 0x89, 0x5D, 0x00, 0x01, 0x89, 0xF1, + 0x00, 0x01, 0x8A, 0x01, 0x00, 0x01, 0x8A, 0x7C, 0x00, 0x01, 0x8A, 0xEB, + 0x00, 0x01, 0x8B, 0x03, 0x00, 0x01, 0x8B, 0x75, 0x00, 0x01, 0x8C, 0x06, + 0x00, 0x01, 0x8C, 0x1E, 0x00, 0x01, 0x8C, 0x36, 0x00, 0x01, 0x8C, 0x4E, + 0x00, 0x01, 0x8C, 0x66, 0x00, 0x01, 0x8D, 0x0C, 0x00, 0x01, 0x8D, 0x24, + 0x00, 0x01, 0x8D, 0x80, 0x00, 0x01, 0x8D, 0xE1, 0x00, 0x01, 0x8E, 0x57, + 0x00, 0x01, 0x8E, 0xE7, 0x00, 0x01, 0x8F, 0x5B, 0x00, 0x01, 0x8F, 0xAA, + 0x00, 0x01, 0x90, 0x63, 0x00, 0x01, 0x90, 0xC9, 0x00, 0x01, 0x90, 0xFF, + 0x00, 0x01, 0x91, 0x17, 0x00, 0x01, 0x91, 0x8C, 0x00, 0x01, 0x92, 0x15, + 0x00, 0x01, 0x92, 0x9A, 0x00, 0x01, 0x92, 0xAA, 0x00, 0x01, 0x93, 0x1D, + 0x00, 0x01, 0x93, 0xCE, 0x00, 0x01, 0x94, 0x35, 0x00, 0x01, 0x94, 0xD2, + 0x00, 0x01, 0x95, 0x3E, 0x00, 0x01, 0x95, 0x4E, 0x00, 0x01, 0x95, 0xD1, + 0x00, 0x01, 0x96, 0x56, 0x00, 0x01, 0x96, 0x66, 0x00, 0x01, 0x97, 0x14, + 0x00, 0x01, 0x97, 0x26, 0x00, 0x01, 0x97, 0x40, 0x00, 0x01, 0x97, 0xE0, + 0x00, 0x01, 0x98, 0x4E, 0x00, 0x01, 0x98, 0xE7, 0x00, 0x01, 0x99, 0x72, + 0x00, 0x01, 0x99, 0xCB, 0x00, 0x01, 0x99, 0xDB, 0x00, 0x01, 0x9A, 0x42, + 0x00, 0x01, 0x9A, 0xB5, 0x00, 0x01, 0x9B, 0x23, 0x00, 0x01, 0x9B, 0x3B, + 0x00, 0x01, 0x9B, 0xA4, 0x00, 0x01, 0x9C, 0x0D, 0x00, 0x01, 0x9C, 0x84, + 0x00, 0x01, 0x9C, 0x9C, 0x00, 0x01, 0x9C, 0xE1, 0x00, 0x01, 0x9D, 0x75, + 0x00, 0x01, 0x9D, 0xEA, 0x00, 0x01, 0x9E, 0x79, 0x00, 0x01, 0x9F, 0x19, + 0x00, 0x01, 0x9F, 0x80, 0x00, 0x01, 0xA0, 0x03, 0x00, 0x01, 0xA0, 0x4F, + 0x00, 0x01, 0xA0, 0xF8, 0x00, 0x01, 0xA1, 0x69, 0x00, 0x01, 0xA1, 0xE4, + 0x00, 0x01, 0xA2, 0x3A, 0x00, 0x01, 0xA2, 0xD2, 0x00, 0x01, 0xA3, 0x8B, + 0x00, 0x01, 0xA4, 0x69, 0x00, 0x01, 0xA5, 0x4A, 0x00, 0x01, 0xA5, 0xA0, + 0x00, 0x01, 0xA5, 0xB0, 0x00, 0x01, 0xA5, 0xF9, 0x00, 0x01, 0xA6, 0xA8, + 0x00, 0x01, 0xA6, 0xEC, 0x00, 0x01, 0xA6, 0xFC, 0x00, 0x01, 0xA7, 0x32, + 0x00, 0x01, 0xA7, 0xA6, 0x00, 0x01, 0xA8, 0x29, 0x00, 0x01, 0xA8, 0x90, + 0x00, 0x01, 0xA9, 0x30, 0x00, 0x01, 0xA9, 0xA3, 0x00, 0x01, 0xAA, 0x12, + 0x00, 0x01, 0xAA, 0x5C, 0x00, 0x01, 0xAA, 0x91, 0x00, 0x01, 0xAB, 0x16, + 0x00, 0x01, 0xAB, 0x3A, 0x00, 0x01, 0xAB, 0xA3, 0x00, 0x01, 0xAB, 0xB3, + 0x00, 0x01, 0xAB, 0xCE, 0x00, 0x01, 0xAB, 0xE6, 0x00, 0x01, 0xAC, 0x06, + 0x00, 0x01, 0xAC, 0x63, 0x00, 0x01, 0xAC, 0xB8, 0x00, 0x01, 0xAD, 0x20, + 0x00, 0x01, 0xAD, 0x91, 0x00, 0x01, 0xAD, 0xD5, 0x00, 0x01, 0xAD, 0xF6, + 0x00, 0x01, 0xAE, 0x0E, 0x00, 0x01, 0xAE, 0x26, 0x00, 0x01, 0xAE, 0x3C, + 0x00, 0x01, 0xAE, 0x54, 0x00, 0x01, 0xAE, 0x64, 0x00, 0x01, 0xAE, 0x74, + 0x00, 0x01, 0xAE, 0x84, 0x00, 0x01, 0xAE, 0x94, 0x00, 0x01, 0xAE, 0xAC, + 0x00, 0x01, 0xAE, 0xBC, 0x00, 0x01, 0xAF, 0x27, 0x00, 0x01, 0xAF, 0x3F, + 0x00, 0x01, 0xAF, 0xD2, 0x00, 0x01, 0xB0, 0x31, 0x00, 0x01, 0xB0, 0xA1, + 0x00, 0x01, 0xB1, 0x2D, 0x00, 0x01, 0xB1, 0xD6, 0x00, 0x01, 0xB2, 0x8D, + 0x00, 0x01, 0xB2, 0x9D, 0x00, 0x01, 0xB2, 0xB5, 0x00, 0x01, 0xB2, 0xCD, + 0x00, 0x01, 0xB2, 0xE5, 0x00, 0x01, 0xB2, 0xFD, 0x00, 0x01, 0xB3, 0x15, + 0x00, 0x01, 0xB3, 0x25, 0x00, 0x01, 0xB3, 0x3D, 0x00, 0x01, 0xB3, 0x55, + 0x00, 0x01, 0xB3, 0x65, 0x00, 0x01, 0xB3, 0x7D, 0x00, 0x01, 0xB3, 0x95, + 0x00, 0x01, 0xB3, 0xAD, 0x00, 0x01, 0xB3, 0xC5, 0x00, 0x01, 0xB3, 0xDD, + 0x00, 0x01, 0xB3, 0xF5, 0x00, 0x01, 0xB4, 0x0D, 0x00, 0x01, 0xB4, 0x25, + 0x00, 0x01, 0xB4, 0x45, 0x00, 0x01, 0xB4, 0xC6, 0x00, 0x01, 0xB5, 0x45, + 0x00, 0x01, 0xB5, 0x5D, 0x00, 0x01, 0xB5, 0x75, 0x00, 0x01, 0xB5, 0x8D, + 0x00, 0x01, 0xB5, 0xA5, 0x00, 0x01, 0xB5, 0xBD, 0x00, 0x01, 0xB5, 0xD5, + 0x00, 0x01, 0xB5, 0xED, 0x00, 0x01, 0xB6, 0x5C, 0x00, 0x01, 0xB6, 0xDC, + 0x00, 0x01, 0xB7, 0x3F, 0x00, 0x01, 0xB7, 0xBD, 0x00, 0x01, 0xB8, 0x44, + 0x00, 0x01, 0xB8, 0xEF, 0x00, 0x01, 0xB9, 0xA1, 0x00, 0x01, 0xB9, 0xB1, + 0x00, 0x01, 0xB9, 0xC7, 0x00, 0x01, 0xB9, 0xDF, 0x00, 0x01, 0xB9, 0xF7, + 0x00, 0x01, 0xBA, 0x0F, 0x00, 0x01, 0xBA, 0x1F, 0x00, 0x01, 0xBA, 0x37, + 0x00, 0x01, 0xBA, 0x4F, 0x00, 0x01, 0xBA, 0x67, 0x00, 0x01, 0xBA, 0x7F, + 0x00, 0x01, 0xBA, 0x8F, 0x00, 0x01, 0xBA, 0xA5, 0x00, 0x01, 0xBA, 0xBD, + 0x00, 0x01, 0xBA, 0xD3, 0x00, 0x01, 0xBA, 0xEB, 0x00, 0x01, 0xBB, 0x01, + 0x00, 0x01, 0xBB, 0x17, 0x00, 0x01, 0xBB, 0x33, 0x00, 0x01, 0xBB, 0x49, + 0x00, 0x01, 0xBB, 0x5F, 0x00, 0x01, 0xBB, 0x7F, 0x00, 0x01, 0xBB, 0xF6, + 0x00, 0x01, 0xBC, 0x54, 0x00, 0x01, 0xBC, 0x7D, 0x00, 0x01, 0xBC, 0xE3, + 0x00, 0x01, 0xBD, 0x57, 0x00, 0x01, 0xBD, 0x6F, 0x00, 0x01, 0xBD, 0x87, + 0x00, 0x01, 0xBD, 0x97, 0x00, 0x01, 0xBD, 0xA7, 0x00, 0x01, 0xBD, 0xF7, + 0x00, 0x01, 0xBE, 0x67, 0x00, 0x01, 0xBE, 0xF8, 0x00, 0x01, 0xBF, 0x89, + 0x00, 0x01, 0xBF, 0xB4, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x01, 0xC0, 0xAF, + 0x00, 0x01, 0xC1, 0x44, 0x00, 0x01, 0xC1, 0xE6, 0x00, 0x01, 0xC2, 0x69, + 0x00, 0x01, 0xC3, 0x24, 0x00, 0x01, 0xC3, 0x7D, 0x00, 0x01, 0xC3, 0x95, + 0x00, 0x01, 0xC3, 0xAD, 0x00, 0x01, 0xC3, 0xC5, 0x00, 0x01, 0xC3, 0xDB, + 0x00, 0x01, 0xC3, 0xF3, 0x00, 0x01, 0xC4, 0x0B, 0x00, 0x01, 0xC4, 0x23, + 0x00, 0x01, 0xC4, 0x39, 0x00, 0x01, 0xC4, 0x51, 0x00, 0x01, 0xC4, 0x86, + 0x00, 0x01, 0xC4, 0x96, 0x00, 0x01, 0xC5, 0x07, 0x00, 0x01, 0xC5, 0x17, + 0x00, 0x01, 0xC5, 0x2F, 0x00, 0x01, 0xC5, 0x4F, 0x00, 0x01, 0xC5, 0x67, + 0x00, 0x01, 0xC5, 0x77, 0x00, 0x01, 0xC5, 0x8F, 0x00, 0x01, 0xC5, 0xAF, + 0x00, 0x01, 0xC5, 0xD7, 0x00, 0x01, 0xC5, 0xEF, 0x00, 0x01, 0xC5, 0xFF, + 0x00, 0x01, 0xC6, 0x17, 0x00, 0x01, 0xC6, 0x37, 0x00, 0x01, 0xC6, 0x47, + 0x00, 0x01, 0xC6, 0x57, 0x00, 0x01, 0xC6, 0x67, 0x00, 0x01, 0xC6, 0x77, + 0x00, 0x01, 0xC6, 0x8D, 0x00, 0x01, 0xC6, 0xB3, 0x00, 0x01, 0xC6, 0xE9, + 0x00, 0x01, 0xC7, 0x07, 0x00, 0x01, 0xC7, 0x17, 0x00, 0x01, 0xC7, 0x37, + 0x00, 0x01, 0xC7, 0x67, 0x00, 0x01, 0xC7, 0xA7, 0x00, 0x01, 0xC7, 0xC5, + 0x00, 0x01, 0xC7, 0xD5, 0x00, 0x01, 0xC7, 0xF5, 0x00, 0x01, 0xC8, 0x25, + 0x00, 0x01, 0xC8, 0x35, 0x00, 0x01, 0xC8, 0x45, 0x00, 0x01, 0xC8, 0x55, + 0x00, 0x01, 0xC8, 0x65, 0x00, 0x01, 0xC8, 0xCF, 0x00, 0x01, 0xC9, 0x4B, + 0x00, 0x01, 0xC9, 0x95, 0x00, 0x01, 0xC9, 0x95, 0x00, 0x01, 0xC9, 0xDB, + 0x00, 0x01, 0xCA, 0x05, 0x00, 0x01, 0xCA, 0xDA, 0x00, 0x01, 0xCB, 0x0E, + 0x00, 0x01, 0xCB, 0x41, 0x00, 0x01, 0xCB, 0x84, 0x00, 0x01, 0xCB, 0x96, + 0x00, 0x01, 0xCB, 0xA6, 0x00, 0x01, 0xCB, 0xB8, 0x00, 0x01, 0xCC, 0x6E, + 0x00, 0x01, 0xCC, 0xA9, 0x00, 0x01, 0xCC, 0xEA, 0x00, 0x01, 0xCC, 0xFC, + 0x00, 0x01, 0xCD, 0x72, 0x00, 0x01, 0xCD, 0x8A, 0x00, 0x01, 0xCD, 0xD8, + 0x00, 0x01, 0xCE, 0x1B, 0x00, 0x01, 0xCE, 0x6A, 0x00, 0x01, 0xCE, 0x82, + 0x00, 0x01, 0xCE, 0x92, 0x00, 0x01, 0xCE, 0xA2, 0x00, 0x01, 0xCE, 0xCA, + 0x00, 0x01, 0xCF, 0x5D, 0x00, 0x01, 0xCF, 0xB4, 0x00, 0x01, 0xCF, 0xC4, + 0x00, 0x01, 0xCF, 0xE0, 0x00, 0x01, 0xD0, 0x39, 0x00, 0x01, 0xD0, 0x6E, + 0x00, 0x01, 0xD0, 0xA3, 0x00, 0x01, 0xD0, 0xD8, 0x00, 0x01, 0xD1, 0x0E, + 0x00, 0x01, 0xD1, 0x35, 0x00, 0x01, 0xD1, 0x66, 0x00, 0x01, 0xD1, 0x80, + 0x00, 0x01, 0xD1, 0xA8, 0x00, 0x01, 0xD1, 0xC2, 0x00, 0x01, 0xD1, 0xD2, + 0x00, 0x01, 0xD1, 0xE4, 0x00, 0x01, 0xD2, 0x0E, 0x00, 0x01, 0xD2, 0x35, + 0x00, 0x01, 0xD2, 0x65, 0x00, 0x01, 0xD2, 0x96, 0x00, 0x01, 0xD2, 0xC8, + 0x00, 0x01, 0xD3, 0x20, 0x00, 0x01, 0xD3, 0x32, 0x00, 0x01, 0xD3, 0x42, + 0x00, 0x01, 0xD3, 0x52, 0x00, 0x01, 0xD3, 0xA2, 0x00, 0x01, 0xD3, 0xC8, + 0x00, 0x01, 0xD3, 0xF0, 0x00, 0x01, 0xD4, 0x15, 0x00, 0x01, 0xD4, 0x3C, + 0x00, 0x01, 0xD4, 0x70, 0x00, 0x01, 0xD4, 0x97, 0x00, 0x01, 0xD4, 0xD0, + 0x00, 0x01, 0xD4, 0xF5, 0x00, 0x01, 0xD5, 0x1C, 0x00, 0x01, 0xD5, 0x45, + 0x00, 0x01, 0xD5, 0x6E, 0x00, 0x01, 0xD5, 0x97, 0x00, 0x01, 0xD5, 0xC0, + 0x00, 0x01, 0xD5, 0xF0, 0x00, 0x01, 0xD6, 0x31, 0x00, 0x01, 0xD6, 0x8B, + 0x00, 0x01, 0xD6, 0xEF, 0x00, 0x01, 0xD7, 0x14, 0x00, 0x01, 0xD7, 0x9F, + 0x00, 0x01, 0xD8, 0x17, 0x00, 0x01, 0xD8, 0x97, 0x00, 0x01, 0xD8, 0xFC, + 0x00, 0x01, 0xD9, 0x39, 0x00, 0x01, 0xD9, 0x93, 0x00, 0x01, 0xD9, 0xDC, + 0x00, 0x01, 0xDA, 0x3A, 0x00, 0x01, 0xDA, 0xA6, 0x00, 0x01, 0xDA, 0xEC, + 0x00, 0x01, 0xDB, 0x5E, 0x00, 0x01, 0xDB, 0x9C, 0x00, 0x01, 0xDB, 0xDD, + 0x00, 0x01, 0xDC, 0x0E, 0x00, 0x01, 0xDC, 0x43, 0x00, 0x01, 0xDC, 0x85, + 0x00, 0x01, 0xDC, 0xE2, 0x00, 0x01, 0xDD, 0xA9, 0x00, 0x01, 0xDE, 0x66, + 0x00, 0x01, 0xDE, 0xF6, 0x00, 0x01, 0xDF, 0x6B, 0x00, 0x01, 0xDF, 0xF1, + 0x00, 0x01, 0xE0, 0x86, 0x00, 0x01, 0xE0, 0xEB, 0x00, 0x01, 0xE1, 0x2C, + 0x00, 0x01, 0xE1, 0x46, 0x00, 0x01, 0xE1, 0x6E, 0x00, 0x01, 0xE1, 0xAE, + 0x00, 0x01, 0xE1, 0xF7, 0x00, 0x01, 0xE2, 0x2D, 0x00, 0x01, 0xE2, 0xB7, + 0x00, 0x01, 0xE3, 0x11, 0x00, 0x01, 0xE3, 0x83, 0x00, 0x01, 0xE3, 0xBD, + 0x00, 0x01, 0xE3, 0xF9, 0x00, 0x01, 0xE4, 0x85, 0x00, 0x01, 0xE5, 0x0D, + 0x00, 0x01, 0xE6, 0x47, 0x00, 0x01, 0xE6, 0xEF, 0x00, 0x01, 0xE7, 0x13, + 0x00, 0x01, 0xE7, 0x57, 0x00, 0x01, 0xE7, 0x77, 0x00, 0x01, 0xE7, 0x98, + 0x00, 0x01, 0xE7, 0xDB, 0x00, 0x01, 0xE8, 0x60, 0x00, 0x01, 0xE8, 0x72, + 0x00, 0x01, 0xE8, 0x84, 0x00, 0x01, 0xE8, 0xBC, 0x00, 0x01, 0xE8, 0xF4, + 0x00, 0x01, 0xE9, 0x2D, 0x00, 0x01, 0xE9, 0x73, 0x00, 0x01, 0xE9, 0xBA, + 0x00, 0x01, 0xEA, 0x01, 0x00, 0x01, 0xEA, 0x49, 0x00, 0x01, 0xEA, 0xC1, + 0x00, 0x01, 0xEB, 0x3A, 0x00, 0x01, 0xEB, 0x94, 0x00, 0x01, 0xEB, 0xA4, + 0x00, 0x01, 0xEC, 0x31, 0x00, 0x01, 0xEC, 0x4C, 0x00, 0x01, 0xEC, 0x5C, + 0x00, 0x01, 0xEC, 0x6C, 0x00, 0x01, 0xEC, 0xB8, 0x00, 0x01, 0xEC, 0xE5, + 0x00, 0x01, 0xED, 0x0D, 0x00, 0x01, 0xED, 0x36, 0x00, 0x01, 0xED, 0x6D, + 0x00, 0x01, 0xED, 0xC5, 0x00, 0x01, 0xED, 0xF9, 0x00, 0x01, 0xEE, 0x26, + 0x00, 0x01, 0xEE, 0x53, 0x00, 0x01, 0xEE, 0x81, 0x00, 0x01, 0xEE, 0xC0, + 0x00, 0x01, 0xEF, 0x05, 0x00, 0x01, 0xEF, 0x17, 0x00, 0x01, 0xEF, 0x35, + 0x00, 0x01, 0xEF, 0x53, 0x00, 0x01, 0xEF, 0x87, 0x00, 0x01, 0xEF, 0x99, + 0x00, 0x01, 0xEF, 0xB3, 0x00, 0x01, 0xEF, 0xDB, 0x00, 0x01, 0xF0, 0x3C, + 0x00, 0x01, 0xF0, 0xCF, 0x00, 0x01, 0xF1, 0x5B, 0x00, 0x01, 0xF1, 0xB1, + 0x00, 0x01, 0xF1, 0xE7, 0x00, 0x01, 0xF1, 0xE7, 0x00, 0x01, 0xF1, 0xF9, + 0x00, 0x01, 0xF2, 0x2B, 0x00, 0x01, 0xF2, 0x7F, 0x00, 0x01, 0xF2, 0xB0, + 0x00, 0x01, 0xF2, 0xC2, 0x00, 0x01, 0xF2, 0xD4, 0x00, 0x01, 0xF2, 0xEE, + 0x00, 0x01, 0xF3, 0x24, 0x00, 0x01, 0xF3, 0x34, 0x00, 0x01, 0xF3, 0x70, + 0x00, 0x01, 0xF4, 0x02, 0x00, 0x01, 0xF4, 0x27, 0x00, 0x01, 0xF4, 0x39, + 0x00, 0x01, 0xF4, 0x7F, 0x00, 0x01, 0xF4, 0x97, 0x00, 0x01, 0xF4, 0xA9, + 0x00, 0x01, 0xF5, 0x05, 0x00, 0x01, 0xF5, 0x4B, 0x00, 0x01, 0xF5, 0x85, + 0x00, 0x01, 0xF5, 0xAF, 0x00, 0x01, 0xF5, 0xD8, 0x00, 0x01, 0xF5, 0xFA, + 0x00, 0x01, 0xF6, 0x1C, 0x00, 0x01, 0xF6, 0x7A, 0x00, 0x01, 0xF6, 0xD9, + 0x00, 0x01, 0xF7, 0x65, 0x00, 0x01, 0xF7, 0x91, 0x00, 0x01, 0xF7, 0xB3, + 0x00, 0x01, 0xF7, 0xD4, 0x00, 0x01, 0xF7, 0xF6, 0x00, 0x01, 0xF8, 0x24, + 0x00, 0x01, 0xF8, 0x53, 0x00, 0x01, 0xF8, 0x8B, 0x00, 0x01, 0xF8, 0xC3, + 0x00, 0x01, 0xF8, 0xEF, 0x00, 0x01, 0xF9, 0x34, 0x00, 0x01, 0xF9, 0x6C, + 0x00, 0x01, 0xF9, 0xBF, 0x00, 0x01, 0xFA, 0x34, 0x00, 0x01, 0xFA, 0xA2, + 0x00, 0x01, 0xFB, 0x2C, 0x00, 0x01, 0xFB, 0x99, 0x00, 0x01, 0xFB, 0xFF, + 0x00, 0x01, 0xFC, 0x46, 0x00, 0x01, 0xFC, 0xD2, 0x00, 0x01, 0xFD, 0x39, + 0x00, 0x01, 0xFD, 0xA5, 0x00, 0x01, 0xFE, 0x0A, 0x00, 0x01, 0xFE, 0x68, + 0x00, 0x01, 0xFE, 0xC6, 0x00, 0x01, 0xFF, 0x86, 0x00, 0x02, 0x00, 0x1D, + 0x00, 0x02, 0x00, 0xA7, 0x00, 0x02, 0x00, 0xB9, 0x00, 0x02, 0x00, 0xFF, + 0x00, 0x02, 0x01, 0x8C, 0x00, 0x02, 0x01, 0x9E, 0x00, 0x02, 0x01, 0xF7, + 0x00, 0x02, 0x02, 0x3C, 0x00, 0x02, 0x02, 0x4C, 0x00, 0x02, 0x02, 0x5C, + 0x00, 0x02, 0x02, 0x6C, 0x00, 0x02, 0x02, 0x94, 0x00, 0x02, 0x02, 0xBD, + 0x00, 0x02, 0x03, 0x19, 0x00, 0x02, 0x03, 0x2B, 0x00, 0x02, 0x03, 0x65, + 0x00, 0x02, 0x03, 0xBF, 0x00, 0x02, 0x04, 0x1B, 0x00, 0x02, 0x04, 0x74, + 0x00, 0x02, 0x04, 0xD2, 0x00, 0x02, 0x05, 0x3A, 0x00, 0x02, 0x05, 0x4C, + 0x00, 0x02, 0x05, 0x5E, 0x00, 0x02, 0x05, 0x70, 0x00, 0x02, 0x05, 0x80, + 0x00, 0x02, 0x05, 0x92, 0x00, 0x02, 0x05, 0xA2, 0x00, 0x02, 0x05, 0xFA, + 0x00, 0x02, 0x06, 0x16, 0x00, 0x02, 0x06, 0x3F, 0x00, 0x02, 0x06, 0x4F, + 0x00, 0x02, 0x06, 0x61, 0x00, 0x02, 0x06, 0xC1, 0x00, 0x02, 0x06, 0xF8, + 0x00, 0x02, 0x07, 0x0A, 0x00, 0x02, 0x07, 0x1C, 0x00, 0x02, 0x07, 0x2E, + 0x00, 0x02, 0x07, 0x62, 0x00, 0x02, 0x07, 0xB8, 0x00, 0x02, 0x07, 0xCA, + 0x00, 0x02, 0x07, 0xDC, 0x00, 0x02, 0x08, 0x09, 0x00, 0x02, 0x08, 0x19, + 0x00, 0x02, 0x08, 0x2B, 0x00, 0x02, 0x08, 0x3B, 0x00, 0x02, 0x08, 0x4D, + 0x00, 0x02, 0x08, 0x81, 0x00, 0x02, 0x08, 0xBC, 0x00, 0x02, 0x08, 0xF8, + 0x00, 0x02, 0x09, 0x2E, 0x00, 0x02, 0x09, 0x40, 0x00, 0x02, 0x09, 0x5A, + 0x00, 0x02, 0x09, 0x6C, 0x00, 0x02, 0x09, 0x7E, 0x00, 0x02, 0x09, 0x90, + 0x00, 0x02, 0x09, 0xB7, 0x00, 0x02, 0x09, 0xC9, 0x00, 0x02, 0x09, 0xDB, + 0x00, 0x02, 0x09, 0xED, 0x00, 0x02, 0x0A, 0x42, 0x00, 0x02, 0x0A, 0x54, + 0x00, 0x02, 0x0A, 0x66, 0x00, 0x02, 0x0A, 0x78, 0x00, 0x02, 0x0A, 0x9E, + 0x00, 0x02, 0x0A, 0xCF, 0x00, 0x02, 0x0B, 0x0D, 0x00, 0x02, 0x0B, 0x56, + 0x00, 0x02, 0x0B, 0x68, 0x00, 0x02, 0x0B, 0xCE, 0x00, 0x02, 0x0C, 0x34, + 0x00, 0x02, 0x0C, 0xC0, 0x00, 0x02, 0x0C, 0xD0, 0x00, 0x02, 0x0D, 0x2A, + 0x00, 0x02, 0x0D, 0x68, 0x00, 0x02, 0x0D, 0xAF, 0x00, 0x02, 0x0D, 0xF4, + 0x00, 0x02, 0x0E, 0x6B, 0x00, 0x02, 0x0E, 0xA2, 0x00, 0x02, 0x0E, 0xD9, + 0x00, 0x02, 0x0F, 0x25, 0x00, 0x02, 0x0F, 0x8C, 0x00, 0x02, 0x0F, 0xA7, + 0x00, 0x02, 0x0F, 0xB9, 0x00, 0x02, 0x0F, 0xD3, 0x00, 0x02, 0x0F, 0xFB, + 0x00, 0x02, 0x10, 0x2C, 0x00, 0x02, 0x10, 0x58, 0x00, 0x02, 0x10, 0xB3, + 0x00, 0x02, 0x11, 0x10, 0x00, 0x02, 0x11, 0x22, 0x00, 0x02, 0x11, 0x3D, + 0x00, 0x02, 0x11, 0x4F, 0x00, 0x02, 0x11, 0x81, 0x00, 0x02, 0x11, 0x91, + 0x00, 0x02, 0x11, 0xAB, 0x00, 0x02, 0x12, 0x47, 0x00, 0x02, 0x12, 0x8B, + 0x00, 0x02, 0x12, 0xA7, 0x00, 0x02, 0x12, 0xC0, 0x00, 0x02, 0x12, 0xD9, + 0x00, 0x02, 0x12, 0xF3, 0x00, 0x02, 0x13, 0x14, 0x00, 0x02, 0x13, 0x34, + 0x00, 0x02, 0x13, 0x51, 0x00, 0x02, 0x13, 0x8E, 0x00, 0x02, 0x13, 0xD8, + 0x00, 0x02, 0x13, 0xF4, 0x00, 0x02, 0x14, 0x17, 0x00, 0x02, 0x14, 0x2F, + 0x00, 0x02, 0x14, 0x4A, 0x00, 0x02, 0x14, 0x82, 0x00, 0x02, 0x14, 0x9A, + 0x00, 0x02, 0x14, 0xE5, 0x00, 0x02, 0x15, 0x1F, 0x00, 0x02, 0x15, 0x45, + 0x00, 0x02, 0x15, 0xA0, 0x00, 0x02, 0x15, 0xFC, 0x00, 0x02, 0x16, 0x0C, + 0x00, 0x02, 0x16, 0x1C, 0x00, 0x02, 0x16, 0x2C, 0x00, 0x02, 0x16, 0x3C, + 0x00, 0x02, 0x16, 0x4C, 0x00, 0x02, 0x16, 0x5C, 0x00, 0x02, 0x16, 0x6C, + 0x00, 0x02, 0x16, 0x7C, 0x00, 0x02, 0x16, 0xA5, 0x00, 0x02, 0x16, 0xC3, + 0x00, 0x02, 0x16, 0xE0, 0x00, 0x02, 0x17, 0x26, 0x00, 0x02, 0x17, 0x7D, + 0x00, 0x02, 0x17, 0xD3, 0x00, 0x02, 0x18, 0x18, 0x00, 0x02, 0x18, 0x68, + 0x00, 0x02, 0x18, 0xBD, 0x00, 0x02, 0x18, 0xF9, 0x00, 0x02, 0x19, 0x4E, + 0x00, 0x02, 0x19, 0x75, 0x00, 0x02, 0x19, 0x8E, 0x00, 0x02, 0x19, 0xA7, + 0x00, 0x02, 0x19, 0xD0, 0x00, 0x02, 0x19, 0xE2, 0x00, 0x02, 0x1A, 0x0A, + 0x00, 0x02, 0x1A, 0x31, 0x00, 0x02, 0x1A, 0x43, 0x00, 0x02, 0x1A, 0x8C, + 0x00, 0x02, 0x1A, 0xA5, 0x00, 0x02, 0x1A, 0xBE, 0x00, 0x02, 0x1A, 0xD8, + 0x00, 0x02, 0x1A, 0xF2, 0x00, 0x02, 0x1B, 0x3F, 0x00, 0x02, 0x1B, 0x6B, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x01, 0x80, 0x04, 0x80, 0x00, 0x02, + 0x44, 0x46, 0x4C, 0x54, 0x01, 0x20, 0x6C, 0x61, 0x74, 0x6E, 0x00, 0x0E, + 0x01, 0x16, 0x00, 0x03, 0x43, 0x41, 0x54, 0x20, 0x00, 0xBE, 0x4D, 0x4F, + 0x4C, 0x20, 0x00, 0x6A, 0x52, 0x4F, 0x4D, 0x20, 0x00, 0x16, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, + 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, + 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x17, + 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, + 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, + 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, + 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, + 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, + 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, + 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, + 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, + 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, + 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, + 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, + 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, + 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, + 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, + 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, + 0x00, 0x14, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, + 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, + 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, + 0x00, 0x29, 0x61, 0x61, 0x6C, 0x74, 0x02, 0xF8, 0x63, 0x61, 0x6C, 0x74, + 0x02, 0xEC, 0x63, 0x61, 0x73, 0x65, 0x02, 0xE6, 0x63, 0x63, 0x6D, 0x70, + 0x02, 0xD6, 0x63, 0x76, 0x30, 0x31, 0x02, 0xC2, 0x63, 0x76, 0x30, 0x32, + 0x02, 0xAE, 0x63, 0x76, 0x30, 0x33, 0x02, 0x9A, 0x63, 0x76, 0x30, 0x34, + 0x02, 0x86, 0x63, 0x76, 0x30, 0x35, 0x02, 0x72, 0x63, 0x76, 0x30, 0x36, + 0x02, 0x5E, 0x63, 0x76, 0x30, 0x37, 0x02, 0x4A, 0x63, 0x76, 0x30, 0x38, + 0x02, 0x36, 0x63, 0x76, 0x30, 0x39, 0x02, 0x22, 0x63, 0x76, 0x31, 0x30, + 0x02, 0x0E, 0x63, 0x76, 0x31, 0x31, 0x01, 0xFA, 0x63, 0x76, 0x31, 0x32, + 0x01, 0xE6, 0x63, 0x76, 0x31, 0x33, 0x01, 0xD2, 0x63, 0x76, 0x31, 0x34, + 0x01, 0xBE, 0x64, 0x6C, 0x69, 0x67, 0x01, 0xB6, 0x64, 0x6E, 0x6F, 0x6D, + 0x01, 0xB0, 0x66, 0x72, 0x61, 0x63, 0x01, 0x92, 0x6C, 0x6F, 0x63, 0x6C, + 0x01, 0x8C, 0x6C, 0x6F, 0x63, 0x6C, 0x01, 0x86, 0x6C, 0x6F, 0x63, 0x6C, + 0x01, 0x80, 0x6E, 0x75, 0x6D, 0x72, 0x01, 0x7A, 0x6F, 0x72, 0x64, 0x6E, + 0x01, 0x72, 0x70, 0x6E, 0x75, 0x6D, 0x01, 0x6C, 0x73, 0x61, 0x6C, 0x74, + 0x01, 0x66, 0x73, 0x69, 0x6E, 0x66, 0x01, 0x60, 0x73, 0x73, 0x30, 0x31, + 0x01, 0x56, 0x73, 0x73, 0x30, 0x32, 0x01, 0x4C, 0x73, 0x73, 0x30, 0x33, + 0x01, 0x42, 0x73, 0x73, 0x30, 0x34, 0x01, 0x38, 0x73, 0x73, 0x30, 0x35, + 0x01, 0x2E, 0x73, 0x73, 0x30, 0x36, 0x01, 0x24, 0x73, 0x73, 0x30, 0x37, + 0x01, 0x1A, 0x73, 0x73, 0x30, 0x38, 0x01, 0x10, 0x73, 0x75, 0x62, 0x73, + 0x01, 0x0A, 0x73, 0x75, 0x70, 0x73, 0x01, 0x04, 0x74, 0x6E, 0x75, 0x6D, + 0x00, 0xFE, 0x7A, 0x65, 0x72, 0x6F, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x3E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x3B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3A, 0x00, 0x06, 0x00, 0x01, + 0x00, 0x4A, 0x00, 0x00, 0x01, 0x1B, 0x00, 0x06, 0x00, 0x01, 0x00, 0x49, + 0x00, 0x00, 0x01, 0x1A, 0x00, 0x06, 0x00, 0x01, 0x00, 0x48, 0x00, 0x00, + 0x01, 0x19, 0x00, 0x06, 0x00, 0x01, 0x00, 0x47, 0x00, 0x00, 0x01, 0x18, + 0x00, 0x06, 0x00, 0x01, 0x00, 0x46, 0x00, 0x00, 0x01, 0x17, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x45, 0x00, 0x00, 0x01, 0x16, 0x00, 0x06, 0x00, 0x01, + 0x00, 0x44, 0x00, 0x00, 0x01, 0x15, 0x00, 0x06, 0x00, 0x01, 0x00, 0x43, + 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x42, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x3F, 0x00, 0x41, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x13, + 0x00, 0x15, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1B, 0x00, 0x1D, 0x00, 0x1F, + 0x00, 0x21, 0x00, 0x23, 0x00, 0x25, 0x00, 0x27, 0x00, 0x29, 0x00, 0x2B, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x02, 0x00, 0x35, + 0x00, 0x39, 0x00, 0x06, 0x00, 0x01, 0x00, 0x58, 0x00, 0x00, 0x01, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x57, 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x55, 0x00, 0x00, 0x01, 0x26, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x54, 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x53, + 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x52, 0x00, 0x00, 0x01, 0x23, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x51, 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x50, + 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x4F, 0x00, 0x00, 0x01, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x4E, 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x4D, + 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x4C, 0x00, 0x00, 0x01, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x4B, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0A, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x04, 0x00, 0x2E, 0x00, 0x2F, + 0x00, 0x32, 0x00, 0x33, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x59, 0x55, 0xFA, 0x51, 0xB6, 0x50, 0x4C, 0x50, 0x26, 0x3F, 0xD2, + 0x3F, 0xB0, 0x3F, 0x96, 0x3C, 0x38, 0x3C, 0x1C, 0x3C, 0x02, 0x39, 0x22, + 0x39, 0x0A, 0x39, 0x0A, 0x38, 0xC8, 0x38, 0xA8, 0x38, 0x88, 0x37, 0xCA, + 0x37, 0x6C, 0x37, 0x16, 0x34, 0xDC, 0x34, 0xCE, 0x34, 0xAE, 0x34, 0x7E, + 0x34, 0x3C, 0x34, 0x7E, 0x34, 0x1E, 0x34, 0x7E, 0x33, 0xFE, 0x34, 0x7E, + 0x33, 0xDC, 0x34, 0x7E, 0x33, 0xB8, 0x34, 0x7E, 0x33, 0x92, 0x34, 0x7E, + 0x33, 0x6A, 0x34, 0x7E, 0x33, 0x40, 0x34, 0x7E, 0x33, 0x14, 0x34, 0x7E, + 0x32, 0xD0, 0x37, 0x16, 0x32, 0xAE, 0x32, 0xA0, 0x31, 0xEA, 0x20, 0xA8, + 0x20, 0x32, 0x20, 0x18, 0x1F, 0xF6, 0x1E, 0x5C, 0x15, 0x0A, 0x14, 0x54, + 0x13, 0x36, 0x12, 0xFC, 0x12, 0xEA, 0x12, 0xD6, 0x12, 0x8C, 0x37, 0xCA, + 0x12, 0x28, 0x11, 0x8A, 0x10, 0x98, 0x10, 0x66, 0x10, 0x12, 0x0F, 0xF0, + 0x0F, 0xCE, 0x0C, 0xC8, 0x0C, 0x36, 0x0B, 0x7E, 0x0A, 0xF8, 0x0A, 0x60, + 0x09, 0x32, 0x08, 0x00, 0x04, 0x3A, 0x04, 0x0C, 0x03, 0xDA, 0x03, 0xA8, + 0x03, 0x76, 0x03, 0x44, 0x02, 0xFC, 0x02, 0x86, 0x02, 0x72, 0x01, 0xFE, + 0x01, 0xCC, 0x01, 0x98, 0x01, 0x28, 0x01, 0x06, 0x00, 0xC8, 0x00, 0xB4, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, + 0x07, 0x9A, 0x00, 0x01, 0x00, 0x01, 0x01, 0x9A, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x20, 0x00, 0x0D, 0x03, 0x87, + 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, 0x03, 0x8B, 0x03, 0x8C, 0x03, 0x8D, + 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, 0x08, 0xA1, 0x08, 0xA2, 0x08, 0xA3, + 0x00, 0x02, 0x00, 0x03, 0x03, 0x78, 0x03, 0x79, 0x00, 0x00, 0x03, 0x7F, + 0x03, 0x86, 0x00, 0x02, 0x08, 0x7F, 0x08, 0x81, 0x00, 0x0A, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x04, + 0x02, 0x88, 0x02, 0x8B, 0x02, 0x8C, 0x08, 0x9D, 0x00, 0x01, 0x00, 0x04, + 0x02, 0x87, 0x02, 0x90, 0x02, 0x91, 0x08, 0x5B, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x4C, 0x00, 0x23, 0x02, 0x23, + 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, + 0x02, 0x2A, 0x02, 0x2B, 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x2F, + 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, + 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, + 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, + 0x02, 0x23, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, 0x00, 0x02, 0x00, 0x04, + 0x01, 0xFB, 0x02, 0x17, 0x00, 0x00, 0x02, 0x19, 0x02, 0x1A, 0x00, 0x1D, + 0x02, 0x1C, 0x02, 0x1C, 0x00, 0x1F, 0x08, 0x4E, 0x08, 0x50, 0x00, 0x20, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x1C, + 0x00, 0x0B, 0x00, 0x97, 0x00, 0x98, 0x00, 0x99, 0x00, 0x9A, 0x00, 0x9B, + 0x00, 0x9C, 0x00, 0x9D, 0x00, 0x9E, 0x00, 0x9F, 0x00, 0xA0, 0x08, 0x47, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x8D, 0x00, 0x96, 0x00, 0x00, 0x08, 0x13, + 0x08, 0x13, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, 0x05, 0x49, 0x05, 0x59, 0x06, 0x45, + 0x06, 0x76, 0x06, 0x8E, 0x06, 0xA7, 0x07, 0x93, 0x07, 0xD1, 0x00, 0x01, + 0x00, 0x08, 0x05, 0x3F, 0x05, 0x50, 0x06, 0x44, 0x06, 0x75, 0x06, 0x8D, + 0x06, 0xA6, 0x07, 0x8A, 0x07, 0xC8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x00, 0x4A, 0x00, 0x22, 0x00, 0xEA, 0x00, 0xEB, + 0x00, 0xEC, 0x00, 0xED, 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, + 0x00, 0xF2, 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, + 0x00, 0xF8, 0x00, 0xF9, 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, + 0x00, 0xFE, 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, + 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, + 0x08, 0x48, 0x08, 0xB8, 0x00, 0x02, 0x00, 0x05, 0x00, 0xC5, 0x00, 0xC5, + 0x00, 0x00, 0x00, 0xC7, 0x00, 0xD7, 0x00, 0x01, 0x00, 0xDC, 0x00, 0xE9, + 0x00, 0x12, 0x08, 0x17, 0x08, 0x17, 0x00, 0x20, 0x08, 0xAE, 0x08, 0xAE, + 0x00, 0x21, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x03, 0x76, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x58, 0x00, 0x29, + 0x03, 0xB2, 0x03, 0xBA, 0x03, 0xCF, 0x03, 0xC3, 0x03, 0xB4, 0x03, 0xC1, + 0x03, 0xB3, 0x03, 0xB7, 0x03, 0xCB, 0x03, 0xB5, 0x03, 0xCE, 0x03, 0xC9, + 0x03, 0xCD, 0x03, 0xB6, 0x03, 0xBF, 0x03, 0xBB, 0x03, 0xBD, 0x03, 0xBE, + 0x03, 0xB9, 0x03, 0xCA, 0x03, 0xBC, 0x03, 0xD1, 0x03, 0xB8, 0x03, 0xD0, + 0x03, 0xCC, 0x03, 0xC0, 0x03, 0xC2, 0x03, 0xC4, 0x03, 0xC6, 0x03, 0xC7, + 0x03, 0xC8, 0x03, 0xC5, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, 0x08, 0xA7, + 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, 0x00, 0x02, + 0x00, 0x03, 0x03, 0x91, 0x03, 0x94, 0x00, 0x00, 0x03, 0x96, 0x03, 0xB1, + 0x00, 0x04, 0x08, 0x82, 0x08, 0x8A, 0x00, 0x20, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x24, 0x00, 0x0F, 0x02, 0xEF, + 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, + 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, + 0x08, 0x9F, 0x08, 0xA0, 0x00, 0x02, 0x00, 0x04, 0x02, 0xE0, 0x02, 0xE3, + 0x00, 0x00, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x04, 0x02, 0xE7, 0x02, 0xEE, + 0x00, 0x05, 0x08, 0x69, 0x08, 0x6A, 0x00, 0x0D, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, 0x05, 0x4C, + 0x05, 0x5C, 0x06, 0x4E, 0x06, 0x7F, 0x06, 0x97, 0x06, 0xB0, 0x07, 0x96, + 0x07, 0xD4, 0x00, 0x01, 0x00, 0x08, 0x05, 0x46, 0x05, 0x56, 0x06, 0x4D, + 0x06, 0x7E, 0x06, 0x96, 0x06, 0xAF, 0x07, 0x90, 0x07, 0xCE, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, + 0x05, 0x4B, 0x05, 0x5B, 0x06, 0x4A, 0x06, 0x7B, 0x06, 0x93, 0x06, 0xAC, + 0x07, 0x95, 0x07, 0xD3, 0x00, 0x01, 0x00, 0x08, 0x05, 0x43, 0x05, 0x53, + 0x06, 0x49, 0x06, 0x7A, 0x06, 0x92, 0x06, 0xAB, 0x07, 0x8D, 0x07, 0xCB, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, + 0x00, 0x08, 0x05, 0x4A, 0x05, 0x5A, 0x06, 0x47, 0x06, 0x78, 0x06, 0x90, + 0x06, 0xA9, 0x07, 0x94, 0x07, 0xD2, 0x00, 0x01, 0x00, 0x08, 0x05, 0x40, + 0x05, 0x51, 0x06, 0x46, 0x06, 0x77, 0x06, 0x8F, 0x06, 0xA8, 0x07, 0x8B, + 0x07, 0xC9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x16, 0x00, 0x08, 0x05, 0x48, 0x05, 0x58, 0x06, 0x42, 0x06, 0x73, + 0x06, 0x8B, 0x06, 0xA4, 0x07, 0x92, 0x07, 0xD0, 0x00, 0x01, 0x00, 0x08, + 0x05, 0x3C, 0x05, 0x4E, 0x06, 0x41, 0x06, 0x72, 0x06, 0x8A, 0x06, 0xA3, + 0x07, 0x88, 0x07, 0xC6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, 0x09, 0x12, 0x09, 0x13, 0x09, 0x10, + 0x09, 0x11, 0x09, 0x0F, 0x09, 0x0E, 0x09, 0x14, 0x09, 0x15, 0x00, 0x02, + 0x00, 0x02, 0x05, 0xC8, 0x05, 0xC9, 0x00, 0x00, 0x05, 0xCC, 0x05, 0xD1, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x01, 0xE0, 0x00, 0xED, 0x08, 0x05, 0x08, 0x06, 0x08, 0x08, 0x08, 0x04, + 0x08, 0x03, 0x08, 0x09, 0x08, 0x0A, 0x08, 0x0B, 0x08, 0x0C, 0x08, 0x0D, + 0x08, 0x0F, 0x08, 0x10, 0x08, 0x11, 0x08, 0x0E, 0x08, 0x12, 0x08, 0x13, + 0x08, 0xFE, 0x08, 0x47, 0x08, 0xFF, 0x08, 0x15, 0x08, 0x16, 0x08, 0x14, + 0x08, 0x17, 0x08, 0x18, 0x08, 0x19, 0x08, 0x1A, 0x08, 0xAE, 0x08, 0x48, + 0x08, 0x49, 0x08, 0x4A, 0x08, 0x4B, 0x08, 0xB8, 0x09, 0x00, 0x08, 0x1B, + 0x09, 0x01, 0x08, 0x1C, 0x08, 0x1D, 0x08, 0x1E, 0x08, 0x1F, 0x09, 0x02, + 0x08, 0x20, 0x08, 0x21, 0x08, 0x23, 0x08, 0x28, 0x08, 0x26, 0x08, 0x22, + 0x08, 0x27, 0x08, 0x29, 0x09, 0x03, 0x08, 0x2A, 0x08, 0x2B, 0x08, 0x2C, + 0x09, 0x04, 0x08, 0x2E, 0x08, 0x2F, 0x08, 0x2D, 0x08, 0x30, 0x08, 0x31, + 0x08, 0x32, 0x08, 0x33, 0x08, 0x38, 0x08, 0x34, 0x08, 0x36, 0x08, 0x37, + 0x08, 0x35, 0x08, 0x3B, 0x08, 0x39, 0x08, 0x3A, 0x08, 0x3C, 0x08, 0x3D, + 0x08, 0x3E, 0x08, 0x3F, 0x08, 0x41, 0x08, 0x40, 0x08, 0x42, 0x08, 0x43, + 0x08, 0x44, 0x08, 0x45, 0x08, 0x46, 0x08, 0x4C, 0x08, 0x4D, 0x08, 0x4E, + 0x08, 0x4F, 0x08, 0x50, 0x08, 0x51, 0x08, 0x96, 0x08, 0x97, 0x08, 0x98, + 0x08, 0x99, 0x08, 0x9A, 0x08, 0x9B, 0x08, 0x52, 0x08, 0x53, 0x08, 0x54, + 0x08, 0x55, 0x08, 0x56, 0x08, 0x58, 0x08, 0x59, 0x08, 0x5A, 0x08, 0x57, + 0x08, 0x9D, 0x08, 0xEA, 0x08, 0x5B, 0x08, 0x5C, 0x08, 0x5E, 0x08, 0x5F, + 0x08, 0x5D, 0x08, 0x60, 0x08, 0x61, 0x08, 0x62, 0x08, 0x64, 0x08, 0x63, + 0x08, 0x65, 0x08, 0xE9, 0x09, 0x05, 0x08, 0x67, 0x08, 0x68, 0x09, 0x06, + 0x08, 0x69, 0x08, 0x6A, 0x08, 0x9E, 0x09, 0x07, 0x08, 0x9F, 0x08, 0xA0, + 0x08, 0x6B, 0x08, 0x6C, 0x09, 0x08, 0x08, 0x6D, 0x08, 0x6E, 0x08, 0x70, + 0x08, 0x75, 0x08, 0x73, 0x08, 0x6F, 0x08, 0x74, 0x08, 0x76, 0x09, 0x09, + 0x08, 0x77, 0x08, 0x78, 0x08, 0x79, 0x09, 0x0A, 0x08, 0x7C, 0x08, 0x7D, + 0x08, 0x7A, 0x08, 0x7B, 0x08, 0x7E, 0x09, 0x0B, 0x08, 0x80, 0x08, 0x81, + 0x08, 0x7F, 0x09, 0x0C, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA1, 0x08, 0x82, + 0x08, 0x87, 0x08, 0x83, 0x08, 0x85, 0x08, 0x86, 0x08, 0x84, 0x08, 0x8A, + 0x08, 0x88, 0x08, 0x89, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, 0x08, 0xA7, + 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, 0x08, 0x8B, + 0x08, 0x8C, 0x08, 0x8D, 0x08, 0x8E, 0x08, 0x90, 0x08, 0x8F, 0x08, 0x91, + 0x08, 0x92, 0x08, 0x93, 0x08, 0x94, 0x08, 0x95, 0x08, 0xC2, 0x08, 0xC4, + 0x08, 0xC3, 0x08, 0xD7, 0x08, 0xD6, 0x08, 0xD8, 0x08, 0xDA, 0x08, 0xD9, + 0x08, 0xD0, 0x08, 0xD1, 0x08, 0xCC, 0x08, 0xCB, 0x08, 0xCF, 0x08, 0xCD, + 0x08, 0xD5, 0x08, 0xCE, 0x08, 0xD2, 0x08, 0xCA, 0x06, 0xA0, 0x06, 0xB9, + 0x08, 0xE6, 0x08, 0xE8, 0x08, 0xE7, 0x08, 0xDC, 0x09, 0x0D, 0x08, 0xEB, + 0x08, 0xBE, 0x08, 0xEC, 0x08, 0xD3, 0x08, 0xDB, 0x08, 0xDD, 0x08, 0xDE, + 0x08, 0xDF, 0x08, 0xE0, 0x08, 0xE1, 0x08, 0xE2, 0x08, 0xE3, 0x08, 0xE4, + 0x08, 0xE5, 0x08, 0xF2, 0x08, 0xF8, 0x08, 0xF6, 0x08, 0xFB, 0x08, 0xF4, + 0x08, 0xF5, 0x08, 0xF9, 0x08, 0xF3, 0x08, 0xF7, 0x08, 0xED, 0x08, 0xEE, + 0x08, 0xEF, 0x08, 0xF0, 0x08, 0xF1, 0x08, 0xFC, 0x08, 0xFD, 0x00, 0x01, + 0x00, 0xED, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x15, 0x00, 0x1B, 0x00, 0x20, + 0x00, 0x42, 0x00, 0x43, 0x00, 0x4E, 0x00, 0x57, 0x00, 0x58, 0x00, 0x63, + 0x00, 0x66, 0x00, 0x71, 0x00, 0x78, 0x00, 0x8B, 0x00, 0x92, 0x00, 0x93, + 0x00, 0x9C, 0x00, 0x9D, 0x00, 0xA5, 0x00, 0xA6, 0x00, 0xA7, 0x00, 0xC7, + 0x00, 0xC8, 0x00, 0xD2, 0x00, 0xD7, 0x00, 0xE9, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xF6, 0x00, 0xFB, 0x01, 0x09, 0x01, 0x10, 0x01, 0x13, 0x01, 0x1B, + 0x01, 0x1D, 0x01, 0x1E, 0x01, 0x26, 0x01, 0x27, 0x01, 0x2F, 0x01, 0x32, + 0x01, 0x33, 0x01, 0x42, 0x01, 0x56, 0x01, 0x59, 0x01, 0x5F, 0x01, 0x64, + 0x01, 0x79, 0x01, 0x82, 0x01, 0x86, 0x01, 0x87, 0x01, 0x88, 0x01, 0x92, + 0x01, 0x93, 0x01, 0x94, 0x01, 0x96, 0x01, 0x97, 0x01, 0x9F, 0x01, 0xA0, + 0x01, 0xAD, 0x01, 0xB5, 0x01, 0xB6, 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xBB, + 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC6, 0x01, 0xCA, 0x01, 0xCF, 0x01, 0xD0, + 0x01, 0xD1, 0x01, 0xD3, 0x01, 0xD4, 0x01, 0xDC, 0x01, 0xDE, 0x01, 0xE0, + 0x01, 0xF2, 0x01, 0xF5, 0x01, 0xFF, 0x02, 0x06, 0x02, 0x0B, 0x02, 0x0C, + 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x27, 0x02, 0x2E, 0x02, 0x33, 0x02, 0x34, + 0x02, 0x35, 0x02, 0x36, 0x02, 0x46, 0x02, 0x47, 0x02, 0x50, 0x02, 0x5C, + 0x02, 0x5D, 0x02, 0x67, 0x02, 0x6E, 0x02, 0x79, 0x02, 0x80, 0x02, 0x8B, + 0x02, 0x8F, 0x02, 0x90, 0x02, 0x97, 0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, + 0x02, 0xB1, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xC0, 0x02, 0xC5, 0x02, 0xCF, + 0x02, 0xD1, 0x02, 0xD9, 0x02, 0xDC, 0x02, 0xE7, 0x02, 0xE9, 0x02, 0xEB, + 0x02, 0xEC, 0x02, 0xF4, 0x02, 0xF6, 0x02, 0xF8, 0x02, 0xF9, 0x03, 0x03, + 0x03, 0x04, 0x03, 0x0D, 0x03, 0x10, 0x03, 0x11, 0x03, 0x17, 0x03, 0x2B, + 0x03, 0x2E, 0x03, 0x34, 0x03, 0x39, 0x03, 0x4F, 0x03, 0x5D, 0x03, 0x61, + 0x03, 0x62, 0x03, 0x63, 0x03, 0x6E, 0x03, 0x6F, 0x03, 0x70, 0x03, 0x71, + 0x03, 0x72, 0x03, 0x73, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x86, + 0x03, 0x8B, 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x90, 0x03, 0x92, 0x03, 0xA0, + 0x03, 0xA1, 0x03, 0xA2, 0x03, 0xA3, 0x03, 0xA6, 0x03, 0xAA, 0x03, 0xAB, + 0x03, 0xB1, 0x03, 0xBA, 0x03, 0xBB, 0x03, 0xBC, 0x03, 0xBD, 0x03, 0xBE, + 0x03, 0xBF, 0x03, 0xC0, 0x03, 0xC5, 0x03, 0xCC, 0x03, 0xD5, 0x03, 0xD7, + 0x03, 0xDC, 0x03, 0xDD, 0x03, 0xE0, 0x03, 0xE1, 0x03, 0xE5, 0x03, 0xEB, + 0x03, 0xEE, 0x04, 0x02, 0x04, 0x05, 0x04, 0x9C, 0x04, 0xB6, 0x04, 0xB7, + 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, 0x05, 0x61, 0x05, 0x91, + 0x05, 0x95, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xDF, 0x05, 0xE0, + 0x05, 0xE2, 0x05, 0xE3, 0x05, 0xE4, 0x06, 0x9E, 0x06, 0xB7, 0x06, 0xDA, + 0x06, 0xDB, 0x06, 0xE1, 0x06, 0xE4, 0x06, 0xE7, 0x06, 0xED, 0x09, 0xC3, + 0x0A, 0x12, 0x0A, 0x15, 0x0A, 0x2E, 0x0A, 0x85, 0x0A, 0x86, 0x0A, 0x87, + 0x0A, 0x8B, 0x0A, 0x8C, 0x0A, 0xAC, 0x0A, 0xB7, 0x0A, 0xB9, 0x0A, 0xBA, + 0x0A, 0xE4, 0x0A, 0xE7, 0x0A, 0xE8, 0x0A, 0xE9, 0x0A, 0xEB, 0x0A, 0xEC, + 0x0A, 0xED, 0x0A, 0xEE, 0x0A, 0xF0, 0x0B, 0x01, 0x0B, 0x02, 0x0B, 0x18, + 0x0B, 0x19, 0x0B, 0x1A, 0x0B, 0x1D, 0x0B, 0x1E, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x96, 0x00, 0x48, 0x07, 0xAA, + 0x07, 0xAB, 0x07, 0xAC, 0x07, 0xAD, 0x07, 0xAE, 0x07, 0xAF, 0x07, 0xB0, + 0x07, 0xB1, 0x07, 0xB2, 0x07, 0xB3, 0x07, 0xB4, 0x07, 0xB5, 0x07, 0xB6, + 0x07, 0xB7, 0x07, 0xB8, 0x07, 0xB9, 0x07, 0xBA, 0x07, 0xBB, 0x07, 0xBC, + 0x07, 0xBD, 0x07, 0xBE, 0x07, 0xBF, 0x07, 0xC0, 0x07, 0xC1, 0x07, 0xC2, + 0x07, 0xC3, 0x07, 0xC4, 0x07, 0xC5, 0x07, 0xC6, 0x07, 0xC7, 0x07, 0xC8, + 0x07, 0xC9, 0x07, 0xCA, 0x07, 0xCB, 0x07, 0xCC, 0x07, 0xCD, 0x07, 0xCE, + 0x07, 0xCF, 0x07, 0xD0, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, + 0x07, 0xD5, 0x07, 0xD6, 0x07, 0xD7, 0x07, 0xD8, 0x07, 0xD8, 0x07, 0xD9, + 0x07, 0xDA, 0x07, 0xDB, 0x07, 0xDC, 0x07, 0xDD, 0x07, 0xDF, 0x07, 0xE0, + 0x07, 0xD9, 0x07, 0xDA, 0x07, 0xDB, 0x07, 0xDC, 0x07, 0xDD, 0x07, 0xDF, + 0x07, 0xE0, 0x07, 0xDE, 0x07, 0xE4, 0x07, 0xE5, 0x07, 0xE1, 0x07, 0xE2, + 0x07, 0xE3, 0x07, 0xE4, 0x07, 0xE5, 0x07, 0xE6, 0x07, 0xE7, 0x00, 0x01, + 0x00, 0x48, 0x00, 0x02, 0x00, 0x41, 0x00, 0x49, 0x00, 0x54, 0x00, 0x5F, + 0x00, 0x89, 0x00, 0x8D, 0x00, 0x97, 0x00, 0xA1, 0x00, 0xC5, 0x01, 0x0A, + 0x01, 0x0F, 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, 0x01, 0x77, + 0x01, 0x7E, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, 0x01, 0xC8, + 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x3B, 0x05, 0x3C, + 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, + 0x05, 0x45, 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, 0x05, 0x49, 0x05, 0x4A, + 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x91, 0x05, 0x95, 0x05, 0xAB, 0x05, 0xB1, + 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEE, 0x05, 0xF0, 0x05, 0xF1, + 0x05, 0xF2, 0x05, 0xF3, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xFB, 0x05, 0xFD, + 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x87, 0x07, 0x06, 0x07, 0x0B, + 0x07, 0x18, 0x07, 0x19, 0x07, 0x1A, 0x07, 0x1E, 0x07, 0x23, 0x07, 0x30, + 0x07, 0x31, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x94, 0x00, 0x47, 0x07, 0x6D, 0x07, 0x6E, 0x07, 0x6F, 0x07, 0x70, + 0x07, 0x71, 0x07, 0x72, 0x07, 0x73, 0x07, 0x74, 0x07, 0x75, 0x07, 0x76, + 0x07, 0x77, 0x07, 0x78, 0x07, 0x79, 0x07, 0x7A, 0x07, 0x7B, 0x07, 0x7C, + 0x07, 0x7D, 0x07, 0x7E, 0x07, 0x7F, 0x07, 0x80, 0x07, 0x81, 0x07, 0x82, + 0x07, 0x83, 0x07, 0x84, 0x07, 0x85, 0x07, 0x86, 0x07, 0x87, 0x07, 0x88, + 0x07, 0x89, 0x07, 0x8A, 0x07, 0x8B, 0x07, 0x8C, 0x07, 0x8D, 0x07, 0x8E, + 0x07, 0x8F, 0x07, 0x90, 0x07, 0x91, 0x07, 0x92, 0x07, 0x93, 0x07, 0x94, + 0x07, 0x95, 0x07, 0x96, 0x07, 0x97, 0x07, 0x98, 0x07, 0x99, 0x07, 0x9A, + 0x07, 0x9A, 0x07, 0x9B, 0x07, 0x9C, 0x07, 0x9D, 0x07, 0x9E, 0x07, 0x9F, + 0x07, 0xA1, 0x07, 0xA2, 0x07, 0x9B, 0x07, 0x9C, 0x07, 0x9D, 0x07, 0x9E, + 0x07, 0x9F, 0x07, 0xA1, 0x07, 0xA2, 0x07, 0xA0, 0x07, 0xA6, 0x07, 0xA7, + 0x07, 0xA3, 0x07, 0xA4, 0x07, 0xA5, 0x07, 0xA6, 0x07, 0xA7, 0x07, 0xA8, + 0x07, 0xA9, 0x00, 0x01, 0x00, 0x47, 0x00, 0x02, 0x00, 0x41, 0x00, 0x49, + 0x00, 0x54, 0x00, 0x5F, 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, + 0x01, 0x0A, 0x01, 0x0F, 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, + 0x01, 0x77, 0x01, 0x7E, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, + 0x01, 0xC8, 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x3B, + 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, + 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, 0x05, 0x49, + 0x05, 0x4A, 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x91, 0x05, 0x95, 0x05, 0xAB, + 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEE, 0x05, 0xF0, + 0x05, 0xF1, 0x05, 0xF2, 0x05, 0xF3, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xFB, + 0x05, 0xFD, 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x87, 0x07, 0x06, + 0x07, 0x0B, 0x07, 0x18, 0x07, 0x19, 0x07, 0x1A, 0x07, 0x1E, 0x07, 0x23, + 0x07, 0x30, 0x07, 0x31, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x62, 0x00, 0x2E, 0x00, 0xEA, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xED, 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, 0x00, 0xF2, + 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, + 0x00, 0xF9, 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, + 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, + 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x02, 0xEF, + 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, + 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, + 0x03, 0x77, 0x00, 0x02, 0x00, 0x07, 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0xC7, 0x00, 0xD7, 0x00, 0x01, 0x00, 0xDC, 0x00, 0xE9, 0x00, 0x12, + 0x02, 0xE0, 0x02, 0xE3, 0x00, 0x20, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x24, + 0x02, 0xE7, 0x02, 0xEE, 0x00, 0x25, 0x03, 0x76, 0x03, 0x76, 0x00, 0x2D, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x40, + 0x00, 0x1D, 0x07, 0xE8, 0x07, 0xE9, 0x07, 0xEA, 0x07, 0xEB, 0x07, 0xEC, + 0x07, 0xED, 0x07, 0xEE, 0x07, 0xEF, 0x07, 0xF0, 0x07, 0xF1, 0x07, 0xF2, + 0x07, 0xF3, 0x07, 0xF4, 0x07, 0xF5, 0x07, 0xF6, 0x07, 0xFD, 0x07, 0xFE, + 0x07, 0xFB, 0x07, 0xFC, 0x08, 0x02, 0x08, 0x01, 0x07, 0xFF, 0x08, 0x00, + 0x07, 0xF8, 0x07, 0xF9, 0x06, 0x9F, 0x06, 0xB8, 0x07, 0xF7, 0x07, 0xFA, + 0x00, 0x01, 0x00, 0x1D, 0x00, 0x93, 0x00, 0x9D, 0x01, 0x10, 0x01, 0x1B, + 0x01, 0x2F, 0x01, 0x82, 0x01, 0x92, 0x02, 0xD9, 0x02, 0xE9, 0x02, 0xF6, + 0x03, 0x0D, 0x03, 0x5D, 0x03, 0x6E, 0x03, 0x81, 0x03, 0x8B, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xCE, 0x05, 0xCF, 0x05, 0xD0, + 0x05, 0xD1, 0x05, 0xDB, 0x05, 0xE2, 0x06, 0x9E, 0x06, 0xB7, 0x06, 0xE7, + 0x0A, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x6A, 0x00, 0x32, 0x00, 0xEA, 0x00, 0xEB, 0x00, 0xEC, 0x00, 0xED, + 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, 0x00, 0xF2, 0x00, 0xF3, + 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, 0x00, 0xF9, + 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, 0x00, 0xFF, + 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, + 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x02, 0xEF, 0x02, 0xF0, + 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, 0x02, 0xF6, + 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, 0x03, 0x77, + 0x05, 0x47, 0x05, 0x57, 0x07, 0x91, 0x07, 0xCF, 0x00, 0x02, 0x00, 0x0B, + 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x00, 0x00, 0xC7, 0x00, 0xD7, 0x00, 0x01, + 0x00, 0xDC, 0x00, 0xE9, 0x00, 0x12, 0x02, 0xE0, 0x02, 0xE3, 0x00, 0x20, + 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x24, 0x02, 0xE7, 0x02, 0xEE, 0x00, 0x25, + 0x03, 0x76, 0x03, 0x76, 0x00, 0x2D, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x2E, + 0x05, 0x4D, 0x05, 0x4D, 0x00, 0x2F, 0x07, 0x87, 0x07, 0x87, 0x00, 0x30, + 0x07, 0xC5, 0x07, 0xC5, 0x00, 0x31, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x00, 0x46, 0x00, 0x20, 0x05, 0x49, 0x05, 0x4A, + 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x59, 0x05, 0x5A, 0x05, 0x5B, 0x05, 0x5C, + 0x06, 0x45, 0x06, 0x47, 0x06, 0x4A, 0x06, 0x4E, 0x06, 0x76, 0x06, 0x78, + 0x06, 0x7B, 0x06, 0x7F, 0x06, 0x8E, 0x06, 0x90, 0x06, 0x93, 0x06, 0x97, + 0x06, 0xA7, 0x06, 0xA9, 0x06, 0xAC, 0x06, 0xB0, 0x07, 0x93, 0x07, 0x94, + 0x07, 0x95, 0x07, 0x96, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, + 0x00, 0x01, 0x00, 0x20, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x43, 0x05, 0x46, + 0x05, 0x50, 0x05, 0x51, 0x05, 0x53, 0x05, 0x56, 0x06, 0x44, 0x06, 0x46, + 0x06, 0x49, 0x06, 0x4D, 0x06, 0x75, 0x06, 0x77, 0x06, 0x7A, 0x06, 0x7E, + 0x06, 0x8D, 0x06, 0x8F, 0x06, 0x92, 0x06, 0x96, 0x06, 0xA6, 0x06, 0xA8, + 0x06, 0xAB, 0x06, 0xAF, 0x07, 0x8A, 0x07, 0x8B, 0x07, 0x8D, 0x07, 0x90, + 0x07, 0xC8, 0x07, 0xC9, 0x07, 0xCB, 0x07, 0xCE, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x01, 0x8C, 0x00, 0xC3, 0x00, 0x97, + 0x00, 0x98, 0x00, 0x99, 0x00, 0x9A, 0x00, 0x9B, 0x00, 0x9C, 0x00, 0x9D, + 0x00, 0x9E, 0x00, 0x9F, 0x00, 0xA0, 0x00, 0xEA, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xED, 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, 0x00, 0xF2, + 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, + 0x00, 0xF9, 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, + 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, + 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x09, 0x34, + 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, + 0x02, 0x29, 0x02, 0x2A, 0x02, 0x2B, 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, + 0x02, 0x2F, 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, + 0x02, 0x35, 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, + 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, + 0x02, 0x41, 0x02, 0x23, 0x02, 0x88, 0x02, 0x8B, 0x02, 0x8C, 0x02, 0xEF, + 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, + 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, + 0x03, 0x77, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, 0x03, 0x8B, + 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, 0x03, 0xB2, + 0x03, 0xBA, 0x03, 0xCF, 0x03, 0xC3, 0x03, 0xB4, 0x03, 0xC1, 0x03, 0xB3, + 0x03, 0xB7, 0x03, 0xCB, 0x03, 0xB5, 0x03, 0xCE, 0x03, 0xC9, 0x03, 0xCD, + 0x03, 0xB6, 0x03, 0xBF, 0x03, 0xBB, 0x03, 0xBD, 0x03, 0xBE, 0x03, 0xB9, + 0x03, 0xCA, 0x03, 0xBC, 0x03, 0xD1, 0x03, 0xB8, 0x03, 0xD0, 0x03, 0xCC, + 0x03, 0xC0, 0x03, 0xC2, 0x03, 0xC4, 0x03, 0xC6, 0x03, 0xC7, 0x03, 0xC8, + 0x03, 0xC5, 0x05, 0x48, 0x05, 0x49, 0x05, 0x4A, 0x05, 0x4B, 0x05, 0x4C, + 0x05, 0x58, 0x05, 0x59, 0x05, 0x5A, 0x05, 0x5B, 0x05, 0x5C, 0x06, 0x42, + 0x06, 0x45, 0x06, 0x47, 0x06, 0x4A, 0x06, 0x4E, 0x06, 0x73, 0x06, 0x76, + 0x06, 0x78, 0x06, 0x7B, 0x06, 0x7F, 0x06, 0x8B, 0x06, 0x8E, 0x06, 0x90, + 0x06, 0x93, 0x06, 0x97, 0x06, 0xA4, 0x06, 0xA7, 0x06, 0xA9, 0x06, 0xAC, + 0x06, 0xB0, 0x07, 0x92, 0x07, 0x93, 0x07, 0x94, 0x07, 0x95, 0x07, 0x96, + 0x07, 0xD0, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, 0x08, 0x47, + 0x08, 0x48, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, 0x08, 0x9D, 0x08, 0x9F, + 0x08, 0xA0, 0x08, 0xA1, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA4, 0x08, 0xA5, + 0x08, 0xA6, 0x08, 0xA7, 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, + 0x08, 0xAC, 0x08, 0xB8, 0x00, 0x02, 0x00, 0x3D, 0x00, 0x8D, 0x00, 0x96, + 0x00, 0x00, 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x0A, 0x00, 0xC7, 0x00, 0xD7, + 0x00, 0x0B, 0x00, 0xDC, 0x00, 0xE9, 0x00, 0x1C, 0x01, 0x9A, 0x01, 0x9A, + 0x00, 0x2A, 0x01, 0xFB, 0x02, 0x17, 0x00, 0x2B, 0x02, 0x19, 0x02, 0x1A, + 0x00, 0x48, 0x02, 0x1C, 0x02, 0x1C, 0x00, 0x4A, 0x02, 0x87, 0x02, 0x87, + 0x00, 0x4B, 0x02, 0x90, 0x02, 0x91, 0x00, 0x4C, 0x02, 0xE0, 0x02, 0xE3, + 0x00, 0x4E, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x52, 0x02, 0xE7, 0x02, 0xEE, + 0x00, 0x53, 0x03, 0x76, 0x03, 0x76, 0x00, 0x5B, 0x03, 0x78, 0x03, 0x79, + 0x00, 0x5C, 0x03, 0x7F, 0x03, 0x86, 0x00, 0x5E, 0x03, 0x91, 0x03, 0x94, + 0x00, 0x66, 0x03, 0x96, 0x03, 0xB1, 0x00, 0x6A, 0x05, 0x3C, 0x05, 0x3C, + 0x00, 0x86, 0x05, 0x3F, 0x05, 0x40, 0x00, 0x87, 0x05, 0x43, 0x05, 0x43, + 0x00, 0x89, 0x05, 0x46, 0x05, 0x46, 0x00, 0x8A, 0x05, 0x4E, 0x05, 0x4E, + 0x00, 0x8B, 0x05, 0x50, 0x05, 0x51, 0x00, 0x8C, 0x05, 0x53, 0x05, 0x53, + 0x00, 0x8E, 0x05, 0x56, 0x05, 0x56, 0x00, 0x8F, 0x06, 0x41, 0x06, 0x41, + 0x00, 0x90, 0x06, 0x44, 0x06, 0x44, 0x00, 0x91, 0x06, 0x46, 0x06, 0x46, + 0x00, 0x92, 0x06, 0x49, 0x06, 0x49, 0x00, 0x93, 0x06, 0x4D, 0x06, 0x4D, + 0x00, 0x94, 0x06, 0x72, 0x06, 0x72, 0x00, 0x95, 0x06, 0x75, 0x06, 0x75, + 0x00, 0x96, 0x06, 0x77, 0x06, 0x77, 0x00, 0x97, 0x06, 0x7A, 0x06, 0x7A, + 0x00, 0x98, 0x06, 0x7E, 0x06, 0x7E, 0x00, 0x99, 0x06, 0x8A, 0x06, 0x8A, + 0x00, 0x9A, 0x06, 0x8D, 0x06, 0x8D, 0x00, 0x9B, 0x06, 0x8F, 0x06, 0x8F, + 0x00, 0x9C, 0x06, 0x92, 0x06, 0x92, 0x00, 0x9D, 0x06, 0x96, 0x06, 0x96, + 0x00, 0x9E, 0x06, 0xA3, 0x06, 0xA3, 0x00, 0x9F, 0x06, 0xA6, 0x06, 0xA6, + 0x00, 0xA0, 0x06, 0xA8, 0x06, 0xA8, 0x00, 0xA1, 0x06, 0xAB, 0x06, 0xAB, + 0x00, 0xA2, 0x06, 0xAF, 0x06, 0xAF, 0x00, 0xA3, 0x07, 0x88, 0x07, 0x88, + 0x00, 0xA4, 0x07, 0x8A, 0x07, 0x8B, 0x00, 0xA5, 0x07, 0x8D, 0x07, 0x8D, + 0x00, 0xA7, 0x07, 0x90, 0x07, 0x90, 0x00, 0xA8, 0x07, 0xC6, 0x07, 0xC6, + 0x00, 0xA9, 0x07, 0xC8, 0x07, 0xC9, 0x00, 0xAA, 0x07, 0xCB, 0x07, 0xCB, + 0x00, 0xAC, 0x07, 0xCE, 0x07, 0xCE, 0x00, 0xAD, 0x08, 0x13, 0x08, 0x13, + 0x00, 0xAE, 0x08, 0x17, 0x08, 0x17, 0x00, 0xAF, 0x08, 0x4E, 0x08, 0x50, + 0x00, 0xB0, 0x08, 0x5B, 0x08, 0x5B, 0x00, 0xB3, 0x08, 0x69, 0x08, 0x6A, + 0x00, 0xB4, 0x08, 0x7F, 0x08, 0x8A, 0x00, 0xB6, 0x08, 0xAE, 0x08, 0xAE, + 0x00, 0xC2, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x06, 0xFF, + 0x00, 0x03, 0x03, 0x16, 0x05, 0xDC, 0x00, 0x01, 0x00, 0x01, 0x01, 0x2C, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, + 0x00, 0x04, 0x06, 0x16, 0x06, 0x17, 0x06, 0x16, 0x06, 0x17, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x02, 0x01, 0x41, 0x01, 0xFB, 0x03, 0x16, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x24, 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x40, 0x00, 0x01, 0x00, 0x02, 0x01, 0x41, 0x03, 0x16, 0x00, 0x03, + 0x00, 0x01, 0x00, 0x1A, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x01, 0xFB, + 0x00, 0x02, 0x00, 0x03, 0x05, 0x3B, 0x05, 0x3D, 0x00, 0x00, 0x05, 0x3F, + 0x05, 0x41, 0x00, 0x03, 0x05, 0x43, 0x05, 0x46, 0x00, 0x06, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, + 0x05, 0x47, 0x05, 0x57, 0x06, 0x40, 0x06, 0x71, 0x06, 0x89, 0x06, 0xA2, + 0x07, 0x91, 0x07, 0xCF, 0x00, 0x01, 0x00, 0x08, 0x05, 0x3B, 0x05, 0x4D, + 0x06, 0x3F, 0x06, 0x70, 0x06, 0x88, 0x06, 0xA1, 0x07, 0x87, 0x07, 0xC5, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x80, + 0x00, 0x3D, 0x05, 0x4D, 0x05, 0x4E, 0x05, 0x4F, 0x05, 0x50, 0x05, 0x51, + 0x05, 0x52, 0x05, 0x53, 0x05, 0x54, 0x05, 0x55, 0x05, 0x56, 0x05, 0x59, + 0x05, 0x62, 0x05, 0x63, 0x05, 0x66, 0x05, 0x67, 0x05, 0x64, 0x05, 0x65, + 0x05, 0x68, 0x05, 0x69, 0x05, 0x6C, 0x05, 0x6D, 0x05, 0x6A, 0x05, 0x6B, + 0x05, 0x6E, 0x05, 0x6F, 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, + 0x05, 0x61, 0x05, 0x70, 0x05, 0x71, 0x05, 0x72, 0x05, 0x73, 0x05, 0x74, + 0x05, 0x75, 0x05, 0x76, 0x05, 0x77, 0x05, 0x78, 0x05, 0x79, 0x05, 0x7A, + 0x05, 0x7B, 0x05, 0x7C, 0x05, 0x7E, 0x05, 0x7F, 0x05, 0x80, 0x05, 0x81, + 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, 0x05, 0x85, 0x05, 0x86, 0x05, 0x87, + 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, 0x05, 0x7D, 0x05, 0x8B, 0x05, 0x8C, + 0x05, 0x8D, 0x05, 0x8E, 0x00, 0x02, 0x00, 0x11, 0x05, 0x3B, 0x05, 0x3D, + 0x00, 0x00, 0x05, 0x3F, 0x05, 0x41, 0x00, 0x03, 0x05, 0x43, 0x05, 0x46, + 0x00, 0x06, 0x05, 0x49, 0x05, 0x49, 0x00, 0x0A, 0x05, 0x9B, 0x05, 0x9D, + 0x00, 0x0B, 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x0E, 0x05, 0xA1, 0x05, 0xA2, + 0x00, 0x0F, 0x05, 0xA4, 0x05, 0xA9, 0x00, 0x11, 0x05, 0xB1, 0x05, 0xB1, + 0x00, 0x17, 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x18, 0x05, 0xDB, 0x05, 0xDC, + 0x00, 0x19, 0x05, 0xDF, 0x05, 0xE0, 0x00, 0x1B, 0x05, 0xE2, 0x05, 0xE2, + 0x00, 0x1D, 0x05, 0xEA, 0x06, 0x03, 0x00, 0x1E, 0x06, 0x09, 0x06, 0x0A, + 0x00, 0x38, 0x06, 0xEF, 0x06, 0xF0, 0x00, 0x3A, 0x06, 0xFB, 0x06, 0xFB, + 0x00, 0x3C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x80, 0x00, 0x3D, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, + 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, + 0x05, 0x49, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDF, 0x05, 0xE0, 0x05, 0xE2, + 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0x9D, 0x05, 0x9F, + 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA8, 0x05, 0xA9, 0x05, 0xA6, 0x05, 0xA7, + 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, 0x05, 0xED, + 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, 0x05, 0xF3, + 0x05, 0xF4, 0x05, 0xF5, 0x05, 0xF6, 0x06, 0x09, 0x05, 0xF7, 0x05, 0xF8, + 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, + 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, + 0x06, 0xEF, 0x06, 0xF0, 0x06, 0xFB, 0x00, 0x02, 0x00, 0x03, 0x05, 0x4D, + 0x05, 0x56, 0x00, 0x00, 0x05, 0x59, 0x05, 0x59, 0x00, 0x0A, 0x05, 0x5D, + 0x05, 0x8E, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x25, 0xFE, 0x00, 0x2B, 0x06, 0x25, 0x06, 0x26, 0x06, 0x27, + 0x06, 0x28, 0x06, 0x29, 0x06, 0x2A, 0x06, 0x2B, 0x06, 0x2C, 0x06, 0x2D, + 0x06, 0x2E, 0x06, 0x2F, 0x06, 0x30, 0x06, 0x31, 0x06, 0x32, 0x06, 0x33, + 0x06, 0x34, 0x06, 0x35, 0x06, 0x36, 0x06, 0x37, 0x06, 0x38, 0x06, 0x39, + 0x06, 0x3A, 0x06, 0x3B, 0x06, 0x3C, 0x06, 0x3D, 0x06, 0x3E, 0x06, 0x3F, + 0x06, 0x41, 0x06, 0x43, 0x06, 0x44, 0x06, 0x46, 0x06, 0x48, 0x06, 0x49, + 0x06, 0x4B, 0x06, 0x4C, 0x06, 0x4D, 0x06, 0x4F, 0x06, 0x50, 0x06, 0x51, + 0x06, 0x52, 0x06, 0x55, 0x06, 0x53, 0x06, 0x54, 0x00, 0x04, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x36, 0x00, 0x04, 0x00, 0x2C, + 0x00, 0x22, 0x00, 0x18, 0x00, 0x0E, 0x00, 0x01, 0x00, 0x04, 0x05, 0x9A, + 0x00, 0x02, 0x05, 0x93, 0x00, 0x01, 0x00, 0x04, 0x05, 0x99, 0x00, 0x02, + 0x05, 0x91, 0x00, 0x01, 0x00, 0x04, 0x05, 0x9A, 0x00, 0x02, 0x05, 0x98, + 0x00, 0x01, 0x00, 0x04, 0x05, 0x99, 0x00, 0x02, 0x05, 0x95, 0x00, 0x01, + 0x00, 0x04, 0x05, 0x91, 0x05, 0x93, 0x05, 0x95, 0x05, 0x98, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x78, 0x00, 0x03, + 0x02, 0x88, 0x02, 0x8B, 0x02, 0x8C, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x01, 0x14, 0x00, 0x02, 0x02, 0x8A, 0x02, 0x8A, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x1C, + 0x00, 0x0B, 0x02, 0x89, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, + 0x03, 0x8B, 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, + 0x00, 0x02, 0x00, 0x03, 0x02, 0x87, 0x02, 0x87, 0x00, 0x00, 0x03, 0x78, + 0x03, 0x79, 0x00, 0x01, 0x03, 0x7F, 0x03, 0x86, 0x00, 0x03, 0x00, 0x06, + 0x00, 0x08, 0x00, 0x04, 0x00, 0xD8, 0x00, 0xB6, 0x00, 0x2A, 0x00, 0x0E, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x3E, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x01, 0x00, 0x03, 0x02, 0x87, + 0x02, 0x90, 0x02, 0x91, 0x00, 0x03, 0x00, 0x01, 0x00, 0x22, 0x00, 0x01, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x02, + 0x00, 0x02, 0x03, 0x78, 0x03, 0x79, 0x00, 0x00, 0x03, 0x7F, 0x03, 0x86, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x11, 0x02, 0x55, 0x02, 0x5A, 0x00, 0x00, + 0x02, 0x5C, 0x02, 0x60, 0x00, 0x06, 0x02, 0x65, 0x02, 0x65, 0x00, 0x0B, + 0x02, 0x87, 0x02, 0x88, 0x00, 0x0C, 0x02, 0x8B, 0x02, 0x8C, 0x00, 0x0E, + 0x02, 0x90, 0x02, 0x91, 0x00, 0x10, 0x02, 0xD7, 0x02, 0xDD, 0x00, 0x12, + 0x02, 0xDF, 0x02, 0xFB, 0x00, 0x19, 0x03, 0x54, 0x03, 0x56, 0x00, 0x36, + 0x03, 0x5A, 0x03, 0x64, 0x00, 0x39, 0x03, 0x78, 0x03, 0x79, 0x00, 0x44, + 0x03, 0x7F, 0x03, 0x90, 0x00, 0x46, 0x03, 0xD2, 0x03, 0xD2, 0x00, 0x58, + 0x03, 0xD4, 0x03, 0xD7, 0x00, 0x59, 0x03, 0xD9, 0x03, 0xE5, 0x00, 0x5D, + 0x03, 0xE7, 0x03, 0xF5, 0x00, 0x6A, 0x03, 0xFA, 0x03, 0xFB, 0x00, 0x79, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x62, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x01, 0x00, 0x01, + 0x02, 0xB1, 0x00, 0x01, 0x00, 0x02, 0x02, 0x87, 0x02, 0x89, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x40, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x36, 0x00, 0x01, 0x00, 0x15, 0x02, 0xB1, 0x02, 0xB2, + 0x02, 0xB3, 0x02, 0xB7, 0x02, 0xB9, 0x02, 0xBA, 0x02, 0xBB, 0x02, 0xC0, + 0x02, 0xC4, 0x02, 0xC5, 0x02, 0xC7, 0x02, 0xC8, 0x02, 0xC9, 0x02, 0xCA, + 0x02, 0xCB, 0x02, 0xCD, 0x02, 0xCE, 0x02, 0xCF, 0x02, 0xD1, 0x02, 0xD4, + 0x02, 0xD5, 0x00, 0x01, 0x00, 0x01, 0x02, 0x87, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x6E, 0x00, 0x34, 0x05, 0xFF, + 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, 0x05, 0xA8, 0x05, 0xA9, + 0x05, 0xAA, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, 0x05, 0xC1, + 0x05, 0xC2, 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, 0x05, 0xC7, + 0x05, 0xE0, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, + 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, + 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, 0x07, 0x1E, 0x07, 0x1F, 0x07, 0x20, + 0x07, 0x21, 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, 0x07, 0x26, + 0x07, 0x27, 0x07, 0x2F, 0x07, 0x2C, 0x07, 0x2D, 0x07, 0x2E, 0x07, 0x28, + 0x07, 0x29, 0x07, 0x2A, 0x07, 0x2B, 0x00, 0x02, 0x00, 0x0A, 0x03, 0xDF, + 0x03, 0xDF, 0x00, 0x00, 0x05, 0x9B, 0x05, 0x9D, 0x00, 0x01, 0x05, 0x9F, + 0x05, 0x9F, 0x00, 0x04, 0x05, 0xA1, 0x05, 0xA3, 0x00, 0x05, 0x05, 0xB1, + 0x05, 0xB4, 0x00, 0x08, 0x05, 0xB6, 0x05, 0xBC, 0x00, 0x0C, 0x05, 0xDF, + 0x05, 0xDF, 0x00, 0x13, 0x05, 0xEA, 0x05, 0xF6, 0x00, 0x14, 0x06, 0x09, + 0x06, 0x09, 0x00, 0x21, 0x07, 0x06, 0x07, 0x17, 0x00, 0x22, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x45, 0x09, 0x1A, 0x08, 0xFE, 0x08, 0xE4, 0x08, 0xCA, + 0x08, 0xB0, 0x08, 0x96, 0x08, 0x5C, 0x08, 0x48, 0x08, 0x32, 0x08, 0x1A, + 0x08, 0x00, 0x07, 0xE2, 0x07, 0xCE, 0x07, 0xB8, 0x07, 0xA0, 0x07, 0x86, + 0x07, 0x68, 0x07, 0x54, 0x07, 0x3E, 0x07, 0x26, 0x07, 0x0C, 0x05, 0x46, + 0x05, 0x2A, 0x05, 0x16, 0x05, 0x04, 0x04, 0xF4, 0x04, 0xE2, 0x04, 0xCE, + 0x04, 0xB8, 0x04, 0xA0, 0x04, 0x8E, 0x04, 0x7C, 0x04, 0x68, 0x04, 0x52, + 0x04, 0x3A, 0x04, 0x20, 0x04, 0x0C, 0x03, 0xF6, 0x03, 0xDE, 0x03, 0xC8, + 0x03, 0xB0, 0x03, 0x96, 0x03, 0x7E, 0x03, 0x64, 0x03, 0x48, 0x03, 0x0E, + 0x02, 0xF2, 0x02, 0xDA, 0x02, 0xC0, 0x02, 0xA4, 0x02, 0x86, 0x02, 0x6A, + 0x02, 0x52, 0x02, 0x38, 0x02, 0x1C, 0x01, 0xFE, 0x01, 0xE2, 0x01, 0xCA, + 0x01, 0xB0, 0x01, 0x94, 0x01, 0x76, 0x01, 0x34, 0x01, 0x1E, 0x01, 0x08, + 0x00, 0xF0, 0x00, 0xDA, 0x00, 0xC2, 0x00, 0xA8, 0x00, 0x90, 0x00, 0x03, + 0x00, 0x02, 0x0A, 0xF8, 0x0A, 0xF8, 0x00, 0x01, 0x00, 0xB8, 0x00, 0x02, + 0x04, 0xAC, 0x0A, 0xF8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x03, 0x04, 0x94, 0x0A, 0xE0, 0x0A, 0xE0, 0x00, 0x01, 0x00, 0xA0, + 0x00, 0x02, 0x04, 0x94, 0x0A, 0xE0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x03, 0x04, 0x7A, 0x0A, 0xC6, 0x0A, 0xC6, 0x00, 0x01, + 0x00, 0x86, 0x00, 0x01, 0x0A, 0xC6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x74, 0x00, 0x01, 0x00, 0x6E, 0x00, 0x02, + 0x04, 0x62, 0x0A, 0xAE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x02, 0x04, 0x4C, 0x00, 0x5E, 0x00, 0x01, 0x00, 0x58, 0x00, 0x02, + 0x04, 0x4C, 0x0A, 0x98, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x02, 0x04, 0x34, 0x00, 0x46, 0x00, 0x01, 0x00, 0x40, 0x00, 0x01, + 0x0A, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, + 0x0A, 0x6A, 0x0A, 0x6A, 0x00, 0x01, 0x00, 0x2A, 0x00, 0x01, 0x0A, 0x6A, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x00, 0x1A, + 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x0A, 0x54, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x03, 0xDF, 0x00, 0x02, 0x00, 0x06, + 0x05, 0x3C, 0x05, 0x3D, 0x00, 0x00, 0x05, 0x3F, 0x05, 0x41, 0x00, 0x02, + 0x05, 0x43, 0x05, 0x46, 0x00, 0x05, 0x05, 0x48, 0x05, 0x4C, 0x00, 0x09, + 0x05, 0x4E, 0x05, 0x56, 0x00, 0x0E, 0x05, 0x58, 0x05, 0x5C, 0x00, 0x17, + 0x00, 0x03, 0x00, 0x07, 0x06, 0xFE, 0x06, 0xFE, 0x06, 0xFE, 0x06, 0xFE, + 0x06, 0xFE, 0x06, 0xFE, 0x00, 0x82, 0x00, 0x01, 0x06, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x06, 0x06, 0xE0, + 0x06, 0xE0, 0x06, 0xE0, 0x06, 0xE0, 0x06, 0xE0, 0x00, 0x64, 0x00, 0x01, + 0x05, 0xE6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x05, 0x06, 0xC4, 0x06, 0xC4, 0x06, 0xC4, 0x06, 0xC4, 0x00, 0x48, + 0x00, 0x01, 0x05, 0xCA, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x04, 0x06, 0xAA, 0x06, 0xAA, 0x06, 0xAA, 0x00, 0x2E, + 0x00, 0x01, 0x05, 0xB0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x03, 0x06, 0x92, 0x06, 0x92, 0x00, 0x16, 0x00, 0x01, + 0x05, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, + 0x00, 0x01, 0x05, 0xA6, 0x00, 0x03, 0x00, 0x07, 0x06, 0x76, 0x06, 0x76, + 0x06, 0x76, 0x06, 0x76, 0x06, 0x76, 0x06, 0x76, 0x00, 0x82, 0x00, 0x01, + 0x05, 0xF6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x06, 0x06, 0x58, 0x06, 0x58, 0x06, 0x58, 0x06, 0x58, 0x06, 0x58, + 0x00, 0x64, 0x00, 0x01, 0x05, 0xD8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x05, 0x06, 0x3C, 0x06, 0x3C, 0x06, 0x3C, + 0x06, 0x3C, 0x00, 0x48, 0x00, 0x01, 0x05, 0xBC, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x04, 0x06, 0x22, 0x06, 0x22, + 0x06, 0x22, 0x00, 0x2E, 0x00, 0x01, 0x05, 0xA2, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, 0x06, 0x0A, 0x06, 0x0A, + 0x00, 0x16, 0x00, 0x01, 0x05, 0x8A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x05, 0xA8, 0x00, 0x03, 0x00, 0x07, + 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, + 0x00, 0x82, 0x00, 0x01, 0x06, 0x24, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x06, 0x05, 0xD0, 0x05, 0xD0, 0x05, 0xD0, + 0x05, 0xD0, 0x05, 0xD0, 0x00, 0x64, 0x00, 0x01, 0x06, 0x06, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x05, 0x05, 0xB4, + 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xB4, 0x00, 0x48, 0x00, 0x01, 0x05, 0xEA, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x04, + 0x05, 0x9A, 0x05, 0x9A, 0x05, 0x9A, 0x00, 0x2E, 0x00, 0x01, 0x05, 0xD0, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, + 0x05, 0x82, 0x05, 0x82, 0x00, 0x16, 0x00, 0x01, 0x05, 0xB8, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x05, 0xA4, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x06, 0x05, 0xA4, + 0x05, 0xAA, 0x00, 0x00, 0x05, 0xBD, 0x05, 0xC7, 0x00, 0x07, 0x05, 0xE0, + 0x05, 0xE0, 0x00, 0x12, 0x05, 0xF7, 0x06, 0x03, 0x00, 0x13, 0x06, 0x0A, + 0x06, 0x0A, 0x00, 0x20, 0x07, 0x1E, 0x07, 0x2F, 0x00, 0x21, 0x00, 0x03, + 0x00, 0x03, 0x01, 0xF4, 0x01, 0xF4, 0x03, 0x00, 0x00, 0x01, 0x02, 0xC6, + 0x00, 0x03, 0x01, 0xF4, 0x01, 0xF4, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, 0x01, 0xD8, 0x01, 0xD8, 0x02, 0xE4, + 0x00, 0x01, 0x02, 0xAA, 0x00, 0x02, 0x01, 0xD8, 0x02, 0xE4, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, 0x01, 0xBE, 0x01, 0xBE, + 0x02, 0xCA, 0x00, 0x01, 0x02, 0x90, 0x00, 0x01, 0x02, 0xCA, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, 0x01, 0xA6, 0x02, 0xB2, + 0x00, 0x01, 0x02, 0x78, 0x00, 0x03, 0x01, 0xA6, 0x01, 0xA6, 0x02, 0xB2, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, 0x01, 0x8C, + 0x02, 0x98, 0x00, 0x01, 0x02, 0x5E, 0x00, 0x02, 0x01, 0x8C, 0x02, 0x98, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, 0x01, 0x74, + 0x02, 0x80, 0x00, 0x01, 0x02, 0x46, 0x00, 0x01, 0x02, 0x80, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x02, 0x6A, 0x00, 0x01, + 0x02, 0x30, 0x00, 0x03, 0x01, 0x5E, 0x01, 0x5E, 0x02, 0x6A, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x02, 0x52, 0x00, 0x01, + 0x02, 0x18, 0x00, 0x02, 0x01, 0x46, 0x02, 0x52, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x02, 0x3C, 0x00, 0x01, 0x02, 0x02, + 0x00, 0x01, 0x02, 0x3C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x01, 0xEE, 0x00, 0x05, 0x01, 0xEE, 0x01, 0xEE, + 0x01, 0xEE, 0x01, 0xEE, 0x02, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0xD4, 0x00, 0x04, 0x01, 0xD4, + 0x01, 0xD4, 0x01, 0xD4, 0x02, 0x0E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0xBC, 0x00, 0x03, 0x01, 0xBC, + 0x01, 0xBC, 0x01, 0xF6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x01, 0xA6, 0x00, 0x02, 0x01, 0xA6, 0x01, 0xE0, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x01, 0x92, 0x00, 0x01, 0x01, 0xCC, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x01, 0x00, 0xC8, 0x00, 0x01, 0x01, 0x80, 0x00, 0x02, + 0x01, 0x80, 0x01, 0xBA, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x01, 0x6E, + 0x01, 0x6E, 0x01, 0x6E, 0x01, 0x6E, 0x00, 0xB6, 0x00, 0x01, 0x01, 0x6E, + 0x00, 0x01, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x01, 0x56, + 0x01, 0x56, 0x01, 0x56, 0x00, 0x9E, 0x00, 0x01, 0x01, 0x56, 0x00, 0x01, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x01, 0x40, 0x01, 0x40, + 0x00, 0x88, 0x00, 0x01, 0x01, 0x40, 0x00, 0x01, 0x01, 0x7A, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x02, 0x01, 0x2C, 0x00, 0x74, 0x00, 0x01, 0x01, 0x2C, + 0x00, 0x01, 0x01, 0x66, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x62, + 0x00, 0x01, 0x01, 0x1A, 0x00, 0x01, 0x01, 0x54, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x01, 0x01, 0x44, 0x00, 0x01, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x01, 0x32, 0x00, 0x01, + 0x00, 0xF8, 0x00, 0x03, 0x00, 0x26, 0x00, 0x26, 0x00, 0x40, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x01, 0x01, 0x1E, 0x00, 0x01, 0x00, 0xE4, 0x00, 0x02, + 0x00, 0x12, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x06, 0xEF, + 0x06, 0xFE, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x01, 0x02, 0x00, 0x01, + 0x00, 0xC8, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1E, + 0x01, 0xFB, 0x02, 0x17, 0x00, 0x00, 0x02, 0x19, 0x02, 0x22, 0x00, 0x1D, + 0x02, 0x42, 0x02, 0x64, 0x00, 0x27, 0x02, 0x66, 0x02, 0x85, 0x00, 0x4A, + 0x02, 0x87, 0x02, 0x87, 0x00, 0x6A, 0x02, 0x8D, 0x02, 0x8D, 0x00, 0x6B, + 0x02, 0x8F, 0x02, 0xB2, 0x00, 0x6C, 0x02, 0xB4, 0x02, 0xB7, 0x00, 0x90, + 0x02, 0xB9, 0x02, 0xBE, 0x00, 0x94, 0x02, 0xC0, 0x02, 0xC5, 0x00, 0x9A, + 0x02, 0xC7, 0x02, 0xC9, 0x00, 0xA0, 0x02, 0xCB, 0x02, 0xCF, 0x00, 0xA3, + 0x02, 0xD1, 0x02, 0xDE, 0x00, 0xA8, 0x02, 0xE0, 0x02, 0xEE, 0x00, 0xB6, + 0x02, 0xFC, 0x02, 0xFC, 0x00, 0xC5, 0x02, 0xFE, 0x03, 0x54, 0x00, 0xC6, + 0x03, 0x56, 0x03, 0x5A, 0x01, 0x1D, 0x03, 0x5C, 0x03, 0x76, 0x01, 0x22, + 0x03, 0x78, 0x03, 0x86, 0x01, 0x3D, 0x03, 0x91, 0x03, 0x94, 0x01, 0x4C, + 0x03, 0x96, 0x03, 0xB1, 0x01, 0x50, 0x03, 0xD2, 0x03, 0xF6, 0x01, 0x6C, + 0x03, 0xFB, 0x04, 0x06, 0x01, 0x91, 0x04, 0x53, 0x05, 0x18, 0x01, 0x9D, + 0x05, 0x1A, 0x05, 0x1A, 0x02, 0x63, 0x07, 0x04, 0x07, 0x04, 0x02, 0x64, + 0x09, 0x05, 0x09, 0x0C, 0x02, 0x65, 0x09, 0x35, 0x09, 0x6C, 0x02, 0x6D, + 0x09, 0xA4, 0x09, 0xC7, 0x02, 0xA5, 0x09, 0xCD, 0x09, 0xE4, 0x02, 0xC9, + 0x00, 0x02, 0x00, 0x09, 0x05, 0x9B, 0x05, 0x9D, 0x00, 0x00, 0x05, 0x9F, + 0x05, 0x9F, 0x00, 0x03, 0x05, 0xA1, 0x05, 0xA3, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB4, 0x00, 0x07, 0x05, 0xB6, 0x05, 0xBC, 0x00, 0x0B, 0x05, 0xDF, + 0x05, 0xDF, 0x00, 0x12, 0x05, 0xEA, 0x05, 0xF6, 0x00, 0x13, 0x06, 0x09, + 0x06, 0x09, 0x00, 0x20, 0x07, 0x06, 0x07, 0x17, 0x00, 0x21, 0x00, 0x02, + 0x00, 0x20, 0x00, 0x02, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x96, + 0x00, 0x08, 0x00, 0xA1, 0x00, 0xC5, 0x00, 0x94, 0x00, 0xC7, 0x00, 0xE9, + 0x00, 0xB9, 0x01, 0x0A, 0x01, 0x89, 0x00, 0xDC, 0x01, 0x8C, 0x01, 0xA3, + 0x01, 0x5C, 0x01, 0xA5, 0x01, 0xEE, 0x01, 0x74, 0x01, 0xF0, 0x01, 0xFA, + 0x01, 0xBE, 0x03, 0xF7, 0x03, 0xF9, 0x01, 0xC9, 0x04, 0x07, 0x04, 0x52, + 0x01, 0xCC, 0x05, 0x1B, 0x05, 0x38, 0x02, 0x18, 0x05, 0x3B, 0x05, 0x5C, + 0x02, 0x36, 0x05, 0x8F, 0x05, 0x8F, 0x02, 0x58, 0x05, 0x91, 0x05, 0x9A, + 0x02, 0x59, 0x05, 0xAE, 0x05, 0xAE, 0x02, 0x63, 0x06, 0x1A, 0x06, 0x1A, + 0x02, 0x64, 0x06, 0xBA, 0x06, 0xBB, 0x02, 0x65, 0x06, 0xBD, 0x06, 0xBD, + 0x02, 0x67, 0x06, 0xBF, 0x06, 0xC0, 0x02, 0x68, 0x06, 0xC6, 0x06, 0xC6, + 0x02, 0x6A, 0x06, 0xC8, 0x06, 0xCB, 0x02, 0x6B, 0x06, 0xCE, 0x06, 0xD5, + 0x02, 0x6F, 0x06, 0xFF, 0x06, 0xFF, 0x02, 0x77, 0x07, 0x32, 0x07, 0x35, + 0x02, 0x78, 0x07, 0x3A, 0x07, 0x3C, 0x02, 0x7C, 0x07, 0x42, 0x07, 0x4A, + 0x02, 0x7F, 0x07, 0x4D, 0x07, 0x52, 0x02, 0x88, 0x07, 0x55, 0x07, 0x5D, + 0x02, 0x8E, 0x08, 0xFE, 0x09, 0x04, 0x02, 0x97, 0x09, 0x16, 0x09, 0x33, + 0x02, 0x9E, 0x09, 0x7B, 0x09, 0xA3, 0x02, 0xBC, 0x09, 0xC8, 0x09, 0xCC, + 0x02, 0xE5, 0x00, 0x03, 0x00, 0x07, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, + 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, 0x00, 0x74, 0x00, 0x01, 0x00, 0x6E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, 0x01, 0x4E, 0x01, 0x4E, + 0x01, 0x4E, 0x01, 0x4E, 0x01, 0x4E, 0x00, 0x5A, 0x00, 0x01, 0x00, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x01, 0x36, 0x01, 0x36, + 0x01, 0x36, 0x01, 0x36, 0x00, 0x42, 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x01, 0x20, 0x01, 0x20, 0x01, 0x20, + 0x00, 0x2C, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x03, 0x01, 0x0C, 0x01, 0x0C, 0x00, 0x18, 0x00, 0x01, 0x00, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x05, 0x9F, 0x00, 0x01, + 0x00, 0x01, 0x05, 0x9D, 0x00, 0x03, 0x00, 0x07, 0x00, 0xEE, 0x00, 0xEE, + 0x00, 0xEE, 0x00, 0xEE, 0x00, 0xEE, 0x00, 0xEE, 0x00, 0x74, 0x00, 0x01, + 0x00, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, 0x00, 0xD4, + 0x00, 0xD4, 0x00, 0xD4, 0x00, 0xD4, 0x00, 0xD4, 0x00, 0x5A, 0x00, 0x01, + 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0xBC, + 0x00, 0xBC, 0x00, 0xBC, 0x00, 0xBC, 0x00, 0x42, 0x00, 0x01, 0x00, 0x3C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0xA6, 0x00, 0xA6, + 0x00, 0xA6, 0x00, 0x2C, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x03, 0x00, 0x92, 0x00, 0x92, 0x00, 0x18, 0x00, 0x01, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x05, 0xA2, + 0x00, 0x01, 0x00, 0x01, 0x05, 0xA1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x74, + 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x6E, + 0x00, 0x01, 0x00, 0xAA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, + 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x54, + 0x00, 0x01, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, + 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x01, + 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0x2C, + 0x00, 0x2C, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x01, 0x00, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x18, 0x00, 0x18, 0x00, 0x12, + 0x00, 0x01, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, + 0x05, 0x9B, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x02, 0x85, 0x00, 0x00, + 0x02, 0x87, 0x0B, 0x1F, 0x02, 0x84, 0x0B, 0x29, 0x0B, 0x36, 0x0B, 0x1D, + 0x0B, 0x42, 0x0B, 0x68, 0x0B, 0x2B, 0x0B, 0x6A, 0x0B, 0x6B, 0x0B, 0x52, + 0x00, 0x03, 0x00, 0x02, 0x00, 0xA0, 0x00, 0x7C, 0x00, 0x01, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, + 0x05, 0x9C, 0x00, 0x03, 0x00, 0x01, 0x00, 0x62, 0x00, 0x01, 0x00, 0x14, + 0x00, 0x01, 0x00, 0x7E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, + 0x00, 0x01, 0x05, 0xB6, 0x00, 0x03, 0x00, 0x01, 0x00, 0x48, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x01, 0x00, 0x01, 0x05, 0xB4, 0x00, 0x03, 0x00, 0x01, 0x00, 0x2E, + 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x4A, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x02, 0x94, 0x00, 0x01, 0x00, 0x30, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x02, 0x05, 0xDF, 0x05, 0xE0, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x32, 0x00, 0x02, 0x00, 0x1C, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x02, + 0x05, 0x9C, 0x05, 0xA5, 0x00, 0x01, 0x00, 0x09, 0x05, 0xB1, 0x05, 0xB2, + 0x05, 0xB4, 0x05, 0xB6, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xF1, + 0x05, 0xFE, 0x00, 0x01, 0x00, 0x01, 0x05, 0xDF, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x01, 0x7E, 0x00, 0x08, 0x01, 0x3C, + 0x01, 0x0C, 0x00, 0x56, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x3A, 0x00, 0x28, + 0x00, 0x16, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x07, 0x29, 0x00, 0x02, + 0x05, 0xF8, 0x07, 0x29, 0x00, 0x02, 0x05, 0xEB, 0x00, 0x02, 0x00, 0x0C, + 0x00, 0x06, 0x07, 0x28, 0x00, 0x02, 0x05, 0xF8, 0x07, 0x28, 0x00, 0x02, + 0x05, 0xEB, 0x00, 0x01, 0x00, 0x04, 0x07, 0x15, 0x00, 0x02, 0x05, 0xEB, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x14, 0x00, 0x02, 0x05, 0xEB, 0x00, 0x03, + 0x00, 0xDE, 0x00, 0xD6, 0x00, 0xCA, 0x00, 0x12, 0x00, 0xAC, 0x00, 0xA2, + 0x00, 0x98, 0x00, 0x8E, 0x00, 0x84, 0x00, 0x7A, 0x00, 0x70, 0x00, 0x66, + 0x00, 0x5E, 0x00, 0x56, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x3E, 0x00, 0x36, + 0x00, 0x2E, 0x00, 0x26, 0x01, 0x02, 0x00, 0xF6, 0x07, 0x22, 0x00, 0x03, + 0x05, 0xFB, 0x05, 0xFB, 0x07, 0x22, 0x00, 0x03, 0x05, 0xFB, 0x05, 0xEE, + 0x07, 0x22, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xFB, 0x07, 0x22, 0x00, 0x03, + 0x05, 0xEE, 0x05, 0xEE, 0x07, 0x2A, 0x00, 0x03, 0x05, 0xFB, 0x05, 0xF8, + 0x07, 0x2A, 0x00, 0x03, 0x05, 0xFB, 0x05, 0xEB, 0x07, 0x2A, 0x00, 0x03, + 0x05, 0xEE, 0x05, 0xF8, 0x07, 0x2A, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xEB, + 0x07, 0x2B, 0x00, 0x04, 0x05, 0xFB, 0x05, 0xFB, 0x05, 0xF8, 0x07, 0x2B, + 0x00, 0x04, 0x05, 0xFB, 0x05, 0xFB, 0x05, 0xEB, 0x07, 0x2B, 0x00, 0x04, + 0x05, 0xFB, 0x05, 0xEE, 0x05, 0xF8, 0x07, 0x2B, 0x00, 0x04, 0x05, 0xFB, + 0x05, 0xEE, 0x05, 0xEB, 0x07, 0x2B, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xFB, + 0x05, 0xF8, 0x07, 0x2B, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xFB, 0x05, 0xEB, + 0x07, 0x2B, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xF8, 0x07, 0x2B, + 0x00, 0x04, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEB, 0x00, 0x05, 0x00, 0x28, + 0x00, 0x20, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x07, 0x26, 0x00, 0x02, + 0x05, 0xF8, 0x07, 0x0E, 0x00, 0x02, 0x05, 0xEB, 0x07, 0x27, 0x00, 0x03, + 0x05, 0xFB, 0x05, 0xF8, 0x07, 0x27, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xF8, + 0x07, 0x0F, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xEB, 0x00, 0x07, 0x00, 0x38, + 0x00, 0x30, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, + 0x07, 0x29, 0x00, 0x02, 0x07, 0x24, 0x07, 0x15, 0x00, 0x02, 0x07, 0x0C, + 0x07, 0x28, 0x00, 0x02, 0x07, 0x23, 0x07, 0x14, 0x00, 0x02, 0x07, 0x0B, + 0x07, 0x0A, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xEE, 0x07, 0x16, 0x00, 0x03, + 0x05, 0xEE, 0x05, 0xEB, 0x07, 0x17, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xEE, + 0x05, 0xEB, 0x00, 0x01, 0x00, 0x08, 0x05, 0xEA, 0x05, 0xEE, 0x05, 0xF7, + 0x05, 0xFB, 0x07, 0x06, 0x07, 0x07, 0x07, 0x1E, 0x07, 0x1F, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x7E, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x07, 0x1E, 0x00, 0x02, + 0x05, 0xBD, 0x07, 0x1E, 0x00, 0x02, 0x05, 0xB1, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x82, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x06, 0x00, 0x02, 0x05, 0xB1, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x50, 0x00, 0x32, 0x00, 0x20, 0x00, 0x0E, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3C, 0x00, 0x34, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x50, 0x00, 0x4A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x18, 0x00, 0x10, 0x00, 0x01, + 0x00, 0x2E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x05, 0xB1, 0x05, 0xBD, + 0x00, 0x01, 0x00, 0x01, 0x05, 0xF7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x20, 0x00, 0x1A, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x05, 0x3B, 0x05, 0x5C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, + 0x05, 0xB1, 0x00, 0x01, 0x00, 0x01, 0x05, 0xEA, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x11, 0x26, 0x00, 0x08, 0x0E, 0x9E, + 0x0E, 0x20, 0x0E, 0x20, 0x0D, 0xC8, 0x0D, 0x70, 0x0D, 0x70, 0x0B, 0xC0, + 0x00, 0x16, 0x01, 0x00, 0x0B, 0xA0, 0x0B, 0x96, 0x0B, 0x8C, 0x0B, 0x82, + 0x0B, 0x78, 0x0B, 0x6E, 0x0B, 0x64, 0x0B, 0x5A, 0x0B, 0x50, 0x0B, 0x46, + 0x0B, 0x3C, 0x0B, 0x32, 0x0B, 0x28, 0x0B, 0x1E, 0x0B, 0x14, 0x0B, 0x0A, + 0x0B, 0x00, 0x0A, 0xF6, 0x0A, 0xEC, 0x0A, 0xE2, 0x0A, 0xD8, 0x0A, 0xCE, + 0x0A, 0xC4, 0x0A, 0xBA, 0x0A, 0xB0, 0x0A, 0xA6, 0x0A, 0x9C, 0x0A, 0x92, + 0x0A, 0x88, 0x0A, 0x7E, 0x0A, 0x74, 0x0A, 0x6A, 0x0A, 0x60, 0x0A, 0x56, + 0x0A, 0x4C, 0x0A, 0x42, 0x0A, 0x38, 0x0A, 0x2E, 0x0A, 0x24, 0x0A, 0x1A, + 0x0A, 0x10, 0x0A, 0x06, 0x09, 0xFC, 0x09, 0xF2, 0x09, 0xE8, 0x09, 0xDE, + 0x09, 0xD4, 0x09, 0xCA, 0x09, 0xC0, 0x09, 0xB6, 0x09, 0xAC, 0x09, 0xA2, + 0x09, 0x98, 0x09, 0x8E, 0x09, 0x84, 0x09, 0x7A, 0x09, 0x70, 0x09, 0x66, + 0x09, 0x5C, 0x09, 0x52, 0x09, 0x48, 0x09, 0x3E, 0x09, 0x34, 0x09, 0x2A, + 0x09, 0x20, 0x09, 0x16, 0x09, 0x0C, 0x09, 0x02, 0x08, 0xF8, 0x08, 0xEE, + 0x08, 0xE4, 0x08, 0xDA, 0x08, 0xD0, 0x08, 0xC6, 0x08, 0xBC, 0x08, 0xB2, + 0x08, 0xA8, 0x08, 0x9E, 0x08, 0x94, 0x08, 0x8A, 0x08, 0x80, 0x08, 0x76, + 0x08, 0x6C, 0x08, 0x62, 0x08, 0x58, 0x08, 0x4E, 0x08, 0x44, 0x08, 0x3A, + 0x08, 0x30, 0x08, 0x26, 0x08, 0x1C, 0x08, 0x12, 0x08, 0x08, 0x07, 0xFE, + 0x07, 0xF4, 0x07, 0xEA, 0x07, 0xE0, 0x07, 0xD6, 0x07, 0xCC, 0x07, 0xC2, + 0x07, 0xB8, 0x07, 0xAE, 0x07, 0xA4, 0x07, 0x9A, 0x07, 0x90, 0x07, 0x86, + 0x07, 0x7C, 0x07, 0x72, 0x07, 0x68, 0x07, 0x5E, 0x07, 0x54, 0x07, 0x4A, + 0x07, 0x40, 0x07, 0x36, 0x07, 0x2C, 0x07, 0x22, 0x07, 0x18, 0x07, 0x0E, + 0x07, 0x04, 0x06, 0xFA, 0x06, 0xF0, 0x06, 0xE6, 0x06, 0xDC, 0x06, 0xD2, + 0x06, 0xC8, 0x06, 0xBE, 0x06, 0xB4, 0x06, 0xAA, 0x06, 0xA0, 0x06, 0x96, + 0x06, 0x8C, 0x06, 0x82, 0x06, 0x78, 0x06, 0x6E, 0x06, 0x64, 0x06, 0x5A, + 0x06, 0x50, 0x06, 0x46, 0x06, 0x3C, 0x06, 0x32, 0x06, 0x28, 0x06, 0x1E, + 0x06, 0x14, 0x06, 0x0A, 0x06, 0x00, 0x05, 0xF6, 0x05, 0xEC, 0x05, 0xE2, + 0x05, 0xD8, 0x05, 0xCE, 0x05, 0xC4, 0x05, 0xBA, 0x05, 0xB0, 0x05, 0xA6, + 0x05, 0x9C, 0x05, 0x92, 0x05, 0x88, 0x05, 0x7E, 0x05, 0x74, 0x05, 0x6A, + 0x05, 0x60, 0x05, 0x56, 0x05, 0x4C, 0x05, 0x42, 0x05, 0x38, 0x05, 0x2E, + 0x05, 0x24, 0x05, 0x1A, 0x05, 0x10, 0x05, 0x06, 0x04, 0xFC, 0x04, 0xF2, + 0x04, 0xE8, 0x04, 0xDE, 0x04, 0xD4, 0x04, 0xCA, 0x04, 0xC0, 0x04, 0xB6, + 0x04, 0xAC, 0x04, 0xA2, 0x04, 0x98, 0x04, 0x8E, 0x04, 0x84, 0x04, 0x7A, + 0x04, 0x70, 0x04, 0x66, 0x04, 0x5C, 0x04, 0x52, 0x04, 0x48, 0x04, 0x3E, + 0x04, 0x34, 0x04, 0x2A, 0x04, 0x20, 0x04, 0x16, 0x04, 0x0C, 0x04, 0x02, + 0x03, 0xF8, 0x03, 0xEE, 0x03, 0xE4, 0x03, 0xDA, 0x03, 0xD0, 0x03, 0xC6, + 0x03, 0xBC, 0x03, 0xB2, 0x03, 0xA8, 0x03, 0x9E, 0x03, 0x94, 0x03, 0x8A, + 0x03, 0x80, 0x03, 0x76, 0x03, 0x6C, 0x03, 0x62, 0x03, 0x58, 0x03, 0x4E, + 0x03, 0x44, 0x03, 0x3A, 0x03, 0x32, 0x03, 0x2A, 0x03, 0x22, 0x03, 0x1A, + 0x03, 0x12, 0x03, 0x0A, 0x03, 0x02, 0x02, 0xFA, 0x02, 0xF2, 0x02, 0xEA, + 0x02, 0xE2, 0x02, 0xDA, 0x02, 0xD2, 0x02, 0xCA, 0x02, 0xC2, 0x02, 0xBA, + 0x02, 0xB2, 0x02, 0xAA, 0x02, 0xA2, 0x02, 0x9A, 0x02, 0x92, 0x02, 0x8A, + 0x02, 0x82, 0x02, 0x7A, 0x02, 0x72, 0x02, 0x6A, 0x02, 0x62, 0x02, 0x5A, + 0x02, 0x52, 0x02, 0x4A, 0x02, 0x42, 0x02, 0x3A, 0x02, 0x32, 0x02, 0x2A, + 0x02, 0x22, 0x02, 0x1A, 0x02, 0x14, 0x02, 0x0E, 0x02, 0x08, 0x02, 0x02, + 0x07, 0x1F, 0x00, 0x02, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x02, 0x05, 0xBE, + 0x07, 0x1F, 0x00, 0x02, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x02, 0x05, 0xB2, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xC0, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBE, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBD, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB1, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xB1, + 0x00, 0x26, 0x01, 0xA6, 0x01, 0x9C, 0x01, 0x92, 0x01, 0x88, 0x01, 0x7E, + 0x01, 0x74, 0x01, 0x6A, 0x01, 0x60, 0x01, 0x56, 0x01, 0x4C, 0x01, 0x42, + 0x01, 0x38, 0x01, 0x2E, 0x01, 0x24, 0x01, 0x1A, 0x01, 0x10, 0x01, 0x06, + 0x00, 0xFC, 0x00, 0xF2, 0x00, 0xE8, 0x00, 0xDE, 0x00, 0xD4, 0x00, 0xCA, + 0x00, 0xC0, 0x00, 0xB6, 0x00, 0xAC, 0x00, 0xA2, 0x00, 0x9A, 0x00, 0x92, + 0x00, 0x8A, 0x00, 0x82, 0x00, 0x7A, 0x00, 0x72, 0x00, 0x6A, 0x00, 0x62, + 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, 0x07, 0x07, 0x00, 0x02, 0x05, 0xB4, + 0x07, 0x07, 0x00, 0x02, 0x05, 0xB2, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB4, + 0x05, 0xB4, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB2, 0x07, 0x07, + 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB1, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB2, + 0x05, 0xB4, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x07, + 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB1, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB1, + 0x05, 0xB4, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB2, 0x07, 0x07, + 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xB1, + 0x00, 0x2B, 0x03, 0x52, 0x03, 0x48, 0x03, 0x3E, 0x03, 0x34, 0x03, 0x2A, + 0x03, 0x20, 0x03, 0x16, 0x03, 0x0C, 0x03, 0x02, 0x02, 0xF8, 0x02, 0xEE, + 0x02, 0xE4, 0x02, 0xDA, 0x02, 0xD0, 0x02, 0xC6, 0x02, 0xBC, 0x02, 0xB2, + 0x02, 0xA8, 0x02, 0x9E, 0x02, 0x94, 0x02, 0x8A, 0x02, 0x80, 0x02, 0x76, + 0x02, 0x6C, 0x02, 0x62, 0x02, 0x58, 0x02, 0x4E, 0x02, 0x44, 0x02, 0x3A, + 0x02, 0x30, 0x02, 0x26, 0x02, 0x1C, 0x02, 0x12, 0x02, 0x08, 0x01, 0xFE, + 0x01, 0xF4, 0x01, 0xD4, 0x01, 0xCC, 0x01, 0xC4, 0x01, 0xBC, 0x01, 0xB4, + 0x01, 0xAC, 0x01, 0x22, 0x00, 0x2B, 0x02, 0xFA, 0x02, 0xF0, 0x02, 0xE6, + 0x02, 0xDC, 0x02, 0xD2, 0x02, 0xC8, 0x02, 0xBE, 0x02, 0xB4, 0x02, 0xAA, + 0x02, 0xA0, 0x02, 0x96, 0x02, 0x8C, 0x02, 0x82, 0x02, 0x78, 0x02, 0x6E, + 0x02, 0x64, 0x02, 0x5A, 0x02, 0x50, 0x02, 0x46, 0x02, 0x3C, 0x02, 0x32, + 0x02, 0x28, 0x02, 0x1E, 0x02, 0x14, 0x02, 0x0A, 0x02, 0x00, 0x01, 0xF6, + 0x01, 0xEC, 0x01, 0xE2, 0x01, 0xD8, 0x01, 0xCE, 0x01, 0xC4, 0x01, 0xBA, + 0x01, 0xB0, 0x01, 0xA6, 0x01, 0x9C, 0x01, 0x7C, 0x01, 0x74, 0x01, 0x6C, + 0x01, 0x64, 0x01, 0x5C, 0x01, 0x54, 0x01, 0x48, 0x00, 0x38, 0x02, 0xFC, + 0x02, 0xF2, 0x02, 0xE8, 0x02, 0xDE, 0x02, 0xD4, 0x02, 0xCA, 0x02, 0xC0, + 0x02, 0xB6, 0x02, 0xAC, 0x02, 0xA2, 0x02, 0x98, 0x02, 0x8E, 0x02, 0x84, + 0x02, 0x7A, 0x02, 0x70, 0x02, 0x66, 0x02, 0x5C, 0x02, 0x52, 0x02, 0x48, + 0x02, 0x3E, 0x02, 0x34, 0x02, 0x2A, 0x02, 0x20, 0x02, 0x16, 0x02, 0x0C, + 0x02, 0x02, 0x01, 0xF8, 0x01, 0xEE, 0x01, 0xE4, 0x01, 0xDA, 0x01, 0xD0, + 0x01, 0xC6, 0x01, 0xBC, 0x01, 0xB2, 0x01, 0xA8, 0x01, 0x9E, 0x01, 0x94, + 0x01, 0x8A, 0x01, 0x80, 0x01, 0x76, 0x01, 0x6C, 0x01, 0x62, 0x01, 0x58, + 0x01, 0x4E, 0x01, 0x44, 0x01, 0x3C, 0x01, 0x34, 0x01, 0x2C, 0x01, 0x24, + 0x01, 0x1C, 0x01, 0x14, 0x01, 0x0C, 0x01, 0x04, 0x00, 0xFC, 0x00, 0x78, + 0x00, 0x72, 0x07, 0x24, 0x00, 0x02, 0x05, 0xF8, 0x07, 0x0C, 0x00, 0x02, + 0x05, 0xEB, 0x00, 0x38, 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6A, 0x02, 0x60, + 0x02, 0x56, 0x02, 0x4C, 0x02, 0x42, 0x02, 0x38, 0x02, 0x2E, 0x02, 0x24, + 0x02, 0x1A, 0x02, 0x10, 0x02, 0x06, 0x01, 0xFC, 0x01, 0xF2, 0x01, 0xE8, + 0x01, 0xDE, 0x01, 0xD4, 0x01, 0xCA, 0x01, 0xC0, 0x01, 0xB6, 0x01, 0xAC, + 0x01, 0xA2, 0x01, 0x98, 0x01, 0x8E, 0x01, 0x84, 0x01, 0x7A, 0x01, 0x70, + 0x01, 0x66, 0x01, 0x5C, 0x01, 0x52, 0x01, 0x48, 0x01, 0x3E, 0x01, 0x34, + 0x01, 0x2A, 0x01, 0x20, 0x01, 0x16, 0x01, 0x0C, 0x01, 0x02, 0x00, 0xF8, + 0x00, 0xEE, 0x00, 0xE4, 0x00, 0xDA, 0x00, 0xD0, 0x00, 0xC6, 0x00, 0xBE, + 0x00, 0xB6, 0x00, 0xAE, 0x00, 0xA6, 0x00, 0x9E, 0x00, 0x96, 0x00, 0x8E, + 0x00, 0x86, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, 0x07, 0x23, 0x00, 0x02, + 0x05, 0xF8, 0x07, 0x0B, 0x00, 0x02, 0x05, 0xEB, 0x07, 0x24, 0x00, 0x03, + 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x24, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xF8, + 0x07, 0x24, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xF8, 0x07, 0x24, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xF8, 0x07, 0x24, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xF8, + 0x07, 0x24, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x0C, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xEB, 0x07, 0x0C, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xEB, + 0x07, 0x0C, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xEB, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x0D, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB2, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, + 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xEB, + 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xEB, 0x07, 0x0D, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB2, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, + 0x05, 0xEB, 0x00, 0x01, 0x00, 0x08, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB4, + 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xEA, 0x05, 0xF7, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x6E, 0x00, 0x34, + 0x0B, 0x48, 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, 0x05, 0xA8, + 0x05, 0xA9, 0x05, 0xAA, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, + 0x05, 0xC1, 0x05, 0xC2, 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, + 0x05, 0xC7, 0x05, 0xE0, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xF9, 0x05, 0xFA, + 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, + 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, 0x07, 0x1E, 0x07, 0x1F, + 0x07, 0x20, 0x07, 0x21, 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, + 0x07, 0x26, 0x07, 0x27, 0x07, 0x2F, 0x07, 0x2C, 0x07, 0x2D, 0x07, 0x2E, + 0x07, 0x28, 0x07, 0x29, 0x07, 0x2A, 0x07, 0x2B, 0x00, 0x02, 0x00, 0x0A, + 0x05, 0x93, 0x05, 0x93, 0x00, 0x00, 0x05, 0x9B, 0x05, 0x9D, 0x00, 0x01, + 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x04, 0x05, 0xA1, 0x05, 0xA3, 0x00, 0x05, + 0x05, 0xB1, 0x05, 0xB4, 0x00, 0x08, 0x05, 0xB6, 0x05, 0xBC, 0x00, 0x0C, + 0x05, 0xDF, 0x05, 0xDF, 0x00, 0x13, 0x05, 0xEA, 0x05, 0xF6, 0x00, 0x14, + 0x06, 0x09, 0x06, 0x09, 0x00, 0x21, 0x07, 0x06, 0x07, 0x17, 0x00, 0x22, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x22, + 0x00, 0x0D, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x90, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x01, 0xA2, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x01, 0x00, 0x01, 0x06, 0xEF, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x12, 0x00, 0x01, 0x04, 0x6E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x2A, 0x00, 0x01, 0x00, 0x13, 0x06, 0x87, 0x06, 0x88, 0x06, 0x8A, + 0x06, 0x8C, 0x06, 0x8D, 0x06, 0x8F, 0x06, 0x91, 0x06, 0x92, 0x06, 0x94, + 0x06, 0x95, 0x06, 0x96, 0x06, 0x98, 0x06, 0x99, 0x06, 0x9A, 0x06, 0x9B, + 0x06, 0x9C, 0x06, 0x9D, 0x06, 0x9E, 0x06, 0xBA, 0x00, 0x06, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x04, 0x2A, + 0x00, 0x0A, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, + 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0xAC, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0xFE, 0x00, 0x09, 0x01, 0x10, + 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, + 0x01, 0x10, 0x01, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x03, 0xD4, 0x00, 0x08, 0x00, 0xE6, 0x00, 0xE6, 0x00, 0xE6, 0x00, 0xE6, + 0x00, 0xE6, 0x00, 0xE6, 0x00, 0xE6, 0x01, 0x56, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x24, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x03, 0xAC, 0x00, 0x07, 0x00, 0xBE, 0x00, 0xBE, + 0x00, 0xBE, 0x00, 0xBE, 0x00, 0xBE, 0x00, 0xBE, 0x01, 0x2E, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x22, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0x86, 0x00, 0x06, 0x00, 0x98, + 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x01, 0x08, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0x62, 0x00, 0x05, 0x00, 0x74, + 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0xE4, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x1E, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x03, 0x40, 0x00, 0x04, 0x00, 0x52, 0x00, 0x52, + 0x00, 0x52, 0x00, 0xC2, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x03, 0x20, 0x00, 0x03, 0x00, 0x32, 0x00, 0x32, 0x00, 0xA2, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x1A, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0x02, 0x00, 0x02, 0x00, 0x14, + 0x00, 0x84, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x01, 0x00, 0x11, + 0x06, 0xA1, 0x06, 0xA3, 0x06, 0xA5, 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, + 0x06, 0xAB, 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, 0x06, 0xB1, 0x06, 0xB2, + 0x06, 0xB3, 0x06, 0xB4, 0x06, 0xB5, 0x06, 0xB6, 0x06, 0xB7, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x02, 0xC0, 0x00, 0x11, + 0x06, 0xA1, 0x06, 0xA3, 0x06, 0xA5, 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, + 0x06, 0xAB, 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, 0x06, 0xB4, 0x06, 0xB5, + 0x06, 0xB7, 0x06, 0xB6, 0x06, 0xB3, 0x06, 0xB1, 0x06, 0xB2, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x02, 0x90, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x01, 0x00, 0x01, 0x06, 0x87, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x02, 0x3A, 0x00, 0xDA, 0x00, 0x06, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x02, 0x2C, 0x01, 0xF8, 0x01, 0xF0, + 0x01, 0xF8, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x15, 0x01, 0xC2, + 0x01, 0xA4, 0x01, 0x88, 0x01, 0x6C, 0x01, 0x52, 0x01, 0x38, 0x01, 0x20, + 0x01, 0x08, 0x00, 0xF2, 0x00, 0xDC, 0x00, 0xC8, 0x00, 0xB4, 0x00, 0xA2, + 0x00, 0x90, 0x00, 0x80, 0x00, 0x70, 0x00, 0x62, 0x00, 0x54, 0x00, 0x48, + 0x00, 0x3C, 0x00, 0x2C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x09, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x0B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x05, 0xAD, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x08, 0x05, 0x3B, 0x05, 0x3D, + 0x00, 0x01, 0x05, 0x3F, 0x05, 0x41, 0x00, 0x01, 0x05, 0x43, 0x05, 0x46, + 0x00, 0x01, 0x05, 0x9B, 0x05, 0x9C, 0x00, 0x01, 0x05, 0xAD, 0x05, 0xAD, + 0x00, 0x02, 0x05, 0xDB, 0x05, 0xDC, 0x00, 0x01, 0x05, 0xEE, 0x05, 0xEE, + 0x00, 0x01, 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x05, 0xAD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x28, 0x00, 0x11, 0x06, 0x88, 0x06, 0x8A, 0x06, 0x8C, 0x06, 0x8D, + 0x06, 0x8F, 0x06, 0x91, 0x06, 0x92, 0x06, 0x94, 0x06, 0x95, 0x06, 0x96, + 0x06, 0x9B, 0x06, 0x9C, 0x06, 0x9E, 0x06, 0x9D, 0x06, 0x9A, 0x06, 0x98, + 0x06, 0x99, 0x00, 0x01, 0x00, 0x11, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, + 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, + 0x05, 0x46, 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xEE, + 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x2C, 0x00, 0x13, 0x06, 0x18, 0x06, 0x19, 0x06, 0xA1, + 0x06, 0xA3, 0x06, 0xA5, 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, 0x06, 0xAB, + 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, 0x06, 0xB4, 0x06, 0xB5, 0x06, 0xB7, + 0x06, 0xB6, 0x06, 0xB3, 0x06, 0xB1, 0x06, 0xB2, 0x00, 0x01, 0x00, 0x13, + 0x02, 0xB1, 0x03, 0x05, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, + 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, + 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xEE, 0x05, 0xF0, + 0x05, 0xF1, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x5C, 0x00, 0x2B, 0x06, 0x56, 0x06, 0x57, 0x06, 0x58, 0x06, 0x59, + 0x06, 0x5A, 0x06, 0x5B, 0x06, 0x5C, 0x06, 0x5D, 0x06, 0x5E, 0x06, 0x5F, + 0x06, 0x60, 0x06, 0x61, 0x06, 0x62, 0x06, 0x63, 0x06, 0x64, 0x06, 0x65, + 0x06, 0x66, 0x06, 0x67, 0x06, 0x68, 0x06, 0x69, 0x06, 0x6A, 0x06, 0x6B, + 0x06, 0x6C, 0x06, 0x6D, 0x06, 0x6E, 0x06, 0x6F, 0x06, 0x70, 0x06, 0x72, + 0x06, 0x74, 0x06, 0x75, 0x06, 0x77, 0x06, 0x79, 0x06, 0x7A, 0x06, 0x7C, + 0x06, 0x7D, 0x06, 0x7E, 0x06, 0x80, 0x06, 0x81, 0x06, 0x82, 0x06, 0x83, + 0x06, 0x86, 0x06, 0x84, 0x06, 0x85, 0x00, 0x01, 0x00, 0x2B, 0x01, 0xFB, + 0x02, 0x42, 0x02, 0x4A, 0x02, 0x55, 0x02, 0x66, 0x02, 0x87, 0x02, 0x92, + 0x02, 0x9E, 0x02, 0xB1, 0x02, 0xCF, 0x02, 0xD7, 0x02, 0xE0, 0x02, 0xFE, + 0x03, 0x05, 0x03, 0x16, 0x03, 0x4B, 0x03, 0x51, 0x03, 0x54, 0x03, 0x67, + 0x03, 0x78, 0x03, 0x91, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, 0x03, 0xE4, + 0x03, 0xFC, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, + 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x9B, + 0x05, 0x9C, 0x05, 0x9D, 0x05, 0x9F, 0x05, 0xEE, 0x05, 0xF0, 0x05, 0xF1, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x12, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x09, 0x24, 0x00, 0x02, + 0x05, 0xE3, 0x00, 0x01, 0x00, 0x01, 0x01, 0x19, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x04, 0x02, 0xE7, 0x00, 0x02, 0x05, 0xE3, 0x00, 0x01, + 0x00, 0x01, 0x02, 0xE0, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x0A, 0x00, 0x02, 0x00, 0x26, 0x00, 0x12, 0x00, 0x01, + 0x00, 0x02, 0x01, 0x19, 0x02, 0xE0, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x02, 0x05, 0xE3, 0x00, 0x01, 0x02, 0xE0, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x0E, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x05, 0xE3, + 0x00, 0x01, 0x01, 0x19, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x03, 0x01, 0x90, 0x03, 0x6C, 0x03, 0x7F, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x05, 0xEE, 0x00, 0x3D, + 0x02, 0xCE, 0x02, 0xC4, 0x02, 0xBA, 0x02, 0xB0, 0x02, 0xA6, 0x02, 0x9C, + 0x02, 0x92, 0x02, 0x88, 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6A, 0x02, 0x60, + 0x02, 0x56, 0x02, 0x4C, 0x02, 0x42, 0x02, 0x38, 0x02, 0x2E, 0x02, 0x24, + 0x02, 0x1A, 0x02, 0x10, 0x02, 0x06, 0x01, 0xFC, 0x01, 0xF2, 0x01, 0xE8, + 0x01, 0xDE, 0x01, 0xD4, 0x01, 0xCA, 0x01, 0xC0, 0x01, 0xB6, 0x01, 0xAC, + 0x01, 0xA2, 0x01, 0x98, 0x01, 0x8E, 0x01, 0x84, 0x01, 0x7A, 0x01, 0x70, + 0x01, 0x66, 0x01, 0x5C, 0x01, 0x52, 0x01, 0x48, 0x01, 0x3E, 0x01, 0x34, + 0x01, 0x2A, 0x01, 0x20, 0x01, 0x16, 0x01, 0x0C, 0x01, 0x02, 0x00, 0xF8, + 0x00, 0xEE, 0x00, 0xE4, 0x00, 0xDA, 0x00, 0xD0, 0x00, 0xC6, 0x01, 0x16, + 0x00, 0xBC, 0x00, 0xB2, 0x00, 0xA8, 0x00, 0x9E, 0x00, 0x94, 0x00, 0x8A, + 0x00, 0x80, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA9, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xA8, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xA5, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xA4, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA3, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA7, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA6, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xA2, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xA1, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x9F, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x9E, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x9D, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x9C, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x9B, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x9A, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xA0, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x99, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x98, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x97, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x96, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x95, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x94, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x93, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x92, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x91, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x90, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x8F, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x8E, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x8D, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x8C, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x8B, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x8A, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x89, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x88, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x87, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x86, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x85, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x84, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x83, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x82, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x81, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x80, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x7F, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x7E, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x7D, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x7C, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x7B, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x7A, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x79, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x78, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x77, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x76, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x75, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x74, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x73, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x72, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x71, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x70, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x6F, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x6E, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x03, 0xC2, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x07, 0x6D, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x03, 0xA8, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x09, 0x00, 0x01, 0x00, 0x01, 0x07, 0x6B, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x02, 0xD8, 0x00, 0x3D, 0x02, 0xCE, + 0x02, 0xC4, 0x02, 0xBA, 0x02, 0xB0, 0x02, 0xA6, 0x02, 0x9C, 0x02, 0x92, + 0x02, 0x88, 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6A, 0x02, 0x60, 0x02, 0x56, + 0x02, 0x4C, 0x02, 0x42, 0x02, 0x38, 0x02, 0x2E, 0x02, 0x24, 0x02, 0x1A, + 0x02, 0x10, 0x02, 0x06, 0x01, 0xFC, 0x01, 0xF2, 0x01, 0xE8, 0x01, 0xDE, + 0x01, 0xD4, 0x01, 0xCA, 0x01, 0xC0, 0x01, 0xB6, 0x01, 0xAC, 0x01, 0xA2, + 0x01, 0x98, 0x01, 0x8E, 0x01, 0x84, 0x01, 0x7A, 0x01, 0x70, 0x01, 0x66, + 0x01, 0x5C, 0x01, 0x52, 0x01, 0x48, 0x01, 0x3E, 0x01, 0x34, 0x01, 0x2A, + 0x01, 0x20, 0x01, 0x16, 0x01, 0x0C, 0x01, 0x02, 0x00, 0xF8, 0x00, 0xEE, + 0x00, 0xE4, 0x00, 0xDA, 0x00, 0xD0, 0x00, 0xC6, 0x01, 0x16, 0x00, 0xBC, + 0x00, 0xB2, 0x00, 0xA8, 0x00, 0x9E, 0x00, 0x94, 0x00, 0x8A, 0x00, 0x80, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xE7, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xE6, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xE3, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xE2, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xE1, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xE5, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xE4, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xE0, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xDF, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDD, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDC, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDB, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xDA, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xD9, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xD8, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDE, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD7, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD6, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xD5, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xD4, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xD3, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD2, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD1, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD0, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xCF, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xCE, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xCD, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xCC, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xCB, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xCA, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xC9, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xC8, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xC7, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC6, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC5, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC4, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xC3, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xC2, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xC1, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC0, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xBF, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xBE, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xBD, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xBC, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xBB, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xBA, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB9, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB8, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xB7, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xB6, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xB5, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB4, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB3, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB2, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xB0, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xAF, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xAE, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xAD, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xAC, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xAB, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x3D, 0x00, 0x41, 0x00, 0x49, 0x00, 0x54, 0x00, 0x5F, + 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, 0x01, 0x0A, 0x01, 0x0F, + 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, 0x01, 0x77, 0x01, 0x7E, + 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, 0x01, 0xC8, 0x01, 0xCB, + 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, + 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, + 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, 0x05, 0x49, 0x05, 0x4A, 0x05, 0x4B, + 0x05, 0x4C, 0x05, 0x91, 0x05, 0x95, 0x05, 0xAB, 0x05, 0xAD, 0x05, 0xB1, + 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEE, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, + 0x05, 0xF3, 0x06, 0x87, 0x07, 0x06, 0x07, 0x0B, 0x07, 0x18, 0x07, 0x19, + 0x07, 0x1A, 0x07, 0x30, 0x07, 0x31, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x00, 0x2E, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xAA, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x05, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x14, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x0F, 0xC4, 0x00, 0x42, 0x0E, 0xE0, 0x0E, 0xD6, + 0x0E, 0xC4, 0x0E, 0xAA, 0x0E, 0x78, 0x0E, 0x46, 0x0D, 0x80, 0x0D, 0x76, + 0x0D, 0x3C, 0x0D, 0x0A, 0x0C, 0x86, 0x0C, 0x7C, 0x0C, 0x52, 0x0C, 0x18, + 0x0B, 0xFE, 0x0B, 0xB4, 0x0A, 0xC4, 0x0A, 0xBA, 0x0A, 0x90, 0x0A, 0x7E, + 0x0A, 0x3C, 0x09, 0xE6, 0x09, 0xAC, 0x08, 0xDE, 0x08, 0xB4, 0x08, 0xA2, + 0x08, 0x70, 0x08, 0x5E, 0x08, 0x0C, 0x07, 0xDA, 0x07, 0x38, 0x07, 0x2E, + 0x07, 0x1C, 0x07, 0x02, 0x06, 0xD0, 0x06, 0x9E, 0x06, 0x14, 0x06, 0x0A, + 0x06, 0x00, 0x05, 0xCE, 0x05, 0x94, 0x05, 0x7A, 0x05, 0x18, 0x05, 0x06, + 0x04, 0xDC, 0x04, 0x9A, 0x04, 0x90, 0x04, 0x76, 0x04, 0x2C, 0x03, 0x8A, + 0x03, 0x80, 0x03, 0x56, 0x03, 0x44, 0x03, 0x02, 0x02, 0xC0, 0x02, 0x7E, + 0x01, 0xC4, 0x01, 0x9A, 0x01, 0x88, 0x01, 0x4E, 0x01, 0x3C, 0x00, 0xE2, + 0x00, 0xB0, 0x00, 0x9E, 0x00, 0x94, 0x00, 0x8A, 0x00, 0x01, 0x00, 0x04, + 0x05, 0x57, 0x00, 0x02, 0x0A, 0x99, 0x00, 0x01, 0x00, 0x04, 0x05, 0x47, + 0x00, 0x02, 0x0A, 0x99, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x04, 0x28, + 0x00, 0x02, 0x0A, 0x8B, 0x04, 0x27, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x06, + 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, + 0x04, 0x06, 0x00, 0x02, 0x0B, 0x0C, 0x04, 0x05, 0x00, 0x02, 0x06, 0xED, + 0x04, 0x04, 0x00, 0x02, 0x0A, 0x8D, 0x04, 0x03, 0x00, 0x02, 0x0A, 0x8E, + 0x04, 0x02, 0x00, 0x02, 0x0A, 0x8C, 0x04, 0x01, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x0B, 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, + 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, + 0x03, 0xEC, 0x00, 0x02, 0x0A, 0x90, 0x03, 0xEB, 0x00, 0x02, 0x0A, 0x8C, + 0x03, 0xEA, 0x00, 0x02, 0x06, 0xEB, 0x03, 0xF0, 0x00, 0x02, 0x06, 0xEC, + 0x03, 0xEF, 0x00, 0x02, 0x0A, 0x91, 0x03, 0xEE, 0x00, 0x02, 0x06, 0xED, + 0x03, 0xED, 0x00, 0x02, 0x06, 0xE9, 0x03, 0xE9, 0x00, 0x02, 0x0A, 0x8D, + 0x03, 0xE5, 0x00, 0x02, 0x0A, 0x8B, 0x03, 0xFA, 0x00, 0x02, 0x0A, 0x96, + 0x03, 0xE8, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, + 0x03, 0xE1, 0x00, 0x02, 0x0A, 0x8B, 0x03, 0xE0, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, + 0x00, 0x16, 0x00, 0x10, 0x03, 0xDE, 0x00, 0x02, 0x0A, 0x90, 0x03, 0xDD, + 0x00, 0x02, 0x06, 0xED, 0x03, 0xDC, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0xD7, + 0x00, 0x02, 0x0A, 0x8B, 0x03, 0xDB, 0x00, 0x02, 0x06, 0xE8, 0x03, 0xDA, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0xD9, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x02, + 0x00, 0x0C, 0x00, 0x06, 0x03, 0xD5, 0x00, 0x02, 0x06, 0xED, 0x03, 0xD4, + 0x00, 0x02, 0x06, 0xEC, 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, + 0x00, 0x12, 0x00, 0x0C, 0x03, 0xB1, 0x00, 0x02, 0x06, 0xED, 0x03, 0xB0, + 0x00, 0x02, 0x06, 0xEC, 0x03, 0xAF, 0x00, 0x02, 0x0A, 0x91, 0x03, 0xAE, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0xAD, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x17, + 0x00, 0xB4, 0x00, 0xAE, 0x00, 0xA8, 0x00, 0xA2, 0x00, 0x9C, 0x00, 0x96, + 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, + 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, + 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x03, 0xA9, + 0x00, 0x02, 0x0A, 0xF1, 0x03, 0xA8, 0x00, 0x02, 0x0A, 0xFE, 0x03, 0xA7, + 0x00, 0x02, 0x0B, 0x14, 0x03, 0xA6, 0x00, 0x02, 0x0B, 0x02, 0x03, 0xA5, + 0x00, 0x02, 0x0A, 0xF8, 0x03, 0xA4, 0x00, 0x02, 0x06, 0xEA, 0x03, 0xA3, + 0x00, 0x02, 0x0A, 0xF0, 0x03, 0xA2, 0x00, 0x02, 0x0A, 0xEC, 0x03, 0xA1, + 0x00, 0x02, 0x0A, 0xEE, 0x03, 0xA0, 0x00, 0x02, 0x0A, 0xED, 0x03, 0x9F, + 0x00, 0x02, 0x0A, 0x8E, 0x03, 0xAC, 0x00, 0x02, 0x0A, 0x91, 0x03, 0xAB, + 0x00, 0x02, 0x06, 0xED, 0x03, 0x9E, 0x00, 0x02, 0x0A, 0x96, 0x03, 0x9D, + 0x00, 0x02, 0x0A, 0xF4, 0x03, 0x9C, 0x00, 0x02, 0x0A, 0x90, 0x03, 0x9B, + 0x00, 0x02, 0x0A, 0x8F, 0x03, 0x9A, 0x00, 0x02, 0x06, 0xEB, 0x03, 0x93, + 0x00, 0x02, 0x06, 0xEC, 0x03, 0x92, 0x00, 0x02, 0x0A, 0x8B, 0x03, 0x99, + 0x00, 0x02, 0x0A, 0x8D, 0x03, 0x98, 0x00, 0x02, 0x06, 0xE8, 0x03, 0x97, + 0x00, 0x02, 0x06, 0xE9, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x03, 0x86, + 0x00, 0x02, 0x0A, 0x8B, 0x03, 0x85, 0x00, 0x02, 0x0A, 0xFE, 0x03, 0x84, + 0x00, 0x02, 0x0B, 0x0C, 0x03, 0x83, 0x00, 0x02, 0x06, 0xED, 0x03, 0x82, + 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x7F, 0x00, 0x02, 0x0A, 0x95, 0x03, 0x81, + 0x00, 0x02, 0x06, 0xE7, 0x03, 0x80, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x08, + 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, + 0x00, 0x18, 0x00, 0x12, 0x03, 0x72, 0x00, 0x02, 0x0B, 0x19, 0x03, 0x70, + 0x00, 0x02, 0x06, 0xED, 0x03, 0x6F, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x6D, + 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x6E, 0x00, 0x02, 0x06, 0xE7, 0x03, 0x6C, + 0x00, 0x02, 0x0A, 0x95, 0x03, 0x6B, 0x00, 0x02, 0x0A, 0x8D, 0x03, 0x6A, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x03, 0x64, + 0x00, 0x02, 0x0B, 0x0C, 0x03, 0x62, 0x00, 0x02, 0x06, 0xED, 0x03, 0x61, + 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x60, 0x00, 0x02, 0x0A, 0xF8, 0x03, 0x5F, + 0x00, 0x02, 0x06, 0xEA, 0x03, 0x5E, 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x5D, + 0x00, 0x02, 0x06, 0xE7, 0x03, 0x5C, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x02, + 0x00, 0x0C, 0x00, 0x06, 0x03, 0x4F, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x4E, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, + 0x00, 0x12, 0x00, 0x0C, 0x03, 0x39, 0x00, 0x02, 0x06, 0xED, 0x03, 0x38, + 0x00, 0x02, 0x06, 0xEC, 0x03, 0x37, 0x00, 0x02, 0x0A, 0x91, 0x03, 0x36, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0x35, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, + 0x00, 0x04, 0x03, 0x3A, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x14, 0x00, 0x9C, + 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, + 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, + 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x03, 0x2B, 0x00, 0x02, 0x0B, 0x1E, 0x03, 0x2A, 0x00, 0x02, + 0x0A, 0xF1, 0x03, 0x29, 0x00, 0x02, 0x0A, 0xEF, 0x03, 0x28, 0x00, 0x02, + 0x0A, 0x8C, 0x03, 0x26, 0x00, 0x02, 0x0A, 0xED, 0x03, 0x25, 0x00, 0x02, + 0x0A, 0xF8, 0x03, 0x24, 0x00, 0x02, 0x06, 0xEA, 0x03, 0x22, 0x00, 0x02, + 0x0A, 0x96, 0x03, 0x21, 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x2F, 0x00, 0x02, + 0x0A, 0x91, 0x03, 0x2E, 0x00, 0x02, 0x06, 0xED, 0x03, 0x19, 0x00, 0x02, + 0x0A, 0x99, 0x03, 0x20, 0x00, 0x02, 0x0A, 0xF4, 0x03, 0x1F, 0x00, 0x02, + 0x0A, 0x8F, 0x03, 0x1E, 0x00, 0x02, 0x06, 0xEB, 0x03, 0x17, 0x00, 0x02, + 0x0A, 0x8B, 0x03, 0x18, 0x00, 0x02, 0x06, 0xEC, 0x03, 0x1D, 0x00, 0x02, + 0x0A, 0x8D, 0x03, 0x1C, 0x00, 0x02, 0x06, 0xE8, 0x03, 0x1B, 0x00, 0x02, + 0x06, 0xE9, 0x00, 0x09, 0x00, 0x44, 0x00, 0x3E, 0x00, 0x38, 0x00, 0x32, + 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x03, 0x13, + 0x00, 0x02, 0x0A, 0xFE, 0x03, 0x12, 0x00, 0x02, 0x0B, 0x0C, 0x03, 0x11, + 0x00, 0x02, 0x06, 0xED, 0x03, 0x10, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x0F, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0x0E, 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x0D, + 0x00, 0x02, 0x06, 0xE7, 0x03, 0x0C, 0x00, 0x02, 0x06, 0xE8, 0x03, 0x06, + 0x00, 0x02, 0x06, 0xEC, 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, + 0x03, 0x04, 0x00, 0x02, 0x06, 0xED, 0x03, 0x03, 0x00, 0x02, 0x0A, 0x8C, + 0x03, 0x02, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x04, 0x02, 0xF0, + 0x00, 0x02, 0x0A, 0x99, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x02, 0xEE, + 0x00, 0x02, 0x0A, 0xFE, 0x02, 0xED, 0x00, 0x02, 0x0B, 0x0C, 0x02, 0xEB, + 0x00, 0x02, 0x06, 0xED, 0x02, 0xE1, 0x00, 0x02, 0x0A, 0x99, 0x02, 0xE7, + 0x00, 0x02, 0x0A, 0x8C, 0x02, 0xE9, 0x00, 0x02, 0x06, 0xE7, 0x02, 0xE8, + 0x00, 0x02, 0x06, 0xE8, 0x02, 0xEA, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x05, + 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x02, 0xDD, + 0x00, 0x02, 0x0B, 0x0C, 0x02, 0xDC, 0x00, 0x02, 0x06, 0xED, 0x02, 0xDB, + 0x00, 0x02, 0x06, 0xE8, 0x02, 0xDA, 0x00, 0x02, 0x0A, 0x8E, 0x02, 0xD9, + 0x00, 0x02, 0x06, 0xE7, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x02, 0xD3, + 0x00, 0x02, 0x0A, 0x8E, 0x02, 0xD2, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x0C, + 0x00, 0x5C, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4A, 0x00, 0x44, 0x00, 0x3E, + 0x00, 0x38, 0x00, 0x32, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, + 0x02, 0xB5, 0x00, 0x02, 0x0A, 0xEE, 0x02, 0xC3, 0x00, 0x02, 0x0A, 0xF8, + 0x02, 0xC2, 0x00, 0x02, 0x06, 0xEA, 0x02, 0xC1, 0x00, 0x02, 0x0A, 0x8E, + 0x02, 0xC4, 0x00, 0x02, 0x0A, 0x91, 0x02, 0xBE, 0x00, 0x02, 0x0A, 0x8F, + 0x02, 0xBD, 0x00, 0x02, 0x06, 0xEB, 0x02, 0xB6, 0x00, 0x02, 0x06, 0xEC, + 0x02, 0xB4, 0x00, 0x02, 0x0A, 0x8B, 0x02, 0xBC, 0x00, 0x02, 0x0A, 0x8D, + 0x02, 0xBB, 0x00, 0x02, 0x06, 0xE8, 0x02, 0xBA, 0x00, 0x02, 0x06, 0xE9, + 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x02, 0xB7, 0x00, 0x02, + 0x0B, 0x14, 0x02, 0xC5, 0x00, 0x02, 0x06, 0xED, 0x02, 0xC0, 0x00, 0x02, + 0x0A, 0x96, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, + 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x02, 0xAF, 0x00, 0x02, 0x0B, 0x0C, + 0x02, 0xAE, 0x00, 0x02, 0x0A, 0xFA, 0x02, 0xAD, 0x00, 0x02, 0x0A, 0x8B, + 0x02, 0xAC, 0x00, 0x02, 0x06, 0xED, 0x02, 0xAB, 0x00, 0x02, 0x0A, 0x8C, + 0x02, 0xAA, 0x00, 0x02, 0x0A, 0x8E, 0x02, 0xA9, 0x00, 0x02, 0x0A, 0x8D, + 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, + 0x00, 0x0E, 0x02, 0x9B, 0x00, 0x02, 0x06, 0xEB, 0x02, 0x9A, 0x00, 0x02, + 0x06, 0xE8, 0x02, 0x99, 0x00, 0x02, 0x0A, 0x8E, 0x02, 0x97, 0x00, 0x02, + 0x0A, 0x8C, 0x02, 0x96, 0x00, 0x02, 0x0A, 0x8F, 0x02, 0x95, 0x00, 0x02, + 0x0A, 0x8D, 0x00, 0x01, 0x00, 0x04, 0x02, 0x8F, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x01, 0x00, 0x04, 0x02, 0x90, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x11, + 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, + 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, + 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x02, 0x77, + 0x00, 0x02, 0x0B, 0x14, 0x02, 0x76, 0x00, 0x02, 0x0A, 0xFE, 0x02, 0x73, + 0x00, 0x02, 0x0A, 0x95, 0x02, 0x72, 0x00, 0x02, 0x0A, 0xF8, 0x02, 0x71, + 0x00, 0x02, 0x06, 0xEA, 0x02, 0x7B, 0x00, 0x02, 0x06, 0xEC, 0x02, 0x7A, + 0x00, 0x02, 0x0A, 0x91, 0x02, 0x79, 0x00, 0x02, 0x06, 0xED, 0x02, 0x70, + 0x00, 0x02, 0x0A, 0x8E, 0x02, 0x6F, 0x00, 0x02, 0x0A, 0x96, 0x02, 0x6E, + 0x00, 0x02, 0x0A, 0x8C, 0x02, 0x6D, 0x00, 0x02, 0x0A, 0x8F, 0x02, 0x6C, + 0x00, 0x02, 0x06, 0xEB, 0x02, 0x67, 0x00, 0x02, 0x0A, 0x8B, 0x02, 0x6B, + 0x00, 0x02, 0x0A, 0x8D, 0x02, 0x6A, 0x00, 0x02, 0x06, 0xE8, 0x02, 0x69, + 0x00, 0x02, 0x06, 0xE9, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, + 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x02, 0x60, 0x00, 0x02, 0x0A, 0xFE, + 0x02, 0x5F, 0x00, 0x02, 0x06, 0xE7, 0x02, 0x5E, 0x00, 0x02, 0x0B, 0x0C, + 0x02, 0x5D, 0x00, 0x02, 0x06, 0xED, 0x02, 0x5C, 0x00, 0x02, 0x0A, 0x8C, + 0x02, 0x5B, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, + 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x02, 0x51, 0x00, 0x02, + 0x0A, 0x8E, 0x02, 0x50, 0x00, 0x02, 0x0A, 0x8C, 0x02, 0x4F, 0x00, 0x02, + 0x0A, 0x8D, 0x02, 0x4E, 0x00, 0x02, 0x06, 0xE8, 0x02, 0x4B, 0x00, 0x02, + 0x0A, 0x99, 0x02, 0x4D, 0x00, 0x02, 0x0A, 0x95, 0x00, 0x03, 0x00, 0x14, + 0x00, 0x0E, 0x00, 0x08, 0x02, 0x48, 0x00, 0x02, 0x0B, 0x0C, 0x02, 0x47, + 0x00, 0x02, 0x06, 0xED, 0x02, 0x46, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x02, + 0x00, 0x0C, 0x00, 0x06, 0x02, 0x20, 0x00, 0x02, 0x06, 0xEB, 0x02, 0x21, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x04, 0x02, 0x18, 0x00, 0x02, + 0x0A, 0x90, 0x00, 0x14, 0x00, 0x9C, 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, + 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, + 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, + 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x02, 0x19, 0x00, 0x02, + 0x0B, 0x11, 0x02, 0x0D, 0x00, 0x02, 0x0A, 0x8C, 0x02, 0x12, 0x00, 0x02, + 0x0A, 0xF8, 0x02, 0x0A, 0x00, 0x02, 0x06, 0xEA, 0x02, 0x0F, 0x00, 0x02, + 0x0A, 0xEF, 0x02, 0x0C, 0x00, 0x02, 0x0A, 0xED, 0x02, 0x03, 0x00, 0x02, + 0x0A, 0x8E, 0x02, 0x01, 0x00, 0x02, 0x0B, 0x4A, 0x02, 0x11, 0x00, 0x02, + 0x0A, 0x91, 0x02, 0x0E, 0x00, 0x02, 0x06, 0xED, 0x02, 0x14, 0x00, 0x02, + 0x0A, 0x96, 0x01, 0xFD, 0x00, 0x02, 0x0A, 0x8F, 0x02, 0x13, 0x00, 0x02, + 0x06, 0xEB, 0x02, 0x17, 0x00, 0x02, 0x0B, 0x1B, 0x02, 0x16, 0x00, 0x02, + 0x0A, 0x90, 0x02, 0x0B, 0x00, 0x02, 0x0A, 0x8B, 0x02, 0x1A, 0x00, 0x02, + 0x06, 0xEC, 0x02, 0x04, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xFC, 0x00, 0x02, + 0x06, 0xE8, 0x02, 0x10, 0x00, 0x02, 0x06, 0xE9, 0x00, 0x06, 0x00, 0x2C, + 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x01, 0xF6, + 0x00, 0x02, 0x0B, 0x0C, 0x01, 0xF5, 0x00, 0x02, 0x06, 0xED, 0x01, 0xF4, + 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xF3, 0x00, 0x02, 0x0A, 0x8E, 0x01, 0xF2, + 0x00, 0x02, 0x0A, 0x8C, 0x01, 0xF1, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x0A, + 0x00, 0x4C, 0x00, 0x46, 0x00, 0x40, 0x00, 0x3A, 0x00, 0x34, 0x00, 0x2E, + 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x01, 0xDE, 0x00, 0x02, + 0x0A, 0x8C, 0x01, 0xDD, 0x00, 0x02, 0x06, 0xEB, 0x01, 0xE2, 0x00, 0x02, + 0x06, 0xEC, 0x01, 0xE1, 0x00, 0x02, 0x0A, 0x91, 0x01, 0xE0, 0x00, 0x02, + 0x06, 0xED, 0x01, 0xDF, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xDC, 0x00, 0x02, + 0x0A, 0x8B, 0x01, 0xDB, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xEF, 0x00, 0x02, + 0x0A, 0x96, 0x01, 0xDA, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x02, 0x00, 0x0C, + 0x00, 0x06, 0x01, 0xD4, 0x00, 0x02, 0x0A, 0x8B, 0x01, 0xD3, 0x00, 0x02, + 0x0A, 0x8C, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, + 0x00, 0x14, 0x00, 0x0E, 0x01, 0xD1, 0x00, 0x02, 0x06, 0xED, 0x01, 0xD0, + 0x00, 0x02, 0x0A, 0x8C, 0x01, 0xCF, 0x00, 0x02, 0x0A, 0x8B, 0x01, 0xCE, + 0x00, 0x02, 0x06, 0xE8, 0x01, 0xCD, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xCC, + 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x01, 0xCA, + 0x00, 0x02, 0x06, 0xED, 0x01, 0xC9, 0x00, 0x02, 0x06, 0xEC, 0x00, 0x05, + 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x01, 0xC6, + 0x00, 0x02, 0x06, 0xED, 0x01, 0xC5, 0x00, 0x02, 0x06, 0xEC, 0x01, 0xC4, + 0x00, 0x02, 0x0A, 0x91, 0x01, 0xC3, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xC2, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x18, 0x00, 0xC6, 0x00, 0xBE, 0x00, 0xB6, + 0x00, 0xAE, 0x00, 0xA6, 0x00, 0x9E, 0x00, 0x98, 0x00, 0x92, 0x00, 0x8C, + 0x00, 0x86, 0x00, 0x80, 0x00, 0x7A, 0x00, 0x74, 0x00, 0x6E, 0x00, 0x68, + 0x00, 0x62, 0x00, 0x5C, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4A, 0x00, 0x44, + 0x00, 0x3E, 0x00, 0x38, 0x00, 0x32, 0x01, 0xBD, 0x00, 0x02, 0x0A, 0xFE, + 0x01, 0xBC, 0x00, 0x02, 0x0B, 0x14, 0x01, 0xBB, 0x00, 0x02, 0x0B, 0x02, + 0x01, 0xBA, 0x00, 0x02, 0x0A, 0xF8, 0x01, 0xB9, 0x00, 0x02, 0x06, 0xEA, + 0x01, 0xB4, 0x00, 0x02, 0x0A, 0x8E, 0x01, 0xC1, 0x00, 0x02, 0x0A, 0x91, + 0x01, 0xC0, 0x00, 0x02, 0x06, 0xED, 0x01, 0xB3, 0x00, 0x02, 0x0A, 0x96, + 0x01, 0xB2, 0x00, 0x02, 0x0A, 0xF4, 0x01, 0xB1, 0x00, 0x02, 0x0A, 0x90, + 0x01, 0xB0, 0x00, 0x02, 0x0A, 0x8F, 0x01, 0xAF, 0x00, 0x02, 0x06, 0xEB, + 0x01, 0xAE, 0x00, 0x02, 0x06, 0xEC, 0x01, 0xAD, 0x00, 0x02, 0x0A, 0x8B, + 0x01, 0xAC, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xAB, 0x00, 0x02, 0x06, 0xE8, + 0x01, 0xAA, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xBF, 0x00, 0x03, 0x06, 0xEB, + 0x0A, 0x8B, 0x01, 0xBE, 0x00, 0x03, 0x06, 0xEC, 0x06, 0xE8, 0x01, 0xB8, + 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xE9, 0x01, 0xB7, 0x00, 0x03, 0x0A, 0x8B, + 0x0A, 0x8E, 0x01, 0xB6, 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xE8, 0x01, 0xB5, + 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xEB, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, + 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x01, 0xA2, + 0x00, 0x02, 0x0A, 0xFE, 0x01, 0xA1, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0xA0, + 0x00, 0x02, 0x06, 0xED, 0x01, 0x9F, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x9D, + 0x00, 0x02, 0x0A, 0x8E, 0x01, 0x9C, 0x00, 0x02, 0x0A, 0x95, 0x01, 0x9E, + 0x00, 0x02, 0x06, 0xE7, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x40, + 0x00, 0x3A, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, + 0x00, 0x16, 0x01, 0x96, 0x00, 0x02, 0x0B, 0x1A, 0x01, 0x94, 0x00, 0x02, + 0x06, 0xED, 0x01, 0x93, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x91, 0x00, 0x02, + 0x0A, 0x8E, 0x01, 0x92, 0x00, 0x02, 0x06, 0xE7, 0x01, 0x90, 0x00, 0x02, + 0x0A, 0x95, 0x01, 0x8F, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0x8E, 0x00, 0x02, + 0x06, 0xE8, 0x01, 0x96, 0x00, 0x03, 0x0A, 0x8E, 0x0A, 0x8C, 0x01, 0x95, + 0x00, 0x03, 0x06, 0xE8, 0x0A, 0x8C, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, + 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, + 0x01, 0x89, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x87, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x86, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x85, 0x00, 0x02, 0x0A, 0xF8, + 0x01, 0x84, 0x00, 0x02, 0x06, 0xEA, 0x01, 0x83, 0x00, 0x02, 0x0A, 0x8E, + 0x01, 0x82, 0x00, 0x02, 0x06, 0xE7, 0x01, 0x81, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x01, 0x79, 0x00, 0x02, 0x0A, 0x8C, + 0x01, 0x78, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, + 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x01, 0x64, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x63, 0x00, 0x02, 0x06, 0xEC, 0x01, 0x62, 0x00, 0x02, 0x0A, 0x91, + 0x01, 0x61, 0x00, 0x02, 0x06, 0xE9, 0x01, 0x60, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x01, 0x00, 0x04, 0x01, 0x65, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x1B, + 0x00, 0xE8, 0x00, 0xE0, 0x00, 0xD8, 0x00, 0xD0, 0x00, 0xC8, 0x00, 0xC0, + 0x00, 0xB8, 0x00, 0xB0, 0x00, 0xA8, 0x00, 0xA0, 0x00, 0x98, 0x00, 0x92, + 0x00, 0x8C, 0x00, 0x86, 0x00, 0x80, 0x00, 0x7A, 0x00, 0x74, 0x00, 0x6E, + 0x00, 0x68, 0x00, 0x62, 0x00, 0x5C, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4A, + 0x00, 0x44, 0x00, 0x3E, 0x00, 0x38, 0x01, 0x53, 0x00, 0x02, 0x0A, 0x8C, + 0x01, 0x50, 0x00, 0x02, 0x0A, 0xF8, 0x01, 0x4F, 0x00, 0x02, 0x06, 0xEA, + 0x01, 0x4D, 0x00, 0x02, 0x0A, 0x96, 0x01, 0x4C, 0x00, 0x02, 0x0A, 0x8E, + 0x01, 0x5A, 0x00, 0x02, 0x0A, 0x91, 0x01, 0x59, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x44, 0x00, 0x02, 0x0A, 0x99, 0x01, 0x4B, 0x00, 0x02, 0x0A, 0xF4, + 0x01, 0x4A, 0x00, 0x02, 0x0A, 0x8F, 0x01, 0x49, 0x00, 0x02, 0x06, 0xEB, + 0x01, 0x42, 0x00, 0x02, 0x0A, 0x8B, 0x01, 0x43, 0x00, 0x02, 0x06, 0xEC, + 0x01, 0x48, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0x47, 0x00, 0x02, 0x06, 0xE8, + 0x01, 0x46, 0x00, 0x02, 0x06, 0xE9, 0x01, 0x58, 0x00, 0x03, 0x06, 0xEB, + 0x06, 0xE8, 0x01, 0x57, 0x00, 0x03, 0x06, 0xEB, 0x06, 0xE9, 0x01, 0x56, + 0x00, 0x03, 0x06, 0xEC, 0x0A, 0x8B, 0x01, 0x55, 0x00, 0x03, 0x06, 0xEC, + 0x06, 0xE8, 0x01, 0x54, 0x00, 0x03, 0x0A, 0x8C, 0x06, 0xEB, 0x01, 0x52, + 0x00, 0x03, 0x06, 0xEC, 0x06, 0xEB, 0x01, 0x51, 0x00, 0x03, 0x0A, 0x8B, + 0x06, 0xEB, 0x01, 0x5E, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xEC, 0x01, 0x5D, + 0x00, 0x03, 0x0A, 0x8D, 0x0A, 0x91, 0x01, 0x5C, 0x00, 0x03, 0x0A, 0x8D, + 0x06, 0xE9, 0x01, 0x5B, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE8, 0x00, 0x09, + 0x00, 0x44, 0x00, 0x3E, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2C, 0x00, 0x26, + 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x01, 0x35, 0x00, 0x02, 0x0A, 0xFE, + 0x01, 0x34, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x33, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x32, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x31, 0x00, 0x02, 0x06, 0xE9, + 0x01, 0x30, 0x00, 0x02, 0x0A, 0x8E, 0x01, 0x2F, 0x00, 0x02, 0x06, 0xE7, + 0x01, 0x2E, 0x00, 0x02, 0x06, 0xE8, 0x01, 0x2D, 0x00, 0x02, 0x06, 0xEC, + 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x01, 0x27, 0x00, 0x02, + 0x06, 0xED, 0x01, 0x26, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x25, 0x00, 0x02, + 0x06, 0xE8, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, + 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x01, 0x20, 0x00, 0x02, 0x0A, 0xFE, + 0x01, 0x1F, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x1D, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x21, 0x00, 0x02, 0x0A, 0x99, 0x09, 0x24, 0x00, 0x02, 0x0A, 0x8C, + 0x01, 0x1B, 0x00, 0x02, 0x06, 0xE7, 0x01, 0x1A, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, + 0x01, 0x14, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x13, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x12, 0x00, 0x02, 0x06, 0xE8, 0x01, 0x11, 0x00, 0x02, 0x0A, 0x8E, + 0x01, 0x10, 0x00, 0x02, 0x06, 0xE7, 0x00, 0x01, 0x00, 0x04, 0x01, 0x0B, + 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x10, 0x00, 0x7C, 0x00, 0x76, 0x00, 0x70, + 0x00, 0x6A, 0x00, 0x64, 0x00, 0x5E, 0x00, 0x58, 0x00, 0x52, 0x00, 0x4C, + 0x00, 0x46, 0x00, 0x40, 0x00, 0x3A, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, + 0x00, 0x22, 0x00, 0xCA, 0x00, 0x02, 0x0B, 0x14, 0x00, 0xD5, 0x00, 0x02, + 0x0A, 0xF8, 0x00, 0xD4, 0x00, 0x02, 0x06, 0xEA, 0x00, 0xD3, 0x00, 0x02, + 0x0A, 0x8E, 0x00, 0xD7, 0x00, 0x02, 0x06, 0xED, 0x00, 0xD6, 0x00, 0x02, + 0x0A, 0x91, 0x00, 0xD2, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0xD1, 0x00, 0x02, + 0x0A, 0x96, 0x00, 0xD0, 0x00, 0x02, 0x0A, 0x8F, 0x00, 0xCF, 0x00, 0x02, + 0x06, 0xEB, 0x00, 0xCE, 0x00, 0x02, 0x06, 0xEC, 0x00, 0xC7, 0x00, 0x02, + 0x0A, 0x8B, 0x00, 0xCD, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0xCC, 0x00, 0x02, + 0x06, 0xE8, 0x00, 0xCB, 0x00, 0x02, 0x06, 0xE9, 0x00, 0xC8, 0x00, 0x03, + 0x0A, 0x8B, 0x06, 0xE8, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, + 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x00, 0xA8, 0x00, 0x02, 0x0A, 0xFA, + 0x00, 0xA7, 0x00, 0x02, 0x0A, 0x8B, 0x00, 0xA6, 0x00, 0x02, 0x06, 0xED, + 0x00, 0xA5, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0xA4, 0x00, 0x02, 0x0A, 0x8E, + 0x00, 0xA3, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, + 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x96, + 0x00, 0x02, 0x06, 0xEB, 0x00, 0x95, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x94, + 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x93, 0x00, 0x02, 0x06, 0xE7, 0x00, 0x92, + 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x91, 0x00, 0x02, 0x0A, 0x8F, 0x00, 0x90, + 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x01, 0x00, 0x04, 0x00, 0x8B, 0x00, 0x02, + 0x0A, 0x8C, 0x00, 0x17, 0x00, 0xBE, 0x00, 0xB6, 0x00, 0xAE, 0x00, 0xA6, + 0x00, 0x9E, 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, + 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, + 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, + 0x00, 0x30, 0x00, 0x6F, 0x00, 0x02, 0x0B, 0x14, 0x00, 0x6E, 0x00, 0x02, + 0x0A, 0xFE, 0x00, 0x6B, 0x00, 0x02, 0x0A, 0x95, 0x00, 0x6A, 0x00, 0x02, + 0x0A, 0xF8, 0x00, 0x69, 0x00, 0x02, 0x06, 0xEA, 0x00, 0x73, 0x00, 0x02, + 0x06, 0xEC, 0x00, 0x72, 0x00, 0x02, 0x0A, 0x91, 0x00, 0x71, 0x00, 0x02, + 0x06, 0xED, 0x00, 0x68, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x67, 0x00, 0x02, + 0x0A, 0x96, 0x00, 0x66, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x65, 0x00, 0x02, + 0x0A, 0x8F, 0x00, 0x64, 0x00, 0x02, 0x06, 0xEB, 0x00, 0x63, 0x00, 0x02, + 0x0A, 0x8B, 0x00, 0x62, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x61, 0x00, 0x02, + 0x06, 0xE8, 0x00, 0x60, 0x00, 0x02, 0x06, 0xE9, 0x00, 0x6D, 0x00, 0x03, + 0x06, 0xEB, 0x06, 0xE8, 0x00, 0x6C, 0x00, 0x03, 0x06, 0xEB, 0x06, 0xE9, + 0x00, 0x77, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xEC, 0x00, 0x76, 0x00, 0x03, + 0x0A, 0x8D, 0x0A, 0x91, 0x00, 0x75, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE9, + 0x00, 0x74, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE8, 0x00, 0x06, 0x00, 0x2C, + 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x5B, + 0x00, 0x02, 0x0A, 0xFE, 0x00, 0x5A, 0x00, 0x02, 0x06, 0xE7, 0x00, 0x59, + 0x00, 0x02, 0x0B, 0x0C, 0x00, 0x58, 0x00, 0x02, 0x06, 0xED, 0x00, 0x57, + 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x56, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x06, + 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, + 0x00, 0x4F, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x4E, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x4D, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x4C, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x51, 0x00, 0x02, 0x0A, 0x99, 0x00, 0x4B, 0x00, 0x02, 0x0A, 0x95, + 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x00, 0x44, 0x00, 0x02, + 0x0B, 0x0C, 0x00, 0x43, 0x00, 0x02, 0x06, 0xED, 0x00, 0x42, 0x00, 0x02, + 0x0A, 0x8C, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x00, 0x3E, 0x00, 0x02, + 0x06, 0xEB, 0x00, 0x3F, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x04, + 0x00, 0x0A, 0x00, 0x02, 0x0A, 0x90, 0x00, 0x1A, 0x00, 0xDC, 0x00, 0xD4, + 0x00, 0xCC, 0x00, 0xC4, 0x00, 0xBC, 0x00, 0xB4, 0x00, 0xAC, 0x00, 0xA4, + 0x00, 0x9C, 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, + 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, + 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, + 0x00, 0x14, 0x00, 0x02, 0x0B, 0x11, 0x00, 0x13, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x12, 0x00, 0x02, 0x0A, 0xF8, 0x00, 0x11, 0x00, 0x02, 0x06, 0xEA, + 0x00, 0x0E, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x16, 0x00, 0x02, 0x0A, 0x91, + 0x00, 0x15, 0x00, 0x02, 0x06, 0xED, 0x00, 0x0D, 0x00, 0x02, 0x0A, 0x96, + 0x00, 0x0C, 0x00, 0x02, 0x0A, 0x8F, 0x00, 0x0B, 0x00, 0x02, 0x06, 0xEB, + 0x00, 0x09, 0x00, 0x02, 0x0B, 0x1C, 0x00, 0x08, 0x00, 0x02, 0x0A, 0x90, + 0x00, 0x03, 0x00, 0x02, 0x0A, 0x8B, 0x00, 0x04, 0x00, 0x02, 0x06, 0xEC, + 0x00, 0x07, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x06, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x05, 0x00, 0x02, 0x06, 0xE9, 0x00, 0x10, 0x00, 0x03, 0x0A, 0x8C, + 0x06, 0xEB, 0x00, 0x0F, 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xEB, 0x00, 0x1E, + 0x00, 0x03, 0x0A, 0x8F, 0x0A, 0x91, 0x00, 0x1D, 0x00, 0x03, 0x0A, 0x8F, + 0x06, 0xE9, 0x00, 0x1C, 0x00, 0x03, 0x0A, 0x8F, 0x06, 0xE8, 0x00, 0x1A, + 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xEC, 0x00, 0x19, 0x00, 0x03, 0x0A, 0x8D, + 0x0A, 0x91, 0x00, 0x18, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE9, 0x00, 0x17, + 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x42, 0x00, 0x02, + 0x00, 0x0D, 0x00, 0x3D, 0x00, 0x41, 0x00, 0x49, 0x00, 0x54, 0x00, 0x5F, + 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, 0x01, 0x0A, 0x01, 0x0F, + 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, 0x01, 0x44, 0x01, 0x45, + 0x01, 0x77, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, 0x01, 0xA9, + 0x01, 0xC8, 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x01, 0xFB, + 0x02, 0x14, 0x02, 0x1F, 0x02, 0x42, 0x02, 0x4A, 0x02, 0x55, 0x02, 0x66, + 0x02, 0x87, 0x02, 0x8D, 0x02, 0x92, 0x02, 0x9E, 0x02, 0xB1, 0x02, 0xB2, + 0x02, 0xC7, 0x02, 0xD7, 0x02, 0xE0, 0x02, 0xEF, 0x02, 0xFE, 0x03, 0x05, + 0x03, 0x16, 0x03, 0x19, 0x03, 0x1A, 0x03, 0x4B, 0x03, 0x54, 0x03, 0x67, + 0x03, 0x78, 0x03, 0x91, 0x03, 0x94, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, + 0x03, 0xE4, 0x03, 0xFC, 0x04, 0x26, 0x05, 0x3B, 0x05, 0x4D, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x01, 0x6C, 0x00, 0x0C, + 0x02, 0xB2, 0x02, 0xB8, 0x0B, 0x43, 0x02, 0xBF, 0x02, 0xC6, 0x02, 0xCA, + 0x02, 0xB2, 0x02, 0xC7, 0x02, 0xD0, 0x02, 0xC7, 0x02, 0xC7, 0x0B, 0x44, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x01, 0x46, + 0x01, 0x42, 0x00, 0xF6, 0x00, 0x38, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x26, + 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, + 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x02, 0x00, 0x1F, 0x06, 0xE8, 0x06, 0xEC, + 0x00, 0x01, 0x0A, 0x4F, 0x0A, 0x5B, 0x00, 0x01, 0x0A, 0x5D, 0x0A, 0x71, + 0x00, 0x01, 0x0A, 0x74, 0x0A, 0x7B, 0x00, 0x01, 0x0A, 0x8B, 0x0A, 0x94, + 0x00, 0x01, 0x0A, 0x9A, 0x0A, 0x9A, 0x00, 0x01, 0x0A, 0x9E, 0x0A, 0xA0, + 0x00, 0x01, 0x0A, 0xA4, 0x0A, 0xA6, 0x00, 0x01, 0x0A, 0xAB, 0x0A, 0xAC, + 0x00, 0x01, 0x0A, 0xAF, 0x0A, 0xAF, 0x00, 0x01, 0x0A, 0xB7, 0x0A, 0xB8, + 0x00, 0x01, 0x0A, 0xBB, 0x0A, 0xBC, 0x00, 0x01, 0x0A, 0xBE, 0x0A, 0xC7, + 0x00, 0x01, 0x0A, 0xCA, 0x0A, 0xD9, 0x00, 0x01, 0x0A, 0xDC, 0x0A, 0xDC, + 0x00, 0x01, 0x0A, 0xDE, 0x0A, 0xDE, 0x00, 0x01, 0x0A, 0xEC, 0x0A, 0xF1, + 0x00, 0x01, 0x0A, 0xF4, 0x0A, 0xF5, 0x00, 0x01, 0x0A, 0xF8, 0x0A, 0xF8, + 0x00, 0x01, 0x0A, 0xFD, 0x0A, 0xFD, 0x00, 0x01, 0x0A, 0xFF, 0x0B, 0x01, + 0x00, 0x01, 0x0B, 0x03, 0x0B, 0x03, 0x00, 0x01, 0x0B, 0x09, 0x0B, 0x0A, + 0x00, 0x01, 0x0B, 0x0D, 0x0B, 0x0E, 0x00, 0x01, 0x0B, 0x17, 0x0B, 0x17, + 0x00, 0x01, 0x0B, 0x19, 0x0B, 0x1A, 0x00, 0x01, 0x0B, 0x1E, 0x0B, 0x1E, + 0x00, 0x01, 0x0B, 0x36, 0x0B, 0x36, 0x00, 0x01, 0x0B, 0x4A, 0x0B, 0x4A, + 0x00, 0x01, 0x0B, 0x5F, 0x0B, 0x5F, 0x00, 0x01, 0x0B, 0x67, 0x0B, 0x67, + 0x00, 0x01, 0x00, 0x02, 0x00, 0x0C, 0x02, 0xB1, 0x02, 0xB1, 0x00, 0x01, + 0x02, 0xB7, 0x02, 0xB7, 0x00, 0x07, 0x02, 0xB9, 0x02, 0xB9, 0x00, 0x03, + 0x02, 0xC0, 0x02, 0xC0, 0x00, 0x06, 0x02, 0xC5, 0x02, 0xC5, 0x00, 0x05, + 0x02, 0xC9, 0x02, 0xC9, 0x00, 0x0B, 0x02, 0xCB, 0x02, 0xCB, 0x00, 0x04, + 0x02, 0xCF, 0x02, 0xCF, 0x00, 0x08, 0x02, 0xD1, 0x02, 0xD1, 0x00, 0x09, + 0x02, 0xD4, 0x02, 0xD4, 0x00, 0x0C, 0x02, 0xD5, 0x02, 0xD5, 0x00, 0x0A, + 0x06, 0x18, 0x06, 0x18, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x0C, 0x02, 0xB1, 0x02, 0xB7, 0x02, 0xB9, 0x02, 0xC0, 0x02, 0xC5, + 0x02, 0xC9, 0x02, 0xCB, 0x02, 0xCF, 0x02, 0xD1, 0x02, 0xD4, 0x02, 0xD5, + 0x06, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0xC2, 0x00, 0x5E, 0x04, 0x36, 0x04, 0x30, 0x04, 0x2A, 0x04, 0x24, + 0x04, 0x1E, 0x04, 0x18, 0x04, 0x12, 0x04, 0x0A, 0x04, 0x04, 0x03, 0xFE, + 0x03, 0xF8, 0x03, 0xF2, 0x03, 0xEC, 0x03, 0xE6, 0x03, 0xE0, 0x03, 0xD6, + 0x03, 0xCE, 0x03, 0xC8, 0x03, 0xC2, 0x03, 0xBC, 0x03, 0xB6, 0x03, 0xB0, + 0x03, 0xAA, 0x03, 0xA2, 0x03, 0x9C, 0x03, 0x94, 0x03, 0x8E, 0x03, 0x88, + 0x03, 0x82, 0x03, 0x7C, 0x03, 0x76, 0x03, 0x70, 0x03, 0x6A, 0x03, 0x64, + 0x03, 0x5E, 0x03, 0x58, 0x03, 0x52, 0x03, 0x4C, 0x03, 0x46, 0x03, 0x40, + 0x03, 0x3A, 0x03, 0x2E, 0x03, 0x22, 0x03, 0x16, 0x03, 0x0A, 0x02, 0xFE, + 0x02, 0xF2, 0x02, 0xE6, 0x02, 0xDA, 0x02, 0xCE, 0x02, 0xC2, 0x02, 0xBC, + 0x02, 0xB6, 0x02, 0xB0, 0x02, 0xAA, 0x02, 0xA4, 0x02, 0x96, 0x02, 0x88, + 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6E, 0x02, 0x68, 0x02, 0x62, 0x02, 0x5C, + 0x02, 0x56, 0x02, 0x50, 0x02, 0x4A, 0x02, 0x44, 0x02, 0x3E, 0x02, 0x38, + 0x02, 0x32, 0x02, 0x26, 0x02, 0x1C, 0x02, 0x14, 0x02, 0x0E, 0x02, 0x06, + 0x02, 0x00, 0x01, 0xFA, 0x01, 0xF4, 0x01, 0xEE, 0x01, 0xE0, 0x01, 0xDA, + 0x01, 0xCC, 0x01, 0xBE, 0x01, 0xB8, 0x01, 0xB2, 0x01, 0xAC, 0x01, 0xA6, + 0x01, 0xA0, 0x01, 0x9A, 0x01, 0x94, 0x01, 0x8E, 0x01, 0x88, 0x01, 0x82, + 0x00, 0x01, 0x00, 0x5E, 0x00, 0x93, 0x00, 0x9D, 0x01, 0x10, 0x01, 0x1B, + 0x01, 0x2F, 0x01, 0x82, 0x01, 0x92, 0x01, 0xFB, 0x02, 0x42, 0x02, 0x4A, + 0x02, 0x55, 0x02, 0x66, 0x02, 0x87, 0x02, 0x92, 0x02, 0x9E, 0x02, 0xB1, + 0x02, 0xCF, 0x02, 0xD7, 0x02, 0xD9, 0x02, 0xE0, 0x02, 0xE9, 0x02, 0xF6, + 0x02, 0xFE, 0x03, 0x05, 0x03, 0x0D, 0x03, 0x16, 0x03, 0x4B, 0x03, 0x51, + 0x03, 0x54, 0x03, 0x5D, 0x03, 0x67, 0x03, 0x6E, 0x03, 0x78, 0x03, 0x81, + 0x03, 0x8B, 0x03, 0x91, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, 0x03, 0xE4, + 0x03, 0xFC, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, + 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x5D, + 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, 0x05, 0x61, 0x05, 0x9B, 0x05, 0x9C, + 0x05, 0x9D, 0x05, 0x9F, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0xB1, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xCE, 0x05, 0xCF, 0x05, 0xD0, + 0x05, 0xD1, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDF, 0x05, 0xE0, 0x05, 0xE2, + 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, + 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, 0x05, 0xF3, 0x05, 0xF4, 0x05, 0xF5, + 0x05, 0xF6, 0x06, 0x09, 0x06, 0x9E, 0x06, 0xB7, 0x06, 0xE7, 0x0A, 0x15, + 0x00, 0x02, 0x07, 0xFA, 0x08, 0xD3, 0x00, 0x02, 0x07, 0xF7, 0x09, 0x0D, + 0x00, 0x02, 0x06, 0xB8, 0x06, 0xB9, 0x00, 0x02, 0x06, 0x9F, 0x06, 0xA0, + 0x00, 0x02, 0x06, 0x0A, 0x05, 0x7D, 0x00, 0x02, 0x06, 0x03, 0x05, 0x7C, + 0x00, 0x02, 0x06, 0x02, 0x05, 0x7B, 0x00, 0x02, 0x06, 0x01, 0x05, 0x7A, + 0x00, 0x02, 0x06, 0x00, 0x05, 0x79, 0x00, 0x02, 0x05, 0xFF, 0x05, 0x78, + 0x00, 0x06, 0x06, 0x85, 0x06, 0xB2, 0x06, 0x99, 0x05, 0xFE, 0x06, 0x54, + 0x05, 0x77, 0x00, 0x06, 0x06, 0x84, 0x06, 0xB1, 0x06, 0x98, 0x05, 0xFD, + 0x06, 0x53, 0x05, 0x76, 0x00, 0x02, 0x05, 0xFC, 0x05, 0x75, 0x00, 0x06, + 0x06, 0x86, 0x06, 0xB3, 0x06, 0x9A, 0x05, 0xFB, 0x06, 0x55, 0x05, 0x74, + 0x00, 0x02, 0x05, 0xFA, 0x05, 0x73, 0x00, 0x02, 0x05, 0xF9, 0x05, 0x72, + 0x00, 0x02, 0x05, 0xF8, 0x05, 0x71, 0x00, 0x02, 0x05, 0xF7, 0x05, 0x70, + 0x00, 0x03, 0x05, 0x61, 0x07, 0xF9, 0x08, 0xCE, 0x00, 0x02, 0x05, 0x60, + 0x08, 0xD5, 0x00, 0x03, 0x05, 0xE0, 0x05, 0x5F, 0x08, 0xCD, 0x00, 0x04, + 0x06, 0xB6, 0x06, 0x9D, 0x05, 0x5E, 0x08, 0xCB, 0x00, 0x05, 0x06, 0xB7, + 0x06, 0x9E, 0x05, 0x5D, 0x07, 0xF8, 0x08, 0xCC, 0x00, 0x02, 0x08, 0x00, + 0x09, 0x15, 0x00, 0x02, 0x07, 0xFF, 0x09, 0x14, 0x00, 0x02, 0x08, 0x01, + 0x09, 0x0E, 0x00, 0x02, 0x08, 0x02, 0x09, 0x0F, 0x00, 0x02, 0x07, 0xFC, + 0x09, 0x11, 0x00, 0x02, 0x07, 0xFB, 0x09, 0x10, 0x00, 0x02, 0x07, 0xFE, + 0x09, 0x13, 0x00, 0x02, 0x07, 0xFD, 0x09, 0x12, 0x00, 0x02, 0x05, 0xBD, + 0x05, 0x6E, 0x00, 0x02, 0x05, 0xA9, 0x05, 0x65, 0x00, 0x02, 0x05, 0xA8, + 0x05, 0x64, 0x00, 0x04, 0x06, 0x83, 0x05, 0xA7, 0x06, 0x52, 0x05, 0x67, + 0x00, 0x04, 0x06, 0x82, 0x05, 0xA6, 0x06, 0x51, 0x05, 0x66, 0x00, 0x06, + 0x06, 0x81, 0x06, 0xB5, 0x06, 0x9C, 0x05, 0xA5, 0x06, 0x50, 0x05, 0x63, + 0x00, 0x06, 0x06, 0x80, 0x06, 0xB4, 0x06, 0x9B, 0x05, 0xA4, 0x06, 0x4F, + 0x05, 0x62, 0x00, 0x02, 0x05, 0xE2, 0x08, 0xD9, 0x00, 0x02, 0x05, 0xE0, + 0x08, 0xDA, 0x00, 0x02, 0x05, 0xDF, 0x08, 0xD8, 0x00, 0x02, 0x05, 0xDC, + 0x08, 0xD6, 0x00, 0x02, 0x05, 0xDB, 0x08, 0xD7, 0x00, 0x05, 0x06, 0x7E, + 0x06, 0xAF, 0x06, 0x96, 0x06, 0x4D, 0x05, 0x56, 0x00, 0x05, 0x06, 0x7D, + 0x06, 0xAE, 0x06, 0x95, 0x06, 0x4C, 0x05, 0x55, 0x00, 0x05, 0x06, 0x7C, + 0x06, 0xAD, 0x06, 0x94, 0x06, 0x4B, 0x05, 0x54, 0x00, 0x05, 0x06, 0x7A, + 0x06, 0xAB, 0x06, 0x92, 0x06, 0x49, 0x05, 0x53, 0x00, 0x05, 0x06, 0x79, + 0x06, 0xAA, 0x06, 0x91, 0x06, 0x48, 0x05, 0x52, 0x00, 0x05, 0x06, 0x77, + 0x06, 0xA8, 0x06, 0x8F, 0x06, 0x46, 0x05, 0x51, 0x00, 0x05, 0x06, 0x75, + 0x06, 0xA6, 0x06, 0x8D, 0x06, 0x44, 0x05, 0x50, 0x00, 0x05, 0x06, 0x74, + 0x06, 0xA5, 0x06, 0x8C, 0x06, 0x43, 0x05, 0x4F, 0x00, 0x05, 0x06, 0x72, + 0x06, 0xA3, 0x06, 0x8A, 0x06, 0x41, 0x05, 0x4E, 0x00, 0x05, 0x06, 0x70, + 0x06, 0xA1, 0x06, 0x88, 0x06, 0x3F, 0x05, 0x4D, 0x00, 0x02, 0x06, 0x6F, + 0x06, 0x3E, 0x00, 0x02, 0x06, 0x6E, 0x06, 0x3D, 0x00, 0x02, 0x06, 0x6D, + 0x06, 0x3C, 0x00, 0x02, 0x06, 0x6C, 0x06, 0x3B, 0x00, 0x02, 0x06, 0x6B, + 0x06, 0x3A, 0x00, 0x02, 0x06, 0x6A, 0x06, 0x39, 0x00, 0x02, 0x07, 0xF6, + 0x09, 0x0C, 0x00, 0x02, 0x07, 0xF5, 0x09, 0x0B, 0x00, 0x02, 0x06, 0x69, + 0x06, 0x38, 0x00, 0x02, 0x07, 0xF4, 0x09, 0x0A, 0x00, 0x02, 0x06, 0x68, + 0x06, 0x37, 0x00, 0x02, 0x07, 0xF3, 0x09, 0x09, 0x00, 0x02, 0x06, 0x67, + 0x06, 0x36, 0x00, 0x02, 0x06, 0x66, 0x06, 0x35, 0x00, 0x02, 0x06, 0x65, + 0x06, 0x34, 0x00, 0x03, 0x06, 0x64, 0x06, 0x33, 0x06, 0x17, 0x00, 0x02, + 0x07, 0xF2, 0x09, 0x08, 0x00, 0x03, 0x06, 0x63, 0x06, 0x19, 0x06, 0x32, + 0x00, 0x02, 0x06, 0x62, 0x06, 0x31, 0x00, 0x02, 0x07, 0xF1, 0x09, 0x07, + 0x00, 0x02, 0x07, 0xF0, 0x09, 0x06, 0x00, 0x02, 0x06, 0x61, 0x06, 0x30, + 0x00, 0x02, 0x07, 0xEF, 0x09, 0x05, 0x00, 0x02, 0x06, 0x60, 0x06, 0x2F, + 0x00, 0x03, 0x06, 0x5F, 0x06, 0x2E, 0x08, 0x65, 0x00, 0x04, 0x06, 0x5E, + 0x06, 0x18, 0x06, 0x2D, 0x08, 0x60, 0x00, 0x02, 0x06, 0x5D, 0x06, 0x2C, + 0x00, 0x02, 0x06, 0x5C, 0x06, 0x2B, 0x00, 0x02, 0x06, 0x5B, 0x06, 0x2A, + 0x00, 0x02, 0x06, 0x5A, 0x06, 0x29, 0x00, 0x02, 0x06, 0x59, 0x06, 0x28, + 0x00, 0x02, 0x06, 0x58, 0x06, 0x27, 0x00, 0x02, 0x06, 0x57, 0x06, 0x26, + 0x00, 0x03, 0x06, 0x56, 0x06, 0x25, 0x06, 0x16, 0x00, 0x02, 0x07, 0xEE, + 0x09, 0x04, 0x00, 0x02, 0x07, 0xED, 0x09, 0x03, 0x00, 0x02, 0x07, 0xEC, + 0x09, 0x02, 0x00, 0x02, 0x07, 0xEB, 0x09, 0x01, 0x00, 0x02, 0x07, 0xEA, + 0x09, 0x00, 0x00, 0x02, 0x07, 0xE9, 0x08, 0xFF, 0x00, 0x02, 0x07, 0xE8, + 0x08, 0xFE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x02, 0x8A, 0x01, 0x42, 0x06, 0x16, 0x08, 0x05, 0x08, 0x06, 0x08, 0x08, + 0x08, 0x04, 0x08, 0x03, 0x08, 0x09, 0x08, 0x0A, 0x08, 0x0B, 0x08, 0x0C, + 0x08, 0x0D, 0x08, 0x0F, 0x08, 0x10, 0x08, 0x11, 0x08, 0x0E, 0x08, 0x12, + 0x08, 0x13, 0x08, 0x47, 0x08, 0x15, 0x08, 0x16, 0x08, 0x14, 0x08, 0x17, + 0x08, 0x18, 0x08, 0x19, 0x08, 0x1A, 0x08, 0xAE, 0x08, 0x48, 0x08, 0x49, + 0x08, 0x4A, 0x08, 0x4B, 0x08, 0xB8, 0x08, 0x1B, 0x08, 0x1C, 0x08, 0x1D, + 0x08, 0x1E, 0x08, 0x1F, 0x08, 0x20, 0x08, 0x21, 0x06, 0x17, 0x08, 0x23, + 0x08, 0x28, 0x08, 0x26, 0x08, 0x22, 0x08, 0x27, 0x08, 0x29, 0x08, 0x2A, + 0x08, 0x2B, 0x08, 0x2C, 0x01, 0x92, 0x08, 0x2E, 0x08, 0x2F, 0x08, 0x2D, + 0x08, 0x30, 0x08, 0x31, 0x08, 0x32, 0x08, 0x33, 0x08, 0x38, 0x08, 0x34, + 0x08, 0x36, 0x08, 0x37, 0x08, 0x35, 0x08, 0x3B, 0x08, 0x39, 0x08, 0x3A, + 0x08, 0x3C, 0x08, 0x3D, 0x08, 0x3E, 0x08, 0x3F, 0x08, 0x41, 0x08, 0x40, + 0x08, 0x42, 0x08, 0x43, 0x08, 0x44, 0x08, 0x45, 0x08, 0x46, 0x08, 0x4C, + 0x08, 0x4D, 0x08, 0x4E, 0x08, 0x4F, 0x08, 0x50, 0x08, 0x51, 0x08, 0x96, + 0x08, 0x97, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, 0x08, 0x9B, 0x08, 0x52, + 0x08, 0x53, 0x08, 0x54, 0x08, 0x55, 0x08, 0x56, 0x08, 0x58, 0x08, 0x59, + 0x08, 0x5A, 0x08, 0x57, 0x08, 0x9D, 0x08, 0xEA, 0x08, 0x5B, 0x08, 0x5C, + 0x08, 0x5E, 0x08, 0x5F, 0x08, 0x5D, 0x08, 0x61, 0x08, 0x62, 0x08, 0x64, + 0x08, 0x63, 0x08, 0xE9, 0x08, 0x67, 0x08, 0x68, 0x08, 0x69, 0x08, 0x6A, + 0x08, 0x9E, 0x08, 0x9F, 0x08, 0xA0, 0x08, 0x6B, 0x08, 0x6C, 0x08, 0x6D, + 0x08, 0x6E, 0x08, 0x70, 0x08, 0x75, 0x08, 0x73, 0x08, 0x6F, 0x08, 0x74, + 0x08, 0x76, 0x08, 0x77, 0x08, 0x78, 0x08, 0x79, 0x03, 0x6E, 0x08, 0x7C, + 0x08, 0x7D, 0x08, 0x7A, 0x08, 0x7B, 0x08, 0x7E, 0x03, 0x81, 0x08, 0x80, + 0x08, 0x81, 0x08, 0x7F, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA1, 0x08, 0x82, + 0x08, 0x87, 0x08, 0x83, 0x08, 0x85, 0x08, 0x86, 0x08, 0x84, 0x08, 0x8A, + 0x08, 0x88, 0x08, 0x89, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, 0x08, 0xA7, + 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, 0x08, 0x8B, + 0x08, 0x8C, 0x08, 0x8D, 0x08, 0x8E, 0x08, 0x90, 0x08, 0x8F, 0x08, 0x91, + 0x08, 0x92, 0x08, 0x93, 0x08, 0x94, 0x08, 0x95, 0x08, 0xC2, 0x08, 0xC4, + 0x08, 0xC3, 0x05, 0x59, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, + 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, + 0x05, 0x49, 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0x9D, + 0x05, 0x9F, 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA8, 0x05, 0xA9, 0x05, 0xA6, + 0x05, 0xA7, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, + 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, + 0x05, 0xF3, 0x05, 0xF4, 0x05, 0xF5, 0x05, 0xF6, 0x06, 0x09, 0x05, 0xF7, + 0x05, 0xF8, 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, + 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, + 0x06, 0x0A, 0x06, 0xEF, 0x06, 0xF0, 0x06, 0xFB, 0x08, 0xD0, 0x0B, 0x48, + 0x08, 0xD1, 0x05, 0xAA, 0x05, 0x68, 0x05, 0x69, 0x05, 0x6C, 0x05, 0x6D, + 0x05, 0x6A, 0x05, 0x6B, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, 0x05, 0xC1, + 0x05, 0xC2, 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, 0x05, 0xC7, + 0x05, 0x6F, 0x08, 0xCF, 0x08, 0xD2, 0x08, 0xCA, 0x05, 0x7E, 0x05, 0x7F, + 0x05, 0x80, 0x05, 0x81, 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, 0x05, 0x85, + 0x05, 0x86, 0x05, 0x87, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, 0x05, 0x8B, + 0x08, 0xE6, 0x08, 0xE8, 0x08, 0xE7, 0x08, 0xDC, 0x08, 0xEB, 0x05, 0x8C, + 0x05, 0x8D, 0x05, 0x8E, 0x07, 0x1E, 0x07, 0x1F, 0x07, 0x20, 0x07, 0x21, + 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, 0x07, 0x26, 0x07, 0x27, + 0x07, 0x2F, 0x07, 0x2C, 0x07, 0x2D, 0x07, 0x2E, 0x07, 0x28, 0x07, 0x29, + 0x07, 0x2A, 0x07, 0x2B, 0x08, 0xBE, 0x08, 0xEC, 0x08, 0xDB, 0x08, 0xDD, + 0x08, 0xDE, 0x08, 0xDF, 0x08, 0xE0, 0x08, 0xE1, 0x08, 0xE2, 0x08, 0xE3, + 0x08, 0xE4, 0x08, 0xE5, 0x08, 0xF2, 0x08, 0xF8, 0x08, 0xF6, 0x08, 0xFB, + 0x08, 0xF4, 0x08, 0xF5, 0x08, 0xF9, 0x08, 0xF3, 0x08, 0xF7, 0x08, 0xED, + 0x08, 0xEE, 0x08, 0xEF, 0x08, 0xF0, 0x08, 0xF1, 0x08, 0xFC, 0x08, 0xFD, + 0x00, 0x01, 0x01, 0x42, 0x00, 0x02, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x15, + 0x00, 0x1B, 0x00, 0x20, 0x00, 0x42, 0x00, 0x43, 0x00, 0x4E, 0x00, 0x57, + 0x00, 0x58, 0x00, 0x63, 0x00, 0x66, 0x00, 0x71, 0x00, 0x78, 0x00, 0x8B, + 0x00, 0x92, 0x00, 0x9C, 0x00, 0xA5, 0x00, 0xA6, 0x00, 0xA7, 0x00, 0xC7, + 0x00, 0xC8, 0x00, 0xD2, 0x00, 0xD7, 0x00, 0xE9, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xF6, 0x00, 0xFB, 0x01, 0x09, 0x01, 0x13, 0x01, 0x1D, 0x01, 0x1E, + 0x01, 0x26, 0x01, 0x27, 0x01, 0x32, 0x01, 0x33, 0x01, 0x41, 0x01, 0x42, + 0x01, 0x56, 0x01, 0x59, 0x01, 0x5F, 0x01, 0x64, 0x01, 0x79, 0x01, 0x86, + 0x01, 0x87, 0x01, 0x88, 0x01, 0x90, 0x01, 0x93, 0x01, 0x94, 0x01, 0x96, + 0x01, 0x97, 0x01, 0x9F, 0x01, 0xA0, 0x01, 0xAD, 0x01, 0xB5, 0x01, 0xB6, + 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xBB, 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC6, + 0x01, 0xCA, 0x01, 0xCF, 0x01, 0xD0, 0x01, 0xD1, 0x01, 0xD3, 0x01, 0xD4, + 0x01, 0xDC, 0x01, 0xDE, 0x01, 0xE0, 0x01, 0xF2, 0x01, 0xF5, 0x01, 0xFF, + 0x02, 0x06, 0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x27, + 0x02, 0x2E, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x46, + 0x02, 0x47, 0x02, 0x50, 0x02, 0x5C, 0x02, 0x5D, 0x02, 0x67, 0x02, 0x6E, + 0x02, 0x79, 0x02, 0x80, 0x02, 0x8B, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x97, + 0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xC0, + 0x02, 0xC5, 0x02, 0xD1, 0x02, 0xDC, 0x02, 0xE7, 0x02, 0xEB, 0x02, 0xEC, + 0x02, 0xF4, 0x02, 0xF8, 0x02, 0xF9, 0x03, 0x03, 0x03, 0x04, 0x03, 0x10, + 0x03, 0x11, 0x03, 0x17, 0x03, 0x2B, 0x03, 0x2E, 0x03, 0x34, 0x03, 0x39, + 0x03, 0x4F, 0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x6C, 0x03, 0x6F, + 0x03, 0x70, 0x03, 0x71, 0x03, 0x72, 0x03, 0x73, 0x03, 0x7F, 0x03, 0x82, + 0x03, 0x83, 0x03, 0x86, 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x90, 0x03, 0x92, + 0x03, 0xA0, 0x03, 0xA1, 0x03, 0xA2, 0x03, 0xA3, 0x03, 0xA6, 0x03, 0xAA, + 0x03, 0xAB, 0x03, 0xB1, 0x03, 0xBA, 0x03, 0xBB, 0x03, 0xBC, 0x03, 0xBD, + 0x03, 0xBE, 0x03, 0xBF, 0x03, 0xC0, 0x03, 0xC5, 0x03, 0xCC, 0x03, 0xD5, + 0x03, 0xD7, 0x03, 0xDC, 0x03, 0xDD, 0x03, 0xE0, 0x03, 0xE1, 0x03, 0xE5, + 0x03, 0xEB, 0x03, 0xEE, 0x04, 0x02, 0x04, 0x05, 0x04, 0x9C, 0x04, 0xB6, + 0x04, 0xB7, 0x05, 0x49, 0x05, 0x4D, 0x05, 0x4E, 0x05, 0x4F, 0x05, 0x50, + 0x05, 0x51, 0x05, 0x52, 0x05, 0x53, 0x05, 0x54, 0x05, 0x55, 0x05, 0x56, + 0x05, 0x59, 0x05, 0x62, 0x05, 0x63, 0x05, 0x64, 0x05, 0x65, 0x05, 0x66, + 0x05, 0x67, 0x05, 0x68, 0x05, 0x69, 0x05, 0x6A, 0x05, 0x6B, 0x05, 0x6C, + 0x05, 0x6D, 0x05, 0x6E, 0x05, 0x6F, 0x05, 0x70, 0x05, 0x71, 0x05, 0x72, + 0x05, 0x73, 0x05, 0x74, 0x05, 0x75, 0x05, 0x76, 0x05, 0x77, 0x05, 0x78, + 0x05, 0x79, 0x05, 0x7A, 0x05, 0x7B, 0x05, 0x7C, 0x05, 0x7D, 0x05, 0x7E, + 0x05, 0x7F, 0x05, 0x80, 0x05, 0x81, 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, + 0x05, 0x85, 0x05, 0x86, 0x05, 0x87, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, + 0x05, 0x8B, 0x05, 0x8C, 0x05, 0x8D, 0x05, 0x8E, 0x05, 0x91, 0x05, 0x93, + 0x05, 0x95, 0x05, 0xA3, 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, + 0x05, 0xA8, 0x05, 0xA9, 0x05, 0xB2, 0x05, 0xB3, 0x05, 0xB4, 0x05, 0xB6, + 0x05, 0xB7, 0x05, 0xB8, 0x05, 0xB9, 0x05, 0xBA, 0x05, 0xBB, 0x05, 0xBC, + 0x05, 0xBD, 0x05, 0xDD, 0x05, 0xE3, 0x05, 0xE4, 0x05, 0xF7, 0x05, 0xF8, + 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, + 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, + 0x06, 0xDA, 0x06, 0xDB, 0x06, 0xE1, 0x06, 0xE4, 0x06, 0xED, 0x06, 0xEF, + 0x06, 0xF0, 0x06, 0xFB, 0x07, 0x06, 0x07, 0x07, 0x07, 0x08, 0x07, 0x09, + 0x07, 0x0A, 0x07, 0x0B, 0x07, 0x0C, 0x07, 0x0D, 0x07, 0x0E, 0x07, 0x0F, + 0x07, 0x10, 0x07, 0x11, 0x07, 0x12, 0x07, 0x13, 0x07, 0x14, 0x07, 0x15, + 0x07, 0x16, 0x07, 0x17, 0x09, 0xC3, 0x0A, 0x12, 0x0A, 0x2E, 0x0A, 0x85, + 0x0A, 0x86, 0x0A, 0x87, 0x0A, 0x8B, 0x0A, 0x8C, 0x0A, 0xAC, 0x0A, 0xB7, + 0x0A, 0xB9, 0x0A, 0xBA, 0x0A, 0xE4, 0x0A, 0xE7, 0x0A, 0xE8, 0x0A, 0xE9, + 0x0A, 0xEB, 0x0A, 0xEC, 0x0A, 0xED, 0x0A, 0xEE, 0x0A, 0xF0, 0x0B, 0x01, + 0x0B, 0x02, 0x0B, 0x18, 0x0B, 0x19, 0x0B, 0x1A, 0x0B, 0x1D, 0x0B, 0x1E, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x4E, 0xDC, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x00, 0x4E, 0xDC, 0x00, 0x03, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x4E, 0xB8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x06, 0x8E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x06, 0xEF, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x21, + 0x00, 0x00, 0x05, 0x91, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x00, 0x05, 0xCB, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x23, + 0x00, 0x00, 0x05, 0xAB, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x00, 0x05, 0x1B, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x06, 0xCE, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x26, + 0x00, 0x00, 0x05, 0x8F, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x05, 0xCA, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x05, 0x9B, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x2A, + 0x00, 0x00, 0x06, 0x09, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x2B, + 0x00, 0x00, 0x05, 0xF0, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x2C, + 0x00, 0x00, 0x05, 0xDB, 0x00, 0x00, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x2D, + 0x00, 0x00, 0x05, 0xB1, 0x00, 0x00, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x2E, + 0x00, 0x00, 0x05, 0xDC, 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x2F, + 0x00, 0x00, 0x05, 0xAD, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x32, + 0x00, 0x00, 0x05, 0x3B, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x35, + 0x00, 0x00, 0x05, 0x3F, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x39, + 0x00, 0x00, 0x05, 0x43, 0x00, 0x00, 0x00, 0x3A, 0x00, 0x00, 0x00, 0x3A, + 0x00, 0x00, 0x05, 0xDF, 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x3B, + 0x00, 0x00, 0x05, 0xE2, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x3C, + 0x00, 0x00, 0x05, 0xEA, 0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x3D, + 0x00, 0x00, 0x05, 0xEE, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x3E, + 0x00, 0x00, 0x05, 0xEB, 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x3F, + 0x00, 0x00, 0x05, 0x95, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x05, 0xA3, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x41, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x42, + 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x43, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x46, + 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x00, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x49, + 0x00, 0x00, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x4A, 0x00, 0x00, 0x00, 0x4A, + 0x00, 0x00, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x4B, 0x00, 0x00, 0x00, 0x4B, + 0x00, 0x00, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x4C, 0x00, 0x00, 0x00, 0x4C, + 0x00, 0x00, 0x01, 0x19, 0x00, 0x00, 0x00, 0x4D, 0x00, 0x00, 0x00, 0x4D, + 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x4E, + 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x4F, + 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x01, 0x77, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x01, 0x7E, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x52, + 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x53, + 0x00, 0x00, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x54, + 0x00, 0x00, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, + 0x00, 0x00, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56, + 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, + 0x00, 0x00, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x00, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x59, + 0x00, 0x00, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x5A, 0x00, 0x00, 0x00, 0x5A, + 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x5B, 0x00, 0x00, 0x00, 0x5B, + 0x00, 0x00, 0x05, 0x9D, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5C, + 0x00, 0x00, 0x05, 0xB0, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x5D, + 0x00, 0x00, 0x05, 0x9F, 0x00, 0x00, 0x00, 0x5E, 0x00, 0x00, 0x00, 0x5E, + 0x00, 0x00, 0x06, 0x08, 0x00, 0x00, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x5F, + 0x00, 0x00, 0x06, 0x05, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x60, + 0x00, 0x00, 0x06, 0xD8, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x61, + 0x00, 0x00, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x62, + 0x00, 0x00, 0x02, 0x42, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x63, + 0x00, 0x00, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x55, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x65, + 0x00, 0x00, 0x02, 0x66, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x66, + 0x00, 0x00, 0x02, 0x87, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x67, + 0x00, 0x00, 0x02, 0x92, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x68, + 0x00, 0x00, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x69, + 0x00, 0x00, 0x02, 0xB1, 0x00, 0x00, 0x00, 0x6A, 0x00, 0x00, 0x00, 0x6A, + 0x00, 0x00, 0x02, 0xCF, 0x00, 0x00, 0x00, 0x6B, 0x00, 0x00, 0x00, 0x6B, + 0x00, 0x00, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, 0x6C, + 0x00, 0x00, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x6D, + 0x00, 0x00, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x6E, 0x00, 0x00, 0x00, 0x6E, + 0x00, 0x00, 0x03, 0x05, 0x00, 0x00, 0x00, 0x6F, 0x00, 0x00, 0x00, 0x6F, + 0x00, 0x00, 0x03, 0x16, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x70, + 0x00, 0x00, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71, + 0x00, 0x00, 0x03, 0x51, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x72, + 0x00, 0x00, 0x03, 0x54, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x73, + 0x00, 0x00, 0x03, 0x67, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x74, + 0x00, 0x00, 0x03, 0x78, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x75, + 0x00, 0x00, 0x03, 0x91, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x76, + 0x00, 0x00, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x77, + 0x00, 0x00, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x78, + 0x00, 0x00, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x79, + 0x00, 0x00, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x7A, 0x00, 0x00, 0x00, 0x7A, + 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x7B, 0x00, 0x00, 0x00, 0x7B, + 0x00, 0x00, 0x05, 0xA1, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x7C, + 0x00, 0x00, 0x05, 0xAE, 0x00, 0x00, 0x00, 0x7D, 0x00, 0x00, 0x00, 0x7D, + 0x00, 0x00, 0x05, 0xA2, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 0x7E, + 0x00, 0x00, 0x05, 0xF6, 0x00, 0x00, 0x00, 0xA0, 0x00, 0x00, 0x00, 0xA0, + 0x00, 0x00, 0x06, 0xF0, 0x00, 0x00, 0x00, 0xA1, 0x00, 0x00, 0x00, 0xA1, + 0x00, 0x00, 0x05, 0x93, 0x00, 0x00, 0x00, 0xA2, 0x00, 0x00, 0x00, 0xA2, + 0x00, 0x00, 0x05, 0x1C, 0x00, 0x00, 0x00, 0xA3, 0x00, 0x00, 0x00, 0xA3, + 0x00, 0x00, 0x05, 0x1E, 0x00, 0x00, 0x00, 0xA4, 0x00, 0x00, 0x00, 0xA4, + 0x00, 0x00, 0x05, 0xAC, 0x00, 0x00, 0x00, 0xA5, 0x00, 0x00, 0x00, 0xA5, + 0x00, 0x00, 0x05, 0x1D, 0x00, 0x00, 0x00, 0xA6, 0x00, 0x00, 0x00, 0xA6, + 0x00, 0x00, 0x05, 0xAF, 0x00, 0x00, 0x00, 0xA7, 0x00, 0x00, 0x00, 0xA7, + 0x00, 0x00, 0x06, 0x1C, 0x00, 0x00, 0x00, 0xA8, 0x00, 0x00, 0x00, 0xA8, + 0x00, 0x00, 0x06, 0xDA, 0x00, 0x00, 0x00, 0xA9, 0x00, 0x00, 0x00, 0xA9, + 0x00, 0x00, 0x06, 0x0C, 0x00, 0x00, 0x00, 0xAA, 0x00, 0x00, 0x00, 0xAA, + 0x00, 0x00, 0x06, 0x16, 0x00, 0x00, 0x00, 0xAB, 0x00, 0x00, 0x00, 0xAB, + 0x00, 0x00, 0x05, 0xE8, 0x00, 0x00, 0x00, 0xAC, 0x00, 0x00, 0x00, 0xAC, + 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x00, 0xAE, 0x00, 0x00, 0x00, 0xAE, + 0x00, 0x00, 0x06, 0x0B, 0x00, 0x00, 0x00, 0xAF, 0x00, 0x00, 0x00, 0xAF, + 0x00, 0x00, 0x06, 0xDE, 0x00, 0x00, 0x00, 0xB0, 0x00, 0x00, 0x00, 0xB0, + 0x00, 0x00, 0x06, 0x15, 0x00, 0x00, 0x00, 0xB1, 0x00, 0x00, 0x00, 0xB1, + 0x00, 0x00, 0x05, 0xF4, 0x00, 0x00, 0x00, 0xB2, 0x00, 0x00, 0x00, 0xB3, + 0x00, 0x00, 0x06, 0x43, 0x00, 0x00, 0x00, 0xB4, 0x00, 0x00, 0x00, 0xB4, + 0x00, 0x00, 0x06, 0xD6, 0x00, 0x00, 0x00, 0xB5, 0x00, 0x00, 0x00, 0xB5, + 0x00, 0x00, 0x03, 0x95, 0x00, 0x00, 0x00, 0xB6, 0x00, 0x00, 0x00, 0xB6, + 0x00, 0x00, 0x06, 0x1A, 0x00, 0x00, 0x00, 0xB7, 0x00, 0x00, 0x00, 0xB7, + 0x00, 0x00, 0x05, 0xE3, 0x00, 0x00, 0x00, 0xB8, 0x00, 0x00, 0x00, 0xB8, + 0x00, 0x00, 0x06, 0xE5, 0x00, 0x00, 0x00, 0xB9, 0x00, 0x00, 0x00, 0xB9, + 0x00, 0x00, 0x06, 0x41, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0xBA, + 0x00, 0x00, 0x06, 0x17, 0x00, 0x00, 0x00, 0xBB, 0x00, 0x00, 0x00, 0xBB, + 0x00, 0x00, 0x05, 0xE9, 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x00, 0xBC, + 0x00, 0x00, 0x06, 0xBF, 0x00, 0x00, 0x00, 0xBD, 0x00, 0x00, 0x00, 0xBD, + 0x00, 0x00, 0x06, 0xBB, 0x00, 0x00, 0x00, 0xBE, 0x00, 0x00, 0x00, 0xBE, + 0x00, 0x00, 0x06, 0xC0, 0x00, 0x00, 0x00, 0xBF, 0x00, 0x00, 0x00, 0xBF, + 0x00, 0x00, 0x05, 0x98, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0xC2, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xC3, 0x00, 0x00, 0x00, 0xC3, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xC4, 0x00, 0x00, 0x00, 0xC4, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xC5, 0x00, 0x00, 0x00, 0xC5, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xC6, 0x00, 0x00, 0x00, 0xC6, + 0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0xC7, 0x00, 0x00, 0x00, 0xC7, + 0x00, 0x00, 0x00, 0x4B, 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x00, 0xCB, + 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xCC, 0x00, 0x00, 0x00, 0xCE, + 0x00, 0x00, 0x00, 0xCB, 0x00, 0x00, 0x00, 0xCF, 0x00, 0x00, 0x00, 0xCF, + 0x00, 0x00, 0x00, 0xC7, 0x00, 0x00, 0x00, 0xD0, 0x00, 0x00, 0x00, 0xD0, + 0x00, 0x00, 0x09, 0x1A, 0x00, 0x00, 0x00, 0xD1, 0x00, 0x00, 0x00, 0xD1, + 0x00, 0x00, 0x01, 0x2D, 0x00, 0x00, 0x00, 0xD2, 0x00, 0x00, 0x00, 0xD4, + 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x00, 0xD5, 0x00, 0x00, 0x00, 0xD5, + 0x00, 0x00, 0x01, 0x43, 0x00, 0x00, 0x00, 0xD6, 0x00, 0x00, 0x00, 0xD6, + 0x00, 0x00, 0x01, 0x42, 0x00, 0x00, 0x00, 0xD7, 0x00, 0x00, 0x00, 0xD7, + 0x00, 0x00, 0x05, 0xF2, 0x00, 0x00, 0x00, 0xD8, 0x00, 0x00, 0x00, 0xD8, + 0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x00, 0xD9, 0x00, 0x00, 0x00, 0xDC, + 0x00, 0x00, 0x01, 0xAA, 0x00, 0x00, 0x00, 0xDD, 0x00, 0x00, 0x00, 0xDD, + 0x00, 0x00, 0x01, 0xDA, 0x00, 0x00, 0x00, 0xDE, 0x00, 0x00, 0x00, 0xDE, + 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x00, 0xDF, 0x00, 0x00, 0x00, 0xDF, + 0x00, 0x00, 0x03, 0x76, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0xE0, + 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x00, 0xE1, 0x00, 0x00, 0x00, 0xE1, + 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0xE2, 0x00, 0x00, 0x00, 0xE2, + 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0xE3, 0x00, 0x00, 0x00, 0xE3, + 0x00, 0x00, 0x02, 0x1A, 0x00, 0x00, 0x00, 0xE4, 0x00, 0x00, 0x00, 0xE4, + 0x00, 0x00, 0x02, 0x0B, 0x00, 0x00, 0x00, 0xE5, 0x00, 0x00, 0x00, 0xE5, + 0x00, 0x00, 0x02, 0x16, 0x00, 0x00, 0x00, 0xE6, 0x00, 0x00, 0x00, 0xE6, + 0x00, 0x00, 0x02, 0x1F, 0x00, 0x00, 0x00, 0xE7, 0x00, 0x00, 0x00, 0xE7, + 0x00, 0x00, 0x02, 0x4D, 0x00, 0x00, 0x00, 0xE8, 0x00, 0x00, 0x00, 0xEA, + 0x00, 0x00, 0x02, 0x69, 0x00, 0x00, 0x00, 0xEB, 0x00, 0x00, 0x00, 0xEB, + 0x00, 0x00, 0x02, 0x67, 0x00, 0x00, 0x00, 0xEC, 0x00, 0x00, 0x00, 0xEE, + 0x00, 0x00, 0x02, 0xBA, 0x00, 0x00, 0x00, 0xEF, 0x00, 0x00, 0x00, 0xEF, + 0x00, 0x00, 0x02, 0xB4, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0xF0, + 0x00, 0x00, 0x04, 0x53, 0x00, 0x00, 0x00, 0xF1, 0x00, 0x00, 0x00, 0xF1, + 0x00, 0x00, 0x03, 0x06, 0x00, 0x00, 0x00, 0xF2, 0x00, 0x00, 0x00, 0xF4, + 0x00, 0x00, 0x03, 0x1B, 0x00, 0x00, 0x00, 0xF5, 0x00, 0x00, 0x00, 0xF5, + 0x00, 0x00, 0x03, 0x18, 0x00, 0x00, 0x00, 0xF6, 0x00, 0x00, 0x00, 0xF6, + 0x00, 0x00, 0x03, 0x17, 0x00, 0x00, 0x00, 0xF7, 0x00, 0x00, 0x00, 0xF7, + 0x00, 0x00, 0x05, 0xF3, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x00, 0xF8, + 0x00, 0x00, 0x03, 0x19, 0x00, 0x00, 0x00, 0xF9, 0x00, 0x00, 0x00, 0xFB, + 0x00, 0x00, 0x03, 0x97, 0x00, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x00, 0xFC, + 0x00, 0x00, 0x03, 0x92, 0x00, 0x00, 0x00, 0xFD, 0x00, 0x00, 0x00, 0xFD, + 0x00, 0x00, 0x03, 0xE8, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0xFE, + 0x00, 0x00, 0x02, 0x49, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0xFF, + 0x00, 0x00, 0x03, 0xE5, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01, 0x01, + 0x00, 0x00, 0x02, 0x13, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x01, 0x02, + 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x01, 0x03, + 0x00, 0x00, 0x01, 0xFD, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x01, 0x04, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x01, 0x05, + 0x00, 0x00, 0x02, 0x14, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x06, + 0x00, 0x00, 0x00, 0x4C, 0x00, 0x00, 0x01, 0x07, 0x00, 0x00, 0x01, 0x07, + 0x00, 0x00, 0x02, 0x4E, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x08, + 0x00, 0x00, 0x00, 0x4D, 0x00, 0x00, 0x01, 0x09, 0x00, 0x00, 0x01, 0x09, + 0x00, 0x00, 0x02, 0x4F, 0x00, 0x00, 0x01, 0x0A, 0x00, 0x00, 0x01, 0x0A, + 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x01, 0x0B, 0x00, 0x00, 0x01, 0x0B, + 0x00, 0x00, 0x02, 0x50, 0x00, 0x00, 0x01, 0x0C, 0x00, 0x00, 0x01, 0x0C, + 0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x01, 0x0D, 0x00, 0x00, 0x01, 0x0D, + 0x00, 0x00, 0x02, 0x51, 0x00, 0x00, 0x01, 0x0E, 0x00, 0x00, 0x01, 0x0E, + 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x01, 0x0F, 0x00, 0x00, 0x01, 0x0F, + 0x00, 0x00, 0x02, 0x5B, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x01, 0x10, + 0x00, 0x00, 0x09, 0x18, 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x01, 0x11, + 0x00, 0x00, 0x02, 0x56, 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x01, 0x12, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x01, 0x13, + 0x00, 0x00, 0x02, 0x6C, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x01, 0x14, + 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x01, 0x15, 0x00, 0x00, 0x01, 0x15, + 0x00, 0x00, 0x02, 0x6D, 0x00, 0x00, 0x01, 0x16, 0x00, 0x00, 0x01, 0x16, + 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x01, 0x17, + 0x00, 0x00, 0x02, 0x6E, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x01, 0x18, + 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x01, 0x19, 0x00, 0x00, 0x01, 0x19, + 0x00, 0x00, 0x02, 0x6F, 0x00, 0x00, 0x01, 0x1A, 0x00, 0x00, 0x01, 0x1A, + 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01, 0x1B, 0x00, 0x00, 0x01, 0x1B, + 0x00, 0x00, 0x02, 0x70, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x01, 0x1C, + 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x01, 0x1D, 0x00, 0x00, 0x01, 0x1D, + 0x00, 0x00, 0x02, 0x95, 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x01, 0x1E, + 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x01, 0x1F, + 0x00, 0x00, 0x02, 0x96, 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x01, 0x20, + 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x01, 0x21, + 0x00, 0x00, 0x02, 0x97, 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x01, 0x22, + 0x00, 0x00, 0x00, 0x93, 0x00, 0x00, 0x01, 0x23, 0x00, 0x00, 0x01, 0x23, + 0x00, 0x00, 0x02, 0x98, 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x01, 0x24, + 0x00, 0x00, 0x00, 0xA3, 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x01, 0x25, + 0x00, 0x00, 0x02, 0xA9, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x01, 0x26, + 0x00, 0x00, 0x00, 0xA9, 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, 0x01, 0x27, + 0x00, 0x00, 0x02, 0xA8, 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x01, 0x28, + 0x00, 0x00, 0x00, 0xCE, 0x00, 0x00, 0x01, 0x29, 0x00, 0x00, 0x01, 0x29, + 0x00, 0x00, 0x02, 0xB6, 0x00, 0x00, 0x01, 0x2A, 0x00, 0x00, 0x01, 0x2A, + 0x00, 0x00, 0x00, 0xCF, 0x00, 0x00, 0x01, 0x2B, 0x00, 0x00, 0x01, 0x2B, + 0x00, 0x00, 0x02, 0xBD, 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x2C, + 0x00, 0x00, 0x00, 0xD0, 0x00, 0x00, 0x01, 0x2D, 0x00, 0x00, 0x01, 0x2D, + 0x00, 0x00, 0x02, 0xBE, 0x00, 0x00, 0x01, 0x2E, 0x00, 0x00, 0x01, 0x2E, + 0x00, 0x00, 0x00, 0xD1, 0x00, 0x00, 0x01, 0x2F, 0x00, 0x00, 0x01, 0x2F, + 0x00, 0x00, 0x02, 0xC0, 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x01, 0x30, + 0x00, 0x00, 0x00, 0xD2, 0x00, 0x00, 0x01, 0x31, 0x00, 0x00, 0x01, 0x31, + 0x00, 0x00, 0x02, 0xB2, 0x00, 0x00, 0x01, 0x32, 0x00, 0x00, 0x01, 0x32, + 0x00, 0x00, 0x09, 0x22, 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, 0x01, 0x33, + 0x00, 0x00, 0x02, 0xCD, 0x00, 0x00, 0x01, 0x34, 0x00, 0x00, 0x01, 0x34, + 0x00, 0x00, 0x01, 0x0B, 0x00, 0x00, 0x01, 0x35, 0x00, 0x00, 0x01, 0x35, + 0x00, 0x00, 0x02, 0xD2, 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x01, 0x36, + 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x01, 0x37, 0x00, 0x00, 0x01, 0x37, + 0x00, 0x00, 0x02, 0xD9, 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x01, 0x38, + 0x00, 0x00, 0x09, 0x50, 0x00, 0x00, 0x01, 0x39, 0x00, 0x00, 0x01, 0x39, + 0x00, 0x00, 0x01, 0x1A, 0x00, 0x00, 0x01, 0x3A, 0x00, 0x00, 0x01, 0x3A, + 0x00, 0x00, 0x02, 0xE8, 0x00, 0x00, 0x01, 0x3B, 0x00, 0x00, 0x01, 0x3B, + 0x00, 0x00, 0x01, 0x1B, 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x01, 0x3C, + 0x00, 0x00, 0x02, 0xE9, 0x00, 0x00, 0x01, 0x3D, 0x00, 0x00, 0x01, 0x3D, + 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x01, 0x3E, 0x00, 0x00, 0x01, 0x3E, + 0x00, 0x00, 0x02, 0xEA, 0x00, 0x00, 0x01, 0x3F, 0x00, 0x00, 0x01, 0x3F, + 0x00, 0x00, 0x09, 0x24, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, + 0x00, 0x00, 0x02, 0xE7, 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x01, 0x41, + 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x01, 0x42, 0x00, 0x00, 0x01, 0x42, + 0x00, 0x00, 0x02, 0xE1, 0x00, 0x00, 0x01, 0x43, 0x00, 0x00, 0x01, 0x43, + 0x00, 0x00, 0x01, 0x2E, 0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x01, 0x44, + 0x00, 0x00, 0x03, 0x0C, 0x00, 0x00, 0x01, 0x45, 0x00, 0x00, 0x01, 0x45, + 0x00, 0x00, 0x01, 0x2F, 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x01, 0x46, + 0x00, 0x00, 0x03, 0x0D, 0x00, 0x00, 0x01, 0x47, 0x00, 0x00, 0x01, 0x47, + 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x01, 0x48, 0x00, 0x00, 0x01, 0x48, + 0x00, 0x00, 0x03, 0x0E, 0x00, 0x00, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x4A, + 0x00, 0x00, 0x01, 0x37, 0x00, 0x00, 0x01, 0x4B, 0x00, 0x00, 0x01, 0x4B, + 0x00, 0x00, 0x03, 0x08, 0x00, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0x4C, + 0x00, 0x00, 0x01, 0x49, 0x00, 0x00, 0x01, 0x4D, 0x00, 0x00, 0x01, 0x4D, + 0x00, 0x00, 0x03, 0x1E, 0x00, 0x00, 0x01, 0x4E, 0x00, 0x00, 0x01, 0x4E, + 0x00, 0x00, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x01, 0x4F, + 0x00, 0x00, 0x03, 0x1F, 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x01, 0x50, + 0x00, 0x00, 0x01, 0x4B, 0x00, 0x00, 0x01, 0x51, 0x00, 0x00, 0x01, 0x51, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x01, 0x52, 0x00, 0x00, 0x01, 0x52, + 0x00, 0x00, 0x01, 0x76, 0x00, 0x00, 0x01, 0x53, 0x00, 0x00, 0x01, 0x53, + 0x00, 0x00, 0x03, 0x48, 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x01, 0x54, + 0x00, 0x00, 0x01, 0x81, 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x01, 0x55, + 0x00, 0x00, 0x03, 0x5C, 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x01, 0x56, + 0x00, 0x00, 0x01, 0x82, 0x00, 0x00, 0x01, 0x57, 0x00, 0x00, 0x01, 0x57, + 0x00, 0x00, 0x03, 0x5D, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x01, 0x58, + 0x00, 0x00, 0x01, 0x83, 0x00, 0x00, 0x01, 0x59, 0x00, 0x00, 0x01, 0x59, + 0x00, 0x00, 0x03, 0x5E, 0x00, 0x00, 0x01, 0x5A, 0x00, 0x00, 0x01, 0x5A, + 0x00, 0x00, 0x01, 0x8E, 0x00, 0x00, 0x01, 0x5B, 0x00, 0x00, 0x01, 0x5B, + 0x00, 0x00, 0x03, 0x6A, 0x00, 0x00, 0x01, 0x5C, 0x00, 0x00, 0x01, 0x5C, + 0x00, 0x00, 0x01, 0x8F, 0x00, 0x00, 0x01, 0x5D, 0x00, 0x00, 0x01, 0x5D, + 0x00, 0x00, 0x03, 0x6B, 0x00, 0x00, 0x01, 0x5E, 0x00, 0x00, 0x01, 0x5E, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x5F, 0x00, 0x00, 0x01, 0x5F, + 0x00, 0x00, 0x03, 0x6C, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x01, 0x60, + 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x01, 0x61, 0x00, 0x00, 0x01, 0x61, + 0x00, 0x00, 0x03, 0x6D, 0x00, 0x00, 0x01, 0x62, 0x00, 0x00, 0x01, 0x62, + 0x00, 0x00, 0x01, 0x9C, 0x00, 0x00, 0x01, 0x63, 0x00, 0x00, 0x01, 0x63, + 0x00, 0x00, 0x03, 0x7F, 0x00, 0x00, 0x01, 0x64, 0x00, 0x00, 0x01, 0x64, + 0x00, 0x00, 0x01, 0x9D, 0x00, 0x00, 0x01, 0x65, 0x00, 0x00, 0x01, 0x65, + 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x01, 0x66, 0x00, 0x00, 0x01, 0x66, + 0x00, 0x00, 0x09, 0x27, 0x00, 0x00, 0x01, 0x67, 0x00, 0x00, 0x01, 0x67, + 0x00, 0x00, 0x03, 0x7E, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x01, 0x68, + 0x00, 0x00, 0x01, 0xAE, 0x00, 0x00, 0x01, 0x69, 0x00, 0x00, 0x01, 0x69, + 0x00, 0x00, 0x03, 0x93, 0x00, 0x00, 0x01, 0x6A, 0x00, 0x00, 0x01, 0x6A, + 0x00, 0x00, 0x01, 0xAF, 0x00, 0x00, 0x01, 0x6B, 0x00, 0x00, 0x01, 0x6B, + 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x01, 0x6C, 0x00, 0x00, 0x01, 0x6C, + 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0x6D, 0x00, 0x00, 0x01, 0x6D, + 0x00, 0x00, 0x03, 0x9B, 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x01, 0x6E, + 0x00, 0x00, 0x01, 0xB1, 0x00, 0x00, 0x01, 0x6F, 0x00, 0x00, 0x01, 0x6F, + 0x00, 0x00, 0x03, 0x9C, 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x01, 0x70, + 0x00, 0x00, 0x01, 0xB2, 0x00, 0x00, 0x01, 0x71, 0x00, 0x00, 0x01, 0x71, + 0x00, 0x00, 0x03, 0x9D, 0x00, 0x00, 0x01, 0x72, 0x00, 0x00, 0x01, 0x72, + 0x00, 0x00, 0x01, 0xB3, 0x00, 0x00, 0x01, 0x73, 0x00, 0x00, 0x01, 0x73, + 0x00, 0x00, 0x03, 0x9E, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, + 0x00, 0x00, 0x01, 0xCC, 0x00, 0x00, 0x01, 0x75, 0x00, 0x00, 0x01, 0x75, + 0x00, 0x00, 0x03, 0xD9, 0x00, 0x00, 0x01, 0x76, 0x00, 0x00, 0x01, 0x76, + 0x00, 0x00, 0x01, 0xDB, 0x00, 0x00, 0x01, 0x77, 0x00, 0x00, 0x01, 0x77, + 0x00, 0x00, 0x03, 0xE9, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x01, 0x78, + 0x00, 0x00, 0x01, 0xDC, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x01, 0x79, + 0x00, 0x00, 0x01, 0xF1, 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x7A, + 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x01, 0x7B, 0x00, 0x00, 0x01, 0x7B, + 0x00, 0x00, 0x01, 0xF2, 0x00, 0x00, 0x01, 0x7C, 0x00, 0x00, 0x01, 0x7C, + 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x01, 0x7D, 0x00, 0x00, 0x01, 0x7D, + 0x00, 0x00, 0x01, 0xF3, 0x00, 0x00, 0x01, 0x7E, 0x00, 0x00, 0x01, 0x7E, + 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x01, 0x7F, 0x00, 0x00, 0x01, 0x7F, + 0x00, 0x00, 0x02, 0x8D, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x01, 0x80, + 0x00, 0x00, 0x02, 0x43, 0x00, 0x00, 0x01, 0x81, 0x00, 0x00, 0x01, 0x81, + 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x01, 0x82, 0x00, 0x00, 0x01, 0x82, + 0x00, 0x00, 0x09, 0x16, 0x00, 0x00, 0x01, 0x83, 0x00, 0x00, 0x01, 0x83, + 0x00, 0x00, 0x02, 0x44, 0x00, 0x00, 0x01, 0x84, 0x00, 0x00, 0x01, 0x84, + 0x00, 0x00, 0x09, 0x28, 0x00, 0x00, 0x01, 0x85, 0x00, 0x00, 0x01, 0x85, + 0x00, 0x00, 0x09, 0x5B, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x01, 0x86, + 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x01, 0x87, 0x00, 0x00, 0x01, 0x87, + 0x00, 0x00, 0x00, 0x4A, 0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x01, 0x88, + 0x00, 0x00, 0x02, 0x4C, 0x00, 0x00, 0x01, 0x89, 0x00, 0x00, 0x01, 0x89, + 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x01, 0x8A, 0x00, 0x00, 0x01, 0x8A, + 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x01, 0x8B, 0x00, 0x00, 0x01, 0x8B, + 0x00, 0x00, 0x09, 0x19, 0x00, 0x00, 0x01, 0x8C, 0x00, 0x00, 0x01, 0x8C, + 0x00, 0x00, 0x02, 0x59, 0x00, 0x00, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x8D, + 0x00, 0x00, 0x09, 0x39, 0x00, 0x00, 0x01, 0x8E, 0x00, 0x00, 0x01, 0x8E, + 0x00, 0x00, 0x00, 0x7A, 0x00, 0x00, 0x01, 0x8F, 0x00, 0x00, 0x01, 0x8F, + 0x00, 0x00, 0x09, 0x1D, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x09, 0x1B, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x01, 0x91, + 0x00, 0x00, 0x00, 0x8A, 0x00, 0x00, 0x01, 0x92, 0x00, 0x00, 0x01, 0x92, + 0x00, 0x00, 0x05, 0x1F, 0x00, 0x00, 0x01, 0x93, 0x00, 0x00, 0x01, 0x93, + 0x00, 0x00, 0x00, 0x8F, 0x00, 0x00, 0x01, 0x94, 0x00, 0x00, 0x01, 0x94, + 0x00, 0x00, 0x04, 0x29, 0x00, 0x00, 0x01, 0x95, 0x00, 0x00, 0x01, 0x95, + 0x00, 0x00, 0x02, 0xA4, 0x00, 0x00, 0x01, 0x96, 0x00, 0x00, 0x01, 0x96, + 0x00, 0x00, 0x00, 0xD8, 0x00, 0x00, 0x01, 0x97, 0x00, 0x00, 0x01, 0x97, + 0x00, 0x00, 0x00, 0xC9, 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x01, 0x98, + 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x01, 0x99, 0x00, 0x00, 0x01, 0x99, + 0x00, 0x00, 0x02, 0xD8, 0x00, 0x00, 0x01, 0x9A, 0x00, 0x00, 0x01, 0x9A, + 0x00, 0x00, 0x02, 0xE2, 0x00, 0x00, 0x01, 0x9B, 0x00, 0x00, 0x01, 0x9B, + 0x00, 0x00, 0x09, 0x51, 0x00, 0x00, 0x01, 0x9C, 0x00, 0x00, 0x01, 0x9C, + 0x00, 0x00, 0x09, 0x2B, 0x00, 0x00, 0x01, 0x9D, 0x00, 0x00, 0x01, 0x9D, + 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x01, 0x9E, + 0x00, 0x00, 0x03, 0x0B, 0x00, 0x00, 0x01, 0x9F, 0x00, 0x00, 0x01, 0x9F, + 0x00, 0x00, 0x01, 0x73, 0x00, 0x00, 0x01, 0xA0, 0x00, 0x00, 0x01, 0xA0, + 0x00, 0x00, 0x01, 0x45, 0x00, 0x00, 0x01, 0xA1, 0x00, 0x00, 0x01, 0xA1, + 0x00, 0x00, 0x03, 0x1A, 0x00, 0x00, 0x01, 0xA2, 0x00, 0x00, 0x01, 0xA2, + 0x00, 0x00, 0x09, 0x26, 0x00, 0x00, 0x01, 0xA3, 0x00, 0x00, 0x01, 0xA3, + 0x00, 0x00, 0x09, 0x53, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x00, 0x01, 0xA4, + 0x00, 0x00, 0x01, 0x7B, 0x00, 0x00, 0x01, 0xA5, 0x00, 0x00, 0x01, 0xA5, + 0x00, 0x00, 0x03, 0x4D, 0x00, 0x00, 0x01, 0xA6, 0x00, 0x00, 0x01, 0xA6, + 0x00, 0x00, 0x09, 0x2A, 0x00, 0x00, 0x01, 0xA7, 0x00, 0x00, 0x01, 0xA7, + 0x00, 0x00, 0x01, 0x99, 0x00, 0x00, 0x01, 0xA8, 0x00, 0x00, 0x01, 0xA8, + 0x00, 0x00, 0x03, 0x75, 0x00, 0x00, 0x01, 0xA9, 0x00, 0x00, 0x01, 0xA9, + 0x00, 0x00, 0x09, 0x1C, 0x00, 0x00, 0x01, 0xAA, 0x00, 0x00, 0x01, 0xAA, + 0x00, 0x00, 0x09, 0x3D, 0x00, 0x00, 0x01, 0xAB, 0x00, 0x00, 0x01, 0xAB, + 0x00, 0x00, 0x03, 0x79, 0x00, 0x00, 0x01, 0xAC, 0x00, 0x00, 0x01, 0xAC, + 0x00, 0x00, 0x01, 0xA3, 0x00, 0x00, 0x01, 0xAD, 0x00, 0x00, 0x01, 0xAD, + 0x00, 0x00, 0x09, 0x59, 0x00, 0x00, 0x01, 0xAE, 0x00, 0x00, 0x01, 0xAE, + 0x00, 0x00, 0x01, 0xA5, 0x00, 0x00, 0x01, 0xAF, 0x00, 0x00, 0x01, 0xAF, + 0x00, 0x00, 0x01, 0xA9, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xB0, + 0x00, 0x00, 0x03, 0x94, 0x00, 0x00, 0x01, 0xB1, 0x00, 0x00, 0x01, 0xB1, + 0x00, 0x00, 0x04, 0x25, 0x00, 0x00, 0x01, 0xB2, 0x00, 0x00, 0x01, 0xB2, + 0x00, 0x00, 0x09, 0x29, 0x00, 0x00, 0x01, 0xB3, 0x00, 0x00, 0x01, 0xB3, + 0x00, 0x00, 0x01, 0xD9, 0x00, 0x00, 0x01, 0xB4, 0x00, 0x00, 0x01, 0xB4, + 0x00, 0x00, 0x03, 0xE6, 0x00, 0x00, 0x01, 0xB5, 0x00, 0x00, 0x01, 0xB5, + 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x01, 0xB6, 0x00, 0x00, 0x01, 0xB6, + 0x00, 0x00, 0x03, 0xFD, 0x00, 0x00, 0x01, 0xB7, 0x00, 0x00, 0x01, 0xB7, + 0x00, 0x00, 0x09, 0x1E, 0x00, 0x00, 0x01, 0xB8, 0x00, 0x00, 0x01, 0xB8, + 0x00, 0x00, 0x09, 0x20, 0x00, 0x00, 0x01, 0xB9, 0x00, 0x00, 0x01, 0xBA, + 0x00, 0x00, 0x09, 0x43, 0x00, 0x00, 0x01, 0xBB, 0x00, 0x00, 0x01, 0xBB, + 0x00, 0x00, 0x05, 0x3E, 0x00, 0x00, 0x01, 0xBC, 0x00, 0x00, 0x01, 0xBC, + 0x00, 0x00, 0x05, 0x42, 0x00, 0x00, 0x01, 0xBD, 0x00, 0x00, 0x01, 0xBD, + 0x00, 0x00, 0x09, 0x5A, 0x00, 0x00, 0x01, 0xBE, 0x00, 0x00, 0x01, 0xBE, + 0x00, 0x00, 0x09, 0x4A, 0x00, 0x00, 0x01, 0xBF, 0x00, 0x00, 0x01, 0xBF, + 0x00, 0x00, 0x09, 0x6C, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x01, 0xC2, + 0x00, 0x00, 0x09, 0x73, 0x00, 0x00, 0x01, 0xC3, 0x00, 0x00, 0x01, 0xC3, + 0x00, 0x00, 0x09, 0x72, 0x00, 0x00, 0x01, 0xC5, 0x00, 0x00, 0x01, 0xC5, + 0x00, 0x00, 0x00, 0x5E, 0x00, 0x00, 0x01, 0xC6, 0x00, 0x00, 0x01, 0xC6, + 0x00, 0x00, 0x02, 0x63, 0x00, 0x00, 0x01, 0xC7, 0x00, 0x00, 0x01, 0xC7, + 0x00, 0x00, 0x09, 0x23, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, + 0x00, 0x00, 0x01, 0x23, 0x00, 0x00, 0x01, 0xC9, 0x00, 0x00, 0x01, 0xC9, + 0x00, 0x00, 0x02, 0xD6, 0x00, 0x00, 0x01, 0xCA, 0x00, 0x00, 0x01, 0xCA, + 0x00, 0x00, 0x09, 0x25, 0x00, 0x00, 0x01, 0xCB, 0x00, 0x00, 0x01, 0xCB, + 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0xCC, 0x00, 0x00, 0x01, 0xCC, + 0x00, 0x00, 0x03, 0x14, 0x00, 0x00, 0x01, 0xCD, 0x00, 0x00, 0x01, 0xCD, + 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, + 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x01, 0xCF, 0x00, 0x00, 0x01, 0xCF, + 0x00, 0x00, 0x00, 0xD3, 0x00, 0x00, 0x01, 0xD0, 0x00, 0x00, 0x01, 0xD0, + 0x00, 0x00, 0x02, 0xC1, 0x00, 0x00, 0x01, 0xD1, 0x00, 0x00, 0x01, 0xD1, + 0x00, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0xD2, 0x00, 0x00, 0x01, 0xD2, + 0x00, 0x00, 0x03, 0x21, 0x00, 0x00, 0x01, 0xD3, 0x00, 0x00, 0x01, 0xD3, + 0x00, 0x00, 0x01, 0xB4, 0x00, 0x00, 0x01, 0xD4, 0x00, 0x00, 0x01, 0xD4, + 0x00, 0x00, 0x03, 0x9F, 0x00, 0x00, 0x01, 0xD5, 0x00, 0x00, 0x01, 0xD5, + 0x00, 0x00, 0x01, 0xB5, 0x00, 0x00, 0x01, 0xD6, 0x00, 0x00, 0x01, 0xD6, + 0x00, 0x00, 0x03, 0xA0, 0x00, 0x00, 0x01, 0xD7, 0x00, 0x00, 0x01, 0xD7, + 0x00, 0x00, 0x01, 0xB6, 0x00, 0x00, 0x01, 0xD8, 0x00, 0x00, 0x01, 0xD8, + 0x00, 0x00, 0x03, 0xA1, 0x00, 0x00, 0x01, 0xD9, 0x00, 0x00, 0x01, 0xD9, + 0x00, 0x00, 0x01, 0xB7, 0x00, 0x00, 0x01, 0xDA, 0x00, 0x00, 0x01, 0xDA, + 0x00, 0x00, 0x03, 0xA2, 0x00, 0x00, 0x01, 0xDB, 0x00, 0x00, 0x01, 0xDB, + 0x00, 0x00, 0x01, 0xB8, 0x00, 0x00, 0x01, 0xDC, 0x00, 0x00, 0x01, 0xDC, + 0x00, 0x00, 0x03, 0xA3, 0x00, 0x00, 0x01, 0xDD, 0x00, 0x00, 0x01, 0xDD, + 0x00, 0x00, 0x02, 0x85, 0x00, 0x00, 0x01, 0xDE, 0x00, 0x00, 0x01, 0xDE, + 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x01, 0xDF, 0x00, 0x00, 0x01, 0xDF, + 0x00, 0x00, 0x02, 0x0C, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x01, 0xE0, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0xE1, 0x00, 0x00, 0x01, 0xE1, + 0x00, 0x00, 0x02, 0x0F, 0x00, 0x00, 0x01, 0xE2, 0x00, 0x00, 0x01, 0xE2, + 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x01, 0xE3, 0x00, 0x00, 0x01, 0xE3, + 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x01, 0xE4, 0x00, 0x00, 0x01, 0xE4, + 0x00, 0x00, 0x00, 0x8E, 0x00, 0x00, 0x01, 0xE5, 0x00, 0x00, 0x01, 0xE5, + 0x00, 0x00, 0x02, 0x94, 0x00, 0x00, 0x01, 0xE6, 0x00, 0x00, 0x01, 0xE6, + 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x01, 0xE7, 0x00, 0x00, 0x01, 0xE7, + 0x00, 0x00, 0x02, 0x99, 0x00, 0x00, 0x01, 0xE8, 0x00, 0x00, 0x01, 0xE8, + 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x01, 0xE9, 0x00, 0x00, 0x01, 0xE9, + 0x00, 0x00, 0x02, 0xDA, 0x00, 0x00, 0x01, 0xEA, 0x00, 0x00, 0x01, 0xEA, + 0x00, 0x00, 0x01, 0x4D, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x00, 0x01, 0xEB, + 0x00, 0x00, 0x03, 0x22, 0x00, 0x00, 0x01, 0xEC, 0x00, 0x00, 0x01, 0xEC, + 0x00, 0x00, 0x01, 0x4E, 0x00, 0x00, 0x01, 0xED, 0x00, 0x00, 0x01, 0xED, + 0x00, 0x00, 0x03, 0x23, 0x00, 0x00, 0x01, 0xEE, 0x00, 0x00, 0x01, 0xEE, + 0x00, 0x00, 0x09, 0x1F, 0x00, 0x00, 0x01, 0xEF, 0x00, 0x00, 0x01, 0xEF, + 0x00, 0x00, 0x09, 0x41, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x01, 0xF0, + 0x00, 0x00, 0x02, 0xD3, 0x00, 0x00, 0x01, 0xF1, 0x00, 0x00, 0x01, 0xF1, + 0x00, 0x00, 0x09, 0x17, 0x00, 0x00, 0x01, 0xF2, 0x00, 0x00, 0x01, 0xF2, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x01, 0xF3, 0x00, 0x00, 0x01, 0xF3, + 0x00, 0x00, 0x02, 0x61, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x01, 0xF5, 0x00, 0x00, 0x01, 0xF5, + 0x00, 0x00, 0x02, 0x9A, 0x00, 0x00, 0x01, 0xF6, 0x00, 0x00, 0x01, 0xF6, + 0x00, 0x00, 0x00, 0xAE, 0x00, 0x00, 0x01, 0xF7, 0x00, 0x00, 0x01, 0xF7, + 0x00, 0x00, 0x09, 0x2C, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x01, 0xF8, + 0x00, 0x00, 0x01, 0x31, 0x00, 0x00, 0x01, 0xF9, 0x00, 0x00, 0x01, 0xF9, + 0x00, 0x00, 0x03, 0x0F, 0x00, 0x00, 0x01, 0xFA, 0x00, 0x00, 0x01, 0xFA, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x01, 0xFB, 0x00, 0x00, 0x01, 0xFB, + 0x00, 0x00, 0x02, 0x17, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x01, 0xFC, + 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x01, 0xFD, 0x00, 0x00, 0x01, 0xFD, + 0x00, 0x00, 0x02, 0x21, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x01, 0xFE, + 0x00, 0x00, 0x01, 0x65, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x01, 0xFF, + 0x00, 0x00, 0x03, 0x3A, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x02, 0x01, + 0x00, 0x00, 0x02, 0x0A, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x02, 0x02, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x02, 0x03, + 0x00, 0x00, 0x02, 0x12, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x02, 0x04, + 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x02, 0x05, + 0x00, 0x00, 0x02, 0x71, 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x02, 0x06, + 0x00, 0x00, 0x00, 0x6A, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x02, 0x07, + 0x00, 0x00, 0x02, 0x72, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x02, 0x08, + 0x00, 0x00, 0x00, 0xD4, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x02, 0x09, + 0x00, 0x00, 0x02, 0xC2, 0x00, 0x00, 0x02, 0x0A, 0x00, 0x00, 0x02, 0x0A, + 0x00, 0x00, 0x00, 0xD5, 0x00, 0x00, 0x02, 0x0B, 0x00, 0x00, 0x02, 0x0B, + 0x00, 0x00, 0x02, 0xC3, 0x00, 0x00, 0x02, 0x0C, 0x00, 0x00, 0x02, 0x0C, + 0x00, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x02, 0x0D, 0x00, 0x00, 0x02, 0x0D, + 0x00, 0x00, 0x03, 0x24, 0x00, 0x00, 0x02, 0x0E, 0x00, 0x00, 0x02, 0x0E, + 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x02, 0x0F, 0x00, 0x00, 0x02, 0x0F, + 0x00, 0x00, 0x03, 0x25, 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x02, 0x10, + 0x00, 0x00, 0x01, 0x84, 0x00, 0x00, 0x02, 0x11, 0x00, 0x00, 0x02, 0x11, + 0x00, 0x00, 0x03, 0x5F, 0x00, 0x00, 0x02, 0x12, 0x00, 0x00, 0x02, 0x12, + 0x00, 0x00, 0x01, 0x85, 0x00, 0x00, 0x02, 0x13, 0x00, 0x00, 0x02, 0x13, + 0x00, 0x00, 0x03, 0x60, 0x00, 0x00, 0x02, 0x14, 0x00, 0x00, 0x02, 0x14, + 0x00, 0x00, 0x01, 0xB9, 0x00, 0x00, 0x02, 0x15, 0x00, 0x00, 0x02, 0x15, + 0x00, 0x00, 0x03, 0xA4, 0x00, 0x00, 0x02, 0x16, 0x00, 0x00, 0x02, 0x16, + 0x00, 0x00, 0x01, 0xBA, 0x00, 0x00, 0x02, 0x17, 0x00, 0x00, 0x02, 0x17, + 0x00, 0x00, 0x03, 0xA5, 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0x02, 0x18, + 0x00, 0x00, 0x01, 0x92, 0x00, 0x00, 0x02, 0x19, 0x00, 0x00, 0x02, 0x19, + 0x00, 0x00, 0x03, 0x6E, 0x00, 0x00, 0x02, 0x1A, 0x00, 0x00, 0x02, 0x1A, + 0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x02, 0x1B, 0x00, 0x00, 0x02, 0x1B, + 0x00, 0x00, 0x03, 0x81, 0x00, 0x00, 0x02, 0x1C, 0x00, 0x00, 0x02, 0x1C, + 0x00, 0x00, 0x09, 0x21, 0x00, 0x00, 0x02, 0x1D, 0x00, 0x00, 0x02, 0x1D, + 0x00, 0x00, 0x09, 0x4E, 0x00, 0x00, 0x02, 0x1E, 0x00, 0x00, 0x02, 0x1E, + 0x00, 0x00, 0x00, 0xA4, 0x00, 0x00, 0x02, 0x1F, 0x00, 0x00, 0x02, 0x1F, + 0x00, 0x00, 0x02, 0xAA, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x02, 0x20, + 0x00, 0x00, 0x09, 0x2D, 0x00, 0x00, 0x02, 0x21, 0x00, 0x00, 0x02, 0x21, + 0x00, 0x00, 0x02, 0x5A, 0x00, 0x00, 0x02, 0x22, 0x00, 0x00, 0x02, 0x22, + 0x00, 0x00, 0x09, 0x2E, 0x00, 0x00, 0x02, 0x23, 0x00, 0x00, 0x02, 0x23, + 0x00, 0x00, 0x09, 0x5D, 0x00, 0x00, 0x02, 0x24, 0x00, 0x00, 0x02, 0x24, + 0x00, 0x00, 0x01, 0xF7, 0x00, 0x00, 0x02, 0x25, 0x00, 0x00, 0x02, 0x25, + 0x00, 0x00, 0x03, 0xFE, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x02, 0x27, 0x00, 0x00, 0x02, 0x27, + 0x00, 0x00, 0x02, 0x0D, 0x00, 0x00, 0x02, 0x28, 0x00, 0x00, 0x02, 0x28, + 0x00, 0x00, 0x00, 0x6B, 0x00, 0x00, 0x02, 0x29, 0x00, 0x00, 0x02, 0x29, + 0x00, 0x00, 0x02, 0x73, 0x00, 0x00, 0x02, 0x2A, 0x00, 0x00, 0x02, 0x2A, + 0x00, 0x00, 0x01, 0x51, 0x00, 0x00, 0x02, 0x2B, 0x00, 0x00, 0x02, 0x2B, + 0x00, 0x00, 0x03, 0x26, 0x00, 0x00, 0x02, 0x2C, 0x00, 0x00, 0x02, 0x2C, + 0x00, 0x00, 0x01, 0x52, 0x00, 0x00, 0x02, 0x2D, 0x00, 0x00, 0x02, 0x2D, + 0x00, 0x00, 0x03, 0x27, 0x00, 0x00, 0x02, 0x2E, 0x00, 0x00, 0x02, 0x2E, + 0x00, 0x00, 0x01, 0x53, 0x00, 0x00, 0x02, 0x2F, 0x00, 0x00, 0x02, 0x2F, + 0x00, 0x00, 0x03, 0x28, 0x00, 0x00, 0x02, 0x30, 0x00, 0x00, 0x02, 0x30, + 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x02, 0x31, 0x00, 0x00, 0x02, 0x31, + 0x00, 0x00, 0x03, 0x29, 0x00, 0x00, 0x02, 0x32, 0x00, 0x00, 0x02, 0x32, + 0x00, 0x00, 0x01, 0xDD, 0x00, 0x00, 0x02, 0x33, 0x00, 0x00, 0x02, 0x33, + 0x00, 0x00, 0x03, 0xEA, 0x00, 0x00, 0x02, 0x34, 0x00, 0x00, 0x02, 0x34, + 0x00, 0x00, 0x02, 0xE6, 0x00, 0x00, 0x02, 0x35, 0x00, 0x00, 0x02, 0x35, + 0x00, 0x00, 0x03, 0x09, 0x00, 0x00, 0x02, 0x36, 0x00, 0x00, 0x02, 0x36, + 0x00, 0x00, 0x03, 0x7B, 0x00, 0x00, 0x02, 0x37, 0x00, 0x00, 0x02, 0x37, + 0x00, 0x00, 0x02, 0xC7, 0x00, 0x00, 0x02, 0x38, 0x00, 0x00, 0x02, 0x39, + 0x00, 0x00, 0x09, 0x5E, 0x00, 0x00, 0x02, 0x3A, 0x00, 0x00, 0x02, 0x3A, + 0x00, 0x00, 0x00, 0x2E, 0x00, 0x00, 0x02, 0x3B, 0x00, 0x00, 0x02, 0x3B, + 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x02, 0x3C, 0x00, 0x00, 0x02, 0x3C, + 0x00, 0x00, 0x02, 0x4B, 0x00, 0x00, 0x02, 0x3D, 0x00, 0x00, 0x02, 0x3D, + 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x02, 0x3E, 0x00, 0x00, 0x02, 0x3E, + 0x00, 0x00, 0x01, 0xA6, 0x00, 0x00, 0x02, 0x3F, 0x00, 0x00, 0x02, 0x3F, + 0x00, 0x00, 0x03, 0x69, 0x00, 0x00, 0x02, 0x40, 0x00, 0x00, 0x02, 0x40, + 0x00, 0x00, 0x03, 0xFF, 0x00, 0x00, 0x02, 0x41, 0x00, 0x00, 0x02, 0x41, + 0x00, 0x00, 0x09, 0x2F, 0x00, 0x00, 0x02, 0x42, 0x00, 0x00, 0x02, 0x42, + 0x00, 0x00, 0x09, 0x60, 0x00, 0x00, 0x02, 0x43, 0x00, 0x00, 0x02, 0x43, + 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x02, 0x44, 0x00, 0x00, 0x02, 0x44, + 0x00, 0x00, 0x01, 0xC7, 0x00, 0x00, 0x02, 0x45, 0x00, 0x00, 0x02, 0x45, + 0x00, 0x00, 0x09, 0x30, 0x00, 0x00, 0x02, 0x46, 0x00, 0x00, 0x02, 0x46, + 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x02, 0x47, 0x00, 0x00, 0x02, 0x47, + 0x00, 0x00, 0x02, 0x68, 0x00, 0x00, 0x02, 0x48, 0x00, 0x00, 0x02, 0x48, + 0x00, 0x00, 0x01, 0x0C, 0x00, 0x00, 0x02, 0x49, 0x00, 0x00, 0x02, 0x49, + 0x00, 0x00, 0x02, 0xC9, 0x00, 0x00, 0x02, 0x4A, 0x00, 0x00, 0x02, 0x4A, + 0x00, 0x00, 0x01, 0x7F, 0x00, 0x00, 0x02, 0x4B, 0x00, 0x00, 0x02, 0x4B, + 0x00, 0x00, 0x03, 0x53, 0x00, 0x00, 0x02, 0x4C, 0x00, 0x00, 0x02, 0x4C, + 0x00, 0x00, 0x01, 0x8C, 0x00, 0x00, 0x02, 0x4D, 0x00, 0x00, 0x02, 0x4D, + 0x00, 0x00, 0x03, 0x56, 0x00, 0x00, 0x02, 0x4E, 0x00, 0x00, 0x02, 0x4E, + 0x00, 0x00, 0x01, 0xE3, 0x00, 0x00, 0x02, 0x4F, 0x00, 0x00, 0x02, 0x4F, + 0x00, 0x00, 0x03, 0xE7, 0x00, 0x00, 0x02, 0x50, 0x00, 0x00, 0x02, 0x50, + 0x00, 0x00, 0x02, 0x1B, 0x00, 0x00, 0x02, 0x51, 0x00, 0x00, 0x02, 0x52, + 0x00, 0x00, 0x09, 0x35, 0x00, 0x00, 0x02, 0x53, 0x00, 0x00, 0x02, 0x53, + 0x00, 0x00, 0x02, 0x45, 0x00, 0x00, 0x02, 0x54, 0x00, 0x00, 0x02, 0x54, + 0x00, 0x00, 0x09, 0x55, 0x00, 0x00, 0x02, 0x56, 0x00, 0x00, 0x02, 0x57, + 0x00, 0x00, 0x02, 0x57, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x09, 0x3A, 0x00, 0x00, 0x02, 0x59, 0x00, 0x00, 0x02, 0x5A, + 0x00, 0x00, 0x09, 0x3E, 0x00, 0x00, 0x02, 0x5B, 0x00, 0x00, 0x02, 0x5C, + 0x00, 0x00, 0x04, 0x74, 0x00, 0x00, 0x02, 0x5D, 0x00, 0x00, 0x02, 0x5D, + 0x00, 0x00, 0x04, 0x77, 0x00, 0x00, 0x02, 0x5E, 0x00, 0x00, 0x02, 0x5E, + 0x00, 0x00, 0x04, 0x76, 0x00, 0x00, 0x02, 0x5F, 0x00, 0x00, 0x02, 0x5F, + 0x00, 0x00, 0x02, 0xC8, 0x00, 0x00, 0x02, 0x60, 0x00, 0x00, 0x02, 0x60, + 0x00, 0x00, 0x02, 0x93, 0x00, 0x00, 0x02, 0x61, 0x00, 0x00, 0x02, 0x61, + 0x00, 0x00, 0x09, 0x47, 0x00, 0x00, 0x02, 0x62, 0x00, 0x00, 0x02, 0x62, + 0x00, 0x00, 0x02, 0x9C, 0x00, 0x00, 0x02, 0x63, 0x00, 0x00, 0x02, 0x63, + 0x00, 0x00, 0x04, 0xE2, 0x00, 0x00, 0x02, 0x64, 0x00, 0x00, 0x02, 0x64, + 0x00, 0x00, 0x09, 0x37, 0x00, 0x00, 0x02, 0x65, 0x00, 0x00, 0x02, 0x65, + 0x00, 0x00, 0x02, 0xA5, 0x00, 0x00, 0x02, 0x66, 0x00, 0x00, 0x02, 0x67, + 0x00, 0x00, 0x02, 0xA2, 0x00, 0x00, 0x02, 0x68, 0x00, 0x00, 0x02, 0x68, + 0x00, 0x00, 0x02, 0xB9, 0x00, 0x00, 0x02, 0x69, 0x00, 0x00, 0x02, 0x69, + 0x00, 0x00, 0x04, 0x99, 0x00, 0x00, 0x02, 0x6A, 0x00, 0x00, 0x02, 0x6A, + 0x00, 0x00, 0x02, 0xCE, 0x00, 0x00, 0x02, 0x6B, 0x00, 0x00, 0x02, 0x6B, + 0x00, 0x00, 0x02, 0xE3, 0x00, 0x00, 0x02, 0x6C, 0x00, 0x00, 0x02, 0x6C, + 0x00, 0x00, 0x02, 0xE5, 0x00, 0x00, 0x02, 0x6D, 0x00, 0x00, 0x02, 0x6D, + 0x00, 0x00, 0x02, 0xE4, 0x00, 0x00, 0x02, 0x6E, 0x00, 0x00, 0x02, 0x6E, + 0x00, 0x00, 0x09, 0x52, 0x00, 0x00, 0x02, 0x6F, 0x00, 0x00, 0x02, 0x70, + 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x71, 0x00, 0x00, 0x02, 0x71, + 0x00, 0x00, 0x02, 0xFF, 0x00, 0x00, 0x02, 0x72, 0x00, 0x00, 0x02, 0x72, + 0x00, 0x00, 0x03, 0x0A, 0x00, 0x00, 0x02, 0x73, 0x00, 0x00, 0x02, 0x73, + 0x00, 0x00, 0x03, 0x07, 0x00, 0x00, 0x02, 0x74, 0x00, 0x00, 0x02, 0x74, + 0x00, 0x00, 0x03, 0x15, 0x00, 0x00, 0x02, 0x75, 0x00, 0x00, 0x02, 0x75, + 0x00, 0x00, 0x03, 0x45, 0x00, 0x00, 0x02, 0x76, 0x00, 0x00, 0x02, 0x76, + 0x00, 0x00, 0x03, 0x49, 0x00, 0x00, 0x02, 0x77, 0x00, 0x00, 0x02, 0x77, + 0x00, 0x00, 0x09, 0x54, 0x00, 0x00, 0x02, 0x78, 0x00, 0x00, 0x02, 0x78, + 0x00, 0x00, 0x09, 0x56, 0x00, 0x00, 0x02, 0x79, 0x00, 0x00, 0x02, 0x79, + 0x00, 0x00, 0x03, 0x57, 0x00, 0x00, 0x02, 0x7A, 0x00, 0x00, 0x02, 0x7A, + 0x00, 0x00, 0x09, 0x57, 0x00, 0x00, 0x02, 0x7B, 0x00, 0x00, 0x02, 0x7B, + 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x02, 0x7E, 0x00, 0x00, 0x02, 0x7E, + 0x00, 0x00, 0x03, 0x5A, 0x00, 0x00, 0x02, 0x7F, 0x00, 0x00, 0x02, 0x7F, + 0x00, 0x00, 0x03, 0x59, 0x00, 0x00, 0x02, 0x80, 0x00, 0x00, 0x02, 0x81, + 0x00, 0x00, 0x03, 0x65, 0x00, 0x00, 0x02, 0x82, 0x00, 0x00, 0x02, 0x82, + 0x00, 0x00, 0x03, 0x68, 0x00, 0x00, 0x02, 0x83, 0x00, 0x00, 0x02, 0x83, + 0x00, 0x00, 0x09, 0x3B, 0x00, 0x00, 0x02, 0x84, 0x00, 0x00, 0x02, 0x84, + 0x00, 0x00, 0x09, 0x4F, 0x00, 0x00, 0x02, 0x86, 0x00, 0x00, 0x02, 0x86, + 0x00, 0x00, 0x09, 0x3C, 0x00, 0x00, 0x02, 0x87, 0x00, 0x00, 0x02, 0x87, + 0x00, 0x00, 0x03, 0x7D, 0x00, 0x00, 0x02, 0x88, 0x00, 0x00, 0x02, 0x88, + 0x00, 0x00, 0x03, 0x7A, 0x00, 0x00, 0x02, 0x89, 0x00, 0x00, 0x02, 0x89, + 0x00, 0x00, 0x03, 0x96, 0x00, 0x00, 0x02, 0x8A, 0x00, 0x00, 0x02, 0x8B, + 0x00, 0x00, 0x09, 0x6A, 0x00, 0x00, 0x02, 0x8C, 0x00, 0x00, 0x02, 0x8C, + 0x00, 0x00, 0x03, 0xD3, 0x00, 0x00, 0x02, 0x8D, 0x00, 0x00, 0x02, 0x8D, + 0x00, 0x00, 0x03, 0xD8, 0x00, 0x00, 0x02, 0x8E, 0x00, 0x00, 0x02, 0x8E, + 0x00, 0x00, 0x03, 0xF6, 0x00, 0x00, 0x02, 0x8F, 0x00, 0x00, 0x02, 0x8F, + 0x00, 0x00, 0x03, 0xFB, 0x00, 0x00, 0x02, 0x90, 0x00, 0x00, 0x02, 0x90, + 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x92, 0x00, 0x00, 0x02, 0x92, + 0x00, 0x00, 0x09, 0x40, 0x00, 0x00, 0x02, 0x93, 0x00, 0x00, 0x02, 0x93, + 0x00, 0x00, 0x09, 0x42, 0x00, 0x00, 0x02, 0x94, 0x00, 0x00, 0x02, 0x94, + 0x00, 0x00, 0x09, 0x48, 0x00, 0x00, 0x02, 0x95, 0x00, 0x00, 0x02, 0x95, + 0x00, 0x00, 0x09, 0x4D, 0x00, 0x00, 0x02, 0x96, 0x00, 0x00, 0x02, 0x96, + 0x00, 0x00, 0x09, 0x4C, 0x00, 0x00, 0x02, 0x97, 0x00, 0x00, 0x02, 0x97, + 0x00, 0x00, 0x09, 0x38, 0x00, 0x00, 0x02, 0x98, 0x00, 0x00, 0x02, 0x98, + 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x02, 0x99, 0x00, 0x00, 0x02, 0x99, + 0x00, 0x00, 0x09, 0x61, 0x00, 0x00, 0x02, 0x9A, 0x00, 0x00, 0x02, 0x9A, + 0x00, 0x00, 0x04, 0x73, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x00, 0x02, 0x9B, + 0x00, 0x00, 0x02, 0x9D, 0x00, 0x00, 0x02, 0x9C, 0x00, 0x00, 0x02, 0x9C, + 0x00, 0x00, 0x09, 0x6E, 0x00, 0x00, 0x02, 0x9D, 0x00, 0x00, 0x02, 0x9D, + 0x00, 0x00, 0x02, 0xD1, 0x00, 0x00, 0x02, 0x9E, 0x00, 0x00, 0x02, 0x9E, + 0x00, 0x00, 0x02, 0xDE, 0x00, 0x00, 0x02, 0x9F, 0x00, 0x00, 0x02, 0x9F, + 0x00, 0x00, 0x02, 0xFD, 0x00, 0x00, 0x02, 0xA0, 0x00, 0x00, 0x02, 0xA0, + 0x00, 0x00, 0x03, 0x52, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x00, 0x02, 0xA1, + 0x00, 0x00, 0x09, 0x49, 0x00, 0x00, 0x02, 0xA2, 0x00, 0x00, 0x02, 0xA2, + 0x00, 0x00, 0x09, 0x4B, 0x00, 0x00, 0x02, 0xA3, 0x00, 0x00, 0x02, 0xA3, + 0x00, 0x00, 0x02, 0x62, 0x00, 0x00, 0x02, 0xA4, 0x00, 0x00, 0x02, 0xA4, + 0x00, 0x00, 0x02, 0x64, 0x00, 0x00, 0x02, 0xA6, 0x00, 0x00, 0x02, 0xA6, + 0x00, 0x00, 0x09, 0x5C, 0x00, 0x00, 0x02, 0xA7, 0x00, 0x00, 0x02, 0xA7, + 0x00, 0x00, 0x09, 0x58, 0x00, 0x00, 0x02, 0xA8, 0x00, 0x00, 0x02, 0xA8, + 0x00, 0x00, 0x03, 0x7C, 0x00, 0x00, 0x02, 0xA9, 0x00, 0x00, 0x02, 0xA9, + 0x00, 0x00, 0x02, 0x91, 0x00, 0x00, 0x02, 0xAA, 0x00, 0x00, 0x02, 0xAA, + 0x00, 0x00, 0x09, 0x45, 0x00, 0x00, 0x02, 0xAB, 0x00, 0x00, 0x02, 0xAC, + 0x00, 0x00, 0x09, 0x62, 0x00, 0x00, 0x02, 0xAD, 0x00, 0x00, 0x02, 0xAD, + 0x00, 0x00, 0x09, 0x46, 0x00, 0x00, 0x02, 0xAE, 0x00, 0x00, 0x02, 0xAF, + 0x00, 0x00, 0x02, 0xA6, 0x00, 0x00, 0x02, 0xB0, 0x00, 0x00, 0x02, 0xB0, + 0x00, 0x00, 0x06, 0x2C, 0x00, 0x00, 0x02, 0xB1, 0x00, 0x00, 0x02, 0xB1, + 0x00, 0x00, 0x09, 0x79, 0x00, 0x00, 0x02, 0xB2, 0x00, 0x00, 0x02, 0xB2, + 0x00, 0x00, 0x06, 0x2E, 0x00, 0x00, 0x02, 0xB3, 0x00, 0x00, 0x02, 0xB3, + 0x00, 0x00, 0x06, 0x36, 0x00, 0x00, 0x02, 0xB4, 0x00, 0x00, 0x02, 0xB4, + 0x00, 0x00, 0x09, 0x7A, 0x00, 0x00, 0x02, 0xB5, 0x00, 0x00, 0x02, 0xB5, + 0x00, 0x00, 0x09, 0x78, 0x00, 0x00, 0x02, 0xB6, 0x00, 0x00, 0x02, 0xB6, + 0x00, 0x00, 0x09, 0x77, 0x00, 0x00, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xB7, + 0x00, 0x00, 0x06, 0x3B, 0x00, 0x00, 0x02, 0xB8, 0x00, 0x00, 0x02, 0xB8, + 0x00, 0x00, 0x06, 0x3D, 0x00, 0x00, 0x02, 0xB9, 0x00, 0x00, 0x02, 0xBA, + 0x00, 0x00, 0x05, 0xD9, 0x00, 0x00, 0x02, 0xBB, 0x00, 0x00, 0x02, 0xBB, + 0x00, 0x00, 0x0B, 0x2D, 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, 0x02, 0xBC, + 0x00, 0x00, 0x05, 0xC9, 0x00, 0x00, 0x02, 0xBD, 0x00, 0x00, 0x02, 0xBD, + 0x00, 0x00, 0x0B, 0x2C, 0x00, 0x00, 0x02, 0xBE, 0x00, 0x00, 0x02, 0xBE, + 0x00, 0x00, 0x0B, 0x34, 0x00, 0x00, 0x02, 0xBF, 0x00, 0x00, 0x02, 0xBF, + 0x00, 0x00, 0x0B, 0x33, 0x00, 0x00, 0x02, 0xC0, 0x00, 0x00, 0x02, 0xC1, + 0x00, 0x00, 0x0B, 0x2E, 0x00, 0x00, 0x02, 0xC2, 0x00, 0x00, 0x02, 0xC4, + 0x00, 0x00, 0x0A, 0x27, 0x00, 0x00, 0x02, 0xC5, 0x00, 0x00, 0x02, 0xC5, + 0x00, 0x00, 0x0A, 0x26, 0x00, 0x00, 0x02, 0xC6, 0x00, 0x00, 0x02, 0xC6, + 0x00, 0x00, 0x06, 0xDC, 0x00, 0x00, 0x02, 0xC7, 0x00, 0x00, 0x02, 0xC7, + 0x00, 0x00, 0x06, 0xE3, 0x00, 0x00, 0x02, 0xC8, 0x00, 0x00, 0x02, 0xC8, + 0x00, 0x00, 0x0B, 0x31, 0x00, 0x00, 0x02, 0xC9, 0x00, 0x00, 0x02, 0xCB, + 0x00, 0x00, 0x0A, 0xDF, 0x00, 0x00, 0x02, 0xCC, 0x00, 0x00, 0x02, 0xCC, + 0x00, 0x00, 0x0B, 0x35, 0x00, 0x00, 0x02, 0xCD, 0x00, 0x00, 0x02, 0xCD, + 0x00, 0x00, 0x0B, 0x32, 0x00, 0x00, 0x02, 0xCE, 0x00, 0x00, 0x02, 0xCE, + 0x00, 0x00, 0x0B, 0x30, 0x00, 0x00, 0x02, 0xCF, 0x00, 0x00, 0x02, 0xCF, + 0x00, 0x00, 0x0B, 0x29, 0x00, 0x00, 0x02, 0xD0, 0x00, 0x00, 0x02, 0xD0, + 0x00, 0x00, 0x0B, 0x2B, 0x00, 0x00, 0x02, 0xD1, 0x00, 0x00, 0x02, 0xD1, + 0x00, 0x00, 0x0B, 0x2A, 0x00, 0x00, 0x02, 0xD2, 0x00, 0x00, 0x02, 0xD2, + 0x00, 0x00, 0x0A, 0x30, 0x00, 0x00, 0x02, 0xD3, 0x00, 0x00, 0x02, 0xD3, + 0x00, 0x00, 0x0A, 0x2F, 0x00, 0x00, 0x02, 0xD4, 0x00, 0x00, 0x02, 0xD4, + 0x00, 0x00, 0x0A, 0x42, 0x00, 0x00, 0x02, 0xD5, 0x00, 0x00, 0x02, 0xD5, + 0x00, 0x00, 0x0A, 0x2A, 0x00, 0x00, 0x02, 0xD6, 0x00, 0x00, 0x02, 0xD6, + 0x00, 0x00, 0x0A, 0x2D, 0x00, 0x00, 0x02, 0xD7, 0x00, 0x00, 0x02, 0xD7, + 0x00, 0x00, 0x0A, 0x2C, 0x00, 0x00, 0x02, 0xD8, 0x00, 0x00, 0x02, 0xD8, + 0x00, 0x00, 0x06, 0xDF, 0x00, 0x00, 0x02, 0xD9, 0x00, 0x00, 0x02, 0xDA, + 0x00, 0x00, 0x06, 0xE1, 0x00, 0x00, 0x02, 0xDB, 0x00, 0x00, 0x02, 0xDB, + 0x00, 0x00, 0x06, 0xE6, 0x00, 0x00, 0x02, 0xDC, 0x00, 0x00, 0x02, 0xDC, + 0x00, 0x00, 0x06, 0xDD, 0x00, 0x00, 0x02, 0xDD, 0x00, 0x00, 0x02, 0xDD, + 0x00, 0x00, 0x06, 0xD7, 0x00, 0x00, 0x02, 0xDE, 0x00, 0x00, 0x02, 0xDE, + 0x00, 0x00, 0x0A, 0x49, 0x00, 0x00, 0x02, 0xDF, 0x00, 0x00, 0x02, 0xDF, + 0x00, 0x00, 0x0A, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x00, 0x00, 0x02, 0xE0, + 0x00, 0x00, 0x0A, 0x21, 0x00, 0x00, 0x02, 0xE1, 0x00, 0x00, 0x02, 0xE1, + 0x00, 0x00, 0x06, 0x30, 0x00, 0x00, 0x02, 0xE2, 0x00, 0x00, 0x02, 0xE2, + 0x00, 0x00, 0x06, 0x37, 0x00, 0x00, 0x02, 0xE3, 0x00, 0x00, 0x02, 0xE3, + 0x00, 0x00, 0x06, 0x3C, 0x00, 0x00, 0x02, 0xE4, 0x00, 0x00, 0x02, 0xE4, + 0x00, 0x00, 0x0A, 0x4A, 0x00, 0x00, 0x02, 0xE5, 0x00, 0x00, 0x02, 0xE5, + 0x00, 0x00, 0x0A, 0x43, 0x00, 0x00, 0x02, 0xE6, 0x00, 0x00, 0x02, 0xE6, + 0x00, 0x00, 0x0A, 0x45, 0x00, 0x00, 0x02, 0xE7, 0x00, 0x00, 0x02, 0xE7, + 0x00, 0x00, 0x0A, 0x47, 0x00, 0x00, 0x02, 0xE8, 0x00, 0x00, 0x02, 0xE8, + 0x00, 0x00, 0x0A, 0x46, 0x00, 0x00, 0x02, 0xE9, 0x00, 0x00, 0x02, 0xE9, + 0x00, 0x00, 0x0A, 0x44, 0x00, 0x00, 0x02, 0xEA, 0x00, 0x00, 0x02, 0xEB, + 0x00, 0x00, 0x0A, 0xE2, 0x00, 0x00, 0x02, 0xEC, 0x00, 0x00, 0x02, 0xED, + 0x00, 0x00, 0x0A, 0x31, 0x00, 0x00, 0x02, 0xEE, 0x00, 0x00, 0x02, 0xEE, + 0x00, 0x00, 0x05, 0xCD, 0x00, 0x00, 0x02, 0xEF, 0x00, 0x00, 0x02, 0xEF, + 0x00, 0x00, 0x0A, 0x2B, 0x00, 0x00, 0x02, 0xF0, 0x00, 0x00, 0x02, 0xF7, + 0x00, 0x00, 0x0A, 0x33, 0x00, 0x00, 0x02, 0xF8, 0x00, 0x00, 0x02, 0xF8, + 0x00, 0x00, 0x0A, 0x2E, 0x00, 0x00, 0x02, 0xF9, 0x00, 0x00, 0x02, 0xFF, + 0x00, 0x00, 0x0A, 0x3B, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, + 0x00, 0x00, 0x06, 0xE9, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x03, 0x01, + 0x00, 0x00, 0x06, 0xE8, 0x00, 0x00, 0x03, 0x02, 0x00, 0x00, 0x03, 0x02, + 0x00, 0x00, 0x0A, 0x8D, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, + 0x00, 0x00, 0x06, 0xEC, 0x00, 0x00, 0x03, 0x04, 0x00, 0x00, 0x03, 0x04, + 0x00, 0x00, 0x06, 0xEB, 0x00, 0x00, 0x03, 0x06, 0x00, 0x00, 0x03, 0x06, + 0x00, 0x00, 0x0A, 0x8F, 0x00, 0x00, 0x03, 0x07, 0x00, 0x00, 0x03, 0x07, + 0x00, 0x00, 0x0A, 0x8C, 0x00, 0x00, 0x03, 0x08, 0x00, 0x00, 0x03, 0x08, + 0x00, 0x00, 0x0A, 0x8B, 0x00, 0x00, 0x03, 0x09, 0x00, 0x00, 0x03, 0x09, + 0x00, 0x00, 0x0A, 0x91, 0x00, 0x00, 0x03, 0x0A, 0x00, 0x00, 0x03, 0x0A, + 0x00, 0x00, 0x0A, 0x90, 0x00, 0x00, 0x03, 0x0C, 0x00, 0x00, 0x03, 0x0C, + 0x00, 0x00, 0x0A, 0x8E, 0x00, 0x00, 0x03, 0x0F, 0x00, 0x00, 0x03, 0x0F, + 0x00, 0x00, 0x06, 0xEA, 0x00, 0x00, 0x03, 0x13, 0x00, 0x00, 0x03, 0x13, + 0x00, 0x00, 0x0A, 0x92, 0x00, 0x00, 0x03, 0x15, 0x00, 0x00, 0x03, 0x15, + 0x00, 0x00, 0x0A, 0x93, 0x00, 0x00, 0x03, 0x1B, 0x00, 0x00, 0x03, 0x1B, + 0x00, 0x00, 0x0A, 0x94, 0x00, 0x00, 0x03, 0x23, 0x00, 0x00, 0x03, 0x23, + 0x00, 0x00, 0x06, 0xED, 0x00, 0x00, 0x03, 0x26, 0x00, 0x00, 0x03, 0x26, + 0x00, 0x00, 0x06, 0xEE, 0x00, 0x00, 0x03, 0x27, 0x00, 0x00, 0x03, 0x28, + 0x00, 0x00, 0x0A, 0x95, 0x00, 0x00, 0x03, 0x2C, 0x00, 0x00, 0x03, 0x2C, + 0x00, 0x00, 0x0A, 0x97, 0x00, 0x00, 0x03, 0x37, 0x00, 0x00, 0x03, 0x38, + 0x00, 0x00, 0x0A, 0x98, 0x00, 0x00, 0x03, 0x42, 0x00, 0x00, 0x03, 0x43, + 0x00, 0x00, 0x0A, 0x7A, 0x00, 0x00, 0x03, 0x46, 0x00, 0x00, 0x03, 0x62, + 0x00, 0x00, 0x0A, 0x9A, 0x00, 0x00, 0x03, 0x63, 0x00, 0x00, 0x03, 0x6F, + 0x00, 0x00, 0x0A, 0x4F, 0x00, 0x00, 0x03, 0x74, 0x00, 0x00, 0x03, 0x75, + 0x00, 0x00, 0x0A, 0x23, 0x00, 0x00, 0x03, 0x76, 0x00, 0x00, 0x03, 0x76, + 0x00, 0x00, 0x01, 0x3E, 0x00, 0x00, 0x03, 0x7A, 0x00, 0x00, 0x03, 0x7A, + 0x00, 0x00, 0x09, 0xE5, 0x00, 0x00, 0x03, 0x7B, 0x00, 0x00, 0x03, 0x7D, + 0x00, 0x00, 0x09, 0xD0, 0x00, 0x00, 0x03, 0x7E, 0x00, 0x00, 0x03, 0x7E, + 0x00, 0x00, 0x05, 0xE5, 0x00, 0x00, 0x03, 0x7F, 0x00, 0x00, 0x03, 0x7F, + 0x00, 0x00, 0x01, 0x0D, 0x00, 0x00, 0x03, 0x84, 0x00, 0x00, 0x03, 0x84, + 0x00, 0x00, 0x06, 0xD9, 0x00, 0x00, 0x03, 0x85, 0x00, 0x00, 0x03, 0x85, + 0x00, 0x00, 0x06, 0xE4, 0x00, 0x00, 0x03, 0x86, 0x00, 0x00, 0x03, 0x86, + 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x03, 0x87, 0x00, 0x00, 0x03, 0x87, + 0x00, 0x00, 0x05, 0xE4, 0x00, 0x00, 0x03, 0x88, 0x00, 0x00, 0x03, 0x88, + 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x03, 0x89, 0x00, 0x00, 0x03, 0x89, + 0x00, 0x00, 0x00, 0xB0, 0x00, 0x00, 0x03, 0x8A, 0x00, 0x00, 0x03, 0x8A, + 0x00, 0x00, 0x00, 0xDA, 0x00, 0x00, 0x03, 0x8C, 0x00, 0x00, 0x03, 0x8C, + 0x00, 0x00, 0x01, 0x67, 0x00, 0x00, 0x03, 0x8E, 0x00, 0x00, 0x03, 0x8E, + 0x00, 0x00, 0x01, 0xE5, 0x00, 0x00, 0x03, 0x8F, 0x00, 0x00, 0x03, 0x8F, + 0x00, 0x00, 0x04, 0x12, 0x00, 0x00, 0x03, 0x90, 0x00, 0x00, 0x03, 0x90, + 0x00, 0x00, 0x04, 0x9A, 0x00, 0x00, 0x03, 0x91, 0x00, 0x00, 0x03, 0x91, + 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x03, 0x92, 0x00, 0x00, 0x03, 0x92, + 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x03, 0x93, 0x00, 0x00, 0x03, 0x94, + 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x03, 0x95, 0x00, 0x00, 0x03, 0x95, + 0x00, 0x00, 0x00, 0x7B, 0x00, 0x00, 0x03, 0x96, 0x00, 0x00, 0x03, 0x96, + 0x00, 0x00, 0x01, 0xF9, 0x00, 0x00, 0x03, 0x97, 0x00, 0x00, 0x03, 0x97, + 0x00, 0x00, 0x00, 0xAF, 0x00, 0x00, 0x03, 0x98, 0x00, 0x00, 0x03, 0x98, + 0x00, 0x00, 0x04, 0x0A, 0x00, 0x00, 0x03, 0x99, 0x00, 0x00, 0x03, 0x99, + 0x00, 0x00, 0x00, 0xD9, 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x03, 0x9A, + 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x03, 0x9B, 0x00, 0x00, 0x03, 0x9B, + 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x03, 0x9C, 0x00, 0x00, 0x03, 0x9C, + 0x00, 0x00, 0x01, 0x29, 0x00, 0x00, 0x03, 0x9D, 0x00, 0x00, 0x03, 0x9D, + 0x00, 0x00, 0x01, 0x3F, 0x00, 0x00, 0x03, 0x9E, 0x00, 0x00, 0x03, 0x9E, + 0x00, 0x00, 0x04, 0x0B, 0x00, 0x00, 0x03, 0x9F, 0x00, 0x00, 0x03, 0x9F, + 0x00, 0x00, 0x01, 0x66, 0x00, 0x00, 0x03, 0xA0, 0x00, 0x00, 0x03, 0xA0, + 0x00, 0x00, 0x04, 0x0C, 0x00, 0x00, 0x03, 0xA1, 0x00, 0x00, 0x03, 0xA1, + 0x00, 0x00, 0x01, 0x7C, 0x00, 0x00, 0x03, 0xA3, 0x00, 0x00, 0x03, 0xA3, + 0x00, 0x00, 0x04, 0x0D, 0x00, 0x00, 0x03, 0xA4, 0x00, 0x00, 0x03, 0xA4, + 0x00, 0x00, 0x01, 0xA7, 0x00, 0x00, 0x03, 0xA5, 0x00, 0x00, 0x03, 0xA5, + 0x00, 0x00, 0x01, 0xE4, 0x00, 0x00, 0x03, 0xA6, 0x00, 0x00, 0x03, 0xA6, + 0x00, 0x00, 0x04, 0x0E, 0x00, 0x00, 0x03, 0xA7, 0x00, 0x00, 0x03, 0xA7, + 0x00, 0x00, 0x01, 0xD7, 0x00, 0x00, 0x03, 0xA8, 0x00, 0x00, 0x03, 0xA9, + 0x00, 0x00, 0x04, 0x0F, 0x00, 0x00, 0x03, 0xAA, 0x00, 0x00, 0x03, 0xAA, + 0x00, 0x00, 0x00, 0xDB, 0x00, 0x00, 0x03, 0xAB, 0x00, 0x00, 0x03, 0xAB, + 0x00, 0x00, 0x01, 0xE6, 0x00, 0x00, 0x03, 0xAC, 0x00, 0x00, 0x03, 0xAC, + 0x00, 0x00, 0x04, 0x55, 0x00, 0x00, 0x03, 0xAD, 0x00, 0x00, 0x03, 0xAD, + 0x00, 0x00, 0x04, 0x72, 0x00, 0x00, 0x03, 0xAE, 0x00, 0x00, 0x03, 0xAE, + 0x00, 0x00, 0x04, 0x81, 0x00, 0x00, 0x03, 0xAF, 0x00, 0x00, 0x03, 0xAF, + 0x00, 0x00, 0x04, 0x9B, 0x00, 0x00, 0x03, 0xB0, 0x00, 0x00, 0x03, 0xB0, + 0x00, 0x00, 0x04, 0xB6, 0x00, 0x00, 0x03, 0xB1, 0x00, 0x00, 0x03, 0xB1, + 0x00, 0x00, 0x04, 0x54, 0x00, 0x00, 0x03, 0xB2, 0x00, 0x00, 0x03, 0xB5, + 0x00, 0x00, 0x04, 0x6E, 0x00, 0x00, 0x03, 0xB6, 0x00, 0x00, 0x03, 0xB7, + 0x00, 0x00, 0x04, 0x7F, 0x00, 0x00, 0x03, 0xB8, 0x00, 0x00, 0x03, 0xB9, + 0x00, 0x00, 0x04, 0x98, 0x00, 0x00, 0x03, 0xBA, 0x00, 0x00, 0x03, 0xBA, + 0x00, 0x00, 0x09, 0xCD, 0x00, 0x00, 0x03, 0xBB, 0x00, 0x00, 0x03, 0xBB, + 0x00, 0x00, 0x04, 0xAB, 0x00, 0x00, 0x03, 0xBC, 0x00, 0x00, 0x03, 0xBD, + 0x00, 0x00, 0x09, 0xCE, 0x00, 0x00, 0x03, 0xBE, 0x00, 0x00, 0x03, 0xBE, + 0x00, 0x00, 0x04, 0xAC, 0x00, 0x00, 0x03, 0xBF, 0x00, 0x00, 0x03, 0xBF, + 0x00, 0x00, 0x03, 0x3B, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x03, 0xC1, + 0x00, 0x00, 0x04, 0xAD, 0x00, 0x00, 0x03, 0xC2, 0x00, 0x00, 0x03, 0xC5, + 0x00, 0x00, 0x04, 0xB2, 0x00, 0x00, 0x03, 0xC6, 0x00, 0x00, 0x03, 0xC6, + 0x00, 0x00, 0x04, 0xC7, 0x00, 0x00, 0x03, 0xC7, 0x00, 0x00, 0x03, 0xC7, + 0x00, 0x00, 0x03, 0xE3, 0x00, 0x00, 0x03, 0xC8, 0x00, 0x00, 0x03, 0xC9, + 0x00, 0x00, 0x04, 0xC9, 0x00, 0x00, 0x03, 0xCA, 0x00, 0x00, 0x03, 0xCA, + 0x00, 0x00, 0x04, 0x9C, 0x00, 0x00, 0x03, 0xCB, 0x00, 0x00, 0x03, 0xCB, + 0x00, 0x00, 0x04, 0xB7, 0x00, 0x00, 0x03, 0xCC, 0x00, 0x00, 0x03, 0xCC, + 0x00, 0x00, 0x03, 0x3C, 0x00, 0x00, 0x03, 0xCD, 0x00, 0x00, 0x03, 0xCD, + 0x00, 0x00, 0x04, 0xB8, 0x00, 0x00, 0x03, 0xCE, 0x00, 0x00, 0x03, 0xCE, + 0x00, 0x00, 0x04, 0xCB, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x03, 0xCF, + 0x00, 0x00, 0x09, 0xC9, 0x00, 0x00, 0x03, 0xD0, 0x00, 0x00, 0x03, 0xD1, + 0x00, 0x00, 0x09, 0xD5, 0x00, 0x00, 0x03, 0xD2, 0x00, 0x00, 0x03, 0xD4, + 0x00, 0x00, 0x04, 0x26, 0x00, 0x00, 0x03, 0xD5, 0x00, 0x00, 0x03, 0xD5, + 0x00, 0x00, 0x04, 0xC8, 0x00, 0x00, 0x03, 0xD6, 0x00, 0x00, 0x03, 0xD6, + 0x00, 0x00, 0x09, 0xD7, 0x00, 0x00, 0x03, 0xD7, 0x00, 0x00, 0x03, 0xD7, + 0x00, 0x00, 0x09, 0xD4, 0x00, 0x00, 0x03, 0xDC, 0x00, 0x00, 0x03, 0xDC, + 0x00, 0x00, 0x09, 0xC8, 0x00, 0x00, 0x03, 0xDD, 0x00, 0x00, 0x03, 0xDD, + 0x00, 0x00, 0x09, 0xD3, 0x00, 0x00, 0x03, 0xF0, 0x00, 0x00, 0x03, 0xF1, + 0x00, 0x00, 0x09, 0xD8, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, 0x03, 0xF2, + 0x00, 0x00, 0x02, 0x53, 0x00, 0x00, 0x03, 0xF3, 0x00, 0x00, 0x03, 0xF3, + 0x00, 0x00, 0x02, 0xD4, 0x00, 0x00, 0x03, 0xF4, 0x00, 0x00, 0x03, 0xF4, + 0x00, 0x00, 0x01, 0x6F, 0x00, 0x00, 0x03, 0xF5, 0x00, 0x00, 0x03, 0xF5, + 0x00, 0x00, 0x09, 0xDA, 0x00, 0x00, 0x03, 0xF6, 0x00, 0x00, 0x03, 0xF6, + 0x00, 0x00, 0x0A, 0x25, 0x00, 0x00, 0x03, 0xF9, 0x00, 0x00, 0x03, 0xF9, + 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x03, 0xFA, 0x00, 0x00, 0x03, 0xFA, + 0x00, 0x00, 0x01, 0x2A, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x03, 0xFC, + 0x00, 0x00, 0x04, 0xB1, 0x00, 0x00, 0x03, 0xFD, 0x00, 0x00, 0x03, 0xFF, + 0x00, 0x00, 0x09, 0xCA, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x01, + 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x04, 0x02, + 0x00, 0x00, 0x04, 0x52, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x03, + 0x00, 0x00, 0x09, 0x7C, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x04, 0x04, + 0x00, 0x00, 0x04, 0x4C, 0x00, 0x00, 0x04, 0x05, 0x00, 0x00, 0x04, 0x05, + 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x04, 0x07, + 0x00, 0x00, 0x00, 0xE8, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x04, 0x08, + 0x00, 0x00, 0x01, 0x0E, 0x00, 0x00, 0x04, 0x09, 0x00, 0x00, 0x04, 0x0A, + 0x00, 0x00, 0x04, 0x45, 0x00, 0x00, 0x04, 0x0B, 0x00, 0x00, 0x04, 0x0B, + 0x00, 0x00, 0x04, 0x3F, 0x00, 0x00, 0x04, 0x0C, 0x00, 0x00, 0x04, 0x0C, + 0x00, 0x00, 0x09, 0x7F, 0x00, 0x00, 0x04, 0x0D, 0x00, 0x00, 0x04, 0x0D, + 0x00, 0x00, 0x01, 0x39, 0x00, 0x00, 0x04, 0x0E, 0x00, 0x00, 0x04, 0x0E, + 0x00, 0x00, 0x09, 0x84, 0x00, 0x00, 0x04, 0x0F, 0x00, 0x00, 0x04, 0x0F, + 0x00, 0x00, 0x04, 0x36, 0x00, 0x00, 0x04, 0x10, 0x00, 0x00, 0x04, 0x10, + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x11, + 0x00, 0x00, 0x04, 0x2A, 0x00, 0x00, 0x04, 0x12, 0x00, 0x00, 0x04, 0x12, + 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x04, 0x13, 0x00, 0x00, 0x04, 0x13, + 0x00, 0x00, 0x09, 0x7B, 0x00, 0x00, 0x04, 0x14, 0x00, 0x00, 0x04, 0x14, + 0x00, 0x00, 0x04, 0x2D, 0x00, 0x00, 0x04, 0x15, 0x00, 0x00, 0x04, 0x15, + 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, 0x04, 0x16, 0x00, 0x00, 0x04, 0x16, + 0x00, 0x00, 0x04, 0x2E, 0x00, 0x00, 0x04, 0x17, 0x00, 0x00, 0x04, 0x17, + 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, 0x04, 0x18, 0x00, 0x00, 0x04, 0x18, + 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x04, 0x19, 0x00, 0x00, 0x04, 0x19, + 0x00, 0x00, 0x01, 0x3A, 0x00, 0x00, 0x04, 0x1A, 0x00, 0x00, 0x04, 0x1A, + 0x00, 0x00, 0x04, 0x31, 0x00, 0x00, 0x04, 0x1B, 0x00, 0x00, 0x04, 0x1B, + 0x00, 0x00, 0x04, 0x34, 0x00, 0x00, 0x04, 0x1C, 0x00, 0x00, 0x04, 0x1C, + 0x00, 0x00, 0x01, 0x2B, 0x00, 0x00, 0x04, 0x1D, 0x00, 0x00, 0x04, 0x1D, + 0x00, 0x00, 0x00, 0xBB, 0x00, 0x00, 0x04, 0x1E, 0x00, 0x00, 0x04, 0x1E, + 0x00, 0x00, 0x01, 0x71, 0x00, 0x00, 0x04, 0x1F, 0x00, 0x00, 0x04, 0x22, + 0x00, 0x00, 0x09, 0x80, 0x00, 0x00, 0x04, 0x23, 0x00, 0x00, 0x04, 0x24, + 0x00, 0x00, 0x04, 0x37, 0x00, 0x00, 0x04, 0x25, 0x00, 0x00, 0x04, 0x25, + 0x00, 0x00, 0x09, 0x85, 0x00, 0x00, 0x04, 0x26, 0x00, 0x00, 0x04, 0x26, + 0x00, 0x00, 0x04, 0x39, 0x00, 0x00, 0x04, 0x27, 0x00, 0x00, 0x04, 0x27, + 0x00, 0x00, 0x04, 0x3B, 0x00, 0x00, 0x04, 0x28, 0x00, 0x00, 0x04, 0x2C, + 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x04, 0x2D, 0x00, 0x00, 0x04, 0x2F, + 0x00, 0x00, 0x04, 0x47, 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, 0x04, 0x30, + 0x00, 0x00, 0x02, 0x1C, 0x00, 0x00, 0x04, 0x31, 0x00, 0x00, 0x04, 0x33, + 0x00, 0x00, 0x04, 0xE3, 0x00, 0x00, 0x04, 0x34, 0x00, 0x00, 0x04, 0x34, + 0x00, 0x00, 0x04, 0xE8, 0x00, 0x00, 0x04, 0x35, 0x00, 0x00, 0x04, 0x35, + 0x00, 0x00, 0x02, 0x81, 0x00, 0x00, 0x04, 0x36, 0x00, 0x00, 0x04, 0x36, + 0x00, 0x00, 0x04, 0xE9, 0x00, 0x00, 0x04, 0x37, 0x00, 0x00, 0x04, 0x38, + 0x00, 0x00, 0x04, 0xEB, 0x00, 0x00, 0x04, 0x39, 0x00, 0x00, 0x04, 0x39, + 0x00, 0x00, 0x09, 0xA7, 0x00, 0x00, 0x04, 0x3A, 0x00, 0x00, 0x04, 0x3A, + 0x00, 0x00, 0x04, 0xEE, 0x00, 0x00, 0x04, 0x3B, 0x00, 0x00, 0x04, 0x3B, + 0x00, 0x00, 0x04, 0xF3, 0x00, 0x00, 0x04, 0x3C, 0x00, 0x00, 0x04, 0x3C, + 0x00, 0x00, 0x04, 0xF6, 0x00, 0x00, 0x04, 0x3D, 0x00, 0x00, 0x04, 0x3D, + 0x00, 0x00, 0x04, 0xF8, 0x00, 0x00, 0x04, 0x3E, 0x00, 0x00, 0x04, 0x3E, + 0x00, 0x00, 0x03, 0x46, 0x00, 0x00, 0x04, 0x3F, 0x00, 0x00, 0x04, 0x3F, + 0x00, 0x00, 0x04, 0xFD, 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x04, 0x40, + 0x00, 0x00, 0x03, 0x50, 0x00, 0x00, 0x04, 0x41, 0x00, 0x00, 0x04, 0x41, + 0x00, 0x00, 0x02, 0x54, 0x00, 0x00, 0x04, 0x42, 0x00, 0x00, 0x04, 0x42, + 0x00, 0x00, 0x04, 0xFE, 0x00, 0x00, 0x04, 0x43, 0x00, 0x00, 0x04, 0x43, + 0x00, 0x00, 0x03, 0xF1, 0x00, 0x00, 0x04, 0x44, 0x00, 0x00, 0x04, 0x44, + 0x00, 0x00, 0x04, 0xFF, 0x00, 0x00, 0x04, 0x45, 0x00, 0x00, 0x04, 0x45, + 0x00, 0x00, 0x03, 0xE2, 0x00, 0x00, 0x04, 0x46, 0x00, 0x00, 0x04, 0x46, + 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x04, 0x47, 0x00, 0x00, 0x04, 0x47, + 0x00, 0x00, 0x05, 0x04, 0x00, 0x00, 0x04, 0x48, 0x00, 0x00, 0x04, 0x49, + 0x00, 0x00, 0x05, 0x07, 0x00, 0x00, 0x04, 0x4A, 0x00, 0x00, 0x04, 0x4B, + 0x00, 0x00, 0x05, 0x0A, 0x00, 0x00, 0x04, 0x4C, 0x00, 0x00, 0x04, 0x4C, + 0x00, 0x00, 0x05, 0x09, 0x00, 0x00, 0x04, 0x4D, 0x00, 0x00, 0x04, 0x4F, + 0x00, 0x00, 0x05, 0x10, 0x00, 0x00, 0x04, 0x50, 0x00, 0x00, 0x04, 0x51, + 0x00, 0x00, 0x02, 0x82, 0x00, 0x00, 0x04, 0x52, 0x00, 0x00, 0x04, 0x52, + 0x00, 0x00, 0x02, 0xA1, 0x00, 0x00, 0x04, 0x53, 0x00, 0x00, 0x04, 0x53, + 0x00, 0x00, 0x09, 0xA4, 0x00, 0x00, 0x04, 0x54, 0x00, 0x00, 0x04, 0x54, + 0x00, 0x00, 0x05, 0x15, 0x00, 0x00, 0x04, 0x55, 0x00, 0x00, 0x04, 0x55, + 0x00, 0x00, 0x03, 0x74, 0x00, 0x00, 0x04, 0x56, 0x00, 0x00, 0x04, 0x57, + 0x00, 0x00, 0x02, 0xCB, 0x00, 0x00, 0x04, 0x58, 0x00, 0x00, 0x04, 0x58, + 0x00, 0x00, 0x02, 0xD5, 0x00, 0x00, 0x04, 0x59, 0x00, 0x00, 0x04, 0x5A, + 0x00, 0x00, 0x05, 0x0E, 0x00, 0x00, 0x04, 0x5B, 0x00, 0x00, 0x04, 0x5B, + 0x00, 0x00, 0x02, 0xA0, 0x00, 0x00, 0x04, 0x5C, 0x00, 0x00, 0x04, 0x5C, + 0x00, 0x00, 0x09, 0xA9, 0x00, 0x00, 0x04, 0x5D, 0x00, 0x00, 0x04, 0x5D, + 0x00, 0x00, 0x09, 0xA8, 0x00, 0x00, 0x04, 0x5E, 0x00, 0x00, 0x04, 0x5E, + 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, 0x04, 0x5F, 0x00, 0x00, 0x04, 0x5F, + 0x00, 0x00, 0x05, 0x03, 0x00, 0x00, 0x04, 0x60, 0x00, 0x00, 0x04, 0x60, + 0x00, 0x00, 0x09, 0x86, 0x00, 0x00, 0x04, 0x61, 0x00, 0x00, 0x04, 0x61, + 0x00, 0x00, 0x09, 0xAA, 0x00, 0x00, 0x04, 0x62, 0x00, 0x00, 0x04, 0x62, + 0x00, 0x00, 0x09, 0x87, 0x00, 0x00, 0x04, 0x63, 0x00, 0x00, 0x04, 0x63, + 0x00, 0x00, 0x05, 0x0D, 0x00, 0x00, 0x04, 0x64, 0x00, 0x00, 0x04, 0x64, + 0x00, 0x00, 0x09, 0x88, 0x00, 0x00, 0x04, 0x65, 0x00, 0x00, 0x04, 0x65, + 0x00, 0x00, 0x09, 0xAB, 0x00, 0x00, 0x04, 0x66, 0x00, 0x00, 0x04, 0x66, + 0x00, 0x00, 0x09, 0x89, 0x00, 0x00, 0x04, 0x67, 0x00, 0x00, 0x04, 0x67, + 0x00, 0x00, 0x09, 0xAC, 0x00, 0x00, 0x04, 0x68, 0x00, 0x00, 0x04, 0x68, + 0x00, 0x00, 0x09, 0x8A, 0x00, 0x00, 0x04, 0x69, 0x00, 0x00, 0x04, 0x69, + 0x00, 0x00, 0x09, 0xAD, 0x00, 0x00, 0x04, 0x6A, 0x00, 0x00, 0x04, 0x6A, + 0x00, 0x00, 0x09, 0x8B, 0x00, 0x00, 0x04, 0x6B, 0x00, 0x00, 0x04, 0x6B, + 0x00, 0x00, 0x09, 0xAE, 0x00, 0x00, 0x04, 0x6C, 0x00, 0x00, 0x04, 0x6C, + 0x00, 0x00, 0x09, 0x8C, 0x00, 0x00, 0x04, 0x6D, 0x00, 0x00, 0x04, 0x6D, + 0x00, 0x00, 0x09, 0xAF, 0x00, 0x00, 0x04, 0x6E, 0x00, 0x00, 0x04, 0x6E, + 0x00, 0x00, 0x09, 0x8D, 0x00, 0x00, 0x04, 0x6F, 0x00, 0x00, 0x04, 0x6F, + 0x00, 0x00, 0x09, 0xB0, 0x00, 0x00, 0x04, 0x70, 0x00, 0x00, 0x04, 0x70, + 0x00, 0x00, 0x09, 0x8E, 0x00, 0x00, 0x04, 0x71, 0x00, 0x00, 0x04, 0x71, + 0x00, 0x00, 0x09, 0xB1, 0x00, 0x00, 0x04, 0x72, 0x00, 0x00, 0x04, 0x72, + 0x00, 0x00, 0x04, 0x35, 0x00, 0x00, 0x04, 0x73, 0x00, 0x00, 0x04, 0x73, + 0x00, 0x00, 0x03, 0x44, 0x00, 0x00, 0x04, 0x74, 0x00, 0x00, 0x04, 0x74, + 0x00, 0x00, 0x04, 0x51, 0x00, 0x00, 0x04, 0x75, 0x00, 0x00, 0x04, 0x75, + 0x00, 0x00, 0x05, 0x1A, 0x00, 0x00, 0x04, 0x76, 0x00, 0x00, 0x04, 0x76, + 0x00, 0x00, 0x09, 0x8F, 0x00, 0x00, 0x04, 0x77, 0x00, 0x00, 0x04, 0x77, + 0x00, 0x00, 0x09, 0xB2, 0x00, 0x00, 0x04, 0x78, 0x00, 0x00, 0x04, 0x78, + 0x00, 0x00, 0x09, 0x90, 0x00, 0x00, 0x04, 0x79, 0x00, 0x00, 0x04, 0x79, + 0x00, 0x00, 0x03, 0x4A, 0x00, 0x00, 0x04, 0x80, 0x00, 0x00, 0x04, 0x80, + 0x00, 0x00, 0x09, 0xA2, 0x00, 0x00, 0x04, 0x81, 0x00, 0x00, 0x04, 0x81, + 0x00, 0x00, 0x09, 0xC7, 0x00, 0x00, 0x04, 0x82, 0x00, 0x00, 0x04, 0x82, + 0x00, 0x00, 0x0A, 0x22, 0x00, 0x00, 0x04, 0x83, 0x00, 0x00, 0x04, 0x87, + 0x00, 0x00, 0x0A, 0x74, 0x00, 0x00, 0x04, 0x88, 0x00, 0x00, 0x04, 0x89, + 0x00, 0x00, 0x0A, 0x72, 0x00, 0x00, 0x04, 0x8A, 0x00, 0x00, 0x04, 0x8A, + 0x00, 0x00, 0x01, 0x3D, 0x00, 0x00, 0x04, 0x8B, 0x00, 0x00, 0x04, 0x8B, + 0x00, 0x00, 0x04, 0xED, 0x00, 0x00, 0x04, 0x8C, 0x00, 0x00, 0x04, 0x8C, + 0x00, 0x00, 0x09, 0xA3, 0x00, 0x00, 0x04, 0x8D, 0x00, 0x00, 0x04, 0x8D, + 0x00, 0x00, 0x05, 0x0C, 0x00, 0x00, 0x04, 0x8E, 0x00, 0x00, 0x04, 0x8E, + 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x04, 0x8F, 0x00, 0x00, 0x04, 0x8F, + 0x00, 0x00, 0x03, 0x4C, 0x00, 0x00, 0x04, 0x90, 0x00, 0x00, 0x04, 0x90, + 0x00, 0x00, 0x04, 0x2B, 0x00, 0x00, 0x04, 0x91, 0x00, 0x00, 0x04, 0x91, + 0x00, 0x00, 0x04, 0xE6, 0x00, 0x00, 0x04, 0x92, 0x00, 0x00, 0x04, 0x92, + 0x00, 0x00, 0x09, 0x7E, 0x00, 0x00, 0x04, 0x93, 0x00, 0x00, 0x04, 0x93, + 0x00, 0x00, 0x09, 0xA6, 0x00, 0x00, 0x04, 0x94, 0x00, 0x00, 0x04, 0x94, + 0x00, 0x00, 0x04, 0x4A, 0x00, 0x00, 0x04, 0x95, 0x00, 0x00, 0x04, 0x95, + 0x00, 0x00, 0x05, 0x13, 0x00, 0x00, 0x04, 0x96, 0x00, 0x00, 0x04, 0x96, + 0x00, 0x00, 0x04, 0x2F, 0x00, 0x00, 0x04, 0x97, 0x00, 0x00, 0x04, 0x97, + 0x00, 0x00, 0x04, 0xEA, 0x00, 0x00, 0x04, 0x98, 0x00, 0x00, 0x04, 0x98, + 0x00, 0x00, 0x09, 0x91, 0x00, 0x00, 0x04, 0x99, 0x00, 0x00, 0x04, 0x99, + 0x00, 0x00, 0x09, 0xB3, 0x00, 0x00, 0x04, 0x9A, 0x00, 0x00, 0x04, 0x9A, + 0x00, 0x00, 0x01, 0x16, 0x00, 0x00, 0x04, 0x9B, 0x00, 0x00, 0x04, 0x9B, + 0x00, 0x00, 0x04, 0xF0, 0x00, 0x00, 0x04, 0x9C, 0x00, 0x00, 0x04, 0x9C, + 0x00, 0x00, 0x04, 0x32, 0x00, 0x00, 0x04, 0x9D, 0x00, 0x00, 0x04, 0x9D, + 0x00, 0x00, 0x04, 0xF1, 0x00, 0x00, 0x04, 0xA0, 0x00, 0x00, 0x04, 0xA0, + 0x00, 0x00, 0x01, 0x15, 0x00, 0x00, 0x04, 0xA1, 0x00, 0x00, 0x04, 0xA1, + 0x00, 0x00, 0x04, 0xF2, 0x00, 0x00, 0x04, 0xA2, 0x00, 0x00, 0x04, 0xA2, + 0x00, 0x00, 0x00, 0xAB, 0x00, 0x00, 0x04, 0xA3, 0x00, 0x00, 0x04, 0xA3, + 0x00, 0x00, 0x04, 0xF9, 0x00, 0x00, 0x04, 0xA4, 0x00, 0x00, 0x04, 0xA4, + 0x00, 0x00, 0x00, 0xAD, 0x00, 0x00, 0x04, 0xA5, 0x00, 0x00, 0x04, 0xA5, + 0x00, 0x00, 0x04, 0xFA, 0x00, 0x00, 0x04, 0xA6, 0x00, 0x00, 0x04, 0xA6, + 0x00, 0x00, 0x04, 0x4B, 0x00, 0x00, 0x04, 0xA7, 0x00, 0x00, 0x04, 0xA7, + 0x00, 0x00, 0x05, 0x14, 0x00, 0x00, 0x04, 0xA8, 0x00, 0x00, 0x04, 0xA8, + 0x00, 0x00, 0x04, 0x4D, 0x00, 0x00, 0x04, 0xA9, 0x00, 0x00, 0x04, 0xA9, + 0x00, 0x00, 0x05, 0x16, 0x00, 0x00, 0x04, 0xAA, 0x00, 0x00, 0x04, 0xAA, + 0x00, 0x00, 0x09, 0x92, 0x00, 0x00, 0x04, 0xAB, 0x00, 0x00, 0x04, 0xAB, + 0x00, 0x00, 0x09, 0xB4, 0x00, 0x00, 0x04, 0xAC, 0x00, 0x00, 0x04, 0xAC, + 0x00, 0x00, 0x09, 0x93, 0x00, 0x00, 0x04, 0xAD, 0x00, 0x00, 0x04, 0xAD, + 0x00, 0x00, 0x09, 0xB5, 0x00, 0x00, 0x04, 0xAE, 0x00, 0x00, 0x04, 0xAE, + 0x00, 0x00, 0x09, 0x94, 0x00, 0x00, 0x04, 0xAF, 0x00, 0x00, 0x04, 0xAF, + 0x00, 0x00, 0x09, 0xB6, 0x00, 0x00, 0x04, 0xB0, 0x00, 0x00, 0x04, 0xB0, + 0x00, 0x00, 0x09, 0x95, 0x00, 0x00, 0x04, 0xB1, 0x00, 0x00, 0x04, 0xB1, + 0x00, 0x00, 0x09, 0xB7, 0x00, 0x00, 0x04, 0xB2, 0x00, 0x00, 0x04, 0xB2, + 0x00, 0x00, 0x01, 0xD5, 0x00, 0x00, 0x04, 0xB3, 0x00, 0x00, 0x04, 0xB3, + 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x04, 0xB4, 0x00, 0x00, 0x04, 0xB4, + 0x00, 0x00, 0x04, 0x3A, 0x00, 0x00, 0x04, 0xB5, 0x00, 0x00, 0x04, 0xB5, + 0x00, 0x00, 0x05, 0x17, 0x00, 0x00, 0x04, 0xB6, 0x00, 0x00, 0x04, 0xB6, + 0x00, 0x00, 0x04, 0x3C, 0x00, 0x00, 0x04, 0xB7, 0x00, 0x00, 0x04, 0xB7, + 0x00, 0x00, 0x05, 0x05, 0x00, 0x00, 0x04, 0xB8, 0x00, 0x00, 0x04, 0xB8, + 0x00, 0x00, 0x04, 0x3D, 0x00, 0x00, 0x04, 0xB9, 0x00, 0x00, 0x04, 0xB9, + 0x00, 0x00, 0x05, 0x06, 0x00, 0x00, 0x04, 0xBA, 0x00, 0x00, 0x04, 0xBA, + 0x00, 0x00, 0x04, 0x3E, 0x00, 0x00, 0x04, 0xBB, 0x00, 0x00, 0x04, 0xBB, + 0x00, 0x00, 0x02, 0xB0, 0x00, 0x00, 0x04, 0xBC, 0x00, 0x00, 0x04, 0xBC, + 0x00, 0x00, 0x04, 0x4E, 0x00, 0x00, 0x04, 0xBD, 0x00, 0x00, 0x04, 0xBD, + 0x00, 0x00, 0x05, 0x18, 0x00, 0x00, 0x04, 0xBE, 0x00, 0x00, 0x04, 0xBE, + 0x00, 0x00, 0x09, 0x96, 0x00, 0x00, 0x04, 0xBF, 0x00, 0x00, 0x04, 0xBF, + 0x00, 0x00, 0x09, 0xB8, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x04, 0xC1, + 0x00, 0x00, 0x09, 0x97, 0x00, 0x00, 0x04, 0xC2, 0x00, 0x00, 0x04, 0xC2, + 0x00, 0x00, 0x09, 0xB9, 0x00, 0x00, 0x04, 0xC3, 0x00, 0x00, 0x04, 0xC3, + 0x00, 0x00, 0x04, 0x33, 0x00, 0x00, 0x04, 0xC4, 0x00, 0x00, 0x04, 0xC4, + 0x00, 0x00, 0x04, 0xEF, 0x00, 0x00, 0x04, 0xC5, 0x00, 0x00, 0x04, 0xC5, + 0x00, 0x00, 0x09, 0x99, 0x00, 0x00, 0x04, 0xC6, 0x00, 0x00, 0x04, 0xC6, + 0x00, 0x00, 0x04, 0xF4, 0x00, 0x00, 0x04, 0xC7, 0x00, 0x00, 0x04, 0xC7, + 0x00, 0x00, 0x00, 0xAA, 0x00, 0x00, 0x04, 0xC8, 0x00, 0x00, 0x04, 0xC8, + 0x00, 0x00, 0x04, 0xFB, 0x00, 0x00, 0x04, 0xC9, 0x00, 0x00, 0x04, 0xC9, + 0x00, 0x00, 0x00, 0xAC, 0x00, 0x00, 0x04, 0xCA, 0x00, 0x00, 0x04, 0xCA, + 0x00, 0x00, 0x04, 0xFC, 0x00, 0x00, 0x04, 0xCB, 0x00, 0x00, 0x04, 0xCB, + 0x00, 0x00, 0x09, 0x9A, 0x00, 0x00, 0x04, 0xCC, 0x00, 0x00, 0x04, 0xCC, + 0x00, 0x00, 0x09, 0xBA, 0x00, 0x00, 0x04, 0xCD, 0x00, 0x00, 0x04, 0xCD, + 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x04, 0xCE, 0x00, 0x00, 0x04, 0xCE, + 0x00, 0x00, 0x04, 0xF7, 0x00, 0x00, 0x04, 0xCF, 0x00, 0x00, 0x04, 0xCF, + 0x00, 0x00, 0x02, 0xFC, 0x00, 0x00, 0x04, 0xD0, 0x00, 0x00, 0x04, 0xD0, + 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x04, 0xD1, 0x00, 0x00, 0x04, 0xD1, + 0x00, 0x00, 0x02, 0x1D, 0x00, 0x00, 0x04, 0xD2, 0x00, 0x00, 0x04, 0xD2, + 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x04, 0xD3, 0x00, 0x00, 0x04, 0xD3, + 0x00, 0x00, 0x02, 0x1E, 0x00, 0x00, 0x04, 0xD4, 0x00, 0x00, 0x04, 0xD4, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x04, 0xD5, 0x00, 0x00, 0x04, 0xD5, + 0x00, 0x00, 0x02, 0x22, 0x00, 0x00, 0x04, 0xD6, 0x00, 0x00, 0x04, 0xD6, + 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x04, 0xD7, 0x00, 0x00, 0x04, 0xD7, + 0x00, 0x00, 0x02, 0x84, 0x00, 0x00, 0x04, 0xD8, 0x00, 0x00, 0x04, 0xD8, + 0x00, 0x00, 0x04, 0x4F, 0x00, 0x00, 0x04, 0xD9, 0x00, 0x00, 0x04, 0xD9, + 0x00, 0x00, 0x09, 0xBB, 0x00, 0x00, 0x04, 0xDA, 0x00, 0x00, 0x04, 0xDA, + 0x00, 0x00, 0x09, 0x9B, 0x00, 0x00, 0x04, 0xDB, 0x00, 0x00, 0x04, 0xDB, + 0x00, 0x00, 0x09, 0xBC, 0x00, 0x00, 0x04, 0xDC, 0x00, 0x00, 0x04, 0xDC, + 0x00, 0x00, 0x09, 0x9C, 0x00, 0x00, 0x04, 0xDD, 0x00, 0x00, 0x04, 0xDD, + 0x00, 0x00, 0x09, 0xBD, 0x00, 0x00, 0x04, 0xDE, 0x00, 0x00, 0x04, 0xDE, + 0x00, 0x00, 0x09, 0x9D, 0x00, 0x00, 0x04, 0xDF, 0x00, 0x00, 0x04, 0xDF, + 0x00, 0x00, 0x09, 0xBE, 0x00, 0x00, 0x04, 0xE0, 0x00, 0x00, 0x04, 0xE0, + 0x00, 0x00, 0x04, 0x50, 0x00, 0x00, 0x04, 0xE1, 0x00, 0x00, 0x04, 0xE1, + 0x00, 0x00, 0x05, 0x19, 0x00, 0x00, 0x04, 0xE2, 0x00, 0x00, 0x04, 0xE2, + 0x00, 0x00, 0x01, 0x3B, 0x00, 0x00, 0x04, 0xE3, 0x00, 0x00, 0x04, 0xE3, + 0x00, 0x00, 0x09, 0xBF, 0x00, 0x00, 0x04, 0xE4, 0x00, 0x00, 0x04, 0xE4, + 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x04, 0xE5, 0x00, 0x00, 0x04, 0xE5, + 0x00, 0x00, 0x09, 0xC0, 0x00, 0x00, 0x04, 0xE6, 0x00, 0x00, 0x04, 0xE6, + 0x00, 0x00, 0x01, 0x72, 0x00, 0x00, 0x04, 0xE7, 0x00, 0x00, 0x04, 0xE7, + 0x00, 0x00, 0x03, 0x47, 0x00, 0x00, 0x04, 0xE8, 0x00, 0x00, 0x04, 0xE8, + 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x04, 0xE9, 0x00, 0x00, 0x04, 0xE9, + 0x00, 0x00, 0x09, 0xC1, 0x00, 0x00, 0x04, 0xEA, 0x00, 0x00, 0x04, 0xEA, + 0x00, 0x00, 0x01, 0x75, 0x00, 0x00, 0x04, 0xEB, 0x00, 0x00, 0x04, 0xEB, + 0x00, 0x00, 0x09, 0xC2, 0x00, 0x00, 0x04, 0xEC, 0x00, 0x00, 0x04, 0xEC, + 0x00, 0x00, 0x09, 0x9E, 0x00, 0x00, 0x04, 0xED, 0x00, 0x00, 0x04, 0xED, + 0x00, 0x00, 0x09, 0xC3, 0x00, 0x00, 0x04, 0xEE, 0x00, 0x00, 0x04, 0xEE, + 0x00, 0x00, 0x03, 0xF7, 0x00, 0x00, 0x04, 0xEF, 0x00, 0x00, 0x04, 0xEF, + 0x00, 0x00, 0x03, 0xF3, 0x00, 0x00, 0x04, 0xF0, 0x00, 0x00, 0x04, 0xF0, + 0x00, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x04, 0xF1, 0x00, 0x00, 0x04, 0xF1, + 0x00, 0x00, 0x03, 0xF4, 0x00, 0x00, 0x04, 0xF2, 0x00, 0x00, 0x04, 0xF2, + 0x00, 0x00, 0x03, 0xF9, 0x00, 0x00, 0x04, 0xF3, 0x00, 0x00, 0x04, 0xF3, + 0x00, 0x00, 0x03, 0xF5, 0x00, 0x00, 0x04, 0xF4, 0x00, 0x00, 0x04, 0xF4, + 0x00, 0x00, 0x09, 0x9F, 0x00, 0x00, 0x04, 0xF5, 0x00, 0x00, 0x04, 0xF5, + 0x00, 0x00, 0x09, 0xC4, 0x00, 0x00, 0x04, 0xF6, 0x00, 0x00, 0x04, 0xF6, + 0x00, 0x00, 0x09, 0x7D, 0x00, 0x00, 0x04, 0xF7, 0x00, 0x00, 0x04, 0xF7, + 0x00, 0x00, 0x09, 0xA5, 0x00, 0x00, 0x04, 0xF8, 0x00, 0x00, 0x04, 0xF8, + 0x00, 0x00, 0x09, 0xA0, 0x00, 0x00, 0x04, 0xF9, 0x00, 0x00, 0x04, 0xF9, + 0x00, 0x00, 0x09, 0xC5, 0x00, 0x00, 0x04, 0xFA, 0x00, 0x00, 0x04, 0xFA, + 0x00, 0x00, 0x04, 0x2C, 0x00, 0x00, 0x04, 0xFB, 0x00, 0x00, 0x04, 0xFB, + 0x00, 0x00, 0x04, 0xE7, 0x00, 0x00, 0x04, 0xFC, 0x00, 0x00, 0x04, 0xFC, + 0x00, 0x00, 0x01, 0xD6, 0x00, 0x00, 0x04, 0xFD, 0x00, 0x00, 0x04, 0xFD, + 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0xFE, 0x00, 0x00, 0x04, 0xFE, + 0x00, 0x00, 0x09, 0xA1, 0x00, 0x00, 0x04, 0xFF, 0x00, 0x00, 0x04, 0xFF, + 0x00, 0x00, 0x09, 0xC6, 0x00, 0x00, 0x05, 0x2F, 0x00, 0x00, 0x05, 0x2F, + 0x00, 0x00, 0x04, 0xF5, 0x00, 0x00, 0x0E, 0x3F, 0x00, 0x00, 0x0E, 0x3F, + 0x00, 0x00, 0x05, 0x39, 0x00, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x1D, 0x00, + 0x00, 0x00, 0x09, 0x6D, 0x00, 0x00, 0x1D, 0x0D, 0x00, 0x00, 0x1D, 0x0D, + 0x00, 0x00, 0x09, 0x6F, 0x00, 0x00, 0x1D, 0x1B, 0x00, 0x00, 0x1D, 0x1B, + 0x00, 0x00, 0x09, 0x70, 0x00, 0x00, 0x1D, 0x43, 0x00, 0x00, 0x1D, 0x43, + 0x00, 0x00, 0x06, 0x25, 0x00, 0x00, 0x1D, 0x47, 0x00, 0x00, 0x1D, 0x47, + 0x00, 0x00, 0x06, 0x26, 0x00, 0x00, 0x1D, 0x48, 0x00, 0x00, 0x1D, 0x49, + 0x00, 0x00, 0x06, 0x28, 0x00, 0x00, 0x1D, 0x4D, 0x00, 0x00, 0x1D, 0x4D, + 0x00, 0x00, 0x06, 0x2B, 0x00, 0x00, 0x1D, 0x4F, 0x00, 0x00, 0x1D, 0x4F, + 0x00, 0x00, 0x06, 0x2F, 0x00, 0x00, 0x1D, 0x50, 0x00, 0x00, 0x1D, 0x50, + 0x00, 0x00, 0x06, 0x31, 0x00, 0x00, 0x1D, 0x52, 0x00, 0x00, 0x1D, 0x52, + 0x00, 0x00, 0x06, 0x33, 0x00, 0x00, 0x1D, 0x56, 0x00, 0x00, 0x1D, 0x56, + 0x00, 0x00, 0x06, 0x34, 0x00, 0x00, 0x1D, 0x57, 0x00, 0x00, 0x1D, 0x58, + 0x00, 0x00, 0x06, 0x38, 0x00, 0x00, 0x1D, 0x5B, 0x00, 0x00, 0x1D, 0x5B, + 0x00, 0x00, 0x06, 0x3A, 0x00, 0x00, 0x1D, 0x62, 0x00, 0x00, 0x1D, 0x62, + 0x00, 0x00, 0x06, 0x5E, 0x00, 0x00, 0x1D, 0x63, 0x00, 0x00, 0x1D, 0x63, + 0x00, 0x00, 0x06, 0x67, 0x00, 0x00, 0x1D, 0x64, 0x00, 0x00, 0x1D, 0x65, + 0x00, 0x00, 0x06, 0x6A, 0x00, 0x00, 0x1D, 0x9C, 0x00, 0x00, 0x1D, 0x9C, + 0x00, 0x00, 0x06, 0x27, 0x00, 0x00, 0x1D, 0xA0, 0x00, 0x00, 0x1D, 0xA0, + 0x00, 0x00, 0x06, 0x2A, 0x00, 0x00, 0x1D, 0xBB, 0x00, 0x00, 0x1D, 0xBB, + 0x00, 0x00, 0x06, 0x3E, 0x00, 0x00, 0x1D, 0xBF, 0x00, 0x00, 0x1D, 0xBF, + 0x00, 0x00, 0x09, 0xE6, 0x00, 0x00, 0x1D, 0xC0, 0x00, 0x00, 0x1D, 0xC3, + 0x00, 0x00, 0x0A, 0xBB, 0x00, 0x00, 0x1D, 0xC4, 0x00, 0x00, 0x1D, 0xC4, + 0x00, 0x00, 0x0A, 0xB8, 0x00, 0x00, 0x1D, 0xC5, 0x00, 0x00, 0x1D, 0xC9, + 0x00, 0x00, 0x0A, 0xBF, 0x00, 0x00, 0x1D, 0xCA, 0x00, 0x00, 0x1D, 0xCA, + 0x00, 0x00, 0x0A, 0x5C, 0x00, 0x00, 0x1D, 0xCB, 0x00, 0x00, 0x1D, 0xD2, + 0x00, 0x00, 0x0A, 0xC4, 0x00, 0x00, 0x1D, 0xD3, 0x00, 0x00, 0x1D, 0xD6, + 0x00, 0x00, 0x0A, 0x5D, 0x00, 0x00, 0x1D, 0xD7, 0x00, 0x00, 0x1D, 0xD7, + 0x00, 0x00, 0x0A, 0xCC, 0x00, 0x00, 0x1D, 0xD8, 0x00, 0x00, 0x1D, 0xE7, + 0x00, 0x00, 0x0A, 0x61, 0x00, 0x00, 0x1D, 0xE8, 0x00, 0x00, 0x1D, 0xE8, + 0x00, 0x00, 0x0A, 0xCD, 0x00, 0x00, 0x1D, 0xE9, 0x00, 0x00, 0x1D, 0xE9, + 0x00, 0x00, 0x0A, 0x71, 0x00, 0x00, 0x1D, 0xEA, 0x00, 0x00, 0x1D, 0xF5, + 0x00, 0x00, 0x0A, 0xCE, 0x00, 0x00, 0x1D, 0xFC, 0x00, 0x00, 0x1D, 0xFF, + 0x00, 0x00, 0x0A, 0xDA, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x1E, 0x00, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x1E, 0x01, 0x00, 0x00, 0x1E, 0x01, + 0x00, 0x00, 0x02, 0x19, 0x00, 0x00, 0x1E, 0x02, 0x00, 0x00, 0x1E, 0x02, + 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x1E, 0x03, 0x00, 0x00, 0x1E, 0x03, + 0x00, 0x00, 0x02, 0x46, 0x00, 0x00, 0x1E, 0x04, 0x00, 0x00, 0x1E, 0x04, + 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x1E, 0x05, 0x00, 0x00, 0x1E, 0x05, + 0x00, 0x00, 0x02, 0x47, 0x00, 0x00, 0x1E, 0x06, 0x00, 0x00, 0x1E, 0x06, + 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x1E, 0x07, 0x00, 0x00, 0x1E, 0x07, + 0x00, 0x00, 0x02, 0x48, 0x00, 0x00, 0x1E, 0x08, 0x00, 0x00, 0x1E, 0x08, + 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x1E, 0x09, 0x00, 0x00, 0x1E, 0x09, + 0x00, 0x00, 0x02, 0x52, 0x00, 0x00, 0x1E, 0x0A, 0x00, 0x00, 0x1E, 0x0A, + 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x1E, 0x0B, 0x00, 0x00, 0x1E, 0x0B, + 0x00, 0x00, 0x02, 0x5C, 0x00, 0x00, 0x1E, 0x0C, 0x00, 0x00, 0x1E, 0x0C, + 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x1E, 0x0D, 0x00, 0x00, 0x1E, 0x0D, + 0x00, 0x00, 0x02, 0x5D, 0x00, 0x00, 0x1E, 0x0E, 0x00, 0x00, 0x1E, 0x0E, + 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x1E, 0x0F, 0x00, 0x00, 0x1E, 0x0F, + 0x00, 0x00, 0x02, 0x5E, 0x00, 0x00, 0x1E, 0x10, 0x00, 0x00, 0x1E, 0x10, + 0x00, 0x00, 0x00, 0x5A, 0x00, 0x00, 0x1E, 0x11, 0x00, 0x00, 0x1E, 0x11, + 0x00, 0x00, 0x02, 0x5F, 0x00, 0x00, 0x1E, 0x12, 0x00, 0x00, 0x1E, 0x12, + 0x00, 0x00, 0x00, 0x5B, 0x00, 0x00, 0x1E, 0x13, 0x00, 0x00, 0x1E, 0x13, + 0x00, 0x00, 0x02, 0x60, 0x00, 0x00, 0x1E, 0x14, 0x00, 0x00, 0x1E, 0x14, + 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x1E, 0x15, 0x00, 0x00, 0x1E, 0x15, + 0x00, 0x00, 0x02, 0x74, 0x00, 0x00, 0x1E, 0x16, 0x00, 0x00, 0x1E, 0x16, + 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0x1E, 0x17, 0x00, 0x00, 0x1E, 0x17, + 0x00, 0x00, 0x02, 0x75, 0x00, 0x00, 0x1E, 0x18, 0x00, 0x00, 0x1E, 0x18, + 0x00, 0x00, 0x00, 0x6E, 0x00, 0x00, 0x1E, 0x19, 0x00, 0x00, 0x1E, 0x19, + 0x00, 0x00, 0x02, 0x76, 0x00, 0x00, 0x1E, 0x1A, 0x00, 0x00, 0x1E, 0x1A, + 0x00, 0x00, 0x00, 0x6F, 0x00, 0x00, 0x1E, 0x1B, 0x00, 0x00, 0x1E, 0x1B, + 0x00, 0x00, 0x02, 0x77, 0x00, 0x00, 0x1E, 0x1C, 0x00, 0x00, 0x1E, 0x1C, + 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x1E, 0x1D, 0x00, 0x00, 0x1E, 0x1D, + 0x00, 0x00, 0x02, 0x78, 0x00, 0x00, 0x1E, 0x1E, 0x00, 0x00, 0x1E, 0x1E, + 0x00, 0x00, 0x00, 0x8B, 0x00, 0x00, 0x1E, 0x1F, 0x00, 0x00, 0x1E, 0x1F, + 0x00, 0x00, 0x02, 0x90, 0x00, 0x00, 0x1E, 0x20, 0x00, 0x00, 0x1E, 0x20, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x1E, 0x21, 0x00, 0x00, 0x1E, 0x21, + 0x00, 0x00, 0x02, 0x9B, 0x00, 0x00, 0x1E, 0x22, 0x00, 0x00, 0x1E, 0x22, + 0x00, 0x00, 0x00, 0xA5, 0x00, 0x00, 0x1E, 0x23, 0x00, 0x00, 0x1E, 0x23, + 0x00, 0x00, 0x02, 0xAB, 0x00, 0x00, 0x1E, 0x24, 0x00, 0x00, 0x1E, 0x24, + 0x00, 0x00, 0x00, 0xA6, 0x00, 0x00, 0x1E, 0x25, 0x00, 0x00, 0x1E, 0x25, + 0x00, 0x00, 0x02, 0xAC, 0x00, 0x00, 0x1E, 0x26, 0x00, 0x00, 0x1E, 0x26, + 0x00, 0x00, 0x00, 0xA7, 0x00, 0x00, 0x1E, 0x27, 0x00, 0x00, 0x1E, 0x27, + 0x00, 0x00, 0x02, 0xAD, 0x00, 0x00, 0x1E, 0x28, 0x00, 0x00, 0x1E, 0x28, + 0x00, 0x00, 0x00, 0xA2, 0x00, 0x00, 0x1E, 0x29, 0x00, 0x00, 0x1E, 0x29, + 0x00, 0x00, 0x02, 0x9F, 0x00, 0x00, 0x1E, 0x2A, 0x00, 0x00, 0x1E, 0x2A, + 0x00, 0x00, 0x00, 0xA8, 0x00, 0x00, 0x1E, 0x2B, 0x00, 0x00, 0x1E, 0x2B, + 0x00, 0x00, 0x02, 0xAE, 0x00, 0x00, 0x1E, 0x2C, 0x00, 0x00, 0x1E, 0x2C, + 0x00, 0x00, 0x00, 0xCA, 0x00, 0x00, 0x1E, 0x2D, 0x00, 0x00, 0x1E, 0x2D, + 0x00, 0x00, 0x02, 0xB7, 0x00, 0x00, 0x1E, 0x2E, 0x00, 0x00, 0x1E, 0x2E, + 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x1E, 0x2F, 0x00, 0x00, 0x1E, 0x2F, + 0x00, 0x00, 0x02, 0xB5, 0x00, 0x00, 0x1E, 0x30, 0x00, 0x00, 0x1E, 0x30, + 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x1E, 0x31, 0x00, 0x00, 0x1E, 0x31, + 0x00, 0x00, 0x02, 0xDB, 0x00, 0x00, 0x1E, 0x32, 0x00, 0x00, 0x1E, 0x32, + 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x1E, 0x33, 0x00, 0x00, 0x1E, 0x33, + 0x00, 0x00, 0x02, 0xDC, 0x00, 0x00, 0x1E, 0x34, 0x00, 0x00, 0x1E, 0x34, + 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x1E, 0x35, 0x00, 0x00, 0x1E, 0x35, + 0x00, 0x00, 0x02, 0xDD, 0x00, 0x00, 0x1E, 0x36, 0x00, 0x00, 0x1E, 0x36, + 0x00, 0x00, 0x01, 0x1D, 0x00, 0x00, 0x1E, 0x37, 0x00, 0x00, 0x1E, 0x37, + 0x00, 0x00, 0x02, 0xEB, 0x00, 0x00, 0x1E, 0x38, 0x00, 0x00, 0x1E, 0x38, + 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x1E, 0x39, 0x00, 0x00, 0x1E, 0x39, + 0x00, 0x00, 0x02, 0xEC, 0x00, 0x00, 0x1E, 0x3A, 0x00, 0x00, 0x1E, 0x3A, + 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x1E, 0x3B, 0x00, 0x00, 0x1E, 0x3B, + 0x00, 0x00, 0x02, 0xED, 0x00, 0x00, 0x1E, 0x3C, 0x00, 0x00, 0x1E, 0x3C, + 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x1E, 0x3D, 0x00, 0x00, 0x1E, 0x3D, + 0x00, 0x00, 0x02, 0xEE, 0x00, 0x00, 0x1E, 0x3E, 0x00, 0x00, 0x1E, 0x3E, + 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x1E, 0x3F, 0x00, 0x00, 0x1E, 0x3F, + 0x00, 0x00, 0x03, 0x02, 0x00, 0x00, 0x1E, 0x40, 0x00, 0x00, 0x1E, 0x40, + 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x1E, 0x41, 0x00, 0x00, 0x1E, 0x41, + 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x1E, 0x42, 0x00, 0x00, 0x1E, 0x42, + 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, 0x1E, 0x43, 0x00, 0x00, 0x1E, 0x43, + 0x00, 0x00, 0x03, 0x04, 0x00, 0x00, 0x1E, 0x44, 0x00, 0x00, 0x1E, 0x44, + 0x00, 0x00, 0x01, 0x32, 0x00, 0x00, 0x1E, 0x45, 0x00, 0x00, 0x1E, 0x45, + 0x00, 0x00, 0x03, 0x10, 0x00, 0x00, 0x1E, 0x46, 0x00, 0x00, 0x1E, 0x46, + 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, 0x1E, 0x47, 0x00, 0x00, 0x1E, 0x47, + 0x00, 0x00, 0x03, 0x11, 0x00, 0x00, 0x1E, 0x48, 0x00, 0x00, 0x1E, 0x48, + 0x00, 0x00, 0x01, 0x34, 0x00, 0x00, 0x1E, 0x49, 0x00, 0x00, 0x1E, 0x49, + 0x00, 0x00, 0x03, 0x12, 0x00, 0x00, 0x1E, 0x4A, 0x00, 0x00, 0x1E, 0x4A, + 0x00, 0x00, 0x01, 0x35, 0x00, 0x00, 0x1E, 0x4B, 0x00, 0x00, 0x1E, 0x4B, + 0x00, 0x00, 0x03, 0x13, 0x00, 0x00, 0x1E, 0x4C, 0x00, 0x00, 0x1E, 0x4C, + 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x1E, 0x4D, 0x00, 0x00, 0x1E, 0x4D, + 0x00, 0x00, 0x03, 0x2A, 0x00, 0x00, 0x1E, 0x4E, 0x00, 0x00, 0x1E, 0x4E, + 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x1E, 0x4F, 0x00, 0x00, 0x1E, 0x4F, + 0x00, 0x00, 0x03, 0x2B, 0x00, 0x00, 0x1E, 0x50, 0x00, 0x00, 0x1E, 0x50, + 0x00, 0x00, 0x01, 0x57, 0x00, 0x00, 0x1E, 0x51, 0x00, 0x00, 0x1E, 0x51, + 0x00, 0x00, 0x03, 0x2C, 0x00, 0x00, 0x1E, 0x52, 0x00, 0x00, 0x1E, 0x52, + 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x1E, 0x53, 0x00, 0x00, 0x1E, 0x53, + 0x00, 0x00, 0x03, 0x2D, 0x00, 0x00, 0x1E, 0x54, 0x00, 0x00, 0x1E, 0x54, + 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x1E, 0x55, 0x00, 0x00, 0x1E, 0x55, + 0x00, 0x00, 0x03, 0x4E, 0x00, 0x00, 0x1E, 0x56, 0x00, 0x00, 0x1E, 0x56, + 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x1E, 0x57, 0x00, 0x00, 0x1E, 0x57, + 0x00, 0x00, 0x03, 0x4F, 0x00, 0x00, 0x1E, 0x58, 0x00, 0x00, 0x1E, 0x58, + 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x1E, 0x59, 0x00, 0x00, 0x1E, 0x59, + 0x00, 0x00, 0x03, 0x61, 0x00, 0x00, 0x1E, 0x5A, 0x00, 0x00, 0x1E, 0x5A, + 0x00, 0x00, 0x01, 0x87, 0x00, 0x00, 0x1E, 0x5B, 0x00, 0x00, 0x1E, 0x5B, + 0x00, 0x00, 0x03, 0x62, 0x00, 0x00, 0x1E, 0x5C, 0x00, 0x00, 0x1E, 0x5C, + 0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x1E, 0x5D, 0x00, 0x00, 0x1E, 0x5D, + 0x00, 0x00, 0x03, 0x63, 0x00, 0x00, 0x1E, 0x5E, 0x00, 0x00, 0x1E, 0x5E, + 0x00, 0x00, 0x01, 0x89, 0x00, 0x00, 0x1E, 0x5F, 0x00, 0x00, 0x1E, 0x5F, + 0x00, 0x00, 0x03, 0x64, 0x00, 0x00, 0x1E, 0x60, 0x00, 0x00, 0x1E, 0x60, + 0x00, 0x00, 0x01, 0x93, 0x00, 0x00, 0x1E, 0x61, 0x00, 0x00, 0x1E, 0x61, + 0x00, 0x00, 0x03, 0x6F, 0x00, 0x00, 0x1E, 0x62, 0x00, 0x00, 0x1E, 0x62, + 0x00, 0x00, 0x01, 0x94, 0x00, 0x00, 0x1E, 0x63, 0x00, 0x00, 0x1E, 0x63, + 0x00, 0x00, 0x03, 0x70, 0x00, 0x00, 0x1E, 0x64, 0x00, 0x00, 0x1E, 0x64, + 0x00, 0x00, 0x01, 0x95, 0x00, 0x00, 0x1E, 0x65, 0x00, 0x00, 0x1E, 0x65, + 0x00, 0x00, 0x03, 0x71, 0x00, 0x00, 0x1E, 0x66, 0x00, 0x00, 0x1E, 0x66, + 0x00, 0x00, 0x01, 0x96, 0x00, 0x00, 0x1E, 0x67, 0x00, 0x00, 0x1E, 0x67, + 0x00, 0x00, 0x03, 0x72, 0x00, 0x00, 0x1E, 0x68, 0x00, 0x00, 0x1E, 0x68, + 0x00, 0x00, 0x01, 0x97, 0x00, 0x00, 0x1E, 0x69, 0x00, 0x00, 0x1E, 0x69, + 0x00, 0x00, 0x03, 0x73, 0x00, 0x00, 0x1E, 0x6A, 0x00, 0x00, 0x1E, 0x6A, + 0x00, 0x00, 0x01, 0x9F, 0x00, 0x00, 0x1E, 0x6B, 0x00, 0x00, 0x1E, 0x6B, + 0x00, 0x00, 0x03, 0x82, 0x00, 0x00, 0x1E, 0x6C, 0x00, 0x00, 0x1E, 0x6C, + 0x00, 0x00, 0x01, 0xA0, 0x00, 0x00, 0x1E, 0x6D, 0x00, 0x00, 0x1E, 0x6D, + 0x00, 0x00, 0x03, 0x83, 0x00, 0x00, 0x1E, 0x6E, 0x00, 0x00, 0x1E, 0x6E, + 0x00, 0x00, 0x01, 0xA1, 0x00, 0x00, 0x1E, 0x6F, 0x00, 0x00, 0x1E, 0x6F, + 0x00, 0x00, 0x03, 0x84, 0x00, 0x00, 0x1E, 0x70, 0x00, 0x00, 0x1E, 0x70, + 0x00, 0x00, 0x01, 0xA2, 0x00, 0x00, 0x1E, 0x71, 0x00, 0x00, 0x1E, 0x71, + 0x00, 0x00, 0x03, 0x85, 0x00, 0x00, 0x1E, 0x72, 0x00, 0x00, 0x1E, 0x72, + 0x00, 0x00, 0x01, 0xBB, 0x00, 0x00, 0x1E, 0x73, 0x00, 0x00, 0x1E, 0x73, + 0x00, 0x00, 0x03, 0xA6, 0x00, 0x00, 0x1E, 0x74, 0x00, 0x00, 0x1E, 0x74, + 0x00, 0x00, 0x01, 0xBC, 0x00, 0x00, 0x1E, 0x75, 0x00, 0x00, 0x1E, 0x75, + 0x00, 0x00, 0x03, 0xA7, 0x00, 0x00, 0x1E, 0x76, 0x00, 0x00, 0x1E, 0x76, + 0x00, 0x00, 0x01, 0xBD, 0x00, 0x00, 0x1E, 0x77, 0x00, 0x00, 0x1E, 0x77, + 0x00, 0x00, 0x03, 0xA8, 0x00, 0x00, 0x1E, 0x78, 0x00, 0x00, 0x1E, 0x78, + 0x00, 0x00, 0x01, 0xBE, 0x00, 0x00, 0x1E, 0x79, 0x00, 0x00, 0x1E, 0x79, + 0x00, 0x00, 0x03, 0xA9, 0x00, 0x00, 0x1E, 0x7A, 0x00, 0x00, 0x1E, 0x7A, + 0x00, 0x00, 0x01, 0xBF, 0x00, 0x00, 0x1E, 0x7B, 0x00, 0x00, 0x1E, 0x7B, + 0x00, 0x00, 0x03, 0xAA, 0x00, 0x00, 0x1E, 0x7C, 0x00, 0x00, 0x1E, 0x7C, + 0x00, 0x00, 0x01, 0xC9, 0x00, 0x00, 0x1E, 0x7D, 0x00, 0x00, 0x1E, 0x7D, + 0x00, 0x00, 0x03, 0xD4, 0x00, 0x00, 0x1E, 0x7E, 0x00, 0x00, 0x1E, 0x7E, + 0x00, 0x00, 0x01, 0xCA, 0x00, 0x00, 0x1E, 0x7F, 0x00, 0x00, 0x1E, 0x7F, + 0x00, 0x00, 0x03, 0xD5, 0x00, 0x00, 0x1E, 0x80, 0x00, 0x00, 0x1E, 0x80, + 0x00, 0x00, 0x01, 0xCD, 0x00, 0x00, 0x1E, 0x81, 0x00, 0x00, 0x1E, 0x81, + 0x00, 0x00, 0x03, 0xDA, 0x00, 0x00, 0x1E, 0x82, 0x00, 0x00, 0x1E, 0x82, + 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x1E, 0x83, 0x00, 0x00, 0x1E, 0x83, + 0x00, 0x00, 0x03, 0xDB, 0x00, 0x00, 0x1E, 0x84, 0x00, 0x00, 0x1E, 0x84, + 0x00, 0x00, 0x01, 0xCF, 0x00, 0x00, 0x1E, 0x85, 0x00, 0x00, 0x1E, 0x85, + 0x00, 0x00, 0x03, 0xD7, 0x00, 0x00, 0x1E, 0x86, 0x00, 0x00, 0x1E, 0x86, + 0x00, 0x00, 0x01, 0xD0, 0x00, 0x00, 0x1E, 0x87, 0x00, 0x00, 0x1E, 0x87, + 0x00, 0x00, 0x03, 0xDC, 0x00, 0x00, 0x1E, 0x88, 0x00, 0x00, 0x1E, 0x88, + 0x00, 0x00, 0x01, 0xD1, 0x00, 0x00, 0x1E, 0x89, 0x00, 0x00, 0x1E, 0x89, + 0x00, 0x00, 0x03, 0xDD, 0x00, 0x00, 0x1E, 0x8A, 0x00, 0x00, 0x1E, 0x8A, + 0x00, 0x00, 0x01, 0xD3, 0x00, 0x00, 0x1E, 0x8B, 0x00, 0x00, 0x1E, 0x8B, + 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x1E, 0x8C, 0x00, 0x00, 0x1E, 0x8C, + 0x00, 0x00, 0x01, 0xD4, 0x00, 0x00, 0x1E, 0x8D, 0x00, 0x00, 0x1E, 0x8D, + 0x00, 0x00, 0x03, 0xE1, 0x00, 0x00, 0x1E, 0x8E, 0x00, 0x00, 0x1E, 0x8E, + 0x00, 0x00, 0x01, 0xDE, 0x00, 0x00, 0x1E, 0x8F, 0x00, 0x00, 0x1E, 0x8F, + 0x00, 0x00, 0x03, 0xEB, 0x00, 0x00, 0x1E, 0x90, 0x00, 0x00, 0x1E, 0x90, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x1E, 0x91, 0x00, 0x00, 0x1E, 0x91, + 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1E, 0x92, 0x00, 0x00, 0x1E, 0x92, + 0x00, 0x00, 0x01, 0xF5, 0x00, 0x00, 0x1E, 0x93, 0x00, 0x00, 0x1E, 0x93, + 0x00, 0x00, 0x04, 0x05, 0x00, 0x00, 0x1E, 0x94, 0x00, 0x00, 0x1E, 0x94, + 0x00, 0x00, 0x01, 0xF6, 0x00, 0x00, 0x1E, 0x95, 0x00, 0x00, 0x1E, 0x95, + 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x1E, 0x96, 0x00, 0x00, 0x1E, 0x96, + 0x00, 0x00, 0x02, 0xAF, 0x00, 0x00, 0x1E, 0x97, 0x00, 0x00, 0x1E, 0x97, + 0x00, 0x00, 0x03, 0x86, 0x00, 0x00, 0x1E, 0x98, 0x00, 0x00, 0x1E, 0x98, + 0x00, 0x00, 0x03, 0xDE, 0x00, 0x00, 0x1E, 0x99, 0x00, 0x00, 0x1E, 0x99, + 0x00, 0x00, 0x03, 0xEC, 0x00, 0x00, 0x1E, 0x9A, 0x00, 0x00, 0x1E, 0x9A, + 0x00, 0x00, 0x02, 0x15, 0x00, 0x00, 0x1E, 0x9B, 0x00, 0x00, 0x1E, 0x9B, + 0x00, 0x00, 0x02, 0x8F, 0x00, 0x00, 0x1E, 0x9D, 0x00, 0x00, 0x1E, 0x9D, + 0x00, 0x00, 0x09, 0x64, 0x00, 0x00, 0x1E, 0x9E, 0x00, 0x00, 0x1E, 0x9E, + 0x00, 0x00, 0x01, 0x9A, 0x00, 0x00, 0x1E, 0x9F, 0x00, 0x00, 0x1E, 0x9F, + 0x00, 0x00, 0x09, 0x65, 0x00, 0x00, 0x1E, 0xA0, 0x00, 0x00, 0x1E, 0xA0, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x1E, 0xA1, 0x00, 0x00, 0x1E, 0xA1, + 0x00, 0x00, 0x02, 0x0E, 0x00, 0x00, 0x1E, 0xA2, 0x00, 0x00, 0x1E, 0xA2, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x1E, 0xA3, 0x00, 0x00, 0x1E, 0xA3, + 0x00, 0x00, 0x02, 0x11, 0x00, 0x00, 0x1E, 0xA4, 0x00, 0x00, 0x1E, 0xA4, + 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x1E, 0xA5, 0x00, 0x00, 0x1E, 0xA5, + 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x1E, 0xA6, 0x00, 0x00, 0x1E, 0xA6, + 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x1E, 0xA7, 0x00, 0x00, 0x1E, 0xA7, + 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x1E, 0xA8, 0x00, 0x00, 0x1E, 0xA8, + 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x1E, 0xA9, 0x00, 0x00, 0x1E, 0xA9, + 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x1E, 0xAA, 0x00, 0x00, 0x1E, 0xAA, + 0x00, 0x00, 0x00, 0x1A, 0x00, 0x00, 0x1E, 0xAB, 0x00, 0x00, 0x1E, 0xAB, + 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x1E, 0xAC, 0x00, 0x00, 0x1E, 0xAC, + 0x00, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x1E, 0xAD, 0x00, 0x00, 0x1E, 0xAD, + 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x1E, 0xAE, 0x00, 0x00, 0x1E, 0xAE, + 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x1E, 0xAF, 0x00, 0x00, 0x1E, 0xAF, + 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x1E, 0xB0, 0x00, 0x00, 0x1E, 0xB0, + 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, 0x1E, 0xB1, 0x00, 0x00, 0x1E, 0xB1, + 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x1E, 0xB2, 0x00, 0x00, 0x1E, 0xB2, + 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x1E, 0xB3, 0x00, 0x00, 0x1E, 0xB3, + 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x1E, 0xB4, 0x00, 0x00, 0x1E, 0xB4, + 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x1E, 0xB5, 0x00, 0x00, 0x1E, 0xB5, + 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x1E, 0xB6, 0x00, 0x00, 0x1E, 0xB6, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x1E, 0xB7, 0x00, 0x00, 0x1E, 0xB7, + 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x1E, 0xB8, 0x00, 0x00, 0x1E, 0xB8, + 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x1E, 0xB9, 0x00, 0x00, 0x1E, 0xB9, + 0x00, 0x00, 0x02, 0x79, 0x00, 0x00, 0x1E, 0xBA, 0x00, 0x00, 0x1E, 0xBA, + 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x1E, 0xBB, 0x00, 0x00, 0x1E, 0xBB, + 0x00, 0x00, 0x02, 0x7A, 0x00, 0x00, 0x1E, 0xBC, 0x00, 0x00, 0x1E, 0xBC, + 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x1E, 0xBD, 0x00, 0x00, 0x1E, 0xBD, + 0x00, 0x00, 0x02, 0x7B, 0x00, 0x00, 0x1E, 0xBE, 0x00, 0x00, 0x1E, 0xBE, + 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x1E, 0xBF, 0x00, 0x00, 0x1E, 0xBF, + 0x00, 0x00, 0x02, 0x7C, 0x00, 0x00, 0x1E, 0xC0, 0x00, 0x00, 0x1E, 0xC0, + 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x1E, 0xC1, 0x00, 0x00, 0x1E, 0xC1, + 0x00, 0x00, 0x02, 0x7D, 0x00, 0x00, 0x1E, 0xC2, 0x00, 0x00, 0x1E, 0xC2, + 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x1E, 0xC3, 0x00, 0x00, 0x1E, 0xC3, + 0x00, 0x00, 0x02, 0x7E, 0x00, 0x00, 0x1E, 0xC4, 0x00, 0x00, 0x1E, 0xC4, + 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x1E, 0xC5, 0x00, 0x00, 0x1E, 0xC5, + 0x00, 0x00, 0x02, 0x7F, 0x00, 0x00, 0x1E, 0xC6, 0x00, 0x00, 0x1E, 0xC6, + 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1E, 0xC7, 0x00, 0x00, 0x1E, 0xC7, + 0x00, 0x00, 0x02, 0x80, 0x00, 0x00, 0x1E, 0xC8, 0x00, 0x00, 0x1E, 0xC8, + 0x00, 0x00, 0x00, 0xD6, 0x00, 0x00, 0x1E, 0xC9, 0x00, 0x00, 0x1E, 0xC9, + 0x00, 0x00, 0x02, 0xC4, 0x00, 0x00, 0x1E, 0xCA, 0x00, 0x00, 0x1E, 0xCA, + 0x00, 0x00, 0x00, 0xD7, 0x00, 0x00, 0x1E, 0xCB, 0x00, 0x00, 0x1E, 0xCB, + 0x00, 0x00, 0x02, 0xC5, 0x00, 0x00, 0x1E, 0xCC, 0x00, 0x00, 0x1E, 0xCC, + 0x00, 0x00, 0x01, 0x59, 0x00, 0x00, 0x1E, 0xCD, 0x00, 0x00, 0x1E, 0xCD, + 0x00, 0x00, 0x03, 0x2E, 0x00, 0x00, 0x1E, 0xCE, 0x00, 0x00, 0x1E, 0xCE, + 0x00, 0x00, 0x01, 0x5A, 0x00, 0x00, 0x1E, 0xCF, 0x00, 0x00, 0x1E, 0xCF, + 0x00, 0x00, 0x03, 0x2F, 0x00, 0x00, 0x1E, 0xD0, 0x00, 0x00, 0x1E, 0xD0, + 0x00, 0x00, 0x01, 0x5B, 0x00, 0x00, 0x1E, 0xD1, 0x00, 0x00, 0x1E, 0xD1, + 0x00, 0x00, 0x03, 0x30, 0x00, 0x00, 0x1E, 0xD2, 0x00, 0x00, 0x1E, 0xD2, + 0x00, 0x00, 0x01, 0x5C, 0x00, 0x00, 0x1E, 0xD3, 0x00, 0x00, 0x1E, 0xD3, + 0x00, 0x00, 0x03, 0x31, 0x00, 0x00, 0x1E, 0xD4, 0x00, 0x00, 0x1E, 0xD4, + 0x00, 0x00, 0x01, 0x5D, 0x00, 0x00, 0x1E, 0xD5, 0x00, 0x00, 0x1E, 0xD5, + 0x00, 0x00, 0x03, 0x32, 0x00, 0x00, 0x1E, 0xD6, 0x00, 0x00, 0x1E, 0xD6, + 0x00, 0x00, 0x01, 0x5E, 0x00, 0x00, 0x1E, 0xD7, 0x00, 0x00, 0x1E, 0xD7, + 0x00, 0x00, 0x03, 0x33, 0x00, 0x00, 0x1E, 0xD8, 0x00, 0x00, 0x1E, 0xD8, + 0x00, 0x00, 0x01, 0x5F, 0x00, 0x00, 0x1E, 0xD9, 0x00, 0x00, 0x1E, 0xD9, + 0x00, 0x00, 0x03, 0x34, 0x00, 0x00, 0x1E, 0xDA, 0x00, 0x00, 0x1E, 0xDA, + 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x1E, 0xDB, 0x00, 0x00, 0x1E, 0xDB, + 0x00, 0x00, 0x03, 0x35, 0x00, 0x00, 0x1E, 0xDC, 0x00, 0x00, 0x1E, 0xDC, + 0x00, 0x00, 0x01, 0x61, 0x00, 0x00, 0x1E, 0xDD, 0x00, 0x00, 0x1E, 0xDD, + 0x00, 0x00, 0x03, 0x36, 0x00, 0x00, 0x1E, 0xDE, 0x00, 0x00, 0x1E, 0xDE, + 0x00, 0x00, 0x01, 0x62, 0x00, 0x00, 0x1E, 0xDF, 0x00, 0x00, 0x1E, 0xDF, + 0x00, 0x00, 0x03, 0x37, 0x00, 0x00, 0x1E, 0xE0, 0x00, 0x00, 0x1E, 0xE0, + 0x00, 0x00, 0x01, 0x63, 0x00, 0x00, 0x1E, 0xE1, 0x00, 0x00, 0x1E, 0xE1, + 0x00, 0x00, 0x03, 0x38, 0x00, 0x00, 0x1E, 0xE2, 0x00, 0x00, 0x1E, 0xE2, + 0x00, 0x00, 0x01, 0x64, 0x00, 0x00, 0x1E, 0xE3, 0x00, 0x00, 0x1E, 0xE3, + 0x00, 0x00, 0x03, 0x39, 0x00, 0x00, 0x1E, 0xE4, 0x00, 0x00, 0x1E, 0xE4, + 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x1E, 0xE5, 0x00, 0x00, 0x1E, 0xE5, + 0x00, 0x00, 0x03, 0xAB, 0x00, 0x00, 0x1E, 0xE6, 0x00, 0x00, 0x1E, 0xE6, + 0x00, 0x00, 0x01, 0xC1, 0x00, 0x00, 0x1E, 0xE7, 0x00, 0x00, 0x1E, 0xE7, + 0x00, 0x00, 0x03, 0xAC, 0x00, 0x00, 0x1E, 0xE8, 0x00, 0x00, 0x1E, 0xE8, + 0x00, 0x00, 0x01, 0xC2, 0x00, 0x00, 0x1E, 0xE9, 0x00, 0x00, 0x1E, 0xE9, + 0x00, 0x00, 0x03, 0xAD, 0x00, 0x00, 0x1E, 0xEA, 0x00, 0x00, 0x1E, 0xEA, + 0x00, 0x00, 0x01, 0xC3, 0x00, 0x00, 0x1E, 0xEB, 0x00, 0x00, 0x1E, 0xEB, + 0x00, 0x00, 0x03, 0xAE, 0x00, 0x00, 0x1E, 0xEC, 0x00, 0x00, 0x1E, 0xEC, + 0x00, 0x00, 0x01, 0xC4, 0x00, 0x00, 0x1E, 0xED, 0x00, 0x00, 0x1E, 0xED, + 0x00, 0x00, 0x03, 0xAF, 0x00, 0x00, 0x1E, 0xEE, 0x00, 0x00, 0x1E, 0xEE, + 0x00, 0x00, 0x01, 0xC5, 0x00, 0x00, 0x1E, 0xEF, 0x00, 0x00, 0x1E, 0xEF, + 0x00, 0x00, 0x03, 0xB0, 0x00, 0x00, 0x1E, 0xF0, 0x00, 0x00, 0x1E, 0xF0, + 0x00, 0x00, 0x01, 0xC6, 0x00, 0x00, 0x1E, 0xF1, 0x00, 0x00, 0x1E, 0xF1, + 0x00, 0x00, 0x03, 0xB1, 0x00, 0x00, 0x1E, 0xF2, 0x00, 0x00, 0x1E, 0xF2, + 0x00, 0x00, 0x01, 0xDF, 0x00, 0x00, 0x1E, 0xF3, 0x00, 0x00, 0x1E, 0xF3, + 0x00, 0x00, 0x03, 0xED, 0x00, 0x00, 0x1E, 0xF4, 0x00, 0x00, 0x1E, 0xF4, + 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x1E, 0xF5, 0x00, 0x00, 0x1E, 0xF5, + 0x00, 0x00, 0x03, 0xEE, 0x00, 0x00, 0x1E, 0xF6, 0x00, 0x00, 0x1E, 0xF6, + 0x00, 0x00, 0x01, 0xE1, 0x00, 0x00, 0x1E, 0xF7, 0x00, 0x00, 0x1E, 0xF7, + 0x00, 0x00, 0x03, 0xEF, 0x00, 0x00, 0x1E, 0xF8, 0x00, 0x00, 0x1E, 0xF8, + 0x00, 0x00, 0x01, 0xE2, 0x00, 0x00, 0x1E, 0xF9, 0x00, 0x00, 0x1E, 0xF9, + 0x00, 0x00, 0x03, 0xF0, 0x00, 0x00, 0x1E, 0xFA, 0x00, 0x00, 0x1E, 0xFA, + 0x00, 0x00, 0x09, 0x31, 0x00, 0x00, 0x1E, 0xFB, 0x00, 0x00, 0x1E, 0xFB, + 0x00, 0x00, 0x09, 0x66, 0x00, 0x00, 0x1E, 0xFC, 0x00, 0x00, 0x1E, 0xFC, + 0x00, 0x00, 0x09, 0x32, 0x00, 0x00, 0x1E, 0xFD, 0x00, 0x00, 0x1E, 0xFD, + 0x00, 0x00, 0x09, 0x67, 0x00, 0x00, 0x1E, 0xFE, 0x00, 0x00, 0x1E, 0xFE, + 0x00, 0x00, 0x09, 0x33, 0x00, 0x00, 0x1E, 0xFF, 0x00, 0x00, 0x1E, 0xFF, + 0x00, 0x00, 0x09, 0x68, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x1F, 0x07, + 0x00, 0x00, 0x04, 0x56, 0x00, 0x00, 0x1F, 0x08, 0x00, 0x00, 0x1F, 0x0F, + 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x1F, 0x10, 0x00, 0x00, 0x1F, 0x15, + 0x00, 0x00, 0x04, 0x78, 0x00, 0x00, 0x1F, 0x18, 0x00, 0x00, 0x1F, 0x1D, + 0x00, 0x00, 0x00, 0x7D, 0x00, 0x00, 0x1F, 0x20, 0x00, 0x00, 0x1F, 0x27, + 0x00, 0x00, 0x04, 0x82, 0x00, 0x00, 0x1F, 0x28, 0x00, 0x00, 0x1F, 0x2F, + 0x00, 0x00, 0x00, 0xB1, 0x00, 0x00, 0x1F, 0x30, 0x00, 0x00, 0x1F, 0x37, + 0x00, 0x00, 0x04, 0x9D, 0x00, 0x00, 0x1F, 0x38, 0x00, 0x00, 0x1F, 0x3F, + 0x00, 0x00, 0x00, 0xDC, 0x00, 0x00, 0x1F, 0x40, 0x00, 0x00, 0x1F, 0x45, + 0x00, 0x00, 0x03, 0x3D, 0x00, 0x00, 0x1F, 0x48, 0x00, 0x00, 0x1F, 0x4D, + 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x1F, 0x50, 0x00, 0x00, 0x1F, 0x57, + 0x00, 0x00, 0x04, 0xB9, 0x00, 0x00, 0x1F, 0x59, 0x00, 0x00, 0x1F, 0x59, + 0x00, 0x00, 0x01, 0xE7, 0x00, 0x00, 0x1F, 0x5B, 0x00, 0x00, 0x1F, 0x5B, + 0x00, 0x00, 0x01, 0xE8, 0x00, 0x00, 0x1F, 0x5D, 0x00, 0x00, 0x1F, 0x5D, + 0x00, 0x00, 0x01, 0xE9, 0x00, 0x00, 0x1F, 0x5F, 0x00, 0x00, 0x1F, 0x5F, + 0x00, 0x00, 0x01, 0xEA, 0x00, 0x00, 0x1F, 0x60, 0x00, 0x00, 0x1F, 0x67, + 0x00, 0x00, 0x04, 0xCC, 0x00, 0x00, 0x1F, 0x68, 0x00, 0x00, 0x1F, 0x6F, + 0x00, 0x00, 0x04, 0x13, 0x00, 0x00, 0x1F, 0x70, 0x00, 0x00, 0x1F, 0x70, + 0x00, 0x00, 0x04, 0x5E, 0x00, 0x00, 0x1F, 0x71, 0x00, 0x00, 0x1F, 0x71, + 0x00, 0x00, 0x09, 0xDB, 0x00, 0x00, 0x1F, 0x72, 0x00, 0x00, 0x1F, 0x72, + 0x00, 0x00, 0x04, 0x7E, 0x00, 0x00, 0x1F, 0x73, 0x00, 0x00, 0x1F, 0x73, + 0x00, 0x00, 0x09, 0xDC, 0x00, 0x00, 0x1F, 0x74, 0x00, 0x00, 0x1F, 0x74, + 0x00, 0x00, 0x04, 0x8A, 0x00, 0x00, 0x1F, 0x75, 0x00, 0x00, 0x1F, 0x75, + 0x00, 0x00, 0x09, 0xDD, 0x00, 0x00, 0x1F, 0x76, 0x00, 0x00, 0x1F, 0x76, + 0x00, 0x00, 0x04, 0xA5, 0x00, 0x00, 0x1F, 0x77, 0x00, 0x00, 0x1F, 0x77, + 0x00, 0x00, 0x09, 0xDE, 0x00, 0x00, 0x1F, 0x78, 0x00, 0x00, 0x1F, 0x78, + 0x00, 0x00, 0x03, 0x43, 0x00, 0x00, 0x1F, 0x79, 0x00, 0x00, 0x1F, 0x79, + 0x00, 0x00, 0x09, 0xE0, 0x00, 0x00, 0x1F, 0x7A, 0x00, 0x00, 0x1F, 0x7A, + 0x00, 0x00, 0x04, 0xC1, 0x00, 0x00, 0x1F, 0x7B, 0x00, 0x00, 0x1F, 0x7B, + 0x00, 0x00, 0x09, 0xE1, 0x00, 0x00, 0x1F, 0x7C, 0x00, 0x00, 0x1F, 0x7C, + 0x00, 0x00, 0x04, 0xD4, 0x00, 0x00, 0x1F, 0x7D, 0x00, 0x00, 0x1F, 0x7D, + 0x00, 0x00, 0x09, 0xE3, 0x00, 0x00, 0x1F, 0x80, 0x00, 0x00, 0x1F, 0x87, + 0x00, 0x00, 0x04, 0x5F, 0x00, 0x00, 0x1F, 0x88, 0x00, 0x00, 0x1F, 0x8F, + 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x1F, 0x90, 0x00, 0x00, 0x1F, 0x97, + 0x00, 0x00, 0x04, 0x8B, 0x00, 0x00, 0x1F, 0x98, 0x00, 0x00, 0x1F, 0x9F, + 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x1F, 0xA0, 0x00, 0x00, 0x1F, 0xA7, + 0x00, 0x00, 0x04, 0xD5, 0x00, 0x00, 0x1F, 0xA8, 0x00, 0x00, 0x1F, 0xAF, + 0x00, 0x00, 0x04, 0x1C, 0x00, 0x00, 0x1F, 0xB0, 0x00, 0x00, 0x1F, 0xB4, + 0x00, 0x00, 0x04, 0x67, 0x00, 0x00, 0x1F, 0xB6, 0x00, 0x00, 0x1F, 0xB7, + 0x00, 0x00, 0x04, 0x6C, 0x00, 0x00, 0x1F, 0xB8, 0x00, 0x00, 0x1F, 0xBA, + 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x1F, 0xBB, 0x00, 0x00, 0x1F, 0xBB, + 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x1F, 0xBC, 0x00, 0x00, 0x1F, 0xBC, + 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x1F, 0xBD, 0x00, 0x00, 0x1F, 0xBD, + 0x00, 0x00, 0x0A, 0x7D, 0x00, 0x00, 0x1F, 0xBE, 0x00, 0x00, 0x1F, 0xBE, + 0x00, 0x00, 0x09, 0xE4, 0x00, 0x00, 0x1F, 0xBF, 0x00, 0x00, 0x1F, 0xBF, + 0x00, 0x00, 0x0A, 0x7C, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x1F, 0xC0, + 0x00, 0x00, 0x0A, 0x8A, 0x00, 0x00, 0x1F, 0xC1, 0x00, 0x00, 0x1F, 0xC1, + 0x00, 0x00, 0x0A, 0x87, 0x00, 0x00, 0x1F, 0xC2, 0x00, 0x00, 0x1F, 0xC4, + 0x00, 0x00, 0x04, 0x93, 0x00, 0x00, 0x1F, 0xC6, 0x00, 0x00, 0x1F, 0xC7, + 0x00, 0x00, 0x04, 0x96, 0x00, 0x00, 0x1F, 0xC8, 0x00, 0x00, 0x1F, 0xC9, + 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x1F, 0xCA, 0x00, 0x00, 0x1F, 0xCB, + 0x00, 0x00, 0x00, 0xB9, 0x00, 0x00, 0x1F, 0xCC, 0x00, 0x00, 0x1F, 0xCC, + 0x00, 0x00, 0x00, 0xC4, 0x00, 0x00, 0x1F, 0xCD, 0x00, 0x00, 0x1F, 0xCD, + 0x00, 0x00, 0x0A, 0x7F, 0x00, 0x00, 0x1F, 0xCE, 0x00, 0x00, 0x1F, 0xCE, + 0x00, 0x00, 0x0A, 0x81, 0x00, 0x00, 0x1F, 0xCF, 0x00, 0x00, 0x1F, 0xCF, + 0x00, 0x00, 0x0A, 0x83, 0x00, 0x00, 0x1F, 0xD0, 0x00, 0x00, 0x1F, 0xD2, + 0x00, 0x00, 0x04, 0xA6, 0x00, 0x00, 0x1F, 0xD3, 0x00, 0x00, 0x1F, 0xD3, + 0x00, 0x00, 0x09, 0xDF, 0x00, 0x00, 0x1F, 0xD6, 0x00, 0x00, 0x1F, 0xD7, + 0x00, 0x00, 0x04, 0xA9, 0x00, 0x00, 0x1F, 0xD8, 0x00, 0x00, 0x1F, 0xDB, + 0x00, 0x00, 0x00, 0xE4, 0x00, 0x00, 0x1F, 0xDD, 0x00, 0x00, 0x1F, 0xDD, + 0x00, 0x00, 0x0A, 0x80, 0x00, 0x00, 0x1F, 0xDE, 0x00, 0x00, 0x1F, 0xDE, + 0x00, 0x00, 0x0A, 0x82, 0x00, 0x00, 0x1F, 0xDF, 0x00, 0x00, 0x1F, 0xDF, + 0x00, 0x00, 0x0A, 0x84, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x1F, 0xE2, + 0x00, 0x00, 0x04, 0xC2, 0x00, 0x00, 0x1F, 0xE3, 0x00, 0x00, 0x1F, 0xE3, + 0x00, 0x00, 0x09, 0xE2, 0x00, 0x00, 0x1F, 0xE4, 0x00, 0x00, 0x1F, 0xE5, + 0x00, 0x00, 0x04, 0xAF, 0x00, 0x00, 0x1F, 0xE6, 0x00, 0x00, 0x1F, 0xE7, + 0x00, 0x00, 0x04, 0xC5, 0x00, 0x00, 0x1F, 0xE8, 0x00, 0x00, 0x1F, 0xEB, + 0x00, 0x00, 0x01, 0xEB, 0x00, 0x00, 0x1F, 0xEC, 0x00, 0x00, 0x1F, 0xEC, + 0x00, 0x00, 0x01, 0x7D, 0x00, 0x00, 0x1F, 0xED, 0x00, 0x00, 0x1F, 0xEE, + 0x00, 0x00, 0x0A, 0x85, 0x00, 0x00, 0x1F, 0xEF, 0x00, 0x00, 0x1F, 0xEF, + 0x00, 0x00, 0x0A, 0x88, 0x00, 0x00, 0x1F, 0xF2, 0x00, 0x00, 0x1F, 0xF4, + 0x00, 0x00, 0x04, 0xDD, 0x00, 0x00, 0x1F, 0xF6, 0x00, 0x00, 0x1F, 0xF7, + 0x00, 0x00, 0x04, 0xE0, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x1F, 0xF8, + 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x1F, 0xF9, 0x00, 0x00, 0x1F, 0xF9, + 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x1F, 0xFA, 0x00, 0x00, 0x1F, 0xFA, + 0x00, 0x00, 0x04, 0x1B, 0x00, 0x00, 0x1F, 0xFB, 0x00, 0x00, 0x1F, 0xFB, + 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x1F, 0xFC, + 0x00, 0x00, 0x04, 0x24, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x1F, 0xFD, + 0x00, 0x00, 0x0A, 0x89, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x00, 0x1F, 0xFE, + 0x00, 0x00, 0x0A, 0x7E, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x0B, + 0x00, 0x00, 0x06, 0xF3, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x20, 0x11, + 0x00, 0x00, 0x0A, 0x1E, 0x00, 0x00, 0x20, 0x12, 0x00, 0x00, 0x20, 0x12, + 0x00, 0x00, 0x05, 0xB3, 0x00, 0x00, 0x20, 0x13, 0x00, 0x00, 0x20, 0x13, + 0x00, 0x00, 0x05, 0xB2, 0x00, 0x00, 0x20, 0x14, 0x00, 0x00, 0x20, 0x15, + 0x00, 0x00, 0x05, 0xB4, 0x00, 0x00, 0x20, 0x16, 0x00, 0x00, 0x20, 0x16, + 0x00, 0x00, 0x0A, 0x1D, 0x00, 0x00, 0x20, 0x17, 0x00, 0x00, 0x20, 0x17, + 0x00, 0x00, 0x0A, 0x20, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x19, + 0x00, 0x00, 0x05, 0xC8, 0x00, 0x00, 0x20, 0x1A, 0x00, 0x00, 0x20, 0x1B, + 0x00, 0x00, 0x05, 0xCF, 0x00, 0x00, 0x20, 0x1C, 0x00, 0x00, 0x20, 0x1E, + 0x00, 0x00, 0x05, 0xCC, 0x00, 0x00, 0x20, 0x1F, 0x00, 0x00, 0x20, 0x1F, + 0x00, 0x00, 0x05, 0xD1, 0x00, 0x00, 0x20, 0x20, 0x00, 0x00, 0x20, 0x21, + 0x00, 0x00, 0x06, 0x06, 0x00, 0x00, 0x20, 0x22, 0x00, 0x00, 0x20, 0x22, + 0x00, 0x00, 0x05, 0xB6, 0x00, 0x00, 0x20, 0x23, 0x00, 0x00, 0x20, 0x23, + 0x00, 0x00, 0x05, 0xB9, 0x00, 0x00, 0x20, 0x24, 0x00, 0x00, 0x20, 0x24, + 0x00, 0x00, 0x0A, 0x12, 0x00, 0x00, 0x20, 0x25, 0x00, 0x00, 0x20, 0x25, + 0x00, 0x00, 0x05, 0xDE, 0x00, 0x00, 0x20, 0x26, 0x00, 0x00, 0x20, 0x26, + 0x00, 0x00, 0x05, 0xDD, 0x00, 0x00, 0x20, 0x27, 0x00, 0x00, 0x20, 0x27, + 0x00, 0x00, 0x0A, 0x11, 0x00, 0x00, 0x20, 0x2F, 0x00, 0x00, 0x20, 0x2F, + 0x00, 0x00, 0x06, 0xF1, 0x00, 0x00, 0x20, 0x30, 0x00, 0x00, 0x20, 0x31, + 0x00, 0x00, 0x06, 0xCF, 0x00, 0x00, 0x20, 0x32, 0x00, 0x00, 0x20, 0x34, + 0x00, 0x00, 0x05, 0xD2, 0x00, 0x00, 0x20, 0x35, 0x00, 0x00, 0x20, 0x37, + 0x00, 0x00, 0x05, 0xD6, 0x00, 0x00, 0x20, 0x38, 0x00, 0x00, 0x20, 0x38, + 0x00, 0x00, 0x0A, 0x0E, 0x00, 0x00, 0x20, 0x39, 0x00, 0x00, 0x20, 0x3A, + 0x00, 0x00, 0x05, 0xE6, 0x00, 0x00, 0x20, 0x3B, 0x00, 0x00, 0x20, 0x3B, + 0x00, 0x00, 0x0A, 0x14, 0x00, 0x00, 0x20, 0x3C, 0x00, 0x00, 0x20, 0x3C, + 0x00, 0x00, 0x05, 0x92, 0x00, 0x00, 0x20, 0x3D, 0x00, 0x00, 0x20, 0x3D, + 0x00, 0x00, 0x05, 0x99, 0x00, 0x00, 0x20, 0x3E, 0x00, 0x00, 0x20, 0x3E, + 0x00, 0x00, 0x0A, 0x13, 0x00, 0x00, 0x20, 0x3F, 0x00, 0x00, 0x20, 0x3F, + 0x00, 0x00, 0x0A, 0x16, 0x00, 0x00, 0x20, 0x40, 0x00, 0x00, 0x20, 0x40, + 0x00, 0x00, 0x0A, 0x10, 0x00, 0x00, 0x20, 0x41, 0x00, 0x00, 0x20, 0x41, + 0x00, 0x00, 0x0A, 0x0F, 0x00, 0x00, 0x20, 0x42, 0x00, 0x00, 0x20, 0x42, + 0x00, 0x00, 0x0A, 0x0D, 0x00, 0x00, 0x20, 0x43, 0x00, 0x00, 0x20, 0x43, + 0x00, 0x00, 0x05, 0xB8, 0x00, 0x00, 0x20, 0x44, 0x00, 0x00, 0x20, 0x44, + 0x00, 0x00, 0x06, 0x87, 0x00, 0x00, 0x20, 0x45, 0x00, 0x00, 0x20, 0x45, + 0x00, 0x00, 0x05, 0x9E, 0x00, 0x00, 0x20, 0x46, 0x00, 0x00, 0x20, 0x46, + 0x00, 0x00, 0x05, 0xA0, 0x00, 0x00, 0x20, 0x47, 0x00, 0x00, 0x20, 0x48, + 0x00, 0x00, 0x05, 0x96, 0x00, 0x00, 0x20, 0x49, 0x00, 0x00, 0x20, 0x49, + 0x00, 0x00, 0x05, 0x94, 0x00, 0x00, 0x20, 0x4A, 0x00, 0x00, 0x20, 0x4A, + 0x00, 0x00, 0x05, 0x90, 0x00, 0x00, 0x20, 0x4B, 0x00, 0x00, 0x20, 0x4B, + 0x00, 0x00, 0x06, 0x1B, 0x00, 0x00, 0x20, 0x4C, 0x00, 0x00, 0x20, 0x4D, + 0x00, 0x00, 0x05, 0xBA, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, + 0x00, 0x00, 0x0A, 0x17, 0x00, 0x00, 0x20, 0x4F, 0x00, 0x00, 0x20, 0x4F, + 0x00, 0x00, 0x0A, 0x15, 0x00, 0x00, 0x20, 0x50, 0x00, 0x00, 0x20, 0x51, + 0x00, 0x00, 0x0A, 0x18, 0x00, 0x00, 0x20, 0x52, 0x00, 0x00, 0x20, 0x52, + 0x00, 0x00, 0x0A, 0x4E, 0x00, 0x00, 0x20, 0x53, 0x00, 0x00, 0x20, 0x55, + 0x00, 0x00, 0x0A, 0x1A, 0x00, 0x00, 0x20, 0x57, 0x00, 0x00, 0x20, 0x57, + 0x00, 0x00, 0x05, 0xD5, 0x00, 0x00, 0x20, 0x5F, 0x00, 0x00, 0x20, 0x5F, + 0x00, 0x00, 0x06, 0xF2, 0x00, 0x00, 0x20, 0x70, 0x00, 0x00, 0x20, 0x70, + 0x00, 0x00, 0x06, 0x3F, 0x00, 0x00, 0x20, 0x71, 0x00, 0x00, 0x20, 0x71, + 0x00, 0x00, 0x06, 0x2D, 0x00, 0x00, 0x20, 0x74, 0x00, 0x00, 0x20, 0x74, + 0x00, 0x00, 0x06, 0x46, 0x00, 0x00, 0x20, 0x75, 0x00, 0x00, 0x20, 0x76, + 0x00, 0x00, 0x06, 0x48, 0x00, 0x00, 0x20, 0x77, 0x00, 0x00, 0x20, 0x79, + 0x00, 0x00, 0x06, 0x4B, 0x00, 0x00, 0x20, 0x7A, 0x00, 0x00, 0x20, 0x7C, + 0x00, 0x00, 0x06, 0x53, 0x00, 0x00, 0x20, 0x7D, 0x00, 0x00, 0x20, 0x7E, + 0x00, 0x00, 0x06, 0x4F, 0x00, 0x00, 0x20, 0x7F, 0x00, 0x00, 0x20, 0x7F, + 0x00, 0x00, 0x06, 0x32, 0x00, 0x00, 0x20, 0x80, 0x00, 0x00, 0x20, 0x80, + 0x00, 0x00, 0x06, 0x70, 0x00, 0x00, 0x20, 0x81, 0x00, 0x00, 0x20, 0x81, + 0x00, 0x00, 0x06, 0x72, 0x00, 0x00, 0x20, 0x82, 0x00, 0x00, 0x20, 0x83, + 0x00, 0x00, 0x06, 0x74, 0x00, 0x00, 0x20, 0x84, 0x00, 0x00, 0x20, 0x84, + 0x00, 0x00, 0x06, 0x77, 0x00, 0x00, 0x20, 0x85, 0x00, 0x00, 0x20, 0x86, + 0x00, 0x00, 0x06, 0x79, 0x00, 0x00, 0x20, 0x87, 0x00, 0x00, 0x20, 0x89, + 0x00, 0x00, 0x06, 0x7C, 0x00, 0x00, 0x20, 0x8A, 0x00, 0x00, 0x20, 0x8C, + 0x00, 0x00, 0x06, 0x84, 0x00, 0x00, 0x20, 0x8D, 0x00, 0x00, 0x20, 0x8E, + 0x00, 0x00, 0x06, 0x80, 0x00, 0x00, 0x20, 0x90, 0x00, 0x00, 0x20, 0x90, + 0x00, 0x00, 0x06, 0x56, 0x00, 0x00, 0x20, 0x91, 0x00, 0x00, 0x20, 0x91, + 0x00, 0x00, 0x06, 0x5A, 0x00, 0x00, 0x20, 0x92, 0x00, 0x00, 0x20, 0x92, + 0x00, 0x00, 0x06, 0x64, 0x00, 0x00, 0x20, 0x93, 0x00, 0x00, 0x20, 0x93, + 0x00, 0x00, 0x06, 0x6D, 0x00, 0x00, 0x20, 0x94, 0x00, 0x00, 0x20, 0x94, + 0x00, 0x00, 0x09, 0x71, 0x00, 0x00, 0x20, 0x95, 0x00, 0x00, 0x20, 0x95, + 0x00, 0x00, 0x06, 0x5D, 0x00, 0x00, 0x20, 0x96, 0x00, 0x00, 0x20, 0x99, + 0x00, 0x00, 0x06, 0x60, 0x00, 0x00, 0x20, 0x9A, 0x00, 0x00, 0x20, 0x9A, + 0x00, 0x00, 0x06, 0x65, 0x00, 0x00, 0x20, 0x9B, 0x00, 0x00, 0x20, 0x9C, + 0x00, 0x00, 0x06, 0x68, 0x00, 0x00, 0x20, 0xA0, 0x00, 0x00, 0x20, 0xA0, + 0x00, 0x00, 0x0A, 0x4D, 0x00, 0x00, 0x20, 0xA1, 0x00, 0x00, 0x20, 0xA1, + 0x00, 0x00, 0x05, 0x2E, 0x00, 0x00, 0x20, 0xA2, 0x00, 0x00, 0x20, 0xA2, + 0x00, 0x00, 0x05, 0x30, 0x00, 0x00, 0x20, 0xA3, 0x00, 0x00, 0x20, 0xA3, + 0x00, 0x00, 0x05, 0x38, 0x00, 0x00, 0x20, 0xA4, 0x00, 0x00, 0x20, 0xA4, + 0x00, 0x00, 0x05, 0x29, 0x00, 0x00, 0x20, 0xA5, 0x00, 0x00, 0x20, 0xA5, + 0x00, 0x00, 0x05, 0x33, 0x00, 0x00, 0x20, 0xA6, 0x00, 0x00, 0x20, 0xA6, + 0x00, 0x00, 0x05, 0x2C, 0x00, 0x00, 0x20, 0xA7, 0x00, 0x00, 0x20, 0xA7, + 0x00, 0x00, 0x05, 0x25, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, + 0x00, 0x00, 0x05, 0x36, 0x00, 0x00, 0x20, 0xA9, 0x00, 0x00, 0x20, 0xA9, + 0x00, 0x00, 0x05, 0x28, 0x00, 0x00, 0x20, 0xAA, 0x00, 0x00, 0x20, 0xAA, + 0x00, 0x00, 0x05, 0x34, 0x00, 0x00, 0x20, 0xAB, 0x00, 0x00, 0x20, 0xAB, + 0x00, 0x00, 0x02, 0x65, 0x00, 0x00, 0x20, 0xAC, 0x00, 0x00, 0x20, 0xAC, + 0x00, 0x00, 0x05, 0x22, 0x00, 0x00, 0x20, 0xAD, 0x00, 0x00, 0x20, 0xAD, + 0x00, 0x00, 0x05, 0x27, 0x00, 0x00, 0x20, 0xAE, 0x00, 0x00, 0x20, 0xAF, + 0x00, 0x00, 0x05, 0x31, 0x00, 0x00, 0x20, 0xB1, 0x00, 0x00, 0x20, 0xB1, + 0x00, 0x00, 0x05, 0x26, 0x00, 0x00, 0x20, 0xB2, 0x00, 0x00, 0x20, 0xB2, + 0x00, 0x00, 0x05, 0x2D, 0x00, 0x00, 0x20, 0xB3, 0x00, 0x00, 0x20, 0xB4, + 0x00, 0x00, 0x05, 0x2A, 0x00, 0x00, 0x20, 0xB5, 0x00, 0x00, 0x20, 0xB5, + 0x00, 0x00, 0x05, 0x2F, 0x00, 0x00, 0x20, 0xB8, 0x00, 0x00, 0x20, 0xB8, + 0x00, 0x00, 0x05, 0x24, 0x00, 0x00, 0x20, 0xB9, 0x00, 0x00, 0x20, 0xB9, + 0x00, 0x00, 0x05, 0x23, 0x00, 0x00, 0x20, 0xBA, 0x00, 0x00, 0x20, 0xBA, + 0x00, 0x00, 0x05, 0x20, 0x00, 0x00, 0x20, 0xBC, 0x00, 0x00, 0x20, 0xBC, + 0x00, 0x00, 0x05, 0x35, 0x00, 0x00, 0x20, 0xBD, 0x00, 0x00, 0x20, 0xBD, + 0x00, 0x00, 0x05, 0x21, 0x00, 0x00, 0x20, 0xBE, 0x00, 0x00, 0x20, 0xBE, + 0x00, 0x00, 0x05, 0x37, 0x00, 0x00, 0x20, 0xBF, 0x00, 0x00, 0x20, 0xBF, + 0x00, 0x00, 0x05, 0x3A, 0x00, 0x00, 0x20, 0xDB, 0x00, 0x00, 0x20, 0xDB, + 0x00, 0x00, 0x0A, 0xB9, 0x00, 0x00, 0x20, 0xDC, 0x00, 0x00, 0x20, 0xDC, + 0x00, 0x00, 0x0A, 0xB7, 0x00, 0x00, 0x20, 0xDD, 0x00, 0x00, 0x20, 0xDE, + 0x00, 0x00, 0x07, 0x6B, 0x00, 0x00, 0x20, 0xE8, 0x00, 0x00, 0x20, 0xE8, + 0x00, 0x00, 0x0A, 0xBA, 0x00, 0x00, 0x20, 0xF0, 0x00, 0x00, 0x20, 0xF0, + 0x00, 0x00, 0x0A, 0xDE, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x21, 0x01, + 0x00, 0x00, 0x06, 0xD4, 0x00, 0x00, 0x21, 0x03, 0x00, 0x00, 0x21, 0x03, + 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x21, 0x05, 0x00, 0x00, 0x21, 0x05, + 0x00, 0x00, 0x06, 0xD3, 0x00, 0x00, 0x21, 0x06, 0x00, 0x00, 0x21, 0x06, + 0x00, 0x00, 0x06, 0xD2, 0x00, 0x00, 0x21, 0x09, 0x00, 0x00, 0x21, 0x09, + 0x00, 0x00, 0x07, 0x01, 0x00, 0x00, 0x21, 0x13, 0x00, 0x00, 0x21, 0x13, + 0x00, 0x00, 0x0A, 0x4B, 0x00, 0x00, 0x21, 0x16, 0x00, 0x00, 0x21, 0x16, + 0x00, 0x00, 0x06, 0xFF, 0x00, 0x00, 0x21, 0x17, 0x00, 0x00, 0x21, 0x17, + 0x00, 0x00, 0x06, 0x0E, 0x00, 0x00, 0x21, 0x1E, 0x00, 0x00, 0x21, 0x1E, + 0x00, 0x00, 0x01, 0x8B, 0x00, 0x00, 0x21, 0x1F, 0x00, 0x00, 0x21, 0x1F, + 0x00, 0x00, 0x01, 0x8A, 0x00, 0x00, 0x21, 0x20, 0x00, 0x00, 0x21, 0x21, + 0x00, 0x00, 0x06, 0x10, 0x00, 0x00, 0x21, 0x22, 0x00, 0x00, 0x21, 0x22, + 0x00, 0x00, 0x06, 0x0F, 0x00, 0x00, 0x21, 0x26, 0x00, 0x00, 0x21, 0x26, + 0x00, 0x00, 0x04, 0x10, 0x00, 0x00, 0x21, 0x2A, 0x00, 0x00, 0x21, 0x2B, + 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x21, 0x2E, 0x00, 0x00, 0x21, 0x2E, + 0x00, 0x00, 0x07, 0x05, 0x00, 0x00, 0x21, 0x32, 0x00, 0x00, 0x21, 0x32, + 0x00, 0x00, 0x00, 0x8C, 0x00, 0x00, 0x21, 0x3B, 0x00, 0x00, 0x21, 0x3B, + 0x00, 0x00, 0x06, 0x12, 0x00, 0x00, 0x21, 0x4D, 0x00, 0x00, 0x21, 0x4D, + 0x00, 0x00, 0x06, 0xD1, 0x00, 0x00, 0x21, 0x50, 0x00, 0x00, 0x21, 0x50, + 0x00, 0x00, 0x06, 0xC7, 0x00, 0x00, 0x21, 0x51, 0x00, 0x00, 0x21, 0x52, + 0x00, 0x00, 0x06, 0xCC, 0x00, 0x00, 0x21, 0x53, 0x00, 0x00, 0x21, 0x54, + 0x00, 0x00, 0x06, 0xBD, 0x00, 0x00, 0x21, 0x55, 0x00, 0x00, 0x21, 0x5A, + 0x00, 0x00, 0x06, 0xC1, 0x00, 0x00, 0x21, 0x5B, 0x00, 0x00, 0x21, 0x5E, + 0x00, 0x00, 0x06, 0xC8, 0x00, 0x00, 0x21, 0x5F, 0x00, 0x00, 0x21, 0x5F, + 0x00, 0x00, 0x06, 0xBA, 0x00, 0x00, 0x21, 0x60, 0x00, 0x00, 0x21, 0x7F, + 0x00, 0x00, 0x09, 0xE7, 0x00, 0x00, 0x21, 0x83, 0x00, 0x00, 0x21, 0x83, + 0x00, 0x00, 0x0A, 0x07, 0x00, 0x00, 0x21, 0x84, 0x00, 0x00, 0x21, 0x84, + 0x00, 0x00, 0x09, 0x69, 0x00, 0x00, 0x21, 0x85, 0x00, 0x00, 0x21, 0x86, + 0x00, 0x00, 0x0A, 0x08, 0x00, 0x00, 0x21, 0x89, 0x00, 0x00, 0x21, 0x89, + 0x00, 0x00, 0x06, 0xBC, 0x00, 0x00, 0x21, 0x90, 0x00, 0x00, 0x21, 0x90, + 0x00, 0x00, 0x07, 0x06, 0x00, 0x00, 0x21, 0x91, 0x00, 0x00, 0x21, 0x91, + 0x00, 0x00, 0x07, 0x18, 0x00, 0x00, 0x21, 0x92, 0x00, 0x00, 0x21, 0x92, + 0x00, 0x00, 0x07, 0x0B, 0x00, 0x00, 0x21, 0x93, 0x00, 0x00, 0x21, 0x93, + 0x00, 0x00, 0x07, 0x19, 0x00, 0x00, 0x21, 0x94, 0x00, 0x00, 0x21, 0x94, + 0x00, 0x00, 0x07, 0x14, 0x00, 0x00, 0x21, 0x95, 0x00, 0x00, 0x21, 0x95, + 0x00, 0x00, 0x07, 0x1B, 0x00, 0x00, 0x21, 0x96, 0x00, 0x00, 0x21, 0x99, + 0x00, 0x00, 0x07, 0x10, 0x00, 0x00, 0x21, 0xA9, 0x00, 0x00, 0x21, 0xAA, + 0x00, 0x00, 0x07, 0x1C, 0x00, 0x00, 0x21, 0xB0, 0x00, 0x00, 0x21, 0xB1, + 0x00, 0x00, 0x07, 0x61, 0x00, 0x00, 0x21, 0xB3, 0x00, 0x00, 0x21, 0xB3, + 0x00, 0x00, 0x07, 0x60, 0x00, 0x00, 0x21, 0xB4, 0x00, 0x00, 0x21, 0xB4, + 0x00, 0x00, 0x07, 0x63, 0x00, 0x00, 0x21, 0xB5, 0x00, 0x00, 0x21, 0xB5, + 0x00, 0x00, 0x07, 0x5F, 0x00, 0x00, 0x21, 0xBA, 0x00, 0x00, 0x21, 0xBB, + 0x00, 0x00, 0x07, 0x58, 0x00, 0x00, 0x21, 0xD0, 0x00, 0x00, 0x21, 0xD0, + 0x00, 0x00, 0x07, 0x09, 0x00, 0x00, 0x21, 0xD2, 0x00, 0x00, 0x21, 0xD2, + 0x00, 0x00, 0x07, 0x0E, 0x00, 0x00, 0x21, 0xD4, 0x00, 0x00, 0x21, 0xD4, + 0x00, 0x00, 0x07, 0x16, 0x00, 0x00, 0x21, 0xDE, 0x00, 0x00, 0x21, 0xDF, + 0x00, 0x00, 0x07, 0x66, 0x00, 0x00, 0x21, 0xE4, 0x00, 0x00, 0x21, 0xE5, + 0x00, 0x00, 0x07, 0x64, 0x00, 0x00, 0x21, 0xE7, 0x00, 0x00, 0x21, 0xE7, + 0x00, 0x00, 0x07, 0x4E, 0x00, 0x00, 0x21, 0xEA, 0x00, 0x00, 0x21, 0xEA, + 0x00, 0x00, 0x07, 0x4F, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x22, 0x02, + 0x00, 0x00, 0x06, 0x1E, 0x00, 0x00, 0x22, 0x05, 0x00, 0x00, 0x22, 0x05, + 0x00, 0x00, 0x06, 0x23, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x22, 0x06, + 0x00, 0x00, 0x04, 0x09, 0x00, 0x00, 0x22, 0x0F, 0x00, 0x00, 0x22, 0x0F, + 0x00, 0x00, 0x06, 0x20, 0x00, 0x00, 0x22, 0x11, 0x00, 0x00, 0x22, 0x11, + 0x00, 0x00, 0x06, 0x1F, 0x00, 0x00, 0x22, 0x12, 0x00, 0x00, 0x22, 0x12, + 0x00, 0x00, 0x05, 0xF1, 0x00, 0x00, 0x22, 0x1A, 0x00, 0x00, 0x22, 0x1A, + 0x00, 0x00, 0x06, 0x22, 0x00, 0x00, 0x22, 0x1E, 0x00, 0x00, 0x22, 0x1E, + 0x00, 0x00, 0x06, 0x1D, 0x00, 0x00, 0x22, 0x2B, 0x00, 0x00, 0x22, 0x2B, + 0x00, 0x00, 0x06, 0x21, 0x00, 0x00, 0x22, 0x36, 0x00, 0x00, 0x22, 0x36, + 0x00, 0x00, 0x05, 0xE1, 0x00, 0x00, 0x22, 0x48, 0x00, 0x00, 0x22, 0x48, + 0x00, 0x00, 0x05, 0xF5, 0x00, 0x00, 0x22, 0x60, 0x00, 0x00, 0x22, 0x60, + 0x00, 0x00, 0x05, 0xEF, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x65, + 0x00, 0x00, 0x05, 0xEC, 0x00, 0x00, 0x22, 0x95, 0x00, 0x00, 0x22, 0x96, + 0x00, 0x00, 0x07, 0x9E, 0x00, 0x00, 0x22, 0x97, 0x00, 0x00, 0x22, 0x97, + 0x00, 0x00, 0x07, 0xA1, 0x00, 0x00, 0x22, 0x98, 0x00, 0x00, 0x22, 0x98, + 0x00, 0x00, 0x07, 0xA0, 0x00, 0x00, 0x23, 0x03, 0x00, 0x00, 0x23, 0x03, + 0x00, 0x00, 0x07, 0x51, 0x00, 0x00, 0x23, 0x04, 0x00, 0x00, 0x23, 0x04, + 0x00, 0x00, 0x07, 0x53, 0x00, 0x00, 0x23, 0x05, 0x00, 0x00, 0x23, 0x05, + 0x00, 0x00, 0x07, 0x52, 0x00, 0x00, 0x23, 0x18, 0x00, 0x00, 0x23, 0x18, + 0x00, 0x00, 0x07, 0x50, 0x00, 0x00, 0x23, 0x25, 0x00, 0x00, 0x23, 0x25, + 0x00, 0x00, 0x07, 0x55, 0x00, 0x00, 0x23, 0x26, 0x00, 0x00, 0x23, 0x27, + 0x00, 0x00, 0x07, 0x5B, 0x00, 0x00, 0x23, 0x2B, 0x00, 0x00, 0x23, 0x2B, + 0x00, 0x00, 0x07, 0x5A, 0x00, 0x00, 0x23, 0x80, 0x00, 0x00, 0x23, 0x80, + 0x00, 0x00, 0x07, 0x54, 0x00, 0x00, 0x23, 0x87, 0x00, 0x00, 0x23, 0x87, + 0x00, 0x00, 0x07, 0x56, 0x00, 0x00, 0x23, 0x8B, 0x00, 0x00, 0x23, 0x8B, + 0x00, 0x00, 0x07, 0x57, 0x00, 0x00, 0x23, 0xCE, 0x00, 0x00, 0x23, 0xCE, + 0x00, 0x00, 0x07, 0x5E, 0x00, 0x00, 0x23, 0xCF, 0x00, 0x00, 0x23, 0xCF, + 0x00, 0x00, 0x07, 0x5D, 0x00, 0x00, 0x24, 0x23, 0x00, 0x00, 0x24, 0x23, + 0x00, 0x00, 0x0A, 0x4C, 0x00, 0x00, 0x24, 0x60, 0x00, 0x00, 0x24, 0x68, + 0x00, 0x00, 0x07, 0x88, 0x00, 0x00, 0x24, 0xB6, 0x00, 0x00, 0x24, 0xCF, + 0x00, 0x00, 0x07, 0x6D, 0x00, 0x00, 0x24, 0xEA, 0x00, 0x00, 0x24, 0xEA, + 0x00, 0x00, 0x07, 0x87, 0x00, 0x00, 0x25, 0xA0, 0x00, 0x00, 0x25, 0xA2, + 0x00, 0x00, 0x07, 0x3D, 0x00, 0x00, 0x25, 0xAA, 0x00, 0x00, 0x25, 0xAA, + 0x00, 0x00, 0x05, 0xBC, 0x00, 0x00, 0x25, 0xB2, 0x00, 0x00, 0x25, 0xB2, + 0x00, 0x00, 0x07, 0x33, 0x00, 0x00, 0x25, 0xB3, 0x00, 0x00, 0x25, 0xB3, + 0x00, 0x00, 0x07, 0x37, 0x00, 0x00, 0x25, 0xB6, 0x00, 0x00, 0x25, 0xB6, + 0x00, 0x00, 0x07, 0x35, 0x00, 0x00, 0x25, 0xB7, 0x00, 0x00, 0x25, 0xB7, + 0x00, 0x00, 0x07, 0x39, 0x00, 0x00, 0x25, 0xBA, 0x00, 0x00, 0x25, 0xBA, + 0x00, 0x00, 0x07, 0x35, 0x00, 0x00, 0x25, 0xBB, 0x00, 0x00, 0x25, 0xBB, + 0x00, 0x00, 0x07, 0x39, 0x00, 0x00, 0x25, 0xBC, 0x00, 0x00, 0x25, 0xBC, + 0x00, 0x00, 0x07, 0x32, 0x00, 0x00, 0x25, 0xBD, 0x00, 0x00, 0x25, 0xBD, + 0x00, 0x00, 0x07, 0x36, 0x00, 0x00, 0x25, 0xC0, 0x00, 0x00, 0x25, 0xC0, + 0x00, 0x00, 0x07, 0x34, 0x00, 0x00, 0x25, 0xC1, 0x00, 0x00, 0x25, 0xC1, + 0x00, 0x00, 0x07, 0x38, 0x00, 0x00, 0x25, 0xC4, 0x00, 0x00, 0x25, 0xC4, + 0x00, 0x00, 0x07, 0x34, 0x00, 0x00, 0x25, 0xC5, 0x00, 0x00, 0x25, 0xC5, + 0x00, 0x00, 0x07, 0x38, 0x00, 0x00, 0x25, 0xC6, 0x00, 0x00, 0x25, 0xC6, + 0x00, 0x00, 0x07, 0x42, 0x00, 0x00, 0x25, 0xC7, 0x00, 0x00, 0x25, 0xC7, + 0x00, 0x00, 0x07, 0x44, 0x00, 0x00, 0x25, 0xCA, 0x00, 0x00, 0x25, 0xCA, + 0x00, 0x00, 0x06, 0x24, 0x00, 0x00, 0x25, 0xCB, 0x00, 0x00, 0x25, 0xCB, + 0x00, 0x00, 0x07, 0x3C, 0x00, 0x00, 0x25, 0xCF, 0x00, 0x00, 0x25, 0xCF, + 0x00, 0x00, 0x07, 0x3B, 0x00, 0x00, 0x25, 0xE6, 0x00, 0x00, 0x25, 0xE6, + 0x00, 0x00, 0x05, 0xB7, 0x00, 0x00, 0x25, 0xEF, 0x00, 0x00, 0x25, 0xEF, + 0x00, 0x00, 0x07, 0x69, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x26, 0x00, + 0x00, 0x00, 0x07, 0x47, 0x00, 0x00, 0x26, 0x05, 0x00, 0x00, 0x26, 0x06, + 0x00, 0x00, 0x07, 0x4B, 0x00, 0x00, 0x26, 0x3C, 0x00, 0x00, 0x26, 0x3C, + 0x00, 0x00, 0x07, 0x46, 0x00, 0x00, 0x26, 0x61, 0x00, 0x00, 0x26, 0x61, + 0x00, 0x00, 0x07, 0x48, 0x00, 0x00, 0x26, 0x65, 0x00, 0x00, 0x26, 0x65, + 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x26, 0xA0, 0x00, 0x00, 0x26, 0xA0, + 0x00, 0x00, 0x07, 0x3A, 0x00, 0x00, 0x27, 0x13, 0x00, 0x00, 0x27, 0x13, + 0x00, 0x00, 0x07, 0x30, 0x00, 0x00, 0x27, 0x17, 0x00, 0x00, 0x27, 0x17, + 0x00, 0x00, 0x07, 0x31, 0x00, 0x00, 0x27, 0x56, 0x00, 0x00, 0x27, 0x56, + 0x00, 0x00, 0x07, 0x43, 0x00, 0x00, 0x27, 0x64, 0x00, 0x00, 0x27, 0x64, + 0x00, 0x00, 0x07, 0x4A, 0x00, 0x00, 0x27, 0x80, 0x00, 0x00, 0x27, 0x88, + 0x00, 0x00, 0x07, 0x88, 0x00, 0x00, 0x27, 0xEF, 0x00, 0x00, 0x27, 0xEF, + 0x00, 0x00, 0x0A, 0x0C, 0x00, 0x00, 0x27, 0xF5, 0x00, 0x00, 0x27, 0xF5, + 0x00, 0x00, 0x07, 0x07, 0x00, 0x00, 0x27, 0xF6, 0x00, 0x00, 0x27, 0xF6, + 0x00, 0x00, 0x07, 0x0C, 0x00, 0x00, 0x27, 0xF7, 0x00, 0x00, 0x27, 0xF7, + 0x00, 0x00, 0x07, 0x15, 0x00, 0x00, 0x27, 0xF8, 0x00, 0x00, 0x27, 0xF8, + 0x00, 0x00, 0x07, 0x0A, 0x00, 0x00, 0x27, 0xF9, 0x00, 0x00, 0x27, 0xF9, + 0x00, 0x00, 0x07, 0x0F, 0x00, 0x00, 0x27, 0xFA, 0x00, 0x00, 0x27, 0xFA, + 0x00, 0x00, 0x07, 0x17, 0x00, 0x00, 0x29, 0x13, 0x00, 0x00, 0x29, 0x13, + 0x00, 0x00, 0x07, 0x1A, 0x00, 0x00, 0x2A, 0x38, 0x00, 0x00, 0x2A, 0x38, + 0x00, 0x00, 0x07, 0xA2, 0x00, 0x00, 0x2B, 0x06, 0x00, 0x00, 0x2B, 0x06, + 0x00, 0x00, 0x07, 0x4D, 0x00, 0x00, 0x2B, 0x12, 0x00, 0x00, 0x2B, 0x13, + 0x00, 0x00, 0x07, 0x40, 0x00, 0x00, 0x2B, 0x1C, 0x00, 0x00, 0x2B, 0x1C, + 0x00, 0x00, 0x07, 0x6A, 0x00, 0x00, 0x2B, 0x24, 0x00, 0x00, 0x2B, 0x24, + 0x00, 0x00, 0x07, 0x68, 0x00, 0x00, 0x2C, 0x7C, 0x00, 0x00, 0x2C, 0x7C, + 0x00, 0x00, 0x06, 0x5F, 0x00, 0x00, 0x2C, 0x7F, 0x00, 0x00, 0x2C, 0x7F, + 0x00, 0x00, 0x01, 0xFA, 0x00, 0x00, 0x2D, 0xFF, 0x00, 0x00, 0x2D, 0xFF, + 0x00, 0x00, 0x0B, 0x36, 0x00, 0x00, 0x2E, 0x18, 0x00, 0x00, 0x2E, 0x18, + 0x00, 0x00, 0x05, 0x9A, 0x00, 0x00, 0xA6, 0x9F, 0x00, 0x00, 0xA6, 0x9F, + 0x00, 0x00, 0x0A, 0x79, 0x00, 0x00, 0xA7, 0xFF, 0x00, 0x00, 0xA7, 0xFF, + 0x00, 0x00, 0x09, 0x76, 0x00, 0x00, 0xA9, 0x2E, 0x00, 0x00, 0xA9, 0x2E, + 0x00, 0x00, 0x0A, 0x0B, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0xE0, 0x00, + 0x00, 0x00, 0x07, 0x45, 0x00, 0x00, 0xE0, 0x02, 0x00, 0x00, 0xE0, 0x0B, + 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0xE0, 0x0C, 0x00, 0x00, 0xE0, 0x2B, + 0x00, 0x00, 0x00, 0xEA, 0x00, 0x00, 0xE0, 0x2C, 0x00, 0x00, 0xE0, 0x4A, + 0x00, 0x00, 0x02, 0x23, 0x00, 0x00, 0xE0, 0x4B, 0x00, 0x00, 0xE0, 0x4B, + 0x00, 0x00, 0x02, 0xB8, 0x00, 0x00, 0xE0, 0x4C, 0x00, 0x00, 0xE0, 0x4C, + 0x00, 0x00, 0x02, 0xBF, 0x00, 0x00, 0xE0, 0x4D, 0x00, 0x00, 0xE0, 0x4D, + 0x00, 0x00, 0x02, 0xC6, 0x00, 0x00, 0xE0, 0x4E, 0x00, 0x00, 0xE0, 0x4E, + 0x00, 0x00, 0x02, 0xCA, 0x00, 0x00, 0xE0, 0x4F, 0x00, 0x00, 0xE0, 0x4F, + 0x00, 0x00, 0x02, 0xD0, 0x00, 0x00, 0xE0, 0x50, 0x00, 0x00, 0xE0, 0x5C, + 0x00, 0x00, 0x02, 0xEF, 0x00, 0x00, 0xE0, 0x5D, 0x00, 0x00, 0xE0, 0x5D, + 0x00, 0x00, 0x03, 0x55, 0x00, 0x00, 0xE0, 0x5E, 0x00, 0x00, 0xE0, 0x5E, + 0x00, 0x00, 0x03, 0x5B, 0x00, 0x00, 0xE0, 0x6A, 0x00, 0x00, 0xE0, 0x6A, + 0x00, 0x00, 0x03, 0x77, 0x00, 0x00, 0xE0, 0x6B, 0x00, 0x00, 0xE0, 0x80, + 0x00, 0x00, 0x05, 0x47, 0x00, 0x00, 0xE0, 0x81, 0x00, 0x00, 0xE0, 0x87, + 0x00, 0x00, 0x05, 0xA4, 0x00, 0x00, 0xE0, 0x88, 0x00, 0x00, 0xE0, 0x91, + 0x00, 0x00, 0x05, 0xBD, 0x00, 0x00, 0xE0, 0x92, 0x00, 0x00, 0xE0, 0x92, + 0x00, 0x00, 0x05, 0xE0, 0x00, 0x00, 0xE0, 0x93, 0x00, 0x00, 0xE0, 0x95, + 0x00, 0x00, 0x05, 0x5D, 0x00, 0x00, 0xE0, 0x96, 0x00, 0x00, 0xE0, 0x96, + 0x00, 0x00, 0x05, 0x61, 0x00, 0x00, 0xE0, 0x97, 0x00, 0x00, 0xE0, 0xA3, + 0x00, 0x00, 0x05, 0xF7, 0x00, 0x00, 0xE0, 0xA4, 0x00, 0x00, 0xE0, 0xA4, + 0x00, 0x00, 0x06, 0x0A, 0x00, 0x00, 0xE0, 0xA5, 0x00, 0x00, 0xE0, 0xA6, + 0x00, 0x00, 0x06, 0x18, 0x00, 0x00, 0xE0, 0xA7, 0x00, 0x00, 0xE0, 0xA8, + 0x00, 0x00, 0x06, 0x51, 0x00, 0x00, 0xE0, 0xA9, 0x00, 0x00, 0xE0, 0xAB, + 0x00, 0x00, 0x06, 0x57, 0x00, 0x00, 0xE0, 0xAC, 0x00, 0x00, 0xE0, 0xAD, + 0x00, 0x00, 0x06, 0x5B, 0x00, 0x00, 0xE0, 0xAE, 0x00, 0x00, 0xE0, 0xAE, + 0x00, 0x00, 0x06, 0x66, 0x00, 0x00, 0xE0, 0xAF, 0x00, 0x00, 0xE0, 0xAF, + 0x00, 0x00, 0x06, 0x6C, 0x00, 0x00, 0xE0, 0xB0, 0x00, 0x00, 0xE0, 0xB1, + 0x00, 0x00, 0x06, 0x6E, 0x00, 0x00, 0xE0, 0xB2, 0x00, 0x00, 0xE0, 0xB3, + 0x00, 0x00, 0x06, 0x82, 0x00, 0x00, 0xE0, 0xB4, 0x00, 0x00, 0xE0, 0xB4, + 0x00, 0x00, 0x06, 0x88, 0x00, 0x00, 0xE0, 0xB5, 0x00, 0x00, 0xE0, 0xB5, + 0x00, 0x00, 0x06, 0x8A, 0x00, 0x00, 0xE0, 0xB6, 0x00, 0x00, 0xE0, 0xB7, + 0x00, 0x00, 0x06, 0x8C, 0x00, 0x00, 0xE0, 0xB8, 0x00, 0x00, 0xE0, 0xB8, + 0x00, 0x00, 0x06, 0x8F, 0x00, 0x00, 0xE0, 0xB9, 0x00, 0x00, 0xE0, 0xBA, + 0x00, 0x00, 0x06, 0x91, 0x00, 0x00, 0xE0, 0xBB, 0x00, 0x00, 0xE0, 0xBD, + 0x00, 0x00, 0x06, 0x94, 0x00, 0x00, 0xE0, 0xC8, 0x00, 0x00, 0xE0, 0xCC, + 0x00, 0x00, 0x06, 0x98, 0x00, 0x00, 0xE0, 0xDC, 0x00, 0x00, 0xE0, 0xDC, + 0x00, 0x00, 0x06, 0xA1, 0x00, 0x00, 0xE0, 0xDD, 0x00, 0x00, 0xE0, 0xDD, + 0x00, 0x00, 0x06, 0xA3, 0x00, 0x00, 0xE0, 0xDE, 0x00, 0x00, 0xE0, 0xDF, + 0x00, 0x00, 0x06, 0xA5, 0x00, 0x00, 0xE0, 0xE0, 0x00, 0x00, 0xE0, 0xE0, + 0x00, 0x00, 0x06, 0xA8, 0x00, 0x00, 0xE0, 0xE1, 0x00, 0x00, 0xE0, 0xE2, + 0x00, 0x00, 0x06, 0xAA, 0x00, 0x00, 0xE0, 0xE3, 0x00, 0x00, 0xE0, 0xE5, + 0x00, 0x00, 0x06, 0xAD, 0x00, 0x00, 0xE0, 0xE6, 0x00, 0x00, 0xE0, 0xE6, + 0x00, 0x00, 0x06, 0xE0, 0x00, 0x00, 0xE0, 0xF3, 0x00, 0x00, 0xE0, 0xF5, + 0x00, 0x00, 0x0B, 0x43, 0x00, 0x00, 0xE1, 0x06, 0x00, 0x00, 0xE1, 0x06, + 0x00, 0x00, 0x0A, 0xE4, 0x00, 0x00, 0xE1, 0x09, 0x00, 0x00, 0xE1, 0x09, + 0x00, 0x00, 0x0A, 0xE5, 0x00, 0x00, 0xE1, 0x0A, 0x00, 0x00, 0xE1, 0x0A, + 0x00, 0x00, 0x0B, 0x46, 0x00, 0x00, 0xE1, 0x0C, 0x00, 0x00, 0xE1, 0x0E, + 0x00, 0x00, 0x0A, 0xE6, 0x00, 0x00, 0xE1, 0x0F, 0x00, 0x00, 0xE1, 0x0F, + 0x00, 0x00, 0x0B, 0x47, 0x00, 0x00, 0xE1, 0x11, 0x00, 0x00, 0xE1, 0x13, + 0x00, 0x00, 0x0A, 0xE9, 0x00, 0x00, 0xE1, 0x17, 0x00, 0x00, 0xE1, 0x18, + 0x00, 0x00, 0x0A, 0xEC, 0x00, 0x00, 0xE1, 0x21, 0x00, 0x00, 0xE1, 0x22, + 0x00, 0x00, 0x0A, 0xEE, 0x00, 0x00, 0xE1, 0x24, 0x00, 0x00, 0xE1, 0x24, + 0x00, 0x00, 0x0A, 0xF0, 0x00, 0x00, 0xE1, 0x2A, 0x00, 0x00, 0xE1, 0x2A, + 0x00, 0x00, 0x0A, 0xF1, 0x00, 0x00, 0xE1, 0x2B, 0x00, 0x00, 0xE1, 0x37, + 0x00, 0x00, 0x07, 0x91, 0x00, 0x00, 0xE1, 0x38, 0x00, 0x00, 0xE1, 0x39, + 0x00, 0x00, 0x07, 0xA3, 0x00, 0x00, 0xE1, 0x3A, 0x00, 0x00, 0xE1, 0x3D, + 0x00, 0x00, 0x07, 0xA6, 0x00, 0x00, 0xE1, 0x3E, 0x00, 0x00, 0xE1, 0x56, + 0x00, 0x00, 0x07, 0xC5, 0x00, 0x00, 0xE1, 0x57, 0x00, 0x00, 0xE1, 0x5A, + 0x00, 0x00, 0x07, 0xDF, 0x00, 0x00, 0xE1, 0x5B, 0x00, 0x00, 0xE1, 0x5E, + 0x00, 0x00, 0x07, 0xE4, 0x00, 0x00, 0xE1, 0x63, 0x00, 0x00, 0xE1, 0x63, + 0x00, 0x00, 0x06, 0x35, 0x00, 0x00, 0xE1, 0xC3, 0x00, 0x00, 0xE1, 0xC3, + 0x00, 0x00, 0x05, 0xC7, 0x00, 0x00, 0xE1, 0xD2, 0x00, 0x00, 0xE1, 0xDF, + 0x00, 0x00, 0x07, 0x1E, 0x00, 0x00, 0xE1, 0xE1, 0x00, 0x00, 0xE1, 0xE1, + 0x00, 0x00, 0x0B, 0x48, 0x00, 0x00, 0xE1, 0xE2, 0x00, 0x00, 0xE2, 0xC7, + 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xE2, 0xC8, 0x00, 0x00, 0xE2, 0xD8, + 0x00, 0x00, 0x08, 0xED, 0x00, 0x00, 0xE2, 0xD9, 0x00, 0x00, 0xE2, 0xDC, + 0x00, 0x00, 0x08, 0xE9, 0x00, 0x00, 0xEE, 0x01, 0x00, 0x00, 0xEE, 0x01, + 0x00, 0x00, 0x05, 0xE1, 0x00, 0x00, 0xEE, 0x02, 0x00, 0x00, 0xEE, 0x02, + 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0xEE, 0x03, 0x00, 0x00, 0xEE, 0x03, + 0x00, 0x00, 0x01, 0xEF, 0x00, 0x00, 0xEE, 0x04, 0x00, 0x00, 0xEE, 0x04, + 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0xEE, 0x05, 0x00, 0x00, 0xEE, 0x05, + 0x00, 0x00, 0x03, 0xFA, 0x00, 0x00, 0xEE, 0x06, 0x00, 0x00, 0xEE, 0x06, + 0x00, 0x00, 0x03, 0x87, 0x00, 0x00, 0xEE, 0x07, 0x00, 0x00, 0xEE, 0x07, + 0x00, 0x00, 0x0A, 0xF2, 0x00, 0x00, 0xEE, 0x09, 0x00, 0x00, 0xEE, 0x09, + 0x00, 0x00, 0x07, 0xDE, 0x00, 0x00, 0xEE, 0x0A, 0x00, 0x00, 0xEE, 0x0A, + 0x00, 0x00, 0x00, 0xC6, 0x00, 0x00, 0xEE, 0x0C, 0x00, 0x00, 0xEE, 0x0C, + 0x00, 0x00, 0x01, 0xA4, 0x00, 0x00, 0xEE, 0x0D, 0x00, 0x00, 0xEE, 0x11, + 0x00, 0x00, 0x02, 0x88, 0x00, 0x00, 0xEE, 0x12, 0x00, 0x00, 0xEE, 0x12, + 0x00, 0x00, 0x02, 0x8E, 0x00, 0x00, 0xEE, 0x14, 0x00, 0x00, 0xEE, 0x14, + 0x00, 0x00, 0x02, 0xB3, 0x00, 0x00, 0xEE, 0x17, 0x00, 0x00, 0xEE, 0x17, + 0x00, 0x00, 0x02, 0xDF, 0x00, 0x00, 0xEE, 0x1D, 0x00, 0x00, 0xEE, 0x25, + 0x00, 0x00, 0x03, 0x88, 0x00, 0x00, 0xEE, 0x26, 0x00, 0x00, 0xEE, 0x45, + 0x00, 0x00, 0x03, 0xB2, 0x00, 0x00, 0xEE, 0x47, 0x00, 0x00, 0xEE, 0x47, + 0x00, 0x00, 0x05, 0x60, 0x00, 0x00, 0xEE, 0x48, 0x00, 0x00, 0xEE, 0x71, + 0x00, 0x00, 0x05, 0x62, 0x00, 0x00, 0xEE, 0x72, 0x00, 0x00, 0xEE, 0x72, + 0x00, 0x00, 0x06, 0xDB, 0x00, 0x00, 0xEE, 0x73, 0x00, 0x00, 0xEE, 0x73, + 0x00, 0x00, 0x07, 0xA5, 0x00, 0x00, 0xEE, 0x74, 0x00, 0x00, 0xEE, 0x74, + 0x00, 0x00, 0x07, 0xB1, 0x00, 0x00, 0xEE, 0x75, 0x00, 0x00, 0xEE, 0x75, + 0x00, 0x00, 0x07, 0xE3, 0x00, 0x00, 0xEE, 0x76, 0x00, 0x00, 0xEE, 0x76, + 0x00, 0x00, 0x07, 0xE8, 0x00, 0x00, 0xEE, 0x77, 0x00, 0x00, 0xEE, 0x7B, + 0x00, 0x00, 0x07, 0xEA, 0x00, 0x00, 0xEE, 0x7C, 0x00, 0x00, 0xEE, 0x7C, + 0x00, 0x00, 0x07, 0xE9, 0x00, 0x00, 0xEE, 0x7D, 0x00, 0x00, 0xEE, 0x7E, + 0x00, 0x00, 0x07, 0xEF, 0x00, 0x00, 0xEE, 0x7F, 0x00, 0x00, 0xEE, 0x82, + 0x00, 0x00, 0x07, 0xF2, 0x00, 0x00, 0xEE, 0x83, 0x00, 0x00, 0xEE, 0x83, + 0x00, 0x00, 0x07, 0xF1, 0x00, 0x00, 0xEE, 0x84, 0x00, 0x00, 0xEE, 0x84, + 0x00, 0x00, 0x07, 0xF6, 0x00, 0x00, 0xEE, 0x87, 0x00, 0x00, 0xEE, 0x87, + 0x00, 0x00, 0x0B, 0x49, 0x00, 0x00, 0xEE, 0x88, 0x00, 0x00, 0xEE, 0x8F, + 0x00, 0x00, 0x07, 0xF8, 0x00, 0x00, 0xEE, 0x90, 0x00, 0x00, 0xEE, 0x99, + 0x00, 0x00, 0x0B, 0x4A, 0x00, 0x00, 0xEE, 0x9A, 0x00, 0x00, 0xEE, 0x9A, + 0x00, 0x00, 0x0A, 0xF3, 0x00, 0x00, 0xEE, 0x9B, 0x00, 0x00, 0xEE, 0x9B, + 0x00, 0x00, 0x0B, 0x54, 0x00, 0x00, 0xEE, 0x9C, 0x00, 0x00, 0xEE, 0x9C, + 0x00, 0x00, 0x07, 0xF7, 0x00, 0x00, 0xEE, 0x9D, 0x00, 0x00, 0xEE, 0xA6, + 0x00, 0x00, 0x0B, 0x55, 0x00, 0x00, 0xEE, 0xA7, 0x00, 0x00, 0xEE, 0xD2, + 0x00, 0x00, 0x0A, 0xF4, 0x00, 0x00, 0xEE, 0xD3, 0x00, 0x00, 0xEE, 0xD3, + 0x00, 0x00, 0x0B, 0x42, 0x00, 0x00, 0xEE, 0xD4, 0x00, 0x00, 0xEE, 0xD6, + 0x00, 0x00, 0x0B, 0x5F, 0x00, 0x00, 0xEE, 0xD8, 0x00, 0x00, 0xEE, 0xDE, + 0x00, 0x00, 0x0B, 0x62, 0x00, 0x00, 0xEE, 0xDF, 0x00, 0x00, 0xEE, 0xDF, + 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xEE, 0xE0, 0x00, 0x00, 0xEE, 0xE1, + 0x00, 0x00, 0x0B, 0x6A, 0x00, 0x00, 0xF6, 0xC3, 0x00, 0x00, 0xF6, 0xC3, + 0x00, 0x00, 0x06, 0xE7, 0x00, 0x00, 0xFE, 0xFF, 0x00, 0x00, 0xFE, 0xFF, + 0x00, 0x00, 0x0A, 0x0A, 0x00, 0x01, 0xF1, 0x2F, 0x00, 0x01, 0xF1, 0x2F, + 0x00, 0x00, 0x06, 0x0D, 0x00, 0x01, 0xF1, 0x30, 0x00, 0x01, 0xF1, 0x36, + 0x00, 0x00, 0x07, 0xAA, 0x00, 0x01, 0xF1, 0x37, 0x00, 0x01, 0xF1, 0x49, + 0x00, 0x00, 0x07, 0xB2, 0x00, 0x01, 0xF1, 0x6A, 0x00, 0x01, 0xF1, 0x6A, + 0x00, 0x00, 0x06, 0x14, 0x00, 0x01, 0xF1, 0x6B, 0x00, 0x01, 0xF1, 0x6B, + 0x00, 0x00, 0x06, 0x13, 0x00, 0x01, 0xF8, 0x50, 0x00, 0x01, 0xF8, 0x50, + 0x00, 0x00, 0x07, 0x08, 0x00, 0x01, 0xF8, 0x52, 0x00, 0x01, 0xF8, 0x52, + 0x00, 0x00, 0x07, 0x0D, 0x00, 0x04, 0x15, 0xAE, 0x00, 0x00, 0x02, 0x08, + 0x02, 0x00, 0x00, 0x08, 0x00, 0x08, 0x00, 0x00, 0x00, 0x7E, 0x00, 0xAC, + 0x01, 0x48, 0x01, 0xC3, 0x02, 0x54, 0x02, 0x7B, 0x02, 0x84, 0x02, 0x90, + 0x02, 0xA4, 0x02, 0xEF, 0x02, 0xF7, 0x03, 0x04, 0x03, 0x0A, 0x03, 0x0C, + 0x03, 0x0F, 0x03, 0x13, 0x03, 0x15, 0x03, 0x1B, 0x03, 0x23, 0x03, 0x28, + 0x03, 0x2C, 0x03, 0x38, 0x03, 0x43, 0x03, 0x62, 0x03, 0x6F, 0x03, 0x76, + 0x03, 0x7F, 0x03, 0x8A, 0x03, 0x8C, 0x03, 0xA1, 0x03, 0xD7, 0x03, 0xDD, + 0x03, 0xF6, 0x03, 0xFA, 0x04, 0x79, 0x04, 0x9D, 0x04, 0xFF, 0x05, 0x2F, + 0x0E, 0x3F, 0x1D, 0x00, 0x1D, 0x0D, 0x1D, 0x1B, 0x1D, 0x43, 0x1D, 0x49, + 0x1D, 0x4D, 0x1D, 0x50, 0x1D, 0x52, 0x1D, 0x58, 0x1D, 0x5B, 0x1D, 0x65, + 0x1D, 0x9C, 0x1D, 0xA0, 0x1D, 0xBB, 0x1D, 0xCA, 0x1D, 0xD2, 0x1D, 0xD7, + 0x1D, 0xE7, 0x1D, 0xE9, 0x1D, 0xF5, 0x1D, 0xFF, 0x1E, 0x9B, 0x1E, 0xFF, + 0x1F, 0x07, 0x1F, 0x0F, 0x1F, 0x15, 0x1F, 0x1D, 0x1F, 0x27, 0x1F, 0x2F, + 0x1F, 0x37, 0x1F, 0x3F, 0x1F, 0x45, 0x1F, 0x4D, 0x1F, 0x57, 0x1F, 0x59, + 0x1F, 0x5B, 0x1F, 0x5D, 0x1F, 0x5F, 0x1F, 0x67, 0x1F, 0x6F, 0x1F, 0x7D, + 0x1F, 0x87, 0x1F, 0x8F, 0x1F, 0x97, 0x1F, 0x9F, 0x1F, 0xA7, 0x1F, 0xAF, + 0x1F, 0xB4, 0x1F, 0xC4, 0x1F, 0xD3, 0x1F, 0xD7, 0x1F, 0xDB, 0x1F, 0xEF, + 0x1F, 0xF4, 0x1F, 0xFE, 0x20, 0x0B, 0x20, 0x27, 0x20, 0x55, 0x20, 0x57, + 0x20, 0x5F, 0x20, 0x71, 0x20, 0x8E, 0x20, 0x9C, 0x20, 0xAF, 0x20, 0xB5, + 0x20, 0xBA, 0x20, 0xBF, 0x20, 0xDE, 0x20, 0xE8, 0x20, 0xF0, 0x21, 0x01, + 0x21, 0x03, 0x21, 0x06, 0x21, 0x09, 0x21, 0x13, 0x21, 0x17, 0x21, 0x22, + 0x21, 0x26, 0x21, 0x2B, 0x21, 0x2E, 0x21, 0x32, 0x21, 0x3B, 0x21, 0x4D, + 0x21, 0x5F, 0x21, 0x7F, 0x21, 0x86, 0x21, 0x89, 0x21, 0x95, 0x21, 0x99, + 0x21, 0xAA, 0x21, 0xB1, 0x21, 0xB5, 0x21, 0xBB, 0x21, 0xD0, 0x21, 0xD2, + 0x21, 0xD4, 0x21, 0xDF, 0x21, 0xE5, 0x21, 0xE7, 0x21, 0xEA, 0x22, 0x02, + 0x22, 0x06, 0x22, 0x0F, 0x22, 0x12, 0x22, 0x1A, 0x22, 0x1E, 0x22, 0x2B, + 0x22, 0x36, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x22, 0x98, 0x23, 0x05, + 0x23, 0x18, 0x23, 0x27, 0x23, 0x2B, 0x23, 0x80, 0x23, 0x87, 0x23, 0x8B, + 0x23, 0xCF, 0x24, 0x23, 0x24, 0x68, 0x24, 0xCF, 0x24, 0xEA, 0x25, 0xA2, + 0x25, 0xAA, 0x25, 0xB3, 0x25, 0xB7, 0x25, 0xBD, 0x25, 0xC1, 0x25, 0xC7, + 0x25, 0xCB, 0x25, 0xCF, 0x25, 0xE6, 0x25, 0xEF, 0x26, 0x00, 0x26, 0x06, + 0x26, 0x3C, 0x26, 0x61, 0x26, 0x65, 0x26, 0xA0, 0x27, 0x13, 0x27, 0x17, + 0x27, 0x56, 0x27, 0x64, 0x27, 0x88, 0x27, 0xEF, 0x27, 0xFA, 0x29, 0x13, + 0x2A, 0x38, 0x2B, 0x06, 0x2B, 0x13, 0x2B, 0x1C, 0x2B, 0x24, 0x2C, 0x7C, + 0x2C, 0x7F, 0x2D, 0xFF, 0x2E, 0x18, 0xA6, 0x9F, 0xA7, 0xFF, 0xA9, 0x2E, + 0xE0, 0x00, 0xE0, 0x0B, 0xE0, 0x2B, 0xE0, 0x4A, 0xE0, 0x4F, 0xE0, 0x5C, + 0xE0, 0x5E, 0xE0, 0x6A, 0xE0, 0x80, 0xE0, 0x87, 0xE0, 0x91, 0xE0, 0x96, + 0xE0, 0xA3, 0xE0, 0xBD, 0xE0, 0xCC, 0xE0, 0xE6, 0xE0, 0xF5, 0xE1, 0x06, + 0xE1, 0x0A, 0xE1, 0x0F, 0xE1, 0x13, 0xE1, 0x18, 0xE1, 0x22, 0xE1, 0x24, + 0xE1, 0x2A, 0xE1, 0x37, 0xE1, 0x3D, 0xE1, 0x56, 0xE1, 0x5A, 0xE1, 0x5E, + 0xE1, 0x63, 0xE1, 0xC3, 0xE1, 0xDF, 0xE1, 0xE1, 0xE2, 0xC7, 0xE2, 0xD8, + 0xE2, 0xDC, 0xEE, 0x07, 0xEE, 0x0A, 0xEE, 0x12, 0xEE, 0x14, 0xEE, 0x17, + 0xEE, 0x25, 0xEE, 0x45, 0xEE, 0x47, 0xEE, 0x71, 0xEE, 0x84, 0xEE, 0x87, + 0xEE, 0x8F, 0xEE, 0x99, 0xEE, 0x9C, 0xEE, 0xA6, 0xEE, 0xD2, 0xEE, 0xD6, + 0xEE, 0xDE, 0xEE, 0xE1, 0xF6, 0xC3, 0xFE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x00, 0xA0, 0x00, 0xAE, 0x01, 0x4A, 0x01, 0xC5, + 0x02, 0x56, 0x02, 0x7E, 0x02, 0x86, 0x02, 0x92, 0x02, 0xA6, 0x02, 0xF0, + 0x02, 0xF8, 0x03, 0x06, 0x03, 0x0C, 0x03, 0x0F, 0x03, 0x13, 0x03, 0x15, + 0x03, 0x1B, 0x03, 0x23, 0x03, 0x26, 0x03, 0x2C, 0x03, 0x37, 0x03, 0x42, + 0x03, 0x46, 0x03, 0x63, 0x03, 0x74, 0x03, 0x7A, 0x03, 0x84, 0x03, 0x8C, + 0x03, 0x8E, 0x03, 0xA3, 0x03, 0xDC, 0x03, 0xF0, 0x03, 0xF9, 0x03, 0xFC, + 0x04, 0x80, 0x04, 0xA0, 0x05, 0x2F, 0x0E, 0x3F, 0x1D, 0x00, 0x1D, 0x0D, + 0x1D, 0x1B, 0x1D, 0x43, 0x1D, 0x47, 0x1D, 0x4D, 0x1D, 0x4F, 0x1D, 0x52, + 0x1D, 0x56, 0x1D, 0x5B, 0x1D, 0x62, 0x1D, 0x9C, 0x1D, 0xA0, 0x1D, 0xBB, + 0x1D, 0xBF, 0x1D, 0xCB, 0x1D, 0xD3, 0x1D, 0xD8, 0x1D, 0xE8, 0x1D, 0xEA, + 0x1D, 0xFC, 0x1E, 0x00, 0x1E, 0x9D, 0x1F, 0x00, 0x1F, 0x08, 0x1F, 0x10, + 0x1F, 0x18, 0x1F, 0x20, 0x1F, 0x28, 0x1F, 0x30, 0x1F, 0x38, 0x1F, 0x40, + 0x1F, 0x48, 0x1F, 0x50, 0x1F, 0x59, 0x1F, 0x5B, 0x1F, 0x5D, 0x1F, 0x5F, + 0x1F, 0x60, 0x1F, 0x68, 0x1F, 0x70, 0x1F, 0x80, 0x1F, 0x88, 0x1F, 0x90, + 0x1F, 0x98, 0x1F, 0xA0, 0x1F, 0xA8, 0x1F, 0xB0, 0x1F, 0xB6, 0x1F, 0xC6, + 0x1F, 0xD6, 0x1F, 0xD8, 0x1F, 0xDD, 0x1F, 0xF2, 0x1F, 0xF6, 0x20, 0x00, + 0x20, 0x10, 0x20, 0x2F, 0x20, 0x57, 0x20, 0x5F, 0x20, 0x70, 0x20, 0x74, + 0x20, 0x90, 0x20, 0xA0, 0x20, 0xB1, 0x20, 0xB8, 0x20, 0xBC, 0x20, 0xDB, + 0x20, 0xE8, 0x20, 0xF0, 0x21, 0x00, 0x21, 0x03, 0x21, 0x05, 0x21, 0x09, + 0x21, 0x13, 0x21, 0x16, 0x21, 0x1E, 0x21, 0x26, 0x21, 0x2A, 0x21, 0x2E, + 0x21, 0x32, 0x21, 0x3B, 0x21, 0x4D, 0x21, 0x50, 0x21, 0x60, 0x21, 0x83, + 0x21, 0x89, 0x21, 0x90, 0x21, 0x96, 0x21, 0xA9, 0x21, 0xB0, 0x21, 0xB3, + 0x21, 0xBA, 0x21, 0xD0, 0x21, 0xD2, 0x21, 0xD4, 0x21, 0xDE, 0x21, 0xE4, + 0x21, 0xE7, 0x21, 0xEA, 0x22, 0x02, 0x22, 0x05, 0x22, 0x0F, 0x22, 0x11, + 0x22, 0x1A, 0x22, 0x1E, 0x22, 0x2B, 0x22, 0x36, 0x22, 0x48, 0x22, 0x60, + 0x22, 0x64, 0x22, 0x95, 0x23, 0x03, 0x23, 0x18, 0x23, 0x25, 0x23, 0x2B, + 0x23, 0x80, 0x23, 0x87, 0x23, 0x8B, 0x23, 0xCE, 0x24, 0x23, 0x24, 0x60, + 0x24, 0xB6, 0x24, 0xEA, 0x25, 0xA0, 0x25, 0xAA, 0x25, 0xB2, 0x25, 0xB6, + 0x25, 0xBA, 0x25, 0xC0, 0x25, 0xC4, 0x25, 0xCA, 0x25, 0xCF, 0x25, 0xE6, + 0x25, 0xEF, 0x26, 0x00, 0x26, 0x05, 0x26, 0x3C, 0x26, 0x61, 0x26, 0x65, + 0x26, 0xA0, 0x27, 0x13, 0x27, 0x17, 0x27, 0x56, 0x27, 0x64, 0x27, 0x80, + 0x27, 0xEF, 0x27, 0xF5, 0x29, 0x13, 0x2A, 0x38, 0x2B, 0x06, 0x2B, 0x12, + 0x2B, 0x1C, 0x2B, 0x24, 0x2C, 0x7C, 0x2C, 0x7F, 0x2D, 0xFF, 0x2E, 0x18, + 0xA6, 0x9F, 0xA7, 0xFF, 0xA9, 0x2E, 0xE0, 0x00, 0xE0, 0x02, 0xE0, 0x0C, + 0xE0, 0x2C, 0xE0, 0x4B, 0xE0, 0x50, 0xE0, 0x5D, 0xE0, 0x6A, 0xE0, 0x6B, + 0xE0, 0x81, 0xE0, 0x88, 0xE0, 0x92, 0xE0, 0x97, 0xE0, 0xA4, 0xE0, 0xC8, + 0xE0, 0xDC, 0xE0, 0xF3, 0xE1, 0x06, 0xE1, 0x09, 0xE1, 0x0C, 0xE1, 0x11, + 0xE1, 0x17, 0xE1, 0x21, 0xE1, 0x24, 0xE1, 0x2A, 0xE1, 0x2B, 0xE1, 0x38, + 0xE1, 0x3E, 0xE1, 0x57, 0xE1, 0x5B, 0xE1, 0x63, 0xE1, 0xC3, 0xE1, 0xD2, + 0xE1, 0xE1, 0xE1, 0xE2, 0xE2, 0xC8, 0xE2, 0xD9, 0xEE, 0x01, 0xEE, 0x09, + 0xEE, 0x0C, 0xEE, 0x14, 0xEE, 0x17, 0xEE, 0x1D, 0xEE, 0x26, 0xEE, 0x47, + 0xEE, 0x48, 0xEE, 0x72, 0xEE, 0x87, 0xEE, 0x88, 0xEE, 0x90, 0xEE, 0x9A, + 0xEE, 0x9D, 0xEE, 0xA7, 0xEE, 0xD3, 0xEE, 0xD8, 0xEE, 0xDF, 0xF6, 0xC3, + 0xFE, 0xFF, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x07, 0x43, 0x00, 0x00, 0x00, 0x00, 0x07, 0x82, 0x03, 0xDB, + 0x07, 0x7F, 0x07, 0x7E, 0x07, 0x79, 0x03, 0xCA, 0x00, 0x00, 0x07, 0x6B, + 0x07, 0x61, 0x07, 0x38, 0x07, 0x54, 0x06, 0xEC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFD, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0xF6, 0xFA, + 0xEC, 0x6D, 0xEC, 0x62, 0xEC, 0x55, 0xE8, 0xE2, 0x00, 0x00, 0xE8, 0xDE, + 0x00, 0x00, 0xE8, 0xE1, 0x00, 0x00, 0xE8, 0xDF, 0x00, 0x00, 0xE8, 0x8B, + 0xE8, 0x8A, 0xE8, 0x83, 0x00, 0x00, 0xEC, 0xF9, 0x00, 0x00, 0xEC, 0x89, + 0x00, 0x00, 0xEC, 0xE4, 0xEC, 0xDE, 0x00, 0x00, 0x00, 0x00, 0xE5, 0x56, + 0xE1, 0x1B, 0xE5, 0x68, 0xE1, 0x65, 0xE5, 0x62, 0xE1, 0x89, 0xE5, 0x6D, + 0xE1, 0xA4, 0xE3, 0xFD, 0xE2, 0x20, 0xE5, 0x69, 0xE2, 0x8E, 0xE2, 0x8D, + 0xE2, 0x8C, 0xE2, 0x8B, 0xE5, 0x6C, 0xE4, 0xAB, 0x00, 0x00, 0xE4, 0xDF, + 0xE0, 0xAB, 0xE4, 0xFB, 0xE1, 0x24, 0xE5, 0x35, 0xE4, 0x74, 0xE4, 0xB7, + 0x00, 0x00, 0x00, 0x00, 0xE4, 0xD3, 0xE1, 0x0C, 0x00, 0x00, 0xE4, 0xEB, + 0x00, 0x00, 0xE6, 0xF3, 0x00, 0x00, 0x00, 0x00, 0xE5, 0x7E, 0xE6, 0x93, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xE9, 0xD2, 0xE9, 0xEE, 0xE5, 0xD4, 0xE5, 0xFD, + 0x00, 0x00, 0xE5, 0xF8, 0xE9, 0x38, 0x00, 0x00, 0x00, 0x00, 0xE2, 0xEA, + 0xE5, 0xD8, 0xE5, 0xD7, 0xDF, 0x5A, 0xE4, 0xD7, 0xE5, 0x84, 0x00, 0x00, + 0xE8, 0x87, 0x00, 0x00, 0xE5, 0x33, 0x00, 0x00, 0xE5, 0x7A, 0xE5, 0x73, + 0xE5, 0xB1, 0x00, 0x00, 0xE5, 0x9E, 0xE5, 0x39, 0xE5, 0x3C, 0xE5, 0x42, + 0xE5, 0x88, 0xE5, 0x80, 0xE5, 0x67, 0xE5, 0x65, 0xE4, 0x1C, 0x00, 0x00, + 0xE4, 0x11, 0x00, 0x00, 0xE4, 0x08, 0xE3, 0xFF, 0xE3, 0xF6, 0xE3, 0xAB, + 0xE3, 0xAD, 0xE3, 0x8F, 0xE3, 0x88, 0x00, 0x00, 0x00, 0x00, 0xE4, 0x38, + 0x00, 0x00, 0xE4, 0x2F, 0xE3, 0xD4, 0xE3, 0xCF, 0xE3, 0xCC, 0x00, 0x00, + 0xE6, 0x29, 0xE3, 0x28, 0xE2, 0xB7, 0xE2, 0x9D, 0xE1, 0x9D, 0xE0, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xE1, 0x6C, 0xDF, 0xD1, 0xE1, 0x7A, 0xE1, 0x47, 0xE1, 0x46, 0xE1, 0x0A, + 0xE0, 0xE7, 0xE0, 0xE4, 0xE0, 0x9A, 0xE0, 0x1D, 0xE0, 0x1A, 0xDF, 0xED, + 0xDF, 0xE6, 0xE0, 0x08, 0xE2, 0x1D, 0x00, 0x00, 0xDE, 0x07, 0xDD, 0x6A, + 0xDC, 0x47, 0xDC, 0x2E, 0xDC, 0x4E, 0xDC, 0x44, 0xD9, 0xE3, 0xD5, 0x7B, + 0xDD, 0x37, 0xD7, 0x82, 0x63, 0xDA, 0x61, 0x77, 0x60, 0xDD, 0x27, 0x45, + 0x20, 0x95, 0x20, 0xDE, 0x21, 0xF7, 0x00, 0x00, 0x22, 0x9F, 0x00, 0x00, + 0x23, 0x0D, 0x24, 0xDC, 0x25, 0x23, 0x25, 0x35, 0x00, 0x00, 0x25, 0x60, + 0x00, 0x00, 0x25, 0xD0, 0x00, 0x00, 0x2A, 0x50, 0x29, 0xDE, 0x00, 0x00, + 0x00, 0x00, 0x29, 0xD8, 0x29, 0xD5, 0x29, 0xCD, 0x29, 0xCC, 0x29, 0xC7, + 0x26, 0x66, 0x00, 0x00, 0x26, 0x87, 0x26, 0x88, 0x26, 0x89, 0x24, 0xD2, + 0x24, 0x04, 0x25, 0x4C, 0x29, 0x67, 0x26, 0x21, 0x26, 0x25, 0x26, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x9F, 0x14, 0xC8, 0x15, 0x6B, + 0x15, 0x8C, 0x17, 0x19, 0x17, 0x1A, 0x00, 0x00, 0x1C, 0xC2, 0x19, 0x70, + 0x1C, 0xBA, 0x00, 0x00, 0x1C, 0xB8, 0x1C, 0x4D, 0x00, 0x00, 0x1C, 0x8A, + 0x00, 0x00, 0x10, 0x24, 0x0B, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x02, 0x06, + 0x02, 0xC2, 0x02, 0xDA, 0x04, 0x0E, 0x05, 0x00, 0x06, 0x1E, 0x06, 0x68, + 0x06, 0x74, 0x06, 0x88, 0x06, 0xAC, 0x00, 0x00, 0x07, 0x3C, 0x07, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x07, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x07, 0x4A, 0x07, 0x4E, 0x07, 0x58, 0x00, 0x00, 0x07, 0x62, 0x07, 0x88, + 0x07, 0xF0, 0x07, 0xF2, 0x07, 0xFE, 0x08, 0x00, 0x08, 0xFA, 0x09, 0x34, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x09, 0xE6, 0x00, 0x00, 0x09, 0xE8, 0x00, 0x00, 0x09, 0xE8, 0x00, 0x00, + 0x09, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0xEA, 0x00, 0x00, + 0x09, 0xFE, 0x00, 0x00, 0x0A, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x02, + 0x0B, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0B, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0B, 0xE6, 0x0C, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x0C, 0x18, 0x00, 0x00, 0x0C, 0x3A, 0x00, 0x00, 0x0C, 0x48, 0x0C, 0x76, + 0x00, 0x00, 0x00, 0x00, 0x0C, 0xBE, 0x0C, 0xC0, 0x0C, 0xF4, 0x0D, 0x0C, + 0x0D, 0x2A, 0x0D, 0x32, 0x0D, 0x36, 0x0D, 0x3C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0D, 0x3A, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x38, + 0x0D, 0x3A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x36, 0x00, 0x00, 0x0D, 0x52, 0x00, 0x00, 0x0D, 0x56, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x5A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x4C, 0x00, 0x00, 0x0D, 0x4C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x40, + 0x0D, 0x46, 0x00, 0x00, 0x0D, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0D, 0x3A, 0x0D, 0x3C, 0x0D, 0x3E, 0x0D, 0x44, + 0x0D, 0x46, 0x0D, 0x4C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x30, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x18, + 0x00, 0x00, 0x0D, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0D, 0x18, 0x00, 0x00, 0x0D, 0x1E, 0x00, 0x00, 0x0D, 0x4E, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x5E, 0x0D, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x5A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0D, 0x50, 0x0D, 0x5C, 0x0D, 0x5E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x5E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x7C, 0x00, 0x00, 0x00, 0x00, + 0x0D, 0x7C, 0x00, 0x00, 0x0D, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x06, 0xEF, 0x05, 0x91, 0x05, 0xCB, 0x05, 0xAB, 0x05, 0x1B, 0x06, 0xCE, + 0x05, 0x8F, 0x05, 0xCA, 0x05, 0x9B, 0x05, 0x9C, 0x06, 0x09, 0x05, 0xF0, + 0x05, 0xDB, 0x05, 0xB1, 0x05, 0xDC, 0x05, 0xAD, 0x05, 0x3B, 0x05, 0x3C, + 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, + 0x05, 0x45, 0x05, 0x46, 0x05, 0xDF, 0x05, 0xE2, 0x05, 0xEA, 0x05, 0xEE, + 0x05, 0xEB, 0x05, 0x95, 0x05, 0xA3, 0x00, 0x02, 0x00, 0x41, 0x00, 0x49, + 0x00, 0x54, 0x00, 0x5F, 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, + 0x01, 0x0A, 0x01, 0x0F, 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, + 0x01, 0x77, 0x01, 0x7E, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, + 0x01, 0xC8, 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x9D, + 0x05, 0xB0, 0x05, 0x9F, 0x06, 0x08, 0x06, 0x05, 0x06, 0xD8, 0x01, 0xFB, + 0x02, 0x42, 0x02, 0x4A, 0x02, 0x55, 0x02, 0x66, 0x02, 0x87, 0x02, 0x92, + 0x02, 0x9E, 0x02, 0xB1, 0x02, 0xCF, 0x02, 0xD7, 0x02, 0xE0, 0x02, 0xFE, + 0x03, 0x05, 0x03, 0x16, 0x03, 0x4B, 0x03, 0x51, 0x03, 0x54, 0x03, 0x67, + 0x03, 0x78, 0x03, 0x91, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, 0x03, 0xE4, + 0x03, 0xFC, 0x05, 0xA1, 0x05, 0xAE, 0x05, 0xA2, 0x05, 0xF6, 0x06, 0xF0, + 0x05, 0x93, 0x05, 0x1C, 0x05, 0x1E, 0x05, 0xAC, 0x05, 0x1D, 0x05, 0xAF, + 0x06, 0x1C, 0x06, 0xDA, 0x06, 0x0C, 0x06, 0x16, 0x05, 0xE8, 0x06, 0x04, + 0x06, 0x0B, 0x06, 0xDE, 0x06, 0x15, 0x05, 0xF4, 0x06, 0x43, 0x06, 0x44, + 0x06, 0xD6, 0x03, 0x95, 0x06, 0x1A, 0x05, 0xE3, 0x06, 0xE5, 0x06, 0x41, + 0x06, 0x17, 0x05, 0xE9, 0x06, 0xBF, 0x06, 0xBB, 0x06, 0xC0, 0x05, 0x98, + 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x04, 0x00, 0x03, 0x00, 0x08, + 0x00, 0x3D, 0x00, 0x4B, 0x00, 0x60, 0x00, 0x61, 0x00, 0x62, 0x00, 0x63, + 0x00, 0xCB, 0x00, 0xCC, 0x00, 0xCD, 0x00, 0xC7, 0x09, 0x1A, 0x01, 0x2D, + 0x01, 0x46, 0x01, 0x47, 0x01, 0x48, 0x01, 0x43, 0x01, 0x42, 0x05, 0xF2, + 0x01, 0x44, 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xAC, 0x01, 0xAD, 0x01, 0xDA, + 0x04, 0x07, 0x03, 0x76, 0x02, 0x10, 0x01, 0xFC, 0x02, 0x04, 0x02, 0x1A, + 0x02, 0x0B, 0x02, 0x16, 0x02, 0x1F, 0x02, 0x4D, 0x02, 0x69, 0x02, 0x6A, + 0x02, 0x6B, 0x02, 0x67, 0x02, 0xBA, 0x02, 0xBB, 0x02, 0xBC, 0x02, 0xB4, + 0x04, 0x53, 0x03, 0x06, 0x03, 0x1B, 0x03, 0x1C, 0x03, 0x1D, 0x03, 0x18, + 0x03, 0x17, 0x05, 0xF3, 0x03, 0x19, 0x03, 0x97, 0x03, 0x98, 0x03, 0x99, + 0x03, 0x92, 0x03, 0xE8, 0x02, 0x49, 0x03, 0xE5, 0x00, 0x0B, 0x02, 0x13, + 0x00, 0x0C, 0x01, 0xFD, 0x00, 0x0D, 0x02, 0x14, 0x00, 0x4C, 0x02, 0x4E, + 0x00, 0x4D, 0x02, 0x4F, 0x00, 0x4E, 0x02, 0x50, 0x00, 0x4F, 0x02, 0x51, + 0x00, 0x56, 0x02, 0x5B, 0x09, 0x18, 0x02, 0x56, 0x00, 0x64, 0x02, 0x6C, + 0x00, 0x65, 0x02, 0x6D, 0x00, 0x66, 0x02, 0x6E, 0x00, 0x67, 0x02, 0x6F, + 0x00, 0x68, 0x02, 0x70, 0x00, 0x90, 0x02, 0x95, 0x00, 0x91, 0x02, 0x96, + 0x00, 0x92, 0x02, 0x97, 0x00, 0x93, 0x02, 0x98, 0x00, 0xA3, 0x02, 0xA9, + 0x00, 0xA9, 0x02, 0xA8, 0x00, 0xCE, 0x02, 0xB6, 0x00, 0xCF, 0x02, 0xBD, + 0x00, 0xD0, 0x02, 0xBE, 0x00, 0xD1, 0x02, 0xC0, 0x00, 0xD2, 0x02, 0xB2, + 0x09, 0x22, 0x02, 0xCD, 0x01, 0x0B, 0x02, 0xD2, 0x01, 0x10, 0x02, 0xD9, + 0x09, 0x50, 0x01, 0x1A, 0x02, 0xE8, 0x01, 0x1B, 0x02, 0xE9, 0x01, 0x1C, + 0x02, 0xEA, 0x09, 0x24, 0x02, 0xE7, 0x01, 0x21, 0x02, 0xE1, 0x01, 0x2E, + 0x03, 0x0C, 0x01, 0x2F, 0x03, 0x0D, 0x01, 0x30, 0x03, 0x0E, 0x01, 0x37, + 0x03, 0x08, 0x01, 0x49, 0x03, 0x1E, 0x01, 0x4A, 0x03, 0x1F, 0x01, 0x4B, + 0x03, 0x20, 0x01, 0x76, 0x03, 0x48, 0x01, 0x81, 0x03, 0x5C, 0x01, 0x82, + 0x03, 0x5D, 0x01, 0x83, 0x03, 0x5E, 0x01, 0x8E, 0x03, 0x6A, 0x01, 0x8F, + 0x03, 0x6B, 0x01, 0x90, 0x03, 0x6C, 0x01, 0x91, 0x03, 0x6D, 0x01, 0x9C, + 0x03, 0x7F, 0x01, 0x9D, 0x03, 0x80, 0x09, 0x27, 0x03, 0x7E, 0x01, 0xAE, + 0x03, 0x93, 0x01, 0xAF, 0x03, 0x9A, 0x01, 0xB0, 0x03, 0x9B, 0x01, 0xB1, + 0x03, 0x9C, 0x01, 0xB2, 0x03, 0x9D, 0x01, 0xB3, 0x03, 0x9E, 0x01, 0xCC, + 0x03, 0xD9, 0x01, 0xDB, 0x03, 0xE9, 0x01, 0xDC, 0x01, 0xF1, 0x04, 0x01, + 0x01, 0xF2, 0x04, 0x02, 0x01, 0xF3, 0x04, 0x03, 0x02, 0x8D, 0x02, 0x43, + 0x00, 0x46, 0x09, 0x16, 0x02, 0x44, 0x09, 0x28, 0x09, 0x5B, 0x00, 0x52, + 0x00, 0x4A, 0x02, 0x4C, 0x00, 0x5C, 0x00, 0x55, 0x09, 0x19, 0x02, 0x59, + 0x09, 0x39, 0x00, 0x7A, 0x09, 0x1D, 0x09, 0x1B, 0x00, 0x8A, 0x05, 0x1F, + 0x00, 0x8F, 0x04, 0x29, 0x02, 0xA4, 0x00, 0xD8, 0x00, 0xC9, 0x01, 0x17, + 0x02, 0xD8, 0x02, 0xE2, 0x09, 0x51, 0x09, 0x2B, 0x01, 0x36, 0x03, 0x0B, + 0x01, 0x73, 0x01, 0x45, 0x03, 0x1A, 0x09, 0x26, 0x09, 0x53, 0x01, 0x7B, + 0x03, 0x4D, 0x09, 0x2A, 0x01, 0x99, 0x03, 0x75, 0x09, 0x1C, 0x09, 0x3D, + 0x03, 0x79, 0x01, 0xA3, 0x09, 0x59, 0x01, 0xA5, 0x01, 0xA9, 0x03, 0x94, + 0x04, 0x25, 0x09, 0x29, 0x01, 0xD9, 0x03, 0xE6, 0x01, 0xF8, 0x03, 0xFD, + 0x09, 0x1E, 0x09, 0x20, 0x09, 0x43, 0x09, 0x44, 0x05, 0x3E, 0x05, 0x42, + 0x09, 0x5A, 0x09, 0x4A, 0x09, 0x6C, 0x09, 0x73, 0x09, 0x74, 0x09, 0x75, + 0x09, 0x72, 0x00, 0x5E, 0x02, 0x63, 0x09, 0x23, 0x01, 0x23, 0x02, 0xD6, + 0x09, 0x25, 0x01, 0x40, 0x03, 0x14, 0x00, 0x0E, 0x02, 0x03, 0x00, 0xD3, + 0x02, 0xC1, 0x01, 0x4C, 0x03, 0x21, 0x01, 0xB4, 0x03, 0x9F, 0x01, 0xB5, + 0x03, 0xA0, 0x01, 0xB6, 0x03, 0xA1, 0x01, 0xB7, 0x03, 0xA2, 0x01, 0xB8, + 0x03, 0xA3, 0x02, 0x85, 0x00, 0x0F, 0x02, 0x0C, 0x00, 0x10, 0x02, 0x0F, + 0x00, 0x3E, 0x02, 0x20, 0x00, 0x8E, 0x02, 0x94, 0x00, 0x94, 0x02, 0x99, + 0x01, 0x11, 0x02, 0xDA, 0x01, 0x4D, 0x03, 0x22, 0x01, 0x4E, 0x03, 0x23, + 0x09, 0x1F, 0x09, 0x41, 0x02, 0xD3, 0x09, 0x17, 0x00, 0x5D, 0x02, 0x61, + 0x00, 0x95, 0x02, 0x9A, 0x00, 0xAE, 0x09, 0x2C, 0x01, 0x31, 0x03, 0x0F, + 0x00, 0x09, 0x02, 0x17, 0x00, 0x3F, 0x02, 0x21, 0x01, 0x65, 0x03, 0x3A, + 0x00, 0x11, 0x02, 0x0A, 0x00, 0x12, 0x02, 0x12, 0x00, 0x69, 0x02, 0x71, + 0x00, 0x6A, 0x02, 0x72, 0x00, 0xD4, 0x02, 0xC2, 0x00, 0xD5, 0x02, 0xC3, + 0x01, 0x4F, 0x03, 0x24, 0x01, 0x50, 0x03, 0x25, 0x01, 0x84, 0x03, 0x5F, + 0x01, 0x85, 0x03, 0x60, 0x01, 0xB9, 0x03, 0xA4, 0x01, 0xBA, 0x03, 0xA5, + 0x01, 0x92, 0x03, 0x6E, 0x01, 0x9E, 0x03, 0x81, 0x09, 0x21, 0x09, 0x4E, + 0x00, 0xA4, 0x02, 0xAA, 0x09, 0x2D, 0x02, 0x5A, 0x09, 0x2E, 0x09, 0x5D, + 0x01, 0xF7, 0x03, 0xFE, 0x00, 0x13, 0x02, 0x0D, 0x00, 0x6B, 0x02, 0x73, + 0x01, 0x51, 0x03, 0x26, 0x01, 0x52, 0x03, 0x27, 0x01, 0x53, 0x03, 0x28, + 0x01, 0x54, 0x03, 0x29, 0x01, 0xDD, 0x03, 0xEA, 0x02, 0xE6, 0x03, 0x09, + 0x03, 0x7B, 0x02, 0xC7, 0x09, 0x5E, 0x09, 0x5F, 0x00, 0x2E, 0x00, 0x51, + 0x02, 0x4B, 0x01, 0x22, 0x01, 0xA6, 0x03, 0x69, 0x03, 0xFF, 0x09, 0x2F, + 0x09, 0x60, 0x00, 0x45, 0x01, 0xC7, 0x09, 0x30, 0x00, 0x79, 0x02, 0x68, + 0x01, 0x0C, 0x02, 0xC9, 0x01, 0x7F, 0x03, 0x53, 0x01, 0x8C, 0x03, 0x56, + 0x01, 0xE3, 0x03, 0xE7, 0x02, 0x1B, 0x09, 0x35, 0x09, 0x36, 0x02, 0x45, + 0x09, 0x55, 0x02, 0x57, 0x02, 0x58, 0x09, 0x3A, 0x09, 0x3E, 0x09, 0x3F, + 0x04, 0x74, 0x04, 0x75, 0x04, 0x77, 0x04, 0x76, 0x02, 0xC8, 0x02, 0x93, + 0x09, 0x47, 0x02, 0x9C, 0x04, 0xE2, 0x09, 0x37, 0x02, 0xA5, 0x02, 0xA2, + 0x02, 0xA3, 0x02, 0xB9, 0x04, 0x99, 0x02, 0xCE, 0x02, 0xE3, 0x02, 0xE5, + 0x02, 0xE4, 0x09, 0x52, 0x03, 0x00, 0x03, 0x01, 0x02, 0xFF, 0x03, 0x0A, + 0x03, 0x07, 0x03, 0x15, 0x03, 0x45, 0x03, 0x49, 0x09, 0x54, 0x09, 0x56, + 0x03, 0x57, 0x09, 0x57, 0x03, 0x58, 0x03, 0x5A, 0x03, 0x59, 0x03, 0x65, + 0x03, 0x66, 0x03, 0x68, 0x09, 0x3B, 0x09, 0x4F, 0x09, 0x3C, 0x03, 0x7D, + 0x03, 0x7A, 0x03, 0x96, 0x09, 0x6A, 0x09, 0x6B, 0x03, 0xD3, 0x03, 0xD8, + 0x03, 0xF6, 0x03, 0xFB, 0x04, 0x00, 0x09, 0x40, 0x09, 0x42, 0x09, 0x48, + 0x09, 0x4D, 0x09, 0x4C, 0x09, 0x38, 0x07, 0x04, 0x09, 0x61, 0x04, 0x73, + 0x02, 0x9D, 0x09, 0x6E, 0x02, 0xD1, 0x02, 0xDE, 0x02, 0xFD, 0x03, 0x52, + 0x09, 0x49, 0x09, 0x4B, 0x02, 0x62, 0x02, 0x64, 0x09, 0x5C, 0x09, 0x58, + 0x03, 0x7C, 0x02, 0x91, 0x09, 0x45, 0x09, 0x62, 0x09, 0x63, 0x09, 0x46, + 0x02, 0xA6, 0x02, 0xA7, 0x06, 0x2C, 0x09, 0x79, 0x06, 0x2E, 0x06, 0x36, + 0x09, 0x7A, 0x09, 0x78, 0x09, 0x77, 0x06, 0x3B, 0x06, 0x3D, 0x05, 0xD9, + 0x05, 0xDA, 0x0B, 0x2D, 0x05, 0xC9, 0x0B, 0x2C, 0x0B, 0x34, 0x0B, 0x33, + 0x0B, 0x2E, 0x0B, 0x2F, 0x0A, 0x27, 0x0A, 0x28, 0x0A, 0x29, 0x0A, 0x26, + 0x06, 0xDC, 0x06, 0xE3, 0x0B, 0x31, 0x0A, 0xDF, 0x0A, 0xE0, 0x0A, 0xE1, + 0x0B, 0x35, 0x0B, 0x32, 0x0B, 0x30, 0x0B, 0x29, 0x0B, 0x2B, 0x0B, 0x2A, + 0x0A, 0x30, 0x0A, 0x2F, 0x0A, 0x42, 0x0A, 0x2A, 0x0A, 0x2D, 0x0A, 0x2C, + 0x06, 0xDF, 0x06, 0xE1, 0x06, 0xE2, 0x06, 0xE6, 0x06, 0xDD, 0x06, 0xD7, + 0x0A, 0x49, 0x0A, 0x48, 0x0A, 0x21, 0x06, 0x30, 0x06, 0x37, 0x06, 0x3C, + 0x0A, 0x4A, 0x0A, 0x43, 0x0A, 0x45, 0x0A, 0x47, 0x0A, 0x46, 0x0A, 0x44, + 0x0A, 0xE2, 0x0A, 0xE3, 0x0A, 0x31, 0x0A, 0x32, 0x05, 0xCD, 0x0A, 0x2B, + 0x0A, 0x2E, 0x0A, 0x3B, 0x0A, 0x3C, 0x0A, 0x3D, 0x0A, 0x3E, 0x0A, 0x3F, + 0x0A, 0x40, 0x0A, 0x41, 0x06, 0xE9, 0x06, 0xE8, 0x0A, 0x8D, 0x06, 0xEC, + 0x06, 0xEB, 0x0A, 0x8F, 0x0A, 0x8C, 0x0A, 0x8B, 0x0A, 0x91, 0x0A, 0x90, + 0x06, 0xEE, 0x0A, 0x95, 0x0A, 0x96, 0x0A, 0x23, 0x0A, 0x24, 0x01, 0x3E, + 0x09, 0xE5, 0x09, 0xD0, 0x09, 0xD1, 0x09, 0xD2, 0x05, 0xE5, 0x01, 0x0D, + 0x06, 0xD9, 0x06, 0xE4, 0x00, 0x22, 0x05, 0xE4, 0x00, 0x7C, 0x00, 0xB0, + 0x00, 0xDA, 0x01, 0xE5, 0x04, 0x12, 0x04, 0x9A, 0x00, 0x21, 0x00, 0x48, + 0x04, 0x08, 0x04, 0x09, 0x00, 0x7B, 0x01, 0xF9, 0x00, 0xAF, 0x04, 0x0A, + 0x00, 0xD9, 0x01, 0x18, 0x00, 0x3C, 0x01, 0x29, 0x01, 0x3F, 0x04, 0x0B, + 0x01, 0x66, 0x04, 0x0C, 0x01, 0x7C, 0x04, 0x0D, 0x01, 0xA7, 0x01, 0xE4, + 0x04, 0x0E, 0x01, 0xD7, 0x04, 0x0F, 0x04, 0x10, 0x00, 0xDB, 0x01, 0xE6, + 0x04, 0x55, 0x04, 0x72, 0x04, 0x81, 0x04, 0x9B, 0x04, 0xB6, 0x04, 0x54, + 0x04, 0x6E, 0x04, 0x6F, 0x04, 0x70, 0x04, 0x71, 0x04, 0x7F, 0x04, 0x80, + 0x04, 0x98, 0x04, 0x99, 0x09, 0xCD, 0x04, 0xAB, 0x09, 0xCE, 0x09, 0xCF, + 0x04, 0xAC, 0x03, 0x3B, 0x04, 0xAD, 0x04, 0xAE, 0x04, 0xB2, 0x04, 0xB3, + 0x04, 0xB4, 0x04, 0xB5, 0x04, 0xC7, 0x03, 0xE3, 0x04, 0xC9, 0x04, 0xCA, + 0x04, 0x9C, 0x04, 0xB7, 0x03, 0x3C, 0x04, 0xB8, 0x04, 0xCB, 0x09, 0xC9, + 0x09, 0xD5, 0x09, 0xD6, 0x04, 0x26, 0x04, 0x27, 0x04, 0x28, 0x04, 0xC8, + 0x09, 0xD7, 0x09, 0xD4, 0x09, 0xC8, 0x09, 0xD3, 0x09, 0xD8, 0x09, 0xD9, + 0x02, 0x53, 0x02, 0xD4, 0x01, 0x6F, 0x09, 0xDA, 0x0A, 0x25, 0x00, 0x53, + 0x01, 0x2A, 0x04, 0xB1, 0x09, 0xCA, 0x09, 0xCB, 0x09, 0xCC, 0x00, 0x86, + 0x00, 0x87, 0x04, 0x52, 0x09, 0x7C, 0x04, 0x4C, 0x01, 0x98, 0x00, 0xE8, + 0x00, 0xE9, 0x01, 0x0E, 0x04, 0x45, 0x04, 0x46, 0x04, 0x3F, 0x09, 0x7F, + 0x01, 0x39, 0x09, 0x84, 0x04, 0x36, 0x00, 0x30, 0x04, 0x2A, 0x00, 0x47, + 0x09, 0x7B, 0x04, 0x2D, 0x00, 0x85, 0x04, 0x2E, 0x04, 0x30, 0x01, 0x38, + 0x01, 0x3A, 0x04, 0x31, 0x04, 0x34, 0x01, 0x2B, 0x00, 0xBB, 0x01, 0x71, + 0x09, 0x80, 0x09, 0x81, 0x09, 0x82, 0x09, 0x83, 0x04, 0x37, 0x04, 0x38, + 0x09, 0x85, 0x04, 0x39, 0x04, 0x3B, 0x04, 0x40, 0x04, 0x41, 0x04, 0x42, + 0x04, 0x43, 0x04, 0x44, 0x04, 0x47, 0x04, 0x48, 0x04, 0x49, 0x02, 0x1C, + 0x04, 0xE3, 0x04, 0xE4, 0x04, 0xE5, 0x04, 0xE8, 0x02, 0x81, 0x04, 0xE9, + 0x04, 0xEB, 0x04, 0xEC, 0x09, 0xA7, 0x04, 0xEE, 0x04, 0xF3, 0x04, 0xF6, + 0x04, 0xF8, 0x03, 0x46, 0x04, 0xFD, 0x03, 0x50, 0x02, 0x54, 0x04, 0xFE, + 0x03, 0xF1, 0x04, 0xFF, 0x03, 0xE2, 0x05, 0x02, 0x05, 0x04, 0x05, 0x07, + 0x05, 0x08, 0x05, 0x0A, 0x05, 0x0B, 0x05, 0x09, 0x05, 0x10, 0x05, 0x11, + 0x05, 0x12, 0x02, 0x82, 0x02, 0x83, 0x02, 0xA1, 0x09, 0xA4, 0x05, 0x15, + 0x03, 0x74, 0x02, 0xCB, 0x02, 0xCC, 0x02, 0xD5, 0x05, 0x0E, 0x05, 0x0F, + 0x02, 0xA0, 0x09, 0xA9, 0x09, 0xA8, 0x03, 0xF2, 0x05, 0x03, 0x09, 0x86, + 0x09, 0xAA, 0x09, 0x87, 0x05, 0x0D, 0x09, 0x88, 0x09, 0xAB, 0x09, 0x89, + 0x09, 0xAC, 0x09, 0x8A, 0x09, 0xAD, 0x09, 0x8B, 0x09, 0xAE, 0x09, 0x8C, + 0x09, 0xAF, 0x09, 0x8D, 0x09, 0xB0, 0x09, 0x8E, 0x09, 0xB1, 0x04, 0x35, + 0x03, 0x44, 0x04, 0x51, 0x05, 0x1A, 0x09, 0x8F, 0x09, 0xB2, 0x09, 0x90, + 0x03, 0x4A, 0x09, 0xA2, 0x09, 0xC7, 0x0A, 0x22, 0x0A, 0x74, 0x0A, 0x75, + 0x0A, 0x76, 0x0A, 0x77, 0x0A, 0x78, 0x0A, 0x72, 0x0A, 0x73, 0x01, 0x3D, + 0x04, 0xED, 0x09, 0xA3, 0x05, 0x0C, 0x01, 0x7A, 0x03, 0x4C, 0x04, 0x2B, + 0x04, 0xE6, 0x09, 0x7E, 0x09, 0xA6, 0x04, 0x4A, 0x05, 0x13, 0x04, 0x2F, + 0x04, 0xEA, 0x09, 0x91, 0x09, 0xB3, 0x01, 0x16, 0x04, 0xF0, 0x04, 0x32, + 0x04, 0xF1, 0x01, 0x15, 0x04, 0xF2, 0x00, 0xAB, 0x04, 0xF9, 0x00, 0xAD, + 0x04, 0xFA, 0x04, 0x4B, 0x05, 0x14, 0x04, 0x4D, 0x05, 0x16, 0x09, 0x92, + 0x09, 0xB4, 0x09, 0x93, 0x09, 0xB5, 0x09, 0x94, 0x09, 0xB6, 0x09, 0x95, + 0x09, 0xB7, 0x01, 0xD5, 0x05, 0x01, 0x04, 0x3A, 0x05, 0x17, 0x04, 0x3C, + 0x05, 0x05, 0x04, 0x3D, 0x05, 0x06, 0x04, 0x3E, 0x02, 0xB0, 0x04, 0x4E, + 0x05, 0x18, 0x09, 0x96, 0x09, 0xB8, 0x09, 0x97, 0x09, 0x98, 0x09, 0xB9, + 0x04, 0x33, 0x04, 0xEF, 0x09, 0x99, 0x04, 0xF4, 0x00, 0xAA, 0x04, 0xFB, + 0x00, 0xAC, 0x04, 0xFC, 0x09, 0x9A, 0x09, 0xBA, 0x01, 0x28, 0x04, 0xF7, + 0x02, 0xFC, 0x00, 0x31, 0x02, 0x1D, 0x00, 0x32, 0x02, 0x1E, 0x00, 0x40, + 0x02, 0x22, 0x00, 0x88, 0x02, 0x84, 0x04, 0x4F, 0x09, 0xBB, 0x09, 0x9B, + 0x09, 0xBC, 0x09, 0x9C, 0x09, 0xBD, 0x09, 0x9D, 0x09, 0xBE, 0x04, 0x50, + 0x05, 0x19, 0x01, 0x3B, 0x09, 0xBF, 0x01, 0x3C, 0x09, 0xC0, 0x01, 0x72, + 0x03, 0x47, 0x01, 0x74, 0x09, 0xC1, 0x01, 0x75, 0x09, 0xC2, 0x09, 0x9E, + 0x09, 0xC3, 0x03, 0xF7, 0x03, 0xF3, 0x03, 0xF8, 0x03, 0xF4, 0x03, 0xF9, + 0x03, 0xF5, 0x09, 0x9F, 0x09, 0xC4, 0x09, 0x7D, 0x09, 0xA5, 0x09, 0xA0, + 0x09, 0xC5, 0x04, 0x2C, 0x04, 0xE7, 0x01, 0xD6, 0x05, 0x00, 0x09, 0xA1, + 0x09, 0xC6, 0x06, 0x26, 0x06, 0x28, 0x06, 0x29, 0x06, 0x2F, 0x06, 0x31, + 0x06, 0x34, 0x06, 0x38, 0x06, 0x39, 0x06, 0x5E, 0x06, 0x67, 0x06, 0x6A, + 0x06, 0x6B, 0x09, 0xE6, 0x0A, 0xBB, 0x0A, 0xBC, 0x0A, 0xBD, 0x0A, 0xBE, + 0x0A, 0xB8, 0x0A, 0xBF, 0x0A, 0xC0, 0x0A, 0xC1, 0x0A, 0xC2, 0x0A, 0xC3, + 0x0A, 0x5C, 0x0A, 0x5D, 0x0A, 0x5E, 0x0A, 0x5F, 0x0A, 0x60, 0x0A, 0xCC, + 0x0A, 0xCD, 0x0A, 0x71, 0x00, 0x14, 0x02, 0x19, 0x00, 0x42, 0x02, 0x46, + 0x00, 0x43, 0x02, 0x47, 0x00, 0x44, 0x02, 0x48, 0x00, 0x50, 0x02, 0x52, + 0x00, 0x57, 0x02, 0x5C, 0x00, 0x58, 0x02, 0x5D, 0x00, 0x59, 0x02, 0x5E, + 0x00, 0x5A, 0x02, 0x5F, 0x00, 0x5B, 0x02, 0x60, 0x00, 0x6C, 0x02, 0x74, + 0x00, 0x6D, 0x02, 0x75, 0x00, 0x6E, 0x02, 0x76, 0x00, 0x6F, 0x02, 0x77, + 0x00, 0x70, 0x02, 0x78, 0x00, 0x8B, 0x02, 0x90, 0x00, 0x96, 0x02, 0x9B, + 0x00, 0xA5, 0x02, 0xAB, 0x00, 0xA6, 0x02, 0xAC, 0x00, 0xA7, 0x02, 0xAD, + 0x00, 0xA2, 0x02, 0x9F, 0x00, 0xA8, 0x02, 0xAE, 0x00, 0xCA, 0x02, 0xB7, + 0x00, 0xC8, 0x02, 0xB5, 0x01, 0x12, 0x02, 0xDB, 0x01, 0x13, 0x02, 0xDC, + 0x01, 0x14, 0x02, 0xDD, 0x01, 0x1D, 0x02, 0xEB, 0x01, 0x1E, 0x02, 0xEC, + 0x01, 0x1F, 0x02, 0xED, 0x01, 0x20, 0x02, 0xEE, 0x01, 0x25, 0x03, 0x02, + 0x01, 0x26, 0x03, 0x03, 0x01, 0x27, 0x03, 0x04, 0x01, 0x32, 0x03, 0x10, + 0x01, 0x33, 0x03, 0x11, 0x01, 0x34, 0x03, 0x12, 0x01, 0x35, 0x03, 0x13, + 0x01, 0x55, 0x03, 0x2A, 0x01, 0x56, 0x03, 0x2B, 0x01, 0x57, 0x03, 0x2C, + 0x01, 0x58, 0x03, 0x2D, 0x01, 0x78, 0x03, 0x4E, 0x01, 0x79, 0x03, 0x4F, + 0x01, 0x86, 0x03, 0x61, 0x01, 0x87, 0x03, 0x62, 0x01, 0x88, 0x03, 0x63, + 0x01, 0x89, 0x03, 0x64, 0x01, 0x93, 0x03, 0x6F, 0x01, 0x94, 0x03, 0x70, + 0x01, 0x95, 0x03, 0x71, 0x01, 0x96, 0x03, 0x72, 0x01, 0x97, 0x03, 0x73, + 0x01, 0x9F, 0x03, 0x82, 0x01, 0xA0, 0x03, 0x83, 0x01, 0xA1, 0x03, 0x84, + 0x01, 0xA2, 0x03, 0x85, 0x01, 0xBB, 0x03, 0xA6, 0x01, 0xBC, 0x03, 0xA7, + 0x01, 0xBD, 0x03, 0xA8, 0x01, 0xBE, 0x03, 0xA9, 0x01, 0xBF, 0x03, 0xAA, + 0x01, 0xC9, 0x03, 0xD4, 0x01, 0xCA, 0x03, 0xD5, 0x01, 0xCD, 0x03, 0xDA, + 0x01, 0xCE, 0x03, 0xDB, 0x01, 0xCF, 0x03, 0xD7, 0x01, 0xD0, 0x03, 0xDC, + 0x01, 0xD1, 0x03, 0xDD, 0x01, 0xD3, 0x03, 0xE0, 0x01, 0xD4, 0x03, 0xE1, + 0x01, 0xDE, 0x03, 0xEB, 0x01, 0xF4, 0x04, 0x04, 0x01, 0xF5, 0x04, 0x05, + 0x01, 0xF6, 0x04, 0x06, 0x02, 0xAF, 0x03, 0x86, 0x03, 0xDE, 0x03, 0xEC, + 0x02, 0x15, 0x02, 0x8F, 0x09, 0x64, 0x01, 0x9A, 0x09, 0x65, 0x00, 0x15, + 0x02, 0x0E, 0x00, 0x16, 0x02, 0x11, 0x00, 0x17, 0x02, 0x05, 0x00, 0x18, + 0x02, 0x07, 0x00, 0x19, 0x02, 0x08, 0x00, 0x1A, 0x02, 0x09, 0x00, 0x1B, + 0x02, 0x06, 0x00, 0x1C, 0x01, 0xFE, 0x00, 0x1D, 0x02, 0x00, 0x00, 0x1E, + 0x02, 0x01, 0x00, 0x1F, 0x02, 0x02, 0x00, 0x20, 0x01, 0xFF, 0x00, 0x71, + 0x02, 0x79, 0x00, 0x72, 0x02, 0x7A, 0x00, 0x73, 0x02, 0x7B, 0x00, 0x74, + 0x02, 0x7C, 0x00, 0x75, 0x02, 0x7D, 0x00, 0x76, 0x02, 0x7E, 0x00, 0x77, + 0x02, 0x7F, 0x00, 0x78, 0x02, 0x80, 0x00, 0xD6, 0x02, 0xC4, 0x00, 0xD7, + 0x02, 0xC5, 0x01, 0x59, 0x03, 0x2E, 0x01, 0x5A, 0x03, 0x2F, 0x01, 0x5B, + 0x03, 0x30, 0x01, 0x5C, 0x03, 0x31, 0x01, 0x5D, 0x03, 0x32, 0x01, 0x5E, + 0x03, 0x33, 0x01, 0x5F, 0x03, 0x34, 0x01, 0x60, 0x03, 0x35, 0x01, 0x61, + 0x03, 0x36, 0x01, 0x62, 0x03, 0x37, 0x01, 0x63, 0x03, 0x38, 0x01, 0x64, + 0x03, 0x39, 0x01, 0xC0, 0x03, 0xAB, 0x01, 0xC1, 0x03, 0xAC, 0x01, 0xC2, + 0x03, 0xAD, 0x01, 0xC3, 0x03, 0xAE, 0x01, 0xC4, 0x03, 0xAF, 0x01, 0xC5, + 0x03, 0xB0, 0x01, 0xC6, 0x03, 0xB1, 0x01, 0xDF, 0x03, 0xED, 0x01, 0xE0, + 0x03, 0xEE, 0x01, 0xE1, 0x03, 0xEF, 0x01, 0xE2, 0x03, 0xF0, 0x09, 0x31, + 0x09, 0x66, 0x09, 0x32, 0x09, 0x67, 0x09, 0x33, 0x09, 0x68, 0x04, 0x5E, + 0x09, 0xDB, 0x04, 0x7E, 0x09, 0xDC, 0x04, 0x8A, 0x09, 0xDD, 0x04, 0xA5, + 0x09, 0xDE, 0x03, 0x43, 0x09, 0xE0, 0x04, 0xC1, 0x09, 0xE1, 0x04, 0xD4, + 0x09, 0xE3, 0x04, 0x6C, 0x04, 0x6D, 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, + 0x00, 0x2F, 0x00, 0x3B, 0x0A, 0x7D, 0x09, 0xE4, 0x0A, 0x7C, 0x0A, 0x8A, + 0x0A, 0x87, 0x04, 0x93, 0x04, 0x94, 0x04, 0x95, 0x04, 0x96, 0x04, 0x97, + 0x00, 0x83, 0x00, 0x84, 0x00, 0xB9, 0x00, 0xBA, 0x00, 0xC4, 0x0A, 0x7F, + 0x0A, 0x81, 0x0A, 0x83, 0x04, 0xA6, 0x04, 0xA7, 0x04, 0xA8, 0x09, 0xDF, + 0x0A, 0x80, 0x0A, 0x82, 0x0A, 0x84, 0x04, 0xC2, 0x04, 0xC3, 0x04, 0xC4, + 0x09, 0xE2, 0x04, 0xAF, 0x04, 0xB0, 0x04, 0xC5, 0x04, 0xC6, 0x01, 0xEB, + 0x01, 0xEC, 0x01, 0xED, 0x01, 0xEE, 0x01, 0x7D, 0x0A, 0x85, 0x0A, 0x86, + 0x0A, 0x88, 0x04, 0xE0, 0x04, 0xE1, 0x01, 0x6E, 0x01, 0x70, 0x04, 0x1B, + 0x04, 0x11, 0x04, 0x24, 0x0A, 0x89, 0x0A, 0x7E, 0x0A, 0x1E, 0x0A, 0x1F, + 0x05, 0xB3, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB5, 0x0A, 0x1D, 0x0A, 0x20, + 0x05, 0xC8, 0x05, 0xC9, 0x05, 0xCF, 0x05, 0xD0, 0x05, 0xCC, 0x05, 0xCD, + 0x05, 0xCE, 0x05, 0xD1, 0x06, 0x06, 0x06, 0x07, 0x05, 0xB6, 0x05, 0xB9, + 0x0A, 0x12, 0x05, 0xDE, 0x05, 0xDD, 0x0A, 0x11, 0x06, 0xF1, 0x06, 0xCF, + 0x06, 0xD0, 0x05, 0xD2, 0x05, 0xD3, 0x05, 0xD4, 0x05, 0xD6, 0x05, 0xD7, + 0x05, 0xD8, 0x0A, 0x0E, 0x05, 0xE6, 0x05, 0xE7, 0x0A, 0x14, 0x05, 0x92, + 0x05, 0x99, 0x0A, 0x13, 0x0A, 0x16, 0x0A, 0x10, 0x0A, 0x0F, 0x0A, 0x0D, + 0x05, 0xB8, 0x06, 0x87, 0x05, 0x9E, 0x05, 0xA0, 0x05, 0x96, 0x05, 0x97, + 0x05, 0x94, 0x05, 0x90, 0x06, 0x1B, 0x05, 0xBA, 0x05, 0xBB, 0x0A, 0x17, + 0x0A, 0x15, 0x0A, 0x18, 0x0A, 0x19, 0x0A, 0x4E, 0x0A, 0x1A, 0x0A, 0x1B, + 0x0A, 0x1C, 0x06, 0x3F, 0x06, 0x2D, 0x06, 0x46, 0x06, 0x48, 0x06, 0x49, + 0x06, 0x4B, 0x06, 0x4C, 0x06, 0x4D, 0x06, 0x53, 0x06, 0x54, 0x06, 0x55, + 0x06, 0x4F, 0x06, 0x50, 0x06, 0x32, 0x06, 0x70, 0x06, 0x72, 0x06, 0x74, + 0x06, 0x75, 0x06, 0x77, 0x06, 0x79, 0x06, 0x7A, 0x06, 0x7C, 0x06, 0x7D, + 0x06, 0x7E, 0x06, 0x84, 0x06, 0x85, 0x06, 0x86, 0x06, 0x80, 0x06, 0x81, + 0x06, 0x56, 0x06, 0x5A, 0x06, 0x64, 0x06, 0x6D, 0x09, 0x71, 0x06, 0x5D, + 0x06, 0x60, 0x06, 0x61, 0x06, 0x62, 0x06, 0x63, 0x06, 0x65, 0x06, 0x68, + 0x06, 0x69, 0x0A, 0x4D, 0x05, 0x2E, 0x05, 0x30, 0x05, 0x38, 0x05, 0x29, + 0x05, 0x33, 0x05, 0x2C, 0x05, 0x25, 0x05, 0x36, 0x05, 0x28, 0x05, 0x34, + 0x02, 0x65, 0x05, 0x22, 0x05, 0x27, 0x05, 0x31, 0x05, 0x32, 0x05, 0x26, + 0x05, 0x2D, 0x05, 0x2A, 0x05, 0x2B, 0x05, 0x2F, 0x05, 0x24, 0x05, 0x23, + 0x05, 0x20, 0x05, 0x35, 0x05, 0x21, 0x05, 0x37, 0x05, 0x3A, 0x0A, 0xB9, + 0x0A, 0xB7, 0x07, 0x6B, 0x07, 0x6C, 0x06, 0xD3, 0x06, 0xD2, 0x06, 0xFF, + 0x06, 0x0E, 0x01, 0x8B, 0x01, 0x8A, 0x06, 0x10, 0x06, 0x11, 0x06, 0x0F, + 0x06, 0xC7, 0x06, 0xCC, 0x06, 0xCD, 0x06, 0xBD, 0x06, 0xBE, 0x06, 0xC1, + 0x06, 0xC2, 0x06, 0xC3, 0x06, 0xC4, 0x06, 0xC5, 0x06, 0xC6, 0x06, 0xC8, + 0x06, 0xC9, 0x06, 0xCA, 0x06, 0xCB, 0x06, 0xBA, 0x0A, 0x07, 0x09, 0x69, + 0x0A, 0x08, 0x0A, 0x09, 0x07, 0x06, 0x07, 0x18, 0x07, 0x0B, 0x07, 0x19, + 0x07, 0x14, 0x07, 0x1B, 0x07, 0x60, 0x07, 0x63, 0x07, 0x5F, 0x06, 0x23, + 0x04, 0x09, 0x06, 0x1F, 0x05, 0xF1, 0x07, 0x9E, 0x07, 0x9F, 0x07, 0xA1, + 0x07, 0xA0, 0x07, 0x51, 0x07, 0x53, 0x07, 0x52, 0x07, 0x55, 0x07, 0x5B, + 0x07, 0x5C, 0x07, 0x5E, 0x07, 0x5D, 0x07, 0x33, 0x07, 0x37, 0x07, 0x35, + 0x07, 0x39, 0x07, 0x35, 0x07, 0x39, 0x07, 0x32, 0x07, 0x36, 0x07, 0x34, + 0x07, 0x38, 0x07, 0x34, 0x07, 0x38, 0x07, 0x42, 0x07, 0x44, 0x06, 0x24, + 0x07, 0x3C, 0x07, 0x07, 0x07, 0x0C, 0x07, 0x15, 0x07, 0x0A, 0x07, 0x0F, + 0x07, 0x17, 0x02, 0xB8, 0x02, 0xBF, 0x02, 0xC6, 0x02, 0xCA, 0x02, 0xD0, + 0x03, 0x55, 0x03, 0x5B, 0x05, 0xE0, 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, + 0x05, 0x61, 0x06, 0x0A, 0x06, 0x18, 0x06, 0x19, 0x06, 0x51, 0x06, 0x52, + 0x06, 0x57, 0x06, 0x58, 0x06, 0x59, 0x06, 0x5B, 0x06, 0x5C, 0x06, 0x66, + 0x06, 0x6C, 0x06, 0x6E, 0x06, 0x6F, 0x06, 0x82, 0x06, 0x83, 0x06, 0x88, + 0x06, 0x8A, 0x06, 0x8C, 0x06, 0x8D, 0x06, 0x8F, 0x06, 0x91, 0x06, 0x92, + 0x06, 0x94, 0x06, 0x95, 0x06, 0x96, 0x06, 0xA1, 0x06, 0xA3, 0x06, 0xA5, + 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, 0x06, 0xAB, 0x06, 0xAD, 0x06, 0xAE, + 0x06, 0xAF, 0x06, 0xE0, 0x0A, 0xE5, 0x0B, 0x46, 0x0A, 0xE6, 0x0A, 0xE7, + 0x0A, 0xE8, 0x0B, 0x47, 0x07, 0xA3, 0x07, 0xA4, 0x07, 0xA6, 0x07, 0xA7, + 0x07, 0xA8, 0x07, 0xA9, 0x05, 0xE1, 0x00, 0x0A, 0x01, 0xEF, 0x02, 0x18, + 0x03, 0xFA, 0x03, 0x87, 0x0A, 0xF2, 0x07, 0xDE, 0x00, 0xC6, 0x01, 0xA4, + 0x02, 0x88, 0x02, 0x89, 0x02, 0x8A, 0x02, 0x8B, 0x02, 0x8C, 0x02, 0x8E, + 0x06, 0xDB, 0x07, 0xA5, 0x07, 0xB1, 0x07, 0xE3, 0x07, 0xE8, 0x07, 0xEA, + 0x07, 0xEB, 0x07, 0xEC, 0x07, 0xED, 0x07, 0xEE, 0x07, 0xE9, 0x07, 0xEF, + 0x07, 0xF0, 0x07, 0xF2, 0x07, 0xF3, 0x07, 0xF4, 0x07, 0xF5, 0x07, 0xF1, + 0x07, 0xF6, 0x0A, 0xF3, 0x0B, 0x54, 0x07, 0xF7, 0x0B, 0x42, 0x0B, 0x5F, + 0x0B, 0x60, 0x0B, 0x61, 0x08, 0x00, 0x0B, 0x6A, 0x0B, 0x6B, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x36, 0x00, 0xB5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x6E, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x24, 0x00, 0x62, 0x00, 0xAE, 0x00, 0xAD, 0x00, 0xC9, + 0x00, 0xC7, 0x00, 0x63, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, + 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x01, 0x0A, 0x01, 0x0B, + 0x01, 0x0C, 0x01, 0x0D, 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x10, 0x01, 0x11, + 0x01, 0x12, 0x01, 0x13, 0x01, 0x14, 0x01, 0x15, 0x01, 0x16, 0x01, 0x17, + 0x01, 0x18, 0x01, 0x19, 0x01, 0x1A, 0x01, 0x1B, 0x01, 0x1C, 0x01, 0x1D, + 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, + 0x01, 0x24, 0x01, 0x25, 0x01, 0x26, 0x01, 0x27, 0x01, 0x28, 0x01, 0x29, + 0x01, 0x2A, 0x01, 0x2B, 0x01, 0x2C, 0x01, 0x2D, 0x01, 0x2E, 0x01, 0x2F, + 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, 0x01, 0x33, 0x01, 0x34, 0x01, 0x35, + 0x00, 0x90, 0x01, 0x36, 0x01, 0x37, 0x01, 0x38, 0x00, 0x25, 0x01, 0x39, + 0x01, 0x3A, 0x01, 0x3B, 0x01, 0x3C, 0x01, 0x3D, 0x01, 0x3E, 0x01, 0x3F, + 0x00, 0x26, 0x01, 0x40, 0x00, 0x64, 0x00, 0xFD, 0x01, 0x41, 0x01, 0x42, + 0x00, 0xFF, 0x01, 0x43, 0x01, 0x44, 0x01, 0x45, 0x01, 0x46, 0x00, 0x27, + 0x01, 0x47, 0x01, 0x48, 0x01, 0x49, 0x01, 0x4A, 0x01, 0x4B, 0x01, 0x4C, + 0x01, 0x4D, 0x01, 0x4E, 0x01, 0x4F, 0x01, 0x50, 0x00, 0x28, 0x00, 0xCB, + 0x00, 0x65, 0x00, 0xC8, 0x00, 0xCA, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53, + 0x01, 0x54, 0x01, 0x55, 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, + 0x01, 0x5A, 0x01, 0x5B, 0x01, 0x5C, 0x01, 0x5D, 0x01, 0x5E, 0x01, 0x5F, + 0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x01, 0x64, 0x01, 0x65, + 0x01, 0x66, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6A, 0x01, 0x6B, + 0x01, 0x6C, 0x01, 0x6D, 0x01, 0x6E, 0x01, 0x6F, 0x01, 0x70, 0x01, 0x71, + 0x01, 0x72, 0x01, 0x73, 0x01, 0x74, 0x01, 0x75, 0x00, 0x29, 0x01, 0x76, + 0x01, 0x77, 0x01, 0x78, 0x00, 0x2A, 0x01, 0x79, 0x01, 0x7A, 0x01, 0x7B, + 0x00, 0xF8, 0x01, 0x7C, 0x01, 0x7D, 0x01, 0x7E, 0x01, 0x7F, 0x01, 0x80, + 0x01, 0x81, 0x01, 0x82, 0x01, 0x83, 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, + 0x01, 0x87, 0x01, 0x88, 0x01, 0x89, 0x01, 0x8A, 0x00, 0x2B, 0x01, 0x8B, + 0x01, 0x8C, 0x01, 0x8D, 0x01, 0x8E, 0x01, 0x8F, 0x01, 0x90, 0x01, 0x91, + 0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97, + 0x01, 0x98, 0x01, 0x99, 0x01, 0x9A, 0x01, 0x9B, 0x01, 0x9C, 0x01, 0x9D, + 0x01, 0x9E, 0x01, 0x9F, 0x01, 0xA0, 0x01, 0xA1, 0x01, 0xA2, 0x01, 0xA3, + 0x01, 0xA4, 0x01, 0xA5, 0x01, 0xA6, 0x01, 0xA7, 0x01, 0xA8, 0x01, 0xA9, + 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xAC, 0x01, 0xAD, 0x00, 0x2C, 0x01, 0xAE, + 0x00, 0xCE, 0x01, 0xAF, 0x01, 0xB0, 0x01, 0xB1, 0x00, 0xCF, 0x00, 0xCC, + 0x00, 0xCD, 0x01, 0xB2, 0x01, 0xB3, 0x01, 0xB4, 0x01, 0xB5, 0x00, 0xFA, + 0x01, 0xB6, 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xB9, 0x01, 0xBA, 0x01, 0xBB, + 0x01, 0xBC, 0x01, 0xBD, 0x01, 0xBE, 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC1, + 0x01, 0xC2, 0x01, 0xC3, 0x01, 0xC4, 0x01, 0xC5, 0x01, 0xC6, 0x01, 0xC7, + 0x01, 0xC8, 0x01, 0xC9, 0x01, 0xCA, 0x01, 0xCB, 0x01, 0xCC, 0x01, 0xCD, + 0x01, 0xCE, 0x01, 0xCF, 0x01, 0xD0, 0x01, 0xD1, 0x01, 0xD2, 0x01, 0xD3, + 0x01, 0xD4, 0x01, 0xD5, 0x01, 0xD6, 0x01, 0xD7, 0x01, 0xD8, 0x01, 0xD9, + 0x01, 0xDA, 0x01, 0xDB, 0x01, 0xDC, 0x01, 0xDD, 0x01, 0xDE, 0x01, 0xDF, + 0x01, 0xE0, 0x01, 0xE1, 0x01, 0xE2, 0x01, 0xE3, 0x01, 0xE4, 0x01, 0xE5, + 0x01, 0xE6, 0x01, 0xE7, 0x01, 0xE8, 0x01, 0xE9, 0x01, 0xEA, 0x01, 0xEB, + 0x01, 0xEC, 0x00, 0x2D, 0x01, 0xED, 0x01, 0xEE, 0x01, 0xEF, 0x01, 0xF0, + 0x00, 0x2E, 0x01, 0xF1, 0x01, 0xF2, 0x01, 0xF3, 0x01, 0xF4, 0x01, 0xF5, + 0x01, 0xF6, 0x01, 0xF7, 0x01, 0xF8, 0x01, 0xF9, 0x00, 0x2F, 0x01, 0xFA, + 0x01, 0xFB, 0x01, 0xFC, 0x01, 0xFD, 0x01, 0xFE, 0x01, 0xFF, 0x02, 0x00, + 0x00, 0xE2, 0x02, 0x01, 0x02, 0x02, 0x00, 0x30, 0x02, 0x03, 0x02, 0x04, + 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x00, 0x31, + 0x00, 0x66, 0x02, 0x0A, 0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, + 0x02, 0x0F, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, + 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, 0x02, 0x19, 0x02, 0x1A, + 0x02, 0x1B, 0x02, 0x1C, 0x00, 0x32, 0x00, 0x67, 0x00, 0xAF, 0x00, 0x91, + 0x02, 0x1D, 0x00, 0xD3, 0x00, 0xD0, 0x00, 0xD1, 0x02, 0x1E, 0x02, 0x1F, + 0x02, 0x20, 0x02, 0x21, 0x02, 0x22, 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, + 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, 0x02, 0x2A, 0x02, 0x2B, + 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x2F, 0x02, 0x30, 0x02, 0x31, + 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x37, + 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, + 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, + 0x02, 0x44, 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x49, + 0x02, 0x4A, 0x00, 0xB0, 0x00, 0x33, 0x02, 0x4B, 0x02, 0x4C, 0x02, 0x4D, + 0x02, 0x4E, 0x02, 0x4F, 0x02, 0x50, 0x00, 0x34, 0x02, 0x51, 0x00, 0x35, + 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, + 0x02, 0x58, 0x02, 0x59, 0x02, 0x5A, 0x02, 0x5B, 0x02, 0x5C, 0x02, 0x5D, + 0x00, 0x36, 0x02, 0x5E, 0x02, 0x5F, 0x00, 0xFB, 0x00, 0xE4, 0x02, 0x60, + 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, + 0x02, 0x67, 0x02, 0x68, 0x00, 0x37, 0x02, 0x69, 0x02, 0x6A, 0x02, 0x6B, + 0x02, 0x6C, 0x02, 0x6D, 0x02, 0x6E, 0x02, 0x6F, 0x02, 0x70, 0x02, 0x71, + 0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x00, 0x38, 0x02, 0x75, 0x00, 0xD6, + 0x00, 0xD4, 0x00, 0xD5, 0x00, 0x68, 0x02, 0x76, 0x02, 0x77, 0x02, 0x78, + 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, 0x02, 0x7D, 0x02, 0x7E, + 0x02, 0x7F, 0x02, 0x80, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x02, 0x84, + 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8A, + 0x02, 0x8B, 0x02, 0x8C, 0x02, 0x8D, 0x02, 0x8E, 0x02, 0x8F, 0x00, 0x39, + 0x02, 0x90, 0x02, 0x91, 0x00, 0x3A, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, + 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x00, 0x3B, 0x02, 0x98, 0x02, 0x99, + 0x02, 0x9A, 0x02, 0x9B, 0x02, 0x9C, 0x00, 0x3C, 0x02, 0x9D, 0x00, 0xEB, + 0x02, 0x9E, 0x00, 0xBB, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, + 0x02, 0xA3, 0x02, 0xA4, 0x02, 0xA5, 0x02, 0xA6, 0x02, 0xA7, 0x02, 0xA8, + 0x02, 0xA9, 0x02, 0xAA, 0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, 0x02, 0xAE, + 0x02, 0xAF, 0x02, 0xB0, 0x02, 0xB1, 0x00, 0x3D, 0x02, 0xB2, 0x02, 0xB3, + 0x00, 0xE6, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xB6, 0x02, 0xB7, 0x02, 0xB8, + 0x02, 0xB9, 0x02, 0xBA, 0x00, 0x44, 0x00, 0x69, 0x02, 0xBB, 0x02, 0xBC, + 0x02, 0xBD, 0x02, 0xBE, 0x02, 0xBF, 0x02, 0xC0, 0x02, 0xC1, 0x00, 0x6B, + 0x02, 0xC2, 0x02, 0xC3, 0x02, 0xC4, 0x02, 0xC5, 0x02, 0xC6, 0x02, 0xC7, + 0x00, 0x6C, 0x02, 0xC8, 0x02, 0xC9, 0x02, 0xCA, 0x02, 0xCB, 0x00, 0x6A, + 0x02, 0xCC, 0x02, 0xCD, 0x02, 0xCE, 0x02, 0xCF, 0x02, 0xD0, 0x00, 0x6E, + 0x02, 0xD1, 0x02, 0xD2, 0x02, 0xD3, 0x00, 0x6D, 0x02, 0xD4, 0x02, 0xD5, + 0x02, 0xD6, 0x02, 0xD7, 0x00, 0xA0, 0x02, 0xD8, 0x02, 0xD9, 0x02, 0xDA, + 0x02, 0xDB, 0x02, 0xDC, 0x02, 0xDD, 0x02, 0xDE, 0x02, 0xDF, 0x02, 0xE0, + 0x02, 0xE1, 0x02, 0xE2, 0x02, 0xE3, 0x02, 0xE4, 0x02, 0xE5, 0x02, 0xE6, + 0x02, 0xE7, 0x02, 0xE8, 0x02, 0xE9, 0x02, 0xEA, 0x02, 0xEB, 0x02, 0xEC, + 0x02, 0xED, 0x02, 0xEE, 0x02, 0xEF, 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, + 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, + 0x02, 0xF9, 0x00, 0x45, 0x02, 0xFA, 0x02, 0xFB, 0x02, 0xFC, 0x02, 0xFD, + 0x02, 0xFE, 0x02, 0xFF, 0x00, 0xEE, 0x00, 0x46, 0x03, 0x00, 0x03, 0x01, + 0x00, 0x6F, 0x00, 0xFE, 0x03, 0x02, 0x03, 0x03, 0x01, 0x00, 0x03, 0x04, + 0x03, 0x05, 0x03, 0x06, 0x00, 0x47, 0x01, 0x01, 0x03, 0x07, 0x03, 0x08, + 0x03, 0x09, 0x03, 0x0A, 0x03, 0x0B, 0x03, 0x0C, 0x03, 0x0D, 0x03, 0x0E, + 0x03, 0x0F, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12, 0x03, 0x13, 0x03, 0x14, + 0x03, 0x15, 0x00, 0x48, 0x00, 0x73, 0x03, 0x16, 0x00, 0x71, 0x00, 0x70, + 0x00, 0x72, 0x03, 0x17, 0x03, 0x18, 0x03, 0x19, 0x03, 0x1A, 0x03, 0x1B, + 0x03, 0x1C, 0x03, 0x1D, 0x03, 0x1E, 0x03, 0x1F, 0x03, 0x20, 0x03, 0x21, + 0x03, 0x22, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, + 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x03, 0x2D, + 0x03, 0x2E, 0x03, 0x2F, 0x03, 0x30, 0x03, 0x31, 0x00, 0x49, 0x03, 0x32, + 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36, 0x03, 0x37, 0x03, 0x38, + 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x00, 0x4A, 0x03, 0x3C, 0x03, 0x3D, + 0x03, 0x3E, 0x00, 0xF9, 0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, + 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x00, 0x4B, 0x03, 0x46, 0x03, 0x47, + 0x03, 0x48, 0x03, 0x49, 0x03, 0x4A, 0x03, 0x4B, 0x03, 0x4C, 0x03, 0x4D, + 0x03, 0x4E, 0x03, 0x4F, 0x03, 0x50, 0x03, 0x51, 0x03, 0x52, 0x03, 0x53, + 0x03, 0x54, 0x03, 0x55, 0x03, 0x56, 0x03, 0x57, 0x00, 0x4C, 0x00, 0xD7, + 0x03, 0x58, 0x00, 0x77, 0x03, 0x59, 0x03, 0x5A, 0x03, 0x5B, 0x03, 0x5C, + 0x03, 0x5D, 0x00, 0x75, 0x00, 0x74, 0x00, 0x76, 0x03, 0x5E, 0x03, 0x5F, + 0x03, 0x60, 0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x64, 0x03, 0x65, + 0x03, 0x66, 0x03, 0x67, 0x03, 0x68, 0x03, 0x69, 0x03, 0x6A, 0x03, 0x6B, + 0x03, 0x6C, 0x03, 0x6D, 0x03, 0x6E, 0x03, 0x6F, 0x00, 0x4D, 0x03, 0x70, + 0x03, 0x71, 0x03, 0x72, 0x03, 0x73, 0x03, 0x74, 0x03, 0x75, 0x03, 0x76, + 0x00, 0x4E, 0x03, 0x77, 0x03, 0x78, 0x03, 0x79, 0x03, 0x7A, 0x03, 0x7B, + 0x03, 0x7C, 0x03, 0x7D, 0x03, 0x7E, 0x00, 0x4F, 0x00, 0xE3, 0x03, 0x7F, + 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x84, 0x03, 0x85, + 0x03, 0x86, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, 0x03, 0x8B, + 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, 0x03, 0x91, + 0x03, 0x92, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96, 0x03, 0x97, + 0x03, 0x98, 0x03, 0x99, 0x03, 0x9A, 0x00, 0x50, 0x03, 0x9B, 0x03, 0x9C, + 0x03, 0x9D, 0x03, 0x9E, 0x03, 0x9F, 0x03, 0xA0, 0x00, 0x51, 0x00, 0x78, + 0x03, 0xA1, 0x03, 0xA2, 0x03, 0xA3, 0x03, 0xA4, 0x03, 0xA5, 0x03, 0xA6, + 0x03, 0xA7, 0x03, 0xA8, 0x03, 0xA9, 0x03, 0xAA, 0x03, 0xAB, 0x03, 0xAC, + 0x03, 0xAD, 0x03, 0xAE, 0x03, 0xAF, 0x00, 0x52, 0x00, 0x7C, 0x00, 0x7D, + 0x00, 0xA1, 0x03, 0xB0, 0x00, 0x7A, 0x00, 0x79, 0x00, 0x7B, 0x03, 0xB1, + 0x03, 0xB2, 0x03, 0xB3, 0x03, 0xB4, 0x03, 0xB5, 0x03, 0xB6, 0x03, 0xB7, + 0x03, 0xB8, 0x03, 0xB9, 0x03, 0xBA, 0x03, 0xBB, 0x03, 0xBC, 0x03, 0xBD, + 0x03, 0xBE, 0x03, 0xBF, 0x03, 0xC0, 0x03, 0xC1, 0x03, 0xC2, 0x03, 0xC3, + 0x03, 0xC4, 0x03, 0xC5, 0x03, 0xC6, 0x03, 0xC7, 0x03, 0xC8, 0x03, 0xC9, + 0x03, 0xCA, 0x03, 0xCB, 0x03, 0xCC, 0x03, 0xCD, 0x03, 0xCE, 0x03, 0xCF, + 0x03, 0xD0, 0x03, 0xD1, 0x03, 0xD2, 0x03, 0xD3, 0x03, 0xD4, 0x03, 0xD5, + 0x03, 0xD6, 0x03, 0xD7, 0x03, 0xD8, 0x03, 0xD9, 0x03, 0xDA, 0x00, 0xB1, + 0x03, 0xDB, 0x03, 0xDC, 0x00, 0x53, 0x03, 0xDD, 0x03, 0xDE, 0x03, 0xDF, + 0x03, 0xE0, 0x03, 0xE1, 0x00, 0x54, 0x03, 0xE2, 0x03, 0xE3, 0x00, 0x55, + 0x03, 0xE4, 0x03, 0xE5, 0x03, 0xE6, 0x03, 0xE7, 0x03, 0xE8, 0x03, 0xE9, + 0x03, 0xEA, 0x03, 0xEB, 0x03, 0xEC, 0x03, 0xED, 0x03, 0xEE, 0x03, 0xEF, + 0x03, 0xF0, 0x03, 0xF1, 0x03, 0xF2, 0x03, 0xF3, 0x03, 0xF4, 0x03, 0xF5, + 0x00, 0x56, 0x03, 0xF6, 0x03, 0xF7, 0x03, 0xF8, 0x03, 0xF9, 0x00, 0xFC, + 0x00, 0xE5, 0x03, 0xFA, 0x03, 0xFB, 0x03, 0xFC, 0x03, 0xFD, 0x03, 0xFE, + 0x03, 0xFF, 0x04, 0x00, 0x04, 0x01, 0x00, 0x89, 0x04, 0x02, 0x00, 0x57, + 0x04, 0x03, 0x04, 0x04, 0x04, 0x05, 0x04, 0x06, 0x04, 0x07, 0x04, 0x08, + 0x04, 0x09, 0x04, 0x0A, 0x04, 0x0B, 0x04, 0x0C, 0x04, 0x0D, 0x04, 0x0E, + 0x04, 0x0F, 0x04, 0x10, 0x04, 0x11, 0x04, 0x12, 0x04, 0x13, 0x04, 0x14, + 0x04, 0x15, 0x04, 0x16, 0x04, 0x17, 0x04, 0x18, 0x04, 0x19, 0x04, 0x1A, + 0x00, 0x58, 0x00, 0x81, 0x04, 0x1B, 0x04, 0x1C, 0x04, 0x1D, 0x04, 0x1E, + 0x00, 0x7F, 0x00, 0x7E, 0x00, 0x80, 0x04, 0x1F, 0x04, 0x20, 0x04, 0x21, + 0x04, 0x22, 0x04, 0x23, 0x04, 0x24, 0x04, 0x25, 0x04, 0x26, 0x04, 0x27, + 0x04, 0x28, 0x04, 0x29, 0x04, 0x2A, 0x04, 0x2B, 0x04, 0x2C, 0x04, 0x2D, + 0x04, 0x2E, 0x04, 0x2F, 0x04, 0x30, 0x04, 0x31, 0x04, 0x32, 0x04, 0x33, + 0x04, 0x34, 0x04, 0x35, 0x04, 0x36, 0x04, 0x37, 0x04, 0x38, 0x04, 0x39, + 0x04, 0x3A, 0x04, 0x3B, 0x04, 0x3C, 0x04, 0x3D, 0x04, 0x3E, 0x04, 0x3F, + 0x04, 0x40, 0x04, 0x41, 0x04, 0x42, 0x04, 0x43, 0x04, 0x44, 0x04, 0x45, + 0x04, 0x46, 0x04, 0x47, 0x04, 0x48, 0x04, 0x49, 0x04, 0x4A, 0x04, 0x4B, + 0x04, 0x4C, 0x04, 0x4D, 0x04, 0x4E, 0x04, 0x4F, 0x04, 0x50, 0x04, 0x51, + 0x04, 0x52, 0x04, 0x53, 0x04, 0x54, 0x04, 0x55, 0x04, 0x56, 0x00, 0x59, + 0x04, 0x57, 0x04, 0x58, 0x04, 0x59, 0x00, 0x5A, 0x04, 0x5A, 0x04, 0x5B, + 0x04, 0x5C, 0x04, 0x5D, 0x04, 0x5E, 0x04, 0x5F, 0x04, 0x60, 0x04, 0x61, + 0x00, 0x5B, 0x04, 0x62, 0x04, 0x63, 0x04, 0x64, 0x04, 0x65, 0x00, 0x5C, + 0x00, 0xBA, 0x04, 0x66, 0x04, 0x67, 0x00, 0xEC, 0x04, 0x68, 0x04, 0x69, + 0x04, 0x6A, 0x04, 0x6B, 0x04, 0x6C, 0x04, 0x6D, 0x04, 0x6E, 0x04, 0x6F, + 0x04, 0x70, 0x04, 0x71, 0x04, 0x72, 0x04, 0x73, 0x04, 0x74, 0x04, 0x75, + 0x04, 0x76, 0x04, 0x77, 0x04, 0x78, 0x04, 0x79, 0x04, 0x7A, 0x00, 0x5D, + 0x04, 0x7B, 0x04, 0x7C, 0x04, 0x7D, 0x04, 0x7E, 0x04, 0x7F, 0x04, 0x80, + 0x00, 0xE7, 0x04, 0x81, 0x04, 0x82, 0x04, 0x83, 0x00, 0xED, 0x04, 0x84, + 0x04, 0x85, 0x04, 0x86, 0x04, 0x87, 0x04, 0x88, 0x04, 0x89, 0x04, 0x8A, + 0x04, 0x8B, 0x04, 0x8C, 0x04, 0x8D, 0x04, 0x8E, 0x04, 0x8F, 0x04, 0x90, + 0x04, 0x91, 0x04, 0x92, 0x04, 0x93, 0x04, 0x94, 0x04, 0x95, 0x04, 0x96, + 0x04, 0x97, 0x04, 0x98, 0x04, 0x99, 0x04, 0x9A, 0x04, 0x9B, 0x04, 0x9C, + 0x04, 0x9D, 0x04, 0x9E, 0x04, 0x9F, 0x04, 0xA0, 0x04, 0xA1, 0x04, 0xA2, + 0x04, 0xA3, 0x04, 0xA4, 0x04, 0xA5, 0x04, 0xA6, 0x04, 0xA7, 0x04, 0xA8, + 0x04, 0xA9, 0x04, 0xAA, 0x04, 0xAB, 0x04, 0xAC, 0x04, 0xAD, 0x04, 0xAE, + 0x04, 0xAF, 0x04, 0xB0, 0x04, 0xB1, 0x04, 0xB2, 0x04, 0xB3, 0x04, 0xB4, + 0x04, 0xB5, 0x04, 0xB6, 0x04, 0xB7, 0x04, 0xB8, 0x04, 0xB9, 0x04, 0xBA, + 0x04, 0xBB, 0x04, 0xBC, 0x04, 0xBD, 0x04, 0xBE, 0x04, 0xBF, 0x04, 0xC0, + 0x04, 0xC1, 0x04, 0xC2, 0x04, 0xC3, 0x04, 0xC4, 0x04, 0xC5, 0x04, 0xC6, + 0x04, 0xC7, 0x04, 0xC8, 0x04, 0xC9, 0x04, 0xCA, 0x04, 0xCB, 0x04, 0xCC, + 0x04, 0xCD, 0x04, 0xCE, 0x00, 0xEA, 0x04, 0xCF, 0x04, 0xD0, 0x04, 0xD1, + 0x04, 0xD2, 0x04, 0xD3, 0x04, 0xD4, 0x04, 0xD5, 0x04, 0xD6, 0x04, 0xD7, + 0x04, 0xD8, 0x04, 0xD9, 0x04, 0xDA, 0x04, 0xDB, 0x04, 0xDC, 0x04, 0xDD, + 0x04, 0xDE, 0x04, 0xDF, 0x04, 0xE0, 0x04, 0xE1, 0x04, 0xE2, 0x04, 0xE3, + 0x04, 0xE4, 0x04, 0xE5, 0x04, 0xE6, 0x04, 0xE7, 0x04, 0xE8, 0x04, 0xE9, + 0x04, 0xEA, 0x04, 0xEB, 0x04, 0xEC, 0x04, 0xED, 0x04, 0xEE, 0x04, 0xEF, + 0x04, 0xF0, 0x04, 0xF1, 0x04, 0xF2, 0x04, 0xF3, 0x04, 0xF4, 0x04, 0xF5, + 0x04, 0xF6, 0x04, 0xF7, 0x04, 0xF8, 0x04, 0xF9, 0x04, 0xFA, 0x04, 0xFB, + 0x04, 0xFC, 0x04, 0xFD, 0x04, 0xFE, 0x04, 0xFF, 0x05, 0x00, 0x05, 0x01, + 0x05, 0x02, 0x05, 0x03, 0x05, 0x04, 0x05, 0x05, 0x05, 0x06, 0x05, 0x07, + 0x05, 0x08, 0x05, 0x09, 0x05, 0x0A, 0x05, 0x0B, 0x05, 0x0C, 0x05, 0x0D, + 0x05, 0x0E, 0x05, 0x0F, 0x05, 0x10, 0x05, 0x11, 0x05, 0x12, 0x05, 0x13, + 0x05, 0x14, 0x05, 0x15, 0x05, 0x16, 0x05, 0x17, 0x05, 0x18, 0x05, 0x19, + 0x05, 0x1A, 0x05, 0x1B, 0x05, 0x1C, 0x05, 0x1D, 0x05, 0x1E, 0x05, 0x1F, + 0x05, 0x20, 0x05, 0x21, 0x05, 0x22, 0x05, 0x23, 0x05, 0x24, 0x05, 0x25, + 0x05, 0x26, 0x05, 0x27, 0x00, 0x9B, 0x05, 0x28, 0x05, 0x29, 0x05, 0x2A, + 0x05, 0x2B, 0x05, 0x2C, 0x05, 0x2D, 0x05, 0x2E, 0x05, 0x2F, 0x05, 0x30, + 0x05, 0x31, 0x05, 0x32, 0x05, 0x33, 0x05, 0x34, 0x05, 0x35, 0x05, 0x36, + 0x05, 0x37, 0x05, 0x38, 0x05, 0x39, 0x05, 0x3A, 0x05, 0x3B, 0x05, 0x3C, + 0x05, 0x3D, 0x05, 0x3E, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x42, + 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, + 0x05, 0x49, 0x05, 0x4A, 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x4D, 0x05, 0x4E, + 0x05, 0x4F, 0x05, 0x50, 0x05, 0x51, 0x05, 0x52, 0x05, 0x53, 0x05, 0x54, + 0x05, 0x55, 0x05, 0x56, 0x05, 0x57, 0x05, 0x58, 0x05, 0x59, 0x05, 0x5A, + 0x05, 0x5B, 0x05, 0x5C, 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, + 0x05, 0x61, 0x05, 0x62, 0x05, 0x63, 0x05, 0x64, 0x05, 0x65, 0x05, 0x66, + 0x05, 0x67, 0x05, 0x68, 0x05, 0x69, 0x05, 0x6A, 0x05, 0x6B, 0x05, 0x6C, + 0x05, 0x6D, 0x05, 0x6E, 0x05, 0x6F, 0x05, 0x70, 0x05, 0x71, 0x05, 0x72, + 0x05, 0x73, 0x05, 0x74, 0x05, 0x75, 0x05, 0x76, 0x05, 0x77, 0x05, 0x78, + 0x05, 0x79, 0x05, 0x7A, 0x05, 0x7B, 0x05, 0x7C, 0x05, 0x7D, 0x05, 0x7E, + 0x05, 0x7F, 0x05, 0x80, 0x05, 0x81, 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, + 0x05, 0x85, 0x05, 0x86, 0x05, 0x87, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, + 0x05, 0x8B, 0x05, 0x8C, 0x05, 0x8D, 0x05, 0x8E, 0x05, 0x8F, 0x05, 0x90, + 0x05, 0x91, 0x05, 0x92, 0x05, 0x93, 0x05, 0x94, 0x00, 0x07, 0x00, 0x84, + 0x00, 0x96, 0x00, 0x85, 0x00, 0xA6, 0x05, 0x95, 0x05, 0x96, 0x05, 0x97, + 0x05, 0x98, 0x05, 0x99, 0x05, 0x9A, 0x05, 0x9B, 0x05, 0x9C, 0x05, 0x9D, + 0x05, 0x9E, 0x05, 0x9F, 0x05, 0xA0, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0xA3, + 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, 0x05, 0xA8, 0x05, 0xA9, + 0x05, 0xAA, 0x05, 0xAB, 0x05, 0xAC, 0x00, 0xF7, 0x05, 0xAD, 0x05, 0xAE, + 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x05, 0xAF, 0x00, 0x16, 0x00, 0x17, + 0x00, 0x18, 0x05, 0xB0, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, + 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB3, 0x05, 0xB4, 0x05, 0xB5, 0x05, 0xB6, + 0x05, 0xB7, 0x05, 0xB8, 0x05, 0xB9, 0x05, 0xBA, 0x05, 0xBB, 0x05, 0xBC, + 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, 0x05, 0xC1, 0x05, 0xC2, + 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, 0x05, 0xC7, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCA, 0x05, 0xCB, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xCE, + 0x05, 0xCF, 0x05, 0xD0, 0x05, 0xD1, 0x05, 0xD2, 0x05, 0xD3, 0x05, 0xD4, + 0x05, 0xD5, 0x05, 0xD6, 0x05, 0xD7, 0x05, 0xD8, 0x05, 0xD9, 0x05, 0xDA, + 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xDE, 0x05, 0xDF, 0x05, 0xE0, + 0x05, 0xE1, 0x05, 0xE2, 0x05, 0xE3, 0x05, 0xE4, 0x05, 0xE5, 0x05, 0xE6, + 0x05, 0xE7, 0x05, 0xE8, 0x05, 0xE9, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, + 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, + 0x05, 0xF3, 0x05, 0xF4, 0x05, 0xF5, 0x05, 0xF6, 0x05, 0xF7, 0x05, 0xF8, + 0x00, 0x09, 0x05, 0xF9, 0x00, 0x04, 0x05, 0xFA, 0x00, 0xA3, 0x05, 0xFB, + 0x00, 0x22, 0x05, 0xFC, 0x05, 0xFD, 0x00, 0xA2, 0x05, 0xFE, 0x05, 0xFF, + 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x3E, 0x06, 0x00, 0x00, 0x40, 0x06, 0x01, + 0x00, 0x5E, 0x00, 0x60, 0x00, 0x23, 0x06, 0x02, 0x06, 0x03, 0x06, 0x04, + 0x06, 0x05, 0x06, 0x06, 0x06, 0x07, 0x06, 0x08, 0x00, 0x06, 0x00, 0xBD, + 0x00, 0x12, 0x00, 0x5F, 0x00, 0xE8, 0x00, 0x3F, 0x00, 0x10, 0x00, 0xB2, + 0x06, 0x09, 0x00, 0xB3, 0x06, 0x0A, 0x00, 0x87, 0x06, 0x0B, 0x06, 0x0C, + 0x06, 0x0D, 0x06, 0x0E, 0x06, 0x0F, 0x06, 0x10, 0x06, 0x11, 0x06, 0x12, + 0x06, 0x13, 0x06, 0x14, 0x06, 0x15, 0x06, 0x16, 0x06, 0x17, 0x06, 0x18, + 0x06, 0x19, 0x06, 0x1A, 0x06, 0x1B, 0x00, 0xB6, 0x00, 0xB7, 0x00, 0x0A, + 0x00, 0x05, 0x00, 0xB4, 0x00, 0xB5, 0x00, 0xC5, 0x00, 0xC4, 0x06, 0x1C, + 0x06, 0x1D, 0x06, 0x1E, 0x06, 0x1F, 0x06, 0x20, 0x06, 0x21, 0x06, 0x22, + 0x06, 0x23, 0x06, 0x24, 0x06, 0x25, 0x06, 0x26, 0x00, 0x0F, 0x00, 0x11, + 0x00, 0xAB, 0x06, 0x27, 0x00, 0x1D, 0x06, 0x28, 0x06, 0x29, 0x00, 0x1E, + 0x00, 0xC3, 0x06, 0x2A, 0x06, 0x2B, 0x00, 0xBE, 0x00, 0xBF, 0x00, 0xA9, + 0x00, 0xAA, 0x00, 0x1F, 0x00, 0x21, 0x00, 0x94, 0x00, 0x95, 0x00, 0x20, + 0x00, 0x8F, 0x00, 0x0E, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xB8, 0x00, 0x93, + 0x00, 0xA7, 0x00, 0x61, 0x06, 0x2C, 0x06, 0x2D, 0x06, 0x2E, 0x06, 0x2F, + 0x06, 0x30, 0x06, 0x31, 0x06, 0x32, 0x06, 0x33, 0x06, 0x34, 0x06, 0x35, + 0x06, 0x36, 0x06, 0x37, 0x06, 0x38, 0x00, 0xA4, 0x00, 0x42, 0x00, 0x82, + 0x00, 0xC2, 0x00, 0x41, 0x00, 0x0D, 0x06, 0x39, 0x00, 0x8A, 0x00, 0x8B, + 0x06, 0x3A, 0x06, 0x3B, 0x00, 0x8C, 0x06, 0x3C, 0x06, 0x3D, 0x06, 0x3E, + 0x06, 0x3F, 0x06, 0x40, 0x00, 0x83, 0x00, 0x9D, 0x00, 0x9E, 0x06, 0x41, + 0x06, 0x42, 0x00, 0x88, 0x06, 0x43, 0x00, 0x86, 0x00, 0x92, 0x00, 0x98, + 0x00, 0x99, 0x00, 0x9A, 0x00, 0x9C, 0x00, 0xA5, 0x06, 0x44, 0x00, 0xB9, + 0x06, 0x45, 0x06, 0x46, 0x06, 0x47, 0x06, 0x48, 0x06, 0x49, 0x06, 0x4A, + 0x06, 0x4B, 0x06, 0x4C, 0x06, 0x4D, 0x06, 0x4E, 0x06, 0x4F, 0x06, 0x50, + 0x06, 0x51, 0x06, 0x52, 0x06, 0x53, 0x06, 0x54, 0x06, 0x55, 0x06, 0x56, + 0x06, 0x57, 0x06, 0x58, 0x06, 0x59, 0x06, 0x5A, 0x06, 0x5B, 0x06, 0x5C, + 0x06, 0x5D, 0x06, 0x5E, 0x06, 0x5F, 0x06, 0x60, 0x06, 0x61, 0x06, 0x62, + 0x06, 0x63, 0x06, 0x64, 0x06, 0x65, 0x06, 0x66, 0x06, 0x67, 0x06, 0x68, + 0x06, 0x69, 0x06, 0x6A, 0x06, 0x6B, 0x06, 0x6C, 0x06, 0x6D, 0x06, 0x6E, + 0x06, 0x6F, 0x06, 0x70, 0x06, 0x71, 0x06, 0x72, 0x06, 0x73, 0x06, 0x74, + 0x06, 0x75, 0x06, 0x76, 0x06, 0x77, 0x06, 0x78, 0x06, 0x79, 0x06, 0x7A, + 0x06, 0x7B, 0x06, 0x7C, 0x06, 0x7D, 0x06, 0x7E, 0x06, 0x7F, 0x06, 0x80, + 0x06, 0x81, 0x06, 0x82, 0x06, 0x83, 0x06, 0x84, 0x06, 0x85, 0x06, 0x86, + 0x06, 0x87, 0x06, 0x88, 0x06, 0x89, 0x06, 0x8A, 0x06, 0x8B, 0x06, 0x8C, + 0x06, 0x8D, 0x06, 0x8E, 0x06, 0x8F, 0x06, 0x90, 0x06, 0x91, 0x06, 0x92, + 0x06, 0x93, 0x06, 0x94, 0x06, 0x95, 0x06, 0x96, 0x06, 0x97, 0x06, 0x98, + 0x06, 0x99, 0x06, 0x9A, 0x06, 0x9B, 0x06, 0x9C, 0x06, 0x9D, 0x06, 0x9E, + 0x06, 0x9F, 0x06, 0xA0, 0x06, 0xA1, 0x06, 0xA2, 0x06, 0xA3, 0x06, 0xA4, + 0x06, 0xA5, 0x06, 0xA6, 0x00, 0xBC, 0x06, 0xA7, 0x06, 0xA8, 0x06, 0xA9, + 0x06, 0xAA, 0x06, 0xAB, 0x06, 0xAC, 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, + 0x06, 0xB0, 0x06, 0xB1, 0x06, 0xB2, 0x06, 0xB3, 0x06, 0xB4, 0x06, 0xB5, + 0x06, 0xB6, 0x06, 0xB7, 0x06, 0xB8, 0x06, 0xB9, 0x06, 0xBA, 0x06, 0xBB, + 0x06, 0xBC, 0x06, 0xBD, 0x06, 0xBE, 0x06, 0xBF, 0x06, 0xC0, 0x06, 0xC1, + 0x06, 0xC2, 0x06, 0xC3, 0x06, 0xC4, 0x06, 0xC5, 0x06, 0xC6, 0x06, 0xC7, + 0x06, 0xC8, 0x06, 0xC9, 0x06, 0xCA, 0x06, 0xCB, 0x06, 0xCC, 0x06, 0xCD, + 0x06, 0xCE, 0x06, 0xCF, 0x06, 0xD0, 0x06, 0xD1, 0x06, 0xD2, 0x06, 0xD3, + 0x06, 0xD4, 0x06, 0xD5, 0x06, 0xD6, 0x06, 0xD7, 0x06, 0xD8, 0x06, 0xD9, + 0x00, 0xF4, 0x06, 0xDA, 0x06, 0xDB, 0x06, 0xDC, 0x00, 0xF5, 0x00, 0xF6, + 0x06, 0xDD, 0x06, 0xDE, 0x06, 0xDF, 0x06, 0xE0, 0x06, 0xE1, 0x06, 0xE2, + 0x06, 0xE3, 0x06, 0xE4, 0x06, 0xE5, 0x06, 0xE6, 0x06, 0xE7, 0x06, 0xE8, + 0x06, 0xE9, 0x00, 0x08, 0x00, 0xC6, 0x06, 0xEA, 0x06, 0xEB, 0x06, 0xEC, + 0x06, 0xED, 0x06, 0xEE, 0x06, 0xEF, 0x00, 0x8D, 0x00, 0xDF, 0x00, 0x43, + 0x06, 0xF0, 0x00, 0x8E, 0x06, 0xF1, 0x00, 0xD8, 0x00, 0xD9, 0x00, 0xDA, + 0x00, 0xDB, 0x06, 0xF2, 0x00, 0xDC, 0x00, 0xDD, 0x00, 0xE1, 0x06, 0xF3, + 0x00, 0xDE, 0x00, 0xE0, 0x06, 0xF4, 0x06, 0xF5, 0x06, 0xF6, 0x06, 0xF7, + 0x06, 0xF8, 0x06, 0xF9, 0x06, 0xFA, 0x06, 0xFB, 0x00, 0x03, 0x06, 0xFC, + 0x06, 0xFD, 0x06, 0xFE, 0x06, 0xFF, 0x07, 0x00, 0x07, 0x01, 0x07, 0x02, + 0x07, 0x03, 0x07, 0x04, 0x07, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x08, + 0x07, 0x09, 0x07, 0x0A, 0x07, 0x0B, 0x07, 0x0C, 0x07, 0x0D, 0x07, 0x0E, + 0x07, 0x0F, 0x07, 0x10, 0x07, 0x11, 0x07, 0x12, 0x07, 0x13, 0x07, 0x14, + 0x07, 0x15, 0x07, 0x16, 0x07, 0x17, 0x07, 0x18, 0x07, 0x19, 0x07, 0x1A, + 0x07, 0x1B, 0x07, 0x1C, 0x07, 0x1D, 0x07, 0x1E, 0x07, 0x1F, 0x07, 0x20, + 0x07, 0x21, 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, 0x07, 0x26, + 0x07, 0x27, 0x07, 0x28, 0x07, 0x29, 0x07, 0x2A, 0x07, 0x2B, 0x07, 0x2C, + 0x07, 0x2D, 0x07, 0x2E, 0x07, 0x2F, 0x07, 0x30, 0x07, 0x31, 0x07, 0x32, + 0x07, 0x33, 0x07, 0x34, 0x07, 0x35, 0x07, 0x36, 0x07, 0x37, 0x07, 0x38, + 0x07, 0x39, 0x07, 0x3A, 0x07, 0x3B, 0x07, 0x3C, 0x07, 0x3D, 0x07, 0x3E, + 0x07, 0x3F, 0x07, 0x40, 0x07, 0x41, 0x07, 0x42, 0x07, 0x43, 0x07, 0x44, + 0x07, 0x45, 0x07, 0x46, 0x07, 0x47, 0x07, 0x48, 0x07, 0x49, 0x07, 0x4A, + 0x07, 0x4B, 0x07, 0x4C, 0x07, 0x4D, 0x07, 0x4E, 0x07, 0x4F, 0x07, 0x50, + 0x07, 0x51, 0x07, 0x52, 0x07, 0x53, 0x07, 0x54, 0x07, 0x55, 0x07, 0x56, + 0x07, 0x57, 0x07, 0x58, 0x07, 0x59, 0x07, 0x5A, 0x07, 0x5B, 0x07, 0x5C, + 0x07, 0x5D, 0x07, 0x5E, 0x07, 0x5F, 0x07, 0x60, 0x07, 0x61, 0x07, 0x62, + 0x07, 0x63, 0x07, 0x64, 0x07, 0x65, 0x07, 0x66, 0x07, 0x67, 0x07, 0x68, + 0x07, 0x69, 0x07, 0x6A, 0x07, 0x6B, 0x07, 0x6C, 0x07, 0x6D, 0x07, 0x6E, + 0x07, 0x6F, 0x07, 0x70, 0x07, 0x71, 0x07, 0x72, 0x07, 0x73, 0x07, 0x74, + 0x07, 0x75, 0x07, 0x76, 0x07, 0x77, 0x07, 0x78, 0x07, 0x79, 0x07, 0x7A, + 0x07, 0x7B, 0x07, 0x7C, 0x07, 0x7D, 0x07, 0x7E, 0x07, 0x7F, 0x07, 0x80, + 0x07, 0x81, 0x07, 0x82, 0x07, 0x83, 0x07, 0x84, 0x07, 0x85, 0x07, 0x86, + 0x07, 0x87, 0x07, 0x88, 0x07, 0x89, 0x07, 0x8A, 0x07, 0x8B, 0x07, 0x8C, + 0x07, 0x8D, 0x07, 0x8E, 0x07, 0x8F, 0x07, 0x90, 0x07, 0x91, 0x07, 0x92, + 0x07, 0x93, 0x07, 0x94, 0x07, 0x95, 0x07, 0x96, 0x07, 0x97, 0x07, 0x98, + 0x07, 0x99, 0x07, 0x9A, 0x07, 0x9B, 0x07, 0x9C, 0x07, 0x9D, 0x07, 0x9E, + 0x07, 0x9F, 0x07, 0xA0, 0x07, 0xA1, 0x07, 0xA2, 0x07, 0xA3, 0x07, 0xA4, + 0x07, 0xA5, 0x07, 0xA6, 0x07, 0xA7, 0x07, 0xA8, 0x07, 0xA9, 0x07, 0xAA, + 0x07, 0xAB, 0x07, 0xAC, 0x07, 0xAD, 0x07, 0xAE, 0x07, 0xAF, 0x07, 0xB0, + 0x07, 0xB1, 0x07, 0xB2, 0x07, 0xB3, 0x07, 0xB4, 0x07, 0xB5, 0x07, 0xB6, + 0x07, 0xB7, 0x07, 0xB8, 0x07, 0xB9, 0x07, 0xBA, 0x07, 0xBB, 0x07, 0xBC, + 0x07, 0xBD, 0x07, 0xBE, 0x07, 0xBF, 0x07, 0xC0, 0x07, 0xC1, 0x07, 0xC2, + 0x07, 0xC3, 0x07, 0xC4, 0x07, 0xC5, 0x07, 0xC6, 0x07, 0xC7, 0x07, 0xC8, + 0x07, 0xC9, 0x07, 0xCA, 0x07, 0xCB, 0x07, 0xCC, 0x07, 0xCD, 0x07, 0xCE, + 0x07, 0xCF, 0x07, 0xD0, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, + 0x07, 0xD5, 0x07, 0xD6, 0x07, 0xD7, 0x07, 0xD8, 0x07, 0xD9, 0x07, 0xDA, + 0x07, 0xDB, 0x07, 0xDC, 0x07, 0xDD, 0x07, 0xDE, 0x07, 0xDF, 0x07, 0xE0, + 0x07, 0xE1, 0x07, 0xE2, 0x07, 0xE3, 0x07, 0xE4, 0x07, 0xE5, 0x07, 0xE6, + 0x07, 0xE7, 0x07, 0xE8, 0x07, 0xE9, 0x07, 0xEA, 0x07, 0xEB, 0x07, 0xEC, + 0x07, 0xED, 0x07, 0xEE, 0x07, 0xEF, 0x07, 0xF0, 0x07, 0xF1, 0x07, 0xF2, + 0x07, 0xF3, 0x07, 0xF4, 0x07, 0xF5, 0x07, 0xF6, 0x07, 0xF7, 0x07, 0xF8, + 0x07, 0xF9, 0x07, 0xFA, 0x07, 0xFB, 0x07, 0xFC, 0x07, 0xFD, 0x07, 0xFE, + 0x07, 0xFF, 0x08, 0x00, 0x08, 0x01, 0x08, 0x02, 0x08, 0x03, 0x08, 0x04, + 0x08, 0x05, 0x08, 0x06, 0x08, 0x07, 0x08, 0x08, 0x08, 0x09, 0x08, 0x0A, + 0x08, 0x0B, 0x08, 0x0C, 0x08, 0x0D, 0x08, 0x0E, 0x08, 0x0F, 0x08, 0x10, + 0x08, 0x11, 0x08, 0x12, 0x08, 0x13, 0x08, 0x14, 0x08, 0x15, 0x08, 0x16, + 0x08, 0x17, 0x08, 0x18, 0x08, 0x19, 0x08, 0x1A, 0x08, 0x1B, 0x08, 0x1C, + 0x08, 0x1D, 0x08, 0x1E, 0x08, 0x1F, 0x08, 0x20, 0x08, 0x21, 0x08, 0x22, + 0x08, 0x23, 0x08, 0x24, 0x08, 0x25, 0x08, 0x26, 0x08, 0x27, 0x08, 0x28, + 0x08, 0x29, 0x08, 0x2A, 0x08, 0x2B, 0x08, 0x2C, 0x08, 0x2D, 0x08, 0x2E, + 0x08, 0x2F, 0x08, 0x30, 0x08, 0x31, 0x08, 0x32, 0x08, 0x33, 0x08, 0x34, + 0x08, 0x35, 0x08, 0x36, 0x08, 0x37, 0x08, 0x38, 0x08, 0x39, 0x08, 0x3A, + 0x08, 0x3B, 0x08, 0x3C, 0x08, 0x3D, 0x08, 0x3E, 0x08, 0x3F, 0x08, 0x40, + 0x08, 0x41, 0x08, 0x42, 0x08, 0x43, 0x08, 0x44, 0x08, 0x45, 0x08, 0x46, + 0x08, 0x47, 0x08, 0x48, 0x08, 0x49, 0x08, 0x4A, 0x08, 0x4B, 0x08, 0x4C, + 0x08, 0x4D, 0x08, 0x4E, 0x08, 0x4F, 0x08, 0x50, 0x08, 0x51, 0x08, 0x52, + 0x08, 0x53, 0x08, 0x54, 0x08, 0x55, 0x08, 0x56, 0x08, 0x57, 0x08, 0x58, + 0x08, 0x59, 0x08, 0x5A, 0x08, 0x5B, 0x08, 0x5C, 0x08, 0x5D, 0x08, 0x5E, + 0x08, 0x5F, 0x08, 0x60, 0x08, 0x61, 0x08, 0x62, 0x08, 0x63, 0x08, 0x64, + 0x08, 0x65, 0x08, 0x66, 0x08, 0x67, 0x08, 0x68, 0x08, 0x69, 0x08, 0x6A, + 0x08, 0x6B, 0x08, 0x6C, 0x08, 0x6D, 0x08, 0x6E, 0x08, 0x6F, 0x08, 0x70, + 0x08, 0x71, 0x08, 0x72, 0x08, 0x73, 0x08, 0x74, 0x08, 0x75, 0x08, 0x76, + 0x08, 0x77, 0x08, 0x78, 0x08, 0x79, 0x08, 0x7A, 0x08, 0x7B, 0x08, 0x7C, + 0x08, 0x7D, 0x08, 0x7E, 0x08, 0x7F, 0x08, 0x80, 0x08, 0x81, 0x08, 0x82, + 0x08, 0x83, 0x08, 0x84, 0x08, 0x85, 0x08, 0x86, 0x08, 0x87, 0x08, 0x88, + 0x08, 0x89, 0x08, 0x8A, 0x08, 0x8B, 0x08, 0x8C, 0x08, 0x8D, 0x08, 0x8E, + 0x08, 0x8F, 0x08, 0x90, 0x08, 0x91, 0x08, 0x92, 0x08, 0x93, 0x08, 0x94, + 0x08, 0x95, 0x08, 0x96, 0x08, 0x97, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, + 0x08, 0x9B, 0x08, 0x9C, 0x08, 0x9D, 0x08, 0x9E, 0x08, 0x9F, 0x08, 0xA0, + 0x08, 0xA1, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, + 0x08, 0xA7, 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, + 0x08, 0xAD, 0x08, 0xAE, 0x08, 0xAF, 0x08, 0xB0, 0x08, 0xB1, 0x08, 0xB2, + 0x08, 0xB3, 0x08, 0xB4, 0x08, 0xB5, 0x08, 0xB6, 0x08, 0xB7, 0x08, 0xB8, + 0x08, 0xB9, 0x08, 0xBA, 0x08, 0xBB, 0x08, 0xBC, 0x08, 0xBD, 0x08, 0xBE, + 0x08, 0xBF, 0x08, 0xC0, 0x08, 0xC1, 0x08, 0xC2, 0x08, 0xC3, 0x08, 0xC4, + 0x08, 0xC5, 0x08, 0xC6, 0x08, 0xC7, 0x08, 0xC8, 0x08, 0xC9, 0x08, 0xCA, + 0x08, 0xCB, 0x08, 0xCC, 0x08, 0xCD, 0x08, 0xCE, 0x08, 0xCF, 0x08, 0xD0, + 0x08, 0xD1, 0x08, 0xD2, 0x08, 0xD3, 0x08, 0xD4, 0x08, 0xD5, 0x08, 0xD6, + 0x08, 0xD7, 0x08, 0xD8, 0x08, 0xD9, 0x08, 0xDA, 0x08, 0xDB, 0x08, 0xDC, + 0x08, 0xDD, 0x08, 0xDE, 0x08, 0xDF, 0x08, 0xE0, 0x08, 0xE1, 0x08, 0xE2, + 0x08, 0xE3, 0x08, 0xE4, 0x08, 0xE5, 0x08, 0xE6, 0x08, 0xE7, 0x08, 0xE8, + 0x08, 0xE9, 0x08, 0xEA, 0x08, 0xEB, 0x08, 0xEC, 0x08, 0xED, 0x08, 0xEE, + 0x08, 0xEF, 0x08, 0xF0, 0x08, 0xF1, 0x08, 0xF2, 0x08, 0xF3, 0x08, 0xF4, + 0x08, 0xF5, 0x08, 0xF6, 0x08, 0xF7, 0x08, 0xF8, 0x08, 0xF9, 0x08, 0xFA, + 0x08, 0xFB, 0x08, 0xFC, 0x08, 0xFD, 0x08, 0xFE, 0x08, 0xFF, 0x09, 0x00, + 0x09, 0x01, 0x09, 0x02, 0x09, 0x03, 0x09, 0x04, 0x09, 0x05, 0x09, 0x06, + 0x09, 0x07, 0x09, 0x08, 0x09, 0x09, 0x09, 0x0A, 0x09, 0x0B, 0x09, 0x0C, + 0x09, 0x0D, 0x09, 0x0E, 0x09, 0x0F, 0x09, 0x10, 0x09, 0x11, 0x09, 0x12, + 0x09, 0x13, 0x09, 0x14, 0x09, 0x15, 0x09, 0x16, 0x09, 0x17, 0x09, 0x18, + 0x09, 0x19, 0x09, 0x1A, 0x09, 0x1B, 0x09, 0x1C, 0x09, 0x1D, 0x09, 0x1E, + 0x09, 0x1F, 0x09, 0x20, 0x09, 0x21, 0x09, 0x22, 0x09, 0x23, 0x09, 0x24, + 0x09, 0x25, 0x00, 0xE9, 0x09, 0x26, 0x09, 0x27, 0x09, 0x28, 0x09, 0x29, + 0x09, 0x2A, 0x09, 0x2B, 0x09, 0x2C, 0x09, 0x2D, 0x09, 0x2E, 0x09, 0x2F, + 0x09, 0x30, 0x09, 0x31, 0x09, 0x32, 0x09, 0x33, 0x09, 0x34, 0x09, 0x35, + 0x09, 0x36, 0x09, 0x37, 0x09, 0x38, 0x09, 0x39, 0x09, 0x3A, 0x09, 0x3B, + 0x09, 0x3C, 0x09, 0x3D, 0x09, 0x3E, 0x09, 0x3F, 0x09, 0x40, 0x09, 0x41, + 0x09, 0x42, 0x09, 0x43, 0x09, 0x44, 0x09, 0x45, 0x09, 0x46, 0x09, 0x47, + 0x09, 0x48, 0x09, 0x49, 0x09, 0x4A, 0x09, 0x4B, 0x09, 0x4C, 0x09, 0x4D, + 0x09, 0x4E, 0x09, 0x4F, 0x09, 0x50, 0x09, 0x51, 0x09, 0x52, 0x09, 0x53, + 0x09, 0x54, 0x09, 0x55, 0x09, 0x56, 0x09, 0x57, 0x09, 0x58, 0x09, 0x59, + 0x09, 0x5A, 0x09, 0x5B, 0x09, 0x5C, 0x09, 0x5D, 0x09, 0x5E, 0x09, 0x5F, + 0x09, 0x60, 0x09, 0x61, 0x09, 0x62, 0x09, 0x63, 0x09, 0x64, 0x09, 0x65, + 0x09, 0x66, 0x09, 0x67, 0x09, 0x68, 0x09, 0x69, 0x09, 0x6A, 0x09, 0x6B, + 0x09, 0x6C, 0x09, 0x6D, 0x09, 0x6E, 0x09, 0x6F, 0x09, 0x70, 0x09, 0x71, + 0x09, 0x72, 0x09, 0x73, 0x09, 0x74, 0x09, 0x75, 0x09, 0x76, 0x09, 0x77, + 0x09, 0x78, 0x09, 0x79, 0x09, 0x7A, 0x09, 0x7B, 0x09, 0x7C, 0x09, 0x7D, + 0x09, 0x7E, 0x09, 0x7F, 0x09, 0x80, 0x09, 0x81, 0x09, 0x82, 0x09, 0x83, + 0x09, 0x84, 0x09, 0x85, 0x09, 0x86, 0x09, 0x87, 0x09, 0x88, 0x09, 0x89, + 0x09, 0x8A, 0x09, 0x8B, 0x09, 0x8C, 0x09, 0x8D, 0x09, 0x8E, 0x09, 0x8F, + 0x09, 0x90, 0x09, 0x91, 0x09, 0x92, 0x09, 0x93, 0x09, 0x94, 0x09, 0x95, + 0x09, 0x96, 0x09, 0x97, 0x09, 0x98, 0x09, 0x99, 0x09, 0x9A, 0x09, 0x9B, + 0x09, 0x9C, 0x09, 0x9D, 0x09, 0x9E, 0x09, 0x9F, 0x09, 0xA0, 0x09, 0xA1, + 0x09, 0xA2, 0x09, 0xA3, 0x09, 0xA4, 0x09, 0xA5, 0x09, 0xA6, 0x09, 0xA7, + 0x09, 0xA8, 0x09, 0xA9, 0x09, 0xAA, 0x09, 0xAB, 0x09, 0xAC, 0x09, 0xAD, + 0x09, 0xAE, 0x09, 0xAF, 0x09, 0xB0, 0x09, 0xB1, 0x09, 0xB2, 0x09, 0xB3, + 0x09, 0xB4, 0x09, 0xB5, 0x09, 0xB6, 0x09, 0xB7, 0x09, 0xB8, 0x09, 0xB9, + 0x09, 0xBA, 0x09, 0xBB, 0x09, 0xBC, 0x09, 0xBD, 0x09, 0xBE, 0x09, 0xBF, + 0x09, 0xC0, 0x09, 0xC1, 0x09, 0xC2, 0x09, 0xC3, 0x09, 0xC4, 0x09, 0xC5, + 0x09, 0xC6, 0x09, 0xC7, 0x09, 0xC8, 0x09, 0xC9, 0x09, 0xCA, 0x09, 0xCB, + 0x09, 0xCC, 0x09, 0xCD, 0x09, 0xCE, 0x09, 0xCF, 0x09, 0xD0, 0x09, 0xD1, + 0x09, 0xD2, 0x09, 0xD3, 0x09, 0xD4, 0x09, 0xD5, 0x09, 0xD6, 0x09, 0xD7, + 0x09, 0xD8, 0x09, 0xD9, 0x09, 0xDA, 0x09, 0xDB, 0x09, 0xDC, 0x09, 0xDD, + 0x09, 0xDE, 0x09, 0xDF, 0x09, 0xE0, 0x09, 0xE1, 0x09, 0xE2, 0x09, 0xE3, + 0x09, 0xE4, 0x09, 0xE5, 0x09, 0xE6, 0x09, 0xE7, 0x09, 0xE8, 0x09, 0xE9, + 0x09, 0xEA, 0x09, 0xEB, 0x09, 0xEC, 0x09, 0xED, 0x09, 0xEE, 0x09, 0xEF, + 0x09, 0xF0, 0x09, 0xF1, 0x09, 0xF2, 0x09, 0xF3, 0x09, 0xF4, 0x09, 0xF5, + 0x09, 0xF6, 0x09, 0xF7, 0x09, 0xF8, 0x09, 0xF9, 0x09, 0xFA, 0x09, 0xFB, + 0x09, 0xFC, 0x09, 0xFD, 0x09, 0xFE, 0x09, 0xFF, 0x0A, 0x00, 0x0A, 0x01, + 0x0A, 0x02, 0x0A, 0x03, 0x0A, 0x04, 0x0A, 0x05, 0x0A, 0x06, 0x0A, 0x07, + 0x0A, 0x08, 0x0A, 0x09, 0x0A, 0x0A, 0x0A, 0x0B, 0x0A, 0x0C, 0x0A, 0x0D, + 0x0A, 0x0E, 0x0A, 0x0F, 0x0A, 0x10, 0x0A, 0x11, 0x0A, 0x12, 0x0A, 0x13, + 0x0A, 0x14, 0x0A, 0x15, 0x0A, 0x16, 0x0A, 0x17, 0x0A, 0x18, 0x0A, 0x19, + 0x0A, 0x1A, 0x0A, 0x1B, 0x0A, 0x1C, 0x0A, 0x1D, 0x0A, 0x1E, 0x0A, 0x1F, + 0x0A, 0x20, 0x0A, 0x21, 0x0A, 0x22, 0x0A, 0x23, 0x0A, 0x24, 0x0A, 0x25, + 0x0A, 0x26, 0x0A, 0x27, 0x0A, 0x28, 0x0A, 0x29, 0x0A, 0x2A, 0x0A, 0x2B, + 0x0A, 0x2C, 0x0A, 0x2D, 0x0A, 0x2E, 0x0A, 0x2F, 0x0A, 0x30, 0x0A, 0x31, + 0x0A, 0x32, 0x0A, 0x33, 0x0A, 0x34, 0x0A, 0x35, 0x0A, 0x36, 0x0A, 0x37, + 0x0A, 0x38, 0x0A, 0x39, 0x0A, 0x3A, 0x0A, 0x3B, 0x0A, 0x3C, 0x0A, 0x3D, + 0x0A, 0x3E, 0x0A, 0x3F, 0x0A, 0x40, 0x0A, 0x41, 0x0A, 0x42, 0x0A, 0x43, + 0x0A, 0x44, 0x0A, 0x45, 0x0A, 0x46, 0x0A, 0x47, 0x0A, 0x48, 0x0A, 0x49, + 0x0A, 0x4A, 0x0A, 0x4B, 0x0A, 0x4C, 0x0A, 0x4D, 0x0A, 0x4E, 0x0A, 0x4F, + 0x0A, 0x50, 0x0A, 0x51, 0x0A, 0x52, 0x0A, 0x53, 0x0A, 0x54, 0x0A, 0x55, + 0x0A, 0x56, 0x0A, 0x57, 0x0A, 0x58, 0x0A, 0x59, 0x0A, 0x5A, 0x0A, 0x5B, + 0x0A, 0x5C, 0x0A, 0x5D, 0x0A, 0x5E, 0x0A, 0x5F, 0x0A, 0x60, 0x0A, 0x61, + 0x0A, 0x62, 0x0A, 0x63, 0x0A, 0x64, 0x0A, 0x65, 0x0A, 0x66, 0x0A, 0x67, + 0x0A, 0x68, 0x0A, 0x69, 0x0A, 0x6A, 0x0A, 0x6B, 0x0A, 0x6C, 0x0A, 0x6D, + 0x0A, 0x6E, 0x0A, 0x6F, 0x0A, 0x70, 0x0A, 0x71, 0x0A, 0x72, 0x0A, 0x73, + 0x0A, 0x74, 0x0A, 0x75, 0x0A, 0x76, 0x0A, 0x77, 0x0A, 0x78, 0x0A, 0x79, + 0x0A, 0x7A, 0x0A, 0x7B, 0x0A, 0x7C, 0x0A, 0x7D, 0x0A, 0x7E, 0x0A, 0x7F, + 0x0A, 0x80, 0x0A, 0x81, 0x0A, 0x82, 0x0A, 0x83, 0x0A, 0x84, 0x0A, 0x85, + 0x0A, 0x86, 0x0A, 0x87, 0x0A, 0x88, 0x0A, 0x89, 0x0A, 0x8A, 0x0A, 0x8B, + 0x0A, 0x8C, 0x0A, 0x8D, 0x0A, 0x8E, 0x0A, 0x8F, 0x0A, 0x90, 0x0A, 0x91, + 0x0A, 0x92, 0x0A, 0x93, 0x0A, 0x94, 0x0A, 0x95, 0x0A, 0x96, 0x0A, 0x97, + 0x0A, 0x98, 0x0A, 0x99, 0x0A, 0x9A, 0x0A, 0x9B, 0x0A, 0x9C, 0x0A, 0x9D, + 0x0A, 0x9E, 0x0A, 0x9F, 0x0A, 0xA0, 0x0A, 0xA1, 0x0A, 0xA2, 0x0A, 0xA3, + 0x0A, 0xA4, 0x0A, 0xA5, 0x0A, 0xA6, 0x0A, 0xA7, 0x0A, 0xA8, 0x0A, 0xA9, + 0x0A, 0xAA, 0x0A, 0xAB, 0x0A, 0xAC, 0x0A, 0xAD, 0x0A, 0xAE, 0x0A, 0xAF, + 0x0A, 0xB0, 0x0A, 0xB1, 0x0A, 0xB2, 0x0A, 0xB3, 0x0A, 0xB4, 0x0A, 0xB5, + 0x0A, 0xB6, 0x0A, 0xB7, 0x0A, 0xB8, 0x0A, 0xB9, 0x0A, 0xBA, 0x0A, 0xBB, + 0x0A, 0xBC, 0x0A, 0xBD, 0x0A, 0xBE, 0x0A, 0xBF, 0x0A, 0xC0, 0x0A, 0xC1, + 0x0A, 0xC2, 0x0A, 0xC3, 0x0A, 0xC4, 0x0A, 0xC5, 0x0A, 0xC6, 0x0A, 0xC7, + 0x0A, 0xC8, 0x0A, 0xC9, 0x0A, 0xCA, 0x0A, 0xCB, 0x0A, 0xCC, 0x0A, 0xCD, + 0x0A, 0xCE, 0x0A, 0xCF, 0x0A, 0xD0, 0x0A, 0xD1, 0x0A, 0xD2, 0x0A, 0xD3, + 0x0A, 0xD4, 0x0A, 0xD5, 0x0A, 0xD6, 0x0A, 0xD7, 0x0A, 0xD8, 0x0A, 0xD9, + 0x0A, 0xDA, 0x0A, 0xDB, 0x0A, 0xDC, 0x0A, 0xDD, 0x0A, 0xDE, 0x0A, 0xDF, + 0x0A, 0xE0, 0x0A, 0xE1, 0x0A, 0xE2, 0x0A, 0xE3, 0x0A, 0xE4, 0x0A, 0xE5, + 0x0A, 0xE6, 0x0A, 0xE7, 0x0A, 0xE8, 0x0A, 0xE9, 0x0A, 0xEA, 0x0A, 0xEB, + 0x0A, 0xEC, 0x0A, 0xED, 0x0A, 0xEE, 0x0A, 0xEF, 0x0A, 0xF0, 0x0A, 0xF1, + 0x0A, 0xF2, 0x0A, 0xF3, 0x0A, 0xF4, 0x0A, 0xF5, 0x0A, 0xF6, 0x0A, 0xF7, + 0x0A, 0xF8, 0x0A, 0xF9, 0x0A, 0xFA, 0x0A, 0xFB, 0x0A, 0xFC, 0x0A, 0xFD, + 0x0A, 0xFE, 0x0A, 0xFF, 0x0B, 0x00, 0x0B, 0x01, 0x0B, 0x02, 0x0B, 0x03, + 0x0B, 0x04, 0x0B, 0x05, 0x0B, 0x06, 0x0B, 0x07, 0x0B, 0x08, 0x0B, 0x09, + 0x0B, 0x0A, 0x0B, 0x0B, 0x0B, 0x0C, 0x0B, 0x0D, 0x0B, 0x0E, 0x0B, 0x0F, + 0x0B, 0x10, 0x0B, 0x11, 0x0B, 0x12, 0x0B, 0x13, 0x0B, 0x14, 0x0B, 0x15, + 0x0B, 0x16, 0x0B, 0x17, 0x0B, 0x18, 0x0B, 0x19, 0x0B, 0x1A, 0x0B, 0x1B, + 0x0B, 0x1C, 0x0B, 0x1D, 0x0B, 0x1E, 0x0B, 0x1F, 0x0B, 0x20, 0x0B, 0x21, + 0x0B, 0x22, 0x0B, 0x23, 0x0B, 0x24, 0x0B, 0x25, 0x0B, 0x26, 0x0B, 0x27, + 0x0B, 0x28, 0x0B, 0x29, 0x0B, 0x2A, 0x0B, 0x2B, 0x0B, 0x2C, 0x0B, 0x2D, + 0x0B, 0x2E, 0x0B, 0x2F, 0x0B, 0x30, 0x0B, 0x31, 0x0B, 0x32, 0x0B, 0x33, + 0x0B, 0x34, 0x0B, 0x35, 0x0B, 0x36, 0x0B, 0x37, 0x0B, 0x38, 0x0B, 0x39, + 0x0B, 0x3A, 0x0B, 0x3B, 0x0B, 0x3C, 0x0B, 0x3D, 0x0B, 0x3E, 0x0B, 0x3F, + 0x0B, 0x40, 0x0B, 0x41, 0x0B, 0x42, 0x0B, 0x43, 0x0B, 0x44, 0x0B, 0x45, + 0x0B, 0x46, 0x0B, 0x47, 0x0B, 0x48, 0x0B, 0x49, 0x0B, 0x4A, 0x0B, 0x4B, + 0x0B, 0x4C, 0x0B, 0x4D, 0x0B, 0x4E, 0x0B, 0x4F, 0x0B, 0x50, 0x0B, 0x51, + 0x0B, 0x52, 0x0B, 0x53, 0x0B, 0x54, 0x0B, 0x55, 0x0B, 0x56, 0x0B, 0x57, + 0x0B, 0x58, 0x0B, 0x59, 0x0B, 0x5A, 0x0B, 0x5B, 0x0B, 0x5C, 0x0B, 0x5D, + 0x0B, 0x5E, 0x0B, 0x5F, 0x0B, 0x60, 0x0B, 0x61, 0x0B, 0x62, 0x0B, 0x63, + 0x0B, 0x64, 0x0B, 0x65, 0x0B, 0x66, 0x0B, 0x67, 0x0B, 0x68, 0x0B, 0x69, + 0x0B, 0x6A, 0x0B, 0x6B, 0x0B, 0x6C, 0x0B, 0x6D, 0x0B, 0x6E, 0x0B, 0x6F, + 0x0B, 0x70, 0x0B, 0x71, 0x0B, 0x72, 0x0B, 0x73, 0x0B, 0x74, 0x0B, 0x75, + 0x0B, 0x76, 0x0B, 0x77, 0x0B, 0x78, 0x0A, 0x41, 0x72, 0x69, 0x6E, 0x67, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x41, 0x72, 0x69, 0x6E, 0x67, 0x6F, + 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x41, 0x6D, 0x61, 0x63, 0x72, 0x6F, + 0x6E, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x41, 0x6F, 0x67, + 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x34, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x36, + 0x05, 0x41, 0x6C, 0x70, 0x68, 0x61, 0x0A, 0x41, 0x6C, 0x70, 0x68, 0x61, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x43, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, + 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x38, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x38, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, + 0x43, 0x06, 0x4C, 0x61, 0x6D, 0x62, 0x64, 0x61, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x45, 0x32, 0x07, 0x41, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x34, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x31, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x32, 0x04, 0x42, 0x65, 0x74, + 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x37, 0x0B, 0x43, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x43, 0x64, + 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x41, + 0x06, 0x44, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x31, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x32, 0x05, + 0x44, 0x62, 0x61, 0x72, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, + 0x32, 0x08, 0x44, 0x7A, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x5F, 0x07, 0x45, + 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x45, 0x62, 0x72, 0x65, 0x76, + 0x65, 0x0A, 0x45, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x07, 0x45, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x45, 0x63, 0x61, + 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x32, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x36, 0x05, 0x45, 0x74, 0x75, 0x72, + 0x6E, 0x07, 0x45, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x0C, 0x45, 0x70, + 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x31, 0x45, 0x05, 0x46, 0x74, 0x75, 0x72, 0x6E, 0x04, 0x47, 0x62, 0x61, + 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x33, 0x0B, 0x47, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x47, 0x64, + 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x32, 0x32, 0x06, 0x47, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x30, 0x03, 0x47, 0x2E, 0x31, 0x06, 0x47, 0x62, 0x61, 0x72, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x33, 0x2E, 0x31, + 0x0D, 0x47, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, + 0x2E, 0x31, 0x08, 0x47, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x31, 0x0C, + 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, 0x32, 0x2E, 0x31, 0x08, 0x47, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x46, 0x34, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, + 0x30, 0x2E, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x38, 0x0B, + 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x41, 0x04, 0x48, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x32, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x41, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x36, + 0x03, 0x45, 0x74, 0x61, 0x08, 0x45, 0x74, 0x61, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x32, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x31, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x39, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x43, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, + 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x43, 0x43, 0x08, 0x49, 0x2E, 0x64, 0x6F, 0x75, 0x62, + 0x6C, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x39, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x43, 0x06, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x49, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, + 0x07, 0x49, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x43, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x38, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x41, + 0x04, 0x49, 0x6F, 0x74, 0x61, 0x09, 0x49, 0x6F, 0x74, 0x61, 0x47, 0x72, + 0x65, 0x65, 0x6B, 0x09, 0x49, 0x6F, 0x74, 0x61, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x0C, 0x49, 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, + 0x69, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x33, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x33, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x33, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x33, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x44, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x39, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x03, 0x49, 0x2E, 0x31, 0x0B, 0x49, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x39, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x43, 0x2E, 0x31, 0x08, 0x49, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, + 0x31, 0x08, 0x49, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, 0x0D, 0x49, + 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x31, + 0x08, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x31, 0x09, 0x49, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x08, 0x49, 0x62, 0x72, 0x65, + 0x76, 0x65, 0x2E, 0x31, 0x09, 0x49, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, + 0x2E, 0x31, 0x0C, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x46, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x38, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x38, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, + 0x38, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x39, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x41, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x33, 0x43, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x33, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, + 0x45, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x46, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x38, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x44, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x44, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, + 0x36, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x2E, + 0x31, 0x0B, 0x4A, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, + 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x37, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x36, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x39, 0x38, 0x05, 0x4B, 0x61, 0x70, 0x70, 0x61, 0x06, + 0x4C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x33, 0x42, 0x06, 0x4C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x43, 0x44, 0x02, 0x4D, 0x75, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x43, + 0x06, 0x4E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x34, 0x35, 0x06, 0x4E, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x46, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x34, 0x41, 0x05, 0x4E, 0x68, 0x6F, 0x6F, 0x6B, 0x03, 0x45, 0x6E, 0x67, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x36, 0x02, 0x4E, 0x75, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x42, 0x05, 0x4F, 0x68, 0x6F, 0x72, + 0x6E, 0x07, 0x4F, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x4F, 0x62, + 0x72, 0x65, 0x76, 0x65, 0x0D, 0x4F, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, + 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x32, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x33, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x32, 0x0B, 0x4F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, + 0x74, 0x65, 0x07, 0x4F, 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, 0x0C, 0x4F, + 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x34, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x45, 0x36, 0x04, 0x4F, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x45, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x34, 0x03, 0x52, 0x68, 0x6F, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x43, 0x08, 0x51, 0x5F, 0x72, + 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x06, 0x52, 0x63, 0x61, + 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x35, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x31, 0x46, 0x02, + 0x52, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x43, 0x06, 0x53, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x53, 0x63, 0x69, 0x72, 0x63, 0x75, + 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, + 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x36, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x36, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x41, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x09, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x31, 0x41, 0x2E, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x43, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x41, 0x43, 0x2E, 0x62, 0x61, 0x73, 0x65, 0x07, + 0x54, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x33, 0x45, 0x03, 0x54, 0x61, 0x75, 0x05, 0x55, 0x68, 0x6F, 0x72, + 0x6E, 0x06, 0x55, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x55, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, + 0x55, 0x72, 0x69, 0x6E, 0x67, 0x0D, 0x55, 0x68, 0x75, 0x6E, 0x67, 0x61, + 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x55, 0x6F, 0x67, 0x6F, + 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x44, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x31, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x45, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x45, 0x0B, + 0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x06, + 0x57, 0x67, 0x72, 0x61, 0x76, 0x65, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x09, 0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x38, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x43, 0x03, + 0x43, 0x68, 0x69, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x33, 0x0B, + 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x38, 0x45, 0x06, 0x59, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x34, 0x45, 0x07, 0x55, 0x70, 0x73, 0x69, 0x6C, + 0x6F, 0x6E, 0x0C, 0x55, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0F, 0x55, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x35, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x35, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x45, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x42, 0x07, + 0x59, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x5A, 0x61, 0x63, 0x75, + 0x74, 0x65, 0x0A, 0x5A, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, + 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x34, 0x04, 0x5A, 0x62, + 0x61, 0x72, 0x04, 0x5A, 0x65, 0x74, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x43, 0x37, 0x46, 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x42, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x42, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x33, 0x07, 0x61, + 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x61, 0x6F, 0x67, 0x6F, 0x6E, + 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x41, 0x0A, 0x61, + 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x61, 0x72, + 0x69, 0x6E, 0x67, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x31, 0x05, 0x61, 0x74, 0x75, 0x72, 0x6E, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x33, 0x07, 0x61, 0x65, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x35, 0x03, + 0x61, 0x2E, 0x31, 0x08, 0x61, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, + 0x08, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x41, 0x46, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x42, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, + 0x31, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x35, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x2E, 0x31, 0x0D, 0x61, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x35, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x41, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, + 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x42, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x2E, 0x31, 0x0B, + 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x46, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x32, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x31, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, + 0x31, 0x2E, 0x31, 0x08, 0x61, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x33, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x30, 0x33, 0x2E, 0x31, 0x09, 0x61, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x09, 0x61, 0x6F, 0x67, 0x6F, 0x6E, + 0x65, 0x6B, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x41, + 0x2E, 0x31, 0x07, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x2E, 0x31, 0x0C, 0x61, + 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x31, 0x2E, 0x31, 0x08, 0x61, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x31, 0x04, 0x62, 0x62, 0x61, 0x72, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x38, 0x0B, 0x63, 0x63, 0x69, 0x72, + 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x63, 0x64, 0x6F, 0x74, + 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x34, 0x31, 0x07, 0x64, 0x72, 0x74, 0x68, 0x6F, + 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x31, 0x06, 0x64, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x33, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x41, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, + 0x36, 0x05, 0x64, 0x79, 0x6F, 0x67, 0x68, 0x04, 0x64, 0x6F, 0x6E, 0x67, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x37, 0x07, 0x65, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0A, + 0x65, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x65, + 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x65, 0x63, 0x61, 0x72, 0x6F, + 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x35, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x35, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x31, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x31, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x33, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x44, 0x37, 0x05, 0x65, 0x74, 0x75, 0x72, 0x6E, 0x0C, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x66, 0x5F, 0x62, 0x61, 0x73, 0x65, + 0x03, 0x66, 0x2E, 0x31, 0x03, 0x66, 0x2E, 0x69, 0x05, 0x66, 0x2E, 0x69, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, 0x2E, 0x31, + 0x06, 0x66, 0x65, 0x6E, 0x67, 0x2E, 0x31, 0x05, 0x6C, 0x6F, 0x6E, 0x67, + 0x73, 0x0B, 0x73, 0x6C, 0x6F, 0x6E, 0x67, 0x73, 0x74, 0x72, 0x6F, 0x6B, + 0x65, 0x0E, 0x73, 0x6C, 0x6F, 0x6E, 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, + 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, + 0x04, 0x66, 0x65, 0x6E, 0x67, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, + 0x30, 0x04, 0x67, 0x62, 0x61, 0x72, 0x0B, 0x67, 0x63, 0x69, 0x72, 0x63, + 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x67, 0x64, 0x6F, 0x74, 0x61, + 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, + 0x33, 0x06, 0x67, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x31, + 0x04, 0x67, 0x2E, 0x73, 0x63, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, + 0x30, 0x2E, 0x73, 0x63, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x39, 0x35, 0x05, 0x68, 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x68, + 0x74, 0x75, 0x72, 0x6E, 0x6C, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x0A, 0x68, + 0x74, 0x75, 0x72, 0x6E, 0x68, 0x6F, 0x6F, 0x6B, 0x32, 0x04, 0x68, 0x62, + 0x61, 0x72, 0x0B, 0x68, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, + 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x32, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x32, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x39, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x42, 0x0F, 0x64, + 0x6F, 0x74, 0x6C, 0x65, 0x73, 0x73, 0x69, 0x2E, 0x64, 0x6F, 0x75, 0x62, + 0x6C, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x46, 0x06, 0x69, + 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, + 0x44, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x44, 0x2E, 0x63, 0x63, + 0x6D, 0x70, 0x04, 0x69, 0x62, 0x61, 0x72, 0x07, 0x69, 0x6D, 0x61, 0x63, + 0x72, 0x6F, 0x6E, 0x06, 0x69, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x32, 0x46, 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x07, + 0x69, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x42, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x42, 0x2E, 0x63, 0x63, 0x6D, 0x70, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x37, 0x0B, 0x6A, 0x64, 0x6F, + 0x74, 0x6C, 0x65, 0x73, 0x73, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x39, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x39, + 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, + 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x37, 0x02, 0x69, 0x6A, + 0x04, 0x69, 0x2E, 0x73, 0x63, 0x0F, 0x6A, 0x63, 0x72, 0x6F, 0x73, 0x73, + 0x74, 0x61, 0x69, 0x6C, 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x0A, 0x6A, 0x63, + 0x72, 0x6F, 0x73, 0x73, 0x74, 0x61, 0x69, 0x6C, 0x0B, 0x6A, 0x63, 0x69, + 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x46, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x31, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x33, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x33, 0x35, 0x05, 0x6B, 0x74, 0x75, 0x72, 0x6E, 0x06, 0x6B, + 0x2E, 0x62, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, + 0x41, 0x09, 0x6C, 0x6D, 0x69, 0x64, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, + 0x6C, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x36, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x34, 0x04, + 0x6C, 0x64, 0x6F, 0x74, 0x06, 0x6C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x06, 0x6C, 0x63, 0x61, 0x72, + 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x33, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x44, 0x06, 0x6C, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0B, 0x6C, 0x73, 0x6C, 0x61, 0x73, 0x68, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0E, 0x6C, 0x6D, 0x69, 0x64, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x36, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x09, 0x6C, + 0x64, 0x6F, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0B, 0x6C, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x33, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0B, 0x6C, 0x63, + 0x61, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x33, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x32, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x44, 0x2E, 0x73, 0x73, 0x30, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x46, 0x04, 0x6C, 0x2E, + 0x73, 0x63, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x37, 0x31, 0x05, 0x6D, + 0x74, 0x75, 0x72, 0x6E, 0x0C, 0x6D, 0x74, 0x75, 0x72, 0x6E, 0x64, 0x65, + 0x73, 0x63, 0x65, 0x6E, 0x64, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x33, 0x07, 0x6E, 0x72, 0x74, 0x68, 0x6F, 0x6F, + 0x6B, 0x03, 0x65, 0x6E, 0x67, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, + 0x35, 0x08, 0x6E, 0x6C, 0x66, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x39, 0x45, 0x06, 0x6E, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x06, 0x6E, 0x63, + 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x34, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x43, 0x43, 0x04, 0x6E, 0x2E, 0x73, 0x63, 0x05, 0x6F, 0x68, + 0x6F, 0x72, 0x6E, 0x07, 0x6F, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, + 0x6F, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0D, 0x6F, 0x68, 0x75, 0x6E, 0x67, + 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x32, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x44, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x45, 0x33, 0x0B, 0x6F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x61, + 0x63, 0x75, 0x74, 0x65, 0x07, 0x6F, 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, + 0x0C, 0x6F, 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x34, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x33, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x37, 0x33, 0x04, 0x6F, 0x62, 0x61, 0x72, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x33, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x37, 0x05, 0x6F, 0x65, 0x2E, 0x73, 0x63, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x37, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x37, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x30, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x41, 0x30, 0x07, 0x71, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, + 0x07, 0x72, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x44, 0x05, 0x72, 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x72, + 0x74, 0x75, 0x72, 0x6E, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x0C, 0x72, + 0x66, 0x69, 0x73, 0x68, 0x68, 0x6F, 0x6F, 0x6B, 0x72, 0x65, 0x76, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x37, 0x45, 0x08, 0x72, 0x64, 0x65, 0x73, + 0x63, 0x65, 0x6E, 0x64, 0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x06, 0x72, 0x63, 0x61, 0x72, + 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x31, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x35, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x35, 0x46, 0x04, 0x72, 0x2E, 0x73, 0x63, 0x07, 0x72, 0x69, 0x6E, 0x76, + 0x2E, 0x73, 0x63, 0x07, 0x73, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x46, 0x06, 0x73, 0x61, 0x63, 0x75, + 0x74, 0x65, 0x0B, 0x73, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, + 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x39, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x41, 0x38, 0x0C, 0x67, 0x65, 0x72, 0x6D, 0x61, + 0x6E, 0x64, 0x62, 0x6C, 0x73, 0x2E, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x41, 0x42, 0x07, 0x74, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x41, 0x38, 0x05, 0x74, 0x74, 0x75, 0x72, 0x6E, 0x04, 0x74, 0x62, + 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x36, 0x33, 0x06, 0x74, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x37, 0x03, 0x74, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x41, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x36, 0x33, 0x2E, 0x31, 0x08, 0x74, 0x63, 0x61, 0x72, 0x6F, 0x6E, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x42, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x36, 0x46, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x31, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x37, + 0x2E, 0x31, 0x06, 0x75, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x05, 0x75, 0x68, + 0x6F, 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x38, 0x39, 0x07, 0x75, 0x6D, 0x61, 0x63, + 0x72, 0x6F, 0x6E, 0x06, 0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x75, + 0x72, 0x69, 0x6E, 0x67, 0x0D, 0x75, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, + 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6F, 0x67, 0x6F, 0x6E, + 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x37, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x45, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x31, 0x03, 0x75, + 0x2E, 0x31, 0x08, 0x75, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x38, 0x39, 0x2E, 0x31, 0x08, 0x75, 0x62, + 0x72, 0x65, 0x76, 0x65, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x34, 0x2E, 0x31, 0x0D, 0x75, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, + 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x35, + 0x2E, 0x31, 0x0B, 0x75, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x38, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x44, 0x43, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x36, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, + 0x2E, 0x31, 0x08, 0x75, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x37, 0x2E, 0x31, 0x07, 0x75, 0x68, + 0x6F, 0x72, 0x6E, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, + 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x31, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x42, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x45, 0x46, 0x2E, 0x31, 0x0F, 0x75, 0x68, 0x75, 0x6E, + 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6F, 0x67, 0x6F, 0x6E, 0x65, + 0x6B, 0x2E, 0x31, 0x07, 0x75, 0x72, 0x69, 0x6E, 0x67, 0x2E, 0x31, 0x08, + 0x75, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x37, 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x35, 0x2E, 0x31, 0x05, 0x76, 0x74, 0x75, 0x72, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x37, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x46, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x05, 0x77, 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x77, 0x63, 0x69, 0x72, 0x63, + 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, + 0x65, 0x06, 0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x38, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x35, 0x03, 0x63, 0x68, 0x69, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x46, 0x0B, 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, + 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x39, 0x39, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x46, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x35, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x46, 0x33, 0x05, 0x79, 0x74, 0x75, 0x72, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x45, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x32, 0x07, 0x79, 0x6F, + 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x04, 0x79, 0x2E, 0x73, 0x63, 0x04, 0x7A, + 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x30, 0x07, 0x7A, 0x72, 0x74, 0x68, + 0x6F, 0x6F, 0x6B, 0x06, 0x7A, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0A, 0x7A, + 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x35, 0x05, 0x47, 0x61, + 0x6D, 0x6D, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x39, 0x34, 0x05, + 0x54, 0x68, 0x65, 0x74, 0x61, 0x02, 0x58, 0x69, 0x02, 0x50, 0x69, 0x05, + 0x53, 0x69, 0x67, 0x6D, 0x61, 0x03, 0x50, 0x68, 0x69, 0x03, 0x50, 0x73, + 0x69, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x41, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x46, 0x42, 0x0A, 0x4F, 0x6D, 0x65, 0x67, 0x61, 0x74, + 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x38, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x45, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x38, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x45, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x43, 0x08, 0x55, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, + 0x34, 0x06, 0x47, 0x61, 0x6D, 0x6D, 0x61, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x31, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x31, 0x37, 0x05, 0x4B, 0x61, 0x63, 0x79, 0x72, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x37, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x32, 0x05, 0x61, + 0x6C, 0x70, 0x68, 0x61, 0x0A, 0x61, 0x6C, 0x70, 0x68, 0x61, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x38, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x38, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x42, 0x37, 0x04, 0x62, 0x65, 0x74, 0x61, 0x05, 0x67, 0x61, 0x6D, + 0x6D, 0x61, 0x05, 0x64, 0x65, 0x6C, 0x74, 0x61, 0x07, 0x65, 0x70, 0x73, + 0x69, 0x6C, 0x6F, 0x6E, 0x0C, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, + 0x6E, 0x63, 0x6C, 0x6F, 0x73, 0x65, 0x64, 0x08, 0x65, 0x70, 0x73, 0x69, + 0x6C, 0x6F, 0x6E, 0x31, 0x0B, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x31, 0x72, 0x65, 0x76, 0x11, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x31, 0x72, 0x65, 0x76, 0x63, 0x6C, 0x6F, 0x73, 0x65, 0x64, 0x0F, 0x65, + 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x31, 0x72, 0x65, 0x76, 0x68, 0x6F, + 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x32, 0x04, 0x7A, + 0x65, 0x74, 0x61, 0x03, 0x65, 0x74, 0x61, 0x08, 0x65, 0x74, 0x61, 0x74, + 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x39, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x39, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x43, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x37, + 0x05, 0x74, 0x68, 0x65, 0x74, 0x61, 0x04, 0x69, 0x6F, 0x74, 0x61, 0x11, + 0x69, 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x09, 0x69, 0x6F, 0x74, 0x61, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0C, 0x69, 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x33, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x33, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x37, 0x06, 0x6C, 0x61, 0x6D, + 0x62, 0x64, 0x61, 0x02, 0x78, 0x69, 0x03, 0x72, 0x68, 0x6F, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x33, 0x43, 0x32, 0x05, 0x73, 0x69, 0x67, 0x6D, 0x61, + 0x03, 0x74, 0x61, 0x75, 0x07, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x14, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0F, 0x75, 0x70, + 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x0C, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, + 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x35, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x45, 0x37, 0x03, 0x70, 0x68, 0x69, 0x08, 0x70, + 0x68, 0x69, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x03, 0x70, 0x73, 0x69, 0x05, + 0x6F, 0x6D, 0x65, 0x67, 0x61, 0x0A, 0x6F, 0x6D, 0x65, 0x67, 0x61, 0x74, + 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x37, + 0x06, 0x67, 0x61, 0x6D, 0x6D, 0x61, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x32, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x41, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x35, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x36, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x39, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x42, 0x44, 0x04, 0x45, 0x75, 0x72, 0x6F, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x38, + 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x42, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x39, 0x04, 0x6C, 0x69, 0x72, 0x61, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x32, 0x0D, 0x63, 0x6F, 0x6C, + 0x6F, 0x6E, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6E, 0x63, 0x79, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x42, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x45, 0x33, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x42, 0x43, 0x0A, 0x7A, 0x65, 0x72, 0x6F, 0x2E, + 0x73, 0x6C, 0x61, 0x73, 0x68, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x07, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x31, 0x09, 0x66, + 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x08, 0x73, 0x69, 0x78, + 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x73, + 0x73, 0x30, 0x31, 0x07, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x74, 0x66, 0x06, + 0x6F, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x06, 0x74, 0x77, 0x6F, 0x2E, 0x74, + 0x66, 0x08, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x74, 0x66, 0x07, 0x66, + 0x6F, 0x75, 0x72, 0x2E, 0x74, 0x66, 0x07, 0x66, 0x69, 0x76, 0x65, 0x2E, + 0x74, 0x66, 0x06, 0x73, 0x69, 0x78, 0x2E, 0x74, 0x66, 0x08, 0x73, 0x65, + 0x76, 0x65, 0x6E, 0x2E, 0x74, 0x66, 0x08, 0x65, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x74, 0x66, 0x07, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x0D, + 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x6C, 0x61, 0x73, + 0x68, 0x0B, 0x6F, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x31, 0x2E, 0x74, 0x66, + 0x0C, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x0B, 0x73, 0x69, 0x78, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x0C, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x08, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x74, 0x66, 0x09, + 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x74, 0x66, 0x08, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x74, 0x66, 0x0D, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x0C, 0x73, 0x65, 0x6D, + 0x69, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x74, 0x66, 0x0C, 0x70, 0x61, + 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x74, 0x66, 0x0D, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x74, 0x66, + 0x0C, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x74, + 0x66, 0x0D, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x74, 0x66, 0x0E, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, + 0x65, 0x66, 0x74, 0x2E, 0x74, 0x66, 0x0F, 0x62, 0x72, 0x61, 0x63, 0x6B, + 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x74, 0x66, 0x11, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x12, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, + 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x11, + 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x2E, 0x74, 0x66, 0x12, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, + 0x13, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, 0x65, 0x66, 0x74, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x14, 0x62, 0x72, 0x61, + 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x2E, 0x74, 0x66, 0x09, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, + 0x2E, 0x74, 0x66, 0x0E, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x07, 0x6C, 0x65, 0x73, 0x73, 0x2E, + 0x74, 0x66, 0x0A, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x74, + 0x66, 0x0C, 0x6C, 0x65, 0x73, 0x73, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, + 0x74, 0x66, 0x0F, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, + 0x75, 0x61, 0x6C, 0x2E, 0x74, 0x66, 0x08, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x74, 0x66, 0x0B, 0x6E, 0x6F, 0x74, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x74, 0x66, 0x07, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x74, 0x66, 0x08, + 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x74, 0x66, 0x0B, 0x6D, 0x75, 0x6C, + 0x74, 0x69, 0x70, 0x6C, 0x79, 0x2E, 0x74, 0x66, 0x09, 0x64, 0x69, 0x76, + 0x69, 0x64, 0x65, 0x2E, 0x74, 0x66, 0x0C, 0x70, 0x6C, 0x75, 0x73, 0x6D, + 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x74, 0x66, 0x0E, 0x61, 0x70, 0x70, 0x72, + 0x6F, 0x78, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x74, 0x66, 0x0D, 0x61, + 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x74, 0x66, + 0x0B, 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6B, 0x2E, 0x74, 0x66, + 0x0C, 0x6C, 0x65, 0x73, 0x73, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, + 0x66, 0x0F, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x2E, 0x74, 0x66, 0x11, 0x6C, 0x65, 0x73, 0x73, 0x65, 0x71, + 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x14, + 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x0D, 0x65, 0x71, 0x75, + 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x10, 0x6E, + 0x6F, 0x74, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x2E, 0x74, 0x66, 0x0C, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x0D, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x10, 0x6D, 0x75, 0x6C, 0x74, 0x69, + 0x70, 0x6C, 0x79, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x0E, + 0x64, 0x69, 0x76, 0x69, 0x64, 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, + 0x74, 0x66, 0x11, 0x70, 0x6C, 0x75, 0x73, 0x6D, 0x69, 0x6E, 0x75, 0x73, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x13, 0x61, 0x70, 0x70, + 0x72, 0x6F, 0x78, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x12, 0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, + 0x6C, 0x64, 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x10, + 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6B, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x08, 0x73, 0x70, 0x61, 0x63, 0x65, 0x2E, 0x74, + 0x66, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, 0x30, 0x2E, 0x74, 0x66, + 0x0A, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x38, 0x2E, 0x74, 0x66, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x41, 0x09, 0x65, 0x78, 0x63, 0x6C, + 0x61, 0x6D, 0x64, 0x62, 0x6C, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x45, 0x31, 0x38, 0x11, 0x62, 0x72, + 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, 0x65, 0x66, 0x74, 0x5F, 0x71, 0x75, + 0x69, 0x6C, 0x6C, 0x12, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x5F, 0x71, 0x75, 0x69, 0x6C, 0x6C, 0x0E, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, + 0x74, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x62, + 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0E, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, + 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0F, 0x62, 0x72, 0x61, 0x63, + 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, + 0x61, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0A, 0x66, 0x69, 0x67, 0x75, + 0x72, 0x65, 0x64, 0x61, 0x73, 0x68, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x31, 0x35, 0x0A, 0x6F, 0x70, 0x65, 0x6E, 0x62, 0x75, 0x6C, 0x6C, 0x65, + 0x74, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x33, 0x0E, 0x74, 0x72, + 0x69, 0x61, 0x6E, 0x67, 0x6C, 0x65, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x41, 0x41, + 0x0B, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0B, 0x65, 0x6E, 0x64, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0F, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x61, 0x73, 0x68, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, 0x6D, 0x64, 0x61, 0x73, 0x68, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0B, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0F, 0x6F, 0x70, 0x65, 0x6E, 0x62, 0x75, 0x6C, + 0x6C, 0x65, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x34, 0x33, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x13, 0x74, 0x72, + 0x69, 0x61, 0x6E, 0x67, 0x6C, 0x65, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, + 0x43, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x34, 0x44, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, + 0x35, 0x41, 0x41, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0D, 0x71, 0x75, 0x6F, + 0x74, 0x65, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x64, 0x10, 0x71, + 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, 0x65, 0x76, 0x65, 0x72, + 0x73, 0x65, 0x64, 0x05, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x0B, 0x64, 0x6F, + 0x75, 0x62, 0x6C, 0x65, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, + 0x37, 0x08, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x72, 0x65, 0x76, 0x0E, 0x64, + 0x6F, 0x75, 0x62, 0x6C, 0x65, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x72, 0x65, + 0x76, 0x0E, 0x74, 0x72, 0x69, 0x70, 0x6C, 0x65, 0x70, 0x72, 0x69, 0x6D, + 0x65, 0x72, 0x65, 0x76, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x41, 0x0C, 0x74, 0x77, 0x6F, + 0x64, 0x6F, 0x74, 0x6C, 0x65, 0x61, 0x64, 0x65, 0x72, 0x0A, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x32, 0x33, 0x36, 0x09, 0x61, 0x6E, 0x6F, 0x74, 0x65, 0x6C, 0x65, + 0x69, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x45, 0x09, 0x6C, + 0x65, 0x73, 0x73, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x67, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x72, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x6C, 0x65, + 0x73, 0x73, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x11, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, 0x75, 0x61, + 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0A, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0D, 0x6E, 0x6F, 0x74, 0x65, 0x71, 0x75, + 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x09, 0x70, 0x6C, 0x75, 0x73, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0D, 0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6C, + 0x79, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x64, 0x69, 0x76, 0x69, 0x64, + 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x70, 0x6C, 0x75, 0x73, 0x6D, + 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x61, 0x70, + 0x70, 0x72, 0x6F, 0x78, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x0F, 0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6C, 0x64, + 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0D, 0x61, 0x73, 0x74, 0x65, 0x72, + 0x69, 0x73, 0x6B, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x06, 0x75, 0x31, 0x46, + 0x31, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x31, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x32, 0x30, 0x03, 0x74, 0x65, 0x6C, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x33, 0x42, 0x08, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x31, 0x36, 0x42, 0x08, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x36, + 0x41, 0x06, 0x69, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x06, 0x6E, 0x2E, 0x6E, + 0x75, 0x6D, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x42, 0x08, + 0x65, 0x6D, 0x70, 0x74, 0x79, 0x73, 0x65, 0x74, 0x06, 0x61, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x06, 0x62, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x63, + 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x64, 0x2E, 0x73, 0x75, 0x70, 0x73, + 0x06, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x66, 0x2E, 0x73, 0x75, + 0x70, 0x73, 0x06, 0x67, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x68, 0x2E, + 0x73, 0x75, 0x70, 0x73, 0x06, 0x69, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, + 0x6A, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x6B, 0x2E, 0x73, 0x75, 0x70, + 0x73, 0x06, 0x6C, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x6D, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x06, 0x6E, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x6F, + 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x70, 0x2E, 0x73, 0x75, 0x70, 0x73, + 0x06, 0x71, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x72, 0x2E, 0x73, 0x75, + 0x70, 0x73, 0x06, 0x73, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x74, 0x2E, + 0x73, 0x75, 0x70, 0x73, 0x06, 0x75, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, + 0x76, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x77, 0x2E, 0x73, 0x75, 0x70, + 0x73, 0x06, 0x78, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x79, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x06, 0x7A, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x09, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0F, 0x7A, 0x65, 0x72, + 0x6F, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, + 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0D, 0x6F, 0x6E, + 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x08, + 0x74, 0x77, 0x6F, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0A, 0x74, 0x68, 0x72, + 0x65, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0F, 0x74, 0x68, 0x72, 0x65, + 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0E, 0x66, 0x6F, + 0x75, 0x72, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, + 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x08, 0x73, + 0x69, 0x78, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0D, 0x73, 0x69, 0x78, 0x2E, + 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, 0x73, 0x65, + 0x76, 0x65, 0x6E, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0A, 0x65, 0x69, 0x67, + 0x68, 0x74, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x09, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0E, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x70, 0x61, 0x72, + 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0F, + 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, + 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x11, 0x62, 0x72, 0x61, + 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x75, + 0x70, 0x73, 0x09, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x73, 0x75, 0x70, 0x73, + 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0A, + 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x61, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x62, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x06, 0x63, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x64, 0x2E, 0x73, 0x75, + 0x62, 0x73, 0x06, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x66, 0x2E, + 0x73, 0x75, 0x62, 0x73, 0x06, 0x67, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, + 0x68, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x69, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x06, 0x6A, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x6B, 0x2E, 0x73, + 0x75, 0x62, 0x73, 0x06, 0x6C, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x6D, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x6E, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x06, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x70, 0x2E, 0x73, 0x75, + 0x62, 0x73, 0x06, 0x71, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x72, 0x2E, + 0x73, 0x75, 0x62, 0x73, 0x06, 0x73, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, + 0x74, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x75, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x06, 0x76, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x77, 0x2E, 0x73, + 0x75, 0x62, 0x73, 0x06, 0x78, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x79, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x7A, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0F, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x6C, 0x61, + 0x73, 0x68, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0D, + 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x08, 0x74, 0x77, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0A, 0x74, + 0x68, 0x72, 0x65, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0F, 0x74, 0x68, + 0x72, 0x65, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x09, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0E, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x08, 0x73, 0x69, 0x78, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0D, 0x73, 0x69, + 0x78, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, + 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0A, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x09, 0x6E, 0x69, + 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0E, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, + 0x74, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x11, 0x62, + 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x73, 0x75, 0x62, 0x73, 0x09, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x73, 0x75, + 0x62, 0x73, 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x0A, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0F, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x6C, 0x61, + 0x73, 0x68, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0D, + 0x6F, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x08, 0x74, 0x77, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x74, + 0x68, 0x72, 0x65, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0F, 0x74, 0x68, + 0x72, 0x65, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x09, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0E, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, + 0x08, 0x73, 0x69, 0x78, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0D, 0x73, 0x69, + 0x78, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, + 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x09, 0x6E, 0x69, + 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0E, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x70, + 0x6C, 0x75, 0x73, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x6D, 0x69, 0x6E, + 0x75, 0x73, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x65, 0x71, 0x75, 0x61, + 0x6C, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0E, 0x70, 0x61, 0x72, 0x65, 0x6E, + 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0F, 0x70, 0x61, + 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x64, 0x6E, 0x6F, + 0x6D, 0x0B, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x64, 0x6E, 0x6F, + 0x6D, 0x0A, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, + 0x0F, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, + 0x73, 0x73, 0x30, 0x33, 0x0F, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x64, + 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x09, 0x7A, 0x65, 0x72, + 0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x7A, 0x65, 0x72, 0x6F, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x08, 0x6F, + 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0D, 0x6F, 0x6E, 0x65, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x08, 0x74, 0x77, + 0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x66, 0x6F, + 0x75, 0x72, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0E, 0x66, 0x6F, 0x75, 0x72, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x66, + 0x69, 0x76, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x08, 0x73, 0x69, 0x78, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0D, 0x73, 0x69, 0x78, 0x2E, 0x6E, 0x75, + 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, 0x73, 0x65, 0x76, 0x65, + 0x6E, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x65, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x6E, + 0x75, 0x6D, 0x72, 0x0E, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, + 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x70, 0x6C, 0x75, 0x73, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x6E, + 0x75, 0x6D, 0x72, 0x0A, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x6E, 0x75, + 0x6D, 0x72, 0x0E, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0B, 0x70, 0x65, + 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x63, 0x6F, + 0x6D, 0x6D, 0x61, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x63, 0x6F, 0x6D, + 0x6D, 0x61, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0F, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x34, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x37, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x30, 0x09, 0x6F, 0x6E, 0x65, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x0C, 0x74, 0x68, 0x72, 0x65, 0x65, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0B, 0x66, 0x69, 0x76, 0x65, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0C, 0x73, 0x65, 0x76, 0x65, + 0x6E, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x32, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x30, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x30, 0x30, 0x0E, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, + 0x73, 0x75, 0x62, 0x6A, 0x65, 0x63, 0x74, 0x05, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x0E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x74, + 0x68, 0x72, 0x65, 0x65, 0x0D, 0x63, 0x79, 0x72, 0x69, 0x6C, 0x6C, 0x69, + 0x63, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0D, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x32, 0x36, 0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, + 0x6D, 0x62, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x30, 0x34, 0x09, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, + 0x6D, 0x62, 0x08, 0x64, 0x6F, 0x74, 0x62, 0x65, 0x6C, 0x6F, 0x77, 0x0D, + 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x62, 0x65, 0x6C, 0x6F, 0x77, 0x63, 0x6D, + 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x33, 0x0C, 0x74, 0x68, + 0x69, 0x72, 0x64, 0x65, 0x6D, 0x73, 0x70, 0x61, 0x63, 0x65, 0x0E, 0x71, + 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x65, 0x6D, 0x73, 0x70, 0x61, 0x63, + 0x65, 0x0C, 0x73, 0x69, 0x78, 0x74, 0x68, 0x65, 0x6D, 0x73, 0x70, 0x61, + 0x63, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, + 0x31, 0x36, 0x10, 0x64, 0x65, 0x67, 0x72, 0x65, 0x65, 0x63, 0x65, 0x6E, + 0x74, 0x69, 0x67, 0x72, 0x61, 0x64, 0x65, 0x0F, 0x64, 0x65, 0x67, 0x72, + 0x65, 0x65, 0x66, 0x61, 0x72, 0x65, 0x6E, 0x68, 0x65, 0x69, 0x74, 0x0C, + 0x64, 0x65, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x65, 0x6C, 0x76, 0x69, 0x6E, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x32, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x35, 0x43, 0x45, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6D, 0x61, 0x74, + 0x65, 0x64, 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x35, 0x0E, 0x6C, 0x65, 0x66, + 0x74, 0x4C, 0x6F, 0x6E, 0x67, 0x41, 0x72, 0x72, 0x6F, 0x77, 0x32, 0x0C, + 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x38, 0x0A, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x72, 0x69, 0x67, 0x68, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x37, 0x46, 0x36, 0x0F, 0x72, 0x69, 0x67, 0x68, 0x74, 0x4C, 0x6F, 0x6E, + 0x67, 0x41, 0x72, 0x72, 0x6F, 0x77, 0x32, 0x0D, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x64, 0x62, 0x6C, 0x72, 0x69, 0x67, 0x68, 0x74, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x37, 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, + 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x31, 0x39, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, + 0x39, 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x62, 0x6F, 0x74, 0x68, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x37, 0x0C, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x64, 0x62, 0x6C, 0x62, 0x6F, 0x74, 0x68, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x37, 0x46, 0x41, 0x07, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x75, 0x70, + 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x6F, 0x77, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x39, 0x31, 0x33, 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, + 0x75, 0x70, 0x64, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x41, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x41, 0x41, 0x0E, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x35, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x13, 0x6C, 0x65, 0x66, 0x74, 0x4C, 0x6F, 0x6E, 0x67, 0x41, 0x72, 0x72, + 0x6F, 0x77, 0x32, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x38, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x0F, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, + 0x37, 0x46, 0x36, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x14, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x4C, 0x6F, 0x6E, 0x67, 0x41, 0x72, 0x72, 0x6F, 0x77, 0x32, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, + 0x62, 0x6C, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x39, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x0E, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x62, 0x6F, 0x74, 0x68, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x37, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, + 0x62, 0x6C, 0x62, 0x6F, 0x74, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x41, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x37, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x38, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x39, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x36, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0A, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x63, 0x68, + 0x65, 0x63, 0x6B, 0x0C, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x62, 0x61, 0x6C, + 0x6C, 0x6F, 0x74, 0x78, 0x07, 0x74, 0x72, 0x69, 0x61, 0x67, 0x64, 0x6E, + 0x07, 0x74, 0x72, 0x69, 0x61, 0x67, 0x75, 0x70, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x35, 0x43, 0x30, 0x07, 0x74, 0x72, 0x69, 0x61, 0x67, 0x72, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x35, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x43, 0x31, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x42, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x36, 0x41, 0x30, 0x0B, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x62, + 0x6C, 0x61, 0x63, 0x6B, 0x0B, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x77, + 0x68, 0x69, 0x74, 0x65, 0x09, 0x66, 0x69, 0x6C, 0x6C, 0x65, 0x64, 0x62, + 0x6F, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x41, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x35, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x42, + 0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x42, 0x31, 0x33, 0x0C, 0x64, + 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x62, 0x6C, 0x61, 0x63, 0x6B, 0x0E, + 0x64, 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x62, 0x6C, 0x61, 0x63, 0x6B, + 0x5F, 0x78, 0x0C, 0x64, 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x77, 0x68, + 0x69, 0x74, 0x65, 0x0E, 0x64, 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x77, + 0x68, 0x69, 0x74, 0x65, 0x5F, 0x78, 0x03, 0x73, 0x75, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x36, 0x30, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x36, + 0x36, 0x31, 0x05, 0x68, 0x65, 0x61, 0x72, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x37, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x36, 0x30, 0x35, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x36, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x42, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x45, 0x37, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x45, 0x41, 0x13, 0x70, 0x6C, 0x61, + 0x63, 0x65, 0x6F, 0x66, 0x69, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, + 0x73, 0x69, 0x67, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x30, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x33, 0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x38, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x33, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x38, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x32, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x33, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x43, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x43, 0x45, 0x0E, 0x63, 0x61, 0x72, + 0x72, 0x69, 0x61, 0x67, 0x65, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6E, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x45, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x42, 0x32, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x35, 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x42, 0x31, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x45, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x36, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x36, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x36, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x38, 0x12, 0x7A, 0x65, 0x72, 0x6F, + 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, + 0x65, 0x64, 0x10, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, + 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0F, 0x74, 0x68, 0x72, 0x65, + 0x65, 0x2E, 0x31, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x10, 0x73, 0x69, 0x78, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, 0x6E, + 0x69, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x63, 0x69, 0x72, + 0x63, 0x6C, 0x65, 0x64, 0x0E, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, 0x2E, + 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x10, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x69, 0x6F, 0x6E, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, + 0x12, 0x6E, 0x75, 0x6D, 0x62, 0x65, 0x72, 0x73, 0x69, 0x67, 0x6E, 0x2E, + 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0E, 0x68, 0x79, 0x70, 0x68, + 0x65, 0x6E, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0C, 0x6C, + 0x65, 0x73, 0x73, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0F, + 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x63, 0x69, 0x72, 0x63, + 0x6C, 0x65, 0x64, 0x0D, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0A, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, + 0x70, 0x6C, 0x75, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x39, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x39, 0x38, 0x0E, 0x63, 0x69, 0x72, + 0x63, 0x6C, 0x65, 0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6C, 0x79, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x41, 0x33, 0x38, 0x0F, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x75, 0x70, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, + 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x6F, 0x77, 0x6E, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0F, 0x75, 0x6E, 0x69, 0x32, 0x39, 0x31, + 0x33, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, 0x61, 0x72, + 0x72, 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x69, 0x72, 0x63, + 0x6C, 0x65, 0x64, 0x12, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x12, 0x64, + 0x6E, 0x67, 0x62, 0x5F, 0x63, 0x68, 0x65, 0x63, 0x6B, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x14, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x62, + 0x61, 0x6C, 0x6C, 0x6F, 0x74, 0x78, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, + 0x65, 0x64, 0x09, 0x41, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x42, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x43, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x44, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x45, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x46, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x47, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x0B, 0x47, 0x2E, 0x31, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x48, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x49, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x4A, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x4B, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x4C, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x4D, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x4E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x4F, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x50, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x51, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x52, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x53, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x54, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x55, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x56, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x57, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x58, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x59, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x5A, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0B, + 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0B, + 0x74, 0x77, 0x6F, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0D, + 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, + 0x64, 0x0C, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x0C, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, + 0x72, 0x65, 0x64, 0x0B, 0x73, 0x69, 0x78, 0x2E, 0x73, 0x71, 0x75, 0x61, + 0x72, 0x65, 0x64, 0x0D, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x73, 0x71, + 0x75, 0x61, 0x72, 0x65, 0x64, 0x0D, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x12, 0x7A, 0x65, 0x72, + 0x6F, 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x73, 0x71, 0x75, 0x61, + 0x72, 0x65, 0x64, 0x10, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0F, 0x74, 0x68, 0x72, + 0x65, 0x65, 0x2E, 0x31, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x11, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x10, 0x73, 0x69, 0x78, 0x2E, 0x73, + 0x73, 0x30, 0x31, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x11, + 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x73, 0x71, + 0x75, 0x61, 0x72, 0x65, 0x64, 0x0E, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x10, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x69, 0x6F, 0x6E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, + 0x64, 0x12, 0x6E, 0x75, 0x6D, 0x62, 0x65, 0x72, 0x73, 0x69, 0x67, 0x6E, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0E, 0x68, 0x79, 0x70, + 0x68, 0x65, 0x6E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, + 0x6C, 0x65, 0x73, 0x73, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x0F, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x0D, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x70, 0x6C, 0x75, 0x73, 0x2E, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0D, 0x6D, 0x69, 0x6E, 0x75, + 0x73, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x10, 0x66, 0x72, + 0x61, 0x63, 0x74, 0x69, 0x6F, 0x6E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x10, 0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6C, 0x79, 0x2E, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0E, 0x64, 0x69, 0x76, 0x69, + 0x64, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0F, 0x61, + 0x72, 0x72, 0x6F, 0x77, 0x75, 0x70, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x11, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x6F, 0x77, 0x6E, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0F, 0x75, 0x6E, 0x69, + 0x32, 0x39, 0x31, 0x33, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x11, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x12, 0x61, 0x72, 0x72, 0x6F, 0x77, + 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, + 0x64, 0x12, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x63, 0x68, 0x65, 0x63, 0x6B, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x14, 0x64, 0x6E, 0x67, + 0x62, 0x5F, 0x62, 0x61, 0x6C, 0x6C, 0x6F, 0x74, 0x78, 0x2E, 0x73, 0x71, + 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, + 0x32, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x32, 0x32, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x33, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x33, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x37, 0x2E, 0x73, + 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x2E, + 0x73, 0x73, 0x30, 0x33, 0x11, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x73, 0x73, + 0x30, 0x33, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, + 0x36, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0A, 0x63, 0x6F, 0x6D, 0x6D, 0x61, + 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0E, 0x73, 0x65, 0x6D, 0x69, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x34, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x11, 0x71, 0x75, + 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, + 0x73, 0x30, 0x33, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, + 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0E, 0x71, + 0x75, 0x6F, 0x74, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x73, 0x30, + 0x33, 0x0F, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x73, 0x73, 0x30, 0x33, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, + 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x15, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, 0x65, 0x76, + 0x65, 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x13, 0x71, + 0x75, 0x6F, 0x74, 0x65, 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x62, 0x61, 0x73, + 0x65, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x11, 0x71, 0x75, 0x6F, 0x74, 0x65, + 0x64, 0x62, 0x6C, 0x62, 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x43, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x41, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, + 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x43, + 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x41, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x43, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x36, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x45, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x45, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x38, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x45, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0F, 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x32, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x49, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0F, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x33, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x33, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x34, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x4F, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x45, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x41, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x43, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x36, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x30, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x32, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, + 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x36, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x55, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x32, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x39, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x42, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x35, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x34, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, + 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x57, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x38, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x43, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x41, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x59, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x38, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x46, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x5A, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x32, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x11, 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x49, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x2E, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x11, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, + 0x6E, 0x74, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x41, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x37, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x44, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, + 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x63, + 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x42, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x44, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x37, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x65, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0F, 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x32, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x06, 0x69, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0E, 0x69, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, + 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x43, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x69, 0x6F, + 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x06, 0x6A, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, + 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x09, 0x6C, 0x64, 0x6F, 0x74, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x34, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x34, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x34, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x6F, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x42, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x46, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, + 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x34, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x35, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x35, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x37, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x33, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x39, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, + 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x36, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x41, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x43, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x36, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x77, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x44, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x42, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x79, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x38, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x46, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x7A, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x33, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x37, 0x2E, 0x31, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x44, + 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x61, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x46, 0x2E, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x37, 0x2E, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x31, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x42, 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, 0x2E, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x6C, 0x64, 0x6F, 0x74, 0x2E, + 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x39, 0x2E, + 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x37, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x42, 0x2E, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x44, 0x2E, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x75, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x38, 0x2E, 0x31, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, + 0x41, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x44, 0x43, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x36, 0x2E, 0x31, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, + 0x31, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x37, 0x42, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x41, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x43, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x45, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x34, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x46, 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x46, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x46, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x42, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x44, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x46, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x35, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, + 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x46, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x46, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x44, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x69, + 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x14, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x19, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x32, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x37, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, + 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x45, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x61, 0x6E, 0x6F, + 0x74, 0x65, 0x6C, 0x65, 0x69, 0x61, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0B, + 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0A, + 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0A, 0x63, + 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x73, 0x65, + 0x6D, 0x69, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0D, 0x65, 0x6C, 0x6C, 0x69, 0x70, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0B, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0D, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6F, 0x6E, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x13, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x63, + 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x46, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x13, 0x74, 0x77, 0x6F, 0x64, 0x6F, 0x74, 0x65, 0x6E, 0x6C, 0x65, + 0x61, 0x64, 0x65, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0E, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x74, 0x66, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0D, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x74, + 0x66, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0D, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, + 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x73, 0x65, 0x6D, + 0x69, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x12, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x46, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x12, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, + 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x30, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x30, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x33, 0x35, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x42, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x45, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0D, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0E, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, + 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x13, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x2E, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0F, 0x6A, 0x63, 0x72, 0x6F, 0x73, 0x73, 0x74, 0x61, + 0x69, 0x6C, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x13, 0x73, 0x6C, 0x6F, 0x6E, + 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0D, 0x64, 0x6F, 0x74, 0x62, 0x65, 0x6C, 0x6F, 0x77, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x6F, 0x6E, 0x65, 0x64, 0x6F, 0x74, + 0x6C, 0x65, 0x61, 0x64, 0x65, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x17, + 0x64, 0x69, 0x61, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, + 0x6F, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x12, + 0x64, 0x6F, 0x74, 0x64, 0x62, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x14, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x64, 0x6F, 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x10, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x64, 0x6F, 0x74, + 0x2E, 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x63, 0x61, 0x72, + 0x6F, 0x6E, 0x64, 0x6F, 0x74, 0x2E, 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, + 0x69, 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, + 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, + 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, 0x61, 0x76, + 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x1A, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x1A, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, + 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x1A, 0x6D, 0x61, 0x63, 0x72, + 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x63, 0x6F, + 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x1A, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x19, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x19, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, + 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x32, 0x32, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x33, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x33, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x37, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, + 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x13, 0x71, 0x75, 0x6F, 0x74, 0x65, + 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x62, 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, + 0x30, 0x38, 0x11, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x62, + 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x11, 0x71, 0x75, 0x6F, + 0x74, 0x65, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x73, + 0x30, 0x38, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x0E, 0x71, 0x75, + 0x6F, 0x74, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x38, + 0x0F, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x73, 0x73, 0x30, 0x38, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, 0x65, + 0x76, 0x65, 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x15, + 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, 0x65, 0x76, 0x65, + 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x38, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, + 0x31, 0x06, 0x44, 0x63, 0x72, 0x6F, 0x61, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x38, 0x42, 0x08, 0x45, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x38, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x43, 0x02, 0x49, 0x4A, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x37, + 0x04, 0x4C, 0x64, 0x6F, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, + 0x41, 0x02, 0x4F, 0x49, 0x04, 0x54, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x38, 0x34, 0x08, 0x56, 0x63, 0x75, 0x72, 0x73, 0x69, + 0x76, 0x65, 0x02, 0x59, 0x52, 0x08, 0x6D, 0x63, 0x61, 0x70, 0x74, 0x75, + 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x32, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x34, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x46, 0x45, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x39, 0x45, 0x2E, 0x31, 0x07, 0x61, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x0B, 0x61, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x74, 0x75, 0x72, 0x6E, + 0x09, 0x62, 0x61, 0x62, 0x79, 0x67, 0x61, 0x6D, 0x6D, 0x61, 0x08, 0x63, + 0x73, 0x74, 0x72, 0x65, 0x74, 0x63, 0x68, 0x09, 0x64, 0x65, 0x6C, 0x74, + 0x61, 0x74, 0x75, 0x72, 0x6E, 0x04, 0x65, 0x72, 0x65, 0x76, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x38, 0x36, 0x0A, 0x65, 0x73, 0x68, 0x6C, 0x6F, 0x6F, 0x70, 0x72, 0x65, + 0x76, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x35, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x39, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x39, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x35, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x35, 0x44, + 0x44, 0x08, 0x67, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x39, 0x34, 0x0E, 0x67, 0x6C, 0x6F, 0x74, 0x74, + 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, 0x62, 0x61, 0x72, 0x11, 0x67, 0x6C, + 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, 0x62, 0x61, 0x72, + 0x69, 0x6E, 0x76, 0x11, 0x67, 0x6C, 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, + 0x74, 0x6F, 0x70, 0x62, 0x61, 0x72, 0x72, 0x65, 0x76, 0x0E, 0x67, 0x6C, + 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, 0x69, 0x6E, 0x76, + 0x11, 0x67, 0x6C, 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, + 0x72, 0x65, 0x76, 0x69, 0x6E, 0x76, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x31, 0x44, 0x0B, 0x6A, 0x68, 0x6F, 0x6F, 0x6B, 0x64, 0x62, 0x6C, 0x62, + 0x61, 0x72, 0x0C, 0x6B, 0x67, 0x72, 0x65, 0x65, 0x6E, 0x6C, 0x61, 0x6E, + 0x64, 0x69, 0x63, 0x09, 0x6C, 0x61, 0x6D, 0x62, 0x64, 0x61, 0x62, 0x61, + 0x72, 0x05, 0x6C, 0x79, 0x6F, 0x67, 0x68, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x41, 0x33, 0x0B, 0x6F, 0x6D, 0x65, 0x67, 0x61, 0x63, 0x6C, 0x6F, + 0x73, 0x65, 0x64, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x34, 0x08, + 0x70, 0x68, 0x69, 0x6C, 0x61, 0x74, 0x69, 0x6E, 0x0B, 0x72, 0x74, 0x75, + 0x72, 0x6E, 0x61, 0x73, 0x63, 0x65, 0x6E, 0x64, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x41, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x38, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x41, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x33, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x33, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x39, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x41, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x34, 0x0C, 0x75, 0x70, 0x73, + 0x69, 0x6C, 0x6F, 0x6E, 0x6C, 0x61, 0x74, 0x69, 0x6E, 0x07, 0x76, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, + 0x46, 0x04, 0x61, 0x2E, 0x73, 0x63, 0x04, 0x68, 0x2E, 0x73, 0x63, 0x04, + 0x6D, 0x2E, 0x73, 0x63, 0x04, 0x74, 0x2E, 0x73, 0x63, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x39, 0x34, 0x07, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, + 0x31, 0x04, 0x70, 0x69, 0x70, 0x65, 0x07, 0x70, 0x69, 0x70, 0x65, 0x64, + 0x62, 0x6C, 0x0A, 0x70, 0x69, 0x70, 0x65, 0x64, 0x62, 0x6C, 0x62, 0x61, + 0x72, 0x07, 0x75, 0x6E, 0x69, 0x41, 0x37, 0x46, 0x46, 0x0A, 0x52, 0x74, + 0x75, 0x72, 0x6E, 0x73, 0x75, 0x70, 0x65, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x35, 0x45, 0x35, 0x0A, 0x68, 0x68, 0x6F, 0x6F, 0x6B, 0x73, 0x75, + 0x70, 0x65, 0x72, 0x0A, 0x72, 0x74, 0x75, 0x72, 0x6E, 0x73, 0x75, 0x70, + 0x65, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x41, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x43, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x46, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x35, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x37, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x44, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x38, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, + 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x43, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x33, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, + 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x46, 0x05, 0x6B, + 0x61, 0x70, 0x70, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x42, 0x43, + 0x02, 0x6E, 0x75, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x37, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x37, 0x05, 0x62, 0x65, 0x74, 0x61, + 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x44, 0x36, 0x06, 0x6B, 0x61, 0x70, 0x70, 0x61, 0x31, + 0x04, 0x72, 0x68, 0x6F, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x37, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x45, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x42, + 0x46, 0x08, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x6F, 0x6E, 0x65, 0x08, 0x72, + 0x6F, 0x6D, 0x61, 0x6E, 0x74, 0x77, 0x6F, 0x0A, 0x72, 0x6F, 0x6D, 0x61, + 0x6E, 0x74, 0x68, 0x72, 0x65, 0x65, 0x09, 0x72, 0x6F, 0x6D, 0x61, 0x6E, + 0x66, 0x6F, 0x75, 0x72, 0x09, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x66, 0x69, + 0x76, 0x65, 0x08, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x73, 0x69, 0x78, 0x0A, + 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x0A, 0x72, + 0x6F, 0x6D, 0x61, 0x6E, 0x65, 0x69, 0x67, 0x68, 0x74, 0x09, 0x72, 0x6F, + 0x6D, 0x61, 0x6E, 0x6E, 0x69, 0x6E, 0x65, 0x08, 0x72, 0x6F, 0x6D, 0x61, + 0x6E, 0x74, 0x65, 0x6E, 0x0B, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x65, 0x6C, + 0x65, 0x76, 0x65, 0x6E, 0x0B, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x74, 0x77, + 0x65, 0x6C, 0x76, 0x65, 0x0A, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x66, 0x69, + 0x66, 0x74, 0x79, 0x0C, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x68, 0x75, 0x6E, + 0x64, 0x72, 0x65, 0x64, 0x10, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x66, 0x69, + 0x76, 0x65, 0x68, 0x75, 0x6E, 0x64, 0x72, 0x65, 0x64, 0x0D, 0x72, 0x6F, + 0x6D, 0x61, 0x6E, 0x74, 0x68, 0x6F, 0x75, 0x73, 0x61, 0x6E, 0x64, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x32, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x41, 0x39, 0x32, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x34, 0x30, 0x09, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x64, 0x6F, + 0x74, 0x0C, 0x6F, 0x6E, 0x65, 0x64, 0x6F, 0x74, 0x6C, 0x65, 0x61, 0x64, + 0x65, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x33, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x34, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x35, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, 0x35, 0x0E, 0x76, + 0x65, 0x72, 0x74, 0x69, 0x63, 0x61, 0x6C, 0x62, 0x61, 0x72, 0x64, 0x62, + 0x6C, 0x08, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x5F, 0x5F, 0x0D, 0x68, + 0x79, 0x70, 0x68, 0x65, 0x6E, 0x6E, 0x6F, 0x62, 0x72, 0x65, 0x61, 0x6B, + 0x0D, 0x75, 0x6E, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, 0x64, + 0x62, 0x6C, 0x0A, 0x67, 0x61, 0x6D, 0x6D, 0x61, 0x73, 0x75, 0x70, 0x65, + 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x32, 0x0C, 0x6E, 0x75, + 0x6D, 0x65, 0x72, 0x61, 0x6C, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x0F, 0x6E, + 0x75, 0x6D, 0x65, 0x72, 0x61, 0x6C, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x73, + 0x75, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x43, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x44, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x34, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x35, 0x2E, 0x63, + 0x6E, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x39, 0x2E, 0x63, 0x6E, + 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x36, 0x2E, 0x63, 0x6E, 0x0A, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x38, 0x2E, 0x63, 0x6E, 0x0A, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x45, 0x37, 0x2E, 0x63, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x46, 0x42, 0x34, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x44, + 0x45, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x39, 0x35, 0x2E, 0x6E, 0x75, + 0x6D, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x31, 0x33, 0x0C, 0x73, + 0x70, 0x61, 0x63, 0x65, 0x6F, 0x70, 0x65, 0x6E, 0x62, 0x6F, 0x78, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x45, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x45, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x38, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x38, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x41, 0x36, 0x39, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x34, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x30, 0x41, 0x0D, 0x68, 0x6F, 0x6F, 0x6B, 0x61, 0x62, 0x6F, 0x76, + 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, 0x35, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x34, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x44, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x43, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x45, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x36, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x44, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, 0x34, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, 0x44, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x46, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x45, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, + 0x42, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x0C, 0x63, + 0x61, 0x72, 0x6F, 0x6E, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, + 0x64, 0x6F, 0x74, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x6C, 0x63, + 0x15, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x6D, 0x61, 0x63, + 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x14, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, 0x61, 0x76, 0x65, + 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x15, 0x6D, 0x61, 0x63, 0x72, + 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x63, 0x6F, + 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x0D, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x61, + 0x63, 0x75, 0x74, 0x65, 0x2E, 0x6C, 0x63, 0x14, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x6C, 0x63, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, + 0x63, 0x15, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x14, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x10, 0x64, 0x6F, 0x74, + 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, + 0x63, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, + 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x11, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x75, 0x63, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x41, + 0x2E, 0x75, 0x63, 0x09, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x2E, 0x74, 0x6F, + 0x70, 0x0C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x63, 0x6F, + 0x6D, 0x62, 0x0E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x72, 0x69, 0x67, 0x68, + 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x73, + 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0E, 0x61, 0x72, 0x63, 0x68, 0x64, + 0x62, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x62, 0x72, + 0x65, 0x76, 0x65, 0x69, 0x6E, 0x76, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x62, + 0x72, 0x65, 0x76, 0x65, 0x69, 0x6E, 0x76, 0x73, 0x75, 0x62, 0x63, 0x6F, + 0x6D, 0x62, 0x0C, 0x62, 0x72, 0x65, 0x76, 0x65, 0x73, 0x75, 0x62, 0x63, + 0x6F, 0x6D, 0x62, 0x10, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x69, 0x6E, + 0x76, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0D, 0x62, 0x72, 0x69, + 0x64, 0x67, 0x65, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x63, + 0x61, 0x6E, 0x64, 0x72, 0x61, 0x62, 0x69, 0x6E, 0x64, 0x75, 0x63, 0x6F, + 0x6D, 0x62, 0x11, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, + 0x78, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x63, 0x6F, 0x6D, + 0x6D, 0x61, 0x73, 0x75, 0x70, 0x72, 0x65, 0x76, 0x63, 0x6F, 0x6D, 0x62, + 0x10, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x74, 0x75, 0x72, 0x6E, 0x73, 0x75, + 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x12, 0x64, 0x69, 0x61, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x63, 0x6F, 0x6D, 0x62, + 0x0D, 0x64, 0x6F, 0x74, 0x64, 0x62, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, + 0x6D, 0x62, 0x0D, 0x67, 0x72, 0x61, 0x76, 0x65, 0x6C, 0x65, 0x66, 0x74, + 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x67, 0x72, 0x61, 0x76, 0x65, 0x73, 0x75, + 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x11, 0x68, 0x6F, 0x6F, 0x6B, 0x61, 0x62, + 0x6F, 0x76, 0x65, 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x10, + 0x68, 0x6F, 0x6F, 0x6B, 0x73, 0x75, 0x62, 0x70, 0x61, 0x6C, 0x61, 0x74, + 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x68, 0x6F, 0x6F, 0x6B, 0x73, 0x75, 0x62, + 0x72, 0x65, 0x74, 0x72, 0x6F, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x69, 0x6F, + 0x74, 0x61, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x6C, 0x69, + 0x6E, 0x65, 0x76, 0x65, 0x72, 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x6C, + 0x69, 0x6E, 0x65, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6C, 0x63, 0x6F, + 0x6D, 0x62, 0x0F, 0x6C, 0x69, 0x6E, 0x65, 0x76, 0x65, 0x72, 0x74, 0x73, + 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0D, 0x6D, 0x61, 0x63, 0x72, 0x6F, + 0x6E, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0D, 0x6F, 0x76, 0x65, + 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x6F, + 0x76, 0x65, 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, 0x64, 0x62, 0x6C, 0x63, + 0x6F, 0x6D, 0x62, 0x13, 0x72, 0x69, 0x6E, 0x67, 0x6C, 0x65, 0x66, 0x74, + 0x68, 0x61, 0x6C, 0x66, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x14, + 0x72, 0x69, 0x6E, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x61, 0x6C, + 0x66, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x72, 0x69, 0x6E, + 0x67, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0E, 0x73, 0x65, 0x61, + 0x67, 0x75, 0x6C, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, + 0x74, 0x69, 0x6C, 0x64, 0x65, 0x6D, 0x69, 0x64, 0x63, 0x6F, 0x6D, 0x62, + 0x0C, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, + 0x62, 0x0E, 0x75, 0x6E, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, + 0x63, 0x6F, 0x6D, 0x62, 0x11, 0x75, 0x6E, 0x64, 0x65, 0x72, 0x73, 0x63, + 0x6F, 0x72, 0x65, 0x64, 0x62, 0x6C, 0x63, 0x6F, 0x6D, 0x62, 0x08, 0x78, + 0x73, 0x75, 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x64, 0x6F, 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x0B, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x64, 0x6F, 0x74, 0x2E, 0x6C, 0x63, 0x0B, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x64, 0x6F, 0x74, 0x2E, 0x75, 0x63, 0x0C, + 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x6C, 0x63, + 0x0C, 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x75, + 0x63, 0x14, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x14, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x12, 0x74, 0x69, 0x6C, 0x64, + 0x65, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, + 0x6C, 0x63, 0x0F, 0x61, 0x63, 0x75, 0x74, 0x65, 0x64, 0x6F, 0x74, 0x63, + 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x11, 0x62, 0x72, 0x65, 0x76, 0x65, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, + 0x11, 0x62, 0x72, 0x65, 0x76, 0x65, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, + 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x11, 0x62, 0x72, 0x65, 0x76, 0x65, + 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, + 0x16, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x61, + 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x16, + 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x67, 0x72, + 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x15, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x68, 0x6F, 0x6F, + 0x6B, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x16, 0x63, 0x69, 0x72, + 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x74, 0x69, 0x6C, 0x64, 0x65, + 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x13, 0x63, 0x6F, 0x6D, 0x6D, + 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x63, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x45, 0x08, 0x6C, 0x69, 0x6E, 0x65, + 0x76, 0x65, 0x72, 0x74, 0x09, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x73, + 0x75, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x43, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x44, 0x46, 0x46, 0x0C, 0x5F, + 0x70, 0x61, 0x72, 0x74, 0x2E, 0x41, 0x5F, 0x66, 0x72, 0x61, 0x63, 0x0C, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x4F, 0x73, 0x6C, 0x61, 0x73, 0x68, + 0x16, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x72, 0x6F, 0x73, 0x73, + 0x62, 0x61, 0x72, 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x1B, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x72, 0x6F, 0x73, 0x73, 0x62, + 0x61, 0x72, 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x5F, 0x72, + 0x65, 0x78, 0x74, 0x13, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x72, + 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x5F, 0x76, 0x65, 0x72, 0x74, 0x0D, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, 0x74, 0x61, 0x69, + 0x6C, 0x0C, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, 0x74, + 0x69, 0x63, 0x13, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, + 0x74, 0x69, 0x63, 0x5F, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x11, 0x5F, + 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, 0x74, 0x69, 0x63, 0x5F, + 0x68, 0x6F, 0x6F, 0x6B, 0x10, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x66, + 0x69, 0x74, 0x61, 0x63, 0x79, 0x5F, 0x62, 0x61, 0x72, 0x0C, 0x5F, 0x70, + 0x61, 0x72, 0x74, 0x2E, 0x6F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x0E, 0x70, + 0x65, 0x63, 0x79, 0x72, 0x69, 0x6C, 0x6C, 0x69, 0x63, 0x74, 0x75, 0x72, + 0x6E, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, 0x38, 0x2E, 0x63, 0x63, + 0x6D, 0x70, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x31, 0x2E, 0x63, + 0x63, 0x6D, 0x70, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x32, 0x2E, + 0x63, 0x63, 0x6D, 0x70, 0x0F, 0x61, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x5F, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x44, 0x45, 0x0E, 0x6C, 0x61, 0x72, + 0x67, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x0F, + 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, 0x64, 0x6F, 0x77, 0x6E, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x46, 0x2E, + 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, + 0x30, 0x33, 0x30, 0x39, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x5F, 0x6E, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x45, 0x2E, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x44, 0x2E, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, + 0x44, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x45, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x44, 0x45, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x46, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x46, 0x2E, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x46, 0x2E, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0A, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x36, 0x2E, 0x6C, 0x63, 0x0D, 0x67, 0x72, 0x61, 0x76, 0x65, 0x5F, 0x63, + 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x0D, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x08, 0x6F, 0x67, 0x6F, + 0x6E, 0x65, 0x6B, 0x2E, 0x41, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, + 0x2E, 0x4F, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x55, 0x08, + 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x61, 0x08, 0x6F, 0x67, 0x6F, + 0x6E, 0x65, 0x6B, 0x2E, 0x65, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, + 0x2E, 0x6F, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x79, 0x0A, + 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x75, 0x2E, 0x31, 0x0C, 0x61, + 0x6E, 0x67, 0x6C, 0x65, 0x73, 0x75, 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x0E, + 0x62, 0x61, 0x72, 0x6D, 0x69, 0x64, 0x6C, 0x6F, 0x6E, 0x67, 0x63, 0x6F, + 0x6D, 0x62, 0x08, 0x63, 0x72, 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x0D, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, + 0x62, 0x0F, 0x74, 0x61, 0x63, 0x6B, 0x64, 0x6F, 0x77, 0x6E, 0x73, 0x75, + 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x74, 0x61, 0x63, 0x6B, 0x6C, 0x65, + 0x66, 0x74, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x74, 0x61, + 0x63, 0x6B, 0x72, 0x69, 0x67, 0x68, 0x74, 0x73, 0x75, 0x62, 0x63, 0x6F, + 0x6D, 0x62, 0x0D, 0x74, 0x61, 0x63, 0x6B, 0x75, 0x70, 0x73, 0x75, 0x62, + 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x76, 0x65, + 0x72, 0x74, 0x73, 0x75, 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x63, 0x72, + 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x2E, 0x75, 0x63, 0x11, 0x63, 0x72, + 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x5F, 0x73, 0x68, 0x6F, 0x72, 0x74, + 0x2E, 0x75, 0x63, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, 0x37, 0x2E, + 0x6C, 0x63, 0x0D, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x73, 0x68, 0x6F, 0x72, + 0x74, 0x2E, 0x75, 0x63, 0x0E, 0x5F, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, + 0x72, 0x6F, 0x73, 0x73, 0x2E, 0x63, 0x6E, 0x14, 0x63, 0x6F, 0x6D, 0x6D, + 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x72, 0x6F, 0x74, 0x61, 0x74, + 0x65, 0x2E, 0x63, 0x6E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x3A, + 0x00, 0x0A, 0x00, 0x0A, 0x00, 0x50, 0x00, 0x9E, 0x00, 0xAC, 0x00, 0x58, + 0x00, 0x60, 0x00, 0x68, 0x00, 0x70, 0x00, 0x78, 0x00, 0x80, 0x00, 0x94, + 0x00, 0x04, 0x44, 0x46, 0x4C, 0x54, 0x00, 0x72, 0x63, 0x79, 0x72, 0x6C, + 0x00, 0x76, 0x67, 0x72, 0x65, 0x6B, 0x00, 0x76, 0x6C, 0x61, 0x74, 0x6E, + 0x00, 0x7A, 0x00, 0x05, 0x63, 0x70, 0x73, 0x70, 0x00, 0x8A, 0x6B, 0x65, + 0x72, 0x6E, 0x00, 0x96, 0x6B, 0x65, 0x72, 0x6E, 0x00, 0xAE, 0x6D, 0x61, + 0x72, 0x6B, 0x00, 0xA0, 0x6D, 0x6B, 0x6D, 0x6B, 0x00, 0x90, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0xA6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x01, 0x24, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xA0, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0xA4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0xA8, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xAC, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0xB0, 0x00, 0xB4, 0x00, 0x00, 0x00, 0x62, + 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01, + 0x00, 0xC4, 0x00, 0x01, 0x00, 0x09, 0x00, 0x10, 0x00, 0x03, 0x00, 0xC6, + 0x00, 0xCE, 0x00, 0xD6, 0x00, 0x00, 0x00, 0x02, 0x00, 0x10, 0x00, 0x03, + 0x01, 0x40, 0x00, 0xE8, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, + 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x25, 0xBC, + 0x00, 0x05, 0x00, 0x10, 0x00, 0x20, 0x00, 0x01, 0x24, 0x84, 0x31, 0x46, + 0x00, 0x01, 0x24, 0x9C, 0x3D, 0x86, 0x00, 0x01, 0x24, 0x48, 0x2A, 0x8E, + 0x00, 0x01, 0x24, 0x4E, 0x2C, 0x4E, 0x00, 0x01, 0x24, 0x5A, 0x24, 0x48, + 0x00, 0x01, 0x24, 0x62, 0x24, 0x38, 0x00, 0x01, 0x24, 0x42, 0x2E, 0xA8, + 0x00, 0x01, 0x24, 0x48, 0x37, 0xAE, 0x00, 0x01, 0x24, 0xD4, 0x34, 0x38, + 0x00, 0x01, 0x25, 0x02, 0x48, 0xB8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x01, + 0x24, 0xAC, 0x24, 0x62, 0x00, 0x01, 0x24, 0xDA, 0x24, 0x7E, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x7F, 0x0E, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, + 0x76, 0x98, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x87, 0xF8, 0x00, 0x01, + 0x24, 0x76, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x24, 0x1A, 0x24, 0x1A, + 0x24, 0x1A, 0x24, 0x1A, 0x24, 0x1A, 0x24, 0x1A, 0x24, 0x1A, 0x00, 0x01, + 0x26, 0x8E, 0x00, 0x04, 0x00, 0x00, 0x00, 0x27, 0x7E, 0xD8, 0x25, 0x90, + 0x25, 0x18, 0x26, 0x12, 0x25, 0xF4, 0x24, 0xF4, 0x24, 0xFA, 0x25, 0x18, + 0x25, 0x7C, 0x25, 0xCC, 0x25, 0xCC, 0x25, 0xCC, 0x25, 0x00, 0x25, 0xBA, + 0x26, 0x48, 0x25, 0x18, 0x25, 0x86, 0x25, 0x06, 0x25, 0x9E, 0x25, 0x0C, + 0x25, 0xDE, 0x25, 0xAC, 0x25, 0xAC, 0x25, 0xAC, 0x7E, 0xD8, 0x7E, 0xD8, + 0x7E, 0xD8, 0x25, 0x18, 0x25, 0x18, 0x25, 0x18, 0x25, 0x18, 0x25, 0x18, + 0x25, 0x18, 0x25, 0xCC, 0x25, 0x12, 0x25, 0xCC, 0x25, 0xCC, 0x25, 0xCC, + 0x25, 0x18, 0x00, 0x01, 0x28, 0xEC, 0x00, 0x04, 0x00, 0x00, 0x00, 0x5F, + 0x27, 0x32, 0x26, 0xA6, 0x27, 0xAE, 0x87, 0x66, 0x87, 0x6C, 0x87, 0x6C, + 0x26, 0x88, 0x26, 0xBE, 0x27, 0x50, 0x27, 0x6E, 0x26, 0x88, 0x26, 0x88, + 0x26, 0x88, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xB8, + 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xB8, 0x28, 0x28, 0x26, 0xFE, 0x87, 0x6C, + 0x27, 0xFA, 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xB8, + 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xAC, 0x27, 0x18, 0x26, 0xB2, 0x26, 0xB2, + 0x26, 0xAC, 0x27, 0x18, 0x27, 0x18, 0x26, 0xE6, 0x26, 0xE6, 0x26, 0xC8, + 0x26, 0x8E, 0x26, 0xB2, 0x27, 0x8C, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, + 0x26, 0xA0, 0x26, 0xD2, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, + 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xB8, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0x94, + 0x28, 0x6A, 0x87, 0x60, 0x87, 0x60, 0x26, 0xDC, 0x26, 0xDC, 0x26, 0xB8, + 0x26, 0xB2, 0x87, 0x6C, 0x26, 0xB2, 0x87, 0x60, 0x26, 0xDC, 0x87, 0x72, + 0x26, 0xF0, 0x26, 0x9A, 0x27, 0xD4, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, + 0x26, 0xA0, 0x26, 0xA6, 0x26, 0xA6, 0x26, 0xA6, 0x87, 0x6C, 0x87, 0x6C, + 0x26, 0xE6, 0x26, 0xAC, 0x27, 0x18, 0x26, 0xAC, 0x27, 0x18, 0x26, 0xB2, + 0x26, 0xE6, 0x26, 0xE6, 0x26, 0xE6, 0x26, 0xB8, 0x26, 0xB8, 0x00, 0x02, + 0x54, 0x98, 0x00, 0x04, 0x00, 0x00, 0x56, 0x22, 0x59, 0x8C, 0x00, 0x43, + 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x66, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x89, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFE, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x5C, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x58, 0xFF, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xF2, 0xFF, 0xC7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6A, 0xFF, 0x31, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x19, 0xFF, 0x2F, 0xFF, 0x5E, 0xFE, 0xF5, 0xFF, 0xD7, 0xFF, 0x49, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0xFF, 0x80, 0xFF, 0xD1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x90, 0xFF, 0x59, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x27, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x37, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x46, 0xFF, 0xB9, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8D, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x8C, 0xFF, 0x8C, 0xFF, 0x0C, 0x00, 0x00, 0x00, 0x00, + 0xFE, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x52, + 0x00, 0x00, 0xFF, 0x75, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC8, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xDE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x4E, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0xFF, 0xAF, + 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x34, 0x00, 0x00, 0xFF, 0x52, + 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCC, 0xFF, 0xD7, 0xFF, 0xB5, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, 0xFE, 0xE9, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x99, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x99, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, 0xFF, 0x98, + 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA0, 0xFF, 0xA5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x52, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xF5, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC0, 0xFF, 0xB7, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x85, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE3, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x23, 0x00, 0x00, 0xFE, 0xDE, + 0xFF, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2D, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0xFE, 0xDE, + 0xFF, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2C, 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBE, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0xFE, 0xDE, + 0xFF, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x1C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x89, 0x00, 0x00, 0xFF, 0x89, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0xFF, 0xE3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x62, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x81, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAA, 0xFF, 0xA5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x3A, 0x84, 0x00, 0x01, 0x00, 0x01, 0x0A, 0x95, + 0x00, 0x01, 0x00, 0x00, 0x3A, 0x80, 0x00, 0x01, 0x00, 0x01, 0x0B, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x0A, 0x96, 0x00, 0x01, 0x00, 0x00, 0x3A, 0x74, + 0x00, 0x01, 0x00, 0x02, 0x0A, 0x53, 0x0A, 0x55, 0x00, 0x02, 0x00, 0x00, + 0x3A, 0x6C, 0x00, 0x00, 0x3A, 0x72, 0x00, 0x01, 0x00, 0x07, 0x06, 0xE7, + 0x06, 0xED, 0x06, 0xEE, 0x07, 0xF7, 0x09, 0x0D, 0x0A, 0x9B, 0x0A, 0xB3, + 0x00, 0x01, 0x06, 0xE9, 0xFE, 0xE9, 0x00, 0x07, 0x00, 0x00, 0x3A, 0x62, + 0x00, 0x00, 0x3A, 0x56, 0x00, 0x00, 0x3A, 0x5C, 0x00, 0x00, 0x3A, 0x62, + 0x00, 0x00, 0x3A, 0x68, 0x00, 0x00, 0x3A, 0x6E, 0x00, 0x00, 0x3A, 0x74, + 0x00, 0x02, 0x00, 0x04, 0x06, 0xE8, 0x06, 0xEC, 0x00, 0x00, 0x08, 0xE0, + 0x08, 0xE1, 0x00, 0x05, 0x0A, 0x8B, 0x0A, 0x8F, 0x00, 0x07, 0x0B, 0x4A, + 0x0B, 0x4A, 0x00, 0x0C, 0x00, 0x0D, 0x3A, 0x40, 0x3A, 0x46, 0x3A, 0x4C, + 0x3A, 0x52, 0x3A, 0x58, 0x3A, 0x82, 0x3A, 0x5E, 0x3A, 0x7C, 0x3A, 0x64, + 0x3A, 0x6A, 0x3A, 0x6A, 0x3A, 0x70, 0x3A, 0x76, 0x00, 0x01, 0x00, 0x07, + 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x07, 0xF8, 0x08, 0xCB, 0x08, 0xCC, + 0x08, 0xCF, 0x00, 0x01, 0x00, 0x15, 0x06, 0xE8, 0x06, 0xE9, 0x06, 0xEA, + 0x06, 0xEB, 0x06, 0xEC, 0x08, 0xE0, 0x08, 0xE1, 0x0A, 0x8B, 0x0A, 0x8C, + 0x0A, 0x8D, 0x0A, 0x8E, 0x0A, 0x8F, 0x0A, 0x90, 0x0A, 0x91, 0x0A, 0xAB, + 0x0A, 0xB2, 0x0A, 0xB8, 0x0A, 0xDE, 0x0A, 0xF2, 0x0B, 0x4A, 0x0B, 0x54, + 0x00, 0x15, 0x00, 0x00, 0x3A, 0x2C, 0x00, 0x00, 0x3A, 0x32, 0x00, 0x00, + 0x3A, 0x7A, 0x00, 0x00, 0x3A, 0x74, 0x00, 0x00, 0x3A, 0x38, 0x00, 0x00, + 0x3A, 0x80, 0x00, 0x00, 0x3A, 0x3E, 0x00, 0x00, 0x3A, 0x80, 0x00, 0x00, + 0x3A, 0x3E, 0x00, 0x00, 0x3A, 0x44, 0x00, 0x00, 0x3A, 0x44, 0x00, 0x00, + 0x3A, 0x6E, 0x00, 0x00, 0x3A, 0x4A, 0x00, 0x00, 0x3A, 0x50, 0x00, 0x00, + 0x3A, 0x56, 0x00, 0x00, 0x3A, 0x5C, 0x00, 0x00, 0x3A, 0x74, 0x00, 0x00, + 0x3A, 0x62, 0x00, 0x00, 0x3A, 0x68, 0x00, 0x00, 0x3A, 0x6E, 0x00, 0x00, + 0x3A, 0x74, 0x00, 0x01, 0x06, 0xCE, 0x00, 0x15, 0x00, 0x01, 0x06, 0xCE, + 0xFF, 0x9E, 0x00, 0x01, 0x07, 0x55, 0xFF, 0x5F, 0x00, 0x01, 0x06, 0x91, + 0x00, 0x37, 0x00, 0x01, 0x06, 0x87, 0x00, 0x39, 0x00, 0x01, 0x05, 0xBB, + 0xFF, 0xD4, 0x00, 0x01, 0x06, 0x05, 0x00, 0x06, 0x00, 0x02, 0x00, 0x0F, + 0x00, 0x02, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x96, 0x00, 0x08, + 0x00, 0xA1, 0x00, 0xC5, 0x00, 0x94, 0x00, 0xC7, 0x00, 0xE9, 0x00, 0xB9, + 0x01, 0x0A, 0x01, 0x89, 0x00, 0xDC, 0x01, 0x8C, 0x01, 0xA3, 0x01, 0x5C, + 0x01, 0xA5, 0x01, 0xEE, 0x01, 0x74, 0x01, 0xF0, 0x01, 0xFA, 0x01, 0xBE, + 0x03, 0xF7, 0x03, 0xF9, 0x01, 0xC9, 0x04, 0x07, 0x04, 0x52, 0x01, 0xCC, + 0x05, 0x42, 0x05, 0x42, 0x02, 0x18, 0x08, 0xFE, 0x09, 0x04, 0x02, 0x19, + 0x09, 0x16, 0x09, 0x33, 0x02, 0x20, 0x09, 0x7B, 0x09, 0xA3, 0x02, 0x3E, + 0x09, 0xC8, 0x09, 0xCC, 0x02, 0x67, 0x00, 0x02, 0x05, 0xB0, 0xFF, 0x7F, + 0x05, 0xEA, 0xFF, 0xCC, 0x00, 0x02, 0x06, 0x47, 0xFF, 0xA4, 0x06, 0x4D, + 0xFF, 0xF4, 0x00, 0x03, 0x05, 0x3B, 0xFF, 0xD0, 0x05, 0x43, 0xFF, 0xD0, + 0x05, 0x47, 0xFF, 0xD0, 0x00, 0x03, 0x06, 0xB6, 0xFF, 0xDB, 0x06, 0xB7, + 0xFF, 0xDB, 0x06, 0xB8, 0xFF, 0xDB, 0x00, 0x03, 0x06, 0xA1, 0xFF, 0xDB, + 0x06, 0xA8, 0x00, 0x00, 0x06, 0xAD, 0xFF, 0xE4, 0x00, 0x04, 0x04, 0x09, + 0xFF, 0xCC, 0x07, 0x33, 0xFF, 0xCC, 0x07, 0x37, 0xFF, 0xCC, 0x07, 0x3A, + 0xFF, 0xCC, 0x00, 0x04, 0x05, 0x41, 0xFF, 0xED, 0x05, 0x46, 0xFF, 0xEA, + 0x05, 0x91, 0xFF, 0xEF, 0x06, 0xEF, 0xFF, 0xD6, 0x00, 0x05, 0x06, 0x87, + 0xFF, 0x5A, 0x06, 0xA8, 0xFF, 0xC6, 0x06, 0xB6, 0xFF, 0x9E, 0x06, 0xB7, + 0xFF, 0x9E, 0x06, 0xB8, 0xFF, 0x9E, 0x00, 0x07, 0x05, 0xDB, 0xFF, 0xC9, + 0x05, 0xDC, 0xFF, 0xC9, 0x05, 0xDD, 0xFF, 0xC9, 0x07, 0xF8, 0xFF, 0xC9, + 0x08, 0xCB, 0xFF, 0xC9, 0x08, 0xCC, 0xFF, 0xC9, 0x08, 0xCF, 0xFF, 0xC9, + 0x00, 0x0D, 0x05, 0x3C, 0xFF, 0xE1, 0x05, 0x48, 0xFF, 0xE1, 0x05, 0x90, + 0xFF, 0xE9, 0x05, 0xDB, 0xFF, 0xD1, 0x05, 0xDC, 0xFF, 0xD1, 0x05, 0xDD, + 0xFF, 0xD1, 0x06, 0x08, 0xFF, 0xDF, 0x06, 0x09, 0xFF, 0xDF, 0x06, 0x15, + 0xFF, 0xDF, 0x07, 0xF8, 0xFF, 0xD1, 0x08, 0xCB, 0xFF, 0xD1, 0x08, 0xCC, + 0xFF, 0xD1, 0x08, 0xCF, 0xFF, 0xD1, 0x00, 0x11, 0x01, 0x8A, 0x00, 0x0F, + 0x01, 0x8B, 0x00, 0x0F, 0x05, 0x25, 0x00, 0x0F, 0x05, 0x36, 0x00, 0x0F, + 0x05, 0x39, 0x00, 0x0F, 0x05, 0x3A, 0x00, 0x0F, 0x05, 0xAE, 0x00, 0x0F, + 0x05, 0xBB, 0x00, 0x23, 0x06, 0x1B, 0x00, 0x0F, 0x06, 0xFF, 0x00, 0x0F, + 0x07, 0x3D, 0x00, 0x0F, 0x07, 0x3E, 0x00, 0x0F, 0x07, 0x3F, 0x00, 0x0F, + 0x07, 0x40, 0x00, 0x0F, 0x07, 0x41, 0x00, 0x0F, 0x07, 0x5C, 0x00, 0x0F, + 0x0B, 0x48, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x27, 0x04, 0x09, 0x05, 0x22, + 0x05, 0x3C, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x4B, 0x05, 0xAE, + 0x05, 0xB0, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xE3, 0x05, 0xEB, + 0x06, 0x05, 0x06, 0x1A, 0x06, 0x4B, 0x06, 0x87, 0x06, 0xA1, 0x06, 0xA5, + 0x06, 0xAD, 0x06, 0xB6, 0x06, 0xB7, 0x06, 0xB8, 0x07, 0x33, 0x07, 0x37, + 0x07, 0x3A, 0x07, 0x3D, 0x07, 0x3E, 0x07, 0x3F, 0x07, 0x40, 0x07, 0x41, + 0x07, 0x5C, 0x07, 0xF8, 0x07, 0xFE, 0x08, 0xCB, 0x08, 0xCC, 0x08, 0xCF, + 0x0B, 0x48, 0x00, 0x01, 0x06, 0x05, 0xFF, 0xA3, 0x00, 0x01, 0x05, 0xB0, + 0xFF, 0xAF, 0x00, 0x01, 0x07, 0x55, 0xFF, 0x98, 0x00, 0x01, 0x06, 0x87, + 0xFF, 0xE3, 0x00, 0x01, 0x05, 0x24, 0xFF, 0xAF, 0x00, 0x01, 0x05, 0x24, + 0xFF, 0x98, 0x00, 0x01, 0x05, 0x8F, 0xFF, 0x80, 0x00, 0x01, 0x05, 0x8F, + 0xFF, 0xBB, 0x00, 0x01, 0x05, 0x24, 0xFF, 0xBB, 0x00, 0x02, 0x06, 0x0B, + 0xFF, 0xF5, 0x06, 0x0E, 0xFF, 0xF5, 0x00, 0x02, 0x05, 0xD0, 0xFE, 0xE9, + 0x05, 0xD1, 0xFE, 0x8C, 0x00, 0x02, 0x05, 0x24, 0xFF, 0xBB, 0x07, 0x55, + 0xFF, 0x8C, 0x00, 0x02, 0x05, 0x8F, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0x75, + 0x00, 0x02, 0x05, 0xD0, 0xFE, 0xE9, 0x05, 0xD1, 0xFE, 0xE9, 0x00, 0x03, + 0x06, 0x90, 0xFF, 0xBA, 0x06, 0x91, 0xFF, 0xF5, 0x06, 0x96, 0xFF, 0xF5, + 0x00, 0x06, 0x05, 0xB0, 0xFF, 0xBB, 0x05, 0xC8, 0xFF, 0xBB, 0x05, 0xCC, + 0xFF, 0xBB, 0x07, 0x55, 0xFF, 0x75, 0x07, 0xFB, 0xFF, 0xBB, 0x07, 0xFD, + 0xFF, 0xBB, 0x00, 0x06, 0x03, 0x95, 0xFF, 0xA3, 0x05, 0x8F, 0xFF, 0x75, + 0x05, 0xAB, 0xFF, 0x00, 0x05, 0xEA, 0xFF, 0x3B, 0x05, 0xF6, 0xFF, 0xA3, + 0x06, 0x05, 0xFF, 0xAF, 0x00, 0x07, 0x05, 0xC8, 0xFF, 0x98, 0x05, 0xCC, + 0xFF, 0x98, 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, 0x06, 0x05, + 0xFF, 0xBB, 0x07, 0xFB, 0xFF, 0x98, 0x07, 0xFD, 0xFF, 0x98, 0x00, 0x07, + 0x05, 0xCE, 0xFF, 0xA3, 0x05, 0xCF, 0xFF, 0xA3, 0x06, 0x05, 0xFF, 0xA3, + 0x08, 0x01, 0xFF, 0xA3, 0x08, 0x02, 0xFF, 0xA3, 0x09, 0x0E, 0xFF, 0xA3, + 0x09, 0x0F, 0xFF, 0xA3, 0x00, 0x07, 0x05, 0x41, 0xFF, 0xEC, 0x05, 0x46, + 0xFF, 0xEC, 0x05, 0x4A, 0xFF, 0x80, 0x05, 0x8F, 0xFF, 0xA3, 0x05, 0xAB, + 0xFF, 0x8C, 0x05, 0xEA, 0xFF, 0x46, 0x06, 0x05, 0xFE, 0xBB, 0x00, 0x08, + 0x05, 0x24, 0xFF, 0x69, 0x05, 0x44, 0xFF, 0x69, 0x05, 0xB0, 0xFF, 0x69, + 0x05, 0xC8, 0xFF, 0x3B, 0x05, 0xCC, 0xFF, 0x3B, 0x07, 0x55, 0xFF, 0x5E, + 0x07, 0xFB, 0xFF, 0x3B, 0x07, 0xFD, 0xFF, 0x3B, 0x00, 0x09, 0x05, 0xAD, + 0xFF, 0xAF, 0x05, 0xDB, 0xFF, 0x75, 0x05, 0xDC, 0xFF, 0x75, 0x05, 0xDD, + 0xFF, 0x75, 0x06, 0x05, 0xFF, 0x98, 0x07, 0xF8, 0xFF, 0x75, 0x08, 0xCB, + 0xFF, 0x75, 0x08, 0xCC, 0xFF, 0x75, 0x08, 0xCF, 0xFF, 0x75, 0x00, 0x09, + 0x05, 0xC8, 0xFF, 0x80, 0x05, 0xC9, 0xFF, 0x75, 0x05, 0xCC, 0xFF, 0x80, + 0x05, 0xCD, 0xFF, 0x75, 0x05, 0xD4, 0xFF, 0x75, 0x07, 0xFB, 0xFF, 0x80, + 0x07, 0xFC, 0xFF, 0x75, 0x07, 0xFD, 0xFF, 0x80, 0x07, 0xFE, 0xFF, 0x75, + 0x00, 0x0B, 0x05, 0x24, 0xFF, 0x98, 0x05, 0xC8, 0xFF, 0xA9, 0x05, 0xC9, + 0xFF, 0x8C, 0x05, 0xCC, 0xFF, 0xA9, 0x05, 0xCD, 0xFF, 0x8C, 0x05, 0xD4, + 0xFF, 0x8C, 0x07, 0x55, 0xFF, 0xAF, 0x07, 0xFB, 0xFF, 0xA9, 0x07, 0xFC, + 0xFF, 0x8C, 0x07, 0xFD, 0xFF, 0xA9, 0x07, 0xFE, 0xFF, 0x8C, 0x00, 0x10, + 0x05, 0xB0, 0xFF, 0x80, 0x05, 0xC8, 0xFF, 0x46, 0x05, 0xCA, 0xFF, 0xBB, + 0x05, 0xCB, 0xFF, 0xBB, 0x05, 0xCC, 0xFF, 0x46, 0x05, 0xE4, 0xFF, 0xBB, + 0x06, 0x06, 0xFF, 0xAF, 0x06, 0x07, 0xFF, 0xAF, 0x06, 0x0B, 0xFF, 0xD2, + 0x06, 0x0E, 0xFF, 0xD2, 0x06, 0x0F, 0xFF, 0xAF, 0x06, 0xAE, 0xFF, 0xA3, + 0x07, 0x55, 0xFF, 0x8C, 0x07, 0xFB, 0xFF, 0x46, 0x07, 0xFD, 0xFF, 0x46, + 0x08, 0xCA, 0xFF, 0xBB, 0x00, 0x20, 0x05, 0x24, 0xFF, 0x98, 0x05, 0x2D, + 0xFF, 0xAF, 0x05, 0x2E, 0xFF, 0xAF, 0x05, 0x2F, 0xFF, 0xAF, 0x05, 0x3B, + 0xFF, 0xA3, 0x05, 0x3C, 0xFF, 0x23, 0x05, 0x3F, 0xFF, 0xA3, 0x05, 0x40, + 0xFF, 0x8C, 0x05, 0x41, 0xFF, 0xA3, 0x05, 0x43, 0xFF, 0xA3, 0x05, 0x45, + 0xFF, 0xA3, 0x05, 0x46, 0xFF, 0xA3, 0x05, 0x47, 0xFF, 0xA3, 0x05, 0x48, + 0xFF, 0x23, 0x05, 0x49, 0xFF, 0xA3, 0x05, 0x4A, 0xFF, 0x8C, 0x05, 0x4C, + 0xFF, 0xA3, 0x05, 0xA3, 0xFF, 0xAF, 0x05, 0xB0, 0xFF, 0x5E, 0x05, 0xC8, + 0xFF, 0xAF, 0x05, 0xCC, 0xFF, 0xAF, 0x06, 0x08, 0xFF, 0x75, 0x06, 0x09, + 0xFF, 0x75, 0x06, 0x0C, 0xFF, 0xAF, 0x06, 0x15, 0xFF, 0x75, 0x06, 0x1A, + 0xFF, 0xA3, 0x06, 0x21, 0x00, 0xC5, 0x07, 0x3B, 0xFF, 0xAF, 0x07, 0x3C, + 0xFF, 0xAF, 0x07, 0x55, 0xFF, 0x8C, 0x07, 0xFB, 0xFF, 0xAF, 0x07, 0xFD, + 0xFF, 0xAF, 0x00, 0x01, 0x00, 0x5F, 0x03, 0x95, 0x04, 0x09, 0x05, 0x21, + 0x05, 0x25, 0x05, 0x2E, 0x05, 0x2F, 0x05, 0x3B, 0x05, 0x41, 0x05, 0x43, + 0x05, 0x44, 0x05, 0x46, 0x05, 0x47, 0x05, 0x4B, 0x05, 0x80, 0x05, 0x81, + 0x05, 0x82, 0x05, 0x83, 0x05, 0x86, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8B, + 0x05, 0x8F, 0x05, 0x93, 0x05, 0xA3, 0x05, 0xB0, 0x05, 0xB6, 0x05, 0xB7, + 0x05, 0xB8, 0x05, 0xB9, 0x05, 0xBB, 0x05, 0xC1, 0x05, 0xC2, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCA, 0x05, 0xCB, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xD4, + 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xE3, 0x05, 0xE4, 0x05, 0xEB, + 0x05, 0xEC, 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF2, 0x05, 0xF4, + 0x05, 0xF5, 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFF, + 0x06, 0x01, 0x06, 0x02, 0x06, 0x04, 0x06, 0x05, 0x06, 0x06, 0x06, 0x07, + 0x06, 0x08, 0x06, 0x09, 0x06, 0x0A, 0x06, 0x0B, 0x06, 0x0C, 0x06, 0x0E, + 0x06, 0x0F, 0x06, 0x15, 0x06, 0x1B, 0x06, 0x94, 0x06, 0xA6, 0x06, 0xCE, + 0x07, 0x09, 0x07, 0x0A, 0x07, 0x21, 0x07, 0x22, 0x07, 0x33, 0x07, 0x37, + 0x07, 0x3A, 0x07, 0x3B, 0x07, 0x3C, 0x07, 0xF8, 0x07, 0xFB, 0x07, 0xFC, + 0x07, 0xFD, 0x07, 0xFE, 0x08, 0xCA, 0x08, 0xCB, 0x08, 0xCC, 0x08, 0xCF, + 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x02, 0x00, 0x4A, 0x00, 0x49, 0x00, 0x53, + 0x00, 0x00, 0x00, 0x5F, 0x00, 0x88, 0x00, 0x0B, 0x00, 0xA1, 0x00, 0xAD, + 0x00, 0x35, 0x00, 0xAF, 0x00, 0xC4, 0x00, 0x42, 0x01, 0x76, 0x01, 0x76, + 0x00, 0x58, 0x01, 0x8D, 0x01, 0x99, 0x00, 0x59, 0x01, 0x9B, 0x01, 0xA2, + 0x00, 0x66, 0x01, 0xA5, 0x01, 0xA7, 0x00, 0x6E, 0x02, 0x4A, 0x02, 0x54, + 0x00, 0x71, 0x02, 0x66, 0x02, 0x85, 0x00, 0x7C, 0x02, 0x9E, 0x02, 0xA1, + 0x00, 0x9C, 0x02, 0xA5, 0x02, 0xA5, 0x00, 0xA0, 0x02, 0xA8, 0x02, 0xB0, + 0x00, 0xA1, 0x03, 0x48, 0x03, 0x48, 0x00, 0xAA, 0x03, 0x67, 0x03, 0x75, + 0x00, 0xAB, 0x03, 0x78, 0x03, 0x79, 0x00, 0xBA, 0x03, 0x7D, 0x03, 0x90, + 0x00, 0xBC, 0x04, 0x30, 0x04, 0x30, 0x00, 0xD0, 0x04, 0x52, 0x04, 0x52, + 0x00, 0xD1, 0x04, 0xEB, 0x04, 0xEB, 0x00, 0xD2, 0x05, 0x18, 0x05, 0x18, + 0x00, 0xD3, 0x05, 0x1B, 0x05, 0x1C, 0x00, 0xD4, 0x05, 0x25, 0x05, 0x25, + 0x00, 0xD6, 0x05, 0x2E, 0x05, 0x2F, 0x00, 0xD7, 0x05, 0x31, 0x05, 0x31, + 0x00, 0xD9, 0x05, 0x36, 0x05, 0x36, 0x00, 0xDA, 0x06, 0x27, 0x06, 0x27, + 0x00, 0xDB, 0x06, 0x29, 0x06, 0x29, 0x00, 0xDC, 0x06, 0x2C, 0x06, 0x2C, + 0x00, 0xDD, 0x06, 0x37, 0x06, 0x38, 0x00, 0xDE, 0x06, 0x58, 0x06, 0x58, + 0x00, 0xE0, 0x06, 0x5A, 0x06, 0x5A, 0x00, 0xE1, 0x06, 0x5D, 0x06, 0x5D, + 0x00, 0xE2, 0x06, 0x68, 0x06, 0x69, 0x00, 0xE3, 0x06, 0xD1, 0x06, 0xD5, + 0x00, 0xE5, 0x07, 0x00, 0x07, 0x00, 0x00, 0xEA, 0x07, 0x6F, 0x07, 0x6F, + 0x00, 0xEB, 0x07, 0x71, 0x07, 0x71, 0x00, 0xEC, 0x07, 0x74, 0x07, 0x74, + 0x00, 0xED, 0x07, 0x7F, 0x07, 0x80, 0x00, 0xEE, 0x07, 0xAC, 0x07, 0xAC, + 0x00, 0xF0, 0x07, 0xAE, 0x07, 0xAE, 0x00, 0xF1, 0x07, 0xB2, 0x07, 0xB2, + 0x00, 0xF2, 0x07, 0xBD, 0x07, 0xBE, 0x00, 0xF3, 0x07, 0xEE, 0x07, 0xEE, + 0x00, 0xF5, 0x07, 0xF4, 0x07, 0xF6, 0x00, 0xF6, 0x08, 0x0B, 0x08, 0x0B, + 0x00, 0xF9, 0x08, 0x0E, 0x08, 0x11, 0x00, 0xFA, 0x08, 0x14, 0x08, 0x16, + 0x00, 0xFE, 0x08, 0x2D, 0x08, 0x32, 0x01, 0x01, 0x08, 0x54, 0x08, 0x54, + 0x01, 0x07, 0x08, 0x57, 0x08, 0x5A, 0x01, 0x08, 0x08, 0x5D, 0x08, 0x5F, + 0x01, 0x0C, 0x08, 0x7A, 0x08, 0x81, 0x01, 0x0F, 0x08, 0xA1, 0x08, 0xA3, + 0x01, 0x17, 0x08, 0xAD, 0x08, 0xAD, 0x01, 0x1A, 0x08, 0xB1, 0x08, 0xB1, + 0x01, 0x1B, 0x08, 0xB9, 0x08, 0xB9, 0x01, 0x1C, 0x08, 0xBB, 0x08, 0xBB, + 0x01, 0x1D, 0x09, 0x04, 0x09, 0x04, 0x01, 0x1E, 0x09, 0x0A, 0x09, 0x0C, + 0x01, 0x1F, 0x09, 0x27, 0x09, 0x27, 0x01, 0x22, 0x09, 0x3E, 0x09, 0x3E, + 0x01, 0x23, 0x09, 0x82, 0x09, 0x83, 0x01, 0x24, 0x09, 0x91, 0x09, 0x93, + 0x01, 0x26, 0x09, 0x9D, 0x09, 0x9D, 0x01, 0x29, 0x09, 0xB3, 0x09, 0xB4, + 0x01, 0x2A, 0x09, 0xB8, 0x09, 0xB8, 0x01, 0x2C, 0x09, 0xBB, 0x09, 0xBC, + 0x01, 0x2D, 0x09, 0xBE, 0x09, 0xBE, 0x01, 0x2F, 0x09, 0xCA, 0x09, 0xCC, + 0x01, 0x30, 0x09, 0xD0, 0x09, 0xD2, 0x01, 0x33, 0x09, 0xF4, 0x09, 0xF4, + 0x01, 0x36, 0x0A, 0x04, 0x0A, 0x04, 0x01, 0x37, 0x01, 0x38, 0x34, 0x5A, + 0x34, 0x5A, 0x34, 0x5A, 0x34, 0x5A, 0x34, 0x5A, 0x34, 0x5A, 0x34, 0x5A, + 0x34, 0x5A, 0x34, 0x5A, 0x33, 0x5E, 0x34, 0x5A, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x33, 0x64, 0x34, 0x24, 0x33, 0x88, 0x34, 0x66, 0x33, 0x6A, + 0x33, 0x70, 0x33, 0x76, 0x34, 0x60, 0x33, 0x7C, 0x33, 0x82, 0x33, 0x88, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0xEA, 0x34, 0xEA, + 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, + 0x33, 0x8E, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, + 0x34, 0x84, 0x34, 0x72, 0x34, 0xD2, 0x33, 0x94, 0x34, 0x78, 0x34, 0x7E, + 0x33, 0x9A, 0x34, 0x96, 0x33, 0xA0, 0x34, 0xE4, 0x34, 0x84, 0x34, 0xEA, + 0x34, 0x72, 0x34, 0xD2, 0x33, 0x94, 0x34, 0x78, 0x34, 0x7E, 0x33, 0x9A, + 0x34, 0x96, 0x33, 0xA0, 0x34, 0xEA, 0x33, 0xA6, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x33, 0xAC, 0x34, 0x42, + 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, + 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, 0x34, 0x42, 0x34, 0xF6, 0x34, 0xF6, + 0x34, 0xF6, 0x34, 0xF6, 0x34, 0xF6, 0x34, 0xF6, 0x34, 0xF6, 0x34, 0xF6, + 0x34, 0xF6, 0x34, 0xF6, 0x34, 0xF6, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, + 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, + 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, + 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, + 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, + 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0x8A, 0x34, 0xF0, + 0x34, 0xF0, 0x34, 0xF0, 0x34, 0xF0, 0x33, 0xB2, 0x34, 0xF0, 0x34, 0xF0, + 0x34, 0xF0, 0x34, 0xF0, 0x34, 0xF0, 0x34, 0xF0, 0x34, 0xF0, 0x34, 0xF0, + 0x34, 0xF0, 0x34, 0x6C, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, + 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, + 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x33, 0xB8, 0x34, 0x36, + 0x34, 0x36, 0x33, 0xBE, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, + 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x3C, + 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, + 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x42, 0x34, 0x42, 0x34, 0x4E, + 0x34, 0x48, 0x34, 0x2A, 0x34, 0x90, 0x33, 0xC4, 0x34, 0x5A, 0x34, 0x5A, + 0x34, 0x42, 0x33, 0xCA, 0x34, 0x9C, 0x33, 0xD0, 0x34, 0xA2, 0x34, 0xA8, + 0x33, 0xD6, 0x34, 0xAE, 0x33, 0xDC, 0x34, 0xB4, 0x34, 0xBA, 0x33, 0xE2, + 0x33, 0xE8, 0x33, 0xEE, 0x33, 0xEE, 0x33, 0xF4, 0x33, 0xFA, 0x34, 0x00, + 0x34, 0x06, 0x34, 0x0C, 0x34, 0x12, 0x34, 0xC6, 0x34, 0xC6, 0x34, 0x18, + 0x34, 0xC0, 0x34, 0x1E, 0x34, 0xCC, 0x34, 0xCC, 0x34, 0x2A, 0x34, 0x30, + 0x34, 0x36, 0x34, 0x3C, 0x34, 0x5A, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0xEA, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x42, 0x34, 0x42, 0x34, 0xF6, 0x34, 0xDE, + 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xDE, 0x34, 0xF0, 0x34, 0xF0, 0x34, 0xF0, + 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x36, + 0x34, 0x36, 0x34, 0x36, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x24, + 0x34, 0x42, 0x34, 0x8A, 0x34, 0x4E, 0x34, 0x2A, 0x34, 0x30, 0x34, 0x36, + 0x34, 0x3C, 0x34, 0x42, 0x34, 0x8A, 0x34, 0x5A, 0x34, 0x42, 0x34, 0x42, + 0x34, 0x5A, 0x34, 0x42, 0x34, 0x42, 0x34, 0x4E, 0x34, 0xF6, 0x34, 0x48, + 0x34, 0x8A, 0x34, 0x8A, 0x34, 0x4E, 0x34, 0x54, 0x34, 0x5A, 0x34, 0x54, + 0x34, 0xD8, 0x34, 0xF6, 0x34, 0xD8, 0x34, 0x5A, 0x34, 0xF6, 0x00, 0x02, + 0x00, 0x69, 0x00, 0x02, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x5F, 0x00, 0x88, + 0x00, 0x3A, 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x64, 0x00, 0xC7, 0x00, 0xD7, + 0x00, 0x65, 0x00, 0xD9, 0x01, 0x09, 0x00, 0x76, 0x01, 0x41, 0x01, 0x76, + 0x00, 0xA7, 0x01, 0x7E, 0x01, 0x7E, 0x00, 0xDD, 0x01, 0xA8, 0x01, 0xC7, + 0x00, 0xDE, 0x01, 0xD8, 0x01, 0xD8, 0x00, 0xFE, 0x01, 0xDA, 0x01, 0xEF, + 0x00, 0xFF, 0x01, 0xFB, 0x02, 0x1E, 0x01, 0x15, 0x02, 0x23, 0x02, 0x41, + 0x01, 0x39, 0x02, 0x58, 0x02, 0x58, 0x01, 0x58, 0x02, 0x66, 0x02, 0x85, + 0x01, 0x59, 0x02, 0xB1, 0x02, 0xB2, 0x01, 0x79, 0x02, 0xB4, 0x02, 0xC6, + 0x01, 0x7B, 0x02, 0xCB, 0x02, 0xCE, 0x01, 0x8E, 0x02, 0xD0, 0x02, 0xD1, + 0x01, 0x92, 0x03, 0x16, 0x03, 0x47, 0x01, 0x94, 0x03, 0x53, 0x03, 0x53, + 0x01, 0xC6, 0x03, 0x91, 0x03, 0x94, 0x01, 0xC7, 0x03, 0x96, 0x03, 0xD1, + 0x01, 0xCB, 0x03, 0xE4, 0x03, 0xF6, 0x02, 0x07, 0x03, 0xFA, 0x03, 0xFA, + 0x02, 0x1A, 0x04, 0x0A, 0x04, 0x0A, 0x02, 0x1B, 0x04, 0x35, 0x04, 0x35, + 0x02, 0x1C, 0x04, 0x43, 0x04, 0x43, 0x02, 0x1D, 0x04, 0xB5, 0x04, 0xC6, + 0x02, 0x1E, 0x05, 0x0B, 0x05, 0x0B, 0x02, 0x30, 0x05, 0x11, 0x05, 0x11, + 0x02, 0x31, 0x05, 0x18, 0x05, 0x18, 0x02, 0x32, 0x06, 0x16, 0x06, 0x17, + 0x02, 0x33, 0x06, 0x25, 0x06, 0x25, 0x02, 0x35, 0x06, 0x29, 0x06, 0x29, + 0x02, 0x36, 0x06, 0x2D, 0x06, 0x2D, 0x02, 0x37, 0x06, 0x33, 0x06, 0x33, + 0x02, 0x38, 0x06, 0x39, 0x06, 0x39, 0x02, 0x39, 0x06, 0x3D, 0x06, 0x3D, + 0x02, 0x3A, 0x06, 0x56, 0x06, 0x56, 0x02, 0x3B, 0x06, 0x5A, 0x06, 0x5A, + 0x02, 0x3C, 0x06, 0x5E, 0x06, 0x5E, 0x02, 0x3D, 0x06, 0x64, 0x06, 0x64, + 0x02, 0x3E, 0x06, 0x6A, 0x06, 0x6A, 0x02, 0x3F, 0x06, 0x6E, 0x06, 0x6E, + 0x02, 0x40, 0x06, 0xD1, 0x06, 0xD5, 0x02, 0x41, 0x07, 0x03, 0x07, 0x04, + 0x02, 0x46, 0x07, 0x54, 0x07, 0x54, 0x02, 0x48, 0x07, 0x6D, 0x07, 0x6D, + 0x02, 0x49, 0x07, 0x71, 0x07, 0x71, 0x02, 0x4A, 0x07, 0x75, 0x07, 0x75, + 0x02, 0x4B, 0x07, 0x7B, 0x07, 0x7B, 0x02, 0x4C, 0x07, 0x7D, 0x07, 0x7D, + 0x02, 0x4D, 0x07, 0x81, 0x07, 0x81, 0x02, 0x4E, 0x07, 0x85, 0x07, 0x85, + 0x02, 0x4F, 0x07, 0xAA, 0x07, 0xAA, 0x02, 0x50, 0x07, 0xAE, 0x07, 0xAE, + 0x02, 0x51, 0x07, 0xB3, 0x07, 0xB3, 0x02, 0x52, 0x07, 0xB9, 0x07, 0xB9, + 0x02, 0x53, 0x07, 0xBB, 0x07, 0xBB, 0x02, 0x54, 0x07, 0xBF, 0x07, 0xBF, + 0x02, 0x55, 0x07, 0xC3, 0x07, 0xC3, 0x02, 0x56, 0x08, 0x03, 0x08, 0x08, + 0x02, 0x57, 0x08, 0x0E, 0x08, 0x11, 0x02, 0x5D, 0x08, 0x17, 0x08, 0x1A, + 0x02, 0x61, 0x08, 0x22, 0x08, 0x28, 0x02, 0x65, 0x08, 0x33, 0x08, 0x3B, + 0x02, 0x6C, 0x08, 0x42, 0x08, 0x44, 0x02, 0x75, 0x08, 0x48, 0x08, 0x51, + 0x02, 0x78, 0x08, 0x57, 0x08, 0x5A, 0x02, 0x82, 0x08, 0x60, 0x08, 0x64, + 0x02, 0x86, 0x08, 0x6F, 0x08, 0x75, 0x02, 0x8B, 0x08, 0x82, 0x08, 0x8A, + 0x02, 0x92, 0x08, 0x91, 0x08, 0x93, 0x02, 0x9B, 0x08, 0x96, 0x08, 0x9C, + 0x02, 0x9E, 0x08, 0xA4, 0x08, 0xAE, 0x02, 0xA5, 0x08, 0xB3, 0x08, 0xB3, + 0x02, 0xB0, 0x08, 0xB7, 0x08, 0xB9, 0x02, 0xB1, 0x08, 0xBD, 0x08, 0xBD, + 0x02, 0xB4, 0x08, 0xC0, 0x08, 0xC0, 0x02, 0xB5, 0x08, 0xC3, 0x08, 0xC4, + 0x02, 0xB6, 0x08, 0xC7, 0x08, 0xC9, 0x02, 0xB8, 0x08, 0xE9, 0x08, 0xE9, + 0x02, 0xBB, 0x09, 0x22, 0x09, 0x22, 0x02, 0xBC, 0x09, 0x35, 0x09, 0x36, + 0x02, 0xBD, 0x09, 0x3E, 0x09, 0x3E, 0x02, 0xBF, 0x09, 0x6D, 0x09, 0x6D, + 0x02, 0xC0, 0x09, 0x94, 0x09, 0x95, 0x02, 0xC1, 0x09, 0x97, 0x09, 0x97, + 0x02, 0xC3, 0x09, 0xA0, 0x09, 0xA0, 0x02, 0xC4, 0x09, 0xB8, 0x09, 0xB8, + 0x02, 0xC5, 0x09, 0xBB, 0x09, 0xBC, 0x02, 0xC6, 0x09, 0xC1, 0x09, 0xC2, + 0x02, 0xC8, 0x09, 0xC5, 0x09, 0xC5, 0x02, 0xCA, 0x09, 0xE0, 0x09, 0xE2, + 0x02, 0xCB, 0x09, 0xE7, 0x09, 0xE7, 0x02, 0xCE, 0x09, 0xEA, 0x09, 0xEA, + 0x02, 0xCF, 0x09, 0xEC, 0x09, 0xEC, 0x02, 0xD0, 0x09, 0xEF, 0x09, 0xEF, + 0x02, 0xD1, 0x09, 0xF1, 0x09, 0xF1, 0x02, 0xD2, 0x09, 0xF7, 0x09, 0xF7, + 0x02, 0xD3, 0x09, 0xFA, 0x09, 0xFA, 0x02, 0xD4, 0x09, 0xFC, 0x09, 0xFC, + 0x02, 0xD5, 0x09, 0xFF, 0x09, 0xFF, 0x02, 0xD6, 0x0A, 0x01, 0x0A, 0x01, + 0x02, 0xD7, 0x0B, 0x43, 0x0B, 0x43, 0x02, 0xD8, 0x00, 0x02, 0x00, 0x85, + 0x00, 0x02, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x41, 0x00, 0x48, 0x00, 0x3B, + 0x00, 0x54, 0x00, 0x5C, 0x00, 0x43, 0x00, 0x5F, 0x00, 0xAD, 0x00, 0x4C, + 0x00, 0xAF, 0x00, 0xC5, 0x00, 0x9B, 0x00, 0xC7, 0x01, 0x09, 0x00, 0xB2, + 0x01, 0x0F, 0x01, 0x14, 0x00, 0xF5, 0x01, 0x18, 0x01, 0x76, 0x00, 0xFB, + 0x01, 0x7E, 0x01, 0x7E, 0x01, 0x5A, 0x01, 0x80, 0x01, 0x8A, 0x01, 0x5B, + 0x01, 0x8C, 0x01, 0x99, 0x01, 0x66, 0x01, 0x9B, 0x01, 0xA2, 0x01, 0x74, + 0x01, 0xA5, 0x01, 0xD8, 0x01, 0x7C, 0x01, 0xDA, 0x01, 0xF9, 0x01, 0xB0, + 0x01, 0xFB, 0x02, 0x1E, 0x01, 0xD0, 0x02, 0x23, 0x02, 0x48, 0x01, 0xF4, + 0x02, 0x4A, 0x02, 0x54, 0x02, 0x1A, 0x02, 0x58, 0x02, 0x58, 0x02, 0x25, + 0x02, 0x61, 0x02, 0x61, 0x02, 0x26, 0x02, 0x63, 0x02, 0x63, 0x02, 0x27, + 0x02, 0x66, 0x02, 0x85, 0x02, 0x28, 0x02, 0x87, 0x02, 0x8B, 0x02, 0x48, + 0x02, 0x8D, 0x02, 0x90, 0x02, 0x4D, 0x02, 0x92, 0x02, 0xA3, 0x02, 0x51, + 0x02, 0xA5, 0x02, 0xA5, 0x02, 0x63, 0x02, 0xA8, 0x02, 0xB2, 0x02, 0x64, + 0x02, 0xB4, 0x02, 0xC7, 0x02, 0x6F, 0x02, 0xCB, 0x02, 0xCE, 0x02, 0x83, + 0x02, 0xD0, 0x02, 0xD1, 0x02, 0x87, 0x02, 0xD6, 0x02, 0xE4, 0x02, 0x89, + 0x02, 0xE6, 0x02, 0xFC, 0x02, 0x98, 0x02, 0xFE, 0x03, 0x47, 0x02, 0xAF, + 0x03, 0x4B, 0x03, 0x58, 0x02, 0xF9, 0x03, 0x5B, 0x03, 0x64, 0x03, 0x07, + 0x03, 0x67, 0x03, 0x75, 0x03, 0x11, 0x03, 0x78, 0x03, 0x79, 0x03, 0x20, + 0x03, 0x7D, 0x03, 0x94, 0x03, 0x22, 0x03, 0x96, 0x03, 0xE2, 0x03, 0x3A, + 0x03, 0xE4, 0x03, 0xF6, 0x03, 0x87, 0x03, 0xFA, 0x03, 0xFA, 0x03, 0x9A, + 0x03, 0xFC, 0x03, 0xFD, 0x03, 0x9B, 0x04, 0x00, 0x04, 0x06, 0x03, 0x9D, + 0x04, 0x0A, 0x04, 0x0A, 0x03, 0xA4, 0x04, 0x10, 0x04, 0x24, 0x03, 0xA5, + 0x04, 0x34, 0x04, 0x35, 0x03, 0xBA, 0x04, 0x3F, 0x04, 0x3F, 0x03, 0xBC, + 0x04, 0x43, 0x04, 0x43, 0x03, 0xBD, 0x04, 0x47, 0x04, 0x47, 0x03, 0xBE, + 0x04, 0x49, 0x04, 0x49, 0x03, 0xBF, 0x04, 0x4C, 0x04, 0x4C, 0x03, 0xC0, + 0x04, 0x4F, 0x04, 0x4F, 0x03, 0xC1, 0x04, 0x52, 0x04, 0x52, 0x03, 0xC2, + 0x04, 0x54, 0x04, 0x6D, 0x03, 0xC3, 0x04, 0x80, 0x04, 0x97, 0x03, 0xDD, + 0x04, 0xB5, 0x04, 0xC6, 0x03, 0xF5, 0x04, 0xCA, 0x04, 0xE1, 0x04, 0x07, + 0x04, 0xF3, 0x04, 0xFC, 0x04, 0x1F, 0x05, 0x01, 0x05, 0x01, 0x04, 0x29, + 0x05, 0x0B, 0x05, 0x0B, 0x04, 0x2A, 0x05, 0x0E, 0x05, 0x0E, 0x04, 0x2B, + 0x05, 0x11, 0x05, 0x11, 0x04, 0x2C, 0x05, 0x18, 0x05, 0x18, 0x04, 0x2D, + 0x05, 0x1B, 0x05, 0x1C, 0x04, 0x2E, 0x05, 0x25, 0x05, 0x25, 0x04, 0x30, + 0x05, 0x2A, 0x05, 0x2A, 0x04, 0x31, 0x05, 0x2C, 0x05, 0x2D, 0x04, 0x32, + 0x05, 0x31, 0x05, 0x31, 0x04, 0x34, 0x05, 0x38, 0x05, 0x3A, 0x04, 0x35, + 0x06, 0x16, 0x06, 0x17, 0x04, 0x38, 0x06, 0x25, 0x06, 0x3E, 0x04, 0x3A, + 0x06, 0x56, 0x06, 0x5E, 0x04, 0x54, 0x06, 0x60, 0x06, 0x6F, 0x04, 0x5D, + 0x07, 0x01, 0x07, 0x04, 0x04, 0x6D, 0x07, 0x54, 0x07, 0x54, 0x04, 0x71, + 0x07, 0x6D, 0x07, 0x6E, 0x04, 0x72, 0x07, 0x70, 0x07, 0x75, 0x04, 0x74, + 0x07, 0x77, 0x07, 0x7B, 0x04, 0x7A, 0x07, 0x7D, 0x07, 0x86, 0x04, 0x7F, + 0x07, 0xAA, 0x07, 0xAB, 0x04, 0x89, 0x07, 0xAD, 0x07, 0xB3, 0x04, 0x8B, + 0x07, 0xB5, 0x07, 0xB9, 0x04, 0x92, 0x07, 0xBB, 0x07, 0xC4, 0x04, 0x97, + 0x07, 0xE8, 0x07, 0xF6, 0x04, 0xA1, 0x08, 0x03, 0x08, 0x0A, 0x04, 0xB0, + 0x08, 0x0C, 0x08, 0x28, 0x04, 0xB8, 0x08, 0x2A, 0x08, 0x54, 0x04, 0xD5, + 0x08, 0x57, 0x08, 0x64, 0x05, 0x00, 0x08, 0x67, 0x08, 0xAF, 0x05, 0x0E, + 0x08, 0xB2, 0x08, 0xB4, 0x05, 0x57, 0x08, 0xB7, 0x08, 0xB9, 0x05, 0x5A, + 0x08, 0xBD, 0x08, 0xBD, 0x05, 0x5D, 0x08, 0xC0, 0x08, 0xC0, 0x05, 0x5E, + 0x08, 0xC3, 0x08, 0xC4, 0x05, 0x5F, 0x08, 0xC7, 0x08, 0xC9, 0x05, 0x61, + 0x08, 0xE9, 0x08, 0xEA, 0x05, 0x64, 0x08, 0xFE, 0x09, 0x0C, 0x05, 0x66, + 0x09, 0x18, 0x09, 0x18, 0x05, 0x75, 0x09, 0x1A, 0x09, 0x1A, 0x05, 0x76, + 0x09, 0x22, 0x09, 0x25, 0x05, 0x77, 0x09, 0x27, 0x09, 0x27, 0x05, 0x7B, + 0x09, 0x35, 0x09, 0x36, 0x05, 0x7C, 0x09, 0x3E, 0x09, 0x3E, 0x05, 0x7E, + 0x09, 0x47, 0x09, 0x47, 0x05, 0x7F, 0x09, 0x59, 0x09, 0x59, 0x05, 0x80, + 0x09, 0x6D, 0x09, 0x6F, 0x05, 0x81, 0x09, 0x83, 0x09, 0x83, 0x05, 0x84, + 0x09, 0x85, 0x09, 0x85, 0x05, 0x85, 0x09, 0x93, 0x09, 0x95, 0x05, 0x86, + 0x09, 0x97, 0x09, 0x97, 0x05, 0x89, 0x09, 0x99, 0x09, 0x99, 0x05, 0x8A, + 0x09, 0x9B, 0x09, 0x9B, 0x05, 0x8B, 0x09, 0x9E, 0x09, 0x9E, 0x05, 0x8C, + 0x09, 0xA0, 0x09, 0xA2, 0x05, 0x8D, 0x09, 0xB4, 0x09, 0xB4, 0x05, 0x90, + 0x09, 0xB8, 0x09, 0xB8, 0x05, 0x91, 0x09, 0xBB, 0x09, 0xBC, 0x05, 0x92, + 0x09, 0xC1, 0x09, 0xC2, 0x05, 0x94, 0x09, 0xC5, 0x09, 0xC6, 0x05, 0x96, + 0x09, 0xCF, 0x09, 0xD2, 0x05, 0x98, 0x09, 0xD7, 0x09, 0xD7, 0x05, 0x9C, + 0x09, 0xDB, 0x09, 0xDB, 0x05, 0x9D, 0x09, 0xDD, 0x09, 0xDD, 0x05, 0x9E, + 0x09, 0xE0, 0x09, 0xE3, 0x05, 0x9F, 0x09, 0xE7, 0x09, 0xE7, 0x05, 0xA3, + 0x09, 0xEB, 0x09, 0xEB, 0x05, 0xA4, 0x09, 0xF0, 0x09, 0xF0, 0x05, 0xA5, + 0x09, 0xF3, 0x09, 0xF3, 0x05, 0xA6, 0x09, 0xF5, 0x09, 0xF7, 0x05, 0xA7, + 0x09, 0xFB, 0x09, 0xFB, 0x05, 0xAA, 0x0A, 0x00, 0x0A, 0x00, 0x05, 0xAB, + 0x0A, 0x03, 0x0A, 0x04, 0x05, 0xAC, 0x0A, 0x06, 0x0A, 0x06, 0x05, 0xAE, + 0x0B, 0x43, 0x0B, 0x43, 0x05, 0xAF, 0x00, 0x02, 0x00, 0x91, 0x00, 0x02, + 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5F, 0x00, 0xAD, 0x00, 0x5B, 0x00, 0xAF, + 0x01, 0x16, 0x00, 0xAA, 0x01, 0x18, 0x01, 0x7E, 0x01, 0x12, 0x01, 0x80, + 0x01, 0x8A, 0x01, 0x79, 0x01, 0x8C, 0x01, 0x99, 0x01, 0x84, 0x01, 0x9B, + 0x01, 0xD8, 0x01, 0x92, 0x01, 0xDA, 0x01, 0xF9, 0x01, 0xD0, 0x01, 0xFB, + 0x02, 0x48, 0x01, 0xF0, 0x02, 0x4A, 0x02, 0x60, 0x02, 0x3E, 0x02, 0x62, + 0x02, 0x62, 0x02, 0x55, 0x02, 0x64, 0x02, 0x85, 0x02, 0x56, 0x02, 0x87, + 0x02, 0x8B, 0x02, 0x78, 0x02, 0x8D, 0x02, 0x90, 0x02, 0x7D, 0x02, 0x92, + 0x02, 0xA3, 0x02, 0x81, 0x02, 0xA5, 0x02, 0xA5, 0x02, 0x93, 0x02, 0xA8, + 0x02, 0xC7, 0x02, 0x94, 0x02, 0xCB, 0x02, 0xCE, 0x02, 0xB4, 0x02, 0xD0, + 0x02, 0xD1, 0x02, 0xB8, 0x02, 0xD6, 0x02, 0xE4, 0x02, 0xBA, 0x02, 0xE6, + 0x02, 0xFC, 0x02, 0xC9, 0x02, 0xFE, 0x03, 0x47, 0x02, 0xE0, 0x03, 0x4B, + 0x03, 0x58, 0x03, 0x2A, 0x03, 0x5B, 0x03, 0x64, 0x03, 0x38, 0x03, 0x67, + 0x03, 0x75, 0x03, 0x42, 0x03, 0x78, 0x03, 0x79, 0x03, 0x51, 0x03, 0x7D, + 0x03, 0x94, 0x03, 0x53, 0x03, 0x96, 0x03, 0xE2, 0x03, 0x6B, 0x03, 0xE4, + 0x03, 0xFA, 0x03, 0xB8, 0x03, 0xFC, 0x03, 0xFD, 0x03, 0xCF, 0x04, 0x00, + 0x04, 0x06, 0x03, 0xD1, 0x04, 0x08, 0x04, 0x08, 0x03, 0xD8, 0x04, 0x0A, + 0x04, 0x0A, 0x03, 0xD9, 0x04, 0x10, 0x04, 0x24, 0x03, 0xDA, 0x04, 0x26, + 0x04, 0x28, 0x03, 0xEF, 0x04, 0x2B, 0x04, 0x2C, 0x03, 0xF2, 0x04, 0x2E, + 0x04, 0x31, 0x03, 0xF4, 0x04, 0x34, 0x04, 0x37, 0x03, 0xF8, 0x04, 0x39, + 0x04, 0x41, 0x03, 0xFC, 0x04, 0x43, 0x04, 0x43, 0x04, 0x05, 0x04, 0x47, + 0x04, 0x47, 0x04, 0x06, 0x04, 0x49, 0x04, 0x4A, 0x04, 0x07, 0x04, 0x4C, + 0x04, 0x4C, 0x04, 0x09, 0x04, 0x4F, 0x04, 0x52, 0x04, 0x0A, 0x04, 0x54, + 0x04, 0x6D, 0x04, 0x0E, 0x04, 0x71, 0x04, 0x72, 0x04, 0x28, 0x04, 0x74, + 0x04, 0x75, 0x04, 0x2A, 0x04, 0x77, 0x04, 0x7E, 0x04, 0x2C, 0x04, 0x80, + 0x04, 0x97, 0x04, 0x34, 0x04, 0x99, 0x04, 0xAA, 0x04, 0x4C, 0x04, 0xAE, + 0x04, 0xB1, 0x04, 0x5E, 0x04, 0xB5, 0x04, 0xC6, 0x04, 0x62, 0x04, 0xCA, + 0x04, 0xE1, 0x04, 0x74, 0x04, 0xE5, 0x04, 0xE7, 0x04, 0x8C, 0x04, 0xE9, + 0x04, 0xEE, 0x04, 0x8F, 0x04, 0xF0, 0x04, 0xF0, 0x04, 0x95, 0x04, 0xF2, + 0x04, 0xFC, 0x04, 0x96, 0x04, 0xFE, 0x04, 0xFE, 0x04, 0xA1, 0x05, 0x01, + 0x05, 0x01, 0x04, 0xA2, 0x05, 0x04, 0x05, 0x08, 0x04, 0xA3, 0x05, 0x0B, + 0x05, 0x0B, 0x04, 0xA8, 0x05, 0x0E, 0x05, 0x0E, 0x04, 0xA9, 0x05, 0x10, + 0x05, 0x11, 0x04, 0xAA, 0x05, 0x13, 0x05, 0x13, 0x04, 0xAC, 0x05, 0x15, + 0x05, 0x15, 0x04, 0xAD, 0x05, 0x18, 0x05, 0x1C, 0x04, 0xAE, 0x05, 0x2A, + 0x05, 0x2A, 0x04, 0xB3, 0x05, 0x2C, 0x05, 0x2F, 0x04, 0xB4, 0x05, 0x31, + 0x05, 0x31, 0x04, 0xB8, 0x05, 0x38, 0x05, 0x3B, 0x04, 0xB9, 0x05, 0x3D, + 0x05, 0x3F, 0x04, 0xBD, 0x05, 0x47, 0x05, 0x47, 0x04, 0xC0, 0x05, 0x49, + 0x05, 0x49, 0x04, 0xC1, 0x05, 0x4D, 0x05, 0x4D, 0x04, 0xC2, 0x05, 0x4F, + 0x05, 0x50, 0x04, 0xC3, 0x05, 0x57, 0x05, 0x57, 0x04, 0xC5, 0x05, 0x59, + 0x05, 0x59, 0x04, 0xC6, 0x06, 0x16, 0x06, 0x17, 0x04, 0xC7, 0x06, 0x25, + 0x06, 0x40, 0x04, 0xC9, 0x06, 0x43, 0x06, 0x45, 0x04, 0xE5, 0x06, 0x56, + 0x06, 0x5E, 0x04, 0xE8, 0x06, 0x60, 0x06, 0x71, 0x04, 0xF1, 0x06, 0x74, + 0x06, 0x76, 0x05, 0x03, 0x06, 0x88, 0x06, 0x89, 0x05, 0x06, 0x06, 0x8C, + 0x06, 0x8E, 0x05, 0x08, 0x06, 0xA1, 0x06, 0xA2, 0x05, 0x0B, 0x06, 0xA5, + 0x06, 0xA7, 0x05, 0x0D, 0x06, 0xBB, 0x06, 0xBB, 0x05, 0x10, 0x06, 0xBD, + 0x06, 0xBD, 0x05, 0x11, 0x06, 0xC0, 0x06, 0xC0, 0x05, 0x12, 0x06, 0xC2, + 0x06, 0xC3, 0x05, 0x13, 0x06, 0xC9, 0x06, 0xC9, 0x05, 0x15, 0x06, 0xCD, + 0x06, 0xCD, 0x05, 0x16, 0x06, 0xDB, 0x06, 0xDB, 0x05, 0x17, 0x07, 0x00, + 0x07, 0x04, 0x05, 0x18, 0x07, 0x54, 0x07, 0x54, 0x05, 0x1D, 0x07, 0x6D, + 0x07, 0x87, 0x05, 0x1E, 0x07, 0x89, 0x07, 0x8A, 0x05, 0x39, 0x07, 0x91, + 0x07, 0x91, 0x05, 0x3B, 0x07, 0x93, 0x07, 0x93, 0x05, 0x3C, 0x07, 0xAA, + 0x07, 0xC5, 0x05, 0x3D, 0x07, 0xC7, 0x07, 0xC8, 0x05, 0x59, 0x07, 0xCF, + 0x07, 0xCF, 0x05, 0x5B, 0x07, 0xD1, 0x07, 0xD1, 0x05, 0x5C, 0x07, 0xE8, + 0x07, 0xF6, 0x05, 0x5D, 0x08, 0x03, 0x08, 0x64, 0x05, 0x6C, 0x08, 0x67, + 0x08, 0xC9, 0x05, 0xCE, 0x08, 0xDC, 0x08, 0xDC, 0x06, 0x31, 0x08, 0xE8, + 0x08, 0xEA, 0x06, 0x32, 0x08, 0xFE, 0x09, 0x0C, 0x06, 0x35, 0x09, 0x18, + 0x09, 0x18, 0x06, 0x44, 0x09, 0x1A, 0x09, 0x1B, 0x06, 0x45, 0x09, 0x1E, + 0x09, 0x20, 0x06, 0x47, 0x09, 0x24, 0x09, 0x24, 0x06, 0x4A, 0x09, 0x27, + 0x09, 0x27, 0x06, 0x4B, 0x09, 0x35, 0x09, 0x36, 0x06, 0x4C, 0x09, 0x3E, + 0x09, 0x3E, 0x06, 0x4E, 0x09, 0x40, 0x09, 0x41, 0x06, 0x4F, 0x09, 0x43, + 0x09, 0x43, 0x06, 0x51, 0x09, 0x47, 0x09, 0x47, 0x06, 0x52, 0x09, 0x59, + 0x09, 0x59, 0x06, 0x53, 0x09, 0x6D, 0x09, 0x70, 0x06, 0x54, 0x09, 0x7B, + 0x09, 0x7F, 0x06, 0x58, 0x09, 0x81, 0x09, 0x85, 0x06, 0x5D, 0x09, 0x8F, + 0x09, 0x8F, 0x06, 0x62, 0x09, 0x91, 0x09, 0x95, 0x06, 0x63, 0x09, 0x97, + 0x09, 0xA2, 0x06, 0x68, 0x09, 0xA4, 0x09, 0xA9, 0x06, 0x74, 0x09, 0xB2, + 0x09, 0xB5, 0x06, 0x7A, 0x09, 0xB8, 0x09, 0xC6, 0x06, 0x7E, 0x09, 0xCA, + 0x09, 0xCC, 0x06, 0x8D, 0x09, 0xCF, 0x09, 0xD2, 0x06, 0x90, 0x09, 0xD7, + 0x09, 0xD7, 0x06, 0x94, 0x09, 0xDB, 0x09, 0xE3, 0x06, 0x95, 0x09, 0xE7, + 0x09, 0xE7, 0x06, 0x9E, 0x09, 0xEB, 0x09, 0xEB, 0x06, 0x9F, 0x09, 0xF0, + 0x09, 0xF0, 0x06, 0xA0, 0x09, 0xF3, 0x09, 0xF7, 0x06, 0xA1, 0x09, 0xFB, + 0x09, 0xFB, 0x06, 0xA6, 0x0A, 0x00, 0x0A, 0x00, 0x06, 0xA7, 0x0A, 0x03, + 0x0A, 0x06, 0x06, 0xA8, 0x0A, 0xF8, 0x0A, 0xF8, 0x06, 0xAC, 0x0B, 0x43, + 0x0B, 0x43, 0x06, 0xAD, 0x0B, 0x49, 0x0B, 0x49, 0x06, 0xAE, 0x0B, 0x55, + 0x0B, 0x56, 0x06, 0xAF, 0x02, 0xD9, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x29, 0x8A, 0x29, 0x90, 0x29, 0x96, 0x29, 0x9C, 0x29, 0xA2, 0x29, 0xA8, + 0x29, 0xAE, 0x29, 0xB4, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x29, 0x84, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x29, 0x8A, 0x29, 0x90, + 0x29, 0x96, 0x29, 0x9C, 0x29, 0xA2, 0x29, 0xA8, 0x29, 0xAE, 0x29, 0xB4, + 0x2C, 0x12, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x29, 0xBA, 0x2B, 0x88, + 0x29, 0xEA, 0x29, 0xC0, 0x29, 0xC6, 0x29, 0xCC, 0x29, 0xD2, 0x29, 0xD8, + 0x29, 0xDE, 0x29, 0xE4, 0x29, 0xEA, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x29, 0xF0, 0x2B, 0xDC, + 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, + 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, + 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0x82, 0x2B, 0xDC, 0x29, 0xF6, 0x29, 0xFC, + 0x2A, 0x02, 0x2A, 0x08, 0x2A, 0x0E, 0x2A, 0x14, 0x2A, 0x1A, 0x2A, 0x20, + 0x2B, 0xDC, 0x2B, 0xDC, 0x2C, 0x1E, 0x2B, 0x82, 0x2B, 0xDC, 0x2B, 0xDC, + 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, + 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, + 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, + 0x2B, 0xFA, 0x2A, 0x26, 0x2C, 0x18, 0x2B, 0xEE, 0x2C, 0x06, 0x2A, 0x2C, + 0x28, 0xE8, 0x2A, 0x32, 0x2C, 0x2A, 0x2C, 0x2A, 0x2A, 0x38, 0x2C, 0x0C, + 0x2C, 0x2A, 0x2C, 0x2A, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2A, 0x62, 0x2A, 0x3E, + 0x2A, 0x44, 0x2A, 0x4A, 0x2A, 0x50, 0x2A, 0x56, 0x2A, 0x5C, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2A, 0x62, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2A, 0x68, 0x2B, 0x8E, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, + 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, + 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, + 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, + 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, + 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2A, 0x6E, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2A, 0x8C, + 0x2B, 0xAC, 0x28, 0xE8, 0x2A, 0x74, 0x2A, 0x7A, 0x2A, 0x80, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2A, 0x86, 0x2A, 0x8C, 0x2B, 0xAC, 0x2B, 0x70, 0x2B, 0x70, + 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, + 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, + 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, + 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, + 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, + 0x2A, 0x92, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, + 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, + 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, + 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, + 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, + 0x2B, 0x76, 0x2B, 0xBE, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2C, 0x30, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0x9A, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, + 0x2A, 0x98, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, + 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, + 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, + 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, + 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2A, 0x9E, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, 0x2C, 0x24, 0x2B, 0x82, 0x2B, 0x82, + 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, + 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, 0x2B, 0x82, + 0x2A, 0xA4, 0x2B, 0x82, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0xB2, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xC4, + 0x2A, 0xAA, 0x2B, 0xB8, 0x2A, 0xB0, 0x2A, 0xB6, 0x2A, 0xBC, 0x2A, 0xC2, + 0x2A, 0xC8, 0x2A, 0xCE, 0x2A, 0xD4, 0x2A, 0xDA, 0x2A, 0xE0, 0x2A, 0xE6, + 0x2A, 0xEC, 0x2A, 0xF2, 0x2A, 0xF8, 0x2A, 0xFE, 0x2B, 0x04, 0x2B, 0x0A, + 0x2B, 0x10, 0x2B, 0x16, 0x2B, 0x16, 0x2C, 0x12, 0x2B, 0x8E, 0x2B, 0x1C, + 0x2B, 0x22, 0x2B, 0x28, 0x2B, 0x40, 0x2B, 0x2E, 0x2B, 0x34, 0x2B, 0x3A, + 0x2B, 0x40, 0x2B, 0x46, 0x2B, 0x4C, 0x2B, 0x64, 0x2B, 0x52, 0x2B, 0x58, + 0x2B, 0x5E, 0x2B, 0x64, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, + 0x2C, 0x12, 0x2C, 0x12, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x6A, + 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0x6A, + 0x2B, 0x6A, 0x2B, 0x6A, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2C, 0x2A, + 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, + 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x70, 0x2B, 0x76, 0x2B, 0x76, 0x2B, 0x76, + 0x2B, 0x76, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xCA, + 0x2B, 0xCA, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, + 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x7C, 0x2B, 0x82, 0x2B, 0x82, + 0x2B, 0x82, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0xF4, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0x88, + 0x2B, 0xDC, 0x2B, 0x8E, 0x2B, 0xB2, 0x2C, 0x2A, 0x2B, 0xBE, 0x2B, 0xCA, + 0x2B, 0xC4, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, 0x2B, 0xD0, + 0x2B, 0x94, 0x2B, 0xDC, 0x2B, 0x9A, 0x2B, 0xA0, 0x2B, 0xBE, 0x2B, 0xA6, + 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xDC, 0x2B, 0xB2, 0x2B, 0xB8, 0x2B, 0xBE, + 0x2B, 0xBE, 0x2B, 0xCA, 0x2B, 0xCA, 0x2B, 0xC4, 0x2B, 0xCA, 0x2B, 0xD0, + 0x2B, 0xD0, 0x2B, 0xDC, 0x2B, 0xDC, 0x2B, 0xD6, 0x2B, 0xDC, 0x2B, 0xE2, + 0x2B, 0xE8, 0x2B, 0xF4, 0x2B, 0xEE, 0x2B, 0xF4, 0x2C, 0x00, 0x2B, 0xF4, + 0x05, 0xB0, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x26, 0x82, 0x26, 0x88, + 0x26, 0x8E, 0x26, 0x94, 0x26, 0x9A, 0x26, 0xA0, 0x26, 0xA6, 0x28, 0x0E, + 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x26, 0x88, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x26, 0x82, 0x26, 0x88, 0x26, 0x8E, 0x26, 0x94, + 0x26, 0x9A, 0x26, 0xA0, 0x26, 0xA6, 0x28, 0x0E, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x26, 0xAC, 0x26, 0xB2, + 0x2A, 0x36, 0x2A, 0x36, 0x2B, 0x6E, 0x26, 0xB8, 0x2B, 0x6E, 0x2B, 0x6E, + 0x2B, 0x6E, 0x2B, 0x6E, 0x2B, 0x6E, 0x2B, 0x6E, 0x2A, 0xE4, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x26, 0xBE, 0x2A, 0x90, 0x26, 0xE8, 0x26, 0xC4, + 0x26, 0xCA, 0x26, 0xD0, 0x26, 0xD6, 0x26, 0xDC, 0x26, 0xE2, 0x23, 0x3A, + 0x26, 0xE8, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x23, 0xBE, + 0x23, 0xBE, 0x23, 0xBE, 0x26, 0xEE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, + 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, + 0x2A, 0xAE, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, + 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0x3C, + 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, + 0x2A, 0x3C, 0x26, 0xF4, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, + 0x2A, 0x3C, 0x27, 0x00, 0x27, 0x06, 0x27, 0x0C, 0x27, 0x12, 0x27, 0x18, + 0x23, 0x40, 0x27, 0x1E, 0x27, 0x24, 0x27, 0x2A, 0x26, 0xFA, 0x27, 0x00, + 0x2A, 0x3C, 0x27, 0x06, 0x27, 0x0C, 0x27, 0x12, 0x27, 0x18, 0x23, 0x40, + 0x27, 0x1E, 0x27, 0x24, 0x27, 0x2A, 0x2A, 0x3C, 0x23, 0xBE, 0x23, 0xBE, + 0x23, 0xBE, 0x27, 0x30, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, + 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, + 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, 0x2A, 0xCC, 0x23, 0xBE, + 0x23, 0x58, 0x23, 0xBE, 0x23, 0x46, 0x23, 0xA6, 0x27, 0x36, 0x23, 0x4C, + 0x23, 0x52, 0x27, 0x3C, 0x23, 0x6A, 0x2B, 0x14, 0x23, 0xBE, 0x23, 0xBE, + 0x23, 0xB8, 0x23, 0x58, 0x23, 0xBE, 0x23, 0xBE, 0x2A, 0xA2, 0x2A, 0xA2, + 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, + 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, + 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x27, 0x42, 0x27, 0x48, + 0x26, 0x58, 0x26, 0x46, 0x27, 0x4E, 0x27, 0x54, 0x27, 0x5A, 0x27, 0x60, + 0x2A, 0xA2, 0x2A, 0xA2, 0x27, 0x66, 0x27, 0x6C, 0x2A, 0xA2, 0x2A, 0xA2, + 0x26, 0x70, 0x26, 0x70, 0x26, 0x70, 0x26, 0x70, 0x26, 0x70, 0x26, 0x70, + 0x26, 0x70, 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, + 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, 0x27, 0x72, 0x27, 0x78, 0x2B, 0x68, + 0x2B, 0x74, 0x2B, 0x74, 0x2B, 0x74, 0x2B, 0x74, 0x2B, 0x74, 0x2B, 0x74, + 0x2B, 0x74, 0x2B, 0x74, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, + 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, + 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0x96, 0x2A, 0x96, 0x2A, 0x96, 0x2A, 0x96, + 0x2A, 0x96, 0x2A, 0x96, 0x2A, 0x96, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x27, 0xA2, 0x27, 0x7E, 0x27, 0x84, 0x27, 0x8A, 0x27, 0x90, + 0x27, 0x96, 0x27, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x27, 0xA2, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x27, 0xA8, 0x2A, 0x9C, + 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, + 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x27, 0xAE, 0x26, 0x70, + 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, + 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, + 0x28, 0x98, 0x2B, 0x1A, 0x2B, 0x1A, 0x2B, 0x1A, 0x2B, 0x1A, 0x2B, 0x1A, + 0x2B, 0x1A, 0x2B, 0x1A, 0x2B, 0x1A, 0x2B, 0x1A, 0x2B, 0x1A, 0x2B, 0x1A, + 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, + 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, + 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, + 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, + 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, + 0x26, 0x6A, 0x27, 0xB4, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2A, 0x42, + 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, + 0x2B, 0x62, 0x2B, 0x62, 0x2B, 0x62, 0x2B, 0x62, 0x2B, 0x62, 0x2B, 0x62, + 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, + 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, + 0x27, 0xCC, 0x2B, 0x20, 0x29, 0xB2, 0x26, 0x4C, 0x27, 0xBA, 0x27, 0xC0, + 0x2B, 0x20, 0x2B, 0x20, 0x27, 0xC6, 0x27, 0xCC, 0x2B, 0x20, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, + 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, + 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, + 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, + 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, + 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x27, 0xD2, + 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, + 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, + 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, + 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, + 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, + 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0x54, 0x2A, 0x54, + 0x2A, 0x54, 0x27, 0xD8, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x23, 0xCA, + 0x23, 0xCA, 0x23, 0xCA, 0x23, 0xCA, 0x23, 0xCA, 0x23, 0xCA, 0x23, 0xCA, + 0x23, 0xCA, 0x23, 0xCA, 0x23, 0xCA, 0x23, 0xCA, 0x2A, 0xF6, 0x27, 0xDE, + 0x27, 0xDE, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, + 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, + 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, + 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, + 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, + 0x2A, 0x5A, 0x2A, 0x5A, 0x23, 0xA6, 0x2A, 0x60, 0x2B, 0x92, 0x2A, 0x60, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x28, 0xB6, 0x2B, 0x92, 0x2A, 0x60, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2A, 0x4E, 0x2A, 0x4E, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x22, 0x2C, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x2B, 0x92, 0x2B, 0x92, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2A, 0x66, + 0x2A, 0x66, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, + 0x2B, 0x92, 0x27, 0xE4, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x27, 0xEA, + 0x2A, 0xA8, 0x2A, 0xA8, 0x23, 0xC4, 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, + 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x27, 0xF0, 0x2A, 0xC6, + 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, + 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, + 0x23, 0xC4, 0x23, 0xC4, 0x2A, 0xCC, 0x27, 0xF6, 0x27, 0xFC, 0x28, 0x02, + 0x28, 0x08, 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, + 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x23, 0xC4, 0x2B, 0x8C, 0x2B, 0x8C, + 0x28, 0x0E, 0x28, 0x0E, 0x2B, 0x8C, 0x2B, 0x8C, 0x2B, 0x8C, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x2B, 0x92, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x28, 0x14, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x2A, 0x6C, 0x28, 0x1A, 0x2A, 0x6C, 0x2A, 0x6C, 0x2A, 0x6C, 0x2A, 0x6C, + 0x28, 0x20, 0x28, 0x20, 0x2A, 0xF6, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, + 0x28, 0x26, 0x28, 0x26, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, + 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, + 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, + 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, + 0x2A, 0xD2, 0x2A, 0xD2, 0x28, 0x2C, 0x2A, 0xD8, 0x2A, 0xD8, 0x28, 0x32, + 0x2A, 0xD8, 0x2A, 0xD8, 0x2A, 0xD8, 0x2A, 0xD8, 0x2A, 0xD8, 0x2A, 0xD8, + 0x2A, 0xD8, 0x2A, 0xD8, 0x2A, 0xD8, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, + 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, + 0x2A, 0xDE, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x28, 0x38, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x23, 0xB8, 0x23, 0xB8, 0x28, 0x3E, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x2A, 0x78, + 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, + 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, + 0x2B, 0x44, 0x2B, 0x44, 0x2B, 0x44, 0x2B, 0x44, 0x2A, 0x84, 0x2A, 0x84, + 0x2A, 0x84, 0x28, 0x44, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x28, 0x4A, 0x2A, 0x84, + 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, + 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x9C, 0x28, 0x8C, 0x28, 0x50, + 0x28, 0x50, 0x28, 0x5C, 0x28, 0x62, 0x28, 0x68, 0x28, 0x6E, 0x28, 0x74, + 0x28, 0x7A, 0x28, 0x80, 0x28, 0x86, 0x28, 0x56, 0x28, 0x5C, 0x28, 0x62, + 0x28, 0x68, 0x28, 0x6E, 0x28, 0x74, 0x28, 0x7A, 0x28, 0x80, 0x28, 0x86, + 0x28, 0x8C, 0x2B, 0x26, 0x2A, 0x9C, 0x28, 0x92, 0x2B, 0x32, 0x2B, 0x5C, + 0x28, 0x98, 0x28, 0x9E, 0x2B, 0x2C, 0x2B, 0x1A, 0x23, 0xB2, 0x23, 0xB2, + 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, + 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, + 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, + 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, 0x23, 0xB2, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, + 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, + 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, + 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, + 0x28, 0xA4, 0x28, 0xA4, 0x28, 0xA4, 0x2B, 0x14, 0x2B, 0x14, 0x2B, 0x4A, + 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x44, 0x2B, 0x3E, + 0x23, 0x5E, 0x28, 0xAA, 0x2B, 0x38, 0x2A, 0xC0, 0x23, 0x64, 0x28, 0xB0, + 0x2A, 0x30, 0x23, 0x6A, 0x2A, 0xAE, 0x2B, 0x1A, 0x28, 0xB6, 0x2A, 0x36, + 0x2A, 0x36, 0x28, 0xBC, 0x28, 0xC2, 0x28, 0xC8, 0x28, 0xCE, 0x23, 0x70, + 0x28, 0xD4, 0x29, 0x28, 0x28, 0xDA, 0x28, 0xE0, 0x28, 0xF8, 0x29, 0x10, + 0x28, 0xE6, 0x28, 0xEC, 0x23, 0x76, 0x28, 0xF2, 0x28, 0xF8, 0x28, 0xFE, + 0x29, 0x04, 0x29, 0x0A, 0x29, 0x10, 0x29, 0x16, 0x29, 0x1C, 0x29, 0x22, + 0x29, 0x28, 0x29, 0x2E, 0x29, 0x34, 0x29, 0x3A, 0x23, 0x7C, 0x29, 0x40, + 0x29, 0x46, 0x23, 0x82, 0x29, 0x4C, 0x29, 0x9A, 0x29, 0x52, 0x29, 0x58, + 0x29, 0x6A, 0x29, 0x82, 0x29, 0x5E, 0x23, 0x88, 0x29, 0x64, 0x29, 0x6A, + 0x29, 0x70, 0x29, 0x76, 0x29, 0x7C, 0x29, 0x82, 0x29, 0x88, 0x29, 0x8E, + 0x29, 0x94, 0x29, 0x9A, 0x29, 0xA0, 0x29, 0xA6, 0x29, 0xAC, 0x23, 0x8E, + 0x29, 0xB2, 0x26, 0x70, 0x2A, 0x30, 0x2A, 0x9C, 0x29, 0xB8, 0x29, 0xBE, + 0x29, 0xC4, 0x29, 0xCA, 0x23, 0x94, 0x29, 0xD0, 0x26, 0x52, 0x23, 0x94, + 0x23, 0x94, 0x29, 0xD6, 0x29, 0xDC, 0x29, 0xEE, 0x2A, 0x06, 0x23, 0x94, + 0x29, 0xEE, 0x29, 0xE2, 0x29, 0xE8, 0x23, 0x94, 0x23, 0x94, 0x23, 0x94, + 0x23, 0x94, 0x23, 0x94, 0x23, 0x9A, 0x29, 0xEE, 0x29, 0xF4, 0x29, 0xFA, + 0x2A, 0x00, 0x2A, 0x18, 0x26, 0x58, 0x2A, 0x06, 0x2A, 0x0C, 0x26, 0x5E, + 0x26, 0x5E, 0x2A, 0x12, 0x2A, 0x18, 0x26, 0x64, 0x2A, 0x1E, 0x26, 0x5E, + 0x26, 0x64, 0x2A, 0x24, 0x2A, 0x2A, 0x26, 0x5E, 0x26, 0x5E, 0x26, 0x5E, + 0x26, 0x5E, 0x26, 0x5E, 0x23, 0xA0, 0x26, 0x64, 0x2A, 0xAE, 0x2A, 0xB4, + 0x26, 0x70, 0x2B, 0x68, 0x2A, 0xF0, 0x2A, 0xBA, 0x2A, 0xC0, 0x2A, 0xC6, + 0x23, 0xC4, 0x2A, 0xCC, 0x23, 0xB8, 0x23, 0xC4, 0x2A, 0xD2, 0x2A, 0xD8, + 0x2A, 0xDE, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x36, 0x2A, 0x36, 0x2B, 0x6E, 0x2B, 0x6E, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x23, 0xBE, 0x2A, 0xAE, 0x2A, 0x3C, + 0x2A, 0x3C, 0x2A, 0x3C, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, 0x23, 0xBE, + 0x26, 0x70, 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x74, 0x2B, 0x74, 0x2A, 0xF0, + 0x2A, 0xF0, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xC0, + 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2B, 0x1A, 0x2B, 0x1A, 0x26, 0x6A, + 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, 0x26, 0x6A, + 0x26, 0x6A, 0x26, 0x6A, 0x2B, 0x5C, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, + 0x2B, 0x62, 0x2B, 0x62, 0x2B, 0x20, 0x2B, 0x20, 0x2B, 0x20, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0xB4, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, + 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, + 0x2A, 0x54, 0x2A, 0x54, 0x23, 0xCA, 0x2A, 0x5A, 0x2A, 0x5A, 0x2A, 0x5A, + 0x2A, 0x5A, 0x2A, 0x60, 0x2B, 0x02, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2B, 0x92, 0x2A, 0x66, 0x2A, 0xC6, + 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, 0x2B, 0x8C, 0x2B, 0x8C, 0x23, 0xB8, + 0x23, 0xB8, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, + 0x26, 0x7C, 0x26, 0x7C, 0x2A, 0x6C, 0x23, 0xC4, 0x23, 0xC4, 0x23, 0xC4, + 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD2, 0x2A, 0xD8, + 0x2A, 0xD8, 0x2A, 0xD8, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x78, + 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2B, 0x44, 0x2B, 0x44, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0xF6, 0x2A, 0xF6, + 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2A, 0xF6, 0x2B, 0x92, 0x2B, 0x92, + 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x2A, 0x90, 0x23, 0xBE, 0x2B, 0x2C, + 0x2A, 0x96, 0x2A, 0x9C, 0x2B, 0x5C, 0x2B, 0x32, 0x2A, 0xA2, 0x23, 0xA6, + 0x26, 0x7C, 0x2B, 0x3E, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x2A, 0xA8, 0x2B, 0x92, 0x2A, 0xAE, 0x2A, 0xB4, 0x26, 0x70, + 0x2B, 0x68, 0x2A, 0xF0, 0x2A, 0xBA, 0x2A, 0xC0, 0x2A, 0xC6, 0x23, 0xC4, + 0x2A, 0xCC, 0x23, 0xB8, 0x23, 0xC4, 0x2A, 0xD2, 0x2A, 0xD8, 0x2A, 0xDE, + 0x2A, 0xE4, 0x2A, 0xE4, 0x23, 0xBE, 0x2B, 0x68, 0x2A, 0xEA, 0x2A, 0xF0, + 0x2B, 0x1A, 0x2A, 0xF6, 0x2A, 0xFC, 0x23, 0xA6, 0x2B, 0x02, 0x2B, 0x08, + 0x2B, 0x0E, 0x2B, 0x4A, 0x2B, 0x14, 0x2B, 0x1A, 0x2B, 0x62, 0x2B, 0x1A, + 0x2B, 0x20, 0x2B, 0x20, 0x23, 0xBE, 0x2B, 0x26, 0x2B, 0x2C, 0x2B, 0x5C, + 0x2B, 0x32, 0x2B, 0x62, 0x26, 0x76, 0x23, 0xCA, 0x2B, 0x38, 0x23, 0xA6, + 0x23, 0xA6, 0x26, 0x7C, 0x26, 0x7C, 0x2B, 0x3E, 0x2B, 0x44, 0x2B, 0x4A, + 0x23, 0xAC, 0x23, 0xCA, 0x23, 0xAC, 0x2B, 0x50, 0x23, 0xB2, 0x2B, 0x92, + 0x26, 0x7C, 0x23, 0xB8, 0x23, 0xB8, 0x2B, 0x56, 0x23, 0xBE, 0x2B, 0x5C, + 0x2B, 0x62, 0x2B, 0x68, 0x2B, 0x6E, 0x2B, 0x74, 0x2B, 0x7A, 0x2B, 0x80, + 0x2B, 0x86, 0x23, 0xC4, 0x23, 0xCA, 0x2B, 0x8C, 0x2B, 0x92, 0x06, 0xB1, + 0x29, 0xE4, 0x20, 0x6C, 0x20, 0x36, 0x29, 0xD8, 0x29, 0xD8, 0x29, 0xD8, + 0x29, 0xE4, 0x29, 0xE4, 0x29, 0xE4, 0x20, 0x66, 0x29, 0xD8, 0x29, 0xE4, + 0x29, 0xD8, 0x29, 0xE4, 0x29, 0xE4, 0x29, 0xD8, 0x20, 0x3C, 0x20, 0x42, + 0x29, 0xE4, 0x29, 0xE4, 0x29, 0xE4, 0x20, 0x48, 0x20, 0x4E, 0x29, 0xE4, + 0x29, 0xE4, 0x29, 0xD8, 0x20, 0x54, 0x29, 0xE4, 0x20, 0x5A, 0x20, 0x60, + 0x29, 0xD8, 0x29, 0xE4, 0x29, 0xE4, 0x20, 0x72, 0x2B, 0xF4, 0x20, 0x78, + 0x20, 0x7E, 0x20, 0x84, 0x20, 0x8A, 0x20, 0x90, 0x20, 0x96, 0x29, 0xD8, + 0x20, 0x66, 0x29, 0xE4, 0x29, 0xE4, 0x2B, 0xF4, 0x29, 0xE4, 0x29, 0xD8, + 0x20, 0x6C, 0x20, 0x72, 0x2B, 0xF4, 0x20, 0x78, 0x20, 0x7E, 0x20, 0x84, + 0x20, 0x8A, 0x20, 0x90, 0x20, 0x96, 0x29, 0xE4, 0x29, 0xE4, 0x20, 0xA8, + 0x20, 0x9C, 0x20, 0xA2, 0x20, 0xA8, 0x29, 0xF0, 0x20, 0xAE, 0x29, 0xF0, + 0x29, 0xF0, 0x20, 0xB4, 0x26, 0x72, 0x29, 0xF0, 0x29, 0xF0, 0x2D, 0xC2, + 0x2D, 0xC2, 0x2D, 0xC2, 0x20, 0xC0, 0x20, 0xC0, 0x20, 0xBA, 0x20, 0xC0, + 0x20, 0xC0, 0x2D, 0xC2, 0x20, 0xC6, 0x2D, 0xC2, 0x2D, 0xC8, 0x20, 0xCC, + 0x20, 0xD2, 0x20, 0xD8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, + 0x2C, 0x36, 0x2A, 0x08, 0x2A, 0x02, 0x2A, 0x02, 0x2A, 0x02, 0x21, 0x32, + 0x20, 0xDE, 0x2A, 0x02, 0x20, 0xE4, 0x2A, 0x08, 0x2A, 0x02, 0x2A, 0x02, + 0x20, 0xEA, 0x2A, 0x08, 0x2A, 0x08, 0x2A, 0x08, 0x2A, 0x08, 0x2A, 0x08, + 0x2A, 0x02, 0x2A, 0x08, 0x2A, 0x08, 0x20, 0xF0, 0x20, 0xF6, 0x20, 0xFC, + 0x2A, 0x08, 0x2A, 0x08, 0x2A, 0x02, 0x2A, 0x08, 0x21, 0x02, 0x2A, 0x08, + 0x21, 0x2C, 0x21, 0x08, 0x21, 0x0E, 0x21, 0x14, 0x21, 0x1A, 0x29, 0x72, + 0x21, 0x20, 0x21, 0x26, 0x21, 0x2C, 0x2A, 0x08, 0x2A, 0x02, 0x21, 0x32, + 0x2A, 0x02, 0x21, 0x38, 0x21, 0x38, 0x21, 0x3E, 0x22, 0x76, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x21, 0x4A, 0x21, 0x4A, 0x21, 0x44, 0x2B, 0xF4, + 0x21, 0x4A, 0x21, 0x4A, 0x21, 0x50, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x21, 0x5C, 0x21, 0x5C, 0x21, 0x56, 0x2B, 0xFA, 0x21, 0x5C, 0x21, 0x5C, + 0x21, 0x62, 0x2A, 0x20, 0x2A, 0x20, 0x21, 0x68, 0x21, 0x68, 0x21, 0x6E, + 0x2A, 0x20, 0x21, 0x74, 0x2A, 0x20, 0x21, 0x7A, 0x2A, 0x20, 0x2A, 0x20, + 0x2A, 0x20, 0x2A, 0x20, 0x2A, 0x20, 0x21, 0x86, 0x21, 0x8C, 0x21, 0x92, + 0x21, 0x98, 0x21, 0x9E, 0x21, 0xA4, 0x21, 0xAA, 0x21, 0xB0, 0x21, 0xB6, + 0x21, 0x80, 0x21, 0x86, 0x2A, 0x20, 0x21, 0x8C, 0x21, 0x92, 0x21, 0x98, + 0x21, 0x9E, 0x21, 0xA4, 0x21, 0xAA, 0x21, 0xB0, 0x21, 0xB6, 0x2A, 0x20, + 0x2D, 0xBC, 0x21, 0xBC, 0x22, 0x0A, 0x2D, 0xBC, 0x21, 0xC2, 0x2D, 0xBC, + 0x22, 0x88, 0x22, 0x88, 0x22, 0x88, 0x21, 0xC8, 0x2A, 0x26, 0x22, 0x88, + 0x2D, 0xBC, 0x21, 0xCE, 0x22, 0x88, 0x22, 0x88, 0x21, 0xD4, 0x2D, 0xBC, + 0x2D, 0xBC, 0x2D, 0xE6, 0x2D, 0xBC, 0x22, 0x04, 0x22, 0x0A, 0x2D, 0xC8, + 0x21, 0xDA, 0x21, 0xE0, 0x21, 0xE6, 0x21, 0xEC, 0x21, 0xF2, 0x27, 0x7A, + 0x21, 0xF8, 0x22, 0x88, 0x2A, 0x26, 0x21, 0xFE, 0x22, 0x04, 0x2D, 0xBC, + 0x22, 0x0A, 0x2A, 0x92, 0x22, 0x6A, 0x2A, 0x92, 0x2A, 0x92, 0x2A, 0x92, + 0x22, 0x52, 0x22, 0x52, 0x22, 0x52, 0x22, 0x10, 0x22, 0x58, 0x22, 0x52, + 0x2A, 0x92, 0x22, 0x16, 0x22, 0x52, 0x22, 0x52, 0x22, 0x1C, 0x2A, 0x92, + 0x2A, 0x92, 0x22, 0x22, 0x22, 0x28, 0x22, 0x2E, 0x22, 0x34, 0x22, 0x3A, + 0x22, 0x40, 0x22, 0x46, 0x22, 0x4C, 0x22, 0x52, 0x22, 0x58, 0x22, 0x5E, + 0x22, 0x64, 0x2A, 0x92, 0x22, 0x6A, 0x22, 0x76, 0x22, 0x70, 0x22, 0x76, + 0x22, 0x76, 0x22, 0x76, 0x2C, 0x00, 0x2C, 0x00, 0x22, 0x7C, 0x22, 0x7C, + 0x2C, 0x00, 0x2C, 0x00, 0x22, 0x82, 0x26, 0xC6, 0x2C, 0x00, 0x2D, 0xBC, + 0x22, 0x88, 0x2D, 0xBC, 0x2D, 0xBC, 0x2D, 0xBC, 0x2A, 0x26, 0x2D, 0xBC, + 0x2D, 0xBC, 0x22, 0x8E, 0x22, 0x94, 0x2D, 0xBC, 0x2D, 0xCE, 0x22, 0x9A, + 0x22, 0xA0, 0x2D, 0xCE, 0x2D, 0xCE, 0x2D, 0xCE, 0x2D, 0xCE, 0x2D, 0xCE, + 0x2C, 0x06, 0x22, 0xA6, 0x22, 0xBE, 0x2C, 0x06, 0x22, 0xBE, 0x22, 0xBE, + 0x22, 0xAC, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, + 0x2C, 0x06, 0x22, 0xBE, 0x22, 0xBE, 0x22, 0xB2, 0x22, 0xB8, 0x22, 0xBE, + 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2A, 0x38, 0x23, 0x0C, 0x22, 0xE2, + 0x2A, 0x38, 0x2A, 0x38, 0x2A, 0x32, 0x2A, 0x32, 0x2A, 0x32, 0x22, 0xC4, + 0x2A, 0x32, 0x2A, 0x38, 0x2A, 0x32, 0x2A, 0x38, 0x22, 0xC4, 0x2A, 0x32, + 0x22, 0xCA, 0x2A, 0x38, 0x2A, 0x38, 0x22, 0xD0, 0x2A, 0x38, 0x2A, 0x38, + 0x2A, 0x38, 0x2A, 0x38, 0x2A, 0x38, 0x2A, 0x38, 0x2A, 0x38, 0x22, 0xD6, + 0x22, 0xDC, 0x2A, 0x38, 0x2A, 0x38, 0x2A, 0x32, 0x2A, 0x32, 0x2A, 0x32, + 0x2A, 0x38, 0x22, 0xE2, 0x2A, 0x38, 0x2A, 0x32, 0x2A, 0x38, 0x23, 0x06, + 0x22, 0xE8, 0x26, 0xC0, 0x22, 0xEE, 0x22, 0xF4, 0x22, 0xFA, 0x23, 0x00, + 0x2A, 0x38, 0x2A, 0x38, 0x23, 0x06, 0x2A, 0x38, 0x23, 0x0C, 0x2A, 0x38, + 0x2A, 0x38, 0x23, 0x0C, 0x23, 0x12, 0x2C, 0x96, 0x23, 0x18, 0x23, 0x1E, + 0x29, 0xF0, 0x23, 0x24, 0x2C, 0x96, 0x23, 0x2A, 0x2A, 0x38, 0x2C, 0x0C, + 0x23, 0x30, 0x2C, 0x0C, 0x23, 0x30, 0x23, 0x30, 0x23, 0x36, 0x23, 0x3C, + 0x2C, 0x0C, 0x2A, 0x4A, 0x2C, 0x0C, 0x23, 0x42, 0x27, 0x80, 0x2C, 0x12, + 0x23, 0x48, 0x23, 0x48, 0x2C, 0x12, 0x23, 0x48, 0x2C, 0x12, 0x23, 0x4E, + 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x23, 0x4E, 0x2C, 0x12, 0x23, 0x54, + 0x2C, 0xAE, 0x2C, 0xAE, 0x23, 0x5A, 0x2C, 0xAE, 0x23, 0x60, 0x2C, 0xAE, + 0x2C, 0xAE, 0x2C, 0xAE, 0x23, 0x66, 0x2C, 0x0C, 0x2C, 0xAE, 0x2C, 0xAE, + 0x2C, 0xAE, 0x2A, 0x62, 0x2A, 0x62, 0x23, 0x7E, 0x23, 0x7E, 0x23, 0x7E, + 0x23, 0x6C, 0x23, 0x84, 0x23, 0x72, 0x23, 0x7E, 0x2A, 0x62, 0x2A, 0x62, + 0x2A, 0x62, 0x23, 0x7E, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, + 0x23, 0x7E, 0x23, 0x78, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, + 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, 0x23, 0x7E, 0x23, 0x7E, 0x2A, 0x62, + 0x23, 0x84, 0x2A, 0x62, 0x23, 0x8A, 0x2D, 0xB0, 0x23, 0x90, 0x2D, 0xB0, + 0x2A, 0x6E, 0x23, 0x96, 0x23, 0x96, 0x23, 0x96, 0x23, 0x9C, 0x23, 0xA2, + 0x2A, 0x6E, 0x2D, 0xB6, 0x23, 0xA8, 0x23, 0xAE, 0x2D, 0xB6, 0x2D, 0xB6, + 0x2D, 0xB6, 0x2C, 0xB4, 0x23, 0xD8, 0x23, 0xD8, 0x23, 0xC0, 0x23, 0xDE, + 0x23, 0xB4, 0x23, 0xD8, 0x2C, 0xB4, 0x2C, 0xB4, 0x23, 0xBA, 0x2C, 0xB4, + 0x2C, 0xB4, 0x23, 0xEA, 0x23, 0xC0, 0x23, 0xC6, 0x23, 0xCC, 0x23, 0xD2, + 0x26, 0x8A, 0x23, 0xD8, 0x23, 0xDE, 0x23, 0xE4, 0x23, 0xEA, 0x2C, 0xB4, + 0x2A, 0x86, 0x23, 0xF6, 0x23, 0xF0, 0x23, 0xF6, 0x23, 0xF6, 0x2A, 0x86, + 0x2A, 0x86, 0x2A, 0x86, 0x2A, 0x86, 0x2A, 0x86, 0x2B, 0x2E, 0x2A, 0x98, + 0x2A, 0x98, 0x23, 0xFC, 0x2A, 0x98, 0x2B, 0x2E, 0x24, 0x02, 0x24, 0x08, + 0x2A, 0x98, 0x2A, 0x98, 0x24, 0x0E, 0x2A, 0x98, 0x24, 0x14, 0x2B, 0x2E, + 0x2B, 0x2E, 0x2A, 0x98, 0x26, 0x48, 0x2B, 0x2E, 0x26, 0x36, 0x2B, 0x2E, + 0x2B, 0x2E, 0x2A, 0x98, 0x2B, 0x2E, 0x24, 0x1A, 0x26, 0x42, 0x2B, 0x2E, + 0x2B, 0x2E, 0x2B, 0x2E, 0x2B, 0x2E, 0x2B, 0x2E, 0x2B, 0x2E, 0x26, 0x3C, + 0x24, 0x20, 0x2B, 0x2E, 0x2A, 0x98, 0x26, 0x48, 0x24, 0x32, 0x24, 0x26, + 0x24, 0x2C, 0x24, 0x32, 0x2C, 0x4E, 0x2B, 0x3A, 0x2B, 0x3A, 0x24, 0x38, + 0x2B, 0x3A, 0x2C, 0x4E, 0x24, 0x3E, 0x24, 0x44, 0x2B, 0x3A, 0x2B, 0x3A, + 0x24, 0x4A, 0x2B, 0x3A, 0x24, 0x50, 0x2C, 0x4E, 0x2C, 0x4E, 0x2B, 0x3A, + 0x24, 0x56, 0x2C, 0x4E, 0x24, 0x5C, 0x2C, 0x4E, 0x2C, 0x4E, 0x2B, 0x3A, + 0x2C, 0x4E, 0x24, 0x62, 0x24, 0x68, 0x2C, 0x4E, 0x2C, 0x4E, 0x2C, 0x4E, + 0x2C, 0x4E, 0x2C, 0x4E, 0x24, 0x6E, 0x2A, 0xA4, 0x2A, 0xA4, 0x2A, 0xA4, + 0x24, 0x74, 0x24, 0x7A, 0x2A, 0xA4, 0x2A, 0xA4, 0x2D, 0xEC, 0x2D, 0xEC, + 0x2D, 0xEC, 0x2D, 0xEC, 0x24, 0x86, 0x24, 0x86, 0x24, 0x80, 0x24, 0x86, + 0x24, 0x86, 0x2D, 0xEC, 0x2D, 0xEC, 0x2A, 0xB6, 0x2A, 0xB6, 0x2A, 0xB6, + 0x2C, 0x4E, 0x2A, 0xB6, 0x2A, 0xB6, 0x2A, 0xB6, 0x24, 0x8C, 0x2A, 0xB6, + 0x2A, 0xB6, 0x2A, 0xB6, 0x2A, 0xB6, 0x2A, 0xB6, 0x2A, 0xB6, 0x2A, 0xB6, + 0x2A, 0xC8, 0x24, 0xB6, 0x2A, 0xC8, 0x2A, 0xBC, 0x2A, 0xBC, 0x2A, 0xBC, + 0x24, 0x92, 0x2A, 0xBC, 0x24, 0x98, 0x2A, 0xC8, 0x2A, 0xBC, 0x2A, 0xBC, + 0x24, 0x9E, 0x2A, 0xC8, 0x2A, 0xC8, 0x2A, 0xC8, 0x2A, 0xC8, 0x2A, 0xC8, + 0x2A, 0xBC, 0x2A, 0xC8, 0x2A, 0xC8, 0x24, 0xA4, 0x24, 0xAA, 0x24, 0xB0, + 0x2A, 0xC8, 0x2A, 0xC8, 0x2A, 0xBC, 0x2A, 0xC8, 0x2A, 0xBC, 0x24, 0xB6, + 0x2A, 0xBC, 0x2D, 0x32, 0x24, 0xBC, 0x24, 0xC8, 0x24, 0xC2, 0x24, 0xC8, + 0x24, 0xD4, 0x24, 0xC8, 0x24, 0xCE, 0x24, 0xD4, 0x24, 0xDA, 0x2C, 0x6C, + 0x2C, 0x6C, 0x2C, 0x6C, 0x24, 0xE6, 0x24, 0xE6, 0x24, 0xE0, 0x2C, 0x6C, + 0x24, 0xE6, 0x24, 0xE6, 0x24, 0xEC, 0x2B, 0x2E, 0x2B, 0x2E, 0x2A, 0xE0, + 0x2A, 0xE0, 0x2A, 0xE0, 0x2A, 0xE0, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x2A, 0xE0, 0x24, 0xF2, 0x24, 0xF2, 0x24, 0xF8, 0x2A, 0xE0, 0x24, 0xFE, + 0x2A, 0xE0, 0x2A, 0xE0, 0x2A, 0xE0, 0x25, 0x28, 0x2E, 0x04, 0x25, 0x04, + 0x25, 0x22, 0x2E, 0x04, 0x25, 0x0A, 0x25, 0x28, 0x2E, 0x04, 0x25, 0x28, + 0x25, 0x16, 0x25, 0x16, 0x25, 0x16, 0x25, 0x10, 0x25, 0x16, 0x2E, 0x04, + 0x25, 0x28, 0x25, 0x16, 0x25, 0x16, 0x25, 0x1C, 0x2E, 0x04, 0x25, 0x28, + 0x2E, 0x04, 0x2E, 0x04, 0x25, 0x28, 0x25, 0x22, 0x25, 0x28, 0x25, 0x2E, + 0x25, 0x34, 0x25, 0x3A, 0x2D, 0xE6, 0x2D, 0xE6, 0x2E, 0x04, 0x2D, 0xE6, + 0x25, 0x58, 0x25, 0x58, 0x2D, 0xE6, 0x2D, 0xE6, 0x16, 0xC4, 0x2E, 0x04, + 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, + 0x2D, 0xE6, 0x25, 0x58, 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x2B, 0x46, + 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x25, 0x40, 0x25, 0x46, 0x25, 0x4C, + 0x25, 0x52, 0x2D, 0xE6, 0x25, 0x58, 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, + 0x2B, 0x46, 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xF8, 0x2D, 0xF8, + 0x25, 0x5E, 0x25, 0x5E, 0x25, 0x64, 0x25, 0x6A, 0x2D, 0xF8, 0x16, 0xCA, + 0x26, 0x06, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x2D, 0x98, + 0x27, 0x2C, 0x16, 0xCA, 0x27, 0x2C, 0x27, 0x2C, 0x25, 0x70, 0x16, 0xCA, + 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x25, 0x76, 0x2D, 0xA4, 0x2D, 0x56, + 0x25, 0x7C, 0x2D, 0xA4, 0x2D, 0xA4, 0x2A, 0xF2, 0x2A, 0xF2, 0x2A, 0xF2, + 0x25, 0x82, 0x2A, 0xF2, 0x2D, 0xA4, 0x2A, 0xF2, 0x2D, 0xA4, 0x25, 0x82, + 0x2A, 0xF2, 0x25, 0x88, 0x2D, 0xA4, 0x2D, 0xA4, 0x25, 0x8E, 0x2D, 0xA4, + 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, + 0x25, 0x94, 0x25, 0x9A, 0x2D, 0xA4, 0x2D, 0xA4, 0x2A, 0xF2, 0x2A, 0xF2, + 0x2A, 0xF2, 0x2D, 0xA4, 0x25, 0xA0, 0x2D, 0xA4, 0x2A, 0xF2, 0x2D, 0xA4, + 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, + 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0x56, + 0x25, 0xB8, 0x25, 0xA6, 0x25, 0xB8, 0x25, 0xAC, 0x25, 0xB2, 0x25, 0xB8, + 0x25, 0xBE, 0x25, 0xBE, 0x2C, 0x4E, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x25, 0xC4, 0x25, 0xC4, 0x2C, 0x18, 0x25, 0xCA, 0x2C, 0x18, 0x25, 0xCA, + 0x25, 0xCA, 0x25, 0xD0, 0x25, 0xD6, 0x2C, 0x18, 0x2B, 0x04, 0x2C, 0x18, + 0x2C, 0x1E, 0x2C, 0x1E, 0x2C, 0x1E, 0x26, 0x66, 0x26, 0x66, 0x2C, 0x1E, + 0x26, 0x66, 0x2C, 0x1E, 0x26, 0x60, 0x2C, 0x1E, 0x2C, 0x1E, 0x2C, 0x1E, + 0x26, 0x60, 0x2C, 0x1E, 0x25, 0xDC, 0x2C, 0x24, 0x2C, 0x24, 0x25, 0xE2, + 0x2C, 0x24, 0x2C, 0x24, 0x2C, 0x24, 0x2C, 0x24, 0x25, 0xE8, 0x2C, 0x24, + 0x2C, 0x24, 0x2C, 0x24, 0x25, 0xEE, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, + 0x2C, 0x2A, 0x2C, 0x2A, 0x25, 0xF4, 0x2C, 0x2A, 0x2C, 0x2A, 0x2C, 0x2A, + 0x25, 0xFA, 0x16, 0xCA, 0x16, 0x6A, 0x26, 0x06, 0x16, 0xCA, 0x27, 0x5C, + 0x27, 0x2C, 0x27, 0x2C, 0x27, 0x2C, 0x27, 0x32, 0x27, 0x2C, 0x16, 0xCA, + 0x16, 0xCA, 0x16, 0xCA, 0x27, 0x2C, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x16, 0xCA, 0x27, 0x2C, 0x26, 0x00, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x27, 0x2C, 0x27, 0x2C, + 0x16, 0xCA, 0x26, 0x06, 0x16, 0xCA, 0x16, 0xCA, 0x27, 0x2C, 0x27, 0x5C, + 0x27, 0x2C, 0x27, 0x2C, 0x27, 0x2C, 0x16, 0xCA, 0x27, 0x2C, 0x16, 0x6A, + 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x27, 0x2C, 0x16, 0xCA, 0x16, 0xCA, 0x27, 0x2C, 0x16, 0xCA, 0x27, 0x2C, + 0x16, 0xCA, 0x26, 0x06, 0x16, 0xCA, 0x26, 0x00, 0x27, 0x32, 0x16, 0xCA, + 0x16, 0xCA, 0x16, 0xCA, 0x26, 0x06, 0x16, 0xCA, 0x16, 0xCA, 0x2B, 0x10, + 0x2B, 0x10, 0x26, 0x0C, 0x2B, 0x10, 0x2B, 0x1C, 0x26, 0x12, 0x26, 0x18, + 0x26, 0x1E, 0x26, 0x1E, 0x26, 0x1E, 0x26, 0x24, 0x2B, 0x1C, 0x2B, 0x1C, + 0x2D, 0x6E, 0x26, 0x2A, 0x26, 0x30, 0x2D, 0x6E, 0x2B, 0x2E, 0x26, 0x48, + 0x2B, 0x2E, 0x2D, 0xDA, 0x2A, 0x98, 0x2A, 0x98, 0x26, 0x42, 0x26, 0x36, + 0x2B, 0x2E, 0x2A, 0x98, 0x2B, 0x2E, 0x2B, 0x2E, 0x26, 0x3C, 0x2B, 0x2E, + 0x2A, 0x98, 0x26, 0x42, 0x26, 0x48, 0x2B, 0x2E, 0x26, 0x4E, 0x26, 0x54, + 0x26, 0x5A, 0x26, 0xCC, 0x2B, 0x2E, 0x2C, 0x1E, 0x2C, 0x1E, 0x2C, 0x1E, + 0x26, 0x66, 0x26, 0x60, 0x26, 0x66, 0x26, 0x66, 0x2C, 0x1E, 0x2C, 0x1E, + 0x2C, 0x8A, 0x2A, 0x38, 0x2A, 0x38, 0x26, 0x6C, 0x26, 0x6C, 0x26, 0x78, + 0x26, 0x7E, 0x26, 0x84, 0x26, 0x8A, 0x26, 0x90, 0x26, 0x96, 0x26, 0x9C, + 0x26, 0xA2, 0x26, 0x72, 0x26, 0x78, 0x26, 0x7E, 0x26, 0x84, 0x26, 0x8A, + 0x26, 0x90, 0x26, 0x96, 0x26, 0x9C, 0x26, 0xA2, 0x2A, 0x38, 0x26, 0xA8, + 0x26, 0xAE, 0x26, 0xB4, 0x2C, 0x8A, 0x26, 0xBA, 0x26, 0xC0, 0x26, 0xC0, + 0x2C, 0xA8, 0x26, 0xC6, 0x2C, 0xC0, 0x2A, 0x38, 0x2E, 0x0A, 0x26, 0xCC, + 0x2E, 0x0A, 0x26, 0xD2, 0x2C, 0xC6, 0x2C, 0xC6, 0x2C, 0xC6, 0x26, 0xD8, + 0x2C, 0xAE, 0x26, 0xDE, 0x26, 0xDE, 0x26, 0xE4, 0x2D, 0xB0, 0x26, 0xEA, + 0x2C, 0x8A, 0x26, 0xF0, 0x26, 0xF6, 0x2C, 0x96, 0x26, 0xFC, 0x2C, 0xAE, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2D, 0x8C, 0x27, 0x02, 0x27, 0x08, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x92, 0x2D, 0x92, 0x2D, 0x92, 0x27, 0x0E, + 0x27, 0x0E, 0x2D, 0x92, 0x2D, 0x92, 0x2D, 0x92, 0x2D, 0x92, 0x2D, 0x92, + 0x2D, 0x92, 0x2D, 0x92, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, + 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, + 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, + 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x98, + 0x2D, 0x98, 0x2D, 0x98, 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0x9E, 0x27, 0x14, + 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0x9E, + 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0x9E, 0x27, 0x1A, 0x27, 0x20, 0x2D, 0x9E, + 0x2D, 0x9E, 0x2D, 0x9E, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, 0x27, 0x26, + 0x16, 0xCA, 0x16, 0xCA, 0x16, 0x6A, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x16, 0xCA, 0x27, 0x2C, 0x27, 0x32, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, + 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, + 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, + 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, + 0x2C, 0xFC, 0x2C, 0xFC, 0x2C, 0xFC, 0x27, 0x38, 0x27, 0x38, 0x2D, 0x14, + 0x2D, 0x98, 0x2D, 0x02, 0x27, 0x3E, 0x27, 0x3E, 0x27, 0x44, 0x27, 0x4A, + 0x27, 0x4A, 0x27, 0x4A, 0x2C, 0x7E, 0x2C, 0x7E, 0x2D, 0x7A, 0x2D, 0x7A, + 0x2D, 0x7A, 0x2D, 0x7A, 0x2D, 0x7A, 0x2D, 0x1A, 0x2D, 0x6E, 0x2D, 0x2C, + 0x2D, 0x2C, 0x2D, 0x2C, 0x27, 0x50, 0x27, 0x50, 0x27, 0x56, 0x27, 0x5C, + 0x27, 0x62, 0x27, 0x68, 0x2C, 0xFC, 0x27, 0x6E, 0x2D, 0x20, 0x2C, 0x5A, + 0x2D, 0xDA, 0x2C, 0x12, 0x27, 0x74, 0x29, 0xE4, 0x27, 0x7A, 0x2B, 0xF4, + 0x2D, 0xC2, 0x2D, 0xC2, 0x2C, 0xAE, 0x27, 0x80, 0x29, 0xF0, 0x29, 0xF0, + 0x27, 0x8C, 0x27, 0x86, 0x27, 0x86, 0x2C, 0xA8, 0x27, 0x8C, 0x2C, 0x96, + 0x27, 0x98, 0x27, 0x8C, 0x27, 0x92, 0x27, 0x98, 0x2C, 0x0C, 0x27, 0x9E, + 0x27, 0xA4, 0x27, 0xAA, 0x27, 0xB0, 0x27, 0xB6, 0x27, 0xBC, 0x28, 0x0A, + 0x27, 0xC2, 0x27, 0xE6, 0x27, 0xC8, 0x27, 0xCE, 0x27, 0xD4, 0x27, 0xDA, + 0x27, 0xDA, 0x27, 0xE0, 0x28, 0x04, 0x27, 0xE6, 0x27, 0xEC, 0x27, 0xF2, + 0x27, 0xF8, 0x28, 0x22, 0x27, 0xFE, 0x28, 0x04, 0x28, 0x0A, 0x28, 0x10, + 0x28, 0x16, 0x28, 0x1C, 0x28, 0x22, 0x28, 0x28, 0x28, 0x28, 0x28, 0x2E, + 0x28, 0x34, 0x28, 0x34, 0x28, 0x3A, 0x28, 0x40, 0x28, 0x46, 0x28, 0x4C, + 0x28, 0x94, 0x28, 0x52, 0x28, 0x70, 0x28, 0x58, 0x28, 0x5E, 0x28, 0x64, + 0x28, 0x64, 0x28, 0x6A, 0x28, 0x8E, 0x28, 0x70, 0x28, 0x76, 0x28, 0x7C, + 0x28, 0x82, 0x28, 0xAC, 0x28, 0x88, 0x28, 0x8E, 0x28, 0x94, 0x28, 0x9A, + 0x28, 0xA0, 0x28, 0xA6, 0x28, 0xAC, 0x28, 0xB2, 0x28, 0xB2, 0x28, 0xB8, + 0x28, 0xBE, 0x28, 0xBE, 0x28, 0xC4, 0x28, 0xCA, 0x28, 0xD0, 0x28, 0xD6, + 0x28, 0xD6, 0x28, 0xDC, 0x28, 0xE2, 0x28, 0xF4, 0x28, 0xFA, 0x28, 0xFA, + 0x28, 0xE8, 0x28, 0xEE, 0x28, 0xFA, 0x28, 0xF4, 0x28, 0xFA, 0x28, 0xFA, + 0x29, 0x00, 0x29, 0x06, 0x29, 0x0C, 0x29, 0x12, 0x2C, 0x00, 0x29, 0xE4, + 0x2A, 0x38, 0x29, 0x18, 0x29, 0x1E, 0x29, 0xA8, 0x29, 0xB4, 0x29, 0x24, + 0x29, 0x4E, 0x29, 0x2A, 0x29, 0x30, 0x29, 0x4E, 0x29, 0x4E, 0x29, 0x36, + 0x29, 0x3C, 0x29, 0x42, 0x29, 0x5A, 0x29, 0xA8, 0x29, 0x4E, 0x29, 0x66, + 0x29, 0x5A, 0x29, 0x48, 0x29, 0x54, 0x29, 0xA8, 0x29, 0x4E, 0x29, 0x4E, + 0x29, 0x4E, 0x29, 0x4E, 0x29, 0x4E, 0x29, 0x4E, 0x29, 0x4E, 0x29, 0x84, + 0x29, 0x54, 0x29, 0x5A, 0x29, 0x60, 0x29, 0x66, 0x29, 0x6C, 0x29, 0x8A, + 0x29, 0x72, 0x29, 0x78, 0x29, 0x7E, 0x29, 0x84, 0x29, 0x8A, 0x29, 0xBA, + 0x29, 0xBA, 0x29, 0x90, 0x29, 0x96, 0x29, 0x9C, 0x29, 0xCC, 0x29, 0xB4, + 0x29, 0xBA, 0x29, 0xA2, 0x29, 0xCC, 0x29, 0xA8, 0x29, 0xAE, 0x29, 0xB4, + 0x29, 0xBA, 0x29, 0xBA, 0x29, 0xBA, 0x29, 0xBA, 0x29, 0xBA, 0x29, 0xBA, + 0x29, 0xBA, 0x29, 0xC0, 0x29, 0xC6, 0x29, 0xCC, 0x29, 0xD2, 0x2B, 0xF4, + 0x2B, 0xFA, 0x2C, 0x00, 0x2D, 0xBC, 0x2C, 0x06, 0x2C, 0x0C, 0x2C, 0x12, + 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x16, 0xCA, 0x2C, 0x18, 0x2C, 0x1E, + 0x2C, 0x24, 0x2C, 0x2A, 0x29, 0xD8, 0x29, 0xD8, 0x29, 0xDE, 0x29, 0xE4, + 0x29, 0xDE, 0x29, 0xE4, 0x29, 0xEA, 0x29, 0xF0, 0x29, 0xF6, 0x29, 0xFC, + 0x2D, 0xC8, 0x2A, 0x02, 0x2B, 0x52, 0x2B, 0x52, 0x2A, 0x08, 0x2A, 0x0E, + 0x2A, 0x14, 0x2A, 0x1A, 0x2A, 0x1A, 0x2A, 0x20, 0x2B, 0x58, 0x2D, 0xBC, + 0x2B, 0x58, 0x2D, 0xBC, 0x2C, 0x00, 0x2D, 0xBC, 0x2A, 0x26, 0x2A, 0x2C, + 0x2D, 0xCE, 0x2B, 0x70, 0x2C, 0x06, 0x2A, 0x32, 0x2B, 0x76, 0x2A, 0x38, + 0x2B, 0x76, 0x2A, 0x38, 0x2A, 0x38, 0x2A, 0x38, 0x2A, 0x3E, 0x2A, 0x44, + 0x2C, 0x0C, 0x2A, 0x4A, 0x2C, 0x12, 0x2A, 0x50, 0x2C, 0x12, 0x2A, 0x50, + 0x2A, 0x56, 0x2C, 0xAE, 0x2A, 0x5C, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, + 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x62, 0x2D, 0xB0, + 0x2A, 0x68, 0x2A, 0x68, 0x2A, 0x6E, 0x2A, 0x74, 0x2A, 0x74, 0x2A, 0x7A, + 0x2A, 0x7A, 0x2C, 0xB4, 0x2A, 0x80, 0x2A, 0x86, 0x2A, 0x8C, 0x2B, 0x94, + 0x2A, 0x92, 0x2B, 0x94, 0x2A, 0x92, 0x2A, 0x98, 0x2A, 0x98, 0x2B, 0x28, + 0x2B, 0x2E, 0x2B, 0x28, 0x2B, 0x2E, 0x2A, 0x9E, 0x2A, 0xA4, 0x2A, 0xAA, + 0x2A, 0xB0, 0x2A, 0xB6, 0x2A, 0xBC, 0x2A, 0xC2, 0x2A, 0xC2, 0x2A, 0xC8, + 0x2A, 0xCE, 0x2A, 0xD4, 0x2A, 0xDA, 0x2A, 0xDA, 0x2A, 0xE0, 0x2A, 0xE6, + 0x2A, 0xE6, 0x2E, 0x04, 0x2A, 0xE6, 0x2A, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, + 0x2D, 0xE6, 0x2B, 0x46, 0x2A, 0xEC, 0x2D, 0xF8, 0x16, 0x70, 0x16, 0xCA, + 0x2A, 0xF2, 0x2B, 0xB2, 0x2D, 0xA4, 0x2B, 0xB2, 0x2D, 0xA4, 0x2D, 0xA4, + 0x2D, 0xA4, 0x2A, 0xF8, 0x2A, 0xFE, 0x2C, 0x18, 0x2B, 0x04, 0x2C, 0x1E, + 0x2C, 0x1E, 0x2B, 0x34, 0x2C, 0x1E, 0x2B, 0x34, 0x2B, 0x0A, 0x2B, 0x0A, + 0x2C, 0x24, 0x16, 0x70, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x2B, 0x10, 0x2B, 0x16, + 0x2B, 0x16, 0x2B, 0x1C, 0x2B, 0x22, 0x2B, 0x22, 0x2B, 0x28, 0x2B, 0x28, + 0x2B, 0x2E, 0x2B, 0x34, 0x2C, 0x1E, 0x2B, 0x3A, 0x2B, 0x3A, 0x2B, 0x40, + 0x2C, 0x4E, 0x2B, 0x40, 0x2C, 0x4E, 0x2E, 0x04, 0x2B, 0xEE, 0x2D, 0xE6, + 0x2D, 0xE6, 0x2B, 0x46, 0x2B, 0x4C, 0x2B, 0x4C, 0x2C, 0x2A, 0x16, 0x70, + 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, 0x16, 0xCA, + 0x16, 0xCA, 0x16, 0xCA, 0x2B, 0x52, 0x2B, 0x58, 0x2B, 0x5E, 0x2B, 0x64, + 0x2B, 0x6A, 0x2B, 0x70, 0x2B, 0x76, 0x2B, 0x7C, 0x2B, 0x82, 0x2B, 0x88, + 0x2B, 0x8E, 0x2B, 0x94, 0x2B, 0x9A, 0x2B, 0xA0, 0x2B, 0xA6, 0x2B, 0xAC, + 0x2B, 0xB2, 0x2B, 0xB8, 0x2B, 0xBE, 0x2B, 0xC4, 0x2B, 0xCA, 0x2B, 0xD0, + 0x16, 0x70, 0x2B, 0xD6, 0x2D, 0x9E, 0x2D, 0x9E, 0x16, 0xCA, 0x16, 0xCA, + 0x16, 0xCA, 0x2B, 0xDC, 0x2B, 0xE2, 0x2B, 0xE8, 0x2B, 0xEE, 0x2B, 0xF4, + 0x2B, 0xFA, 0x2C, 0x00, 0x2D, 0xBC, 0x2C, 0x06, 0x2C, 0x0C, 0x2C, 0x12, + 0x2D, 0xE6, 0x2D, 0xE6, 0x2D, 0xE6, 0x16, 0xCA, 0x2C, 0x18, 0x2C, 0x1E, + 0x2C, 0x24, 0x2C, 0x2A, 0x2C, 0x36, 0x2C, 0x36, 0x2C, 0x30, 0x2C, 0x36, + 0x2C, 0x3C, 0x2C, 0x42, 0x2C, 0x48, 0x2C, 0xAE, 0x2C, 0x4E, 0x2C, 0x54, + 0x2D, 0x32, 0x2C, 0x5A, 0x2C, 0x60, 0x2C, 0x66, 0x2C, 0x6C, 0x2C, 0x72, + 0x2C, 0x78, 0x2D, 0x7A, 0x2C, 0x7E, 0x2D, 0x1A, 0x2C, 0x8A, 0x2C, 0x84, + 0x2C, 0x8A, 0x2C, 0x8A, 0x2C, 0x90, 0x2C, 0x96, 0x2D, 0xC2, 0x2C, 0xAE, + 0x2C, 0x9C, 0x2D, 0xB6, 0x2C, 0xA2, 0x2C, 0xA8, 0x2D, 0xC2, 0x2C, 0xAE, + 0x2C, 0xB4, 0x2C, 0xB4, 0x2D, 0xBC, 0x2C, 0xBA, 0x2C, 0xC0, 0x2C, 0xC6, + 0x2C, 0xCC, 0x2C, 0xD2, 0x2C, 0xD8, 0x2C, 0xDE, 0x2C, 0xE4, 0x2C, 0xEA, + 0x2D, 0xB6, 0x2C, 0xF0, 0x2C, 0xF6, 0x2C, 0xFC, 0x2C, 0xFC, 0x2D, 0x02, + 0x2D, 0x02, 0x2D, 0x08, 0x2D, 0x0E, 0x2D, 0x14, 0x2D, 0xEC, 0x2D, 0x1A, + 0x2D, 0x20, 0x2D, 0x26, 0x2D, 0x2C, 0x2D, 0x32, 0x2D, 0x38, 0x2D, 0x3E, + 0x2D, 0x44, 0x2D, 0x4A, 0x2D, 0x50, 0x2D, 0xA4, 0x2D, 0x56, 0x2D, 0x5C, + 0x2D, 0x62, 0x2D, 0x68, 0x2D, 0x6E, 0x2D, 0x74, 0x2D, 0xC2, 0x2D, 0x74, + 0x2D, 0x7A, 0x2D, 0x80, 0x2D, 0xEC, 0x2D, 0x80, 0x2D, 0x86, 0x2D, 0x8C, + 0x2D, 0x92, 0x2D, 0x98, 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0xA4, 0x16, 0xCA, + 0x16, 0xCA, 0x2D, 0xAA, 0x2D, 0xBC, 0x2D, 0xB0, 0x2D, 0xB6, 0x2D, 0xBC, + 0x2D, 0xC2, 0x2D, 0xC8, 0x2D, 0xCE, 0x2D, 0xD4, 0x2D, 0xDA, 0x2D, 0xE0, + 0x2D, 0xE6, 0x2D, 0xEC, 0x2D, 0xF2, 0x2D, 0xF8, 0x2D, 0xFE, 0x2E, 0x04, + 0x2E, 0x0A, 0x2E, 0x10, 0x2E, 0x16, 0x00, 0x02, 0x00, 0x41, 0x01, 0x8A, + 0x01, 0x8B, 0x00, 0x00, 0x03, 0x95, 0x03, 0x95, 0x00, 0x02, 0x04, 0x09, + 0x04, 0x09, 0x00, 0x03, 0x05, 0x1B, 0x05, 0x1C, 0x00, 0x04, 0x05, 0x25, + 0x05, 0x25, 0x00, 0x06, 0x05, 0x2D, 0x05, 0x2F, 0x00, 0x07, 0x05, 0x32, + 0x05, 0x32, 0x00, 0x0A, 0x05, 0x36, 0x05, 0x36, 0x00, 0x0B, 0x05, 0x39, + 0x05, 0x3D, 0x00, 0x0C, 0x05, 0x3F, 0x05, 0x40, 0x00, 0x11, 0x05, 0x44, + 0x05, 0x4C, 0x00, 0x13, 0x05, 0x68, 0x05, 0x68, 0x00, 0x1C, 0x05, 0x6A, + 0x05, 0x6A, 0x00, 0x1D, 0x05, 0x6C, 0x05, 0x6C, 0x00, 0x1E, 0x05, 0x6F, + 0x05, 0x6F, 0x00, 0x1F, 0x05, 0x80, 0x05, 0x8B, 0x00, 0x20, 0x05, 0x95, + 0x05, 0x95, 0x00, 0x2C, 0x05, 0x98, 0x05, 0x9D, 0x00, 0x2D, 0x05, 0x9F, + 0x05, 0x9F, 0x00, 0x33, 0x05, 0xA1, 0x05, 0xA4, 0x00, 0x34, 0x05, 0xA6, + 0x05, 0xA6, 0x00, 0x38, 0x05, 0xA8, 0x05, 0xA8, 0x00, 0x39, 0x05, 0xAD, + 0x05, 0xAE, 0x00, 0x3A, 0x05, 0xB0, 0x05, 0xB1, 0x00, 0x3C, 0x05, 0xB6, + 0x05, 0xBB, 0x00, 0x3E, 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x44, 0x05, 0xC1, + 0x05, 0xC2, 0x00, 0x45, 0x05, 0xC8, 0x05, 0xCF, 0x00, 0x47, 0x05, 0xD4, + 0x05, 0xD4, 0x00, 0x4F, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x50, 0x05, 0xDF, + 0x05, 0xDF, 0x00, 0x53, 0x05, 0xE2, 0x05, 0xE4, 0x00, 0x54, 0x05, 0xE6, + 0x05, 0xE9, 0x00, 0x57, 0x05, 0xEC, 0x05, 0xF6, 0x00, 0x5B, 0x05, 0xF9, + 0x06, 0x03, 0x00, 0x66, 0x06, 0x06, 0x06, 0x0C, 0x00, 0x71, 0x06, 0x0E, + 0x06, 0x0F, 0x00, 0x78, 0x06, 0x15, 0x06, 0x15, 0x00, 0x7A, 0x06, 0x1A, + 0x06, 0x1B, 0x00, 0x7B, 0x06, 0x3F, 0x06, 0x4E, 0x00, 0x7D, 0x06, 0x53, + 0x06, 0x54, 0x00, 0x8D, 0x06, 0x70, 0x06, 0x81, 0x00, 0x8F, 0x06, 0x84, + 0x06, 0x89, 0x00, 0xA1, 0x06, 0x8C, 0x06, 0x8C, 0x00, 0xA7, 0x06, 0x8F, + 0x06, 0x90, 0x00, 0xA8, 0x06, 0x93, 0x06, 0x94, 0x00, 0xAA, 0x06, 0x96, + 0x06, 0x97, 0x00, 0xAC, 0x06, 0x9D, 0x06, 0x9F, 0x00, 0xAE, 0x06, 0xA3, + 0x06, 0xA4, 0x00, 0xB1, 0x06, 0xAE, 0x06, 0xAE, 0x00, 0xB3, 0x06, 0xB6, + 0x06, 0xB8, 0x00, 0xB4, 0x07, 0x06, 0x07, 0x0A, 0x00, 0xB7, 0x07, 0x1E, + 0x07, 0x22, 0x00, 0xBC, 0x07, 0x33, 0x07, 0x33, 0x00, 0xC1, 0x07, 0x37, + 0x07, 0x37, 0x00, 0xC2, 0x07, 0x3A, 0x07, 0x41, 0x00, 0xC3, 0x07, 0x5C, + 0x07, 0x5C, 0x00, 0xCB, 0x07, 0xF8, 0x07, 0xFE, 0x00, 0xCC, 0x08, 0x01, + 0x08, 0x02, 0x00, 0xD3, 0x08, 0xCA, 0x08, 0xCF, 0x00, 0xD5, 0x08, 0xD1, + 0x08, 0xD3, 0x00, 0xDB, 0x09, 0x0E, 0x09, 0x15, 0x00, 0xDE, 0x0A, 0x15, + 0x0A, 0x15, 0x00, 0xE6, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0xE7, 0x0B, 0x48, + 0x0B, 0x48, 0x00, 0xE9, 0x00, 0x02, 0x00, 0x91, 0x01, 0x8A, 0x01, 0x8B, + 0x00, 0x1B, 0x03, 0x95, 0x03, 0x95, 0x00, 0x2F, 0x04, 0x09, 0x04, 0x09, + 0x00, 0x08, 0x05, 0x1B, 0x05, 0x1B, 0x00, 0x2B, 0x05, 0x1C, 0x05, 0x1C, + 0x00, 0x10, 0x05, 0x25, 0x05, 0x25, 0x00, 0x35, 0x05, 0x2D, 0x05, 0x2D, + 0x00, 0x2E, 0x05, 0x2E, 0x05, 0x2F, 0x00, 0x1D, 0x05, 0x32, 0x05, 0x32, + 0x00, 0x10, 0x05, 0x36, 0x05, 0x36, 0x00, 0x36, 0x05, 0x39, 0x05, 0x3A, + 0x00, 0x1C, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x19, 0x05, 0x3C, 0x05, 0x3C, + 0x00, 0x04, 0x05, 0x3D, 0x05, 0x3D, 0x00, 0x40, 0x05, 0x3F, 0x05, 0x3F, + 0x00, 0x17, 0x05, 0x40, 0x05, 0x40, 0x00, 0x1F, 0x05, 0x44, 0x05, 0x44, + 0x00, 0x37, 0x05, 0x45, 0x05, 0x45, 0x00, 0x17, 0x05, 0x46, 0x05, 0x47, + 0x00, 0x19, 0x05, 0x48, 0x05, 0x48, 0x00, 0x33, 0x05, 0x49, 0x05, 0x49, + 0x00, 0x17, 0x05, 0x4A, 0x05, 0x4A, 0x00, 0x1F, 0x05, 0x4B, 0x05, 0x4B, + 0x00, 0x3C, 0x05, 0x4C, 0x05, 0x4C, 0x00, 0x31, 0x05, 0x68, 0x05, 0x68, + 0x00, 0x09, 0x05, 0x6A, 0x05, 0x6A, 0x00, 0x09, 0x05, 0x6C, 0x05, 0x6C, + 0x00, 0x09, 0x05, 0x80, 0x05, 0x83, 0x00, 0x01, 0x05, 0x86, 0x05, 0x86, + 0x00, 0x03, 0x05, 0x88, 0x05, 0x89, 0x00, 0x01, 0x05, 0x8B, 0x05, 0x8B, + 0x00, 0x03, 0x05, 0x95, 0x05, 0x95, 0x00, 0x18, 0x05, 0x98, 0x05, 0x98, + 0x00, 0x24, 0x05, 0x99, 0x05, 0x99, 0x00, 0x18, 0x05, 0x9A, 0x05, 0x9A, + 0x00, 0x24, 0x05, 0x9B, 0x05, 0x9B, 0x00, 0x12, 0x05, 0x9C, 0x05, 0x9C, + 0x00, 0x13, 0x05, 0x9D, 0x05, 0x9D, 0x00, 0x12, 0x05, 0x9F, 0x05, 0x9F, + 0x00, 0x13, 0x05, 0xA1, 0x05, 0xA1, 0x00, 0x12, 0x05, 0xA2, 0x05, 0xA2, + 0x00, 0x13, 0x05, 0xA3, 0x05, 0xA3, 0x00, 0x0D, 0x05, 0xA4, 0x05, 0xA4, + 0x00, 0x09, 0x05, 0xA6, 0x05, 0xA6, 0x00, 0x09, 0x05, 0xA8, 0x05, 0xA8, + 0x00, 0x09, 0x05, 0xAD, 0x05, 0xAD, 0x00, 0x3F, 0x05, 0xAE, 0x05, 0xAE, + 0x00, 0x04, 0x05, 0xB0, 0x05, 0xB0, 0x00, 0x08, 0x05, 0xB6, 0x05, 0xB9, + 0x00, 0x03, 0x05, 0xBA, 0x05, 0xBA, 0x00, 0x2A, 0x05, 0xBB, 0x05, 0xBB, + 0x00, 0x03, 0x05, 0xC1, 0x05, 0xC2, 0x00, 0x03, 0x05, 0xC8, 0x05, 0xC8, + 0x00, 0x0E, 0x05, 0xC9, 0x05, 0xC9, 0x00, 0x0B, 0x05, 0xCA, 0x05, 0xCB, + 0x00, 0x0C, 0x05, 0xCC, 0x05, 0xCC, 0x00, 0x0E, 0x05, 0xCD, 0x05, 0xCD, + 0x00, 0x0B, 0x05, 0xCE, 0x05, 0xCF, 0x00, 0x0A, 0x05, 0xD4, 0x05, 0xD4, + 0x00, 0x0B, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x07, 0x05, 0xDF, 0x05, 0xDF, + 0x00, 0x05, 0x05, 0xE2, 0x05, 0xE2, 0x00, 0x05, 0x05, 0xE4, 0x05, 0xE4, + 0x00, 0x0C, 0x05, 0xE6, 0x05, 0xE6, 0x00, 0x22, 0x05, 0xE7, 0x05, 0xE7, + 0x00, 0x23, 0x05, 0xE8, 0x05, 0xE8, 0x00, 0x22, 0x05, 0xE9, 0x05, 0xE9, + 0x00, 0x23, 0x05, 0xEC, 0x05, 0xEF, 0x00, 0x01, 0x05, 0xF2, 0x05, 0xF2, + 0x00, 0x03, 0x05, 0xF4, 0x05, 0xF5, 0x00, 0x01, 0x05, 0xF9, 0x05, 0xFC, + 0x00, 0x01, 0x05, 0xFF, 0x05, 0xFF, 0x00, 0x03, 0x06, 0x01, 0x06, 0x02, + 0x00, 0x01, 0x06, 0x06, 0x06, 0x07, 0x00, 0x16, 0x06, 0x08, 0x06, 0x09, + 0x00, 0x11, 0x06, 0x0A, 0x06, 0x0A, 0x00, 0x03, 0x06, 0x0B, 0x06, 0x0B, + 0x00, 0x28, 0x06, 0x0C, 0x06, 0x0C, 0x00, 0x0D, 0x06, 0x0E, 0x06, 0x0E, + 0x00, 0x28, 0x06, 0x0F, 0x06, 0x0F, 0x00, 0x16, 0x06, 0x15, 0x06, 0x15, + 0x00, 0x11, 0x06, 0x1A, 0x06, 0x1A, 0x00, 0x04, 0x06, 0x1B, 0x06, 0x1B, + 0x00, 0x34, 0x06, 0x3F, 0x06, 0x40, 0x00, 0x06, 0x06, 0x41, 0x06, 0x42, + 0x00, 0x27, 0x06, 0x43, 0x06, 0x43, 0x00, 0x42, 0x06, 0x44, 0x06, 0x45, + 0x00, 0x06, 0x06, 0x46, 0x06, 0x47, 0x00, 0x21, 0x06, 0x48, 0x06, 0x49, + 0x00, 0x06, 0x06, 0x4A, 0x06, 0x4A, 0x00, 0x3E, 0x06, 0x4B, 0x06, 0x4B, + 0x00, 0x3A, 0x06, 0x4C, 0x06, 0x4D, 0x00, 0x06, 0x06, 0x4E, 0x06, 0x4E, + 0x00, 0x32, 0x06, 0x53, 0x06, 0x54, 0x00, 0x25, 0x06, 0x70, 0x06, 0x75, + 0x00, 0x02, 0x06, 0x76, 0x06, 0x76, 0x00, 0x1E, 0x06, 0x77, 0x06, 0x78, + 0x00, 0x02, 0x06, 0x79, 0x06, 0x79, 0x00, 0x1E, 0x06, 0x7A, 0x06, 0x7A, + 0x00, 0x02, 0x06, 0x7B, 0x06, 0x7B, 0x00, 0x3D, 0x06, 0x7C, 0x06, 0x7C, + 0x00, 0x39, 0x06, 0x7D, 0x06, 0x81, 0x00, 0x02, 0x06, 0x84, 0x06, 0x86, + 0x00, 0x02, 0x06, 0x87, 0x06, 0x87, 0x00, 0x2D, 0x06, 0x88, 0x06, 0x89, + 0x00, 0x1A, 0x06, 0x8C, 0x06, 0x8C, 0x00, 0x41, 0x06, 0x8F, 0x06, 0x90, + 0x00, 0x20, 0x06, 0x93, 0x06, 0x93, 0x00, 0x3B, 0x06, 0x94, 0x06, 0x94, + 0x00, 0x38, 0x06, 0x96, 0x06, 0x96, 0x00, 0x1A, 0x06, 0x97, 0x06, 0x97, + 0x00, 0x30, 0x06, 0x9D, 0x06, 0x9F, 0x00, 0x14, 0x06, 0xA3, 0x06, 0xA4, + 0x00, 0x26, 0x06, 0xAE, 0x06, 0xAE, 0x00, 0x2C, 0x06, 0xB6, 0x06, 0xB8, + 0x00, 0x15, 0x07, 0x09, 0x07, 0x0A, 0x00, 0x01, 0x07, 0x21, 0x07, 0x22, + 0x00, 0x01, 0x07, 0x33, 0x07, 0x33, 0x00, 0x08, 0x07, 0x37, 0x07, 0x37, + 0x00, 0x08, 0x07, 0x3A, 0x07, 0x3A, 0x00, 0x08, 0x07, 0x3B, 0x07, 0x3C, + 0x00, 0x0D, 0x07, 0x3D, 0x07, 0x41, 0x00, 0x04, 0x07, 0x5C, 0x07, 0x5C, + 0x00, 0x04, 0x07, 0xF8, 0x07, 0xF8, 0x00, 0x07, 0x07, 0xF9, 0x07, 0xFA, + 0x00, 0x05, 0x07, 0xFB, 0x07, 0xFB, 0x00, 0x0E, 0x07, 0xFC, 0x07, 0xFC, + 0x00, 0x0B, 0x07, 0xFD, 0x07, 0xFD, 0x00, 0x0E, 0x07, 0xFE, 0x07, 0xFE, + 0x00, 0x0B, 0x08, 0x01, 0x08, 0x02, 0x00, 0x0A, 0x08, 0xCA, 0x08, 0xCA, + 0x00, 0x0C, 0x08, 0xCB, 0x08, 0xCC, 0x00, 0x07, 0x08, 0xCD, 0x08, 0xCE, + 0x00, 0x05, 0x08, 0xCF, 0x08, 0xCF, 0x00, 0x07, 0x08, 0xD1, 0x08, 0xD1, + 0x00, 0x18, 0x08, 0xD3, 0x08, 0xD3, 0x00, 0x05, 0x09, 0x0E, 0x09, 0x0F, + 0x00, 0x0A, 0x09, 0x10, 0x09, 0x10, 0x00, 0x0F, 0x09, 0x11, 0x09, 0x11, + 0x00, 0x29, 0x09, 0x12, 0x09, 0x12, 0x00, 0x0F, 0x09, 0x13, 0x09, 0x13, + 0x00, 0x29, 0x09, 0x14, 0x09, 0x15, 0x00, 0x0F, 0x0A, 0x15, 0x0A, 0x15, + 0x00, 0x05, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x03, 0x0B, 0x48, 0x0B, 0x48, + 0x00, 0x04, 0x00, 0x02, 0x00, 0x98, 0x01, 0x8A, 0x01, 0x8B, 0x00, 0x03, + 0x02, 0x65, 0x02, 0x65, 0x00, 0x0F, 0x03, 0x95, 0x03, 0x95, 0x00, 0x34, + 0x04, 0x09, 0x04, 0x09, 0x00, 0x0B, 0x05, 0x1B, 0x05, 0x1B, 0x00, 0x2D, + 0x05, 0x1C, 0x05, 0x1C, 0x00, 0x0F, 0x05, 0x25, 0x05, 0x25, 0x00, 0x03, + 0x05, 0x2D, 0x05, 0x2F, 0x00, 0x07, 0x05, 0x36, 0x05, 0x36, 0x00, 0x03, + 0x05, 0x39, 0x05, 0x3A, 0x00, 0x03, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x15, + 0x05, 0x3C, 0x05, 0x3C, 0x00, 0x20, 0x05, 0x3D, 0x05, 0x3D, 0x00, 0x40, + 0x05, 0x3F, 0x05, 0x3F, 0x00, 0x28, 0x05, 0x40, 0x05, 0x40, 0x00, 0x18, + 0x05, 0x43, 0x05, 0x43, 0x00, 0x15, 0x05, 0x44, 0x05, 0x44, 0x00, 0x37, + 0x05, 0x45, 0x05, 0x45, 0x00, 0x2E, 0x05, 0x47, 0x05, 0x47, 0x00, 0x15, + 0x05, 0x48, 0x05, 0x48, 0x00, 0x20, 0x05, 0x49, 0x05, 0x49, 0x00, 0x28, + 0x05, 0x4A, 0x05, 0x4A, 0x00, 0x18, 0x05, 0x4B, 0x05, 0x4B, 0x00, 0x3C, + 0x05, 0x4C, 0x05, 0x4C, 0x00, 0x1F, 0x05, 0x6F, 0x05, 0x6F, 0x00, 0x01, + 0x05, 0x80, 0x05, 0x83, 0x00, 0x02, 0x05, 0x84, 0x05, 0x85, 0x00, 0x01, + 0x05, 0x86, 0x05, 0x86, 0x00, 0x05, 0x05, 0x87, 0x05, 0x87, 0x00, 0x01, + 0x05, 0x88, 0x05, 0x89, 0x00, 0x02, 0x05, 0x8A, 0x05, 0x8A, 0x00, 0x01, + 0x05, 0x8B, 0x05, 0x8B, 0x00, 0x05, 0x05, 0x90, 0x05, 0x90, 0x00, 0x31, + 0x05, 0x95, 0x05, 0x95, 0x00, 0x14, 0x05, 0x98, 0x05, 0x98, 0x00, 0x1E, + 0x05, 0x99, 0x05, 0x99, 0x00, 0x14, 0x05, 0x9A, 0x05, 0x9A, 0x00, 0x1E, + 0x05, 0x9C, 0x05, 0x9C, 0x00, 0x11, 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x11, + 0x05, 0xA2, 0x05, 0xA2, 0x00, 0x11, 0x05, 0xA3, 0x05, 0xA3, 0x00, 0x07, + 0x05, 0xAD, 0x05, 0xAD, 0x00, 0x3F, 0x05, 0xAE, 0x05, 0xAE, 0x00, 0x03, + 0x05, 0xB0, 0x05, 0xB0, 0x00, 0x2B, 0x05, 0xB1, 0x05, 0xB1, 0x00, 0x01, + 0x05, 0xB6, 0x05, 0xBA, 0x00, 0x05, 0x05, 0xBB, 0x05, 0xBB, 0x00, 0x2C, + 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x01, 0x05, 0xC1, 0x05, 0xC2, 0x00, 0x05, + 0x05, 0xC8, 0x05, 0xC8, 0x00, 0x0E, 0x05, 0xC9, 0x05, 0xC9, 0x00, 0x0C, + 0x05, 0xCA, 0x05, 0xCB, 0x00, 0x0D, 0x05, 0xCC, 0x05, 0xCC, 0x00, 0x0E, + 0x05, 0xCD, 0x05, 0xCD, 0x00, 0x0C, 0x05, 0xCE, 0x05, 0xCF, 0x00, 0x0A, + 0x05, 0xD4, 0x05, 0xD4, 0x00, 0x0C, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x08, + 0x05, 0xDF, 0x05, 0xE2, 0x00, 0x06, 0x05, 0xE3, 0x05, 0xE3, 0x00, 0x01, + 0x05, 0xE4, 0x05, 0xE4, 0x00, 0x0D, 0x05, 0xE6, 0x05, 0xE6, 0x00, 0x1C, + 0x05, 0xE7, 0x05, 0xE7, 0x00, 0x1D, 0x05, 0xE8, 0x05, 0xE8, 0x00, 0x1C, + 0x05, 0xE9, 0x05, 0xE9, 0x00, 0x1D, 0x05, 0xEC, 0x05, 0xEF, 0x00, 0x02, + 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x01, 0x05, 0xF2, 0x05, 0xF2, 0x00, 0x05, + 0x05, 0xF3, 0x05, 0xF3, 0x00, 0x01, 0x05, 0xF4, 0x05, 0xF5, 0x00, 0x02, + 0x05, 0xF6, 0x05, 0xF6, 0x00, 0x01, 0x05, 0xF9, 0x05, 0xFC, 0x00, 0x02, + 0x05, 0xFD, 0x05, 0xFE, 0x00, 0x01, 0x05, 0xFF, 0x05, 0xFF, 0x00, 0x05, + 0x06, 0x00, 0x06, 0x00, 0x00, 0x01, 0x06, 0x01, 0x06, 0x02, 0x00, 0x02, + 0x06, 0x03, 0x06, 0x04, 0x00, 0x01, 0x06, 0x06, 0x06, 0x07, 0x00, 0x13, + 0x06, 0x08, 0x06, 0x09, 0x00, 0x10, 0x06, 0x0A, 0x06, 0x0A, 0x00, 0x05, + 0x06, 0x0B, 0x06, 0x0B, 0x00, 0x24, 0x06, 0x0C, 0x06, 0x0C, 0x00, 0x07, + 0x06, 0x0E, 0x06, 0x0E, 0x00, 0x24, 0x06, 0x0F, 0x06, 0x0F, 0x00, 0x13, + 0x06, 0x15, 0x06, 0x15, 0x00, 0x10, 0x06, 0x1A, 0x06, 0x1A, 0x00, 0x1F, + 0x06, 0x1B, 0x06, 0x1B, 0x00, 0x03, 0x06, 0x21, 0x06, 0x21, 0x00, 0x33, + 0x06, 0x3F, 0x06, 0x40, 0x00, 0x09, 0x06, 0x41, 0x06, 0x42, 0x00, 0x23, + 0x06, 0x43, 0x06, 0x43, 0x00, 0x41, 0x06, 0x44, 0x06, 0x45, 0x00, 0x2A, + 0x06, 0x46, 0x06, 0x47, 0x00, 0x1B, 0x06, 0x48, 0x06, 0x49, 0x00, 0x09, + 0x06, 0x4A, 0x06, 0x4A, 0x00, 0x3E, 0x06, 0x4B, 0x06, 0x4B, 0x00, 0x3A, + 0x06, 0x4C, 0x06, 0x4D, 0x00, 0x09, 0x06, 0x4E, 0x06, 0x4E, 0x00, 0x35, + 0x06, 0x50, 0x06, 0x50, 0x00, 0x17, 0x06, 0x52, 0x06, 0x52, 0x00, 0x17, + 0x06, 0x70, 0x06, 0x75, 0x00, 0x04, 0x06, 0x77, 0x06, 0x78, 0x00, 0x1A, + 0x06, 0x7A, 0x06, 0x7A, 0x00, 0x04, 0x06, 0x7B, 0x06, 0x7B, 0x00, 0x3D, + 0x06, 0x7C, 0x06, 0x7C, 0x00, 0x39, 0x06, 0x7D, 0x06, 0x81, 0x00, 0x04, + 0x06, 0x84, 0x06, 0x86, 0x00, 0x04, 0x06, 0x87, 0x06, 0x87, 0x00, 0x32, + 0x06, 0x88, 0x06, 0x89, 0x00, 0x16, 0x06, 0x8A, 0x06, 0x8B, 0x00, 0x21, + 0x06, 0x8D, 0x06, 0x8E, 0x00, 0x29, 0x06, 0x8F, 0x06, 0x90, 0x00, 0x19, + 0x06, 0x92, 0x06, 0x92, 0x00, 0x16, 0x06, 0x93, 0x06, 0x93, 0x00, 0x3B, + 0x06, 0x94, 0x06, 0x94, 0x00, 0x38, 0x06, 0x95, 0x06, 0x95, 0x00, 0x2F, + 0x06, 0x9D, 0x06, 0x9F, 0x00, 0x12, 0x06, 0xA3, 0x06, 0xA4, 0x00, 0x22, + 0x06, 0xAE, 0x06, 0xAE, 0x00, 0x30, 0x06, 0xFF, 0x06, 0xFF, 0x00, 0x03, + 0x07, 0x0B, 0x07, 0x0D, 0x00, 0x01, 0x07, 0x0E, 0x07, 0x0F, 0x00, 0x02, + 0x07, 0x33, 0x07, 0x33, 0x00, 0x0B, 0x07, 0x37, 0x07, 0x37, 0x00, 0x0B, + 0x07, 0x3A, 0x07, 0x3A, 0x00, 0x0B, 0x07, 0x3B, 0x07, 0x3C, 0x00, 0x07, + 0x07, 0x3D, 0x07, 0x41, 0x00, 0x03, 0x07, 0x55, 0x07, 0x55, 0x00, 0x36, + 0x07, 0x5C, 0x07, 0x5C, 0x00, 0x03, 0x07, 0xF8, 0x07, 0xF8, 0x00, 0x08, + 0x07, 0xF9, 0x07, 0xFA, 0x00, 0x06, 0x07, 0xFB, 0x07, 0xFB, 0x00, 0x0E, + 0x07, 0xFC, 0x07, 0xFC, 0x00, 0x0C, 0x07, 0xFD, 0x07, 0xFD, 0x00, 0x0E, + 0x07, 0xFE, 0x07, 0xFE, 0x00, 0x0C, 0x08, 0x01, 0x08, 0x02, 0x00, 0x0A, + 0x08, 0xCA, 0x08, 0xCA, 0x00, 0x0D, 0x08, 0xCB, 0x08, 0xCC, 0x00, 0x08, + 0x08, 0xCD, 0x08, 0xCE, 0x00, 0x06, 0x08, 0xCF, 0x08, 0xCF, 0x00, 0x08, + 0x08, 0xD1, 0x08, 0xD1, 0x00, 0x14, 0x08, 0xD2, 0x08, 0xD2, 0x00, 0x01, + 0x08, 0xD3, 0x08, 0xD3, 0x00, 0x06, 0x08, 0xD5, 0x08, 0xD5, 0x00, 0x06, + 0x09, 0x0E, 0x09, 0x0F, 0x00, 0x0A, 0x09, 0x10, 0x09, 0x10, 0x00, 0x25, + 0x09, 0x11, 0x09, 0x11, 0x00, 0x27, 0x09, 0x12, 0x09, 0x12, 0x00, 0x25, + 0x09, 0x13, 0x09, 0x13, 0x00, 0x27, 0x09, 0x14, 0x09, 0x15, 0x00, 0x26, + 0x0A, 0x15, 0x0A, 0x15, 0x00, 0x06, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x05, + 0x0B, 0x48, 0x0B, 0x48, 0x00, 0x03, 0x00, 0x01, 0xFD, 0x80, 0x06, 0x94, + 0x00, 0x01, 0x01, 0x3D, 0x00, 0x00, 0x00, 0x01, 0x01, 0xD1, 0x00, 0x00, + 0x00, 0x01, 0xFD, 0x86, 0x07, 0x1A, 0x00, 0x01, 0xFD, 0x82, 0x07, 0xE2, + 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01, 0xFD, 0x86, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xD5, 0x00, 0x00, + 0x00, 0x01, 0xFD, 0x7B, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xEC, 0x00, 0x00, + 0x00, 0x01, 0x00, 0xCA, 0x05, 0xE8, 0x00, 0x01, 0x01, 0x8F, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x45, 0x05, 0xE8, 0x00, 0x01, 0x01, 0xA1, 0x05, 0xA2, + 0x00, 0x01, 0x01, 0xF2, 0x05, 0xD8, 0x00, 0x01, 0x01, 0x01, 0x05, 0xDA, + 0x00, 0x01, 0x01, 0x01, 0x05, 0xEF, 0x00, 0x01, 0x01, 0xA5, 0x05, 0xE8, + 0x00, 0x01, 0x01, 0xAB, 0x05, 0xE8, 0x00, 0x01, 0x01, 0xAB, 0x05, 0xD5, + 0x00, 0x01, 0x02, 0x53, 0x05, 0xE0, 0x00, 0x01, 0x02, 0x53, 0x05, 0xDA, + 0x00, 0x01, 0x00, 0xCA, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x8F, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xF1, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x01, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xA5, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x56, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x1D, 0x04, 0x2E, 0x00, 0x01, 0x00, 0x95, 0x04, 0x2E, + 0x00, 0x01, 0xFD, 0xAC, 0x05, 0x18, 0x00, 0x01, 0xFD, 0xA3, 0x05, 0x18, + 0x00, 0x01, 0x01, 0x56, 0x05, 0xD2, 0x00, 0x01, 0x01, 0xAB, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xA1, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x45, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x53, 0x04, 0x2E, 0x00, 0x01, 0x02, 0xD9, 0x05, 0xD1, + 0x00, 0x01, 0x02, 0x5D, 0x00, 0x00, 0x00, 0x01, 0x03, 0xE1, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xFB, 0x00, 0x00, 0x00, 0x01, 0x05, 0x19, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x1D, 0x00, 0x00, 0x00, 0x01, 0x03, 0xD2, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xAF, 0x00, 0x00, 0x00, 0x01, 0x01, 0x34, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x7B, 0x00, 0x00, 0x00, 0x01, 0x03, 0x9D, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x12, 0x00, 0x00, 0x00, 0x01, 0x05, 0xD5, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x8F, 0x00, 0x00, 0x00, 0x01, 0x03, 0xB2, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x0F, 0x00, 0x00, 0x00, 0x01, 0x01, 0x0A, 0x04, 0x2E, + 0x00, 0x01, 0x06, 0x63, 0x00, 0x00, 0x00, 0x01, 0x06, 0xEF, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x8C, 0x03, 0x69, 0x00, 0x01, 0x01, 0x47, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x8C, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0x47, 0xFE, 0xB9, + 0x00, 0x01, 0x05, 0x38, 0xFF, 0xFD, 0x00, 0x01, 0x01, 0x90, 0x03, 0x8B, + 0x00, 0x01, 0x05, 0x47, 0xFF, 0xFB, 0x00, 0x01, 0x05, 0x30, 0xFF, 0xFB, + 0x00, 0x01, 0x06, 0x72, 0x00, 0x01, 0x00, 0x01, 0x05, 0x84, 0x00, 0x01, + 0x00, 0x01, 0x05, 0x94, 0x00, 0x00, 0x00, 0x01, 0x03, 0xB2, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x7B, 0x00, 0x01, 0x00, 0x01, 0x03, 0xA9, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x85, 0x00, 0x00, 0x00, 0x01, 0x02, 0x94, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x15, 0x00, 0x00, 0x00, 0x01, 0x01, 0xC4, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x75, 0x00, 0x00, 0x00, 0x01, 0x02, 0x8B, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x8B, 0x00, 0x00, 0x00, 0x01, 0x01, 0xF9, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xD9, 0x00, 0x01, 0x00, 0x01, 0x02, 0xF9, 0x00, 0x01, + 0x00, 0x01, 0x05, 0x09, 0x00, 0x00, 0x00, 0x01, 0x03, 0xCD, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x66, 0x00, 0x00, 0x00, 0x01, 0x02, 0x4E, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x9A, 0x00, 0x00, 0x00, 0x01, 0x03, 0x89, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x30, 0x00, 0x00, 0x00, 0x01, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x4D, 0x00, 0xD3, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x90, 0x03, 0x69, 0x00, 0x01, 0x00, 0xC1, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x74, 0x03, 0x69, 0x00, 0x01, 0x01, 0x90, 0xFE, 0xB9, + 0x00, 0x01, 0x00, 0xC1, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0x74, 0xFE, 0xB9, + 0x00, 0x01, 0x05, 0x8F, 0x00, 0x00, 0x00, 0x01, 0x05, 0x91, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x88, 0x00, 0x00, 0x00, 0x01, 0x02, 0x62, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x20, 0x00, 0x00, 0x00, 0x01, 0x02, 0x47, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x53, 0x00, 0x00, 0x00, 0x01, 0x01, 0x06, 0x00, 0x00, + 0x00, 0x01, 0x00, 0xF4, 0x00, 0x00, 0x00, 0x01, 0x02, 0x4D, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xB1, 0x00, 0x00, 0x00, 0x01, 0x05, 0xAA, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xB2, 0x00, 0x00, 0x00, 0x01, 0x06, 0xA0, 0x00, 0x00, + 0x00, 0x01, 0x06, 0xBF, 0x00, 0x00, 0x00, 0x01, 0x06, 0xAE, 0x00, 0x00, + 0x00, 0x01, 0x06, 0xC2, 0x00, 0x00, 0x00, 0x01, 0x06, 0x25, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x38, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4E, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0xC7, 0x00, 0x00, 0x00, 0x01, 0x05, 0xDB, 0x00, 0x00, + 0x00, 0x01, 0x06, 0xF5, 0x00, 0x00, 0x00, 0x01, 0x07, 0x13, 0x00, 0x00, + 0x00, 0x01, 0x07, 0x02, 0x00, 0x00, 0x00, 0x01, 0x07, 0x16, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xCC, 0x00, 0x00, 0x00, 0x01, 0x05, 0xA9, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xDE, 0x00, 0x00, 0x00, 0x01, 0x02, 0xD3, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xE7, 0x00, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x1F, 0x00, 0x00, 0x00, 0x01, 0x04, 0x0E, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x22, 0x00, 0x00, 0x00, 0x01, 0x03, 0x85, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x98, 0x00, 0x00, 0x00, 0x01, 0x04, 0x6B, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xA7, 0x00, 0x00, 0x00, 0x01, 0x05, 0x1C, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x2D, 0x00, 0x00, 0x00, 0x01, 0x06, 0x94, 0x02, 0xE8, + 0x00, 0x01, 0x06, 0xA8, 0x02, 0xE8, 0x00, 0x01, 0x07, 0xC1, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xDF, 0x02, 0xE8, 0x00, 0x01, 0x07, 0xCF, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xE3, 0x02, 0xE8, 0x00, 0x01, 0x06, 0x76, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xCF, 0x00, 0x00, 0x00, 0x01, 0x05, 0x49, 0x02, 0x03, + 0x00, 0x01, 0x06, 0x41, 0x00, 0x00, 0x00, 0x01, 0x06, 0x45, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xBA, 0x00, 0x00, 0x00, 0x01, 0x03, 0xD7, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xD7, 0x00, 0x00, 0x00, 0x01, 0x00, 0x75, 0x04, 0x2E, + 0x00, 0x01, 0x04, 0x7D, 0x00, 0x00, 0x00, 0x01, 0x04, 0x7D, 0x01, 0xA4, + 0x00, 0x01, 0x01, 0xB3, 0x04, 0x2E, 0x00, 0x01, 0x06, 0x55, 0x02, 0x15, + 0x00, 0x01, 0x03, 0x2D, 0x02, 0x8F, 0x00, 0x01, 0x03, 0x84, 0x04, 0x33, + 0x00, 0x01, 0x02, 0xA8, 0x03, 0x69, 0x00, 0x01, 0x02, 0xC8, 0x04, 0x1E, + 0x00, 0x01, 0x01, 0x28, 0x03, 0x69, 0x00, 0x01, 0x02, 0xE6, 0x04, 0x91, + 0x00, 0x01, 0x02, 0xD8, 0x03, 0x69, 0x00, 0x01, 0x01, 0xF3, 0x03, 0x69, + 0x00, 0x01, 0x02, 0xA8, 0xFE, 0xB9, 0x00, 0x01, 0x02, 0xC8, 0xFF, 0x6E, + 0x00, 0x01, 0x01, 0x28, 0xFE, 0xB9, 0x00, 0x01, 0x02, 0xE6, 0xFF, 0xE1, + 0x00, 0x01, 0x02, 0xD8, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0xF3, 0xFE, 0xB9, + 0x00, 0x01, 0x02, 0xE8, 0x03, 0x80, 0x00, 0x01, 0x06, 0xAC, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x8C, 0x01, 0x28, 0x00, 0x01, 0x02, 0xA8, 0x03, 0x8C, + 0x00, 0x01, 0x04, 0x3D, 0x02, 0xAF, 0x00, 0x01, 0x08, 0x4E, 0x00, 0x00, + 0x00, 0x01, 0x07, 0x8D, 0x00, 0x00, 0x00, 0x01, 0x08, 0x43, 0x02, 0xE8, + 0x00, 0x01, 0x08, 0x41, 0x02, 0xE8, 0x00, 0x01, 0x07, 0xEA, 0x02, 0x03, + 0x00, 0x01, 0x06, 0x14, 0x00, 0x00, 0x00, 0x01, 0x08, 0x45, 0x00, 0x00, + 0x00, 0x01, 0x07, 0x89, 0x00, 0x00, 0x00, 0x01, 0x08, 0x3A, 0x02, 0xE8, + 0x00, 0x01, 0x08, 0x38, 0x02, 0xE8, 0x00, 0x01, 0x07, 0xE1, 0x02, 0x03, + 0x00, 0x01, 0x06, 0x0B, 0x00, 0x00, 0x00, 0x01, 0x05, 0x33, 0x02, 0x03, + 0x00, 0x01, 0x03, 0xEE, 0x00, 0x00, 0x00, 0x01, 0x04, 0x30, 0x01, 0x3B, + 0x00, 0x01, 0x04, 0x31, 0x00, 0x00, 0x00, 0x01, 0x02, 0xB5, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x7F, 0x00, 0x00, 0x00, 0x01, 0x05, 0xB6, 0x02, 0xE8, + 0x00, 0x01, 0x02, 0xA5, 0x00, 0x00, 0x00, 0x01, 0x04, 0x4D, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x00, 0x01, 0x04, 0x3C, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x41, 0x00, 0x00, 0x00, 0x01, 0x06, 0x6D, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x73, 0x01, 0x3B, 0x00, 0x01, 0x03, 0x46, 0x00, 0x12, + 0x00, 0x01, 0x05, 0x6B, 0x00, 0x00, 0x00, 0x01, 0x04, 0x5C, 0x02, 0x15, + 0x00, 0x01, 0x04, 0x31, 0x01, 0xA4, 0x00, 0x01, 0x07, 0x1E, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x8B, 0x00, 0x00, 0x00, 0x01, 0x07, 0x0D, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x6C, 0x00, 0x00, 0x00, 0x01, 0x05, 0xA3, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x74, 0x00, 0x00, 0x00, 0x01, 0x04, 0x57, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xBE, 0x00, 0x00, 0x00, 0x01, 0x05, 0x93, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x39, 0x00, 0x00, 0x00, 0x01, 0x05, 0x86, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x85, 0x00, 0x00, 0x00, 0x01, 0x02, 0xD8, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xB8, 0x00, 0x00, 0x00, 0x01, 0x02, 0xE0, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x50, 0x00, 0x00, 0x00, 0x01, 0x02, 0xF3, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xFA, 0x00, 0x00, 0x00, 0x01, 0x03, 0xE9, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x07, 0x00, 0x00, 0x00, 0x01, 0x03, 0xF7, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x0B, 0x00, 0x00, 0x00, 0x01, 0x03, 0x6D, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xAA, 0x00, 0x00, 0x00, 0x01, 0x03, 0xE4, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xCF, 0x00, 0x00, 0x00, 0x01, 0x02, 0x5A, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xC8, 0x00, 0x00, 0x00, 0x01, 0x03, 0xDC, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xF6, 0x00, 0x00, 0x00, 0x01, 0x05, 0x14, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x04, 0x00, 0x00, 0x00, 0x01, 0x05, 0x18, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xAA, 0x00, 0x00, 0x00, 0x01, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x11, 0x00, 0x00, 0x00, 0x01, 0x04, 0x30, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x0D, 0x00, 0x00, 0x00, 0x01, 0x04, 0x2B, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x3F, 0x00, 0x00, 0x00, 0x01, 0x05, 0x58, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x77, 0x00, 0x00, 0x00, 0x01, 0x05, 0x7A, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xDD, 0x00, 0x00, 0x00, 0x01, 0x04, 0xEF, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x59, 0x00, 0x00, 0x00, 0x01, 0x03, 0x7C, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x9E, 0x00, 0x00, 0x00, 0x01, 0x03, 0x0B, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x1F, 0x00, 0x00, 0x00, 0x01, 0x04, 0x47, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x5B, 0x00, 0x00, 0x00, 0x01, 0x03, 0xBD, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xD0, 0x00, 0x00, 0x00, 0x01, 0x02, 0xE1, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xED, 0x00, 0x00, 0x00, 0x01, 0x02, 0x9A, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xA2, 0x00, 0x00, 0x00, 0x01, 0x03, 0xE0, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xF4, 0x00, 0x00, 0x00, 0x01, 0x05, 0x0E, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x2C, 0x00, 0x00, 0x00, 0x01, 0x05, 0x1B, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x30, 0x00, 0x00, 0x00, 0x01, 0x03, 0xC2, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xD0, 0x00, 0x00, 0x00, 0x01, 0x02, 0xA0, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xEE, 0x00, 0x00, 0x00, 0x01, 0x05, 0xC1, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x36, 0x00, 0x00, 0x00, 0x01, 0x03, 0x53, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x54, 0x00, 0x00, 0x00, 0x01, 0x02, 0x51, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x76, 0x00, 0x00, 0x00, 0x01, 0x06, 0xD6, 0x00, 0x00, + 0x00, 0x01, 0x00, 0xBB, 0xFE, 0x4B, 0x00, 0x01, 0x01, 0x3E, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x81, 0xFE, 0x8C, 0x00, 0x01, 0x01, 0x67, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xB3, 0x00, 0x00, 0x00, 0x01, 0x01, 0xB0, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x81, 0x00, 0x00, 0x00, 0x01, 0x03, 0x80, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x6E, 0x00, 0x00, 0x00, 0x01, 0x00, 0xF9, 0xFE, 0x5F, + 0x00, 0x01, 0x03, 0xCF, 0xFE, 0x5F, 0x00, 0x01, 0x01, 0x82, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x11, 0x00, 0x00, 0x00, 0x01, 0x01, 0x8A, 0xFE, 0xE5, + 0x00, 0x01, 0x02, 0xAB, 0x00, 0x00, 0x00, 0x01, 0x02, 0x9F, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x6F, 0x00, 0x00, 0x00, 0x01, 0x02, 0x34, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xC9, 0x00, 0x00, 0x00, 0x01, 0x03, 0xDF, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xE7, 0x00, 0x00, 0x00, 0x01, 0x03, 0xFB, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x15, 0x00, 0x00, 0x00, 0x01, 0x05, 0x33, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x23, 0x00, 0x00, 0x00, 0x01, 0x05, 0x37, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x99, 0x00, 0x00, 0x00, 0x01, 0x04, 0xAC, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x02, 0x00, 0x00, 0x00, 0x01, 0x04, 0x42, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x8E, 0x00, 0x00, 0x00, 0x01, 0x03, 0x08, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x4B, 0x00, 0x00, 0x00, 0x01, 0x04, 0x49, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x42, 0x00, 0x00, 0x00, 0x01, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xBE, 0x02, 0x8F, 0x00, 0x01, 0x01, 0xDC, 0x02, 0x8F, + 0x00, 0x01, 0x01, 0x7C, 0x03, 0x69, 0x00, 0x01, 0x01, 0xA3, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x98, 0x03, 0x69, 0x00, 0x01, 0x01, 0x02, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x96, 0x02, 0x81, 0x00, 0x01, 0x00, 0x9E, 0x02, 0x88, + 0x00, 0x01, 0x01, 0x8A, 0x03, 0x69, 0x00, 0x01, 0x02, 0x54, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x99, 0x03, 0x69, 0x00, 0x01, 0x01, 0x93, 0x03, 0x69, + 0x00, 0x01, 0x00, 0xC2, 0x02, 0x84, 0x00, 0x01, 0x02, 0x7A, 0x02, 0x84, + 0x00, 0x01, 0x00, 0xC2, 0x03, 0x69, 0x00, 0x01, 0x01, 0x73, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x2D, 0x03, 0x69, 0x00, 0x01, 0x01, 0xA4, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x88, 0x03, 0x69, 0x00, 0x01, 0x02, 0x2D, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x7A, 0x03, 0x69, 0x00, 0x01, 0x02, 0x5F, 0x03, 0x69, + 0x00, 0x01, 0x01, 0x7C, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0xA3, 0xFE, 0xB9, + 0x00, 0x01, 0x01, 0x98, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0x02, 0xFE, 0xB9, + 0x00, 0x01, 0x01, 0x96, 0xFD, 0xD1, 0x00, 0x01, 0x01, 0x8A, 0xFE, 0xB9, + 0x00, 0x01, 0x02, 0x54, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0x99, 0xFE, 0xB9, + 0x00, 0x01, 0x01, 0x93, 0xFE, 0xB9, 0x00, 0x01, 0x00, 0xC2, 0xFD, 0xD4, + 0x00, 0x01, 0x02, 0x7A, 0xFD, 0xD4, 0x00, 0x01, 0x00, 0xC2, 0xFE, 0xB9, + 0x00, 0x01, 0x01, 0x73, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0x2D, 0xFE, 0xB9, + 0x00, 0x01, 0x01, 0xA4, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0x88, 0xFE, 0xB9, + 0x00, 0x01, 0x02, 0x2D, 0xFE, 0xB9, 0x00, 0x01, 0x01, 0x7A, 0xFE, 0xB9, + 0x00, 0x01, 0x02, 0x5F, 0xFE, 0xB9, 0x00, 0x01, 0x04, 0x86, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x12, 0x02, 0xAF, 0x00, 0x01, 0x05, 0x96, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x95, 0x00, 0x00, 0x00, 0x01, 0x05, 0x7B, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x46, 0x00, 0x00, 0x00, 0x01, 0x05, 0xA2, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xAF, 0x00, 0x00, 0x00, 0x01, 0x05, 0xA6, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x92, 0x00, 0x00, 0x00, 0x01, 0x05, 0x8E, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x8D, 0x00, 0x00, 0x00, 0x01, 0x05, 0x71, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x25, 0x00, 0x00, 0x00, 0x01, 0x05, 0x90, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x7C, 0x00, 0x00, 0x00, 0x01, 0x05, 0x73, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x8A, 0x00, 0x00, 0x00, 0x01, 0x05, 0x87, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x9D, 0x00, 0x00, 0x00, 0x01, 0x05, 0x89, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xCF, 0x00, 0x00, 0x00, 0x01, 0x02, 0x84, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xE3, 0x00, 0x00, 0x00, 0x01, 0x03, 0xF5, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x87, 0x00, 0x00, 0x00, 0x01, 0x02, 0x29, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x74, 0x00, 0x00, 0x00, 0x01, 0x02, 0x41, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x52, 0x00, 0x00, 0x00, 0x01, 0x01, 0x09, 0xFE, 0x32, + 0x00, 0x01, 0x00, 0xF4, 0xFE, 0x5F, 0x00, 0x01, 0x02, 0x5F, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x33, 0x00, 0x00, 0x00, 0x01, 0x03, 0x38, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x6C, 0x00, 0x00, 0x00, 0x01, 0x02, 0x13, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x80, 0x00, 0x00, 0x00, 0x01, 0x02, 0xEA, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0x94, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xF2, 0xFE, 0x34, 0x00, 0x01, 0x02, 0xF8, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xF9, 0x00, 0x00, 0x00, 0x01, 0x02, 0x9D, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x95, 0x00, 0x00, 0x00, 0x01, 0x02, 0x3F, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x32, 0x00, 0x00, 0x00, 0x01, 0x02, 0x12, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xA3, 0x00, 0x00, 0x00, 0x01, 0x01, 0x54, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xC2, 0x00, 0x00, 0x00, 0x01, 0x02, 0x52, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xEB, 0x00, 0x00, 0x00, 0x01, 0x02, 0x57, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x6C, 0x00, 0x00, 0x00, 0x01, 0x02, 0x57, 0xFE, 0x54, + 0x00, 0x01, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x01, 0x02, 0x24, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x13, 0x00, 0x00, 0x00, 0x01, 0x02, 0x8A, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xBD, 0x00, 0x00, 0x00, 0x01, 0x02, 0xF6, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xE2, 0x00, 0x00, 0x00, 0x01, 0x05, 0xE8, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x84, 0x00, 0x00, 0x00, 0x01, 0x04, 0xEC, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x25, 0x00, 0x00, 0x00, 0x01, 0x02, 0x59, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x77, 0x00, 0x00, 0x00, 0x01, 0x03, 0x36, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xCA, 0x00, 0x00, 0x00, 0x01, 0x02, 0xC1, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x4F, 0x00, 0x00, 0x00, 0x01, 0x02, 0x6F, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x90, 0x00, 0x00, 0x00, 0x01, 0x00, 0xED, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x2E, 0x00, 0x00, 0x00, 0x01, 0x02, 0x1D, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x81, 0x00, 0x00, 0x00, 0x01, 0x00, 0xF5, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xD0, 0x07, 0x7C, 0x00, 0x01, 0x02, 0xCF, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xCF, 0x07, 0x93, 0x00, 0x01, 0x02, 0xCF, 0x08, 0xB8, + 0x00, 0x01, 0x02, 0xCF, 0x08, 0xB7, 0x00, 0x01, 0x02, 0xCF, 0x08, 0xD6, + 0x00, 0x01, 0x02, 0xD0, 0x07, 0x79, 0x00, 0x01, 0x02, 0xCF, 0x08, 0xAC, + 0x00, 0x01, 0x02, 0xCF, 0x07, 0x46, 0x00, 0x01, 0x02, 0xCF, 0x07, 0x85, + 0x00, 0x01, 0x02, 0xF3, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xE9, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x07, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xF7, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x0B, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x6D, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x80, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x33, 0x07, 0x46, + 0x00, 0x01, 0x05, 0x33, 0x07, 0x8C, 0x00, 0x01, 0x05, 0x33, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x7F, 0x07, 0x93, 0x00, 0x01, 0x02, 0xA5, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xFC, 0x07, 0x93, 0x00, 0x01, 0x02, 0xFC, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xD6, 0x00, 0x00, 0x00, 0x01, 0x03, 0xAE, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x4E, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x4E, 0x07, 0x93, + 0x00, 0x01, 0x02, 0x80, 0x07, 0x46, 0x00, 0x01, 0x02, 0x80, 0x07, 0x93, + 0x00, 0x01, 0x02, 0x80, 0x07, 0x89, 0x00, 0x01, 0x02, 0x81, 0x07, 0x7C, + 0x00, 0x01, 0x02, 0x80, 0x08, 0xB8, 0x00, 0x01, 0x02, 0x80, 0x08, 0xB7, + 0x00, 0x01, 0x02, 0x5C, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xC8, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xDC, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xF6, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x14, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x18, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xCD, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xAA, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x80, 0x07, 0x85, 0x00, 0x01, 0x02, 0x71, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x71, 0x07, 0x93, 0x00, 0x01, 0x02, 0xFA, 0x07, 0x93, + 0x00, 0x01, 0x02, 0xFA, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xFA, 0x07, 0x46, + 0x00, 0x01, 0x02, 0xFB, 0x07, 0x93, 0x00, 0x01, 0x02, 0xFB, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xFB, 0x07, 0x46, 0x00, 0x01, 0x02, 0xE3, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xE2, 0x07, 0x93, 0x00, 0x01, 0x02, 0xE3, 0x07, 0x85, + 0x00, 0x01, 0x03, 0x11, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x30, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x0D, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x2B, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x3F, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x58, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x77, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x66, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x7A, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xDD, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0xEF, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x0B, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x59, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x07, 0x07, 0x7C, + 0x00, 0x01, 0x01, 0x06, 0x07, 0x93, 0x00, 0x01, 0x01, 0x06, 0x07, 0x89, + 0x00, 0x01, 0x02, 0x62, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x7C, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x9A, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x8A, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x9E, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x13, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x53, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x30, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x06, 0x07, 0x85, 0x00, 0x01, 0x01, 0x94, 0x07, 0x7C, + 0x00, 0x01, 0x01, 0x93, 0x07, 0x93, 0x00, 0x01, 0x01, 0x94, 0x07, 0x89, + 0x00, 0x01, 0x03, 0x0B, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x1F, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x39, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x57, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x47, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x5B, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xBD, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xD0, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x94, 0x07, 0x8C, 0x00, 0x01, 0x01, 0x94, 0x07, 0x46, + 0x00, 0x01, 0x02, 0xE1, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xED, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x94, 0x07, 0x85, 0x00, 0x01, 0x03, 0x77, 0x07, 0x8C, + 0x00, 0x01, 0x03, 0x77, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xB8, 0x07, 0x8C, + 0x00, 0x01, 0x03, 0xF2, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x06, 0x07, 0x8C, + 0x00, 0x01, 0x01, 0x50, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x58, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x90, 0x07, 0x8C, 0x00, 0x01, 0x03, 0x8F, 0x07, 0x93, + 0x00, 0x01, 0x02, 0xEC, 0x07, 0x7C, 0x00, 0x01, 0x02, 0xEB, 0x07, 0x93, + 0x00, 0x01, 0x02, 0xEB, 0x07, 0x46, 0x00, 0x01, 0x02, 0xEB, 0x07, 0x85, + 0x00, 0x01, 0x02, 0xEB, 0x07, 0x8C, 0x00, 0x01, 0x03, 0x03, 0x07, 0x46, + 0x00, 0x01, 0x03, 0x03, 0x07, 0x89, 0x00, 0x01, 0x03, 0x02, 0x07, 0x93, + 0x00, 0x01, 0x03, 0x03, 0x08, 0xB8, 0x00, 0x01, 0x03, 0x03, 0x08, 0xB7, + 0x00, 0x01, 0x03, 0x03, 0x07, 0x7C, 0x00, 0x01, 0x03, 0xE0, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x0E, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x2C, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x1B, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x30, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xC2, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x03, 0x07, 0x85, + 0x00, 0x01, 0x05, 0xD0, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x7B, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0x7B, 0x07, 0x93, 0x00, 0x01, 0x03, 0xDB, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xF1, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x90, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0x90, 0x07, 0x89, 0x00, 0x01, 0x02, 0x90, 0x07, 0x93, + 0x00, 0x01, 0x02, 0x93, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x8F, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0x8F, 0x07, 0x93, 0x00, 0x01, 0x02, 0x94, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x8A, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x8A, 0x07, 0x93, + 0x00, 0x01, 0x02, 0xCE, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xD8, 0x07, 0x85, + 0x00, 0x01, 0x02, 0xD8, 0x07, 0x46, 0x00, 0x01, 0x02, 0xD8, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xD8, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xD9, 0x07, 0x7C, + 0x00, 0x01, 0x02, 0xEE, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xCA, 0x07, 0x7C, + 0x00, 0x01, 0x03, 0xF5, 0x07, 0x8C, 0x00, 0x01, 0x03, 0xF5, 0x07, 0x85, + 0x00, 0x01, 0x03, 0xF5, 0x07, 0x93, 0x00, 0x01, 0x02, 0xC1, 0x07, 0x93, + 0x00, 0x01, 0x02, 0xC1, 0x07, 0x85, 0x00, 0x01, 0x02, 0xBB, 0x07, 0x93, + 0x00, 0x01, 0x02, 0xBC, 0x07, 0x7C, 0x00, 0x01, 0x02, 0xBB, 0x07, 0x85, + 0x00, 0x01, 0x04, 0x84, 0x05, 0xD2, 0x00, 0x01, 0x05, 0xBC, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0xBF, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xBB, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xBB, 0x07, 0x46, 0x00, 0x01, 0x03, 0x51, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x52, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x88, 0x07, 0x93, + 0x00, 0x01, 0x02, 0x89, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x2B, 0x07, 0x32, + 0x00, 0x01, 0x02, 0x2C, 0x05, 0xD5, 0x00, 0x01, 0x02, 0x2B, 0x07, 0x08, + 0x00, 0x01, 0x02, 0x2B, 0x07, 0x14, 0x00, 0x01, 0x02, 0x2B, 0x07, 0x12, + 0x00, 0x01, 0x02, 0x2B, 0x05, 0xE5, 0x00, 0x01, 0x02, 0x5B, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x76, 0x05, 0xA2, 0x00, 0x01, 0x03, 0x76, 0x05, 0xE8, + 0x00, 0x01, 0x03, 0x76, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x51, 0x07, 0x32, + 0x00, 0x01, 0x02, 0x52, 0x05, 0xD5, 0x00, 0x01, 0x02, 0x51, 0x07, 0x08, + 0x00, 0x01, 0x02, 0x51, 0x07, 0x14, 0x00, 0x01, 0x02, 0x51, 0x07, 0x12, + 0x00, 0x01, 0x02, 0x51, 0x05, 0xE0, 0x00, 0x01, 0x02, 0x51, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x51, 0x05, 0xE5, 0x00, 0x01, 0x02, 0x51, 0x05, 0xA2, + 0x00, 0x01, 0x02, 0x52, 0x05, 0xD8, 0x00, 0x01, 0x01, 0xA7, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xC8, 0x06, 0xC5, 0x00, 0x01, 0x02, 0x4D, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x4D, 0x05, 0xE8, 0x00, 0x01, 0x01, 0xFA, 0x06, 0xC5, + 0x00, 0x01, 0x02, 0x41, 0x05, 0xA2, 0x00, 0x01, 0x02, 0x41, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x41, 0x05, 0xE5, 0x00, 0x01, 0x02, 0x42, 0x05, 0xD8, + 0x00, 0x01, 0x02, 0x41, 0x07, 0x14, 0x00, 0x01, 0x02, 0x41, 0x07, 0x12, + 0x00, 0x01, 0x02, 0x41, 0x05, 0xE0, 0x00, 0x01, 0x01, 0x99, 0x05, 0xE0, + 0x00, 0x01, 0x01, 0x98, 0x05, 0xE0, 0x00, 0x01, 0x01, 0x3B, 0x05, 0xE0, + 0x00, 0x01, 0x01, 0x88, 0x05, 0xE0, 0x00, 0x01, 0x01, 0x3B, 0x07, 0xA1, + 0x00, 0x01, 0x01, 0x98, 0x07, 0xA1, 0x00, 0x01, 0x02, 0x4B, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x4B, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x4B, 0x05, 0xA2, + 0x00, 0x01, 0x00, 0xF4, 0x07, 0x8C, 0x00, 0x01, 0x00, 0xF4, 0x07, 0x93, + 0x00, 0x01, 0x00, 0xF4, 0x07, 0x85, 0x00, 0x01, 0x01, 0xEA, 0x04, 0x2E, + 0x00, 0x01, 0x00, 0xF5, 0x05, 0xD8, 0x00, 0x01, 0x00, 0xF5, 0x05, 0xA2, + 0x00, 0x01, 0x00, 0xF5, 0x05, 0xE8, 0x00, 0x01, 0x00, 0xF5, 0x05, 0xE5, + 0x00, 0x01, 0x00, 0xF5, 0x05, 0xE0, 0x00, 0x01, 0x00, 0xF4, 0x05, 0xEF, + 0x00, 0x01, 0x01, 0x3E, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x26, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x26, 0x05, 0xEF, 0x00, 0x01, 0x01, 0x2A, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x76, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x73, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x43, 0x05, 0xD2, 0x00, 0x01, 0x00, 0xF5, 0x07, 0x8C, + 0x00, 0x01, 0x03, 0x80, 0x04, 0x2E, 0x00, 0x01, 0x03, 0x81, 0x05, 0xE8, + 0x00, 0x01, 0x03, 0x81, 0x05, 0xEF, 0x00, 0x01, 0x02, 0x53, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x6E, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x51, 0x05, 0xD8, + 0x00, 0x01, 0x02, 0x50, 0x05, 0xA2, 0x00, 0x01, 0x02, 0x50, 0x05, 0xE5, + 0x00, 0x01, 0x02, 0x50, 0x05, 0xEF, 0x00, 0x01, 0x02, 0x50, 0x07, 0x14, + 0x00, 0x01, 0x02, 0x50, 0x07, 0x12, 0x00, 0x01, 0x02, 0x52, 0x05, 0xCB, + 0x00, 0x01, 0x02, 0x91, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x8D, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x8D, 0x05, 0xEF, 0x00, 0x01, 0x02, 0x8D, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x61, 0x04, 0x2E, 0x00, 0x01, 0x01, 0xF8, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x9C, 0x05, 0xE8, 0x00, 0x01, 0x01, 0x9C, 0x05, 0xE5, + 0x00, 0x01, 0x01, 0x9C, 0x05, 0xEF, 0x00, 0x01, 0x02, 0x13, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x55, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x43, 0x07, 0x0A, + 0x00, 0x01, 0x01, 0x43, 0x06, 0xFC, 0x00, 0x01, 0x00, 0xF4, 0x07, 0x0A, + 0x00, 0x01, 0x00, 0xF5, 0x06, 0xFC, 0x00, 0x01, 0x02, 0x53, 0x05, 0xE5, + 0x00, 0x01, 0x02, 0x54, 0x05, 0xD8, 0x00, 0x01, 0x02, 0x34, 0x05, 0xD8, + 0x00, 0x01, 0x03, 0x39, 0x05, 0xE0, 0x00, 0x01, 0x03, 0x38, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x39, 0x05, 0xE8, 0x00, 0x01, 0x03, 0x39, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x25, 0x05, 0xEF, 0x00, 0x01, 0x02, 0x25, 0x05, 0xE0, + 0x00, 0x01, 0x02, 0x2B, 0x05, 0xEF, 0x00, 0x01, 0x02, 0x2C, 0x05, 0xD8, + 0x00, 0x01, 0x02, 0x2B, 0x05, 0xA2, 0x00, 0x01, 0x02, 0x2B, 0x05, 0xE0, + 0x00, 0x01, 0x03, 0x21, 0x05, 0xD0, 0x00, 0x01, 0x02, 0x91, 0x07, 0x46, + 0x00, 0x01, 0x02, 0x91, 0x07, 0x85, 0x00, 0x01, 0x02, 0x12, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x12, 0x05, 0xE8, 0x00, 0x01, 0x03, 0xCA, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xDF, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xE8, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xFC, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x15, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x34, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x23, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x37, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x9A, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0xAC, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xAA, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x1F, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xAA, 0x07, 0x85, + 0x00, 0x01, 0x02, 0xB9, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xF4, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xA0, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x91, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x55, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x05, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xD2, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x5E, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x9B, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x08, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xE2, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xD7, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x55, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x55, 0x05, 0xA2, + 0x00, 0x01, 0x02, 0x09, 0x04, 0x2E, 0x00, 0x01, 0x00, 0xF4, 0x05, 0xE0, + 0x00, 0x01, 0x00, 0xF4, 0x05, 0xE8, 0x00, 0x01, 0x00, 0xF4, 0x05, 0xA2, + 0x00, 0x01, 0x02, 0x7A, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x53, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x53, 0x05, 0xA2, 0x00, 0x01, 0x03, 0x46, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x30, 0x04, 0x2E, 0x00, 0x01, 0x02, 0xF5, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x85, 0x04, 0x2E, 0x00, 0x01, 0x03, 0x4C, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0xF0, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x9F, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x1F, 0x04, 0x2E, 0x00, 0x01, 0x04, 0x49, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x4E, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x4D, 0x05, 0x00, + 0x00, 0x01, 0x03, 0x00, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xAC, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x5D, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x92, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x8E, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x95, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0xBF, 0x05, 0xDA, 0x00, 0x01, 0x01, 0xDC, 0x05, 0xDA, + 0x00, 0x01, 0x01, 0x7F, 0x05, 0xBB, 0x00, 0x01, 0x01, 0xF6, 0x06, 0x36, + 0x00, 0x01, 0x01, 0x90, 0x05, 0xBB, 0x00, 0x01, 0x01, 0x45, 0x06, 0x36, + 0x00, 0x01, 0x01, 0x29, 0x06, 0xAA, 0x00, 0x01, 0x00, 0xC0, 0x06, 0xA0, + 0x00, 0x01, 0x00, 0xC1, 0x06, 0xBF, 0x00, 0x01, 0x00, 0xC2, 0x06, 0xBF, + 0x00, 0x01, 0x00, 0xC1, 0x06, 0xA0, 0x00, 0x01, 0x02, 0x54, 0x05, 0xBB, + 0x00, 0x01, 0x01, 0x93, 0x05, 0xBB, 0x00, 0x01, 0x01, 0xB2, 0x05, 0xBB, + 0x00, 0x01, 0x01, 0x9E, 0x05, 0xBB, 0x00, 0x01, 0x01, 0x2D, 0x05, 0xBB, + 0x00, 0x01, 0x00, 0xF5, 0x06, 0x56, 0x00, 0x01, 0x01, 0x99, 0x05, 0xBB, + 0x00, 0x01, 0x01, 0x88, 0x05, 0xBB, 0x00, 0x01, 0x02, 0x2E, 0x05, 0xBB, + 0x00, 0x01, 0x01, 0x7A, 0x05, 0xBB, 0x00, 0x01, 0x01, 0x80, 0x05, 0xBB, + 0x00, 0x01, 0x01, 0x73, 0x05, 0xBB, 0x00, 0x01, 0x01, 0xC0, 0x06, 0xA0, + 0x00, 0x01, 0x01, 0x9E, 0x06, 0xA0, 0x00, 0x01, 0x01, 0xB2, 0x06, 0xA0, + 0x00, 0x01, 0x01, 0x7F, 0x01, 0x0B, 0x00, 0x01, 0x01, 0xF6, 0x01, 0x86, + 0x00, 0x01, 0x01, 0x90, 0x01, 0x0B, 0x00, 0x01, 0x01, 0x45, 0x01, 0x86, + 0x00, 0x01, 0x01, 0x29, 0x01, 0xFA, 0x00, 0x01, 0x00, 0xC0, 0x01, 0xF0, + 0x00, 0x01, 0x00, 0xC1, 0x02, 0x0F, 0x00, 0x01, 0x00, 0xC1, 0x01, 0xF0, + 0x00, 0x01, 0x02, 0x54, 0x01, 0x0B, 0x00, 0x01, 0x01, 0x93, 0x01, 0x0B, + 0x00, 0x01, 0x01, 0xB2, 0x01, 0x0B, 0x00, 0x01, 0x01, 0x9E, 0x01, 0x0B, + 0x00, 0x01, 0x01, 0x2D, 0x01, 0x0B, 0x00, 0x01, 0x00, 0xF5, 0x01, 0xA6, + 0x00, 0x01, 0x01, 0x99, 0x01, 0x0B, 0x00, 0x01, 0x01, 0x88, 0x01, 0x0B, + 0x00, 0x01, 0x02, 0x2E, 0x01, 0x0B, 0x00, 0x01, 0x01, 0x7A, 0x01, 0x0B, + 0x00, 0x01, 0x01, 0x80, 0x01, 0x0B, 0x00, 0x01, 0x01, 0x73, 0x01, 0x0B, + 0x00, 0x01, 0x01, 0xC0, 0x01, 0xF0, 0x00, 0x01, 0x01, 0x9E, 0x01, 0xF0, + 0x00, 0x01, 0x01, 0xB2, 0x01, 0xF0, 0x00, 0x01, 0x01, 0x90, 0x03, 0x37, + 0x00, 0x01, 0x01, 0x91, 0x03, 0x37, 0x00, 0x01, 0x01, 0x72, 0x03, 0x37, + 0x00, 0x01, 0x01, 0x86, 0x03, 0x37, 0x00, 0x01, 0x01, 0x90, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x91, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x0F, 0x03, 0x37, + 0x00, 0x01, 0x05, 0x2D, 0x03, 0x37, 0x00, 0x01, 0x01, 0x72, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x86, 0x05, 0xD2, 0x00, 0x01, 0x07, 0x2E, 0x03, 0x37, + 0x00, 0x01, 0x03, 0x2D, 0x05, 0xF2, 0x00, 0x01, 0x06, 0x75, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0xF1, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x15, 0x05, 0x01, + 0x00, 0x01, 0x05, 0x96, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x5A, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0xB0, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x95, 0x05, 0xD2, + 0x00, 0x01, 0x06, 0xBC, 0x05, 0xD2, 0x00, 0x01, 0x05, 0xA2, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x66, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x99, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x8F, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x8C, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x8E, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x8B, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x8D, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x6C, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x04, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x8A, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0xA4, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x92, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x7E, 0x05, 0xD2, 0x00, 0x01, 0x06, 0xC9, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x73, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x40, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x84, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x90, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x83, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x87, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x86, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x89, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x7F, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x85, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x82, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xCF, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xCF, 0x07, 0x7E, 0x00, 0x01, 0x02, 0xCF, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x7F, 0x07, 0x7E, 0x00, 0x01, 0x02, 0x7F, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xFC, 0x07, 0x7E, 0x00, 0x01, 0x02, 0x4E, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0x80, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x80, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x71, 0x07, 0x7E, 0x00, 0x01, 0x02, 0xFA, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0xE3, 0x07, 0x7E, 0x00, 0x01, 0x02, 0xE3, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x06, 0x07, 0x46, 0x00, 0x01, 0x03, 0x90, 0x07, 0x7E, + 0x00, 0x01, 0x03, 0x03, 0x07, 0x8C, 0x00, 0x01, 0x03, 0x03, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x7B, 0x07, 0x7E, 0x00, 0x01, 0x02, 0x90, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0x90, 0x07, 0x46, 0x00, 0x01, 0x02, 0x8F, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0x8A, 0x07, 0x7E, 0x00, 0x01, 0x02, 0xD8, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0xD8, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xF5, 0x07, 0x7E, + 0x00, 0x01, 0x03, 0xF5, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xC1, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0xBB, 0x07, 0x7E, 0x00, 0x01, 0x02, 0x89, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0x89, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xFB, 0x07, 0x7E, + 0x00, 0x01, 0x01, 0x94, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x2B, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0xC9, 0x06, 0xAF, 0x00, 0x01, 0x02, 0xC9, 0x05, 0x03, + 0x00, 0x01, 0x02, 0x4D, 0x05, 0xDA, 0x00, 0x01, 0x01, 0xFA, 0x06, 0xAF, + 0x00, 0x01, 0x01, 0xFA, 0x05, 0x03, 0x00, 0x01, 0x02, 0x41, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x41, 0x05, 0xDA, 0x00, 0x01, 0x02, 0x41, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x99, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x4B, 0x05, 0xDA, + 0x00, 0x01, 0x00, 0xF4, 0x07, 0x7E, 0x00, 0x01, 0x00, 0xF4, 0x05, 0xD2, + 0x00, 0x01, 0x00, 0xF5, 0x05, 0xDA, 0x00, 0x01, 0x03, 0x81, 0x05, 0xDA, + 0x00, 0x01, 0x02, 0x50, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x8D, 0x05, 0xDA, + 0x00, 0x01, 0x01, 0x9C, 0x05, 0xDA, 0x00, 0x01, 0x01, 0x9C, 0x05, 0xA2, + 0x00, 0x01, 0x01, 0x43, 0x06, 0xF5, 0x00, 0x01, 0x02, 0x33, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x39, 0x05, 0xDA, 0x00, 0x01, 0x03, 0x39, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x25, 0x05, 0xDA, 0x00, 0x01, 0x02, 0x2B, 0x05, 0xDA, + 0x00, 0x01, 0x02, 0x2B, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x12, 0x05, 0xDA, + 0x00, 0x01, 0x02, 0x51, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x51, 0x05, 0xDA, + 0x00, 0x01, 0x00, 0xF5, 0x07, 0x46, 0x00, 0x01, 0x00, 0xF5, 0x06, 0xF5, + 0x00, 0x01, 0x02, 0x80, 0x07, 0x7E, 0x00, 0x01, 0x01, 0x06, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0xE2, 0x07, 0x7E, 0x00, 0x01, 0x03, 0xF4, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0x7C, 0x07, 0x7E, 0x00, 0x01, 0x02, 0xEB, 0x07, 0x7E, + 0x00, 0x01, 0x03, 0x03, 0x07, 0x7E, 0x00, 0x01, 0x02, 0xCA, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0x91, 0x07, 0x7E, 0x00, 0x01, 0x02, 0xB6, 0x07, 0x7E, + 0x00, 0x01, 0x03, 0x5E, 0x07, 0x7E, 0x00, 0x01, 0x01, 0x94, 0x07, 0x7E, + 0x00, 0x01, 0x02, 0x60, 0x05, 0xDA, 0x00, 0x01, 0x03, 0x46, 0x05, 0xDA, + 0x00, 0x01, 0x01, 0xF9, 0x05, 0xDA, 0x00, 0x01, 0x02, 0x5C, 0x05, 0xDA, + 0x00, 0x01, 0x02, 0x50, 0x05, 0xDA, 0x00, 0x01, 0x02, 0x1F, 0x05, 0xDA, + 0x00, 0x01, 0x02, 0x49, 0x05, 0xDA, 0x00, 0x01, 0x02, 0xF0, 0x05, 0xDA, + 0x00, 0x01, 0x02, 0xAA, 0x07, 0x7E, 0x00, 0x01, 0x00, 0xF4, 0x05, 0xDA, + 0x00, 0x01, 0x01, 0x3E, 0x05, 0xDA, 0x00, 0x01, 0x01, 0x9D, 0x05, 0xDA, + 0x00, 0x01, 0x03, 0x24, 0x05, 0xDA, 0x00, 0x01, 0x02, 0x26, 0x05, 0xDA, + 0x00, 0x01, 0x01, 0x3B, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xFA, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xFB, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xB8, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xEB, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x90, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x8F, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x9C, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x12, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x43, 0x05, 0x49, + 0x00, 0x01, 0x00, 0xF5, 0x05, 0x49, 0x00, 0x01, 0x02, 0x75, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xA1, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xA1, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xA8, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xCA, 0x03, 0xD7, + 0x00, 0x01, 0x02, 0x51, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x71, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x7B, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x7B, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x6B, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x4B, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x57, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x24, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x13, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x66, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0x66, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xA0, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0x7B, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x91, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xD7, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x7C, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x8A, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xBB, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xF4, 0x07, 0x8C, 0x00, 0x01, 0x03, 0x5D, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xB6, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xE2, 0x07, 0x85, + 0x00, 0x01, 0x03, 0xF4, 0x07, 0x85, 0x00, 0x01, 0x02, 0x7C, 0x07, 0x85, + 0x00, 0x01, 0x02, 0xCA, 0x07, 0x85, 0x00, 0x01, 0x02, 0xB6, 0x07, 0x85, + 0x00, 0x01, 0x03, 0x5E, 0x07, 0x85, 0x00, 0x01, 0x02, 0xE7, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0xE6, 0x05, 0xE8, 0x00, 0x01, 0x01, 0xE6, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x5C, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x30, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x2E, 0x05, 0xE8, 0x00, 0x01, 0x01, 0xF9, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xF7, 0x04, 0x2E, 0x00, 0x01, 0x03, 0x84, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x46, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x49, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x60, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x60, 0x05, 0xE0, + 0x00, 0x01, 0x03, 0x46, 0x05, 0xE0, 0x00, 0x01, 0x01, 0xF9, 0x05, 0xE0, + 0x00, 0x01, 0x02, 0x5C, 0x05, 0xA2, 0x00, 0x01, 0x02, 0x5C, 0x05, 0xE0, + 0x00, 0x01, 0x02, 0x50, 0x05, 0xE0, 0x00, 0x01, 0x02, 0x1F, 0x05, 0xE0, + 0x00, 0x01, 0x02, 0x49, 0x05, 0xE0, 0x00, 0x01, 0x02, 0xF0, 0x05, 0xE0, + 0x00, 0x01, 0x02, 0x25, 0x04, 0x2E, 0x00, 0x01, 0x02, 0xD6, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x59, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x20, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x77, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x55, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x14, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x5C, 0x04, 0x2E, + 0x00, 0x01, 0x00, 0xF4, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x50, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x36, 0x04, 0x2E, 0x00, 0x01, 0x02, 0xCA, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xC1, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x06, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xFC, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x4E, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x90, 0x05, 0xD2, 0x00, 0x01, 0x00, 0xED, 0x05, 0xEF, + 0x00, 0x01, 0x02, 0x2E, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x1D, 0x04, 0x2E, + 0x00, 0x01, 0x00, 0xF5, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x4D, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xF5, 0x05, 0x03, 0x00, 0x01, 0x03, 0x81, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xA5, 0x05, 0xE5, 0x00, 0x01, 0x00, 0xF5, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0xD2, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x8F, 0x05, 0xF4, + 0x00, 0x01, 0x00, 0xCA, 0x05, 0xF4, 0x00, 0x01, 0xBA, 0xD8, 0x00, 0x04, + 0x00, 0x00, 0x04, 0x2F, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x7A, 0xA2, + 0x79, 0x38, 0x79, 0x38, 0x79, 0x38, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x58, 0x79, 0x58, 0x79, 0xDC, 0x79, 0x80, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0xC9, 0x00, 0x7D, 0x5E, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xDA, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, + 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x7A, 0x28, + 0x82, 0xC0, 0x7A, 0x28, 0x83, 0x26, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, + 0x81, 0x38, 0x7F, 0xC0, 0x83, 0x8C, 0x7A, 0xBC, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xBC, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0xDC, 0x9D, 0x2C, 0x81, 0x9A, 0x79, 0xDC, + 0x83, 0xF6, 0x7B, 0x60, 0x7C, 0x38, 0x7C, 0x72, 0x79, 0xDC, 0x79, 0xDC, + 0x7C, 0xAC, 0x79, 0x44, 0x79, 0xDC, 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, + 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, 0x79, 0x76, 0x79, 0x76, + 0x79, 0x76, 0x79, 0x76, 0x79, 0x76, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x80, 0x1E, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x7A, 0xA2, 0x79, 0x80, 0x79, 0x80, 0x7A, 0xA2, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x82, 0x5E, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x7A, 0xA2, 0xC3, 0x56, + 0xA8, 0xC0, 0x7A, 0xA2, 0x79, 0x4E, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x98, 0x79, 0x98, 0x82, 0x5E, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x82, 0x5E, 0x79, 0x32, 0x79, 0x32, + 0x79, 0x32, 0x79, 0x32, 0x79, 0x6C, 0x79, 0x32, 0x80, 0x1E, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x80, 0x1E, 0x80, 0x1E, 0x79, 0x80, + 0x7B, 0x96, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x7A, 0xBC, 0x7A, 0xBC, + 0x7A, 0xBC, 0x79, 0x2C, 0x86, 0xF2, 0x7E, 0x58, 0x7A, 0xBC, 0x7A, 0xBC, + 0x79, 0x58, 0x7A, 0xBC, 0x7A, 0xBC, 0x7B, 0xCC, 0x86, 0xF2, 0x7E, 0x58, + 0x7A, 0xBC, 0x7A, 0xBC, 0x7D, 0x20, 0x87, 0x80, 0x7C, 0xE6, 0x87, 0x80, + 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x7A, 0xBC, 0x79, 0x2C, 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, + 0x7B, 0x2E, 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, 0x79, 0x6C, + 0x7A, 0xA2, 0x91, 0xAA, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x58, 0x7C, 0x02, + 0x79, 0xA6, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x08, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x80, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x58, 0x80, 0x1E, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x7A, 0xBC, 0x79, 0x98, 0x78, 0xFC, 0x78, 0xFC, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0xB8, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x32, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x32, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x6C, 0x79, 0x6C, + 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, + 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x08, 0x68, 0x79, 0x32, 0x80, 0x7C, 0x79, 0x32, 0x7A, 0x54, 0x79, 0x62, + 0x7A, 0xA2, 0x7D, 0xAC, 0x79, 0x62, 0x80, 0xDA, 0x79, 0xDC, 0x79, 0xDC, + 0x7E, 0xB2, 0x79, 0x3E, 0x79, 0x3E, 0x7A, 0xA2, 0x79, 0x62, 0x7A, 0xA2, + 0x79, 0xEE, 0x79, 0x62, 0x7A, 0xA2, 0x79, 0x6C, 0x79, 0x6C, 0x7A, 0xA2, + 0x79, 0x98, 0x7A, 0xA2, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x62, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x08, 0x68, 0x79, 0x58, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x7A, 0x12, 0x7A, 0x00, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x98, 0x79, 0x98, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x08, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x58, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x6C, 0x79, 0x58, 0x79, 0x6C, 0x79, 0x58, 0x7A, 0x00, + 0x79, 0x6C, 0x79, 0x58, 0x79, 0x6C, 0x7B, 0x00, 0x79, 0x98, 0x79, 0x08, + 0x79, 0x80, 0x79, 0x6C, 0x79, 0x58, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x08, + 0x79, 0x02, 0x79, 0x02, 0x7A, 0xBC, 0x79, 0x98, 0x79, 0x98, 0x79, 0x02, + 0x79, 0x02, 0x79, 0x98, 0x79, 0x98, 0x79, 0x6C, 0x79, 0x02, 0x79, 0x98, + 0x79, 0x08, 0x79, 0x98, 0x79, 0x98, 0x7E, 0x02, 0xAB, 0x0A, 0x79, 0x0E, + 0x79, 0x58, 0x79, 0x98, 0x7A, 0x3E, 0x8C, 0xAA, 0x79, 0x20, 0x79, 0x20, + 0x79, 0x20, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, + 0x79, 0x1A, 0x79, 0x14, 0x79, 0x1A, 0x79, 0x62, 0x79, 0x20, 0x79, 0x20, + 0x79, 0x20, 0x7A, 0x3E, 0x7F, 0x0C, 0x7A, 0x88, 0x79, 0x6C, 0x7A, 0x88, + 0x81, 0xFC, 0x95, 0xA8, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x7F, 0x66, + 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0xD6, 0x28, 0x7A, 0x6E, + 0x7A, 0x6E, 0x79, 0x62, 0x7A, 0x6E, 0x7A, 0x6E, 0x7A, 0x6E, 0x7A, 0x6E, + 0x7A, 0x6E, 0x7A, 0x3E, 0x79, 0x8A, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x7A, 0x88, 0x7A, 0x88, + 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x79, 0x62, 0x79, 0x62, + 0x7A, 0x3E, 0x7A, 0x3E, 0x7A, 0x3E, 0x7A, 0x3E, 0x7A, 0x3E, 0x7A, 0x3E, + 0x79, 0x3E, 0x7A, 0x28, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x6C, + 0x7A, 0x00, 0x79, 0x58, 0x79, 0x58, 0xA4, 0xA4, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x38, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x79, 0x3E, 0x7A, 0x28, 0x7A, 0x28, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0xDC, 0x79, 0xDC, 0x79, 0x26, 0x79, 0x26, + 0x79, 0x26, 0x79, 0x76, 0x79, 0x76, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x32, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x7A, 0xBC, 0x79, 0x2C, 0x79, 0x2C, 0x7A, 0xBC, 0x7A, 0xBC, + 0x7A, 0xBC, 0x79, 0x58, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x7A, 0x00, + 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x7A, 0xBC, 0x79, 0x32, 0x7A, 0xA2, 0x7A, 0xA2, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x62, 0x79, 0x76, 0x7A, 0xA2, + 0x79, 0x62, 0x79, 0x98, 0x79, 0x6C, 0x79, 0x98, 0x79, 0x98, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x7A, 0x88, + 0x7A, 0xBC, 0x79, 0x3E, 0x7A, 0x28, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x79, 0x6C, 0x7A, 0x00, 0x79, 0x58, 0x79, 0x58, 0x79, 0x62, 0x9A, 0x02, + 0x82, 0x5E, 0x7A, 0x00, 0x08, 0x68, 0x79, 0x6C, 0x79, 0x58, 0x08, 0x68, + 0x79, 0x6C, 0x7A, 0x00, 0x79, 0xDC, 0x79, 0xDC, 0x79, 0xDC, 0x79, 0xDC, + 0x79, 0x3E, 0x7A, 0xA2, 0x79, 0xDC, 0x79, 0x76, 0x7A, 0xA2, 0x79, 0x98, + 0x08, 0x68, 0x08, 0x68, 0x79, 0xDC, 0x79, 0xEE, 0xB0, 0x02, 0x7A, 0xA2, + 0x79, 0x76, 0x79, 0x62, 0x79, 0x76, 0x79, 0x76, 0x79, 0x98, 0x7A, 0x00, + 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x98, 0x08, 0x68, + 0x79, 0x98, 0x7A, 0x00, 0x79, 0x6C, 0x79, 0x98, 0x79, 0x98, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x98, 0x79, 0x38, 0x79, 0x3E, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x76, 0x79, 0x76, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x80, 0x7A, 0x3E, 0x7A, 0xA2, 0x00, 0x01, + 0x05, 0xEA, 0xFF, 0xCC, 0x00, 0x01, 0xB6, 0x9A, 0x00, 0x04, 0x00, 0x00, + 0x04, 0x68, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x7C, 0x8E, 0x86, 0x18, 0x7D, 0x34, 0x80, 0x36, + 0x7D, 0x34, 0x08, 0xE0, 0x08, 0xE0, 0x86, 0xD4, 0x88, 0x64, 0x7C, 0xB6, + 0x7C, 0x0E, 0x7C, 0x2C, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, + 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x80, 0xC2, + 0x7F, 0xA0, 0x80, 0xC2, 0x7E, 0x02, 0x80, 0xE8, 0x80, 0xE8, 0x80, 0xE8, + 0x80, 0xE8, 0x82, 0x04, 0x7E, 0x1C, 0x7C, 0x26, 0x7C, 0x26, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xEC, + 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xE6, 0x86, 0xD4, + 0x83, 0x00, 0x86, 0xD4, 0x86, 0xD4, 0x83, 0x94, 0x99, 0x62, 0x8B, 0x8C, + 0x96, 0x34, 0x86, 0xD4, 0x86, 0xD4, 0x8F, 0x22, 0x8F, 0x22, 0x86, 0xD4, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x80, 0x7A, 0x82, 0x7C, 0x82, 0x3E, 0x7C, 0xFC, + 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, + 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, 0x83, 0xE6, + 0x8A, 0x90, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x88, 0xCE, + 0x83, 0xE6, 0x88, 0xCE, 0x88, 0xCE, 0x88, 0xCE, 0x83, 0xE6, 0x83, 0xE6, + 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, + 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x7C, 0x84, + 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, + 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x97, 0x3A, 0xC7, 0x00, 0x7C, 0x8E, + 0x7C, 0x8E, 0x7C, 0x8E, 0x85, 0xBA, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7D, 0x18, + 0x7D, 0x18, 0x7D, 0x18, 0x7D, 0x18, 0x7C, 0x98, 0x7D, 0x18, 0x7C, 0x98, + 0x81, 0x12, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7E, 0x6A, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x26, + 0x7C, 0x26, 0x7C, 0x26, 0x82, 0xBE, 0x81, 0x40, 0x87, 0x32, 0x7C, 0x0E, + 0x7C, 0x26, 0x08, 0xE0, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x3E, 0x81, 0x40, + 0x81, 0xCE, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x8C, 0x12, 0x7C, 0x26, + 0x7C, 0x0E, 0x7C, 0x26, 0x7C, 0x26, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x7C, 0x26, 0x82, 0xBE, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, + 0x7C, 0xC4, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0xAC, + 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0x98, + 0x7C, 0xAC, 0x7C, 0x48, 0x08, 0xE0, 0x7C, 0xD2, 0x7C, 0x0E, 0x7C, 0x0E, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x7C, 0x98, 0x7C, 0x98, + 0x88, 0x64, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x87, 0x98, + 0x08, 0xE0, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x26, 0x7C, 0xA2, + 0x87, 0xFE, 0x87, 0xFE, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7D, 0x18, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x90, 0xBA, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, + 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, + 0x7C, 0x32, 0x7D, 0x42, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7C, 0xE0, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x50, 0x7D, 0xD6, 0x7E, 0x50, + 0x7E, 0x50, 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, + 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, 0x7E, 0x50, 0x7E, 0x50, 0x7D, 0x18, + 0x80, 0x9C, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, + 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, + 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7D, 0x18, 0x7E, 0x50, 0x7E, 0x50, + 0x7C, 0x8E, 0x86, 0x18, 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, + 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, 0xA5, 0x3A, 0x8C, 0x9C, + 0x7D, 0x78, 0x08, 0xE6, 0x98, 0x4C, 0x08, 0xE6, 0xAE, 0xC8, 0x80, 0x7A, + 0x86, 0xD4, 0x86, 0xD4, 0x7B, 0xF6, 0x7F, 0xBE, 0x7D, 0xEC, 0x7D, 0xEC, + 0x08, 0xE6, 0x83, 0xE6, 0x7F, 0xDC, 0x7B, 0xF6, 0x7C, 0x98, 0x7C, 0x98, + 0x7B, 0xF6, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x08, 0xE6, + 0x08, 0xE6, 0x7C, 0xA2, 0x80, 0x7A, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7D, 0x54, 0x7C, 0x02, 0x7B, 0xFC, 0x7C, 0xA2, 0x7B, 0xFC, + 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, + 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x83, 0x4A, 0x7D, 0x66, + 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, + 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, + 0x7D, 0x26, 0x80, 0x58, 0x7C, 0x5C, 0x08, 0xE0, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x8B, 0x0E, 0x7C, 0x32, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x81, 0x9C, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x98, + 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0xAC, 0x7C, 0x98, 0x7C, 0xAC, 0x7C, 0xAC, + 0x7C, 0xAC, 0x7C, 0x98, 0x08, 0xE0, 0x08, 0xE0, 0x7C, 0x98, 0x08, 0xE0, + 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0x32, 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0x98, + 0x7F, 0xFA, 0x7C, 0xA2, 0x8E, 0x64, 0x7E, 0x6A, 0x7C, 0x98, 0x08, 0xE0, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x26, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, 0x7E, 0x50, 0x7C, 0xA2, + 0x7C, 0x08, 0x7C, 0x08, 0x7C, 0x0E, 0x7C, 0xA2, 0x7C, 0x14, 0x7C, 0x66, + 0x7C, 0x14, 0x7C, 0x14, 0x7C, 0x38, 0x7C, 0x38, 0x9E, 0x7C, 0x92, 0xE6, + 0x7C, 0x1A, 0x7C, 0x1A, 0x93, 0xD0, 0x7C, 0x38, 0x7C, 0x38, 0x7C, 0x38, + 0x7C, 0x38, 0x7C, 0x98, 0x7C, 0x38, 0x7C, 0x38, 0x7C, 0x38, 0x7C, 0x7A, + 0x7E, 0x36, 0x7C, 0x7A, 0x7E, 0x36, 0x7D, 0x9C, 0x7D, 0x9C, 0x7E, 0x36, + 0x7D, 0x8A, 0x7D, 0x8A, 0x7D, 0x8A, 0x7D, 0xAE, 0x7D, 0xAE, 0x8F, 0xE8, + 0x7C, 0x70, 0x7C, 0xEE, 0x7C, 0x70, 0x7C, 0xEE, 0x9A, 0x9C, 0x85, 0x06, + 0x7C, 0x38, 0x85, 0x60, 0xAB, 0x2E, 0x7C, 0x38, 0x08, 0xDA, 0x08, 0xDA, + 0x08, 0xDA, 0x08, 0xDA, 0x86, 0x76, 0x7D, 0x78, 0x7D, 0x78, 0x7D, 0x78, + 0x7D, 0xEC, 0x80, 0xC2, 0x7C, 0xAC, 0x7C, 0x98, 0x7C, 0x32, 0x08, 0xE0, + 0x08, 0xE0, 0x7D, 0x8A, 0x7D, 0xAE, 0x7D, 0xAE, 0x7C, 0x7A, 0x7E, 0x36, + 0x7C, 0x7A, 0x7D, 0xC0, 0x7D, 0x9C, 0x7D, 0x9C, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x7D, 0x34, 0x7D, 0xEC, 0x80, 0xC2, 0x80, 0xC2, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xEC, 0x86, 0xD4, 0x86, 0xD4, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x80, 0x7A, + 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, 0x80, 0x18, 0x80, 0x18, 0x83, 0xE6, + 0x83, 0xE6, 0x83, 0xE6, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7D, 0x18, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x26, 0x82, 0xBE, 0x82, 0xBE, + 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x08, 0xE0, 0x7C, 0xAC, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x32, + 0x7C, 0x32, 0x7C, 0x32, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x50, 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, + 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7C, 0x8E, 0x7C, 0x8E, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7C, 0x26, + 0x7D, 0x18, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE6, 0x80, 0x18, + 0x08, 0xE6, 0x7C, 0xA2, 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x98, + 0x7C, 0x98, 0x7D, 0x26, 0x7E, 0x6A, 0x7E, 0x6A, 0x7D, 0x26, 0x7D, 0x26, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7D, 0x8A, 0x7D, 0x8A, 0x7D, 0xAE, 0x7D, 0xAE, + 0x7D, 0x8A, 0x7D, 0xAE, 0x7C, 0x26, 0x7D, 0xEC, 0x80, 0xC2, 0x7C, 0xAC, + 0x7C, 0x98, 0x7C, 0x32, 0x08, 0xE0, 0x08, 0xE0, 0x7D, 0x9C, 0x7D, 0x9C, + 0x7C, 0x2C, 0x7C, 0x2C, 0x08, 0xE6, 0x86, 0x76, 0x8A, 0x1E, 0x7C, 0xA2, + 0x7C, 0x32, 0x7C, 0xAC, 0x7D, 0xD6, 0x7C, 0x98, 0x08, 0xE0, 0x7D, 0xD6, + 0x7C, 0x98, 0x7C, 0x32, 0x86, 0xD4, 0x86, 0xD4, 0x86, 0xD4, 0x86, 0xD4, + 0x7D, 0xEC, 0x08, 0xEC, 0x08, 0xE6, 0x86, 0xD4, 0x80, 0x18, 0x7C, 0xA2, + 0x08, 0xE6, 0x7D, 0xD6, 0x7D, 0xD6, 0x80, 0x7A, 0x08, 0xE6, 0x86, 0xD4, + 0x83, 0xE6, 0x81, 0x6E, 0x80, 0x18, 0x08, 0xE6, 0x80, 0x18, 0x80, 0x18, + 0x7C, 0xA2, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0xAC, 0x7C, 0xA2, 0x7D, 0xD6, 0x7E, 0x50, 0x7C, 0xA2, 0x7C, 0x32, + 0x7E, 0x50, 0x7E, 0x50, 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0xA2, 0x7D, 0x34, 0x7D, 0xEC, 0x7E, 0x50, 0x7C, 0xAC, 0x80, 0x7A, + 0x80, 0x7A, 0x80, 0x18, 0x80, 0x18, 0x7D, 0xAE, 0x7C, 0x38, 0x7C, 0x38, + 0x7E, 0x6A, 0x00, 0x01, 0x05, 0x8F, 0xFF, 0xAF, 0x00, 0x01, 0x05, 0xEA, + 0xFF, 0xC6, 0x00, 0x01, 0x06, 0x05, 0xFF, 0xAF, 0x00, 0x03, 0x05, 0x8F, + 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, 0x05, 0xDD, 0xFF, 0x3B, 0x00, 0x02, + 0xCC, 0xDE, 0x00, 0x04, 0x00, 0x00, 0xDC, 0x10, 0xD0, 0x4E, 0x00, 0x7D, + 0x00, 0x6A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, + 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x1F, 0xFF, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0x6E, 0x00, 0x00, + 0xFF, 0xCB, 0x00, 0x00, 0xFF, 0xE1, 0xFF, 0x91, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, 0xFF, 0xB5, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE7, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xF4, 0xFF, 0xD1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6E, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x1B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x4A, + 0xFF, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC0, 0xFF, 0xB7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xEF, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0xFF, 0x98, 0xFF, 0xB3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9B, 0xFF, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xB4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, + 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x19, 0xFF, 0xB9, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB3, 0xFF, 0x75, 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xAF, 0xFF, 0x32, + 0xFF, 0x3D, 0xFF, 0xBB, 0x00, 0x02, 0xFF, 0x98, 0xFF, 0xEB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x37, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x75, 0xFF, 0x65, 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, + 0xFF, 0x2F, 0xFF, 0x5E, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0xFE, 0xF5, + 0xFF, 0xD7, 0x00, 0x00, 0xFF, 0x49, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, + 0xFF, 0x80, 0xFF, 0xD1, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x90, 0xFF, 0x59, 0xFF, 0x6F, 0xFF, 0x27, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x37, 0xFF, 0xD1, 0x00, 0x00, + 0xFF, 0x6B, 0xFF, 0xEB, 0x00, 0x00, 0xFF, 0x46, 0x00, 0x00, 0xFF, 0xB9, + 0x00, 0x00, 0xFF, 0xE1, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3D, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBE, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0xFF, 0xEC, 0xFF, 0xBB, 0xFF, 0xDC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, + 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, 0xFF, 0xF3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x2C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xED, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xA9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x5E, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0xFF, 0xEC, 0x00, 0x0D, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x26, + 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0xFF, 0xC4, 0x00, 0x08, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0xFF, 0xAF, 0xFF, 0x8C, + 0xFF, 0xAB, 0x00, 0x26, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0xFF, 0xDA, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x24, 0xFF, 0xE2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xBB, + 0xFF, 0xBB, 0xFF, 0xD3, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x5E, 0xFF, 0x75, 0xFF, 0x80, 0xFF, 0xA5, 0x00, 0x23, + 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x21, 0xFF, 0x79, 0xFF, 0x9B, + 0xFF, 0x32, 0x00, 0x00, 0xFF, 0x25, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0xFE, 0xA1, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0xFF, 0x73, + 0xFF, 0xD0, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xA1, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9B, 0xFF, 0x91, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x23, + 0xFF, 0x32, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x21, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0xFE, 0x7C, 0x00, 0x00, 0xFF, 0x46, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x79, 0xFF, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x1C, 0xFF, 0x67, 0xFF, 0xB2, 0xFF, 0x3D, 0xFF, 0x8D, + 0xFF, 0x31, 0xFF, 0x3F, 0x00, 0x00, 0xFF, 0x4D, 0x00, 0x00, 0xFF, 0x42, + 0xFE, 0xF5, 0x00, 0x06, 0x00, 0x00, 0xFF, 0x6D, 0x00, 0x00, 0xFF, 0xBB, + 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0xCF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xF5, + 0xFF, 0x86, 0xFF, 0xBB, 0xFF, 0x52, 0x00, 0x00, 0x00, 0xBA, 0xFF, 0xB2, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x0C, 0xFF, 0x3D, 0xFF, 0x46, + 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x1C, 0xFF, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x86, + 0xFF, 0x75, 0xFF, 0x5C, 0x00, 0x00, 0xFE, 0xF5, 0xFF, 0x98, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0xFF, 0x67, 0xFF, 0x6A, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x8D, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2F, 0x00, 0x00, + 0x01, 0x18, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3F, 0x00, 0x00, 0xFE, 0xF5, + 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, 0xFF, 0x70, 0xFF, 0x5E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xA1, + 0xFF, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x40, 0xFE, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x20, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xBA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x69, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x73, 0xFF, 0x66, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA0, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x85, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, + 0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC8, + 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x4D, + 0x00, 0x05, 0xFF, 0xBB, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0xAE, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x09, 0xFF, 0xCE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xA1, 0xFF, 0x5C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xFE, 0xBA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x20, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x8C, 0xFF, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0xDB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0xFF, 0xA3, 0x00, 0x00, 0xFF, 0x98, + 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x88, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, + 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, + 0xFF, 0xB1, 0x00, 0x00, 0xFF, 0x4B, 0xFF, 0xD8, 0xFF, 0xD4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0xFF, 0xD2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x0A, 0xFF, 0x41, 0xFF, 0x6B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x68, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0xFF, 0xC6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7E, 0xFF, 0x46, 0x00, 0x00, 0xFF, 0x3B, + 0x00, 0x00, 0xFF, 0x52, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x52, 0xFF, 0xA3, 0xFF, 0x5B, 0xFF, 0x78, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x68, + 0x00, 0x00, 0x00, 0x00, 0xFE, 0xD5, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xC6, + 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x41, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCA, 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xAE, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0xFF, 0xB0, 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0xFF, 0xD0, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, + 0x00, 0xCD, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, + 0xFF, 0xBB, 0xFF, 0x80, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, 0xFF, 0x6E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0xFF, 0xCC, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x1C, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0xFF, 0xF0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAA, 0xFF, 0xD2, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x75, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, + 0xFF, 0x75, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x91, 0xFF, 0xCC, 0xFF, 0xCE, 0xFF, 0x65, 0x00, 0x00, + 0xFF, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x20, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA4, 0x00, 0x00, 0xFF, 0x80, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0xFF, 0xCE, + 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x23, 0xFF, 0x65, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x91, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0xFF, 0x1D, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0xFF, 0xD6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0xFF, 0xCC, 0xFF, 0xCC, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6E, 0xFF, 0xBF, 0xFF, 0xAE, + 0xFF, 0x37, 0x00, 0x00, 0xFF, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFE, 0xBA, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8F, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xBA, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xAE, 0xFF, 0xAE, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x18, + 0xFF, 0x37, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6E, 0xFF, 0x19, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBF, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFE, 0xB3, 0x00, 0x00, 0xFF, 0x8C, + 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x28, 0xFF, 0xBF, 0xFF, 0xBF, 0xFF, 0xBD, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x89, + 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD1, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0x5C, 0x00, 0x00, + 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xC4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xDE, 0xFF, 0x5C, 0xFF, 0x3B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9C, 0x00, 0x00, + 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xBA, 0x00, 0x00, 0x00, 0xA2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x9C, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, + 0x00, 0x00, 0x00, 0x9F, 0x00, 0xAE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xAE, 0x00, 0x00, 0x00, 0x0A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x9F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x91, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, + 0xFF, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD7, 0x00, 0x00, 0xFF, 0xB4, + 0x00, 0x19, 0xFF, 0xB9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0xFF, 0x75, + 0x00, 0x00, 0xFF, 0xF1, 0xFF, 0xAF, 0xFF, 0x32, 0xFF, 0x3D, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x37, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0xFF, 0x65, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, 0xFF, 0x6B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x23, 0xFF, 0x3B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE5, 0xFF, 0xE4, 0xFF, 0xF6, 0xFF, 0x46, 0x00, 0x00, + 0xFF, 0xDD, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x0C, 0xFF, 0x46, 0xFF, 0x75, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xA9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, 0xFF, 0xF1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0xFF, 0xC8, 0xFF, 0xC8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0x00, 0x00, + 0xFF, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, + 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xA3, 0xFF, 0x2B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2B, 0x00, 0x00, + 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x96, + 0x00, 0x00, 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC6, 0xFF, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0xFF, 0xC8, 0xFF, 0x8C, 0xFE, 0xE8, 0x00, 0x1F, 0xFF, 0x8C, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0xFF, 0x6D, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9B, 0xFF, 0xB2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xD2, 0xFF, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC1, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x27, 0x00, 0x1F, + 0xFF, 0xF1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x15, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, + 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x1F, 0xFF, 0x1B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0x6E, 0x00, 0x00, + 0xFF, 0xCB, 0x00, 0x00, 0xFF, 0xE1, 0xFF, 0x91, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF9, 0xFF, 0x49, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0xFF, 0xF1, 0x00, 0x06, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB8, 0xFF, 0x9C, 0xFF, 0x9C, + 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0xFF, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD1, 0x00, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC8, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, + 0xFE, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0xFF, 0xBB, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x14, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x42, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0xFF, 0xF5, 0xFF, 0x6F, 0x00, 0x00, + 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0xFF, 0xDE, 0x00, 0x00, 0xFF, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x71, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x93, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x93, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x4A, 0xFF, 0x45, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x5A, + 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x00, 0x0A, + 0x00, 0xD8, 0x00, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x22, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x5D, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, + 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x18, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCF, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, + 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x8C, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0A, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD1, 0xFF, 0xF6, 0x00, 0x00, 0xFF, 0x5C, 0x00, 0x00, + 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0xFF, 0xEF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBE, 0x00, 0x14, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0xFF, 0xEC, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0E, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x2F, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, + 0x00, 0x0E, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, + 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0xFF, 0x98, 0x00, 0x00, 0xFF, 0x23, 0x00, 0x00, + 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x1F, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, + 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x1D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, + 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x09, 0x95, 0xFF, 0x3F, + 0x00, 0x01, 0x05, 0x0A, 0xFF, 0x3E, 0x00, 0x01, 0x05, 0x46, 0xFF, 0xF8, + 0x00, 0x01, 0x04, 0xE3, 0xFF, 0xD0, 0x00, 0x01, 0x02, 0xC2, 0x00, 0x55, + 0x00, 0x01, 0x02, 0xC2, 0x00, 0x9B, 0x00, 0x01, 0x02, 0xD3, 0x00, 0x34, + 0x00, 0x01, 0x05, 0xE3, 0xFF, 0xBB, 0x00, 0x01, 0x01, 0x09, 0x00, 0x9A, + 0x00, 0x01, 0x02, 0xB5, 0x00, 0x67, 0x00, 0x01, 0x02, 0xC2, 0x00, 0xAF, + 0x00, 0x01, 0x02, 0xB5, 0x00, 0x79, 0x00, 0x02, 0x03, 0x92, 0xFF, 0x4A, + 0x05, 0xE3, 0xFF, 0x5F, 0x00, 0x02, 0x02, 0xBC, 0x00, 0x86, 0x02, 0xC1, + 0x00, 0x90, 0x00, 0x02, 0x03, 0x7B, 0xFF, 0xF8, 0x03, 0x7C, 0xFF, 0x94, + 0x00, 0x02, 0x04, 0x2E, 0xFF, 0x98, 0x04, 0x42, 0xFF, 0xBB, 0x00, 0x02, + 0x01, 0xA5, 0xFF, 0x69, 0x01, 0xA6, 0xFF, 0x69, 0x00, 0x02, 0x04, 0x38, + 0xFF, 0x98, 0x05, 0xF6, 0xFF, 0xBB, 0x00, 0x02, 0x00, 0xC9, 0x00, 0x3B, + 0x09, 0x18, 0x00, 0x3B, 0x00, 0x03, 0x06, 0x3A, 0x00, 0x10, 0x06, 0x3C, + 0x00, 0x0B, 0x06, 0x3D, 0x00, 0x10, 0x00, 0x03, 0x01, 0xA5, 0xFF, 0x5E, + 0x01, 0xA6, 0xFF, 0x5E, 0x09, 0x95, 0xFF, 0x3F, 0x00, 0x04, 0x02, 0xB7, + 0x00, 0x00, 0x02, 0xED, 0x00, 0x07, 0x02, 0xEE, 0x00, 0x00, 0x06, 0x05, + 0x00, 0x06, 0x00, 0x04, 0x01, 0xA5, 0xFF, 0x5E, 0x01, 0xA6, 0xFF, 0x5E, + 0x02, 0xC2, 0x00, 0x2F, 0x09, 0x95, 0xFF, 0x3F, 0x00, 0x04, 0x04, 0x0F, + 0xFF, 0x6C, 0x04, 0x3B, 0xFF, 0xCC, 0x04, 0x42, 0xFF, 0xD4, 0x09, 0x27, + 0xFF, 0x9F, 0x00, 0x04, 0x03, 0x92, 0xFF, 0x4A, 0x04, 0x05, 0xFF, 0xB2, + 0x04, 0x06, 0xFF, 0xB2, 0x05, 0xE3, 0xFF, 0x5F, 0x00, 0x04, 0x02, 0x0B, + 0xFF, 0xA5, 0x02, 0x13, 0xFF, 0x4F, 0x02, 0x1A, 0xFF, 0x79, 0x02, 0xBB, + 0xFF, 0xBC, 0x00, 0x04, 0x02, 0xC2, 0x00, 0x07, 0x03, 0x87, 0xFF, 0xF6, + 0x05, 0xEA, 0xFF, 0xC0, 0x06, 0x04, 0xFF, 0xCC, 0x00, 0x05, 0x02, 0xC2, + 0x00, 0x07, 0x03, 0x87, 0xFF, 0xF6, 0x05, 0xEA, 0xFF, 0xC0, 0x06, 0x77, + 0xFF, 0xD4, 0x06, 0x78, 0xFF, 0xD4, 0x00, 0x05, 0x01, 0xDE, 0xFF, 0x52, + 0x01, 0xE0, 0xFF, 0x52, 0x01, 0xE1, 0xFF, 0x52, 0x01, 0xE2, 0xFF, 0x52, + 0x07, 0xFE, 0xFF, 0x5F, 0x00, 0x05, 0x00, 0xC9, 0x00, 0x46, 0x02, 0xB7, + 0x00, 0x00, 0x02, 0xED, 0x00, 0x07, 0x02, 0xEE, 0x00, 0x00, 0x09, 0x18, + 0x00, 0x46, 0x00, 0x06, 0x03, 0x92, 0xFF, 0x4A, 0x04, 0x05, 0xFF, 0xB2, + 0x04, 0x06, 0xFF, 0xB2, 0x05, 0xE3, 0xFF, 0x5F, 0x06, 0x77, 0xFF, 0xB6, + 0x06, 0x78, 0xFF, 0xB6, 0x00, 0x06, 0x00, 0x25, 0x00, 0x4A, 0x00, 0x35, + 0x00, 0x04, 0x00, 0x36, 0x00, 0x36, 0x00, 0x38, 0x00, 0x35, 0x00, 0x39, + 0xFF, 0xCD, 0x00, 0x3A, 0xFF, 0xC3, 0x00, 0x06, 0x01, 0x9C, 0xFF, 0x9A, + 0x01, 0x9D, 0xFF, 0x9A, 0x04, 0x0F, 0xFF, 0x98, 0x04, 0x2E, 0xFF, 0x5A, + 0x04, 0x30, 0xFF, 0xBD, 0x04, 0x42, 0xFF, 0x6D, 0x00, 0x06, 0x00, 0xC9, + 0x00, 0x46, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xED, 0x00, 0x07, 0x02, 0xEE, + 0x00, 0x00, 0x06, 0x05, 0x00, 0x06, 0x09, 0x18, 0x00, 0x46, 0x00, 0x07, + 0x02, 0xB6, 0x00, 0x48, 0x02, 0xC3, 0x00, 0x48, 0x02, 0xED, 0x00, 0x00, + 0x05, 0x1D, 0x00, 0x22, 0x05, 0x1F, 0x00, 0x06, 0x05, 0x28, 0x00, 0x22, + 0x06, 0x05, 0x00, 0x00, 0x00, 0x09, 0x02, 0xB4, 0x00, 0x9A, 0x02, 0xB5, + 0x00, 0x9A, 0x02, 0xB6, 0x00, 0x9A, 0x02, 0xBD, 0x00, 0x9A, 0x02, 0xBE, + 0x00, 0x9A, 0x02, 0xC3, 0x00, 0x9A, 0x02, 0xCC, 0x00, 0x9A, 0x08, 0x61, + 0x00, 0x9A, 0x08, 0x62, 0x00, 0x9A, 0x00, 0x0B, 0x02, 0xC2, 0x00, 0x07, + 0x03, 0x87, 0xFF, 0xF6, 0x05, 0xDB, 0xFF, 0x7F, 0x05, 0xDC, 0xFF, 0x7F, + 0x05, 0xDD, 0xFF, 0x7F, 0x05, 0xEA, 0xFF, 0xC0, 0x06, 0x04, 0xFF, 0xCC, + 0x07, 0xF8, 0xFF, 0x7F, 0x08, 0xCB, 0xFF, 0x7F, 0x08, 0xCC, 0xFF, 0x7F, + 0x08, 0xCF, 0xFF, 0x7F, 0x00, 0x0C, 0x02, 0xB4, 0x00, 0x59, 0x02, 0xB5, + 0x00, 0x59, 0x02, 0xBD, 0x00, 0x59, 0x02, 0xBE, 0x00, 0x59, 0x02, 0xCC, + 0x00, 0x59, 0x02, 0xED, 0x00, 0x00, 0x05, 0x1D, 0x00, 0x22, 0x05, 0x1F, + 0x00, 0x06, 0x05, 0x28, 0x00, 0x22, 0x06, 0x05, 0x00, 0x00, 0x08, 0x61, + 0x00, 0x59, 0x08, 0x62, 0x00, 0x59, 0x00, 0x0D, 0x02, 0xDE, 0xFF, 0x71, + 0x03, 0xDF, 0xFF, 0x71, 0x03, 0xE0, 0xFF, 0x71, 0x03, 0xE1, 0xFF, 0x71, + 0x03, 0xE2, 0xFF, 0x71, 0x04, 0xE9, 0xFF, 0x71, 0x04, 0xEA, 0xFF, 0x71, + 0x05, 0x00, 0xFF, 0x71, 0x05, 0x01, 0xFF, 0x71, 0x05, 0xE3, 0xFF, 0x5F, + 0x08, 0x8F, 0xFF, 0x71, 0x08, 0x90, 0xFF, 0x71, 0x09, 0xC6, 0xFF, 0x71, + 0x00, 0x0D, 0x00, 0x8A, 0x00, 0x34, 0x01, 0x36, 0x00, 0x34, 0x02, 0xC7, + 0x00, 0x34, 0x02, 0xC8, 0x00, 0x34, 0x02, 0xCF, 0x00, 0x34, 0x02, 0xD2, + 0x00, 0x34, 0x02, 0xD3, 0x00, 0x34, 0x02, 0xD4, 0x00, 0x34, 0x02, 0xD5, + 0x00, 0x34, 0x03, 0x0A, 0x00, 0x34, 0x06, 0x21, 0x00, 0x34, 0x08, 0x65, + 0x00, 0x34, 0x09, 0x3B, 0x00, 0x34, 0x00, 0x0D, 0x02, 0xB4, 0x00, 0x59, + 0x02, 0xB5, 0x00, 0x59, 0x02, 0xBD, 0x00, 0x59, 0x02, 0xBE, 0x00, 0x59, + 0x02, 0xC3, 0x00, 0x59, 0x02, 0xCC, 0x00, 0x59, 0x02, 0xED, 0x00, 0x00, + 0x05, 0x1D, 0x00, 0x22, 0x05, 0x1F, 0x00, 0x06, 0x05, 0x28, 0x00, 0x22, + 0x06, 0x05, 0x00, 0x00, 0x08, 0x61, 0x00, 0x59, 0x08, 0x62, 0x00, 0x59, + 0x00, 0x0D, 0x00, 0x8A, 0x00, 0xA1, 0x01, 0x36, 0x00, 0xA1, 0x02, 0xC7, + 0x00, 0xA1, 0x02, 0xC8, 0x00, 0xA1, 0x02, 0xCF, 0x00, 0xA1, 0x02, 0xD2, + 0x00, 0xA1, 0x02, 0xD3, 0x00, 0xA1, 0x02, 0xD4, 0x00, 0xA1, 0x02, 0xD5, + 0x00, 0xA1, 0x03, 0x0A, 0x00, 0xA1, 0x06, 0x21, 0x00, 0xA1, 0x08, 0x65, + 0x00, 0xA1, 0x09, 0x3B, 0x00, 0xA1, 0x00, 0x0E, 0x02, 0xDE, 0xFF, 0x71, + 0x03, 0x92, 0xFF, 0x4A, 0x03, 0xDF, 0xFF, 0x71, 0x03, 0xE0, 0xFF, 0x71, + 0x03, 0xE1, 0xFF, 0x71, 0x03, 0xE2, 0xFF, 0x71, 0x04, 0xE9, 0xFF, 0x71, + 0x04, 0xEA, 0xFF, 0x71, 0x05, 0x00, 0xFF, 0x71, 0x05, 0x01, 0xFF, 0x71, + 0x05, 0xE3, 0xFF, 0x5F, 0x08, 0x8F, 0xFF, 0x71, 0x08, 0x90, 0xFF, 0x71, + 0x09, 0xC6, 0xFF, 0x71, 0x00, 0x0E, 0x03, 0xFC, 0xFF, 0xB2, 0x03, 0xFD, + 0xFF, 0xB2, 0x03, 0xFE, 0xFF, 0xB2, 0x03, 0xFF, 0xFF, 0xB2, 0x04, 0x00, + 0xFF, 0xB2, 0x04, 0x01, 0xFF, 0xB2, 0x04, 0x02, 0xFF, 0xB2, 0x04, 0x03, + 0xFF, 0xB2, 0x04, 0x04, 0xFF, 0xB2, 0x04, 0x05, 0xFF, 0xB2, 0x04, 0x06, + 0xFF, 0xB2, 0x05, 0xE3, 0xFF, 0x5F, 0x08, 0x94, 0xFF, 0xB2, 0x08, 0x95, + 0xFF, 0xB2, 0x00, 0x0E, 0x02, 0xDE, 0xFF, 0x5C, 0x03, 0x92, 0xFF, 0x4A, + 0x03, 0xDF, 0xFF, 0x5C, 0x03, 0xE0, 0xFF, 0x5C, 0x03, 0xE1, 0xFF, 0x5C, + 0x03, 0xE2, 0xFF, 0x5C, 0x04, 0xE9, 0xFF, 0x5C, 0x04, 0xEA, 0xFF, 0x5C, + 0x05, 0x00, 0xFF, 0x5C, 0x05, 0x01, 0xFF, 0x5C, 0x05, 0xE3, 0xFF, 0x5F, + 0x08, 0x8F, 0xFF, 0x5C, 0x08, 0x90, 0xFF, 0x5C, 0x09, 0xC6, 0xFF, 0x5C, + 0x00, 0x0E, 0x00, 0x8A, 0x00, 0x62, 0x01, 0x09, 0x00, 0x9A, 0x01, 0x36, + 0x00, 0x62, 0x02, 0xC7, 0x00, 0x62, 0x02, 0xC8, 0x00, 0x62, 0x02, 0xCF, + 0x00, 0x62, 0x02, 0xD2, 0x00, 0x62, 0x02, 0xD3, 0x00, 0x62, 0x02, 0xD4, + 0x00, 0x62, 0x02, 0xD5, 0x00, 0x62, 0x03, 0x0A, 0x00, 0x62, 0x06, 0x21, + 0x00, 0x62, 0x08, 0x65, 0x00, 0x62, 0x09, 0x3B, 0x00, 0x62, 0x00, 0x0F, + 0x02, 0xB4, 0x00, 0x59, 0x02, 0xB5, 0x00, 0x59, 0x02, 0xB6, 0x00, 0x59, + 0x02, 0xBD, 0x00, 0x59, 0x02, 0xBE, 0x00, 0x59, 0x02, 0xC2, 0x00, 0xF0, + 0x02, 0xC3, 0x00, 0x59, 0x02, 0xCC, 0x00, 0x59, 0x02, 0xED, 0x00, 0x00, + 0x05, 0x1D, 0x00, 0x22, 0x05, 0x1F, 0x00, 0x06, 0x05, 0x28, 0x00, 0x22, + 0x06, 0x05, 0x00, 0x00, 0x08, 0x61, 0x00, 0x59, 0x08, 0x62, 0x00, 0x59, + 0x00, 0x13, 0x00, 0x8A, 0x00, 0x16, 0x00, 0xC9, 0x00, 0x46, 0x01, 0x36, + 0x00, 0x16, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xC7, 0x00, 0x16, 0x02, 0xC8, + 0x00, 0x16, 0x02, 0xCF, 0x00, 0x16, 0x02, 0xD2, 0x00, 0x16, 0x02, 0xD3, + 0x00, 0x16, 0x02, 0xD4, 0x00, 0x16, 0x02, 0xD5, 0x00, 0x16, 0x02, 0xED, + 0x00, 0x07, 0x02, 0xEE, 0x00, 0x00, 0x03, 0x0A, 0x00, 0x16, 0x06, 0x05, + 0x00, 0x06, 0x06, 0x21, 0x00, 0x16, 0x08, 0x65, 0x00, 0x16, 0x09, 0x18, + 0x00, 0x46, 0x09, 0x3B, 0x00, 0x16, 0x00, 0x15, 0x05, 0x6F, 0xFF, 0xCC, + 0x05, 0x84, 0xFF, 0xCC, 0x05, 0x85, 0xFF, 0xCC, 0x05, 0x87, 0xFF, 0xCC, + 0x05, 0x8A, 0xFF, 0xCC, 0x05, 0xB1, 0xFF, 0xCC, 0x05, 0xBD, 0xFF, 0xCC, + 0x05, 0xE3, 0xFF, 0xCC, 0x05, 0xF0, 0xFF, 0xCC, 0x05, 0xF1, 0xFF, 0xCC, + 0x05, 0xF3, 0xFF, 0xCC, 0x05, 0xF6, 0xFF, 0xCC, 0x05, 0xFD, 0xFF, 0xCC, + 0x05, 0xFE, 0xFF, 0xCC, 0x06, 0x00, 0xFF, 0xCC, 0x06, 0x03, 0xFF, 0xCC, + 0x06, 0x04, 0xFF, 0xCC, 0x07, 0x0B, 0xFF, 0xCC, 0x07, 0x0C, 0xFF, 0xCC, + 0x07, 0x0D, 0xFF, 0xCC, 0x08, 0xD2, 0xFF, 0xCC, 0x00, 0x15, 0x02, 0xB1, + 0x00, 0x32, 0x02, 0xB2, 0x00, 0x32, 0x02, 0xB3, 0x00, 0x32, 0x02, 0xB7, + 0x00, 0x32, 0x02, 0xB8, 0x00, 0x32, 0x02, 0xBA, 0x00, 0x32, 0x02, 0xBB, + 0x00, 0x32, 0x02, 0xBC, 0x00, 0x32, 0x02, 0xBF, 0x00, 0x32, 0x02, 0xC0, + 0x00, 0x32, 0x02, 0xC1, 0x00, 0x32, 0x02, 0xC4, 0x00, 0x32, 0x02, 0xC5, + 0x00, 0x32, 0x02, 0xC6, 0x00, 0x32, 0x02, 0xCB, 0x00, 0x32, 0x02, 0xCD, + 0x00, 0x32, 0x05, 0x0B, 0x00, 0x32, 0x08, 0x60, 0x00, 0x32, 0x08, 0x63, + 0x00, 0x32, 0x08, 0x64, 0x00, 0x32, 0x08, 0x9C, 0x00, 0x32, 0x00, 0x16, + 0x01, 0x09, 0x00, 0x9A, 0x02, 0xB1, 0x00, 0x62, 0x02, 0xB2, 0x00, 0x62, + 0x02, 0xB3, 0x00, 0x62, 0x02, 0xB7, 0x00, 0x62, 0x02, 0xB8, 0x00, 0x62, + 0x02, 0xBA, 0x00, 0x62, 0x02, 0xBB, 0x00, 0x62, 0x02, 0xBC, 0x00, 0x62, + 0x02, 0xBF, 0x00, 0x62, 0x02, 0xC0, 0x00, 0x62, 0x02, 0xC1, 0x00, 0x62, + 0x02, 0xC4, 0x00, 0x62, 0x02, 0xC5, 0x00, 0x62, 0x02, 0xC6, 0x00, 0x62, + 0x02, 0xCB, 0x00, 0x62, 0x02, 0xCD, 0x00, 0x62, 0x05, 0x0B, 0x00, 0x62, + 0x08, 0x60, 0x00, 0x62, 0x08, 0x63, 0x00, 0x62, 0x08, 0x64, 0x00, 0x62, + 0x08, 0x9C, 0x00, 0x62, 0x00, 0x16, 0x04, 0x38, 0xFF, 0x98, 0x05, 0x6F, + 0xFF, 0x51, 0x05, 0x84, 0xFF, 0x51, 0x05, 0x85, 0xFF, 0x51, 0x05, 0x87, + 0xFF, 0x51, 0x05, 0x8A, 0xFF, 0x51, 0x05, 0xB1, 0xFF, 0x51, 0x05, 0xBD, + 0xFF, 0x51, 0x05, 0xE3, 0xFF, 0x51, 0x05, 0xF0, 0xFF, 0x51, 0x05, 0xF1, + 0xFF, 0x51, 0x05, 0xF3, 0xFF, 0x51, 0x05, 0xF6, 0xFF, 0x51, 0x05, 0xFD, + 0xFF, 0x51, 0x05, 0xFE, 0xFF, 0x51, 0x06, 0x00, 0xFF, 0x51, 0x06, 0x03, + 0xFF, 0x51, 0x06, 0x04, 0xFF, 0x51, 0x07, 0x0B, 0xFF, 0x51, 0x07, 0x0C, + 0xFF, 0x51, 0x07, 0x0D, 0xFF, 0x51, 0x08, 0xD2, 0xFF, 0x51, 0x00, 0x16, + 0x01, 0xC8, 0xFF, 0x7F, 0x01, 0xC9, 0xFF, 0x7F, 0x01, 0xCA, 0xFF, 0x7F, + 0x01, 0xCB, 0xFF, 0x89, 0x01, 0xCC, 0xFF, 0x89, 0x01, 0xCD, 0xFF, 0x89, + 0x01, 0xCE, 0xFF, 0x89, 0x01, 0xCF, 0xFF, 0x89, 0x01, 0xD0, 0xFF, 0x89, + 0x01, 0xD1, 0xFF, 0x89, 0x04, 0x29, 0xFF, 0x7F, 0x04, 0x37, 0xFF, 0x7F, + 0x04, 0x51, 0xFF, 0x7F, 0x08, 0x3C, 0xFF, 0x7F, 0x08, 0x3D, 0xFF, 0x89, + 0x08, 0x3E, 0xFF, 0x89, 0x08, 0x3F, 0xFF, 0x89, 0x09, 0x8F, 0xFF, 0x7F, + 0x09, 0xEB, 0xFF, 0x7F, 0x09, 0xEC, 0xFF, 0x7F, 0x09, 0xED, 0xFF, 0x7F, + 0x09, 0xEE, 0xFF, 0x7F, 0x00, 0x16, 0x01, 0x9C, 0xFF, 0x9A, 0x01, 0x9D, + 0xFF, 0x9A, 0x01, 0xD2, 0xFF, 0xB2, 0x01, 0xD3, 0xFF, 0xB2, 0x01, 0xD4, + 0xFF, 0xB2, 0x01, 0xD5, 0xFF, 0xB2, 0x01, 0xD6, 0xFF, 0xB2, 0x01, 0xD7, + 0xFF, 0xB2, 0x04, 0x0F, 0xFF, 0x98, 0x04, 0x2E, 0xFF, 0xB2, 0x04, 0x30, + 0xFF, 0xBD, 0x04, 0x42, 0xFF, 0x6D, 0x08, 0x40, 0xFF, 0xB2, 0x08, 0x41, + 0xFF, 0xB2, 0x08, 0xB0, 0xFF, 0xB2, 0x09, 0x85, 0xFF, 0xB2, 0x09, 0x98, + 0xFF, 0xB2, 0x09, 0x9C, 0xFF, 0xB2, 0x09, 0xA1, 0xFF, 0xB2, 0x09, 0xF0, + 0xFF, 0xB2, 0x09, 0xF1, 0xFF, 0xB2, 0x09, 0xF2, 0xFF, 0xB2, 0x00, 0x17, + 0x01, 0xD8, 0xFF, 0x52, 0x01, 0xD9, 0xFF, 0x52, 0x01, 0xDA, 0xFF, 0x52, + 0x01, 0xDB, 0xFF, 0x52, 0x01, 0xDC, 0xFF, 0x52, 0x01, 0xDD, 0xFF, 0x52, + 0x01, 0xDE, 0xFF, 0x52, 0x01, 0xDF, 0xFF, 0x52, 0x01, 0xE0, 0xFF, 0x52, + 0x01, 0xE1, 0xFF, 0x52, 0x01, 0xE2, 0xFF, 0x52, 0x01, 0xE3, 0xFF, 0x52, + 0x01, 0xE4, 0xFF, 0x52, 0x01, 0xE5, 0xFF, 0x52, 0x01, 0xE6, 0xFF, 0x52, + 0x01, 0xEB, 0xFF, 0x52, 0x01, 0xEC, 0xFF, 0x52, 0x01, 0xEF, 0xFF, 0x52, + 0x08, 0x42, 0xFF, 0x52, 0x08, 0x43, 0xFF, 0x52, 0x08, 0x44, 0xFF, 0x52, + 0x09, 0x94, 0xFF, 0x52, 0x09, 0x95, 0xFF, 0x52, 0x00, 0x17, 0x01, 0x15, + 0xFF, 0x69, 0x01, 0x9B, 0xFF, 0x69, 0x01, 0x9C, 0xFF, 0x69, 0x01, 0x9D, + 0xFF, 0x69, 0x01, 0x9E, 0xFF, 0x69, 0x01, 0x9F, 0xFF, 0x69, 0x01, 0xA0, + 0xFF, 0x69, 0x01, 0xA1, 0xFF, 0x69, 0x01, 0xA2, 0xFF, 0x69, 0x01, 0xA3, + 0xFF, 0x69, 0x01, 0xA5, 0xFF, 0x69, 0x01, 0xA6, 0xFF, 0x69, 0x01, 0xA7, + 0xFF, 0x69, 0x04, 0x3A, 0xFF, 0x69, 0x04, 0x3F, 0xFF, 0x69, 0x04, 0x42, + 0xFF, 0x69, 0x04, 0x52, 0xFF, 0x69, 0x07, 0x55, 0xFF, 0x69, 0x08, 0x31, + 0xFF, 0x69, 0x08, 0x32, 0xFF, 0x69, 0x09, 0x27, 0xFF, 0x69, 0x09, 0x83, + 0xFF, 0x69, 0x09, 0x93, 0xFF, 0x69, 0x00, 0x17, 0x01, 0x15, 0xFF, 0xCD, + 0x01, 0x9B, 0xFF, 0xCD, 0x01, 0x9C, 0xFF, 0xCD, 0x01, 0x9D, 0xFF, 0xCD, + 0x01, 0x9E, 0xFF, 0xCD, 0x01, 0x9F, 0xFF, 0xCD, 0x01, 0xA0, 0xFF, 0xCD, + 0x01, 0xA1, 0xFF, 0xCD, 0x01, 0xA2, 0xFF, 0xCD, 0x01, 0xA3, 0xFF, 0xCD, + 0x01, 0xA5, 0xFF, 0xCD, 0x01, 0xA6, 0xFF, 0xCD, 0x01, 0xA7, 0xFF, 0xCD, + 0x04, 0x3A, 0xFF, 0xCD, 0x04, 0x3F, 0xFF, 0xCD, 0x04, 0x42, 0xFF, 0xCD, + 0x04, 0x52, 0xFF, 0xCD, 0x07, 0x55, 0xFF, 0xCD, 0x08, 0x31, 0xFF, 0xCD, + 0x08, 0x32, 0xFF, 0xCD, 0x09, 0x27, 0xFF, 0xCD, 0x09, 0x83, 0xFF, 0xCD, + 0x09, 0x93, 0xFF, 0xCD, 0x00, 0x17, 0x05, 0x6F, 0xFF, 0x98, 0x05, 0x84, + 0xFF, 0x98, 0x05, 0x85, 0xFF, 0x98, 0x05, 0x87, 0xFF, 0x98, 0x05, 0x8A, + 0xFF, 0x98, 0x05, 0xB1, 0xFF, 0x98, 0x05, 0xBD, 0xFF, 0x98, 0x05, 0xE3, + 0xFF, 0x98, 0x05, 0xF0, 0xFF, 0x98, 0x05, 0xF1, 0xFF, 0x98, 0x05, 0xF3, + 0xFF, 0x98, 0x05, 0xF6, 0xFF, 0x98, 0x05, 0xFD, 0xFF, 0x98, 0x05, 0xFE, + 0xFF, 0x98, 0x06, 0x00, 0xFF, 0x98, 0x06, 0x03, 0xFF, 0x98, 0x06, 0x04, + 0xFF, 0x98, 0x06, 0x77, 0xFF, 0x6C, 0x06, 0x78, 0xFF, 0x6C, 0x07, 0x0B, + 0xFF, 0x98, 0x07, 0x0C, 0xFF, 0x98, 0x07, 0x0D, 0xFF, 0x98, 0x08, 0xD2, + 0xFF, 0x98, 0x00, 0x18, 0x01, 0xD8, 0xFF, 0x52, 0x01, 0xD9, 0xFF, 0x52, + 0x01, 0xDA, 0xFF, 0x52, 0x01, 0xDB, 0xFF, 0x52, 0x01, 0xDC, 0xFF, 0x52, + 0x01, 0xDD, 0xFF, 0x52, 0x01, 0xDE, 0xFF, 0x52, 0x01, 0xDF, 0xFF, 0x52, + 0x01, 0xE0, 0xFF, 0x52, 0x01, 0xE1, 0xFF, 0x52, 0x01, 0xE2, 0xFF, 0x52, + 0x01, 0xE3, 0xFF, 0x52, 0x01, 0xE4, 0xFF, 0x52, 0x01, 0xE5, 0xFF, 0x52, + 0x01, 0xE6, 0xFF, 0x52, 0x01, 0xEB, 0xFF, 0x52, 0x01, 0xEC, 0xFF, 0x52, + 0x01, 0xEF, 0xFF, 0x52, 0x07, 0xFE, 0xFF, 0x5F, 0x08, 0x42, 0xFF, 0x52, + 0x08, 0x43, 0xFF, 0x52, 0x08, 0x44, 0xFF, 0x52, 0x09, 0x94, 0xFF, 0x52, + 0x09, 0x95, 0xFF, 0x52, 0x00, 0x18, 0x03, 0x92, 0xFF, 0x4A, 0x04, 0x05, + 0xFF, 0xB2, 0x04, 0x06, 0xFF, 0xB2, 0x05, 0x6F, 0xFF, 0xA2, 0x05, 0x84, + 0xFF, 0xA2, 0x05, 0x85, 0xFF, 0xA2, 0x05, 0x87, 0xFF, 0xA2, 0x05, 0x8A, + 0xFF, 0xA2, 0x05, 0xB1, 0xFF, 0xA2, 0x05, 0xBD, 0xFF, 0xA2, 0x05, 0xE3, + 0xFF, 0xA2, 0x05, 0xF0, 0xFF, 0xA2, 0x05, 0xF1, 0xFF, 0xA2, 0x05, 0xF3, + 0xFF, 0xA2, 0x05, 0xF6, 0xFF, 0xA2, 0x05, 0xFD, 0xFF, 0xA2, 0x05, 0xFE, + 0xFF, 0xA2, 0x06, 0x00, 0xFF, 0xA2, 0x06, 0x03, 0xFF, 0xA2, 0x06, 0x04, + 0xFF, 0xA2, 0x07, 0x0B, 0xFF, 0xA2, 0x07, 0x0C, 0xFF, 0xA2, 0x07, 0x0D, + 0xFF, 0xA2, 0x08, 0xD2, 0xFF, 0xA2, 0x00, 0x18, 0x01, 0x15, 0xFF, 0x5F, + 0x01, 0x9B, 0xFF, 0x5F, 0x01, 0x9C, 0xFF, 0x5F, 0x01, 0x9D, 0xFF, 0x5F, + 0x01, 0x9E, 0xFF, 0x5F, 0x01, 0x9F, 0xFF, 0x5F, 0x01, 0xA0, 0xFF, 0x5F, + 0x01, 0xA1, 0xFF, 0x5F, 0x01, 0xA2, 0xFF, 0x5F, 0x01, 0xA3, 0xFF, 0x5F, + 0x01, 0xA5, 0xFF, 0x5F, 0x01, 0xA6, 0xFF, 0x5F, 0x01, 0xA7, 0xFF, 0x5F, + 0x04, 0x0F, 0xFF, 0x98, 0x04, 0x30, 0xFF, 0xBD, 0x04, 0x3A, 0xFF, 0x5F, + 0x04, 0x3F, 0xFF, 0x5F, 0x04, 0x42, 0xFF, 0x5F, 0x04, 0x52, 0xFF, 0x5F, + 0x08, 0x31, 0xFF, 0x5F, 0x08, 0x32, 0xFF, 0x5F, 0x09, 0x27, 0xFF, 0x5F, + 0x09, 0x83, 0xFF, 0x5F, 0x09, 0x93, 0xFF, 0x5F, 0x00, 0x18, 0x01, 0x15, + 0xFF, 0x5E, 0x01, 0x9B, 0xFF, 0x5E, 0x01, 0x9C, 0xFF, 0x5E, 0x01, 0x9D, + 0xFF, 0x5E, 0x01, 0x9E, 0xFF, 0x5E, 0x01, 0x9F, 0xFF, 0x5E, 0x01, 0xA0, + 0xFF, 0x5E, 0x01, 0xA1, 0xFF, 0x5E, 0x01, 0xA2, 0xFF, 0x5E, 0x01, 0xA3, + 0xFF, 0x5E, 0x01, 0xA5, 0xFF, 0x5E, 0x01, 0xA6, 0xFF, 0x5E, 0x01, 0xA7, + 0xFF, 0x5E, 0x04, 0x3A, 0xFF, 0x5E, 0x04, 0x3F, 0xFF, 0x5E, 0x04, 0x42, + 0xFF, 0x5E, 0x04, 0x52, 0xFF, 0x5E, 0x07, 0x55, 0xFF, 0x5E, 0x08, 0x31, + 0xFF, 0x5E, 0x08, 0x32, 0xFF, 0x5E, 0x09, 0x27, 0xFF, 0x5E, 0x09, 0x83, + 0xFF, 0x5E, 0x09, 0x93, 0xFF, 0x5E, 0x09, 0x95, 0xFF, 0x3F, 0x00, 0x19, + 0x01, 0xDE, 0xFF, 0x52, 0x01, 0xE0, 0xFF, 0x52, 0x01, 0xE1, 0xFF, 0x52, + 0x01, 0xE2, 0xFF, 0x52, 0x05, 0x6F, 0xFF, 0x9C, 0x05, 0x84, 0xFF, 0x9C, + 0x05, 0x85, 0xFF, 0x9C, 0x05, 0x87, 0xFF, 0x9C, 0x05, 0x8A, 0xFF, 0x9C, + 0x05, 0xB1, 0xFF, 0x9C, 0x05, 0xBD, 0xFF, 0x9C, 0x05, 0xE3, 0xFF, 0x9C, + 0x05, 0xF0, 0xFF, 0x9C, 0x05, 0xF1, 0xFF, 0x9C, 0x05, 0xF3, 0xFF, 0x9C, + 0x05, 0xFD, 0xFF, 0x9C, 0x05, 0xFE, 0xFF, 0x9C, 0x06, 0x00, 0xFF, 0x9C, + 0x06, 0x03, 0xFF, 0x9C, 0x06, 0x04, 0xFF, 0x9C, 0x07, 0x0B, 0xFF, 0x9C, + 0x07, 0x0C, 0xFF, 0x9C, 0x07, 0x0D, 0xFF, 0x9C, 0x07, 0xFE, 0xFF, 0x5F, + 0x08, 0xD2, 0xFF, 0x9C, 0x00, 0x19, 0x01, 0xDE, 0xFF, 0x52, 0x01, 0xE0, + 0xFF, 0x52, 0x01, 0xE1, 0xFF, 0x52, 0x01, 0xE2, 0xFF, 0x52, 0x05, 0x6F, + 0xFF, 0xB3, 0x05, 0x84, 0xFF, 0xB3, 0x05, 0x85, 0xFF, 0xB3, 0x05, 0x87, + 0xFF, 0xB3, 0x05, 0x8A, 0xFF, 0xB3, 0x05, 0xB1, 0xFF, 0xB3, 0x05, 0xBD, + 0xFF, 0xB3, 0x05, 0xE3, 0xFF, 0xB3, 0x05, 0xF0, 0xFF, 0xB3, 0x05, 0xF1, + 0xFF, 0xB3, 0x05, 0xF3, 0xFF, 0xB3, 0x05, 0xFD, 0xFF, 0xB3, 0x05, 0xFE, + 0xFF, 0xB3, 0x06, 0x00, 0xFF, 0xB3, 0x06, 0x03, 0xFF, 0xB3, 0x06, 0x04, + 0xFF, 0xB3, 0x07, 0x0B, 0xFF, 0xB3, 0x07, 0x0C, 0xFF, 0xB3, 0x07, 0x0D, + 0xFF, 0xB3, 0x07, 0xFE, 0xFF, 0x5F, 0x08, 0xD2, 0xFF, 0xB3, 0x00, 0x1A, + 0x01, 0xDE, 0xFF, 0x52, 0x01, 0xE0, 0xFF, 0x52, 0x01, 0xE1, 0xFF, 0x52, + 0x01, 0xE2, 0xFF, 0x52, 0x05, 0x6F, 0xFF, 0xAE, 0x05, 0x84, 0xFF, 0xAE, + 0x05, 0x85, 0xFF, 0xAE, 0x05, 0x87, 0xFF, 0xAE, 0x05, 0x8A, 0xFF, 0xAE, + 0x05, 0xB1, 0xFF, 0xAE, 0x05, 0xBD, 0xFF, 0xAE, 0x05, 0xE3, 0xFF, 0xAE, + 0x05, 0xF0, 0xFF, 0xAE, 0x05, 0xF1, 0xFF, 0xAE, 0x05, 0xF3, 0xFF, 0xAE, + 0x05, 0xF6, 0xFF, 0xAE, 0x05, 0xFD, 0xFF, 0xAE, 0x05, 0xFE, 0xFF, 0xAE, + 0x06, 0x00, 0xFF, 0xAE, 0x06, 0x03, 0xFF, 0xAE, 0x06, 0x04, 0xFF, 0xAE, + 0x07, 0x0B, 0xFF, 0xAE, 0x07, 0x0C, 0xFF, 0xAE, 0x07, 0x0D, 0xFF, 0xAE, + 0x07, 0xFE, 0xFF, 0x5F, 0x08, 0xD2, 0xFF, 0xAE, 0x00, 0x1B, 0x02, 0xDE, + 0xFF, 0x71, 0x03, 0x92, 0xFF, 0x4A, 0x03, 0xDF, 0xFF, 0x71, 0x03, 0xE0, + 0xFF, 0x71, 0x03, 0xE1, 0xFF, 0x71, 0x03, 0xE2, 0xFF, 0x71, 0x03, 0xFC, + 0xFF, 0xB2, 0x03, 0xFD, 0xFF, 0xB2, 0x03, 0xFE, 0xFF, 0xB2, 0x03, 0xFF, + 0xFF, 0xB2, 0x04, 0x00, 0xFF, 0xB2, 0x04, 0x01, 0xFF, 0xB2, 0x04, 0x02, + 0xFF, 0xB2, 0x04, 0x03, 0xFF, 0xB2, 0x04, 0x04, 0xFF, 0xB2, 0x04, 0x05, + 0xFF, 0xB2, 0x04, 0x06, 0xFF, 0xB2, 0x04, 0xE9, 0xFF, 0x71, 0x04, 0xEA, + 0xFF, 0x71, 0x05, 0x00, 0xFF, 0x71, 0x05, 0x01, 0xFF, 0x71, 0x05, 0xE3, + 0xFF, 0x5F, 0x08, 0x8F, 0xFF, 0x71, 0x08, 0x90, 0xFF, 0x71, 0x08, 0x94, + 0xFF, 0xB2, 0x08, 0x95, 0xFF, 0xB2, 0x09, 0xC6, 0xFF, 0x71, 0x00, 0x01, + 0x06, 0x05, 0x00, 0x80, 0x00, 0x01, 0x04, 0x0F, 0xFF, 0xA3, 0x00, 0x01, + 0x04, 0x0F, 0xFF, 0x52, 0x00, 0x01, 0x02, 0xC2, 0x00, 0x5D, 0x00, 0x01, + 0x02, 0xC2, 0x00, 0x51, 0x00, 0x01, 0x04, 0x0F, 0xFF, 0xBB, 0x00, 0x01, + 0x04, 0x0F, 0xFF, 0x46, 0x00, 0x01, 0x06, 0x05, 0xFF, 0x98, 0x00, 0x01, + 0x02, 0xC2, 0x00, 0x68, 0x00, 0x01, 0x02, 0xC2, 0x00, 0x45, 0x00, 0x01, + 0x04, 0xAB, 0xFF, 0x75, 0x00, 0x01, 0x04, 0x42, 0xFF, 0x69, 0x00, 0x02, + 0x02, 0xB6, 0x00, 0x51, 0x02, 0xC2, 0x00, 0x51, 0x00, 0x02, 0x00, 0xC9, + 0x00, 0x45, 0x09, 0x18, 0x00, 0x45, 0x00, 0x02, 0x05, 0xEA, 0xFF, 0xAF, + 0x06, 0x04, 0xFF, 0xBB, 0x00, 0x02, 0x04, 0x0F, 0xFF, 0xA3, 0x06, 0x05, + 0x00, 0x8B, 0x00, 0x02, 0x04, 0x7F, 0xFF, 0x98, 0x04, 0x98, 0xFF, 0x98, + 0x00, 0x02, 0x04, 0x0F, 0xFF, 0x80, 0x04, 0x42, 0xFF, 0x75, 0x00, 0x02, + 0x04, 0x2D, 0xFF, 0x98, 0x04, 0xE8, 0xFF, 0x8C, 0x00, 0x02, 0x05, 0xE3, + 0xFF, 0xBB, 0x05, 0xEA, 0xFF, 0x80, 0x00, 0x02, 0x01, 0xA5, 0xFF, 0xAF, + 0x01, 0xA6, 0xFF, 0xAF, 0x00, 0x02, 0x01, 0xD9, 0xFF, 0x98, 0x04, 0x29, + 0xFF, 0xBB, 0x00, 0x02, 0x01, 0xD9, 0xFF, 0x98, 0x02, 0xD1, 0xFF, 0xA3, + 0x00, 0x02, 0x05, 0xEA, 0xFF, 0x52, 0x06, 0x04, 0xFF, 0x75, 0x00, 0x03, + 0x00, 0xC9, 0x00, 0x45, 0x02, 0xE2, 0x00, 0x51, 0x09, 0x18, 0x00, 0x45, + 0x00, 0x03, 0x02, 0xB6, 0x00, 0x51, 0x02, 0xC2, 0x00, 0x51, 0x02, 0xC3, + 0x00, 0x51, 0x00, 0x03, 0x00, 0xC9, 0x00, 0x45, 0x09, 0x18, 0x00, 0x45, + 0x09, 0x1A, 0x00, 0x45, 0x00, 0x03, 0x01, 0x9D, 0xFF, 0x69, 0x01, 0xA5, + 0xFF, 0x69, 0x01, 0xA6, 0xFF, 0x69, 0x00, 0x03, 0x04, 0x0F, 0xFF, 0x46, + 0x04, 0x2E, 0xFF, 0x98, 0x04, 0x42, 0xFF, 0x75, 0x00, 0x03, 0x02, 0xC2, + 0x00, 0x5D, 0x05, 0x8F, 0xFF, 0x98, 0x05, 0xEA, 0xFF, 0x69, 0x00, 0x03, + 0x01, 0xA5, 0xFF, 0x80, 0x01, 0xA6, 0xFF, 0x80, 0x05, 0x8F, 0xFF, 0xBB, + 0x00, 0x03, 0x02, 0xBD, 0x00, 0x51, 0x02, 0xC3, 0x00, 0x45, 0x06, 0x05, + 0xFF, 0xE3, 0x00, 0x03, 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, + 0x06, 0x05, 0xFF, 0xBB, 0x00, 0x03, 0x05, 0xDC, 0xFF, 0xBB, 0x05, 0xDD, + 0xFF, 0x52, 0x06, 0x05, 0xFF, 0xBB, 0x00, 0x04, 0x05, 0xC8, 0xFF, 0x75, + 0x05, 0xCC, 0xFF, 0x75, 0x07, 0xFB, 0xFF, 0x75, 0x07, 0xFD, 0xFF, 0x75, + 0x00, 0x04, 0x04, 0x0D, 0xFF, 0xBB, 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, + 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0xAF, 0x00, 0x04, 0x05, 0xC8, 0xFF, 0x80, + 0x05, 0xCC, 0xFF, 0x80, 0x07, 0xFB, 0xFF, 0x80, 0x07, 0xFD, 0xFF, 0x80, + 0x00, 0x04, 0x04, 0x0F, 0xFF, 0xAF, 0x04, 0xAD, 0xFF, 0x75, 0x04, 0xB4, + 0xFF, 0x3B, 0x09, 0x27, 0xFF, 0x8C, 0x00, 0x04, 0x01, 0xDE, 0xFF, 0xBB, + 0x01, 0xE0, 0xFF, 0xBB, 0x01, 0xE1, 0xFF, 0xBB, 0x01, 0xE2, 0xFF, 0xBB, + 0x00, 0x04, 0x04, 0x0F, 0xFF, 0x2F, 0x04, 0x3B, 0xFF, 0x80, 0x04, 0x42, + 0xFF, 0x98, 0x04, 0xFE, 0xFF, 0x98, 0x00, 0x04, 0x01, 0xA5, 0xFF, 0xAF, + 0x01, 0xA6, 0xFF, 0xAF, 0x04, 0x0F, 0xFF, 0x80, 0x04, 0x42, 0xFF, 0x98, + 0x00, 0x05, 0x04, 0x2D, 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x75, 0x04, 0xAC, + 0xFF, 0x75, 0x04, 0xE8, 0xFF, 0x8C, 0x05, 0x12, 0xFF, 0xBB, 0x00, 0x05, + 0x04, 0x0F, 0xFF, 0xAF, 0x04, 0xAD, 0xFF, 0x75, 0x04, 0xB4, 0xFF, 0x3B, + 0x05, 0x24, 0xFF, 0x98, 0x09, 0x27, 0xFF, 0x8C, 0x00, 0x05, 0x02, 0xC2, + 0x00, 0x5D, 0x05, 0xE3, 0xFF, 0xA3, 0x05, 0xEA, 0xFF, 0x75, 0x06, 0x04, + 0xFF, 0x98, 0x06, 0x1D, 0xFF, 0xBB, 0x00, 0x06, 0x05, 0xD0, 0xFF, 0xA3, + 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, 0xFF, 0x75, 0x05, 0xF6, 0xFF, 0xBB, + 0x06, 0x09, 0xFF, 0xAF, 0x06, 0x15, 0xFF, 0xA3, 0x00, 0x06, 0x05, 0xD0, + 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, 0xFF, 0x75, 0x06, 0x08, + 0xFF, 0xBB, 0x06, 0x09, 0xFF, 0xBB, 0x06, 0x15, 0xFF, 0xAF, 0x00, 0x06, + 0x04, 0x2D, 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x75, 0x04, 0xAC, 0xFF, 0x75, + 0x04, 0xAE, 0xFF, 0x80, 0x04, 0xE8, 0xFF, 0x8C, 0x05, 0x12, 0xFF, 0xBB, + 0x00, 0x06, 0x01, 0x9D, 0xFF, 0x80, 0x01, 0xA5, 0xFF, 0x80, 0x01, 0xA6, + 0xFF, 0x80, 0x05, 0xDD, 0xFF, 0x69, 0x05, 0xEA, 0xFF, 0xBB, 0x06, 0x05, + 0xFF, 0x5E, 0x00, 0x06, 0x01, 0x9D, 0xFF, 0x69, 0x01, 0xA5, 0xFF, 0x69, + 0x01, 0xA6, 0xFF, 0x69, 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, + 0x06, 0x05, 0xFF, 0xBB, 0x00, 0x23, 0x00, 0x8A, 0x00, 0x62, 0x01, 0x09, + 0x00, 0x9A, 0x01, 0x36, 0x00, 0x62, 0x02, 0xB1, 0x00, 0x62, 0x02, 0xB2, + 0x00, 0x62, 0x02, 0xB3, 0x00, 0x62, 0x02, 0xB7, 0x00, 0x62, 0x02, 0xB8, + 0x00, 0x62, 0x02, 0xBA, 0x00, 0x62, 0x02, 0xBB, 0x00, 0x62, 0x02, 0xBC, + 0x00, 0x62, 0x02, 0xBF, 0x00, 0x62, 0x02, 0xC0, 0x00, 0x62, 0x02, 0xC1, + 0x00, 0x62, 0x02, 0xC4, 0x00, 0x62, 0x02, 0xC5, 0x00, 0x62, 0x02, 0xC6, + 0x00, 0x62, 0x02, 0xC7, 0x00, 0x62, 0x02, 0xC8, 0x00, 0x62, 0x02, 0xCB, + 0x00, 0x62, 0x02, 0xCD, 0x00, 0x62, 0x02, 0xCF, 0x00, 0x62, 0x02, 0xD2, + 0x00, 0x62, 0x02, 0xD3, 0x00, 0x62, 0x02, 0xD4, 0x00, 0x62, 0x02, 0xD5, + 0x00, 0x62, 0x03, 0x0A, 0x00, 0x62, 0x05, 0x0B, 0x00, 0x62, 0x06, 0x21, + 0x00, 0x62, 0x08, 0x60, 0x00, 0x62, 0x08, 0x63, 0x00, 0x62, 0x08, 0x64, + 0x00, 0x62, 0x08, 0x65, 0x00, 0x62, 0x08, 0x9C, 0x00, 0x62, 0x09, 0x3B, + 0x00, 0x62, 0x00, 0x23, 0x02, 0xB1, 0x00, 0x00, 0x02, 0xB2, 0x00, 0x00, + 0x02, 0xB3, 0x00, 0x00, 0x02, 0xB4, 0x00, 0x59, 0x02, 0xB5, 0x00, 0x59, + 0x02, 0xB6, 0x00, 0x59, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xB8, 0x00, 0x00, + 0x02, 0xBA, 0x00, 0x00, 0x02, 0xBB, 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, + 0x02, 0xBD, 0x00, 0x59, 0x02, 0xBE, 0x00, 0x59, 0x02, 0xBF, 0x00, 0x00, + 0x02, 0xC0, 0x00, 0x00, 0x02, 0xC1, 0x00, 0x00, 0x02, 0xC3, 0x00, 0x59, + 0x02, 0xC4, 0x00, 0x00, 0x02, 0xC5, 0x00, 0x00, 0x02, 0xC6, 0x00, 0x00, + 0x02, 0xCB, 0x00, 0x00, 0x02, 0xCC, 0x00, 0x59, 0x02, 0xCD, 0x00, 0x00, + 0x02, 0xED, 0x00, 0x00, 0x05, 0x0B, 0x00, 0x00, 0x05, 0x1D, 0x00, 0x22, + 0x05, 0x1F, 0x00, 0x06, 0x05, 0x28, 0x00, 0x22, 0x06, 0x05, 0x00, 0x00, + 0x08, 0x60, 0x00, 0x00, 0x08, 0x61, 0x00, 0x59, 0x08, 0x62, 0x00, 0x59, + 0x08, 0x63, 0x00, 0x00, 0x08, 0x64, 0x00, 0x00, 0x08, 0x9C, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xD0, 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, + 0xFF, 0x75, 0x05, 0xF6, 0xFF, 0xA3, 0x06, 0x08, 0xFF, 0xA3, 0x06, 0x09, + 0xFF, 0xA3, 0x06, 0x15, 0xFF, 0xA3, 0x00, 0x07, 0x02, 0xC2, 0x00, 0x5D, + 0x04, 0x3B, 0xFF, 0xBB, 0x04, 0xFE, 0xFF, 0x80, 0x05, 0x2B, 0xFF, 0xBB, + 0x05, 0xE6, 0xFF, 0x98, 0x05, 0xE8, 0xFF, 0x98, 0x05, 0xEA, 0xFF, 0x98, + 0x00, 0x07, 0x05, 0xCE, 0xFF, 0x98, 0x05, 0xCF, 0xFF, 0x98, 0x06, 0x05, + 0xFF, 0xAF, 0x08, 0x01, 0xFF, 0x98, 0x08, 0x02, 0xFF, 0x98, 0x09, 0x0E, + 0xFF, 0x98, 0x09, 0x0F, 0xFF, 0x98, 0x00, 0x07, 0x04, 0xAB, 0xFF, 0x75, + 0x05, 0xCE, 0xFF, 0x69, 0x05, 0xCF, 0xFF, 0x69, 0x08, 0x01, 0xFF, 0x69, + 0x08, 0x02, 0xFF, 0x69, 0x09, 0x0E, 0xFF, 0x69, 0x09, 0x0F, 0xFF, 0x69, + 0x00, 0x07, 0x02, 0xC2, 0x00, 0x5D, 0x04, 0x3B, 0xFF, 0xBB, 0x04, 0xFE, + 0xFF, 0x80, 0x05, 0x2B, 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0xA3, 0x05, 0xEA, + 0xFF, 0x8C, 0x06, 0x04, 0xFF, 0x98, 0x00, 0x08, 0x05, 0xDB, 0xFF, 0xA3, + 0x05, 0xDC, 0xFF, 0xAF, 0x05, 0xDD, 0xFF, 0xA3, 0x06, 0x05, 0xFF, 0xBB, + 0x07, 0xF8, 0xFF, 0xA3, 0x08, 0xCB, 0xFF, 0xA3, 0x08, 0xCC, 0xFF, 0xA3, + 0x08, 0xCF, 0xFF, 0xA3, 0x00, 0x08, 0x04, 0x0F, 0xFF, 0xAF, 0x04, 0x6F, + 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x75, 0x04, 0xB4, 0xFF, 0x3B, 0x05, 0x24, + 0xFF, 0x98, 0x05, 0x3C, 0xFF, 0x8C, 0x05, 0x48, 0xFF, 0x8C, 0x09, 0x27, + 0xFF, 0x8C, 0x00, 0x08, 0x02, 0x0B, 0xFF, 0xAF, 0x03, 0x18, 0xFF, 0xA3, + 0x05, 0x8F, 0xFF, 0x98, 0x05, 0xA3, 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0xAF, + 0x05, 0xEA, 0xFF, 0x69, 0x06, 0x04, 0xFF, 0x80, 0x06, 0x05, 0xFF, 0x5E, + 0x00, 0x09, 0x05, 0xDB, 0xFF, 0x69, 0x05, 0xDC, 0xFF, 0x69, 0x05, 0xDD, + 0xFF, 0x69, 0x05, 0xEA, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0x5E, 0x07, 0xF8, + 0xFF, 0x69, 0x08, 0xCB, 0xFF, 0x69, 0x08, 0xCC, 0xFF, 0x69, 0x08, 0xCF, + 0xFF, 0x69, 0x00, 0x09, 0x05, 0xB1, 0xFF, 0x98, 0x05, 0xD0, 0xFF, 0xA3, + 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, 0xFF, 0x75, 0x05, 0xE3, 0xFF, 0x80, + 0x05, 0xF6, 0xFF, 0xAF, 0x06, 0x04, 0xFE, 0xF5, 0x06, 0x09, 0xFF, 0xAF, + 0x06, 0x15, 0xFF, 0xA3, 0x00, 0x0A, 0x05, 0xB1, 0xFF, 0x98, 0x05, 0xD0, + 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, 0xFF, 0x75, 0x05, 0xE3, + 0xFF, 0x80, 0x05, 0xF6, 0xFF, 0xAF, 0x06, 0x04, 0xFE, 0xF5, 0x06, 0x08, + 0xFF, 0xA3, 0x06, 0x09, 0xFF, 0xA3, 0x06, 0x15, 0xFF, 0xA3, 0x00, 0x0B, + 0x02, 0xB4, 0x00, 0x45, 0x02, 0xB5, 0x00, 0x45, 0x02, 0xB6, 0x00, 0x45, + 0x02, 0xBD, 0x00, 0x45, 0x02, 0xBE, 0x00, 0x45, 0x02, 0xC2, 0x00, 0x68, + 0x02, 0xC3, 0x00, 0x45, 0x02, 0xCC, 0x00, 0x45, 0x06, 0x05, 0xFF, 0xE3, + 0x08, 0x61, 0x00, 0x45, 0x08, 0x62, 0x00, 0x45, 0x00, 0x0B, 0x00, 0x55, + 0x00, 0x45, 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, 0x00, 0x97, 0x00, 0xAA, + 0x00, 0x97, 0x00, 0xAE, 0x00, 0x97, 0x01, 0x38, 0x00, 0x97, 0x01, 0x3D, + 0x00, 0x97, 0x01, 0x3E, 0x00, 0x97, 0x01, 0x8B, 0x00, 0x97, 0x02, 0xD1, + 0xFF, 0x8C, 0x06, 0xFF, 0x00, 0x97, 0x00, 0x0B, 0x01, 0x0C, 0xFF, 0x0C, + 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x53, 0xFF, 0x8C, 0x05, 0x8F, 0xFF, 0x80, + 0x05, 0xDD, 0xFF, 0x3B, 0x05, 0xE3, 0xFF, 0x98, 0x05, 0xE5, 0xFF, 0x80, + 0x05, 0xEA, 0xFF, 0x2F, 0x05, 0xF2, 0xFF, 0xA3, 0x06, 0x04, 0xFF, 0x98, + 0x06, 0x1D, 0xFF, 0xBB, 0x00, 0x0C, 0x01, 0x9D, 0xFF, 0x80, 0x01, 0xA5, + 0xFF, 0x80, 0x01, 0xA6, 0xFF, 0x80, 0x05, 0xDB, 0xFF, 0x69, 0x05, 0xDC, + 0xFF, 0x69, 0x05, 0xDD, 0xFF, 0x69, 0x05, 0xEA, 0xFF, 0xBB, 0x06, 0x05, + 0xFF, 0x5E, 0x07, 0xF8, 0xFF, 0x69, 0x08, 0xCB, 0xFF, 0x69, 0x08, 0xCC, + 0xFF, 0x69, 0x08, 0xCF, 0xFF, 0x69, 0x00, 0x0D, 0x00, 0x55, 0x00, 0x45, + 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, 0x00, 0x97, 0x00, 0xAA, 0x00, 0x97, + 0x00, 0xAE, 0x00, 0x97, 0x01, 0x36, 0x00, 0x97, 0x01, 0x38, 0x00, 0x97, + 0x01, 0x3D, 0x00, 0x97, 0x01, 0x3E, 0x00, 0x97, 0x01, 0x8B, 0x00, 0x97, + 0x02, 0xD1, 0xFF, 0x8C, 0x02, 0xD2, 0x00, 0x45, 0x06, 0xFF, 0x00, 0x97, + 0x00, 0x0E, 0x05, 0xB1, 0xFF, 0x98, 0x05, 0xC9, 0xFF, 0xBB, 0x05, 0xCD, + 0xFF, 0xBB, 0x05, 0xD0, 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, + 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0x80, 0x05, 0xF6, 0xFF, 0xAF, 0x06, 0x04, + 0xFE, 0xF5, 0x06, 0x08, 0xFF, 0xBB, 0x06, 0x09, 0xFF, 0xBB, 0x06, 0x15, + 0xFF, 0xBB, 0x07, 0xFC, 0xFF, 0xBB, 0x07, 0xFE, 0xFF, 0xBB, 0x00, 0x0F, + 0x02, 0x0B, 0xFF, 0xAF, 0x03, 0x18, 0xFF, 0xA3, 0x05, 0x8F, 0xFF, 0x98, + 0x05, 0xA3, 0xFF, 0xBB, 0x05, 0xDB, 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, + 0x05, 0xDD, 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x69, + 0x06, 0x04, 0xFF, 0x80, 0x06, 0x05, 0xFF, 0x5E, 0x07, 0xF8, 0xFF, 0xBB, + 0x08, 0xCB, 0xFF, 0xBB, 0x08, 0xCC, 0xFF, 0xBB, 0x08, 0xCF, 0xFF, 0xBB, + 0x00, 0x10, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x18, + 0xFF, 0xA3, 0x05, 0x8F, 0xFF, 0x98, 0x05, 0xA3, 0xFF, 0xBB, 0x05, 0xDB, + 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, 0x05, 0xDD, 0xFF, 0xBB, 0x05, 0xE3, + 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x69, 0x06, 0x04, 0xFF, 0x80, 0x06, 0x05, + 0xFF, 0x5E, 0x07, 0xF8, 0xFF, 0xBB, 0x08, 0xCB, 0xFF, 0xBB, 0x08, 0xCC, + 0xFF, 0xBB, 0x08, 0xCF, 0xFF, 0xBB, 0x00, 0x10, 0x00, 0x55, 0x00, 0x45, + 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, 0x00, 0x97, 0x00, 0xAA, 0x00, 0x97, + 0x00, 0xAE, 0x00, 0x97, 0x01, 0x36, 0x00, 0x97, 0x01, 0x38, 0x00, 0x97, + 0x01, 0x3D, 0x00, 0x97, 0x01, 0x3E, 0x00, 0x97, 0x01, 0x8B, 0x00, 0x97, + 0x02, 0xBA, 0x00, 0x45, 0x02, 0xBC, 0x00, 0x45, 0x02, 0xC1, 0x00, 0x45, + 0x02, 0xD1, 0xFF, 0x8C, 0x02, 0xD2, 0x00, 0x45, 0x06, 0xFF, 0x00, 0x97, + 0x00, 0x12, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, + 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0xD7, + 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, + 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, + 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, + 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, + 0xFF, 0x8C, 0x00, 0x12, 0x04, 0x0F, 0xFF, 0xA3, 0x04, 0x9A, 0xFF, 0xBB, + 0x04, 0x9C, 0xFF, 0xBB, 0x04, 0x9F, 0xFF, 0xBB, 0x04, 0xA0, 0xFF, 0xBB, + 0x04, 0xA1, 0xFF, 0xBB, 0x04, 0xA2, 0xFF, 0xBB, 0x04, 0xA3, 0xFF, 0xBB, + 0x04, 0xA4, 0xFF, 0xBB, 0x04, 0xA6, 0xFF, 0xBB, 0x04, 0xA7, 0xFF, 0xBB, + 0x04, 0xA8, 0xFF, 0xBB, 0x04, 0xA9, 0xFF, 0xBB, 0x04, 0xAA, 0xFF, 0xBB, + 0x06, 0x05, 0x00, 0x8B, 0x08, 0xC2, 0xFF, 0xBB, 0x08, 0xC5, 0xFF, 0xBB, + 0x08, 0xC6, 0xFF, 0xBB, 0x00, 0x14, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, + 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, + 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, + 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, + 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, + 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, + 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, + 0xFF, 0x8C, 0x00, 0x15, 0x01, 0x0C, 0xFF, 0x0C, 0x02, 0x4C, 0xFF, 0x8C, + 0x02, 0x57, 0xFF, 0x8C, 0x02, 0x5A, 0xFF, 0x8C, 0x02, 0x61, 0xFF, 0x8C, + 0x02, 0x64, 0xFF, 0x8C, 0x02, 0x68, 0xFF, 0x8C, 0x02, 0x85, 0xFF, 0x8C, + 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x1E, 0xFF, 0x8C, 0x03, 0x53, 0xFF, 0x8C, + 0x04, 0x54, 0xFF, 0x8C, 0x05, 0x8F, 0xFF, 0x80, 0x05, 0xDD, 0xFF, 0x3B, + 0x05, 0xE3, 0xFF, 0x98, 0x05, 0xE5, 0xFF, 0x80, 0x05, 0xEA, 0xFF, 0x2F, + 0x05, 0xF2, 0xFF, 0xA3, 0x06, 0x04, 0xFF, 0x98, 0x06, 0x1D, 0xFF, 0xBB, + 0x09, 0x3E, 0xFF, 0x8C, 0x00, 0x32, 0x02, 0xA6, 0xFF, 0xE9, 0x02, 0xA7, + 0xFF, 0xE9, 0x02, 0xB9, 0xFF, 0xE9, 0x02, 0xC9, 0xFF, 0xE9, 0x02, 0xCA, + 0xFF, 0xE9, 0x02, 0xE5, 0xFF, 0xE9, 0x02, 0xF0, 0xFF, 0xE9, 0x02, 0xF1, + 0xFF, 0xE9, 0x02, 0xF2, 0xFF, 0xE9, 0x02, 0xF3, 0xFF, 0xE9, 0x03, 0x59, + 0xFF, 0xE9, 0x03, 0x78, 0xFF, 0xE9, 0x03, 0x79, 0xFF, 0xE9, 0x03, 0x7A, + 0xFF, 0xE9, 0x03, 0x7B, 0xFF, 0xE9, 0x03, 0x7C, 0xFF, 0xE9, 0x03, 0x7D, + 0xFF, 0xE9, 0x03, 0x7E, 0xFF, 0xE9, 0x03, 0x7F, 0xFF, 0xE9, 0x03, 0x80, + 0xFF, 0xE9, 0x03, 0x81, 0xFF, 0xE9, 0x03, 0x82, 0xFF, 0xE9, 0x03, 0x83, + 0xFF, 0xE9, 0x03, 0x84, 0xFF, 0xE9, 0x03, 0x85, 0xFF, 0xE9, 0x03, 0x86, + 0xFF, 0xE9, 0x04, 0xAD, 0xFF, 0xE9, 0x04, 0xB4, 0xFF, 0xE9, 0x04, 0xE7, + 0xFF, 0xE9, 0x04, 0xF2, 0xFF, 0xE9, 0x04, 0xFE, 0xFF, 0xE9, 0x05, 0x0A, + 0xFF, 0xE9, 0x05, 0x0C, 0xFF, 0xE9, 0x05, 0x0D, 0xFF, 0xE9, 0x05, 0x17, + 0xFF, 0xE9, 0x05, 0x18, 0xFF, 0xE9, 0x05, 0x19, 0xFF, 0xE9, 0x07, 0xF5, + 0xFF, 0xE9, 0x08, 0x66, 0xFF, 0xE9, 0x08, 0x7F, 0xFF, 0xE9, 0x08, 0x80, + 0xFF, 0xE9, 0x08, 0x81, 0xFF, 0xE9, 0x09, 0x0B, 0xFF, 0xE9, 0x09, 0x40, + 0xFF, 0xE9, 0x09, 0x41, 0xFF, 0xE9, 0x09, 0x59, 0xFF, 0xE9, 0x09, 0x5C, + 0xFF, 0xE9, 0x09, 0x70, 0xFF, 0xE9, 0x09, 0xA6, 0xFF, 0xE9, 0x09, 0xB5, + 0xFF, 0xE9, 0x00, 0x16, 0x01, 0x15, 0xFF, 0x8C, 0x01, 0x9B, 0xFF, 0x8C, + 0x01, 0x9C, 0xFF, 0x8C, 0x01, 0x9D, 0xFF, 0x8C, 0x01, 0x9E, 0xFF, 0x8C, + 0x01, 0x9F, 0xFF, 0x8C, 0x01, 0xA0, 0xFF, 0x8C, 0x01, 0xA1, 0xFF, 0x8C, + 0x01, 0xA2, 0xFF, 0x8C, 0x01, 0xA3, 0xFF, 0x8C, 0x01, 0xA5, 0xFF, 0x8C, + 0x01, 0xA6, 0xFF, 0x8C, 0x01, 0xA7, 0xFF, 0x8C, 0x04, 0x3A, 0xFF, 0x8C, + 0x04, 0x3F, 0xFF, 0x8C, 0x04, 0x42, 0xFF, 0x8C, 0x04, 0x52, 0xFF, 0x8C, + 0x08, 0x31, 0xFF, 0x8C, 0x08, 0x32, 0xFF, 0x8C, 0x09, 0x27, 0xFF, 0x8C, + 0x09, 0x83, 0xFF, 0x8C, 0x09, 0x93, 0xFF, 0x8C, 0x00, 0x16, 0x01, 0x15, + 0xFF, 0x98, 0x01, 0x9B, 0xFF, 0x98, 0x01, 0x9C, 0xFF, 0x98, 0x01, 0x9D, + 0xFF, 0x98, 0x01, 0x9E, 0xFF, 0x98, 0x01, 0x9F, 0xFF, 0x98, 0x01, 0xA0, + 0xFF, 0x98, 0x01, 0xA1, 0xFF, 0x98, 0x01, 0xA2, 0xFF, 0x98, 0x01, 0xA3, + 0xFF, 0x98, 0x01, 0xA5, 0xFF, 0x98, 0x01, 0xA6, 0xFF, 0x98, 0x01, 0xA7, + 0xFF, 0x98, 0x04, 0x3A, 0xFF, 0x98, 0x04, 0x3F, 0xFF, 0x98, 0x04, 0x42, + 0xFF, 0x98, 0x04, 0x52, 0xFF, 0x98, 0x08, 0x31, 0xFF, 0x98, 0x08, 0x32, + 0xFF, 0x98, 0x09, 0x27, 0xFF, 0x98, 0x09, 0x83, 0xFF, 0x98, 0x09, 0x93, + 0xFF, 0x98, 0x00, 0x17, 0x01, 0x15, 0xFF, 0xA3, 0x01, 0x9B, 0xFF, 0xA3, + 0x01, 0x9C, 0xFF, 0xA3, 0x01, 0x9D, 0xFF, 0xA3, 0x01, 0x9E, 0xFF, 0xA3, + 0x01, 0x9F, 0xFF, 0xA3, 0x01, 0xA0, 0xFF, 0xA3, 0x01, 0xA1, 0xFF, 0xA3, + 0x01, 0xA2, 0xFF, 0xA3, 0x01, 0xA3, 0xFF, 0xA3, 0x01, 0xA5, 0xFF, 0xA3, + 0x01, 0xA6, 0xFF, 0xA3, 0x01, 0xA7, 0xFF, 0xA3, 0x04, 0x3A, 0xFF, 0xA3, + 0x04, 0x3F, 0xFF, 0xA3, 0x04, 0x42, 0xFF, 0xA3, 0x04, 0x52, 0xFF, 0xA3, + 0x07, 0x55, 0xFF, 0xA3, 0x08, 0x31, 0xFF, 0xA3, 0x08, 0x32, 0xFF, 0xA3, + 0x09, 0x27, 0xFF, 0xA3, 0x09, 0x83, 0xFF, 0xA3, 0x09, 0x93, 0xFF, 0xA3, + 0x00, 0x17, 0x01, 0x15, 0xFF, 0xAF, 0x01, 0x9B, 0xFF, 0xAF, 0x01, 0x9C, + 0xFF, 0xAF, 0x01, 0x9D, 0xFF, 0xAF, 0x01, 0x9E, 0xFF, 0xAF, 0x01, 0x9F, + 0xFF, 0xAF, 0x01, 0xA0, 0xFF, 0xAF, 0x01, 0xA1, 0xFF, 0xAF, 0x01, 0xA2, + 0xFF, 0xAF, 0x01, 0xA3, 0xFF, 0xAF, 0x01, 0xA5, 0xFF, 0xAF, 0x01, 0xA6, + 0xFF, 0xAF, 0x01, 0xA7, 0xFF, 0xAF, 0x04, 0x3A, 0xFF, 0xAF, 0x04, 0x3F, + 0xFF, 0xAF, 0x04, 0x42, 0xFF, 0xAF, 0x04, 0x52, 0xFF, 0xAF, 0x07, 0x55, + 0xFF, 0xAF, 0x08, 0x31, 0xFF, 0xAF, 0x08, 0x32, 0xFF, 0xAF, 0x09, 0x27, + 0xFF, 0xAF, 0x09, 0x83, 0xFF, 0xAF, 0x09, 0x93, 0xFF, 0xAF, 0x00, 0x17, + 0x01, 0xD8, 0xFF, 0xBB, 0x01, 0xD9, 0xFF, 0xBB, 0x01, 0xDA, 0xFF, 0xBB, + 0x01, 0xDB, 0xFF, 0xBB, 0x01, 0xDC, 0xFF, 0xBB, 0x01, 0xDD, 0xFF, 0xBB, + 0x01, 0xDE, 0xFF, 0xBB, 0x01, 0xDF, 0xFF, 0xBB, 0x01, 0xE0, 0xFF, 0xBB, + 0x01, 0xE1, 0xFF, 0xBB, 0x01, 0xE2, 0xFF, 0xBB, 0x01, 0xE3, 0xFF, 0xBB, + 0x01, 0xE4, 0xFF, 0xBB, 0x01, 0xE5, 0xFF, 0xBB, 0x01, 0xE6, 0xFF, 0xBB, + 0x01, 0xEB, 0xFF, 0xBB, 0x01, 0xEC, 0xFF, 0xBB, 0x01, 0xEF, 0xFF, 0xBB, + 0x08, 0x42, 0xFF, 0xBB, 0x08, 0x43, 0xFF, 0xBB, 0x08, 0x44, 0xFF, 0xBB, + 0x09, 0x94, 0xFF, 0xBB, 0x09, 0x95, 0xFF, 0xBB, 0x00, 0x17, 0x02, 0x0B, + 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, + 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, 0x03, 0x95, + 0xFF, 0x2F, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xFD, + 0xFF, 0xAF, 0x03, 0xFF, 0xFF, 0xAF, 0x04, 0x00, 0xFF, 0xAF, 0x04, 0x98, + 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, + 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, + 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, + 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x00, 0x19, 0x00, 0x55, 0x00, 0x45, + 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, 0x00, 0x97, 0x00, 0x8A, 0x00, 0x45, + 0x00, 0xAA, 0x00, 0x97, 0x00, 0xAE, 0x00, 0x97, 0x01, 0x36, 0x00, 0x45, + 0x01, 0x38, 0x00, 0x97, 0x01, 0x3D, 0x00, 0x97, 0x01, 0x3E, 0x00, 0x97, + 0x01, 0x8B, 0x00, 0x97, 0x02, 0xC2, 0x00, 0x74, 0x02, 0xC7, 0x00, 0x45, + 0x02, 0xC8, 0x00, 0x45, 0x02, 0xCF, 0x00, 0x45, 0x02, 0xD1, 0xFF, 0x8C, + 0x02, 0xD2, 0x00, 0x45, 0x02, 0xD3, 0x00, 0x45, 0x02, 0xD4, 0x00, 0x45, + 0x02, 0xD5, 0x00, 0x45, 0x03, 0x0A, 0x00, 0x45, 0x06, 0x21, 0x00, 0x45, + 0x06, 0xFF, 0x00, 0x97, 0x08, 0x65, 0x00, 0x45, 0x09, 0x3B, 0x00, 0x45, + 0x00, 0x19, 0x01, 0x15, 0xFF, 0x98, 0x01, 0x9B, 0xFF, 0x98, 0x01, 0x9C, + 0xFF, 0x98, 0x01, 0x9D, 0xFF, 0x98, 0x01, 0x9E, 0xFF, 0x98, 0x01, 0x9F, + 0xFF, 0x98, 0x01, 0xA0, 0xFF, 0x98, 0x01, 0xA1, 0xFF, 0x98, 0x01, 0xA2, + 0xFF, 0x98, 0x01, 0xA3, 0xFF, 0x98, 0x01, 0xA5, 0xFF, 0x98, 0x01, 0xA6, + 0xFF, 0x98, 0x01, 0xA7, 0xFF, 0x98, 0x01, 0xD9, 0xFF, 0x98, 0x04, 0x29, + 0xFF, 0xBB, 0x04, 0x3A, 0xFF, 0x98, 0x04, 0x3F, 0xFF, 0x98, 0x04, 0x42, + 0xFF, 0x98, 0x04, 0x52, 0xFF, 0x98, 0x07, 0x55, 0xFF, 0x98, 0x08, 0x31, + 0xFF, 0x98, 0x08, 0x32, 0xFF, 0x98, 0x09, 0x27, 0xFF, 0x98, 0x09, 0x83, + 0xFF, 0x98, 0x09, 0x93, 0xFF, 0x98, 0x00, 0x19, 0x01, 0x15, 0xFF, 0x98, + 0x01, 0x9B, 0xFF, 0x98, 0x01, 0x9C, 0xFF, 0x98, 0x01, 0x9D, 0xFF, 0x98, + 0x01, 0x9E, 0xFF, 0x98, 0x01, 0x9F, 0xFF, 0x98, 0x01, 0xA0, 0xFF, 0x98, + 0x01, 0xA1, 0xFF, 0x98, 0x01, 0xA2, 0xFF, 0x98, 0x01, 0xA3, 0xFF, 0x98, + 0x01, 0xA5, 0xFF, 0x98, 0x01, 0xA6, 0xFF, 0x98, 0x01, 0xA7, 0xFF, 0x98, + 0x01, 0xD9, 0xFF, 0x98, 0x02, 0xD1, 0xFF, 0xA3, 0x04, 0x3A, 0xFF, 0x98, + 0x04, 0x3F, 0xFF, 0x98, 0x04, 0x42, 0xFF, 0x98, 0x04, 0x52, 0xFF, 0x98, + 0x07, 0x55, 0xFF, 0x98, 0x08, 0x31, 0xFF, 0x98, 0x08, 0x32, 0xFF, 0x98, + 0x09, 0x27, 0xFF, 0x98, 0x09, 0x83, 0xFF, 0x98, 0x09, 0x93, 0xFF, 0x98, + 0x00, 0x1A, 0x01, 0x15, 0xFF, 0xA3, 0x01, 0x9B, 0xFF, 0xA3, 0x01, 0x9C, + 0xFF, 0xA3, 0x01, 0x9D, 0xFF, 0xA3, 0x01, 0x9E, 0xFF, 0xA3, 0x01, 0x9F, + 0xFF, 0xA3, 0x01, 0xA0, 0xFF, 0xA3, 0x01, 0xA1, 0xFF, 0xA3, 0x01, 0xA2, + 0xFF, 0xA3, 0x01, 0xA3, 0xFF, 0xA3, 0x01, 0xA5, 0xFF, 0xA3, 0x01, 0xA6, + 0xFF, 0xA3, 0x01, 0xA7, 0xFF, 0xA3, 0x04, 0x3A, 0xFF, 0xA3, 0x04, 0x3F, + 0xFF, 0xA3, 0x04, 0x42, 0xFF, 0xA3, 0x04, 0x52, 0xFF, 0xA3, 0x05, 0xEA, + 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0xBB, 0x07, 0x55, + 0xFF, 0xA3, 0x08, 0x31, 0xFF, 0xA3, 0x08, 0x32, 0xFF, 0xA3, 0x09, 0x27, + 0xFF, 0xA3, 0x09, 0x83, 0xFF, 0xA3, 0x09, 0x93, 0xFF, 0xA3, 0x00, 0x1B, + 0x01, 0x0C, 0xFF, 0x0C, 0x02, 0x4C, 0xFF, 0x8C, 0x02, 0x57, 0xFF, 0x8C, + 0x02, 0x5A, 0xFF, 0x8C, 0x02, 0x61, 0xFF, 0x8C, 0x02, 0x64, 0xFF, 0x8C, + 0x02, 0x68, 0xFF, 0x8C, 0x02, 0x85, 0xFF, 0x8C, 0x02, 0xC2, 0x00, 0x5D, + 0x03, 0x1E, 0xFF, 0x8C, 0x03, 0x53, 0xFF, 0x8C, 0x04, 0x54, 0xFF, 0x8C, + 0x05, 0x8F, 0xFF, 0x80, 0x05, 0xDB, 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, + 0x05, 0xDD, 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0x98, 0x05, 0xE5, 0xFF, 0x80, + 0x05, 0xEA, 0xFF, 0x2F, 0x05, 0xF2, 0xFF, 0xA3, 0x06, 0x04, 0xFF, 0x98, + 0x06, 0x1D, 0xFF, 0xBB, 0x07, 0xF8, 0xFF, 0xBB, 0x08, 0xCB, 0xFF, 0xBB, + 0x08, 0xCC, 0xFF, 0xBB, 0x08, 0xCF, 0xFF, 0xBB, 0x09, 0x3E, 0xFF, 0x8C, + 0x00, 0x38, 0x02, 0xA6, 0x00, 0x45, 0x02, 0xA7, 0x00, 0x45, 0x02, 0xB7, + 0x00, 0x00, 0x02, 0xB9, 0x00, 0x45, 0x02, 0xC9, 0x00, 0x45, 0x02, 0xCA, + 0x00, 0x45, 0x02, 0xE5, 0x00, 0x45, 0x02, 0xED, 0x00, 0x07, 0x02, 0xEE, + 0x00, 0x00, 0x02, 0xF0, 0x00, 0x45, 0x02, 0xF1, 0x00, 0x45, 0x02, 0xF2, + 0x00, 0x45, 0x02, 0xF3, 0x00, 0x45, 0x03, 0x59, 0x00, 0x45, 0x03, 0x78, + 0x00, 0x45, 0x03, 0x79, 0x00, 0x45, 0x03, 0x7A, 0x00, 0x45, 0x03, 0x7B, + 0x00, 0x45, 0x03, 0x7C, 0x00, 0x45, 0x03, 0x7D, 0x00, 0x45, 0x03, 0x7E, + 0x00, 0x45, 0x03, 0x7F, 0x00, 0x45, 0x03, 0x80, 0x00, 0x45, 0x03, 0x81, + 0x00, 0x45, 0x03, 0x82, 0x00, 0x45, 0x03, 0x83, 0x00, 0x45, 0x03, 0x84, + 0x00, 0x45, 0x03, 0x85, 0x00, 0x45, 0x03, 0x86, 0x00, 0x45, 0x04, 0xAD, + 0x00, 0x45, 0x04, 0xB4, 0x00, 0x45, 0x04, 0xE7, 0x00, 0x45, 0x04, 0xF2, + 0x00, 0x45, 0x04, 0xFE, 0x00, 0x45, 0x05, 0x0A, 0x00, 0x45, 0x05, 0x0C, + 0x00, 0x45, 0x05, 0x0D, 0x00, 0x45, 0x05, 0x17, 0x00, 0x45, 0x05, 0x18, + 0x00, 0x45, 0x05, 0x19, 0x00, 0x45, 0x05, 0x90, 0x00, 0x45, 0x06, 0x05, + 0x00, 0x06, 0x07, 0xF5, 0x00, 0x45, 0x08, 0x66, 0x00, 0x45, 0x08, 0x7F, + 0x00, 0x45, 0x08, 0x80, 0x00, 0x45, 0x08, 0x81, 0x00, 0x45, 0x09, 0x0B, + 0x00, 0x45, 0x09, 0x1A, 0x00, 0x45, 0x09, 0x40, 0x00, 0x45, 0x09, 0x41, + 0x00, 0x45, 0x09, 0x59, 0x00, 0x45, 0x09, 0x5C, 0x00, 0x45, 0x09, 0x70, + 0x00, 0x45, 0x09, 0xA6, 0x00, 0x45, 0x09, 0xB5, 0x00, 0x45, 0x00, 0x1C, + 0x01, 0x0A, 0xFF, 0x0C, 0x01, 0x0B, 0xFF, 0x0C, 0x01, 0x0C, 0xFF, 0x0C, + 0x01, 0x0D, 0xFF, 0x0C, 0x01, 0x0E, 0xFF, 0x0C, 0x02, 0x0B, 0xFF, 0xAF, + 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, + 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, + 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xFD, 0xFF, 0xAF, + 0x03, 0xFF, 0xFF, 0xAF, 0x04, 0x00, 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x5E, + 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, + 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, + 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, + 0x06, 0x05, 0xFF, 0x8C, 0x00, 0x1F, 0x01, 0x0A, 0xFF, 0xAF, 0x01, 0x0B, + 0xFF, 0xAF, 0x01, 0x0C, 0xFF, 0xAF, 0x01, 0x0D, 0xFF, 0xAF, 0x01, 0x0E, + 0xFF, 0xAF, 0x02, 0x4C, 0xFF, 0x8C, 0x02, 0x57, 0xFF, 0x8C, 0x02, 0x5A, + 0xFF, 0x8C, 0x02, 0x61, 0xFF, 0x8C, 0x02, 0x64, 0xFF, 0x8C, 0x02, 0x68, + 0xFF, 0x8C, 0x02, 0x85, 0xFF, 0x8C, 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x1E, + 0xFF, 0x8C, 0x03, 0x53, 0xFF, 0x8C, 0x04, 0x54, 0xFF, 0x8C, 0x05, 0x8F, + 0xFF, 0x80, 0x05, 0xDB, 0xFF, 0xAF, 0x05, 0xDC, 0xFF, 0xAF, 0x05, 0xDD, + 0xFF, 0xAF, 0x05, 0xE3, 0xFF, 0x98, 0x05, 0xE5, 0xFF, 0x80, 0x05, 0xEA, + 0xFF, 0x2F, 0x05, 0xF2, 0xFF, 0xA3, 0x06, 0x04, 0xFF, 0x98, 0x06, 0x1D, + 0xFF, 0xBB, 0x07, 0xF8, 0xFF, 0xAF, 0x08, 0xCB, 0xFF, 0xAF, 0x08, 0xCC, + 0xFF, 0xAF, 0x08, 0xCF, 0xFF, 0xAF, 0x09, 0x3E, 0xFF, 0x8C, 0x00, 0x1F, + 0x04, 0xAB, 0xFF, 0x75, 0x05, 0x6F, 0xFF, 0xBB, 0x05, 0x84, 0xFF, 0xBB, + 0x05, 0x85, 0xFF, 0xBB, 0x05, 0x87, 0xFF, 0xBB, 0x05, 0x8A, 0xFF, 0xBB, + 0x05, 0xAD, 0xFF, 0xBB, 0x05, 0xB1, 0xFF, 0xBB, 0x05, 0xBD, 0xFF, 0xBB, + 0x05, 0xDB, 0xFF, 0x69, 0x05, 0xDC, 0xFF, 0x69, 0x05, 0xDD, 0xFF, 0x69, + 0x05, 0xE3, 0xFF, 0xBB, 0x05, 0xF0, 0xFF, 0xBB, 0x05, 0xF1, 0xFF, 0xBB, + 0x05, 0xF3, 0xFF, 0xBB, 0x05, 0xF6, 0xFF, 0xBB, 0x05, 0xFD, 0xFF, 0xBB, + 0x05, 0xFE, 0xFF, 0xBB, 0x06, 0x00, 0xFF, 0xBB, 0x06, 0x03, 0xFF, 0xBB, + 0x06, 0x04, 0xFF, 0xBB, 0x06, 0xAE, 0x00, 0x5D, 0x07, 0x0B, 0xFF, 0xBB, + 0x07, 0x0C, 0xFF, 0xBB, 0x07, 0x0D, 0xFF, 0xBB, 0x07, 0xF8, 0xFF, 0x69, + 0x08, 0xCB, 0xFF, 0x69, 0x08, 0xCC, 0xFF, 0x69, 0x08, 0xCF, 0xFF, 0x69, + 0x08, 0xD2, 0xFF, 0xBB, 0x00, 0x21, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, + 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, + 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, + 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xFC, 0xFF, 0xBB, 0x03, 0xFD, + 0xFF, 0xBB, 0x03, 0xFE, 0xFF, 0xBB, 0x03, 0xFF, 0xFF, 0xBB, 0x04, 0x00, + 0xFF, 0xBB, 0x04, 0x01, 0xFF, 0xBB, 0x04, 0x02, 0xFF, 0xBB, 0x04, 0x03, + 0xFF, 0xBB, 0x04, 0x04, 0xFF, 0xBB, 0x04, 0x05, 0xFF, 0xBB, 0x04, 0x06, + 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, + 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, + 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, + 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x08, 0x94, + 0xFF, 0xBB, 0x08, 0x95, 0xFF, 0xBB, 0x00, 0x22, 0x00, 0x55, 0x00, 0x45, + 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, 0x00, 0x97, 0x00, 0xAA, 0x00, 0x97, + 0x00, 0xAE, 0x00, 0x97, 0x01, 0x38, 0x00, 0x97, 0x01, 0x3D, 0x00, 0x97, + 0x01, 0x3E, 0x00, 0x97, 0x01, 0x8B, 0x00, 0x97, 0x02, 0xB1, 0x00, 0x45, + 0x02, 0xB2, 0x00, 0x45, 0x02, 0xB3, 0x00, 0x45, 0x02, 0xB7, 0x00, 0x45, + 0x02, 0xB8, 0x00, 0x45, 0x02, 0xBA, 0x00, 0x45, 0x02, 0xBB, 0x00, 0x45, + 0x02, 0xBC, 0x00, 0x45, 0x02, 0xBF, 0x00, 0x45, 0x02, 0xC0, 0x00, 0x45, + 0x02, 0xC1, 0x00, 0x45, 0x02, 0xC2, 0x00, 0x5D, 0x02, 0xC3, 0x00, 0x51, + 0x02, 0xC4, 0x00, 0x45, 0x02, 0xC5, 0x00, 0x45, 0x02, 0xC6, 0x00, 0x45, + 0x02, 0xCB, 0x00, 0x45, 0x02, 0xCD, 0x00, 0x45, 0x02, 0xD1, 0xFF, 0x8C, + 0x05, 0x0B, 0x00, 0x45, 0x06, 0xFF, 0x00, 0x97, 0x08, 0x60, 0x00, 0x45, + 0x08, 0x63, 0x00, 0x45, 0x08, 0x64, 0x00, 0x45, 0x08, 0x9C, 0x00, 0x45, + 0x00, 0x27, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, + 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, + 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, + 0xFF, 0xBB, 0x03, 0xFD, 0xFF, 0xAF, 0x03, 0xFF, 0xFF, 0xAF, 0x04, 0x00, + 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, + 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, + 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDB, 0xFF, 0x52, 0x05, 0xDC, + 0xFF, 0x52, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xDF, 0xFF, 0xAF, 0x05, 0xE0, + 0xFF, 0xAF, 0x05, 0xE1, 0xFF, 0xAF, 0x05, 0xE2, 0xFF, 0xAF, 0x05, 0xEA, + 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x75, 0x07, 0xF8, 0xFF, 0x52, 0x07, 0xF9, + 0xFF, 0xAF, 0x07, 0xFA, 0xFF, 0xAF, 0x08, 0xCB, 0xFF, 0x52, 0x08, 0xCC, + 0xFF, 0x52, 0x08, 0xCD, 0xFF, 0xAF, 0x08, 0xCE, 0xFF, 0xAF, 0x08, 0xCF, + 0xFF, 0x52, 0x08, 0xD3, 0xFF, 0xAF, 0x08, 0xD5, 0xFF, 0xAF, 0x0A, 0x15, + 0xFF, 0xAF, 0x00, 0x4A, 0x00, 0x02, 0xFF, 0xCC, 0x00, 0x03, 0xFF, 0xCC, + 0x00, 0x04, 0xFF, 0xCC, 0x00, 0x05, 0xFF, 0xCC, 0x00, 0x06, 0xFF, 0xCC, + 0x00, 0x07, 0xFF, 0xCC, 0x00, 0x08, 0xFF, 0xCC, 0x00, 0x09, 0xFF, 0xCC, + 0x00, 0x0A, 0xFF, 0xCC, 0x00, 0x0B, 0xFF, 0xCC, 0x00, 0x0C, 0xFF, 0xCC, + 0x00, 0x0D, 0xFF, 0xCC, 0x00, 0x0E, 0xFF, 0xCC, 0x00, 0x0F, 0xFF, 0xCC, + 0x00, 0x10, 0xFF, 0xCC, 0x00, 0x11, 0xFF, 0xCC, 0x00, 0x12, 0xFF, 0xCC, + 0x00, 0x13, 0xFF, 0xCC, 0x00, 0x14, 0xFF, 0xCC, 0x00, 0x15, 0xFF, 0xCC, + 0x00, 0x16, 0xFF, 0xCC, 0x00, 0x17, 0xFF, 0xCC, 0x00, 0x18, 0xFF, 0xCC, + 0x00, 0x19, 0xFF, 0xCC, 0x00, 0x1A, 0xFF, 0xCC, 0x00, 0x1B, 0xFF, 0xCC, + 0x00, 0x1C, 0xFF, 0xCC, 0x00, 0x1D, 0xFF, 0xCC, 0x00, 0x1E, 0xFF, 0xCC, + 0x00, 0x1F, 0xFF, 0xCC, 0x00, 0x20, 0xFF, 0xCC, 0x00, 0x21, 0xFF, 0xCC, + 0x00, 0x22, 0xFF, 0xCC, 0x00, 0x23, 0xFF, 0xCC, 0x00, 0x24, 0xFF, 0xCC, + 0x00, 0x25, 0xFF, 0xCC, 0x00, 0x26, 0xFF, 0xCC, 0x00, 0x27, 0xFF, 0xCC, + 0x00, 0x28, 0xFF, 0xCC, 0x00, 0x29, 0xFF, 0xCC, 0x00, 0x2A, 0xFF, 0xCC, + 0x00, 0x2B, 0xFF, 0xCC, 0x00, 0x2C, 0xFF, 0xCC, 0x00, 0x2D, 0xFF, 0xCC, + 0x00, 0x2E, 0xFF, 0xCC, 0x00, 0x2F, 0xFF, 0xCC, 0x00, 0x30, 0xFF, 0xCC, + 0x00, 0x31, 0xFF, 0xCC, 0x00, 0x32, 0xFF, 0xCC, 0x00, 0x33, 0xFF, 0xCC, + 0x00, 0x34, 0xFF, 0xCC, 0x00, 0x35, 0xFF, 0xCC, 0x00, 0x36, 0xFF, 0xCC, + 0x00, 0x37, 0xFF, 0xCC, 0x00, 0x38, 0xFF, 0xCC, 0x00, 0x39, 0xFF, 0xCC, + 0x00, 0x3A, 0xFF, 0xCC, 0x00, 0x3B, 0xFF, 0xCC, 0x00, 0x3C, 0xFF, 0xCC, + 0x00, 0x3D, 0xFF, 0xCC, 0x00, 0x3E, 0xFF, 0xCC, 0x00, 0x3F, 0xFF, 0xCC, + 0x00, 0x40, 0xFF, 0xCC, 0x03, 0xD3, 0xFF, 0xCC, 0x03, 0xF6, 0xFF, 0xCC, + 0x08, 0x03, 0xFF, 0xCC, 0x08, 0x04, 0xFF, 0xCC, 0x08, 0x05, 0xFF, 0xCC, + 0x08, 0x06, 0xFF, 0xCC, 0x08, 0x07, 0xFF, 0xCC, 0x08, 0x08, 0xFF, 0xCC, + 0x09, 0x6D, 0xFF, 0xCC, 0x09, 0x89, 0xFF, 0xCC, 0x09, 0xAC, 0xFF, 0xCC, + 0x00, 0x2F, 0x01, 0xFB, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x01, 0xFD, + 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x02, 0x00, + 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x02, 0x03, + 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x02, 0x06, + 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x02, 0x09, + 0x00, 0x00, 0x02, 0x0A, 0x00, 0x00, 0x02, 0x0B, 0x00, 0x00, 0x02, 0x0C, + 0x00, 0x00, 0x02, 0x0D, 0x00, 0x00, 0x02, 0x0E, 0x00, 0x00, 0x02, 0x0F, + 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x02, 0x11, 0x00, 0x00, 0x02, 0x12, + 0x00, 0x00, 0x02, 0x13, 0x00, 0x00, 0x02, 0x14, 0x00, 0x00, 0x02, 0x15, + 0x00, 0x00, 0x02, 0x16, 0x00, 0x00, 0x02, 0x17, 0x00, 0x00, 0x02, 0x18, + 0x00, 0x00, 0x02, 0x19, 0x00, 0x00, 0x02, 0x1A, 0x00, 0x00, 0x02, 0x1C, + 0x00, 0x00, 0x02, 0x1D, 0x00, 0x00, 0x02, 0x1E, 0x00, 0x00, 0x02, 0x1F, + 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x02, 0x21, 0x00, 0x00, 0x02, 0x22, + 0x00, 0x00, 0x05, 0x05, 0x00, 0x00, 0x05, 0x06, 0x00, 0x00, 0x08, 0x4C, + 0x00, 0x00, 0x08, 0x4D, 0x00, 0x00, 0x08, 0x4E, 0x00, 0x00, 0x08, 0x4F, + 0x00, 0x00, 0x08, 0x50, 0x00, 0x00, 0x08, 0x51, 0x00, 0x00, 0x00, 0x31, + 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, + 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, + 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, + 0x03, 0xFC, 0xFF, 0xAF, 0x03, 0xFD, 0xFF, 0xAF, 0x03, 0xFE, 0xFF, 0xAF, + 0x03, 0xFF, 0xFF, 0xAF, 0x04, 0x00, 0xFF, 0xAF, 0x04, 0x01, 0xFF, 0xAF, + 0x04, 0x02, 0xFF, 0xAF, 0x04, 0x03, 0xFF, 0xAF, 0x04, 0x04, 0xFF, 0xAF, + 0x04, 0x05, 0xFF, 0xAF, 0x04, 0x06, 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x5E, + 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, + 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, + 0x05, 0xDB, 0xFF, 0x52, 0x05, 0xDC, 0xFF, 0x52, 0x05, 0xDD, 0xFF, 0x52, + 0x05, 0xDF, 0xFF, 0xAF, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xE1, 0xFF, 0xAF, + 0x05, 0xE2, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, + 0x07, 0xF8, 0xFF, 0x52, 0x07, 0xF9, 0xFF, 0xAF, 0x07, 0xFA, 0xFF, 0xAF, + 0x08, 0x94, 0xFF, 0xAF, 0x08, 0x95, 0xFF, 0xAF, 0x08, 0xCB, 0xFF, 0x52, + 0x08, 0xCC, 0xFF, 0x52, 0x08, 0xCD, 0xFF, 0xAF, 0x08, 0xCE, 0xFF, 0xAF, + 0x08, 0xCF, 0xFF, 0x52, 0x08, 0xD3, 0xFF, 0xAF, 0x08, 0xD5, 0xFF, 0xAF, + 0x0A, 0x15, 0xFF, 0xAF, 0x00, 0x34, 0x01, 0xC8, 0xFF, 0xAF, 0x01, 0xC9, + 0xFF, 0xAF, 0x01, 0xCA, 0xFF, 0xAF, 0x01, 0xD2, 0xFF, 0xA3, 0x01, 0xD3, + 0xFF, 0xA3, 0x01, 0xD4, 0xFF, 0xA3, 0x01, 0xD5, 0xFF, 0xA3, 0x01, 0xD6, + 0xFF, 0xA3, 0x01, 0xD7, 0xFF, 0xA3, 0x01, 0xD8, 0xFF, 0x98, 0x01, 0xD9, + 0xFF, 0x98, 0x01, 0xDA, 0xFF, 0x98, 0x01, 0xDB, 0xFF, 0x98, 0x01, 0xDC, + 0xFF, 0x98, 0x01, 0xDD, 0xFF, 0x98, 0x01, 0xDE, 0xFF, 0x98, 0x01, 0xDF, + 0xFF, 0x98, 0x01, 0xE0, 0xFF, 0x98, 0x01, 0xE1, 0xFF, 0x98, 0x01, 0xE2, + 0xFF, 0x98, 0x01, 0xE3, 0xFF, 0x98, 0x01, 0xE4, 0xFF, 0x98, 0x01, 0xE5, + 0xFF, 0x98, 0x01, 0xE6, 0xFF, 0x98, 0x01, 0xEB, 0xFF, 0x98, 0x01, 0xEC, + 0xFF, 0x98, 0x01, 0xEF, 0xFF, 0x98, 0x04, 0x29, 0xFF, 0xAF, 0x04, 0x2E, + 0xFF, 0xA3, 0x04, 0x37, 0xFF, 0xAF, 0x04, 0x51, 0xFF, 0xAF, 0x08, 0x3C, + 0xFF, 0xAF, 0x08, 0x40, 0xFF, 0xA3, 0x08, 0x41, 0xFF, 0xA3, 0x08, 0x42, + 0xFF, 0x98, 0x08, 0x43, 0xFF, 0x98, 0x08, 0x44, 0xFF, 0x98, 0x08, 0xB0, + 0xFF, 0xA3, 0x09, 0x85, 0xFF, 0xA3, 0x09, 0x8F, 0xFF, 0xAF, 0x09, 0x94, + 0xFF, 0x98, 0x09, 0x95, 0xFF, 0x98, 0x09, 0x98, 0xFF, 0xA3, 0x09, 0x9C, + 0xFF, 0xA3, 0x09, 0xA1, 0xFF, 0xA3, 0x09, 0xEB, 0xFF, 0xAF, 0x09, 0xEC, + 0xFF, 0xAF, 0x09, 0xED, 0xFF, 0xAF, 0x09, 0xEE, 0xFF, 0xAF, 0x09, 0xF0, + 0xFF, 0xA3, 0x09, 0xF1, 0xFF, 0xA3, 0x09, 0xF2, 0xFF, 0xA3, 0x00, 0x36, + 0x02, 0xA6, 0x00, 0x00, 0x02, 0xA7, 0x00, 0x00, 0x02, 0xB9, 0x00, 0x00, + 0x02, 0xBD, 0x00, 0x51, 0x02, 0xC3, 0x00, 0x45, 0x02, 0xC9, 0x00, 0x00, + 0x02, 0xCA, 0x00, 0x00, 0x02, 0xE5, 0x00, 0x00, 0x02, 0xF0, 0x00, 0x00, + 0x02, 0xF1, 0x00, 0x00, 0x02, 0xF2, 0x00, 0x00, 0x02, 0xF3, 0x00, 0x00, + 0x03, 0x59, 0x00, 0x00, 0x03, 0x78, 0x00, 0x00, 0x03, 0x79, 0x00, 0x00, + 0x03, 0x7A, 0x00, 0x00, 0x03, 0x7B, 0x00, 0x00, 0x03, 0x7C, 0x00, 0x00, + 0x03, 0x7D, 0x00, 0x00, 0x03, 0x7E, 0x00, 0x00, 0x03, 0x7F, 0x00, 0x00, + 0x03, 0x80, 0x00, 0x00, 0x03, 0x81, 0x00, 0x00, 0x03, 0x82, 0x00, 0x00, + 0x03, 0x83, 0x00, 0x00, 0x03, 0x84, 0x00, 0x00, 0x03, 0x85, 0x00, 0x00, + 0x03, 0x86, 0x00, 0x00, 0x04, 0xAD, 0x00, 0x00, 0x04, 0xB4, 0x00, 0x00, + 0x04, 0xE7, 0x00, 0x00, 0x04, 0xF2, 0x00, 0x00, 0x04, 0xFE, 0x00, 0x00, + 0x05, 0x0A, 0x00, 0x00, 0x05, 0x0C, 0x00, 0x00, 0x05, 0x0D, 0x00, 0x00, + 0x05, 0x17, 0x00, 0x00, 0x05, 0x18, 0x00, 0x00, 0x05, 0x19, 0x00, 0x00, + 0x05, 0x90, 0x00, 0x00, 0x06, 0x05, 0xFF, 0xE3, 0x07, 0xF5, 0x00, 0x00, + 0x08, 0x66, 0x00, 0x00, 0x08, 0x7F, 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, + 0x08, 0x81, 0x00, 0x00, 0x09, 0x0B, 0x00, 0x00, 0x09, 0x40, 0x00, 0x00, + 0x09, 0x41, 0x00, 0x00, 0x09, 0x59, 0x00, 0x00, 0x09, 0x5C, 0x00, 0x00, + 0x09, 0x70, 0x00, 0x00, 0x09, 0xA6, 0x00, 0x00, 0x09, 0xB5, 0x00, 0x00, + 0x00, 0x54, 0x00, 0x02, 0xFF, 0x74, 0x00, 0x03, 0xFF, 0x74, 0x00, 0x04, + 0xFF, 0x74, 0x00, 0x05, 0xFF, 0x74, 0x00, 0x06, 0xFF, 0x74, 0x00, 0x07, + 0xFF, 0x74, 0x00, 0x08, 0xFF, 0x74, 0x00, 0x09, 0xFF, 0x74, 0x00, 0x0A, + 0xFF, 0x74, 0x00, 0x0B, 0xFF, 0x74, 0x00, 0x0C, 0xFF, 0x74, 0x00, 0x0D, + 0xFF, 0x74, 0x00, 0x0E, 0xFF, 0x74, 0x00, 0x0F, 0xFF, 0x74, 0x00, 0x10, + 0xFF, 0x74, 0x00, 0x11, 0xFF, 0x74, 0x00, 0x12, 0xFF, 0x74, 0x00, 0x13, + 0xFF, 0x74, 0x00, 0x14, 0xFF, 0x74, 0x00, 0x15, 0xFF, 0x74, 0x00, 0x16, + 0xFF, 0x74, 0x00, 0x17, 0xFF, 0x74, 0x00, 0x18, 0xFF, 0x74, 0x00, 0x19, + 0xFF, 0x74, 0x00, 0x1A, 0xFF, 0x74, 0x00, 0x1B, 0xFF, 0x74, 0x00, 0x1C, + 0xFF, 0x74, 0x00, 0x1D, 0xFF, 0x74, 0x00, 0x1E, 0xFF, 0x74, 0x00, 0x1F, + 0xFF, 0x74, 0x00, 0x20, 0xFF, 0x74, 0x00, 0x21, 0xFF, 0x74, 0x00, 0x22, + 0xFF, 0x74, 0x00, 0x23, 0xFF, 0x74, 0x00, 0x24, 0xFF, 0x74, 0x00, 0x25, + 0xFF, 0x74, 0x00, 0x26, 0xFF, 0x74, 0x00, 0x27, 0xFF, 0x74, 0x00, 0x28, + 0xFF, 0x74, 0x00, 0x29, 0xFF, 0x74, 0x00, 0x2A, 0xFF, 0x74, 0x00, 0x2B, + 0xFF, 0x74, 0x00, 0x2C, 0xFF, 0x74, 0x00, 0x2D, 0xFF, 0x74, 0x00, 0x2E, + 0xFF, 0x74, 0x00, 0x2F, 0xFF, 0x74, 0x00, 0x30, 0xFF, 0x74, 0x00, 0x31, + 0xFF, 0x74, 0x00, 0x32, 0xFF, 0x74, 0x00, 0x33, 0xFF, 0x74, 0x00, 0x34, + 0xFF, 0x74, 0x00, 0x35, 0xFF, 0x74, 0x00, 0x36, 0xFF, 0x74, 0x00, 0x37, + 0xFF, 0x74, 0x00, 0x38, 0xFF, 0x74, 0x00, 0x39, 0xFF, 0x74, 0x00, 0x3A, + 0xFF, 0x74, 0x00, 0x3B, 0xFF, 0x74, 0x00, 0x3C, 0xFF, 0x74, 0x00, 0x3D, + 0xFF, 0x74, 0x00, 0x3E, 0xFF, 0x74, 0x00, 0x3F, 0xFF, 0x74, 0x00, 0x40, + 0xFF, 0x74, 0x03, 0x92, 0xFF, 0x4A, 0x03, 0xD3, 0xFF, 0x74, 0x03, 0xF6, + 0xFF, 0x74, 0x04, 0x05, 0xFF, 0xB2, 0x04, 0x06, 0xFF, 0xB2, 0x04, 0x09, + 0xFF, 0x74, 0x05, 0xE3, 0xFF, 0x5F, 0x06, 0x77, 0xFF, 0x9F, 0x06, 0x78, + 0xFF, 0x9F, 0x07, 0x33, 0xFF, 0x74, 0x07, 0x37, 0xFF, 0x74, 0x07, 0x3A, + 0xFF, 0x74, 0x08, 0x03, 0xFF, 0x74, 0x08, 0x04, 0xFF, 0x74, 0x08, 0x05, + 0xFF, 0x74, 0x08, 0x06, 0xFF, 0x74, 0x08, 0x07, 0xFF, 0x74, 0x08, 0x08, + 0xFF, 0x74, 0x09, 0x6D, 0xFF, 0x74, 0x09, 0x89, 0xFF, 0x74, 0x09, 0xAC, + 0xFF, 0x74, 0x00, 0x3A, 0x01, 0x15, 0xFF, 0x75, 0x01, 0x9B, 0xFF, 0x75, + 0x01, 0x9C, 0xFF, 0x75, 0x01, 0x9D, 0xFF, 0x75, 0x01, 0x9E, 0xFF, 0x75, + 0x01, 0x9F, 0xFF, 0x75, 0x01, 0xA0, 0xFF, 0x75, 0x01, 0xA1, 0xFF, 0x75, + 0x01, 0xA2, 0xFF, 0x75, 0x01, 0xA3, 0xFF, 0x75, 0x01, 0xA5, 0xFF, 0x75, + 0x01, 0xA6, 0xFF, 0x75, 0x01, 0xA7, 0xFF, 0x75, 0x01, 0xC8, 0xFF, 0xBB, + 0x01, 0xC9, 0xFF, 0xBB, 0x01, 0xCA, 0xFF, 0xBB, 0x01, 0xD8, 0xFF, 0x75, + 0x01, 0xD9, 0xFF, 0x75, 0x01, 0xDA, 0xFF, 0x75, 0x01, 0xDB, 0xFF, 0x75, + 0x01, 0xDC, 0xFF, 0x75, 0x01, 0xDD, 0xFF, 0x75, 0x01, 0xDE, 0xFF, 0x75, + 0x01, 0xDF, 0xFF, 0x75, 0x01, 0xE0, 0xFF, 0x75, 0x01, 0xE1, 0xFF, 0x75, + 0x01, 0xE2, 0xFF, 0x75, 0x01, 0xE3, 0xFF, 0x75, 0x01, 0xE4, 0xFF, 0x75, + 0x01, 0xE5, 0xFF, 0x75, 0x01, 0xE6, 0xFF, 0x75, 0x01, 0xEB, 0xFF, 0x75, + 0x01, 0xEC, 0xFF, 0x75, 0x01, 0xEF, 0xFF, 0x75, 0x04, 0x0F, 0xFF, 0x75, + 0x04, 0x29, 0xFF, 0xBB, 0x04, 0x37, 0xFF, 0xBB, 0x04, 0x3A, 0xFF, 0x75, + 0x04, 0x3F, 0xFF, 0x75, 0x04, 0x42, 0xFF, 0x75, 0x04, 0x51, 0xFF, 0xBB, + 0x04, 0x52, 0xFF, 0x75, 0x08, 0x31, 0xFF, 0x75, 0x08, 0x32, 0xFF, 0x75, + 0x08, 0x3C, 0xFF, 0xBB, 0x08, 0x42, 0xFF, 0x75, 0x08, 0x43, 0xFF, 0x75, + 0x08, 0x44, 0xFF, 0x75, 0x09, 0x27, 0xFF, 0x75, 0x09, 0x83, 0xFF, 0x75, + 0x09, 0x8F, 0xFF, 0xBB, 0x09, 0x93, 0xFF, 0x75, 0x09, 0x94, 0xFF, 0x75, + 0x09, 0x95, 0xFF, 0x75, 0x09, 0xEB, 0xFF, 0xBB, 0x09, 0xEC, 0xFF, 0xBB, + 0x09, 0xED, 0xFF, 0xBB, 0x09, 0xEE, 0xFF, 0xBB, 0x00, 0x3B, 0x01, 0x15, + 0xFF, 0xAF, 0x01, 0x9B, 0xFF, 0xAF, 0x01, 0x9C, 0xFF, 0xAF, 0x01, 0x9D, + 0xFF, 0xAF, 0x01, 0x9E, 0xFF, 0xAF, 0x01, 0x9F, 0xFF, 0xAF, 0x01, 0xA0, + 0xFF, 0xAF, 0x01, 0xA1, 0xFF, 0xAF, 0x01, 0xA2, 0xFF, 0xAF, 0x01, 0xA3, + 0xFF, 0xAF, 0x01, 0xA5, 0xFF, 0xAF, 0x01, 0xA6, 0xFF, 0xAF, 0x01, 0xA7, + 0xFF, 0xAF, 0x03, 0xD2, 0xFF, 0x98, 0x03, 0xD4, 0xFF, 0x98, 0x03, 0xD5, + 0xFF, 0x98, 0x03, 0xE3, 0xFF, 0x98, 0x03, 0xE4, 0xFF, 0x98, 0x03, 0xE5, + 0xFF, 0x98, 0x03, 0xE6, 0xFF, 0x98, 0x03, 0xE7, 0xFF, 0x98, 0x03, 0xE8, + 0xFF, 0x98, 0x03, 0xE9, 0xFF, 0x98, 0x03, 0xEA, 0xFF, 0x98, 0x03, 0xEB, + 0xFF, 0x98, 0x03, 0xEC, 0xFF, 0x98, 0x03, 0xED, 0xFF, 0x98, 0x03, 0xEE, + 0xFF, 0x98, 0x03, 0xEF, 0xFF, 0x98, 0x03, 0xF0, 0xFF, 0x98, 0x03, 0xF1, + 0xFF, 0x98, 0x03, 0xF2, 0xFF, 0x98, 0x03, 0xF3, 0xFF, 0x98, 0x03, 0xF4, + 0xFF, 0x98, 0x03, 0xF5, 0xFF, 0x98, 0x03, 0xFA, 0xFF, 0x98, 0x03, 0xFB, + 0xFF, 0x98, 0x04, 0x0F, 0xFF, 0xAF, 0x04, 0x3A, 0xFF, 0xAF, 0x04, 0x3F, + 0xFF, 0xAF, 0x04, 0x42, 0xFF, 0xAF, 0x04, 0x52, 0xFF, 0xAF, 0x04, 0xAD, + 0xFF, 0x75, 0x04, 0xB4, 0xFF, 0x3B, 0x04, 0xE2, 0xFF, 0x98, 0x05, 0x1A, + 0xFF, 0x98, 0x08, 0x31, 0xFF, 0xAF, 0x08, 0x32, 0xFF, 0xAF, 0x08, 0x8B, + 0xFF, 0x98, 0x08, 0x91, 0xFF, 0x98, 0x08, 0x92, 0xFF, 0x98, 0x08, 0x93, + 0xFF, 0x98, 0x09, 0x27, 0xFF, 0xAF, 0x09, 0x83, 0xFF, 0xAF, 0x09, 0x93, + 0xFF, 0xAF, 0x09, 0xB2, 0xFF, 0x98, 0x09, 0xB6, 0xFF, 0x98, 0x09, 0xB7, + 0xFF, 0x98, 0x09, 0xCF, 0xFF, 0x98, 0x00, 0x5D, 0x02, 0xA5, 0xFF, 0x87, + 0x02, 0xDE, 0xFF, 0x71, 0x03, 0x00, 0xFF, 0x87, 0x03, 0x01, 0xFF, 0x87, + 0x03, 0x91, 0xFF, 0x87, 0x03, 0x92, 0xFF, 0x87, 0x03, 0x93, 0xFF, 0x87, + 0x03, 0x94, 0xFF, 0x87, 0x03, 0x95, 0xFF, 0x87, 0x03, 0x96, 0xFF, 0x87, + 0x03, 0x97, 0xFF, 0x87, 0x03, 0x98, 0xFF, 0x87, 0x03, 0x99, 0xFF, 0x87, + 0x03, 0x9A, 0xFF, 0x87, 0x03, 0x9B, 0xFF, 0x87, 0x03, 0x9C, 0xFF, 0x87, + 0x03, 0x9D, 0xFF, 0x87, 0x03, 0x9E, 0xFF, 0x87, 0x03, 0x9F, 0xFF, 0x87, + 0x03, 0xA0, 0xFF, 0x87, 0x03, 0xA1, 0xFF, 0x87, 0x03, 0xA2, 0xFF, 0x87, + 0x03, 0xA3, 0xFF, 0x87, 0x03, 0xA4, 0xFF, 0x87, 0x03, 0xA5, 0xFF, 0x87, + 0x03, 0xA6, 0xFF, 0x87, 0x03, 0xA7, 0xFF, 0x87, 0x03, 0xA8, 0xFF, 0x87, + 0x03, 0xA9, 0xFF, 0x87, 0x03, 0xAA, 0xFF, 0x87, 0x03, 0xAB, 0xFF, 0x87, + 0x03, 0xAC, 0xFF, 0x87, 0x03, 0xAD, 0xFF, 0x87, 0x03, 0xAE, 0xFF, 0x87, + 0x03, 0xAF, 0xFF, 0x87, 0x03, 0xB0, 0xFF, 0x87, 0x03, 0xB1, 0xFF, 0x87, + 0x03, 0xDF, 0xFF, 0x71, 0x03, 0xE0, 0xFF, 0x71, 0x03, 0xE1, 0xFF, 0x71, + 0x03, 0xE2, 0xFF, 0x71, 0x03, 0xFC, 0xFF, 0xB2, 0x03, 0xFD, 0xFF, 0xB2, + 0x03, 0xFE, 0xFF, 0xB2, 0x03, 0xFF, 0xFF, 0xB2, 0x04, 0x00, 0xFF, 0xB2, + 0x04, 0x01, 0xFF, 0xB2, 0x04, 0x02, 0xFF, 0xB2, 0x04, 0x03, 0xFF, 0xB2, + 0x04, 0x04, 0xFF, 0xB2, 0x04, 0x05, 0xFF, 0xB2, 0x04, 0x06, 0xFF, 0xB2, + 0x04, 0xE9, 0xFF, 0x71, 0x04, 0xEA, 0xFF, 0x71, 0x05, 0x00, 0xFF, 0x71, + 0x05, 0x01, 0xFF, 0x71, 0x05, 0x03, 0xFF, 0x87, 0x05, 0x6F, 0xFF, 0xA2, + 0x05, 0x84, 0xFF, 0xA2, 0x05, 0x85, 0xFF, 0xA2, 0x05, 0x87, 0xFF, 0xA2, + 0x05, 0x8A, 0xFF, 0xA2, 0x05, 0xB1, 0xFF, 0xA2, 0x05, 0xBD, 0xFF, 0xA2, + 0x05, 0xE3, 0xFF, 0xA2, 0x05, 0xF0, 0xFF, 0xA2, 0x05, 0xF1, 0xFF, 0xA2, + 0x05, 0xF3, 0xFF, 0xA2, 0x05, 0xF6, 0xFF, 0xA2, 0x05, 0xFD, 0xFF, 0xA2, + 0x05, 0xFE, 0xFF, 0xA2, 0x06, 0x00, 0xFF, 0xA2, 0x06, 0x03, 0xFF, 0xA2, + 0x06, 0x04, 0xFF, 0xA2, 0x07, 0x0B, 0xFF, 0xA2, 0x07, 0x0C, 0xFF, 0xA2, + 0x07, 0x0D, 0xFF, 0xA2, 0x08, 0x82, 0xFF, 0x87, 0x08, 0x83, 0xFF, 0x87, + 0x08, 0x84, 0xFF, 0x87, 0x08, 0x85, 0xFF, 0x87, 0x08, 0x86, 0xFF, 0x87, + 0x08, 0x87, 0xFF, 0x87, 0x08, 0x88, 0xFF, 0x87, 0x08, 0x89, 0xFF, 0x87, + 0x08, 0x8A, 0xFF, 0x87, 0x08, 0x8F, 0xFF, 0x71, 0x08, 0x90, 0xFF, 0x71, + 0x08, 0x94, 0xFF, 0xB2, 0x08, 0x95, 0xFF, 0xB2, 0x08, 0xD2, 0xFF, 0xA2, + 0x09, 0xC6, 0xFF, 0x71, 0x0B, 0x42, 0xFF, 0x87, 0x00, 0x41, 0x02, 0x0B, + 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x02, 0xA5, + 0xFF, 0xBB, 0x03, 0x00, 0xFF, 0xBB, 0x03, 0x01, 0xFF, 0xBB, 0x03, 0x17, + 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x91, 0xFF, 0xBB, 0x03, 0x92, + 0xFF, 0xBB, 0x03, 0x93, 0xFF, 0xBB, 0x03, 0x94, 0xFF, 0xBB, 0x03, 0x95, + 0xFF, 0xBB, 0x03, 0x96, 0xFF, 0xBB, 0x03, 0x97, 0xFF, 0xBB, 0x03, 0x98, + 0xFF, 0xBB, 0x03, 0x99, 0xFF, 0xBB, 0x03, 0x9A, 0xFF, 0xBB, 0x03, 0x9B, + 0xFF, 0xBB, 0x03, 0x9C, 0xFF, 0xBB, 0x03, 0x9D, 0xFF, 0xBB, 0x03, 0x9E, + 0xFF, 0xBB, 0x03, 0x9F, 0xFF, 0xBB, 0x03, 0xA0, 0xFF, 0xBB, 0x03, 0xA1, + 0xFF, 0xBB, 0x03, 0xA2, 0xFF, 0xBB, 0x03, 0xA3, 0xFF, 0xBB, 0x03, 0xA4, + 0xFF, 0xBB, 0x03, 0xA5, 0xFF, 0xBB, 0x03, 0xA6, 0xFF, 0xBB, 0x03, 0xA7, + 0xFF, 0xBB, 0x03, 0xA8, 0xFF, 0xBB, 0x03, 0xA9, 0xFF, 0xBB, 0x03, 0xAA, + 0xFF, 0xBB, 0x03, 0xAB, 0xFF, 0xBB, 0x03, 0xAC, 0xFF, 0xBB, 0x03, 0xAD, + 0xFF, 0xBB, 0x03, 0xAE, 0xFF, 0xBB, 0x03, 0xAF, 0xFF, 0xBB, 0x03, 0xB0, + 0xFF, 0xBB, 0x03, 0xB1, 0xFF, 0xBB, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, + 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, + 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x03, + 0xFF, 0xBB, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, + 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, + 0xFF, 0x8C, 0x08, 0x82, 0xFF, 0xBB, 0x08, 0x83, 0xFF, 0xBB, 0x08, 0x84, + 0xFF, 0xBB, 0x08, 0x85, 0xFF, 0xBB, 0x08, 0x86, 0xFF, 0xBB, 0x08, 0x87, + 0xFF, 0xBB, 0x08, 0x88, 0xFF, 0xBB, 0x08, 0x89, 0xFF, 0xBB, 0x08, 0x8A, + 0xFF, 0xBB, 0x0B, 0x42, 0xFF, 0xBB, 0x00, 0x44, 0x00, 0x8A, 0x00, 0x51, + 0x01, 0x15, 0x00, 0x45, 0x01, 0x36, 0x00, 0x51, 0x01, 0x9B, 0x00, 0x45, + 0x01, 0x9C, 0x00, 0x45, 0x01, 0x9D, 0x00, 0x45, 0x01, 0x9E, 0x00, 0x45, + 0x01, 0x9F, 0x00, 0x45, 0x01, 0xA0, 0x00, 0x45, 0x01, 0xA1, 0x00, 0x45, + 0x01, 0xA2, 0x00, 0x45, 0x01, 0xA3, 0x00, 0x45, 0x01, 0xA5, 0x00, 0x45, + 0x01, 0xA6, 0x00, 0x45, 0x01, 0xA7, 0x00, 0x45, 0x02, 0xA8, 0x00, 0x51, + 0x02, 0xB1, 0x00, 0x45, 0x02, 0xB2, 0x00, 0x45, 0x02, 0xB3, 0x00, 0x45, + 0x02, 0xB4, 0x00, 0x51, 0x02, 0xB5, 0x00, 0x51, 0x02, 0xB6, 0x00, 0x51, + 0x02, 0xB7, 0x00, 0x45, 0x02, 0xB8, 0x00, 0x45, 0x02, 0xBA, 0x00, 0x45, + 0x02, 0xBB, 0x00, 0x45, 0x02, 0xBC, 0x00, 0x51, 0x02, 0xBD, 0x00, 0x51, + 0x02, 0xBE, 0x00, 0x51, 0x02, 0xBF, 0x00, 0x45, 0x02, 0xC0, 0x00, 0x45, + 0x02, 0xC1, 0x00, 0x45, 0x02, 0xC2, 0x00, 0x51, 0x02, 0xC3, 0x00, 0x51, + 0x02, 0xC4, 0x00, 0x45, 0x02, 0xC5, 0x00, 0x45, 0x02, 0xC6, 0x00, 0x45, + 0x02, 0xC7, 0x00, 0x51, 0x02, 0xC8, 0x00, 0x51, 0x02, 0xCB, 0x00, 0x45, + 0x02, 0xCC, 0x00, 0x51, 0x02, 0xCD, 0x00, 0x45, 0x02, 0xCF, 0x00, 0x51, + 0x02, 0xD2, 0x00, 0x51, 0x02, 0xD3, 0x00, 0x51, 0x02, 0xD4, 0x00, 0x51, + 0x02, 0xD5, 0x00, 0x51, 0x03, 0x0A, 0x00, 0x51, 0x04, 0x3A, 0x00, 0x45, + 0x04, 0x3F, 0x00, 0x45, 0x04, 0x42, 0x00, 0x45, 0x04, 0x52, 0x00, 0x45, + 0x05, 0x0B, 0x00, 0x45, 0x06, 0x21, 0x00, 0x51, 0x07, 0x55, 0x00, 0x45, + 0x08, 0x31, 0x00, 0x45, 0x08, 0x32, 0x00, 0x45, 0x08, 0x60, 0x00, 0x45, + 0x08, 0x61, 0x00, 0x51, 0x08, 0x62, 0x00, 0x51, 0x08, 0x63, 0x00, 0x45, + 0x08, 0x64, 0x00, 0x45, 0x08, 0x65, 0x00, 0x51, 0x08, 0x9C, 0x00, 0x45, + 0x09, 0x27, 0x00, 0x45, 0x09, 0x3B, 0x00, 0x51, 0x09, 0x83, 0x00, 0x45, + 0x09, 0x93, 0x00, 0x45, 0x00, 0x45, 0x02, 0xA6, 0xFF, 0xBB, 0x02, 0xA7, + 0xFF, 0xBB, 0x02, 0xB9, 0xFF, 0xBB, 0x02, 0xC9, 0xFF, 0xBB, 0x02, 0xCA, + 0xFF, 0xBB, 0x02, 0xE5, 0xFF, 0xBB, 0x02, 0xF0, 0xFF, 0xBB, 0x02, 0xF1, + 0xFF, 0xBB, 0x02, 0xF2, 0xFF, 0xBB, 0x02, 0xF3, 0xFF, 0xBB, 0x03, 0x59, + 0xFF, 0xBB, 0x03, 0x78, 0xFF, 0xBB, 0x03, 0x79, 0xFF, 0xBB, 0x03, 0x7A, + 0xFF, 0xBB, 0x03, 0x7B, 0xFF, 0xBB, 0x03, 0x7C, 0xFF, 0xBB, 0x03, 0x7D, + 0xFF, 0xBB, 0x03, 0x7E, 0xFF, 0xBB, 0x03, 0x7F, 0xFF, 0xBB, 0x03, 0x80, + 0xFF, 0xBB, 0x03, 0x81, 0xFF, 0xBB, 0x03, 0x82, 0xFF, 0xBB, 0x03, 0x83, + 0xFF, 0xBB, 0x03, 0x84, 0xFF, 0xBB, 0x03, 0x85, 0xFF, 0xBB, 0x03, 0x86, + 0xFF, 0xBB, 0x04, 0x6F, 0xFF, 0x98, 0x04, 0xAD, 0xFF, 0xBB, 0x04, 0xB4, + 0xFF, 0x75, 0x04, 0xE7, 0xFF, 0xBB, 0x04, 0xF2, 0xFF, 0xBB, 0x04, 0xFE, + 0xFF, 0xBB, 0x05, 0x0A, 0xFF, 0xBB, 0x05, 0x0C, 0xFF, 0xBB, 0x05, 0x0D, + 0xFF, 0xBB, 0x05, 0x17, 0xFF, 0xBB, 0x05, 0x18, 0xFF, 0xBB, 0x05, 0x19, + 0xFF, 0xBB, 0x05, 0x86, 0xFF, 0xBB, 0x05, 0x8B, 0xFF, 0xBB, 0x05, 0x90, + 0xFF, 0xBB, 0x05, 0xB6, 0xFF, 0xBB, 0x05, 0xB7, 0xFF, 0xBB, 0x05, 0xB8, + 0xFF, 0xBB, 0x05, 0xB9, 0xFF, 0xBB, 0x05, 0xBA, 0xFF, 0xBB, 0x05, 0xC1, + 0xFF, 0xBB, 0x05, 0xC2, 0xFF, 0xBB, 0x05, 0xE6, 0xFF, 0xBB, 0x05, 0xE8, + 0xFF, 0xBB, 0x05, 0xEA, 0xFF, 0x80, 0x05, 0xF2, 0xFF, 0xBB, 0x05, 0xFF, + 0xFF, 0xBB, 0x06, 0x0A, 0xFF, 0xBB, 0x07, 0xF5, 0xFF, 0xBB, 0x08, 0x66, + 0xFF, 0xBB, 0x08, 0x7F, 0xFF, 0xBB, 0x08, 0x80, 0xFF, 0xBB, 0x08, 0x81, + 0xFF, 0xBB, 0x09, 0x0B, 0xFF, 0xBB, 0x09, 0x40, 0xFF, 0xBB, 0x09, 0x41, + 0xFF, 0xBB, 0x09, 0x59, 0xFF, 0xBB, 0x09, 0x5C, 0xFF, 0xBB, 0x09, 0x70, + 0xFF, 0xBB, 0x09, 0xA6, 0xFF, 0xBB, 0x09, 0xB5, 0xFF, 0xBB, 0x0A, 0x2F, + 0xFF, 0xBB, 0x0A, 0x30, 0xFF, 0xBB, 0x00, 0x4E, 0x02, 0x0B, 0xFF, 0xAF, + 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x02, 0xA5, 0xFF, 0xBB, + 0x03, 0x00, 0xFF, 0xBB, 0x03, 0x01, 0xFF, 0xBB, 0x03, 0x17, 0xFF, 0x98, + 0x03, 0x18, 0xFF, 0x98, 0x03, 0x91, 0xFF, 0xBB, 0x03, 0x92, 0xFF, 0xBB, + 0x03, 0x93, 0xFF, 0xBB, 0x03, 0x94, 0xFF, 0xBB, 0x03, 0x95, 0xFF, 0xBB, + 0x03, 0x96, 0xFF, 0xBB, 0x03, 0x97, 0xFF, 0xBB, 0x03, 0x98, 0xFF, 0xBB, + 0x03, 0x99, 0xFF, 0xBB, 0x03, 0x9A, 0xFF, 0xBB, 0x03, 0x9B, 0xFF, 0xBB, + 0x03, 0x9C, 0xFF, 0xBB, 0x03, 0x9D, 0xFF, 0xBB, 0x03, 0x9E, 0xFF, 0xBB, + 0x03, 0x9F, 0xFF, 0xBB, 0x03, 0xA0, 0xFF, 0xBB, 0x03, 0xA1, 0xFF, 0xBB, + 0x03, 0xA2, 0xFF, 0xBB, 0x03, 0xA3, 0xFF, 0xBB, 0x03, 0xA4, 0xFF, 0xBB, + 0x03, 0xA5, 0xFF, 0xBB, 0x03, 0xA6, 0xFF, 0xBB, 0x03, 0xA7, 0xFF, 0xBB, + 0x03, 0xA8, 0xFF, 0xBB, 0x03, 0xA9, 0xFF, 0xBB, 0x03, 0xAA, 0xFF, 0xBB, + 0x03, 0xAB, 0xFF, 0xBB, 0x03, 0xAC, 0xFF, 0xBB, 0x03, 0xAD, 0xFF, 0xBB, + 0x03, 0xAE, 0xFF, 0xBB, 0x03, 0xAF, 0xFF, 0xBB, 0x03, 0xB0, 0xFF, 0xBB, + 0x03, 0xB1, 0xFF, 0xBB, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, + 0x03, 0xFC, 0xFF, 0xBB, 0x03, 0xFD, 0xFF, 0xBB, 0x03, 0xFE, 0xFF, 0xBB, + 0x03, 0xFF, 0xFF, 0xBB, 0x04, 0x00, 0xFF, 0xBB, 0x04, 0x01, 0xFF, 0xBB, + 0x04, 0x02, 0xFF, 0xBB, 0x04, 0x03, 0xFF, 0xBB, 0x04, 0x04, 0xFF, 0xBB, + 0x04, 0x05, 0xFF, 0xBB, 0x04, 0x06, 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, + 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, + 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x03, 0xFF, 0xBB, 0x05, 0x8F, 0xFF, 0xBB, + 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, + 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x08, 0x82, 0xFF, 0xBB, + 0x08, 0x83, 0xFF, 0xBB, 0x08, 0x84, 0xFF, 0xBB, 0x08, 0x85, 0xFF, 0xBB, + 0x08, 0x86, 0xFF, 0xBB, 0x08, 0x87, 0xFF, 0xBB, 0x08, 0x88, 0xFF, 0xBB, + 0x08, 0x89, 0xFF, 0xBB, 0x08, 0x8A, 0xFF, 0xBB, 0x08, 0x94, 0xFF, 0xBB, + 0x08, 0x95, 0xFF, 0xBB, 0x0B, 0x42, 0xFF, 0xBB, 0x00, 0x66, 0x01, 0x15, + 0xFF, 0x5E, 0x01, 0x9B, 0xFF, 0x5E, 0x01, 0x9C, 0xFF, 0x5E, 0x01, 0x9D, + 0xFF, 0x5E, 0x01, 0x9E, 0xFF, 0x5E, 0x01, 0x9F, 0xFF, 0x5E, 0x01, 0xA0, + 0xFF, 0x5E, 0x01, 0xA1, 0xFF, 0x5E, 0x01, 0xA2, 0xFF, 0x5E, 0x01, 0xA3, + 0xFF, 0x5E, 0x01, 0xA5, 0xFF, 0x5E, 0x01, 0xA6, 0xFF, 0x5E, 0x01, 0xA7, + 0xFF, 0x5E, 0x01, 0xC8, 0xFF, 0x69, 0x01, 0xC9, 0xFF, 0x69, 0x01, 0xCA, + 0xFF, 0x69, 0x01, 0xCB, 0xFF, 0x69, 0x01, 0xCC, 0xFF, 0x69, 0x01, 0xCD, + 0xFF, 0x69, 0x01, 0xCE, 0xFF, 0x69, 0x01, 0xCF, 0xFF, 0x69, 0x01, 0xD0, + 0xFF, 0x69, 0x01, 0xD1, 0xFF, 0x69, 0x01, 0xD2, 0xFF, 0x8C, 0x01, 0xD3, + 0xFF, 0x8C, 0x01, 0xD4, 0xFF, 0x8C, 0x01, 0xD5, 0xFF, 0x8C, 0x01, 0xD6, + 0xFF, 0x8C, 0x01, 0xD7, 0xFF, 0x8C, 0x01, 0xD8, 0xFF, 0x46, 0x01, 0xD9, + 0xFF, 0x46, 0x01, 0xDA, 0xFF, 0x46, 0x01, 0xDB, 0xFF, 0x46, 0x01, 0xDC, + 0xFF, 0x46, 0x01, 0xDD, 0xFF, 0x46, 0x01, 0xDE, 0xFF, 0x46, 0x01, 0xDF, + 0xFF, 0x46, 0x01, 0xE0, 0xFF, 0x46, 0x01, 0xE1, 0xFF, 0x46, 0x01, 0xE2, + 0xFF, 0x46, 0x01, 0xE3, 0xFF, 0x46, 0x01, 0xE4, 0xFF, 0x46, 0x01, 0xE5, + 0xFF, 0x46, 0x01, 0xE6, 0xFF, 0x46, 0x01, 0xEB, 0xFF, 0x46, 0x01, 0xEC, + 0xFF, 0x46, 0x01, 0xEF, 0xFF, 0x46, 0x01, 0xF0, 0xFF, 0x80, 0x01, 0xF1, + 0xFF, 0x80, 0x01, 0xF2, 0xFF, 0x80, 0x01, 0xF3, 0xFF, 0x80, 0x01, 0xF4, + 0xFF, 0x80, 0x01, 0xF5, 0xFF, 0x80, 0x01, 0xF6, 0xFF, 0x80, 0x01, 0xF7, + 0xFF, 0x80, 0x01, 0xF8, 0xFF, 0x80, 0x01, 0xF9, 0xFF, 0x80, 0x01, 0xFA, + 0xFF, 0x80, 0x04, 0x0F, 0xFF, 0x46, 0x04, 0x29, 0xFF, 0x69, 0x04, 0x2D, + 0xFF, 0xBB, 0x04, 0x2E, 0xFF, 0x98, 0x04, 0x34, 0xFF, 0xBB, 0x04, 0x37, + 0xFF, 0x69, 0x04, 0x3A, 0xFF, 0x5E, 0x04, 0x3F, 0xFF, 0x5E, 0x04, 0x42, + 0xFF, 0x69, 0x04, 0x45, 0xFF, 0xBB, 0x04, 0x51, 0xFF, 0x69, 0x04, 0x52, + 0xFF, 0x5E, 0x04, 0x7F, 0xFF, 0x69, 0x08, 0x31, 0xFF, 0x5E, 0x08, 0x32, + 0xFF, 0x5E, 0x08, 0x3C, 0xFF, 0x69, 0x08, 0x3D, 0xFF, 0x69, 0x08, 0x3E, + 0xFF, 0x69, 0x08, 0x3F, 0xFF, 0x69, 0x08, 0x40, 0xFF, 0x8C, 0x08, 0x41, + 0xFF, 0x8C, 0x08, 0x42, 0xFF, 0x46, 0x08, 0x43, 0xFF, 0x46, 0x08, 0x44, + 0xFF, 0x46, 0x08, 0x45, 0xFF, 0x80, 0x08, 0x46, 0xFF, 0x80, 0x08, 0xB0, + 0xFF, 0x8C, 0x09, 0x27, 0xFF, 0x5E, 0x09, 0x83, 0xFF, 0x5E, 0x09, 0x85, + 0xFF, 0x8C, 0x09, 0x8F, 0xFF, 0x69, 0x09, 0x93, 0xFF, 0x5E, 0x09, 0x94, + 0xFF, 0x46, 0x09, 0x95, 0xFF, 0x46, 0x09, 0x98, 0xFF, 0x8C, 0x09, 0x9C, + 0xFF, 0x8C, 0x09, 0xA1, 0xFF, 0x8C, 0x09, 0xEB, 0xFF, 0x69, 0x09, 0xEC, + 0xFF, 0x69, 0x09, 0xED, 0xFF, 0x69, 0x09, 0xEE, 0xFF, 0x69, 0x09, 0xF0, + 0xFF, 0x8C, 0x09, 0xF1, 0xFF, 0x8C, 0x09, 0xF2, 0xFF, 0x8C, 0x00, 0x91, + 0x02, 0x1B, 0xFF, 0xD4, 0x02, 0xFE, 0xFF, 0xD4, 0x02, 0xFF, 0xFF, 0xD4, + 0x03, 0x02, 0xFF, 0xD4, 0x03, 0x03, 0xFF, 0xD4, 0x03, 0x04, 0xFF, 0xD4, + 0x03, 0x05, 0xFF, 0xD4, 0x03, 0x06, 0xFF, 0xD4, 0x03, 0x07, 0xFF, 0xD4, + 0x03, 0x08, 0xFF, 0xD4, 0x03, 0x09, 0xFF, 0xD4, 0x03, 0x0B, 0xFF, 0xD4, + 0x03, 0x0C, 0xFF, 0xD4, 0x03, 0x0D, 0xFF, 0xD4, 0x03, 0x0E, 0xFF, 0xD4, + 0x03, 0x0F, 0xFF, 0xD4, 0x03, 0x10, 0xFF, 0xD4, 0x03, 0x11, 0xFF, 0xD4, + 0x03, 0x12, 0xFF, 0xD4, 0x03, 0x13, 0xFF, 0xD4, 0x03, 0x14, 0xFF, 0xD4, + 0x03, 0x4B, 0xFF, 0xD4, 0x03, 0x4C, 0xFF, 0xD4, 0x03, 0x4E, 0xFF, 0xD4, + 0x03, 0x4F, 0xFF, 0xD4, 0x03, 0x50, 0xFF, 0xD4, 0x03, 0x53, 0xFF, 0xD4, + 0x03, 0x54, 0xFF, 0xD4, 0x03, 0x55, 0xFF, 0xD4, 0x03, 0x56, 0xFF, 0xD4, + 0x03, 0x5A, 0xFF, 0xD4, 0x03, 0x5B, 0xFF, 0xD4, 0x03, 0x5C, 0xFF, 0xD4, + 0x03, 0x5D, 0xFF, 0xD4, 0x03, 0x5E, 0xFF, 0xD4, 0x03, 0x5F, 0xFF, 0xD4, + 0x03, 0x60, 0xFF, 0xD4, 0x03, 0x61, 0xFF, 0xD4, 0x03, 0x62, 0xFF, 0xD4, + 0x03, 0x63, 0xFF, 0xD4, 0x03, 0x64, 0xFF, 0xD4, 0x03, 0xB2, 0xFF, 0xD4, + 0x04, 0x6E, 0xFF, 0xD4, 0x04, 0x80, 0xFF, 0xD4, 0x04, 0x81, 0xFF, 0xD4, + 0x04, 0x82, 0xFF, 0xD4, 0x04, 0x83, 0xFF, 0xD4, 0x04, 0x84, 0xFF, 0xD4, + 0x04, 0x85, 0xFF, 0xD4, 0x04, 0x86, 0xFF, 0xD4, 0x04, 0x87, 0xFF, 0xD4, + 0x04, 0x88, 0xFF, 0xD4, 0x04, 0x89, 0xFF, 0xD4, 0x04, 0x8A, 0xFF, 0xD4, + 0x04, 0x8B, 0xFF, 0xD4, 0x04, 0x8C, 0xFF, 0xD4, 0x04, 0x8D, 0xFF, 0xD4, + 0x04, 0x8E, 0xFF, 0xD4, 0x04, 0x8F, 0xFF, 0xD4, 0x04, 0x90, 0xFF, 0xD4, + 0x04, 0x91, 0xFF, 0xD4, 0x04, 0x92, 0xFF, 0xD4, 0x04, 0x93, 0xFF, 0xD4, + 0x04, 0x94, 0xFF, 0xD4, 0x04, 0x95, 0xFF, 0xD4, 0x04, 0x96, 0xFF, 0xD4, + 0x04, 0x97, 0xFF, 0xD4, 0x04, 0xAE, 0xFF, 0xD4, 0x04, 0xAF, 0xFF, 0xD4, + 0x04, 0xB0, 0xFF, 0xD4, 0x04, 0xB1, 0xFF, 0xD4, 0x04, 0xB5, 0xFF, 0xD4, + 0x04, 0xB6, 0xFF, 0xD4, 0x04, 0xB7, 0xFF, 0xD4, 0x04, 0xB8, 0xFF, 0xD4, + 0x04, 0xB9, 0xFF, 0xD4, 0x04, 0xBA, 0xFF, 0xD4, 0x04, 0xBB, 0xFF, 0xD4, + 0x04, 0xBC, 0xFF, 0xD4, 0x04, 0xBD, 0xFF, 0xD4, 0x04, 0xBE, 0xFF, 0xD4, + 0x04, 0xBF, 0xFF, 0xD4, 0x04, 0xC0, 0xFF, 0xD4, 0x04, 0xC1, 0xFF, 0xD4, + 0x04, 0xC2, 0xFF, 0xD4, 0x04, 0xC3, 0xFF, 0xD4, 0x04, 0xC4, 0xFF, 0xD4, + 0x04, 0xC5, 0xFF, 0xD4, 0x04, 0xC6, 0xFF, 0xD4, 0x04, 0xE4, 0xFF, 0xD4, + 0x04, 0xE5, 0xFF, 0xD4, 0x04, 0xE6, 0xFF, 0xD4, 0x04, 0xEC, 0xFF, 0xD4, + 0x04, 0xED, 0xFF, 0xD4, 0x04, 0xEE, 0xFF, 0xD4, 0x04, 0xEF, 0xFF, 0xD4, + 0x04, 0xF0, 0xFF, 0xD4, 0x04, 0xF1, 0xFF, 0xD4, 0x04, 0xF6, 0xFF, 0xD4, + 0x04, 0xF7, 0xFF, 0xD4, 0x04, 0xF8, 0xFF, 0xD4, 0x04, 0xF9, 0xFF, 0xD4, + 0x04, 0xFA, 0xFF, 0xD4, 0x04, 0xFB, 0xFF, 0xD4, 0x04, 0xFC, 0xFF, 0xD4, + 0x04, 0xFD, 0xFF, 0xD4, 0x05, 0x02, 0xFF, 0xD4, 0x05, 0x07, 0xFF, 0xD4, + 0x05, 0x08, 0xFF, 0xD4, 0x05, 0x09, 0xFF, 0xD4, 0x05, 0x0F, 0xFF, 0xD4, + 0x05, 0x11, 0xFF, 0xD4, 0x05, 0x13, 0xFF, 0xD4, 0x05, 0x14, 0xFF, 0xD4, + 0x07, 0xF2, 0xFF, 0xD4, 0x07, 0xF3, 0xFF, 0xD4, 0x08, 0x6B, 0xFF, 0xD4, + 0x08, 0x6C, 0xFF, 0xD4, 0x08, 0x6D, 0xFF, 0xD4, 0x08, 0x6E, 0xFF, 0xD4, + 0x08, 0x76, 0xFF, 0xD4, 0x08, 0x77, 0xFF, 0xD4, 0x08, 0x78, 0xFF, 0xD4, + 0x08, 0x79, 0xFF, 0xD4, 0x08, 0xBC, 0xFF, 0xD4, 0x08, 0xC0, 0xFF, 0xD4, + 0x08, 0xC3, 0xFF, 0xD4, 0x08, 0xC4, 0xFF, 0xD4, 0x08, 0xC7, 0xFF, 0xD4, + 0x08, 0xC9, 0xFF, 0xD4, 0x09, 0x08, 0xFF, 0xD4, 0x09, 0x09, 0xFF, 0xD4, + 0x09, 0x50, 0xFF, 0xD4, 0x09, 0x6E, 0xFF, 0xD4, 0x09, 0xA4, 0xFF, 0xD4, + 0x09, 0xA5, 0xFF, 0xD4, 0x09, 0xA7, 0xFF, 0xD4, 0x09, 0xA8, 0xFF, 0xD4, + 0x09, 0xA9, 0xFF, 0xD4, 0x09, 0xAB, 0xFF, 0xD4, 0x09, 0xBF, 0xFF, 0xD4, + 0x09, 0xC0, 0xFF, 0xD4, 0x09, 0xC5, 0xFF, 0xD4, 0x09, 0xD3, 0xFF, 0xD4, + 0x09, 0xD4, 0xFF, 0xD4, 0x00, 0x75, 0x01, 0x15, 0xFF, 0x8C, 0x01, 0x9B, + 0xFF, 0x8C, 0x01, 0x9C, 0xFF, 0x8C, 0x01, 0x9D, 0xFF, 0x8C, 0x01, 0x9E, + 0xFF, 0x8C, 0x01, 0x9F, 0xFF, 0x8C, 0x01, 0xA0, 0xFF, 0x8C, 0x01, 0xA1, + 0xFF, 0x8C, 0x01, 0xA2, 0xFF, 0x8C, 0x01, 0xA3, 0xFF, 0x8C, 0x01, 0xA5, + 0xFF, 0x8C, 0x01, 0xA6, 0xFF, 0x8C, 0x01, 0xA7, 0xFF, 0x8C, 0x01, 0xC8, + 0xFF, 0x80, 0x01, 0xC9, 0xFF, 0x80, 0x01, 0xCA, 0xFF, 0x80, 0x01, 0xCB, + 0xFF, 0xAF, 0x01, 0xCC, 0xFF, 0xAF, 0x01, 0xCD, 0xFF, 0xAF, 0x01, 0xCE, + 0xFF, 0xAF, 0x01, 0xCF, 0xFF, 0xAF, 0x01, 0xD0, 0xFF, 0xAF, 0x01, 0xD1, + 0xFF, 0xAF, 0x01, 0xD8, 0xFF, 0x69, 0x01, 0xD9, 0xFF, 0x69, 0x01, 0xDA, + 0xFF, 0x69, 0x01, 0xDB, 0xFF, 0x69, 0x01, 0xDC, 0xFF, 0x69, 0x01, 0xDD, + 0xFF, 0x69, 0x01, 0xDE, 0xFF, 0x69, 0x01, 0xDF, 0xFF, 0x69, 0x01, 0xE0, + 0xFF, 0x69, 0x01, 0xE1, 0xFF, 0x69, 0x01, 0xE2, 0xFF, 0x69, 0x01, 0xE3, + 0xFF, 0x69, 0x01, 0xE4, 0xFF, 0x69, 0x01, 0xE5, 0xFF, 0x69, 0x01, 0xE6, + 0xFF, 0x69, 0x01, 0xEB, 0xFF, 0x69, 0x01, 0xEC, 0xFF, 0x69, 0x01, 0xEF, + 0xFF, 0x69, 0x03, 0xD2, 0xFF, 0xBB, 0x03, 0xD4, 0xFF, 0xBB, 0x03, 0xD5, + 0xFF, 0xBB, 0x03, 0xD6, 0xFF, 0xBB, 0x03, 0xD7, 0xFF, 0xBB, 0x03, 0xD9, + 0xFF, 0xBB, 0x03, 0xDA, 0xFF, 0xBB, 0x03, 0xDB, 0xFF, 0xBB, 0x03, 0xDC, + 0xFF, 0xBB, 0x03, 0xDD, 0xFF, 0xBB, 0x03, 0xDE, 0xFF, 0xBB, 0x03, 0xE3, + 0xFF, 0xBB, 0x03, 0xE4, 0xFF, 0xBB, 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xE6, + 0xFF, 0xBB, 0x03, 0xE7, 0xFF, 0xBB, 0x03, 0xE8, 0xFF, 0xBB, 0x03, 0xE9, + 0xFF, 0xBB, 0x03, 0xEA, 0xFF, 0xBB, 0x03, 0xEB, 0xFF, 0xBB, 0x03, 0xEC, + 0xFF, 0xBB, 0x03, 0xED, 0xFF, 0xBB, 0x03, 0xEE, 0xFF, 0xBB, 0x03, 0xEF, + 0xFF, 0xBB, 0x03, 0xF0, 0xFF, 0xBB, 0x03, 0xF1, 0xFF, 0xBB, 0x03, 0xF2, + 0xFF, 0xBB, 0x03, 0xF3, 0xFF, 0xBB, 0x03, 0xF4, 0xFF, 0xBB, 0x03, 0xF5, + 0xFF, 0xBB, 0x03, 0xFA, 0xFF, 0xBB, 0x03, 0xFB, 0xFF, 0xBB, 0x04, 0x0F, + 0xFF, 0x69, 0x04, 0x29, 0xFF, 0x80, 0x04, 0x37, 0xFF, 0x80, 0x04, 0x3A, + 0xFF, 0x8C, 0x04, 0x3F, 0xFF, 0x8C, 0x04, 0x42, 0xFF, 0x8C, 0x04, 0x51, + 0xFF, 0x80, 0x04, 0x52, 0xFF, 0x8C, 0x04, 0xE2, 0xFF, 0xBB, 0x05, 0x1A, + 0xFF, 0xBB, 0x06, 0x16, 0xFF, 0xAF, 0x06, 0x17, 0xFF, 0xAF, 0x06, 0x18, + 0xFF, 0xAF, 0x06, 0x19, 0xFF, 0xAF, 0x08, 0x31, 0xFF, 0x8C, 0x08, 0x32, + 0xFF, 0x8C, 0x08, 0x3C, 0xFF, 0x80, 0x08, 0x3D, 0xFF, 0xAF, 0x08, 0x3E, + 0xFF, 0xAF, 0x08, 0x3F, 0xFF, 0xAF, 0x08, 0x42, 0xFF, 0x69, 0x08, 0x43, + 0xFF, 0x69, 0x08, 0x44, 0xFF, 0x69, 0x08, 0x8B, 0xFF, 0xBB, 0x08, 0x8C, + 0xFF, 0xBB, 0x08, 0x8D, 0xFF, 0xBB, 0x08, 0x8E, 0xFF, 0xBB, 0x08, 0x91, + 0xFF, 0xBB, 0x08, 0x92, 0xFF, 0xBB, 0x08, 0x93, 0xFF, 0xBB, 0x09, 0x27, + 0xFF, 0x8C, 0x09, 0x83, 0xFF, 0x8C, 0x09, 0x8F, 0xFF, 0x80, 0x09, 0x93, + 0xFF, 0x8C, 0x09, 0x94, 0xFF, 0x69, 0x09, 0x95, 0xFF, 0x69, 0x09, 0xB2, + 0xFF, 0xBB, 0x09, 0xB6, 0xFF, 0xBB, 0x09, 0xB7, 0xFF, 0xBB, 0x09, 0xCF, + 0xFF, 0xBB, 0x09, 0xEB, 0xFF, 0x80, 0x09, 0xEC, 0xFF, 0x80, 0x09, 0xED, + 0xFF, 0x80, 0x09, 0xEE, 0xFF, 0x80, 0x00, 0x92, 0x02, 0x1B, 0x00, 0x06, + 0x02, 0xFE, 0x00, 0x06, 0x02, 0xFF, 0x00, 0x06, 0x03, 0x02, 0x00, 0x06, + 0x03, 0x03, 0x00, 0x06, 0x03, 0x04, 0x00, 0x06, 0x03, 0x05, 0x00, 0x06, + 0x03, 0x06, 0x00, 0x06, 0x03, 0x07, 0x00, 0x06, 0x03, 0x08, 0x00, 0x06, + 0x03, 0x09, 0x00, 0x06, 0x03, 0x0B, 0x00, 0x06, 0x03, 0x0C, 0x00, 0x06, + 0x03, 0x0D, 0x00, 0x06, 0x03, 0x0E, 0x00, 0x06, 0x03, 0x0F, 0x00, 0x06, + 0x03, 0x10, 0x00, 0x06, 0x03, 0x11, 0x00, 0x06, 0x03, 0x12, 0x00, 0x06, + 0x03, 0x13, 0x00, 0x06, 0x03, 0x14, 0x00, 0x06, 0x03, 0x4B, 0x00, 0x06, + 0x03, 0x4C, 0x00, 0x06, 0x03, 0x4E, 0x00, 0x06, 0x03, 0x4F, 0x00, 0x06, + 0x03, 0x50, 0x00, 0x06, 0x03, 0x53, 0x00, 0x06, 0x03, 0x54, 0x00, 0x06, + 0x03, 0x55, 0x00, 0x06, 0x03, 0x56, 0x00, 0x06, 0x03, 0x5A, 0x00, 0x06, + 0x03, 0x5B, 0x00, 0x06, 0x03, 0x5C, 0x00, 0x06, 0x03, 0x5D, 0x00, 0x06, + 0x03, 0x5E, 0x00, 0x06, 0x03, 0x5F, 0x00, 0x06, 0x03, 0x60, 0x00, 0x06, + 0x03, 0x61, 0x00, 0x06, 0x03, 0x62, 0x00, 0x06, 0x03, 0x63, 0x00, 0x06, + 0x03, 0x64, 0x00, 0x06, 0x03, 0xB2, 0x00, 0x06, 0x04, 0x6E, 0x00, 0x06, + 0x04, 0x80, 0x00, 0x06, 0x04, 0x81, 0x00, 0x06, 0x04, 0x82, 0x00, 0x06, + 0x04, 0x83, 0x00, 0x06, 0x04, 0x84, 0x00, 0x06, 0x04, 0x85, 0x00, 0x06, + 0x04, 0x86, 0x00, 0x06, 0x04, 0x87, 0x00, 0x06, 0x04, 0x88, 0x00, 0x06, + 0x04, 0x89, 0x00, 0x06, 0x04, 0x8A, 0x00, 0x06, 0x04, 0x8B, 0x00, 0x06, + 0x04, 0x8C, 0x00, 0x06, 0x04, 0x8D, 0x00, 0x06, 0x04, 0x8E, 0x00, 0x06, + 0x04, 0x8F, 0x00, 0x06, 0x04, 0x90, 0x00, 0x06, 0x04, 0x91, 0x00, 0x06, + 0x04, 0x92, 0x00, 0x06, 0x04, 0x93, 0x00, 0x06, 0x04, 0x94, 0x00, 0x06, + 0x04, 0x95, 0x00, 0x06, 0x04, 0x96, 0x00, 0x06, 0x04, 0x97, 0x00, 0x06, + 0x04, 0xAE, 0x00, 0x06, 0x04, 0xAF, 0x00, 0x06, 0x04, 0xB0, 0x00, 0x06, + 0x04, 0xB1, 0x00, 0x06, 0x04, 0xB5, 0x00, 0x06, 0x04, 0xB6, 0x00, 0x06, + 0x04, 0xB7, 0x00, 0x06, 0x04, 0xB8, 0x00, 0x06, 0x04, 0xB9, 0x00, 0x06, + 0x04, 0xBA, 0x00, 0x06, 0x04, 0xBB, 0x00, 0x06, 0x04, 0xBC, 0x00, 0x06, + 0x04, 0xBD, 0x00, 0x06, 0x04, 0xBE, 0x00, 0x06, 0x04, 0xBF, 0x00, 0x06, + 0x04, 0xC0, 0x00, 0x06, 0x04, 0xC1, 0x00, 0x06, 0x04, 0xC2, 0x00, 0x06, + 0x04, 0xC3, 0x00, 0x06, 0x04, 0xC4, 0x00, 0x06, 0x04, 0xC5, 0x00, 0x06, + 0x04, 0xC6, 0x00, 0x06, 0x04, 0xE4, 0x00, 0x06, 0x04, 0xE5, 0x00, 0x06, + 0x04, 0xE6, 0x00, 0x06, 0x04, 0xEC, 0x00, 0x06, 0x04, 0xED, 0x00, 0x06, + 0x04, 0xEE, 0x00, 0x06, 0x04, 0xEF, 0x00, 0x06, 0x04, 0xF0, 0x00, 0x06, + 0x04, 0xF1, 0x00, 0x06, 0x04, 0xF6, 0x00, 0x06, 0x04, 0xF7, 0x00, 0x06, + 0x04, 0xF8, 0x00, 0x06, 0x04, 0xF9, 0x00, 0x06, 0x04, 0xFA, 0x00, 0x06, + 0x04, 0xFB, 0x00, 0x06, 0x04, 0xFC, 0x00, 0x06, 0x04, 0xFD, 0x00, 0x06, + 0x05, 0x02, 0x00, 0x06, 0x05, 0x07, 0x00, 0x06, 0x05, 0x08, 0x00, 0x06, + 0x05, 0x09, 0x00, 0x06, 0x05, 0x0F, 0x00, 0x06, 0x05, 0x11, 0x00, 0x06, + 0x05, 0x13, 0x00, 0x06, 0x05, 0x14, 0x00, 0x06, 0x05, 0xBB, 0x00, 0x06, + 0x07, 0xF2, 0x00, 0x06, 0x07, 0xF3, 0x00, 0x06, 0x08, 0x6B, 0x00, 0x06, + 0x08, 0x6C, 0x00, 0x06, 0x08, 0x6D, 0x00, 0x06, 0x08, 0x6E, 0x00, 0x06, + 0x08, 0x76, 0x00, 0x06, 0x08, 0x77, 0x00, 0x06, 0x08, 0x78, 0x00, 0x06, + 0x08, 0x79, 0x00, 0x06, 0x08, 0xBC, 0x00, 0x06, 0x08, 0xC0, 0x00, 0x06, + 0x08, 0xC3, 0x00, 0x06, 0x08, 0xC4, 0x00, 0x06, 0x08, 0xC7, 0x00, 0x06, + 0x08, 0xC9, 0x00, 0x06, 0x09, 0x08, 0x00, 0x06, 0x09, 0x09, 0x00, 0x06, + 0x09, 0x50, 0x00, 0x06, 0x09, 0x6E, 0x00, 0x06, 0x09, 0xA4, 0x00, 0x06, + 0x09, 0xA5, 0x00, 0x06, 0x09, 0xA7, 0x00, 0x06, 0x09, 0xA8, 0x00, 0x06, + 0x09, 0xA9, 0x00, 0x06, 0x09, 0xAB, 0x00, 0x06, 0x09, 0xBF, 0x00, 0x06, + 0x09, 0xC0, 0x00, 0x06, 0x09, 0xC5, 0x00, 0x06, 0x09, 0xD3, 0x00, 0x06, + 0x09, 0xD4, 0x00, 0x06, 0x00, 0xA7, 0x02, 0x1B, 0x00, 0x19, 0x02, 0xB1, + 0x00, 0x3B, 0x02, 0xB2, 0x00, 0x3B, 0x02, 0xB3, 0x00, 0x3B, 0x02, 0xB7, + 0x00, 0x3B, 0x02, 0xB8, 0x00, 0x3B, 0x02, 0xBA, 0x00, 0x3B, 0x02, 0xBB, + 0x00, 0x3B, 0x02, 0xBC, 0x00, 0x3B, 0x02, 0xBF, 0x00, 0x3B, 0x02, 0xC0, + 0x00, 0x3B, 0x02, 0xC1, 0x00, 0x3B, 0x02, 0xC4, 0x00, 0x3B, 0x02, 0xC5, + 0x00, 0x3B, 0x02, 0xC6, 0x00, 0x3B, 0x02, 0xCB, 0x00, 0x3B, 0x02, 0xCD, + 0x00, 0x3B, 0x02, 0xFE, 0x00, 0x19, 0x02, 0xFF, 0x00, 0x19, 0x03, 0x02, + 0x00, 0x19, 0x03, 0x03, 0x00, 0x19, 0x03, 0x04, 0x00, 0x19, 0x03, 0x05, + 0x00, 0x19, 0x03, 0x06, 0x00, 0x19, 0x03, 0x07, 0x00, 0x19, 0x03, 0x08, + 0x00, 0x19, 0x03, 0x09, 0x00, 0x19, 0x03, 0x0B, 0x00, 0x19, 0x03, 0x0C, + 0x00, 0x19, 0x03, 0x0D, 0x00, 0x19, 0x03, 0x0E, 0x00, 0x19, 0x03, 0x0F, + 0x00, 0x19, 0x03, 0x10, 0x00, 0x19, 0x03, 0x11, 0x00, 0x19, 0x03, 0x12, + 0x00, 0x19, 0x03, 0x13, 0x00, 0x19, 0x03, 0x14, 0x00, 0x19, 0x03, 0x4B, + 0x00, 0x19, 0x03, 0x4C, 0x00, 0x19, 0x03, 0x4E, 0x00, 0x19, 0x03, 0x4F, + 0x00, 0x19, 0x03, 0x50, 0x00, 0x19, 0x03, 0x53, 0x00, 0x19, 0x03, 0x54, + 0x00, 0x19, 0x03, 0x55, 0x00, 0x19, 0x03, 0x56, 0x00, 0x19, 0x03, 0x5A, + 0x00, 0x19, 0x03, 0x5B, 0x00, 0x19, 0x03, 0x5C, 0x00, 0x19, 0x03, 0x5D, + 0x00, 0x19, 0x03, 0x5E, 0x00, 0x19, 0x03, 0x5F, 0x00, 0x19, 0x03, 0x60, + 0x00, 0x19, 0x03, 0x61, 0x00, 0x19, 0x03, 0x62, 0x00, 0x19, 0x03, 0x63, + 0x00, 0x19, 0x03, 0x64, 0x00, 0x19, 0x03, 0xB2, 0x00, 0x19, 0x04, 0x6E, + 0x00, 0x19, 0x04, 0x80, 0x00, 0x19, 0x04, 0x81, 0x00, 0x19, 0x04, 0x82, + 0x00, 0x19, 0x04, 0x83, 0x00, 0x19, 0x04, 0x84, 0x00, 0x19, 0x04, 0x85, + 0x00, 0x19, 0x04, 0x86, 0x00, 0x19, 0x04, 0x87, 0x00, 0x19, 0x04, 0x88, + 0x00, 0x19, 0x04, 0x89, 0x00, 0x19, 0x04, 0x8A, 0x00, 0x19, 0x04, 0x8B, + 0x00, 0x19, 0x04, 0x8C, 0x00, 0x19, 0x04, 0x8D, 0x00, 0x19, 0x04, 0x8E, + 0x00, 0x19, 0x04, 0x8F, 0x00, 0x19, 0x04, 0x90, 0x00, 0x19, 0x04, 0x91, + 0x00, 0x19, 0x04, 0x92, 0x00, 0x19, 0x04, 0x93, 0x00, 0x19, 0x04, 0x94, + 0x00, 0x19, 0x04, 0x95, 0x00, 0x19, 0x04, 0x96, 0x00, 0x19, 0x04, 0x97, + 0x00, 0x19, 0x04, 0xAE, 0x00, 0x19, 0x04, 0xAF, 0x00, 0x19, 0x04, 0xB0, + 0x00, 0x19, 0x04, 0xB1, 0x00, 0x19, 0x04, 0xB5, 0x00, 0x19, 0x04, 0xB6, + 0x00, 0x19, 0x04, 0xB7, 0x00, 0x19, 0x04, 0xB8, 0x00, 0x19, 0x04, 0xB9, + 0x00, 0x19, 0x04, 0xBA, 0x00, 0x19, 0x04, 0xBB, 0x00, 0x19, 0x04, 0xBC, + 0x00, 0x19, 0x04, 0xBD, 0x00, 0x19, 0x04, 0xBE, 0x00, 0x19, 0x04, 0xBF, + 0x00, 0x19, 0x04, 0xC0, 0x00, 0x19, 0x04, 0xC1, 0x00, 0x19, 0x04, 0xC2, + 0x00, 0x19, 0x04, 0xC3, 0x00, 0x19, 0x04, 0xC4, 0x00, 0x19, 0x04, 0xC5, + 0x00, 0x19, 0x04, 0xC6, 0x00, 0x19, 0x04, 0xE4, 0x00, 0x19, 0x04, 0xE5, + 0x00, 0x19, 0x04, 0xE6, 0x00, 0x19, 0x04, 0xEC, 0x00, 0x19, 0x04, 0xED, + 0x00, 0x19, 0x04, 0xEE, 0x00, 0x19, 0x04, 0xEF, 0x00, 0x19, 0x04, 0xF0, + 0x00, 0x19, 0x04, 0xF1, 0x00, 0x19, 0x04, 0xF6, 0x00, 0x19, 0x04, 0xF7, + 0x00, 0x19, 0x04, 0xF8, 0x00, 0x19, 0x04, 0xF9, 0x00, 0x19, 0x04, 0xFA, + 0x00, 0x19, 0x04, 0xFB, 0x00, 0x19, 0x04, 0xFC, 0x00, 0x19, 0x04, 0xFD, + 0x00, 0x19, 0x05, 0x02, 0x00, 0x19, 0x05, 0x07, 0x00, 0x19, 0x05, 0x08, + 0x00, 0x19, 0x05, 0x09, 0x00, 0x19, 0x05, 0x0B, 0x00, 0x3B, 0x05, 0x0F, + 0x00, 0x19, 0x05, 0x11, 0x00, 0x19, 0x05, 0x13, 0x00, 0x19, 0x05, 0x14, + 0x00, 0x19, 0x05, 0xBB, 0x00, 0x19, 0x07, 0xF2, 0x00, 0x19, 0x07, 0xF3, + 0x00, 0x19, 0x08, 0x60, 0x00, 0x3B, 0x08, 0x63, 0x00, 0x3B, 0x08, 0x64, + 0x00, 0x3B, 0x08, 0x6B, 0x00, 0x19, 0x08, 0x6C, 0x00, 0x19, 0x08, 0x6D, + 0x00, 0x19, 0x08, 0x6E, 0x00, 0x19, 0x08, 0x76, 0x00, 0x19, 0x08, 0x77, + 0x00, 0x19, 0x08, 0x78, 0x00, 0x19, 0x08, 0x79, 0x00, 0x19, 0x08, 0x9C, + 0x00, 0x3B, 0x08, 0xBC, 0x00, 0x19, 0x08, 0xC0, 0x00, 0x19, 0x08, 0xC3, + 0x00, 0x19, 0x08, 0xC4, 0x00, 0x19, 0x08, 0xC7, 0x00, 0x19, 0x08, 0xC9, + 0x00, 0x19, 0x09, 0x08, 0x00, 0x19, 0x09, 0x09, 0x00, 0x19, 0x09, 0x50, + 0x00, 0x19, 0x09, 0x6E, 0x00, 0x19, 0x09, 0xA4, 0x00, 0x19, 0x09, 0xA5, + 0x00, 0x19, 0x09, 0xA7, 0x00, 0x19, 0x09, 0xA8, 0x00, 0x19, 0x09, 0xA9, + 0x00, 0x19, 0x09, 0xAB, 0x00, 0x19, 0x09, 0xBF, 0x00, 0x19, 0x09, 0xC0, + 0x00, 0x19, 0x09, 0xC5, 0x00, 0x19, 0x09, 0xD3, 0x00, 0x19, 0x09, 0xD4, + 0x00, 0x19, 0x00, 0x96, 0x00, 0x02, 0xFF, 0xAF, 0x00, 0x03, 0xFF, 0xAF, + 0x00, 0x04, 0xFF, 0xAF, 0x00, 0x05, 0xFF, 0xAF, 0x00, 0x06, 0xFF, 0xAF, + 0x00, 0x07, 0xFF, 0xAF, 0x00, 0x08, 0xFF, 0xAF, 0x00, 0x09, 0xFF, 0xAF, + 0x00, 0x0A, 0xFF, 0xAF, 0x00, 0x0B, 0xFF, 0xAF, 0x00, 0x0C, 0xFF, 0xAF, + 0x00, 0x0D, 0xFF, 0xAF, 0x00, 0x0E, 0xFF, 0xAF, 0x00, 0x0F, 0xFF, 0xAF, + 0x00, 0x10, 0xFF, 0xAF, 0x00, 0x11, 0xFF, 0xAF, 0x00, 0x12, 0xFF, 0xAF, + 0x00, 0x13, 0xFF, 0xAF, 0x00, 0x14, 0xFF, 0xAF, 0x00, 0x15, 0xFF, 0xAF, + 0x00, 0x16, 0xFF, 0xAF, 0x00, 0x17, 0xFF, 0xAF, 0x00, 0x18, 0xFF, 0xAF, + 0x00, 0x19, 0xFF, 0xAF, 0x00, 0x1A, 0xFF, 0xAF, 0x00, 0x1B, 0xFF, 0xAF, + 0x00, 0x1C, 0xFF, 0xAF, 0x00, 0x1D, 0xFF, 0xAF, 0x00, 0x1E, 0xFF, 0xAF, + 0x00, 0x1F, 0xFF, 0xAF, 0x00, 0x20, 0xFF, 0xAF, 0x00, 0x21, 0xFF, 0xAF, + 0x00, 0x22, 0xFF, 0xAF, 0x00, 0x23, 0xFF, 0xAF, 0x00, 0x24, 0xFF, 0xAF, + 0x00, 0x25, 0xFF, 0xAF, 0x00, 0x26, 0xFF, 0xAF, 0x00, 0x27, 0xFF, 0xAF, + 0x00, 0x28, 0xFF, 0xAF, 0x00, 0x29, 0xFF, 0xAF, 0x00, 0x2A, 0xFF, 0xAF, + 0x00, 0x2B, 0xFF, 0xAF, 0x00, 0x2C, 0xFF, 0xAF, 0x00, 0x2D, 0xFF, 0xAF, + 0x00, 0x2E, 0xFF, 0xAF, 0x00, 0x2F, 0xFF, 0xAF, 0x00, 0x30, 0xFF, 0xAF, + 0x00, 0x31, 0xFF, 0xAF, 0x00, 0x32, 0xFF, 0xAF, 0x00, 0x33, 0xFF, 0xAF, + 0x00, 0x34, 0xFF, 0xAF, 0x00, 0x35, 0xFF, 0xAF, 0x00, 0x36, 0xFF, 0xAF, + 0x00, 0x37, 0xFF, 0xAF, 0x00, 0x38, 0xFF, 0xAF, 0x00, 0x39, 0xFF, 0xAF, + 0x00, 0x3A, 0xFF, 0xAF, 0x00, 0x3B, 0xFF, 0xAF, 0x00, 0x3C, 0xFF, 0xAF, + 0x00, 0x3D, 0xFF, 0xAF, 0x00, 0x3E, 0xFF, 0xAF, 0x00, 0x3F, 0xFF, 0xAF, + 0x00, 0x40, 0xFF, 0xAF, 0x01, 0x0A, 0xFF, 0xAF, 0x01, 0x0B, 0xFF, 0xAF, + 0x01, 0x0C, 0xFF, 0xAF, 0x01, 0x0D, 0xFF, 0xAF, 0x01, 0x0E, 0xFF, 0xAF, + 0x01, 0x15, 0xFF, 0x8C, 0x01, 0x9B, 0xFF, 0x8C, 0x01, 0x9C, 0xFF, 0x8C, + 0x01, 0x9D, 0xFF, 0x8C, 0x01, 0x9E, 0xFF, 0x8C, 0x01, 0x9F, 0xFF, 0x8C, + 0x01, 0xA0, 0xFF, 0x8C, 0x01, 0xA1, 0xFF, 0x8C, 0x01, 0xA2, 0xFF, 0x8C, + 0x01, 0xA3, 0xFF, 0x8C, 0x01, 0xA5, 0xFF, 0x8C, 0x01, 0xA6, 0xFF, 0x8C, + 0x01, 0xA7, 0xFF, 0x8C, 0x01, 0xC8, 0xFF, 0x98, 0x01, 0xC9, 0xFF, 0x98, + 0x01, 0xCA, 0xFF, 0x98, 0x01, 0xF0, 0xFF, 0xAF, 0x01, 0xF1, 0xFF, 0xAF, + 0x01, 0xF2, 0xFF, 0xAF, 0x01, 0xF3, 0xFF, 0xAF, 0x01, 0xF4, 0xFF, 0xAF, + 0x01, 0xF5, 0xFF, 0xAF, 0x01, 0xF6, 0xFF, 0xAF, 0x01, 0xF7, 0xFF, 0xAF, + 0x01, 0xF8, 0xFF, 0xAF, 0x01, 0xF9, 0xFF, 0xAF, 0x01, 0xFA, 0xFF, 0xAF, + 0x03, 0xD3, 0xFF, 0xAF, 0x03, 0xF6, 0xFF, 0xAF, 0x04, 0x09, 0xFF, 0xAF, + 0x04, 0x0F, 0xFF, 0x8C, 0x04, 0x29, 0xFF, 0x98, 0x04, 0x37, 0xFF, 0x98, + 0x04, 0x3A, 0xFF, 0x8C, 0x04, 0x3F, 0xFF, 0x8C, 0x04, 0x42, 0xFF, 0x8C, + 0x04, 0x51, 0xFF, 0x98, 0x04, 0x52, 0xFF, 0x8C, 0x05, 0xB0, 0xFF, 0x98, + 0x05, 0xC8, 0xFF, 0x8C, 0x05, 0xCC, 0xFF, 0x8C, 0x05, 0xCE, 0xFF, 0x00, + 0x05, 0xCF, 0xFF, 0x00, 0x05, 0xDB, 0xFF, 0x2F, 0x05, 0xDC, 0xFF, 0x2F, + 0x05, 0xDD, 0xFF, 0x2F, 0x07, 0x33, 0xFF, 0xAF, 0x07, 0x37, 0xFF, 0xAF, + 0x07, 0x3A, 0xFF, 0xAF, 0x07, 0x55, 0xFF, 0x8C, 0x07, 0xF8, 0xFF, 0x2F, + 0x07, 0xFB, 0xFF, 0x8C, 0x07, 0xFD, 0xFF, 0x8C, 0x08, 0x01, 0xFF, 0x00, + 0x08, 0x02, 0xFF, 0x00, 0x08, 0x03, 0xFF, 0xAF, 0x08, 0x04, 0xFF, 0xAF, + 0x08, 0x05, 0xFF, 0xAF, 0x08, 0x06, 0xFF, 0xAF, 0x08, 0x07, 0xFF, 0xAF, + 0x08, 0x08, 0xFF, 0xAF, 0x08, 0x31, 0xFF, 0x8C, 0x08, 0x32, 0xFF, 0x8C, + 0x08, 0x3C, 0xFF, 0x98, 0x08, 0x45, 0xFF, 0xAF, 0x08, 0x46, 0xFF, 0xAF, + 0x08, 0xCB, 0xFF, 0x2F, 0x08, 0xCC, 0xFF, 0x2F, 0x08, 0xCF, 0xFF, 0x2F, + 0x09, 0x0E, 0xFF, 0x00, 0x09, 0x0F, 0xFF, 0x00, 0x09, 0x27, 0xFF, 0x8C, + 0x09, 0x6D, 0xFF, 0xAF, 0x09, 0x83, 0xFF, 0x8C, 0x09, 0x89, 0xFF, 0xAF, + 0x09, 0x8F, 0xFF, 0x98, 0x09, 0x93, 0xFF, 0x8C, 0x09, 0xAC, 0xFF, 0xAF, + 0x09, 0xEB, 0xFF, 0x98, 0x09, 0xEC, 0xFF, 0x98, 0x09, 0xED, 0xFF, 0x98, + 0x09, 0xEE, 0xFF, 0x98, 0x00, 0xE6, 0x02, 0x0B, 0xFF, 0xA5, 0x02, 0x13, + 0xFF, 0x4F, 0x02, 0x1A, 0xFF, 0x79, 0x02, 0x23, 0xFF, 0x42, 0x02, 0x24, + 0xFF, 0x42, 0x02, 0x25, 0xFF, 0x42, 0x02, 0x26, 0xFF, 0x42, 0x02, 0x27, + 0xFF, 0x42, 0x02, 0x28, 0xFF, 0x42, 0x02, 0x29, 0xFF, 0x42, 0x02, 0x2A, + 0xFF, 0x42, 0x02, 0x2B, 0xFF, 0x42, 0x02, 0x2C, 0xFF, 0x42, 0x02, 0x2D, + 0xFF, 0x42, 0x02, 0x2E, 0xFF, 0x42, 0x02, 0x2F, 0xFF, 0x42, 0x02, 0x30, + 0xFF, 0x42, 0x02, 0x31, 0xFF, 0x42, 0x02, 0x32, 0xFF, 0x42, 0x02, 0x33, + 0xFF, 0x42, 0x02, 0x34, 0xFF, 0x42, 0x02, 0x35, 0xFF, 0x42, 0x02, 0x36, + 0xFF, 0x42, 0x02, 0x37, 0xFF, 0x42, 0x02, 0x38, 0xFF, 0x42, 0x02, 0x39, + 0xFF, 0x42, 0x02, 0x3A, 0xFF, 0x42, 0x02, 0x3B, 0xFF, 0x42, 0x02, 0x3C, + 0xFF, 0x42, 0x02, 0x3D, 0xFF, 0x42, 0x02, 0x3E, 0xFF, 0x42, 0x02, 0x3F, + 0xFF, 0x42, 0x02, 0x40, 0xFF, 0x42, 0x02, 0x41, 0xFF, 0x42, 0x02, 0x4A, + 0xFF, 0x42, 0x02, 0x4B, 0xFF, 0x42, 0x02, 0x4C, 0xFF, 0x42, 0x02, 0x4D, + 0xFF, 0x42, 0x02, 0x4E, 0xFF, 0x42, 0x02, 0x4F, 0xFF, 0x42, 0x02, 0x50, + 0xFF, 0x42, 0x02, 0x51, 0xFF, 0x42, 0x02, 0x52, 0xFF, 0x42, 0x02, 0x53, + 0xFF, 0x42, 0x02, 0x54, 0xFF, 0x42, 0x02, 0x55, 0xFF, 0x42, 0x02, 0x56, + 0xFF, 0x42, 0x02, 0x57, 0xFF, 0x42, 0x02, 0x58, 0xFF, 0x42, 0x02, 0x59, + 0xFF, 0x42, 0x02, 0x5A, 0xFF, 0x42, 0x02, 0x5B, 0xFF, 0x42, 0x02, 0x5C, + 0xFF, 0x42, 0x02, 0x5D, 0xFF, 0x42, 0x02, 0x5E, 0xFF, 0x42, 0x02, 0x5F, + 0xFF, 0x42, 0x02, 0x60, 0xFF, 0x42, 0x02, 0x61, 0xFF, 0x42, 0x02, 0x62, + 0xFF, 0x42, 0x02, 0x63, 0xFF, 0x42, 0x02, 0x64, 0xFF, 0x42, 0x02, 0x65, + 0xFF, 0x42, 0x02, 0x66, 0xFF, 0x42, 0x02, 0x67, 0xFF, 0x42, 0x02, 0x68, + 0xFF, 0x42, 0x02, 0x69, 0xFF, 0x42, 0x02, 0x6A, 0xFF, 0x42, 0x02, 0x6B, + 0xFF, 0x42, 0x02, 0x6C, 0xFF, 0x42, 0x02, 0x6D, 0xFF, 0x42, 0x02, 0x6E, + 0xFF, 0x42, 0x02, 0x6F, 0xFF, 0x42, 0x02, 0x70, 0xFF, 0x42, 0x02, 0x71, + 0xFF, 0x42, 0x02, 0x72, 0xFF, 0x42, 0x02, 0x73, 0xFF, 0x42, 0x02, 0x74, + 0xFF, 0x42, 0x02, 0x75, 0xFF, 0x42, 0x02, 0x76, 0xFF, 0x42, 0x02, 0x77, + 0xFF, 0x42, 0x02, 0x78, 0xFF, 0x42, 0x02, 0x79, 0xFF, 0x42, 0x02, 0x7A, + 0xFF, 0x42, 0x02, 0x7B, 0xFF, 0x42, 0x02, 0x7C, 0xFF, 0x42, 0x02, 0x7D, + 0xFF, 0x42, 0x02, 0x7E, 0xFF, 0x42, 0x02, 0x7F, 0xFF, 0x42, 0x02, 0x80, + 0xFF, 0x42, 0x02, 0x81, 0xFF, 0x42, 0x02, 0x82, 0xFF, 0x42, 0x02, 0x83, + 0xFF, 0x42, 0x02, 0x84, 0xFF, 0x42, 0x02, 0x85, 0xFF, 0x42, 0x02, 0x92, + 0xFF, 0x42, 0x02, 0x93, 0xFF, 0x42, 0x02, 0x94, 0xFF, 0x42, 0x02, 0x95, + 0xFF, 0x42, 0x02, 0x96, 0xFF, 0x42, 0x02, 0x97, 0xFF, 0x42, 0x02, 0x98, + 0xFF, 0x42, 0x02, 0x99, 0xFF, 0x42, 0x02, 0x9A, 0xFF, 0x42, 0x02, 0x9B, + 0xFF, 0x42, 0x02, 0xBB, 0xFF, 0xBC, 0x03, 0x16, 0xFF, 0x42, 0x03, 0x17, + 0xFF, 0x42, 0x03, 0x18, 0xFF, 0x42, 0x03, 0x19, 0xFF, 0x42, 0x03, 0x1A, + 0xFF, 0x42, 0x03, 0x1B, 0xFF, 0x42, 0x03, 0x1C, 0xFF, 0x42, 0x03, 0x1D, + 0xFF, 0x42, 0x03, 0x1E, 0xFF, 0x42, 0x03, 0x1F, 0xFF, 0x42, 0x03, 0x20, + 0xFF, 0x42, 0x03, 0x21, 0xFF, 0x42, 0x03, 0x22, 0xFF, 0x42, 0x03, 0x23, + 0xFF, 0x42, 0x03, 0x24, 0xFF, 0x42, 0x03, 0x25, 0xFF, 0x42, 0x03, 0x26, + 0xFF, 0x42, 0x03, 0x27, 0xFF, 0x42, 0x03, 0x28, 0xFF, 0x42, 0x03, 0x29, + 0xFF, 0x42, 0x03, 0x2A, 0xFF, 0x42, 0x03, 0x2B, 0xFF, 0x42, 0x03, 0x2C, + 0xFF, 0x42, 0x03, 0x2D, 0xFF, 0x42, 0x03, 0x2E, 0xFF, 0x42, 0x03, 0x2F, + 0xFF, 0x42, 0x03, 0x30, 0xFF, 0x42, 0x03, 0x31, 0xFF, 0x42, 0x03, 0x32, + 0xFF, 0x42, 0x03, 0x33, 0xFF, 0x42, 0x03, 0x34, 0xFF, 0x42, 0x03, 0x35, + 0xFF, 0x42, 0x03, 0x36, 0xFF, 0x42, 0x03, 0x37, 0xFF, 0x42, 0x03, 0x38, + 0xFF, 0x42, 0x03, 0x39, 0xFF, 0x42, 0x03, 0x3A, 0xFF, 0x42, 0x03, 0x3B, + 0xFF, 0x42, 0x03, 0x3C, 0xFF, 0x42, 0x03, 0x3D, 0xFF, 0x42, 0x03, 0x3E, + 0xFF, 0x42, 0x03, 0x3F, 0xFF, 0x42, 0x03, 0x40, 0xFF, 0x42, 0x03, 0x41, + 0xFF, 0x42, 0x03, 0x42, 0xFF, 0x42, 0x03, 0x43, 0xFF, 0x42, 0x03, 0x44, + 0xFF, 0x42, 0x03, 0x45, 0xFF, 0x42, 0x03, 0x46, 0xFF, 0x42, 0x03, 0x47, + 0xFF, 0x42, 0x03, 0x48, 0xFF, 0x42, 0x03, 0x49, 0xFF, 0x42, 0x03, 0x4A, + 0xFF, 0x42, 0x03, 0x51, 0xFF, 0x42, 0x03, 0x52, 0xFF, 0x42, 0x04, 0x53, + 0xFF, 0x42, 0x04, 0x54, 0xFF, 0x42, 0x04, 0x55, 0xFF, 0x42, 0x04, 0x56, + 0xFF, 0x42, 0x04, 0x57, 0xFF, 0x42, 0x04, 0x58, 0xFF, 0x42, 0x04, 0x59, + 0xFF, 0x42, 0x04, 0x5A, 0xFF, 0x42, 0x04, 0x5B, 0xFF, 0x42, 0x04, 0x5C, + 0xFF, 0x42, 0x04, 0x5D, 0xFF, 0x42, 0x04, 0x5E, 0xFF, 0x42, 0x04, 0x5F, + 0xFF, 0x42, 0x04, 0x60, 0xFF, 0x42, 0x04, 0x61, 0xFF, 0x42, 0x04, 0x62, + 0xFF, 0x42, 0x04, 0x63, 0xFF, 0x42, 0x04, 0x64, 0xFF, 0x42, 0x04, 0x65, + 0xFF, 0x42, 0x04, 0x66, 0xFF, 0x42, 0x04, 0x67, 0xFF, 0x42, 0x04, 0x68, + 0xFF, 0x42, 0x04, 0x69, 0xFF, 0x42, 0x04, 0x6A, 0xFF, 0x42, 0x04, 0x6B, + 0xFF, 0x42, 0x04, 0x6C, 0xFF, 0x42, 0x04, 0x6D, 0xFF, 0x42, 0x04, 0xB3, + 0xFF, 0x42, 0x04, 0xC7, 0xFF, 0x42, 0x04, 0xC8, 0xFF, 0x42, 0x04, 0xEB, + 0xFF, 0x42, 0x04, 0xFF, 0xFF, 0x42, 0x05, 0x10, 0xFF, 0x42, 0x05, 0x15, + 0xFF, 0x42, 0x05, 0x16, 0xFF, 0x42, 0x05, 0x1C, 0xFF, 0x42, 0x08, 0x54, + 0xFF, 0x42, 0x08, 0x55, 0xFF, 0x42, 0x08, 0x56, 0xFF, 0x42, 0x08, 0x57, + 0xFF, 0x42, 0x08, 0x58, 0xFF, 0x42, 0x08, 0x59, 0xFF, 0x42, 0x08, 0x5A, + 0xFF, 0x42, 0x08, 0x5C, 0xFF, 0x42, 0x08, 0x6F, 0xFF, 0x42, 0x08, 0x70, + 0xFF, 0x42, 0x08, 0x71, 0xFF, 0x42, 0x08, 0x72, 0xFF, 0x42, 0x08, 0x73, + 0xFF, 0x42, 0x08, 0x74, 0xFF, 0x42, 0x08, 0x75, 0xFF, 0x42, 0x08, 0x96, + 0xFF, 0x42, 0x08, 0x97, 0xFF, 0x42, 0x08, 0x98, 0xFF, 0x42, 0x08, 0x99, + 0xFF, 0x42, 0x08, 0x9A, 0xFF, 0x42, 0x08, 0x9B, 0xFF, 0x42, 0x08, 0xB9, + 0xFF, 0x42, 0x08, 0xBD, 0xFF, 0x42, 0x08, 0xBE, 0xFF, 0x42, 0x09, 0x3E, + 0xFF, 0x42, 0x09, 0x3F, 0xFF, 0x42, 0x09, 0xB4, 0xFF, 0x42, 0x09, 0xBB, + 0xFF, 0x42, 0x09, 0xBC, 0xFF, 0x42, 0x09, 0xC1, 0xFF, 0x42, 0x09, 0xC2, + 0xFF, 0x42, 0x09, 0xC3, 0xFF, 0x42, 0x09, 0xC7, 0xFF, 0x42, 0x09, 0xDB, + 0xFF, 0x42, 0x00, 0xE6, 0x00, 0x49, 0xFF, 0xAF, 0x00, 0x4A, 0xFF, 0xAF, + 0x00, 0x4B, 0xFF, 0xAF, 0x00, 0x4C, 0xFF, 0xAF, 0x00, 0x4D, 0xFF, 0xAF, + 0x00, 0x4E, 0xFF, 0xAF, 0x00, 0x4F, 0xFF, 0xAF, 0x00, 0x50, 0xFF, 0xAF, + 0x00, 0x51, 0xFF, 0xAF, 0x00, 0x52, 0xFF, 0xAF, 0x00, 0x53, 0xFF, 0xAF, + 0x00, 0x8A, 0x00, 0xC5, 0x00, 0x8D, 0xFF, 0xAF, 0x00, 0x8E, 0xFF, 0xAF, + 0x00, 0x8F, 0xFF, 0xAF, 0x00, 0x90, 0xFF, 0xAF, 0x00, 0x91, 0xFF, 0xAF, + 0x00, 0x92, 0xFF, 0xAF, 0x00, 0x93, 0xFF, 0xAF, 0x00, 0x94, 0xFF, 0xAF, + 0x00, 0x95, 0xFF, 0xAF, 0x00, 0x96, 0xFF, 0xAF, 0x00, 0x97, 0xFF, 0xAF, + 0x01, 0x15, 0xFF, 0x8C, 0x01, 0x36, 0x00, 0xC5, 0x01, 0x41, 0xFF, 0xAF, + 0x01, 0x42, 0xFF, 0xAF, 0x01, 0x43, 0xFF, 0xAF, 0x01, 0x44, 0xFF, 0xAF, + 0x01, 0x45, 0xFF, 0xAF, 0x01, 0x46, 0xFF, 0xAF, 0x01, 0x47, 0xFF, 0xAF, + 0x01, 0x48, 0xFF, 0xAF, 0x01, 0x49, 0xFF, 0xAF, 0x01, 0x4A, 0xFF, 0xAF, + 0x01, 0x4B, 0xFF, 0xAF, 0x01, 0x4C, 0xFF, 0xAF, 0x01, 0x4D, 0xFF, 0xAF, + 0x01, 0x4E, 0xFF, 0xAF, 0x01, 0x4F, 0xFF, 0xAF, 0x01, 0x50, 0xFF, 0xAF, + 0x01, 0x51, 0xFF, 0xAF, 0x01, 0x52, 0xFF, 0xAF, 0x01, 0x53, 0xFF, 0xAF, + 0x01, 0x54, 0xFF, 0xAF, 0x01, 0x55, 0xFF, 0xAF, 0x01, 0x56, 0xFF, 0xAF, + 0x01, 0x57, 0xFF, 0xAF, 0x01, 0x58, 0xFF, 0xAF, 0x01, 0x59, 0xFF, 0xAF, + 0x01, 0x5A, 0xFF, 0xAF, 0x01, 0x5B, 0xFF, 0xAF, 0x01, 0x5C, 0xFF, 0xAF, + 0x01, 0x5D, 0xFF, 0xAF, 0x01, 0x5E, 0xFF, 0xAF, 0x01, 0x5F, 0xFF, 0xAF, + 0x01, 0x60, 0xFF, 0xAF, 0x01, 0x61, 0xFF, 0xAF, 0x01, 0x62, 0xFF, 0xAF, + 0x01, 0x63, 0xFF, 0xAF, 0x01, 0x64, 0xFF, 0xAF, 0x01, 0x65, 0xFF, 0xAF, + 0x01, 0x66, 0xFF, 0xAF, 0x01, 0x67, 0xFF, 0xAF, 0x01, 0x68, 0xFF, 0xAF, + 0x01, 0x69, 0xFF, 0xAF, 0x01, 0x6A, 0xFF, 0xAF, 0x01, 0x6B, 0xFF, 0xAF, + 0x01, 0x6C, 0xFF, 0xAF, 0x01, 0x6D, 0xFF, 0xAF, 0x01, 0x6E, 0xFF, 0xAF, + 0x01, 0x6F, 0xFF, 0xAF, 0x01, 0x70, 0xFF, 0xAF, 0x01, 0x71, 0xFF, 0xAF, + 0x01, 0x72, 0xFF, 0xAF, 0x01, 0x73, 0xFF, 0xAF, 0x01, 0x74, 0xFF, 0xAF, + 0x01, 0x75, 0xFF, 0xAF, 0x01, 0x76, 0xFF, 0xAF, 0x01, 0x7E, 0xFF, 0xAF, + 0x01, 0x7F, 0xFF, 0xAF, 0x01, 0x9B, 0xFF, 0x8C, 0x01, 0x9C, 0xFF, 0x8C, + 0x01, 0x9D, 0xFF, 0x8C, 0x01, 0x9E, 0xFF, 0x8C, 0x01, 0x9F, 0xFF, 0x8C, + 0x01, 0xA0, 0xFF, 0x8C, 0x01, 0xA1, 0xFF, 0x8C, 0x01, 0xA2, 0xFF, 0x8C, + 0x01, 0xA3, 0xFF, 0x8C, 0x01, 0xA5, 0xFF, 0x8C, 0x01, 0xA6, 0xFF, 0x8C, + 0x01, 0xA7, 0xFF, 0x8C, 0x01, 0xA8, 0xFF, 0xAF, 0x01, 0xA9, 0xFF, 0xAF, + 0x01, 0xAA, 0xFF, 0xAF, 0x01, 0xAB, 0xFF, 0xAF, 0x01, 0xAC, 0xFF, 0xAF, + 0x01, 0xAD, 0xFF, 0xAF, 0x01, 0xAE, 0xFF, 0xAF, 0x01, 0xAF, 0xFF, 0xAF, + 0x01, 0xB0, 0xFF, 0xAF, 0x01, 0xB1, 0xFF, 0xAF, 0x01, 0xB2, 0xFF, 0xAF, + 0x01, 0xB3, 0xFF, 0xAF, 0x01, 0xB4, 0xFF, 0xAF, 0x01, 0xB5, 0xFF, 0xAF, + 0x01, 0xB6, 0xFF, 0xAF, 0x01, 0xB7, 0xFF, 0xAF, 0x01, 0xB8, 0xFF, 0xAF, + 0x01, 0xB9, 0xFF, 0xAF, 0x01, 0xBA, 0xFF, 0xAF, 0x01, 0xBB, 0xFF, 0xAF, + 0x01, 0xBC, 0xFF, 0xAF, 0x01, 0xBD, 0xFF, 0xAF, 0x01, 0xBE, 0xFF, 0xAF, + 0x01, 0xBF, 0xFF, 0xAF, 0x01, 0xC0, 0xFF, 0xAF, 0x01, 0xC1, 0xFF, 0xAF, + 0x01, 0xC2, 0xFF, 0xAF, 0x01, 0xC3, 0xFF, 0xAF, 0x01, 0xC4, 0xFF, 0xAF, + 0x01, 0xC5, 0xFF, 0xAF, 0x01, 0xC6, 0xFF, 0xAF, 0x01, 0xC7, 0xFF, 0xAF, + 0x01, 0xC8, 0xFF, 0x5E, 0x01, 0xC9, 0xFF, 0x5E, 0x01, 0xCA, 0xFF, 0x5E, + 0x02, 0xC7, 0x00, 0xC5, 0x02, 0xC8, 0x00, 0xC5, 0x02, 0xCF, 0x00, 0xC5, + 0x02, 0xD2, 0x00, 0xC5, 0x02, 0xD3, 0x00, 0xC5, 0x02, 0xD4, 0x00, 0xC5, + 0x02, 0xD5, 0x00, 0xC5, 0x03, 0x0A, 0x00, 0xC5, 0x03, 0xD2, 0xFF, 0x5E, + 0x03, 0xD4, 0xFF, 0x5E, 0x03, 0xD5, 0xFF, 0x5E, 0x03, 0xE3, 0xFF, 0x5E, + 0x03, 0xE4, 0xFF, 0x5E, 0x03, 0xE5, 0xFF, 0x5E, 0x03, 0xE6, 0xFF, 0x5E, + 0x03, 0xE7, 0xFF, 0x5E, 0x03, 0xE8, 0xFF, 0x5E, 0x03, 0xE9, 0xFF, 0x5E, + 0x03, 0xEA, 0xFF, 0x5E, 0x03, 0xEB, 0xFF, 0x5E, 0x03, 0xEC, 0xFF, 0x5E, + 0x03, 0xED, 0xFF, 0x5E, 0x03, 0xEE, 0xFF, 0x5E, 0x03, 0xEF, 0xFF, 0x5E, + 0x03, 0xF0, 0xFF, 0x5E, 0x03, 0xF1, 0xFF, 0x5E, 0x03, 0xF2, 0xFF, 0x5E, + 0x03, 0xF3, 0xFF, 0x5E, 0x03, 0xF4, 0xFF, 0x5E, 0x03, 0xF5, 0xFF, 0x5E, + 0x03, 0xFA, 0xFF, 0x5E, 0x03, 0xFB, 0xFF, 0x5E, 0x04, 0x0A, 0xFF, 0xAF, + 0x04, 0x0E, 0xFF, 0xAF, 0x04, 0x0F, 0xFF, 0x3B, 0x04, 0x29, 0xFF, 0x5E, + 0x04, 0x2D, 0x00, 0x74, 0x04, 0x30, 0xFF, 0xA3, 0x04, 0x34, 0x00, 0x74, + 0x04, 0x35, 0xFF, 0xAF, 0x04, 0x37, 0xFF, 0x5E, 0x04, 0x38, 0xFF, 0xAF, + 0x04, 0x3A, 0xFF, 0x8C, 0x04, 0x3B, 0xFF, 0x23, 0x04, 0x3F, 0xFF, 0x8C, + 0x04, 0x42, 0xFF, 0x98, 0x04, 0x45, 0x00, 0x74, 0x04, 0x47, 0xFF, 0xAF, + 0x04, 0x4C, 0xFF, 0xAF, 0x04, 0x51, 0xFF, 0x5E, 0x04, 0x52, 0xFF, 0x8C, + 0x04, 0x6F, 0xFF, 0x8C, 0x04, 0xE2, 0xFF, 0x5E, 0x04, 0xE3, 0xFF, 0xA3, + 0x05, 0x1A, 0xFF, 0x5E, 0x07, 0xE8, 0xFF, 0xAF, 0x08, 0x0B, 0xFF, 0xAF, + 0x08, 0x13, 0xFF, 0xAF, 0x08, 0x22, 0xFF, 0xAF, 0x08, 0x23, 0xFF, 0xAF, + 0x08, 0x24, 0xFF, 0xAF, 0x08, 0x25, 0xFF, 0xAF, 0x08, 0x26, 0xFF, 0xAF, + 0x08, 0x27, 0xFF, 0xAF, 0x08, 0x28, 0xFF, 0xAF, 0x08, 0x31, 0xFF, 0x8C, + 0x08, 0x32, 0xFF, 0x8C, 0x08, 0x33, 0xFF, 0xAF, 0x08, 0x34, 0xFF, 0xAF, + 0x08, 0x35, 0xFF, 0xAF, 0x08, 0x36, 0xFF, 0xAF, 0x08, 0x37, 0xFF, 0xAF, + 0x08, 0x38, 0xFF, 0xAF, 0x08, 0x39, 0xFF, 0xAF, 0x08, 0x3A, 0xFF, 0xAF, + 0x08, 0x3B, 0xFF, 0xAF, 0x08, 0x3C, 0xFF, 0x5E, 0x08, 0x65, 0x00, 0xC5, + 0x08, 0x8B, 0xFF, 0x5E, 0x08, 0x91, 0xFF, 0x5E, 0x08, 0x92, 0xFF, 0x5E, + 0x08, 0x93, 0xFF, 0x5E, 0x08, 0xAF, 0xFF, 0xAF, 0x08, 0xB3, 0xFF, 0xAF, + 0x08, 0xFE, 0xFF, 0xAF, 0x09, 0x27, 0xFF, 0x8C, 0x09, 0x3B, 0x00, 0xC5, + 0x09, 0x82, 0xFF, 0xAF, 0x09, 0x83, 0xFF, 0x8C, 0x09, 0x8F, 0xFF, 0x5E, + 0x09, 0x90, 0xFF, 0xAF, 0x09, 0x92, 0xFF, 0xAF, 0x09, 0x93, 0xFF, 0x8C, + 0x09, 0x9B, 0xFF, 0xAF, 0x09, 0xB2, 0xFF, 0x5E, 0x09, 0xB6, 0xFF, 0x5E, + 0x09, 0xB7, 0xFF, 0x5E, 0x09, 0xCF, 0xFF, 0x5E, 0x09, 0xEB, 0xFF, 0x5E, + 0x09, 0xEC, 0xFF, 0x5E, 0x09, 0xED, 0xFF, 0x5E, 0x09, 0xEE, 0xFF, 0x5E, + 0x00, 0xE8, 0x02, 0x1B, 0xFF, 0xBB, 0x02, 0xA5, 0xFF, 0x8C, 0x02, 0xFE, + 0xFF, 0xBB, 0x02, 0xFF, 0xFF, 0xBB, 0x03, 0x00, 0xFF, 0x8C, 0x03, 0x01, + 0xFF, 0x8C, 0x03, 0x02, 0xFF, 0xBB, 0x03, 0x03, 0xFF, 0xBB, 0x03, 0x04, + 0xFF, 0xBB, 0x03, 0x05, 0xFF, 0xBB, 0x03, 0x06, 0xFF, 0xBB, 0x03, 0x07, + 0xFF, 0xBB, 0x03, 0x08, 0xFF, 0xBB, 0x03, 0x09, 0xFF, 0xBB, 0x03, 0x0B, + 0xFF, 0xBB, 0x03, 0x0C, 0xFF, 0xBB, 0x03, 0x0D, 0xFF, 0xBB, 0x03, 0x0E, + 0xFF, 0xBB, 0x03, 0x0F, 0xFF, 0xBB, 0x03, 0x10, 0xFF, 0xBB, 0x03, 0x11, + 0xFF, 0xBB, 0x03, 0x12, 0xFF, 0xBB, 0x03, 0x13, 0xFF, 0xBB, 0x03, 0x14, + 0xFF, 0xBB, 0x03, 0x4B, 0xFF, 0xBB, 0x03, 0x4C, 0xFF, 0xBB, 0x03, 0x4E, + 0xFF, 0xBB, 0x03, 0x4F, 0xFF, 0xBB, 0x03, 0x50, 0xFF, 0xBB, 0x03, 0x53, + 0xFF, 0xBB, 0x03, 0x54, 0xFF, 0xBB, 0x03, 0x55, 0xFF, 0xBB, 0x03, 0x56, + 0xFF, 0xBB, 0x03, 0x5A, 0xFF, 0xBB, 0x03, 0x5B, 0xFF, 0xBB, 0x03, 0x5C, + 0xFF, 0xBB, 0x03, 0x5D, 0xFF, 0xBB, 0x03, 0x5E, 0xFF, 0xBB, 0x03, 0x5F, + 0xFF, 0xBB, 0x03, 0x60, 0xFF, 0xBB, 0x03, 0x61, 0xFF, 0xBB, 0x03, 0x62, + 0xFF, 0xBB, 0x03, 0x63, 0xFF, 0xBB, 0x03, 0x64, 0xFF, 0xBB, 0x03, 0x91, + 0xFF, 0x8C, 0x03, 0x92, 0xFF, 0x8C, 0x03, 0x93, 0xFF, 0x8C, 0x03, 0x94, + 0xFF, 0x8C, 0x03, 0x95, 0xFF, 0x8C, 0x03, 0x96, 0xFF, 0x8C, 0x03, 0x97, + 0xFF, 0x8C, 0x03, 0x98, 0xFF, 0x8C, 0x03, 0x99, 0xFF, 0x8C, 0x03, 0x9A, + 0xFF, 0x8C, 0x03, 0x9B, 0xFF, 0x8C, 0x03, 0x9C, 0xFF, 0x8C, 0x03, 0x9D, + 0xFF, 0x8C, 0x03, 0x9E, 0xFF, 0x8C, 0x03, 0x9F, 0xFF, 0x8C, 0x03, 0xA0, + 0xFF, 0x8C, 0x03, 0xA1, 0xFF, 0x8C, 0x03, 0xA2, 0xFF, 0x8C, 0x03, 0xA3, + 0xFF, 0x8C, 0x03, 0xA4, 0xFF, 0x8C, 0x03, 0xA5, 0xFF, 0x8C, 0x03, 0xA6, + 0xFF, 0x8C, 0x03, 0xA7, 0xFF, 0x8C, 0x03, 0xA8, 0xFF, 0x8C, 0x03, 0xA9, + 0xFF, 0x8C, 0x03, 0xAA, 0xFF, 0x8C, 0x03, 0xAB, 0xFF, 0x8C, 0x03, 0xAC, + 0xFF, 0x8C, 0x03, 0xAD, 0xFF, 0x8C, 0x03, 0xAE, 0xFF, 0x8C, 0x03, 0xAF, + 0xFF, 0x8C, 0x03, 0xB0, 0xFF, 0x8C, 0x03, 0xB1, 0xFF, 0x8C, 0x03, 0xB2, + 0xFF, 0xBB, 0x04, 0x6E, 0xFF, 0xBB, 0x04, 0x80, 0xFF, 0xBB, 0x04, 0x81, + 0xFF, 0xBB, 0x04, 0x82, 0xFF, 0xBB, 0x04, 0x83, 0xFF, 0xBB, 0x04, 0x84, + 0xFF, 0xBB, 0x04, 0x85, 0xFF, 0xBB, 0x04, 0x86, 0xFF, 0xBB, 0x04, 0x87, + 0xFF, 0xBB, 0x04, 0x88, 0xFF, 0xBB, 0x04, 0x89, 0xFF, 0xBB, 0x04, 0x8A, + 0xFF, 0xBB, 0x04, 0x8B, 0xFF, 0xBB, 0x04, 0x8C, 0xFF, 0xBB, 0x04, 0x8D, + 0xFF, 0xBB, 0x04, 0x8E, 0xFF, 0xBB, 0x04, 0x8F, 0xFF, 0xBB, 0x04, 0x90, + 0xFF, 0xBB, 0x04, 0x91, 0xFF, 0xBB, 0x04, 0x92, 0xFF, 0xBB, 0x04, 0x93, + 0xFF, 0xBB, 0x04, 0x94, 0xFF, 0xBB, 0x04, 0x95, 0xFF, 0xBB, 0x04, 0x96, + 0xFF, 0xBB, 0x04, 0x97, 0xFF, 0xBB, 0x04, 0xAC, 0xFF, 0xBB, 0x04, 0xAE, + 0xFF, 0xBB, 0x04, 0xAF, 0xFF, 0xBB, 0x04, 0xB0, 0xFF, 0xBB, 0x04, 0xB1, + 0xFF, 0xBB, 0x04, 0xB5, 0xFF, 0xBB, 0x04, 0xB6, 0xFF, 0xBB, 0x04, 0xB7, + 0xFF, 0xBB, 0x04, 0xB8, 0xFF, 0xBB, 0x04, 0xB9, 0xFF, 0xBB, 0x04, 0xBA, + 0xFF, 0xBB, 0x04, 0xBB, 0xFF, 0xBB, 0x04, 0xBC, 0xFF, 0xBB, 0x04, 0xBD, + 0xFF, 0xBB, 0x04, 0xBE, 0xFF, 0xBB, 0x04, 0xBF, 0xFF, 0xBB, 0x04, 0xC0, + 0xFF, 0xBB, 0x04, 0xC1, 0xFF, 0xBB, 0x04, 0xC2, 0xFF, 0xBB, 0x04, 0xC3, + 0xFF, 0xBB, 0x04, 0xC4, 0xFF, 0xBB, 0x04, 0xC5, 0xFF, 0xBB, 0x04, 0xC6, + 0xFF, 0xBB, 0x04, 0xE3, 0xFF, 0xBB, 0x04, 0xE4, 0xFF, 0xBB, 0x04, 0xE5, + 0xFF, 0xBB, 0x04, 0xE6, 0xFF, 0xBB, 0x04, 0xEC, 0xFF, 0xBB, 0x04, 0xED, + 0xFF, 0xBB, 0x04, 0xEE, 0xFF, 0xBB, 0x04, 0xEF, 0xFF, 0xBB, 0x04, 0xF0, + 0xFF, 0xBB, 0x04, 0xF1, 0xFF, 0xBB, 0x04, 0xF6, 0xFF, 0xBB, 0x04, 0xF7, + 0xFF, 0xBB, 0x04, 0xF8, 0xFF, 0xBB, 0x04, 0xF9, 0xFF, 0xBB, 0x04, 0xFA, + 0xFF, 0xBB, 0x04, 0xFB, 0xFF, 0xBB, 0x04, 0xFC, 0xFF, 0xBB, 0x04, 0xFD, + 0xFF, 0xBB, 0x05, 0x02, 0xFF, 0xBB, 0x05, 0x03, 0xFF, 0x8C, 0x05, 0x07, + 0xFF, 0xBB, 0x05, 0x08, 0xFF, 0xBB, 0x05, 0x09, 0xFF, 0xBB, 0x05, 0x0F, + 0xFF, 0xBB, 0x05, 0x11, 0xFF, 0xBB, 0x05, 0x13, 0xFF, 0xBB, 0x05, 0x14, + 0xFF, 0xBB, 0x05, 0x3B, 0xFF, 0xBB, 0x05, 0x40, 0xFF, 0x75, 0x05, 0x43, + 0xFF, 0xBB, 0x05, 0x47, 0xFF, 0xBB, 0x05, 0x4A, 0xFF, 0x75, 0x05, 0x8F, + 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x75, 0x05, 0xBB, 0xFF, 0xBB, 0x05, 0xCE, + 0xFF, 0x0C, 0x05, 0xCF, 0xFF, 0x0C, 0x05, 0xDB, 0xFF, 0x3B, 0x05, 0xDC, + 0xFF, 0x3B, 0x05, 0xDD, 0xFF, 0x3B, 0x05, 0xDF, 0xFF, 0x80, 0x05, 0xE0, + 0xFF, 0x80, 0x05, 0xE1, 0xFF, 0x80, 0x05, 0xE2, 0xFF, 0x80, 0x05, 0xE6, + 0xFF, 0x9E, 0x05, 0xE7, 0xFF, 0xD8, 0x05, 0xE8, 0xFF, 0x9E, 0x05, 0xE9, + 0xFF, 0xD8, 0x05, 0xEA, 0xFF, 0x46, 0x06, 0x05, 0xFF, 0x2F, 0x07, 0xF2, + 0xFF, 0xBB, 0x07, 0xF3, 0xFF, 0xBB, 0x07, 0xF8, 0xFF, 0x3B, 0x07, 0xF9, + 0xFF, 0x80, 0x07, 0xFA, 0xFF, 0x80, 0x08, 0x01, 0xFF, 0x0C, 0x08, 0x02, + 0xFF, 0x0C, 0x08, 0x6B, 0xFF, 0xBB, 0x08, 0x6C, 0xFF, 0xBB, 0x08, 0x6D, + 0xFF, 0xBB, 0x08, 0x6E, 0xFF, 0xBB, 0x08, 0x76, 0xFF, 0xBB, 0x08, 0x77, + 0xFF, 0xBB, 0x08, 0x78, 0xFF, 0xBB, 0x08, 0x79, 0xFF, 0xBB, 0x08, 0x82, + 0xFF, 0x8C, 0x08, 0x83, 0xFF, 0x8C, 0x08, 0x84, 0xFF, 0x8C, 0x08, 0x85, + 0xFF, 0x8C, 0x08, 0x86, 0xFF, 0x8C, 0x08, 0x87, 0xFF, 0x8C, 0x08, 0x88, + 0xFF, 0x8C, 0x08, 0x89, 0xFF, 0x8C, 0x08, 0x8A, 0xFF, 0x8C, 0x08, 0xBC, + 0xFF, 0xBB, 0x08, 0xC0, 0xFF, 0xBB, 0x08, 0xC3, 0xFF, 0xBB, 0x08, 0xC4, + 0xFF, 0xBB, 0x08, 0xC7, 0xFF, 0xBB, 0x08, 0xC9, 0xFF, 0xBB, 0x08, 0xCB, + 0xFF, 0x3B, 0x08, 0xCC, 0xFF, 0x3B, 0x08, 0xCD, 0xFF, 0x80, 0x08, 0xCE, + 0xFF, 0x80, 0x08, 0xCF, 0xFF, 0x3B, 0x08, 0xD3, 0xFF, 0x80, 0x08, 0xD5, + 0xFF, 0x80, 0x09, 0x08, 0xFF, 0xBB, 0x09, 0x09, 0xFF, 0xBB, 0x09, 0x0E, + 0xFF, 0x0C, 0x09, 0x0F, 0xFF, 0x0C, 0x09, 0x50, 0xFF, 0xBB, 0x09, 0x6E, + 0xFF, 0xBB, 0x09, 0xA4, 0xFF, 0xBB, 0x09, 0xA5, 0xFF, 0xBB, 0x09, 0xA7, + 0xFF, 0xBB, 0x09, 0xA8, 0xFF, 0xBB, 0x09, 0xA9, 0xFF, 0xBB, 0x09, 0xAB, + 0xFF, 0xBB, 0x09, 0xBF, 0xFF, 0xBB, 0x09, 0xC0, 0xFF, 0xBB, 0x09, 0xC5, + 0xFF, 0xBB, 0x09, 0xD3, 0xFF, 0xBB, 0x09, 0xD4, 0xFF, 0xBB, 0x0A, 0x15, + 0xFF, 0x80, 0x0B, 0x42, 0xFF, 0x8C, 0x00, 0x02, 0x00, 0xB2, 0x00, 0x02, + 0x00, 0x3C, 0x00, 0x00, 0x00, 0x52, 0x00, 0x52, 0x00, 0x3B, 0x00, 0x54, + 0x00, 0x5C, 0x00, 0x3C, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x45, 0x00, 0x89, + 0x00, 0x8C, 0x00, 0x46, 0x00, 0xA1, 0x00, 0xC6, 0x00, 0x4A, 0x00, 0xC9, + 0x00, 0xCC, 0x00, 0x70, 0x00, 0xD1, 0x00, 0xD3, 0x00, 0x74, 0x00, 0xD6, + 0x00, 0xDA, 0x00, 0x77, 0x00, 0xDC, 0x00, 0xE3, 0x00, 0x7C, 0x00, 0xE6, + 0x00, 0xE8, 0x00, 0x84, 0x00, 0xEA, 0x00, 0xEA, 0x00, 0x87, 0x01, 0x09, + 0x01, 0x09, 0x00, 0x88, 0x01, 0x0F, 0x01, 0x44, 0x00, 0x89, 0x01, 0x46, + 0x01, 0x75, 0x00, 0xBF, 0x01, 0x7E, 0x01, 0x7E, 0x00, 0xEF, 0x01, 0x9B, + 0x01, 0xA7, 0x00, 0xF0, 0x01, 0xCB, 0x01, 0xD4, 0x00, 0xFD, 0x01, 0xD6, + 0x01, 0xEF, 0x01, 0x07, 0x01, 0xFB, 0x02, 0x1A, 0x01, 0x21, 0x02, 0x1C, + 0x02, 0x1E, 0x01, 0x41, 0x02, 0x23, 0x02, 0x56, 0x01, 0x44, 0x02, 0x58, + 0x02, 0x59, 0x01, 0x78, 0x02, 0x5B, 0x02, 0x60, 0x01, 0x7A, 0x02, 0x66, + 0x02, 0x85, 0x01, 0x80, 0x02, 0x87, 0x02, 0x89, 0x01, 0xA0, 0x02, 0x8B, + 0x02, 0x8C, 0x01, 0xA3, 0x02, 0x90, 0x02, 0x91, 0x01, 0xA5, 0x02, 0x9E, + 0x02, 0xA5, 0x01, 0xA7, 0x02, 0xA8, 0x02, 0xCD, 0x01, 0xAF, 0x02, 0xCF, + 0x02, 0xD6, 0x01, 0xD5, 0x02, 0xDE, 0x02, 0xDE, 0x01, 0xDD, 0x02, 0xE0, + 0x02, 0xE3, 0x01, 0xDE, 0x02, 0xE5, 0x02, 0xF3, 0x01, 0xE2, 0x02, 0xF5, + 0x02, 0xFC, 0x01, 0xF1, 0x02, 0xFE, 0x03, 0x00, 0x01, 0xF9, 0x03, 0x02, + 0x03, 0x05, 0x01, 0xFC, 0x03, 0x09, 0x03, 0x0A, 0x02, 0x00, 0x03, 0x0C, + 0x03, 0x14, 0x02, 0x02, 0x03, 0x16, 0x03, 0x19, 0x02, 0x0B, 0x03, 0x1B, + 0x03, 0x48, 0x02, 0x0F, 0x03, 0x4A, 0x03, 0x50, 0x02, 0x3D, 0x03, 0x52, + 0x03, 0x52, 0x02, 0x44, 0x03, 0x54, 0x03, 0x57, 0x02, 0x45, 0x03, 0x59, + 0x03, 0x64, 0x02, 0x49, 0x03, 0x78, 0x03, 0x79, 0x02, 0x55, 0x03, 0x7B, + 0x03, 0x7B, 0x02, 0x57, 0x03, 0x7D, 0x03, 0x93, 0x02, 0x58, 0x03, 0x95, + 0x03, 0xAE, 0x02, 0x6F, 0x03, 0xB0, 0x03, 0xB2, 0x02, 0x89, 0x03, 0xD3, + 0x03, 0xD3, 0x02, 0x8C, 0x03, 0xE6, 0x03, 0xE7, 0x02, 0x8D, 0x03, 0xF6, + 0x03, 0xF6, 0x02, 0x8F, 0x04, 0x08, 0x04, 0x08, 0x02, 0x90, 0x04, 0x0A, + 0x04, 0x0A, 0x02, 0x91, 0x04, 0x0C, 0x04, 0x0F, 0x02, 0x92, 0x04, 0x2B, + 0x04, 0x2C, 0x02, 0x96, 0x04, 0x2E, 0x04, 0x2E, 0x02, 0x98, 0x04, 0x31, + 0x04, 0x32, 0x02, 0x99, 0x04, 0x34, 0x04, 0x38, 0x02, 0x9B, 0x04, 0x3B, + 0x04, 0x3B, 0x02, 0xA0, 0x04, 0x3E, 0x04, 0x40, 0x02, 0xA1, 0x04, 0x42, + 0x04, 0x47, 0x02, 0xA4, 0x04, 0x4B, 0x04, 0x4B, 0x02, 0xAA, 0x04, 0x52, + 0x04, 0x53, 0x02, 0xAB, 0x04, 0x73, 0x04, 0x73, 0x02, 0xAD, 0x04, 0xAB, + 0x04, 0xAB, 0x02, 0xAE, 0x04, 0xAD, 0x04, 0xB1, 0x02, 0xAF, 0x04, 0xB3, + 0x04, 0xC8, 0x02, 0xB4, 0x04, 0xE5, 0x04, 0xE8, 0x02, 0xCA, 0x04, 0xEB, + 0x04, 0xED, 0x02, 0xCE, 0x04, 0xEF, 0x04, 0xEF, 0x02, 0xD1, 0x04, 0xF3, + 0x04, 0xFF, 0x02, 0xD2, 0x05, 0x02, 0x05, 0x12, 0x02, 0xDF, 0x05, 0x14, + 0x05, 0x15, 0x02, 0xF0, 0x05, 0x17, 0x05, 0x18, 0x02, 0xF2, 0x05, 0x1C, + 0x05, 0x1D, 0x02, 0xF4, 0x05, 0x1F, 0x05, 0x1F, 0x02, 0xF6, 0x05, 0x22, + 0x05, 0x22, 0x02, 0xF7, 0x05, 0x25, 0x05, 0x25, 0x02, 0xF8, 0x05, 0x32, + 0x05, 0x32, 0x02, 0xF9, 0x05, 0x3C, 0x05, 0x3C, 0x02, 0xFA, 0x05, 0x41, + 0x05, 0x41, 0x02, 0xFB, 0x05, 0x68, 0x05, 0x68, 0x02, 0xFC, 0x05, 0x6A, + 0x05, 0x6A, 0x02, 0xFD, 0x05, 0x6C, 0x05, 0x6C, 0x02, 0xFE, 0x05, 0x6F, + 0x05, 0x6F, 0x02, 0xFF, 0x05, 0x84, 0x05, 0x85, 0x03, 0x00, 0x05, 0x87, + 0x05, 0x87, 0x03, 0x02, 0x05, 0x8A, 0x05, 0x8A, 0x03, 0x03, 0x05, 0x9B, + 0x05, 0x9B, 0x03, 0x04, 0x05, 0x9D, 0x05, 0x9D, 0x03, 0x05, 0x05, 0xA1, + 0x05, 0xA1, 0x03, 0x06, 0x05, 0xA3, 0x05, 0xA4, 0x03, 0x07, 0x05, 0xA6, + 0x05, 0xA6, 0x03, 0x09, 0x05, 0xA8, 0x05, 0xA8, 0x03, 0x0A, 0x05, 0xAE, + 0x05, 0xAE, 0x03, 0x0B, 0x05, 0xB0, 0x05, 0xB1, 0x03, 0x0C, 0x05, 0xBA, + 0x05, 0xBA, 0x03, 0x0E, 0x05, 0xBD, 0x05, 0xBD, 0x03, 0x0F, 0x05, 0xE3, + 0x05, 0xE3, 0x03, 0x10, 0x05, 0xEB, 0x05, 0xEB, 0x03, 0x11, 0x05, 0xF0, + 0x05, 0xF1, 0x03, 0x12, 0x05, 0xF3, 0x05, 0xF3, 0x03, 0x14, 0x05, 0xF6, + 0x05, 0xF6, 0x03, 0x15, 0x05, 0xFD, 0x05, 0xFE, 0x03, 0x16, 0x06, 0x00, + 0x06, 0x00, 0x03, 0x18, 0x06, 0x03, 0x06, 0x03, 0x03, 0x19, 0x06, 0x05, + 0x06, 0x07, 0x03, 0x1A, 0x06, 0x0C, 0x06, 0x0C, 0x03, 0x1D, 0x06, 0x0F, + 0x06, 0x0F, 0x03, 0x1E, 0x06, 0x16, 0x06, 0x1A, 0x03, 0x1F, 0x06, 0x36, + 0x06, 0x36, 0x03, 0x24, 0x06, 0x56, 0x06, 0x75, 0x03, 0x25, 0x06, 0x77, + 0x06, 0x78, 0x03, 0x45, 0x06, 0x7A, 0x06, 0x7A, 0x03, 0x47, 0x06, 0x7D, + 0x06, 0x81, 0x03, 0x48, 0x06, 0x84, 0x06, 0x86, 0x03, 0x4D, 0x07, 0x06, + 0x07, 0x08, 0x03, 0x50, 0x07, 0x1E, 0x07, 0x20, 0x03, 0x53, 0x07, 0x3B, + 0x07, 0x41, 0x03, 0x56, 0x07, 0x5C, 0x07, 0x5C, 0x03, 0x5D, 0x07, 0xEA, + 0x07, 0xEC, 0x03, 0x5E, 0x07, 0xF0, 0x07, 0xF3, 0x03, 0x61, 0x07, 0xF5, + 0x07, 0xF6, 0x03, 0x65, 0x07, 0xFE, 0x07, 0xFE, 0x03, 0x67, 0x08, 0x03, + 0x08, 0x08, 0x03, 0x68, 0x08, 0x0C, 0x08, 0x0D, 0x03, 0x6E, 0x08, 0x12, + 0x08, 0x12, 0x03, 0x70, 0x08, 0x14, 0x08, 0x16, 0x03, 0x71, 0x08, 0x19, + 0x08, 0x28, 0x03, 0x74, 0x08, 0x31, 0x08, 0x32, 0x03, 0x84, 0x08, 0x3D, + 0x08, 0x44, 0x03, 0x86, 0x08, 0x4C, 0x08, 0x5B, 0x03, 0x8E, 0x08, 0x5D, + 0x08, 0x66, 0x03, 0x9E, 0x08, 0x68, 0x08, 0x79, 0x03, 0xA8, 0x08, 0x7F, + 0x08, 0x8A, 0x03, 0xBA, 0x08, 0x96, 0x08, 0x9D, 0x03, 0xC6, 0x08, 0x9F, + 0x08, 0xA3, 0x03, 0xCE, 0x08, 0xAF, 0x08, 0xB0, 0x03, 0xD3, 0x08, 0xB2, + 0x08, 0xB3, 0x03, 0xD5, 0x08, 0xB9, 0x08, 0xB9, 0x03, 0xD7, 0x08, 0xBC, + 0x08, 0xC0, 0x03, 0xD8, 0x08, 0xC3, 0x08, 0xC4, 0x03, 0xDD, 0x08, 0xC7, + 0x08, 0xC7, 0x03, 0xDF, 0x08, 0xC9, 0x08, 0xC9, 0x03, 0xE0, 0x08, 0xD2, + 0x08, 0xD2, 0x03, 0xE1, 0x08, 0xE9, 0x08, 0xE9, 0x03, 0xE2, 0x09, 0x00, + 0x09, 0x02, 0x03, 0xE3, 0x09, 0x06, 0x09, 0x09, 0x03, 0xE6, 0x09, 0x0B, + 0x09, 0x0C, 0x03, 0xEA, 0x09, 0x1A, 0x09, 0x1A, 0x03, 0xEC, 0x09, 0x27, + 0x09, 0x27, 0x03, 0xED, 0x09, 0x3E, 0x09, 0x3E, 0x03, 0xEE, 0x09, 0x43, + 0x09, 0x43, 0x03, 0xEF, 0x09, 0x51, 0x09, 0x52, 0x03, 0xF0, 0x09, 0x59, + 0x09, 0x59, 0x03, 0xF2, 0x09, 0x6D, 0x09, 0x6E, 0x03, 0xF3, 0x09, 0x70, + 0x09, 0x70, 0x03, 0xF5, 0x09, 0x7B, 0x09, 0x80, 0x03, 0xF6, 0x09, 0x83, + 0x09, 0x83, 0x03, 0xFC, 0x09, 0x85, 0x09, 0x87, 0x03, 0xFD, 0x09, 0x89, + 0x09, 0x8A, 0x04, 0x00, 0x09, 0x93, 0x09, 0x95, 0x04, 0x02, 0x09, 0x97, + 0x09, 0x98, 0x04, 0x05, 0x09, 0x9B, 0x09, 0x9C, 0x04, 0x07, 0x09, 0xA1, + 0x09, 0xA1, 0x04, 0x09, 0x09, 0xA3, 0x09, 0xA8, 0x04, 0x0A, 0x09, 0xAB, + 0x09, 0xAC, 0x04, 0x10, 0x09, 0xB4, 0x09, 0xB5, 0x04, 0x12, 0x09, 0xBA, + 0x09, 0xBC, 0x04, 0x14, 0x09, 0xBF, 0x09, 0xC5, 0x04, 0x17, 0x09, 0xC7, + 0x09, 0xC9, 0x04, 0x1E, 0x09, 0xE7, 0x09, 0xE9, 0x04, 0x21, 0x09, 0xEC, + 0x09, 0xF2, 0x04, 0x24, 0x09, 0xF6, 0x09, 0xF6, 0x04, 0x2B, 0x0B, 0x42, + 0x0B, 0x42, 0x04, 0x2C, 0x0B, 0x48, 0x0B, 0x49, 0x04, 0x2D, 0x00, 0x02, + 0x00, 0xB7, 0x00, 0x02, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x49, 0x00, 0x5E, + 0x00, 0x3B, 0x00, 0x89, 0x00, 0x8B, 0x00, 0x51, 0x00, 0xAB, 0x00, 0xAE, + 0x00, 0x54, 0x00, 0xC9, 0x00, 0xC9, 0x00, 0x58, 0x00, 0xD3, 0x00, 0xD4, + 0x00, 0x59, 0x01, 0x0A, 0x01, 0x23, 0x00, 0x5B, 0x01, 0x40, 0x01, 0x44, + 0x00, 0x75, 0x01, 0x46, 0x01, 0x75, 0x00, 0x7A, 0x01, 0x77, 0x01, 0x7E, + 0x00, 0xAA, 0x01, 0x9B, 0x01, 0xA8, 0x00, 0xB2, 0x01, 0xAA, 0x01, 0xC1, + 0x00, 0xC0, 0x01, 0xC7, 0x01, 0xD4, 0x00, 0xD8, 0x01, 0xD6, 0x02, 0x1A, + 0x00, 0xE6, 0x02, 0x1C, 0x02, 0x1E, 0x01, 0x2B, 0x02, 0x23, 0x02, 0x2C, + 0x01, 0x2E, 0x02, 0x2E, 0x02, 0x2F, 0x01, 0x38, 0x02, 0x31, 0x02, 0x54, + 0x01, 0x3A, 0x02, 0x56, 0x02, 0x56, 0x01, 0x5E, 0x02, 0x58, 0x02, 0x58, + 0x01, 0x5F, 0x02, 0x61, 0x02, 0x64, 0x01, 0x60, 0x02, 0x66, 0x02, 0x85, + 0x01, 0x64, 0x02, 0x87, 0x02, 0x89, 0x01, 0x84, 0x02, 0x8B, 0x02, 0x8C, + 0x01, 0x87, 0x02, 0x90, 0x02, 0x91, 0x01, 0x89, 0x02, 0x93, 0x02, 0x93, + 0x01, 0x8B, 0x02, 0x9E, 0x02, 0xA4, 0x01, 0x8C, 0x02, 0xA8, 0x02, 0xC0, + 0x01, 0x93, 0x02, 0xC2, 0x02, 0xCD, 0x01, 0xAC, 0x02, 0xCF, 0x02, 0xD7, + 0x01, 0xB8, 0x02, 0xD9, 0x02, 0xDF, 0x01, 0xC1, 0x02, 0xE1, 0x02, 0xE1, + 0x01, 0xC8, 0x02, 0xE5, 0x02, 0xE5, 0x01, 0xC9, 0x02, 0xE7, 0x02, 0xE8, + 0x01, 0xCA, 0x02, 0xEC, 0x02, 0xEC, 0x01, 0xCC, 0x02, 0xF0, 0x02, 0xF3, + 0x01, 0xCD, 0x02, 0xFE, 0x03, 0x00, 0x01, 0xD1, 0x03, 0x02, 0x03, 0x06, + 0x01, 0xD4, 0x03, 0x09, 0x03, 0x0A, 0x01, 0xD9, 0x03, 0x0C, 0x03, 0x14, + 0x01, 0xDB, 0x03, 0x16, 0x03, 0x19, 0x01, 0xE4, 0x03, 0x1B, 0x03, 0x48, + 0x01, 0xE8, 0x03, 0x4A, 0x03, 0x50, 0x02, 0x16, 0x03, 0x52, 0x03, 0x52, + 0x02, 0x1D, 0x03, 0x54, 0x03, 0x57, 0x02, 0x1E, 0x03, 0x59, 0x03, 0x64, + 0x02, 0x22, 0x03, 0x76, 0x03, 0x76, 0x02, 0x2E, 0x03, 0x78, 0x03, 0x79, + 0x02, 0x2F, 0x03, 0x7B, 0x03, 0x7B, 0x02, 0x31, 0x03, 0x7D, 0x03, 0x93, + 0x02, 0x32, 0x03, 0x95, 0x03, 0xAE, 0x02, 0x49, 0x03, 0xB0, 0x03, 0xB2, + 0x02, 0x63, 0x03, 0xD2, 0x03, 0xD7, 0x02, 0x66, 0x03, 0xD9, 0x03, 0xDE, + 0x02, 0x6C, 0x03, 0xE4, 0x03, 0xF6, 0x02, 0x72, 0x03, 0xFA, 0x03, 0xFF, + 0x02, 0x85, 0x04, 0x01, 0x04, 0x0A, 0x02, 0x8B, 0x04, 0x0D, 0x04, 0x0F, + 0x02, 0x95, 0x04, 0x29, 0x04, 0x29, 0x02, 0x98, 0x04, 0x2B, 0x04, 0x2E, + 0x02, 0x99, 0x04, 0x31, 0x04, 0x32, 0x02, 0x9D, 0x04, 0x35, 0x04, 0x35, + 0x02, 0x9F, 0x04, 0x37, 0x04, 0x39, 0x02, 0xA0, 0x04, 0x3E, 0x04, 0x3F, + 0x02, 0xA3, 0x04, 0x41, 0x04, 0x42, 0x02, 0xA5, 0x04, 0x44, 0x04, 0x48, + 0x02, 0xA7, 0x04, 0x4B, 0x04, 0x4B, 0x02, 0xAC, 0x04, 0x51, 0x04, 0x6D, + 0x02, 0xAD, 0x04, 0x6F, 0x04, 0x70, 0x02, 0xCA, 0x04, 0x72, 0x04, 0x7F, + 0x02, 0xCC, 0x04, 0x98, 0x04, 0x98, 0x02, 0xDA, 0x04, 0x9A, 0x04, 0x9A, + 0x02, 0xDB, 0x04, 0x9C, 0x04, 0x9C, 0x02, 0xDC, 0x04, 0x9F, 0x04, 0xA4, + 0x02, 0xDD, 0x04, 0xA6, 0x04, 0xB1, 0x02, 0xE3, 0x04, 0xB3, 0x04, 0xE2, + 0x02, 0xEF, 0x04, 0xE5, 0x04, 0xE7, 0x03, 0x1F, 0x04, 0xEB, 0x04, 0xFF, + 0x03, 0x22, 0x05, 0x02, 0x05, 0x07, 0x03, 0x37, 0x05, 0x0B, 0x05, 0x0D, + 0x03, 0x3D, 0x05, 0x10, 0x05, 0x12, 0x03, 0x40, 0x05, 0x15, 0x05, 0x15, + 0x03, 0x43, 0x05, 0x18, 0x05, 0x18, 0x03, 0x44, 0x05, 0x1A, 0x05, 0x1A, + 0x03, 0x45, 0x05, 0x1C, 0x05, 0x1D, 0x03, 0x46, 0x05, 0x1F, 0x05, 0x1F, + 0x03, 0x48, 0x05, 0x28, 0x05, 0x28, 0x03, 0x49, 0x05, 0x32, 0x05, 0x32, + 0x03, 0x4A, 0x05, 0x3B, 0x05, 0x3B, 0x03, 0x4B, 0x05, 0x44, 0x05, 0x44, + 0x03, 0x4C, 0x05, 0x46, 0x05, 0x47, 0x03, 0x4D, 0x05, 0x86, 0x05, 0x86, + 0x03, 0x4F, 0x05, 0x8B, 0x05, 0x8B, 0x03, 0x50, 0x05, 0x8F, 0x05, 0x8F, + 0x03, 0x51, 0x05, 0x93, 0x05, 0x93, 0x03, 0x52, 0x05, 0x98, 0x05, 0x98, + 0x03, 0x53, 0x05, 0x9A, 0x05, 0x9A, 0x03, 0x54, 0x05, 0xB0, 0x05, 0xB0, + 0x03, 0x55, 0x05, 0xB6, 0x05, 0xBB, 0x03, 0x56, 0x05, 0xC1, 0x05, 0xC2, + 0x03, 0x5C, 0x05, 0xC8, 0x05, 0xC9, 0x03, 0x5E, 0x05, 0xCC, 0x05, 0xCF, + 0x03, 0x60, 0x05, 0xD4, 0x05, 0xD4, 0x03, 0x64, 0x05, 0xDB, 0x05, 0xDD, + 0x03, 0x65, 0x05, 0xDF, 0x05, 0xDF, 0x03, 0x68, 0x05, 0xE2, 0x05, 0xE3, + 0x03, 0x69, 0x05, 0xE6, 0x05, 0xE9, 0x03, 0x6B, 0x05, 0xEB, 0x05, 0xEB, + 0x03, 0x6F, 0x05, 0xF2, 0x05, 0xF2, 0x03, 0x70, 0x05, 0xFF, 0x05, 0xFF, + 0x03, 0x71, 0x06, 0x04, 0x06, 0x05, 0x03, 0x72, 0x06, 0x0A, 0x06, 0x0A, + 0x03, 0x74, 0x06, 0x16, 0x06, 0x19, 0x03, 0x75, 0x06, 0x1D, 0x06, 0x1D, + 0x03, 0x79, 0x07, 0x33, 0x07, 0x33, 0x03, 0x7A, 0x07, 0x37, 0x07, 0x37, + 0x03, 0x7B, 0x07, 0x3A, 0x07, 0x3A, 0x03, 0x7C, 0x07, 0xEA, 0x07, 0xEB, + 0x03, 0x7D, 0x07, 0xEF, 0x07, 0xEF, 0x03, 0x7F, 0x07, 0xF2, 0x07, 0xF3, + 0x03, 0x80, 0x07, 0xF5, 0x07, 0xF6, 0x03, 0x82, 0x07, 0xF8, 0x07, 0xFE, + 0x03, 0x84, 0x08, 0x01, 0x08, 0x08, 0x03, 0x8B, 0x08, 0x0B, 0x08, 0x0D, + 0x03, 0x93, 0x08, 0x12, 0x08, 0x12, 0x03, 0x96, 0x08, 0x1B, 0x08, 0x1D, + 0x03, 0x97, 0x08, 0x22, 0x08, 0x29, 0x03, 0x9A, 0x08, 0x31, 0x08, 0x39, + 0x03, 0xA2, 0x08, 0x3B, 0x08, 0x46, 0x03, 0xAB, 0x08, 0x4C, 0x08, 0x54, + 0x03, 0xB7, 0x08, 0x57, 0x08, 0x5B, 0x03, 0xC0, 0x08, 0x5D, 0x08, 0x67, + 0x03, 0xC5, 0x08, 0x6B, 0x08, 0x79, 0x03, 0xD0, 0x08, 0x7F, 0x08, 0x8E, + 0x03, 0xDF, 0x08, 0x91, 0x08, 0x9D, 0x03, 0xEF, 0x08, 0xA1, 0x08, 0xA3, + 0x03, 0xFC, 0x08, 0xAF, 0x08, 0xB0, 0x03, 0xFF, 0x08, 0xB3, 0x08, 0xB3, + 0x04, 0x01, 0x08, 0xB9, 0x08, 0xB9, 0x04, 0x02, 0x08, 0xBC, 0x08, 0xC0, + 0x04, 0x03, 0x08, 0xC2, 0x08, 0xC7, 0x04, 0x08, 0x08, 0xC9, 0x08, 0xC9, + 0x04, 0x0E, 0x08, 0xCB, 0x08, 0xCF, 0x04, 0x0F, 0x08, 0xD3, 0x08, 0xD3, + 0x04, 0x14, 0x08, 0xE9, 0x08, 0xE9, 0x04, 0x15, 0x09, 0x00, 0x09, 0x01, + 0x04, 0x16, 0x09, 0x05, 0x09, 0x05, 0x04, 0x18, 0x09, 0x08, 0x09, 0x09, + 0x04, 0x19, 0x09, 0x0B, 0x09, 0x0C, 0x04, 0x1B, 0x09, 0x0E, 0x09, 0x0F, + 0x04, 0x1D, 0x09, 0x17, 0x09, 0x17, 0x04, 0x1F, 0x09, 0x19, 0x09, 0x1A, + 0x04, 0x20, 0x09, 0x24, 0x09, 0x24, 0x04, 0x22, 0x09, 0x27, 0x09, 0x27, + 0x04, 0x23, 0x09, 0x3E, 0x09, 0x3E, 0x04, 0x24, 0x09, 0x43, 0x09, 0x43, + 0x04, 0x25, 0x09, 0x50, 0x09, 0x52, 0x04, 0x26, 0x09, 0x59, 0x09, 0x59, + 0x04, 0x29, 0x09, 0x6D, 0x09, 0x6E, 0x04, 0x2A, 0x09, 0x70, 0x09, 0x70, + 0x04, 0x2C, 0x09, 0x7B, 0x09, 0x7F, 0x04, 0x2D, 0x09, 0x81, 0x09, 0x83, + 0x04, 0x32, 0x09, 0x85, 0x09, 0x85, 0x04, 0x35, 0x09, 0x87, 0x09, 0x8A, + 0x04, 0x36, 0x09, 0x8F, 0x09, 0x8F, 0x04, 0x3A, 0x09, 0x92, 0x09, 0x95, + 0x04, 0x3B, 0x09, 0x98, 0x09, 0x98, 0x04, 0x3F, 0x09, 0x9B, 0x09, 0x9C, + 0x04, 0x40, 0x09, 0xA1, 0x09, 0xA1, 0x04, 0x42, 0x09, 0xA3, 0x09, 0xA9, + 0x04, 0x43, 0x09, 0xAB, 0x09, 0xAC, 0x04, 0x4A, 0x09, 0xB2, 0x09, 0xB2, + 0x04, 0x4C, 0x09, 0xB4, 0x09, 0xB7, 0x04, 0x4D, 0x09, 0xBA, 0x09, 0xBC, + 0x04, 0x51, 0x09, 0xBF, 0x09, 0xC5, 0x04, 0x54, 0x09, 0xC7, 0x09, 0xC9, + 0x04, 0x5B, 0x09, 0xCF, 0x09, 0xCF, 0x04, 0x5E, 0x09, 0xD4, 0x09, 0xD4, + 0x04, 0x5F, 0x09, 0xEA, 0x09, 0xEB, 0x04, 0x60, 0x09, 0xEF, 0x09, 0xF0, + 0x04, 0x62, 0x0A, 0x15, 0x0A, 0x15, 0x04, 0x64, 0x0A, 0x2F, 0x0A, 0x30, + 0x04, 0x65, 0x0B, 0x42, 0x0B, 0x42, 0x04, 0x67, 0x01, 0x6A, 0x00, 0x41, + 0x00, 0x48, 0x00, 0x42, 0x00, 0x48, 0x00, 0x43, 0x00, 0x48, 0x00, 0x44, + 0x00, 0x48, 0x00, 0x45, 0x00, 0x48, 0x00, 0x46, 0x00, 0x48, 0x00, 0x47, + 0x00, 0x48, 0x00, 0x48, 0x00, 0x48, 0x00, 0x54, 0x00, 0x48, 0x00, 0x55, + 0x00, 0x48, 0x00, 0x56, 0x00, 0x48, 0x00, 0x57, 0x00, 0x48, 0x00, 0x58, + 0x00, 0x48, 0x00, 0x59, 0x00, 0x48, 0x00, 0x5A, 0x00, 0x48, 0x00, 0x5B, + 0x00, 0x48, 0x00, 0x5C, 0x00, 0x48, 0x00, 0x5D, 0x00, 0x48, 0x00, 0x5E, + 0x00, 0x48, 0x00, 0x5F, 0x00, 0x48, 0x00, 0x60, 0x00, 0x48, 0x00, 0x61, + 0x00, 0x48, 0x00, 0x62, 0x00, 0x48, 0x00, 0x63, 0x00, 0x48, 0x00, 0x64, + 0x00, 0x48, 0x00, 0x65, 0x00, 0x48, 0x00, 0x66, 0x00, 0x48, 0x00, 0x67, + 0x00, 0x48, 0x00, 0x68, 0x00, 0x48, 0x00, 0x69, 0x00, 0x48, 0x00, 0x6A, + 0x00, 0x48, 0x00, 0x6B, 0x00, 0x48, 0x00, 0x6C, 0x00, 0x48, 0x00, 0x6D, + 0x00, 0x48, 0x00, 0x6E, 0x00, 0x48, 0x00, 0x6F, 0x00, 0x48, 0x00, 0x70, + 0x00, 0x48, 0x00, 0x71, 0x00, 0x48, 0x00, 0x72, 0x00, 0x48, 0x00, 0x73, + 0x00, 0x48, 0x00, 0x74, 0x00, 0x48, 0x00, 0x75, 0x00, 0x48, 0x00, 0x76, + 0x00, 0x48, 0x00, 0x77, 0x00, 0x48, 0x00, 0x78, 0x00, 0x48, 0x00, 0x79, + 0x00, 0x48, 0x00, 0x7B, 0x00, 0x48, 0x00, 0x84, 0x00, 0x48, 0x00, 0x85, + 0x00, 0x48, 0x00, 0x86, 0x00, 0x48, 0x00, 0x87, 0x00, 0x48, 0x00, 0x88, + 0x00, 0x48, 0x00, 0x89, 0x00, 0x48, 0x00, 0x8B, 0x00, 0x48, 0x00, 0xA1, + 0x00, 0x48, 0x00, 0xA2, 0x00, 0x48, 0x00, 0xA3, 0x00, 0x48, 0x00, 0xA4, + 0x00, 0x48, 0x00, 0xA5, 0x00, 0x48, 0x00, 0xA6, 0x00, 0x48, 0x00, 0xA7, + 0x00, 0x48, 0x00, 0xA8, 0x00, 0x48, 0x00, 0xA9, 0x00, 0x48, 0x00, 0xAA, + 0x00, 0x48, 0x00, 0xAB, 0x00, 0x48, 0x00, 0xAC, 0x00, 0x48, 0x00, 0xAD, + 0x00, 0x48, 0x00, 0xAE, 0x00, 0x48, 0x00, 0xAF, 0x00, 0x48, 0x00, 0xB0, + 0x00, 0x48, 0x00, 0xB1, 0x00, 0x48, 0x00, 0xB2, 0x00, 0x48, 0x00, 0xB3, + 0x00, 0x48, 0x00, 0xB4, 0x00, 0x48, 0x00, 0xB5, 0x00, 0x48, 0x00, 0xB6, + 0x00, 0x48, 0x00, 0xB7, 0x00, 0x48, 0x00, 0xB8, 0x00, 0x48, 0x00, 0xB9, + 0x00, 0x48, 0x00, 0xBA, 0x00, 0x48, 0x00, 0xBB, 0x00, 0x48, 0x00, 0xBC, + 0x00, 0x48, 0x00, 0xBD, 0x00, 0x48, 0x00, 0xBE, 0x00, 0x48, 0x00, 0xBF, + 0x00, 0x48, 0x00, 0xC0, 0x00, 0x48, 0x00, 0xC1, 0x00, 0x48, 0x00, 0xC2, + 0x00, 0x48, 0x00, 0xC3, 0x00, 0x48, 0x00, 0xC4, 0x00, 0x48, 0x00, 0xC5, + 0x00, 0x48, 0x00, 0xC6, 0x00, 0x48, 0x00, 0xCA, 0x00, 0x48, 0x00, 0xCB, + 0x00, 0x48, 0x00, 0xCC, 0x00, 0x48, 0x00, 0xD1, 0x00, 0x48, 0x00, 0xD2, + 0x00, 0x48, 0x00, 0xD3, 0x00, 0x48, 0x00, 0xD6, 0x00, 0x48, 0x00, 0xD7, + 0x00, 0x48, 0x00, 0xD8, 0x00, 0x48, 0x00, 0xD9, 0x00, 0x48, 0x00, 0xE8, + 0x00, 0x48, 0x00, 0xEA, 0x00, 0x48, 0x01, 0x0F, 0x00, 0x48, 0x01, 0x10, + 0x00, 0x48, 0x01, 0x11, 0x00, 0x48, 0x01, 0x12, 0x00, 0x48, 0x01, 0x13, + 0x00, 0x48, 0x01, 0x14, 0x00, 0x48, 0x01, 0x16, 0x00, 0x48, 0x01, 0x17, + 0x00, 0x48, 0x01, 0x18, 0x00, 0x48, 0x01, 0x19, 0x00, 0x48, 0x01, 0x1A, + 0x00, 0x48, 0x01, 0x1B, 0x00, 0x48, 0x01, 0x1C, 0x00, 0x48, 0x01, 0x1D, + 0x00, 0x48, 0x01, 0x1E, 0x00, 0x48, 0x01, 0x1F, 0x00, 0x48, 0x01, 0x20, + 0x00, 0x48, 0x01, 0x21, 0x00, 0x48, 0x01, 0x22, 0x00, 0x48, 0x01, 0x23, + 0x00, 0x48, 0x01, 0x24, 0x00, 0x48, 0x01, 0x25, 0x00, 0x48, 0x01, 0x26, + 0x00, 0x48, 0x01, 0x27, 0x00, 0x48, 0x01, 0x28, 0x00, 0x48, 0x01, 0x29, + 0x00, 0x48, 0x01, 0x2A, 0x00, 0x48, 0x01, 0x2B, 0x00, 0x48, 0x01, 0x2C, + 0x00, 0x48, 0x01, 0x2D, 0x00, 0x48, 0x01, 0x2E, 0x00, 0x48, 0x01, 0x2F, + 0x00, 0x48, 0x01, 0x30, 0x00, 0x48, 0x01, 0x31, 0x00, 0x48, 0x01, 0x32, + 0x00, 0x48, 0x01, 0x33, 0x00, 0x48, 0x01, 0x34, 0x00, 0x48, 0x01, 0x35, + 0x00, 0x48, 0x01, 0x37, 0x00, 0x48, 0x01, 0x38, 0x00, 0x48, 0x01, 0x39, + 0x00, 0x48, 0x01, 0x3A, 0x00, 0x48, 0x01, 0x3B, 0x00, 0x48, 0x01, 0x3C, + 0x00, 0x48, 0x01, 0x3D, 0x00, 0x48, 0x01, 0x3E, 0x00, 0x48, 0x01, 0x3F, + 0x00, 0x48, 0x01, 0x40, 0x00, 0x48, 0x01, 0x77, 0x00, 0x48, 0x01, 0x78, + 0x00, 0x48, 0x01, 0x79, 0x00, 0x48, 0x01, 0x7A, 0x00, 0x48, 0x01, 0x7B, + 0x00, 0x48, 0x01, 0x7C, 0x00, 0x48, 0x01, 0x7D, 0x00, 0x48, 0x01, 0x80, + 0x00, 0x48, 0x01, 0x81, 0x00, 0x48, 0x01, 0x82, 0x00, 0x48, 0x01, 0x83, + 0x00, 0x48, 0x01, 0x84, 0x00, 0x48, 0x01, 0x85, 0x00, 0x48, 0x01, 0x86, + 0x00, 0x48, 0x01, 0x87, 0x00, 0x48, 0x01, 0x88, 0x00, 0x48, 0x01, 0x89, + 0x00, 0x48, 0x01, 0x8A, 0x00, 0x48, 0x01, 0x8B, 0x00, 0x48, 0x01, 0x8C, + 0x00, 0x48, 0x01, 0x9A, 0x00, 0x48, 0x02, 0x42, 0x00, 0x48, 0x02, 0x44, + 0x00, 0x48, 0x02, 0x45, 0x00, 0x48, 0x02, 0x46, 0x00, 0x48, 0x02, 0x47, + 0x00, 0x48, 0x02, 0x48, 0x00, 0x48, 0x02, 0x49, 0x00, 0x48, 0x02, 0x88, + 0x00, 0x48, 0x02, 0x8A, 0x00, 0x48, 0x02, 0x8B, 0x00, 0x48, 0x02, 0x8C, + 0x00, 0x48, 0x02, 0x8D, 0x00, 0x48, 0x02, 0x8F, 0x00, 0x48, 0x02, 0x9E, + 0x00, 0x48, 0x02, 0x9F, 0x00, 0x48, 0x02, 0xA0, 0x00, 0x48, 0x02, 0xA1, + 0x00, 0x48, 0x02, 0xA2, 0x00, 0x48, 0x02, 0xA3, 0x00, 0x48, 0x02, 0xA4, + 0x00, 0x48, 0x02, 0xA9, 0x00, 0x48, 0x02, 0xAA, 0x00, 0x48, 0x02, 0xAB, + 0x00, 0x48, 0x02, 0xAC, 0x00, 0x48, 0x02, 0xAD, 0x00, 0x48, 0x02, 0xAE, + 0x00, 0x48, 0x02, 0xAF, 0x00, 0x48, 0x02, 0xB0, 0x00, 0x48, 0x02, 0xD6, + 0x00, 0x48, 0x02, 0xD7, 0x00, 0x48, 0x02, 0xD9, 0x00, 0x48, 0x02, 0xDA, + 0x00, 0x48, 0x02, 0xDB, 0x00, 0x48, 0x02, 0xDC, 0x00, 0x48, 0x02, 0xDD, + 0x00, 0x48, 0x02, 0xDF, 0x00, 0x48, 0x02, 0xE0, 0x00, 0x48, 0x02, 0xE1, + 0x00, 0x48, 0x02, 0xE2, 0x00, 0x48, 0x02, 0xE3, 0x00, 0x48, 0x02, 0xE4, + 0x00, 0x48, 0x02, 0xE6, 0x00, 0x48, 0x02, 0xE7, 0x00, 0x48, 0x02, 0xE8, + 0x00, 0x48, 0x02, 0xE9, 0x00, 0x48, 0x02, 0xEA, 0x00, 0x48, 0x02, 0xEB, + 0x00, 0x48, 0x02, 0xEC, 0x00, 0x48, 0x02, 0xED, 0x00, 0x48, 0x02, 0xEE, + 0x00, 0x48, 0x02, 0xEF, 0x00, 0x48, 0x02, 0xF4, 0x00, 0x48, 0x02, 0xF5, + 0x00, 0x48, 0x02, 0xF6, 0x00, 0x48, 0x02, 0xF7, 0x00, 0x48, 0x02, 0xF8, + 0x00, 0x48, 0x02, 0xF9, 0x00, 0x48, 0x02, 0xFA, 0x00, 0x48, 0x02, 0xFB, + 0x00, 0x48, 0x02, 0xFC, 0x00, 0x48, 0x03, 0x4D, 0x00, 0x48, 0x03, 0x76, + 0x00, 0x48, 0x03, 0x77, 0x00, 0x48, 0x03, 0x87, 0x00, 0x48, 0x03, 0x88, + 0x00, 0x48, 0x03, 0x89, 0x00, 0x48, 0x03, 0x8A, 0x00, 0x48, 0x03, 0x8B, + 0x00, 0x48, 0x03, 0x8C, 0x00, 0x48, 0x03, 0x8D, 0x00, 0x48, 0x03, 0x8E, + 0x00, 0x48, 0x03, 0x8F, 0x00, 0x48, 0x03, 0x90, 0x00, 0x48, 0x04, 0x07, + 0x00, 0x48, 0x04, 0x08, 0x00, 0x48, 0x04, 0x0C, 0x00, 0x48, 0x04, 0x2A, + 0x00, 0x48, 0x04, 0x2B, 0x00, 0x48, 0x04, 0x31, 0x00, 0x48, 0x04, 0x32, + 0x00, 0x48, 0x04, 0x33, 0x00, 0x48, 0x04, 0x36, 0x00, 0x48, 0x04, 0x39, + 0x00, 0x48, 0x04, 0x3E, 0x00, 0x48, 0x04, 0x40, 0x00, 0x48, 0x04, 0x41, + 0x00, 0x48, 0x04, 0x43, 0x00, 0x48, 0x04, 0x44, 0x00, 0x48, 0x04, 0x46, + 0x00, 0x48, 0x04, 0x48, 0x00, 0x48, 0x04, 0x4A, 0x00, 0x48, 0x04, 0x4B, + 0x00, 0x48, 0x05, 0x25, 0x00, 0x48, 0x05, 0x36, 0x00, 0x48, 0x05, 0x39, + 0x00, 0x48, 0x05, 0x3A, 0x00, 0x48, 0x05, 0xAE, 0x00, 0x48, 0x06, 0x1B, + 0x00, 0x48, 0x06, 0xFF, 0x00, 0x48, 0x07, 0x3D, 0x00, 0x48, 0x07, 0x3E, + 0x00, 0x48, 0x07, 0x3F, 0x00, 0x48, 0x07, 0x40, 0x00, 0x48, 0x07, 0x41, + 0x00, 0x48, 0x07, 0x5C, 0x00, 0x48, 0x07, 0xEA, 0x00, 0x48, 0x07, 0xEB, + 0x00, 0x48, 0x07, 0xEC, 0x00, 0x48, 0x07, 0xED, 0x00, 0x48, 0x07, 0xEF, + 0x00, 0x48, 0x07, 0xF0, 0x00, 0x48, 0x07, 0xF1, 0x00, 0x48, 0x07, 0xF6, + 0x00, 0x48, 0x08, 0x09, 0x00, 0x48, 0x08, 0x0A, 0x00, 0x48, 0x08, 0x0C, + 0x00, 0x48, 0x08, 0x0D, 0x00, 0x48, 0x08, 0x0E, 0x00, 0x48, 0x08, 0x0F, + 0x00, 0x48, 0x08, 0x10, 0x00, 0x48, 0x08, 0x11, 0x00, 0x48, 0x08, 0x12, + 0x00, 0x48, 0x08, 0x14, 0x00, 0x48, 0x08, 0x15, 0x00, 0x48, 0x08, 0x16, + 0x00, 0x48, 0x08, 0x19, 0x00, 0x48, 0x08, 0x1A, 0x00, 0x48, 0x08, 0x1B, + 0x00, 0x48, 0x08, 0x1C, 0x00, 0x48, 0x08, 0x1D, 0x00, 0x48, 0x08, 0x1E, + 0x00, 0x48, 0x08, 0x1F, 0x00, 0x48, 0x08, 0x20, 0x00, 0x48, 0x08, 0x21, + 0x00, 0x48, 0x08, 0x29, 0x00, 0x48, 0x08, 0x2A, 0x00, 0x48, 0x08, 0x2B, + 0x00, 0x48, 0x08, 0x2C, 0x00, 0x48, 0x08, 0x52, 0x00, 0x48, 0x08, 0x53, + 0x00, 0x48, 0x08, 0x5D, 0x00, 0x48, 0x08, 0x5E, 0x00, 0x48, 0x08, 0x5F, + 0x00, 0x48, 0x08, 0x67, 0x00, 0x48, 0x08, 0x68, 0x00, 0x48, 0x08, 0x69, + 0x00, 0x48, 0x08, 0x6A, 0x00, 0x48, 0x08, 0x9D, 0x00, 0x48, 0x08, 0x9E, + 0x00, 0x48, 0x08, 0x9F, 0x00, 0x48, 0x08, 0xA0, 0x00, 0x48, 0x08, 0xA1, + 0x00, 0x48, 0x08, 0xA2, 0x00, 0x48, 0x08, 0xA3, 0x00, 0x48, 0x08, 0xAD, + 0x00, 0x48, 0x08, 0xB2, 0x00, 0x48, 0x08, 0xEA, 0x00, 0x48, 0x09, 0x00, + 0x00, 0x48, 0x09, 0x01, 0x00, 0x48, 0x09, 0x02, 0x00, 0x48, 0x09, 0x03, + 0x00, 0x48, 0x09, 0x05, 0x00, 0x48, 0x09, 0x06, 0x00, 0x48, 0x09, 0x07, + 0x00, 0x48, 0x09, 0x0C, 0x00, 0x48, 0x09, 0x34, 0x00, 0x48, 0x09, 0x45, + 0x00, 0x48, 0x09, 0x52, 0x00, 0x48, 0x09, 0x7B, 0x00, 0x48, 0x09, 0x7C, + 0x00, 0x48, 0x09, 0x7F, 0x00, 0x48, 0x09, 0x80, 0x00, 0x48, 0x09, 0x81, + 0x00, 0x48, 0x09, 0x86, 0x00, 0x48, 0x09, 0x88, 0x00, 0x48, 0x09, 0x8A, + 0x00, 0x48, 0x09, 0x8C, 0x00, 0x48, 0x09, 0x8D, 0x00, 0x48, 0x09, 0x97, + 0x00, 0x48, 0x09, 0xC8, 0x00, 0x48, 0x09, 0xC9, 0x00, 0x48, 0x09, 0xE7, + 0x00, 0x48, 0x09, 0xE8, 0x00, 0x48, 0x09, 0xE9, 0x00, 0x48, 0x09, 0xEA, + 0x00, 0x48, 0x09, 0xEF, 0x00, 0x48, 0x09, 0xF6, 0x00, 0x48, 0x0B, 0x48, + 0x00, 0x48, 0x0B, 0x49, 0x00, 0x48, 0x01, 0x9B, 0x00, 0x41, 0x00, 0x45, + 0x00, 0x42, 0x00, 0x45, 0x00, 0x43, 0x00, 0x45, 0x00, 0x44, 0x00, 0x45, + 0x00, 0x45, 0x00, 0x45, 0x00, 0x46, 0x00, 0x45, 0x00, 0x47, 0x00, 0x45, + 0x00, 0x48, 0x00, 0x45, 0x00, 0x54, 0x00, 0x45, 0x00, 0x55, 0x00, 0x45, + 0x00, 0x56, 0x00, 0x45, 0x00, 0x57, 0x00, 0x45, 0x00, 0x58, 0x00, 0x45, + 0x00, 0x59, 0x00, 0x45, 0x00, 0x5A, 0x00, 0x45, 0x00, 0x5B, 0x00, 0x45, + 0x00, 0x5C, 0x00, 0x45, 0x00, 0x5D, 0x00, 0x45, 0x00, 0x5E, 0x00, 0x45, + 0x00, 0x5F, 0x00, 0x45, 0x00, 0x60, 0x00, 0x45, 0x00, 0x61, 0x00, 0x45, + 0x00, 0x62, 0x00, 0x45, 0x00, 0x63, 0x00, 0x45, 0x00, 0x64, 0x00, 0x45, + 0x00, 0x65, 0x00, 0x45, 0x00, 0x66, 0x00, 0x45, 0x00, 0x67, 0x00, 0x45, + 0x00, 0x68, 0x00, 0x45, 0x00, 0x69, 0x00, 0x45, 0x00, 0x6A, 0x00, 0x45, + 0x00, 0x6B, 0x00, 0x45, 0x00, 0x6C, 0x00, 0x45, 0x00, 0x6D, 0x00, 0x45, + 0x00, 0x6E, 0x00, 0x45, 0x00, 0x6F, 0x00, 0x45, 0x00, 0x70, 0x00, 0x45, + 0x00, 0x71, 0x00, 0x45, 0x00, 0x72, 0x00, 0x45, 0x00, 0x73, 0x00, 0x45, + 0x00, 0x74, 0x00, 0x45, 0x00, 0x75, 0x00, 0x45, 0x00, 0x76, 0x00, 0x45, + 0x00, 0x77, 0x00, 0x45, 0x00, 0x78, 0x00, 0x45, 0x00, 0x79, 0x00, 0x45, + 0x00, 0x7B, 0x00, 0x45, 0x00, 0x84, 0x00, 0x45, 0x00, 0x85, 0x00, 0x45, + 0x00, 0x86, 0x00, 0x45, 0x00, 0x87, 0x00, 0x45, 0x00, 0x88, 0x00, 0x45, + 0x00, 0x89, 0x00, 0x45, 0x00, 0x8B, 0x00, 0x45, 0x00, 0xA1, 0x00, 0x45, + 0x00, 0xA2, 0x00, 0x45, 0x00, 0xA3, 0x00, 0x45, 0x00, 0xA4, 0x00, 0x45, + 0x00, 0xA5, 0x00, 0x45, 0x00, 0xA6, 0x00, 0x45, 0x00, 0xA7, 0x00, 0x45, + 0x00, 0xA8, 0x00, 0x45, 0x00, 0xA9, 0x00, 0x45, 0x00, 0xAA, 0x00, 0x45, + 0x00, 0xAB, 0x00, 0x45, 0x00, 0xAC, 0x00, 0x45, 0x00, 0xAD, 0x00, 0x45, + 0x00, 0xAE, 0x00, 0x45, 0x00, 0xAF, 0x00, 0x45, 0x00, 0xB0, 0x00, 0x45, + 0x00, 0xB1, 0x00, 0x45, 0x00, 0xB2, 0x00, 0x45, 0x00, 0xB3, 0x00, 0x45, + 0x00, 0xB4, 0x00, 0x45, 0x00, 0xB5, 0x00, 0x45, 0x00, 0xB6, 0x00, 0x45, + 0x00, 0xB7, 0x00, 0x45, 0x00, 0xB8, 0x00, 0x45, 0x00, 0xB9, 0x00, 0x45, + 0x00, 0xBA, 0x00, 0x45, 0x00, 0xBB, 0x00, 0x45, 0x00, 0xBC, 0x00, 0x45, + 0x00, 0xBD, 0x00, 0x45, 0x00, 0xBE, 0x00, 0x45, 0x00, 0xBF, 0x00, 0x45, + 0x00, 0xC0, 0x00, 0x45, 0x00, 0xC1, 0x00, 0x45, 0x00, 0xC2, 0x00, 0x45, + 0x00, 0xC3, 0x00, 0x45, 0x00, 0xC4, 0x00, 0x45, 0x00, 0xC5, 0x00, 0x45, + 0x00, 0xC6, 0x00, 0x45, 0x00, 0xCA, 0x00, 0x45, 0x00, 0xCB, 0x00, 0x45, + 0x00, 0xCC, 0x00, 0x45, 0x00, 0xD1, 0x00, 0x45, 0x00, 0xD2, 0x00, 0x45, + 0x00, 0xD3, 0x00, 0x45, 0x00, 0xD6, 0x00, 0x45, 0x00, 0xD7, 0x00, 0x45, + 0x00, 0xD8, 0x00, 0x45, 0x00, 0xD9, 0x00, 0x45, 0x00, 0xE8, 0x00, 0x45, + 0x00, 0xEA, 0x00, 0x45, 0x01, 0x0F, 0x00, 0x45, 0x01, 0x10, 0x00, 0x45, + 0x01, 0x11, 0x00, 0x45, 0x01, 0x12, 0x00, 0x45, 0x01, 0x13, 0x00, 0x45, + 0x01, 0x14, 0x00, 0x45, 0x01, 0x16, 0x00, 0x45, 0x01, 0x17, 0x00, 0x45, + 0x01, 0x18, 0x00, 0x45, 0x01, 0x19, 0x00, 0x45, 0x01, 0x1A, 0x00, 0x45, + 0x01, 0x1B, 0x00, 0x45, 0x01, 0x1C, 0x00, 0x45, 0x01, 0x1D, 0x00, 0x45, + 0x01, 0x1E, 0x00, 0x45, 0x01, 0x1F, 0x00, 0x45, 0x01, 0x20, 0x00, 0x45, + 0x01, 0x21, 0x00, 0x45, 0x01, 0x22, 0x00, 0x45, 0x01, 0x23, 0x00, 0x45, + 0x01, 0x24, 0x00, 0x45, 0x01, 0x25, 0x00, 0x45, 0x01, 0x26, 0x00, 0x45, + 0x01, 0x27, 0x00, 0x45, 0x01, 0x28, 0x00, 0x45, 0x01, 0x29, 0x00, 0x45, + 0x01, 0x2A, 0x00, 0x45, 0x01, 0x2B, 0x00, 0x45, 0x01, 0x2C, 0x00, 0x45, + 0x01, 0x2D, 0x00, 0x45, 0x01, 0x2E, 0x00, 0x45, 0x01, 0x2F, 0x00, 0x45, + 0x01, 0x30, 0x00, 0x45, 0x01, 0x31, 0x00, 0x45, 0x01, 0x32, 0x00, 0x45, + 0x01, 0x33, 0x00, 0x45, 0x01, 0x34, 0x00, 0x45, 0x01, 0x35, 0x00, 0x45, + 0x01, 0x37, 0x00, 0x45, 0x01, 0x38, 0x00, 0x45, 0x01, 0x39, 0x00, 0x45, + 0x01, 0x3A, 0x00, 0x45, 0x01, 0x3B, 0x00, 0x45, 0x01, 0x3C, 0x00, 0x45, + 0x01, 0x3D, 0x00, 0x45, 0x01, 0x3E, 0x00, 0x45, 0x01, 0x3F, 0x00, 0x45, + 0x01, 0x40, 0x00, 0x45, 0x01, 0x77, 0x00, 0x45, 0x01, 0x78, 0x00, 0x45, + 0x01, 0x79, 0x00, 0x45, 0x01, 0x7A, 0x00, 0x45, 0x01, 0x7B, 0x00, 0x45, + 0x01, 0x7C, 0x00, 0x45, 0x01, 0x7D, 0x00, 0x45, 0x01, 0x80, 0x00, 0x45, + 0x01, 0x81, 0x00, 0x45, 0x01, 0x82, 0x00, 0x45, 0x01, 0x83, 0x00, 0x45, + 0x01, 0x84, 0x00, 0x45, 0x01, 0x85, 0x00, 0x45, 0x01, 0x86, 0x00, 0x45, + 0x01, 0x87, 0x00, 0x45, 0x01, 0x88, 0x00, 0x45, 0x01, 0x89, 0x00, 0x45, + 0x01, 0x8A, 0x00, 0x45, 0x01, 0x8B, 0x00, 0x45, 0x01, 0x8C, 0x00, 0x45, + 0x01, 0x9A, 0x00, 0x45, 0x02, 0x42, 0x00, 0x45, 0x02, 0x44, 0x00, 0x45, + 0x02, 0x45, 0x00, 0x45, 0x02, 0x46, 0x00, 0x45, 0x02, 0x47, 0x00, 0x45, + 0x02, 0x48, 0x00, 0x45, 0x02, 0x49, 0x00, 0x45, 0x02, 0x88, 0x00, 0x45, + 0x02, 0x8A, 0x00, 0x45, 0x02, 0x8B, 0x00, 0x45, 0x02, 0x8C, 0x00, 0x45, + 0x02, 0x8D, 0x00, 0x45, 0x02, 0x8F, 0x00, 0x45, 0x02, 0x9E, 0x00, 0x45, + 0x02, 0x9F, 0x00, 0x45, 0x02, 0xA0, 0x00, 0x45, 0x02, 0xA1, 0x00, 0x45, + 0x02, 0xA2, 0x00, 0x45, 0x02, 0xA3, 0x00, 0x45, 0x02, 0xA4, 0x00, 0x45, + 0x02, 0xA5, 0x00, 0x45, 0x02, 0xA8, 0x00, 0x45, 0x02, 0xA9, 0x00, 0x45, + 0x02, 0xAA, 0x00, 0x45, 0x02, 0xAB, 0x00, 0x45, 0x02, 0xAC, 0x00, 0x45, + 0x02, 0xAD, 0x00, 0x45, 0x02, 0xAE, 0x00, 0x45, 0x02, 0xAF, 0x00, 0x45, + 0x02, 0xB0, 0x00, 0x45, 0x02, 0xC2, 0x00, 0x45, 0x02, 0xD6, 0x00, 0x45, + 0x02, 0xD7, 0x00, 0x45, 0x02, 0xD9, 0x00, 0x45, 0x02, 0xDA, 0x00, 0x45, + 0x02, 0xDB, 0x00, 0x45, 0x02, 0xDC, 0x00, 0x45, 0x02, 0xDD, 0x00, 0x45, + 0x02, 0xDF, 0x00, 0x45, 0x02, 0xE0, 0x00, 0x45, 0x02, 0xE1, 0x00, 0x45, + 0x02, 0xE3, 0x00, 0x45, 0x02, 0xE4, 0x00, 0x45, 0x02, 0xE6, 0x00, 0x45, + 0x02, 0xE7, 0x00, 0x45, 0x02, 0xE8, 0x00, 0x45, 0x02, 0xE9, 0x00, 0x45, + 0x02, 0xEA, 0x00, 0x45, 0x02, 0xEB, 0x00, 0x45, 0x02, 0xEC, 0x00, 0x45, + 0x02, 0xED, 0x00, 0x45, 0x02, 0xEE, 0x00, 0x45, 0x02, 0xEF, 0x00, 0x45, + 0x02, 0xF4, 0x00, 0x45, 0x02, 0xF5, 0x00, 0x45, 0x02, 0xF6, 0x00, 0x45, + 0x02, 0xF7, 0x00, 0x45, 0x02, 0xF8, 0x00, 0x45, 0x02, 0xF9, 0x00, 0x45, + 0x02, 0xFA, 0x00, 0x45, 0x02, 0xFB, 0x00, 0x45, 0x02, 0xFC, 0x00, 0x45, + 0x03, 0x00, 0x00, 0x45, 0x03, 0x01, 0x00, 0x45, 0x03, 0x4D, 0x00, 0x45, + 0x03, 0x76, 0x00, 0x45, 0x03, 0x77, 0x00, 0x45, 0x03, 0x87, 0x00, 0x45, + 0x03, 0x88, 0x00, 0x45, 0x03, 0x89, 0x00, 0x45, 0x03, 0x8A, 0x00, 0x45, + 0x03, 0x8B, 0x00, 0x45, 0x03, 0x8C, 0x00, 0x45, 0x03, 0x8D, 0x00, 0x45, + 0x03, 0x8E, 0x00, 0x45, 0x03, 0x8F, 0x00, 0x45, 0x03, 0x90, 0x00, 0x45, + 0x03, 0x91, 0x00, 0x45, 0x03, 0x92, 0x00, 0x45, 0x03, 0x93, 0x00, 0x45, + 0x03, 0x94, 0x00, 0x45, 0x03, 0x95, 0x00, 0x45, 0x03, 0x96, 0x00, 0x45, + 0x03, 0x97, 0x00, 0x45, 0x03, 0x98, 0x00, 0x45, 0x03, 0x99, 0x00, 0x45, + 0x03, 0x9A, 0x00, 0x45, 0x03, 0x9B, 0x00, 0x45, 0x03, 0x9C, 0x00, 0x45, + 0x03, 0x9D, 0x00, 0x45, 0x03, 0x9E, 0x00, 0x45, 0x03, 0x9F, 0x00, 0x45, + 0x03, 0xA0, 0x00, 0x45, 0x03, 0xA1, 0x00, 0x45, 0x03, 0xA2, 0x00, 0x45, + 0x03, 0xA3, 0x00, 0x45, 0x03, 0xA4, 0x00, 0x45, 0x03, 0xA5, 0x00, 0x45, + 0x03, 0xA6, 0x00, 0x45, 0x03, 0xA7, 0x00, 0x45, 0x03, 0xA8, 0x00, 0x45, + 0x03, 0xA9, 0x00, 0x45, 0x03, 0xAA, 0x00, 0x45, 0x03, 0xAB, 0x00, 0x45, + 0x03, 0xAC, 0x00, 0x45, 0x03, 0xAD, 0x00, 0x45, 0x03, 0xAE, 0x00, 0x45, + 0x03, 0xAF, 0x00, 0x45, 0x03, 0xB0, 0x00, 0x45, 0x03, 0xB1, 0x00, 0x45, + 0x04, 0x07, 0x00, 0x45, 0x04, 0x08, 0x00, 0x45, 0x04, 0x0C, 0x00, 0x45, + 0x04, 0x2A, 0x00, 0x45, 0x04, 0x2B, 0x00, 0x45, 0x04, 0x31, 0x00, 0x45, + 0x04, 0x32, 0x00, 0x45, 0x04, 0x33, 0x00, 0x45, 0x04, 0x36, 0x00, 0x45, + 0x04, 0x39, 0x00, 0x45, 0x04, 0x3E, 0x00, 0x45, 0x04, 0x40, 0x00, 0x45, + 0x04, 0x41, 0x00, 0x45, 0x04, 0x43, 0x00, 0x45, 0x04, 0x44, 0x00, 0x45, + 0x04, 0x46, 0x00, 0x45, 0x04, 0x48, 0x00, 0x45, 0x04, 0x4A, 0x00, 0x45, + 0x04, 0x4B, 0x00, 0x45, 0x05, 0x03, 0x00, 0x45, 0x05, 0x25, 0x00, 0x45, + 0x05, 0x36, 0x00, 0x45, 0x05, 0x39, 0x00, 0x45, 0x05, 0x3A, 0x00, 0x45, + 0x05, 0xAE, 0x00, 0x45, 0x06, 0x1B, 0x00, 0x45, 0x06, 0xFF, 0x00, 0x45, + 0x07, 0x3D, 0x00, 0x45, 0x07, 0x3E, 0x00, 0x45, 0x07, 0x3F, 0x00, 0x45, + 0x07, 0x40, 0x00, 0x45, 0x07, 0x41, 0x00, 0x45, 0x07, 0x5C, 0x00, 0x45, + 0x07, 0xEA, 0x00, 0x45, 0x07, 0xEB, 0x00, 0x45, 0x07, 0xEC, 0x00, 0x45, + 0x07, 0xED, 0x00, 0x45, 0x07, 0xEF, 0x00, 0x45, 0x07, 0xF0, 0x00, 0x45, + 0x07, 0xF1, 0x00, 0x45, 0x07, 0xF6, 0x00, 0x45, 0x08, 0x09, 0x00, 0x45, + 0x08, 0x0A, 0x00, 0x45, 0x08, 0x0C, 0x00, 0x45, 0x08, 0x0D, 0x00, 0x45, + 0x08, 0x0E, 0x00, 0x45, 0x08, 0x0F, 0x00, 0x45, 0x08, 0x10, 0x00, 0x45, + 0x08, 0x11, 0x00, 0x45, 0x08, 0x12, 0x00, 0x45, 0x08, 0x14, 0x00, 0x45, + 0x08, 0x15, 0x00, 0x45, 0x08, 0x16, 0x00, 0x45, 0x08, 0x19, 0x00, 0x45, + 0x08, 0x1A, 0x00, 0x45, 0x08, 0x1B, 0x00, 0x45, 0x08, 0x1C, 0x00, 0x45, + 0x08, 0x1D, 0x00, 0x45, 0x08, 0x1E, 0x00, 0x45, 0x08, 0x1F, 0x00, 0x45, + 0x08, 0x20, 0x00, 0x45, 0x08, 0x21, 0x00, 0x45, 0x08, 0x29, 0x00, 0x45, + 0x08, 0x2A, 0x00, 0x45, 0x08, 0x2B, 0x00, 0x45, 0x08, 0x2C, 0x00, 0x45, + 0x08, 0x52, 0x00, 0x45, 0x08, 0x53, 0x00, 0x45, 0x08, 0x5D, 0x00, 0x45, + 0x08, 0x5E, 0x00, 0x45, 0x08, 0x5F, 0x00, 0x45, 0x08, 0x67, 0x00, 0x45, + 0x08, 0x68, 0x00, 0x45, 0x08, 0x69, 0x00, 0x45, 0x08, 0x6A, 0x00, 0x45, + 0x08, 0x82, 0x00, 0x45, 0x08, 0x83, 0x00, 0x45, 0x08, 0x84, 0x00, 0x45, + 0x08, 0x85, 0x00, 0x45, 0x08, 0x86, 0x00, 0x45, 0x08, 0x87, 0x00, 0x45, + 0x08, 0x88, 0x00, 0x45, 0x08, 0x89, 0x00, 0x45, 0x08, 0x8A, 0x00, 0x45, + 0x08, 0x9D, 0x00, 0x45, 0x08, 0x9E, 0x00, 0x45, 0x08, 0x9F, 0x00, 0x45, + 0x08, 0xA0, 0x00, 0x45, 0x08, 0xA1, 0x00, 0x45, 0x08, 0xA2, 0x00, 0x45, + 0x08, 0xA3, 0x00, 0x45, 0x08, 0xAD, 0x00, 0x45, 0x08, 0xB2, 0x00, 0x45, + 0x08, 0xEA, 0x00, 0x45, 0x09, 0x00, 0x00, 0x45, 0x09, 0x01, 0x00, 0x45, + 0x09, 0x02, 0x00, 0x45, 0x09, 0x03, 0x00, 0x45, 0x09, 0x05, 0x00, 0x45, + 0x09, 0x06, 0x00, 0x45, 0x09, 0x07, 0x00, 0x45, 0x09, 0x0C, 0x00, 0x45, + 0x09, 0x1A, 0x00, 0x45, 0x09, 0x34, 0x00, 0x45, 0x09, 0x45, 0x00, 0x45, + 0x09, 0x52, 0x00, 0x45, 0x09, 0x7B, 0x00, 0x45, 0x09, 0x7C, 0x00, 0x45, + 0x09, 0x7F, 0x00, 0x45, 0x09, 0x80, 0x00, 0x45, 0x09, 0x81, 0x00, 0x45, + 0x09, 0x86, 0x00, 0x45, 0x09, 0x88, 0x00, 0x45, 0x09, 0x8A, 0x00, 0x45, + 0x09, 0x8C, 0x00, 0x45, 0x09, 0x8D, 0x00, 0x45, 0x09, 0x97, 0x00, 0x45, + 0x09, 0xC8, 0x00, 0x45, 0x09, 0xC9, 0x00, 0x45, 0x09, 0xE7, 0x00, 0x45, + 0x09, 0xE8, 0x00, 0x45, 0x09, 0xE9, 0x00, 0x45, 0x09, 0xEA, 0x00, 0x45, + 0x09, 0xEF, 0x00, 0x45, 0x09, 0xF6, 0x00, 0x45, 0x0B, 0x42, 0x00, 0x45, + 0x0B, 0x48, 0x00, 0x45, 0x0B, 0x49, 0x00, 0x45, 0x01, 0xAE, 0x00, 0x41, + 0x00, 0x51, 0x00, 0x42, 0x00, 0x51, 0x00, 0x43, 0x00, 0x51, 0x00, 0x44, + 0x00, 0x51, 0x00, 0x45, 0x00, 0x51, 0x00, 0x46, 0x00, 0x51, 0x00, 0x47, + 0x00, 0x51, 0x00, 0x48, 0x00, 0x51, 0x00, 0x54, 0x00, 0x51, 0x00, 0x55, + 0x00, 0x51, 0x00, 0x56, 0x00, 0x51, 0x00, 0x57, 0x00, 0x51, 0x00, 0x58, + 0x00, 0x51, 0x00, 0x59, 0x00, 0x51, 0x00, 0x5A, 0x00, 0x51, 0x00, 0x5B, + 0x00, 0x51, 0x00, 0x5C, 0x00, 0x51, 0x00, 0x5D, 0x00, 0x51, 0x00, 0x5E, + 0x00, 0x51, 0x00, 0x5F, 0x00, 0x51, 0x00, 0x60, 0x00, 0x51, 0x00, 0x61, + 0x00, 0x51, 0x00, 0x62, 0x00, 0x51, 0x00, 0x63, 0x00, 0x51, 0x00, 0x64, + 0x00, 0x51, 0x00, 0x65, 0x00, 0x51, 0x00, 0x66, 0x00, 0x51, 0x00, 0x67, + 0x00, 0x51, 0x00, 0x68, 0x00, 0x51, 0x00, 0x69, 0x00, 0x51, 0x00, 0x6A, + 0x00, 0x51, 0x00, 0x6B, 0x00, 0x51, 0x00, 0x6C, 0x00, 0x51, 0x00, 0x6D, + 0x00, 0x51, 0x00, 0x6E, 0x00, 0x51, 0x00, 0x6F, 0x00, 0x51, 0x00, 0x70, + 0x00, 0x51, 0x00, 0x71, 0x00, 0x51, 0x00, 0x72, 0x00, 0x51, 0x00, 0x73, + 0x00, 0x51, 0x00, 0x74, 0x00, 0x51, 0x00, 0x75, 0x00, 0x51, 0x00, 0x76, + 0x00, 0x51, 0x00, 0x77, 0x00, 0x51, 0x00, 0x78, 0x00, 0x51, 0x00, 0x79, + 0x00, 0x51, 0x00, 0x7B, 0x00, 0x51, 0x00, 0x84, 0x00, 0x51, 0x00, 0x85, + 0x00, 0x51, 0x00, 0x86, 0x00, 0x51, 0x00, 0x87, 0x00, 0x51, 0x00, 0x88, + 0x00, 0x51, 0x00, 0x89, 0x00, 0x51, 0x00, 0x8A, 0x00, 0x45, 0x00, 0x8B, + 0x00, 0x51, 0x00, 0xA1, 0x00, 0x51, 0x00, 0xA2, 0x00, 0x51, 0x00, 0xA3, + 0x00, 0x51, 0x00, 0xA4, 0x00, 0x51, 0x00, 0xA5, 0x00, 0x51, 0x00, 0xA6, + 0x00, 0x51, 0x00, 0xA7, 0x00, 0x51, 0x00, 0xA8, 0x00, 0x51, 0x00, 0xA9, + 0x00, 0x51, 0x00, 0xAA, 0x00, 0x51, 0x00, 0xAB, 0x00, 0x51, 0x00, 0xAC, + 0x00, 0x51, 0x00, 0xAD, 0x00, 0x51, 0x00, 0xAE, 0x00, 0x51, 0x00, 0xAF, + 0x00, 0x51, 0x00, 0xB0, 0x00, 0x51, 0x00, 0xB1, 0x00, 0x51, 0x00, 0xB2, + 0x00, 0x51, 0x00, 0xB3, 0x00, 0x51, 0x00, 0xB4, 0x00, 0x51, 0x00, 0xB5, + 0x00, 0x51, 0x00, 0xB6, 0x00, 0x51, 0x00, 0xB7, 0x00, 0x51, 0x00, 0xB8, + 0x00, 0x51, 0x00, 0xB9, 0x00, 0x51, 0x00, 0xBA, 0x00, 0x51, 0x00, 0xBB, + 0x00, 0x51, 0x00, 0xBC, 0x00, 0x51, 0x00, 0xBD, 0x00, 0x51, 0x00, 0xBE, + 0x00, 0x51, 0x00, 0xBF, 0x00, 0x51, 0x00, 0xC0, 0x00, 0x51, 0x00, 0xC1, + 0x00, 0x51, 0x00, 0xC2, 0x00, 0x51, 0x00, 0xC3, 0x00, 0x51, 0x00, 0xC4, + 0x00, 0x51, 0x00, 0xC5, 0x00, 0x51, 0x00, 0xC6, 0x00, 0x51, 0x00, 0xCA, + 0x00, 0x51, 0x00, 0xCB, 0x00, 0x51, 0x00, 0xCC, 0x00, 0x51, 0x00, 0xD1, + 0x00, 0x51, 0x00, 0xD2, 0x00, 0x51, 0x00, 0xD3, 0x00, 0x51, 0x00, 0xD6, + 0x00, 0x51, 0x00, 0xD7, 0x00, 0x51, 0x00, 0xD8, 0x00, 0x51, 0x00, 0xD9, + 0x00, 0x51, 0x00, 0xE8, 0x00, 0x51, 0x00, 0xEA, 0x00, 0x51, 0x01, 0x0F, + 0x00, 0x51, 0x01, 0x10, 0x00, 0x51, 0x01, 0x11, 0x00, 0x51, 0x01, 0x12, + 0x00, 0x51, 0x01, 0x13, 0x00, 0x51, 0x01, 0x14, 0x00, 0x51, 0x01, 0x15, + 0x00, 0x5D, 0x01, 0x16, 0x00, 0x51, 0x01, 0x17, 0x00, 0x51, 0x01, 0x18, + 0x00, 0x51, 0x01, 0x19, 0x00, 0x51, 0x01, 0x1A, 0x00, 0x51, 0x01, 0x1B, + 0x00, 0x51, 0x01, 0x1C, 0x00, 0x51, 0x01, 0x1D, 0x00, 0x51, 0x01, 0x1E, + 0x00, 0x51, 0x01, 0x1F, 0x00, 0x51, 0x01, 0x20, 0x00, 0x51, 0x01, 0x21, + 0x00, 0x51, 0x01, 0x22, 0x00, 0x51, 0x01, 0x23, 0x00, 0x51, 0x01, 0x24, + 0x00, 0x51, 0x01, 0x25, 0x00, 0x51, 0x01, 0x26, 0x00, 0x51, 0x01, 0x27, + 0x00, 0x51, 0x01, 0x28, 0x00, 0x51, 0x01, 0x29, 0x00, 0x51, 0x01, 0x2A, + 0x00, 0x51, 0x01, 0x2B, 0x00, 0x51, 0x01, 0x2C, 0x00, 0x51, 0x01, 0x2D, + 0x00, 0x51, 0x01, 0x2E, 0x00, 0x51, 0x01, 0x2F, 0x00, 0x51, 0x01, 0x30, + 0x00, 0x51, 0x01, 0x31, 0x00, 0x51, 0x01, 0x32, 0x00, 0x51, 0x01, 0x33, + 0x00, 0x51, 0x01, 0x34, 0x00, 0x51, 0x01, 0x35, 0x00, 0x51, 0x01, 0x36, + 0x00, 0x45, 0x01, 0x37, 0x00, 0x51, 0x01, 0x38, 0x00, 0x51, 0x01, 0x39, + 0x00, 0x51, 0x01, 0x3A, 0x00, 0x51, 0x01, 0x3B, 0x00, 0x51, 0x01, 0x3C, + 0x00, 0x51, 0x01, 0x3D, 0x00, 0x51, 0x01, 0x3E, 0x00, 0x51, 0x01, 0x3F, + 0x00, 0x51, 0x01, 0x40, 0x00, 0x51, 0x01, 0x77, 0x00, 0x51, 0x01, 0x78, + 0x00, 0x51, 0x01, 0x79, 0x00, 0x51, 0x01, 0x7A, 0x00, 0x51, 0x01, 0x7B, + 0x00, 0x51, 0x01, 0x7C, 0x00, 0x51, 0x01, 0x7D, 0x00, 0x51, 0x01, 0x80, + 0x00, 0x51, 0x01, 0x81, 0x00, 0x51, 0x01, 0x82, 0x00, 0x51, 0x01, 0x83, + 0x00, 0x51, 0x01, 0x84, 0x00, 0x51, 0x01, 0x85, 0x00, 0x51, 0x01, 0x86, + 0x00, 0x51, 0x01, 0x87, 0x00, 0x51, 0x01, 0x88, 0x00, 0x51, 0x01, 0x89, + 0x00, 0x51, 0x01, 0x8A, 0x00, 0x51, 0x01, 0x8B, 0x00, 0x51, 0x01, 0x8C, + 0x00, 0x51, 0x01, 0x9A, 0x00, 0x51, 0x01, 0x9B, 0x00, 0x5D, 0x01, 0x9C, + 0x00, 0x5D, 0x01, 0x9D, 0x00, 0x5D, 0x01, 0x9E, 0x00, 0x5D, 0x01, 0x9F, + 0x00, 0x5D, 0x01, 0xA0, 0x00, 0x5D, 0x01, 0xA1, 0x00, 0x5D, 0x01, 0xA2, + 0x00, 0x5D, 0x01, 0xA3, 0x00, 0x5D, 0x01, 0xA5, 0x00, 0x5D, 0x01, 0xA6, + 0x00, 0x5D, 0x01, 0xA7, 0x00, 0x5D, 0x02, 0x42, 0x00, 0x51, 0x02, 0x44, + 0x00, 0x51, 0x02, 0x45, 0x00, 0x51, 0x02, 0x46, 0x00, 0x51, 0x02, 0x47, + 0x00, 0x51, 0x02, 0x48, 0x00, 0x51, 0x02, 0x49, 0x00, 0x51, 0x02, 0x88, + 0x00, 0x51, 0x02, 0x8A, 0x00, 0x51, 0x02, 0x8B, 0x00, 0x51, 0x02, 0x8C, + 0x00, 0x51, 0x02, 0x8D, 0x00, 0x51, 0x02, 0x8F, 0x00, 0x51, 0x02, 0x9E, + 0x00, 0x51, 0x02, 0x9F, 0x00, 0x51, 0x02, 0xA0, 0x00, 0x51, 0x02, 0xA1, + 0x00, 0x51, 0x02, 0xA2, 0x00, 0x51, 0x02, 0xA3, 0x00, 0x51, 0x02, 0xA4, + 0x00, 0x51, 0x02, 0xA8, 0x00, 0x51, 0x02, 0xA9, 0x00, 0x51, 0x02, 0xAA, + 0x00, 0x51, 0x02, 0xAB, 0x00, 0x51, 0x02, 0xAC, 0x00, 0x51, 0x02, 0xAD, + 0x00, 0x51, 0x02, 0xAE, 0x00, 0x51, 0x02, 0xAF, 0x00, 0x51, 0x02, 0xB0, + 0x00, 0x51, 0x02, 0xB1, 0x00, 0x45, 0x02, 0xB2, 0x00, 0x45, 0x02, 0xB3, + 0x00, 0x45, 0x02, 0xB4, 0x00, 0x45, 0x02, 0xB5, 0x00, 0x51, 0x02, 0xB6, + 0x00, 0x45, 0x02, 0xB7, 0x00, 0x45, 0x02, 0xB8, 0x00, 0x45, 0x02, 0xBA, + 0x00, 0x45, 0x02, 0xBB, 0x00, 0x45, 0x02, 0xBC, 0x00, 0x45, 0x02, 0xBD, + 0x00, 0x51, 0x02, 0xBE, 0x00, 0x45, 0x02, 0xBF, 0x00, 0x45, 0x02, 0xC0, + 0x00, 0x45, 0x02, 0xC1, 0x00, 0x45, 0x02, 0xC2, 0x00, 0x68, 0x02, 0xC3, + 0x00, 0x45, 0x02, 0xC4, 0x00, 0x45, 0x02, 0xC5, 0x00, 0x45, 0x02, 0xC6, + 0x00, 0x45, 0x02, 0xC7, 0x00, 0x45, 0x02, 0xC8, 0x00, 0x45, 0x02, 0xCB, + 0x00, 0x45, 0x02, 0xCC, 0x00, 0x45, 0x02, 0xCD, 0x00, 0x45, 0x02, 0xCF, + 0x00, 0x45, 0x02, 0xD2, 0x00, 0x45, 0x02, 0xD3, 0x00, 0x45, 0x02, 0xD4, + 0x00, 0x45, 0x02, 0xD5, 0x00, 0x45, 0x02, 0xD6, 0x00, 0x51, 0x02, 0xD7, + 0x00, 0x51, 0x02, 0xD9, 0x00, 0x51, 0x02, 0xDA, 0x00, 0x51, 0x02, 0xDB, + 0x00, 0x51, 0x02, 0xDC, 0x00, 0x51, 0x02, 0xDD, 0x00, 0x51, 0x02, 0xDF, + 0x00, 0x51, 0x02, 0xE0, 0x00, 0x51, 0x02, 0xE1, 0x00, 0x51, 0x02, 0xE2, + 0x00, 0x51, 0x02, 0xE3, 0x00, 0x51, 0x02, 0xE4, 0x00, 0x51, 0x02, 0xE6, + 0x00, 0x51, 0x02, 0xE7, 0x00, 0x51, 0x02, 0xE8, 0x00, 0x51, 0x02, 0xE9, + 0x00, 0x51, 0x02, 0xEA, 0x00, 0x51, 0x02, 0xEB, 0x00, 0x51, 0x02, 0xEC, + 0x00, 0x51, 0x02, 0xED, 0x00, 0x51, 0x02, 0xEE, 0x00, 0x51, 0x02, 0xEF, + 0x00, 0x51, 0x02, 0xF4, 0x00, 0x51, 0x02, 0xF5, 0x00, 0x51, 0x02, 0xF6, + 0x00, 0x51, 0x02, 0xF7, 0x00, 0x51, 0x02, 0xF8, 0x00, 0x51, 0x02, 0xF9, + 0x00, 0x51, 0x02, 0xFA, 0x00, 0x51, 0x02, 0xFB, 0x00, 0x51, 0x02, 0xFC, + 0x00, 0x51, 0x03, 0x0A, 0x00, 0x45, 0x03, 0x4D, 0x00, 0x51, 0x03, 0x76, + 0x00, 0x51, 0x03, 0x77, 0x00, 0x51, 0x03, 0x87, 0x00, 0x51, 0x03, 0x88, + 0x00, 0x51, 0x03, 0x89, 0x00, 0x51, 0x03, 0x8A, 0x00, 0x51, 0x03, 0x8B, + 0x00, 0x51, 0x03, 0x8C, 0x00, 0x51, 0x03, 0x8D, 0x00, 0x51, 0x03, 0x8E, + 0x00, 0x51, 0x03, 0x8F, 0x00, 0x51, 0x03, 0x90, 0x00, 0x51, 0x04, 0x07, + 0x00, 0x51, 0x04, 0x08, 0x00, 0x51, 0x04, 0x0C, 0x00, 0x51, 0x04, 0x2A, + 0x00, 0x51, 0x04, 0x2B, 0x00, 0x51, 0x04, 0x31, 0x00, 0x51, 0x04, 0x32, + 0x00, 0x51, 0x04, 0x33, 0x00, 0x51, 0x04, 0x36, 0x00, 0x51, 0x04, 0x39, + 0x00, 0x51, 0x04, 0x3A, 0x00, 0x5D, 0x04, 0x3E, 0x00, 0x51, 0x04, 0x3F, + 0x00, 0x5D, 0x04, 0x40, 0x00, 0x51, 0x04, 0x41, 0x00, 0x51, 0x04, 0x42, + 0x00, 0x5D, 0x04, 0x43, 0x00, 0x51, 0x04, 0x44, 0x00, 0x51, 0x04, 0x46, + 0x00, 0x51, 0x04, 0x48, 0x00, 0x51, 0x04, 0x4A, 0x00, 0x51, 0x04, 0x4B, + 0x00, 0x51, 0x04, 0x52, 0x00, 0x5D, 0x05, 0x0B, 0x00, 0x45, 0x05, 0x25, + 0x00, 0x51, 0x05, 0x36, 0x00, 0x51, 0x05, 0x39, 0x00, 0x51, 0x05, 0x3A, + 0x00, 0x51, 0x05, 0xAE, 0x00, 0x51, 0x06, 0x1B, 0x00, 0x51, 0x06, 0x21, + 0x00, 0x45, 0x06, 0xFF, 0x00, 0x51, 0x07, 0x3D, 0x00, 0x51, 0x07, 0x3E, + 0x00, 0x51, 0x07, 0x3F, 0x00, 0x51, 0x07, 0x40, 0x00, 0x51, 0x07, 0x41, + 0x00, 0x51, 0x07, 0x55, 0x00, 0x5D, 0x07, 0x5C, 0x00, 0x51, 0x07, 0xEA, + 0x00, 0x51, 0x07, 0xEB, 0x00, 0x51, 0x07, 0xEC, 0x00, 0x51, 0x07, 0xED, + 0x00, 0x51, 0x07, 0xEF, 0x00, 0x51, 0x07, 0xF0, 0x00, 0x51, 0x07, 0xF1, + 0x00, 0x51, 0x07, 0xF6, 0x00, 0x51, 0x08, 0x09, 0x00, 0x51, 0x08, 0x0A, + 0x00, 0x51, 0x08, 0x0C, 0x00, 0x51, 0x08, 0x0D, 0x00, 0x51, 0x08, 0x0E, + 0x00, 0x51, 0x08, 0x0F, 0x00, 0x51, 0x08, 0x10, 0x00, 0x51, 0x08, 0x11, + 0x00, 0x51, 0x08, 0x12, 0x00, 0x51, 0x08, 0x14, 0x00, 0x51, 0x08, 0x15, + 0x00, 0x51, 0x08, 0x16, 0x00, 0x51, 0x08, 0x19, 0x00, 0x51, 0x08, 0x1A, + 0x00, 0x51, 0x08, 0x1B, 0x00, 0x51, 0x08, 0x1C, 0x00, 0x51, 0x08, 0x1D, + 0x00, 0x51, 0x08, 0x1E, 0x00, 0x51, 0x08, 0x1F, 0x00, 0x51, 0x08, 0x20, + 0x00, 0x51, 0x08, 0x21, 0x00, 0x51, 0x08, 0x29, 0x00, 0x51, 0x08, 0x2A, + 0x00, 0x51, 0x08, 0x2B, 0x00, 0x51, 0x08, 0x2C, 0x00, 0x51, 0x08, 0x31, + 0x00, 0x5D, 0x08, 0x32, 0x00, 0x5D, 0x08, 0x52, 0x00, 0x51, 0x08, 0x53, + 0x00, 0x51, 0x08, 0x5D, 0x00, 0x51, 0x08, 0x5E, 0x00, 0x51, 0x08, 0x5F, + 0x00, 0x51, 0x08, 0x60, 0x00, 0x45, 0x08, 0x61, 0x00, 0x45, 0x08, 0x62, + 0x00, 0x45, 0x08, 0x63, 0x00, 0x45, 0x08, 0x64, 0x00, 0x45, 0x08, 0x65, + 0x00, 0x45, 0x08, 0x67, 0x00, 0x51, 0x08, 0x68, 0x00, 0x51, 0x08, 0x69, + 0x00, 0x51, 0x08, 0x6A, 0x00, 0x51, 0x08, 0x9C, 0x00, 0x45, 0x08, 0x9D, + 0x00, 0x51, 0x08, 0x9E, 0x00, 0x51, 0x08, 0x9F, 0x00, 0x51, 0x08, 0xA0, + 0x00, 0x51, 0x08, 0xA1, 0x00, 0x51, 0x08, 0xA2, 0x00, 0x51, 0x08, 0xA3, + 0x00, 0x51, 0x08, 0xAD, 0x00, 0x51, 0x08, 0xB2, 0x00, 0x51, 0x08, 0xEA, + 0x00, 0x51, 0x09, 0x00, 0x00, 0x51, 0x09, 0x01, 0x00, 0x51, 0x09, 0x02, + 0x00, 0x51, 0x09, 0x03, 0x00, 0x51, 0x09, 0x05, 0x00, 0x51, 0x09, 0x06, + 0x00, 0x51, 0x09, 0x07, 0x00, 0x51, 0x09, 0x0C, 0x00, 0x51, 0x09, 0x27, + 0x00, 0x5D, 0x09, 0x34, 0x00, 0x51, 0x09, 0x3B, 0x00, 0x45, 0x09, 0x45, + 0x00, 0x51, 0x09, 0x52, 0x00, 0x51, 0x09, 0x7B, 0x00, 0x51, 0x09, 0x7C, + 0x00, 0x51, 0x09, 0x7F, 0x00, 0x51, 0x09, 0x80, 0x00, 0x51, 0x09, 0x81, + 0x00, 0x51, 0x09, 0x83, 0x00, 0x5D, 0x09, 0x86, 0x00, 0x51, 0x09, 0x88, + 0x00, 0x51, 0x09, 0x8A, 0x00, 0x51, 0x09, 0x8C, 0x00, 0x51, 0x09, 0x8D, + 0x00, 0x51, 0x09, 0x93, 0x00, 0x5D, 0x09, 0x97, 0x00, 0x51, 0x09, 0xC8, + 0x00, 0x51, 0x09, 0xC9, 0x00, 0x51, 0x09, 0xE7, 0x00, 0x51, 0x09, 0xE8, + 0x00, 0x51, 0x09, 0xE9, 0x00, 0x51, 0x09, 0xEA, 0x00, 0x51, 0x09, 0xEF, + 0x00, 0x51, 0x09, 0xF6, 0x00, 0x51, 0x0B, 0x48, 0x00, 0x51, 0x0B, 0x49, + 0x00, 0x51, 0x02, 0x07, 0x00, 0x41, 0x00, 0x0F, 0x00, 0x42, 0x00, 0x0F, + 0x00, 0x43, 0x00, 0x0F, 0x00, 0x44, 0x00, 0x0F, 0x00, 0x45, 0x00, 0x0F, + 0x00, 0x46, 0x00, 0x0F, 0x00, 0x47, 0x00, 0x0F, 0x00, 0x48, 0x00, 0x0F, + 0x00, 0x54, 0x00, 0x0F, 0x00, 0x55, 0x00, 0x0F, 0x00, 0x56, 0x00, 0x0F, + 0x00, 0x57, 0x00, 0x0F, 0x00, 0x58, 0x00, 0x0F, 0x00, 0x59, 0x00, 0x0F, + 0x00, 0x5A, 0x00, 0x0F, 0x00, 0x5B, 0x00, 0x0F, 0x00, 0x5C, 0x00, 0x0F, + 0x00, 0x5D, 0x00, 0x0F, 0x00, 0x5E, 0x00, 0x0F, 0x00, 0x5F, 0x00, 0x0F, + 0x00, 0x60, 0x00, 0x0F, 0x00, 0x61, 0x00, 0x0F, 0x00, 0x62, 0x00, 0x0F, + 0x00, 0x63, 0x00, 0x0F, 0x00, 0x64, 0x00, 0x0F, 0x00, 0x65, 0x00, 0x0F, + 0x00, 0x66, 0x00, 0x0F, 0x00, 0x67, 0x00, 0x0F, 0x00, 0x68, 0x00, 0x0F, + 0x00, 0x69, 0x00, 0x0F, 0x00, 0x6A, 0x00, 0x0F, 0x00, 0x6B, 0x00, 0x0F, + 0x00, 0x6C, 0x00, 0x0F, 0x00, 0x6D, 0x00, 0x0F, 0x00, 0x6E, 0x00, 0x0F, + 0x00, 0x6F, 0x00, 0x0F, 0x00, 0x70, 0x00, 0x0F, 0x00, 0x71, 0x00, 0x0F, + 0x00, 0x72, 0x00, 0x0F, 0x00, 0x73, 0x00, 0x0F, 0x00, 0x74, 0x00, 0x0F, + 0x00, 0x75, 0x00, 0x0F, 0x00, 0x76, 0x00, 0x0F, 0x00, 0x77, 0x00, 0x0F, + 0x00, 0x78, 0x00, 0x0F, 0x00, 0x79, 0x00, 0x0F, 0x00, 0x7B, 0x00, 0x0F, + 0x00, 0x84, 0x00, 0x0F, 0x00, 0x85, 0x00, 0x0F, 0x00, 0x86, 0x00, 0x0F, + 0x00, 0x87, 0x00, 0x0F, 0x00, 0x88, 0x00, 0x0F, 0x00, 0x89, 0x00, 0x0F, + 0x00, 0x8B, 0x00, 0x0F, 0x00, 0xA1, 0x00, 0x0F, 0x00, 0xA2, 0x00, 0x0F, + 0x00, 0xA3, 0x00, 0x0F, 0x00, 0xA4, 0x00, 0x0F, 0x00, 0xA5, 0x00, 0x0F, + 0x00, 0xA6, 0x00, 0x0F, 0x00, 0xA7, 0x00, 0x0F, 0x00, 0xA8, 0x00, 0x0F, + 0x00, 0xA9, 0x00, 0x0F, 0x00, 0xAA, 0x00, 0x0F, 0x00, 0xAB, 0x00, 0x0F, + 0x00, 0xAC, 0x00, 0x0F, 0x00, 0xAD, 0x00, 0x0F, 0x00, 0xAE, 0x00, 0x0F, + 0x00, 0xAF, 0x00, 0x0F, 0x00, 0xB0, 0x00, 0x0F, 0x00, 0xB1, 0x00, 0x0F, + 0x00, 0xB2, 0x00, 0x0F, 0x00, 0xB3, 0x00, 0x0F, 0x00, 0xB4, 0x00, 0x0F, + 0x00, 0xB5, 0x00, 0x0F, 0x00, 0xB6, 0x00, 0x0F, 0x00, 0xB7, 0x00, 0x0F, + 0x00, 0xB8, 0x00, 0x0F, 0x00, 0xB9, 0x00, 0x0F, 0x00, 0xBA, 0x00, 0x0F, + 0x00, 0xBB, 0x00, 0x0F, 0x00, 0xBC, 0x00, 0x0F, 0x00, 0xBD, 0x00, 0x0F, + 0x00, 0xBE, 0x00, 0x0F, 0x00, 0xBF, 0x00, 0x0F, 0x00, 0xC0, 0x00, 0x0F, + 0x00, 0xC1, 0x00, 0x0F, 0x00, 0xC2, 0x00, 0x0F, 0x00, 0xC3, 0x00, 0x0F, + 0x00, 0xC4, 0x00, 0x0F, 0x00, 0xC5, 0x00, 0x0F, 0x00, 0xC6, 0x00, 0x0F, + 0x00, 0xCA, 0x00, 0x0F, 0x00, 0xCB, 0x00, 0x0F, 0x00, 0xCC, 0x00, 0x0F, + 0x00, 0xD1, 0x00, 0x0F, 0x00, 0xD2, 0x00, 0x0F, 0x00, 0xD3, 0x00, 0x0F, + 0x00, 0xD6, 0x00, 0x0F, 0x00, 0xD7, 0x00, 0x0F, 0x00, 0xD8, 0x00, 0x0F, + 0x00, 0xD9, 0x00, 0x0F, 0x00, 0xE8, 0x00, 0x0F, 0x00, 0xEA, 0x00, 0x0F, + 0x01, 0x0F, 0x00, 0x0F, 0x01, 0x10, 0x00, 0x0F, 0x01, 0x11, 0x00, 0x0F, + 0x01, 0x12, 0x00, 0x0F, 0x01, 0x13, 0x00, 0x0F, 0x01, 0x14, 0x00, 0x0F, + 0x01, 0x16, 0x00, 0x0F, 0x01, 0x17, 0x00, 0x0F, 0x01, 0x18, 0x00, 0x0F, + 0x01, 0x19, 0x00, 0x0F, 0x01, 0x1A, 0x00, 0x0F, 0x01, 0x1B, 0x00, 0x0F, + 0x01, 0x1C, 0x00, 0x0F, 0x01, 0x1D, 0x00, 0x0F, 0x01, 0x1E, 0x00, 0x0F, + 0x01, 0x1F, 0x00, 0x0F, 0x01, 0x20, 0x00, 0x0F, 0x01, 0x21, 0x00, 0x0F, + 0x01, 0x22, 0x00, 0x0F, 0x01, 0x23, 0x00, 0x0F, 0x01, 0x24, 0x00, 0x0F, + 0x01, 0x25, 0x00, 0x0F, 0x01, 0x26, 0x00, 0x0F, 0x01, 0x27, 0x00, 0x0F, + 0x01, 0x28, 0x00, 0x0F, 0x01, 0x29, 0x00, 0x0F, 0x01, 0x2A, 0x00, 0x0F, + 0x01, 0x2B, 0x00, 0x0F, 0x01, 0x2C, 0x00, 0x0F, 0x01, 0x2D, 0x00, 0x0F, + 0x01, 0x2E, 0x00, 0x0F, 0x01, 0x2F, 0x00, 0x0F, 0x01, 0x30, 0x00, 0x0F, + 0x01, 0x31, 0x00, 0x0F, 0x01, 0x32, 0x00, 0x0F, 0x01, 0x33, 0x00, 0x0F, + 0x01, 0x34, 0x00, 0x0F, 0x01, 0x35, 0x00, 0x0F, 0x01, 0x37, 0x00, 0x0F, + 0x01, 0x38, 0x00, 0x0F, 0x01, 0x39, 0x00, 0x0F, 0x01, 0x3A, 0x00, 0x0F, + 0x01, 0x3B, 0x00, 0x0F, 0x01, 0x3C, 0x00, 0x0F, 0x01, 0x3D, 0x00, 0x0F, + 0x01, 0x3E, 0x00, 0x0F, 0x01, 0x3F, 0x00, 0x0F, 0x01, 0x40, 0x00, 0x0F, + 0x01, 0x77, 0x00, 0x0F, 0x01, 0x78, 0x00, 0x0F, 0x01, 0x79, 0x00, 0x0F, + 0x01, 0x7A, 0x00, 0x0F, 0x01, 0x7B, 0x00, 0x0F, 0x01, 0x7C, 0x00, 0x0F, + 0x01, 0x7D, 0x00, 0x0F, 0x01, 0x80, 0x00, 0x0F, 0x01, 0x81, 0x00, 0x0F, + 0x01, 0x82, 0x00, 0x0F, 0x01, 0x83, 0x00, 0x0F, 0x01, 0x84, 0x00, 0x0F, + 0x01, 0x85, 0x00, 0x0F, 0x01, 0x86, 0x00, 0x0F, 0x01, 0x87, 0x00, 0x0F, + 0x01, 0x88, 0x00, 0x0F, 0x01, 0x89, 0x00, 0x0F, 0x01, 0x8C, 0x00, 0x0F, + 0x01, 0x9A, 0x00, 0x0F, 0x02, 0x1B, 0x00, 0x23, 0x02, 0x42, 0x00, 0x0F, + 0x02, 0x44, 0x00, 0x0F, 0x02, 0x45, 0x00, 0x0F, 0x02, 0x46, 0x00, 0x0F, + 0x02, 0x47, 0x00, 0x0F, 0x02, 0x48, 0x00, 0x0F, 0x02, 0x49, 0x00, 0x0F, + 0x02, 0x88, 0x00, 0x0F, 0x02, 0x8A, 0x00, 0x0F, 0x02, 0x8B, 0x00, 0x0F, + 0x02, 0x8C, 0x00, 0x0F, 0x02, 0x8D, 0x00, 0x0F, 0x02, 0x8F, 0x00, 0x0F, + 0x02, 0x9E, 0x00, 0x0F, 0x02, 0x9F, 0x00, 0x0F, 0x02, 0xA0, 0x00, 0x0F, + 0x02, 0xA1, 0x00, 0x0F, 0x02, 0xA2, 0x00, 0x0F, 0x02, 0xA3, 0x00, 0x0F, + 0x02, 0xA4, 0x00, 0x0F, 0x02, 0xA8, 0x00, 0x0F, 0x02, 0xA9, 0x00, 0x0F, + 0x02, 0xAA, 0x00, 0x0F, 0x02, 0xAB, 0x00, 0x0F, 0x02, 0xAC, 0x00, 0x0F, + 0x02, 0xAD, 0x00, 0x0F, 0x02, 0xAE, 0x00, 0x0F, 0x02, 0xAF, 0x00, 0x0F, + 0x02, 0xB0, 0x00, 0x0F, 0x02, 0xB1, 0x00, 0x0A, 0x02, 0xB2, 0x00, 0x0A, + 0x02, 0xB3, 0x00, 0x0A, 0x02, 0xB7, 0x00, 0x0A, 0x02, 0xB8, 0x00, 0x0A, + 0x02, 0xBA, 0x00, 0x0A, 0x02, 0xBB, 0x00, 0x0A, 0x02, 0xBC, 0x00, 0x0A, + 0x02, 0xBF, 0x00, 0x0A, 0x02, 0xC0, 0x00, 0x0A, 0x02, 0xC1, 0x00, 0x0A, + 0x02, 0xC4, 0x00, 0x0A, 0x02, 0xC5, 0x00, 0x0A, 0x02, 0xC6, 0x00, 0x0A, + 0x02, 0xCB, 0x00, 0x0A, 0x02, 0xCD, 0x00, 0x0A, 0x02, 0xD6, 0x00, 0x0F, + 0x02, 0xD7, 0x00, 0x0F, 0x02, 0xD9, 0x00, 0x0F, 0x02, 0xDA, 0x00, 0x0F, + 0x02, 0xDB, 0x00, 0x0F, 0x02, 0xDC, 0x00, 0x0F, 0x02, 0xDD, 0x00, 0x0F, + 0x02, 0xDF, 0x00, 0x0F, 0x02, 0xE0, 0x00, 0x0F, 0x02, 0xE1, 0x00, 0x0F, + 0x02, 0xE2, 0x00, 0x0F, 0x02, 0xE3, 0x00, 0x0F, 0x02, 0xE4, 0x00, 0x0F, + 0x02, 0xE6, 0x00, 0x0F, 0x02, 0xE7, 0x00, 0x0F, 0x02, 0xE8, 0x00, 0x0F, + 0x02, 0xE9, 0x00, 0x0F, 0x02, 0xEA, 0x00, 0x0F, 0x02, 0xEB, 0x00, 0x0F, + 0x02, 0xEC, 0x00, 0x0F, 0x02, 0xED, 0x00, 0x0F, 0x02, 0xEE, 0x00, 0x0F, + 0x02, 0xEF, 0x00, 0x0F, 0x02, 0xF4, 0x00, 0x0F, 0x02, 0xF5, 0x00, 0x0F, + 0x02, 0xF6, 0x00, 0x0F, 0x02, 0xF7, 0x00, 0x0F, 0x02, 0xF8, 0x00, 0x0F, + 0x02, 0xF9, 0x00, 0x0F, 0x02, 0xFA, 0x00, 0x0F, 0x02, 0xFB, 0x00, 0x0F, + 0x02, 0xFC, 0x00, 0x0F, 0x02, 0xFE, 0x00, 0x23, 0x02, 0xFF, 0x00, 0x23, + 0x03, 0x02, 0x00, 0x23, 0x03, 0x03, 0x00, 0x23, 0x03, 0x04, 0x00, 0x23, + 0x03, 0x05, 0x00, 0x23, 0x03, 0x06, 0x00, 0x23, 0x03, 0x07, 0x00, 0x23, + 0x03, 0x08, 0x00, 0x23, 0x03, 0x09, 0x00, 0x23, 0x03, 0x0B, 0x00, 0x23, + 0x03, 0x0C, 0x00, 0x23, 0x03, 0x0D, 0x00, 0x23, 0x03, 0x0E, 0x00, 0x23, + 0x03, 0x0F, 0x00, 0x23, 0x03, 0x10, 0x00, 0x23, 0x03, 0x11, 0x00, 0x23, + 0x03, 0x12, 0x00, 0x23, 0x03, 0x13, 0x00, 0x23, 0x03, 0x14, 0x00, 0x23, + 0x03, 0x4B, 0x00, 0x23, 0x03, 0x4C, 0x00, 0x23, 0x03, 0x4D, 0x00, 0x0F, + 0x03, 0x4E, 0x00, 0x23, 0x03, 0x4F, 0x00, 0x23, 0x03, 0x50, 0x00, 0x23, + 0x03, 0x53, 0x00, 0x23, 0x03, 0x54, 0x00, 0x23, 0x03, 0x55, 0x00, 0x23, + 0x03, 0x56, 0x00, 0x23, 0x03, 0x5A, 0x00, 0x23, 0x03, 0x5B, 0x00, 0x23, + 0x03, 0x5C, 0x00, 0x23, 0x03, 0x5D, 0x00, 0x23, 0x03, 0x5E, 0x00, 0x23, + 0x03, 0x5F, 0x00, 0x23, 0x03, 0x60, 0x00, 0x23, 0x03, 0x61, 0x00, 0x23, + 0x03, 0x62, 0x00, 0x23, 0x03, 0x63, 0x00, 0x23, 0x03, 0x64, 0x00, 0x23, + 0x03, 0x76, 0x00, 0x0F, 0x03, 0x77, 0x00, 0x0F, 0x03, 0x87, 0x00, 0x0F, + 0x03, 0x88, 0x00, 0x0F, 0x03, 0x89, 0x00, 0x0F, 0x03, 0x8A, 0x00, 0x0F, + 0x03, 0x8B, 0x00, 0x0F, 0x03, 0x8C, 0x00, 0x0F, 0x03, 0x8D, 0x00, 0x0F, + 0x03, 0x8E, 0x00, 0x0F, 0x03, 0x8F, 0x00, 0x0F, 0x03, 0x90, 0x00, 0x0F, + 0x03, 0xB2, 0x00, 0x23, 0x04, 0x07, 0x00, 0x0F, 0x04, 0x08, 0x00, 0x0F, + 0x04, 0x0C, 0x00, 0x0F, 0x04, 0x2A, 0x00, 0x0F, 0x04, 0x2B, 0x00, 0x0F, + 0x04, 0x31, 0x00, 0x0F, 0x04, 0x32, 0x00, 0x0F, 0x04, 0x33, 0x00, 0x0F, + 0x04, 0x36, 0x00, 0x0F, 0x04, 0x39, 0x00, 0x0F, 0x04, 0x3E, 0x00, 0x0F, + 0x04, 0x40, 0x00, 0x0F, 0x04, 0x41, 0x00, 0x0F, 0x04, 0x43, 0x00, 0x0F, + 0x04, 0x44, 0x00, 0x0F, 0x04, 0x46, 0x00, 0x0F, 0x04, 0x48, 0x00, 0x0F, + 0x04, 0x4A, 0x00, 0x0F, 0x04, 0x4B, 0x00, 0x0F, 0x04, 0x6E, 0x00, 0x23, + 0x04, 0x80, 0x00, 0x23, 0x04, 0x81, 0x00, 0x23, 0x04, 0x82, 0x00, 0x23, + 0x04, 0x83, 0x00, 0x23, 0x04, 0x84, 0x00, 0x23, 0x04, 0x85, 0x00, 0x23, + 0x04, 0x86, 0x00, 0x23, 0x04, 0x87, 0x00, 0x23, 0x04, 0x88, 0x00, 0x23, + 0x04, 0x89, 0x00, 0x23, 0x04, 0x8A, 0x00, 0x23, 0x04, 0x8B, 0x00, 0x23, + 0x04, 0x8C, 0x00, 0x23, 0x04, 0x8D, 0x00, 0x23, 0x04, 0x8E, 0x00, 0x23, + 0x04, 0x8F, 0x00, 0x23, 0x04, 0x90, 0x00, 0x23, 0x04, 0x91, 0x00, 0x23, + 0x04, 0x92, 0x00, 0x23, 0x04, 0x93, 0x00, 0x23, 0x04, 0x94, 0x00, 0x23, + 0x04, 0x95, 0x00, 0x23, 0x04, 0x96, 0x00, 0x23, 0x04, 0x97, 0x00, 0x23, + 0x04, 0xAE, 0x00, 0x23, 0x04, 0xAF, 0x00, 0x23, 0x04, 0xB0, 0x00, 0x23, + 0x04, 0xB1, 0x00, 0x23, 0x04, 0xB5, 0x00, 0x23, 0x04, 0xB6, 0x00, 0x23, + 0x04, 0xB7, 0x00, 0x23, 0x04, 0xB8, 0x00, 0x23, 0x04, 0xB9, 0x00, 0x23, + 0x04, 0xBA, 0x00, 0x23, 0x04, 0xBB, 0x00, 0x23, 0x04, 0xBC, 0x00, 0x23, + 0x04, 0xBD, 0x00, 0x23, 0x04, 0xBE, 0x00, 0x23, 0x04, 0xBF, 0x00, 0x23, + 0x04, 0xC0, 0x00, 0x23, 0x04, 0xC1, 0x00, 0x23, 0x04, 0xC2, 0x00, 0x23, + 0x04, 0xC3, 0x00, 0x23, 0x04, 0xC4, 0x00, 0x23, 0x04, 0xC5, 0x00, 0x23, + 0x04, 0xC6, 0x00, 0x23, 0x04, 0xE4, 0x00, 0x23, 0x04, 0xE5, 0x00, 0x23, + 0x04, 0xE6, 0x00, 0x23, 0x04, 0xE8, 0x00, 0x43, 0x04, 0xEC, 0x00, 0x23, + 0x04, 0xED, 0x00, 0x23, 0x04, 0xEE, 0x00, 0x23, 0x04, 0xEF, 0x00, 0x23, + 0x04, 0xF0, 0x00, 0x23, 0x04, 0xF1, 0x00, 0x23, 0x04, 0xF3, 0x00, 0x43, + 0x04, 0xF4, 0x00, 0x43, 0x04, 0xF5, 0x00, 0x43, 0x04, 0xF6, 0x00, 0x23, + 0x04, 0xF7, 0x00, 0x23, 0x04, 0xF8, 0x00, 0x23, 0x04, 0xF9, 0x00, 0x23, + 0x04, 0xFA, 0x00, 0x23, 0x04, 0xFB, 0x00, 0x23, 0x04, 0xFC, 0x00, 0x23, + 0x04, 0xFD, 0x00, 0x23, 0x05, 0x02, 0x00, 0x23, 0x05, 0x04, 0xFF, 0xB5, + 0x05, 0x07, 0x00, 0x23, 0x05, 0x08, 0x00, 0x23, 0x05, 0x09, 0x00, 0x23, + 0x05, 0x0B, 0x00, 0x0A, 0x05, 0x0E, 0x00, 0x43, 0x05, 0x0F, 0x00, 0x23, + 0x05, 0x11, 0x00, 0x23, 0x05, 0x13, 0x00, 0x23, 0x05, 0x14, 0x00, 0x23, + 0x07, 0xEA, 0x00, 0x0F, 0x07, 0xEB, 0x00, 0x0F, 0x07, 0xEC, 0x00, 0x0F, + 0x07, 0xED, 0x00, 0x0F, 0x07, 0xEF, 0x00, 0x0F, 0x07, 0xF0, 0x00, 0x0F, + 0x07, 0xF1, 0x00, 0x0F, 0x07, 0xF2, 0x00, 0x23, 0x07, 0xF3, 0x00, 0x23, + 0x07, 0xF6, 0x00, 0x0F, 0x08, 0x09, 0x00, 0x0F, 0x08, 0x0A, 0x00, 0x0F, + 0x08, 0x0C, 0x00, 0x0F, 0x08, 0x0D, 0x00, 0x0F, 0x08, 0x0E, 0x00, 0x0F, + 0x08, 0x0F, 0x00, 0x0F, 0x08, 0x10, 0x00, 0x0F, 0x08, 0x11, 0x00, 0x0F, + 0x08, 0x12, 0x00, 0x0F, 0x08, 0x14, 0x00, 0x0F, 0x08, 0x15, 0x00, 0x0F, + 0x08, 0x16, 0x00, 0x0F, 0x08, 0x19, 0x00, 0x0F, 0x08, 0x1A, 0x00, 0x0F, + 0x08, 0x1B, 0x00, 0x0F, 0x08, 0x1C, 0x00, 0x0F, 0x08, 0x1D, 0x00, 0x0F, + 0x08, 0x1E, 0x00, 0x0F, 0x08, 0x1F, 0x00, 0x0F, 0x08, 0x20, 0x00, 0x0F, + 0x08, 0x21, 0x00, 0x0F, 0x08, 0x29, 0x00, 0x0F, 0x08, 0x2A, 0x00, 0x0F, + 0x08, 0x2B, 0x00, 0x0F, 0x08, 0x2C, 0x00, 0x0F, 0x08, 0x52, 0x00, 0x0F, + 0x08, 0x53, 0x00, 0x0F, 0x08, 0x5D, 0x00, 0x0F, 0x08, 0x5E, 0x00, 0x0F, + 0x08, 0x5F, 0x00, 0x0F, 0x08, 0x60, 0x00, 0x0A, 0x08, 0x63, 0x00, 0x0A, + 0x08, 0x64, 0x00, 0x0A, 0x08, 0x67, 0x00, 0x0F, 0x08, 0x68, 0x00, 0x0F, + 0x08, 0x69, 0x00, 0x0F, 0x08, 0x6A, 0x00, 0x0F, 0x08, 0x6B, 0x00, 0x23, + 0x08, 0x6C, 0x00, 0x23, 0x08, 0x6D, 0x00, 0x23, 0x08, 0x6E, 0x00, 0x23, + 0x08, 0x76, 0x00, 0x23, 0x08, 0x77, 0x00, 0x23, 0x08, 0x78, 0x00, 0x23, + 0x08, 0x79, 0x00, 0x23, 0x08, 0x9C, 0x00, 0x0A, 0x08, 0x9D, 0x00, 0x0F, + 0x08, 0x9E, 0x00, 0x0F, 0x08, 0x9F, 0x00, 0x0F, 0x08, 0xA0, 0x00, 0x0F, + 0x08, 0xA1, 0x00, 0x0F, 0x08, 0xA2, 0x00, 0x0F, 0x08, 0xA3, 0x00, 0x0F, + 0x08, 0xAD, 0x00, 0x0F, 0x08, 0xB2, 0x00, 0x0F, 0x08, 0xBC, 0x00, 0x23, + 0x08, 0xC0, 0x00, 0x23, 0x08, 0xC3, 0x00, 0x23, 0x08, 0xC4, 0x00, 0x23, + 0x08, 0xC7, 0x00, 0x23, 0x08, 0xC9, 0x00, 0x23, 0x08, 0xEA, 0x00, 0x0F, + 0x09, 0x00, 0x00, 0x0F, 0x09, 0x01, 0x00, 0x0F, 0x09, 0x02, 0x00, 0x0F, + 0x09, 0x03, 0x00, 0x0F, 0x09, 0x05, 0x00, 0x0F, 0x09, 0x06, 0x00, 0x0F, + 0x09, 0x07, 0x00, 0x0F, 0x09, 0x08, 0x00, 0x23, 0x09, 0x09, 0x00, 0x23, + 0x09, 0x0C, 0x00, 0x0F, 0x09, 0x34, 0x00, 0x0F, 0x09, 0x45, 0x00, 0x0F, + 0x09, 0x50, 0x00, 0x23, 0x09, 0x52, 0x00, 0x0F, 0x09, 0x6E, 0x00, 0x23, + 0x09, 0x7B, 0x00, 0x0F, 0x09, 0x7C, 0x00, 0x0F, 0x09, 0x7F, 0x00, 0x0F, + 0x09, 0x80, 0x00, 0x0F, 0x09, 0x81, 0x00, 0x0F, 0x09, 0x86, 0x00, 0x0F, + 0x09, 0x88, 0x00, 0x0F, 0x09, 0x8A, 0x00, 0x0F, 0x09, 0x8C, 0x00, 0x0F, + 0x09, 0x8D, 0x00, 0x0F, 0x09, 0x97, 0x00, 0x0F, 0x09, 0xA4, 0x00, 0x23, + 0x09, 0xA5, 0x00, 0x23, 0x09, 0xA7, 0x00, 0x23, 0x09, 0xA8, 0x00, 0x23, + 0x09, 0xA9, 0x00, 0x23, 0x09, 0xAB, 0x00, 0x23, 0x09, 0xBF, 0x00, 0x23, + 0x09, 0xC0, 0x00, 0x23, 0x09, 0xC5, 0x00, 0x23, 0x09, 0xC8, 0x00, 0x0F, + 0x09, 0xC9, 0x00, 0x0F, 0x09, 0xD3, 0x00, 0x23, 0x09, 0xD4, 0x00, 0x23, + 0x09, 0xE7, 0x00, 0x0F, 0x09, 0xE8, 0x00, 0x0F, 0x09, 0xE9, 0x00, 0x0F, + 0x09, 0xEA, 0x00, 0x0F, 0x09, 0xEF, 0x00, 0x0F, 0x09, 0xF6, 0x00, 0x0F, + 0x0B, 0x49, 0x00, 0x0F, 0x00, 0x02, 0x00, 0x92, 0x00, 0x02, 0x00, 0x97, + 0x00, 0x00, 0x00, 0xA1, 0x00, 0xC8, 0x00, 0x96, 0x00, 0xCA, 0x00, 0xEA, + 0x00, 0xBE, 0x01, 0x0A, 0x01, 0xD4, 0x00, 0xDF, 0x01, 0xD6, 0x02, 0x55, + 0x01, 0xAA, 0x02, 0x57, 0x02, 0x57, 0x02, 0x2A, 0x02, 0x59, 0x02, 0x59, + 0x02, 0x2B, 0x02, 0x5B, 0x02, 0x63, 0x02, 0x2C, 0x02, 0x66, 0x02, 0x85, + 0x02, 0x35, 0x02, 0x87, 0x02, 0x89, 0x02, 0x55, 0x02, 0x8B, 0x02, 0x8D, + 0x02, 0x58, 0x02, 0x8F, 0x02, 0x9B, 0x02, 0x5B, 0x02, 0x9E, 0x02, 0xCD, + 0x02, 0x68, 0x02, 0xCF, 0x02, 0xD7, 0x02, 0x98, 0x02, 0xD9, 0x02, 0xF3, + 0x02, 0xA1, 0x02, 0xF5, 0x02, 0xFC, 0x02, 0xBC, 0x02, 0xFE, 0x03, 0x07, + 0x02, 0xC4, 0x03, 0x09, 0x03, 0x0A, 0x02, 0xCE, 0x03, 0x0C, 0x03, 0x14, + 0x02, 0xD0, 0x03, 0x16, 0x03, 0x48, 0x02, 0xD9, 0x03, 0x4A, 0x03, 0x64, + 0x03, 0x0C, 0x03, 0x67, 0x03, 0xB2, 0x03, 0x27, 0x03, 0xD2, 0x03, 0xD7, + 0x03, 0x73, 0x03, 0xD9, 0x03, 0xF6, 0x03, 0x79, 0x03, 0xFA, 0x04, 0x06, + 0x03, 0x97, 0x04, 0x08, 0x04, 0x0C, 0x03, 0xA4, 0x04, 0x0E, 0x04, 0x0E, + 0x03, 0xA9, 0x04, 0x29, 0x04, 0x2E, 0x03, 0xAA, 0x04, 0x30, 0x04, 0x39, + 0x03, 0xB0, 0x04, 0x3B, 0x04, 0x3B, 0x03, 0xBA, 0x04, 0x3E, 0x04, 0x48, + 0x03, 0xBB, 0x04, 0x4B, 0x04, 0x4C, 0x03, 0xC6, 0x04, 0x50, 0x04, 0x71, + 0x03, 0xC8, 0x04, 0x73, 0x04, 0x73, 0x03, 0xEA, 0x04, 0x9A, 0x04, 0x9A, + 0x03, 0xEB, 0x04, 0x9C, 0x04, 0x9C, 0x03, 0xEC, 0x04, 0x9F, 0x04, 0xA4, + 0x03, 0xED, 0x04, 0xA6, 0x04, 0xB1, 0x03, 0xF3, 0x04, 0xB3, 0x04, 0xE2, + 0x03, 0xFF, 0x04, 0xE4, 0x05, 0x12, 0x04, 0x2F, 0x05, 0x14, 0x05, 0x18, + 0x04, 0x5E, 0x05, 0x1A, 0x05, 0x1C, 0x04, 0x63, 0x05, 0x25, 0x05, 0x25, + 0x04, 0x66, 0x05, 0x2D, 0x05, 0x2F, 0x04, 0x67, 0x05, 0x32, 0x05, 0x32, + 0x04, 0x6A, 0x05, 0x36, 0x05, 0x36, 0x04, 0x6B, 0x05, 0x39, 0x05, 0x3C, + 0x04, 0x6C, 0x05, 0x3F, 0x05, 0x40, 0x04, 0x70, 0x05, 0x44, 0x05, 0x47, + 0x04, 0x72, 0x05, 0x49, 0x05, 0x4C, 0x04, 0x76, 0x05, 0x68, 0x05, 0x68, + 0x04, 0x7A, 0x05, 0x6A, 0x05, 0x6A, 0x04, 0x7B, 0x05, 0x6C, 0x05, 0x6C, + 0x04, 0x7C, 0x05, 0x6F, 0x05, 0x6F, 0x04, 0x7D, 0x05, 0x80, 0x05, 0x8B, + 0x04, 0x7E, 0x05, 0x95, 0x05, 0x95, 0x04, 0x8A, 0x05, 0x98, 0x05, 0x9D, + 0x04, 0x8B, 0x05, 0x9F, 0x05, 0x9F, 0x04, 0x91, 0x05, 0xA1, 0x05, 0xA4, + 0x04, 0x92, 0x05, 0xA6, 0x05, 0xA6, 0x04, 0x96, 0x05, 0xA8, 0x05, 0xA8, + 0x04, 0x97, 0x05, 0xAD, 0x05, 0xAE, 0x04, 0x98, 0x05, 0xB0, 0x05, 0xB1, + 0x04, 0x9A, 0x05, 0xB6, 0x05, 0xBB, 0x04, 0x9C, 0x05, 0xBD, 0x05, 0xBD, + 0x04, 0xA2, 0x05, 0xC1, 0x05, 0xC2, 0x04, 0xA3, 0x05, 0xC8, 0x05, 0xCF, + 0x04, 0xA5, 0x05, 0xD4, 0x05, 0xD4, 0x04, 0xAD, 0x05, 0xDB, 0x05, 0xDD, + 0x04, 0xAE, 0x05, 0xDF, 0x05, 0xDF, 0x04, 0xB1, 0x05, 0xE2, 0x05, 0xE4, + 0x04, 0xB2, 0x05, 0xE6, 0x05, 0xE9, 0x04, 0xB5, 0x05, 0xEC, 0x05, 0xF6, + 0x04, 0xB9, 0x05, 0xF9, 0x06, 0x03, 0x04, 0xC4, 0x06, 0x06, 0x06, 0x0C, + 0x04, 0xCF, 0x06, 0x0E, 0x06, 0x0F, 0x04, 0xD6, 0x06, 0x15, 0x06, 0x1B, + 0x04, 0xD8, 0x06, 0x26, 0x06, 0x2B, 0x04, 0xDF, 0x06, 0x2D, 0x06, 0x30, + 0x04, 0xE5, 0x06, 0x33, 0x06, 0x3E, 0x04, 0xE9, 0x06, 0x41, 0x06, 0x42, + 0x04, 0xF5, 0x06, 0x4B, 0x06, 0x4B, 0x04, 0xF7, 0x06, 0x4F, 0x06, 0x4F, + 0x04, 0xF8, 0x06, 0x51, 0x06, 0x51, 0x04, 0xF9, 0x06, 0x53, 0x06, 0x7A, + 0x04, 0xFA, 0x06, 0x7D, 0x06, 0x81, 0x05, 0x22, 0x06, 0x84, 0x06, 0x86, + 0x05, 0x27, 0x06, 0xAE, 0x06, 0xAE, 0x05, 0x2A, 0x07, 0x06, 0x07, 0x0A, + 0x05, 0x2B, 0x07, 0x1E, 0x07, 0x22, 0x05, 0x30, 0x07, 0x33, 0x07, 0x33, + 0x05, 0x35, 0x07, 0x37, 0x07, 0x37, 0x05, 0x36, 0x07, 0x3A, 0x07, 0x41, + 0x05, 0x37, 0x07, 0x55, 0x07, 0x56, 0x05, 0x3F, 0x07, 0x5C, 0x07, 0x5C, + 0x05, 0x41, 0x07, 0xE8, 0x07, 0xE8, 0x05, 0x42, 0x07, 0xEA, 0x07, 0xF6, + 0x05, 0x43, 0x07, 0xF8, 0x07, 0xFE, 0x05, 0x50, 0x08, 0x01, 0x08, 0x46, + 0x05, 0x57, 0x08, 0x4C, 0x08, 0x9D, 0x05, 0x9D, 0x08, 0x9F, 0x08, 0xA3, + 0x05, 0xEF, 0x08, 0xAD, 0x08, 0xB0, 0x05, 0xF4, 0x08, 0xB2, 0x08, 0xB3, + 0x05, 0xF8, 0x08, 0xB9, 0x08, 0xB9, 0x05, 0xFA, 0x08, 0xBC, 0x08, 0xC0, + 0x05, 0xFB, 0x08, 0xC2, 0x08, 0xC7, 0x06, 0x00, 0x08, 0xC9, 0x08, 0xCF, + 0x06, 0x06, 0x08, 0xD1, 0x08, 0xD3, 0x06, 0x0D, 0x08, 0xE9, 0x08, 0xEA, + 0x06, 0x10, 0x08, 0xFE, 0x08, 0xFE, 0x06, 0x12, 0x09, 0x00, 0x09, 0x0C, + 0x06, 0x13, 0x09, 0x0E, 0x09, 0x15, 0x06, 0x20, 0x09, 0x1A, 0x09, 0x1A, + 0x06, 0x28, 0x09, 0x1E, 0x09, 0x1E, 0x06, 0x29, 0x09, 0x27, 0x09, 0x27, + 0x06, 0x2A, 0x09, 0x34, 0x09, 0x34, 0x06, 0x2B, 0x09, 0x3E, 0x09, 0x3E, + 0x06, 0x2C, 0x09, 0x43, 0x09, 0x43, 0x06, 0x2D, 0x09, 0x45, 0x09, 0x45, + 0x06, 0x2E, 0x09, 0x50, 0x09, 0x52, 0x06, 0x2F, 0x09, 0x59, 0x09, 0x59, + 0x06, 0x32, 0x09, 0x5C, 0x09, 0x5C, 0x06, 0x33, 0x09, 0x6D, 0x09, 0x6E, + 0x06, 0x34, 0x09, 0x70, 0x09, 0x70, 0x06, 0x36, 0x09, 0x7B, 0x09, 0x83, + 0x06, 0x37, 0x09, 0x85, 0x09, 0x8A, 0x06, 0x40, 0x09, 0x8D, 0x09, 0x8D, + 0x06, 0x46, 0x09, 0x8F, 0x09, 0x8F, 0x06, 0x47, 0x09, 0x91, 0x09, 0x95, + 0x06, 0x48, 0x09, 0x97, 0x09, 0x98, 0x06, 0x4D, 0x09, 0x9B, 0x09, 0x9C, + 0x06, 0x4F, 0x09, 0xA1, 0x09, 0xA1, 0x06, 0x51, 0x09, 0xA3, 0x09, 0xA9, + 0x06, 0x52, 0x09, 0xAB, 0x09, 0xAC, 0x06, 0x59, 0x09, 0xB2, 0x09, 0xB2, + 0x06, 0x5B, 0x09, 0xB4, 0x09, 0xB8, 0x06, 0x5C, 0x09, 0xBA, 0x09, 0xBC, + 0x06, 0x61, 0x09, 0xBF, 0x09, 0xC9, 0x06, 0x64, 0x09, 0xCF, 0x09, 0xCF, + 0x06, 0x6F, 0x09, 0xD4, 0x09, 0xD4, 0x06, 0x70, 0x09, 0xE7, 0x09, 0xF2, + 0x06, 0x71, 0x09, 0xF6, 0x09, 0xF6, 0x06, 0x7D, 0x0A, 0x15, 0x0A, 0x15, + 0x06, 0x7E, 0x0A, 0x2F, 0x0A, 0x30, 0x06, 0x7F, 0x0B, 0x42, 0x0B, 0x42, + 0x06, 0x81, 0x0B, 0x48, 0x0B, 0x49, 0x06, 0x82, 0x00, 0x02, 0x01, 0xF5, + 0x00, 0x02, 0x00, 0x40, 0x00, 0x05, 0x00, 0x41, 0x00, 0x48, 0x00, 0x01, + 0x00, 0x49, 0x00, 0x53, 0x00, 0x04, 0x00, 0x54, 0x00, 0x79, 0x00, 0x01, + 0x00, 0x7B, 0x00, 0x7B, 0x00, 0x01, 0x00, 0x84, 0x00, 0x89, 0x00, 0x01, + 0x00, 0x8A, 0x00, 0x8A, 0x00, 0x1C, 0x00, 0x8B, 0x00, 0x8B, 0x00, 0x01, + 0x00, 0x8D, 0x00, 0x97, 0x00, 0x04, 0x00, 0xA1, 0x00, 0xC6, 0x00, 0x01, + 0x00, 0xC7, 0x00, 0xC8, 0x00, 0x17, 0x00, 0xCA, 0x00, 0xCC, 0x00, 0x01, + 0x00, 0xCD, 0x00, 0xD0, 0x00, 0x17, 0x00, 0xD1, 0x00, 0xD3, 0x00, 0x01, + 0x00, 0xD4, 0x00, 0xD5, 0x00, 0x17, 0x00, 0xD6, 0x00, 0xD9, 0x00, 0x01, + 0x00, 0xDB, 0x00, 0xDB, 0x00, 0x17, 0x00, 0xE4, 0x00, 0xE5, 0x00, 0x17, + 0x00, 0xE8, 0x00, 0xE8, 0x00, 0x01, 0x00, 0xE9, 0x00, 0xE9, 0x00, 0x17, + 0x00, 0xEA, 0x00, 0xEA, 0x00, 0x01, 0x01, 0x0A, 0x01, 0x0E, 0x00, 0x2A, + 0x01, 0x0F, 0x01, 0x14, 0x00, 0x01, 0x01, 0x15, 0x01, 0x15, 0x00, 0x0F, + 0x01, 0x16, 0x01, 0x35, 0x00, 0x01, 0x01, 0x36, 0x01, 0x36, 0x00, 0x1C, + 0x01, 0x37, 0x01, 0x40, 0x00, 0x01, 0x01, 0x41, 0x01, 0x76, 0x00, 0x04, + 0x01, 0x77, 0x01, 0x7D, 0x00, 0x01, 0x01, 0x7E, 0x01, 0x7F, 0x00, 0x04, + 0x01, 0x80, 0x01, 0x89, 0x00, 0x01, 0x01, 0x8A, 0x01, 0x8B, 0x00, 0x15, + 0x01, 0x8C, 0x01, 0x8C, 0x00, 0x01, 0x01, 0x8D, 0x01, 0x99, 0x00, 0x13, + 0x01, 0x9A, 0x01, 0x9A, 0x00, 0x01, 0x01, 0x9B, 0x01, 0xA3, 0x00, 0x0F, + 0x01, 0xA5, 0x01, 0xA7, 0x00, 0x0F, 0x01, 0xA8, 0x01, 0xC7, 0x00, 0x09, + 0x01, 0xC8, 0x01, 0xCA, 0x00, 0x1D, 0x01, 0xCB, 0x01, 0xD1, 0x00, 0x22, + 0x01, 0xD2, 0x01, 0xD7, 0x00, 0x14, 0x01, 0xD8, 0x01, 0xE6, 0x00, 0x0E, + 0x01, 0xEB, 0x01, 0xEC, 0x00, 0x0E, 0x01, 0xEF, 0x01, 0xEF, 0x00, 0x0E, + 0x01, 0xF0, 0x01, 0xFA, 0x00, 0x1A, 0x01, 0xFB, 0x02, 0x1A, 0x00, 0x07, + 0x02, 0x1B, 0x02, 0x1B, 0x00, 0x03, 0x02, 0x1C, 0x02, 0x22, 0x00, 0x07, + 0x02, 0x23, 0x02, 0x41, 0x00, 0x02, 0x02, 0x42, 0x02, 0x42, 0x00, 0x01, + 0x02, 0x44, 0x02, 0x49, 0x00, 0x01, 0x02, 0x4A, 0x02, 0x64, 0x00, 0x02, + 0x02, 0x65, 0x02, 0x65, 0x00, 0x33, 0x02, 0x66, 0x02, 0x85, 0x00, 0x02, + 0x02, 0x87, 0x02, 0x87, 0x00, 0x2C, 0x02, 0x88, 0x02, 0x88, 0x00, 0x01, + 0x02, 0x89, 0x02, 0x89, 0x00, 0x2C, 0x02, 0x8A, 0x02, 0x8D, 0x00, 0x01, + 0x02, 0x8F, 0x02, 0x8F, 0x00, 0x01, 0x02, 0x90, 0x02, 0x91, 0x00, 0x2C, + 0x02, 0x92, 0x02, 0x9B, 0x00, 0x02, 0x02, 0x9E, 0x02, 0xA4, 0x00, 0x01, + 0x02, 0xA5, 0x02, 0xA5, 0x00, 0x08, 0x02, 0xA6, 0x02, 0xA7, 0x00, 0x06, + 0x02, 0xA8, 0x02, 0xB0, 0x00, 0x01, 0x02, 0xB1, 0x02, 0xB3, 0x00, 0x11, + 0x02, 0xB4, 0x02, 0xB6, 0x00, 0x23, 0x02, 0xB7, 0x02, 0xB8, 0x00, 0x11, + 0x02, 0xB9, 0x02, 0xB9, 0x00, 0x06, 0x02, 0xBA, 0x02, 0xBC, 0x00, 0x11, + 0x02, 0xBD, 0x02, 0xBE, 0x00, 0x23, 0x02, 0xBF, 0x02, 0xC1, 0x00, 0x11, + 0x02, 0xC2, 0x02, 0xC2, 0x00, 0x5B, 0x02, 0xC3, 0x02, 0xC3, 0x00, 0x23, + 0x02, 0xC4, 0x02, 0xC6, 0x00, 0x11, 0x02, 0xC7, 0x02, 0xC8, 0x00, 0x1C, + 0x02, 0xC9, 0x02, 0xCA, 0x00, 0x06, 0x02, 0xCB, 0x02, 0xCB, 0x00, 0x11, + 0x02, 0xCC, 0x02, 0xCC, 0x00, 0x23, 0x02, 0xCD, 0x02, 0xCD, 0x00, 0x11, + 0x02, 0xCF, 0x02, 0xCF, 0x00, 0x1C, 0x02, 0xD2, 0x02, 0xD5, 0x00, 0x1C, + 0x02, 0xD6, 0x02, 0xD7, 0x00, 0x01, 0x02, 0xD9, 0x02, 0xDD, 0x00, 0x01, + 0x02, 0xDE, 0x02, 0xDE, 0x00, 0x1F, 0x02, 0xDF, 0x02, 0xE4, 0x00, 0x01, + 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x06, 0x02, 0xE6, 0x02, 0xEF, 0x00, 0x01, + 0x02, 0xF0, 0x02, 0xF3, 0x00, 0x06, 0x02, 0xF4, 0x02, 0xFC, 0x00, 0x01, + 0x02, 0xFE, 0x02, 0xFF, 0x00, 0x03, 0x03, 0x00, 0x03, 0x01, 0x00, 0x08, + 0x03, 0x02, 0x03, 0x09, 0x00, 0x03, 0x03, 0x0A, 0x03, 0x0A, 0x00, 0x1C, + 0x03, 0x0B, 0x03, 0x14, 0x00, 0x03, 0x03, 0x16, 0x03, 0x4A, 0x00, 0x02, + 0x03, 0x4B, 0x03, 0x4C, 0x00, 0x03, 0x03, 0x4D, 0x03, 0x4D, 0x00, 0x01, + 0x03, 0x4E, 0x03, 0x50, 0x00, 0x03, 0x03, 0x51, 0x03, 0x52, 0x00, 0x02, + 0x03, 0x53, 0x03, 0x56, 0x00, 0x03, 0x03, 0x59, 0x03, 0x59, 0x00, 0x06, + 0x03, 0x5A, 0x03, 0x64, 0x00, 0x03, 0x03, 0x67, 0x03, 0x75, 0x00, 0x0C, + 0x03, 0x76, 0x03, 0x77, 0x00, 0x01, 0x03, 0x78, 0x03, 0x86, 0x00, 0x06, + 0x03, 0x87, 0x03, 0x90, 0x00, 0x01, 0x03, 0x91, 0x03, 0x94, 0x00, 0x08, + 0x03, 0x95, 0x03, 0x95, 0x00, 0x5E, 0x03, 0x96, 0x03, 0xB1, 0x00, 0x08, + 0x03, 0xB2, 0x03, 0xB2, 0x00, 0x03, 0x03, 0xD2, 0x03, 0xD2, 0x00, 0x0A, + 0x03, 0xD3, 0x03, 0xD3, 0x00, 0x05, 0x03, 0xD4, 0x03, 0xD5, 0x00, 0x0A, + 0x03, 0xD6, 0x03, 0xD7, 0x00, 0x21, 0x03, 0xD9, 0x03, 0xDE, 0x00, 0x21, + 0x03, 0xDF, 0x03, 0xE2, 0x00, 0x1F, 0x03, 0xE3, 0x03, 0xF5, 0x00, 0x0A, + 0x03, 0xF6, 0x03, 0xF6, 0x00, 0x05, 0x03, 0xFA, 0x03, 0xFB, 0x00, 0x0A, + 0x03, 0xFC, 0x04, 0x06, 0x00, 0x1B, 0x04, 0x07, 0x04, 0x08, 0x00, 0x01, + 0x04, 0x09, 0x04, 0x09, 0x00, 0x29, 0x04, 0x0A, 0x04, 0x0A, 0x00, 0x04, + 0x04, 0x0C, 0x04, 0x0C, 0x00, 0x01, 0x04, 0x0E, 0x04, 0x0E, 0x00, 0x04, + 0x04, 0x10, 0x04, 0x10, 0x00, 0x4C, 0x04, 0x29, 0x04, 0x29, 0x00, 0x1D, + 0x04, 0x2A, 0x04, 0x2B, 0x00, 0x01, 0x04, 0x2D, 0x04, 0x2D, 0x00, 0x34, + 0x04, 0x2E, 0x04, 0x2E, 0x00, 0x14, 0x04, 0x30, 0x04, 0x30, 0x00, 0x4D, + 0x04, 0x31, 0x04, 0x33, 0x00, 0x01, 0x04, 0x34, 0x04, 0x34, 0x00, 0x34, + 0x04, 0x35, 0x04, 0x35, 0x00, 0x04, 0x04, 0x36, 0x04, 0x36, 0x00, 0x01, + 0x04, 0x37, 0x04, 0x37, 0x00, 0x1D, 0x04, 0x38, 0x04, 0x38, 0x00, 0x04, + 0x04, 0x39, 0x04, 0x39, 0x00, 0x01, 0x04, 0x3A, 0x04, 0x3A, 0x00, 0x0F, + 0x04, 0x3E, 0x04, 0x3E, 0x00, 0x01, 0x04, 0x3F, 0x04, 0x3F, 0x00, 0x0F, + 0x04, 0x40, 0x04, 0x41, 0x00, 0x01, 0x04, 0x42, 0x04, 0x42, 0x00, 0x0F, + 0x04, 0x43, 0x04, 0x44, 0x00, 0x01, 0x04, 0x45, 0x04, 0x45, 0x00, 0x34, + 0x04, 0x46, 0x04, 0x46, 0x00, 0x01, 0x04, 0x47, 0x04, 0x47, 0x00, 0x04, + 0x04, 0x48, 0x04, 0x48, 0x00, 0x01, 0x04, 0x4A, 0x04, 0x4B, 0x00, 0x01, + 0x04, 0x4C, 0x04, 0x4C, 0x00, 0x04, 0x04, 0x51, 0x04, 0x51, 0x00, 0x1D, + 0x04, 0x52, 0x04, 0x52, 0x00, 0x0F, 0x04, 0x53, 0x04, 0x6D, 0x00, 0x02, + 0x04, 0x6E, 0x04, 0x6E, 0x00, 0x03, 0x04, 0x6F, 0x04, 0x6F, 0x00, 0x59, + 0x04, 0x70, 0x04, 0x70, 0x00, 0x3C, 0x04, 0x71, 0x04, 0x71, 0x00, 0x0C, + 0x04, 0x72, 0x04, 0x72, 0x00, 0x1E, 0x04, 0x73, 0x04, 0x73, 0x00, 0x0C, + 0x04, 0x74, 0x04, 0x7E, 0x00, 0x1E, 0x04, 0x7F, 0x04, 0x7F, 0x00, 0x69, + 0x04, 0x80, 0x04, 0x97, 0x00, 0x03, 0x04, 0x9A, 0x04, 0x9A, 0x00, 0x16, + 0x04, 0x9C, 0x04, 0x9C, 0x00, 0x16, 0x04, 0x9F, 0x04, 0xA4, 0x00, 0x16, + 0x04, 0xA6, 0x04, 0xAA, 0x00, 0x16, 0x04, 0xAB, 0x04, 0xAB, 0x00, 0x43, + 0x04, 0xAD, 0x04, 0xAD, 0x00, 0x06, 0x04, 0xAE, 0x04, 0xB1, 0x00, 0x03, + 0x04, 0xB2, 0x04, 0xB2, 0x00, 0x3C, 0x04, 0xB3, 0x04, 0xB3, 0x00, 0x02, + 0x04, 0xB4, 0x04, 0xB4, 0x00, 0x06, 0x04, 0xB5, 0x04, 0xC6, 0x00, 0x03, + 0x04, 0xC7, 0x04, 0xC8, 0x00, 0x02, 0x04, 0xC9, 0x04, 0xC9, 0x00, 0x60, + 0x04, 0xCA, 0x04, 0xE1, 0x00, 0x0D, 0x04, 0xE2, 0x04, 0xE2, 0x00, 0x0A, + 0x04, 0xE3, 0x04, 0xE3, 0x00, 0x4F, 0x04, 0xE4, 0x04, 0xE6, 0x00, 0x03, + 0x04, 0xE7, 0x04, 0xE7, 0x00, 0x06, 0x04, 0xE8, 0x04, 0xE8, 0x00, 0x2B, + 0x04, 0xE9, 0x04, 0xEA, 0x00, 0x1F, 0x04, 0xEB, 0x04, 0xEB, 0x00, 0x02, + 0x04, 0xEC, 0x04, 0xF1, 0x00, 0x03, 0x04, 0xF2, 0x04, 0xF2, 0x00, 0x06, + 0x04, 0xF3, 0x04, 0xF5, 0x00, 0x2B, 0x04, 0xF6, 0x04, 0xFD, 0x00, 0x03, + 0x04, 0xFE, 0x04, 0xFE, 0x00, 0x06, 0x04, 0xFF, 0x04, 0xFF, 0x00, 0x02, + 0x05, 0x00, 0x05, 0x01, 0x00, 0x1F, 0x05, 0x02, 0x05, 0x02, 0x00, 0x03, + 0x05, 0x03, 0x05, 0x03, 0x00, 0x08, 0x05, 0x04, 0x05, 0x04, 0x00, 0x51, + 0x05, 0x05, 0x05, 0x06, 0x00, 0x07, 0x05, 0x07, 0x05, 0x09, 0x00, 0x03, + 0x05, 0x0A, 0x05, 0x0A, 0x00, 0x06, 0x05, 0x0B, 0x05, 0x0B, 0x00, 0x11, + 0x05, 0x0C, 0x05, 0x0D, 0x00, 0x06, 0x05, 0x0E, 0x05, 0x0E, 0x00, 0x2B, + 0x05, 0x0F, 0x05, 0x0F, 0x00, 0x03, 0x05, 0x10, 0x05, 0x10, 0x00, 0x02, + 0x05, 0x11, 0x05, 0x11, 0x00, 0x03, 0x05, 0x12, 0x05, 0x12, 0x00, 0x0C, + 0x05, 0x13, 0x05, 0x14, 0x00, 0x03, 0x05, 0x15, 0x05, 0x16, 0x00, 0x02, + 0x05, 0x17, 0x05, 0x19, 0x00, 0x06, 0x05, 0x1A, 0x05, 0x1A, 0x00, 0x0A, + 0x05, 0x1B, 0x05, 0x1B, 0x00, 0x52, 0x05, 0x1C, 0x05, 0x1C, 0x00, 0x33, + 0x05, 0x25, 0x05, 0x25, 0x00, 0x15, 0x05, 0x2D, 0x05, 0x2F, 0x00, 0x24, + 0x05, 0x36, 0x05, 0x36, 0x00, 0x15, 0x05, 0x39, 0x05, 0x3A, 0x00, 0x15, + 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x3A, 0x05, 0x3C, 0x05, 0x3C, 0x00, 0x46, + 0x05, 0x3F, 0x05, 0x3F, 0x00, 0x49, 0x05, 0x40, 0x05, 0x40, 0x00, 0x3D, + 0x05, 0x43, 0x05, 0x43, 0x00, 0x3A, 0x05, 0x44, 0x05, 0x44, 0x00, 0x62, + 0x05, 0x45, 0x05, 0x45, 0x00, 0x53, 0x05, 0x47, 0x05, 0x47, 0x00, 0x3A, + 0x05, 0x48, 0x05, 0x48, 0x00, 0x46, 0x05, 0x49, 0x05, 0x49, 0x00, 0x49, + 0x05, 0x4A, 0x05, 0x4A, 0x00, 0x3D, 0x05, 0x4B, 0x05, 0x4B, 0x00, 0x64, + 0x05, 0x4C, 0x05, 0x4C, 0x00, 0x45, 0x05, 0x69, 0x05, 0x69, 0x00, 0x26, + 0x05, 0x6B, 0x05, 0x6B, 0x00, 0x26, 0x05, 0x6D, 0x05, 0x6D, 0x00, 0x26, + 0x05, 0x6F, 0x05, 0x6F, 0x00, 0x10, 0x05, 0x80, 0x05, 0x83, 0x00, 0x12, + 0x05, 0x84, 0x05, 0x85, 0x00, 0x10, 0x05, 0x86, 0x05, 0x86, 0x00, 0x19, + 0x05, 0x87, 0x05, 0x87, 0x00, 0x10, 0x05, 0x88, 0x05, 0x89, 0x00, 0x12, + 0x05, 0x8A, 0x05, 0x8A, 0x00, 0x10, 0x05, 0x8B, 0x05, 0x8B, 0x00, 0x19, + 0x05, 0x90, 0x05, 0x90, 0x00, 0x56, 0x05, 0x95, 0x05, 0x95, 0x00, 0x39, + 0x05, 0x98, 0x05, 0x98, 0x00, 0x42, 0x05, 0x99, 0x05, 0x99, 0x00, 0x39, + 0x05, 0x9A, 0x05, 0x9A, 0x00, 0x42, 0x05, 0x9B, 0x05, 0x9B, 0x00, 0x36, + 0x05, 0x9C, 0x05, 0x9C, 0x00, 0x37, 0x05, 0x9D, 0x05, 0x9D, 0x00, 0x36, + 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x37, 0x05, 0xA1, 0x05, 0xA1, 0x00, 0x36, + 0x05, 0xA2, 0x05, 0xA2, 0x00, 0x37, 0x05, 0xA3, 0x05, 0xA3, 0x00, 0x24, + 0x05, 0xA5, 0x05, 0xA5, 0x00, 0x26, 0x05, 0xA7, 0x05, 0xA7, 0x00, 0x26, + 0x05, 0xA9, 0x05, 0xA9, 0x00, 0x26, 0x05, 0xAD, 0x05, 0xAD, 0x00, 0x65, + 0x05, 0xAE, 0x05, 0xAE, 0x00, 0x15, 0x05, 0xB0, 0x05, 0xB0, 0x00, 0x4E, + 0x05, 0xB1, 0x05, 0xB1, 0x00, 0x10, 0x05, 0xB6, 0x05, 0xBA, 0x00, 0x19, + 0x05, 0xBB, 0x05, 0xBB, 0x00, 0x50, 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x10, + 0x05, 0xC1, 0x05, 0xC2, 0x00, 0x19, 0x05, 0xC8, 0x05, 0xC8, 0x00, 0x32, + 0x05, 0xC9, 0x05, 0xC9, 0x00, 0x2D, 0x05, 0xCA, 0x05, 0xCB, 0x00, 0x2E, + 0x05, 0xCC, 0x05, 0xCC, 0x00, 0x32, 0x05, 0xCD, 0x05, 0xCD, 0x00, 0x2D, + 0x05, 0xCE, 0x05, 0xCF, 0x00, 0x28, 0x05, 0xD4, 0x05, 0xD4, 0x00, 0x2D, + 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x25, 0x05, 0xDF, 0x05, 0xE2, 0x00, 0x20, + 0x05, 0xE3, 0x05, 0xE3, 0x00, 0x10, 0x05, 0xE4, 0x05, 0xE4, 0x00, 0x2E, + 0x05, 0xE6, 0x05, 0xE6, 0x00, 0x40, 0x05, 0xE7, 0x05, 0xE7, 0x00, 0x41, + 0x05, 0xE8, 0x05, 0xE8, 0x00, 0x40, 0x05, 0xE9, 0x05, 0xE9, 0x00, 0x41, + 0x05, 0xEC, 0x05, 0xEF, 0x00, 0x12, 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x10, + 0x05, 0xF2, 0x05, 0xF2, 0x00, 0x19, 0x05, 0xF3, 0x05, 0xF3, 0x00, 0x10, + 0x05, 0xF4, 0x05, 0xF5, 0x00, 0x12, 0x05, 0xF6, 0x05, 0xF6, 0x00, 0x10, + 0x05, 0xF9, 0x05, 0xFC, 0x00, 0x12, 0x05, 0xFD, 0x05, 0xFE, 0x00, 0x10, + 0x05, 0xFF, 0x05, 0xFF, 0x00, 0x19, 0x06, 0x00, 0x06, 0x00, 0x00, 0x10, + 0x06, 0x01, 0x06, 0x02, 0x00, 0x12, 0x06, 0x03, 0x06, 0x04, 0x00, 0x10, + 0x06, 0x06, 0x06, 0x07, 0x00, 0x38, 0x06, 0x08, 0x06, 0x09, 0x00, 0x35, + 0x06, 0x0A, 0x06, 0x0A, 0x00, 0x19, 0x06, 0x0B, 0x06, 0x0B, 0x00, 0x47, + 0x06, 0x0C, 0x06, 0x0C, 0x00, 0x24, 0x06, 0x0E, 0x06, 0x0E, 0x00, 0x47, + 0x06, 0x0F, 0x06, 0x0F, 0x00, 0x38, 0x06, 0x15, 0x06, 0x15, 0x00, 0x35, + 0x06, 0x16, 0x06, 0x19, 0x00, 0x30, 0x06, 0x1A, 0x06, 0x1A, 0x00, 0x45, + 0x06, 0x1B, 0x06, 0x1B, 0x00, 0x15, 0x06, 0x21, 0x06, 0x21, 0x00, 0x5C, + 0x06, 0x26, 0x06, 0x26, 0x00, 0x2F, 0x06, 0x27, 0x06, 0x29, 0x00, 0x27, + 0x06, 0x2A, 0x06, 0x2A, 0x00, 0x57, 0x06, 0x2B, 0x06, 0x2B, 0x00, 0x27, + 0x06, 0x2C, 0x06, 0x2C, 0x00, 0x2F, 0x06, 0x2D, 0x06, 0x2D, 0x00, 0x5A, + 0x06, 0x2E, 0x06, 0x2E, 0x00, 0x5D, 0x06, 0x2F, 0x06, 0x30, 0x00, 0x2F, + 0x06, 0x31, 0x06, 0x32, 0x00, 0x31, 0x06, 0x33, 0x06, 0x33, 0x00, 0x27, + 0x06, 0x34, 0x06, 0x34, 0x00, 0x31, 0x06, 0x35, 0x06, 0x35, 0x00, 0x27, + 0x06, 0x36, 0x06, 0x36, 0x00, 0x31, 0x06, 0x37, 0x06, 0x37, 0x00, 0x61, + 0x06, 0x38, 0x06, 0x38, 0x00, 0x66, 0x06, 0x3A, 0x06, 0x3A, 0x00, 0x4A, + 0x06, 0x3B, 0x06, 0x3B, 0x00, 0x67, 0x06, 0x3C, 0x06, 0x3C, 0x00, 0x68, + 0x06, 0x3D, 0x06, 0x3D, 0x00, 0x4A, 0x06, 0x46, 0x06, 0x47, 0x00, 0x3F, + 0x06, 0x50, 0x06, 0x50, 0x00, 0x3B, 0x06, 0x52, 0x06, 0x52, 0x00, 0x3B, + 0x06, 0x53, 0x06, 0x54, 0x00, 0x44, 0x06, 0x55, 0x06, 0x55, 0x00, 0x55, + 0x06, 0x57, 0x06, 0x6F, 0x00, 0x0B, 0x06, 0x70, 0x06, 0x75, 0x00, 0x18, + 0x06, 0x77, 0x06, 0x78, 0x00, 0x3E, 0x06, 0x7A, 0x06, 0x7A, 0x00, 0x18, + 0x06, 0x7C, 0x06, 0x7C, 0x00, 0x63, 0x06, 0x7D, 0x06, 0x81, 0x00, 0x18, + 0x06, 0x84, 0x06, 0x86, 0x00, 0x18, 0x06, 0x87, 0x06, 0x87, 0x00, 0x58, + 0x06, 0xAE, 0x06, 0xAE, 0x00, 0x54, 0x06, 0xFF, 0x06, 0xFF, 0x00, 0x15, + 0x07, 0x0B, 0x07, 0x0D, 0x00, 0x10, 0x07, 0x0E, 0x07, 0x0F, 0x00, 0x12, + 0x07, 0x33, 0x07, 0x33, 0x00, 0x29, 0x07, 0x37, 0x07, 0x37, 0x00, 0x29, + 0x07, 0x3A, 0x07, 0x3A, 0x00, 0x29, 0x07, 0x3B, 0x07, 0x3C, 0x00, 0x24, + 0x07, 0x3D, 0x07, 0x41, 0x00, 0x15, 0x07, 0x55, 0x07, 0x55, 0x00, 0x5F, + 0x07, 0x5C, 0x07, 0x5C, 0x00, 0x15, 0x07, 0xE8, 0x07, 0xE8, 0x00, 0x04, + 0x07, 0xEA, 0x07, 0xED, 0x00, 0x01, 0x07, 0xEE, 0x07, 0xEE, 0x00, 0x13, + 0x07, 0xEF, 0x07, 0xF1, 0x00, 0x01, 0x07, 0xF2, 0x07, 0xF3, 0x00, 0x03, + 0x07, 0xF4, 0x07, 0xF4, 0x00, 0x0C, 0x07, 0xF5, 0x07, 0xF5, 0x00, 0x06, + 0x07, 0xF6, 0x07, 0xF6, 0x00, 0x01, 0x07, 0xF8, 0x07, 0xF8, 0x00, 0x25, + 0x07, 0xF9, 0x07, 0xFA, 0x00, 0x20, 0x07, 0xFB, 0x07, 0xFB, 0x00, 0x32, + 0x07, 0xFC, 0x07, 0xFC, 0x00, 0x2D, 0x07, 0xFD, 0x07, 0xFD, 0x00, 0x32, + 0x07, 0xFE, 0x07, 0xFE, 0x00, 0x2D, 0x08, 0x01, 0x08, 0x02, 0x00, 0x28, + 0x08, 0x03, 0x08, 0x08, 0x00, 0x05, 0x08, 0x09, 0x08, 0x0A, 0x00, 0x01, + 0x08, 0x0B, 0x08, 0x0B, 0x00, 0x04, 0x08, 0x0C, 0x08, 0x12, 0x00, 0x01, + 0x08, 0x13, 0x08, 0x13, 0x00, 0x04, 0x08, 0x14, 0x08, 0x16, 0x00, 0x01, + 0x08, 0x17, 0x08, 0x18, 0x00, 0x17, 0x08, 0x19, 0x08, 0x21, 0x00, 0x01, + 0x08, 0x22, 0x08, 0x28, 0x00, 0x04, 0x08, 0x29, 0x08, 0x2C, 0x00, 0x01, + 0x08, 0x2D, 0x08, 0x30, 0x00, 0x13, 0x08, 0x31, 0x08, 0x32, 0x00, 0x0F, + 0x08, 0x33, 0x08, 0x3B, 0x00, 0x09, 0x08, 0x3C, 0x08, 0x3C, 0x00, 0x1D, + 0x08, 0x3D, 0x08, 0x3F, 0x00, 0x22, 0x08, 0x40, 0x08, 0x41, 0x00, 0x14, + 0x08, 0x42, 0x08, 0x44, 0x00, 0x0E, 0x08, 0x45, 0x08, 0x46, 0x00, 0x1A, + 0x08, 0x4C, 0x08, 0x51, 0x00, 0x07, 0x08, 0x52, 0x08, 0x53, 0x00, 0x01, + 0x08, 0x54, 0x08, 0x5A, 0x00, 0x02, 0x08, 0x5B, 0x08, 0x5B, 0x00, 0x2C, + 0x08, 0x5C, 0x08, 0x5C, 0x00, 0x02, 0x08, 0x5D, 0x08, 0x5F, 0x00, 0x01, + 0x08, 0x60, 0x08, 0x60, 0x00, 0x11, 0x08, 0x61, 0x08, 0x62, 0x00, 0x23, + 0x08, 0x63, 0x08, 0x64, 0x00, 0x11, 0x08, 0x65, 0x08, 0x65, 0x00, 0x1C, + 0x08, 0x66, 0x08, 0x66, 0x00, 0x06, 0x08, 0x67, 0x08, 0x6A, 0x00, 0x01, + 0x08, 0x6B, 0x08, 0x6E, 0x00, 0x03, 0x08, 0x6F, 0x08, 0x75, 0x00, 0x02, + 0x08, 0x76, 0x08, 0x79, 0x00, 0x03, 0x08, 0x7A, 0x08, 0x7E, 0x00, 0x0C, + 0x08, 0x7F, 0x08, 0x81, 0x00, 0x06, 0x08, 0x82, 0x08, 0x8A, 0x00, 0x08, + 0x08, 0x8B, 0x08, 0x8B, 0x00, 0x0A, 0x08, 0x8C, 0x08, 0x8E, 0x00, 0x21, + 0x08, 0x8F, 0x08, 0x90, 0x00, 0x1F, 0x08, 0x91, 0x08, 0x93, 0x00, 0x0A, + 0x08, 0x94, 0x08, 0x95, 0x00, 0x1B, 0x08, 0x96, 0x08, 0x9B, 0x00, 0x02, + 0x08, 0x9C, 0x08, 0x9C, 0x00, 0x11, 0x08, 0x9D, 0x08, 0xA3, 0x00, 0x01, + 0x08, 0xAD, 0x08, 0xAD, 0x00, 0x01, 0x08, 0xAE, 0x08, 0xAE, 0x00, 0x17, + 0x08, 0xAF, 0x08, 0xAF, 0x00, 0x04, 0x08, 0xB0, 0x08, 0xB0, 0x00, 0x14, + 0x08, 0xB2, 0x08, 0xB2, 0x00, 0x01, 0x08, 0xB3, 0x08, 0xB3, 0x00, 0x04, + 0x08, 0xB9, 0x08, 0xB9, 0x00, 0x02, 0x08, 0xBC, 0x08, 0xBC, 0x00, 0x03, + 0x08, 0xBD, 0x08, 0xBE, 0x00, 0x02, 0x08, 0xC0, 0x08, 0xC0, 0x00, 0x03, + 0x08, 0xC2, 0x08, 0xC2, 0x00, 0x16, 0x08, 0xC3, 0x08, 0xC4, 0x00, 0x03, + 0x08, 0xC5, 0x08, 0xC6, 0x00, 0x16, 0x08, 0xC7, 0x08, 0xC7, 0x00, 0x03, + 0x08, 0xC9, 0x08, 0xC9, 0x00, 0x03, 0x08, 0xCA, 0x08, 0xCA, 0x00, 0x2E, + 0x08, 0xCB, 0x08, 0xCC, 0x00, 0x25, 0x08, 0xCD, 0x08, 0xCE, 0x00, 0x20, + 0x08, 0xCF, 0x08, 0xCF, 0x00, 0x25, 0x08, 0xD1, 0x08, 0xD1, 0x00, 0x39, + 0x08, 0xD2, 0x08, 0xD2, 0x00, 0x10, 0x08, 0xD3, 0x08, 0xD3, 0x00, 0x20, + 0x08, 0xD5, 0x08, 0xD5, 0x00, 0x20, 0x08, 0xEA, 0x08, 0xEA, 0x00, 0x01, + 0x08, 0xFE, 0x08, 0xFE, 0x00, 0x04, 0x09, 0x00, 0x09, 0x03, 0x00, 0x01, + 0x09, 0x04, 0x09, 0x04, 0x00, 0x13, 0x09, 0x05, 0x09, 0x07, 0x00, 0x01, + 0x09, 0x08, 0x09, 0x09, 0x00, 0x03, 0x09, 0x0A, 0x09, 0x0A, 0x00, 0x0C, + 0x09, 0x0B, 0x09, 0x0B, 0x00, 0x06, 0x09, 0x0C, 0x09, 0x0C, 0x00, 0x01, + 0x09, 0x0E, 0x09, 0x0F, 0x00, 0x28, 0x09, 0x11, 0x09, 0x11, 0x00, 0x48, + 0x09, 0x13, 0x09, 0x13, 0x00, 0x48, 0x09, 0x1A, 0x09, 0x1A, 0x00, 0x4B, + 0x09, 0x27, 0x09, 0x27, 0x00, 0x0F, 0x09, 0x34, 0x09, 0x34, 0x00, 0x01, + 0x09, 0x3B, 0x09, 0x3B, 0x00, 0x1C, 0x09, 0x3E, 0x09, 0x3F, 0x00, 0x02, + 0x09, 0x40, 0x09, 0x41, 0x00, 0x06, 0x09, 0x45, 0x09, 0x45, 0x00, 0x01, + 0x09, 0x50, 0x09, 0x50, 0x00, 0x03, 0x09, 0x51, 0x09, 0x51, 0x00, 0x43, + 0x09, 0x52, 0x09, 0x52, 0x00, 0x01, 0x09, 0x59, 0x09, 0x59, 0x00, 0x06, + 0x09, 0x5C, 0x09, 0x5C, 0x00, 0x06, 0x09, 0x6D, 0x09, 0x6D, 0x00, 0x05, + 0x09, 0x6E, 0x09, 0x6E, 0x00, 0x03, 0x09, 0x70, 0x09, 0x70, 0x00, 0x06, + 0x09, 0x7B, 0x09, 0x7C, 0x00, 0x01, 0x09, 0x7F, 0x09, 0x81, 0x00, 0x01, + 0x09, 0x82, 0x09, 0x82, 0x00, 0x04, 0x09, 0x83, 0x09, 0x83, 0x00, 0x0F, + 0x09, 0x85, 0x09, 0x85, 0x00, 0x14, 0x09, 0x86, 0x09, 0x86, 0x00, 0x01, + 0x09, 0x88, 0x09, 0x88, 0x00, 0x01, 0x09, 0x89, 0x09, 0x89, 0x00, 0x05, + 0x09, 0x8A, 0x09, 0x8A, 0x00, 0x01, 0x09, 0x8C, 0x09, 0x8D, 0x00, 0x01, + 0x09, 0x8F, 0x09, 0x8F, 0x00, 0x1D, 0x09, 0x90, 0x09, 0x90, 0x00, 0x04, + 0x09, 0x92, 0x09, 0x92, 0x00, 0x04, 0x09, 0x93, 0x09, 0x93, 0x00, 0x0F, + 0x09, 0x94, 0x09, 0x95, 0x00, 0x0E, 0x09, 0x97, 0x09, 0x97, 0x00, 0x01, + 0x09, 0x98, 0x09, 0x98, 0x00, 0x14, 0x09, 0x9B, 0x09, 0x9B, 0x00, 0x04, + 0x09, 0x9C, 0x09, 0x9C, 0x00, 0x14, 0x09, 0xA1, 0x09, 0xA1, 0x00, 0x14, + 0x09, 0xA4, 0x09, 0xA5, 0x00, 0x03, 0x09, 0xA6, 0x09, 0xA6, 0x00, 0x06, + 0x09, 0xA7, 0x09, 0xA9, 0x00, 0x03, 0x09, 0xAB, 0x09, 0xAB, 0x00, 0x03, + 0x09, 0xAC, 0x09, 0xAC, 0x00, 0x05, 0x09, 0xB2, 0x09, 0xB2, 0x00, 0x0A, + 0x09, 0xB4, 0x09, 0xB4, 0x00, 0x02, 0x09, 0xB5, 0x09, 0xB5, 0x00, 0x06, + 0x09, 0xB6, 0x09, 0xB7, 0x00, 0x0A, 0x09, 0xBB, 0x09, 0xBC, 0x00, 0x02, + 0x09, 0xBF, 0x09, 0xC0, 0x00, 0x03, 0x09, 0xC1, 0x09, 0xC3, 0x00, 0x02, + 0x09, 0xC5, 0x09, 0xC5, 0x00, 0x03, 0x09, 0xC6, 0x09, 0xC6, 0x00, 0x1F, + 0x09, 0xC7, 0x09, 0xC7, 0x00, 0x02, 0x09, 0xC8, 0x09, 0xC9, 0x00, 0x01, + 0x09, 0xCF, 0x09, 0xCF, 0x00, 0x0A, 0x09, 0xD3, 0x09, 0xD4, 0x00, 0x03, + 0x09, 0xDB, 0x09, 0xDB, 0x00, 0x02, 0x09, 0xE7, 0x09, 0xEA, 0x00, 0x01, + 0x09, 0xEB, 0x09, 0xEE, 0x00, 0x1D, 0x09, 0xEF, 0x09, 0xEF, 0x00, 0x01, + 0x09, 0xF0, 0x09, 0xF2, 0x00, 0x14, 0x09, 0xF6, 0x09, 0xF6, 0x00, 0x01, + 0x0A, 0x15, 0x0A, 0x15, 0x00, 0x20, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x19, + 0x0B, 0x42, 0x0B, 0x42, 0x00, 0x08, 0x0B, 0x48, 0x0B, 0x48, 0x00, 0x15, + 0x0B, 0x49, 0x0B, 0x49, 0x00, 0x01, 0x00, 0x02, 0x02, 0x20, 0x00, 0x02, + 0x00, 0x3C, 0x00, 0x05, 0x00, 0x3D, 0x00, 0x40, 0x00, 0x07, 0x00, 0x41, + 0x00, 0x48, 0x00, 0x15, 0x00, 0x49, 0x00, 0x51, 0x00, 0x1E, 0x00, 0x52, + 0x00, 0x52, 0x00, 0x04, 0x00, 0x53, 0x00, 0x53, 0x00, 0x1E, 0x00, 0x54, + 0x00, 0x5C, 0x00, 0x04, 0x00, 0x5D, 0x00, 0x5E, 0x00, 0x16, 0x00, 0x5F, + 0x00, 0x79, 0x00, 0x07, 0x00, 0x7B, 0x00, 0x88, 0x00, 0x07, 0x00, 0x89, + 0x00, 0x8B, 0x00, 0x34, 0x00, 0x8D, 0x00, 0x96, 0x00, 0x22, 0x00, 0x97, + 0x00, 0x97, 0x00, 0x17, 0x00, 0xAB, 0x00, 0xAC, 0x00, 0x06, 0x00, 0xAD, + 0x00, 0xAD, 0x00, 0x0D, 0x00, 0xAE, 0x00, 0xAE, 0x00, 0x03, 0x00, 0xC7, + 0x00, 0xC8, 0x00, 0x1D, 0x00, 0xCD, 0x00, 0xD0, 0x00, 0x1D, 0x00, 0xD4, + 0x00, 0xD5, 0x00, 0x1D, 0x00, 0xDB, 0x00, 0xDB, 0x00, 0x1D, 0x00, 0xE4, + 0x00, 0xE5, 0x00, 0x1D, 0x00, 0xE9, 0x00, 0xE9, 0x00, 0x1D, 0x01, 0x0A, + 0x01, 0x0E, 0x00, 0x08, 0x01, 0x0F, 0x01, 0x18, 0x00, 0x18, 0x01, 0x19, + 0x01, 0x22, 0x00, 0x1F, 0x01, 0x23, 0x01, 0x23, 0x00, 0x09, 0x01, 0x40, + 0x01, 0x40, 0x00, 0x09, 0x01, 0x41, 0x01, 0x44, 0x00, 0x04, 0x01, 0x45, + 0x01, 0x45, 0x00, 0x5C, 0x01, 0x46, 0x01, 0x75, 0x00, 0x04, 0x01, 0x76, + 0x01, 0x76, 0x00, 0x07, 0x01, 0x77, 0x01, 0x7D, 0x00, 0x2B, 0x01, 0x7E, + 0x01, 0x7E, 0x00, 0x04, 0x01, 0x7F, 0x01, 0x7F, 0x00, 0x25, 0x01, 0x80, + 0x01, 0x89, 0x00, 0x17, 0x01, 0x8A, 0x01, 0x8B, 0x00, 0x49, 0x01, 0x8C, + 0x01, 0x8C, 0x00, 0x17, 0x01, 0x8D, 0x01, 0x98, 0x00, 0x14, 0x01, 0x99, + 0x01, 0x99, 0x00, 0x15, 0x01, 0x9A, 0x01, 0x9A, 0x00, 0x14, 0x01, 0x9B, + 0x01, 0xA7, 0x00, 0x0D, 0x01, 0xA8, 0x01, 0xA8, 0x00, 0x08, 0x01, 0xA9, + 0x01, 0xA9, 0x00, 0x5D, 0x01, 0xAA, 0x01, 0xC1, 0x00, 0x08, 0x01, 0xC2, + 0x01, 0xC6, 0x00, 0x31, 0x01, 0xC7, 0x01, 0xC7, 0x00, 0x08, 0x01, 0xC8, + 0x01, 0xCA, 0x00, 0x2A, 0x01, 0xCB, 0x01, 0xD1, 0x00, 0x28, 0x01, 0xD2, + 0x01, 0xD4, 0x00, 0x1C, 0x01, 0xD6, 0x01, 0xD7, 0x00, 0x1C, 0x01, 0xD8, + 0x01, 0xEF, 0x00, 0x0C, 0x01, 0xF0, 0x01, 0xFA, 0x00, 0x23, 0x01, 0xFB, + 0x02, 0x1A, 0x00, 0x02, 0x02, 0x1B, 0x02, 0x1B, 0x00, 0x2D, 0x02, 0x1C, + 0x02, 0x1E, 0x00, 0x02, 0x02, 0x1F, 0x02, 0x22, 0x00, 0x2D, 0x02, 0x23, + 0x02, 0x2C, 0x00, 0x03, 0x02, 0x2E, 0x02, 0x2F, 0x00, 0x03, 0x02, 0x31, + 0x02, 0x41, 0x00, 0x03, 0x02, 0x42, 0x02, 0x54, 0x00, 0x01, 0x02, 0x57, + 0x02, 0x57, 0x00, 0x25, 0x02, 0x5B, 0x02, 0x5B, 0x00, 0x61, 0x02, 0x61, + 0x02, 0x63, 0x00, 0x16, 0x02, 0x66, 0x02, 0x85, 0x00, 0x01, 0x02, 0x87, + 0x02, 0x89, 0x00, 0x24, 0x02, 0x8B, 0x02, 0x8B, 0x00, 0x24, 0x02, 0x8C, + 0x02, 0x8C, 0x00, 0x02, 0x02, 0x8D, 0x02, 0x8D, 0x00, 0x47, 0x02, 0x8F, + 0x02, 0x8F, 0x00, 0x47, 0x02, 0x90, 0x02, 0x90, 0x00, 0x24, 0x02, 0x91, + 0x02, 0x91, 0x00, 0x02, 0x02, 0x92, 0x02, 0x92, 0x00, 0x21, 0x02, 0x93, + 0x02, 0x93, 0x00, 0x24, 0x02, 0x94, 0x02, 0x9B, 0x00, 0x21, 0x02, 0x9E, + 0x02, 0xA3, 0x00, 0x02, 0x02, 0xA4, 0x02, 0xA4, 0x00, 0x03, 0x02, 0xA5, + 0x02, 0xA6, 0x00, 0x21, 0x02, 0xA7, 0x02, 0xA7, 0x00, 0x25, 0x02, 0xA8, + 0x02, 0xB0, 0x00, 0x02, 0x02, 0xB1, 0x02, 0xB3, 0x00, 0x09, 0x02, 0xB4, + 0x02, 0xB6, 0x00, 0x2C, 0x02, 0xB7, 0x02, 0xB8, 0x00, 0x09, 0x02, 0xB9, + 0x02, 0xB9, 0x00, 0x06, 0x02, 0xBA, 0x02, 0xBC, 0x00, 0x09, 0x02, 0xBD, + 0x02, 0xBE, 0x00, 0x2C, 0x02, 0xBF, 0x02, 0xC2, 0x00, 0x09, 0x02, 0xC3, + 0x02, 0xC3, 0x00, 0x2C, 0x02, 0xC4, 0x02, 0xC7, 0x00, 0x09, 0x02, 0xC8, + 0x02, 0xCA, 0x00, 0x06, 0x02, 0xCB, 0x02, 0xCB, 0x00, 0x09, 0x02, 0xCC, + 0x02, 0xCC, 0x00, 0x2C, 0x02, 0xCD, 0x02, 0xCD, 0x00, 0x09, 0x02, 0xCF, + 0x02, 0xD6, 0x00, 0x09, 0x02, 0xD7, 0x02, 0xD7, 0x00, 0x1A, 0x02, 0xD9, + 0x02, 0xDD, 0x00, 0x1A, 0x02, 0xDE, 0x02, 0xDE, 0x00, 0x02, 0x02, 0xDF, + 0x02, 0xDF, 0x00, 0x1A, 0x02, 0xE4, 0x02, 0xE4, 0x00, 0x25, 0x02, 0xE5, + 0x02, 0xE5, 0x00, 0x06, 0x02, 0xE6, 0x02, 0xE6, 0x00, 0x25, 0x02, 0xEF, + 0x02, 0xEF, 0x00, 0x36, 0x02, 0xF0, 0x02, 0xF3, 0x00, 0x06, 0x02, 0xFE, + 0x02, 0xFF, 0x00, 0x02, 0x03, 0x00, 0x03, 0x00, 0x00, 0x03, 0x03, 0x01, + 0x03, 0x01, 0x00, 0x21, 0x03, 0x02, 0x03, 0x06, 0x00, 0x02, 0x03, 0x07, + 0x03, 0x07, 0x00, 0x25, 0x03, 0x09, 0x03, 0x09, 0x00, 0x06, 0x03, 0x0A, + 0x03, 0x0A, 0x00, 0x02, 0x03, 0x0C, 0x03, 0x13, 0x00, 0x02, 0x03, 0x14, + 0x03, 0x14, 0x00, 0x09, 0x03, 0x16, 0x03, 0x19, 0x00, 0x01, 0x03, 0x1A, + 0x03, 0x1A, 0x00, 0x6C, 0x03, 0x1B, 0x03, 0x48, 0x00, 0x01, 0x03, 0x4A, + 0x03, 0x4A, 0x00, 0x24, 0x03, 0x4B, 0x03, 0x50, 0x00, 0x01, 0x03, 0x51, + 0x03, 0x51, 0x00, 0x21, 0x03, 0x52, 0x03, 0x52, 0x00, 0x24, 0x03, 0x53, + 0x03, 0x53, 0x00, 0x25, 0x03, 0x54, 0x03, 0x56, 0x00, 0x0A, 0x03, 0x57, + 0x03, 0x57, 0x00, 0x02, 0x03, 0x58, 0x03, 0x58, 0x00, 0x25, 0x03, 0x59, + 0x03, 0x59, 0x00, 0x02, 0x03, 0x5A, 0x03, 0x64, 0x00, 0x0A, 0x03, 0x67, + 0x03, 0x75, 0x00, 0x10, 0x03, 0x76, 0x03, 0x77, 0x00, 0x15, 0x03, 0x78, + 0x03, 0x79, 0x00, 0x06, 0x03, 0x7A, 0x03, 0x7A, 0x00, 0x25, 0x03, 0x7B, + 0x03, 0x7B, 0x00, 0x06, 0x03, 0x7C, 0x03, 0x7C, 0x00, 0x2D, 0x03, 0x7D, + 0x03, 0x90, 0x00, 0x06, 0x03, 0x91, 0x03, 0x93, 0x00, 0x03, 0x03, 0x94, + 0x03, 0x94, 0x00, 0x5A, 0x03, 0x95, 0x03, 0x95, 0x00, 0x6A, 0x03, 0x96, + 0x03, 0xAE, 0x00, 0x03, 0x03, 0xAF, 0x03, 0xAF, 0x00, 0x5A, 0x03, 0xB0, + 0x03, 0xB2, 0x00, 0x03, 0x03, 0xD2, 0x03, 0xD2, 0x00, 0x0B, 0x03, 0xD3, + 0x03, 0xD3, 0x00, 0x05, 0x03, 0xD4, 0x03, 0xD5, 0x00, 0x0B, 0x03, 0xD6, + 0x03, 0xD7, 0x00, 0x27, 0x03, 0xD9, 0x03, 0xDE, 0x00, 0x27, 0x03, 0xDF, + 0x03, 0xE2, 0x00, 0x26, 0x03, 0xE3, 0x03, 0xE3, 0x00, 0x25, 0x03, 0xE4, + 0x03, 0xE5, 0x00, 0x0B, 0x03, 0xE6, 0x03, 0xE6, 0x00, 0x24, 0x03, 0xE7, + 0x03, 0xF5, 0x00, 0x0B, 0x03, 0xF6, 0x03, 0xF6, 0x00, 0x24, 0x03, 0xFA, + 0x03, 0xFB, 0x00, 0x0B, 0x03, 0xFC, 0x03, 0xFF, 0x00, 0x16, 0x04, 0x00, + 0x04, 0x00, 0x00, 0x25, 0x04, 0x01, 0x04, 0x06, 0x00, 0x16, 0x04, 0x08, + 0x04, 0x08, 0x00, 0x0D, 0x04, 0x09, 0x04, 0x09, 0x00, 0x30, 0x04, 0x0A, + 0x04, 0x0A, 0x00, 0x04, 0x04, 0x0B, 0x04, 0x0B, 0x00, 0x07, 0x04, 0x0E, + 0x04, 0x0E, 0x00, 0x04, 0x04, 0x29, 0x04, 0x29, 0x00, 0x2A, 0x04, 0x2A, + 0x04, 0x2A, 0x00, 0x15, 0x04, 0x2B, 0x04, 0x2C, 0x00, 0x0D, 0x04, 0x2D, + 0x04, 0x2D, 0x00, 0x3F, 0x04, 0x2E, 0x04, 0x2E, 0x00, 0x1C, 0x04, 0x30, + 0x04, 0x30, 0x00, 0x3E, 0x04, 0x31, 0x04, 0x32, 0x00, 0x18, 0x04, 0x33, + 0x04, 0x33, 0x00, 0x15, 0x04, 0x35, 0x04, 0x35, 0x00, 0x04, 0x04, 0x37, + 0x04, 0x37, 0x00, 0x0C, 0x04, 0x38, 0x04, 0x38, 0x00, 0x04, 0x04, 0x39, + 0x04, 0x39, 0x00, 0x3F, 0x04, 0x3E, 0x04, 0x3F, 0x00, 0x02, 0x04, 0x41, + 0x04, 0x41, 0x00, 0x3F, 0x04, 0x42, 0x04, 0x42, 0x00, 0x01, 0x04, 0x44, + 0x04, 0x46, 0x00, 0x01, 0x04, 0x47, 0x04, 0x47, 0x00, 0x04, 0x04, 0x48, + 0x04, 0x48, 0x00, 0x5E, 0x04, 0x4B, 0x04, 0x4B, 0x00, 0x01, 0x04, 0x4C, + 0x04, 0x4C, 0x00, 0x5F, 0x04, 0x50, 0x04, 0x50, 0x00, 0x3E, 0x04, 0x51, + 0x04, 0x51, 0x00, 0x2A, 0x04, 0x52, 0x04, 0x53, 0x00, 0x01, 0x04, 0x54, + 0x04, 0x6D, 0x00, 0x0F, 0x04, 0x6E, 0x04, 0x6E, 0x00, 0x15, 0x04, 0x6F, + 0x04, 0x6F, 0x00, 0x67, 0x04, 0x70, 0x04, 0x70, 0x00, 0x62, 0x04, 0x71, + 0x04, 0x71, 0x00, 0x10, 0x04, 0x73, 0x04, 0x73, 0x00, 0x01, 0x04, 0x9A, + 0x04, 0x9A, 0x00, 0x1B, 0x04, 0x9C, 0x04, 0x9C, 0x00, 0x1B, 0x04, 0x9F, + 0x04, 0xA4, 0x00, 0x1B, 0x04, 0xA6, 0x04, 0xAA, 0x00, 0x1B, 0x04, 0xAB, + 0x04, 0xAB, 0x00, 0x05, 0x04, 0xAC, 0x04, 0xAC, 0x00, 0x7B, 0x04, 0xAD, + 0x04, 0xAD, 0x00, 0x06, 0x04, 0xAE, 0x04, 0xB1, 0x00, 0x01, 0x04, 0xB3, + 0x04, 0xB4, 0x00, 0x0A, 0x04, 0xB5, 0x04, 0xC6, 0x00, 0x03, 0x04, 0xC7, + 0x04, 0xC8, 0x00, 0x01, 0x04, 0xC9, 0x04, 0xC9, 0x00, 0x6F, 0x04, 0xCA, + 0x04, 0xE1, 0x00, 0x11, 0x04, 0xE2, 0x04, 0xE2, 0x00, 0x0B, 0x04, 0xE4, + 0x04, 0xE4, 0x00, 0x10, 0x04, 0xE5, 0x04, 0xE7, 0x00, 0x0A, 0x04, 0xE8, + 0x04, 0xE8, 0x00, 0x36, 0x04, 0xE9, 0x04, 0xEA, 0x00, 0x26, 0x04, 0xEB, + 0x04, 0xEC, 0x00, 0x02, 0x04, 0xED, 0x04, 0xED, 0x00, 0x06, 0x04, 0xEE, + 0x04, 0xEE, 0x00, 0x1A, 0x04, 0xEF, 0x04, 0xEF, 0x00, 0x02, 0x04, 0xF0, + 0x04, 0xF2, 0x00, 0x1A, 0x04, 0xF3, 0x04, 0xF3, 0x00, 0x02, 0x04, 0xF4, + 0x04, 0xF5, 0x00, 0x06, 0x04, 0xF6, 0x04, 0xF6, 0x00, 0x02, 0x04, 0xF7, + 0x04, 0xF7, 0x00, 0x06, 0x04, 0xF8, 0x04, 0xF8, 0x00, 0x02, 0x04, 0xF9, + 0x04, 0xF9, 0x00, 0x06, 0x04, 0xFA, 0x04, 0xFA, 0x00, 0x0A, 0x04, 0xFB, + 0x04, 0xFB, 0x00, 0x02, 0x04, 0xFC, 0x04, 0xFC, 0x00, 0x06, 0x04, 0xFD, + 0x04, 0xFD, 0x00, 0x02, 0x04, 0xFE, 0x04, 0xFE, 0x00, 0x0A, 0x04, 0xFF, + 0x04, 0xFF, 0x00, 0x01, 0x05, 0x00, 0x05, 0x01, 0x00, 0x26, 0x05, 0x02, + 0x05, 0x02, 0x00, 0x36, 0x05, 0x03, 0x05, 0x03, 0x00, 0x03, 0x05, 0x04, + 0x05, 0x04, 0x00, 0x02, 0x05, 0x05, 0x05, 0x05, 0x00, 0x06, 0x05, 0x06, + 0x05, 0x07, 0x00, 0x02, 0x05, 0x08, 0x05, 0x08, 0x00, 0x36, 0x05, 0x09, + 0x05, 0x0A, 0x00, 0x37, 0x05, 0x0B, 0x05, 0x0B, 0x00, 0x09, 0x05, 0x0C, + 0x05, 0x0D, 0x00, 0x01, 0x05, 0x0E, 0x05, 0x0F, 0x00, 0x37, 0x05, 0x10, + 0x05, 0x11, 0x00, 0x01, 0x05, 0x12, 0x05, 0x12, 0x00, 0x02, 0x05, 0x14, + 0x05, 0x14, 0x00, 0x37, 0x05, 0x15, 0x05, 0x15, 0x00, 0x01, 0x05, 0x16, + 0x05, 0x16, 0x00, 0x2D, 0x05, 0x17, 0x05, 0x17, 0x00, 0x36, 0x05, 0x18, + 0x05, 0x18, 0x00, 0x01, 0x05, 0x1A, 0x05, 0x1A, 0x00, 0x0B, 0x05, 0x1B, + 0x05, 0x1B, 0x00, 0x63, 0x05, 0x1C, 0x05, 0x1C, 0x00, 0x40, 0x05, 0x25, + 0x05, 0x25, 0x00, 0x6E, 0x05, 0x2D, 0x05, 0x2D, 0x00, 0x68, 0x05, 0x2E, + 0x05, 0x2F, 0x00, 0x4D, 0x05, 0x32, 0x05, 0x32, 0x00, 0x40, 0x05, 0x36, + 0x05, 0x36, 0x00, 0x71, 0x05, 0x39, 0x05, 0x3A, 0x00, 0x4B, 0x05, 0x3B, + 0x05, 0x3B, 0x00, 0x48, 0x05, 0x3C, 0x05, 0x3C, 0x00, 0x29, 0x05, 0x3F, + 0x05, 0x3F, 0x00, 0x45, 0x05, 0x40, 0x05, 0x40, 0x00, 0x50, 0x05, 0x44, + 0x05, 0x44, 0x00, 0x73, 0x05, 0x45, 0x05, 0x45, 0x00, 0x45, 0x05, 0x46, + 0x05, 0x47, 0x00, 0x48, 0x05, 0x49, 0x05, 0x49, 0x00, 0x45, 0x05, 0x4A, + 0x05, 0x4A, 0x00, 0x50, 0x05, 0x4B, 0x05, 0x4B, 0x00, 0x75, 0x05, 0x4C, + 0x05, 0x4C, 0x00, 0x6B, 0x05, 0x68, 0x05, 0x68, 0x00, 0x32, 0x05, 0x6A, + 0x05, 0x6A, 0x00, 0x32, 0x05, 0x6C, 0x05, 0x6C, 0x00, 0x32, 0x05, 0x6F, + 0x05, 0x6F, 0x00, 0x12, 0x05, 0x80, 0x05, 0x83, 0x00, 0x13, 0x05, 0x84, + 0x05, 0x85, 0x00, 0x12, 0x05, 0x86, 0x05, 0x86, 0x00, 0x20, 0x05, 0x87, + 0x05, 0x87, 0x00, 0x12, 0x05, 0x88, 0x05, 0x89, 0x00, 0x13, 0x05, 0x8A, + 0x05, 0x8A, 0x00, 0x12, 0x05, 0x8B, 0x05, 0x8B, 0x00, 0x20, 0x05, 0x95, + 0x05, 0x95, 0x00, 0x46, 0x05, 0x98, 0x05, 0x98, 0x00, 0x55, 0x05, 0x99, + 0x05, 0x99, 0x00, 0x46, 0x05, 0x9A, 0x05, 0x9A, 0x00, 0x55, 0x05, 0x9B, + 0x05, 0x9B, 0x00, 0x42, 0x05, 0x9C, 0x05, 0x9C, 0x00, 0x43, 0x05, 0x9D, + 0x05, 0x9D, 0x00, 0x42, 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x43, 0x05, 0xA1, + 0x05, 0xA1, 0x00, 0x42, 0x05, 0xA2, 0x05, 0xA2, 0x00, 0x43, 0x05, 0xA3, + 0x05, 0xA3, 0x00, 0x3A, 0x05, 0xA4, 0x05, 0xA4, 0x00, 0x32, 0x05, 0xA6, + 0x05, 0xA6, 0x00, 0x32, 0x05, 0xA8, 0x05, 0xA8, 0x00, 0x32, 0x05, 0xAD, + 0x05, 0xAD, 0x00, 0x76, 0x05, 0xAE, 0x05, 0xAE, 0x00, 0x29, 0x05, 0xB0, + 0x05, 0xB0, 0x00, 0x30, 0x05, 0xB1, 0x05, 0xB1, 0x00, 0x12, 0x05, 0xB6, + 0x05, 0xB9, 0x00, 0x20, 0x05, 0xBA, 0x05, 0xBA, 0x00, 0x60, 0x05, 0xBB, + 0x05, 0xBB, 0x00, 0x20, 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x12, 0x05, 0xC1, + 0x05, 0xC2, 0x00, 0x20, 0x05, 0xC8, 0x05, 0xC8, 0x00, 0x3C, 0x05, 0xC9, + 0x05, 0xC9, 0x00, 0x38, 0x05, 0xCA, 0x05, 0xCB, 0x00, 0x39, 0x05, 0xCC, + 0x05, 0xCC, 0x00, 0x3C, 0x05, 0xCD, 0x05, 0xCD, 0x00, 0x38, 0x05, 0xCE, + 0x05, 0xCF, 0x00, 0x33, 0x05, 0xD4, 0x05, 0xD4, 0x00, 0x38, 0x05, 0xDB, + 0x05, 0xDD, 0x00, 0x2F, 0x05, 0xDF, 0x05, 0xDF, 0x00, 0x2E, 0x05, 0xE2, + 0x05, 0xE2, 0x00, 0x2E, 0x05, 0xE3, 0x05, 0xE3, 0x00, 0x12, 0x05, 0xE4, + 0x05, 0xE4, 0x00, 0x39, 0x05, 0xE6, 0x05, 0xE6, 0x00, 0x52, 0x05, 0xE7, + 0x05, 0xE7, 0x00, 0x53, 0x05, 0xE8, 0x05, 0xE8, 0x00, 0x52, 0x05, 0xE9, + 0x05, 0xE9, 0x00, 0x53, 0x05, 0xEC, 0x05, 0xEF, 0x00, 0x13, 0x05, 0xF0, + 0x05, 0xF1, 0x00, 0x12, 0x05, 0xF2, 0x05, 0xF2, 0x00, 0x20, 0x05, 0xF3, + 0x05, 0xF3, 0x00, 0x12, 0x05, 0xF4, 0x05, 0xF5, 0x00, 0x13, 0x05, 0xF6, + 0x05, 0xF6, 0x00, 0x12, 0x05, 0xF9, 0x05, 0xFC, 0x00, 0x13, 0x05, 0xFD, + 0x05, 0xFE, 0x00, 0x12, 0x05, 0xFF, 0x05, 0xFF, 0x00, 0x20, 0x06, 0x00, + 0x06, 0x00, 0x00, 0x12, 0x06, 0x01, 0x06, 0x02, 0x00, 0x13, 0x06, 0x03, + 0x06, 0x03, 0x00, 0x12, 0x06, 0x06, 0x06, 0x07, 0x00, 0x44, 0x06, 0x08, + 0x06, 0x09, 0x00, 0x41, 0x06, 0x0A, 0x06, 0x0A, 0x00, 0x20, 0x06, 0x0B, + 0x06, 0x0B, 0x00, 0x58, 0x06, 0x0C, 0x06, 0x0C, 0x00, 0x3A, 0x06, 0x0E, + 0x06, 0x0E, 0x00, 0x58, 0x06, 0x0F, 0x06, 0x0F, 0x00, 0x44, 0x06, 0x15, + 0x06, 0x15, 0x00, 0x41, 0x06, 0x16, 0x06, 0x19, 0x00, 0x3B, 0x06, 0x1A, + 0x06, 0x1A, 0x00, 0x29, 0x06, 0x1B, 0x06, 0x1B, 0x00, 0x6D, 0x06, 0x26, + 0x06, 0x27, 0x00, 0x35, 0x06, 0x28, 0x06, 0x28, 0x00, 0x4E, 0x06, 0x29, + 0x06, 0x29, 0x00, 0x35, 0x06, 0x2A, 0x06, 0x2A, 0x00, 0x66, 0x06, 0x2B, + 0x06, 0x2B, 0x00, 0x51, 0x06, 0x2D, 0x06, 0x2E, 0x00, 0x54, 0x06, 0x2F, + 0x06, 0x2F, 0x00, 0x69, 0x06, 0x30, 0x06, 0x30, 0x00, 0x4E, 0x06, 0x33, + 0x06, 0x34, 0x00, 0x35, 0x06, 0x35, 0x06, 0x35, 0x00, 0x51, 0x06, 0x36, + 0x06, 0x36, 0x00, 0x70, 0x06, 0x37, 0x06, 0x37, 0x00, 0x72, 0x06, 0x38, + 0x06, 0x38, 0x00, 0x77, 0x06, 0x39, 0x06, 0x39, 0x00, 0x78, 0x06, 0x3A, + 0x06, 0x3A, 0x00, 0x5B, 0x06, 0x3B, 0x06, 0x3B, 0x00, 0x79, 0x06, 0x3C, + 0x06, 0x3C, 0x00, 0x7A, 0x06, 0x3D, 0x06, 0x3D, 0x00, 0x5B, 0x06, 0x3E, + 0x06, 0x3E, 0x00, 0x7C, 0x06, 0x41, 0x06, 0x42, 0x00, 0x57, 0x06, 0x4B, + 0x06, 0x4B, 0x00, 0x74, 0x06, 0x4F, 0x06, 0x4F, 0x00, 0x4C, 0x06, 0x51, + 0x06, 0x51, 0x00, 0x4C, 0x06, 0x53, 0x06, 0x54, 0x00, 0x56, 0x06, 0x55, + 0x06, 0x55, 0x00, 0x65, 0x06, 0x56, 0x06, 0x6F, 0x00, 0x0E, 0x06, 0x70, + 0x06, 0x75, 0x00, 0x19, 0x06, 0x76, 0x06, 0x76, 0x00, 0x4F, 0x06, 0x77, + 0x06, 0x78, 0x00, 0x19, 0x06, 0x79, 0x06, 0x79, 0x00, 0x4F, 0x06, 0x7A, + 0x06, 0x7A, 0x00, 0x19, 0x06, 0x7D, 0x06, 0x81, 0x00, 0x19, 0x06, 0x84, + 0x06, 0x86, 0x00, 0x19, 0x06, 0xAE, 0x06, 0xAE, 0x00, 0x64, 0x07, 0x06, + 0x07, 0x08, 0x00, 0x12, 0x07, 0x09, 0x07, 0x0A, 0x00, 0x13, 0x07, 0x1E, + 0x07, 0x20, 0x00, 0x12, 0x07, 0x21, 0x07, 0x22, 0x00, 0x13, 0x07, 0x33, + 0x07, 0x33, 0x00, 0x30, 0x07, 0x37, 0x07, 0x37, 0x00, 0x30, 0x07, 0x3A, + 0x07, 0x3A, 0x00, 0x30, 0x07, 0x3B, 0x07, 0x3C, 0x00, 0x3A, 0x07, 0x3D, + 0x07, 0x41, 0x00, 0x29, 0x07, 0x55, 0x07, 0x56, 0x00, 0x4A, 0x07, 0x5C, + 0x07, 0x5C, 0x00, 0x29, 0x07, 0xE8, 0x07, 0xE8, 0x00, 0x22, 0x07, 0xEA, + 0x07, 0xEA, 0x00, 0x18, 0x07, 0xEB, 0x07, 0xEB, 0x00, 0x1F, 0x07, 0xED, + 0x07, 0xED, 0x00, 0x17, 0x07, 0xEE, 0x07, 0xEE, 0x00, 0x14, 0x07, 0xEF, + 0x07, 0xEF, 0x00, 0x1A, 0x07, 0xF2, 0x07, 0xF2, 0x00, 0x02, 0x07, 0xF3, + 0x07, 0xF3, 0x00, 0x0A, 0x07, 0xF4, 0x07, 0xF4, 0x00, 0x10, 0x07, 0xF5, + 0x07, 0xF6, 0x00, 0x06, 0x07, 0xF8, 0x07, 0xF8, 0x00, 0x2F, 0x07, 0xF9, + 0x07, 0xFA, 0x00, 0x2E, 0x07, 0xFB, 0x07, 0xFB, 0x00, 0x3C, 0x07, 0xFC, + 0x07, 0xFC, 0x00, 0x38, 0x07, 0xFD, 0x07, 0xFD, 0x00, 0x3C, 0x07, 0xFE, + 0x07, 0xFE, 0x00, 0x38, 0x08, 0x01, 0x08, 0x02, 0x00, 0x33, 0x08, 0x03, + 0x08, 0x08, 0x00, 0x05, 0x08, 0x09, 0x08, 0x0A, 0x00, 0x15, 0x08, 0x0B, + 0x08, 0x0B, 0x00, 0x1E, 0x08, 0x0C, 0x08, 0x0D, 0x00, 0x04, 0x08, 0x0E, + 0x08, 0x11, 0x00, 0x07, 0x08, 0x12, 0x08, 0x12, 0x00, 0x34, 0x08, 0x13, + 0x08, 0x13, 0x00, 0x22, 0x08, 0x17, 0x08, 0x18, 0x00, 0x1D, 0x08, 0x1B, + 0x08, 0x1B, 0x00, 0x18, 0x08, 0x1C, 0x08, 0x1D, 0x00, 0x1F, 0x08, 0x22, + 0x08, 0x28, 0x00, 0x04, 0x08, 0x29, 0x08, 0x29, 0x00, 0x2B, 0x08, 0x2A, + 0x08, 0x2C, 0x00, 0x17, 0x08, 0x2D, 0x08, 0x30, 0x00, 0x14, 0x08, 0x31, + 0x08, 0x32, 0x00, 0x0D, 0x08, 0x33, 0x08, 0x39, 0x00, 0x08, 0x08, 0x3A, + 0x08, 0x3A, 0x00, 0x31, 0x08, 0x3B, 0x08, 0x3B, 0x00, 0x08, 0x08, 0x3C, + 0x08, 0x3C, 0x00, 0x2A, 0x08, 0x3D, 0x08, 0x3F, 0x00, 0x28, 0x08, 0x40, + 0x08, 0x41, 0x00, 0x1C, 0x08, 0x42, 0x08, 0x44, 0x00, 0x0C, 0x08, 0x45, + 0x08, 0x46, 0x00, 0x23, 0x08, 0x4C, 0x08, 0x51, 0x00, 0x02, 0x08, 0x52, + 0x08, 0x54, 0x00, 0x01, 0x08, 0x57, 0x08, 0x5A, 0x00, 0x01, 0x08, 0x5B, + 0x08, 0x5B, 0x00, 0x24, 0x08, 0x5C, 0x08, 0x5C, 0x00, 0x21, 0x08, 0x5D, + 0x08, 0x5F, 0x00, 0x02, 0x08, 0x60, 0x08, 0x60, 0x00, 0x09, 0x08, 0x61, + 0x08, 0x62, 0x00, 0x2C, 0x08, 0x63, 0x08, 0x65, 0x00, 0x09, 0x08, 0x66, + 0x08, 0x66, 0x00, 0x06, 0x08, 0x67, 0x08, 0x67, 0x00, 0x1A, 0x08, 0x6B, + 0x08, 0x6E, 0x00, 0x02, 0x08, 0x6F, 0x08, 0x76, 0x00, 0x01, 0x08, 0x77, + 0x08, 0x79, 0x00, 0x0A, 0x08, 0x7A, 0x08, 0x7E, 0x00, 0x10, 0x08, 0x7F, + 0x08, 0x81, 0x00, 0x06, 0x08, 0x82, 0x08, 0x8A, 0x00, 0x03, 0x08, 0x8B, + 0x08, 0x8B, 0x00, 0x0B, 0x08, 0x8C, 0x08, 0x8E, 0x00, 0x27, 0x08, 0x8F, + 0x08, 0x90, 0x00, 0x26, 0x08, 0x91, 0x08, 0x93, 0x00, 0x0B, 0x08, 0x94, + 0x08, 0x95, 0x00, 0x16, 0x08, 0x96, 0x08, 0x9B, 0x00, 0x03, 0x08, 0x9C, + 0x08, 0x9C, 0x00, 0x09, 0x08, 0x9D, 0x08, 0x9D, 0x00, 0x24, 0x08, 0xA1, + 0x08, 0xA3, 0x00, 0x06, 0x08, 0xAD, 0x08, 0xAD, 0x00, 0x07, 0x08, 0xAE, + 0x08, 0xAE, 0x00, 0x1D, 0x08, 0xAF, 0x08, 0xAF, 0x00, 0x04, 0x08, 0xB0, + 0x08, 0xB0, 0x00, 0x1C, 0x08, 0xB3, 0x08, 0xB3, 0x00, 0x04, 0x08, 0xB9, + 0x08, 0xB9, 0x00, 0x01, 0x08, 0xBC, 0x08, 0xBC, 0x00, 0x02, 0x08, 0xBD, + 0x08, 0xBE, 0x00, 0x01, 0x08, 0xBF, 0x08, 0xC0, 0x00, 0x02, 0x08, 0xC2, + 0x08, 0xC2, 0x00, 0x1B, 0x08, 0xC3, 0x08, 0xC4, 0x00, 0x03, 0x08, 0xC5, + 0x08, 0xC6, 0x00, 0x1B, 0x08, 0xC7, 0x08, 0xC7, 0x00, 0x03, 0x08, 0xC9, + 0x08, 0xC9, 0x00, 0x03, 0x08, 0xCA, 0x08, 0xCA, 0x00, 0x39, 0x08, 0xCB, + 0x08, 0xCC, 0x00, 0x2F, 0x08, 0xCD, 0x08, 0xCE, 0x00, 0x2E, 0x08, 0xCF, + 0x08, 0xCF, 0x00, 0x2F, 0x08, 0xD1, 0x08, 0xD1, 0x00, 0x46, 0x08, 0xD2, + 0x08, 0xD2, 0x00, 0x12, 0x08, 0xD3, 0x08, 0xD3, 0x00, 0x2E, 0x08, 0xE9, + 0x08, 0xE9, 0x00, 0x09, 0x08, 0xEA, 0x08, 0xEA, 0x00, 0x47, 0x08, 0xFE, + 0x08, 0xFE, 0x00, 0x22, 0x09, 0x00, 0x09, 0x00, 0x00, 0x18, 0x09, 0x01, + 0x09, 0x01, 0x00, 0x1F, 0x09, 0x03, 0x09, 0x03, 0x00, 0x17, 0x09, 0x04, + 0x09, 0x04, 0x00, 0x14, 0x09, 0x05, 0x09, 0x05, 0x00, 0x1A, 0x09, 0x08, + 0x09, 0x08, 0x00, 0x02, 0x09, 0x09, 0x09, 0x09, 0x00, 0x0A, 0x09, 0x0A, + 0x09, 0x0A, 0x00, 0x10, 0x09, 0x0B, 0x09, 0x0C, 0x00, 0x06, 0x09, 0x0E, + 0x09, 0x0F, 0x00, 0x33, 0x09, 0x10, 0x09, 0x10, 0x00, 0x3D, 0x09, 0x11, + 0x09, 0x11, 0x00, 0x59, 0x09, 0x12, 0x09, 0x12, 0x00, 0x3D, 0x09, 0x13, + 0x09, 0x13, 0x00, 0x59, 0x09, 0x14, 0x09, 0x15, 0x00, 0x3D, 0x09, 0x1A, + 0x09, 0x1A, 0x00, 0x04, 0x09, 0x1E, 0x09, 0x1E, 0x00, 0x15, 0x09, 0x27, + 0x09, 0x27, 0x00, 0x0D, 0x09, 0x34, 0x09, 0x34, 0x00, 0x14, 0x09, 0x3E, + 0x09, 0x3E, 0x00, 0x01, 0x09, 0x43, 0x09, 0x43, 0x00, 0x0A, 0x09, 0x45, + 0x09, 0x45, 0x00, 0x10, 0x09, 0x50, 0x09, 0x50, 0x00, 0x1A, 0x09, 0x51, + 0x09, 0x51, 0x00, 0x05, 0x09, 0x52, 0x09, 0x52, 0x00, 0x02, 0x09, 0x59, + 0x09, 0x59, 0x00, 0x06, 0x09, 0x5C, 0x09, 0x5C, 0x00, 0x10, 0x09, 0x6D, + 0x09, 0x6D, 0x00, 0x05, 0x09, 0x6E, 0x09, 0x6E, 0x00, 0x02, 0x09, 0x70, + 0x09, 0x70, 0x00, 0x0A, 0x09, 0x7B, 0x09, 0x7E, 0x00, 0x0D, 0x09, 0x7F, + 0x09, 0x7F, 0x00, 0x18, 0x09, 0x81, 0x09, 0x81, 0x00, 0x2B, 0x09, 0x82, + 0x09, 0x82, 0x00, 0x1E, 0x09, 0x83, 0x09, 0x83, 0x00, 0x0D, 0x09, 0x85, + 0x09, 0x85, 0x00, 0x1C, 0x09, 0x87, 0x09, 0x87, 0x00, 0x01, 0x09, 0x88, + 0x09, 0x88, 0x00, 0x1E, 0x09, 0x89, 0x09, 0x8A, 0x00, 0x05, 0x09, 0x8D, + 0x09, 0x8D, 0x00, 0x15, 0x09, 0x8F, 0x09, 0x8F, 0x00, 0x2A, 0x09, 0x91, + 0x09, 0x91, 0x00, 0x3E, 0x09, 0x92, 0x09, 0x92, 0x00, 0x1E, 0x09, 0x93, + 0x09, 0x93, 0x00, 0x0D, 0x09, 0x94, 0x09, 0x95, 0x00, 0x0C, 0x09, 0x98, + 0x09, 0x98, 0x00, 0x1C, 0x09, 0x9B, 0x09, 0x9B, 0x00, 0x04, 0x09, 0x9C, + 0x09, 0x9C, 0x00, 0x1C, 0x09, 0xA1, 0x09, 0xA1, 0x00, 0x1C, 0x09, 0xA3, + 0x09, 0xA3, 0x00, 0x01, 0x09, 0xA4, 0x09, 0xA6, 0x00, 0x0A, 0x09, 0xA7, + 0x09, 0xA8, 0x00, 0x02, 0x09, 0xA9, 0x09, 0xA9, 0x00, 0x1A, 0x09, 0xAB, + 0x09, 0xAB, 0x00, 0x01, 0x09, 0xAC, 0x09, 0xAC, 0x00, 0x05, 0x09, 0xB2, + 0x09, 0xB2, 0x00, 0x0B, 0x09, 0xB4, 0x09, 0xB4, 0x00, 0x01, 0x09, 0xB5, + 0x09, 0xB5, 0x00, 0x0A, 0x09, 0xB6, 0x09, 0xB7, 0x00, 0x0B, 0x09, 0xB8, + 0x09, 0xB8, 0x00, 0x2D, 0x09, 0xBA, 0x09, 0xBA, 0x00, 0x02, 0x09, 0xBB, + 0x09, 0xBC, 0x00, 0x01, 0x09, 0xBF, 0x09, 0xC0, 0x00, 0x02, 0x09, 0xC1, + 0x09, 0xC3, 0x00, 0x01, 0x09, 0xC4, 0x09, 0xC5, 0x00, 0x02, 0x09, 0xC6, + 0x09, 0xC6, 0x00, 0x26, 0x09, 0xC7, 0x09, 0xC7, 0x00, 0x01, 0x09, 0xC8, + 0x09, 0xC8, 0x00, 0x34, 0x09, 0xC9, 0x09, 0xC9, 0x00, 0x18, 0x09, 0xCF, + 0x09, 0xCF, 0x00, 0x0B, 0x09, 0xD4, 0x09, 0xD4, 0x00, 0x1A, 0x09, 0xEA, + 0x09, 0xEB, 0x00, 0x2A, 0x09, 0xEF, 0x09, 0xF0, 0x00, 0x1C, 0x0A, 0x15, + 0x0A, 0x15, 0x00, 0x2E, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x20, 0x0B, 0x42, + 0x0B, 0x42, 0x00, 0x03, 0x0B, 0x48, 0x0B, 0x48, 0x00, 0x29, 0x00, 0x00, + 0x00, 0x0A, 0x01, 0x48, 0xFE, 0x60, 0x03, 0xF8, 0x07, 0x40, 0x00, 0x03, + 0x00, 0x0D, 0x00, 0x11, 0x00, 0x15, 0x00, 0x21, 0x00, 0x27, 0x00, 0x31, + 0x00, 0x35, 0x00, 0x3B, 0x00, 0x47, 0x00, 0x00, 0x41, 0x21, 0x11, 0x21, + 0x01, 0x15, 0x21, 0x35, 0x23, 0x37, 0x35, 0x21, 0x15, 0x33, 0x03, 0x11, + 0x21, 0x11, 0x07, 0x23, 0x35, 0x33, 0x01, 0x11, 0x21, 0x11, 0x23, 0x15, + 0x33, 0x35, 0x33, 0x15, 0x23, 0x35, 0x27, 0x15, 0x21, 0x35, 0x23, 0x15, + 0x25, 0x15, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x11, 0x23, + 0x35, 0x33, 0x27, 0x15, 0x21, 0x35, 0x23, 0x35, 0x27, 0x15, 0x21, 0x35, + 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, 0x03, 0xF8, 0xFD, 0x50, + 0x02, 0xB0, 0xFE, 0x08, 0x01, 0x40, 0xD7, 0xD7, 0xFE, 0xC0, 0xD8, 0xD8, + 0x01, 0x40, 0x40, 0xC0, 0xC0, 0xFF, 0x00, 0x01, 0x40, 0xC0, 0x40, 0x40, + 0xC0, 0x40, 0x01, 0x40, 0x40, 0xFF, 0x00, 0xC0, 0x80, 0xFE, 0xC0, 0x80, + 0x40, 0x40, 0x80, 0x01, 0x40, 0x80, 0xC0, 0x01, 0x40, 0x90, 0x90, 0xFE, + 0xC0, 0x70, 0xFE, 0x60, 0x08, 0xE0, 0xF8, 0x00, 0x40, 0x40, 0x7F, 0x41, + 0x40, 0x01, 0x80, 0xFF, 0x00, 0x01, 0x00, 0xC0, 0x80, 0x01, 0xC0, 0xFF, + 0x00, 0x01, 0x00, 0x80, 0x40, 0x80, 0xC0, 0x80, 0x40, 0xE0, 0xA0, 0x80, + 0x40, 0xA0, 0x40, 0x40, 0x60, 0x01, 0x20, 0x60, 0x40, 0xE0, 0x40, 0xA0, + 0x80, 0x40, 0x40, 0x60, 0x40, 0x40, 0x60, 0x00, 0x02, 0x00, 0x15, 0x00, + 0x00, 0x05, 0x86, 0x05, 0xD2, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x73, + 0x01, 0x21, 0x01, 0x21, 0x01, 0x26, 0x02, 0x27, 0x33, 0x06, 0x02, 0x07, + 0x01, 0x13, 0x35, 0x21, 0x15, 0x15, 0x02, 0x11, 0x01, 0x4E, 0x02, 0x12, + 0xFE, 0xDD, 0xFE, 0xFA, 0x27, 0x55, 0x37, 0x46, 0x36, 0x56, 0x28, 0xFE, + 0xF7, 0x1B, 0x03, 0x00, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x0D, 0x7B, 0x01, + 0x1C, 0xBF, 0xBF, 0xFE, 0xE4, 0x7B, 0xFC, 0xF3, 0x01, 0x67, 0xD9, 0xD9, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x7C, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x7A, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xDE, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x40, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x05, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x2A, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0xFD, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF2, 0x01, 0x79, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x08, 0xF2, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1C, 0x01, 0x79, 0x00, 0x17, + 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x5B, 0x05, 0x93, 0x07, 0xFD, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, 0x0A, 0xF2, 0x01, 0x79, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x57, 0x03, 0xB5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0x46, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0x01, 0x2E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0x89, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x24, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0xFE, 0x5B, 0x05, 0x93, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x57, 0x03, 0xB5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x2A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x08, 0x78, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xE7, 0x00, 0x74, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x08, 0x78, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xE6, 0x01, 0xCE, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEA, 0x00, 0x8A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0x91, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xF8, 0x01, 0x2A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0x8E, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCE, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0xFD, 0xE8, 0x05, 0x86, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x36, 0x01, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, + 0xFE, 0x38, 0x05, 0x86, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCE, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x91, 0x01, 0xB2, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x08, 0xB7, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x24, 0x01, 0x2B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x08, 0xB7, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x25, 0x01, 0x2B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x08, 0xB7, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x26, 0x01, 0x2B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x08, 0xA9, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x27, 0x01, 0x2B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, + 0xFE, 0x38, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x27, 0x0A, 0x8D, 0x01, 0x2A, 0x01, 0xA4, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0xCE, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, + 0x08, 0xB6, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x21, + 0x01, 0x24, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, + 0x08, 0xB6, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x22, + 0x01, 0x24, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, + 0x08, 0xB7, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x4A, + 0x01, 0x24, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, + 0x08, 0xA9, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x23, + 0x01, 0x23, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x38, 0x05, 0x86, + 0x07, 0x89, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, + 0x01, 0x24, 0x01, 0xA4, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCE, 0xF9, 0x6D, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x05, 0xD2, 0x06, 0x06, + 0x00, 0x02, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, + 0x05, 0xD2, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, + 0xB8, 0xEA, 0xFF, 0xFF, 0x00, 0x39, 0x00, 0x00, 0x05, 0xAA, 0x05, 0xE1, + 0x04, 0x26, 0x00, 0x02, 0x24, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0x1E, 0xEC, + 0xFF, 0xFF, 0x00, 0x40, 0x00, 0x00, 0x05, 0xB2, 0x05, 0xD5, 0x04, 0x26, + 0x00, 0x02, 0x2B, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0x11, 0xE0, 0xFF, 0xFF, + 0x00, 0x37, 0x00, 0x00, 0x06, 0xA0, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, + 0x01, 0x1A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, 0xFF, 0xFF, + 0x00, 0x37, 0x00, 0x00, 0x06, 0xBF, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, + 0x01, 0x38, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, + 0x00, 0x37, 0x00, 0x00, 0x06, 0xAE, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, + 0x01, 0x28, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xE7, 0xE0, 0xFF, 0xFF, + 0x00, 0x37, 0x00, 0x00, 0x06, 0xC2, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, + 0x01, 0x3C, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, + 0x00, 0x37, 0x00, 0x00, 0x06, 0x25, 0x07, 0x18, 0x04, 0x27, 0x00, 0x02, + 0x00, 0x9E, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0x37, 0xE9, 0xFF, 0xFF, + 0x00, 0x37, 0x00, 0x00, 0x06, 0x38, 0x07, 0x0D, 0x04, 0x27, 0x00, 0x02, + 0x00, 0xB1, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x37, 0xDE, 0xFF, 0xFF, + 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x89, 0x06, 0x26, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x24, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x46, 0x06, 0x26, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x2E, 0x01, 0xA4, 0xFF, 0xFF, + 0xFF, 0xD9, 0x00, 0x00, 0x05, 0x86, 0x05, 0xEA, 0x06, 0x26, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x88, 0xB1, 0x02, 0x00, 0x03, 0x00, 0x15, + 0xFF, 0x42, 0x05, 0x86, 0x06, 0x8E, 0x00, 0x03, 0x00, 0x11, 0x00, 0x15, + 0x00, 0x00, 0x41, 0x01, 0x23, 0x09, 0x02, 0x21, 0x01, 0x21, 0x01, 0x26, + 0x02, 0x27, 0x33, 0x06, 0x02, 0x07, 0x01, 0x13, 0x35, 0x21, 0x15, 0x04, + 0x60, 0xFD, 0x8C, 0x86, 0x02, 0x74, 0xFC, 0x3B, 0x02, 0x11, 0x01, 0x4E, + 0x02, 0x12, 0xFE, 0xDD, 0xFE, 0xFA, 0x27, 0x55, 0x37, 0x46, 0x36, 0x56, + 0x28, 0xFE, 0xF7, 0x1B, 0x03, 0x00, 0x06, 0x8E, 0xF8, 0xB4, 0x07, 0x4C, + 0xF9, 0x72, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x0D, 0x7B, 0x01, 0x1C, 0xBF, + 0xBF, 0xFE, 0xE4, 0x7B, 0xFC, 0xF3, 0x01, 0x67, 0xD9, 0xD9, 0xFF, 0xFF, + 0x00, 0x40, 0x00, 0x00, 0x05, 0xB1, 0x05, 0xD2, 0x04, 0x26, 0x00, 0x02, + 0x2B, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0xE3, 0xEA, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x02, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x89, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x24, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x8C, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x7C, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x39, 0xFE, 0x1E, 0x05, 0xAA, 0x05, 0xE1, 0x04, 0x26, + 0x00, 0x02, 0x24, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x02, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x7D, 0x1E, 0xEC, 0xFF, 0xFF, 0x00, 0x40, 0xFE, 0x1E, + 0x05, 0xB2, 0x05, 0xD5, 0x04, 0x26, 0x00, 0x02, 0x2B, 0x00, 0x00, 0x27, + 0x09, 0xE4, 0x02, 0x09, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0x11, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x06, 0xA0, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0x02, 0x01, 0x1A, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0xF8, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, + 0xFE, 0x1E, 0x06, 0xBF, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, 0x01, 0x38, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x06, 0xAE, + 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, 0x01, 0x28, 0x00, 0x00, 0x00, 0x26, + 0x0A, 0x81, 0xE7, 0xE0, 0x00, 0x07, 0x09, 0xE4, 0x03, 0x05, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x06, 0xC2, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0x02, 0x01, 0x3C, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0x19, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, + 0xFE, 0x1E, 0x06, 0x25, 0x07, 0x18, 0x04, 0x27, 0x00, 0x02, 0x00, 0x9E, + 0x00, 0x00, 0x00, 0x26, 0x0A, 0x83, 0x37, 0xE9, 0x00, 0x07, 0x09, 0xE4, + 0x02, 0x7C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x06, 0x38, + 0x07, 0x0D, 0x04, 0x27, 0x00, 0x02, 0x00, 0xB1, 0x00, 0x00, 0x00, 0x27, + 0x09, 0xE4, 0x02, 0x8F, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x37, 0xDE, + 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x1E, 0x05, 0x86, 0x05, 0xD2, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x09, 0xE4, 0x01, 0xDD, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x05, 0xD2, 0x00, 0x0D, + 0x00, 0x00, 0x73, 0x01, 0x21, 0x01, 0x21, 0x01, 0x26, 0x02, 0x27, 0x33, + 0x06, 0x02, 0x07, 0x01, 0x15, 0x02, 0x11, 0x01, 0x4E, 0x02, 0x12, 0xFE, + 0xDD, 0xFE, 0xFA, 0x27, 0x55, 0x37, 0x46, 0x36, 0x56, 0x28, 0xFE, 0xF7, + 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x0D, 0x7B, 0x01, 0x1C, 0xBF, 0xBF, 0xFE, + 0xE4, 0x7B, 0xFC, 0xF3, 0x00, 0x02, 0x00, 0x15, 0x00, 0x00, 0x07, 0xB8, + 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x73, 0x01, 0x21, 0x15, + 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x23, 0x01, + 0x13, 0x35, 0x21, 0x15, 0x15, 0x02, 0x87, 0x05, 0x1B, 0xFD, 0x0D, 0x02, + 0xBB, 0xFD, 0x45, 0x02, 0xF4, 0xFC, 0x0A, 0x7A, 0xFD, 0xE4, 0x3F, 0x02, + 0xC3, 0x05, 0xD2, 0xE4, 0xFE, 0x6F, 0xE0, 0xFE, 0x67, 0xE4, 0x04, 0xFA, + 0xFB, 0x06, 0x01, 0x80, 0xD0, 0xD0, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, + 0x07, 0xB8, 0x07, 0x46, 0x06, 0x26, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEB, 0x03, 0x92, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, + 0x07, 0xB8, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x04, 0x69, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, + 0x07, 0xB8, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x81, 0x00, 0x00, 0x04, 0xE5, 0x05, 0xD2, 0x00, 0x13, 0x00, 0x1D, + 0x00, 0x27, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, + 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x81, 0x02, 0x40, 0x9E, 0xDB, + 0x72, 0x40, 0x74, 0x4F, 0x57, 0x8F, 0x56, 0x75, 0xE8, 0xAD, 0xFE, 0xAC, + 0x01, 0x35, 0x8A, 0x91, 0x42, 0x7B, 0x57, 0xFE, 0xC4, 0x01, 0x29, 0x4A, + 0x6E, 0x3C, 0x80, 0x73, 0xFE, 0xD6, 0x05, 0xD2, 0x62, 0xAD, 0x74, 0x57, + 0x82, 0x56, 0x15, 0x05, 0x09, 0x58, 0x99, 0x6C, 0x7B, 0xBC, 0x69, 0xD9, + 0x6F, 0x64, 0x45, 0x65, 0x38, 0xCC, 0x33, 0x5E, 0x41, 0x5D, 0x71, 0xFF, + 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0xE5, 0x07, 0x8E, 0x06, 0x26, 0x00, + 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x7E, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x81, 0xFE, 0x38, 0x04, 0xE5, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x83, 0xF9, 0x6D, 0xFF, + 0xFF, 0x00, 0x81, 0xFE, 0x8F, 0x04, 0xE5, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xE2, 0xF9, 0x9B, 0xFF, + 0xFF, 0x00, 0x06, 0x00, 0x00, 0x05, 0x0B, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0x41, 0x26, 0x00, 0x00, 0x07, 0x0B, 0x39, 0xFF, 0xDE, 0xFE, 0xCB, 0x00, + 0x04, 0x00, 0x27, 0x00, 0x00, 0x06, 0x45, 0x05, 0xD2, 0x00, 0x0B, 0x00, + 0x1F, 0x00, 0x29, 0x00, 0x33, 0x00, 0x00, 0x53, 0x35, 0x34, 0x36, 0x33, + 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x15, 0x13, 0x11, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, + 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x27, 0x9E, + 0x9C, 0x80, 0x57, 0x37, 0x34, 0xC2, 0x02, 0x40, 0x9E, 0xDB, 0x72, 0x40, + 0x74, 0x4F, 0x57, 0x8F, 0x56, 0x75, 0xE8, 0xAD, 0xFE, 0xAC, 0x01, 0x35, + 0x8A, 0x91, 0x42, 0x7B, 0x57, 0xFE, 0xC4, 0x01, 0x29, 0x4A, 0x6E, 0x3C, + 0x80, 0x73, 0xFE, 0xD6, 0x04, 0x18, 0x8E, 0x90, 0x9C, 0xE1, 0x2E, 0x32, + 0x79, 0xFB, 0xE8, 0x05, 0xD2, 0x62, 0xAD, 0x74, 0x57, 0x82, 0x56, 0x15, + 0x05, 0x09, 0x58, 0x99, 0x6C, 0x7B, 0xBC, 0x69, 0xD9, 0x6F, 0x64, 0x45, + 0x65, 0x38, 0xCC, 0x33, 0x5E, 0x41, 0x5D, 0x71, 0xFF, 0xFF, 0x00, 0x81, + 0x00, 0x00, 0x04, 0xE5, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x41, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0xE5, 0x05, 0xD2, 0x06, 0x06, + 0x00, 0x41, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x87, + 0x05, 0xE9, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, 0x34, + 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x21, 0x2E, 0x03, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x21, + 0x0E, 0x03, 0x03, 0x08, 0xCB, 0xFE, 0xC5, 0xB3, 0xB3, 0x01, 0x3C, 0xCA, + 0x7E, 0xD8, 0xA9, 0x6D, 0x13, 0xFE, 0xF3, 0x0E, 0x41, 0x60, 0x79, 0x47, + 0x85, 0xC3, 0x69, 0x69, 0xC3, 0x85, 0x46, 0x79, 0x60, 0x42, 0x0F, 0x01, + 0x0C, 0x11, 0x6D, 0xA8, 0xD9, 0x17, 0xBC, 0x01, 0x59, 0xEA, 0xEC, 0x01, + 0x59, 0xBC, 0x4A, 0x8B, 0xC3, 0x7B, 0x46, 0x6D, 0x4C, 0x26, 0x82, 0xEE, + 0xA3, 0xA2, 0xEE, 0x81, 0x26, 0x4B, 0x6C, 0x46, 0x77, 0xC2, 0x8C, 0x4C, + 0x00, 0x02, 0x00, 0x4F, 0xFF, 0xE9, 0x06, 0x63, 0x06, 0x8F, 0x00, 0x0F, + 0x00, 0x35, 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x01, 0x22, 0x24, 0x02, + 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x21, 0x2E, 0x03, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, + 0x37, 0x21, 0x0E, 0x03, 0x04, 0x8C, 0xA5, 0xA5, 0x2D, 0x47, 0x19, 0x12, + 0x3F, 0x19, 0x3C, 0x36, 0xFD, 0x81, 0xCB, 0xFE, 0xC5, 0xB3, 0xB3, 0x01, + 0x3C, 0xCA, 0x7E, 0xD8, 0xA9, 0x6D, 0x13, 0xFE, 0xF3, 0x0E, 0x41, 0x60, + 0x79, 0x47, 0x85, 0xC3, 0x69, 0x69, 0xC3, 0x85, 0x46, 0x79, 0x60, 0x42, + 0x0F, 0x01, 0x0C, 0x11, 0x6D, 0xA8, 0xD9, 0x03, 0xD6, 0x01, 0x92, 0x92, + 0x95, 0x01, 0x02, 0xCD, 0x01, 0x01, 0x2E, 0x32, 0xFE, 0x75, 0xFC, 0x13, + 0xBC, 0x01, 0x59, 0xEA, 0xEC, 0x01, 0x59, 0xBC, 0x4A, 0x8B, 0xC3, 0x7B, + 0x46, 0x6D, 0x4C, 0x26, 0x82, 0xEE, 0xA3, 0xA2, 0xEE, 0x81, 0x26, 0x4B, + 0x6C, 0x46, 0x77, 0xC2, 0x8C, 0x4C, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, 0x5F, + 0x05, 0x87, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x95, 0x01, 0xBC, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0x87, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x02, 0x32, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0x87, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8D, 0x01, 0x57, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0x87, 0x07, 0x8E, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0xFB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0x87, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8E, 0x01, 0x57, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, 0x5F, + 0x05, 0x87, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x27, + 0x0A, 0x95, 0x01, 0xBC, 0x00, 0x01, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x32, + 0x01, 0xA4, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0x42, 0x05, 0x87, 0x06, 0x8E, + 0x00, 0x03, 0x00, 0x29, 0x00, 0x00, 0x45, 0x01, 0x33, 0x01, 0x37, 0x22, + 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x21, + 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x3E, 0x02, 0x37, 0x21, 0x0E, 0x03, 0x01, 0x55, 0x02, 0x73, 0xB5, 0xFD, + 0x8D, 0xFE, 0xCB, 0xFE, 0xC5, 0xB3, 0xB3, 0x01, 0x3C, 0xCA, 0x7E, 0xD8, + 0xA9, 0x6D, 0x13, 0xFE, 0xF3, 0x0E, 0x41, 0x60, 0x79, 0x47, 0x85, 0xC3, + 0x69, 0x69, 0xC3, 0x85, 0x46, 0x79, 0x60, 0x42, 0x0F, 0x01, 0x0C, 0x11, + 0x6D, 0xA8, 0xD9, 0xBE, 0x07, 0x4C, 0xF8, 0xB4, 0xA7, 0xBC, 0x01, 0x59, + 0xEA, 0xEC, 0x01, 0x59, 0xBC, 0x4A, 0x8B, 0xC3, 0x7B, 0x46, 0x6D, 0x4C, + 0x26, 0x82, 0xEE, 0xA3, 0xA2, 0xEE, 0x81, 0x26, 0x4B, 0x6C, 0x46, 0x77, + 0xC2, 0x8C, 0x4C, 0x00, 0x01, 0x00, 0x4B, 0xFF, 0xE9, 0x05, 0x83, 0x05, + 0xE9, 0x00, 0x25, 0x00, 0x00, 0x41, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, + 0x04, 0x23, 0x22, 0x2E, 0x02, 0x27, 0x21, 0x1E, 0x03, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x21, 0x3E, + 0x03, 0x02, 0xCA, 0xCB, 0x01, 0x3B, 0xB3, 0xB3, 0xFE, 0xC5, 0xCB, 0x7E, + 0xD8, 0xA9, 0x6E, 0x12, 0x01, 0x0C, 0x0F, 0x41, 0x60, 0x79, 0x46, 0x86, + 0xC2, 0x6A, 0x69, 0xC3, 0x85, 0x47, 0x78, 0x60, 0x42, 0x0F, 0xFE, 0xF4, + 0x11, 0x6C, 0xA9, 0xD9, 0x05, 0xE9, 0xBC, 0xFE, 0xA7, 0xEA, 0xEB, 0xFE, + 0xA6, 0xBC, 0x4A, 0x8B, 0xC3, 0x7B, 0x46, 0x6D, 0x4C, 0x26, 0x82, 0xEE, + 0xA3, 0xA3, 0xED, 0x81, 0x26, 0x4B, 0x6C, 0x46, 0x77, 0xC2, 0x8C, 0x4C, + 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x87, 0x05, 0xE9, 0x06, 0x06, + 0x00, 0x49, 0x00, 0x00, 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, 0x05, 0x50, + 0x05, 0xD2, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x61, 0x21, 0x35, 0x21, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, + 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x01, 0x11, 0x21, 0x11, 0x02, 0x79, + 0xFE, 0x88, 0x01, 0x6A, 0xA0, 0xD3, 0x68, 0x67, 0xD0, 0x9C, 0xFE, 0x87, + 0x01, 0x8A, 0xDE, 0x01, 0x41, 0xAD, 0xAE, 0xFE, 0xBC, 0xFE, 0x2D, 0xFE, + 0xF6, 0xE3, 0x79, 0xE8, 0xA7, 0xA5, 0xE7, 0x78, 0xE3, 0xB4, 0xFE, 0xB3, + 0xE6, 0xE7, 0xFE, 0xB1, 0xB5, 0x05, 0xD2, 0xFA, 0x2E, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x27, 0x00, 0x00, 0x06, 0xB0, 0x05, 0xD2, 0x00, 0x0B, 0x00, + 0x21, 0x00, 0x25, 0x00, 0x00, 0x53, 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, + 0x23, 0x22, 0x06, 0x15, 0x15, 0x01, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x04, 0x12, 0x15, + 0x14, 0x02, 0x04, 0x01, 0x11, 0x21, 0x11, 0x27, 0x9E, 0x9C, 0x80, 0x57, + 0x37, 0x34, 0x02, 0xBA, 0xFE, 0x88, 0x01, 0x6A, 0xA1, 0xD2, 0x68, 0x67, + 0xD0, 0x9C, 0xFE, 0x87, 0x01, 0x8A, 0xDE, 0x01, 0x41, 0xAD, 0xAE, 0xFE, + 0xBB, 0xFE, 0x2E, 0xFE, 0xF6, 0x04, 0x18, 0x8E, 0x90, 0x9C, 0xE1, 0x2E, + 0x32, 0x79, 0xFB, 0xE8, 0xE3, 0x79, 0xE8, 0xA7, 0xA5, 0xE7, 0x78, 0xE3, + 0xB4, 0xFE, 0xB3, 0xE6, 0xE7, 0xFE, 0xB1, 0xB5, 0x05, 0xD2, 0xFA, 0x2E, + 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x50, 0x07, 0x8C, + 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xA9, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x50, 0x07, 0x8E, + 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x4D, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x38, 0x05, 0x50, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x6F, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x8F, 0x05, 0x50, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xCE, + 0xF9, 0x9B, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x1C, 0x05, 0x50, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x6B, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x3C, 0x05, 0x50, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xCB, + 0xF9, 0x79, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0xA2, 0x05, 0xD2, + 0x04, 0x26, 0x00, 0x54, 0x52, 0x00, 0x00, 0x06, 0x0B, 0x69, 0xE3, 0x00, + 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x09, 0x65, 0x05, 0xD2, 0x04, 0x26, + 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x03, 0xFC, 0x05, 0x9F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x09, 0x65, 0x05, 0xE8, 0x04, 0x26, + 0x00, 0x54, 0x00, 0x00, 0x00, 0x27, 0x03, 0xFC, 0x05, 0x9F, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8E, 0x06, 0x0C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x81, + 0x00, 0x00, 0x04, 0x7F, 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x11, + 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x81, 0x03, + 0xFD, 0xFD, 0x0D, 0x02, 0xBB, 0xFD, 0x45, 0x02, 0xF4, 0x05, 0xD2, 0xE4, + 0xFE, 0x75, 0xE0, 0xFE, 0x61, 0xE4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE9, 0x00, 0xF1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x01, 0xB6, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8D, 0x00, 0xDB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0x00, 0x2D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x46, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEB, 0x00, 0xDF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8F, 0x00, 0xD5, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x8E, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0x7F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x5B, + 0x04, 0x8B, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x96, 0x02, 0xAE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8E, 0x00, 0xDB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEA, 0x00, 0x3B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x91, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0xF8, 0x00, 0xDB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x5E, + 0x04, 0x7F, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x95, 0x01, 0x48, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x08, 0xCA, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x54, 0x00, 0xDF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x08, 0xCA, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0xB8, 0x00, 0xDF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x3C, + 0x04, 0x7F, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8D, 0x00, 0xDC, 0xF9, 0x79, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x53, + 0x04, 0x7F, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEC, 0x00, 0x90, 0xF9, 0x75, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x5E, + 0x04, 0x7F, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x27, + 0x0A, 0x95, 0x01, 0x48, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xD5, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x38, 0x04, 0x7F, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x80, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x07, 0x8C, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x63, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x07, 0x7A, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0x8F, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x08, 0xB7, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x00, 0xDC, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x08, 0xB7, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, 0x00, 0xDC, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x08, 0xB7, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, 0x00, 0xDC, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x08, 0xA9, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, 0x00, 0xDC, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x38, 0x04, 0x7F, 0x07, 0x8C, + 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0xDB, + 0x01, 0xA4, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x80, 0xF9, 0x6D, 0x00, 0x02, + 0x00, 0x81, 0xFF, 0x42, 0x04, 0x7F, 0x06, 0x8E, 0x00, 0x03, 0x00, 0x0F, + 0x00, 0x00, 0x45, 0x01, 0x33, 0x01, 0x25, 0x11, 0x21, 0x15, 0x21, 0x11, + 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x01, 0x2E, 0x02, 0x1C, 0xA4, 0xFD, + 0xE6, 0xFE, 0xAD, 0x03, 0xFD, 0xFD, 0x0D, 0x02, 0xBB, 0xFD, 0x45, 0x02, + 0xF4, 0xBE, 0x07, 0x4C, 0xF8, 0xB4, 0xBE, 0x05, 0xD2, 0xE4, 0xFE, 0x75, + 0xE0, 0xFE, 0x61, 0xE4, 0x00, 0x01, 0x00, 0x4E, 0x00, 0x00, 0x04, 0x4B, + 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x11, 0x21, 0x35, 0x21, 0x11, + 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x04, 0x4B, 0xFC, 0x04, 0x02, 0xF3, + 0xFD, 0x45, 0x02, 0xBB, 0xFD, 0x0C, 0x05, 0xD2, 0xFA, 0x2E, 0xE4, 0x01, + 0x8B, 0xE0, 0x01, 0x9F, 0xE4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, + 0x7F, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x5F, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0xA9, 0x05, 0xD2, 0x04, 0x27, 0x00, 0x5F, 0x01, + 0x2A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0xC7, 0x05, 0xE1, 0x04, 0x27, 0x00, 0x5F, 0x01, + 0x48, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xE7, 0xEC, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0xDB, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x5F, 0x01, + 0x5C, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x06, 0xF5, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x5F, 0x02, + 0x76, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x07, 0x13, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x5F, 0x02, + 0x94, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x07, 0x02, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x5F, 0x02, + 0x84, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x07, 0x16, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x5F, 0x02, + 0x98, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, 0xFF, + 0xCA, 0x00, 0x00, 0x05, 0xCC, 0x05, 0xEA, 0x04, 0x27, 0x00, 0x5F, 0x01, + 0x4D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFF, 0xA2, 0x00, 0x02, 0xFF, + 0xFF, 0x00, 0x37, 0x00, 0x00, 0x05, 0xA9, 0x05, 0xD2, 0x04, 0x27, 0x00, + 0x5F, 0x01, 0x2A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, + 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x05, 0xD2, 0x06, 0x06, 0x00, + 0x5F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x07, + 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, + 0xF1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x07, + 0x8C, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, + 0x2D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, 0x07, + 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, + 0xD5, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x04, 0x61, 0x05, + 0xD2, 0x00, 0x09, 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, + 0x15, 0x21, 0x11, 0x81, 0x03, 0xE0, 0xFD, 0x2A, 0x02, 0x9E, 0xFD, 0x62, + 0x05, 0xD2, 0xE4, 0xFE, 0x60, 0xE0, 0xFD, 0x92, 0x00, 0x02, 0xFF, 0xAB, + 0xFE, 0x5B, 0x04, 0x61, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x19, 0x00, 0x00, + 0x43, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x21, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x13, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, + 0x21, 0x11, 0x55, 0x11, 0x40, 0x18, 0x3C, 0x31, 0x01, 0x0A, 0xA9, 0xA6, + 0x2D, 0x4B, 0xBD, 0x03, 0xE0, 0xFD, 0x2A, 0x02, 0x9E, 0xFD, 0x62, 0xFE, + 0x5E, 0xD6, 0x01, 0x01, 0x2D, 0x31, 0xEC, 0xF9, 0x92, 0x96, 0x02, 0x01, + 0xA3, 0x05, 0xD2, 0xE4, 0xFE, 0x60, 0xE0, 0xFD, 0x92, 0xFF, 0xFF, 0x00, + 0x81, 0x00, 0x00, 0x04, 0x61, 0x07, 0x8E, 0x06, 0x26, 0x00, 0x89, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x70, 0x01, 0xA4, 0x00, 0x01, 0x00, + 0x3A, 0x00, 0x00, 0x04, 0x1A, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x00, 0x41, + 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x04, 0x1A, 0xFC, + 0x20, 0x02, 0xD7, 0xFD, 0x61, 0x02, 0x9F, 0x05, 0xD2, 0xFA, 0x2E, 0xE4, + 0x01, 0xA0, 0xE0, 0x02, 0x6E, 0x00, 0x01, 0x00, 0x4F, 0xFF, 0xE9, 0x05, + 0x8E, 0x05, 0xE9, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, + 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x21, 0x2E, 0x03, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x17, 0x21, 0x35, 0x21, 0x15, 0x14, 0x02, 0x04, 0x03, 0x08, 0xCE, 0xFE, + 0xC6, 0xB1, 0xB4, 0x01, 0x3A, 0xC7, 0x7D, 0xDA, 0xAA, 0x6F, 0x10, 0xFE, + 0xF2, 0x0F, 0x40, 0x5E, 0x78, 0x47, 0x83, 0xC2, 0x6B, 0x6B, 0xC4, 0x84, + 0x70, 0xAC, 0x61, 0x43, 0xFE, 0x63, 0x02, 0x5E, 0xA7, 0xFE, 0xDD, 0x17, + 0xC0, 0x01, 0x59, 0xE6, 0xEB, 0x01, 0x5A, 0xBC, 0x4A, 0x89, 0xBB, 0x73, + 0x3F, 0x65, 0x49, 0x26, 0x81, 0xEE, 0xA4, 0xA2, 0xEE, 0x81, 0x59, 0xA2, + 0x6B, 0x06, 0xD2, 0xB4, 0xB8, 0xFE, 0xE9, 0x9D, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xE4, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x3A, 0x02, 0xAF, 0xFE, 0xC6, 0x00, 0x02, 0x00, 0x4F, + 0xFF, 0xE9, 0x06, 0x60, 0x06, 0x8E, 0x00, 0x0F, 0x00, 0x37, 0x00, 0x00, + 0x41, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x01, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, + 0x33, 0x32, 0x1E, 0x02, 0x17, 0x21, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x17, 0x21, 0x35, + 0x21, 0x15, 0x14, 0x02, 0x04, 0x04, 0x89, 0xA4, 0xA6, 0x2D, 0x46, 0x1A, + 0x12, 0x3F, 0x19, 0x3C, 0x36, 0xFD, 0x84, 0xCE, 0xFE, 0xC6, 0xB1, 0xB4, + 0x01, 0x3A, 0xC7, 0x7D, 0xDA, 0xAA, 0x6F, 0x10, 0xFE, 0xF2, 0x0F, 0x40, + 0x5E, 0x78, 0x47, 0x83, 0xC2, 0x6B, 0x6B, 0xC4, 0x84, 0x70, 0xAC, 0x61, + 0x43, 0xFE, 0x63, 0x02, 0x5E, 0xA7, 0xFE, 0xDD, 0x03, 0xE8, 0x01, 0x7E, + 0x93, 0x95, 0x02, 0x01, 0xCD, 0x01, 0x2D, 0x32, 0xFE, 0x88, 0xFC, 0x01, + 0xC0, 0x01, 0x59, 0xE6, 0xEB, 0x01, 0x5A, 0xBC, 0x4A, 0x89, 0xBB, 0x73, + 0x3F, 0x65, 0x49, 0x26, 0x81, 0xEE, 0xA4, 0xA2, 0xEE, 0x81, 0x59, 0xA2, + 0x6B, 0x06, 0xD2, 0xB4, 0xB8, 0xFE, 0xE9, 0x9D, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0x8E, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x55, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0x8E, 0x07, 0x89, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x4F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0x8E, 0x07, 0x8E, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xF9, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFE, 0x1C, 0x05, 0x8E, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE7, 0x01, 0xF4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0x8E, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x55, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0x8E, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE8, 0x02, 0x30, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0x8E, 0x07, 0x46, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0x01, 0x59, 0x01, 0xA4, 0x00, 0x02, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0x8F, 0x05, 0xE9, 0x00, 0x25, 0x00, 0x2C, 0x00, 0x00, + 0x45, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, + 0x17, 0x21, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x33, 0x15, 0x14, 0x0E, 0x02, 0x25, 0x03, + 0x35, 0x21, 0x35, 0x21, 0x11, 0x02, 0xF3, 0xC1, 0xFE, 0xCE, 0xB1, 0xB4, + 0x01, 0x3A, 0xC7, 0x7D, 0xDA, 0xAA, 0x6F, 0x10, 0xFE, 0xF2, 0x0F, 0x40, + 0x5E, 0x78, 0x47, 0x83, 0xC2, 0x6B, 0x6B, 0xC4, 0x84, 0x70, 0xAE, 0x62, + 0x71, 0x45, 0x87, 0xC2, 0x01, 0x68, 0x26, 0xFE, 0x7E, 0x02, 0x5F, 0x17, + 0xC0, 0x01, 0x59, 0xE6, 0xEB, 0x01, 0x5A, 0xBC, 0x4A, 0x89, 0xBB, 0x73, + 0x3F, 0x65, 0x49, 0x26, 0x81, 0xEE, 0xA4, 0xA2, 0xEE, 0x81, 0x5A, 0xA7, + 0x73, 0x6D, 0x68, 0xB6, 0x89, 0x4E, 0x17, 0x01, 0x39, 0xFE, 0xD2, 0xFC, + 0xF7, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xE4, 0x05, 0xE9, 0x06, + 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3A, 0x02, 0xAF, 0xFE, + 0xC6, 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xE9, 0x06, 0x60, 0x06, 0x8E, 0x00, + 0x0F, 0x00, 0x35, 0x00, 0x3C, 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, 0x22, 0x06, 0x15, 0x11, 0x01, + 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, + 0x21, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x33, 0x15, 0x14, 0x0E, 0x02, 0x25, 0x03, 0x35, + 0x21, 0x35, 0x21, 0x11, 0x04, 0x89, 0xA4, 0xA6, 0x2D, 0x46, 0x1A, 0x12, + 0x3F, 0x19, 0x3C, 0x36, 0xFD, 0x6F, 0xC1, 0xFE, 0xCE, 0xB1, 0xB4, 0x01, + 0x3A, 0xC7, 0x7D, 0xDA, 0xAA, 0x6F, 0x10, 0xFE, 0xF2, 0x0F, 0x40, 0x5E, + 0x78, 0x47, 0x83, 0xC2, 0x6B, 0x6B, 0xC4, 0x84, 0x70, 0xAE, 0x62, 0x71, + 0x45, 0x87, 0xC2, 0x01, 0x68, 0x26, 0xFE, 0x7E, 0x02, 0x5F, 0x03, 0xE8, + 0x01, 0x7E, 0x93, 0x95, 0x02, 0x01, 0xCD, 0x01, 0x2D, 0x32, 0xFE, 0x88, + 0xFC, 0x01, 0xC0, 0x01, 0x59, 0xE6, 0xEB, 0x01, 0x5A, 0xBC, 0x4A, 0x89, + 0xBB, 0x73, 0x3F, 0x65, 0x49, 0x26, 0x81, 0xEE, 0xA4, 0xA2, 0xEE, 0x81, + 0x5A, 0xA7, 0x73, 0x6D, 0x68, 0xB6, 0x89, 0x4E, 0x17, 0x01, 0x39, 0xFE, + 0xD2, 0xFC, 0xF7, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x8F, 0x07, + 0x8C, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, + 0x56, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x8F, 0x07, + 0x89, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, + 0x50, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x8F, 0x07, + 0x8E, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0xFA, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, 0x1C, 0x05, 0x8F, 0x05, + 0xE9, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, + 0xF5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x8F, 0x07, + 0x8C, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, + 0x56, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x8F, 0x07, + 0x8C, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, + 0x31, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x8F, 0x07, + 0x46, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, + 0x5A, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x05, 0x44, 0x05, + 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, + 0x11, 0x21, 0x11, 0x21, 0x11, 0x81, 0x01, 0x0A, 0x02, 0xB0, 0x01, 0x09, + 0xFE, 0xF7, 0xFD, 0x50, 0x05, 0xD2, 0xFD, 0x99, 0x02, 0x67, 0xFA, 0x2E, + 0x02, 0x87, 0xFD, 0x79, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x5E, 0x05, 0x44, + 0x05, 0xD2, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x95, + 0xC8, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x44, 0x07, 0x8C, + 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x3E, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x44, 0x07, 0x8C, + 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x3E, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x44, 0x07, 0x8E, + 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xE2, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x38, 0x05, 0x44, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xE2, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x44, 0x07, 0x8C, + 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x8F, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x36, 0x05, 0x44, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x38, + 0xF9, 0x7D, 0x00, 0x02, 0x00, 0x37, 0x00, 0x00, 0x05, 0xF1, 0x05, 0xD2, + 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, + 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0x05, 0xF1, + 0xFA, 0x46, 0x79, 0x01, 0x09, 0x02, 0xB1, 0x01, 0x09, 0xFE, 0xF7, 0xFD, + 0x4F, 0x04, 0xB9, 0xA6, 0xA6, 0xFB, 0x47, 0x05, 0xD2, 0xFD, 0x99, 0x02, + 0x67, 0xFA, 0x2E, 0x02, 0x87, 0xFD, 0x79, 0x00, 0x02, 0x00, 0x81, 0xFE, + 0x5B, 0x05, 0x44, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, + 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x21, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x01, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, + 0x11, 0x21, 0x11, 0x03, 0x64, 0x12, 0x3F, 0x19, 0x3C, 0x31, 0x01, 0x09, + 0xA8, 0xA6, 0x2D, 0x4B, 0xFD, 0x03, 0x01, 0x0A, 0x02, 0xB0, 0x01, 0x09, + 0xFE, 0xF7, 0xFD, 0x50, 0xFE, 0x5E, 0xD6, 0x01, 0x01, 0x2D, 0x31, 0xEC, + 0xF9, 0x92, 0x96, 0x02, 0x01, 0xA3, 0x05, 0xD2, 0xFD, 0x99, 0x02, 0x67, + 0xFA, 0x2E, 0x02, 0x87, 0xFD, 0x79, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0xC0, + 0x05, 0xDA, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3D, 0x04, 0x54, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0xC0, + 0x06, 0x04, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3C, 0x03, 0xF4, 0x00, 0x00, 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, + 0x07, 0x95, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x27, 0x01, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, + 0x21, 0x11, 0x07, 0x95, 0xFD, 0x7E, 0xCD, 0xFC, 0x3B, 0x01, 0x0A, 0x02, + 0xB0, 0x01, 0x09, 0xFE, 0xF7, 0xFD, 0x50, 0x05, 0xD2, 0xDC, 0xDC, 0xFA, + 0x2E, 0x05, 0xD2, 0xFD, 0x99, 0x02, 0x67, 0xFA, 0x2E, 0x02, 0x87, 0xFD, + 0x79, 0x00, 0x01, 0x00, 0x81, 0xFF, 0xEB, 0x08, 0x17, 0x05, 0xD2, 0x00, + 0x1D, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x35, 0x21, 0x11, 0x21, + 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x11, 0x21, 0x11, 0x14, 0x06, 0x06, 0x06, 0x2B, 0x95, + 0xDF, 0x7C, 0xFD, 0x50, 0xFE, 0xF6, 0x01, 0x0A, 0x02, 0xB0, 0x01, 0x0A, + 0x36, 0x67, 0x4A, 0x4B, 0x68, 0x38, 0x01, 0x00, 0x7A, 0xDE, 0x15, 0x6F, + 0xCC, 0x8B, 0xD2, 0xFD, 0x7D, 0x05, 0xD2, 0xFD, 0x96, 0x02, 0x6A, 0xFB, + 0xEA, 0x4F, 0x6E, 0x39, 0x39, 0x6E, 0x4F, 0x02, 0x6D, 0xFD, 0x88, 0x8C, + 0xCC, 0x6E, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x44, 0x05, 0xD2, + 0x06, 0x06, 0x00, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x06, 0x6F, 0x05, 0xD2, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x2A, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x06, 0x8D, 0x05, 0xE1, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x48, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x7D, 0xE7, 0xEC, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x06, 0xA1, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x5C, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x7E, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0xBA, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x76, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0xD8, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x94, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0xC8, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x84, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x81, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0xDC, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x98, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0x3E, 0x07, 0x18, 0x04, 0x27, 0x00, 0xA1, 0x01, 0xFA, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x83, 0x37, 0xE9, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0x51, 0x07, 0x0D, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x0D, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x84, 0x37, 0xDE, 0xFF, 0xFF, 0xFF, 0xCA, 0x00, 0x00, + 0x06, 0x91, 0x05, 0xEA, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x4D, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x88, 0xFF, 0xA2, 0x00, 0x02, 0xFF, 0xFF, 0x00, 0x37, + 0x00, 0x00, 0x06, 0x6F, 0x05, 0xD2, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x2A, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x81, + 0x00, 0x00, 0x05, 0x44, 0x05, 0xD2, 0x06, 0x06, 0x00, 0xA1, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x06, 0x8D, 0x05, 0xE1, 0x04, 0x27, + 0x00, 0xA1, 0x01, 0x48, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0x39, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xE7, 0xEC, 0xFF, 0xFF, 0x00, 0x37, + 0xFE, 0x1E, 0x06, 0xA1, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x5C, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0x4D, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x7E, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0xBA, + 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x76, 0x00, 0x00, 0x00, 0x27, + 0x09, 0xE4, 0x04, 0x67, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0xD8, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0xA1, 0x02, 0x94, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, 0x85, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, + 0xFE, 0x1E, 0x07, 0xC8, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x84, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, 0x75, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x81, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0xDC, + 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x98, 0x00, 0x00, 0x00, 0x27, + 0x09, 0xE4, 0x04, 0x89, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0x3E, 0x07, 0x18, 0x04, 0x27, + 0x00, 0xA1, 0x01, 0xFA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0xEB, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0x37, 0xE9, 0xFF, 0xFF, 0x00, 0x37, + 0xFE, 0x1E, 0x07, 0x51, 0x07, 0x0D, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x0D, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0xFE, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x84, 0x37, 0xDE, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x1E, 0x05, 0x44, + 0x05, 0xD2, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x09, 0xE4, + 0x01, 0xF1, 0x00, 0x00, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x01, 0x8B, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x01, 0x8B, + 0xFE, 0xF6, 0x05, 0xD2, 0xFA, 0x2E, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x81, + 0x00, 0x00, 0x03, 0x97, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0x07, 0x00, 0xC5, 0x02, 0x0C, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x9B, + 0x00, 0x00, 0x02, 0x71, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xB3, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0x94, + 0x00, 0x00, 0x02, 0x69, 0x08, 0xCA, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xE4, 0xFE, 0xAB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x10, + 0x00, 0x00, 0x02, 0xA2, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, 0x53, 0x00, + 0x00, 0x06, 0x0B, 0x39, 0xE8, 0x1E, 0xFF, 0xFF, 0xFF, 0xC0, 0xFE, 0x53, + 0x02, 0x4D, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEC, 0xFF, 0x15, 0xF9, 0x75, 0xFF, 0xFF, 0xFF, 0xCF, 0x00, 0x00, + 0x01, 0x8B, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE9, 0xFF, 0x77, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x02, 0x3D, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x00, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xA5, 0x00, 0x00, + 0x02, 0x68, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8D, 0xFF, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, + 0x02, 0x4D, 0x07, 0x7A, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEC, 0xFF, 0x15, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xE9, 0x00, 0x00, + 0x02, 0x23, 0x07, 0x46, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEB, 0xFF, 0x65, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xC2, 0x00, 0x00, + 0x02, 0x4A, 0x07, 0x89, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8F, 0xFF, 0x5B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x02, 0xFE, 0x5B, + 0x01, 0x97, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x96, 0xBA, 0x00, 0xFF, 0xFF, 0x00, 0x6F, 0x00, 0x00, 0x01, 0x9D, + 0x07, 0x8E, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x00, 0x05, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xA5, 0x00, 0x00, 0x02, 0x68, + 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, + 0xFF, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0x19, 0x00, 0x00, 0x02, 0x14, + 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, + 0xFE, 0xC1, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xC0, 0x00, 0x00, 0x02, 0x4D, + 0x07, 0x91, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, + 0xFF, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x51, 0x00, 0x00, 0x01, 0xB3, + 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, + 0xFF, 0xE9, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x6F, 0xFE, 0x38, 0x01, 0x9D, + 0x05, 0xD2, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x00, 0x05, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xFE, 0x02, 0x0A, + 0x05, 0xD2, 0x06, 0x06, 0x02, 0xEF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, + 0x00, 0x00, 0x01, 0x8B, 0x05, 0xD2, 0x06, 0x06, 0x00, 0xC5, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x02, 0xB5, 0x05, 0xD2, 0x04, 0x27, + 0x00, 0xC5, 0x01, 0x2A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, + 0xFF, 0xFF, 0xFF, 0x9B, 0x00, 0x00, 0x02, 0x71, 0x07, 0x8C, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xB3, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x02, 0xD3, 0x05, 0xE1, 0x04, 0x27, + 0x00, 0xC5, 0x01, 0x48, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xE7, 0xEC, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x02, 0xE7, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0xC5, 0x01, 0x5C, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0x00, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0xC5, 0x02, 0x76, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0x1F, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0xC5, 0x02, 0x94, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0x0E, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0xC5, 0x02, 0x84, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0x22, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0xC5, 0x02, 0x98, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x03, 0x85, 0x07, 0x18, 0x04, 0x27, + 0x00, 0xC5, 0x01, 0xFA, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0x37, 0xE9, + 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x03, 0x98, 0x07, 0x0D, 0x04, 0x27, + 0x00, 0xC5, 0x02, 0x0D, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x37, 0xDE, + 0xFF, 0xFF, 0xFF, 0xC2, 0x00, 0x00, 0x02, 0x4A, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0x5B, 0x01, 0xA4, + 0xFF, 0xFF, 0xFF, 0xE9, 0x00, 0x00, 0x02, 0x23, 0x07, 0x46, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x65, 0x01, 0xA4, + 0xFF, 0xFF, 0xFF, 0xCA, 0x00, 0x00, 0x02, 0xD8, 0x05, 0xEA, 0x04, 0x27, + 0x00, 0xC5, 0x01, 0x4D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFF, 0xA2, + 0x00, 0x02, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x02, 0xB5, 0x05, 0xD2, + 0x04, 0x27, 0x00, 0xC5, 0x01, 0x2A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, + 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x01, 0x8B, 0x05, 0xD2, + 0x06, 0x06, 0x00, 0xC5, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x9B, 0x00, 0x00, + 0x02, 0x71, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0xFE, 0xB3, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x48, 0x00, 0x00, + 0x02, 0xE0, 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x48, 0xC7, 0xC7, 0x02, + 0x98, 0xC8, 0xC8, 0xDD, 0x04, 0x18, 0xDD, 0xDD, 0xFB, 0xE8, 0xDD, 0xFF, + 0xFF, 0x00, 0x29, 0x00, 0x00, 0x02, 0xFF, 0x07, 0x8C, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFF, 0x40, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x21, 0x00, 0x00, 0x02, 0xF7, 0x08, 0xCA, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE4, 0xFF, 0x39, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x06, 0x0B, 0x39, 0x22, 0x1E, 0xFF, 0xFF, 0x00, + 0x48, 0xFE, 0x53, 0x02, 0xE0, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFF, 0xA3, 0xF9, 0x75, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0x05, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, 0xCA, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x32, 0x00, 0x00, 0x02, 0xF5, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0xEF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x7A, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFF, 0xA3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x46, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0xF2, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0xE8, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0xFE, 0x5B, 0x02, 0xEC, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x96, 0x01, 0x0E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x8E, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x93, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x32, 0x00, 0x00, 0x02, 0xF5, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, 0xEF, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, + 0xA6, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEA, 0xFF, 0x4F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x91, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF8, 0xFF, 0xEF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x8C, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x91, 0x00, 0x76, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0xFE, 0x38, 0x02, 0xE0, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x93, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x04, 0x57, 0x05, 0xE1, 0x04, 0x27, 0x00, 0xEA, 0x01, + 0x78, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xE7, 0xEC, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x04, 0x6B, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x01, + 0x8C, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0x85, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, + 0xA5, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0xA3, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, + 0xC4, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0x93, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, + 0xB3, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0xA7, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, + 0xC7, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0x09, 0x07, 0x18, 0x04, 0x27, 0x00, 0xEA, 0x02, + 0x2A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0x37, 0xE9, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0x1C, 0x07, 0x0D, 0x04, 0x27, 0x00, 0xEA, 0x02, + 0x3C, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x37, 0xDE, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0xE8, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x46, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0xF2, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, + 0x9A, 0x00, 0x00, 0x04, 0x2D, 0x05, 0xEA, 0x04, 0x27, 0x00, 0xEA, 0x01, + 0x4D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFF, 0x72, 0x00, 0x02, 0xFF, + 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0x39, 0x05, 0xD2, 0x04, 0x27, 0x00, + 0xEA, 0x01, 0x5A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, + 0xFF, 0x00, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x05, 0xD2, 0x06, 0x06, 0x00, + 0xEA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x29, 0x00, 0x00, 0x02, 0xFF, 0x07, + 0x8C, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFF, + 0x40, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x43, 0xFF, 0xEB, 0x03, 0xFB, 0x05, + 0xD2, 0x00, 0x11, 0x00, 0x00, 0x45, 0x22, 0x24, 0x35, 0x35, 0x21, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x21, 0x11, 0x14, 0x04, 0x02, + 0x1D, 0xD8, 0xFE, 0xFE, 0x01, 0x01, 0x75, 0x62, 0x62, 0x75, 0x01, 0x09, + 0xFE, 0xFD, 0x15, 0xF0, 0xDF, 0x5B, 0x5D, 0x73, 0x79, 0x79, 0x73, 0x04, + 0x1A, 0xFB, 0xE5, 0xDE, 0xEE, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xEB, 0x04, + 0xD8, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8D, 0x01, 0xD2, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xEB, 0x04, + 0xBF, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x39, 0x02, 0x05, 0x00, 0x8B, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xEB, 0x03, + 0xFB, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x0A, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x43, 0xFF, 0xEB, 0x03, 0xFB, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x0A, 0x00, + 0x00, 0x00, 0x03, 0x00, 0x81, 0x00, 0x00, 0x05, 0x51, 0x05, 0xD2, 0x00, + 0x09, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x41, 0x11, 0x3E, 0x02, 0x37, + 0x01, 0x21, 0x01, 0x27, 0x01, 0x11, 0x21, 0x11, 0x03, 0x17, 0x11, 0x21, + 0x01, 0x37, 0x01, 0x01, 0x3F, 0x33, 0x64, 0x68, 0x37, 0x01, 0x8A, 0x01, + 0x47, 0xFD, 0x89, 0x14, 0xFD, 0xC6, 0x01, 0x0A, 0x01, 0x01, 0x02, 0x90, + 0xFE, 0x22, 0xA2, 0x02, 0x72, 0x01, 0x61, 0x01, 0x3B, 0x41, 0x7B, 0x7A, + 0x40, 0x01, 0xC0, 0xFD, 0x39, 0x02, 0xFC, 0xF3, 0x05, 0xD2, 0xFE, 0x42, + 0xFE, 0x9B, 0x80, 0xFD, 0xD1, 0x02, 0xC0, 0xCB, 0xFC, 0x75, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x1C, 0x05, 0x51, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x0F, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0xB4, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x51, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x0F, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x13, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x51, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x0F, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xEE, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x38, 0x05, 0x51, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x0F, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xB8, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x8F, 0x05, 0x51, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x0F, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x17, 0xF9, 0x9B, 0x00, 0x02, + 0x00, 0x37, 0x00, 0x00, 0x06, 0xA3, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x10, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x11, 0x21, 0x11, 0x33, 0x01, + 0x21, 0x01, 0x01, 0x21, 0x01, 0x23, 0x11, 0x02, 0x54, 0xFD, 0xE3, 0x01, + 0x9D, 0x01, 0x09, 0xAA, 0x01, 0xCC, 0x01, 0x37, 0xFD, 0xD8, 0x02, 0x41, + 0xFE, 0xC9, 0xFE, 0x20, 0xAF, 0x05, 0xD2, 0xE3, 0xE3, 0xFA, 0x2E, 0x05, + 0xD2, 0xFD, 0x99, 0x02, 0x67, 0xFD, 0x2E, 0xFD, 0x00, 0x02, 0x84, 0xFD, + 0x7C, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0xC0, 0x05, 0xA0, 0x05, 0xD2, 0x04, + 0x26, 0x04, 0x31, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x04, 0x1A, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x05, 0x84, 0x05, 0xEB, 0x00, + 0x13, 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x33, 0x01, 0x36, 0x36, 0x16, + 0x17, 0x07, 0x26, 0x06, 0x07, 0x01, 0x01, 0x21, 0x01, 0x07, 0x11, 0x81, + 0x01, 0x06, 0x13, 0x02, 0x11, 0x45, 0x9E, 0xA6, 0x50, 0x59, 0x39, 0x5D, + 0x34, 0xFE, 0x84, 0x02, 0x6B, 0xFE, 0xC4, 0xFE, 0x2B, 0xB8, 0x05, 0xD2, + 0xFD, 0x58, 0x02, 0x3A, 0x49, 0x3E, 0x13, 0x33, 0xBC, 0x20, 0x19, 0x37, + 0xFE, 0x6F, 0xFC, 0xD8, 0x02, 0x6F, 0xC9, 0xFE, 0x5A, 0xFF, 0xFF, 0x00, + 0x81, 0x00, 0x00, 0x05, 0x51, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x0F, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x04, 0x36, 0x05, 0xD2, 0x00, + 0x05, 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x21, 0x15, 0x81, 0x01, 0x0A, + 0x02, 0xAB, 0x05, 0xD2, 0xFB, 0x12, 0xE4, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x04, 0x36, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x00, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, + 0x1C, 0x04, 0x36, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE7, 0x01, 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x04, 0x36, 0x06, 0x1C, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x28, 0x01, 0xDD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFE, + 0x38, 0x04, 0x36, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x4F, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xE9, 0xFE, + 0x38, 0x04, 0x36, 0x07, 0x46, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x27, 0x0A, 0x8C, 0x01, 0x4F, 0xF9, 0x6D, 0x00, 0x07, 0x06, 0xEB, 0xFF, + 0x64, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x8F, 0x04, 0x36, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0xAE, 0xF9, 0x9B, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x3C, 0x04, 0x36, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, + 0xAB, 0xF9, 0x79, 0xFF, 0xFF, 0x00, 0x0E, 0x00, 0x00, 0x04, 0x81, 0x05, + 0xD2, 0x04, 0x26, 0x01, 0x19, 0x4A, 0x00, 0x00, 0x06, 0x0B, 0x6B, 0x0E, + 0xE2, 0xFF, 0xFF, 0x00, 0x17, 0x00, 0x00, 0x04, 0x88, 0x05, 0xD2, 0x04, + 0x26, 0x01, 0x19, 0x52, 0x00, 0x00, 0x06, 0x0B, 0x69, 0xE5, 0x00, 0xFF, + 0xFF, 0x00, 0x81, 0xFE, 0x5E, 0x05, 0xF9, 0x05, 0xE9, 0x04, 0x26, 0x01, + 0x19, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x04, 0x6D, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x04, 0x61, 0x00, 0x00, 0x00, 0x01, 0x00, 0x81, 0x00, + 0x00, 0x06, 0x9F, 0x05, 0xD2, 0x00, 0x2D, 0x00, 0x00, 0x73, 0x11, 0x21, + 0x01, 0x1E, 0x03, 0x17, 0x23, 0x3E, 0x03, 0x37, 0x01, 0x21, 0x11, 0x21, + 0x11, 0x34, 0x3E, 0x02, 0x37, 0x33, 0x0E, 0x03, 0x07, 0x01, 0x23, 0x01, + 0x2E, 0x03, 0x27, 0x33, 0x1E, 0x03, 0x15, 0x11, 0x81, 0x01, 0x82, 0x01, + 0x21, 0x0E, 0x27, 0x29, 0x24, 0x0C, 0x3F, 0x0C, 0x23, 0x29, 0x27, 0x0E, + 0x01, 0x1C, 0x01, 0x83, 0xFE, 0xFA, 0x03, 0x04, 0x03, 0x01, 0x1E, 0x17, + 0x30, 0x2E, 0x27, 0x0F, 0xFE, 0xE6, 0xDA, 0xFE, 0xE4, 0x0F, 0x28, 0x2F, + 0x31, 0x19, 0x25, 0x01, 0x03, 0x04, 0x03, 0x05, 0xD2, 0xFC, 0xF4, 0x2B, + 0x7D, 0x8A, 0x7F, 0x2C, 0x2B, 0x7F, 0x8B, 0x7D, 0x2B, 0x03, 0x0C, 0xFA, + 0x2E, 0x02, 0xF6, 0x31, 0x83, 0x92, 0x95, 0x44, 0x4C, 0x9D, 0x92, 0x7A, + 0x2A, 0xFD, 0x0A, 0x02, 0xF6, 0x2A, 0x79, 0x92, 0x9D, 0x4D, 0x43, 0x95, + 0x92, 0x83, 0x32, 0xFD, 0x0A, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, + 0x9F, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x02, 0xC5, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, + 0x9F, 0x07, 0x8E, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x02, 0x8F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x38, 0x06, + 0x9F, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x02, 0x8F, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0xC0, 0x07, + 0x5B, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x3C, 0x05, 0x4C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, + 0x9F, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x24, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x81, 0x00, 0x00, 0x06, 0x9F, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x24, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, 0x9F, 0x05, 0xD2, 0x06, + 0x06, 0x01, 0x24, 0x00, 0x00, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x05, + 0x53, 0x05, 0xD2, 0x00, 0x1B, 0x00, 0x00, 0x73, 0x11, 0x21, 0x01, 0x1E, + 0x02, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x21, 0x11, 0x21, 0x01, 0x2E, + 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, 0x81, 0x01, 0x21, 0x02, 0x0A, + 0x18, 0x43, 0x4A, 0x23, 0x1D, 0x04, 0x07, 0x03, 0x01, 0x0A, 0xFE, 0xDE, + 0xFE, 0x2A, 0x1D, 0x50, 0x62, 0x39, 0x29, 0x06, 0x07, 0x03, 0x05, 0xD2, + 0xFC, 0xC3, 0x25, 0x75, 0x88, 0x45, 0x32, 0x43, 0xA8, 0x99, 0x2D, 0x03, + 0x25, 0xFA, 0x2E, 0x02, 0xEA, 0x2F, 0x86, 0xAE, 0x68, 0x1E, 0x6F, 0xBF, + 0x90, 0x2A, 0xFD, 0x15, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, + 0x07, 0x7A, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, + 0x00, 0xFA, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, + 0x07, 0x8C, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, + 0x02, 0x21, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x1C, 0x05, 0x53, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, + 0x01, 0xE7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, + 0x07, 0x8C, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, + 0x01, 0x46, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, + 0x07, 0x8C, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, + 0x01, 0x5C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, + 0x07, 0x8E, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0xEA, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x38, 0x05, 0x53, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0xEA, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x8F, 0x05, 0x53, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, + 0x01, 0x4A, 0xF9, 0x9B, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x3C, 0x05, 0x53, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0x01, 0x47, 0xF9, 0x79, 0x00, 0x02, 0xFF, 0xAB, 0xFE, 0x5B, 0x05, 0x53, + 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x2B, 0x00, 0x00, 0x43, 0x35, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x35, 0x21, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x13, 0x11, 0x21, 0x01, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, + 0x21, 0x11, 0x21, 0x01, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, + 0x55, 0x11, 0x40, 0x18, 0x3C, 0x31, 0x01, 0x0A, 0xA9, 0xA6, 0x2C, 0x4C, + 0xBD, 0x01, 0x21, 0x02, 0x0A, 0x18, 0x43, 0x4A, 0x23, 0x1D, 0x04, 0x07, + 0x03, 0x01, 0x0A, 0xFE, 0xDE, 0xFE, 0x2A, 0x1D, 0x50, 0x62, 0x39, 0x29, + 0x06, 0x07, 0x03, 0xFE, 0x5E, 0xD6, 0x01, 0x01, 0x2D, 0x31, 0xEC, 0xF9, + 0x92, 0x96, 0x02, 0x01, 0xA3, 0x05, 0xD2, 0xFC, 0xC3, 0x25, 0x75, 0x88, + 0x45, 0x32, 0x43, 0xA8, 0x99, 0x2D, 0x03, 0x25, 0xFA, 0x2E, 0x02, 0xEA, + 0x2F, 0x86, 0xAE, 0x68, 0x1E, 0x6F, 0xBF, 0x90, 0x2A, 0xFD, 0x15, 0x00, + 0x02, 0x00, 0x81, 0xFE, 0x5B, 0x05, 0x55, 0x05, 0xD2, 0x00, 0x0F, 0x00, + 0x2B, 0x00, 0x00, 0x41, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, + 0x21, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x11, 0x21, 0x01, 0x1E, + 0x02, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x21, 0x11, 0x21, 0x01, 0x2E, + 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, 0x03, 0x75, 0x12, 0x3F, 0x18, + 0x3C, 0x31, 0x01, 0x0A, 0xA9, 0xA5, 0x2D, 0x4C, 0xFC, 0xF3, 0x01, 0x21, + 0x02, 0x0A, 0x18, 0x43, 0x4A, 0x23, 0x1D, 0x04, 0x07, 0x03, 0x01, 0x0A, + 0xFE, 0xDE, 0xFE, 0x2A, 0x1D, 0x50, 0x62, 0x39, 0x29, 0x06, 0x07, 0x03, + 0xFE, 0x5E, 0xD6, 0x01, 0x01, 0x2D, 0x31, 0xEC, 0xF9, 0x92, 0x96, 0x02, + 0x01, 0xA3, 0x05, 0xD2, 0xFC, 0xC3, 0x25, 0x75, 0x88, 0x45, 0x32, 0x43, + 0xA8, 0x99, 0x2D, 0x03, 0x25, 0xFA, 0x2E, 0x02, 0xEA, 0x2F, 0x86, 0xAE, + 0x68, 0x1E, 0x6F, 0xBF, 0x90, 0x2A, 0xFD, 0x15, 0x00, 0x01, 0x00, 0x81, + 0x00, 0x00, 0x05, 0x53, 0x05, 0xD2, 0x00, 0x1B, 0x00, 0x00, 0x61, 0x21, + 0x11, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x07, 0x01, 0x21, 0x11, + 0x21, 0x11, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x37, 0x01, 0x21, + 0x05, 0x53, 0xFE, 0xF6, 0x02, 0x08, 0x05, 0x2A, 0x39, 0x63, 0x4F, 0x1E, + 0xFE, 0x2A, 0xFE, 0xDE, 0x01, 0x0B, 0x03, 0x06, 0x05, 0x1D, 0x23, 0x4A, + 0x44, 0x17, 0x02, 0x09, 0x01, 0x21, 0x02, 0xEB, 0x2A, 0x90, 0xBF, 0x6F, + 0x1E, 0x68, 0xAE, 0x86, 0x2F, 0xFD, 0x16, 0x05, 0xD2, 0xFC, 0xDB, 0x2D, + 0x99, 0xA8, 0x43, 0x32, 0x45, 0x88, 0x75, 0x25, 0x03, 0x3D, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x38, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x5C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, 0x07, 0x89, 0x06, 0x26, 0x01, 0x38, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x40, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, 0x07, 0x46, 0x06, 0x26, 0x01, 0x38, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x4A, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x38, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x98, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0xC0, 0x06, 0x14, 0x07, 0x89, 0x06, 0x26, 0x01, 0x38, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x01, 0x40, 0x01, 0xA4, 0x00, 0x07, + 0x0B, 0x3C, 0x04, 0x04, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x05, 0x53, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x38, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x2C, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x5E, 0x07, 0x61, 0x05, 0xE9, + 0x04, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x05, 0xD5, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x05, 0xC9, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xE9, 0x00, 0x0F, 0x00, 0x1F, + 0x00, 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, + 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x03, + 0xC7, 0xFE, 0xC7, 0xB4, 0xB4, 0x01, 0x39, 0xC7, 0xC7, 0x01, 0x38, 0xB4, + 0xB4, 0xFE, 0xC8, 0xC7, 0x79, 0xC0, 0x6F, 0x6F, 0xC0, 0x79, 0x7A, 0xC0, + 0x6F, 0x6F, 0xC0, 0x17, 0xBD, 0x01, 0x59, 0xE9, 0xEB, 0x01, 0x5A, 0xBC, + 0xBC, 0xFE, 0xA6, 0xEB, 0xEA, 0xFE, 0xA7, 0xBC, 0xEE, 0x7B, 0xEC, 0xAA, + 0xAB, 0xED, 0x7B, 0x7B, 0xED, 0xAB, 0xAA, 0xEC, 0x7B, 0xFF, 0xFF, 0x00, + 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0xAF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x7A, 0x06, 0x26, 0x01, 0x41, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEC, 0x01, 0x12, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x4F, 0xFF, 0xBF, 0x05, 0xB6, 0x06, 0x13, 0x06, 0x26, 0x01, 0x41, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x38, 0x00, 0x72, 0x00, 0x00, 0x00, 0x03, 0x00, + 0x4F, 0xFF, 0xE9, 0x05, 0xB7, 0x06, 0xBB, 0x00, 0x12, 0x00, 0x22, 0x00, + 0x32, 0x00, 0x00, 0x41, 0x35, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x03, 0x22, 0x24, 0x02, + 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x03, 0x04, 0x36, 0x4F, 0x54, 0x79, 0x60, 0x17, + 0xEA, 0x6C, 0x5E, 0x30, 0x56, 0x68, 0x91, 0x6B, 0xC7, 0xFE, 0xC7, 0xB4, + 0xB4, 0x01, 0x39, 0xC7, 0xC7, 0x01, 0x38, 0xB4, 0xB4, 0xFE, 0xC8, 0xC7, + 0x79, 0xC0, 0x6F, 0x6F, 0xC0, 0x79, 0x7A, 0xC0, 0x6F, 0x6F, 0xC0, 0x05, + 0x3A, 0xAF, 0x07, 0x09, 0x07, 0x17, 0xD2, 0xDC, 0x60, 0x5A, 0x06, 0x08, + 0x07, 0xFA, 0xAF, 0xBD, 0x01, 0x59, 0xE9, 0xEB, 0x01, 0x5A, 0xBC, 0xBC, + 0xFE, 0xA6, 0xEB, 0xEA, 0xFE, 0xA7, 0xBC, 0xEE, 0x7B, 0xEC, 0xAA, 0xAB, + 0xED, 0x7B, 0x7B, 0xED, 0xAB, 0xAA, 0xEC, 0x7B, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE9, 0x01, 0x74, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE8, 0x02, 0x39, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x5E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x46, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0x01, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x89, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x58, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xD7, 0x01, 0x5C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x5E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFE, 0x5B, 0x05, 0xB6, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x58, 0x02, 0x64, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, + 0xFE, 0x5B, 0x05, 0xB6, 0x07, 0x46, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x27, 0x0B, 0x58, 0x02, 0x64, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, + 0x01, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, + 0x00, 0xBE, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x07, 0x91, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, + 0x01, 0x5E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0x78, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE7, + 0x00, 0xA8, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0x78, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1F, + 0x01, 0x12, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x07, 0x8E, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x02, 0x02, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0x78, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE6, + 0x02, 0x02, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xCA, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xEA, + 0x01, 0x12, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xB6, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1D, + 0x01, 0x17, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xCA, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x54, + 0x01, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xCA, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xB8, + 0x01, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, 0x38, 0x05, 0xB6, + 0x05, 0xE9, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x02, 0x02, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, + 0x01, 0xE5, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xB7, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, + 0x01, 0x5F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xB7, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, + 0x01, 0x5F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xB7, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, + 0x01, 0x5F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x08, 0xA9, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, + 0x01, 0x5F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, 0x38, 0x05, 0xB6, + 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, + 0x01, 0x5E, 0x01, 0xA4, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x02, 0xF9, 0x6D, + 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB7, 0x07, 0x8C, 0x06, 0x26, + 0x01, 0x45, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x39, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB7, 0x07, 0x8C, 0x06, 0x26, + 0x01, 0x45, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x74, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB7, 0x07, 0x8C, 0x06, 0x26, + 0x01, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xE5, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB7, 0x07, 0x7A, 0x06, 0x26, + 0x01, 0x45, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x01, 0x12, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x4F, 0xFE, 0x38, 0x05, 0xB7, 0x06, 0xBB, 0x06, 0x26, + 0x01, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x02, 0xF9, 0x6D, + 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xBF, 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, + 0x01, 0x41, 0x00, 0x00, 0x00, 0x27, 0x0B, 0x38, 0x00, 0x72, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE8, 0x02, 0x39, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x41, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x06, 0x76, 0x05, 0xE9, 0x04, 0x27, + 0x01, 0x41, 0x00, 0xBF, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, + 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x06, 0x94, 0x05, 0xE9, 0x04, 0x27, + 0x01, 0x41, 0x00, 0xDD, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xE7, 0xEC, + 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x06, 0xA8, 0x05, 0xE9, 0x04, 0x27, + 0x01, 0x41, 0x00, 0xF1, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x07, 0xC1, 0x05, 0xE9, 0x04, 0x27, + 0x01, 0x41, 0x02, 0x0B, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x07, 0xDF, 0x05, 0xE9, 0x04, 0x27, + 0x01, 0x41, 0x02, 0x29, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x07, 0xCF, 0x05, 0xE9, 0x04, 0x27, + 0x01, 0x41, 0x02, 0x19, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xE7, 0xE0, + 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x07, 0xE3, 0x05, 0xE9, 0x04, 0x27, + 0x01, 0x41, 0x02, 0x2D, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, + 0xFF, 0xFF, 0xFE, 0xE8, 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xEA, 0x06, 0x26, + 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFE, 0xC0, 0x00, 0x02, + 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xE9, 0x00, 0x03, + 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, + 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, + 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, 0xF0, 0xFC, 0x28, 0x01, 0xEB, + 0xC7, 0xFE, 0xC7, 0xB4, 0xB4, 0x01, 0x39, 0xC7, 0xC7, 0x01, 0x38, 0xB4, + 0xB4, 0xFE, 0xC8, 0xC7, 0x79, 0xC0, 0x6F, 0x6F, 0xC0, 0x79, 0x7A, 0xC0, + 0x6F, 0x6F, 0xC0, 0x03, 0x46, 0xBB, 0xBB, 0xFC, 0xA3, 0xBD, 0x01, 0x59, + 0xE9, 0xEB, 0x01, 0x5A, 0xBC, 0xBC, 0xFE, 0xA6, 0xEB, 0xEA, 0xFE, 0xA7, + 0xBC, 0xEE, 0x7B, 0xEC, 0xAA, 0xAB, 0xED, 0x7B, 0x7B, 0xED, 0xAB, 0xAA, + 0xEC, 0x7B, 0xFF, 0xFF, 0x00, 0x37, 0xFF, 0xE9, 0x06, 0x76, 0x05, 0xE9, + 0x04, 0x27, 0x01, 0x41, 0x00, 0xBF, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, + 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xE9, + 0x06, 0x06, 0x01, 0x41, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0xB6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0x00, 0xAF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0xB6, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x6F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x6F, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x8C, + 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0xAF, + 0x01, 0xA4, 0x00, 0x02, 0x00, 0x4F, 0x00, 0x00, 0x07, 0xCF, 0x05, 0xD2, + 0x00, 0x15, 0x00, 0x21, 0x00, 0x00, 0x61, 0x22, 0x24, 0x02, 0x35, 0x34, + 0x12, 0x24, 0x33, 0x21, 0x15, 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x21, 0x15, 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, + 0x21, 0x11, 0x21, 0x15, 0x03, 0x1E, 0xDF, 0xFE, 0xBD, 0xAD, 0xAD, 0x01, + 0x3F, 0xDB, 0x01, 0x4A, 0xFE, 0xC5, 0x98, 0xCE, 0x69, 0x69, 0xD0, 0x9C, + 0x01, 0x2F, 0x88, 0x03, 0xFC, 0xFD, 0x0D, 0x02, 0xBB, 0xFD, 0x45, 0x02, + 0xF4, 0xB6, 0x01, 0x4F, 0xE5, 0xE5, 0x01, 0x4E, 0xB5, 0xE3, 0x79, 0xE6, + 0xA6, 0xA6, 0xE8, 0x79, 0xE3, 0x05, 0xD2, 0xE4, 0xFE, 0x75, 0xE0, 0xFE, + 0x61, 0xE4, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x04, 0xCB, 0x05, 0xD2, + 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x21, 0x11, 0x81, 0x02, 0x37, 0xA6, 0xEE, 0x7F, 0x82, 0xF0, + 0xA6, 0xFE, 0x67, 0x01, 0x8A, 0x5C, 0x80, 0x44, 0x44, 0x80, 0x5C, 0xFE, + 0xE7, 0x05, 0xD2, 0x77, 0xD8, 0x91, 0x92, 0xD8, 0x77, 0xE0, 0x40, 0x73, + 0x4E, 0x4E, 0x72, 0x3F, 0xFB, 0x0F, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0xCB, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x77, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x01, 0xB1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0xCB, 0x07, 0x8E, 0x06, 0x26, 0x01, 0x77, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0x7A, 0x01, 0xA4, 0x00, 0x02, 0x00, 0x86, 0x00, 0x00, + 0x04, 0xCF, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x01, + 0x07, 0x01, 0x01, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x21, 0x11, 0x02, 0xFE, 0x01, 0x56, 0x85, 0xFE, 0xAA, 0xFE, 0x0D, 0x02, + 0x37, 0xA5, 0xEE, 0x7F, 0x81, 0xF1, 0xA5, 0xFE, 0x66, 0x01, 0x8A, 0x5C, + 0x80, 0x44, 0x44, 0x80, 0x5C, 0xFE, 0xE7, 0x03, 0xCA, 0xFD, 0xF1, 0x55, + 0x02, 0x0F, 0xFC, 0x8B, 0x05, 0xD2, 0x77, 0xD8, 0x91, 0x92, 0xD8, 0x77, + 0xE0, 0x40, 0x73, 0x4E, 0x4E, 0x72, 0x3F, 0xFB, 0x0F, 0x00, 0x02, 0x00, + 0x29, 0x00, 0x00, 0x06, 0x2B, 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x23, 0x00, + 0x00, 0x53, 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, + 0x15, 0x13, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, + 0x11, 0x29, 0x9D, 0x9D, 0x7F, 0x57, 0x37, 0x34, 0xC1, 0x02, 0x37, 0xA6, + 0xEE, 0x7F, 0x82, 0xF0, 0xA6, 0xFE, 0x67, 0x01, 0x8A, 0x5C, 0x80, 0x44, + 0x44, 0x80, 0x5C, 0xFE, 0xE7, 0x04, 0x18, 0x8E, 0x90, 0x9C, 0xE1, 0x2E, + 0x32, 0x79, 0xFB, 0xE8, 0x05, 0xD2, 0x77, 0xD8, 0x91, 0x92, 0xD8, 0x77, + 0xE0, 0x40, 0x73, 0x4E, 0x4E, 0x72, 0x3F, 0xFB, 0x0F, 0xFF, 0xFF, 0x00, + 0x81, 0x00, 0x00, 0x04, 0xCB, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x77, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x06, 0x41, 0x05, 0xD5, 0x04, + 0x27, 0x01, 0x77, 0x01, 0x76, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xE7, + 0xE0, 0x00, 0x03, 0x00, 0x4F, 0xFF, 0x7F, 0x05, 0xB6, 0x05, 0xE9, 0x00, + 0x07, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, 0x41, 0x33, 0x17, 0x17, 0x13, + 0x23, 0x27, 0x27, 0x07, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, + 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, + 0x9E, 0xF0, 0x93, 0x60, 0xFB, 0xFD, 0xA6, 0x4C, 0x8A, 0xC7, 0xFE, 0xC7, + 0xB4, 0xB4, 0x01, 0x39, 0xC7, 0xC7, 0x01, 0x38, 0xB4, 0xB4, 0xFE, 0xC8, + 0xC7, 0x79, 0xC0, 0x6F, 0x6F, 0xC0, 0x79, 0x7A, 0xC0, 0x6F, 0x6F, 0xC0, + 0x01, 0xF1, 0xBF, 0x73, 0xFE, 0xC0, 0xD5, 0x62, 0xCD, 0xBD, 0x01, 0x59, + 0xE9, 0xEB, 0x01, 0x5A, 0xBC, 0xBC, 0xFE, 0xA6, 0xEB, 0xEA, 0xFE, 0xA7, + 0xBC, 0xEE, 0x7B, 0xEC, 0xAA, 0xAB, 0xED, 0x7B, 0x7B, 0xED, 0xAB, 0xAA, + 0xEC, 0x7B, 0x00, 0x03, 0x00, 0x4F, 0xFE, 0x5B, 0x06, 0x62, 0x05, 0xE8, + 0x00, 0x16, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x41, 0x11, 0x23, 0x35, + 0x23, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x35, 0x01, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, + 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, + 0x15, 0x06, 0x06, 0x05, 0x8A, 0xFF, 0x04, 0x39, 0xE8, 0x97, 0x8B, 0xEA, + 0xAD, 0x5E, 0x5F, 0xAC, 0xEA, 0x8B, 0x95, 0xEA, 0x39, 0x04, 0xFE, 0x68, + 0x81, 0xB7, 0x61, 0x61, 0xB6, 0x80, 0x7D, 0xB9, 0x67, 0x66, 0xB9, 0x03, + 0x5E, 0xA5, 0xA5, 0xFF, 0x32, 0x3D, 0x18, 0x3F, 0x12, 0x19, 0x47, 0x05, + 0xD2, 0xFA, 0x2E, 0xE0, 0x72, 0x85, 0x73, 0xCE, 0x01, 0x19, 0xA6, 0xA6, + 0x01, 0x18, 0xCF, 0x72, 0x83, 0x6F, 0xDC, 0xFB, 0x03, 0x84, 0xF0, 0xA0, + 0xA3, 0xEE, 0x83, 0x85, 0xEF, 0xA0, 0xA2, 0xEF, 0x83, 0xFD, 0x86, 0x96, + 0x92, 0x7D, 0x77, 0x32, 0x2D, 0x01, 0xCD, 0x01, 0x02, 0x00, 0x02, 0x00, + 0x81, 0x00, 0x00, 0x04, 0xF6, 0x05, 0xD2, 0x00, 0x17, 0x00, 0x1B, 0x00, + 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, + 0x11, 0x21, 0x01, 0x21, 0x01, 0x81, 0x02, 0x41, 0xA5, 0xEE, 0x7F, 0x85, + 0xF4, 0xA7, 0xFE, 0x69, 0x01, 0x91, 0x5C, 0x80, 0x43, 0x44, 0x80, 0x5C, + 0xFE, 0xDE, 0x02, 0x47, 0xFE, 0xA2, 0x01, 0x1D, 0x01, 0x65, 0x05, 0xD2, + 0x75, 0xD6, 0x91, 0x91, 0xD3, 0x73, 0xDB, 0x3D, 0x71, 0x4E, 0x4E, 0x70, + 0x3E, 0xFB, 0x0E, 0x02, 0xA1, 0xFD, 0x5F, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x04, 0xF6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x01, 0xC6, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, + 0x1C, 0x04, 0xF6, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE7, 0x01, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x04, 0xF6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8E, 0x00, 0xEB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x04, 0xF6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEA, 0x00, 0x4B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x04, 0xF6, 0x07, 0x91, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF8, 0x00, 0xEC, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x04, 0xF6, 0x07, 0x8E, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x90, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, + 0x38, 0x04, 0xF6, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x9C, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0xFE, + 0x38, 0x04, 0xF6, 0x07, 0x46, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x27, 0x0A, 0x8C, 0x01, 0x9C, 0xF9, 0x6D, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0xEF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x8F, 0x04, 0xF6, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0xFC, 0xF9, 0x9B, 0x00, 0x03, 0x00, 0x84, 0xFE, 0x97, 0x04, 0xF9, 0x07, + 0x12, 0x00, 0x05, 0x00, 0x1D, 0x00, 0x21, 0x00, 0x00, 0x41, 0x01, 0x27, + 0x01, 0x25, 0x37, 0x01, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x21, 0x11, 0x21, 0x01, 0x21, 0x01, 0x03, 0xB5, 0xFE, 0x0E, 0x74, + 0x01, 0xE0, 0xFE, 0xC1, 0x24, 0xFE, 0x70, 0x02, 0x41, 0xA5, 0xEE, 0x7F, + 0x85, 0xF4, 0xA7, 0xFE, 0x69, 0x01, 0x91, 0x5C, 0x80, 0x43, 0x44, 0x80, + 0x5C, 0xFE, 0xDE, 0x02, 0x47, 0xFE, 0xA2, 0x01, 0x1D, 0x01, 0x65, 0x06, + 0x9D, 0xF7, 0xFA, 0x14, 0x07, 0xA7, 0x54, 0x6C, 0xF8, 0xEE, 0x05, 0xD2, + 0x75, 0xD6, 0x91, 0x91, 0xD3, 0x73, 0xDB, 0x3D, 0x71, 0x4E, 0x4E, 0x70, + 0x3E, 0xFB, 0x0E, 0x02, 0xA1, 0xFD, 0x5F, 0x00, 0x03, 0x00, 0x81, 0x00, + 0x00, 0x05, 0x74, 0x05, 0xD2, 0x00, 0x18, 0x00, 0x1C, 0x00, 0x20, 0x00, + 0x00, 0x53, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, + 0x21, 0x27, 0x21, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, + 0x21, 0x21, 0x01, 0x33, 0x01, 0x21, 0x23, 0x01, 0x33, 0x81, 0x02, 0x21, + 0xB4, 0xE9, 0x72, 0x54, 0x96, 0x65, 0x40, 0xFE, 0x12, 0x01, 0x01, 0x65, + 0x62, 0x7A, 0x39, 0x33, 0x74, 0x64, 0xFE, 0xE5, 0xFE, 0xFA, 0x03, 0xFB, + 0xFE, 0x1E, 0xF2, 0x01, 0xE8, 0xFE, 0x09, 0xD9, 0x01, 0xE7, 0xD2, 0x05, + 0xD2, 0x77, 0xD0, 0x87, 0x76, 0xB0, 0x75, 0x20, 0x16, 0xDE, 0x01, 0x39, + 0x6C, 0x49, 0x43, 0x6F, 0x43, 0xFB, 0x0B, 0x02, 0x9A, 0xFD, 0x66, 0x02, + 0x9A, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, 0x05, 0x12, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x03, + 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x35, + 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x21, + 0x01, 0x21, 0x01, 0x01, 0x35, 0xFE, 0xCA, 0x01, 0x36, 0x98, 0x02, 0x40, + 0xA6, 0xED, 0x80, 0x86, 0xF4, 0xA7, 0xFE, 0x6A, 0x01, 0x91, 0x5B, 0x80, + 0x44, 0x44, 0x81, 0x5C, 0xFE, 0xDE, 0x02, 0x48, 0xFE, 0xA1, 0x01, 0x1E, + 0x01, 0x65, 0x02, 0x32, 0xCE, 0xFD, 0x00, 0x05, 0xD2, 0x75, 0xD6, 0x91, + 0x91, 0xD3, 0x73, 0xDB, 0x3D, 0x71, 0x4E, 0x4E, 0x70, 0x3E, 0xFB, 0x0E, + 0x02, 0xA1, 0xFD, 0x5F, 0x00, 0x01, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, + 0x05, 0xE9, 0x00, 0x32, 0x00, 0x00, 0x45, 0x22, 0x24, 0x26, 0x27, 0x21, + 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x27, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x17, + 0x1E, 0x03, 0x15, 0x14, 0x06, 0x04, 0x02, 0x99, 0xB5, 0xFE, 0xF9, 0x8E, + 0x01, 0x01, 0x04, 0x02, 0x51, 0x92, 0x63, 0x5D, 0x89, 0x4D, 0x3A, 0x7A, + 0x5F, 0xA2, 0xD7, 0xD3, 0x8A, 0xF7, 0xA2, 0xA5, 0xF2, 0x87, 0x04, 0xFD, + 0x08, 0x9E, 0x81, 0x52, 0x7F, 0x47, 0x3C, 0x77, 0x59, 0x94, 0x6D, 0xA6, + 0x71, 0x3A, 0x8A, 0xFE, 0xFF, 0x18, 0x77, 0xE0, 0x9C, 0x57, 0x7B, 0x41, + 0x35, 0x61, 0x41, 0x36, 0x4E, 0x39, 0x16, 0x26, 0x32, 0xC7, 0x9D, 0x86, + 0xC6, 0x6F, 0x72, 0xD0, 0x8F, 0x71, 0x80, 0x35, 0x5C, 0x3C, 0x35, 0x4B, + 0x35, 0x15, 0x23, 0x19, 0x49, 0x66, 0x86, 0x55, 0x89, 0xCC, 0x6F, 0xFF, + 0xFF, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, 0x07, 0x8C, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xC5, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, 0x07, 0x8C, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xEA, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4E, 0xFE, 0x5E, 0x04, 0xD5, 0x05, 0xE9, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x57, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, 0x07, 0x8C, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xEA, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4E, 0xFE, 0x1C, 0x04, 0xD5, 0x05, 0xE9, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x91, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, 0x07, 0x8E, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x8E, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4E, 0xFE, 0x38, 0x04, 0xD5, 0x05, 0xE9, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x94, 0xF9, 0x6D, 0xFF, + 0xFF, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, 0x07, 0xE1, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x20, 0x01, 0x3C, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, 0x08, 0xB4, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x19, 0x00, 0xD0, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4E, 0xFE, 0x38, 0x04, 0xD5, 0x07, 0x8E, 0x06, 0x26, 0x01, + 0x8D, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x01, 0x94, 0xF9, 0x6D, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x8E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4E, 0xFF, + 0xE8, 0x04, 0xD5, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x8D, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x4E, 0xFF, 0xE8, 0x04, 0xD5, 0x05, 0xE9, 0x00, 0x32, 0x00, + 0x00, 0x45, 0x22, 0x24, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x37, 0x3E, + 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x07, 0x0E, 0x02, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x21, 0x06, 0x06, 0x04, + 0x02, 0x8A, 0xB1, 0xFE, 0xFF, 0x8A, 0x3A, 0x71, 0xA6, 0x6D, 0x94, 0x59, + 0x77, 0x3C, 0x47, 0x7E, 0x53, 0x80, 0x9F, 0x08, 0xFD, 0x04, 0x87, 0xF2, + 0xA5, 0xA3, 0xF6, 0x8A, 0xD3, 0xD7, 0xA2, 0x5F, 0x7A, 0x3A, 0x4D, 0x8A, + 0x5C, 0x64, 0x91, 0x51, 0x02, 0x01, 0x04, 0x01, 0x8E, 0xFE, 0xFA, 0x18, + 0x6F, 0xCC, 0x89, 0x55, 0x86, 0x66, 0x49, 0x19, 0x23, 0x15, 0x35, 0x4B, + 0x35, 0x3C, 0x5C, 0x35, 0x80, 0x71, 0x8F, 0xD0, 0x72, 0x6F, 0xC6, 0x86, + 0x9D, 0xC7, 0x32, 0x26, 0x16, 0x39, 0x4E, 0x36, 0x41, 0x61, 0x35, 0x41, + 0x7B, 0x57, 0x9C, 0xE0, 0x77, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x05, + 0x2D, 0x05, 0xD2, 0x00, 0x22, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x33, + 0x21, 0x15, 0x01, 0x27, 0x36, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x01, + 0x17, 0x21, 0x22, 0x06, 0x15, 0x11, 0x81, 0xE3, 0xD9, 0x02, 0x6C, 0xFE, + 0x89, 0x1E, 0xA4, 0xF1, 0x84, 0x84, 0xF2, 0xA6, 0xE5, 0xE5, 0x81, 0x90, + 0x90, 0x81, 0xC3, 0x01, 0x7B, 0x13, 0xFE, 0x61, 0x56, 0x5B, 0x04, 0x2E, + 0xCE, 0xD6, 0xD5, 0xFE, 0x29, 0x3C, 0x05, 0x63, 0xBE, 0x86, 0x89, 0xC9, + 0x6E, 0xD7, 0x7A, 0x70, 0x70, 0x7C, 0xAB, 0x01, 0xEC, 0x4E, 0x5A, 0x56, + 0xFB, 0xBA, 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, 0x04, 0xDD, 0x05, 0xD2, + 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, 0x11, + 0x37, 0x04, 0xA6, 0xFE, 0x32, 0xFE, 0xF6, 0x04, 0xEE, 0xE4, 0xE4, 0xFB, + 0x12, 0x04, 0xEE, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x5E, 0x04, 0xDD, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, + 0x4E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0xDD, 0x07, + 0x8C, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, + 0xE5, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1C, 0x04, 0xDD, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, + 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0xDD, 0x07, + 0x8E, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x89, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x38, 0x04, 0xDD, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x89, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x8F, 0x04, 0xDD, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0xE9, 0xF9, 0x9B, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x3C, 0x04, 0xDD, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, + 0xE6, 0xF9, 0x79, 0x00, 0x02, 0x00, 0x4A, 0x00, 0x00, 0x05, 0x1F, 0x05, + 0xD2, 0x00, 0x0B, 0x00, 0x13, 0x00, 0x00, 0x53, 0x35, 0x34, 0x36, 0x33, + 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x15, 0x37, 0x35, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x11, 0x4A, 0x9D, 0x9D, 0x80, 0x57, 0x38, 0x33, 0xC2, 0x03, + 0x1B, 0xFE, 0x34, 0xFE, 0xF6, 0x04, 0x18, 0x8E, 0x90, 0x9C, 0xE1, 0x2E, + 0x32, 0x79, 0xD6, 0xE4, 0xE4, 0xFB, 0x12, 0x04, 0xEE, 0x00, 0x01, 0x01, + 0xC6, 0x00, 0x00, 0x04, 0xE2, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, + 0x35, 0x21, 0x15, 0x21, 0x11, 0x21, 0x11, 0x01, 0xC6, 0x03, 0x1C, 0xFE, + 0x33, 0xFE, 0xF7, 0x04, 0xEE, 0xE4, 0xE4, 0xFB, 0x12, 0x04, 0xEE, 0x00, + 0x02, 0x00, 0x37, 0xFE, 0x5B, 0x04, 0xDD, 0x05, 0xD2, 0x00, 0x0F, 0x00, + 0x17, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x11, 0x21, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x33, 0x15, 0x06, 0x06, 0x01, 0x35, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x11, 0x03, 0x4F, 0xA5, 0xA5, 0x01, 0x0A, 0x33, 0x3C, 0x18, + 0x3F, 0x12, 0x19, 0x51, 0xFC, 0xBA, 0x04, 0xA6, 0xFE, 0x32, 0xFE, 0xF6, + 0xFE, 0x5B, 0x96, 0x92, 0x01, 0x2A, 0xFE, 0xDF, 0x32, 0x2D, 0x01, 0xD0, + 0x01, 0x02, 0x06, 0x93, 0xE4, 0xE4, 0xFB, 0x12, 0x04, 0xEE, 0x00, 0x02, + 0x00, 0x37, 0xFF, 0x2F, 0x04, 0xDD, 0x06, 0xA3, 0x00, 0x03, 0x00, 0x0B, + 0x00, 0x00, 0x57, 0x01, 0x33, 0x01, 0x01, 0x35, 0x21, 0x15, 0x21, 0x11, + 0x21, 0x11, 0xC0, 0x02, 0xF8, 0x9E, 0xFD, 0x07, 0xFE, 0xDA, 0x04, 0xA6, + 0xFE, 0x32, 0xFE, 0xF6, 0xD1, 0x07, 0x74, 0xF8, 0x8C, 0x05, 0xBF, 0xE4, + 0xE4, 0xFB, 0x12, 0x04, 0xEE, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, + 0xDD, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x05, 0xD2, 0x00, 0x15, 0x00, 0x00, 0x45, + 0x22, 0x24, 0x26, 0x35, 0x11, 0x21, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x11, 0x21, 0x11, 0x14, 0x06, 0x04, 0x02, 0xD8, 0xB6, + 0xFE, 0xF1, 0x96, 0x01, 0x06, 0x54, 0x99, 0x68, 0x69, 0x98, 0x54, 0x01, + 0x06, 0x96, 0xFE, 0xF1, 0x18, 0x8A, 0xF3, 0x9E, 0x03, 0xCF, 0xFC, 0x47, + 0x5F, 0x93, 0x54, 0x54, 0x93, 0x5F, 0x03, 0xB9, 0xFC, 0x31, 0x9E, 0xF3, + 0x8A, 0x00, 0x02, 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0xE0, 0x06, 0xBB, 0x00, + 0x0A, 0x00, 0x20, 0x00, 0x00, 0x41, 0x35, 0x33, 0x32, 0x35, 0x35, 0x33, + 0x15, 0x14, 0x06, 0x23, 0x01, 0x22, 0x24, 0x26, 0x35, 0x11, 0x21, 0x11, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x21, 0x11, 0x14, + 0x06, 0x04, 0x04, 0x2D, 0xB2, 0x17, 0xEA, 0x6C, 0x5E, 0xFD, 0xC2, 0xB6, + 0xFE, 0xF1, 0x96, 0x01, 0x06, 0x54, 0x99, 0x68, 0x69, 0x98, 0x54, 0x01, + 0x06, 0x96, 0xFE, 0xF1, 0x05, 0x24, 0xAE, 0x17, 0xD2, 0xDC, 0x60, 0x5B, + 0xFA, 0xC4, 0x8A, 0xF3, 0x9E, 0x03, 0xCF, 0xFC, 0x47, 0x5F, 0x93, 0x54, + 0x54, 0x93, 0x5F, 0x03, 0xB9, 0xFC, 0x31, 0x9E, 0xF3, 0x8A, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x49, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x0E, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x33, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x85, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x7A, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xE7, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x46, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x37, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x2D, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0xFD, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF2, 0x01, 0x82, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x01, 0x31, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x5B, 0x05, 0x33, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x59, 0x01, 0xE4, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x33, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0x78, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE7, 0x00, 0x7D, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xCA, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE4, 0x00, 0x7D, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xBE, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xEB, 0x00, 0x7D, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xCA, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE8, 0x00, 0x7D, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, 0x93, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x91, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x01, 0x33, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x3B, 0x05, 0x33, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x85, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x53, 0x05, 0x33, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xE8, 0xF9, 0x75, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x3C, 0x05, 0x33, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x34, 0xF9, 0x79, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xCA, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xEA, 0x00, 0xE8, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xB7, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE9, 0x01, 0x37, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x38, 0x05, 0x33, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xD8, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xBB, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0xE0, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x0E, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0xE0, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x49, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0xE0, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xBB, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0xE0, 0x07, 0x7A, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xE7, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x38, 0x05, 0xE0, 0x06, 0xBB, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xD8, 0xF9, 0x6D, 0x00, 0x02, + 0xFF, 0xE3, 0xFF, 0xE8, 0x05, 0xF9, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x19, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x24, 0x26, 0x35, 0x11, + 0x21, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x21, + 0x11, 0x14, 0x06, 0x04, 0x05, 0xF9, 0xF9, 0xEA, 0x03, 0x0B, 0xB6, 0xFE, + 0xF1, 0x95, 0x01, 0x06, 0x53, 0x99, 0x69, 0x68, 0x99, 0x53, 0x01, 0x06, + 0x95, 0xFE, 0xF1, 0x03, 0x55, 0x9C, 0x9C, 0xFC, 0x93, 0x8A, 0xF3, 0x9E, + 0x03, 0xCF, 0xFC, 0x47, 0x5F, 0x93, 0x54, 0x54, 0x93, 0x5F, 0x03, 0xB9, + 0xFC, 0x31, 0x9E, 0xF3, 0x8A, 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, 0x05, + 0x7E, 0x05, 0xD2, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x01, 0x21, 0x01, 0x16, + 0x12, 0x17, 0x23, 0x36, 0x12, 0x37, 0x01, 0x21, 0x01, 0x02, 0x29, 0xFD, + 0xEC, 0x01, 0x20, 0x01, 0x0B, 0x25, 0x59, 0x37, 0x47, 0x36, 0x56, 0x24, + 0x01, 0x03, 0x01, 0x1D, 0xFD, 0xF6, 0x05, 0xD2, 0xFC, 0xF3, 0x73, 0xFE, + 0xDA, 0xBC, 0xBC, 0x01, 0x26, 0x73, 0x03, 0x0D, 0xFA, 0x2E, 0xFF, 0xFF, + 0x00, 0x15, 0x00, 0x00, 0x05, 0x7E, 0x07, 0x7A, 0x06, 0x26, 0x01, 0xC8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xD9, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x15, 0xFE, 0x38, 0x05, 0x7E, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xC8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xC9, 0xF9, 0x6D, 0x00, 0x01, + 0x00, 0x15, 0x00, 0x00, 0x07, 0xD6, 0x05, 0xD2, 0x00, 0x25, 0x00, 0x00, + 0x61, 0x01, 0x21, 0x13, 0x1E, 0x02, 0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, + 0x21, 0x13, 0x1E, 0x02, 0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, 0x21, 0x01, + 0x21, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0x01, 0xA7, + 0xFE, 0x6E, 0x01, 0x19, 0xC4, 0x15, 0x24, 0x22, 0x0F, 0x2F, 0x11, 0x24, + 0x26, 0x15, 0xCC, 0x01, 0x18, 0xCB, 0x15, 0x27, 0x24, 0x11, 0x31, 0x11, + 0x21, 0x26, 0x13, 0xC4, 0x01, 0x1B, 0xFE, 0x6C, 0xFE, 0xD4, 0xE2, 0x19, + 0x2D, 0x1B, 0x43, 0x1B, 0x2B, 0x1A, 0xE1, 0x05, 0xD2, 0xFC, 0xDF, 0x55, + 0xB0, 0xAF, 0x57, 0x57, 0xAF, 0xB0, 0x55, 0x03, 0x21, 0xFC, 0xDF, 0x55, + 0xB0, 0xAF, 0x57, 0x57, 0xAF, 0xB0, 0x55, 0x03, 0x21, 0xFA, 0x2E, 0x03, + 0x55, 0x62, 0xE1, 0x82, 0x81, 0xE0, 0x64, 0xFC, 0xAB, 0xFF, 0xFF, 0x00, + 0x15, 0x00, 0x00, 0x07, 0xD6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x02, 0x50, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x15, 0x00, 0x00, 0x07, 0xD6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x02, 0x66, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x15, 0x00, 0x00, 0x07, 0xD6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x03, 0x2B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x15, 0x00, 0x00, 0x07, 0xD6, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x01, 0xA2, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x15, 0x00, 0x00, 0x07, 0xD6, 0x07, 0x8E, 0x06, 0x26, 0x01, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0xF4, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x15, 0xFE, 0x38, 0x07, 0xD6, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0xF5, 0xF9, 0x6D, 0x00, 0x01, 0x00, + 0x18, 0x00, 0x00, 0x05, 0x6A, 0x05, 0xD2, 0x00, 0x1F, 0x00, 0x00, 0x73, + 0x01, 0x15, 0x01, 0x21, 0x13, 0x1E, 0x02, 0x17, 0x23, 0x3E, 0x02, 0x37, + 0x13, 0x21, 0x01, 0x35, 0x01, 0x21, 0x03, 0x2E, 0x02, 0x27, 0x33, 0x0E, + 0x02, 0x07, 0x03, 0x18, 0x02, 0x5B, 0xFD, 0xCF, 0x01, 0x30, 0xB7, 0x24, + 0x3D, 0x3B, 0x1E, 0x3F, 0x20, 0x3B, 0x3F, 0x24, 0xBA, 0x01, 0x28, 0xFD, + 0xD6, 0x02, 0x50, 0xFE, 0xCC, 0xE3, 0x1F, 0x38, 0x35, 0x1C, 0x2D, 0x1B, + 0x36, 0x39, 0x20, 0xE8, 0x03, 0x5B, 0xC5, 0x03, 0x3C, 0xFE, 0xED, 0x36, + 0x64, 0x62, 0x33, 0x33, 0x62, 0x64, 0x36, 0x01, 0x13, 0xFC, 0xD1, 0xBE, + 0xFC, 0x9F, 0x01, 0x51, 0x30, 0x55, 0x55, 0x2D, 0x2D, 0x54, 0x56, 0x30, + 0xFE, 0xAF, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x6A, 0x07, 0x8E, + 0x06, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xC0, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x6A, 0x07, 0x8C, + 0x06, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x6E, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0xC0, 0x05, 0xCF, 0x05, 0xD2, + 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x04, 0x49, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x5B, 0x05, 0xD5, 0x05, 0xD2, + 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3F, 0x03, 0xC0, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x6A, 0x05, 0xD2, + 0x06, 0x06, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x01, 0x00, 0x15, 0x00, 0x00, + 0x05, 0x62, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x00, 0x61, 0x11, 0x01, 0x21, + 0x01, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x01, 0x21, 0x01, 0x11, + 0x02, 0x3C, 0xFD, 0xD9, 0x01, 0x32, 0x01, 0x0C, 0x27, 0x46, 0x24, 0x47, + 0x22, 0x46, 0x26, 0x01, 0x06, 0x01, 0x31, 0xFD, 0xDF, 0x02, 0x40, 0x03, + 0x92, 0xFE, 0x33, 0x43, 0x84, 0x49, 0x49, 0x84, 0x43, 0x01, 0xCD, 0xFC, + 0x6E, 0xFD, 0xC0, 0x00, 0x02, 0x00, 0x22, 0x00, 0x00, 0x05, 0xD8, 0x05, + 0xE6, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x01, + 0x21, 0x01, 0x01, 0x3E, 0x02, 0x17, 0x07, 0x26, 0x06, 0x07, 0x01, 0x11, + 0x21, 0x11, 0x02, 0xC5, 0x24, 0xFD, 0x39, 0x01, 0x22, 0x01, 0x93, 0x01, + 0x2F, 0x39, 0x99, 0xAD, 0x53, 0x3C, 0x41, 0x5C, 0x2A, 0xFE, 0x85, 0xFE, + 0xFB, 0x03, 0x19, 0x22, 0x22, 0x02, 0xB9, 0xFD, 0x5B, 0x01, 0xFA, 0x5F, + 0x5B, 0x05, 0x23, 0xCA, 0x17, 0x20, 0x42, 0xFD, 0xA1, 0xFD, 0xB1, 0x02, + 0x4F, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x8C, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xF1, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x8C, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x16, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x8C, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x68, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x46, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x1A, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x8E, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xBA, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x8C, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x2C, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x38, 0x05, 0x62, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xBD, 0xF9, + 0x6D, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x8C, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x9E, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x7A, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xCB, 0x01, + 0xA4, 0x00, 0x02, 0xFF, 0xF9, 0x00, 0x00, 0x05, 0x7D, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x11, 0x01, + 0x21, 0x01, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x01, 0x21, 0x01, + 0x11, 0x05, 0x7D, 0xFA, 0x7C, 0x02, 0x43, 0xFD, 0xD9, 0x01, 0x32, 0x01, + 0x0C, 0x27, 0x46, 0x24, 0x47, 0x22, 0x46, 0x26, 0x01, 0x06, 0x01, 0x31, + 0xFD, 0xDF, 0x04, 0x9D, 0x91, 0x91, 0xFB, 0x63, 0x02, 0x40, 0x03, 0x92, + 0xFE, 0x33, 0x43, 0x84, 0x49, 0x49, 0x84, 0x43, 0x01, 0xCD, 0xFC, 0x6E, + 0xFD, 0xC0, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x05, 0xD2, + 0x06, 0x06, 0x01, 0xD8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x06, 0xF8, 0x05, 0xD2, 0x04, 0x27, 0x01, 0xD8, 0x01, 0x97, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, + 0x05, 0x62, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0x00, 0x68, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0x2A, 0x05, 0xD5, 0x04, 0x27, 0x01, 0xD8, 0x01, 0xC9, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x7E, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x08, 0x62, 0x05, 0xD5, 0x04, 0x27, 0x01, 0xD8, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x08, 0x66, 0x05, 0xD5, 0x04, 0x27, 0x01, 0xD8, 0x03, 0x04, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, + 0x07, 0xDB, 0x07, 0x0D, 0x04, 0x27, 0x01, 0xD8, 0x02, 0x79, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x84, 0x37, 0xDE, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, + 0x05, 0x62, 0x07, 0x89, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8F, 0x01, 0x10, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, + 0x05, 0x62, 0x07, 0x46, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEB, 0x01, 0x1A, 0x01, 0xA4, 0xFF, 0xFF, 0xFE, 0xA7, 0x00, 0x00, + 0x05, 0xF8, 0x05, 0xEA, 0x04, 0x27, 0x01, 0xD8, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x88, 0xFE, 0x7F, 0x00, 0x02, 0xFF, 0xFF, 0x00, 0x37, + 0x00, 0x00, 0x06, 0xF8, 0x05, 0xD2, 0x04, 0x27, 0x01, 0xD8, 0x01, 0x97, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x15, + 0xFE, 0x5B, 0x05, 0x62, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x96, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x46, + 0x00, 0x00, 0x04, 0xCC, 0x05, 0xD2, 0x00, 0x17, 0x00, 0x00, 0x73, 0x35, + 0x01, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x21, 0x35, 0x21, 0x15, + 0x01, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x21, 0x15, 0x46, 0x02, + 0xAA, 0x36, 0x75, 0x3C, 0x1E, 0x5D, 0xB9, 0x5C, 0xFD, 0xD5, 0x04, 0x6D, + 0xFD, 0x62, 0x38, 0x79, 0x3F, 0x1E, 0x5D, 0xB8, 0x5C, 0x02, 0x42, 0xC8, + 0x03, 0x6F, 0x45, 0x89, 0x45, 0x5A, 0x01, 0x01, 0xE4, 0xC8, 0xFC, 0x9E, + 0x48, 0x90, 0x48, 0x5A, 0x01, 0x01, 0xE4, 0xFF, 0xFF, 0x00, 0x46, 0x00, + 0x00, 0x04, 0xCC, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x01, 0xBE, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x46, 0x00, + 0x00, 0x04, 0xCC, 0x07, 0x8E, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x88, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x46, 0x00, + 0x00, 0x04, 0xCC, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8E, 0x00, 0xE3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x46, 0x00, + 0x00, 0x04, 0xCC, 0x07, 0x8C, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8D, 0x00, 0xE3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x46, 0xFE, + 0x38, 0x04, 0xCC, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x87, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x46, 0xFE, + 0x8F, 0x04, 0xCC, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0x00, 0xE6, 0xF9, 0x9B, 0x00, 0x02, 0x00, 0x46, 0xFE, + 0x5B, 0x04, 0xCC, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x27, 0x00, 0x00, 0x41, + 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x21, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x01, 0x35, 0x01, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, + 0x23, 0x21, 0x35, 0x21, 0x15, 0x01, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, + 0x33, 0x21, 0x15, 0x02, 0xEC, 0x11, 0x40, 0x18, 0x3C, 0x31, 0x01, 0x0A, + 0xA9, 0xA6, 0x2D, 0x4B, 0xFD, 0x41, 0x02, 0xAA, 0x36, 0x75, 0x3C, 0x1E, + 0x5D, 0xB9, 0x5C, 0xFD, 0xD5, 0x04, 0x6D, 0xFD, 0x62, 0x38, 0x79, 0x3F, + 0x1E, 0x5D, 0xB8, 0x5C, 0x02, 0x42, 0xFE, 0x5E, 0xD6, 0x01, 0x01, 0x2D, + 0x31, 0x70, 0x7D, 0x92, 0x96, 0x02, 0x01, 0xA3, 0xC8, 0x03, 0x6F, 0x45, + 0x89, 0x45, 0x5A, 0x01, 0x01, 0xE4, 0xC8, 0xFC, 0x9E, 0x48, 0x90, 0x48, + 0x5A, 0x01, 0x01, 0xE4, 0xFF, 0xFF, 0x00, 0x46, 0x00, 0x00, 0x04, 0xCC, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x68, + 0x00, 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x46, 0x00, 0x00, 0x04, 0xCC, + 0x05, 0xD2, 0x06, 0x06, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x46, + 0xFE, 0x5A, 0x04, 0xAB, 0x05, 0xD2, 0x00, 0x1D, 0x00, 0x00, 0x41, 0x22, + 0x2E, 0x04, 0x23, 0x23, 0x35, 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x1E, + 0x05, 0x33, 0x32, 0x36, 0x36, 0x37, 0x15, 0x06, 0x06, 0x04, 0x24, 0x57, + 0x86, 0x6F, 0x68, 0x73, 0x8D, 0x5D, 0xCA, 0x03, 0x02, 0xFC, 0xFB, 0x04, + 0x4A, 0xFC, 0xF7, 0x5F, 0x90, 0x71, 0x5E, 0x58, 0x60, 0x3A, 0x19, 0x22, + 0x22, 0x17, 0x1E, 0x46, 0xFE, 0x5A, 0x3D, 0x60, 0x6C, 0x60, 0x3D, 0xBB, + 0x04, 0x33, 0xE4, 0xBC, 0xFB, 0xBF, 0x08, 0x43, 0x5F, 0x65, 0x59, 0x38, + 0x01, 0x02, 0x02, 0xDA, 0x02, 0x04, 0x00, 0x02, 0x00, 0x47, 0xFF, 0xEE, + 0x03, 0xEE, 0x04, 0x42, 0x00, 0x27, 0x00, 0x39, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x3E, 0x02, 0x35, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x35, 0x0E, 0x03, 0x07, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, + 0x01, 0xB6, 0x6A, 0xA5, 0x60, 0x44, 0x75, 0x97, 0x51, 0x62, 0x74, 0x34, + 0x2E, 0x56, 0x3E, 0x3E, 0x5D, 0x38, 0x06, 0xF2, 0x0C, 0x77, 0xC8, 0x84, + 0x62, 0xA2, 0x76, 0x40, 0xF8, 0x06, 0x18, 0x52, 0x7A, 0x17, 0x52, 0x71, + 0x3B, 0x0C, 0x31, 0x42, 0x49, 0x24, 0x37, 0x5B, 0x37, 0x2E, 0x52, 0x12, + 0x48, 0x8F, 0x6A, 0x5B, 0x77, 0x47, 0x25, 0x08, 0x0B, 0x11, 0x22, 0x24, + 0x07, 0x30, 0x47, 0x28, 0x28, 0x44, 0x2B, 0x0B, 0x68, 0x96, 0x53, 0x2F, + 0x5C, 0x88, 0x59, 0xFD, 0x2A, 0x96, 0x2F, 0x4D, 0x2C, 0xBC, 0x3D, 0x65, + 0x3D, 0x77, 0x09, 0x0E, 0x0D, 0x0C, 0x05, 0x08, 0x23, 0x3E, 0x31, 0x2A, + 0x3D, 0x20, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xE8, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x61, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xE5, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0x80, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x07, 0x12, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x21, 0x00, 0x81, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0x38, 0x03, 0xEE, 0x05, 0xE5, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x29, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x07, 0x12, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x22, 0x00, 0x81, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x07, 0x13, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x4A, 0x00, 0x81, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x07, 0x05, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x23, 0x00, 0x7F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0x86, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0x86, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x47, 0xFF, 0xEE, 0x04, 0x25, 0x07, 0x13, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x00, 0x87, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x47, 0xFE, 0x38, 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0x86, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0x29, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, + 0x03, 0xEE, 0x07, 0x13, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x25, 0x00, 0x87, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, + 0x03, 0xEE, 0x07, 0x13, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x26, 0x00, 0x87, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, + 0x03, 0xEE, 0x07, 0x05, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x27, 0x00, 0x87, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3E, 0xFF, 0xEE, + 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEA, 0xE6, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, + 0x05, 0xE8, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, + 0xD8, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x06, 0xD4, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xD0, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xE9, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x2A, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0x38, 0x03, 0xEE, 0x04, 0x42, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x29, 0xF9, 0x6D, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x06, 0xD4, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE6, 0x01, 0x2B, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0x9C, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x0E, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xED, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, 0x86, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xA2, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x8A, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0x5C, 0x03, 0xFA, 0x04, 0x42, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5A, 0x02, 0x1D, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x06, 0x61, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xAB, 0x01, 0x96, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x06, 0x61, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x90, 0x00, 0xD5, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x07, 0x67, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1B, 0x00, 0xD5, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0x5C, 0x03, 0xFA, 0x06, 0x61, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x90, 0x00, 0xD5, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x5A, 0x02, 0x1D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, + 0xFD, 0xE8, 0x03, 0xEE, 0x04, 0x42, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x36, 0x00, 0xDB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, + 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xD6, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, + 0x00, 0x06, 0x06, 0xEC, 0x3A, 0x00, 0x00, 0x02, 0x00, 0x75, 0xFF, 0xEC, + 0x04, 0x1D, 0x04, 0x40, 0x00, 0x27, 0x00, 0x39, 0x00, 0x00, 0x41, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x0E, 0x02, 0x15, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, + 0x2E, 0x02, 0x35, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x17, 0x22, 0x06, + 0x06, 0x15, 0x15, 0x3E, 0x03, 0x37, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, + 0x02, 0xAD, 0x6A, 0xA6, 0x60, 0x45, 0x75, 0x96, 0x52, 0x61, 0x75, 0x33, + 0x2D, 0x57, 0x3D, 0x3F, 0x5C, 0x38, 0x06, 0xF2, 0x0B, 0x78, 0xC8, 0x84, + 0x62, 0xA2, 0x76, 0x40, 0xF9, 0x05, 0x19, 0x51, 0x7B, 0x16, 0x51, 0x72, + 0x3B, 0x0C, 0x31, 0x42, 0x49, 0x24, 0x37, 0x5C, 0x36, 0x2D, 0x52, 0x04, + 0x40, 0x48, 0x8E, 0x6B, 0x5B, 0x77, 0x47, 0x24, 0x09, 0x0B, 0x10, 0x22, + 0x25, 0x08, 0x2E, 0x48, 0x28, 0x28, 0x44, 0x2B, 0x0B, 0x67, 0x97, 0x53, + 0x2F, 0x5C, 0x88, 0x59, 0x02, 0xD6, 0x97, 0x30, 0x4C, 0x2D, 0xBC, 0x3D, + 0x65, 0x3D, 0x77, 0x08, 0x0F, 0x0D, 0x0C, 0x05, 0x08, 0x23, 0x3E, 0x30, + 0x2C, 0x3C, 0x20, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x04, + 0x42, 0x06, 0x06, 0x01, 0xFB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, + 0xEE, 0x03, 0xEE, 0x05, 0xE5, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8F, 0x00, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, + 0xEE, 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x8B, 0xD8, 0x00, 0x00, 0x01, 0x00, 0x47, 0xFF, 0xE8, 0x06, + 0xD9, 0x04, 0x44, 0x00, 0x54, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x3E, 0x02, 0x33, 0x21, 0x07, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x13, 0x3E, 0x02, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x15, 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x03, 0x23, 0x0E, + 0x03, 0x01, 0xCF, 0x79, 0xB0, 0x5F, 0x4C, 0x8D, 0xC0, 0x74, 0x03, 0xFB, + 0x69, 0x02, 0x3F, 0x76, 0x52, 0x51, 0x76, 0x41, 0x42, 0x7D, 0x56, 0x3E, + 0x61, 0x42, 0x0F, 0xEE, 0x14, 0x87, 0xCB, 0x7D, 0x6B, 0xAF, 0x7D, 0x20, + 0x04, 0x28, 0x7B, 0xA1, 0x64, 0x70, 0xB9, 0x88, 0x4A, 0xFB, 0x65, 0x50, + 0x73, 0x3D, 0x64, 0x53, 0x52, 0x71, 0x3A, 0x2E, 0x56, 0x3E, 0x3E, 0x5D, + 0x38, 0x06, 0xF2, 0x0C, 0x75, 0xC6, 0x82, 0x77, 0xAC, 0x5F, 0x05, 0x11, + 0x26, 0x18, 0x56, 0x71, 0x87, 0x11, 0x4C, 0x90, 0x64, 0x57, 0x80, 0x53, + 0x29, 0x31, 0x5B, 0x85, 0x4A, 0x4A, 0x83, 0x58, 0x70, 0x5F, 0x8B, 0x4C, + 0x25, 0x44, 0x2E, 0x07, 0x66, 0x9A, 0x58, 0x46, 0x7F, 0x54, 0x02, 0x32, + 0x54, 0x7A, 0x43, 0x4D, 0x91, 0xCC, 0x7F, 0x47, 0x26, 0x46, 0x32, 0x45, + 0x46, 0x3C, 0x65, 0x3D, 0x01, 0x55, 0x30, 0x47, 0x28, 0x28, 0x44, 0x2B, + 0x0B, 0x62, 0x97, 0x58, 0x52, 0x99, 0x6C, 0xFE, 0x06, 0x45, 0x62, 0x3E, + 0x1D, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xE8, 0x06, 0xD9, 0x05, 0xA2, 0x06, + 0x26, 0x02, 0x1F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0xD4, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xE8, 0x06, 0xD9, 0x05, 0xE8, 0x06, + 0x26, 0x02, 0x1F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0xAC, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xE8, 0x06, 0xD9, 0x04, 0x44, 0x06, + 0x06, 0x02, 0x1F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xEB, 0x04, + 0x4D, 0x04, 0x42, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, + 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, + 0x0E, 0x88, 0xCE, 0x74, 0x75, 0xCF, 0x86, 0x4B, 0x7B, 0x5C, 0x1E, 0x05, + 0xFA, 0xFA, 0x05, 0x1E, 0x5D, 0x79, 0x0D, 0x53, 0x79, 0x42, 0x41, 0x7A, + 0x53, 0x50, 0x76, 0x41, 0x41, 0x76, 0x15, 0x8A, 0xFA, 0xA8, 0xA8, 0xF9, + 0x8A, 0x2C, 0x4F, 0x35, 0x9C, 0xFB, 0xD2, 0xA3, 0x38, 0x53, 0x2D, 0xD3, + 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, 0x6D, 0x6C, 0x9A, 0x53, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE8, 0x06, 0x26, + 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x87, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE5, 0x06, 0x26, + 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xA6, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x07, 0x12, 0x06, 0x26, + 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x21, 0x00, 0xA6, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x38, 0x04, 0x4D, 0x05, 0xE5, 0x06, 0x26, + 0x02, 0x23, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x00, 0xA6, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x56, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEB, 0x04, 0x4D, 0x07, 0x12, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x22, 0x00, 0xA6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEB, 0x04, 0x4D, 0x07, 0x13, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x4A, 0x00, 0xA6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEB, 0x04, 0x4D, 0x07, 0x05, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x23, 0x00, 0xA5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEB, 0x04, 0x4D, 0x07, 0x13, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x24, 0x00, 0xAD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x38, 0x04, 0x4D, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x27, 0x0A, 0x8D, 0x00, 0xAC, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0x56, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, + 0x07, 0x13, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, + 0x00, 0xAD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, + 0x07, 0x13, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, + 0x00, 0xAD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, + 0x07, 0x05, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, + 0x00, 0xAD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, + 0x05, 0xE8, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEA, + 0x0C, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xFE, 0x00, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x06, 0xD4, 0x06, 0x26, + 0x02, 0x23, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xF6, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE9, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x50, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x38, 0x04, 0x4D, 0x04, 0x42, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x56, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x06, 0xD4, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE6, 0x01, 0x50, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xC2, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x34, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xED, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, 0xAC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xA2, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xB0, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x5C, 0x04, 0x59, 0x04, 0x42, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5A, 0x02, 0x7C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x06, 0x61, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xAB, 0x01, 0xBC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x06, 0x61, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x90, 0x00, 0xFB, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x07, 0x67, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1B, 0x00, 0xFB, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFD, 0xE8, 0x04, 0x4D, 0x04, 0x42, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x36, 0x01, 0x08, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xD6, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x60, 0x00, 0x00, 0x02, 0x00, 0x75, + 0xFF, 0xEB, 0x04, 0x7E, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x11, 0x33, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x02, 0xB4, 0x4A, 0x7B, 0x5C, 0x1F, 0x04, 0xFB, 0xFF, 0x04, + 0x1E, 0x5B, 0x7A, 0x4B, 0x86, 0xCE, 0x74, 0x73, 0xCE, 0xC7, 0x51, 0x75, + 0x41, 0x41, 0x75, 0x51, 0x53, 0x79, 0x42, 0x42, 0x7A, 0x15, 0x2E, 0x53, + 0x39, 0xA5, 0x05, 0xD2, 0xFD, 0xBE, 0x36, 0x50, 0x2C, 0x8A, 0xF9, 0xA8, + 0xA8, 0xFA, 0x8A, 0xD3, 0x53, 0x9A, 0x6C, 0x6D, 0x99, 0x52, 0x55, 0x9A, + 0x69, 0x68, 0x9B, 0x56, 0xFF, 0xFF, 0xFF, 0xE7, 0xFF, 0xEB, 0x04, 0x7E, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, + 0xFF, 0x77, 0x02, 0x0E, 0x00, 0x03, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x7E, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x2A, 0x00, 0x00, 0x53, 0x27, + 0x21, 0x15, 0x01, 0x22, 0x26, 0x26, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, + 0x11, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0xF8, 0x83, 0x03, 0x52, 0xFE, 0xED, 0x4A, 0x7B, + 0x5C, 0x1F, 0x04, 0xFB, 0xFF, 0x04, 0x1E, 0x5B, 0x7A, 0x4B, 0x86, 0xCE, + 0x74, 0x73, 0xCE, 0xC7, 0x51, 0x75, 0x41, 0x41, 0x75, 0x51, 0x53, 0x79, + 0x42, 0x42, 0x7A, 0x05, 0x04, 0xCE, 0xCE, 0xFA, 0xE7, 0x2E, 0x53, 0x39, + 0xA5, 0x05, 0xD2, 0xFD, 0xBE, 0x36, 0x50, 0x2C, 0x8A, 0xF9, 0xA8, 0xA8, + 0xFA, 0x8A, 0xD3, 0x53, 0x9A, 0x6C, 0x6D, 0x99, 0x52, 0x55, 0x9A, 0x69, + 0x68, 0x9B, 0x56, 0x00, 0x03, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x7D, 0x05, + 0xD5, 0x00, 0x16, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x15, 0x37, 0x3E, 0x02, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, + 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x11, 0x02, 0xB3, 0x4B, 0x7A, 0x5C, 0x1E, 0x06, 0xF9, 0xFD, + 0x05, 0x1E, 0x5B, 0x79, 0x4B, 0x87, 0xCE, 0x74, 0x73, 0xCE, 0xC6, 0x51, + 0x75, 0x41, 0x41, 0x75, 0x51, 0x53, 0x7A, 0x43, 0x43, 0x7A, 0xFE, 0x52, + 0xA8, 0xA6, 0x2D, 0x46, 0x1A, 0x12, 0x3F, 0x19, 0x3C, 0x36, 0x15, 0x2E, + 0x52, 0x38, 0xA3, 0x04, 0x2E, 0xA5, 0x02, 0x34, 0x4E, 0x2C, 0x88, 0xF7, + 0xA6, 0xA7, 0xF9, 0x89, 0xD2, 0x52, 0x9A, 0x6C, 0x6B, 0x99, 0x52, 0x55, + 0x9A, 0x67, 0x68, 0x9A, 0x56, 0x02, 0x94, 0x01, 0x5D, 0x92, 0x95, 0x02, + 0x01, 0xCD, 0x01, 0x01, 0x2E, 0x32, 0xFE, 0xAA, 0xFF, 0xFF, 0x00, 0x75, + 0xFF, 0xEB, 0x04, 0x7E, 0x06, 0xBF, 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xC8, 0x00, 0xD5, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0x38, 0x04, 0x7E, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x74, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0x8F, 0x04, 0x7E, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0x00, 0xD3, 0xF9, 0x9B, 0x00, 0x02, 0x00, 0x75, + 0xFE, 0x5E, 0x04, 0x7F, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x02, 0xB5, 0x4B, 0x78, 0x5B, 0x1E, 0x05, 0xFF, 0xFF, 0x05, + 0x1E, 0x5B, 0x79, 0x4B, 0x87, 0xCE, 0x74, 0x73, 0xCE, 0xC7, 0x51, 0x75, + 0x40, 0x40, 0x75, 0x51, 0x53, 0x7A, 0x42, 0x42, 0x7A, 0x15, 0x2E, 0x52, + 0x38, 0xFD, 0xBB, 0x07, 0x74, 0xFD, 0xC0, 0x35, 0x4F, 0x2C, 0x8A, 0xF9, + 0xA8, 0xA8, 0xFA, 0x8A, 0xD3, 0x53, 0x9A, 0x6C, 0x6D, 0x99, 0x52, 0x55, + 0x9A, 0x69, 0x68, 0x9B, 0x56, 0x00, 0x01, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x2D, 0x04, 0x44, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, + 0x17, 0x0E, 0x03, 0x02, 0x4D, 0x9C, 0xEB, 0x82, 0x82, 0xEB, 0x9C, 0x62, + 0xA6, 0x7F, 0x4E, 0x0B, 0xF7, 0x07, 0x26, 0x3B, 0x4E, 0x30, 0x55, 0x77, + 0x3E, 0x3E, 0x77, 0x55, 0x31, 0x4D, 0x39, 0x25, 0x09, 0xF8, 0x09, 0x4E, + 0x7F, 0xA8, 0x18, 0x8D, 0xFB, 0xA5, 0xA5, 0xFC, 0x8E, 0x39, 0x68, 0x8F, + 0x57, 0x0B, 0x2B, 0x46, 0x32, 0x1C, 0x57, 0x9C, 0x69, 0x68, 0x9C, 0x56, + 0x1B, 0x33, 0x48, 0x2C, 0x0B, 0x57, 0x8F, 0x6A, 0x3A, 0x00, 0x02, 0x00, + 0x44, 0xFE, 0x5E, 0x04, 0x2D, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x29, 0x00, + 0x00, 0x53, 0x01, 0x33, 0x01, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, + 0x03, 0xAC, 0x02, 0x94, 0x9C, 0xFD, 0x6D, 0x01, 0x04, 0x9C, 0xEB, 0x82, + 0x82, 0xEB, 0x9C, 0x62, 0xA6, 0x7F, 0x4E, 0x0B, 0xF7, 0x07, 0x26, 0x3B, + 0x4E, 0x30, 0x55, 0x77, 0x3E, 0x3E, 0x77, 0x55, 0x31, 0x4D, 0x39, 0x25, + 0x09, 0xF8, 0x09, 0x4E, 0x7F, 0xA8, 0xFE, 0x5E, 0x07, 0x74, 0xF8, 0x8C, + 0x01, 0x8A, 0x8D, 0xFB, 0xA5, 0xA5, 0xFC, 0x8E, 0x39, 0x68, 0x8F, 0x57, + 0x0B, 0x2B, 0x46, 0x32, 0x1C, 0x57, 0x9C, 0x69, 0x68, 0x9C, 0x56, 0x1B, + 0x33, 0x48, 0x2C, 0x0B, 0x57, 0x8F, 0x6A, 0x3A, 0x00, 0x02, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0xED, 0x04, 0xF9, 0x00, 0x0F, 0x00, 0x35, 0x00, 0x00, + 0x41, 0x03, 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x17, 0x13, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, + 0x03, 0x54, 0x18, 0x10, 0x94, 0xA7, 0x2B, 0x43, 0x18, 0x12, 0x40, 0x19, + 0x38, 0x2F, 0x04, 0x0E, 0xFE, 0x20, 0x9C, 0xEB, 0x82, 0x82, 0xEB, 0x9C, + 0x62, 0xA6, 0x7F, 0x4E, 0x0B, 0xF7, 0x07, 0x26, 0x3B, 0x4E, 0x30, 0x55, + 0x77, 0x3E, 0x3E, 0x77, 0x55, 0x31, 0x4D, 0x39, 0x25, 0x09, 0xF8, 0x09, + 0x4E, 0x7F, 0xA8, 0x02, 0xB9, 0x01, 0x12, 0x98, 0x96, 0x01, 0x01, 0xCE, + 0x01, 0x01, 0x30, 0x34, 0xFE, 0xF6, 0xFD, 0x2B, 0x8D, 0xFB, 0xA5, 0xA5, + 0xFC, 0x8E, 0x39, 0x68, 0x8F, 0x57, 0x0B, 0x2B, 0x46, 0x32, 0x1C, 0x57, + 0x9C, 0x69, 0x68, 0x9C, 0x56, 0x1B, 0x33, 0x48, 0x2C, 0x0B, 0x57, 0x8F, + 0x6A, 0x3A, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x5E, 0x04, 0x2D, 0x04, 0x44, + 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x10, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x83, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xA8, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x05, 0xE9, + 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x4C, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xA8, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x5E, 0x04, 0x2D, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x95, 0x01, 0x10, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x83, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x04, 0x44, 0x06, 0x06, 0x02, 0x4A, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x04, 0x44, + 0x06, 0x06, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xEB, + 0x04, 0x4E, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x02, 0x0F, 0x89, 0xCE, 0x74, 0x75, 0xCF, 0x85, 0x4C, 0x79, 0x5B, 0x1E, + 0x04, 0xFF, 0xFB, 0x05, 0x1E, 0x5C, 0x7A, 0x0D, 0x53, 0x79, 0x42, 0x42, + 0x79, 0x53, 0x50, 0x76, 0x41, 0x41, 0x76, 0x15, 0x8A, 0xFA, 0xA8, 0xA8, + 0xF9, 0x8A, 0x2C, 0x50, 0x36, 0x02, 0x42, 0xFA, 0x2E, 0xA5, 0x39, 0x53, + 0x2E, 0xD3, 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, 0x6D, 0x6C, + 0x9A, 0x53, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0xDB, 0x05, 0xD2, + 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0x01, 0xA1, + 0x02, 0x0E, 0x00, 0x03, 0x00, 0x44, 0xFE, 0x5B, 0x05, 0x24, 0x05, 0xD2, + 0x00, 0x0F, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, + 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x33, 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x04, 0x97, 0xA5, 0xA1, 0xFB, 0x33, 0x3C, 0x18, 0x40, 0x11, + 0x19, 0x46, 0xFD, 0x4A, 0x89, 0xCE, 0x74, 0x75, 0xCF, 0x85, 0x4C, 0x79, + 0x5B, 0x1E, 0x04, 0xFF, 0xFB, 0x05, 0x1E, 0x5C, 0x7A, 0x0D, 0x53, 0x79, + 0x42, 0x42, 0x79, 0x53, 0x50, 0x76, 0x41, 0x41, 0x76, 0xFE, 0x5B, 0x96, + 0x92, 0x01, 0x38, 0xFE, 0xCE, 0x32, 0x2D, 0x01, 0xCD, 0x01, 0x02, 0x01, + 0x90, 0x8A, 0xFA, 0xA8, 0xA8, 0xF9, 0x8A, 0x2C, 0x50, 0x36, 0x02, 0x42, + 0xFA, 0x2E, 0xA5, 0x39, 0x53, 0x2E, 0xD3, 0x56, 0x9B, 0x68, 0x69, 0x9A, + 0x55, 0x52, 0x99, 0x6D, 0x6C, 0x9A, 0x53, 0x00, 0x03, 0x00, 0x44, 0xFF, + 0xEB, 0x05, 0x29, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x36, 0x00, + 0x00, 0x41, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x11, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, + 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x4E, 0xA8, 0xA6, 0x2D, + 0x46, 0x1A, 0x12, 0x3F, 0x19, 0x3C, 0x36, 0xFD, 0xC1, 0x88, 0xCE, 0x74, + 0x75, 0xCF, 0x86, 0x4B, 0x7B, 0x5C, 0x1E, 0x05, 0xFA, 0xFA, 0x05, 0x1E, + 0x5D, 0x79, 0x0D, 0x53, 0x79, 0x42, 0x41, 0x7A, 0x53, 0x50, 0x76, 0x41, + 0x41, 0x76, 0x03, 0x51, 0x01, 0x5D, 0x92, 0x95, 0x02, 0x01, 0xCD, 0x01, + 0x01, 0x2E, 0x32, 0xFE, 0xAA, 0xFC, 0x9A, 0x8A, 0xFA, 0xA8, 0xA8, 0xF9, + 0x8A, 0x2C, 0x4F, 0x35, 0x9C, 0xFB, 0xD2, 0xA3, 0x38, 0x53, 0x2D, 0xD3, + 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, 0x6D, 0x6C, 0x9A, 0x53, + 0x00, 0x03, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4E, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x1A, 0x00, 0x2A, 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x01, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x03, 0xCB, 0xFD, 0x31, 0x03, 0x52, 0xFD, 0xC1, 0x89, 0xCE, 0x74, 0x75, + 0xCF, 0x85, 0x4C, 0x79, 0x5B, 0x1E, 0x04, 0xFF, 0xFB, 0x05, 0x1E, 0x5C, + 0x7A, 0x0D, 0x53, 0x79, 0x42, 0x42, 0x79, 0x53, 0x50, 0x76, 0x41, 0x41, + 0x76, 0x05, 0x04, 0xCE, 0xFA, 0x19, 0x8A, 0xFA, 0xA8, 0xA8, 0xF9, 0x8A, + 0x2C, 0x50, 0x36, 0x02, 0x42, 0xFA, 0x2E, 0xA5, 0x39, 0x53, 0x2E, 0xD3, + 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, 0x6D, 0x6C, 0x9A, 0x53, + 0x00, 0x03, 0x00, 0x44, 0xFE, 0x5E, 0x06, 0x12, 0x05, 0xD2, 0x00, 0x1F, + 0x00, 0x36, 0x00, 0x46, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, + 0x06, 0x06, 0x07, 0x01, 0x27, 0x25, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x33, 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x04, 0xBF, 0x83, 0xA3, 0x4B, 0xFE, 0x47, 0x30, + 0x2D, 0x39, 0x32, 0x2F, 0x21, 0x40, 0x46, 0x2C, 0xFE, 0xDE, 0x82, 0x01, + 0x0B, 0x48, 0xBA, 0x60, 0x99, 0xBB, 0xB2, 0xFC, 0xAF, 0x89, 0xCE, 0x74, + 0x75, 0xCF, 0x85, 0x4C, 0x79, 0x5B, 0x1E, 0x04, 0xFF, 0xFB, 0x05, 0x1E, + 0x5C, 0x7A, 0x0D, 0x53, 0x79, 0x42, 0x42, 0x79, 0x53, 0x50, 0x76, 0x41, + 0x41, 0x76, 0xFE, 0x5E, 0x5C, 0x9E, 0x62, 0x01, 0x27, 0xFE, 0xA6, 0x3D, + 0x3F, 0x35, 0x2A, 0x27, 0x35, 0x04, 0x04, 0x11, 0x2A, 0x23, 0xFF, 0x00, + 0x9A, 0xE9, 0x40, 0x4E, 0x9F, 0x7F, 0x79, 0x8C, 0x01, 0x8D, 0x8A, 0xFA, + 0xA8, 0xA8, 0xF9, 0x8A, 0x2C, 0x50, 0x36, 0x02, 0x42, 0xFA, 0x2E, 0xA5, + 0x39, 0x53, 0x2E, 0xD3, 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, + 0x6D, 0x6C, 0x9A, 0x53, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x05, 0xA6, + 0x06, 0x1C, 0x04, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x28, + 0x04, 0x3B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4E, + 0x06, 0xBF, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x00, 0xF9, 0x00, 0xD5, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x38, 0x04, 0x4E, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0x4E, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x8F, 0x04, 0x4E, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, + 0x00, 0xAE, 0xF9, 0x9B, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1C, 0x04, 0x4E, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, + 0x01, 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x3C, 0x04, 0x4E, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0x00, 0xAB, 0xF9, 0x79, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x08, 0x88, + 0x05, 0xD2, 0x04, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x03, 0xFC, + 0x04, 0xC3, 0x00, 0x00, 0x00, 0x03, 0x00, 0x44, 0xFF, 0xEB, 0x08, 0x29, + 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x22, 0x00, 0x32, 0x00, 0x00, 0x61, 0x35, + 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x21, 0x15, 0x05, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x04, 0xC9, 0x02, 0x27, 0xFD, 0x05, 0x04, 0x2B, 0xFD, 0xE6, 0x02, 0x23, + 0xF9, 0xE6, 0x89, 0xCE, 0x74, 0x75, 0xCF, 0x85, 0x4C, 0x79, 0x5B, 0x1E, + 0x04, 0xFF, 0xFB, 0x05, 0x1E, 0x5C, 0x7A, 0x0D, 0x53, 0x79, 0x42, 0x42, + 0x79, 0x53, 0x50, 0x76, 0x41, 0x41, 0x76, 0xAD, 0x02, 0xAC, 0x05, 0xD0, + 0xB7, 0xFD, 0x5D, 0x05, 0xCF, 0x15, 0x8A, 0xFA, 0xA8, 0xA8, 0xF9, 0x8A, + 0x2C, 0x50, 0x36, 0x02, 0x42, 0xFA, 0x2E, 0xA5, 0x39, 0x53, 0x2E, 0xD3, + 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, 0x6D, 0x6C, 0x9A, 0x53, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x08, 0x88, 0x05, 0xE8, 0x04, 0x26, + 0x02, 0x55, 0x00, 0x00, 0x00, 0x27, 0x03, 0xFC, 0x04, 0xC3, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8E, 0x05, 0x30, 0x00, 0x00, 0x00, 0x03, 0x00, 0x44, + 0xFE, 0x4E, 0x07, 0x98, 0x05, 0xD2, 0x00, 0x22, 0x00, 0x39, 0x00, 0x49, + 0x00, 0x00, 0x45, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, + 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x25, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x33, 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x04, 0x58, 0x0B, 0x4F, 0x75, 0x42, 0x58, 0x85, 0x4B, 0x4A, 0x8F, + 0x68, 0x77, 0x01, 0x4B, 0xFD, 0xCE, 0x03, 0x71, 0xFE, 0x67, 0x96, 0xCE, + 0x6A, 0x91, 0xFC, 0xA1, 0x90, 0xE4, 0x8F, 0x11, 0xFE, 0xB9, 0x89, 0xCE, + 0x74, 0x75, 0xCF, 0x85, 0x4C, 0x79, 0x5B, 0x1E, 0x04, 0xFF, 0xFB, 0x05, + 0x1E, 0x5C, 0x7A, 0x0D, 0x53, 0x79, 0x42, 0x42, 0x79, 0x53, 0x50, 0x76, + 0x41, 0x41, 0x76, 0x4D, 0x2E, 0x42, 0x23, 0x3D, 0x71, 0x4B, 0x4C, 0x70, + 0x3D, 0xD0, 0x01, 0x69, 0x04, 0xDF, 0xBE, 0xFE, 0x4F, 0x04, 0x0C, 0x7A, + 0xBA, 0x6E, 0x84, 0xCA, 0x71, 0x5A, 0xA1, 0x6A, 0x38, 0x8A, 0xFA, 0xA8, + 0xA8, 0xF9, 0x8A, 0x2C, 0x50, 0x36, 0x02, 0x42, 0xFA, 0x2E, 0xA5, 0x39, + 0x53, 0x2E, 0xD3, 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, 0x6D, + 0x6C, 0x9A, 0x53, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x67, 0x04, 0xDB, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0x01, + 0xA1, 0x02, 0x0E, 0x00, 0x07, 0x06, 0x05, 0x00, 0x7C, 0xFF, 0x35, 0x00, + 0x01, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x04, 0x44, 0x00, 0x27, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x15, 0x15, 0x21, 0x35, 0x21, 0x07, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, + 0x17, 0x0E, 0x02, 0x02, 0x4E, 0xA0, 0xEB, 0x7F, 0x82, 0xE6, 0x96, 0x70, + 0xB9, 0x88, 0x4B, 0xFC, 0x70, 0x03, 0x10, 0x72, 0x3F, 0x76, 0x52, 0x51, + 0x76, 0x40, 0x42, 0x7C, 0x57, 0x3E, 0x61, 0x42, 0x0F, 0xED, 0x16, 0x86, + 0xCA, 0x18, 0x8E, 0xFB, 0xA3, 0xA4, 0xFC, 0x90, 0x4D, 0x91, 0xCC, 0x7F, + 0x47, 0xAE, 0x30, 0x5B, 0x85, 0x49, 0x4A, 0x83, 0x58, 0x70, 0x5E, 0x8C, + 0x4C, 0x25, 0x44, 0x2D, 0x0B, 0x64, 0x99, 0x56, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x8B, 0xEE, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFE, 0x5E, + 0x04, 0x3E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x2B, 0x00, 0x00, 0x53, 0x01, + 0x33, 0x01, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x15, 0x21, 0x35, 0x21, 0x07, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x37, 0x17, 0x0E, 0x02, 0xA2, 0x02, 0xBB, 0x89, 0xFD, 0x46, 0x01, 0x22, + 0xA0, 0xEB, 0x7F, 0x82, 0xE6, 0x96, 0x70, 0xB9, 0x88, 0x4B, 0xFC, 0x70, + 0x03, 0x10, 0x72, 0x3F, 0x76, 0x52, 0x51, 0x76, 0x40, 0x42, 0x7C, 0x57, + 0x3E, 0x61, 0x42, 0x0F, 0xED, 0x16, 0x86, 0xCA, 0xFE, 0x5E, 0x07, 0x74, + 0xF8, 0x8C, 0x01, 0x8A, 0x8E, 0xFB, 0xA3, 0xA4, 0xFC, 0x90, 0x4D, 0x91, + 0xCC, 0x7F, 0x47, 0xAE, 0x30, 0x5B, 0x85, 0x49, 0x4A, 0x83, 0x58, 0x70, + 0x5E, 0x8C, 0x4C, 0x25, 0x44, 0x2D, 0x0B, 0x64, 0x99, 0x56, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xB2, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x77, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xA2, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE5, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0x96, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE9, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x40, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x5B, 0x04, 0x3E, 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5B, 0x01, 0xFA, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x06, 0x06, 0xEA, 0xFC, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xED, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xF8, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x5E, 0x04, 0x3E, 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x95, 0x01, 0x0A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x3E, 0x07, 0x26, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x54, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x3E, 0x07, 0x26, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xB8, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x3C, 0x04, 0x3E, 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8D, 0x00, 0x9D, 0xF9, 0x79, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x53, 0x04, 0x3E, 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEC, 0x00, 0x50, 0xF9, 0x75, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x5E, 0x04, 0x3E, 0x05, 0xE5, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x27, 0x0A, 0x95, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, + 0x00, 0x96, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x38, 0x04, 0x3E, + 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0x40, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, + 0x05, 0xE8, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, + 0x01, 0x24, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, + 0x05, 0xD6, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, + 0x50, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x07, 0x13, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x00, 0x9D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x07, 0x13, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, 0x00, 0x9D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x07, 0x13, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, 0x00, 0x9D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x07, 0x05, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, 0x00, 0x9D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x38, 0x04, 0x3E, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0x9C, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x40, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x04, 0x44, 0x06, 0x06, 0x02, 0x66, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xB2, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xEE, 0x00, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xE5, 0x06, 0x26, + 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x40, 0xFF, 0xEA, 0x04, 0x3A, 0x04, 0x45, 0x00, 0x27, + 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, + 0x2E, 0x02, 0x35, 0x35, 0x21, 0x15, 0x21, 0x37, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x07, 0x27, 0x3E, 0x02, 0x02, 0x30, 0xA1, 0xEA, 0x7F, 0x81, 0xE6, 0x97, + 0x6F, 0xBA, 0x88, 0x4B, 0x03, 0x90, 0xFC, 0xF0, 0x72, 0x40, 0x75, 0x52, + 0x51, 0x76, 0x40, 0x42, 0x7B, 0x58, 0x3E, 0x61, 0x42, 0x0F, 0xED, 0x16, + 0x86, 0xCA, 0x04, 0x45, 0x8D, 0xFB, 0xA4, 0xA2, 0xFE, 0x8F, 0x4D, 0x91, + 0xCC, 0x7F, 0x47, 0xAE, 0x30, 0x5A, 0x86, 0x49, 0x49, 0x85, 0x56, 0x71, + 0x5F, 0x8B, 0x4C, 0x25, 0x44, 0x2E, 0x0B, 0x65, 0x98, 0x56, 0x00, 0x01, + 0x00, 0xC2, 0x00, 0x00, 0x02, 0xA8, 0x05, 0xE2, 0x00, 0x10, 0x00, 0x00, + 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x11, 0xC2, 0x4E, 0x93, 0x66, 0x34, 0x59, 0x12, + 0x0C, 0x0C, 0x3D, 0x18, 0x42, 0x38, 0x04, 0xBD, 0x60, 0x82, 0x43, 0x05, + 0x02, 0xCB, 0x01, 0x03, 0x3B, 0x41, 0xFB, 0x68, 0x00, 0x02, 0x00, 0x12, + 0x00, 0x00, 0x02, 0xB9, 0x05, 0xE2, 0x00, 0x03, 0x00, 0x14, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x02, 0xAE, 0xFD, + 0x64, 0xC1, 0x4E, 0x93, 0x66, 0x34, 0x59, 0x12, 0x0C, 0x0D, 0x3D, 0x18, + 0x42, 0x38, 0x04, 0x2E, 0xCB, 0xCB, 0xFB, 0xD2, 0x04, 0xBD, 0x60, 0x82, + 0x43, 0x05, 0x02, 0xCB, 0x01, 0x03, 0x3B, 0x41, 0xFB, 0x68, 0x00, 0x02, + 0x00, 0x75, 0x00, 0x00, 0x02, 0x5B, 0x05, 0xE2, 0x00, 0x03, 0x00, 0x14, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x03, 0x11, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x02, + 0x51, 0xFE, 0x99, 0x75, 0x4F, 0x92, 0x66, 0x34, 0x5A, 0x11, 0x0C, 0x0C, + 0x3D, 0x18, 0x42, 0x38, 0x04, 0x2E, 0xCB, 0xCB, 0xFB, 0xD2, 0x04, 0xBD, + 0x60, 0x82, 0x43, 0x05, 0x02, 0xCB, 0x01, 0x03, 0x3B, 0x41, 0xFB, 0x68, + 0x00, 0x02, 0x00, 0x12, 0x00, 0x00, 0x03, 0x89, 0x05, 0xE2, 0x00, 0x10, + 0x00, 0x14, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x01, 0x35, 0x21, + 0x15, 0xD3, 0x4E, 0x92, 0x67, 0x1A, 0x32, 0x19, 0x04, 0x0B, 0x19, 0x0C, + 0x42, 0x38, 0xFE, 0x41, 0x03, 0x77, 0x04, 0xBD, 0x60, 0x82, 0x43, 0x02, + 0x01, 0xCD, 0x01, 0x01, 0x3B, 0x41, 0xFB, 0x68, 0x03, 0x63, 0xCB, 0xCB, + 0x00, 0x02, 0x00, 0x75, 0x00, 0x00, 0x03, 0x43, 0x05, 0xE2, 0x00, 0x10, + 0x00, 0x14, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x03, 0x35, 0x21, + 0x15, 0x75, 0x4F, 0x92, 0x66, 0x1B, 0x32, 0x19, 0x04, 0x0C, 0x18, 0x0C, + 0x42, 0x38, 0x85, 0x02, 0x54, 0x04, 0xBD, 0x60, 0x82, 0x43, 0x02, 0x01, + 0xCD, 0x01, 0x01, 0x3B, 0x41, 0xFB, 0x68, 0x03, 0x63, 0xCB, 0xCB, 0xFF, + 0xFF, 0x00, 0x75, 0x00, 0x00, 0x02, 0x5B, 0x07, 0x9B, 0x06, 0x26, 0x02, + 0x88, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x3A, 0x01, 0xB2, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x5B, 0x06, 0x04, 0x05, 0xE2, 0x04, 0x26, 0x02, + 0x88, 0x00, 0x00, 0x00, 0x07, 0x03, 0x08, 0x01, 0xD3, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0x00, 0x00, 0x02, 0x5B, 0x05, 0xE2, 0x04, 0x06, 0x02, + 0x86, 0xB3, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0x00, 0x00, 0x02, 0xA8, 0x05, + 0xE2, 0x06, 0x26, 0x02, 0x86, 0x00, 0x00, 0x00, 0x06, 0x0B, 0x6A, 0x28, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x02, 0x5B, 0x07, 0x9B, 0x04, + 0x26, 0x02, 0x86, 0xB3, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x3A, 0x01, + 0xB2, 0xFF, 0xFF, 0x00, 0x12, 0x00, 0x00, 0x02, 0xB9, 0x07, 0x9B, 0x06, + 0x26, 0x02, 0x87, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x98, 0x01, + 0xB2, 0xFF, 0xFF, 0x00, 0x12, 0xFE, 0x5B, 0x06, 0x61, 0x05, 0xE2, 0x04, + 0x26, 0x02, 0x87, 0x00, 0x00, 0x00, 0x07, 0x03, 0x08, 0x02, 0x2F, 0x00, + 0x00, 0x00, 0x02, 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x04, 0x42, 0x00, + 0x25, 0x00, 0x35, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x35, 0x35, 0x23, 0x0E, 0x02, 0x23, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, + 0x33, 0x11, 0x14, 0x06, 0x06, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x55, 0x8A, + 0xCA, 0x79, 0x12, 0xF2, 0x0D, 0x40, 0x60, 0x40, 0x77, 0x86, 0x05, 0x1F, + 0x5B, 0x79, 0x4C, 0x87, 0xCF, 0x74, 0x75, 0xCF, 0x86, 0x4B, 0x7A, 0x5D, + 0x1F, 0x04, 0xFB, 0x83, 0xE5, 0x99, 0x53, 0x79, 0x42, 0x41, 0x7A, 0x53, + 0x50, 0x76, 0x41, 0x41, 0x76, 0xFE, 0x4E, 0x4E, 0x8F, 0x60, 0x12, 0x2A, + 0x3F, 0x23, 0x7D, 0x78, 0xAD, 0x39, 0x51, 0x2B, 0x86, 0xF4, 0xA3, 0xA6, + 0xF8, 0x89, 0x2D, 0x52, 0x38, 0xA3, 0xFB, 0xE7, 0xA1, 0xC8, 0x5E, 0x02, + 0x80, 0x52, 0x98, 0x66, 0x67, 0x98, 0x54, 0x51, 0x97, 0x6B, 0x6A, 0x97, + 0x4F, 0x00, 0x03, 0x00, 0x44, 0xFE, 0x4E, 0x05, 0x2A, 0x05, 0xD5, 0x00, + 0x0F, 0x00, 0x35, 0x00, 0x45, 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x01, + 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x35, 0x35, + 0x23, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x11, 0x14, 0x06, 0x06, 0x03, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x03, 0x50, 0xA8, 0xA5, 0x2D, 0x46, 0x1A, 0x12, 0x3F, + 0x18, 0x3D, 0x36, 0xFE, 0x07, 0x8A, 0xCA, 0x79, 0x12, 0xF2, 0x0D, 0x40, + 0x60, 0x40, 0x77, 0x86, 0x05, 0x1F, 0x5B, 0x79, 0x4C, 0x87, 0xCF, 0x74, + 0x75, 0xCF, 0x86, 0x4B, 0x7A, 0x5D, 0x1F, 0x04, 0xFB, 0x83, 0xE5, 0x99, + 0x53, 0x79, 0x42, 0x41, 0x7A, 0x53, 0x50, 0x76, 0x41, 0x41, 0x76, 0x03, + 0x51, 0x01, 0x5D, 0x92, 0x95, 0x02, 0x01, 0xCD, 0x01, 0x01, 0x2E, 0x32, + 0xFE, 0xAA, 0xFA, 0xFD, 0x4E, 0x8F, 0x60, 0x12, 0x2A, 0x3F, 0x23, 0x7D, + 0x78, 0xAD, 0x39, 0x51, 0x2B, 0x86, 0xF4, 0xA3, 0xA6, 0xF8, 0x89, 0x2D, + 0x52, 0x38, 0xA3, 0xFB, 0xE7, 0xA1, 0xC8, 0x5E, 0x02, 0x80, 0x52, 0x98, + 0x66, 0x67, 0x98, 0x54, 0x51, 0x97, 0x6B, 0x6A, 0x97, 0x4F, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x05, 0x19, 0x04, 0x42, 0x04, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x39, 0x02, 0x5F, 0xFF, 0x4C, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xA6, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x05, 0xE5, 0x06, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x05, 0xE9, 0x06, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x4B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x06, 0x73, 0x06, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x6D, 0x01, 0x5C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xA6, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x05, 0xE8, 0x06, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x81, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x05, 0xA2, 0x06, 0x26, 0x02, 0x92, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xAA, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x30, 0xFF, 0xEF, 0x04, 0x15, 0x04, 0x3E, 0x00, 0x24, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x17, 0x21, 0x35, 0x21, 0x15, 0x14, 0x06, 0x06, + 0x02, 0x35, 0x99, 0xEA, 0x82, 0x88, 0xE9, 0x91, 0x7B, 0xCD, 0x84, 0x0D, + 0xF9, 0x0C, 0x3B, 0x59, 0x3A, 0x53, 0x7A, 0x42, 0x41, 0x7A, 0x56, 0x6B, + 0x80, 0x35, 0xFE, 0xF0, 0x01, 0xCB, 0x7C, 0xD8, 0x11, 0x89, 0xF7, 0xA7, + 0xAD, 0xF7, 0x84, 0x5D, 0xA7, 0x71, 0x32, 0x46, 0x25, 0x51, 0x95, 0x69, + 0x68, 0x96, 0x51, 0x6F, 0x5A, 0x05, 0xB8, 0x91, 0x88, 0xCB, 0x71, 0x00, + 0x02, 0x00, 0x30, 0xFF, 0xEF, 0x04, 0xBB, 0x04, 0xEF, 0x00, 0x10, 0x00, + 0x35, 0x00, 0x00, 0x41, 0x27, 0x26, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x15, 0x26, 0x22, 0x23, 0x22, 0x06, 0x17, 0x17, 0x01, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x2E, 0x02, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x17, 0x21, 0x35, 0x21, 0x15, 0x14, 0x06, 0x06, 0x03, 0x52, 0x18, 0x0B, + 0x31, 0x80, 0x6A, 0x24, 0x33, 0x1A, 0x11, 0x2C, 0x10, 0x3D, 0x30, 0x07, + 0x03, 0xFE, 0x2A, 0x99, 0xEA, 0x82, 0x88, 0xE9, 0x91, 0x7B, 0xCD, 0x84, + 0x0D, 0xF9, 0x0C, 0x3B, 0x59, 0x3A, 0x53, 0x7A, 0x42, 0x41, 0x7A, 0x56, + 0x6B, 0x80, 0x35, 0xFE, 0xF0, 0x01, 0xCB, 0x7C, 0xD8, 0x02, 0xC9, 0xF5, + 0x60, 0x89, 0x48, 0x02, 0x01, 0xCD, 0x01, 0x3A, 0x45, 0xD8, 0xFD, 0x26, + 0x89, 0xF7, 0xA7, 0xAD, 0xF7, 0x84, 0x5D, 0xA7, 0x71, 0x32, 0x46, 0x25, + 0x51, 0x95, 0x69, 0x68, 0x96, 0x51, 0x6F, 0x5A, 0x05, 0xB8, 0x91, 0x88, + 0xCB, 0x71, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x04, 0x31, 0x05, 0xD2, + 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x11, 0x23, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x01, 0x74, 0xFF, 0xFE, 0x30, 0x32, 0xB9, 0x89, 0x70, + 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, 0x02, 0x62, 0xFD, 0x9E, + 0x05, 0xD2, 0xFD, 0x4D, 0x8E, 0x95, 0x61, 0xBA, 0x88, 0xFD, 0x61, 0x02, + 0x77, 0x74, 0x79, 0x37, 0x73, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x04, + 0x31, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x95, 0xB7, 0x00, 0xFF, 0xFF, 0xFF, 0xE5, 0x00, 0x00, 0x04, 0x31, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, + 0x76, 0x02, 0x0E, 0x00, 0x03, 0xFF, 0xE5, 0xFE, 0x5B, 0x04, 0x31, 0x05, + 0xD2, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x2A, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x27, 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, + 0x06, 0x01, 0x11, 0x23, 0x11, 0x33, 0x11, 0x23, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x01, 0x35, 0x21, 0x15, 0x02, 0xEA, 0x2D, 0x49, 0x19, 0x11, 0x40, 0x18, + 0x3C, 0x33, 0xFE, 0xA2, 0xFD, 0xE5, 0xFF, 0xFE, 0x30, 0x32, 0xB9, 0x89, + 0x70, 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, 0xFE, 0x71, 0x02, + 0xCB, 0xFE, 0x5B, 0x02, 0x01, 0xCD, 0x01, 0x2D, 0x32, 0x77, 0x7D, 0x92, + 0x96, 0x04, 0x07, 0xFD, 0x9E, 0x05, 0xD2, 0xFD, 0x4D, 0x8E, 0x95, 0x61, + 0xBA, 0x88, 0xFD, 0x61, 0x02, 0x77, 0x74, 0x79, 0x37, 0x73, 0x01, 0xE8, + 0xAA, 0xAA, 0x00, 0x02, 0x00, 0x75, 0x00, 0x00, 0x04, 0x31, 0x05, 0xD5, + 0x00, 0x0F, 0x00, 0x26, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x15, 0x11, + 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x75, 0xA8, 0xA6, + 0x2D, 0x46, 0x1A, 0x12, 0x3F, 0x19, 0x3C, 0x36, 0xFF, 0xF8, 0x01, 0x2B, + 0x32, 0xB9, 0x89, 0x70, 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, + 0x03, 0x51, 0x01, 0x5D, 0x92, 0x95, 0x02, 0x01, 0xCD, 0x01, 0x01, 0x2E, + 0x32, 0xFE, 0xAA, 0xEF, 0xFD, 0x9E, 0x04, 0x2E, 0xFE, 0xF1, 0x8E, 0x95, + 0x61, 0xBA, 0x88, 0xFD, 0x61, 0x02, 0x77, 0x74, 0x79, 0x37, 0x73, 0x00, + 0x03, 0x00, 0x75, 0xFE, 0x5B, 0x04, 0x31, 0x05, 0xD5, 0x00, 0x0F, 0x00, + 0x1F, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x35, 0x16, 0x32, + 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x01, 0x11, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x11, 0x15, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x02, 0xEA, 0x2D, 0x49, 0x19, 0x11, 0x40, 0x18, 0x3C, 0x33, 0xFE, 0xA2, + 0xFC, 0xE6, 0xA8, 0xA6, 0x2D, 0x46, 0x1A, 0x12, 0x3F, 0x19, 0x3C, 0x36, + 0xFF, 0xF8, 0x01, 0x2B, 0x32, 0xB9, 0x89, 0x70, 0xAA, 0x60, 0xFE, 0x71, + 0x66, 0x42, 0x6A, 0x3C, 0xFE, 0x5B, 0x02, 0x01, 0xCD, 0x01, 0x2D, 0x32, + 0x77, 0x7D, 0x92, 0x96, 0x04, 0xF6, 0x01, 0x5D, 0x92, 0x95, 0x02, 0x01, + 0xCD, 0x01, 0x01, 0x2E, 0x32, 0xFE, 0xAA, 0xEF, 0xFD, 0x9E, 0x04, 0x2E, + 0xFE, 0xF1, 0x8E, 0x95, 0x61, 0xBA, 0x88, 0xFD, 0x61, 0x02, 0x77, 0x74, + 0x79, 0x37, 0x73, 0x00, 0x01, 0x00, 0x75, 0xFF, 0xEB, 0x07, 0x1D, 0x05, + 0xD2, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x12, 0x11, 0x35, 0x33, 0x15, 0x10, 0x02, 0x06, 0x04, 0xE9, + 0x7F, 0xBD, 0x68, 0x79, 0x67, 0x44, 0x6D, 0x40, 0xFF, 0xFE, 0x05, 0x25, + 0xA2, 0x7C, 0x70, 0xB1, 0x68, 0x36, 0x53, 0x28, 0x58, 0x85, 0x4C, 0xFF, + 0x84, 0xFB, 0x15, 0x68, 0xCC, 0x97, 0xC3, 0x74, 0x7C, 0x38, 0x72, 0x56, + 0xFD, 0x97, 0x05, 0xD2, 0xFD, 0xA5, 0x59, 0x72, 0x62, 0xBB, 0x86, 0xE9, + 0x61, 0x69, 0x28, 0xA4, 0x01, 0x5B, 0x01, 0x14, 0x57, 0x57, 0xFE, 0xA1, + 0xFE, 0x45, 0xD2, 0x00, 0x01, 0x00, 0x75, 0xFE, 0x5C, 0x04, 0x31, 0x04, + 0x2E, 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x23, 0x11, 0x33, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x03, 0x33, 0xFE, 0xFD, 0x2F, 0x32, 0xB8, 0x8A, + 0x6F, 0xAB, 0x60, 0xFF, 0x71, 0x65, 0x43, 0x69, 0x3D, 0x01, 0xCC, 0x02, + 0x62, 0xFA, 0x2E, 0x02, 0xB2, 0x8D, 0x95, 0x61, 0xBB, 0x87, 0x02, 0x9F, + 0xFD, 0x89, 0x73, 0x7A, 0x37, 0x73, 0x00, 0x01, 0x00, 0x12, 0xFE, 0x5E, + 0x04, 0xB1, 0x04, 0x31, 0x00, 0x25, 0x00, 0x00, 0x41, 0x11, 0x33, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x22, 0x23, 0x35, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x03, 0xB4, 0x2F, + 0x32, 0xB8, 0x8A, 0x6F, 0xAB, 0x5F, 0x46, 0x49, 0x0B, 0x20, 0x20, 0x0A, + 0x1C, 0x47, 0x22, 0x52, 0x80, 0x5B, 0x30, 0x71, 0x65, 0x43, 0x69, 0x3D, + 0xFE, 0xFE, 0x5E, 0x02, 0xB0, 0x8D, 0x95, 0x61, 0xBB, 0x87, 0x01, 0x60, + 0x43, 0x33, 0x01, 0xCB, 0x01, 0x01, 0x25, 0x4C, 0x72, 0x4D, 0xFE, 0xB6, + 0x73, 0x7A, 0x37, 0x73, 0x58, 0x02, 0x62, 0xFA, 0x30, 0x00, 0x01, 0x00, + 0x12, 0xFE, 0x5B, 0x05, 0x8A, 0x04, 0x31, 0x00, 0x32, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x35, 0x11, 0x33, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, + 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x22, 0x23, 0x35, 0x36, 0x36, 0x33, + 0x32, 0x1E, 0x02, 0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x0E, 0x02, + 0x04, 0xE4, 0x95, 0x9B, 0x2F, 0x32, 0xB8, 0x8A, 0x6F, 0xAB, 0x5F, 0x46, + 0x49, 0x0B, 0x20, 0x20, 0x0A, 0x1C, 0x47, 0x22, 0x52, 0x80, 0x5B, 0x30, + 0x71, 0x65, 0x43, 0x69, 0x3D, 0xFE, 0x31, 0x39, 0x18, 0x46, 0x11, 0x11, + 0x37, 0x40, 0xFE, 0x5B, 0x8F, 0x87, 0x01, 0x9D, 0x8D, 0x95, 0x61, 0xBB, + 0x87, 0x01, 0x60, 0x43, 0x33, 0x01, 0xCB, 0x01, 0x01, 0x25, 0x4C, 0x72, + 0x4D, 0xFE, 0xB6, 0x73, 0x7A, 0x37, 0x73, 0x58, 0x02, 0x62, 0xFB, 0x52, + 0x2E, 0x2B, 0x01, 0xCA, 0x01, 0x01, 0x01, 0xFF, 0xFF, 0xFF, 0xE5, 0x00, + 0x00, 0x04, 0x31, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x61, 0xFF, 0x76, 0x02, 0x0E, 0xFF, 0xFF, 0xFF, 0x92, 0x00, + 0x00, 0x04, 0x31, 0x07, 0x8C, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8D, 0xFF, 0x4F, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0x92, 0x00, + 0x00, 0x04, 0x31, 0x07, 0x8C, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8E, 0xFF, 0x4F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x5D, 0x00, + 0x00, 0x04, 0x31, 0x07, 0x8E, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0xFF, 0xF3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x38, 0x04, 0x31, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x53, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0x89, 0x00, + 0x00, 0x04, 0x31, 0x07, 0x8C, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8B, 0xFE, 0xA1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x36, 0x04, 0x31, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8F, 0x00, 0xA9, 0xF9, 0x7D, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x8F, 0x04, 0x31, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0x00, 0xB2, 0xF9, 0x9B, 0xFF, 0xFF, 0x00, 0x75, 0x00, + 0x00, 0x04, 0x31, 0x05, 0xD2, 0x06, 0x06, 0x02, 0x9E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x5D, 0x00, 0x00, 0x01, 0x8C, 0x05, 0xE9, 0x06, 0x26, 0x02, + 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xF4, 0x00, 0x00, 0x01, 0x00, + 0x75, 0x00, 0x00, 0x01, 0x74, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x00, 0x73, + 0x11, 0x33, 0x11, 0x75, 0xFF, 0x04, 0x2E, 0xFB, 0xD2, 0xFF, 0xFF, 0x00, + 0x75, 0x00, 0x00, 0x03, 0x5D, 0x04, 0x2E, 0x04, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x02, 0xB2, 0x01, 0xE9, 0x00, 0x00, 0xFF, 0xFF, 0xFF, + 0x8A, 0x00, 0x00, 0x02, 0x60, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0xFF, + 0x82, 0x00, 0x00, 0x02, 0x58, 0x07, 0x26, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xE4, 0xFE, 0x9A, 0x00, 0x00, 0xFF, 0xFF, 0xFF, + 0xAF, 0x00, 0x00, 0x02, 0x3B, 0x05, 0xD6, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFF, 0x04, 0x00, 0x00, 0xFF, 0xFF, 0xFF, + 0xAF, 0xFE, 0x53, 0x02, 0x3C, 0x05, 0xE9, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xF4, 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFF, + 0x04, 0xF9, 0x75, 0xFF, 0xFF, 0xFF, 0xAF, 0xFE, 0x53, 0x02, 0x3C, 0x04, + 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFF, + 0x04, 0xF9, 0x75, 0xFF, 0xFF, 0xFF, 0x8F, 0x00, 0x00, 0x02, 0x5A, 0x05, + 0xE9, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xF4, + 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x20, 0xFF, 0x6A, 0xFF, 0xFF, 0xFF, + 0xBD, 0x00, 0x00, 0x01, 0x74, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0xFF, 0x66, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0x00, 0x00, 0x02, 0x2B, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x06, 0x06, 0xE8, 0x2B, 0x00, 0xFF, 0xFF, 0xFF, 0x93, 0x00, + 0x00, 0x02, 0x56, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8D, 0xFF, 0x4F, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xD8, 0x00, + 0x00, 0x02, 0x11, 0x05, 0xA2, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0xFF, 0x53, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xB0, 0x00, + 0x00, 0x02, 0x39, 0x05, 0xE5, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8F, 0xFF, 0x49, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xEB, 0xFE, + 0x5B, 0x01, 0x80, 0x04, 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x96, 0xA3, 0x00, 0xFF, 0xFF, 0xFF, 0xEB, 0xFE, 0x5B, 0x01, + 0x8C, 0x05, 0xE9, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, + 0x96, 0xA3, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xF4, 0x00, 0xFF, 0xFF, 0xFF, + 0x93, 0x00, 0x00, 0x02, 0x56, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, 0x4F, 0x00, 0x00, 0xFF, 0xFF, 0xFF, + 0x07, 0x00, 0x00, 0x02, 0x02, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEA, 0xFE, 0xB0, 0x00, 0x00, 0xFF, 0xFF, 0xFF, + 0xAE, 0x00, 0x00, 0x02, 0x3B, 0x05, 0xED, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF8, 0xFF, 0x50, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x3F, 0x00, 0x00, 0x01, 0xA2, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0x91, 0xD7, 0x00, 0xFF, 0xFF, 0x00, 0x5D, 0xFE, + 0x38, 0x01, 0x8C, 0x05, 0xE9, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, + 0x26, 0x0A, 0x8C, 0xF4, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0xFF, 0xF4, 0xF9, + 0x6D, 0xFF, 0xFF, 0x00, 0x5E, 0xFE, 0x38, 0x01, 0x8C, 0x04, 0x2E, 0x06, + 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0xFF, 0xF4, 0xF9, + 0x6D, 0x00, 0x01, 0xFF, 0xC3, 0xFE, 0x5E, 0x01, 0x75, 0x04, 0x2E, 0x00, + 0x0C, 0x00, 0x00, 0x53, 0x33, 0x11, 0x16, 0x06, 0x06, 0x23, 0x23, 0x35, + 0x33, 0x32, 0x36, 0x35, 0x76, 0xFE, 0x01, 0x4F, 0x99, 0x6F, 0x5B, 0x3A, + 0x40, 0x39, 0x04, 0x2E, 0xFB, 0x6F, 0x64, 0x8F, 0x4C, 0xCF, 0x42, 0x46, + 0xFF, 0xFF, 0xFF, 0x8F, 0xFE, 0x5E, 0x02, 0x59, 0x04, 0x2E, 0x06, 0x26, + 0x02, 0xC7, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x1F, 0xFF, 0xAD, + 0xFF, 0xFF, 0xFF, 0x8F, 0xFE, 0x5E, 0x02, 0x59, 0x05, 0xE9, 0x06, 0x26, + 0x02, 0xC7, 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0xFF, 0x1F, 0xFF, 0xAD, + 0x00, 0x06, 0x0A, 0x8C, 0xF4, 0x00, 0xFF, 0xFF, 0xFF, 0x8F, 0xFE, 0x5E, + 0x02, 0x59, 0x04, 0x2E, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x61, 0xFF, 0x1F, 0xFF, 0xAD, 0xFF, 0xFF, 0x00, 0x5D, 0x00, 0x00, + 0x01, 0x8C, 0x05, 0xE9, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x8C, 0xF4, 0x00, 0xFF, 0xFF, 0xFF, 0x8A, 0x00, 0x00, 0x02, 0x60, + 0x05, 0xE8, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, + 0xFE, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5D, 0xFE, 0x5E, 0x03, 0x75, + 0x05, 0xE9, 0x04, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, + 0xF4, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x01, 0xE9, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0xDD, 0x00, 0x00, 0x00, 0x01, 0x00, 0x2C, 0x00, 0x00, + 0x02, 0x50, 0x04, 0x2E, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x2C, 0x93, 0x93, 0x02, + 0x24, 0x92, 0x92, 0xCD, 0x02, 0x95, 0xCC, 0xCC, 0xFD, 0x6B, 0xCD, 0xFF, + 0xFF, 0xFF, 0xC3, 0xFE, 0x5E, 0x01, 0x8C, 0x05, 0xE9, 0x06, 0x26, 0x02, + 0xC7, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xF4, 0x00, 0x00, 0x02, 0xFF, + 0xF5, 0xFE, 0x55, 0x03, 0x9D, 0x04, 0x2E, 0x00, 0x1B, 0x00, 0x1F, 0x00, + 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x34, 0x36, 0x36, 0x33, 0x21, 0x15, + 0x21, 0x06, 0x06, 0x15, 0x06, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x0E, 0x02, 0x13, 0x11, 0x33, 0x11, 0x01, 0x45, 0x6E, 0x95, + 0x4C, 0x01, 0x52, 0x94, 0x62, 0x02, 0x60, 0xFD, 0xB0, 0x2D, 0x40, 0x01, + 0x39, 0x29, 0x3B, 0x2C, 0xFD, 0x26, 0x53, 0x87, 0x02, 0xFE, 0xFE, 0x55, + 0x47, 0x7C, 0x4F, 0x53, 0x7C, 0x44, 0xBF, 0x01, 0x2E, 0x2D, 0x29, 0x2E, + 0x53, 0x2D, 0x01, 0x70, 0xFE, 0xC3, 0x45, 0x80, 0x65, 0x3C, 0x01, 0xAB, + 0x04, 0x2E, 0xFB, 0xD2, 0xFF, 0xFF, 0xFF, 0xF5, 0xFE, 0x55, 0x03, 0x9D, + 0x05, 0xE9, 0x06, 0x26, 0x02, 0xD0, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0x25, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x94, 0xFE, 0x5E, 0x02, 0x57, + 0x05, 0xE8, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0xFF, 0x50, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x94, 0xFE, 0x5E, 0x02, 0x57, + 0x05, 0xE8, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, + 0xFF, 0x50, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xC3, 0xFE, 0x5E, 0x01, 0x8C, + 0x05, 0xE9, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, + 0xF4, 0x00, 0xFF, 0xFF, 0xFF, 0xC3, 0xFE, 0x5E, 0x01, 0x8C, 0x05, 0xE9, + 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xF4, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x03, 0x75, 0x05, 0xE9, 0x04, 0x26, + 0x02, 0xE0, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x01, 0xE9, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xDD, 0x00, 0x00, 0x00, 0x03, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x5D, 0x05, 0xD2, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, + 0x00, 0x00, 0x41, 0x11, 0x33, 0x01, 0x21, 0x01, 0x23, 0x01, 0x11, 0x33, + 0x11, 0x21, 0x01, 0x37, 0x01, 0x01, 0x5E, 0x1C, 0x01, 0x99, 0x01, 0x30, + 0xFE, 0x15, 0x33, 0xFE, 0x50, 0xFF, 0x01, 0xB9, 0xFE, 0x92, 0xAB, 0x01, + 0xF3, 0x01, 0x4F, 0x01, 0x2E, 0x01, 0xB1, 0xFD, 0xF0, 0xFD, 0xE2, 0x05, + 0xD2, 0xFA, 0x2E, 0x01, 0xE6, 0xB2, 0xFD, 0x68, 0x00, 0x04, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x5D, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x16, 0x00, 0x1A, + 0x00, 0x1E, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x03, 0x11, 0x33, 0x01, + 0x21, 0x01, 0x23, 0x01, 0x11, 0x33, 0x11, 0x21, 0x01, 0x37, 0x01, 0x75, + 0xA8, 0xA6, 0x2D, 0x46, 0x1A, 0x12, 0x3F, 0x19, 0x3C, 0x36, 0x16, 0x1C, + 0x01, 0x99, 0x01, 0x30, 0xFE, 0x15, 0x33, 0xFE, 0x50, 0xFF, 0x01, 0xB9, + 0xFE, 0x92, 0xAB, 0x01, 0xF3, 0x03, 0x51, 0x01, 0x5D, 0x92, 0x95, 0x02, + 0x01, 0xCD, 0x01, 0x01, 0x2E, 0x32, 0xFE, 0xAA, 0xFD, 0xFE, 0x01, 0x2E, + 0x01, 0xB1, 0xFD, 0xF0, 0xFD, 0xE2, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xE6, + 0xB2, 0xFD, 0x68, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1C, 0x04, 0x5D, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, + 0x3B, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x93, 0x00, 0x00, 0x04, 0x5D, 0x07, + 0x8C, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, + 0x4F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x5D, 0x07, + 0x8C, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, + 0x2A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x38, 0x04, 0x5D, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x3E, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x8F, 0x04, 0x5D, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0x9E, 0xF9, 0x9B, 0x00, 0x03, 0xFF, 0xFC, 0xFE, 0x5C, 0x03, 0xE4, 0x04, + 0x2E, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x01, 0x21, 0x01, 0x33, 0x01, 0x11, 0x23, 0x11, 0x21, 0x01, 0x07, 0x01, + 0x02, 0xFB, 0x1C, 0xFE, 0x67, 0xFE, 0xD0, 0x01, 0xEB, 0x33, 0x01, 0xB0, + 0xFF, 0xFE, 0x47, 0x01, 0x6E, 0xAB, 0xFE, 0x0D, 0x02, 0xDF, 0xFE, 0xD2, + 0xFE, 0x4F, 0x02, 0x10, 0x02, 0x1E, 0xFA, 0x2E, 0x05, 0xD2, 0xFE, 0x1A, + 0xB2, 0x02, 0x98, 0x00, 0x03, 0x00, 0x75, 0x00, 0x00, 0x04, 0x5D, 0x04, + 0x2E, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x00, 0x41, 0x11, 0x33, + 0x01, 0x21, 0x01, 0x23, 0x01, 0x11, 0x33, 0x11, 0x21, 0x01, 0x37, 0x01, + 0x01, 0x5E, 0x1C, 0x01, 0x99, 0x01, 0x30, 0xFE, 0x15, 0x33, 0xFE, 0x50, + 0xFF, 0x01, 0xB9, 0xFE, 0x92, 0xAB, 0x01, 0xF3, 0x01, 0x4F, 0x01, 0x2E, + 0x01, 0xB1, 0xFD, 0xF0, 0xFD, 0xE2, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xE6, + 0xB2, 0xFD, 0x68, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x01, 0x74, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x74, 0xFF, + 0x05, 0xD2, 0xFA, 0x2E, 0x05, 0xD2, 0xFF, 0xFF, 0xFF, 0xDA, 0x00, 0x00, + 0x02, 0x0E, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x06, + 0x0B, 0x6A, 0xDA, 0x00, 0xFF, 0xFF, 0xFF, 0x8E, 0x00, 0x00, 0x02, 0x59, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, + 0xFF, 0x1F, 0x00, 0x17, 0xFF, 0xFF, 0xFF, 0x91, 0x00, 0x00, 0x02, 0x65, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x6C, + 0xFF, 0x71, 0x00, 0x00, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5B, 0x02, 0x4C, + 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, + 0x03, 0x11, 0x23, 0x11, 0x01, 0xBF, 0xA5, 0xA5, 0xFF, 0x32, 0x3D, 0x18, + 0x3F, 0x12, 0x19, 0x47, 0x78, 0xFF, 0xFE, 0x5B, 0x96, 0x92, 0x7D, 0x77, + 0x32, 0x2D, 0x01, 0xCD, 0x01, 0x02, 0x07, 0x77, 0xFA, 0x2E, 0x05, 0xD2, + 0x00, 0x02, 0xFF, 0xFC, 0x00, 0x00, 0x03, 0x84, 0x05, 0xD2, 0x00, 0x1C, + 0x00, 0x20, 0x00, 0x00, 0x41, 0x21, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x21, 0x03, 0x11, 0x21, 0x11, + 0x03, 0x84, 0xFD, 0xB8, 0x5D, 0x91, 0x52, 0x4F, 0x93, 0x66, 0x4C, 0x73, + 0x4E, 0x28, 0xCD, 0x33, 0x34, 0x1C, 0x2B, 0x1A, 0x3A, 0x30, 0x02, 0x36, + 0xD8, 0xFF, 0x00, 0x02, 0x29, 0x43, 0x7C, 0x54, 0x52, 0x81, 0x4B, 0x34, + 0x60, 0x82, 0x4E, 0xFE, 0xB6, 0x01, 0x7E, 0x30, 0x42, 0x19, 0x29, 0x1A, + 0x23, 0x34, 0x02, 0xE9, 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x02, 0xFF, 0x78, + 0xFE, 0x5E, 0x03, 0x39, 0x05, 0xD2, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x06, 0x07, 0x01, 0x27, 0x25, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x11, 0x23, 0x11, + 0x01, 0xE6, 0x83, 0xA2, 0x4C, 0xFF, 0x46, 0x31, 0x2D, 0x39, 0x33, 0x2F, + 0x20, 0x40, 0x46, 0x2C, 0xFE, 0xDD, 0x82, 0x01, 0x0C, 0x48, 0xBA, 0x60, + 0x98, 0xBB, 0xB2, 0xFE, 0xED, 0xFF, 0xFE, 0x5E, 0x5C, 0x9E, 0x62, 0x01, + 0x27, 0xFE, 0xA6, 0x3D, 0x3F, 0x35, 0x2A, 0x27, 0x35, 0x04, 0x04, 0x11, + 0x2A, 0x23, 0xFF, 0x00, 0x9A, 0xE9, 0x40, 0x4E, 0x9F, 0x7F, 0x79, 0x8C, + 0x07, 0x74, 0xFA, 0x2E, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, + 0x03, 0x18, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, + 0x05, 0xDC, 0x01, 0x77, 0x02, 0x5F, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, + 0x02, 0x2B, 0x07, 0x8C, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x00, 0x2A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x24, 0xFE, 0x1C, + 0x01, 0x74, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xE7, 0xEF, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x02, 0xCD, + 0x06, 0x1C, 0x04, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x28, + 0x01, 0x62, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5D, 0xFE, 0x38, 0x01, 0x8B, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0xFF, 0xF3, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xD8, 0xFE, 0x38, 0x02, 0x11, + 0x07, 0x46, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, + 0xFF, 0xF3, 0xF9, 0x6D, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x53, 0x01, 0xA4, + 0xFF, 0xFF, 0xFF, 0xD7, 0xFE, 0x8F, 0x02, 0x11, 0x05, 0xD2, 0x06, 0x26, + 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x52, 0xF9, 0x9B, + 0xFF, 0xFF, 0xFF, 0x93, 0xFE, 0x3C, 0x02, 0x56, 0x05, 0xD2, 0x06, 0x26, + 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0x4F, 0xF9, 0x79, + 0x00, 0x01, 0x00, 0x75, 0xFF, 0xFE, 0x02, 0x0A, 0x05, 0xD2, 0x00, 0x0F, + 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0xB0, 0xA6, 0x95, 0xFF, 0x28, + 0x35, 0x0D, 0x19, 0x09, 0x0A, 0x13, 0x2E, 0x02, 0x81, 0x90, 0x04, 0xC3, + 0xFB, 0x5A, 0x38, 0x2C, 0x01, 0x01, 0xC7, 0x02, 0x03, 0xFF, 0xFF, 0x00, + 0x12, 0xFF, 0xFE, 0x02, 0x45, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xEF, 0x35, + 0x00, 0x00, 0x06, 0x0B, 0x6A, 0x12, 0x07, 0xFF, 0xFF, 0x00, 0x12, 0xFF, + 0xFE, 0x02, 0xDC, 0x05, 0xD2, 0x04, 0x27, 0x02, 0xEF, 0x00, 0x81, 0x00, + 0x00, 0x00, 0x06, 0x0B, 0x61, 0xA2, 0x1E, 0xFF, 0xFF, 0x00, 0x12, 0xFF, + 0xFE, 0x02, 0xE5, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xEF, 0x7E, 0x00, 0x00, + 0x06, 0x0B, 0x6C, 0xF2, 0x07, 0x00, 0x02, 0x00, 0x12, 0xFF, 0xFE, 0x03, + 0x63, 0x05, 0xD2, 0x00, 0x1A, 0x00, 0x2A, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x23, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x37, 0x25, 0x15, + 0x03, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x01, 0x77, 0x71, 0xA1, 0x53, 0x4A, 0x7F, 0x52, + 0x5E, 0x6F, 0x32, 0x68, 0x38, 0x36, 0x29, 0x34, 0x3B, 0x2F, 0x02, 0x00, + 0x64, 0xA6, 0x95, 0xFF, 0x28, 0x35, 0x0D, 0x19, 0x09, 0x0A, 0x14, 0x2E, + 0x02, 0x3C, 0x4C, 0x85, 0x56, 0x54, 0x81, 0x4B, 0x61, 0xA3, 0x63, 0x35, + 0x69, 0x2E, 0x44, 0x36, 0x27, 0x25, 0x3D, 0x01, 0x01, 0xC9, 0xFD, 0xC2, + 0x81, 0x90, 0x04, 0xC3, 0xFB, 0x5A, 0x38, 0x2C, 0x01, 0x01, 0xC7, 0x02, + 0x03, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xFE, 0x03, 0x18, 0x05, 0xD2, 0x04, + 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x01, 0x77, 0x02, + 0x5F, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xFE, 0x02, 0x2B, 0x07, 0x8C, 0x06, + 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, 0x2A, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x63, 0xFE, 0x1C, 0x02, 0x0A, 0x05, 0xD2, 0x06, + 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x06, 0x06, 0xE7, 0x2E, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFF, 0xFE, 0x02, 0xCE, 0x06, 0x1C, 0x04, 0x26, 0x02, + 0xEF, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x28, 0x01, 0x63, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x38, 0x02, 0x0A, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0xEF, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x31, 0xF9, 0x6D, 0xFF, + 0xFF, 0xFF, 0xD8, 0xFE, 0x38, 0x02, 0x11, 0x07, 0x46, 0x06, 0x26, 0x02, + 0xEF, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x00, 0x31, 0xF9, 0x6D, 0x00, + 0x07, 0x06, 0xEB, 0xFF, 0x53, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0xFE, + 0x8F, 0x02, 0x4F, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0xFF, 0x91, 0xF9, 0x9B, 0xFF, 0xFF, 0xFF, 0xD1, 0xFE, + 0x3C, 0x02, 0x95, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8D, 0xFF, 0x8E, 0xF9, 0x79, 0xFF, 0xFF, 0x00, 0x75, 0x00, + 0x00, 0x01, 0x74, 0x05, 0xD2, 0x06, 0x06, 0x02, 0xE0, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x75, 0x00, 0x00, 0x03, 0x7A, 0x04, 0x2E, 0x00, 0x05, 0x00, + 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x15, 0x75, 0xFF, 0x02, 0x06, 0x04, + 0x2E, 0xFC, 0xAB, 0xD9, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x06, 0x8C, + 0x04, 0x42, 0x00, 0x29, 0x00, 0x00, 0x73, 0x11, 0x33, 0x17, 0x23, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x17, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x75, 0xF5, + 0x02, 0x13, 0x1C, 0x65, 0x86, 0x49, 0x7A, 0xAA, 0x16, 0x20, 0x16, 0x67, + 0x93, 0x57, 0x64, 0xA1, 0x5D, 0xFE, 0x73, 0x50, 0x40, 0x5C, 0x33, 0xF7, + 0x6B, 0x54, 0x39, 0x60, 0x39, 0x04, 0x2E, 0xEF, 0x57, 0x73, 0x39, 0x8E, + 0x78, 0x51, 0x75, 0x40, 0x57, 0xA9, 0x7C, 0xFD, 0x3A, 0x02, 0xA1, 0x68, + 0x61, 0x36, 0x60, 0x40, 0xFD, 0x6C, 0x02, 0xAC, 0x57, 0x67, 0x35, 0x67, + 0x4B, 0xFD, 0x7D, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5B, 0x06, 0x8C, 0x04, + 0x42, 0x00, 0x0F, 0x00, 0x39, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x35, + 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x01, + 0x11, 0x33, 0x17, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x23, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x11, 0x05, 0x45, 0x2D, 0x49, 0x19, 0x11, 0x40, 0x18, 0x3C, + 0x33, 0xFE, 0xA2, 0xFA, 0x8B, 0xF5, 0x02, 0x13, 0x1C, 0x65, 0x86, 0x49, + 0x7A, 0xAA, 0x16, 0x20, 0x16, 0x67, 0x93, 0x57, 0x65, 0xA0, 0x5D, 0xFE, + 0x73, 0x50, 0x40, 0x5D, 0x32, 0xF7, 0x6B, 0x54, 0x38, 0x61, 0x39, 0xFE, + 0x5B, 0x02, 0x01, 0xCD, 0x01, 0x2D, 0x32, 0x77, 0x7D, 0x92, 0x96, 0x01, + 0xA5, 0x04, 0x2E, 0xEF, 0x57, 0x73, 0x39, 0x8E, 0x78, 0x51, 0x75, 0x40, + 0x57, 0xA9, 0x7C, 0xFD, 0x3A, 0x02, 0xA1, 0x68, 0x61, 0x36, 0x61, 0x3F, + 0xFD, 0x6C, 0x02, 0xAC, 0x57, 0x67, 0x35, 0x67, 0x4B, 0xFD, 0x7D, 0x00, + 0x01, 0x00, 0x75, 0xFF, 0xEB, 0x06, 0x8C, 0x04, 0x2E, 0x00, 0x29, 0x00, + 0x00, 0x41, 0x11, 0x23, 0x27, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x27, + 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x11, 0x06, 0x8C, 0xF4, 0x03, 0x13, 0x1B, 0x66, + 0x85, 0x4A, 0x79, 0xAB, 0x16, 0x20, 0x15, 0x67, 0x93, 0x58, 0x63, 0xA1, + 0x5E, 0xFF, 0x72, 0x51, 0x40, 0x5C, 0x32, 0xF7, 0x6C, 0x53, 0x3A, 0x5F, + 0x3A, 0x04, 0x2E, 0xFB, 0xD2, 0xEF, 0x57, 0x74, 0x39, 0x8F, 0x78, 0x51, + 0x76, 0x40, 0x57, 0xAA, 0x7C, 0x02, 0xC6, 0xFD, 0x5F, 0x68, 0x62, 0x37, + 0x61, 0x3F, 0x02, 0x94, 0xFD, 0x53, 0x56, 0x68, 0x36, 0x67, 0x4B, 0x02, + 0x83, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5E, 0x06, 0x8C, 0x04, 0x2E, 0x00, + 0x03, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x13, 0x11, 0x23, + 0x27, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x27, 0x33, 0x0E, 0x02, 0x23, + 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x11, 0x05, 0x95, 0xF5, 0x02, 0xF4, 0x03, 0x13, 0x1B, 0x66, 0x85, 0x4A, + 0x79, 0xAB, 0x16, 0x20, 0x15, 0x67, 0x93, 0x58, 0x63, 0xA1, 0x5E, 0xFF, + 0x72, 0x51, 0x40, 0x5C, 0x32, 0xF7, 0x6C, 0x53, 0x3A, 0x5F, 0x3A, 0xFE, + 0x5E, 0x01, 0xA2, 0xFE, 0x5E, 0x05, 0xD0, 0xFB, 0xD2, 0xEF, 0x57, 0x74, + 0x39, 0x8F, 0x78, 0x51, 0x76, 0x40, 0x57, 0xAA, 0x7C, 0x02, 0xC6, 0xFD, + 0x5F, 0x68, 0x62, 0x37, 0x61, 0x3F, 0x02, 0x94, 0xFD, 0x53, 0x56, 0x68, + 0x36, 0x67, 0x4B, 0x02, 0x83, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x06, + 0x8C, 0x05, 0xE8, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x02, 0xB7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x06, + 0x8C, 0x05, 0xE9, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x02, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x38, 0x06, + 0x8C, 0x04, 0x42, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x02, 0x80, 0xF9, 0x6D, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x04, + 0x31, 0x04, 0x42, 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, + 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x01, 0x74, 0xFF, 0xF8, 0x01, 0x2B, + 0x32, 0xB9, 0x89, 0x70, 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, + 0x02, 0x62, 0xFD, 0x9E, 0x04, 0x2E, 0xFE, 0xF1, 0x8E, 0x95, 0x61, 0xBA, + 0x88, 0xFD, 0x61, 0x02, 0x77, 0x74, 0x79, 0x37, 0x73, 0xFF, 0xFF, 0x00, + 0x75, 0x00, 0x00, 0x04, 0x31, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x05, 0x00, + 0x00, 0x00, 0x06, 0x06, 0xEC, 0x62, 0x00, 0x00, 0x02, 0x00, 0x75, 0xFE, + 0x5B, 0x05, 0x09, 0x04, 0x42, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, + 0x15, 0x06, 0x06, 0x01, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x04, 0x7C, 0xA5, 0xA4, 0xFE, 0x33, 0x3C, 0x18, 0x40, 0x11, + 0x19, 0x47, 0xFC, 0xCB, 0xFF, 0xF8, 0x01, 0x2B, 0x32, 0xB9, 0x89, 0x70, + 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, 0xFE, 0x5B, 0x96, 0x92, + 0x7D, 0x77, 0x32, 0x2D, 0x01, 0xCD, 0x01, 0x02, 0x04, 0x07, 0xFD, 0x9E, + 0x04, 0x2E, 0xFE, 0xF1, 0x8E, 0x95, 0x61, 0xBA, 0x88, 0xFD, 0x61, 0x02, + 0x77, 0x74, 0x79, 0x37, 0x73, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5B, 0x04, + 0x31, 0x04, 0x42, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x00, 0x41, 0x35, 0x16, + 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x01, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x02, 0x61, 0x15, 0x3B, 0x14, 0x3D, 0x31, 0xFE, 0xA4, 0xA6, 0x2D, 0x40, + 0xFE, 0xFA, 0xFF, 0xF8, 0x01, 0x2B, 0x32, 0xB9, 0x89, 0x70, 0xAA, 0x60, + 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, 0xFE, 0x5E, 0xD4, 0x01, 0x2D, 0x32, + 0x70, 0x7D, 0x92, 0x96, 0x02, 0x04, 0x05, 0xFD, 0x9E, 0x04, 0x2E, 0xFE, + 0xF1, 0x8E, 0x95, 0x61, 0xBA, 0x88, 0xFD, 0x61, 0x02, 0x77, 0x74, 0x79, + 0x37, 0x73, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5E, 0x05, 0xF6, 0x04, 0x42, + 0x00, 0x1F, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, + 0x06, 0x06, 0x07, 0x01, 0x27, 0x25, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x01, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x04, 0xA4, 0x83, 0xA3, 0x4B, 0xFE, 0x46, 0x31, 0x2D, 0x39, 0x32, + 0x2F, 0x21, 0x40, 0x46, 0x2C, 0xFE, 0xDE, 0x83, 0x01, 0x0C, 0x48, 0xBA, + 0x60, 0x99, 0xBA, 0xB2, 0xFC, 0x30, 0xFF, 0xF8, 0x01, 0x2B, 0x32, 0xB9, + 0x89, 0x70, 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, 0xFE, 0x5E, + 0x5C, 0x9E, 0x62, 0x01, 0x27, 0xFE, 0xA6, 0x3D, 0x3F, 0x35, 0x2A, 0x27, + 0x35, 0x04, 0x04, 0x11, 0x2A, 0x23, 0xFF, 0x00, 0x9A, 0xE9, 0x40, 0x4E, + 0x9F, 0x7F, 0x79, 0x8C, 0x04, 0x04, 0xFD, 0x9E, 0x04, 0x2E, 0xFE, 0xF1, + 0x8E, 0x95, 0x61, 0xBA, 0x88, 0xFD, 0x61, 0x02, 0x77, 0x74, 0x79, 0x37, + 0x73, 0x00, 0x02, 0xFF, 0x9D, 0xFE, 0x5B, 0x04, 0x31, 0x04, 0x42, 0x00, + 0x0F, 0x00, 0x26, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x35, 0x16, 0x32, + 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x13, 0x11, 0x23, + 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x2D, 0x2D, 0x49, 0x1A, + 0x12, 0x3F, 0x19, 0x3C, 0x32, 0xFF, 0xA2, 0xA2, 0xFF, 0xF8, 0x01, 0x2B, + 0x32, 0xB9, 0x89, 0x70, 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, + 0xFE, 0x5B, 0x02, 0x01, 0xCD, 0x01, 0x2D, 0x32, 0x77, 0x7D, 0x92, 0x96, + 0x04, 0x07, 0xFD, 0x9E, 0x04, 0x2E, 0xFE, 0xF1, 0x8E, 0x95, 0x61, 0xBA, + 0x88, 0xFD, 0x61, 0x02, 0x77, 0x74, 0x79, 0x37, 0x73, 0xFF, 0xFF, 0x00, + 0x75, 0xFE, 0x5E, 0x04, 0x31, 0x04, 0x42, 0x06, 0x06, 0x04, 0x80, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x31, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x89, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1C, 0x04, 0x31, 0x04, 0x42, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x4F, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x31, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xAE, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x31, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xC4, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x31, 0x05, 0xE9, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x52, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x38, 0x04, 0x31, 0x04, 0x42, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x52, 0xF9, + 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x8F, 0x04, 0x31, 0x04, 0x42, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xB2, 0xF9, + 0x9B, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x3C, 0x04, 0x31, 0x04, 0x42, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAF, 0xF9, + 0x79, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x06, 0x33, 0x05, 0xE9, 0x04, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x04, 0xA6, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x04, 0x9B, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x75, 0x00, 0x00, 0x04, 0x66, 0x04, 0x2E, 0x00, 0x18, 0x00, 0x00, 0x73, + 0x11, 0x21, 0x01, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x34, 0x35, 0x11, + 0x33, 0x11, 0x21, 0x01, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x15, 0x11, + 0x75, 0x01, 0x13, 0x01, 0x53, 0x3D, 0x5E, 0x2C, 0x32, 0x01, 0x01, 0xF8, + 0xFE, 0xF0, 0xFE, 0xAC, 0x3C, 0x5F, 0x2E, 0x33, 0x01, 0x01, 0x04, 0x2E, + 0xFE, 0x00, 0x5A, 0x9E, 0x4E, 0x35, 0x6A, 0x6D, 0x3A, 0x02, 0x00, 0xFB, + 0xD2, 0x02, 0x01, 0x5A, 0x9E, 0x4D, 0x4F, 0x9F, 0x57, 0xFD, 0xFF, 0x00, + 0x02, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x04, 0x44, 0x00, 0x0F, 0x00, + 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, + 0x50, 0x9C, 0xED, 0x83, 0x83, 0xED, 0x9C, 0x9E, 0xEB, 0x83, 0x83, 0xEB, + 0x9E, 0x54, 0x77, 0x40, 0x40, 0x77, 0x54, 0x52, 0x78, 0x40, 0x40, 0x77, + 0x18, 0x8C, 0xFB, 0xA6, 0xA6, 0xFC, 0x8D, 0x8D, 0xFC, 0xA6, 0xA6, 0xFB, + 0x8C, 0xD3, 0x56, 0x9C, 0x68, 0x69, 0x9C, 0x57, 0x57, 0x9C, 0x69, 0x69, + 0x9B, 0x56, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xE8, + 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xFD, 0x00, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xD6, 0x06, 0x26, + 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x60, 0x00, 0xFF, 0xFF, + 0x00, 0x3A, 0xFF, 0xD0, 0x04, 0x67, 0x04, 0x5D, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x06, 0x0B, 0x41, 0x00, 0x00, 0x00, 0x03, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x7A, 0x05, 0x20, 0x00, 0x10, 0x00, 0x20, 0x00, 0x30, + 0x00, 0x00, 0x41, 0x35, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x35, 0x33, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x22, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x02, 0x50, 0x2E, 0x40, 0x3C, 0x4C, 0x38, 0x28, 0xD4, 0x6C, + 0x68, 0x55, 0xAC, 0x55, 0x9C, 0xED, 0x83, 0x83, 0xED, 0x9C, 0x9E, 0xEB, + 0x83, 0x83, 0xEB, 0x9E, 0x54, 0x77, 0x40, 0x40, 0x77, 0x54, 0x52, 0x78, + 0x40, 0x40, 0x77, 0x03, 0xAB, 0x99, 0x06, 0x07, 0x05, 0x25, 0xC9, 0xBE, + 0x59, 0x5E, 0xFC, 0x3D, 0x8C, 0xFB, 0xA6, 0xA6, 0xFC, 0x8D, 0x8D, 0xFC, + 0xA6, 0xA6, 0xFB, 0x8C, 0xD3, 0x56, 0x9C, 0x68, 0x69, 0x9C, 0x57, 0x57, + 0x9C, 0x69, 0x69, 0x9B, 0x56, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE9, 0x00, 0xC1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x01, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8D, 0x00, 0xAB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x05, 0xA2, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0x00, 0xAF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x05, 0xE5, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x00, 0xA5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xD7, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8E, 0x00, 0xAB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x5A, 0x04, + 0x5C, 0x04, 0x44, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x5C, 0x01, 0xCE, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x5A, 0x04, + 0x5C, 0x05, 0xA2, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x27, 0x0B, + 0x5C, 0x01, 0xCE, 0xFF, 0xFF, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xAF, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEA, 0x0B, 0x00, 0xFF, + 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xED, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, 0xAC, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x06, 0xD4, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xF5, 0x00, 0xFF, 0xFF, 0x00, + 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x06, 0xD4, 0x06, 0x26, 0x03, 0x16, 0x00, + 0x00, 0x00, 0x06, 0x0B, 0x1F, 0x60, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xE8, 0x04, 0x5C, 0x05, 0xE9, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x4F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xE8, 0x04, 0x5C, 0x06, 0xD4, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xE6, 0x01, 0x50, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xE8, 0x04, 0x5C, 0x07, 0x26, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xEA, 0x60, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x5C, 0x07, 0x12, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0B, + 0x1D, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x07, + 0x26, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x54, 0x00, + 0xAF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x07, + 0x26, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xB8, 0x00, + 0xAF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x38, 0x04, 0x5C, 0x04, + 0x44, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x50, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, + 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, + 0x33, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x07, + 0x13, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x00, + 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x07, + 0x13, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, 0x00, + 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x07, + 0x13, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, 0x00, + 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x07, + 0x05, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, 0x00, + 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x38, 0x04, 0x5C, 0x05, + 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, + 0xAB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x50, 0xF9, 0x6D, 0xFF, + 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x7A, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0x1A, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x86, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x7A, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0x1A, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xC1, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x7A, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0x1A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x33, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x7A, 0x05, 0xC9, 0x00, 0x10, 0x00, + 0x20, 0x00, 0x30, 0x00, 0x48, 0x00, 0x00, 0x41, 0x35, 0x32, 0x1E, 0x02, + 0x33, 0x32, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x22, 0x22, 0x03, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x22, 0x2E, 0x02, 0x23, + 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, + 0x36, 0x37, 0x33, 0x06, 0x06, 0x02, 0x50, 0x2E, 0x40, 0x3C, 0x4C, 0x38, + 0x28, 0xD4, 0x6C, 0x68, 0x55, 0xAC, 0x55, 0x9C, 0xED, 0x83, 0x83, 0xED, + 0x9C, 0x9E, 0xEB, 0x83, 0x83, 0xEB, 0x9E, 0x54, 0x77, 0x40, 0x40, 0x77, + 0x54, 0x52, 0x78, 0x40, 0x40, 0x77, 0xCE, 0x25, 0x42, 0x37, 0x2F, 0x13, + 0x1A, 0x19, 0x02, 0x82, 0x03, 0x55, 0x4E, 0x27, 0x3F, 0x34, 0x2E, 0x17, + 0x1B, 0x19, 0x04, 0x7F, 0x02, 0x5A, 0x03, 0xAB, 0x99, 0x06, 0x07, 0x05, + 0x25, 0xC9, 0xBE, 0x59, 0x5E, 0xFC, 0x3D, 0x8C, 0xFB, 0xA6, 0xA6, 0xFC, + 0x8D, 0x8D, 0xFC, 0xA6, 0xA6, 0xFB, 0x8C, 0xD3, 0x56, 0x9C, 0x68, 0x69, + 0x9C, 0x57, 0x57, 0x9C, 0x69, 0x69, 0x9B, 0x56, 0x04, 0x30, 0x19, 0x23, + 0x19, 0x30, 0x21, 0x64, 0x76, 0x1A, 0x22, 0x1A, 0x28, 0x2A, 0x66, 0x74, + 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x38, 0x04, 0x7A, 0x05, 0x20, 0x06, 0x26, + 0x03, 0x1A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x50, 0xF9, 0x6D, + 0xFF, 0xFF, 0x00, 0x3A, 0xFF, 0xD0, 0x04, 0x67, 0x05, 0xE8, 0x06, 0x26, + 0x03, 0x16, 0x00, 0x00, 0x00, 0x26, 0x0B, 0x41, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x01, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, + 0x04, 0x5C, 0x04, 0x44, 0x06, 0x06, 0x03, 0x16, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x50, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xF5, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0x8F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xF5, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x01, 0x6F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xF5, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x00, 0xDB, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xF5, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, 0x00, 0xB0, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xF5, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x81, 0x00, 0xDD, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xF5, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x82, 0x00, 0xBA, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0x01, 0x6C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x04, 0x44, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x06, 0x0B, 0x40, 0x03, 0x00, 0x00, 0x03, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x5C, 0x04, 0x44, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x03, 0xC5, 0xFD, 0x16, 0x01, 0x75, 0x9C, 0xED, 0x83, 0x83, + 0xED, 0x9C, 0x9E, 0xEB, 0x83, 0x83, 0xEB, 0x9E, 0x54, 0x77, 0x40, 0x40, + 0x77, 0x54, 0x52, 0x78, 0x40, 0x40, 0x77, 0x02, 0x62, 0x96, 0x96, 0xFD, + 0x86, 0x8C, 0xFB, 0xA6, 0xA6, 0xFC, 0x8D, 0x8D, 0xFC, 0xA6, 0xA6, 0xFB, + 0x8C, 0xD3, 0x56, 0x9C, 0x68, 0x69, 0x9C, 0x57, 0x57, 0x9C, 0x69, 0x69, + 0x9B, 0x56, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x04, 0x44, + 0x06, 0x06, 0x03, 0x16, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, + 0x04, 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x8B, 0xFD, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x07, 0x5C, + 0x04, 0x44, 0x04, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x02, 0x66, + 0x03, 0x1F, 0x00, 0x00, 0x00, 0x05, 0x00, 0x44, 0x00, 0x00, 0x06, 0x28, + 0x04, 0x2E, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x27, + 0x00, 0x00, 0x61, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x21, 0x15, 0x21, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x21, 0x15, 0x33, 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, + 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x02, 0x45, 0xA0, 0xE5, 0x7C, 0x7B, + 0xE4, 0x9E, 0x01, 0x69, 0xFE, 0x9E, 0x51, 0x76, 0x3F, 0x40, 0x78, 0x52, + 0x01, 0x5E, 0x02, 0x02, 0x7C, 0xFC, 0xE9, 0xF0, 0x55, 0x02, 0x24, 0xFD, + 0xDC, 0x02, 0x7C, 0x88, 0xF0, 0x99, 0x0D, 0x9A, 0xEE, 0x88, 0xCA, 0x54, + 0x94, 0x5E, 0x0D, 0x5E, 0x94, 0x54, 0xCB, 0xCB, 0xCB, 0x04, 0x2E, 0xFB, + 0xD2, 0x01, 0xBD, 0xC3, 0xC3, 0x01, 0xA7, 0xCA, 0xCA, 0xFF, 0xFF, 0x00, + 0x44, 0xFE, 0x5C, 0x08, 0xCC, 0x04, 0x44, 0x04, 0x26, 0x03, 0x16, 0x00, + 0x00, 0x00, 0x07, 0x03, 0xE4, 0x04, 0x7B, 0x00, 0x00, 0x00, 0x02, 0x00, + 0x75, 0xFE, 0x5E, 0x04, 0x7E, 0x04, 0x42, 0x00, 0x16, 0x00, 0x26, 0x00, + 0x00, 0x53, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x75, 0xFB, 0x06, 0x1E, 0x5C, 0x7B, 0x4B, 0x86, 0xCE, + 0x74, 0x73, 0xCE, 0x89, 0x4A, 0x79, 0x5A, 0x1F, 0x04, 0x01, 0x02, 0x51, + 0x75, 0x41, 0x41, 0x75, 0x51, 0x53, 0x79, 0x42, 0x42, 0x7A, 0xFE, 0x5E, + 0x05, 0xD0, 0x9C, 0x35, 0x4F, 0x2C, 0x8A, 0xF9, 0xA8, 0xA8, 0xFA, 0x8A, + 0x2E, 0x52, 0x38, 0xFD, 0xBB, 0x02, 0x60, 0x53, 0x9A, 0x6C, 0x6D, 0x99, + 0x52, 0x55, 0x9A, 0x69, 0x68, 0x9B, 0x56, 0x00, 0x03, 0x00, 0x7A, 0xFE, + 0x5E, 0x04, 0x83, 0x04, 0x42, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x2A, 0x00, + 0x00, 0x41, 0x01, 0x07, 0x01, 0x01, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x27, 0x23, 0x11, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0xED, 0x01, 0x76, 0x6F, + 0xFE, 0x8B, 0xFD, 0xFB, 0xFA, 0x06, 0x1E, 0x5C, 0x7B, 0x4B, 0x87, 0xCD, + 0x75, 0x73, 0xCE, 0x89, 0x4B, 0x79, 0x5A, 0x1E, 0x05, 0x01, 0x03, 0x50, + 0x75, 0x41, 0x40, 0x76, 0x50, 0x53, 0x7A, 0x42, 0x42, 0x7A, 0x01, 0xAE, + 0xFE, 0x4D, 0x5F, 0x01, 0xB3, 0xFD, 0x0F, 0x05, 0xD0, 0x9C, 0x35, 0x4F, + 0x2C, 0x8A, 0xF9, 0xA8, 0xA8, 0xFA, 0x8A, 0x2E, 0x52, 0x38, 0xFD, 0xBB, + 0x02, 0x60, 0x53, 0x9A, 0x6C, 0x6D, 0x99, 0x52, 0x55, 0x9A, 0x69, 0x68, + 0x9B, 0x56, 0x00, 0x03, 0x00, 0x75, 0xFE, 0x5E, 0x04, 0x7E, 0x05, 0xD5, + 0x00, 0x0F, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, + 0x03, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x75, 0xA8, 0xA6, 0x2D, 0x46, 0x1A, 0x12, 0x3F, 0x19, 0x3C, + 0x36, 0xFF, 0xFB, 0x06, 0x1E, 0x5C, 0x7B, 0x4B, 0x86, 0xCE, 0x74, 0x73, + 0xCE, 0x89, 0x4A, 0x79, 0x5A, 0x1F, 0x04, 0x01, 0x02, 0x51, 0x75, 0x41, + 0x41, 0x75, 0x51, 0x53, 0x79, 0x42, 0x42, 0x7A, 0x03, 0x51, 0x01, 0x5D, + 0x92, 0x95, 0x02, 0x01, 0xCD, 0x01, 0x01, 0x2E, 0x32, 0xFE, 0xAA, 0xFB, + 0x0D, 0x05, 0xD0, 0x9C, 0x35, 0x4F, 0x2C, 0x8A, 0xF9, 0xA8, 0xA8, 0xFA, + 0x8A, 0x2E, 0x52, 0x38, 0xFD, 0xBB, 0x02, 0x60, 0x53, 0x9A, 0x6C, 0x6D, + 0x99, 0x52, 0x55, 0x9A, 0x69, 0x68, 0x9B, 0x56, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0x5E, 0x04, 0x7E, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x4B, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE8, 0x01, 0xC3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0x5E, 0x04, 0x7E, 0x05, 0xE9, 0x06, 0x26, 0x03, 0x4B, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0x5E, 0x04, 0x7E, 0x04, 0x42, 0x06, 0x06, 0x03, 0x4B, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x44, 0xFE, 0x5E, 0x04, 0x4E, 0x04, 0x42, 0x00, 0x16, + 0x00, 0x26, 0x00, 0x00, 0x41, 0x23, 0x11, 0x23, 0x0E, 0x02, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, + 0x35, 0x33, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, 0x4E, 0xFF, 0x04, 0x1F, 0x5A, + 0x78, 0x4B, 0x89, 0xCE, 0x74, 0x75, 0xCF, 0x85, 0x4C, 0x7A, 0x5D, 0x1D, + 0x06, 0xFB, 0xFD, 0xFF, 0x53, 0x79, 0x42, 0x42, 0x79, 0x53, 0x50, 0x76, + 0x41, 0x41, 0x76, 0xFE, 0x5E, 0x02, 0x45, 0x38, 0x52, 0x2E, 0x8A, 0xFA, + 0xA8, 0xA8, 0xF9, 0x8A, 0x2C, 0x4F, 0x35, 0x9C, 0xFC, 0x90, 0x56, 0x9B, + 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, 0x6D, 0x6C, 0x9A, 0x53, 0x00, 0x03, + 0x00, 0x44, 0xFE, 0x5E, 0x05, 0x28, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x26, + 0x00, 0x36, 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x13, 0x23, 0x11, 0x23, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x4E, + 0xA8, 0xA5, 0x2D, 0x47, 0x19, 0x11, 0x40, 0x18, 0x3D, 0x36, 0x02, 0xFF, + 0x04, 0x1F, 0x5A, 0x78, 0x4B, 0x89, 0xCE, 0x74, 0x75, 0xCF, 0x85, 0x4C, + 0x7A, 0x5D, 0x1D, 0x06, 0xFB, 0xFD, 0xFF, 0x53, 0x79, 0x42, 0x42, 0x79, + 0x53, 0x50, 0x76, 0x41, 0x41, 0x76, 0x03, 0x51, 0x01, 0x5D, 0x92, 0x95, + 0x02, 0x01, 0xCD, 0x01, 0x01, 0x2E, 0x32, 0xFE, 0xAA, 0xFB, 0x0D, 0x02, + 0x45, 0x38, 0x52, 0x2E, 0x8A, 0xFA, 0xA8, 0xA8, 0xF9, 0x8A, 0x2C, 0x4F, + 0x35, 0x9C, 0xFC, 0x90, 0x56, 0x9B, 0x68, 0x69, 0x9A, 0x55, 0x52, 0x99, + 0x6D, 0x6C, 0x9A, 0x53, 0x00, 0x03, 0x00, 0x44, 0xFE, 0x5B, 0x05, 0x25, + 0x04, 0x42, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, + 0x06, 0x06, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x04, 0x98, 0xA5, 0xA2, 0xFC, 0x32, 0x3D, 0x18, + 0x3F, 0x12, 0x1A, 0x46, 0xFD, 0x49, 0x88, 0xCE, 0x74, 0x75, 0xCF, 0x86, + 0x4B, 0x7B, 0x5C, 0x1E, 0x05, 0xFA, 0xFA, 0x05, 0x1E, 0x5D, 0x79, 0x0D, + 0x53, 0x79, 0x42, 0x41, 0x7A, 0x53, 0x50, 0x76, 0x41, 0x41, 0x76, 0xFE, + 0x5B, 0x96, 0x92, 0x01, 0x38, 0xFE, 0xCE, 0x32, 0x2D, 0x01, 0xCD, 0x01, + 0x02, 0x01, 0x90, 0x8A, 0xFA, 0xA8, 0xA8, 0xF9, 0x8A, 0x2C, 0x4F, 0x35, + 0x9C, 0xFB, 0xD2, 0xA3, 0x38, 0x53, 0x2D, 0xD3, 0x56, 0x9B, 0x68, 0x69, + 0x9A, 0x55, 0x52, 0x99, 0x6D, 0x6C, 0x9A, 0x53, 0x00, 0x01, 0x00, 0x75, + 0x00, 0x00, 0x02, 0xC9, 0x04, 0x39, 0x00, 0x13, 0x00, 0x00, 0x73, 0x11, + 0x33, 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x75, 0xF6, 0x05, 0x1D, 0x82, 0x66, + 0x18, 0x2D, 0x0F, 0x0E, 0x45, 0x24, 0x3F, 0x65, 0x3A, 0x04, 0x2E, 0xB2, + 0x5C, 0x61, 0x03, 0x02, 0xE3, 0x03, 0x06, 0x38, 0x6E, 0x51, 0xFD, 0x9D, + 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5B, 0x02, 0xC9, 0x04, 0x39, 0x00, 0x0F, + 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, 0x01, 0x11, 0x33, 0x15, + 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x11, 0x01, 0xBF, 0xA5, 0xA5, 0xFF, 0x32, 0x3D, 0x18, + 0x3F, 0x12, 0x19, 0x47, 0xFE, 0x89, 0xF6, 0x05, 0x1D, 0x82, 0x66, 0x18, + 0x2D, 0x0F, 0x0E, 0x45, 0x24, 0x3F, 0x65, 0x3A, 0xFE, 0x5B, 0x96, 0x92, + 0x7D, 0x77, 0x32, 0x2D, 0x01, 0xCD, 0x01, 0x02, 0x01, 0xA5, 0x04, 0x2E, + 0xB2, 0x5C, 0x61, 0x03, 0x02, 0xE3, 0x03, 0x06, 0x38, 0x6E, 0x51, 0xFD, + 0x9D, 0xFF, 0xFF, 0xFF, 0x90, 0x00, 0x00, 0x02, 0xC9, 0x04, 0x39, 0x06, + 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x20, 0xFF, + 0x2D, 0x00, 0x01, 0x00, 0x22, 0xFF, 0xF5, 0x02, 0x76, 0x04, 0x2E, 0x00, + 0x13, 0x00, 0x00, 0x41, 0x11, 0x23, 0x35, 0x23, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x02, + 0x76, 0xF5, 0x05, 0x1D, 0x83, 0x65, 0x18, 0x2C, 0x11, 0x0F, 0x45, 0x24, + 0x40, 0x64, 0x3A, 0x04, 0x2E, 0xFB, 0xD2, 0xB2, 0x5C, 0x61, 0x03, 0x01, + 0xE4, 0x03, 0x06, 0x38, 0x6F, 0x4F, 0x02, 0x64, 0x00, 0x02, 0x00, 0x22, + 0xFE, 0x5B, 0x03, 0x4D, 0x04, 0x2E, 0x00, 0x10, 0x00, 0x24, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, + 0x37, 0x15, 0x0E, 0x02, 0x03, 0x11, 0x23, 0x35, 0x23, 0x06, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, + 0x02, 0xAA, 0x94, 0x96, 0xF5, 0x30, 0x39, 0x18, 0x46, 0x11, 0x11, 0x35, + 0x3E, 0x53, 0xF5, 0x05, 0x1D, 0x83, 0x65, 0x18, 0x2C, 0x11, 0x0F, 0x45, + 0x24, 0x40, 0x64, 0x3A, 0xFE, 0x5B, 0x8F, 0x87, 0x8F, 0x80, 0x2E, 0x2B, + 0x01, 0xCA, 0x01, 0x01, 0x01, 0x05, 0xD3, 0xFB, 0xD2, 0xB2, 0x5C, 0x61, + 0x03, 0x01, 0xE4, 0x03, 0x06, 0x38, 0x6F, 0x4F, 0x02, 0x64, 0x00, 0x01, + 0x00, 0x22, 0x00, 0x00, 0x02, 0x67, 0x04, 0x37, 0x00, 0x12, 0x00, 0x00, + 0x61, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x02, 0x67, 0xFF, 0x37, 0x5E, 0x3C, + 0x24, 0x3E, 0x13, 0x0B, 0x2A, 0x37, 0x1B, 0x7F, 0xC9, 0x76, 0x02, 0x86, + 0x52, 0x5B, 0x26, 0x01, 0x02, 0xDC, 0x01, 0x02, 0x02, 0x58, 0xBC, 0x96, + 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x02, 0xBA, 0x04, 0x37, 0x00, 0x12, + 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x75, 0x76, 0xCA, + 0x7E, 0x1C, 0x36, 0x2A, 0x0B, 0x13, 0x3D, 0x25, 0x3B, 0x5F, 0x37, 0x02, + 0x8D, 0x96, 0xBC, 0x58, 0x02, 0x02, 0x01, 0xDC, 0x02, 0x01, 0x26, 0x5B, + 0x52, 0xFD, 0x7A, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5E, 0x02, 0xC9, 0x04, + 0x39, 0x00, 0x03, 0x00, 0x17, 0x00, 0x00, 0x53, 0x11, 0x33, 0x11, 0x03, + 0x11, 0x33, 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x75, 0xFE, 0xFE, 0xF6, 0x05, + 0x1D, 0x82, 0x66, 0x18, 0x2D, 0x0F, 0x0E, 0x45, 0x24, 0x3F, 0x65, 0x3A, + 0xFE, 0x5E, 0x01, 0xA2, 0xFE, 0x5E, 0x01, 0xA2, 0x04, 0x2E, 0xB2, 0x5C, + 0x61, 0x03, 0x02, 0xE3, 0x03, 0x06, 0x38, 0x6E, 0x51, 0xFD, 0x9D, 0xFF, + 0xFF, 0x00, 0x75, 0x00, 0x00, 0x02, 0xD3, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, 0xD2, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x25, 0xFE, 0x1C, 0x02, 0xC9, 0x04, 0x39, 0x06, 0x26, 0x03, + 0x54, 0x00, 0x00, 0x00, 0x06, 0x06, 0xE7, 0xF0, 0x00, 0xFF, 0xFF, 0x00, + 0x3B, 0x00, 0x00, 0x02, 0xFE, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x54, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0x8E, 0xF7, 0x00, 0xFF, 0xFF, 0xFF, 0xAF, 0x00, + 0x00, 0x02, 0xC9, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEA, 0xFF, 0x57, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x56, 0x00, + 0x00, 0x02, 0xE3, 0x05, 0xED, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xF8, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x02, + 0xC9, 0x05, 0xE9, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x00, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5D, 0xFE, 0x38, 0x02, + 0xC9, 0x04, 0x39, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0xFF, 0xF4, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x5D, 0xFE, 0x38, 0x02, + 0xC9, 0x05, 0xA2, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x27, 0x0A, + 0x8C, 0xFF, 0xF4, 0xF9, 0x6D, 0x00, 0x06, 0x06, 0xEB, 0xFB, 0x00, 0xFF, + 0xFF, 0xFF, 0xD8, 0xFE, 0x8F, 0x02, 0xC9, 0x04, 0x39, 0x06, 0x26, 0x03, + 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x53, 0xF9, 0x9B, 0x00, + 0x02, 0x00, 0x75, 0x00, 0x00, 0x04, 0x51, 0x04, 0x2E, 0x00, 0x13, 0x00, + 0x17, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x21, 0x35, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x11, 0x21, + 0x01, 0x21, 0x01, 0x75, 0x01, 0xF8, 0xCF, 0xE5, 0xE9, 0xD4, 0xFE, 0x9F, + 0x01, 0x46, 0x72, 0x6B, 0x68, 0x70, 0xE4, 0x01, 0xCE, 0xFE, 0xCD, 0x01, + 0x11, 0x01, 0x3B, 0x04, 0x2E, 0xBD, 0xA8, 0xA2, 0xB6, 0xBD, 0x4A, 0x4E, + 0x50, 0x4B, 0xFC, 0x9F, 0x01, 0xDE, 0xFE, 0x22, 0x00, 0x02, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x51, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, + 0x73, 0x11, 0x33, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, + 0x35, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x03, 0x01, 0x21, 0x01, + 0x75, 0xF5, 0xE4, 0x70, 0x68, 0x6B, 0x72, 0xFE, 0xBA, 0x01, 0x61, 0xD4, + 0xE9, 0xE5, 0xCF, 0x68, 0x01, 0x33, 0x01, 0x19, 0xFE, 0xC5, 0x04, 0x2E, + 0xFC, 0x9F, 0x4B, 0x4F, 0x4F, 0x4A, 0xBD, 0xB5, 0xA3, 0xA8, 0xBD, 0x02, + 0x50, 0x01, 0xDE, 0xFE, 0x22, 0x00, 0x01, 0x00, 0x43, 0xFF, 0xE7, 0x03, + 0xDD, 0x04, 0x43, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, + 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x02, 0x16, 0x81, 0xCA, 0x7D, 0x0B, 0xF8, 0x0C, 0x6E, + 0x5F, 0x5C, 0x6B, 0x4D, 0x45, 0xB7, 0x98, 0x9D, 0x6B, 0xC2, 0x82, 0x80, + 0xC0, 0x70, 0x07, 0xEC, 0x05, 0x69, 0x57, 0x53, 0x64, 0x4A, 0x46, 0xBE, + 0x9E, 0x96, 0x75, 0xCD, 0x19, 0x50, 0x99, 0x6F, 0x0A, 0x4E, 0x54, 0x49, + 0x38, 0x30, 0x3B, 0x0F, 0x26, 0x20, 0x9A, 0x79, 0x62, 0x94, 0x52, 0x53, + 0x97, 0x68, 0x0A, 0x44, 0x5A, 0x4A, 0x37, 0x2F, 0x3D, 0x0F, 0x27, 0x22, + 0x8F, 0x74, 0x68, 0x99, 0x55, 0x00, 0x02, 0x00, 0x43, 0xFE, 0x5B, 0x03, + 0xDD, 0x04, 0x43, 0x00, 0x11, 0x00, 0x3D, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x11, 0x37, 0x11, 0x14, 0x16, 0x33, 0x32, 0x32, 0x36, 0x33, 0x15, + 0x06, 0x06, 0x22, 0x13, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, + 0x73, 0x95, 0x9B, 0xE8, 0x36, 0x3A, 0x11, 0x32, 0x30, 0x0B, 0x11, 0x37, + 0x40, 0x85, 0x81, 0xCA, 0x7D, 0x0B, 0xF8, 0x0C, 0x6E, 0x5F, 0x5C, 0x6B, + 0x4D, 0x45, 0xB7, 0x98, 0x9D, 0x6B, 0xC2, 0x82, 0x80, 0xC0, 0x70, 0x07, + 0xEC, 0x05, 0x69, 0x57, 0x53, 0x64, 0x4A, 0x46, 0xBE, 0x9E, 0x96, 0x75, + 0xCD, 0xFE, 0x5B, 0x8E, 0x88, 0x01, 0xCE, 0x02, 0xFE, 0x3F, 0x2E, 0x2B, + 0x01, 0xCA, 0x01, 0x02, 0x01, 0x8C, 0x50, 0x99, 0x6F, 0x0A, 0x4E, 0x54, + 0x49, 0x38, 0x30, 0x3B, 0x0F, 0x26, 0x20, 0x9A, 0x79, 0x62, 0x94, 0x52, + 0x53, 0x97, 0x68, 0x0A, 0x44, 0x5A, 0x4A, 0x37, 0x2F, 0x3D, 0x0F, 0x27, + 0x22, 0x8F, 0x74, 0x68, 0x99, 0x55, 0x00, 0x02, 0x00, 0x43, 0xFE, 0x5E, + 0x03, 0xDD, 0x04, 0x43, 0x00, 0x11, 0x00, 0x3D, 0x00, 0x00, 0x41, 0x1E, + 0x03, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x27, 0x03, 0x05, 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0x13, + 0x58, 0x75, 0x4D, 0x3C, 0x20, 0x35, 0x55, 0x1E, 0x52, 0x2B, 0x84, 0x51, + 0x4F, 0x78, 0x5E, 0x2A, 0xC4, 0x01, 0xA6, 0x81, 0xCA, 0x7D, 0x0B, 0xF8, + 0x0C, 0x6E, 0x5F, 0x5C, 0x6B, 0x4D, 0x45, 0xB7, 0x98, 0x9D, 0x6B, 0xC2, + 0x82, 0x80, 0xC0, 0x70, 0x07, 0xEC, 0x05, 0x69, 0x57, 0x53, 0x64, 0x4A, + 0x46, 0xBE, 0x9E, 0x96, 0x75, 0xCD, 0x01, 0x1A, 0xA6, 0xCB, 0x6C, 0x27, + 0x32, 0x1A, 0x8F, 0x27, 0x4E, 0x46, 0x77, 0x47, 0x01, 0x56, 0xD1, 0x50, + 0x99, 0x6F, 0x0A, 0x4E, 0x54, 0x49, 0x38, 0x30, 0x3B, 0x0F, 0x26, 0x20, + 0x9A, 0x79, 0x62, 0x94, 0x52, 0x53, 0x97, 0x68, 0x0A, 0x44, 0x5A, 0x4A, + 0x37, 0x2F, 0x3D, 0x0F, 0x27, 0x22, 0x8F, 0x74, 0x68, 0x99, 0x55, 0xFF, + 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x48, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0x6D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFE, 0x5E, 0x03, 0xDD, 0x04, 0x43, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x00, 0xD8, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0x6D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFE, 0x1C, 0x03, 0xDD, 0x04, 0x43, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x0E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x05, 0xE9, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x11, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFE, 0x38, 0x03, 0xDD, 0x04, 0x43, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x12, 0xF9, 0x6D, 0xFF, + 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x07, 0x5B, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x18, 0x01, 0x5E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x07, 0x10, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x19, 0x00, 0x53, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x43, 0xFE, 0x38, 0x03, 0xDD, 0x05, 0xE9, 0x06, 0x26, 0x03, + 0x67, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x01, 0x12, 0xF9, 0x6D, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x11, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFF, + 0xE7, 0x03, 0xDD, 0x04, 0x43, 0x06, 0x06, 0x03, 0x67, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x42, 0xFF, 0xE9, 0x03, 0xDA, 0x04, 0x41, 0x00, 0x2A, 0x00, + 0x00, 0x53, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, + 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, + 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x37, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x5A, 0x09, 0xEC, 0xC1, 0x83, + 0xC2, 0x6B, 0x9C, 0x99, 0xB7, 0x44, 0x4D, 0x6B, 0x5C, 0x5E, 0x6D, 0x0A, + 0xFB, 0x0A, 0x7C, 0xCB, 0x83, 0x84, 0xCD, 0x73, 0x94, 0x9E, 0xBE, 0x46, + 0x4C, 0x66, 0x53, 0x57, 0x68, 0x05, 0x02, 0xED, 0x9D, 0xB7, 0x51, 0x93, + 0x62, 0x79, 0x9C, 0x20, 0x26, 0x0F, 0x39, 0x30, 0x38, 0x44, 0x4E, 0x4D, + 0x06, 0x6F, 0x99, 0x50, 0x54, 0x98, 0x68, 0x71, 0x92, 0x21, 0x28, 0x0F, + 0x3D, 0x2F, 0x37, 0x45, 0x56, 0x43, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, + 0x04, 0xAF, 0x05, 0xE6, 0x00, 0x2B, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x81, 0x79, 0xD8, 0x90, 0x89, 0xDF, 0x85, 0x79, + 0x66, 0x91, 0xAE, 0x74, 0xD0, 0x89, 0xB7, 0x9A, 0x6A, 0x7E, 0x8C, 0x77, + 0x79, 0x53, 0x3D, 0x59, 0x31, 0x78, 0x69, 0x67, 0x81, 0x04, 0x4D, 0x7F, + 0xB8, 0x62, 0x5C, 0xB0, 0x80, 0x77, 0xA8, 0x20, 0x10, 0x0B, 0xCA, 0x9C, + 0x7D, 0xB9, 0x64, 0xD8, 0x76, 0x5F, 0x62, 0x7A, 0xD3, 0x3D, 0x62, 0x39, + 0x5B, 0x7A, 0x77, 0x61, 0xFB, 0xCF, 0x00, 0x01, 0x00, 0x81, 0xFF, 0xEC, + 0x04, 0xBA, 0x05, 0xE6, 0x00, 0x33, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x15, 0x14, + 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, 0x34, 0x3E, 0x02, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x01, 0x7C, 0xFB, 0xF6, 0xC4, 0x76, + 0xC7, 0x79, 0x22, 0x2E, 0x22, 0x40, 0x5E, 0x5D, 0x40, 0x62, 0xC2, 0x8F, + 0x5A, 0xA3, 0x2B, 0x49, 0x20, 0x66, 0x53, 0x56, 0x6A, 0x42, 0x60, 0x61, + 0x42, 0x26, 0x32, 0x26, 0x6E, 0x51, 0x58, 0x67, 0x04, 0x1F, 0xFB, 0xE1, + 0x04, 0x1F, 0xE2, 0xE5, 0x54, 0xA5, 0x7A, 0x44, 0x5C, 0x46, 0x42, 0x2C, + 0x2D, 0x47, 0x45, 0x57, 0x78, 0x58, 0x64, 0x9A, 0x55, 0x27, 0x1C, 0xC8, + 0x0F, 0x26, 0x46, 0x45, 0x39, 0x4F, 0x43, 0x4B, 0x67, 0x4D, 0x3B, 0x4E, + 0x40, 0x4A, 0x36, 0x55, 0x56, 0x6D, 0x00, 0x02, 0x00, 0x12, 0xFF, 0xFD, + 0x02, 0xA1, 0x05, 0x49, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x13, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x33, 0x17, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x02, 0x9A, 0xFD, 0x78, 0xB2, 0xFF, + 0x2F, 0x3D, 0x17, 0x3E, 0x14, 0x09, 0x1E, 0x56, 0x29, 0xA2, 0x9E, 0x04, + 0x2E, 0xCB, 0xCB, 0x01, 0x1B, 0xFB, 0xE8, 0x39, 0x2E, 0x02, 0xCA, 0x03, + 0x02, 0x89, 0x8A, 0x00, 0x03, 0x00, 0x12, 0xFE, 0x5A, 0x02, 0xAC, 0x05, + 0x49, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x53, 0x35, 0x32, + 0x16, 0x33, 0x32, 0x36, 0x27, 0x27, 0x33, 0x17, 0x16, 0x06, 0x23, 0x22, + 0x26, 0x01, 0x15, 0x21, 0x35, 0x13, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x33, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0xCA, 0x12, 0x43, + 0x18, 0x43, 0x39, 0x04, 0x04, 0xF6, 0x04, 0x07, 0xA7, 0xAE, 0x2D, 0x46, + 0x01, 0xB6, 0xFD, 0x78, 0xB2, 0xFF, 0x2F, 0x3D, 0x17, 0x3E, 0x14, 0x09, + 0x1E, 0x56, 0x29, 0xA2, 0x9E, 0xFE, 0x5E, 0xCC, 0x01, 0x35, 0x38, 0x81, + 0x85, 0x96, 0xA2, 0x02, 0x05, 0xD2, 0xCB, 0xCB, 0x01, 0x1B, 0xFB, 0xE8, + 0x39, 0x2E, 0x02, 0xCA, 0x03, 0x02, 0x89, 0x8A, 0x00, 0x02, 0x00, 0x12, + 0xFE, 0x5A, 0x02, 0x8B, 0x05, 0x49, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x01, 0x35, 0x21, 0x15, 0x01, 0xF2, 0x9C, 0xA7, + 0xFE, 0x37, 0x40, 0x17, 0x32, 0x14, 0x0A, 0x1E, 0x52, 0xFD, 0xF7, 0x02, + 0x74, 0xFE, 0x5A, 0x95, 0x89, 0x05, 0xD1, 0xFA, 0x58, 0x41, 0x38, 0x01, + 0x01, 0xCA, 0x03, 0x03, 0x05, 0x09, 0xCB, 0xCB, 0x00, 0x03, 0xFF, 0xB1, + 0xFF, 0xED, 0x03, 0x72, 0x05, 0x49, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x27, + 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x06, 0x07, 0x01, + 0x27, 0x25, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x11, + 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x02, 0x20, 0x83, 0xA3, 0x4B, 0xFE, + 0x46, 0x31, 0x2D, 0x39, 0x32, 0x30, 0x20, 0x40, 0x46, 0x2C, 0xFE, 0xDE, + 0x83, 0x01, 0x0C, 0x48, 0xBA, 0x60, 0x99, 0xBA, 0xB2, 0xFD, 0xEF, 0xFE, + 0xFE, 0x65, 0x02, 0x74, 0x13, 0x5C, 0x9E, 0x62, 0x01, 0x27, 0xFE, 0xA6, + 0x3D, 0x3F, 0x34, 0x2B, 0x27, 0x34, 0x05, 0x04, 0x11, 0x2A, 0x23, 0xFF, + 0x00, 0x9A, 0xE9, 0x40, 0x4E, 0x9F, 0x7F, 0x79, 0x8C, 0x01, 0xA2, 0x03, + 0xBA, 0xFC, 0x46, 0x01, 0xD4, 0xCB, 0xCB, 0x00, 0x02, 0x00, 0x12, 0xFF, + 0xE8, 0x06, 0x6B, 0x05, 0x49, 0x00, 0x3E, 0x00, 0x42, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x02, + 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, + 0x35, 0x21, 0x15, 0x04, 0x94, 0xA1, 0xED, 0x82, 0x81, 0xEB, 0x9C, 0x85, + 0xD0, 0x80, 0x0A, 0xF8, 0x09, 0x3B, 0x5F, 0x41, 0x52, 0x78, 0x40, 0x40, + 0x79, 0x58, 0x3F, 0x68, 0x3E, 0x2C, 0x35, 0x50, 0x92, 0x55, 0x3A, 0x90, + 0xAC, 0x65, 0x64, 0x9C, 0x59, 0xFE, 0x46, 0x30, 0x3A, 0x97, 0x44, 0x4D, + 0xA8, 0xB3, 0x5C, 0x94, 0x90, 0x75, 0xD0, 0xFA, 0xF7, 0x02, 0x74, 0x18, + 0x8E, 0xFB, 0xA4, 0xA5, 0xFC, 0x8E, 0x67, 0xB4, 0x77, 0x38, 0x56, 0x31, + 0x55, 0x9C, 0x6A, 0x72, 0xA0, 0x54, 0x22, 0x40, 0x2E, 0x21, 0x25, 0x5A, + 0x56, 0x3A, 0x68, 0x41, 0x44, 0x8F, 0x70, 0x04, 0x13, 0xFB, 0xFD, 0x48, + 0x3B, 0x4C, 0x3E, 0x44, 0x6C, 0x40, 0x80, 0x6D, 0x63, 0xA3, 0x62, 0x03, + 0x7B, 0xCB, 0xCB, 0x00, 0x02, 0x00, 0x2C, 0xFE, 0xE5, 0x02, 0xBC, 0x04, + 0x31, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x73, 0x35, 0x21, 0x15, 0x03, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x33, 0x02, 0x89, 0xB3, 0xFE, 0x2F, 0x3D, 0x17, 0x3E, + 0x14, 0x0A, 0x1E, 0x57, 0x28, 0xA2, 0x9E, 0xCB, 0xCB, 0xFE, 0xE5, 0x04, + 0x17, 0x3A, 0x2E, 0x02, 0x01, 0xCB, 0x03, 0x02, 0x89, 0x8A, 0x00, 0x03, + 0x00, 0x12, 0xFF, 0xFD, 0x02, 0xA1, 0x05, 0x49, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x17, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, + 0x13, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x33, 0x17, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x35, 0x02, 0x9A, 0xFD, 0x78, 0x02, 0x88, 0xFD, 0x78, + 0xB2, 0xFF, 0x2F, 0x3D, 0x17, 0x3E, 0x14, 0x09, 0x1E, 0x56, 0x29, 0xA2, + 0x9E, 0x02, 0xD1, 0xAD, 0xAD, 0x01, 0x5D, 0xCB, 0xCB, 0x01, 0x1B, 0xFB, + 0xE8, 0x39, 0x2E, 0x02, 0xCA, 0x03, 0x02, 0x89, 0x8A, 0xFF, 0xFF, 0x00, + 0x12, 0xFE, 0x5E, 0x02, 0xB9, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x95, 0x00, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x12, 0xFF, 0xFD, 0x03, 0x14, 0x06, 0x2C, 0x04, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x28, 0x01, 0xA9, 0x00, 0x10, 0xFF, 0xFF, 0x00, + 0x12, 0xFE, 0x1C, 0x02, 0xA1, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE7, 0x00, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x12, 0xFF, 0xFD, 0x02, 0xA1, 0x07, 0x04, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x42, 0x01, 0x1B, 0xFF, 0xFF, 0x00, + 0x12, 0xFE, 0x38, 0x02, 0xA1, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0xA3, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, + 0x12, 0xFE, 0x8F, 0x02, 0xC0, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x02, 0xF9, 0x9B, 0xFF, 0xFF, 0x00, + 0x12, 0xFE, 0x3C, 0x03, 0x06, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0xFF, 0xF9, 0x79, 0xFF, 0xFF, 0xFF, + 0xD8, 0xFF, 0xFD, 0x02, 0xAE, 0x07, 0x03, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xF0, 0x01, 0x1B, 0x00, 0x02, 0x00, + 0x75, 0xFF, 0xFD, 0x02, 0x52, 0x05, 0x49, 0x00, 0x03, 0x00, 0x13, 0x00, + 0x00, 0x41, 0x15, 0x21, 0x35, 0x03, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x33, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x02, 0x4B, 0xFE, + 0xAE, 0x84, 0xFF, 0x2F, 0x3D, 0x17, 0x3F, 0x13, 0x09, 0x1E, 0x55, 0x2A, + 0xA1, 0x9F, 0x04, 0x2E, 0xCB, 0xCB, 0x01, 0x1B, 0xFB, 0xE8, 0x39, 0x2E, + 0x02, 0xCA, 0x03, 0x02, 0x89, 0x8A, 0x00, 0x03, 0x00, 0x75, 0xFE, 0x5A, + 0x02, 0x5E, 0x05, 0x49, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, + 0x53, 0x35, 0x32, 0x16, 0x33, 0x32, 0x36, 0x27, 0x27, 0x33, 0x17, 0x16, + 0x06, 0x23, 0x22, 0x26, 0x01, 0x15, 0x21, 0x35, 0x03, 0x33, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x33, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, + 0x7C, 0x11, 0x43, 0x19, 0x42, 0x39, 0x04, 0x04, 0xF6, 0x04, 0x08, 0xA8, + 0xAD, 0x2D, 0x47, 0x01, 0xB6, 0xFE, 0xAE, 0x84, 0xFF, 0x2F, 0x3D, 0x17, + 0x3F, 0x13, 0x09, 0x1E, 0x55, 0x2A, 0xA1, 0x9F, 0xFE, 0x5E, 0xCC, 0x01, + 0x35, 0x38, 0x81, 0x85, 0x96, 0xA2, 0x02, 0x05, 0xD2, 0xCB, 0xCB, 0x01, + 0x1B, 0xFB, 0xE8, 0x39, 0x2E, 0x02, 0xCA, 0x03, 0x02, 0x89, 0x8A, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x02, 0x6A, 0x05, 0x49, 0x06, 0x26, 0x03, + 0x87, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x00, 0x38, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFF, 0xFD, 0x02, 0xC6, 0x06, 0x2C, 0x04, 0x26, 0x03, + 0x87, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x28, 0x01, 0x5B, 0x00, 0x10, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x1C, 0x02, 0x52, 0x05, 0x49, 0x06, 0x26, 0x03, + 0x87, 0x00, 0x00, 0x00, 0x06, 0x06, 0xE7, 0x50, 0x00, 0xFF, 0xFF, 0x00, + 0x5D, 0xFF, 0xFD, 0x02, 0x52, 0x07, 0x04, 0x06, 0x26, 0x03, 0x87, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0xFF, 0xF4, 0x01, 0x1B, 0xFF, 0xFF, 0x00, + 0x75, 0xFE, 0x38, 0x02, 0x52, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x54, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, + 0x38, 0xFE, 0x8F, 0x02, 0x71, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0xB3, 0xF9, 0x9B, 0xFF, 0xFF, 0xFF, + 0xF4, 0xFE, 0x3C, 0x02, 0xB7, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0xB0, 0xF9, 0x79, 0xFF, 0xFF, 0xFF, + 0x8A, 0xFF, 0xFD, 0x02, 0x60, 0x07, 0x03, 0x06, 0x26, 0x03, 0x87, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xA1, 0x01, 0x1B, 0x00, 0x01, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x04, 0x2E, 0x00, 0x16, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x11, 0x33, 0x11, 0x23, 0x03, 0x33, 0x06, 0x06, 0x01, 0xEF, + 0x6F, 0xAB, 0x60, 0xFF, 0x71, 0x65, 0x43, 0x69, 0x3D, 0xFE, 0xF8, 0x01, + 0x2B, 0x32, 0xB9, 0x14, 0x61, 0xBB, 0x87, 0x02, 0x9F, 0xFD, 0x89, 0x73, + 0x7A, 0x37, 0x73, 0x58, 0x02, 0x62, 0xFB, 0xD2, 0x01, 0x0E, 0x8D, 0x95, + 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, + 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x91, + 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x63, 0x00, 0x00, 0x02, 0x00, 0x75, + 0xFF, 0xEC, 0x04, 0xE4, 0x05, 0x20, 0x00, 0x0A, 0x00, 0x21, 0x00, 0x00, + 0x41, 0x35, 0x33, 0x32, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x01, + 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x11, 0x33, 0x11, 0x23, 0x03, 0x33, 0x06, 0x06, 0x03, 0xAA, + 0x46, 0x22, 0xD2, 0x6C, 0x5E, 0xFD, 0xD5, 0x6F, 0xAB, 0x60, 0xFF, 0x71, + 0x65, 0x43, 0x69, 0x3D, 0xFE, 0xF8, 0x01, 0x2B, 0x32, 0xB9, 0x03, 0x8D, + 0xA1, 0x21, 0xD1, 0xD8, 0x60, 0x5B, 0xFC, 0x5F, 0x61, 0xBB, 0x87, 0x02, + 0x9F, 0xFD, 0x89, 0x73, 0x7A, 0x37, 0x73, 0x58, 0x02, 0x62, 0xFB, 0xD2, + 0x01, 0x0E, 0x8D, 0x95, 0x00, 0x01, 0x00, 0x75, 0xFE, 0x5E, 0x04, 0xB5, + 0x04, 0x2E, 0x00, 0x25, 0x00, 0x00, 0x53, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, + 0x33, 0x15, 0x23, 0x22, 0x26, 0x35, 0x35, 0x33, 0x14, 0x0E, 0x02, 0x23, + 0x22, 0x2E, 0x02, 0x35, 0x33, 0x11, 0x75, 0xFF, 0x39, 0x67, 0x42, 0x43, + 0x63, 0x37, 0xFE, 0x2B, 0x32, 0x27, 0x5C, 0x90, 0x8C, 0x2E, 0x34, 0x52, + 0x60, 0x2B, 0x2C, 0x60, 0x54, 0x34, 0x2E, 0xFE, 0x5E, 0x05, 0xD0, 0xFD, + 0x95, 0x57, 0x72, 0x37, 0x37, 0x71, 0x58, 0x02, 0x6B, 0xFC, 0xF7, 0x2F, + 0x29, 0xCD, 0x8C, 0x85, 0x65, 0x6F, 0x92, 0x52, 0x23, 0x23, 0x52, 0x92, + 0x6F, 0xFC, 0xE8, 0x00, 0x02, 0x00, 0x12, 0xFF, 0xEC, 0x05, 0x2B, 0x04, + 0x2E, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, + 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x11, 0x33, 0x11, 0x23, 0x03, 0x33, 0x06, 0x06, 0x05, 0x2B, + 0xFA, 0xE7, 0x02, 0x29, 0x6F, 0xAB, 0x60, 0xFE, 0x72, 0x65, 0x43, 0x69, + 0x3C, 0xFF, 0xF8, 0x01, 0x2B, 0x32, 0xB9, 0x02, 0xA8, 0xA2, 0xA2, 0xFD, + 0x44, 0x61, 0xBB, 0x87, 0x02, 0x9F, 0xFD, 0x89, 0x73, 0x7A, 0x37, 0x73, + 0x58, 0x02, 0x62, 0xFB, 0xD2, 0x01, 0x0E, 0x8D, 0x95, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xC4, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x89, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAE, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xA2, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE5, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xA8, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x06, 0x61, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x90, 0x00, 0xFD, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, 0xAD, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFE, 0x5B, 0x04, 0x3E, 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x96, 0x02, 0x60, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xAE, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x06, 0xD4, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, + 0xEC, 0x04, 0x31, 0x07, 0x26, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xE4, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, + 0x31, 0x07, 0x1A, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0xEB, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x07, + 0x26, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE8, 0xF8, + 0x00, 0xFF, 0xFF, 0x00, 0x66, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEA, 0x0E, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xED, 0x06, 0x26, 0x03, + 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, 0xAF, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x3B, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, + 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x0C, 0xF9, 0x6D, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x53, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, + 0x91, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0x6F, 0xF9, 0x75, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x3C, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, + 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xBB, 0xF9, 0x79, 0xFF, + 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x07, 0x26, 0x06, 0x26, 0x03, + 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xEA, 0x63, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x07, 0x12, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xE9, 0x00, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFE, 0x38, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x5F, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x36, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0xE4, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x94, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x89, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0xE4, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x94, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xC4, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0xE4, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x94, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x36, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xEC, 0x04, 0xE4, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x94, 0x00, + 0x00, 0x00, 0x06, 0x06, 0xEC, 0x63, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x38, 0x04, 0xE4, 0x05, 0x20, 0x06, 0x26, 0x03, 0x94, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x5F, 0xF9, 0x6D, 0x00, 0x01, 0x00, 0x75, 0xFF, + 0xEB, 0x04, 0x31, 0x04, 0x2E, 0x00, 0x15, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x02, 0x53, 0x94, 0xD6, 0x74, + 0xFF, 0x34, 0x64, 0x47, 0x48, 0x63, 0x35, 0xFE, 0x73, 0xD6, 0x15, 0x6B, + 0xC6, 0x88, 0x02, 0x8A, 0xFD, 0x85, 0x4C, 0x6A, 0x38, 0x38, 0x6A, 0x4C, + 0x02, 0x7B, 0xFD, 0x76, 0x88, 0xC6, 0x6B, 0xFF, 0xFF, 0x00, 0x75, 0xFF, + 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x01, 0x89, 0x00, 0x00, 0x00, 0x02, 0x00, 0x12, 0xFF, + 0xEB, 0x05, 0x2B, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x01, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, + 0x06, 0x05, 0x2B, 0xFA, 0xE7, 0x02, 0x8D, 0x94, 0xD7, 0x73, 0xFE, 0x34, + 0x64, 0x48, 0x48, 0x63, 0x34, 0xFF, 0x74, 0xD6, 0x02, 0xA8, 0xA2, 0xA2, + 0xFD, 0x43, 0x6B, 0xC6, 0x88, 0x02, 0x8A, 0xFD, 0x85, 0x4C, 0x6A, 0x38, + 0x38, 0x6A, 0x4C, 0x02, 0x7B, 0xFD, 0x76, 0x88, 0xC6, 0x6B, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE5, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xA8, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xAE, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAE, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFE, 0x3C, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAF, 0xF9, 0x79, 0xFF, 0xFF, + 0x00, 0x66, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x06, 0x06, 0xEA, 0x0E, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, + 0x04, 0x31, 0x07, 0x26, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0xE4, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x3B, 0x04, 0x31, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, + 0x00, 0x00, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, + 0x07, 0x1A, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xEB, + 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x26, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE8, 0xF8, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x06, 0xD4, 0x06, 0x26, + 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xF8, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFE, 0x38, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x53, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xC4, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x36, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0xE4, 0x05, 0x20, 0x00, 0x0A, 0x00, 0x20, + 0x00, 0x00, 0x41, 0x35, 0x33, 0x32, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, + 0x23, 0x01, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x03, + 0xAA, 0x46, 0x22, 0xD2, 0x6C, 0x5E, 0xFE, 0x39, 0x94, 0xD6, 0x74, 0xFF, + 0x34, 0x64, 0x47, 0x48, 0x63, 0x35, 0xFE, 0x73, 0xD6, 0x03, 0x8D, 0xA1, + 0x21, 0xD1, 0xD8, 0x60, 0x5B, 0xFC, 0x5E, 0x6B, 0xC6, 0x88, 0x02, 0x8A, + 0xFD, 0x85, 0x4C, 0x6A, 0x38, 0x38, 0x6A, 0x4C, 0x02, 0x7B, 0xFD, 0x76, + 0x88, 0xC6, 0x6B, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0xE4, 0x05, + 0xE8, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, + 0x89, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x38, 0x04, 0xE4, 0x05, + 0x20, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x53, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0xE4, 0x05, + 0xE8, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, + 0xC4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0xE4, 0x05, + 0xE8, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, + 0x36, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0xE4, 0x05, + 0xD6, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x62, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, 0xAC, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xED, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, 0xAE, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xA2, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xB2, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x12, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE9, 0x00, 0xB2, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5B, 0x04, 0x31, 0x04, 0x2E, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5E, 0x01, 0xA3, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x06, 0x61, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x90, 0x00, 0xFD, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xD6, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x62, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x26, 0x06, 0x26, 0x03, + 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xEA, 0x63, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFE, 0x53, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0x63, 0xF9, 0x75, 0x00, 0x01, 0x00, + 0x16, 0x00, 0x00, 0x04, 0x51, 0x04, 0x2E, 0x00, 0x0D, 0x00, 0x00, 0x61, + 0x01, 0x21, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x21, + 0x01, 0x01, 0xA8, 0xFE, 0x6E, 0x01, 0x0E, 0xC3, 0x1F, 0x36, 0x1A, 0x3D, + 0x1A, 0x34, 0x1F, 0xC0, 0x01, 0x0B, 0xFE, 0x6E, 0x04, 0x2E, 0xFD, 0xCD, + 0x5C, 0xB8, 0x5D, 0x5D, 0xB8, 0x5C, 0x02, 0x33, 0xFB, 0xD2, 0x00, 0x01, + 0x00, 0x16, 0x00, 0x00, 0x04, 0x51, 0x04, 0x2E, 0x00, 0x0D, 0x00, 0x00, + 0x41, 0x01, 0x21, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, + 0x21, 0x01, 0x02, 0xBF, 0x01, 0x92, 0xFE, 0xF2, 0xC3, 0x1F, 0x35, 0x1B, + 0x3D, 0x1A, 0x34, 0x1E, 0xC1, 0xFE, 0xF5, 0x01, 0x92, 0x04, 0x2E, 0xFB, + 0xD2, 0x02, 0x33, 0x5C, 0xB8, 0x5D, 0x5D, 0xB8, 0x5C, 0xFD, 0xCD, 0x04, + 0x2E, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x04, 0x51, 0x05, 0xD6, 0x06, + 0x26, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x43, 0x00, 0xFF, + 0xFF, 0x00, 0x16, 0xFE, 0x38, 0x04, 0x51, 0x04, 0x2E, 0x06, 0x26, 0x03, + 0xD2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x33, 0xF9, 0x6D, 0x00, + 0x01, 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x04, 0x2E, 0x00, 0x23, 0x00, + 0x00, 0x61, 0x01, 0x21, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, + 0x13, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x21, + 0x01, 0x21, 0x03, 0x2E, 0x02, 0x27, 0x33, 0x0E, 0x02, 0x07, 0x03, 0x01, + 0x60, 0xFE, 0xB8, 0x01, 0x0B, 0x6D, 0x1C, 0x38, 0x1C, 0x23, 0x1D, 0x3B, + 0x1E, 0x70, 0xED, 0x6E, 0x1E, 0x3B, 0x1C, 0x23, 0x1C, 0x37, 0x1C, 0x6E, + 0x01, 0x0E, 0xFE, 0xB7, 0xFE, 0xFA, 0x81, 0x12, 0x24, 0x23, 0x12, 0x33, + 0x12, 0x24, 0x23, 0x14, 0x82, 0x04, 0x2E, 0xFE, 0x67, 0x6F, 0xF1, 0x7C, + 0x7B, 0xF2, 0x6F, 0x01, 0x99, 0xFE, 0x67, 0x6F, 0xF2, 0x7B, 0x7B, 0xF1, + 0x70, 0x01, 0x99, 0xFB, 0xD2, 0x01, 0xBB, 0x42, 0x8C, 0x8F, 0x45, 0x45, + 0x8F, 0x8C, 0x42, 0xFE, 0x45, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x06, + 0x5B, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8B, 0x00, 0xE6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x06, + 0x5B, 0x04, 0x2E, 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, 0x21, 0x03, 0x26, + 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0x23, 0x03, 0x26, 0x26, 0x27, + 0x33, 0x06, 0x06, 0x07, 0x03, 0x21, 0x01, 0x21, 0x13, 0x1E, 0x02, 0x17, + 0x23, 0x3E, 0x02, 0x37, 0x13, 0x05, 0x13, 0x01, 0x48, 0xFE, 0xF5, 0x6D, + 0x1D, 0x37, 0x1C, 0x22, 0x1D, 0x3B, 0x1E, 0x70, 0xEC, 0x6F, 0x1E, 0x3A, + 0x1D, 0x23, 0x1B, 0x37, 0x1D, 0x6E, 0xFE, 0xF3, 0x01, 0x48, 0x01, 0x06, + 0x81, 0x13, 0x24, 0x23, 0x12, 0x33, 0x12, 0x23, 0x24, 0x13, 0x82, 0x04, + 0x2E, 0xFB, 0xD2, 0x01, 0x99, 0x6E, 0xF2, 0x7C, 0x7B, 0xF2, 0x6F, 0xFE, + 0x67, 0x01, 0x99, 0x6F, 0xF1, 0x7C, 0x7B, 0xF2, 0x6F, 0xFE, 0x67, 0x04, + 0x2E, 0xFE, 0x44, 0x41, 0x8C, 0x8F, 0x45, 0x45, 0x8F, 0x8C, 0x41, 0x01, + 0xBC, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x94, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0xAA, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x6F, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x05, 0xE9, 0x06, + 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x38, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x38, 0x06, 0x5B, 0x04, 0x2E, 0x06, + 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x38, 0xF9, + 0x6D, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x06, 0x61, 0x06, + 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x90, 0x01, 0xE3, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x19, 0x00, 0x00, 0x04, 0x31, 0x04, 0x2E, 0x00, + 0x1B, 0x00, 0x00, 0x73, 0x01, 0x07, 0x01, 0x21, 0x17, 0x16, 0x16, 0x17, + 0x23, 0x36, 0x36, 0x37, 0x37, 0x21, 0x01, 0x37, 0x01, 0x21, 0x27, 0x26, + 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x07, 0x19, 0x01, 0xB0, 0x03, 0xFE, + 0x6B, 0x01, 0x1B, 0x6E, 0x2B, 0x4C, 0x27, 0x5F, 0x28, 0x4C, 0x2C, 0x71, + 0x01, 0x16, 0xFE, 0x65, 0x03, 0x01, 0xA9, 0xFE, 0xE6, 0x81, 0x2B, 0x4B, + 0x26, 0x58, 0x27, 0x4B, 0x2C, 0x82, 0x02, 0x6D, 0x92, 0x02, 0x53, 0xAD, + 0x46, 0x85, 0x42, 0x42, 0x85, 0x46, 0xAD, 0xFD, 0xAC, 0x92, 0xFD, 0x94, + 0xC4, 0x45, 0x80, 0x40, 0x40, 0x80, 0x45, 0xC4, 0xFF, 0xFF, 0x00, 0x19, + 0x00, 0x00, 0x04, 0x31, 0x05, 0xE9, 0x06, 0x26, 0x03, 0xDF, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x24, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x19, + 0x00, 0x00, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xDF, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x8B, 0xD2, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, + 0x04, 0x31, 0x04, 0x2E, 0x06, 0x06, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x12, 0xFE, 0x5E, 0x04, 0x88, 0x04, 0x2F, 0x00, 0x10, 0x00, 0x21, + 0x00, 0x00, 0x53, 0x01, 0x33, 0x01, 0x1E, 0x02, 0x33, 0x33, 0x15, 0x23, + 0x22, 0x26, 0x26, 0x27, 0x03, 0x01, 0x13, 0x01, 0x2E, 0x02, 0x23, 0x23, + 0x35, 0x33, 0x32, 0x16, 0x16, 0x17, 0x13, 0x01, 0x21, 0x01, 0x24, 0x01, + 0xEA, 0x71, 0x01, 0x3E, 0x1C, 0x20, 0x28, 0x27, 0x40, 0x40, 0x52, 0x73, + 0x5F, 0x34, 0xAC, 0xFE, 0xE4, 0xE3, 0xFE, 0xE4, 0x1F, 0x1F, 0x26, 0x28, + 0x51, 0x51, 0x53, 0x74, 0x5F, 0x32, 0x90, 0x01, 0x02, 0x01, 0x09, 0xFE, + 0x34, 0xFE, 0x5E, 0x03, 0x86, 0xFD, 0xB5, 0x36, 0x2D, 0x09, 0xCF, 0x1D, + 0x5C, 0x5F, 0x01, 0x40, 0xFD, 0xE8, 0x02, 0x97, 0x01, 0xFD, 0x36, 0x2F, + 0x09, 0xCF, 0x1E, 0x5D, 0x5E, 0xFE, 0xF1, 0x01, 0xE7, 0xFC, 0xC7, 0x00, + 0x01, 0x00, 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x04, 0x2E, 0x00, 0x1A, 0x00, + 0x00, 0x53, 0x37, 0x17, 0x16, 0x36, 0x36, 0x37, 0x37, 0x01, 0x21, 0x13, + 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x21, 0x01, 0x0E, 0x02, + 0x23, 0x22, 0x26, 0x82, 0x0E, 0x67, 0x28, 0x39, 0x29, 0x0E, 0x22, 0xFE, + 0x65, 0x01, 0x0E, 0xC4, 0x20, 0x35, 0x1A, 0x45, 0x19, 0x37, 0x20, 0xC5, + 0x01, 0x0A, 0xFE, 0x26, 0x20, 0x5D, 0x7E, 0x53, 0x2C, 0x55, 0xFE, 0x62, + 0xCD, 0x02, 0x03, 0x15, 0x37, 0x2F, 0x5F, 0x04, 0x2A, 0xFD, 0xCD, 0x5C, + 0xB8, 0x5D, 0x5D, 0xB8, 0x5C, 0x02, 0x33, 0xFB, 0x2B, 0x54, 0x71, 0x38, + 0x04, 0xFF, 0xFF, 0x00, 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE8, 0x06, + 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xD8, 0x00, 0x00, + 0x02, 0x00, 0x16, 0xFE, 0x5C, 0x05, 0x5B, 0x05, 0xD5, 0x00, 0x11, 0x00, + 0x2C, 0x00, 0x00, 0x41, 0x37, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x15, + 0x26, 0x22, 0x23, 0x22, 0x06, 0x06, 0x07, 0x07, 0x01, 0x37, 0x17, 0x16, + 0x36, 0x36, 0x37, 0x37, 0x01, 0x21, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, + 0x36, 0x37, 0x13, 0x21, 0x01, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x03, 0x47, + 0x2F, 0x20, 0x48, 0x7C, 0x6E, 0x2D, 0x4C, 0x1A, 0x11, 0x40, 0x18, 0x26, + 0x2B, 0x1A, 0x0D, 0x2A, 0xFC, 0x32, 0x0E, 0x67, 0x28, 0x39, 0x29, 0x0E, + 0x22, 0xFE, 0x65, 0x01, 0x0E, 0xC4, 0x20, 0x35, 0x1A, 0x45, 0x19, 0x37, + 0x20, 0xC5, 0x01, 0x0A, 0xFE, 0x26, 0x20, 0x5D, 0x7E, 0x53, 0x2C, 0x55, + 0x04, 0x2E, 0x80, 0x5C, 0x84, 0x47, 0x01, 0x02, 0xCC, 0x01, 0x17, 0x2F, + 0x24, 0x6F, 0xFA, 0x34, 0xCD, 0x02, 0x03, 0x15, 0x37, 0x2F, 0x5F, 0x04, + 0x2A, 0xFD, 0xCD, 0x5C, 0xB8, 0x5D, 0x5D, 0xB8, 0x5C, 0x02, 0x33, 0xFB, + 0x2B, 0x54, 0x71, 0x38, 0x04, 0x00, 0x02, 0x00, 0x19, 0xFE, 0x5C, 0x04, + 0x54, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x1E, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x13, 0x37, 0x17, 0x16, 0x36, 0x36, 0x37, 0x37, 0x01, 0x21, 0x13, + 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x21, 0x01, 0x0E, 0x02, + 0x23, 0x22, 0x26, 0x04, 0x4D, 0xFB, 0xD1, 0x67, 0x0E, 0x67, 0x28, 0x39, + 0x29, 0x0E, 0x22, 0xFE, 0x65, 0x01, 0x0E, 0xC4, 0x20, 0x35, 0x1A, 0x46, + 0x1A, 0x37, 0x1F, 0xC6, 0x01, 0x0A, 0xFE, 0x26, 0x20, 0x5D, 0x7F, 0x52, + 0x2C, 0x56, 0x03, 0x03, 0x93, 0x93, 0xFB, 0x5F, 0xCD, 0x02, 0x03, 0x15, + 0x37, 0x2F, 0x5F, 0x04, 0x2A, 0xFD, 0xCD, 0x5C, 0xB8, 0x5D, 0x5D, 0xB8, + 0x5C, 0x02, 0x33, 0xFB, 0x2B, 0x54, 0x71, 0x38, 0x04, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x61, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xA2, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x8A, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE9, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x2A, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x06, 0x61, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x90, 0x00, 0xD5, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x38, 0x04, 0x51, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x6C, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x0E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xD6, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x06, 0x06, 0xEC, 0x3B, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0xFE, + 0x5C, 0x04, 0x51, 0x04, 0x2E, 0x06, 0x06, 0x03, 0xE4, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE5, 0x06, 0x26, 0x03, + 0xE4, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0x80, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xA2, 0x06, 0x26, 0x03, + 0xE4, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x8A, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE8, 0x06, 0x26, 0x03, + 0xE4, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xD8, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xE4, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, 0x85, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x16, 0x00, 0x00, 0x04, 0x51, 0x05, 0xD2, 0x00, 0x1A, 0x00, 0x00, 0x41, + 0x07, 0x27, 0x26, 0x06, 0x06, 0x07, 0x07, 0x01, 0x21, 0x03, 0x26, 0x26, + 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0x21, 0x01, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x03, 0xE5, 0x0D, 0x68, 0x27, 0x39, 0x29, 0x0F, 0x22, 0x01, 0x9B, + 0xFE, 0xF2, 0xC4, 0x1E, 0x36, 0x1B, 0x46, 0x19, 0x37, 0x20, 0xC5, 0xFE, + 0xF5, 0x01, 0xDA, 0x21, 0x5D, 0x7F, 0x52, 0x2B, 0x56, 0x05, 0xCC, 0xCD, + 0x02, 0x03, 0x16, 0x36, 0x2F, 0x5F, 0xFB, 0xD6, 0x02, 0x33, 0x5C, 0xB8, + 0x5D, 0x5D, 0xB8, 0x5C, 0xFD, 0xCD, 0x04, 0xD5, 0x54, 0x70, 0x39, 0x04, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x0C, 0x07, 0x46, 0x06, 0x26, + 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xF0, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x0C, 0x07, 0x8C, 0x06, 0x26, + 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x3E, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x0C, 0x07, 0x8C, 0x06, 0x26, + 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, 0xEB, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x16, 0xFE, 0x5C, 0x04, 0x51, 0x04, 0x2E, 0x06, 0x26, + 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5D, 0x01, 0x9C, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x16, 0x00, 0x00, 0x04, 0x5E, 0x04, 0x2E, 0x00, 0x03, + 0x00, 0x08, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x11, 0x33, 0x11, 0x03, 0x01, + 0x21, 0x01, 0x07, 0x23, 0x27, 0x01, 0x21, 0x01, 0x01, 0xBA, 0xF9, 0xF4, + 0xFE, 0x57, 0x01, 0x18, 0x01, 0x49, 0x1E, 0x3C, 0x1F, 0x01, 0x4B, 0x01, + 0x15, 0xFE, 0x52, 0x01, 0xF6, 0xFE, 0x0A, 0x01, 0x61, 0x02, 0xCD, 0xFD, + 0xA7, 0x74, 0x77, 0x02, 0x56, 0xFD, 0x33, 0x00, 0x01, 0x00, 0x65, 0x00, + 0x00, 0x03, 0xC5, 0x04, 0x2E, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x01, + 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x21, 0x15, 0x65, 0x02, 0x26, + 0xFD, 0xDE, 0x03, 0x53, 0xFD, 0xE8, 0x02, 0x21, 0xAD, 0x02, 0xAB, 0x05, + 0xD1, 0xB8, 0xFD, 0x5F, 0x05, 0xD0, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, + 0x03, 0xC5, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x39, 0x00, 0xAE, 0xFF, 0x3D, 0x00, 0x01, 0x00, 0x65, 0xFF, 0x25, + 0x04, 0x30, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x00, 0x45, 0x35, 0x34, 0x26, + 0x23, 0x21, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x21, + 0x32, 0x16, 0x15, 0x15, 0x03, 0x56, 0x36, 0x4D, 0xFD, 0x92, 0x02, 0x26, + 0xFD, 0xDE, 0x03, 0x53, 0xFD, 0xE8, 0x01, 0x44, 0x9D, 0xAB, 0xDB, 0x3B, + 0x46, 0x5A, 0xAD, 0x02, 0xAB, 0x05, 0xD1, 0xB8, 0xFD, 0x5F, 0x05, 0xBB, + 0x9E, 0x52, 0x00, 0x02, 0x00, 0x65, 0xFE, 0x5D, 0x04, 0xEF, 0x04, 0x2E, + 0x00, 0x09, 0x00, 0x23, 0x00, 0x00, 0x73, 0x35, 0x01, 0x35, 0x21, 0x35, + 0x21, 0x15, 0x01, 0x15, 0x01, 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x23, + 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x65, 0x02, 0x26, 0xFD, 0xDE, 0x03, 0x53, 0xFD, + 0xE8, 0x02, 0x76, 0x4A, 0x7F, 0x71, 0x37, 0x24, 0x34, 0x3F, 0x35, 0x87, + 0x9F, 0x5A, 0x7A, 0x61, 0x33, 0x2A, 0x3C, 0x37, 0x21, 0x1D, 0x3C, 0x20, + 0x5B, 0x31, 0x6D, 0xAD, 0x02, 0xAB, 0x05, 0xD1, 0xB8, 0xFD, 0x5F, 0xD5, + 0xFE, 0x5D, 0x3C, 0x81, 0x68, 0x37, 0x36, 0x11, 0xD0, 0x27, 0x64, 0x59, + 0x4B, 0x54, 0x21, 0x12, 0x11, 0xB5, 0x1D, 0x20, 0x00, 0x02, 0x00, 0x65, + 0xFE, 0x5B, 0x04, 0x9E, 0x04, 0x2E, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, + 0x37, 0x15, 0x06, 0x06, 0x01, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, + 0x01, 0x15, 0x21, 0x15, 0x04, 0x11, 0xA6, 0xA4, 0xFE, 0x33, 0x3C, 0x19, + 0x3F, 0x12, 0x1A, 0x46, 0xFC, 0x27, 0x02, 0x26, 0xFD, 0xDE, 0x03, 0x53, + 0xFD, 0xE8, 0x02, 0x21, 0xFE, 0x5B, 0x96, 0x92, 0x7D, 0x77, 0x32, 0x2D, + 0x01, 0xCD, 0x01, 0x02, 0x01, 0xA5, 0xAD, 0x02, 0xAB, 0x05, 0xD1, 0xB8, + 0xFD, 0x5F, 0x05, 0xD0, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, 0xC5, + 0x05, 0xE8, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, + 0x01, 0x48, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, 0xC5, + 0x05, 0xE9, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0x12, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, 0xC5, + 0x05, 0xE8, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, + 0x00, 0x6D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, 0xC5, + 0x05, 0xE8, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0x00, 0x6D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0xFE, 0x38, 0x03, 0xC5, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0x12, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x65, 0xFE, 0x8F, 0x03, 0xC5, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, + 0x00, 0x72, 0xF9, 0x9B, 0x00, 0x02, 0x00, 0x7A, 0x00, 0x00, 0x04, 0x8A, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x53, 0x21, 0x11, 0x21, + 0x13, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x35, + 0x21, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x7A, 0x01, 0x08, + 0xFE, 0xF8, 0x7C, 0x01, 0x81, 0xAC, 0xEC, 0x7B, 0x7B, 0xEC, 0xAC, 0xFE, + 0x7F, 0x01, 0x81, 0x5F, 0x7D, 0x3D, 0x3D, 0x7D, 0x5F, 0xFE, 0x7F, 0x05, + 0xD2, 0xFA, 0x2E, 0x04, 0xB3, 0x76, 0xC9, 0x7E, 0x7E, 0xC9, 0x75, 0xD2, + 0x01, 0x3A, 0x68, 0x43, 0x45, 0x6B, 0x3E, 0x00, 0x01, 0x00, 0x81, 0x00, + 0x00, 0x04, 0x3C, 0x05, 0xD2, 0x00, 0x05, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x11, 0x21, 0x11, 0x04, 0x3C, 0xFD, 0x4F, 0xFE, 0xF6, 0x05, 0xD2, 0xE4, + 0xFB, 0x12, 0x05, 0xD2, 0x00, 0x02, 0x00, 0x15, 0x00, 0x00, 0x05, 0x73, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x73, 0x01, 0x21, 0x01, + 0x25, 0x21, 0x01, 0x23, 0x15, 0x02, 0x10, 0x01, 0x40, 0x02, 0x0E, 0xFC, + 0x04, 0x02, 0x9C, 0xFE, 0xB7, 0x0C, 0x05, 0xD2, 0xFA, 0x2E, 0xDD, 0x03, + 0xC9, 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xE9, 0x00, + 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, + 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, + 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, 0x1A, 0xFD, 0xD1, 0x01, + 0x18, 0xC7, 0xFE, 0xC7, 0xB4, 0xB4, 0x01, 0x39, 0xC7, 0xC7, 0x01, 0x38, + 0xB4, 0xB4, 0xFE, 0xC8, 0xC7, 0x79, 0xC0, 0x6F, 0x6F, 0xC0, 0x79, 0x7A, + 0xC0, 0x6F, 0x6F, 0xC0, 0x03, 0x46, 0xBA, 0xBA, 0xFC, 0xA3, 0xBD, 0x01, + 0x59, 0xE9, 0xEB, 0x01, 0x5A, 0xBC, 0xBC, 0xFE, 0xA6, 0xEB, 0xEA, 0xFE, + 0xA7, 0xBC, 0xEE, 0x7B, 0xEC, 0xAA, 0xAB, 0xED, 0x7B, 0x7B, 0xED, 0xAB, + 0xAA, 0xEC, 0x7B, 0x00, 0x03, 0x00, 0x53, 0x00, 0x00, 0x04, 0xCC, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x21, + 0x15, 0x01, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x53, 0x04, 0x79, + 0xFB, 0xDD, 0x03, 0xCD, 0xFB, 0xE8, 0x04, 0x63, 0xE4, 0xE4, 0x02, 0x83, + 0xE0, 0xE0, 0x02, 0x6B, 0xE4, 0xE4, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, + 0x05, 0x44, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, + 0x21, 0x11, 0x21, 0x11, 0x05, 0x44, 0xFE, 0xF7, 0xFD, 0x50, 0xFE, 0xF6, + 0x05, 0xD2, 0xFA, 0x2E, 0x04, 0xEE, 0xFB, 0x12, 0x05, 0xD2, 0x00, 0x01, + 0x00, 0x4E, 0x00, 0x00, 0x04, 0xEB, 0x05, 0xD2, 0x00, 0x25, 0x00, 0x00, + 0x73, 0x35, 0x01, 0x3E, 0x02, 0x37, 0x15, 0x2E, 0x02, 0x27, 0x01, 0x35, + 0x21, 0x15, 0x21, 0x22, 0x26, 0x27, 0x27, 0x1E, 0x02, 0x17, 0x01, 0x15, + 0x01, 0x0E, 0x02, 0x07, 0x37, 0x36, 0x36, 0x33, 0x21, 0x15, 0x4E, 0x01, + 0xAD, 0x20, 0x4A, 0x49, 0x1F, 0x1F, 0x49, 0x49, 0x20, 0xFE, 0x74, 0x04, + 0x6F, 0xFD, 0xE6, 0x52, 0xA0, 0x4D, 0x05, 0x26, 0x4E, 0x4D, 0x23, 0x01, + 0x29, 0xFE, 0xDB, 0x2A, 0x59, 0x55, 0x26, 0x05, 0x53, 0xAA, 0x58, 0x02, + 0x26, 0xC4, 0x01, 0xBC, 0x20, 0x47, 0x43, 0x1C, 0x92, 0x1C, 0x41, 0x46, + 0x1F, 0x01, 0x94, 0xC8, 0xE4, 0x01, 0x02, 0x40, 0x22, 0x46, 0x48, 0x25, + 0xFE, 0xD0, 0x5E, 0xFE, 0xCE, 0x2B, 0x55, 0x51, 0x24, 0x3B, 0x01, 0x01, + 0xE4, 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xBA, 0x06, 0x9E, 0x06, 0x18, 0x00, + 0x11, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x65, 0x22, 0x24, 0x02, 0x35, + 0x34, 0x12, 0x24, 0x33, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, + 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x11, 0x21, 0x11, 0x03, + 0x1C, 0xD2, 0xFE, 0xBD, 0xB8, 0xB8, 0x01, 0x43, 0xD2, 0xB5, 0xD3, 0x01, + 0x42, 0xB8, 0xB8, 0xFE, 0xBE, 0xD3, 0xB5, 0xB5, 0x8C, 0xCB, 0x6F, 0x6F, + 0xCB, 0x8C, 0xB5, 0x8C, 0xCB, 0x6F, 0x6F, 0xCB, 0x65, 0x01, 0x03, 0x3E, + 0xAE, 0x01, 0x34, 0xC9, 0xC9, 0x01, 0x34, 0xAE, 0xAE, 0xFE, 0xCC, 0xC9, + 0xC9, 0xFE, 0xCC, 0xAE, 0xDF, 0x70, 0xCF, 0x8D, 0x8E, 0xCE, 0x70, 0x70, + 0xCE, 0x8E, 0x8D, 0xCF, 0x70, 0xFE, 0x9D, 0x06, 0x5E, 0xF9, 0xA2, 0x00, + 0x02, 0x00, 0x81, 0x00, 0x00, 0x06, 0x71, 0x05, 0xD2, 0x00, 0x19, 0x00, + 0x1D, 0x00, 0x00, 0x41, 0x21, 0x11, 0x14, 0x02, 0x06, 0x06, 0x23, 0x23, + 0x22, 0x26, 0x26, 0x02, 0x35, 0x11, 0x21, 0x11, 0x14, 0x16, 0x16, 0x33, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x01, 0x21, 0x11, 0x21, 0x05, 0x6E, 0x01, + 0x03, 0x5F, 0xB1, 0xF7, 0x9A, 0xAF, 0x99, 0xF7, 0xB1, 0x5F, 0x01, 0x03, + 0x53, 0xB5, 0x93, 0xB3, 0x95, 0xB4, 0x53, 0xFD, 0x8B, 0x01, 0x00, 0xFF, + 0x00, 0x05, 0xD2, 0xFE, 0x66, 0xAB, 0xFE, 0xFF, 0xA9, 0x54, 0x54, 0xA9, + 0x01, 0x01, 0xAB, 0x01, 0x9A, 0xFE, 0x74, 0xA6, 0xD0, 0x60, 0x60, 0xD0, + 0xA6, 0x01, 0x8C, 0xFA, 0x2E, 0x00, 0x01, 0x00, 0x4F, 0x00, 0x00, 0x05, + 0xB6, 0x05, 0xE6, 0x00, 0x29, 0x00, 0x00, 0x73, 0x35, 0x21, 0x35, 0x2E, + 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, + 0x06, 0x07, 0x15, 0x21, 0x15, 0x21, 0x11, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x11, 0x53, 0x01, + 0x59, 0x72, 0x9C, 0x4F, 0x65, 0xB9, 0xFD, 0x98, 0x98, 0xFD, 0xB9, 0x66, + 0x4F, 0x9B, 0x73, 0x01, 0x59, 0xFD, 0xC8, 0x90, 0xA1, 0x69, 0xBE, 0x80, + 0x82, 0xBF, 0x69, 0xA0, 0x91, 0xDD, 0x2D, 0x2E, 0xA0, 0xDA, 0x82, 0x97, + 0xFD, 0xB9, 0x65, 0x65, 0xB9, 0xFD, 0x96, 0x84, 0xD9, 0xA0, 0x2E, 0x2D, + 0xDD, 0x01, 0x6D, 0x24, 0xEB, 0xB1, 0x8F, 0xCD, 0x6F, 0x6F, 0xCD, 0x8F, + 0xB0, 0xEB, 0x25, 0xFE, 0x93, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x06, + 0x7D, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xC7, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x06, + 0x7D, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xC7, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x06, + 0x9B, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xE5, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x7D, 0xE7, 0xEC, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x06, + 0xAF, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xF9, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x7E, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x07, + 0xC9, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x13, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x7F, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x07, + 0xE7, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x31, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x07, + 0xD6, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x20, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x81, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x07, + 0xEB, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x35, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x07, + 0x4D, 0x07, 0x18, 0x04, 0x27, 0x04, 0x10, 0x01, 0x97, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x83, 0x37, 0xE9, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x07, + 0x60, 0x07, 0x0D, 0x04, 0x27, 0x04, 0x10, 0x01, 0xAA, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x84, 0x37, 0xDE, 0xFF, 0xFF, 0xFF, 0xBD, 0x00, 0x00, 0x06, + 0x93, 0x05, 0xEA, 0x04, 0x27, 0x04, 0x10, 0x00, 0xDD, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x88, 0xFF, 0x95, 0x00, 0x02, 0xFF, 0xFF, 0x00, 0x37, 0xFE, + 0x1E, 0x06, 0x9B, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xE5, 0x00, + 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0xF6, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x7D, 0xE7, 0xEC, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x06, 0xAF, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xF9, 0x00, 0x00, 0x00, 0x27, 0x09, + 0xE4, 0x03, 0x0A, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xE7, 0xE0, 0xFF, + 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0xC9, 0x05, 0xE6, 0x04, 0x27, 0x04, + 0x10, 0x02, 0x13, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x7F, 0xE7, 0xE0, 0x00, + 0x07, 0x09, 0xE4, 0x04, 0x23, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0xFE, + 0x1E, 0x07, 0xE7, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x31, 0x00, + 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, 0x42, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x80, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0xD6, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x20, 0x00, 0x00, 0x00, 0x27, 0x09, + 0xE4, 0x04, 0x31, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xE7, 0xE0, 0xFF, + 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0xEB, 0x05, 0xE6, 0x04, 0x27, 0x04, + 0x10, 0x02, 0x35, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, 0x45, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0x82, 0xE7, 0xE0, 0xFF, 0xFF, 0x00, 0x37, 0xFE, + 0x1E, 0x07, 0x4D, 0x07, 0x18, 0x04, 0x27, 0x04, 0x10, 0x01, 0x97, 0x00, + 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0xA8, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x83, 0x37, 0xE9, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x1E, 0x07, 0x60, 0x07, + 0x0D, 0x04, 0x27, 0x04, 0x10, 0x01, 0xAA, 0x00, 0x00, 0x00, 0x27, 0x09, + 0xE4, 0x03, 0xBA, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x37, 0xDE, 0xFF, + 0xFF, 0x00, 0x4F, 0xFE, 0x1E, 0x05, 0xB6, 0x05, 0xE6, 0x06, 0x26, 0x04, + 0x10, 0x00, 0x00, 0x00, 0x07, 0x09, 0xE4, 0x02, 0x11, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x54, 0xFF, 0xEC, 0x05, 0xB1, 0x05, 0xD2, 0x00, 0x28, 0x00, + 0x00, 0x53, 0x34, 0x12, 0x37, 0x35, 0x21, 0x35, 0x21, 0x11, 0x0E, 0x02, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x27, 0x11, 0x21, 0x15, 0x21, 0x15, 0x16, 0x12, 0x15, 0x14, 0x02, 0x04, + 0x23, 0x22, 0x26, 0x26, 0x02, 0x54, 0x9D, 0x86, 0xFE, 0xDD, 0x02, 0x37, + 0x55, 0x8B, 0x51, 0x6D, 0xBF, 0x7C, 0x7C, 0xC0, 0x6C, 0x51, 0x8A, 0x55, + 0x02, 0x37, 0xFE, 0xDC, 0x87, 0x9D, 0xB0, 0xFE, 0xCA, 0xC9, 0x96, 0xFB, + 0xB8, 0x65, 0x02, 0xB2, 0xC5, 0x01, 0x1C, 0x56, 0x0C, 0xDD, 0xFE, 0xE9, + 0x23, 0x93, 0xCB, 0x79, 0x8A, 0xDE, 0x81, 0x81, 0xDE, 0x8A, 0x79, 0xCB, + 0x93, 0x23, 0x01, 0x17, 0xDD, 0x0C, 0x54, 0xFE, 0xE2, 0xC5, 0xD0, 0xFE, + 0xBF, 0xB5, 0x68, 0xBE, 0x01, 0x04, 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, + 0x05, 0x1E, 0x05, 0xE6, 0x00, 0x20, 0x00, 0x00, 0x61, 0x11, 0x01, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x13, 0x13, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x07, 0x01, 0x11, 0x02, 0x28, 0xFE, 0xCF, 0x10, 0x30, 0x23, + 0x0E, 0x26, 0x05, 0x24, 0x21, 0x44, 0x28, 0x5C, 0x8C, 0x33, 0xCB, 0xCC, + 0x2F, 0x80, 0x69, 0x26, 0x48, 0x22, 0x26, 0x06, 0x24, 0x0E, 0x24, 0x31, + 0x0E, 0xFE, 0xCC, 0x02, 0x09, 0x02, 0xB1, 0x23, 0x22, 0x04, 0x03, 0xD1, + 0x0E, 0x0F, 0x5F, 0x83, 0xFE, 0x0F, 0x01, 0xEB, 0x74, 0x74, 0x0E, 0x0C, + 0xD4, 0x03, 0x04, 0x24, 0x21, 0xFD, 0x51, 0xFD, 0xF5, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x06, 0x93, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x26, 0x01, + 0x75, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x87, 0xEA, 0xFF, 0xFF, 0x00, + 0x37, 0x00, 0x00, 0x05, 0x1E, 0x07, 0x8C, 0x06, 0x26, 0x04, 0x26, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x56, 0x01, 0xA4, 0x00, 0x01, 0x00, + 0x1C, 0xFE, 0x46, 0x05, 0x55, 0x05, 0xD2, 0x00, 0x24, 0x00, 0x00, 0x53, + 0x21, 0x01, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, + 0x34, 0x3E, 0x03, 0x37, 0x01, 0x21, 0x01, 0x0E, 0x02, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x1C, 0x01, 0x27, 0x01, + 0xCE, 0x4B, 0x6B, 0x38, 0x50, 0x92, 0x65, 0x97, 0xB4, 0x0F, 0x22, 0x38, + 0x51, 0x37, 0x01, 0xCF, 0x01, 0x28, 0xFD, 0x87, 0x20, 0x30, 0x1A, 0x25, + 0x21, 0x21, 0x26, 0x18, 0x2F, 0x21, 0x05, 0xD2, 0xFB, 0xDC, 0xA5, 0xEA, + 0xA0, 0x34, 0x4F, 0x76, 0x40, 0x8B, 0x7E, 0x1D, 0x41, 0x59, 0x7F, 0xB0, + 0x7A, 0x04, 0x23, 0xFA, 0xB4, 0x47, 0x70, 0x57, 0x21, 0x22, 0x2B, 0x2C, + 0x22, 0x21, 0x56, 0x70, 0x47, 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, 0x04, + 0xBA, 0x05, 0xD2, 0x00, 0x0E, 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, 0x21, + 0x15, 0x21, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x25, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x81, 0x03, 0xB3, + 0xFD, 0x53, 0x01, 0x49, 0x96, 0xDC, 0x78, 0x78, 0xDB, 0x97, 0xFE, 0xB7, + 0x01, 0x2C, 0x7D, 0x8A, 0x8A, 0x7D, 0xFE, 0xD4, 0x05, 0xD2, 0xDE, 0xFE, + 0x79, 0x66, 0xBE, 0x86, 0x8A, 0xCA, 0x6F, 0xD7, 0x7B, 0x6F, 0x68, 0x74, + 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, 0x04, 0x3C, 0x07, 0x0F, 0x00, 0x03, + 0x00, 0x09, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x37, 0x15, 0x21, 0x11, + 0x21, 0x11, 0x03, 0x3C, 0xFF, 0x01, 0xFD, 0x4F, 0xFE, 0xF6, 0x04, 0xEF, + 0x02, 0x20, 0xFD, 0xE0, 0xE3, 0xE4, 0xFB, 0x12, 0x05, 0xD2, 0xFF, 0xFF, + 0x00, 0x15, 0xFE, 0x5B, 0x04, 0x8E, 0x05, 0xD2, 0x04, 0x26, 0x09, 0x7B, + 0x52, 0x00, 0x00, 0x26, 0x0B, 0x68, 0xE3, 0x00, 0x00, 0x06, 0x0B, 0x3F, + 0x63, 0x00, 0x00, 0x02, 0x00, 0x37, 0xFE, 0xC0, 0x06, 0x40, 0x05, 0xD2, + 0x00, 0x10, 0x00, 0x18, 0x00, 0x00, 0x53, 0x11, 0x33, 0x3E, 0x03, 0x37, + 0x13, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x21, 0x11, 0x13, 0x21, 0x11, + 0x21, 0x03, 0x0E, 0x02, 0x37, 0x77, 0x25, 0x42, 0x37, 0x28, 0x0C, 0x33, + 0x03, 0xE7, 0xA6, 0xFF, 0x00, 0xFB, 0xF6, 0xA5, 0x02, 0xB6, 0xFE, 0x15, + 0x21, 0x0D, 0x2F, 0x43, 0xFE, 0xC0, 0x02, 0x24, 0x1E, 0x5C, 0x90, 0xD6, + 0x99, 0x02, 0x75, 0xFB, 0x12, 0xFD, 0xDC, 0x01, 0x40, 0xFE, 0xC0, 0x02, + 0x24, 0x04, 0x0A, 0xFE, 0x6F, 0x99, 0xF5, 0xB3, 0x00, 0x02, 0x00, 0x18, + 0x00, 0x00, 0x07, 0xCF, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, + 0x41, 0x11, 0x21, 0x11, 0x09, 0x02, 0x21, 0x01, 0x21, 0x01, 0x21, 0x01, + 0x01, 0x21, 0x01, 0x21, 0x01, 0x04, 0x79, 0xFE, 0xF7, 0xFC, 0xA8, 0x01, + 0xC9, 0xFE, 0x5A, 0x01, 0x2F, 0x01, 0x5F, 0x02, 0x5D, 0x01, 0x58, 0x01, + 0x2E, 0xFE, 0x60, 0x01, 0xC3, 0xFE, 0xD6, 0xFE, 0x9C, 0xFD, 0x68, 0xFE, + 0x95, 0x05, 0xD2, 0xFA, 0x2E, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x00, 0x02, + 0xD2, 0xFD, 0x7D, 0x02, 0x83, 0xFD, 0x2F, 0xFC, 0xFF, 0x02, 0x72, 0xFD, + 0x8E, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0xC0, 0x08, 0x27, 0x05, 0xD2, 0x04, + 0x26, 0x04, 0x2E, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x06, 0xA1, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x56, 0xFF, 0xE9, 0x04, 0xA3, 0x05, 0xE9, 0x06, + 0x06, 0x05, 0x3F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x05, + 0x51, 0x05, 0xD2, 0x00, 0x0C, 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x33, + 0x01, 0x21, 0x01, 0x01, 0x21, 0x01, 0x23, 0x11, 0x81, 0x01, 0x0A, 0xA9, + 0x01, 0xCC, 0x01, 0x38, 0xFD, 0xD7, 0x02, 0x42, 0xFE, 0xC8, 0xFE, 0x20, + 0xAE, 0x05, 0xD2, 0xFD, 0x99, 0x02, 0x67, 0xFD, 0x2E, 0xFD, 0x00, 0x02, + 0x84, 0xFD, 0x7C, 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, 0x05, 0x4C, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x41, 0x33, 0x11, 0x23, 0x01, + 0x11, 0x21, 0x11, 0x21, 0x01, 0x21, 0x01, 0x01, 0x21, 0x01, 0x21, 0x11, + 0x01, 0xEB, 0xA8, 0xA8, 0xFE, 0x96, 0x01, 0x04, 0x01, 0x3F, 0x01, 0x33, + 0x01, 0x34, 0xFE, 0x7A, 0x01, 0xA7, 0xFE, 0xCD, 0xFE, 0xBE, 0xFE, 0xAE, + 0x04, 0x55, 0xFD, 0x27, 0xFE, 0x84, 0x05, 0xD2, 0xFD, 0x84, 0x02, 0x7C, + 0xFD, 0x30, 0xFC, 0xFE, 0x02, 0x60, 0xFD, 0xA0, 0x00, 0x02, 0x00, 0x81, + 0xFE, 0xB3, 0x05, 0x09, 0x05, 0xD2, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, + 0x41, 0x35, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x06, 0x23, 0x27, + 0x16, 0x36, 0x35, 0x34, 0x26, 0x23, 0x01, 0x11, 0x21, 0x11, 0x33, 0x01, + 0x21, 0x01, 0x23, 0x11, 0x01, 0xCF, 0xCF, 0xBF, 0x01, 0x14, 0x94, 0x81, + 0xF1, 0xA9, 0x01, 0x84, 0x97, 0xC0, 0xA6, 0xFD, 0xE3, 0x01, 0x01, 0x82, + 0x01, 0xC9, 0x01, 0x3C, 0xFD, 0x73, 0xFA, 0x02, 0x72, 0xC7, 0x8B, 0xFE, + 0xFE, 0xB4, 0xB4, 0xFE, 0xFB, 0x8C, 0xD2, 0x01, 0xC4, 0xAB, 0xB3, 0xCC, + 0xFD, 0x8E, 0x05, 0xD2, 0xFD, 0x8B, 0x02, 0x75, 0xFC, 0xA0, 0xFD, 0x8E, + 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, 0x05, 0x4B, 0x05, 0xD2, 0x00, 0x12, + 0x00, 0x00, 0x73, 0x35, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x21, 0x11, + 0x21, 0x11, 0x21, 0x03, 0x0E, 0x03, 0x23, 0x37, 0x28, 0x48, 0x52, 0x2C, + 0x0D, 0x48, 0x03, 0xD1, 0xFE, 0xF6, 0xFE, 0x2C, 0x3A, 0x0D, 0x42, 0x6E, + 0xA0, 0x6D, 0xE4, 0x3E, 0xA9, 0xA0, 0x03, 0x67, 0xFA, 0x2E, 0x04, 0xEE, + 0xFD, 0x4D, 0x9E, 0xDA, 0x86, 0x3D, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0xB6, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x6F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0xC0, 0x05, 0x23, 0x05, 0xD2, 0x06, 0x26, 0x0B, 0x49, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3E, 0x01, 0xD1, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x15, 0x00, 0x00, 0x05, 0x0C, 0x05, 0xD2, 0x00, 0x18, 0x00, 0x00, + 0x73, 0x35, 0x33, 0x32, 0x36, 0x37, 0x37, 0x01, 0x21, 0x13, 0x1E, 0x02, + 0x17, 0x23, 0x36, 0x12, 0x37, 0x13, 0x21, 0x01, 0x0E, 0x02, 0x23, 0xEC, + 0x71, 0x4B, 0x4D, 0x13, 0x18, 0xFD, 0xF5, 0x01, 0x2B, 0xB2, 0x2C, 0x4B, + 0x44, 0x22, 0x55, 0x2F, 0x63, 0x3C, 0xA0, 0x01, 0x24, 0xFD, 0xF3, 0x25, + 0x63, 0x94, 0x70, 0xE6, 0x2D, 0x32, 0x40, 0x04, 0x4D, 0xFE, 0x73, 0x63, + 0xB8, 0xB0, 0x59, 0x82, 0x01, 0x0C, 0x96, 0x01, 0x8D, 0xFB, 0x3F, 0x56, + 0x7B, 0x40, 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xBB, 0x06, 0x44, 0x06, 0x17, + 0x00, 0x11, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x65, 0x22, 0x24, 0x02, + 0x35, 0x34, 0x12, 0x24, 0x33, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, + 0x04, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x11, 0x21, 0x11, + 0x02, 0xF2, 0xD0, 0xFE, 0xD1, 0xA4, 0xA4, 0x01, 0x2F, 0xD0, 0xAF, 0xD0, + 0x01, 0x2E, 0xA5, 0xA4, 0xFE, 0xD1, 0xD0, 0xA7, 0x9F, 0x8A, 0xBC, 0x61, + 0x61, 0xBC, 0x8A, 0x9F, 0x8A, 0xBD, 0x60, 0x60, 0xBD, 0x58, 0x01, 0x03, + 0x67, 0x9D, 0x01, 0x20, 0xC5, 0xC5, 0x01, 0x20, 0x9D, 0x9D, 0xFE, 0xE0, + 0xC5, 0xC5, 0xFE, 0xE0, 0x9D, 0xE6, 0x5E, 0xB8, 0x86, 0x86, 0xB8, 0x5E, + 0x5E, 0xB8, 0x86, 0x86, 0xB8, 0x5E, 0xFE, 0x6E, 0x06, 0x5C, 0xF9, 0xA4, + 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0xC0, 0x05, 0xB8, 0x05, 0xD2, 0x04, 0x26, + 0x0B, 0x49, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x04, 0x32, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x37, 0xFE, 0xC0, 0x07, 0x3B, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x0B, 0x00, 0x11, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x21, + 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x03, 0x11, 0x23, 0x35, 0x21, 0x03, + 0x37, 0x04, 0x92, 0x01, 0xDD, 0xFB, 0x5E, 0x01, 0x0A, 0x02, 0x8E, 0x01, + 0x0A, 0x6D, 0x52, 0x01, 0x54, 0x09, 0x04, 0xEF, 0xE3, 0xE3, 0xFB, 0x11, + 0x05, 0xD2, 0xFB, 0x12, 0x04, 0xEE, 0xF8, 0xEE, 0x01, 0x40, 0xE2, 0xFD, + 0xDE, 0x00, 0x02, 0x00, 0x75, 0x00, 0x00, 0x04, 0xF6, 0x05, 0xD2, 0x00, + 0x10, 0x00, 0x14, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, 0x21, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x13, 0x11, + 0x21, 0x11, 0x02, 0x81, 0xA0, 0xEC, 0x80, 0x01, 0x0A, 0x9C, 0x91, 0x74, + 0xC1, 0x4E, 0x61, 0xCE, 0xEC, 0x01, 0x0A, 0x02, 0x1A, 0x66, 0xD9, 0xAB, + 0x01, 0xCE, 0xFE, 0x41, 0x91, 0x8C, 0x47, 0x37, 0xE4, 0x38, 0x3E, 0xFD, + 0xE6, 0x05, 0xD2, 0xFA, 0x2E, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0xC0, 0x05, + 0x8B, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x3D, 0x04, 0x05, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, + 0xF6, 0x05, 0xD2, 0x06, 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x3B, 0x01, 0xDB, 0xFF, 0xA8, 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, 0x05, + 0x01, 0x05, 0xD2, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x41, 0x32, 0x16, + 0x16, 0x15, 0x11, 0x21, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, + 0x36, 0x36, 0x03, 0x11, 0x21, 0x11, 0x02, 0xF6, 0xA0, 0xEC, 0x7F, 0xFE, + 0xF7, 0x9C, 0x91, 0x74, 0xC1, 0x4E, 0x61, 0xCD, 0xEB, 0xFE, 0xF6, 0x03, + 0xB8, 0x66, 0xD8, 0xAC, 0xFE, 0x32, 0x01, 0xBF, 0x91, 0x8C, 0x47, 0x37, + 0xE4, 0x38, 0x3E, 0x02, 0x1A, 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x37, 0x00, 0x00, 0x06, 0x7A, 0x05, 0xD2, 0x00, 0x11, 0x00, 0x15, 0x00, + 0x19, 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, 0x11, 0x21, 0x11, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x36, 0x36, 0x03, 0x11, 0x21, + 0x11, 0x05, 0x35, 0x21, 0x15, 0x04, 0x76, 0xA1, 0xE7, 0x7C, 0xFE, 0xF7, + 0x43, 0x82, 0x61, 0x73, 0xBE, 0x4E, 0x60, 0xCA, 0xE8, 0xFE, 0xF7, 0xFE, + 0x32, 0x04, 0xDB, 0x03, 0x95, 0x65, 0xD8, 0xAD, 0xFE, 0x55, 0x01, 0x9C, + 0x61, 0x7E, 0x3E, 0x47, 0x37, 0xE4, 0x38, 0x3E, 0x01, 0x86, 0xFA, 0xE5, + 0x05, 0x1B, 0x2D, 0xE4, 0xE4, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x07, + 0x23, 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x21, 0x11, 0x21, 0x11, + 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, 0x21, 0x81, 0x01, 0x0A, 0x01, 0xC4, + 0x01, 0x07, 0x01, 0xC4, 0x01, 0x09, 0xF9, 0x5E, 0x05, 0xD2, 0xFB, 0x12, + 0x04, 0xEE, 0xFB, 0x12, 0x04, 0xEE, 0xFA, 0x2E, 0xFF, 0xFF, 0x00, 0x81, + 0xFE, 0xC0, 0x07, 0xB9, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x40, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x3D, 0x06, 0x32, 0x00, 0x00, 0x00, 0x02, 0x00, 0x37, + 0x00, 0x00, 0x06, 0x27, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, + 0x53, 0x35, 0x21, 0x15, 0x13, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x21, 0x11, 0x21, 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x21, 0x37, 0x01, 0xFF, 0x4F, 0x01, 0x8D, 0xA5, 0xEF, 0x81, + 0x7D, 0xEA, 0xA1, 0xFD, 0xB5, 0x01, 0x0A, 0x01, 0x29, 0x83, 0x98, 0x45, + 0x7F, 0x57, 0xFE, 0x7E, 0x04, 0xEF, 0xE3, 0xE3, 0xFE, 0xBD, 0x71, 0xD1, + 0x8E, 0x92, 0xD6, 0x74, 0x05, 0xD2, 0xFB, 0x0D, 0x89, 0x76, 0x4A, 0x6D, + 0x3B, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, 0x6D, 0x05, 0xD2, 0x04, + 0x26, 0x04, 0x44, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x04, 0xE2, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x04, 0xD4, 0x05, 0xD2, 0x00, + 0x16, 0x00, 0x00, 0x41, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x21, 0x11, 0x21, 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x21, 0x01, 0x32, 0x01, 0x8D, 0xA5, 0xEF, 0x81, 0x7D, 0xE9, 0xA2, + 0xFD, 0xB5, 0x01, 0x0A, 0x01, 0x29, 0x83, 0x98, 0x45, 0x7F, 0x57, 0xFE, + 0x7E, 0x03, 0xAC, 0x71, 0xD1, 0x8E, 0x92, 0xD6, 0x74, 0x05, 0xD2, 0xFB, + 0x0D, 0x89, 0x76, 0x4A, 0x6D, 0x3B, 0x00, 0x02, 0x00, 0x37, 0x00, 0x00, + 0x08, 0x76, 0x05, 0xD2, 0x00, 0x10, 0x00, 0x27, 0x00, 0x00, 0x73, 0x35, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x21, 0x15, 0x21, 0x03, 0x0E, 0x03, + 0x23, 0x01, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, + 0x11, 0x21, 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, + 0x37, 0x28, 0x48, 0x52, 0x2C, 0x0D, 0x48, 0x02, 0xC8, 0xFE, 0x2A, 0x3A, + 0x0D, 0x42, 0x6D, 0xA0, 0x6D, 0x04, 0x6B, 0x01, 0x8D, 0xA5, 0xEF, 0x81, + 0x7D, 0xE9, 0xA2, 0xFD, 0xB5, 0x01, 0x0A, 0x01, 0x29, 0x83, 0x98, 0x45, + 0x7F, 0x57, 0xFE, 0x7E, 0xE3, 0x3E, 0xA8, 0x9F, 0x03, 0x6A, 0xE3, 0xFD, + 0x4B, 0x9E, 0xD9, 0x86, 0x3D, 0x03, 0xAC, 0x71, 0xD0, 0x8F, 0x92, 0xD6, + 0x74, 0x05, 0xD2, 0xFB, 0x0D, 0x89, 0x76, 0x4A, 0x6D, 0x3B, 0x00, 0x02, + 0x00, 0x81, 0x00, 0x00, 0x08, 0x8E, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x1E, + 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x01, 0x21, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x21, 0x11, + 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x81, 0x01, 0x08, + 0x03, 0x27, 0xFC, 0xD9, 0x03, 0x63, 0x01, 0x8D, 0xA5, 0xEF, 0x81, 0x7D, + 0xEA, 0xA1, 0xFD, 0xB5, 0x01, 0x09, 0x01, 0x2A, 0x83, 0x98, 0x45, 0x7F, + 0x57, 0xFE, 0x7E, 0x05, 0xD2, 0xFD, 0xD7, 0xDB, 0xFD, 0x32, 0x03, 0xAC, + 0x71, 0xD1, 0x8E, 0x92, 0xD6, 0x74, 0x05, 0xD2, 0xFB, 0x0D, 0x89, 0x76, + 0x4A, 0x6D, 0x3B, 0x00, 0x02, 0x00, 0x4B, 0xFF, 0xE9, 0x05, 0x83, 0x05, + 0xE9, 0x00, 0x25, 0x00, 0x29, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, + 0x21, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x0E, 0x02, 0x07, 0x21, 0x3E, 0x03, 0x33, 0x32, 0x04, 0x12, 0x15, + 0x14, 0x02, 0x04, 0x01, 0x35, 0x21, 0x15, 0x02, 0xCA, 0x80, 0xD9, 0xA9, + 0x6C, 0x11, 0x01, 0x0C, 0x0F, 0x42, 0x5F, 0x7A, 0x47, 0x87, 0xC1, 0x68, + 0x68, 0xC1, 0x87, 0x47, 0x7B, 0x5F, 0x41, 0x0F, 0xFE, 0xF4, 0x12, 0x6E, + 0xA9, 0xD8, 0x7E, 0xCB, 0x01, 0x3B, 0xB3, 0xB3, 0xFE, 0xC5, 0xFE, 0xA5, + 0x02, 0x72, 0x17, 0x4C, 0x8C, 0xC3, 0x76, 0x47, 0x6D, 0x4A, 0x26, 0x80, + 0xED, 0xA5, 0xA5, 0xEE, 0x81, 0x26, 0x4B, 0x6D, 0x48, 0x7B, 0xC3, 0x8B, + 0x4A, 0xBC, 0xFE, 0xA7, 0xEC, 0xEA, 0xFE, 0xA7, 0xBC, 0x02, 0x9F, 0xDC, + 0xDC, 0x00, 0x04, 0x00, 0x81, 0xFF, 0xE9, 0x07, 0xD4, 0x05, 0xE9, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x13, 0x11, 0x21, 0x11, 0x01, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, + 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x02, 0xC8, 0xFE, 0x46, 0x7D, 0xFE, 0xF6, 0x04, 0xA0, 0xC6, 0xFE, + 0xC6, 0xB4, 0xB4, 0x01, 0x3A, 0xC6, 0xC7, 0x01, 0x38, 0xB4, 0xB4, 0xFE, + 0xC8, 0xC7, 0x7A, 0xC0, 0x6F, 0x6F, 0xC0, 0x7A, 0x79, 0xC1, 0x6F, 0x6F, + 0xC1, 0x03, 0x59, 0xD3, 0xD3, 0x02, 0x79, 0xFA, 0x2E, 0x05, 0xD2, 0xFA, + 0x17, 0xBD, 0x01, 0x59, 0xE9, 0xEB, 0x01, 0x5A, 0xBC, 0xBC, 0xFE, 0xA6, + 0xEB, 0xEA, 0xFE, 0xA7, 0xBC, 0xEE, 0x7B, 0xEC, 0xAA, 0xAB, 0xED, 0x7B, + 0x7B, 0xED, 0xAB, 0xAA, 0xEC, 0x7B, 0x00, 0x02, 0x00, 0x35, 0x00, 0x00, + 0x04, 0xAA, 0x05, 0xD2, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x61, 0x21, + 0x11, 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x21, 0x15, + 0x21, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x01, 0x21, + 0x01, 0x21, 0x04, 0xAA, 0xFE, 0xF6, 0xFE, 0xDE, 0x5B, 0x81, 0x44, 0x43, + 0x81, 0x5B, 0x01, 0x91, 0xFE, 0x6A, 0xA7, 0xF5, 0x85, 0x7F, 0xEE, 0xA5, + 0x02, 0x41, 0xFC, 0xAF, 0xFE, 0xDC, 0x01, 0x65, 0x01, 0x1D, 0x04, 0xF2, + 0x3E, 0x70, 0x4E, 0x4E, 0x71, 0x3D, 0xDB, 0x73, 0xD3, 0x91, 0x91, 0xD6, + 0x75, 0xFA, 0x2E, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0x97, 0x04, + 0xDC, 0x05, 0xD2, 0x04, 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x47, 0x00, 0xCA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0x97, 0x08, + 0x77, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x0C, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x47, 0x04, 0x65, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0xE9, 0x05, + 0x87, 0x05, 0xE9, 0x00, 0x25, 0x00, 0x29, 0x00, 0x00, 0x45, 0x22, 0x24, + 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x21, 0x2E, + 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, + 0x02, 0x37, 0x21, 0x0E, 0x03, 0x01, 0x35, 0x21, 0x15, 0x03, 0x08, 0xCB, + 0xFE, 0xC5, 0xB3, 0xB3, 0x01, 0x3C, 0xCA, 0x7E, 0xD8, 0xA9, 0x6D, 0x13, + 0xFE, 0xF3, 0x0E, 0x41, 0x60, 0x7A, 0x47, 0x86, 0xC2, 0x68, 0x68, 0xC2, + 0x86, 0x47, 0x79, 0x60, 0x42, 0x0F, 0x01, 0x0C, 0x11, 0x6D, 0xA8, 0xD9, + 0xFD, 0x9D, 0x02, 0x73, 0x17, 0xBC, 0x01, 0x59, 0xEA, 0xEC, 0x01, 0x59, + 0xBC, 0x4A, 0x8B, 0xC3, 0x7B, 0x48, 0x6D, 0x4B, 0x26, 0x81, 0xEE, 0xA5, + 0xA5, 0xED, 0x80, 0x26, 0x4A, 0x6D, 0x47, 0x77, 0xC2, 0x8C, 0x4C, 0x02, + 0x9F, 0xDC, 0xDC, 0x00, 0x01, 0x00, 0x4F, 0xFF, 0xE8, 0x07, 0xDC, 0x05, + 0xE9, 0x00, 0x42, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x02, 0x06, + 0x04, 0x04, 0x23, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x15, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x24, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x06, 0x8C, + 0x5A, 0xB9, 0xA7, 0x3F, 0x68, 0x9A, 0x55, 0x86, 0xF1, 0x9D, 0x9F, 0xF0, + 0x86, 0x71, 0xC9, 0xFE, 0xFA, 0xFE, 0xD5, 0x9B, 0xF1, 0xFE, 0x9F, 0xBE, + 0xB1, 0x01, 0x38, 0xCB, 0x79, 0xC1, 0x6F, 0x77, 0xE6, 0xA8, 0xA3, 0x01, + 0x16, 0xD1, 0x74, 0x44, 0x79, 0x50, 0x50, 0x78, 0x43, 0x55, 0x9A, 0x68, + 0x32, 0x77, 0x4E, 0x38, 0x71, 0x49, 0x57, 0x2F, 0x72, 0x77, 0x18, 0x22, + 0x46, 0x34, 0x49, 0xC8, 0xF1, 0x86, 0xA9, 0xFD, 0x8B, 0x88, 0xF2, 0xA1, + 0x9B, 0xFE, 0xFD, 0xC8, 0x8B, 0x48, 0xBA, 0x01, 0x57, 0xEE, 0xE7, 0x01, + 0x5A, 0xC0, 0xEE, 0x7B, 0xED, 0xAB, 0xAA, 0xEC, 0x7B, 0x58, 0x9F, 0xD6, + 0x7E, 0x5C, 0x87, 0x4B, 0x4F, 0x91, 0x61, 0x6E, 0xCD, 0xA1, 0x2E, 0x24, + 0x17, 0x16, 0x1F, 0xD6, 0x16, 0x1D, 0x0E, 0x00, 0x02, 0x00, 0x12, 0xFF, + 0xE9, 0x06, 0x97, 0x05, 0xE9, 0x00, 0x28, 0x00, 0x35, 0x00, 0x00, 0x45, + 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x04, 0x12, + 0x15, 0x15, 0x21, 0x35, 0x21, 0x07, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x21, 0x0E, + 0x03, 0x01, 0x33, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, 0x23, 0x22, + 0x26, 0x35, 0x04, 0x0D, 0xC8, 0xFE, 0xC7, 0xB4, 0x65, 0xB8, 0xFF, 0x99, + 0xCA, 0x01, 0x23, 0x9D, 0xFB, 0x72, 0x03, 0xCD, 0x40, 0x5A, 0xAF, 0x80, + 0x80, 0xC0, 0x6A, 0x6B, 0xC2, 0x82, 0x48, 0x78, 0x5E, 0x40, 0x0F, 0x01, + 0x0E, 0x10, 0x6F, 0xAA, 0xDA, 0xFB, 0x88, 0xEF, 0x0E, 0x29, 0x28, 0x53, + 0x6A, 0x95, 0xA2, 0x17, 0xBE, 0x01, 0x59, 0xEA, 0xAC, 0x01, 0x1A, 0xCB, + 0x6E, 0xBC, 0xFE, 0xB6, 0xD7, 0x8C, 0xD2, 0x36, 0x87, 0xD9, 0x7F, 0x82, + 0xEE, 0xA1, 0xA3, 0xEF, 0x81, 0x26, 0x49, 0x65, 0x3F, 0x72, 0xBC, 0x89, + 0x4A, 0x04, 0x38, 0x6B, 0x2B, 0x2B, 0x0E, 0xD2, 0x9B, 0x8F, 0x00, 0x01, + 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x93, 0x05, 0xE9, 0x00, 0x28, 0x00, 0x00, + 0x45, 0x22, 0x24, 0x02, 0x35, 0x35, 0x21, 0x15, 0x21, 0x37, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, + 0x02, 0x07, 0x21, 0x3E, 0x03, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, + 0x06, 0x06, 0x02, 0xDE, 0xC8, 0xFE, 0xDE, 0x9C, 0x04, 0x8A, 0xFC, 0x33, + 0x41, 0x5A, 0xAF, 0x7F, 0x81, 0xBF, 0x6B, 0x6B, 0xC3, 0x82, 0x47, 0x78, + 0x5F, 0x40, 0x0F, 0xFE, 0xF2, 0x11, 0x6E, 0xAA, 0xDB, 0x7C, 0xC8, 0x01, + 0x39, 0xB4, 0x64, 0xB9, 0xFE, 0x17, 0xBC, 0x01, 0x4A, 0xD7, 0x8C, 0xD2, + 0x36, 0x86, 0xDA, 0x7F, 0x82, 0xEE, 0xA1, 0xA4, 0xEE, 0x81, 0x26, 0x49, + 0x65, 0x3F, 0x73, 0xBB, 0x89, 0x4A, 0xBD, 0xFE, 0xA6, 0xEA, 0xAC, 0xFE, + 0xE6, 0xCB, 0x6E, 0xFF, 0xFF, 0x00, 0x56, 0xFF, 0xE9, 0x04, 0x99, 0x05, + 0xD2, 0x06, 0x06, 0x05, 0x49, 0x00, 0x00, 0x00, 0x01, 0x00, 0x15, 0x00, + 0x00, 0x05, 0x9D, 0x05, 0xD6, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x36, 0x36, + 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x07, 0x01, 0x21, 0x01, 0x21, 0x01, + 0x33, 0x03, 0xF5, 0x35, 0xA1, 0x8E, 0x44, 0x1E, 0x36, 0x32, 0x17, 0xFE, + 0x6F, 0xFE, 0xB6, 0xFD, 0xF0, 0x01, 0x20, 0x01, 0x96, 0x05, 0x04, 0x88, + 0xA7, 0xA7, 0xEA, 0x42, 0x41, 0xFB, 0x97, 0x05, 0xD2, 0xFB, 0x3F, 0xFF, + 0xFF, 0x00, 0x37, 0xFF, 0x97, 0x06, 0x61, 0x05, 0xD2, 0x04, 0x26, 0x01, + 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x47, 0x02, 0x4E, 0x00, 0x00, 0x00, + 0x03, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x4F, 0x06, 0x27, 0x00, 0x03, 0x00, + 0x1E, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x01, 0x27, 0x01, 0x01, 0x2E, 0x02, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x2E, 0x02, + 0x27, 0x37, 0x16, 0x04, 0x12, 0x12, 0x15, 0x14, 0x02, 0x06, 0x27, 0x3E, + 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x03, 0xA9, 0xFD, 0x78, 0x20, 0x02, 0x88, 0xFE, 0xBE, 0x9B, 0xE8, + 0x80, 0x75, 0xCC, 0x82, 0x4B, 0x73, 0x55, 0x1B, 0x10, 0x29, 0x9E, 0xE2, + 0x93, 0x30, 0x95, 0x01, 0x1A, 0xE2, 0x85, 0x80, 0xE9, 0x9A, 0x59, 0x7A, + 0x40, 0x3A, 0x79, 0x60, 0x5B, 0x79, 0x3C, 0x3A, 0x7A, 0x05, 0x80, 0xFE, + 0xBB, 0x81, 0x01, 0x44, 0xF9, 0xE8, 0x01, 0x88, 0xF2, 0x9D, 0x98, 0xEF, + 0x89, 0x2E, 0x47, 0x27, 0x63, 0xC7, 0xB3, 0x42, 0x94, 0x31, 0xB5, 0xFE, + 0xFD, 0xFE, 0xB8, 0xC4, 0xB4, 0xFE, 0xF8, 0x8D, 0xCC, 0x01, 0x56, 0x97, + 0x60, 0x5A, 0xA0, 0x64, 0x5B, 0x9B, 0x60, 0x5E, 0x9B, 0x5C, 0x00, 0x01, + 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x04, 0x43, 0x00, 0x2D, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, + 0x17, 0x33, 0x17, 0x13, 0x23, 0x03, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x03, + 0x07, 0x23, 0x0E, 0x03, 0x02, 0x43, 0x99, 0xE6, 0x80, 0x80, 0xE9, 0x9B, + 0x5C, 0x8D, 0x69, 0x4C, 0x19, 0x3F, 0x27, 0xAC, 0xE9, 0x9A, 0x16, 0x3A, + 0x4B, 0x61, 0x3D, 0x54, 0x7A, 0x41, 0x40, 0x77, 0x53, 0x3F, 0x65, 0x4F, + 0x39, 0x13, 0x8C, 0xE7, 0x9E, 0x28, 0x3F, 0x1B, 0x4E, 0x6A, 0x8C, 0x18, + 0x8F, 0xFC, 0xA1, 0xA4, 0xFC, 0x8F, 0x33, 0x5E, 0x81, 0x4D, 0xB9, 0xFD, + 0xD5, 0x02, 0x1A, 0x4F, 0x7E, 0x59, 0x30, 0x55, 0x9B, 0x6A, 0x69, 0x9C, + 0x55, 0x32, 0x5C, 0x7E, 0x4C, 0x02, 0x1A, 0xFD, 0xE6, 0xC4, 0x4F, 0x84, + 0x60, 0x35, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xE8, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x55, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0x94, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x01, 0x74, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x00, 0xE0, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, 0x00, 0xB5, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x81, 0x00, 0xE2, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x82, 0x00, 0xBF, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x07, 0x2F, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x83, 0x01, 0x1A, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x07, 0x2F, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x84, 0x01, 0x19, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xE8, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0x01, 0x70, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0x94, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x54, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7E, 0x01, 0x74, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, + 0x05, 0x11, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, + 0x09, 0xE4, 0x01, 0x56, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x00, 0xE0, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, 0x00, 0xB5, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x54, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x81, 0x00, 0xE2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, + 0x05, 0x11, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, + 0x09, 0xE4, 0x01, 0x56, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x82, 0x00, 0xBF, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x07, 0x2F, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x83, 0x01, 0x1A, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x07, 0x2F, 0x06, 0x26, 0x04, 0x54, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x84, 0x01, 0x19, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, + 0x05, 0x11, 0x05, 0xE5, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8F, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, + 0x05, 0x11, 0x05, 0xA2, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEB, 0x00, 0xB3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, + 0x05, 0x11, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, + 0x09, 0xE4, 0x01, 0x56, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0x01, 0x70, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x04, 0x43, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x09, 0xE4, 0x01, 0x56, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x05, 0x11, 0x05, 0xE8, + 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x55, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xD6, 0x06, 0x26, 0x04, 0x54, + 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x1E, 0x05, 0x11, 0x05, 0xD6, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, + 0x00, 0x27, 0x09, 0xE4, 0x01, 0x56, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, + 0x64, 0x00, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5E, 0x04, 0x63, 0x05, 0xE6, + 0x00, 0x1C, 0x00, 0x35, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x35, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x37, 0x11, 0x13, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x14, 0x16, 0x16, 0x75, + 0x79, 0xD8, 0x8D, 0x8D, 0xD3, 0x76, 0x55, 0x9E, 0x6D, 0x76, 0xB9, 0x6B, + 0x78, 0xCE, 0x83, 0x57, 0x89, 0x5F, 0x18, 0x2B, 0xFC, 0x4F, 0x74, 0x3F, + 0x7E, 0x6C, 0x7C, 0x4B, 0x45, 0x64, 0x37, 0x78, 0x66, 0x69, 0x7C, 0x3B, + 0x70, 0xFE, 0x5E, 0x05, 0xB5, 0x96, 0xD0, 0x6D, 0x69, 0xB9, 0x7A, 0x65, + 0x8C, 0x52, 0x10, 0x41, 0x0D, 0x5E, 0xA6, 0x7C, 0x84, 0xC8, 0x70, 0x36, + 0x6C, 0x4F, 0x0E, 0xFD, 0x70, 0x02, 0x6E, 0x3A, 0x6C, 0x49, 0x6D, 0x7F, + 0xC5, 0x32, 0x5D, 0x40, 0x5C, 0x6C, 0x71, 0x60, 0xFD, 0x83, 0x44, 0x69, + 0x3C, 0x00, 0x02, 0x00, 0x16, 0xFE, 0x5E, 0x04, 0x51, 0x04, 0x2E, 0x00, + 0x0D, 0x00, 0x11, 0x00, 0x00, 0x45, 0x01, 0x21, 0x13, 0x16, 0x16, 0x17, + 0x23, 0x36, 0x36, 0x37, 0x13, 0x21, 0x01, 0x03, 0x11, 0x33, 0x11, 0x01, + 0xBC, 0xFE, 0x5A, 0x01, 0x0E, 0xC3, 0x1F, 0x36, 0x1A, 0x3D, 0x1A, 0x34, + 0x1F, 0xC0, 0x01, 0x0B, 0xFE, 0x5A, 0xF7, 0xFF, 0x38, 0x04, 0x66, 0xFD, + 0xCD, 0x5C, 0xB8, 0x5D, 0x5D, 0xB8, 0x5C, 0x02, 0x33, 0xFB, 0x9A, 0xFE, + 0x96, 0x01, 0xA8, 0xFE, 0x58, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x58, 0x05, 0xD2, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x15, 0x2E, 0x03, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x33, 0x15, 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, 0x02, + 0x17, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, + 0x4E, 0x9B, 0xEB, 0x84, 0x84, 0xEB, 0x9B, 0x59, 0x8E, 0x65, 0x35, 0x69, + 0xCE, 0x99, 0xEE, 0xFE, 0xEE, 0x3C, 0x4E, 0x25, 0x2F, 0x50, 0x64, 0x35, + 0x44, 0x85, 0x6C, 0x41, 0x84, 0xEA, 0x9C, 0x51, 0x77, 0x40, 0x41, 0x76, + 0x51, 0x50, 0x78, 0x41, 0x41, 0x77, 0x18, 0x81, 0xEF, 0xA4, 0xA5, 0xE1, + 0x76, 0x60, 0x11, 0x32, 0x45, 0x5E, 0x3E, 0x54, 0x7D, 0x45, 0xD1, 0x17, + 0x2C, 0x21, 0x23, 0x30, 0x20, 0x19, 0x0F, 0x12, 0x4D, 0x7B, 0xB1, 0x78, + 0xA6, 0xF0, 0x81, 0xD4, 0x48, 0x8F, 0x68, 0x6A, 0x91, 0x4C, 0x4B, 0x92, + 0x6A, 0x69, 0x8E, 0x48, 0x00, 0x02, 0x00, 0x43, 0xFF, 0xE9, 0x03, 0xDC, + 0x04, 0x44, 0x00, 0x1B, 0x00, 0x35, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x3E, 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x03, 0x22, + 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x02, + 0x0C, 0x81, 0xCF, 0x79, 0x42, 0x78, 0xA6, 0x63, 0x8D, 0x82, 0x3E, 0x5E, + 0x34, 0x6F, 0x61, 0x41, 0x5A, 0x33, 0x06, 0xF7, 0x0A, 0x78, 0xC9, 0x7F, + 0x68, 0xA4, 0x71, 0x3A, 0x72, 0xC7, 0x80, 0x7C, 0xBE, 0x72, 0x0A, 0xF0, + 0x07, 0x66, 0x58, 0x57, 0x6A, 0x63, 0x62, 0x7A, 0x17, 0x4C, 0x91, 0x66, + 0x49, 0x6B, 0x45, 0x21, 0x78, 0x22, 0x41, 0x2F, 0x44, 0x50, 0x26, 0x48, + 0x35, 0x0A, 0x6D, 0x9A, 0x51, 0x02, 0x1C, 0x1C, 0x3C, 0x60, 0x43, 0x62, + 0x91, 0x51, 0x4E, 0x93, 0x68, 0x0B, 0x45, 0x4F, 0x4B, 0x3B, 0x36, 0x4A, + 0x79, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, 0x03, 0xDC, 0x05, 0xE8, 0x06, + 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x14, 0x00, + 0x00, 0x00, 0x02, 0x00, 0x43, 0xFF, 0xE9, 0x04, 0x03, 0x04, 0x44, 0x00, + 0x1A, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, + 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x03, 0x22, 0x2E, 0x02, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x23, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x02, 0x0A, 0x80, + 0xCE, 0x79, 0x42, 0x78, 0xA6, 0x63, 0x5D, 0x52, 0x5E, 0x72, 0x6F, 0x5F, + 0x51, 0x6F, 0x39, 0xFB, 0x78, 0xE2, 0x97, 0x68, 0xA4, 0x71, 0x3A, 0x72, + 0xC6, 0x7F, 0x6F, 0xB6, 0x84, 0x48, 0xFB, 0x3A, 0x6C, 0x4E, 0x56, 0x6A, + 0x63, 0x62, 0x4A, 0x17, 0x4C, 0x91, 0x66, 0x49, 0x6B, 0x45, 0x21, 0x78, + 0x4B, 0x47, 0x44, 0x50, 0x49, 0xA3, 0x85, 0xB9, 0xFA, 0x7D, 0x02, 0x1C, + 0x1C, 0x3C, 0x60, 0x43, 0x62, 0x91, 0x51, 0x43, 0x89, 0xD1, 0x8E, 0x82, + 0xA0, 0x49, 0x4B, 0x3B, 0x36, 0x4A, 0x79, 0xFF, 0xFF, 0x00, 0x43, 0xFF, + 0xE9, 0x03, 0xDC, 0x04, 0x44, 0x06, 0x06, 0x04, 0x71, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x42, 0xFF, 0xE9, 0x03, 0xDA, 0x04, 0x44, 0x00, 0x1B, 0x00, + 0x35, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x1E, + 0x02, 0x15, 0x14, 0x06, 0x06, 0x03, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x0E, 0x02, 0x02, 0x12, 0x85, 0xCA, 0x77, 0x0A, 0xF6, + 0x06, 0x33, 0x5B, 0x40, 0x62, 0x6E, 0x34, 0x5D, 0x3F, 0x82, 0x8D, 0x64, + 0xA5, 0x78, 0x42, 0x79, 0xCE, 0x88, 0x81, 0x7A, 0x63, 0x62, 0x6A, 0x57, + 0x58, 0x65, 0x08, 0xEF, 0x0A, 0x71, 0xBF, 0x7C, 0x7F, 0xC7, 0x72, 0x3A, + 0x71, 0xA3, 0x17, 0x51, 0x9A, 0x6D, 0x0A, 0x35, 0x48, 0x26, 0x50, 0x44, + 0x2F, 0x41, 0x22, 0x78, 0x21, 0x45, 0x6B, 0x49, 0x66, 0x91, 0x4C, 0x02, + 0x1C, 0x79, 0x4A, 0x36, 0x3B, 0x4B, 0x4F, 0x45, 0x0B, 0x68, 0x93, 0x4E, + 0x51, 0x91, 0x62, 0x43, 0x60, 0x3C, 0x1C, 0x00, 0x02, 0x00, 0x44, 0xFF, + 0xE9, 0x04, 0x04, 0x04, 0x44, 0x00, 0x1A, 0x00, 0x36, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, + 0x06, 0x03, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x07, 0x23, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x0E, 0x02, 0x02, 0x3D, 0x9F, 0xE2, 0x78, 0xFB, 0x39, 0x6F, 0x51, + 0x60, 0x6E, 0x72, 0x5E, 0x51, 0x5C, 0x64, 0xA5, 0x78, 0x42, 0x79, 0xCE, + 0x88, 0x50, 0x49, 0x63, 0x63, 0x6A, 0x57, 0x4D, 0x6D, 0x39, 0x01, 0xFB, + 0x48, 0x84, 0xB6, 0x6F, 0x7F, 0xC6, 0x72, 0x3A, 0x71, 0xA3, 0x17, 0x7D, + 0xFA, 0xB9, 0x85, 0xA3, 0x49, 0x50, 0x44, 0x47, 0x4B, 0x78, 0x21, 0x45, + 0x6B, 0x49, 0x66, 0x91, 0x4C, 0x02, 0x1C, 0x79, 0x4A, 0x36, 0x3B, 0x4B, + 0x49, 0xA0, 0x82, 0x8E, 0xD1, 0x89, 0x43, 0x51, 0x91, 0x62, 0x43, 0x60, + 0x3C, 0x1C, 0x00, 0x03, 0x00, 0x42, 0xFF, 0xE9, 0x05, 0xAA, 0x04, 0x44, + 0x00, 0x11, 0x00, 0x2D, 0x00, 0x47, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x27, 0x07, 0x27, 0x25, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, + 0x06, 0x01, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x03, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x0E, 0x02, 0x05, 0x12, 0x4A, 0x64, 0x3F, 0x15, 0xB1, 0x06, 0x01, + 0x4A, 0x14, 0x26, 0x34, 0x27, 0x11, 0x26, 0x13, 0x28, 0x26, 0x4B, 0xFC, + 0xD9, 0x85, 0xCA, 0x77, 0x0A, 0xF6, 0x06, 0x33, 0x5B, 0x40, 0x62, 0x6E, + 0x34, 0x5D, 0x3F, 0x82, 0x8D, 0x64, 0xA5, 0x78, 0x42, 0x79, 0xCE, 0x88, + 0x81, 0x7A, 0x63, 0x62, 0x6A, 0x57, 0x58, 0x65, 0x08, 0xEF, 0x0A, 0x71, + 0xBF, 0x7C, 0x7F, 0xC7, 0x72, 0x3A, 0x71, 0xA3, 0x01, 0x8A, 0x37, 0x7A, + 0x63, 0x53, 0xB0, 0x90, 0x7E, 0x92, 0x3D, 0x08, 0x06, 0xA0, 0x11, 0x11, + 0xFE, 0x5F, 0x51, 0x9A, 0x6D, 0x0A, 0x35, 0x48, 0x26, 0x50, 0x44, 0x2F, + 0x41, 0x22, 0x78, 0x21, 0x45, 0x6B, 0x49, 0x66, 0x91, 0x4C, 0x02, 0x1C, + 0x79, 0x4A, 0x36, 0x3B, 0x4B, 0x4F, 0x45, 0x0B, 0x68, 0x93, 0x4E, 0x51, + 0x91, 0x62, 0x43, 0x60, 0x3C, 0x1C, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, + 0x03, 0xDC, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7D, 0x01, 0x53, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, + 0x03, 0xDC, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7E, 0x01, 0x33, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, + 0x03, 0xDC, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7F, 0x00, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, + 0x03, 0xDC, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x80, 0x00, 0x74, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, + 0x03, 0xDC, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x81, 0x00, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, + 0x03, 0xDC, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x82, 0x00, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE9, + 0x03, 0xDC, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x88, 0x01, 0x30, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFE, 0xE1, + 0x03, 0xCA, 0x05, 0xD2, 0x00, 0x2B, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x37, + 0x3E, 0x02, 0x37, 0x07, 0x0E, 0x03, 0x23, 0x21, 0x35, 0x21, 0x15, 0x01, + 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x32, 0x16, 0x15, 0x15, + 0x02, 0xED, 0x14, 0x33, 0x2F, 0x58, 0x94, 0xD4, 0x73, 0x45, 0x86, 0x61, + 0x89, 0x25, 0x57, 0x58, 0x28, 0x01, 0x28, 0x56, 0x58, 0x58, 0x2A, 0xFE, + 0xDA, 0x03, 0x3B, 0xFE, 0xA4, 0x61, 0x7C, 0x3A, 0x42, 0x7C, 0x55, 0x39, + 0x9F, 0xA1, 0xFE, 0xE1, 0xB8, 0x29, 0x2D, 0x11, 0x5E, 0xB2, 0x7E, 0x60, + 0xA1, 0xB0, 0x75, 0xA2, 0x2D, 0x5B, 0x58, 0x28, 0x55, 0x02, 0x03, 0x02, + 0x01, 0xD1, 0xB9, 0xFE, 0x5A, 0x74, 0x9A, 0x79, 0x45, 0x4D, 0x5F, 0x2D, + 0x83, 0x9A, 0xD0, 0x00, 0x01, 0x00, 0x75, 0xFE, 0x5E, 0x04, 0x31, 0x04, + 0x42, 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x01, 0x74, 0xFF, 0xF8, 0x01, 0x2B, 0x32, 0xB9, + 0x89, 0x70, 0xAA, 0x60, 0xFE, 0x71, 0x66, 0x42, 0x6A, 0x3C, 0x02, 0x62, + 0xFD, 0x9E, 0x04, 0x2E, 0xFE, 0xF1, 0x8E, 0x95, 0x61, 0xBA, 0x88, 0xFB, + 0xBF, 0x04, 0x19, 0x74, 0x79, 0x37, 0x73, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF3, 0x01, 0x5D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7D, 0x01, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7E, 0x01, 0x7C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7F, 0x00, 0xE7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x80, 0x00, 0xBD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x81, 0x00, 0xE9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x82, 0x00, 0xC6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x07, 0x2F, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x83, 0x01, 0x22, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x07, 0x2F, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x84, 0x01, 0x20, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x88, 0x01, 0x78, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x1E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0x9C, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1E, 0x04, 0x31, 0x05, 0xF5, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, + 0x07, 0x0A, 0x7E, 0x01, 0x7C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x1E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x00, 0xE7, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1E, 0x04, 0x31, 0x05, 0xF5, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, + 0x07, 0x0A, 0x80, 0x00, 0xBD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x1E, 0x04, 0x31, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, 0x07, 0x0A, 0x81, 0x00, 0xE9, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1E, 0x04, 0x31, 0x05, 0xF5, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, + 0x07, 0x0A, 0x82, 0x00, 0xC6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x1E, 0x04, 0x31, 0x07, 0x2F, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, 0x07, 0x0A, 0x83, 0x01, 0x22, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1E, 0x04, 0x31, 0x07, 0x2F, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, + 0x07, 0x0A, 0x84, 0x01, 0x20, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0x1E, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, 0x07, 0x0A, 0x88, 0x01, 0x78, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1E, 0x04, 0x31, 0x04, 0x42, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x06, 0x09, 0xE4, 0x03, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x1E, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x04, + 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x03, 0x00, 0x00, 0x07, 0x0A, + 0xF3, 0x01, 0x5D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x04, + 0x31, 0x05, 0xD6, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x06, 0x06, + 0xEC, 0x6C, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x1E, 0x04, 0x31, 0x05, + 0xD6, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x03, + 0x00, 0x00, 0x06, 0x06, 0xEC, 0x6C, 0x00, 0x00, 0x03, 0x00, 0x4F, 0xFF, + 0xE8, 0x04, 0x7E, 0x05, 0xEA, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x23, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x02, 0x35, 0x35, 0x34, 0x12, 0x36, 0x33, 0x32, + 0x16, 0x12, 0x15, 0x15, 0x14, 0x02, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x03, 0x35, 0x21, + 0x15, 0x02, 0x66, 0xA4, 0xF0, 0x83, 0x83, 0xF0, 0xA4, 0xA5, 0xF0, 0x83, + 0x83, 0xF0, 0xA5, 0x85, 0x95, 0x95, 0x85, 0x85, 0x95, 0x95, 0xC9, 0x02, + 0x9E, 0x18, 0xB0, 0x01, 0x43, 0xDC, 0x64, 0xDD, 0x01, 0x42, 0xB0, 0xB0, + 0xFE, 0xBE, 0xDD, 0x64, 0xDC, 0xFE, 0xBD, 0xB0, 0xD4, 0xF1, 0xE5, 0xAE, + 0xE5, 0xF1, 0xF1, 0xE5, 0xAE, 0xE5, 0xF1, 0x01, 0xC9, 0xC8, 0xC8, 0x00, + 0x01, 0x00, 0x75, 0xFF, 0xFE, 0x02, 0x0A, 0x04, 0x2E, 0x00, 0x0F, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0xB0, 0xA6, 0x95, 0xFF, 0x28, 0x35, + 0x0D, 0x19, 0x09, 0x0A, 0x13, 0x2E, 0x02, 0x81, 0x90, 0x03, 0x1F, 0xFC, + 0xFE, 0x38, 0x2C, 0x01, 0x01, 0xC7, 0x02, 0x03, 0xFF, 0xFF, 0xFF, 0xA4, + 0xFF, 0xFE, 0x02, 0x44, 0x07, 0x22, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x4B, 0xFE, 0xCC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFF, 0xFE, 0x02, 0x0A, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0xF3, 0xF4, 0x00, 0xFF, 0xFF, 0xFF, 0x89, 0xFF, 0xFE, + 0x02, 0x5F, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0xFE, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xFE, + 0x02, 0x0A, 0x05, 0xF5, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x7D, 0x33, 0x00, 0xFF, 0xFF, 0x00, 0x63, 0xFF, 0xFE, 0x02, 0x0A, + 0x05, 0xF5, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, + 0x13, 0x00, 0xFF, 0xFF, 0xFF, 0xCF, 0xFF, 0xFE, 0x02, 0x0A, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7F, 0xFF, 0x7F, + 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xA4, 0xFF, 0xFE, 0x02, 0x0A, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, 0xFF, 0x54, + 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xD1, 0xFF, 0xFE, 0x02, 0x40, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x81, 0xFF, 0x81, + 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xAE, 0xFF, 0xFE, 0x02, 0x2A, 0x05, 0xF5, + 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x82, 0xFF, 0x5E, + 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xB9, 0xFF, 0xFE, 0x02, 0x30, 0x07, 0x2F, + 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0xB9, 0x00, + 0xFF, 0xFF, 0xFF, 0xB8, 0xFF, 0xFE, 0x02, 0x2F, 0x07, 0x2F, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0xB8, 0x00, 0xFF, 0xFF, + 0x00, 0x37, 0xFF, 0xFE, 0x02, 0x0A, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x99, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x88, 0x0F, 0x00, 0xFF, 0xFF, 0xFF, 0xB0, + 0xFF, 0xFE, 0x02, 0x38, 0x05, 0xE5, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0x49, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xD7, + 0xFF, 0xFE, 0x02, 0x11, 0x05, 0xA2, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x53, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x35, + 0xFF, 0xFE, 0x02, 0xB6, 0x06, 0x8C, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x85, 0xFE, 0x4D, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xAE, + 0xFF, 0xFE, 0x02, 0x3B, 0x05, 0xD6, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEC, 0xFF, 0x03, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x81, + 0xFF, 0xFE, 0x02, 0x57, 0x07, 0x01, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x87, 0xFF, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x16, + 0xFF, 0xFA, 0x04, 0xC4, 0x05, 0xD7, 0x00, 0x26, 0x00, 0x00, 0x73, 0x01, + 0x27, 0x2E, 0x02, 0x07, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x01, 0x1E, 0x02, 0x37, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x27, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0x16, + 0x01, 0x9D, 0x26, 0x11, 0x2A, 0x39, 0x27, 0x62, 0x0E, 0x26, 0x57, 0x2B, + 0x4F, 0x7F, 0x5E, 0x21, 0x01, 0x5F, 0x12, 0x28, 0x36, 0x26, 0x4A, 0x0E, + 0x1F, 0x47, 0x24, 0x50, 0x7B, 0x5B, 0x1E, 0x74, 0x20, 0x36, 0x1A, 0x45, + 0x1A, 0x35, 0x20, 0xC4, 0x04, 0x2B, 0x65, 0x2F, 0x35, 0x15, 0x03, 0x02, + 0xCD, 0x03, 0x03, 0x36, 0x70, 0x56, 0xFC, 0x68, 0x2F, 0x36, 0x15, 0x02, + 0x02, 0xCC, 0x03, 0x04, 0x37, 0x6F, 0x57, 0x01, 0x3C, 0x5C, 0xB7, 0x5E, + 0x5D, 0xB8, 0x5C, 0xFD, 0xCD, 0x00, 0x01, 0x00, 0x46, 0xFE, 0xE1, 0x03, + 0xE7, 0x05, 0xD2, 0x00, 0x33, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x23, 0x22, 0x24, 0x35, 0x34, 0x3E, 0x03, 0x37, 0x17, 0x2E, 0x03, + 0x35, 0x34, 0x36, 0x36, 0x37, 0x15, 0x05, 0x35, 0x21, 0x15, 0x07, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x21, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x33, 0x33, 0x32, 0x16, 0x15, 0x15, 0x03, 0x0B, 0x14, 0x32, 0x2F, + 0x64, 0xE6, 0xFE, 0xFA, 0x2B, 0x4F, 0x69, 0x7D, 0x44, 0x04, 0x48, 0x82, + 0x64, 0x39, 0x58, 0x9E, 0x69, 0xFE, 0xA5, 0x03, 0x40, 0x95, 0xD5, 0xE2, + 0x8B, 0x8C, 0xEE, 0xFE, 0xF6, 0x9A, 0xA4, 0x96, 0x8D, 0x48, 0x9F, 0xA1, + 0xFE, 0xE1, 0xBA, 0x29, 0x2C, 0x10, 0xD1, 0xB6, 0x4A, 0x76, 0x5B, 0x3F, + 0x24, 0x04, 0x1B, 0x03, 0x25, 0x44, 0x65, 0x44, 0x55, 0x78, 0x43, 0x06, + 0x0E, 0x04, 0xCB, 0xC1, 0x08, 0x0C, 0x68, 0x74, 0x5A, 0x6B, 0xCE, 0x75, + 0x71, 0x6B, 0x6F, 0x83, 0x9A, 0xD0, 0x00, 0x03, 0x00, 0x2C, 0xFF, 0xFE, + 0x04, 0xDE, 0x04, 0x2E, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x25, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, + 0x04, 0x63, 0xA1, 0x95, 0xFA, 0x2C, 0x36, 0x10, 0x1C, 0x0C, 0x0A, 0x16, + 0x36, 0xFC, 0x55, 0xFA, 0xFE, 0x5E, 0x04, 0xB2, 0x02, 0x86, 0x8B, 0x02, + 0xE7, 0xFD, 0x36, 0x36, 0x2F, 0x01, 0x01, 0xC6, 0x01, 0x04, 0x02, 0x03, + 0xF6, 0xFC, 0x0A, 0x03, 0x5F, 0xCF, 0xCF, 0x00, 0x02, 0x00, 0x75, 0xFE, + 0x5E, 0x04, 0x7E, 0x04, 0x42, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x53, + 0x11, 0x34, 0x12, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x75, + 0x81, 0xE8, 0x9C, 0x9B, 0xE8, 0x81, 0x74, 0xCE, 0x87, 0x4D, 0x79, 0x59, + 0x1E, 0x04, 0x01, 0x02, 0x53, 0x76, 0x3E, 0x3D, 0x74, 0x53, 0x53, 0x7B, + 0x43, 0x42, 0x7A, 0xFE, 0x5E, 0x03, 0xA4, 0xB7, 0x01, 0x01, 0x88, 0x85, + 0xF9, 0xAF, 0xA5, 0xFA, 0x8B, 0x2F, 0x52, 0x37, 0xFD, 0xBB, 0x02, 0x60, + 0x55, 0x9C, 0x69, 0x68, 0x9B, 0x54, 0x55, 0x9A, 0x68, 0x69, 0x9B, 0x56, + 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x04, 0x7E, 0x05, 0xF5, 0x06, 0x26, + 0x04, 0xAE, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0xB9, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x04, 0x7E, 0x05, 0xF5, 0x06, 0x26, + 0x04, 0xAE, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x01, 0x99, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xBF, 0xFE, 0x5E, 0x04, 0x7E, 0x04, 0x42, 0x06, 0x26, + 0x04, 0xAE, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x4F, 0xFC, 0x5D, + 0x00, 0x01, 0x00, 0x44, 0xFE, 0xE1, 0x04, 0x2D, 0x04, 0x44, 0x00, 0x26, + 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x23, 0x23, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x15, 0x03, 0x16, 0x4B, 0x48, 0x36, 0x9C, 0xEB, 0x82, 0x82, 0xEB, + 0x9C, 0x62, 0xA6, 0x7F, 0x4E, 0x0B, 0xF7, 0x07, 0x26, 0x3B, 0x4E, 0x30, + 0x55, 0x77, 0x3E, 0x3E, 0x77, 0x55, 0x43, 0x6A, 0x9F, 0x57, 0xFE, 0xE1, + 0x9F, 0x41, 0x3F, 0x81, 0xEF, 0xA5, 0xA5, 0xFC, 0x8E, 0x39, 0x68, 0x8F, + 0x57, 0x0B, 0x2B, 0x46, 0x32, 0x1C, 0x57, 0x9C, 0x69, 0x68, 0x92, 0x4D, + 0x45, 0x89, 0x67, 0xB8, 0x00, 0x01, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0xC9, + 0x04, 0x2E, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x21, 0x15, 0x21, 0x07, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x35, + 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x02, 0x50, 0x9C, 0xED, 0x83, + 0x82, 0xEB, 0x9D, 0x02, 0x7B, 0xFE, 0x4B, 0xC6, 0x52, 0x77, 0x3F, 0x40, + 0x77, 0x53, 0x54, 0x77, 0x40, 0x40, 0x77, 0x54, 0x6C, 0xBD, 0x8F, 0x52, + 0x82, 0xEA, 0x18, 0x8A, 0xF7, 0xA4, 0xA4, 0xF4, 0x89, 0xCB, 0x08, 0x51, + 0x96, 0x67, 0x67, 0x98, 0x53, 0x54, 0x98, 0x66, 0x67, 0x96, 0x51, 0x5D, + 0x34, 0x6E, 0xAD, 0x77, 0x96, 0xEC, 0x88, 0x00, 0x01, 0x00, 0x12, 0xFF, + 0xFD, 0x03, 0xDC, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x35, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x33, 0x17, 0x06, 0x06, 0x02, 0xB8, 0xA2, 0x9E, 0xFE, 0x9A, 0x03, + 0xCA, 0xFE, 0x9B, 0x2F, 0x3D, 0x19, 0x37, 0x19, 0x09, 0x27, 0x4F, 0x03, + 0x89, 0x8A, 0x02, 0x4B, 0xD3, 0xD3, 0xFD, 0xD6, 0x39, 0x2E, 0x02, 0xCA, + 0x03, 0x02, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x04, 0x2E, + 0x06, 0x06, 0x03, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, + 0x04, 0x31, 0x06, 0x8C, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xE4, 0xA9, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, + 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x53, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xF5, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0x92, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xF5, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x01, 0x72, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xF5, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x00, 0xDE, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xF5, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, 0x00, 0xB3, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xF5, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x81, 0x00, 0xE0, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xF5, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x82, 0x00, 0xBD, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x2F, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x83, 0x01, 0x18, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x2F, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x84, 0x01, 0x17, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE8, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0x01, 0x6F, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xE5, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xA8, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xA2, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xB2, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x06, 0x8C, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x85, 0xAC, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xD6, 0x06, 0x26, + 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x62, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x01, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x87, 0x00, 0x73, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x44, 0xFE, 0x5E, 0x05, 0xC1, 0x04, 0x45, 0x00, 0x2D, 0x00, 0x00, + 0x41, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x02, + 0x04, 0x23, 0x23, 0x22, 0x24, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, + 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x02, 0x7E, 0x4D, + 0x9E, 0x79, 0x8E, 0xD7, 0x7A, 0xA2, 0xFE, 0xD7, 0xC9, 0x6B, 0xC7, 0xFE, + 0xE3, 0x9A, 0x72, 0xD1, 0x90, 0x12, 0x4A, 0x67, 0x35, 0x59, 0xAB, 0x7B, + 0x6B, 0x80, 0xB5, 0x60, 0x34, 0x5D, 0x3F, 0x2C, 0x35, 0x15, 0xFE, 0x5E, + 0x04, 0x52, 0x7E, 0xB5, 0x62, 0x8A, 0xF2, 0x9C, 0xB4, 0xFE, 0xFC, 0x8D, + 0x8B, 0x01, 0x00, 0xAF, 0x96, 0xF1, 0x93, 0x07, 0xD1, 0x04, 0x56, 0x91, + 0x5E, 0x79, 0xA2, 0x52, 0x55, 0xA8, 0x7C, 0x5C, 0x8F, 0x51, 0x2D, 0x52, + 0x36, 0xFB, 0xA2, 0x00, 0x03, 0x00, 0x44, 0xFE, 0x5E, 0x05, 0x57, 0x05, + 0xD4, 0x00, 0x11, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x11, 0x33, + 0x11, 0x02, 0x50, 0x9D, 0xEC, 0x83, 0x83, 0xEC, 0x9D, 0xFB, 0x9E, 0xEB, + 0x83, 0x83, 0xEB, 0x9E, 0xFB, 0xFB, 0x54, 0x77, 0x40, 0x40, 0x77, 0x54, + 0xFB, 0x52, 0x78, 0x40, 0x40, 0x77, 0x53, 0xFB, 0x18, 0x8C, 0xFB, 0xA6, + 0xA6, 0xFC, 0x8D, 0x8D, 0xFC, 0xA6, 0xA6, 0xFB, 0x8C, 0xD3, 0x56, 0x9C, + 0x68, 0x69, 0x9C, 0x57, 0x57, 0x9C, 0x69, 0x68, 0x9C, 0x56, 0xFD, 0xA3, + 0x07, 0x76, 0xF8, 0x8A, 0x00, 0x02, 0x00, 0x75, 0xFE, 0x5E, 0x05, 0xE2, + 0x05, 0x49, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x23, 0x03, 0x11, 0x33, 0x11, + 0x02, 0xAD, 0xB3, 0xFE, 0x87, 0xFE, 0x47, 0x8C, 0x67, 0xFD, 0x68, 0x8B, + 0x47, 0xFE, 0x87, 0xFE, 0xB3, 0xFD, 0xFD, 0x14, 0x83, 0xF8, 0xB1, 0x02, + 0x16, 0xFD, 0xEE, 0x72, 0x9B, 0x4F, 0x4F, 0x9B, 0x72, 0x02, 0x12, 0xFD, + 0xEA, 0xB1, 0xF8, 0x83, 0xFE, 0x72, 0x06, 0xEB, 0xF9, 0x15, 0x00, 0x01, + 0x00, 0x44, 0xFF, 0xF0, 0x06, 0x26, 0x04, 0x2E, 0x00, 0x31, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x21, 0x0E, 0x02, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x21, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x33, 0x0E, 0x02, 0x01, + 0xF2, 0x78, 0xC3, 0x73, 0x4D, 0x70, 0x36, 0x01, 0x0A, 0x41, 0x74, 0x48, + 0x65, 0x60, 0x5A, 0x58, 0xF6, 0x52, 0x5B, 0x62, 0x66, 0x48, 0x73, 0x42, + 0x01, 0x0A, 0x36, 0x71, 0x4C, 0x73, 0xC4, 0x7A, 0x6D, 0x8D, 0x4E, 0x0F, + 0x2B, 0x0F, 0x50, 0x8D, 0x10, 0x6D, 0xDC, 0xA5, 0x8C, 0xE9, 0xAB, 0x30, + 0x49, 0xAC, 0xD0, 0x81, 0x90, 0x9A, 0x89, 0x85, 0xEF, 0xEF, 0x85, 0x89, + 0x99, 0x90, 0x83, 0xD0, 0xAB, 0x49, 0x30, 0xAA, 0xE9, 0x8D, 0xA6, 0xDB, + 0x6D, 0x52, 0x8E, 0x5A, 0x5C, 0x8E, 0x50, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xE8, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF3, 0x02, 0x36, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7D, 0x02, 0x75, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7E, 0x02, 0x55, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7F, 0x01, 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x80, 0x01, 0x96, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x81, 0x01, 0xC2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x82, 0x01, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x07, 0x2F, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x83, 0x01, 0xFB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x07, 0x2F, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x84, 0x01, 0xFA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xF0, 0x06, 0x26, 0x05, 0xE8, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x88, 0x02, 0x51, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, + 0x1E, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x02, + 0x75, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x06, 0x26, 0x05, + 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, + 0x44, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x02, 0x55, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, + 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7F, 0x01, 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, + 0x1E, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, 0x01, + 0x96, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x06, 0x26, 0x05, + 0xF5, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, + 0x44, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x81, 0x01, 0xC2, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x06, 0x26, 0x05, 0xF5, 0x06, 0x26, 0x04, + 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x82, 0x01, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, + 0x1E, 0x06, 0x26, 0x07, 0x2F, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x83, 0x01, + 0xFB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x06, 0x26, 0x07, + 0x2F, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, + 0x44, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x84, 0x01, 0xFA, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x06, 0x26, 0x05, 0xE8, 0x06, 0x26, 0x04, + 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x88, 0x02, 0x51, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, + 0x1E, 0x06, 0x26, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, + 0x1E, 0x06, 0x26, 0x05, 0xE8, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x02, 0x44, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x02, + 0x36, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xF0, 0x06, 0x26, 0x05, + 0xD6, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x01, + 0x45, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x1E, 0x06, 0x26, 0x05, + 0xD6, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, + 0x44, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x01, 0x45, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x41, 0xFE, 0x46, 0x04, 0xB0, 0x04, 0x5E, 0x00, 0x1F, 0x00, + 0x00, 0x41, 0x22, 0x26, 0x35, 0x26, 0x36, 0x36, 0x37, 0x01, 0x21, 0x01, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, + 0x01, 0x21, 0x01, 0x1E, 0x02, 0x17, 0x14, 0x06, 0x02, 0x77, 0x99, 0xB3, + 0x01, 0x10, 0x1D, 0x15, 0x02, 0x39, 0x01, 0x0B, 0xFD, 0xFA, 0x37, 0x43, + 0x24, 0x23, 0x20, 0x26, 0x3C, 0x37, 0xFD, 0xF7, 0x01, 0x0A, 0x02, 0x31, + 0x19, 0x1B, 0x0B, 0x01, 0xAD, 0xFE, 0x46, 0x85, 0x81, 0x1E, 0x48, 0x4C, + 0x26, 0x04, 0x3A, 0xFC, 0x1D, 0x6C, 0x8B, 0x35, 0x1F, 0x26, 0x25, 0x20, + 0x37, 0x8F, 0x6B, 0x03, 0xDE, 0xFB, 0xCB, 0x2C, 0x52, 0x45, 0x1C, 0x80, + 0x84, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x58, 0x05, 0xD2, 0x00, + 0x24, 0x00, 0x34, 0x00, 0x00, 0x45, 0x22, 0x26, 0x02, 0x35, 0x35, 0x34, + 0x3E, 0x03, 0x37, 0x3E, 0x02, 0x35, 0x33, 0x0E, 0x02, 0x07, 0x0E, 0x02, + 0x07, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x02, 0x51, 0x99, 0xED, 0x87, 0x26, 0x56, 0x91, + 0xD4, 0x91, 0x44, 0x44, 0x18, 0xD3, 0x01, 0x41, 0x97, 0x82, 0x92, 0xAF, + 0x59, 0x12, 0x02, 0x20, 0x6C, 0x91, 0x57, 0x86, 0xC9, 0x71, 0x83, 0xE9, + 0x99, 0x51, 0x76, 0x41, 0x40, 0x75, 0x51, 0x51, 0x7D, 0x45, 0x44, 0x7C, + 0x18, 0x8A, 0x01, 0x04, 0xB8, 0x23, 0x91, 0xEE, 0xBA, 0x86, 0x4E, 0x0A, + 0x05, 0x16, 0x2B, 0x24, 0x62, 0x81, 0x46, 0x0A, 0x0B, 0x4B, 0x9A, 0x83, + 0x3F, 0x61, 0x38, 0x80, 0xE3, 0x95, 0xA0, 0xF7, 0x8D, 0xCE, 0x4F, 0x95, + 0x67, 0x68, 0x93, 0x4E, 0x50, 0x94, 0x67, 0x65, 0x94, 0x50, 0x00, 0x03, + 0x00, 0x75, 0x00, 0x00, 0x04, 0x16, 0x04, 0x2E, 0x00, 0x10, 0x00, 0x19, + 0x00, 0x22, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x07, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x21, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x23, 0x75, 0x01, 0xCC, 0xC5, 0xE5, 0x6E, 0x6A, 0x51, 0x74, 0x3E, + 0x5A, 0xB1, 0x82, 0xFE, 0xDB, 0x01, 0x1F, 0x4B, 0x52, 0x52, 0x4B, 0xFE, + 0xE1, 0xE6, 0x52, 0x5A, 0x5F, 0x56, 0xDD, 0x04, 0x2E, 0x8F, 0x8D, 0x5C, + 0x74, 0x11, 0x07, 0x44, 0x6F, 0x4B, 0x5C, 0x87, 0x49, 0xCB, 0x41, 0x3C, + 0x42, 0x47, 0xA4, 0x41, 0x3B, 0x38, 0x3E, 0x00, 0x01, 0x00, 0x75, 0x00, + 0x00, 0x03, 0x57, 0x04, 0x2E, 0x00, 0x05, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x11, 0x23, 0x11, 0x03, 0x57, 0xFE, 0x1D, 0xFF, 0x04, 0x2E, 0xD9, 0xFC, + 0xAB, 0x04, 0x2E, 0x00, 0x02, 0x00, 0x75, 0x00, 0x00, 0x03, 0x57, 0x05, + 0x4C, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x31, + 0x15, 0x21, 0x11, 0x23, 0x11, 0x02, 0x62, 0xF5, 0xFE, 0x1D, 0xFF, 0x04, + 0x2E, 0x01, 0x1E, 0xFE, 0xE2, 0xD9, 0xFC, 0xAB, 0x04, 0x2E, 0xFF, 0xFF, + 0xFF, 0xDE, 0xFE, 0x5B, 0x03, 0x57, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xE5, + 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0xFF, 0x6F, 0xFF, 0x3D, 0x00, 0x06, + 0x0B, 0x3F, 0xFA, 0x00, 0x00, 0x02, 0x00, 0x1A, 0xFE, 0xBC, 0x04, 0xEF, + 0x04, 0x2E, 0x00, 0x10, 0x00, 0x17, 0x00, 0x00, 0x53, 0x11, 0x33, 0x3E, + 0x03, 0x37, 0x13, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x13, + 0x21, 0x11, 0x21, 0x07, 0x06, 0x06, 0x1A, 0x58, 0x23, 0x31, 0x20, 0x15, + 0x08, 0x21, 0x03, 0x1F, 0xAC, 0xF6, 0xFD, 0x1C, 0x66, 0x01, 0xD4, 0xFE, + 0xB1, 0x10, 0x0D, 0x33, 0xFE, 0xBC, 0x02, 0x1D, 0x1C, 0x54, 0x72, 0x93, + 0x5C, 0x01, 0x84, 0xFC, 0xAB, 0xFD, 0xE3, 0x01, 0x44, 0xFE, 0xBC, 0x02, + 0x1D, 0x02, 0x7F, 0xAE, 0xA2, 0xE6, 0x00, 0x01, 0x00, 0x19, 0x00, 0x00, + 0x06, 0x73, 0x04, 0x2E, 0x00, 0x15, 0x00, 0x00, 0x73, 0x01, 0x01, 0x21, + 0x01, 0x33, 0x11, 0x33, 0x11, 0x33, 0x01, 0x21, 0x01, 0x01, 0x21, 0x01, + 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0x19, 0x01, 0xA0, 0xFE, 0x64, 0x01, + 0x26, 0x01, 0x48, 0x3C, 0xFF, 0x3B, 0x01, 0x47, 0x01, 0x27, 0xFE, 0x65, + 0x01, 0x9F, 0xFE, 0xD3, 0xFE, 0xBA, 0x3A, 0xFF, 0x3A, 0xFE, 0xB9, 0x02, + 0x23, 0x02, 0x0B, 0xFE, 0x4F, 0x01, 0xB1, 0xFE, 0x4F, 0x01, 0xB1, 0xFD, + 0xF5, 0xFD, 0xDD, 0x01, 0xAB, 0xFE, 0x55, 0x01, 0xAB, 0xFE, 0x55, 0xFF, + 0xFF, 0x00, 0x19, 0xFE, 0xC0, 0x06, 0xC8, 0x04, 0x2E, 0x04, 0x26, 0x04, + 0xE9, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x05, 0x42, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x40, 0xFF, 0xF0, 0x03, 0xB1, 0x04, 0x42, 0x00, 0x2D, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0xF6, + 0x87, 0xC3, 0x6A, 0x02, 0xF9, 0x02, 0x68, 0x51, 0x53, 0x68, 0x6F, 0x5E, + 0x55, 0x55, 0x51, 0x66, 0x59, 0x49, 0x4A, 0x64, 0x01, 0xF1, 0x01, 0x6B, + 0xBC, 0x7A, 0x77, 0xB4, 0x66, 0x79, 0x61, 0x7D, 0x84, 0x71, 0xC8, 0x10, + 0x5C, 0x9B, 0x60, 0x40, 0x4C, 0x4C, 0x3C, 0x40, 0x4E, 0xA3, 0x4A, 0x3E, + 0x3B, 0x48, 0x47, 0x3E, 0x60, 0x94, 0x54, 0x4F, 0x89, 0x56, 0x5C, 0x7A, + 0x0F, 0x03, 0x0F, 0x8C, 0x62, 0x5C, 0x90, 0x53, 0x00, 0x01, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x42, 0x04, 0x2E, 0x00, 0x0B, 0x00, 0x00, 0x61, 0x23, + 0x11, 0x23, 0x01, 0x23, 0x11, 0x33, 0x11, 0x33, 0x01, 0x33, 0x04, 0x42, + 0xFC, 0x04, 0xFE, 0x15, 0xE2, 0xFD, 0x04, 0x01, 0xE7, 0xE5, 0x02, 0xB3, + 0xFD, 0x4D, 0x04, 0x2E, 0xFD, 0x4E, 0x02, 0xB2, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0xC0, 0x05, 0x01, 0x05, 0xE5, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, + 0x00, 0x27, 0x0A, 0x8F, 0x00, 0xB0, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, + 0x02, 0xF2, 0x00, 0x00, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x04, 0x65, + 0x04, 0x2E, 0x00, 0x0C, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x33, 0x01, + 0x21, 0x01, 0x01, 0x21, 0x01, 0x23, 0x11, 0x75, 0xFF, 0x5D, 0x01, 0x5D, + 0x01, 0x32, 0xFE, 0x60, 0x01, 0xA5, 0xFE, 0xCC, 0xFE, 0xC3, 0x80, 0x04, + 0x2E, 0xFE, 0x4B, 0x01, 0xB5, 0xFD, 0xF6, 0xFD, 0xDC, 0x01, 0xA0, 0xFE, + 0x60, 0x00, 0x02, 0x00, 0x75, 0xFE, 0xD3, 0x04, 0x6C, 0x04, 0x2E, 0x00, + 0x14, 0x00, 0x1E, 0x00, 0x00, 0x41, 0x35, 0x21, 0x32, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x01, 0x11, 0x33, 0x11, 0x33, 0x01, 0x21, 0x01, 0x23, 0x11, 0x01, 0x00, + 0x01, 0x5A, 0x7B, 0xC4, 0x8A, 0x49, 0x5F, 0xA7, 0x6D, 0x6C, 0x4B, 0x69, + 0x37, 0x50, 0x93, 0x64, 0xFE, 0x44, 0xFF, 0x5D, 0x01, 0x5D, 0x01, 0x32, + 0xFD, 0xFA, 0xE6, 0x01, 0xA0, 0xC9, 0x43, 0x79, 0xA4, 0x60, 0x70, 0xAE, + 0x84, 0x34, 0xC4, 0x23, 0x4F, 0x62, 0x40, 0x4E, 0x6D, 0x3A, 0xFE, 0x60, + 0x04, 0x2E, 0xFE, 0x4B, 0x01, 0xB5, 0xFD, 0x72, 0xFE, 0x60, 0xFF, 0xFF, + 0x00, 0x75, 0xFE, 0xC0, 0x04, 0xAB, 0x04, 0x2E, 0x04, 0x26, 0x04, 0xEE, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x25, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x75, 0x00, 0x00, 0x04, 0xC7, 0x04, 0x2E, 0x00, 0x0C, 0x00, 0x10, + 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x01, 0x21, 0x01, 0x01, 0x21, + 0x03, 0x21, 0x11, 0x13, 0x33, 0x11, 0x23, 0x75, 0xFF, 0x01, 0x20, 0x01, + 0x08, 0x01, 0x26, 0xFE, 0xB7, 0x01, 0x4E, 0xFE, 0xD8, 0xEE, 0xFE, 0xC3, + 0x5E, 0x9D, 0x9D, 0x04, 0x2E, 0xFE, 0x49, 0x01, 0xB7, 0xFD, 0xF6, 0xFD, + 0xDC, 0x01, 0xA4, 0xFE, 0x5C, 0x03, 0x3F, 0xFD, 0x9A, 0x00, 0x02, 0x00, + 0x12, 0x00, 0x00, 0x05, 0x2A, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x10, 0x00, + 0x00, 0x53, 0x35, 0x21, 0x15, 0x03, 0x11, 0x33, 0x11, 0x33, 0x01, 0x21, + 0x01, 0x01, 0x21, 0x01, 0x23, 0x11, 0x12, 0x01, 0x93, 0x6B, 0xFF, 0x5D, + 0x01, 0x5D, 0x01, 0x32, 0xFE, 0x60, 0x01, 0xA5, 0xFE, 0xCC, 0xFE, 0xC3, + 0x80, 0x03, 0x64, 0xCA, 0xCA, 0xFC, 0x9C, 0x04, 0x2E, 0xFE, 0x4B, 0x01, + 0xB5, 0xFD, 0xF6, 0xFD, 0xDC, 0x01, 0xA0, 0xFE, 0x60, 0x00, 0x01, 0x00, + 0x12, 0x00, 0x00, 0x04, 0x31, 0x04, 0x2E, 0x00, 0x12, 0x00, 0x00, 0x73, + 0x35, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x13, 0x21, 0x11, 0x23, 0x11, 0x21, + 0x03, 0x0E, 0x02, 0x23, 0x12, 0x2B, 0x2C, 0x3B, 0x25, 0x14, 0x05, 0x13, + 0x03, 0x3C, 0xFF, 0xFE, 0xB6, 0x10, 0x08, 0x50, 0x98, 0x76, 0xD4, 0x1F, + 0x51, 0x92, 0x74, 0x01, 0xE4, 0xFB, 0xD2, 0x03, 0x5B, 0xFE, 0xB8, 0xBB, + 0xEA, 0x6E, 0xFF, 0xFF, 0x00, 0x12, 0xFE, 0xC0, 0x04, 0xF0, 0x04, 0x2E, + 0x06, 0x26, 0x04, 0xF3, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x02, 0xE1, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x12, 0xFE, 0xC0, 0x04, 0xC6, 0x04, 0x2E, + 0x04, 0x26, 0x04, 0xF3, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x40, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x05, 0xB2, 0x04, 0x2E, + 0x06, 0x06, 0x09, 0x6F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0xC0, + 0x06, 0x71, 0x04, 0x2E, 0x06, 0x26, 0x09, 0x6F, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3C, 0x04, 0x61, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, + 0x04, 0x3E, 0x04, 0x2E, 0x06, 0x06, 0x09, 0x6E, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFE, 0xC0, 0x04, 0xD4, 0x04, 0x2E, 0x04, 0x26, 0x09, 0x6E, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x4E, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x75, 0x00, 0x00, 0x05, 0x6B, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x05, 0x15, + 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x03, 0xE1, + 0x01, 0x8A, 0xFE, 0x18, 0xFD, 0xAD, 0x44, 0xFF, 0x03, 0xC9, 0xFE, 0x03, + 0x64, 0xCA, 0xCA, 0xD2, 0xD9, 0xD9, 0x01, 0x9C, 0xFB, 0xD2, 0x04, 0x2E, + 0xFB, 0xD2, 0x04, 0x2E, 0x00, 0x04, 0x00, 0x75, 0xFE, 0x5B, 0x04, 0x3E, + 0x04, 0x2E, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x27, 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x06, 0x03, 0x15, 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, + 0x21, 0x11, 0x23, 0x11, 0x02, 0xF7, 0x2D, 0x49, 0x19, 0x11, 0x40, 0x18, + 0x3C, 0x33, 0xFE, 0xA1, 0x1A, 0xFD, 0xAD, 0x44, 0xFF, 0x03, 0xC9, 0xFE, + 0xFE, 0x5B, 0x02, 0x01, 0xCD, 0x01, 0x2D, 0x32, 0x77, 0x7D, 0x92, 0x96, + 0x04, 0x37, 0xD9, 0xD9, 0x01, 0x9C, 0xFB, 0xD2, 0x04, 0x2E, 0xFB, 0xD2, + 0x04, 0x2E, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0xC0, 0x04, 0xFD, 0x04, 0x2E, + 0x06, 0x26, 0x09, 0x6E, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x02, 0xEE, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x04, 0x32, 0x04, 0x2E, + 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, + 0x04, 0x32, 0xFE, 0xFE, 0x40, 0xFF, 0x04, 0x2E, 0xFB, 0xD2, 0x03, 0x55, + 0xFC, 0xAB, 0x04, 0x2E, 0xFF, 0xFF, 0x00, 0x12, 0x00, 0x00, 0x03, 0xDC, + 0x04, 0x2E, 0x06, 0x06, 0x09, 0x70, 0x00, 0x00, 0x00, 0x03, 0x00, 0x44, + 0xFE, 0x5E, 0x05, 0x7D, 0x05, 0xD2, 0x00, 0x11, 0x00, 0x23, 0x00, 0x27, + 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x13, 0x11, 0x33, 0x11, 0x02, 0x62, 0x9D, 0xF5, 0x8C, 0x8C, + 0xF5, 0x9D, 0xFE, 0x9E, 0xF4, 0x8B, 0x8B, 0xF4, 0x9E, 0xFE, 0xFE, 0x54, + 0x82, 0x4A, 0x4A, 0x82, 0x54, 0xFE, 0x54, 0x82, 0x4A, 0x4A, 0x82, 0x54, + 0xFE, 0x18, 0x8C, 0xFB, 0xA6, 0xA6, 0xFC, 0x8D, 0x8D, 0xFC, 0xA6, 0xA6, + 0xFB, 0x8C, 0xCD, 0x58, 0x9F, 0x69, 0x6A, 0xA1, 0x5B, 0x5B, 0xA1, 0x6A, + 0x69, 0x9F, 0x58, 0xFD, 0xA9, 0x07, 0x74, 0xF8, 0x8C, 0x00, 0x01, 0x00, + 0x19, 0xFE, 0x5A, 0x04, 0x00, 0x04, 0x2E, 0x00, 0x20, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x27, 0x27, 0x03, 0x21, 0x01, 0x01, 0x21, 0x13, 0x13, 0x21, 0x01, + 0x13, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x02, 0xA6, 0x21, 0x43, 0x22, + 0x04, 0x17, 0x33, 0x19, 0x3E, 0x44, 0x11, 0x2A, 0x25, 0x9A, 0xE8, 0xFE, + 0xF2, 0x01, 0x52, 0xFE, 0xB5, 0x01, 0x0E, 0xE1, 0xE3, 0x01, 0x0E, 0xFE, + 0xB2, 0xCF, 0x2B, 0x34, 0x18, 0x4F, 0x97, 0xFE, 0x5A, 0x02, 0x01, 0xD0, + 0x02, 0x02, 0x3D, 0x3E, 0x1D, 0x3B, 0x4F, 0x39, 0xF3, 0xFE, 0x89, 0x02, + 0x17, 0x02, 0x17, 0xFE, 0x7D, 0x01, 0x83, 0xFD, 0xE9, 0xFE, 0xB8, 0x44, + 0x6F, 0x61, 0x2F, 0x5B, 0x8A, 0x4D, 0xFF, 0xFF, 0x00, 0x19, 0xFE, 0xC0, + 0x04, 0x8B, 0x04, 0x2E, 0x04, 0x26, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3D, 0x03, 0x05, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0xC0, + 0x04, 0xC7, 0x04, 0x2E, 0x04, 0x26, 0x0B, 0x42, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3D, 0x03, 0x41, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0xC0, + 0x04, 0x32, 0x04, 0x2E, 0x06, 0x26, 0x0B, 0x42, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3E, 0x01, 0x53, 0x00, 0x00, 0x00, 0x02, 0x00, 0x75, 0x00, 0x00, + 0x04, 0x1C, 0x04, 0x2E, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, + 0x0E, 0x02, 0x13, 0x11, 0x33, 0x11, 0x02, 0x53, 0xE4, 0xFA, 0xFF, 0x75, + 0x6A, 0x59, 0x9F, 0x57, 0x2B, 0x6D, 0x79, 0x8C, 0xFF, 0x01, 0x36, 0xCE, + 0xD1, 0x01, 0x59, 0xFE, 0xAC, 0x6C, 0x5F, 0x23, 0x1F, 0xD9, 0x12, 0x1E, + 0x12, 0xFE, 0xCA, 0x04, 0x2E, 0xFB, 0xD2, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0xC0, 0x04, 0xB1, 0x04, 0x2E, 0x04, 0x26, 0x05, 0x04, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3D, 0x03, 0x2B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, + 0x00, 0x04, 0x1C, 0x04, 0x2E, 0x06, 0x26, 0x05, 0x04, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3B, 0x01, 0x6F, 0xFE, 0xBD, 0x00, 0x01, 0x00, 0x75, 0x00, + 0x00, 0x06, 0x23, 0x04, 0x2E, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x33, 0x11, + 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x75, 0xFF, 0x01, + 0x5C, 0xF8, 0x01, 0x5D, 0xFE, 0xFA, 0x52, 0x04, 0x2E, 0xFC, 0xAB, 0x03, + 0x55, 0xFC, 0xAB, 0x03, 0x55, 0xFB, 0xD2, 0xFF, 0xFF, 0x00, 0x75, 0xFE, + 0xC0, 0x06, 0xB8, 0x04, 0x2E, 0x04, 0x26, 0x05, 0x07, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3D, 0x05, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0x75, 0x00, + 0x00, 0x04, 0x15, 0x04, 0x2E, 0x00, 0x15, 0x00, 0x00, 0x41, 0x21, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x01, 0x28, 0x01, 0x43, 0x84, + 0xBE, 0x68, 0x68, 0xBE, 0x84, 0xFE, 0x0A, 0xFF, 0xF1, 0x55, 0x63, 0x63, + 0x55, 0xFE, 0xC3, 0x02, 0xCF, 0x59, 0xA0, 0x6C, 0x6D, 0xA2, 0x5B, 0x04, + 0x2E, 0xFC, 0xA5, 0x52, 0x45, 0x44, 0x50, 0x00, 0x02, 0x00, 0x12, 0x00, + 0x00, 0x04, 0xDA, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x53, + 0x35, 0x21, 0x15, 0x17, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x21, 0x11, 0x33, 0x11, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x21, 0x12, 0x01, 0x8A, 0x51, 0x01, 0x43, 0x83, 0xBF, 0x68, 0x68, 0xBF, + 0x83, 0xFE, 0x0A, 0xFF, 0xF1, 0x55, 0x63, 0x63, 0x55, 0xFE, 0xC3, 0x03, + 0x64, 0xCA, 0xCA, 0x95, 0x59, 0xA0, 0x6C, 0x6D, 0xA2, 0x5B, 0x04, 0x2E, + 0xFC, 0xA5, 0x52, 0x45, 0x44, 0x50, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, + 0x05, 0x6B, 0x04, 0x2E, 0x04, 0x26, 0x05, 0x09, 0x00, 0x00, 0x00, 0x07, + 0x02, 0xB2, 0x03, 0xF7, 0x00, 0x00, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, + 0x04, 0x92, 0x05, 0x49, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1D, 0x00, 0x00, + 0x53, 0x35, 0x21, 0x15, 0x25, 0x11, 0x33, 0x11, 0x03, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x12, 0x03, 0x47, 0xFD, 0x9A, 0xFD, + 0x4B, 0x01, 0x44, 0x83, 0xBF, 0x67, 0x67, 0xBF, 0x83, 0xFE, 0x0A, 0xFE, + 0xF2, 0x54, 0x63, 0x63, 0x54, 0xFE, 0xC2, 0x03, 0x76, 0xB8, 0xB8, 0xB8, + 0x01, 0x1B, 0xFE, 0xE5, 0xFE, 0xA1, 0x59, 0xA0, 0x6C, 0x6D, 0xA2, 0x5B, + 0x04, 0x2E, 0xFC, 0xA5, 0x52, 0x45, 0x44, 0x50, 0x00, 0x03, 0x00, 0x12, + 0x00, 0x00, 0x04, 0x92, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1D, + 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x25, 0x11, 0x33, 0x11, 0x03, 0x21, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x12, 0x03, 0x47, 0xFD, + 0x9A, 0xFD, 0x4B, 0x01, 0x44, 0x83, 0xBF, 0x67, 0x67, 0xBF, 0x83, 0xFE, + 0x0A, 0xFE, 0xF2, 0x54, 0x63, 0x63, 0x54, 0xFE, 0xC2, 0x03, 0x76, 0xB8, + 0xB8, 0xB8, 0x01, 0xA4, 0xFE, 0x5C, 0xFE, 0xA1, 0x59, 0xA0, 0x6C, 0x6D, + 0xA2, 0x5B, 0x04, 0x2E, 0xFC, 0xA5, 0x52, 0x45, 0x44, 0x50, 0xFF, 0xFF, + 0x00, 0x2C, 0x00, 0x00, 0x06, 0xFE, 0x04, 0x2E, 0x04, 0x26, 0x04, 0xF3, + 0x1B, 0x00, 0x00, 0x07, 0x05, 0x09, 0x02, 0xE9, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x75, 0x00, 0x00, 0x06, 0xD7, 0x04, 0x2E, 0x00, 0x11, 0x00, 0x15, + 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x61, 0x35, 0x21, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x03, 0x11, 0x33, 0x11, + 0x03, 0xE5, 0x01, 0x4D, 0x54, 0x59, 0x59, 0x54, 0xFE, 0xAB, 0x01, 0x5B, + 0xC2, 0xDD, 0xDD, 0xC2, 0xFB, 0x3D, 0xFF, 0x44, 0x02, 0x4D, 0x43, 0xFE, + 0xD3, 0x42, 0x3F, 0x3D, 0x40, 0xD1, 0xB2, 0x9D, 0x9E, 0xB5, 0x04, 0x2E, + 0xFB, 0xD2, 0x01, 0xBB, 0xD9, 0xD9, 0xFE, 0x45, 0x04, 0x2E, 0xFB, 0xD2, + 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xE8, 0x04, 0x28, 0x04, 0x44, 0x00, 0x25, + 0x00, 0x29, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, + 0x07, 0x27, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x13, 0x21, 0x35, 0x21, 0x02, 0x20, 0x63, 0xA7, 0x7F, 0x4E, 0x0A, 0xF7, + 0x09, 0x26, 0x39, 0x4E, 0x32, 0x56, 0x77, 0x3E, 0x3E, 0x77, 0x56, 0x31, + 0x4F, 0x3C, 0x26, 0x07, 0xF5, 0x0B, 0x4E, 0x7F, 0xA6, 0x62, 0x9D, 0xEA, + 0x81, 0x81, 0xEA, 0x8B, 0xFE, 0x4F, 0x01, 0xB1, 0x18, 0x3A, 0x6A, 0x8F, + 0x57, 0x0B, 0x2C, 0x48, 0x34, 0x1B, 0x57, 0x9C, 0x68, 0x68, 0x9D, 0x58, + 0x1C, 0x33, 0x46, 0x2B, 0x0B, 0x57, 0x8F, 0x68, 0x39, 0x8E, 0xFC, 0xA5, + 0xA5, 0xFB, 0x8D, 0x01, 0xDA, 0xAD, 0x00, 0x04, 0x00, 0x75, 0xFF, 0xE8, + 0x06, 0x55, 0x04, 0x44, 0x00, 0x03, 0x00, 0x07, 0x00, 0x17, 0x00, 0x27, + 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x01, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x75, 0xFD, 0x43, 0x01, 0x6C, 0x01, + 0xAE, 0x9D, 0xEC, 0x83, 0x83, 0xEC, 0x9D, 0x9D, 0xEC, 0x83, 0x83, 0xEC, + 0x9D, 0x53, 0x78, 0x3F, 0x3F, 0x78, 0x53, 0x53, 0x78, 0x40, 0x40, 0x78, + 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xAB, 0xD8, 0xD8, 0xFE, 0x3D, 0x8C, 0xFB, + 0xA6, 0xA6, 0xFC, 0x8D, 0x8D, 0xFC, 0xA6, 0xA6, 0xFB, 0x8C, 0xD3, 0x56, + 0x9C, 0x68, 0x69, 0x9C, 0x57, 0x57, 0x9C, 0x69, 0x69, 0x9B, 0x56, 0x00, + 0x02, 0x00, 0x16, 0x00, 0x00, 0x03, 0xF1, 0x04, 0x2E, 0x00, 0x13, 0x00, + 0x17, 0x00, 0x00, 0x61, 0x23, 0x11, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x21, 0x15, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x21, 0x01, + 0x21, 0x01, 0x21, 0x03, 0xF1, 0xF4, 0xE4, 0x70, 0x68, 0x6B, 0x72, 0x01, + 0x46, 0xFE, 0x9F, 0xD4, 0xE9, 0xE4, 0xD0, 0x01, 0xF7, 0xFD, 0x3E, 0xFE, + 0xE7, 0x01, 0x3A, 0x01, 0x12, 0x03, 0x61, 0x4B, 0x50, 0x4E, 0x4A, 0xBD, + 0xB6, 0xA2, 0xA8, 0xBD, 0xFB, 0xD2, 0x01, 0xDE, 0x00, 0x02, 0x00, 0x75, + 0xFE, 0xB4, 0x04, 0x0D, 0x04, 0x2E, 0x00, 0x1B, 0x00, 0x21, 0x00, 0x00, + 0x41, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x23, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x01, 0x15, 0x21, 0x11, 0x23, 0x11, 0x01, 0xDD, + 0x47, 0x4D, 0x70, 0x3E, 0x34, 0x60, 0x44, 0x42, 0x60, 0x33, 0x49, 0x46, + 0x95, 0x75, 0x70, 0xB7, 0x6D, 0x7E, 0xD8, 0x89, 0x01, 0x29, 0xFE, 0x1D, + 0xFF, 0xFE, 0xB4, 0xD1, 0x40, 0x76, 0x53, 0x4F, 0x72, 0x3D, 0x3C, 0x6E, + 0x4E, 0x77, 0xD0, 0x81, 0x78, 0xD1, 0x85, 0x87, 0xD7, 0x7C, 0x05, 0x7A, + 0xD9, 0xFC, 0xAB, 0x04, 0x2E, 0x00, 0x02, 0x00, 0x75, 0xFE, 0xB9, 0x07, + 0x17, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x27, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x04, 0x16, + 0x15, 0x14, 0x0E, 0x02, 0x01, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, + 0x04, 0xDC, 0x16, 0xB0, 0xA6, 0x4F, 0xA2, 0x7A, 0xE0, 0xE0, 0xB9, 0x01, + 0x14, 0x99, 0x48, 0x8F, 0xD6, 0xFE, 0xC8, 0xFE, 0xFE, 0x40, 0xFF, 0xFE, + 0xB9, 0xCF, 0x0A, 0x81, 0x86, 0x5C, 0x7A, 0x3D, 0xD6, 0x74, 0xD9, 0x98, + 0x6B, 0xAD, 0x7D, 0x49, 0x05, 0x6F, 0xFB, 0xD2, 0x03, 0x55, 0xFC, 0xAB, + 0x04, 0x2E, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x04, 0x44, + 0x00, 0x25, 0x00, 0x29, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, + 0x0E, 0x03, 0x01, 0x35, 0x21, 0x15, 0x02, 0x4D, 0x9C, 0xEB, 0x82, 0x82, + 0xEB, 0x9C, 0x62, 0xA6, 0x7F, 0x4E, 0x0B, 0xF5, 0x07, 0x26, 0x3C, 0x4F, + 0x31, 0x55, 0x78, 0x3F, 0x3F, 0x77, 0x56, 0x32, 0x4E, 0x39, 0x26, 0x09, + 0xF6, 0x09, 0x4E, 0x7F, 0xA8, 0xFE, 0x76, 0x01, 0xB1, 0x18, 0x8D, 0xFB, + 0xA5, 0xA5, 0xFC, 0x8E, 0x39, 0x68, 0x8F, 0x57, 0x0B, 0x2B, 0x46, 0x33, + 0x1C, 0x58, 0x9D, 0x68, 0x68, 0x9C, 0x57, 0x1B, 0x34, 0x48, 0x2C, 0x0B, + 0x57, 0x8F, 0x6A, 0x3A, 0x01, 0xDA, 0xAD, 0xAD, 0x00, 0x01, 0x00, 0x44, + 0xFF, 0xE8, 0x06, 0x40, 0x04, 0x44, 0x00, 0x3E, 0x00, 0x00, 0x45, 0x22, + 0x24, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x15, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x04, + 0x02, 0xBE, 0xC8, 0xFE, 0xE5, 0x97, 0x85, 0xF0, 0x9F, 0x57, 0x7A, 0x41, + 0x53, 0xAD, 0x85, 0x6B, 0xB5, 0x85, 0x49, 0x2A, 0x4E, 0x35, 0x35, 0x4C, + 0x2A, 0x3D, 0x73, 0x50, 0x25, 0x69, 0x31, 0x3F, 0x5C, 0x38, 0x4D, 0x40, + 0x9E, 0x52, 0x78, 0xD6, 0x56, 0x74, 0x97, 0x6E, 0xC0, 0x7D, 0x7E, 0xC0, + 0x6B, 0x79, 0xD5, 0xFE, 0xEF, 0x18, 0x89, 0xFA, 0xAC, 0xA5, 0xFB, 0x8D, + 0xD3, 0x58, 0x9B, 0x67, 0x6E, 0x9D, 0x54, 0x2F, 0x5C, 0x87, 0x58, 0x40, + 0x5E, 0x34, 0x33, 0x5F, 0x42, 0x51, 0x84, 0x63, 0x20, 0x0E, 0x0E, 0x19, + 0x19, 0xBA, 0x1E, 0x1D, 0x36, 0x3D, 0x4B, 0xE9, 0x90, 0x7F, 0xBF, 0x6A, + 0x6A, 0xBC, 0x7C, 0x83, 0xD4, 0x97, 0x50, 0x00, 0x03, 0x00, 0x12, 0xFE, + 0xC0, 0x05, 0x4C, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x11, 0x00, + 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, + 0x11, 0x03, 0x11, 0x23, 0x35, 0x21, 0x03, 0x02, 0xE1, 0xFD, 0x31, 0xE8, + 0xFE, 0x01, 0xC0, 0xFF, 0x6D, 0x52, 0x01, 0x54, 0x09, 0x04, 0x2E, 0xD4, + 0xD4, 0xFB, 0xD2, 0x04, 0x2E, 0xFC, 0xAB, 0x03, 0x55, 0xFB, 0xD2, 0xFE, + 0xC0, 0x01, 0x40, 0xE2, 0xFD, 0xDE, 0x00, 0x02, 0x00, 0x12, 0xFF, 0xE8, + 0x05, 0x81, 0x04, 0x44, 0x00, 0x07, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x15, 0x21, 0x35, 0x21, 0x07, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x9C, 0xC4, 0xC6, + 0xC5, 0x59, 0x6C, 0x01, 0xF5, 0xA0, 0xEA, 0x7F, 0x81, 0xE6, 0x96, 0x70, + 0xBA, 0x88, 0x4A, 0xFC, 0x70, 0x03, 0x11, 0x73, 0x3F, 0x75, 0x52, 0x51, + 0x76, 0x41, 0x42, 0x7D, 0x57, 0x3E, 0x61, 0x41, 0x0F, 0xED, 0x15, 0x86, + 0xCB, 0x01, 0xD4, 0xC6, 0xC0, 0x6F, 0x6A, 0xFD, 0x67, 0x8E, 0xFB, 0xA3, + 0xA4, 0xFC, 0x90, 0x4D, 0x91, 0xCC, 0x7F, 0x47, 0xAE, 0x30, 0x5B, 0x85, + 0x49, 0x4A, 0x83, 0x58, 0x70, 0x5E, 0x8C, 0x4C, 0x25, 0x44, 0x2D, 0x0B, + 0x64, 0x99, 0x56, 0xFF, 0xFF, 0x00, 0x56, 0xFE, 0x45, 0x04, 0x99, 0x04, + 0x2E, 0x06, 0x07, 0x05, 0x49, 0x00, 0x00, 0xFE, 0x5C, 0x00, 0x01, 0x00, + 0x16, 0x00, 0x00, 0x04, 0x95, 0x04, 0x2E, 0x00, 0x0E, 0x00, 0x00, 0x61, + 0x01, 0x21, 0x01, 0x33, 0x13, 0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, + 0x07, 0x01, 0x01, 0xA1, 0xFE, 0x75, 0x01, 0x0E, 0x01, 0x0A, 0x05, 0xBF, + 0x24, 0x97, 0x77, 0x71, 0x61, 0x3C, 0x16, 0xFE, 0xD6, 0x04, 0x2E, 0xFC, + 0xEA, 0x02, 0x37, 0x72, 0x6D, 0xD2, 0x39, 0xFC, 0xDD, 0x00, 0x02, 0x00, + 0x4E, 0xFF, 0x27, 0x04, 0xD5, 0x06, 0xAB, 0x00, 0x03, 0x00, 0x36, 0x00, + 0x00, 0x45, 0x11, 0x33, 0x11, 0x27, 0x22, 0x24, 0x26, 0x27, 0x21, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x27, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x17, 0x1E, + 0x03, 0x15, 0x14, 0x06, 0x04, 0x02, 0x43, 0xA6, 0x50, 0xB5, 0xFE, 0xF9, + 0x8E, 0x01, 0x01, 0x04, 0x02, 0x51, 0x92, 0x63, 0x5D, 0x89, 0x4D, 0x3A, + 0x7A, 0x5F, 0xA2, 0xD7, 0xD3, 0x8A, 0xF7, 0xA2, 0xA5, 0xF2, 0x87, 0x04, + 0xFD, 0x08, 0x9E, 0x81, 0x52, 0x7F, 0x47, 0x3C, 0x77, 0x59, 0x94, 0x6D, + 0xA6, 0x71, 0x3A, 0x8A, 0xFE, 0xFF, 0xD9, 0x07, 0x84, 0xF8, 0x7C, 0xC1, + 0x77, 0xE0, 0x9C, 0x57, 0x7B, 0x41, 0x35, 0x61, 0x41, 0x36, 0x4E, 0x39, + 0x16, 0x26, 0x32, 0xC7, 0x9D, 0x86, 0xC6, 0x6F, 0x72, 0xD0, 0x8F, 0x71, + 0x80, 0x35, 0x5C, 0x3C, 0x35, 0x4B, 0x35, 0x15, 0x23, 0x19, 0x49, 0x66, + 0x86, 0x55, 0x89, 0xCC, 0x6F, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x04, + 0x2D, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x29, 0x00, 0x00, 0x61, 0x11, 0x33, + 0x11, 0x27, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x02, 0x0B, 0x80, + 0x3E, 0x9C, 0xEB, 0x82, 0x82, 0xEB, 0x9C, 0x62, 0xA6, 0x7F, 0x4E, 0x0B, + 0xF7, 0x07, 0x26, 0x3B, 0x4E, 0x30, 0x55, 0x77, 0x3E, 0x3E, 0x77, 0x55, + 0x31, 0x4D, 0x39, 0x25, 0x09, 0xF8, 0x09, 0x4E, 0x7F, 0xA8, 0x05, 0xD2, + 0xFA, 0x2E, 0xBB, 0x8D, 0xFB, 0xA4, 0xA6, 0xFC, 0x8D, 0x39, 0x68, 0x8F, + 0x56, 0x0C, 0x2B, 0x46, 0x33, 0x1C, 0x57, 0x9D, 0x69, 0x67, 0x9C, 0x57, + 0x1B, 0x34, 0x48, 0x2C, 0x0C, 0x56, 0x90, 0x69, 0x3A, 0x00, 0x05, 0x00, + 0x0A, 0x00, 0x00, 0x04, 0x50, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x41, 0x01, 0x07, 0x09, 0x02, + 0x21, 0x01, 0x37, 0x11, 0x21, 0x11, 0x05, 0x15, 0x21, 0x35, 0x01, 0x15, + 0x21, 0x35, 0x01, 0x1C, 0x01, 0x50, 0xB8, 0xFE, 0x56, 0x01, 0xE4, 0x01, + 0x4E, 0x01, 0x14, 0xFE, 0x53, 0x09, 0xFE, 0xFC, 0x02, 0x37, 0xFC, 0x88, + 0x03, 0x78, 0xFC, 0x88, 0x05, 0xD2, 0xFC, 0xF2, 0x79, 0x03, 0x87, 0xFC, + 0xF6, 0x03, 0x0A, 0xFC, 0x79, 0xC4, 0xFC, 0xF1, 0x03, 0x0F, 0x19, 0xA1, + 0xA1, 0xFE, 0xE0, 0xA1, 0xA1, 0x00, 0x03, 0x00, 0x4C, 0x00, 0x00, 0x04, + 0x91, 0x05, 0xE7, 0x00, 0x1B, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, 0x77, + 0x35, 0x32, 0x36, 0x27, 0x03, 0x26, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x17, 0x13, 0x16, 0x0E, + 0x03, 0x07, 0x35, 0x21, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, + 0x23, 0x01, 0x35, 0x21, 0x15, 0x4C, 0x51, 0x57, 0x04, 0x1F, 0x08, 0x7D, + 0xE1, 0x8F, 0x87, 0xD1, 0x7B, 0x04, 0xF5, 0x04, 0x76, 0x65, 0x4B, 0x6B, + 0x37, 0x03, 0x18, 0x03, 0x31, 0x55, 0x6D, 0x74, 0x37, 0x03, 0x12, 0x23, + 0x1F, 0xF1, 0x96, 0x96, 0xFC, 0xE7, 0x03, 0x0B, 0xAA, 0x33, 0x53, 0x5A, + 0x02, 0x73, 0x97, 0xDB, 0x78, 0x73, 0xD0, 0x8C, 0x09, 0x7A, 0x81, 0x3D, + 0x73, 0x52, 0xFD, 0xA0, 0x46, 0x5D, 0x38, 0x1B, 0x08, 0xAA, 0xDD, 0x20, + 0x22, 0x3B, 0x35, 0x90, 0x95, 0x02, 0x7F, 0xC6, 0xC6, 0x00, 0x01, 0x00, + 0x26, 0xFE, 0x5E, 0x03, 0x30, 0x06, 0x14, 0x00, 0x23, 0x00, 0x00, 0x41, + 0x15, 0x23, 0x11, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x02, + 0xE4, 0xD4, 0x01, 0xB9, 0xAA, 0x23, 0x40, 0x23, 0x0D, 0x11, 0x40, 0x10, + 0x41, 0x3D, 0xAE, 0xAE, 0xCA, 0xA7, 0x2E, 0x5D, 0x22, 0x23, 0x12, 0x2B, + 0x20, 0x4D, 0x53, 0x04, 0x3A, 0xC0, 0xFC, 0x5B, 0xB7, 0xC0, 0x05, 0x09, + 0xCF, 0x05, 0x05, 0x57, 0x4D, 0x03, 0xA5, 0xC0, 0x62, 0xB8, 0xC0, 0x0D, + 0x0A, 0xCB, 0x04, 0x05, 0x4E, 0x51, 0x62, 0x00, 0x04, 0x00, 0x56, 0xFF, + 0xEC, 0x04, 0x7C, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x10, 0x00, 0x14, 0x00, + 0x18, 0x00, 0x00, 0x41, 0x11, 0x05, 0x11, 0x01, 0x21, 0x06, 0x02, 0x04, + 0x23, 0x22, 0x26, 0x27, 0x37, 0x32, 0x36, 0x36, 0x03, 0x15, 0x05, 0x35, + 0x05, 0x15, 0x05, 0x35, 0x02, 0x11, 0xFE, 0xFB, 0x02, 0x67, 0x01, 0x09, + 0x01, 0x9E, 0xFE, 0xE7, 0xB9, 0x4C, 0x86, 0x2D, 0xFF, 0x6B, 0xA2, 0x5B, + 0x5D, 0xFD, 0x40, 0x02, 0xC0, 0xFD, 0x40, 0x05, 0xD2, 0xFA, 0x2E, 0x05, + 0x05, 0xD7, 0xFC, 0xD4, 0xE3, 0xFE, 0xC9, 0xA0, 0x08, 0x07, 0xCF, 0x61, + 0xD2, 0x03, 0x60, 0xCB, 0xFF, 0xCA, 0x50, 0xC9, 0xFE, 0xC9, 0x00, 0x02, + 0x00, 0x43, 0x00, 0x00, 0x05, 0x62, 0x05, 0xD2, 0x00, 0x17, 0x00, 0x1B, + 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x21, 0x11, 0x21, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x07, 0x15, 0x21, 0x35, 0x03, 0x4E, 0xFC, 0xF5, 0x03, 0x05, + 0x5F, 0x7A, 0x3B, 0x3B, 0x77, 0x5C, 0xFE, 0xD7, 0xFE, 0xFB, 0x02, 0x2E, + 0xAC, 0xEE, 0x7A, 0x7C, 0xEE, 0x8D, 0xFC, 0xD8, 0x02, 0x35, 0xD8, 0x3D, + 0x6D, 0x47, 0x47, 0x71, 0x41, 0xFB, 0x09, 0x05, 0xD2, 0x7C, 0xD3, 0x83, + 0x87, 0xCF, 0x75, 0x87, 0xB4, 0xB4, 0x00, 0x03, 0x00, 0x24, 0xFF, 0xEC, + 0x04, 0xE4, 0x05, 0xE6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x27, 0x00, 0x00, + 0x41, 0x07, 0x21, 0x37, 0x01, 0x07, 0x21, 0x37, 0x01, 0x07, 0x2E, 0x02, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, + 0x33, 0x32, 0x16, 0x04, 0x2D, 0x46, 0xFC, 0x3D, 0x38, 0x03, 0x4B, 0x49, + 0xFC, 0xC6, 0x38, 0x04, 0x88, 0x62, 0x24, 0x5A, 0x6D, 0x40, 0x6E, 0xA8, + 0x5F, 0x5F, 0xA8, 0x6E, 0x40, 0x6D, 0x57, 0x21, 0x64, 0x4E, 0xCB, 0x70, + 0xBA, 0xFE, 0xE2, 0xA3, 0xA3, 0x01, 0x1E, 0xBA, 0x75, 0xC8, 0x03, 0xCB, + 0x99, 0x99, 0xFE, 0xD5, 0x9C, 0x9C, 0x02, 0xB8, 0xD4, 0x1E, 0x35, 0x22, + 0x74, 0xEB, 0xB3, 0xB2, 0xEB, 0x72, 0x22, 0x34, 0x19, 0xD2, 0x44, 0x45, + 0xB7, 0x01, 0x56, 0xEE, 0xF0, 0x01, 0x57, 0xB8, 0x49, 0x00, 0x03, 0x00, + 0x2F, 0x00, 0x00, 0x04, 0x26, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1C, 0x00, + 0x20, 0x00, 0x00, 0x41, 0x07, 0x21, 0x37, 0x01, 0x01, 0x27, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x37, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x01, 0x15, 0x13, 0x07, 0x25, 0x37, + 0x04, 0x26, 0x35, 0xFC, 0x3E, 0x34, 0x01, 0xE1, 0xFE, 0x01, 0x01, 0xFE, + 0x5A, 0x7C, 0x40, 0x85, 0x91, 0xFE, 0xED, 0x39, 0xDA, 0xB6, 0xF0, 0x76, + 0x59, 0xC1, 0x9D, 0x08, 0x01, 0xCE, 0xB9, 0x35, 0xFC, 0xF5, 0x35, 0x04, + 0x67, 0xBE, 0xBE, 0xFB, 0x99, 0x02, 0x67, 0x9F, 0x3C, 0x6F, 0x4C, 0x71, + 0x88, 0xDC, 0x72, 0xCC, 0x89, 0x79, 0xBF, 0x7A, 0x13, 0x02, 0xFD, 0xC9, + 0x0D, 0x05, 0xD2, 0xC0, 0x02, 0xBE, 0x00, 0x03, 0x00, 0x3F, 0x00, 0x00, + 0x04, 0xDE, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, + 0x41, 0x11, 0x21, 0x11, 0x21, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, + 0x03, 0x0F, 0xFE, 0xFB, 0x02, 0xD4, 0xFB, 0x61, 0x04, 0x9F, 0xFB, 0x61, + 0x04, 0x82, 0xFB, 0x7E, 0x04, 0x82, 0xDB, 0xDB, 0x01, 0x50, 0xDB, 0xDB, + 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0xFD, 0x07, 0x40, 0x05, 0xD2, 0x04, 0x26, + 0x01, 0x77, 0x00, 0x00, 0x00, 0x07, 0x03, 0x78, 0x04, 0x9F, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x37, 0x00, 0x00, 0x05, 0x43, 0x05, 0xD2, 0x00, 0x15, + 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x73, 0x11, 0x21, 0x20, 0x00, 0x11, + 0x10, 0x00, 0x21, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x11, 0x01, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, + 0xC4, 0x01, 0xE0, 0x01, 0x17, 0x01, 0x00, 0xFE, 0xFF, 0xFE, 0xE6, 0xFE, + 0xDD, 0x01, 0x28, 0x6A, 0x76, 0x31, 0x31, 0x77, 0x6A, 0xD7, 0xFE, 0x6A, + 0x05, 0x0C, 0xFA, 0xF4, 0x05, 0x0C, 0x05, 0xD2, 0xFE, 0xF4, 0xFE, 0xDB, + 0xFE, 0xDE, 0xFE, 0xF6, 0xD5, 0x44, 0x97, 0x7C, 0x7D, 0x96, 0x43, 0xFB, + 0x09, 0x02, 0xCD, 0x92, 0x92, 0x01, 0x16, 0x92, 0x92, 0x00, 0x04, 0x00, + 0x26, 0x00, 0x00, 0x05, 0xE7, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x0E, 0x00, 0x12, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x11, 0x21, + 0x11, 0x21, 0x01, 0x07, 0x03, 0x11, 0x33, 0x01, 0x13, 0x01, 0x37, 0x01, + 0x05, 0x9A, 0xFA, 0x8C, 0x01, 0xE3, 0xFE, 0xFA, 0x04, 0xE4, 0xFD, 0x18, + 0x2C, 0xEC, 0x36, 0x02, 0x73, 0x07, 0xFD, 0xFF, 0xAE, 0x02, 0x8D, 0x03, + 0x8E, 0xDF, 0xDF, 0x02, 0x44, 0xFA, 0x2E, 0x05, 0xD2, 0xFC, 0xE7, 0x37, + 0xFF, 0x00, 0x01, 0xA8, 0x02, 0xA8, 0xFA, 0x2E, 0x02, 0xAC, 0xAA, 0xFC, + 0xAA, 0x00, 0x03, 0x00, 0x2C, 0x00, 0x00, 0x07, 0xBC, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x17, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, + 0x15, 0x21, 0x35, 0x13, 0x01, 0x33, 0x01, 0x33, 0x01, 0x33, 0x01, 0x33, + 0x01, 0x21, 0x01, 0x23, 0x01, 0x21, 0x01, 0x07, 0xB4, 0xF8, 0x81, 0x07, + 0x7F, 0xF8, 0x81, 0xEE, 0x01, 0x1F, 0x0D, 0x01, 0x26, 0xFF, 0x01, 0x24, + 0x0F, 0x01, 0x1E, 0xF7, 0xFE, 0x70, 0xFE, 0xF4, 0xFE, 0xDB, 0x0C, 0xFE, + 0xD9, 0xFE, 0xF3, 0xFE, 0x71, 0x04, 0x10, 0xA0, 0xA0, 0xFE, 0xCB, 0xA0, + 0xA0, 0x02, 0xF7, 0xFB, 0xAF, 0x04, 0x51, 0xFB, 0xAE, 0x04, 0x52, 0xFA, + 0x2E, 0x04, 0x20, 0xFB, 0xE0, 0x05, 0xD2, 0x00, 0x04, 0x00, 0x4C, 0x00, + 0x00, 0x04, 0x91, 0x05, 0xE7, 0x00, 0x1B, 0x00, 0x27, 0x00, 0x2B, 0x00, + 0x2F, 0x00, 0x00, 0x77, 0x35, 0x32, 0x36, 0x27, 0x03, 0x26, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x17, 0x13, 0x16, 0x0E, 0x03, 0x07, 0x35, 0x21, 0x32, 0x36, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x06, 0x23, 0x01, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, + 0x15, 0x4C, 0x51, 0x57, 0x04, 0x1F, 0x08, 0x7D, 0xE1, 0x8F, 0x87, 0xD1, + 0x7B, 0x04, 0xF5, 0x04, 0x76, 0x65, 0x4B, 0x6B, 0x37, 0x03, 0x18, 0x03, + 0x31, 0x55, 0x6D, 0x74, 0x37, 0x03, 0x12, 0x23, 0x1F, 0xF1, 0x96, 0x96, + 0xFC, 0xE7, 0x03, 0x0F, 0xFC, 0xF1, 0x03, 0x0F, 0xAA, 0x33, 0x53, 0x5A, + 0x02, 0x73, 0x97, 0xDB, 0x78, 0x73, 0xD0, 0x8C, 0x09, 0x7A, 0x81, 0x3D, + 0x73, 0x52, 0xFD, 0xA0, 0x46, 0x5D, 0x38, 0x1B, 0x08, 0xAA, 0xDD, 0x20, + 0x22, 0x3B, 0x35, 0x90, 0x95, 0x01, 0xE8, 0x98, 0x98, 0x01, 0x13, 0x98, + 0x98, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x15, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, + 0x35, 0x21, 0x15, 0x01, 0x01, 0x21, 0x01, 0x21, 0x01, 0x26, 0x02, 0x27, + 0x33, 0x06, 0x02, 0x07, 0x01, 0x2F, 0x05, 0x3B, 0xFA, 0xC5, 0x05, 0x3B, + 0xFA, 0xAB, 0x02, 0x11, 0x01, 0x4E, 0x02, 0x12, 0xFE, 0xDD, 0xFE, 0xFA, + 0x27, 0x55, 0x37, 0x46, 0x36, 0x56, 0x28, 0xFE, 0xF7, 0x02, 0xB3, 0x91, + 0x91, 0xFE, 0xC0, 0x92, 0x92, 0xFE, 0x8D, 0x05, 0xD2, 0xFA, 0x2E, 0x03, + 0x0D, 0x7B, 0x01, 0x1C, 0xBF, 0xBF, 0xFE, 0xE4, 0x7B, 0xFC, 0xF3, 0x00, + 0x04, 0x00, 0x87, 0xFF, 0xEC, 0x04, 0xEE, 0x05, 0xE6, 0x00, 0x17, 0x00, + 0x1B, 0x00, 0x1F, 0x00, 0x34, 0x00, 0x00, 0x41, 0x22, 0x0E, 0x02, 0x07, + 0x21, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x27, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x01, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, + 0x21, 0x01, 0x22, 0x26, 0x27, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x21, 0x0E, 0x02, 0x02, 0xC2, 0x37, + 0x4D, 0x30, 0x17, 0x01, 0xFE, 0xF2, 0x05, 0x66, 0xCD, 0x9F, 0x94, 0xCD, + 0x6B, 0x46, 0x37, 0xDA, 0x26, 0x2E, 0x64, 0x01, 0xCA, 0xFB, 0x99, 0x04, + 0x67, 0xFB, 0x99, 0x04, 0x67, 0xFD, 0xCE, 0xEA, 0xFB, 0x01, 0x01, 0x4D, + 0x3A, 0xE0, 0x30, 0x2D, 0x74, 0x67, 0x65, 0x7F, 0x03, 0x01, 0x0F, 0x05, + 0x75, 0xDB, 0x05, 0x0B, 0x18, 0x2D, 0x3D, 0x24, 0x74, 0xAC, 0x61, 0x52, + 0x9A, 0x6B, 0x46, 0x7B, 0x2B, 0x3D, 0x23, 0x4F, 0x2E, 0x3F, 0x4C, 0xFE, + 0x23, 0xBE, 0xFE, 0x0E, 0xBA, 0xFD, 0x38, 0xBB, 0xA8, 0x47, 0x84, 0x24, + 0x30, 0x25, 0x5C, 0x30, 0x47, 0x4F, 0x50, 0x5D, 0x86, 0xAE, 0x54, 0x00, + 0x03, 0x00, 0x12, 0x00, 0x00, 0x05, 0xDD, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x23, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, + 0x35, 0x13, 0x11, 0x21, 0x01, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x02, 0x35, + 0x11, 0x21, 0x11, 0x21, 0x01, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, + 0x11, 0x05, 0xDD, 0xFA, 0x35, 0x05, 0xCB, 0xFA, 0x35, 0x84, 0x01, 0x21, + 0x02, 0x0A, 0x18, 0x43, 0x4A, 0x23, 0x1E, 0x04, 0x06, 0x03, 0x01, 0x0A, + 0xFE, 0xDE, 0xFE, 0x2A, 0x1D, 0x50, 0x62, 0x3A, 0x2A, 0x06, 0x07, 0x03, + 0x03, 0xB2, 0x92, 0x92, 0xFE, 0xC6, 0x92, 0x92, 0xFD, 0x88, 0x05, 0xD2, + 0xFC, 0xC3, 0x25, 0x75, 0x88, 0x45, 0x32, 0x43, 0xA8, 0x99, 0x2D, 0x03, + 0x25, 0xFA, 0x2E, 0x02, 0xEA, 0x2F, 0x86, 0xAE, 0x68, 0x1E, 0x6F, 0xBF, + 0x90, 0x2A, 0xFD, 0x15, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0x38, 0x05, 0x8E, + 0x06, 0x9A, 0x00, 0x03, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x11, 0x33, 0x11, + 0x27, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, + 0x17, 0x21, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x17, 0x21, 0x35, 0x21, 0x15, 0x14, 0x02, + 0x04, 0x02, 0xB4, 0xA6, 0x52, 0xCE, 0xFE, 0xC6, 0xB1, 0xB4, 0x01, 0x3A, + 0xC7, 0x7D, 0xDA, 0xAA, 0x6F, 0x10, 0xFE, 0xF2, 0x0F, 0x40, 0x5E, 0x78, + 0x47, 0x83, 0xC2, 0x6B, 0x6B, 0xC4, 0x84, 0x70, 0xAC, 0x61, 0x43, 0xFE, + 0x63, 0x02, 0x5E, 0xA7, 0xFE, 0xDD, 0xC8, 0x07, 0x62, 0xF8, 0x9E, 0xB1, + 0xC0, 0x01, 0x59, 0xE6, 0xEB, 0x01, 0x5A, 0xBC, 0x4A, 0x89, 0xBB, 0x73, + 0x3F, 0x65, 0x49, 0x26, 0x81, 0xEE, 0xA4, 0xA2, 0xEE, 0x81, 0x59, 0xA2, + 0x6B, 0x06, 0xD2, 0xB4, 0xB8, 0xFE, 0xE9, 0x9D, 0x00, 0x03, 0x00, 0x4F, + 0xFF, 0x42, 0x05, 0x87, 0x06, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x2D, + 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x23, 0x01, 0x07, 0x01, 0x03, 0x22, + 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x21, + 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x3E, 0x02, 0x37, 0x21, 0x0E, 0x03, 0x04, 0xCA, 0xFD, 0xC0, 0x60, 0x02, + 0x3E, 0xA4, 0xFD, 0xC0, 0x60, 0x02, 0x3E, 0x5A, 0xCB, 0xFE, 0xC5, 0xB3, + 0xB3, 0x01, 0x3C, 0xCA, 0x7E, 0xD8, 0xA9, 0x6D, 0x13, 0xFE, 0xF3, 0x0E, + 0x41, 0x60, 0x79, 0x47, 0x85, 0xC3, 0x69, 0x69, 0xC3, 0x85, 0x46, 0x79, + 0x60, 0x42, 0x0F, 0x01, 0x0C, 0x11, 0x6D, 0xA8, 0xD9, 0x06, 0x8C, 0xF8, + 0xBA, 0x07, 0x46, 0xF8, 0xBA, 0x04, 0x07, 0x46, 0xF9, 0x61, 0xBC, 0x01, + 0x59, 0xEA, 0xEC, 0x01, 0x59, 0xBC, 0x4A, 0x8B, 0xC3, 0x7B, 0x46, 0x6D, + 0x4C, 0x26, 0x82, 0xEE, 0xA3, 0xA2, 0xEE, 0x81, 0x26, 0x4B, 0x6C, 0x46, + 0x77, 0xC2, 0x8C, 0x4C, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0x27, 0x05, 0x87, + 0x06, 0xAB, 0x00, 0x03, 0x00, 0x29, 0x00, 0x00, 0x45, 0x11, 0x33, 0x11, + 0x27, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, + 0x17, 0x21, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x3E, 0x02, 0x37, 0x21, 0x0E, 0x03, 0x02, 0xB1, 0xA6, 0x4F, + 0xCB, 0xFE, 0xC5, 0xB3, 0xB3, 0x01, 0x3C, 0xCA, 0x7E, 0xD8, 0xA9, 0x6D, + 0x13, 0xFE, 0xF3, 0x0E, 0x41, 0x60, 0x79, 0x47, 0x85, 0xC3, 0x69, 0x69, + 0xC3, 0x85, 0x46, 0x79, 0x60, 0x42, 0x0F, 0x01, 0x0C, 0x11, 0x6D, 0xA8, + 0xD9, 0xD9, 0x07, 0x84, 0xF8, 0x7C, 0xC2, 0xBC, 0x01, 0x59, 0xEA, 0xEC, + 0x01, 0x59, 0xBC, 0x4A, 0x8B, 0xC3, 0x7B, 0x46, 0x6D, 0x4C, 0x26, 0x82, + 0xEE, 0xA3, 0xA2, 0xEE, 0x81, 0x26, 0x4B, 0x6C, 0x46, 0x77, 0xC2, 0x8C, + 0x4C, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0xEC, 0x05, 0x59, 0x05, 0xE6, 0x00, + 0x14, 0x00, 0x3A, 0x00, 0x00, 0x41, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x07, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x37, 0x05, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x05, 0x0E, 0x03, 0x23, 0x22, 0x24, + 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x04, 0xF3, 0x51, + 0x0C, 0x34, 0x23, 0x4C, 0x6B, 0x39, 0x02, 0xE7, 0xE7, 0x0B, 0x10, 0x4D, + 0x6B, 0x3C, 0x2C, 0x52, 0x7F, 0xFE, 0xFF, 0x10, 0x44, 0x60, 0x75, 0x43, + 0x74, 0xBA, 0x6B, 0x6B, 0xBA, 0x75, 0x41, 0x74, 0x5F, 0x44, 0x10, 0x01, + 0x02, 0x1A, 0x72, 0xA4, 0xCA, 0x70, 0xC1, 0xFE, 0xD1, 0xAE, 0xAE, 0x01, + 0x2F, 0xC1, 0x71, 0xCA, 0xA4, 0x73, 0x03, 0x45, 0xD4, 0x08, 0x0F, 0x4C, + 0x78, 0x42, 0xFE, 0xF1, 0x02, 0xE8, 0xA8, 0x38, 0x53, 0x2D, 0x16, 0xAA, + 0x19, 0x44, 0x66, 0x46, 0x23, 0x74, 0xEB, 0xB3, 0xB2, 0xEA, 0x73, 0x22, + 0x45, 0x65, 0x43, 0x19, 0x73, 0xB4, 0x7B, 0x40, 0xB7, 0x01, 0x56, 0xEE, + 0xF0, 0x01, 0x57, 0xB8, 0x41, 0x7D, 0xB5, 0x00, 0x03, 0x00, 0x37, 0x00, + 0x00, 0x04, 0xDD, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0F, 0x00, + 0x00, 0x41, 0x15, 0x01, 0x35, 0x05, 0x15, 0x01, 0x35, 0x03, 0x35, 0x21, + 0x15, 0x21, 0x11, 0x21, 0x11, 0x03, 0xF0, 0xFD, 0x3B, 0x02, 0xC5, 0xFD, + 0x3B, 0xF4, 0x04, 0xA6, 0xFE, 0x32, 0xFE, 0xF6, 0x04, 0x28, 0x9B, 0xFE, + 0xEA, 0x94, 0x14, 0x9A, 0xFE, 0xE8, 0x94, 0x03, 0x15, 0xE4, 0xE4, 0xFB, + 0x12, 0x04, 0xEE, 0x00, 0x03, 0x00, 0x44, 0xFE, 0x5E, 0x0A, 0xDF, 0x06, + 0x8C, 0x00, 0x40, 0x00, 0x54, 0x00, 0x64, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, + 0x02, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, 0x15, 0x14, 0x02, 0x04, 0x23, + 0x22, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x11, 0x21, 0x11, 0x14, 0x0E, 0x02, 0x01, 0x11, 0x34, 0x12, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x27, 0x23, 0x11, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x91, 0x94, 0xB9, 0x54, + 0x91, 0x5C, 0x62, 0x8C, 0x6D, 0x66, 0x78, 0x52, 0x6B, 0x95, 0x4E, 0x36, + 0x78, 0xC6, 0x90, 0x46, 0xBC, 0xDD, 0x78, 0x31, 0x8C, 0xEA, 0xC5, 0x54, + 0xC2, 0x01, 0x23, 0xC1, 0x61, 0x90, 0xFE, 0xFA, 0xB2, 0x7A, 0xA9, 0x79, + 0x60, 0x5B, 0x39, 0x2E, 0x41, 0x3F, 0x2E, 0x34, 0x3E, 0x01, 0x04, 0x27, + 0x58, 0x8E, 0x04, 0xDF, 0x81, 0xE8, 0x9C, 0x9B, 0xE7, 0x82, 0x74, 0xCF, + 0x87, 0x4D, 0x79, 0x58, 0x1E, 0x05, 0x01, 0x04, 0x53, 0x74, 0x3E, 0x3D, + 0x74, 0x53, 0x53, 0x7A, 0x44, 0x43, 0x7A, 0x14, 0x9C, 0x87, 0x59, 0x84, + 0x48, 0x4B, 0x6F, 0x6F, 0x4B, 0x8C, 0xF3, 0x9C, 0x19, 0x7A, 0xC7, 0x90, + 0x4D, 0x13, 0x2A, 0x24, 0xC7, 0x28, 0x2F, 0x14, 0x70, 0xCB, 0xFE, 0xEE, + 0xA3, 0x18, 0xDD, 0xFE, 0xAD, 0xBF, 0x50, 0x77, 0x76, 0x50, 0x39, 0x32, + 0x30, 0x39, 0x47, 0x41, 0x05, 0x5F, 0xFA, 0xF4, 0x42, 0x8D, 0x79, 0x4C, + 0xFE, 0x72, 0x03, 0xA4, 0xB7, 0x01, 0x01, 0x88, 0x85, 0xF9, 0xAF, 0xA5, + 0xFA, 0x8B, 0x2F, 0x52, 0x37, 0xFD, 0xBB, 0x02, 0x60, 0x56, 0x9B, 0x69, + 0x69, 0x9A, 0x54, 0x55, 0x9A, 0x69, 0x68, 0x9B, 0x56, 0x00, 0x02, 0x00, + 0x74, 0xFF, 0x82, 0x06, 0x6A, 0x05, 0x00, 0x00, 0x03, 0x00, 0x2D, 0x00, + 0x00, 0x41, 0x01, 0x23, 0x01, 0x13, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x17, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x11, 0x21, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x04, 0x9D, 0xFD, + 0xC4, 0xCB, 0x02, 0x3E, 0x19, 0xFB, 0x64, 0x51, 0x35, 0x5C, 0x39, 0xFF, + 0xFB, 0x0B, 0x18, 0x55, 0x75, 0x46, 0x6B, 0x8F, 0x25, 0x0A, 0x18, 0x5E, + 0x82, 0x4E, 0x5F, 0x9D, 0x5D, 0xFF, 0x00, 0x35, 0x54, 0x2E, 0x60, 0x65, + 0x05, 0x00, 0xFA, 0x82, 0x05, 0x7E, 0xFD, 0xBA, 0xFD, 0x46, 0x02, 0xCA, + 0x6B, 0x5E, 0x35, 0x65, 0x4C, 0xFD, 0x53, 0x04, 0x5E, 0x9A, 0x2C, 0x4C, + 0x30, 0x65, 0x4E, 0x2F, 0x51, 0x33, 0x55, 0xB8, 0x95, 0xFD, 0x36, 0x02, + 0xCD, 0x49, 0x57, 0x26, 0x75, 0x00, 0x02, 0x00, 0x8A, 0x00, 0x00, 0x06, + 0x5B, 0x04, 0x5E, 0x00, 0x0D, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x21, 0x16, + 0x16, 0x15, 0x11, 0x23, 0x11, 0x26, 0x26, 0x23, 0x21, 0x11, 0x23, 0x21, + 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x35, 0x11, 0x21, 0x11, 0x06, 0x06, + 0x23, 0x8A, 0x02, 0xB8, 0xC3, 0xBA, 0xFE, 0x01, 0x43, 0x53, 0xFE, 0x5F, + 0xFF, 0x01, 0x9B, 0xFF, 0x01, 0xA2, 0x4E, 0x47, 0x01, 0x00, 0x01, 0xBA, + 0xC2, 0x04, 0x5E, 0x01, 0xBD, 0xB0, 0xFE, 0x80, 0x01, 0x80, 0x4F, 0x4C, + 0xFC, 0x75, 0x02, 0xED, 0xFD, 0xE6, 0x48, 0x52, 0x02, 0xE4, 0xFD, 0x1C, + 0xB0, 0xBD, 0x00, 0x02, 0x00, 0x77, 0x00, 0x00, 0x05, 0x5E, 0x04, 0x5E, + 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x61, 0x23, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x23, 0x35, 0x34, 0x12, 0x24, 0x33, + 0x32, 0x04, 0x12, 0x15, 0x01, 0x11, 0x21, 0x11, 0x05, 0x5E, 0xFC, 0x61, + 0xA9, 0x6F, 0x6D, 0xAA, 0x60, 0xFB, 0xA1, 0x01, 0x1C, 0xB5, 0xB8, 0x01, + 0x1C, 0xA1, 0xFE, 0x0C, 0xFF, 0x00, 0xAF, 0xA1, 0xDA, 0x71, 0x71, 0xDB, + 0xA0, 0xAF, 0xAD, 0xDC, 0x01, 0x3F, 0xAB, 0xAB, 0xFE, 0xC1, 0xDC, 0x03, + 0xB1, 0xFB, 0xA2, 0x04, 0x5E, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0xE7, 0x08, + 0xB7, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, + 0x67, 0x04, 0xDA, 0x00, 0x00, 0x00, 0x05, 0x00, 0x7D, 0x00, 0x00, 0x05, + 0x57, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x25, 0x00, + 0x29, 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x01, 0x23, 0x11, 0x33, 0x01, + 0x35, 0x21, 0x15, 0x25, 0x26, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, + 0x32, 0x04, 0x12, 0x15, 0x23, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x21, 0x37, 0x33, 0x07, 0x03, 0xCF, 0xA6, + 0xA6, 0xFE, 0xDC, 0xA6, 0xA6, 0xFD, 0xD5, 0x04, 0xCD, 0xFD, 0xA3, 0xC7, + 0xFE, 0xE8, 0x94, 0x9E, 0x01, 0x18, 0xB6, 0xB7, 0x01, 0x19, 0x9E, 0xFB, + 0x01, 0x5D, 0xA6, 0x71, 0x6D, 0xA6, 0x5E, 0x5A, 0xB9, 0x90, 0xFE, 0x1B, + 0x06, 0x22, 0x02, 0x02, 0xA8, 0x03, 0x2A, 0xFC, 0xD6, 0x03, 0x2A, 0xFA, + 0x2E, 0xD4, 0xD4, 0x41, 0x01, 0xA7, 0x01, 0x21, 0xB7, 0xC3, 0x01, 0x1D, + 0x9B, 0x9F, 0xFE, 0xD8, 0xCD, 0x9B, 0xC4, 0x5D, 0x5A, 0xC0, 0x9A, 0x8E, + 0xD7, 0x77, 0x12, 0x12, 0xFF, 0xFF, 0xFF, 0xF8, 0x00, 0x00, 0x04, 0x9C, + 0x05, 0xD2, 0x04, 0x26, 0x00, 0x89, 0x3B, 0x00, 0x00, 0x07, 0x0B, 0x39, + 0xFF, 0xD0, 0xFE, 0x50, 0x00, 0x04, 0x00, 0x81, 0xFF, 0x2B, 0x04, 0xE5, + 0x06, 0xA7, 0x00, 0x03, 0x00, 0x17, 0x00, 0x21, 0x00, 0x2B, 0x00, 0x00, + 0x45, 0x11, 0x33, 0x11, 0x25, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, + 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x02, 0x37, 0x9D, 0xFD, 0xAD, + 0x02, 0x40, 0x9E, 0xDB, 0x72, 0x40, 0x74, 0x4F, 0x57, 0x8F, 0x56, 0x75, + 0xE8, 0xAD, 0xFE, 0xAC, 0x01, 0x35, 0x8A, 0x91, 0x42, 0x7B, 0x57, 0xFE, + 0xC4, 0x01, 0x29, 0x4A, 0x6E, 0x3C, 0x80, 0x73, 0xFE, 0xD6, 0xD5, 0x07, + 0x7C, 0xF8, 0x84, 0xD5, 0x05, 0xD2, 0x62, 0xAD, 0x74, 0x57, 0x82, 0x56, + 0x15, 0x05, 0x09, 0x58, 0x99, 0x6C, 0x7B, 0xBC, 0x69, 0xD9, 0x6F, 0x64, + 0x45, 0x65, 0x38, 0xCC, 0x33, 0x5E, 0x41, 0x5D, 0x71, 0x00, 0x07, 0x00, + 0x81, 0xFF, 0x46, 0x04, 0xE5, 0x06, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x0B, 0x00, 0x0F, 0x00, 0x23, 0x00, 0x2D, 0x00, 0x37, 0x00, 0x00, 0x41, + 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x01, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x33, 0x11, 0x25, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x01, 0x75, 0x9E, 0x8B, 0x9F, 0xFE, + 0x38, 0x9E, 0x8B, 0x9F, 0xFD, 0x44, 0x02, 0x40, 0x9E, 0xDB, 0x72, 0x40, + 0x74, 0x4F, 0x57, 0x8F, 0x56, 0x75, 0xE8, 0xAD, 0xFE, 0xAC, 0x01, 0x35, + 0x8A, 0x91, 0x42, 0x7B, 0x57, 0xFE, 0xC4, 0x01, 0x29, 0x4A, 0x6E, 0x3C, + 0x80, 0x73, 0xFE, 0xD6, 0x05, 0x86, 0x01, 0x06, 0xFE, 0xFA, 0x01, 0x06, + 0xFE, 0xFA, 0xF9, 0xC0, 0x01, 0x06, 0xFE, 0xFA, 0x01, 0x06, 0xFE, 0xFA, + 0xBA, 0x05, 0xD2, 0x62, 0xAD, 0x74, 0x57, 0x82, 0x56, 0x15, 0x05, 0x09, + 0x58, 0x99, 0x6C, 0x7B, 0xBC, 0x69, 0xD9, 0x6F, 0x64, 0x45, 0x65, 0x38, + 0xCC, 0x33, 0x5E, 0x41, 0x5D, 0x71, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0xE9, + 0x04, 0xD5, 0x05, 0xE9, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x45, 0x22, + 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, + 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x92, 0xB4, 0xFE, 0xFD, 0x8C, + 0x8C, 0x01, 0x03, 0xB4, 0xB4, 0x01, 0x04, 0x8B, 0x8B, 0xFE, 0xFD, 0xB5, + 0x66, 0x91, 0x4E, 0x4E, 0x91, 0x66, 0x65, 0x92, 0x4E, 0x4E, 0x92, 0x17, + 0xBA, 0x01, 0x58, 0xED, 0xEE, 0x01, 0x58, 0xBB, 0xBB, 0xFE, 0xA8, 0xEE, + 0xED, 0xFE, 0xA8, 0xBA, 0xDB, 0x84, 0xF5, 0xAB, 0xAC, 0xF6, 0x84, 0x84, + 0xF6, 0xAC, 0xAB, 0xF5, 0x84, 0x00, 0x01, 0x00, 0x36, 0x00, 0x00, 0x02, + 0x9D, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x23, + 0x05, 0x35, 0x25, 0x02, 0x9D, 0xFE, 0xFF, 0x03, 0xFE, 0x9D, 0x01, 0x68, + 0x05, 0xD2, 0xFA, 0x2E, 0x04, 0xDA, 0xEB, 0xF5, 0xEE, 0x00, 0x01, 0x00, + 0x5A, 0x00, 0x00, 0x04, 0x67, 0x05, 0xE9, 0x00, 0x1F, 0x00, 0x00, 0x73, + 0x35, 0x01, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x23, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x07, 0x01, 0x15, 0x21, 0x15, 0x5D, 0x02, 0x18, 0x4B, 0x6A, 0x39, + 0x40, 0x74, 0x4F, 0x54, 0x79, 0x42, 0xF7, 0x81, 0xE9, 0x9D, 0x95, 0xE5, + 0x82, 0x49, 0x95, 0x73, 0xFE, 0xBB, 0x02, 0xA0, 0xC7, 0x01, 0xE1, 0x45, + 0x71, 0x73, 0x46, 0x4C, 0x70, 0x3C, 0x47, 0x84, 0x5C, 0x9B, 0xE6, 0x80, + 0x72, 0xCC, 0x87, 0x62, 0xA8, 0xAB, 0x68, 0xFE, 0xD8, 0x04, 0xDB, 0xFF, + 0xFF, 0x00, 0x5A, 0x00, 0x00, 0x04, 0x67, 0x05, 0xE9, 0x06, 0x26, 0x05, + 0x3D, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x68, 0x00, 0xDD, 0xFF, 0x8B, 0x00, + 0x01, 0x00, 0x56, 0xFF, 0xE9, 0x04, 0xA3, 0x05, 0xE9, 0x00, 0x34, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x21, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x02, 0x7C, 0xAB, 0xF6, 0x85, 0x01, 0x03, 0x01, 0x46, + 0x82, 0x58, 0x55, 0x82, 0x4A, 0x4E, 0x8D, 0x5F, 0x82, 0x82, 0x53, 0x7E, + 0x45, 0x40, 0x72, 0x4D, 0x4E, 0x76, 0x43, 0xFD, 0x01, 0x82, 0xE9, 0x99, + 0x94, 0xE4, 0x82, 0x98, 0x7D, 0x66, 0x91, 0x4E, 0x8E, 0xF8, 0x17, 0x81, + 0xDD, 0x8B, 0x55, 0x7C, 0x41, 0x3B, 0x6C, 0x47, 0x45, 0x67, 0x39, 0xCC, + 0x34, 0x60, 0x40, 0x45, 0x66, 0x38, 0x3C, 0x6D, 0x4C, 0x85, 0xCE, 0x75, + 0x6C, 0xBB, 0x78, 0x7B, 0xAB, 0x1E, 0x04, 0x0F, 0x63, 0x94, 0x59, 0x81, + 0xC7, 0x72, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x04, 0xEE, 0x05, 0xD2, + 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x35, 0x01, 0x33, 0x11, 0x23, + 0x01, 0x15, 0x21, 0x15, 0x01, 0x11, 0x37, 0x11, 0x33, 0x11, 0x44, 0x02, + 0x99, 0xA8, 0x60, 0xFE, 0x2A, 0x03, 0x9F, 0xFE, 0x3A, 0x01, 0xFB, 0x01, + 0x41, 0xD1, 0x03, 0xC0, 0xFE, 0xF0, 0xFD, 0x5A, 0x04, 0xD7, 0xFE, 0xBF, + 0x01, 0x80, 0x5F, 0x03, 0xF3, 0xFA, 0x2E, 0x00, 0x01, 0x00, 0x4A, 0xFF, + 0xEB, 0x04, 0x77, 0x05, 0xD2, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x27, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, 0x03, 0x33, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x02, 0x61, + 0x97, 0xED, 0x8C, 0x07, 0xFF, 0x05, 0x4B, 0x7C, 0x4D, 0x53, 0x7E, 0x47, + 0x46, 0x7C, 0x51, 0x62, 0x92, 0x1F, 0xF4, 0x36, 0x03, 0x8D, 0xFD, 0x5B, + 0x20, 0x03, 0x3A, 0x9E, 0x5F, 0x66, 0xAE, 0x82, 0x49, 0x86, 0xF0, 0x15, + 0x75, 0xD0, 0x87, 0x47, 0x70, 0x40, 0x4D, 0x86, 0x57, 0x58, 0x87, 0x4D, + 0x4F, 0x49, 0x09, 0x03, 0x4B, 0xDC, 0xFE, 0x74, 0x3D, 0x40, 0x4B, 0x88, + 0xB7, 0x6D, 0x97, 0xEA, 0x84, 0x00, 0x02, 0x00, 0x37, 0xFF, 0xEB, 0x04, + 0xBB, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x2A, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x01, 0x22, 0x26, 0x26, 0x27, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x13, 0x21, + 0x15, 0x21, 0x03, 0x33, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, + 0x06, 0x06, 0x01, 0x5D, 0xFE, 0xDA, 0x02, 0x6E, 0x97, 0xEE, 0x8B, 0x07, + 0xFF, 0x05, 0x4B, 0x7C, 0x4D, 0x53, 0x7E, 0x47, 0x46, 0x7C, 0x51, 0x62, + 0x92, 0x1F, 0xF4, 0x36, 0x03, 0x8D, 0xFD, 0x5B, 0x20, 0x03, 0x3A, 0x9E, + 0x5F, 0x66, 0xAE, 0x82, 0x49, 0x86, 0xF0, 0x05, 0xD2, 0xDC, 0xDC, 0xFA, + 0x19, 0x75, 0xD0, 0x87, 0x47, 0x70, 0x40, 0x4D, 0x86, 0x57, 0x58, 0x87, + 0x4D, 0x4F, 0x49, 0x09, 0x03, 0x4B, 0xDC, 0xFE, 0x74, 0x3D, 0x40, 0x4B, + 0x88, 0xB7, 0x6D, 0x97, 0xEA, 0x84, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0xE9, + 0x04, 0x9A, 0x05, 0xE9, 0x00, 0x22, 0x00, 0x33, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x33, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, + 0x02, 0x84, 0x80, 0xD0, 0x95, 0x50, 0x4A, 0x94, 0xD9, 0x8E, 0x8E, 0xD8, + 0x83, 0x0E, 0xFD, 0x13, 0x80, 0x66, 0x6F, 0x94, 0x4A, 0x04, 0x24, 0x6E, + 0x8B, 0x4E, 0x8B, 0xDA, 0x7E, 0x88, 0xF1, 0x9F, 0x50, 0x7F, 0x4B, 0x49, + 0x7D, 0x50, 0x3B, 0x67, 0x4E, 0x2B, 0x4A, 0x7F, 0x17, 0x5B, 0xB6, 0x01, + 0x0E, 0xB3, 0xBB, 0x01, 0x2C, 0xD6, 0x71, 0x6C, 0xBD, 0x7A, 0x5D, 0x6E, + 0x7E, 0xE2, 0x96, 0x3A, 0x53, 0x2C, 0x80, 0xDF, 0x8F, 0x96, 0xE5, 0x82, + 0xD7, 0x4E, 0x85, 0x52, 0x51, 0x83, 0x4C, 0x2C, 0x50, 0x69, 0x3D, 0x50, + 0x85, 0x4E, 0x00, 0x01, 0x00, 0x37, 0x00, 0x00, 0x04, 0x2A, 0x05, 0xD2, + 0x00, 0x07, 0x00, 0x00, 0x73, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, + 0x9D, 0x02, 0x7F, 0xFD, 0x1B, 0x03, 0xF3, 0xFD, 0x83, 0x04, 0xEF, 0x03, + 0xE0, 0xE2, 0xFB, 0x10, 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xE9, 0x04, 0x96, + 0x05, 0xE9, 0x00, 0x1F, 0x00, 0x2F, 0x00, 0x3F, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x1E, + 0x02, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x02, 0x72, 0xA2, 0xF6, 0x8B, 0x57, 0x99, 0x63, 0x81, 0x9E, 0x7F, + 0xE0, 0x90, 0x91, 0xDF, 0x7F, 0x9E, 0x80, 0x62, 0x99, 0x58, 0x8C, 0xF6, + 0xA2, 0x54, 0x7E, 0x46, 0x48, 0x7E, 0x52, 0x52, 0x7E, 0x49, 0x46, 0x7E, + 0x55, 0x47, 0x6C, 0x3C, 0x3B, 0x6C, 0x48, 0x48, 0x6C, 0x3C, 0x3C, 0x6D, + 0x17, 0x6C, 0xBE, 0x7C, 0x63, 0xA0, 0x68, 0x0D, 0x01, 0x17, 0xB5, 0x83, + 0x75, 0xB6, 0x67, 0x67, 0xB5, 0x76, 0x83, 0xB5, 0x17, 0x01, 0x0D, 0x68, + 0xA0, 0x63, 0x7C, 0xBE, 0x6C, 0xCB, 0x3B, 0x6B, 0x46, 0x49, 0x6F, 0x40, + 0x3F, 0x70, 0x49, 0x46, 0x6B, 0x3B, 0x02, 0xAF, 0x37, 0x64, 0x42, 0x42, + 0x62, 0x37, 0x37, 0x62, 0x42, 0x42, 0x63, 0x38, 0x00, 0x02, 0x00, 0x4F, + 0xFF, 0xE9, 0x04, 0x9A, 0x05, 0xEA, 0x00, 0x22, 0x00, 0x33, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x23, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x17, 0x32, 0x16, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x06, 0x03, 0x32, + 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x02, 0x53, 0x8D, 0xDA, 0x84, 0x0E, 0xFD, 0x12, 0x82, 0x66, + 0x70, 0x94, 0x4A, 0x04, 0x24, 0x6D, 0x8A, 0x4F, 0x8A, 0xDA, 0x7E, 0x88, + 0xF1, 0x9D, 0x80, 0xD0, 0x95, 0x50, 0x4C, 0x93, 0xDA, 0x7E, 0x3B, 0x67, + 0x4D, 0x2C, 0x4A, 0x7F, 0x4F, 0x4F, 0x7F, 0x4B, 0x49, 0x7E, 0x17, 0x6C, + 0xBE, 0x79, 0x5C, 0x6F, 0x7E, 0xE3, 0x96, 0x3A, 0x52, 0x2A, 0x7F, 0xDF, + 0x8E, 0x96, 0xE5, 0x81, 0x01, 0x5B, 0xB5, 0xFE, 0xF1, 0xB3, 0xBB, 0xFE, + 0xD4, 0xD6, 0x71, 0x02, 0xE8, 0x2C, 0x4F, 0x68, 0x3D, 0x51, 0x83, 0x4D, + 0x4D, 0x83, 0x52, 0x52, 0x82, 0x4B, 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xE9, + 0x04, 0xD5, 0x05, 0xE9, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, + 0x65, 0x27, 0x01, 0x17, 0x01, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, + 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x01, 0xC2, 0x86, 0x02, 0x25, 0x88, 0xFE, 0xA9, 0xB4, 0xFE, 0xFD, 0x8C, + 0x8C, 0x01, 0x03, 0xB4, 0xB4, 0x01, 0x04, 0x8B, 0x8B, 0xFE, 0xFD, 0xB5, + 0x66, 0x91, 0x4E, 0x4E, 0x91, 0x66, 0x65, 0x92, 0x4E, 0x4E, 0x92, 0x9E, + 0x43, 0x04, 0x53, 0x42, 0xFA, 0xF7, 0xBA, 0x01, 0x58, 0xED, 0xEE, 0x01, + 0x58, 0xBB, 0xBB, 0xFE, 0xA8, 0xEE, 0xED, 0xFE, 0xA8, 0xBA, 0xDB, 0x84, + 0xF5, 0xAB, 0xAC, 0xF6, 0x84, 0x84, 0xF6, 0xAC, 0xAB, 0xF5, 0x84, 0x00, + 0x01, 0x00, 0x66, 0x00, 0x00, 0x02, 0x98, 0x05, 0xD1, 0x00, 0x0E, 0x00, + 0x00, 0x61, 0x11, 0x17, 0x0E, 0x02, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, + 0x37, 0x33, 0x11, 0x01, 0x96, 0x15, 0x2B, 0x5E, 0x72, 0x4A, 0x26, 0x55, + 0x7D, 0x4C, 0x0D, 0xE1, 0x04, 0x4F, 0x15, 0x09, 0x0D, 0x08, 0xCE, 0x33, + 0x67, 0x4D, 0xFA, 0x2F, 0x00, 0x01, 0x00, 0x56, 0xFF, 0xE9, 0x04, 0x99, + 0x05, 0xD2, 0x00, 0x22, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x21, + 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, + 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x35, 0x36, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x02, 0x7C, 0xA8, 0xF6, 0x87, 0x01, 0x01, 0x03, + 0x01, 0x48, 0x82, 0x56, 0x53, 0x80, 0x47, 0x4C, 0x90, 0x66, 0xBA, 0x01, + 0x78, 0xFD, 0x9B, 0x03, 0xA7, 0xFE, 0x1F, 0xB4, 0xF6, 0x7E, 0x89, 0xF4, + 0x17, 0x80, 0xDE, 0x8B, 0x53, 0x7B, 0x44, 0x43, 0x79, 0x50, 0x50, 0x75, + 0x41, 0xB0, 0x01, 0x70, 0x04, 0xDC, 0xD0, 0xFE, 0x30, 0x36, 0x10, 0x67, + 0xC9, 0x83, 0x8C, 0xD7, 0x79, 0x00, 0x02, 0x00, 0x44, 0x00, 0x00, 0x04, + 0xEE, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x35, 0x01, + 0x21, 0x01, 0x15, 0x21, 0x15, 0x01, 0x11, 0x37, 0x11, 0x33, 0x11, 0x44, + 0x02, 0x8B, 0x01, 0x0A, 0xFD, 0x7F, 0x03, 0x96, 0xFE, 0x3A, 0x01, 0xF7, + 0x01, 0x41, 0xD1, 0x03, 0xC0, 0xFC, 0x4A, 0x04, 0xD7, 0xFE, 0xBF, 0x01, + 0x80, 0x5F, 0x01, 0xC2, 0xFC, 0x5F, 0x00, 0x02, 0x00, 0x4F, 0xFF, 0xEA, + 0x04, 0x70, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x01, 0x21, 0x01, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x02, 0x64, 0x9B, 0xF1, 0x89, 0x69, 0x6E, 0x01, 0x54, 0x01, 0x1C, 0xFE, + 0x16, 0x2E, 0x15, 0x46, 0x6D, 0x50, 0x8D, 0xD4, 0x79, 0x87, 0xEB, 0x9F, + 0x50, 0x7D, 0x49, 0x49, 0x7D, 0x50, 0x4F, 0x7D, 0x48, 0x48, 0x7D, 0x16, + 0x80, 0xE6, 0x97, 0x74, 0xF0, 0x9D, 0x01, 0xEA, 0xFD, 0x4D, 0x25, 0x4B, + 0x31, 0x77, 0xD7, 0x90, 0x94, 0xE4, 0x80, 0xD6, 0x4C, 0x83, 0x52, 0x52, + 0x82, 0x4B, 0x4B, 0x81, 0x52, 0x53, 0x83, 0x4C, 0x00, 0x02, 0x00, 0x4F, + 0x00, 0x00, 0x04, 0x70, 0x05, 0xE8, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, + 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x01, 0x21, 0x01, 0x33, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x17, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x02, 0x5B, 0x9B, 0xF0, 0x8A, 0x69, 0x6E, 0xFE, 0xAB, 0xFE, + 0xE4, 0x01, 0xEA, 0x2E, 0x14, 0x46, 0x6D, 0x51, 0x8B, 0xD6, 0x78, 0x86, + 0xED, 0x9E, 0x4F, 0x7E, 0x49, 0x49, 0x7E, 0x4F, 0x4F, 0x7D, 0x48, 0x48, + 0x7D, 0x05, 0xE8, 0x80, 0xE6, 0x97, 0x74, 0xF0, 0x9D, 0xFE, 0x16, 0x02, + 0xB3, 0x25, 0x4B, 0x31, 0x77, 0xD8, 0x8F, 0x94, 0xE4, 0x80, 0xD6, 0x4C, + 0x83, 0x52, 0x52, 0x82, 0x4B, 0x4B, 0x82, 0x51, 0x53, 0x83, 0x4C, 0x00, + 0x02, 0x00, 0x5E, 0xFF, 0xE9, 0x04, 0xCB, 0x05, 0xE9, 0x00, 0x0F, 0x00, + 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x33, + 0x32, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, + 0x95, 0xB4, 0xFD, 0x86, 0x86, 0xFD, 0xB4, 0xB4, 0xFD, 0x85, 0x85, 0xFD, + 0xB4, 0x65, 0x8C, 0x48, 0x48, 0x8C, 0x65, 0x65, 0x8D, 0x48, 0x48, 0x8D, + 0x17, 0xBA, 0x01, 0x58, 0xED, 0xEE, 0x01, 0x59, 0xBA, 0xBB, 0xFE, 0xA8, + 0xEE, 0xED, 0xFE, 0xA8, 0xBA, 0xDB, 0x82, 0xF6, 0xAC, 0xAE, 0xF5, 0x83, + 0x83, 0xF5, 0xAE, 0xAC, 0xF6, 0x82, 0x00, 0x02, 0x00, 0xC8, 0x00, 0x00, + 0x04, 0x8C, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, + 0x21, 0x15, 0x01, 0x11, 0x21, 0x11, 0x23, 0x05, 0x35, 0x25, 0xC8, 0x03, + 0xC4, 0xFE, 0xB8, 0xFE, 0xFE, 0x03, 0xFE, 0x9D, 0x01, 0x69, 0xDA, 0xDA, + 0x05, 0xD2, 0xFA, 0x2E, 0x04, 0xDA, 0xEB, 0xF5, 0xEE, 0xFF, 0xFF, 0x00, + 0x8F, 0x00, 0x00, 0x04, 0x9C, 0x05, 0xE9, 0x04, 0x06, 0x05, 0x3D, 0x35, + 0x00, 0xFF, 0xFF, 0x00, 0x68, 0xFF, 0xE9, 0x04, 0xB4, 0x05, 0xE9, 0x04, + 0x06, 0x05, 0x3F, 0x12, 0x00, 0xFF, 0xFF, 0x00, 0x3F, 0x00, 0x00, 0x04, + 0xE9, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x40, 0xFB, 0x00, 0xFF, 0xFF, 0x00, + 0x7B, 0xFF, 0xEB, 0x04, 0xA8, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x41, 0x31, + 0x00, 0xFF, 0xFF, 0x00, 0x6F, 0xFF, 0xE9, 0x04, 0xBA, 0x05, 0xE9, 0x04, + 0x06, 0x05, 0x43, 0x20, 0x00, 0xFF, 0xFF, 0x00, 0x9B, 0x00, 0x00, 0x04, + 0x8E, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x44, 0x64, 0x00, 0xFF, 0xFF, 0x00, + 0x71, 0xFF, 0xE9, 0x04, 0xB8, 0x05, 0xE9, 0x04, 0x06, 0x05, 0x45, 0x22, + 0x00, 0xFF, 0xFF, 0x00, 0x6F, 0xFF, 0xE9, 0x04, 0xBA, 0x05, 0xEA, 0x04, + 0x06, 0x05, 0x46, 0x20, 0x00, 0x00, 0x03, 0x00, 0x5E, 0xFF, 0xE9, 0x04, + 0xCB, 0x05, 0xE9, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x65, + 0x27, 0x01, 0x17, 0x01, 0x22, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x33, + 0x32, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, + 0xC5, 0x87, 0x02, 0x26, 0x87, 0xFE, 0xAA, 0xB4, 0xFD, 0x86, 0x86, 0xFD, + 0xB4, 0xB4, 0xFD, 0x85, 0x85, 0xFD, 0xB4, 0x65, 0x8C, 0x48, 0x48, 0x8C, + 0x65, 0x65, 0x8D, 0x48, 0x48, 0x8D, 0x9E, 0x43, 0x04, 0x53, 0x42, 0xFA, + 0xF7, 0xBA, 0x01, 0x58, 0xED, 0xEE, 0x01, 0x59, 0xBA, 0xBB, 0xFE, 0xA8, + 0xEE, 0xED, 0xFE, 0xA8, 0xBA, 0xDB, 0x82, 0xF6, 0xAC, 0xAE, 0xF5, 0x83, + 0x83, 0xF5, 0xAE, 0xAC, 0xF6, 0x82, 0x00, 0x02, 0x00, 0xC8, 0x00, 0x00, + 0x04, 0x8C, 0x05, 0xD1, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x73, 0x35, + 0x21, 0x15, 0x21, 0x11, 0x17, 0x0E, 0x02, 0x23, 0x35, 0x33, 0x32, 0x36, + 0x36, 0x37, 0x33, 0x11, 0xC8, 0x03, 0xC4, 0xFD, 0xAD, 0x14, 0x2B, 0x5E, + 0x72, 0x4A, 0x26, 0x55, 0x7D, 0x4D, 0x0C, 0xE1, 0xDA, 0xDA, 0x04, 0x4F, + 0x15, 0x09, 0x0D, 0x08, 0xCE, 0x33, 0x67, 0x4D, 0xFA, 0x2F, 0xFF, 0xFF, + 0x00, 0x6B, 0xFF, 0xE9, 0x04, 0xAE, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x49, + 0x15, 0x00, 0xFF, 0xFF, 0x00, 0x3F, 0x00, 0x00, 0x04, 0xE9, 0x05, 0xD2, + 0x04, 0x06, 0x05, 0x4A, 0xFB, 0x00, 0xFF, 0xFF, 0x00, 0x84, 0xFF, 0xEA, + 0x04, 0xA5, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x4B, 0x35, 0x00, 0xFF, 0xFF, + 0x00, 0x84, 0x00, 0x00, 0x04, 0xA5, 0x05, 0xE8, 0x04, 0x06, 0x05, 0x4C, + 0x35, 0x00, 0xFF, 0xFF, 0x00, 0x5C, 0xFE, 0xC0, 0x01, 0xAA, 0x00, 0xE4, + 0x04, 0x07, 0x05, 0xC9, 0xFF, 0xFE, 0xFB, 0x12, 0xFF, 0xFF, 0x00, 0x7A, + 0xFF, 0xEE, 0x01, 0xB2, 0x01, 0x26, 0x04, 0x06, 0x05, 0xDC, 0x11, 0x00, + 0xFF, 0xFF, 0x00, 0x7A, 0xFF, 0xEE, 0x01, 0xB2, 0x04, 0x06, 0x04, 0x26, + 0x05, 0xDC, 0x11, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x11, 0x02, 0xE0, + 0xFF, 0xFF, 0x00, 0x7A, 0x00, 0xD2, 0x01, 0xB2, 0x04, 0xE9, 0x04, 0x27, + 0x05, 0xDC, 0x00, 0x11, 0x00, 0xE3, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x11, + 0x03, 0xC3, 0xFF, 0xFF, 0x00, 0x5C, 0xFE, 0xC0, 0x01, 0xC3, 0x04, 0x06, + 0x04, 0x27, 0x05, 0xC9, 0xFF, 0xFE, 0xFB, 0x12, 0x00, 0x07, 0x05, 0xDC, + 0x00, 0x22, 0x02, 0xE0, 0xFF, 0xFF, 0x00, 0xEC, 0xFE, 0xDD, 0x02, 0xD1, + 0x06, 0x21, 0x04, 0x06, 0x05, 0x9B, 0x5F, 0x00, 0xFF, 0xFF, 0x00, 0x4F, + 0xFE, 0xDD, 0x02, 0x34, 0x06, 0x21, 0x04, 0x06, 0x05, 0x9C, 0x19, 0x00, + 0x00, 0x03, 0x00, 0x4B, 0xFE, 0xDD, 0x02, 0xD2, 0x06, 0x21, 0x00, 0x13, + 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x3E, 0x02, 0x33, 0x15, 0x22, 0x06, 0x15, 0x15, 0x14, 0x0E, 0x02, + 0x01, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x23, 0x35, 0x32, 0x1E, + 0x02, 0x15, 0x15, 0x14, 0x16, 0x33, 0x01, 0x35, 0x33, 0x15, 0x4B, 0x77, + 0x5D, 0x39, 0x6F, 0xA1, 0x6A, 0x79, 0x53, 0x24, 0x5F, 0xAE, 0x01, 0xFD, + 0x6A, 0xA1, 0x6F, 0x39, 0x5D, 0x77, 0x8A, 0xAE, 0x5F, 0x24, 0x53, 0x79, + 0xFD, 0x79, 0xE3, 0x02, 0x64, 0x92, 0x65, 0x72, 0xC3, 0x79, 0x9D, 0x58, + 0x23, 0xC8, 0x65, 0x77, 0xF8, 0x38, 0x68, 0x52, 0x2F, 0xFC, 0x79, 0x24, + 0x57, 0x9D, 0x79, 0xC2, 0x73, 0x66, 0x92, 0x30, 0x53, 0x68, 0x38, 0xF7, + 0x76, 0x66, 0x02, 0x63, 0xEE, 0xEE, 0x00, 0x03, 0x00, 0x4F, 0xFE, 0xDD, + 0x02, 0xD5, 0x06, 0x21, 0x00, 0x13, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, + 0x41, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x23, 0x35, 0x32, 0x1E, + 0x02, 0x15, 0x15, 0x14, 0x16, 0x33, 0x01, 0x35, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x3E, 0x02, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x14, 0x0E, 0x02, + 0x01, 0x07, 0x35, 0x33, 0x02, 0xD5, 0x8A, 0xAE, 0x5F, 0x24, 0x53, 0x78, + 0x69, 0xA1, 0x6F, 0x38, 0x5F, 0x76, 0xFD, 0x7A, 0x78, 0x53, 0x24, 0x5F, + 0xAE, 0x8A, 0x76, 0x5F, 0x38, 0x6F, 0xA1, 0x02, 0x1D, 0xE3, 0xE3, 0x02, + 0x64, 0x2F, 0x52, 0x68, 0x38, 0xF8, 0x76, 0x66, 0xC8, 0x23, 0x58, 0x9D, + 0x79, 0xC3, 0x72, 0x65, 0xFB, 0xE7, 0xC8, 0x66, 0x76, 0xF7, 0x38, 0x68, + 0x53, 0x30, 0x92, 0x01, 0x65, 0x73, 0xC2, 0x79, 0x9D, 0x57, 0x24, 0x03, + 0x2C, 0x01, 0xEE, 0xFF, 0xFF, 0x01, 0x12, 0xFE, 0xDD, 0x02, 0xD1, 0x06, + 0x21, 0x04, 0x06, 0x05, 0x9D, 0x79, 0x00, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, + 0xDD, 0x02, 0x0E, 0x06, 0x21, 0x04, 0x06, 0x05, 0x9F, 0xFE, 0x00, 0xFF, + 0xFF, 0x00, 0xEC, 0xFF, 0x47, 0x02, 0xD1, 0x06, 0x8B, 0x04, 0x06, 0x05, + 0x9B, 0x5F, 0x6A, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0x47, 0x02, 0x34, 0x06, + 0x8B, 0x04, 0x06, 0x05, 0x9C, 0x19, 0x6A, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, + 0x47, 0x02, 0xD2, 0x06, 0x8B, 0x06, 0x06, 0x05, 0x64, 0x00, 0x6A, 0xFF, + 0xFF, 0x00, 0x4F, 0xFF, 0x47, 0x02, 0xD5, 0x06, 0x8B, 0x06, 0x06, 0x05, + 0x65, 0x00, 0x6A, 0xFF, 0xFF, 0x01, 0x12, 0xFF, 0x47, 0x02, 0xD1, 0x06, + 0x8B, 0x04, 0x06, 0x05, 0x9D, 0x79, 0x6A, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, + 0x47, 0x02, 0x0E, 0x06, 0x8B, 0x04, 0x06, 0x05, 0x9F, 0xFE, 0x6A, 0xFF, + 0xFF, 0x01, 0x46, 0x01, 0xEE, 0x03, 0xE3, 0x02, 0xC2, 0x04, 0x07, 0x05, + 0xB1, 0x00, 0xCC, 0x00, 0x00, 0xFF, 0xFF, 0x01, 0x46, 0x02, 0x7F, 0x03, + 0xE3, 0x03, 0x53, 0x04, 0x07, 0x05, 0xB1, 0x00, 0xCC, 0x00, 0x91, 0xFF, + 0xFF, 0x00, 0xA5, 0x00, 0x1C, 0x04, 0x84, 0x04, 0x81, 0x04, 0x06, 0x05, + 0xEA, 0x0D, 0x00, 0xFF, 0xFF, 0x00, 0xA5, 0x00, 0x1C, 0x04, 0x84, 0x04, + 0x81, 0x04, 0x06, 0x05, 0xEB, 0xE5, 0x00, 0xFF, 0xFF, 0x00, 0xA5, 0x00, + 0x3D, 0x04, 0x84, 0x04, 0x8F, 0x04, 0x06, 0x05, 0xEC, 0xF9, 0x00, 0xFF, + 0xFF, 0x00, 0xA5, 0x00, 0x3D, 0x04, 0x84, 0x04, 0x8F, 0x04, 0x06, 0x05, + 0xED, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0xB4, 0x00, 0xFA, 0x04, 0x76, 0x03, + 0xA3, 0x04, 0x06, 0x05, 0xEE, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0xB4, 0x00, + 0x1D, 0x04, 0x76, 0x04, 0x7F, 0x04, 0x06, 0x05, 0xEF, 0xF9, 0x00, 0xFF, + 0xFF, 0x00, 0x9F, 0x00, 0x4D, 0x04, 0x8A, 0x04, 0x39, 0x04, 0x06, 0x05, + 0xF0, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0xA9, 0x01, 0xDF, 0x04, 0x80, 0x02, + 0xBE, 0x04, 0x06, 0x05, 0xF1, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0x9C, 0x00, + 0x55, 0x04, 0x8D, 0x04, 0x48, 0x04, 0x06, 0x05, 0xF2, 0xF9, 0x00, 0xFF, + 0xFF, 0x00, 0xA9, 0x00, 0x27, 0x04, 0x80, 0x04, 0x76, 0x04, 0x06, 0x05, + 0xF3, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0xA5, 0x00, 0x3D, 0x04, 0x84, 0x04, + 0x73, 0x04, 0x06, 0x05, 0xF4, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0x85, 0x00, + 0x9C, 0x04, 0xA5, 0x04, 0x01, 0x04, 0x06, 0x05, 0xF5, 0xF9, 0x00, 0xFF, + 0xFF, 0x00, 0x82, 0x01, 0x7E, 0x04, 0xA7, 0x03, 0x28, 0x04, 0x06, 0x05, + 0xF6, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0xFD, 0x02, 0x8C, 0x04, 0x2B, 0x05, + 0xD2, 0x04, 0x07, 0x06, 0x09, 0x00, 0x81, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0xA5, 0x00, 0xB7, 0x04, 0x84, 0x05, 0x1B, 0x04, 0x07, 0x05, 0xEA, 0x00, + 0x0D, 0x00, 0x9A, 0xFF, 0xFF, 0x00, 0xA5, 0x00, 0xB7, 0x04, 0x84, 0x05, + 0x1B, 0x04, 0x07, 0x05, 0xEB, 0xFF, 0xE5, 0x00, 0x9A, 0xFF, 0xFF, 0x00, + 0xA5, 0x00, 0xC0, 0x04, 0x84, 0x05, 0x12, 0x04, 0x07, 0x05, 0xEC, 0xFF, + 0xF9, 0x00, 0x83, 0xFF, 0xFF, 0x00, 0xA5, 0x00, 0xC0, 0x04, 0x84, 0x05, + 0x12, 0x04, 0x07, 0x05, 0xED, 0xFF, 0xF9, 0x00, 0x83, 0xFF, 0xFF, 0x00, + 0xB4, 0x01, 0x95, 0x04, 0x76, 0x04, 0x3E, 0x04, 0x07, 0x05, 0xEE, 0xFF, + 0xF9, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xB4, 0x00, 0xB8, 0x04, 0x76, 0x05, + 0x1A, 0x04, 0x07, 0x05, 0xEF, 0xFF, 0xF9, 0x00, 0x9B, 0xFF, 0xFF, 0x00, + 0x9F, 0x00, 0xE8, 0x04, 0x8A, 0x04, 0xD3, 0x04, 0x07, 0x05, 0xF0, 0xFF, + 0xF9, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xA9, 0x02, 0x79, 0x04, 0x80, 0x03, + 0x59, 0x04, 0x07, 0x05, 0xF1, 0xFF, 0xF9, 0x00, 0x9B, 0xFF, 0xFF, 0x00, + 0x9C, 0x00, 0xF0, 0x04, 0x8D, 0x04, 0xE2, 0x04, 0x07, 0x05, 0xF2, 0xFF, + 0xF9, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xA9, 0x00, 0xC2, 0x04, 0x80, 0x05, + 0x10, 0x04, 0x07, 0x05, 0xF3, 0xFF, 0xF9, 0x00, 0x9B, 0xFF, 0xFF, 0x00, + 0xA5, 0x00, 0xCE, 0x04, 0x84, 0x05, 0x04, 0x04, 0x07, 0x05, 0xF4, 0xFF, + 0xF9, 0x00, 0x91, 0xFF, 0xFF, 0x00, 0x85, 0x01, 0x37, 0x04, 0xA5, 0x04, + 0x9B, 0x04, 0x07, 0x05, 0xF5, 0xFF, 0xF9, 0x00, 0x9A, 0xFF, 0xFF, 0x00, + 0x82, 0x02, 0x14, 0x04, 0xA7, 0x03, 0xBE, 0x04, 0x07, 0x05, 0xF6, 0xFF, + 0xF9, 0x00, 0x96, 0xFF, 0xFF, 0x00, 0xA9, 0x00, 0xF5, 0x04, 0x80, 0x04, + 0xDD, 0x04, 0x06, 0x06, 0x0A, 0x02, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFF, + 0xEB, 0x05, 0x24, 0x05, 0xE3, 0x00, 0x40, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x25, 0x3E, 0x02, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x01, 0x21, 0x01, + 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x07, 0x05, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x3E, 0x02, 0x35, 0x33, 0x14, 0x06, 0x06, 0x07, 0x07, 0x06, 0x06, 0x02, + 0x2E, 0x95, 0xDC, 0x79, 0x3E, 0x81, 0x65, 0x01, 0x0E, 0x24, 0x31, 0x19, + 0x54, 0x48, 0x2E, 0x49, 0x2A, 0x2A, 0x56, 0x43, 0x02, 0xBA, 0xFE, 0xE9, + 0xFD, 0xBD, 0x54, 0x76, 0x3E, 0x61, 0xB0, 0x75, 0x72, 0xA9, 0x5D, 0x2D, + 0x58, 0x41, 0xFE, 0xD3, 0x47, 0x45, 0x40, 0x70, 0x46, 0x54, 0x9C, 0x7D, + 0x49, 0xDE, 0x31, 0x60, 0x44, 0x3D, 0x4C, 0xD3, 0x15, 0x6C, 0xBD, 0x77, + 0x52, 0x81, 0x7B, 0x48, 0xBA, 0x19, 0x38, 0x3B, 0x1F, 0x39, 0x52, 0x27, + 0x47, 0x2F, 0x2C, 0x58, 0x6E, 0x4F, 0xFC, 0xCD, 0x02, 0x99, 0x64, 0x9B, + 0x8F, 0x50, 0x6A, 0xA4, 0x5E, 0x59, 0x98, 0x60, 0x41, 0x77, 0x6A, 0x2F, + 0xDD, 0x34, 0x60, 0x3D, 0x3C, 0x61, 0x39, 0x4E, 0x8C, 0xB8, 0x6A, 0x72, + 0xC7, 0x9F, 0x39, 0x2F, 0x45, 0x49, 0x00, 0x01, 0x00, 0x37, 0xFE, 0x5E, + 0x03, 0x3A, 0x04, 0x2E, 0x00, 0x05, 0x00, 0x00, 0x41, 0x13, 0x21, 0x35, + 0x21, 0x03, 0x01, 0xC3, 0x84, 0xFD, 0xF0, 0x03, 0x03, 0x9C, 0xFE, 0x5E, + 0x04, 0xF5, 0xDB, 0xFA, 0x30, 0x00, 0x02, 0x00, 0x6A, 0xFF, 0xEE, 0x01, + 0xA3, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x03, 0x21, + 0x03, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x92, 0x15, 0x01, 0x12, 0x15, 0x74, 0x41, 0x5B, 0x5B, 0x41, 0x43, + 0x5A, 0x5A, 0x01, 0xB5, 0x04, 0x1D, 0xFB, 0xE3, 0xFE, 0x39, 0x5B, 0x41, + 0x42, 0x59, 0x59, 0x42, 0x41, 0x5B, 0xFF, 0xFF, 0x00, 0x6A, 0xFF, 0xEE, + 0x03, 0xB0, 0x05, 0xD2, 0x04, 0x26, 0x05, 0x91, 0x00, 0x00, 0x00, 0x07, + 0x05, 0x91, 0x02, 0x0D, 0x00, 0x00, 0x00, 0x02, 0x00, 0x6A, 0xFE, 0x6A, + 0x01, 0xA9, 0x04, 0x46, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x13, + 0x33, 0x13, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x7D, 0x16, 0xED, 0x16, 0x8D, 0x43, 0x5C, 0x5C, 0x43, 0x43, + 0x5D, 0x5D, 0xFE, 0x6A, 0x04, 0x11, 0xFB, 0xEF, 0x04, 0x9F, 0x5C, 0x42, + 0x43, 0x5C, 0x5C, 0x43, 0x42, 0x5C, 0xFF, 0xFF, 0x00, 0x6A, 0xFF, 0xEE, + 0x06, 0x1C, 0x05, 0xE8, 0x04, 0x26, 0x05, 0x91, 0x00, 0x00, 0x00, 0x07, + 0x05, 0x95, 0x02, 0x0D, 0x00, 0x00, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xEE, + 0x04, 0x0F, 0x05, 0xE8, 0x00, 0x21, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x35, + 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x23, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x0E, 0x02, 0x15, 0x15, 0x03, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x9C, 0x34, 0x65, 0x49, + 0x4C, 0x48, 0x38, 0x66, 0x44, 0x48, 0x6D, 0x3D, 0xFA, 0x7E, 0xDF, 0x91, + 0x8D, 0xD7, 0x79, 0x6B, 0x65, 0x3E, 0x52, 0x27, 0x74, 0x42, 0x5B, 0x5B, + 0x42, 0x42, 0x5B, 0x5B, 0x01, 0xB0, 0x4D, 0x6D, 0x7E, 0x54, 0x2D, 0x31, + 0x72, 0x41, 0x3C, 0x59, 0x30, 0x3A, 0x6F, 0x4E, 0x8C, 0xCF, 0x72, 0x64, + 0xB3, 0x76, 0x72, 0xB4, 0x43, 0x29, 0x46, 0x54, 0x40, 0x3F, 0xFE, 0x3E, + 0x5B, 0x41, 0x42, 0x59, 0x59, 0x42, 0x41, 0x5B, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEE, 0x08, 0x77, 0x05, 0xE8, 0x04, 0x26, 0x05, 0x95, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x95, 0x04, 0x68, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEE, 0x06, 0x0B, 0x05, 0xE8, 0x04, 0x26, 0x05, 0x95, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x91, 0x04, 0x68, 0x00, 0x00, 0x00, 0x02, 0x00, 0x59, + 0xFE, 0x46, 0x04, 0x25, 0x04, 0x3F, 0x00, 0x21, 0x00, 0x2D, 0x00, 0x00, + 0x41, 0x15, 0x14, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x37, 0x3E, 0x02, 0x35, 0x35, 0x13, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x02, 0xCC, 0x34, 0x65, + 0x48, 0x4D, 0x48, 0x38, 0x66, 0x44, 0x49, 0x6D, 0x3C, 0xFB, 0x01, 0x7E, + 0xDE, 0x92, 0x8C, 0xD7, 0x7A, 0x6B, 0x65, 0x3F, 0x51, 0x27, 0x74, 0x42, + 0x5B, 0x5B, 0x42, 0x41, 0x5C, 0x5C, 0x02, 0x7D, 0x4C, 0x6D, 0x7E, 0x53, + 0x2E, 0x31, 0x72, 0x41, 0x3C, 0x59, 0x31, 0x3B, 0x6E, 0x4F, 0x8C, 0xCF, + 0x72, 0x64, 0xB3, 0x75, 0x73, 0xB4, 0x42, 0x2B, 0x44, 0x55, 0x40, 0x3E, + 0x01, 0xC2, 0x59, 0x42, 0x41, 0x5B, 0x5B, 0x41, 0x42, 0x59, 0x00, 0x03, + 0x00, 0x44, 0xFF, 0xEE, 0x03, 0xE4, 0x05, 0xE6, 0x00, 0x21, 0x00, 0x25, + 0x00, 0x31, 0x00, 0x00, 0x41, 0x35, 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x02, 0x15, 0x15, + 0x23, 0x03, 0x33, 0x03, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x01, 0x99, 0x1E, 0x4B, 0x45, 0x51, 0x4A, 0x3B, + 0x5F, 0x36, 0x33, 0x5F, 0x3E, 0x04, 0xFA, 0x04, 0x7E, 0xD0, 0x7D, 0x8B, + 0xD1, 0x75, 0x83, 0x64, 0x46, 0x48, 0x17, 0xBE, 0x30, 0xCB, 0x0E, 0x2C, + 0x41, 0x5B, 0x5B, 0x41, 0x41, 0x5B, 0x5B, 0x01, 0xB3, 0x10, 0x58, 0x91, + 0x73, 0x2B, 0x34, 0x7C, 0x55, 0x40, 0x58, 0x2D, 0x2C, 0x5A, 0x46, 0x88, + 0xB9, 0x5D, 0x65, 0xB4, 0x79, 0x84, 0xBE, 0x3E, 0x2C, 0x48, 0x58, 0x45, + 0x10, 0x02, 0x6D, 0xFD, 0x93, 0xFE, 0x3B, 0x5C, 0x40, 0x42, 0x5A, 0x5A, + 0x41, 0x42, 0x5B, 0x00, 0x03, 0x00, 0x59, 0xFE, 0x67, 0x03, 0xFA, 0x04, + 0x5E, 0x00, 0x21, 0x00, 0x25, 0x00, 0x31, 0x00, 0x00, 0x41, 0x15, 0x14, + 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x37, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x37, 0x3E, 0x02, 0x35, 0x35, 0x33, 0x13, 0x23, 0x13, 0x13, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x02, 0xA5, 0x1E, + 0x4B, 0x45, 0x52, 0x4A, 0x3B, 0x60, 0x35, 0x34, 0x5E, 0x3F, 0x04, 0xFA, + 0x04, 0x7E, 0xCF, 0x7F, 0x89, 0xD3, 0x75, 0x83, 0x64, 0x48, 0x46, 0x17, + 0xBF, 0x2F, 0xCA, 0x0E, 0x2C, 0x41, 0x5B, 0x5B, 0x41, 0x41, 0x5B, 0x5B, + 0x02, 0x99, 0x10, 0x57, 0x91, 0x73, 0x2C, 0x32, 0x7D, 0x55, 0x40, 0x58, + 0x2E, 0x2D, 0x5A, 0x46, 0x88, 0xB8, 0x5E, 0x64, 0xB5, 0x79, 0x84, 0xBD, + 0x3E, 0x2D, 0x47, 0x59, 0x44, 0x10, 0xFD, 0x93, 0x02, 0x6D, 0x01, 0xC5, + 0x5A, 0x41, 0x42, 0x5B, 0x5C, 0x40, 0x42, 0x5A, 0x00, 0x01, 0x00, 0x8E, + 0xFE, 0xDD, 0x02, 0x73, 0x06, 0x21, 0x00, 0x10, 0x00, 0x00, 0x53, 0x34, + 0x12, 0x12, 0x37, 0x33, 0x06, 0x02, 0x02, 0x15, 0x14, 0x12, 0x12, 0x17, + 0x23, 0x26, 0x02, 0x8E, 0x3D, 0x6D, 0x47, 0xF4, 0x45, 0x66, 0x39, 0x32, + 0x65, 0x4D, 0xF4, 0x76, 0x7B, 0x02, 0x53, 0xAC, 0x01, 0x69, 0x01, 0x45, + 0x74, 0x91, 0xFE, 0xB3, 0xFE, 0xAD, 0x9D, 0x8C, 0xFE, 0xEB, 0xFE, 0xD6, + 0xAB, 0xC9, 0x01, 0xC4, 0x00, 0x01, 0x00, 0x36, 0xFE, 0xDD, 0x02, 0x1B, + 0x06, 0x21, 0x00, 0x10, 0x00, 0x00, 0x53, 0x36, 0x12, 0x12, 0x35, 0x34, + 0x02, 0x02, 0x27, 0x33, 0x16, 0x12, 0x12, 0x15, 0x14, 0x02, 0x07, 0x36, + 0x4D, 0x65, 0x31, 0x38, 0x66, 0x45, 0xF4, 0x47, 0x6C, 0x3E, 0x7B, 0x76, + 0xFE, 0xDD, 0xAC, 0x01, 0x2A, 0x01, 0x15, 0x8B, 0x9D, 0x01, 0x53, 0x01, + 0x4D, 0x91, 0x74, 0xFE, 0xBB, 0xFE, 0x97, 0xAC, 0xEA, 0xFE, 0x3C, 0xC8, + 0x00, 0x01, 0x00, 0x99, 0xFE, 0xDD, 0x02, 0x58, 0x06, 0x21, 0x00, 0x07, + 0x00, 0x00, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x99, 0x01, + 0xBF, 0xC3, 0xC3, 0xFE, 0xDD, 0x07, 0x44, 0xCB, 0xFA, 0x52, 0xCB, 0x00, + 0x02, 0x00, 0x99, 0xFE, 0xDD, 0x02, 0x58, 0x06, 0x21, 0x00, 0x03, 0x00, + 0x0B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x03, 0x11, 0x21, 0x15, 0x23, + 0x11, 0x33, 0x15, 0x02, 0x58, 0xFE, 0xBF, 0x7E, 0x01, 0xBF, 0xC3, 0xC3, + 0x02, 0xE2, 0xC5, 0xC5, 0xFB, 0xFB, 0x07, 0x44, 0xCB, 0xFA, 0x52, 0xCB, + 0x00, 0x01, 0x00, 0x50, 0xFE, 0xDD, 0x02, 0x0F, 0x06, 0x21, 0x00, 0x07, + 0x00, 0x00, 0x53, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x50, 0xC3, + 0xC3, 0x01, 0xBF, 0xFE, 0xDD, 0xCB, 0x05, 0xAE, 0xCB, 0xF8, 0xBC, 0x00, + 0x02, 0x00, 0x50, 0xFE, 0xDD, 0x02, 0x0F, 0x06, 0x21, 0x00, 0x03, 0x00, + 0x0B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x03, 0x35, 0x33, 0x11, 0x23, + 0x35, 0x21, 0x11, 0x01, 0x92, 0xFE, 0xBF, 0x01, 0xC3, 0xC3, 0x01, 0xBF, + 0x02, 0xE2, 0xC5, 0xC5, 0xFB, 0xFB, 0xCB, 0x05, 0xAE, 0xCB, 0xF8, 0xBC, + 0x00, 0x03, 0x00, 0x7A, 0xFE, 0xDD, 0x03, 0x1D, 0x06, 0x21, 0x00, 0x13, + 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x3E, 0x02, 0x33, 0x15, 0x22, 0x06, 0x15, 0x15, 0x14, 0x0E, 0x02, + 0x01, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x23, 0x35, 0x32, 0x1E, + 0x02, 0x15, 0x15, 0x14, 0x16, 0x33, 0x01, 0x35, 0x33, 0x15, 0x7A, 0x7B, + 0x61, 0x3C, 0x75, 0xAA, 0x6C, 0x7C, 0x56, 0x26, 0x63, 0xB7, 0x02, 0x12, + 0x6C, 0xAA, 0x75, 0x3C, 0x61, 0x7B, 0x91, 0xB7, 0x63, 0x26, 0x56, 0x7C, + 0xFD, 0x5D, 0xF0, 0x02, 0x64, 0x92, 0x65, 0x72, 0xC3, 0x79, 0x9D, 0x58, + 0x23, 0xC8, 0x65, 0x77, 0xF8, 0x38, 0x68, 0x52, 0x2F, 0xFC, 0x79, 0x24, + 0x57, 0x9D, 0x79, 0xC2, 0x73, 0x66, 0x92, 0x30, 0x53, 0x68, 0x38, 0xF7, + 0x76, 0x66, 0x02, 0x63, 0xEE, 0xEE, 0x00, 0x03, 0x00, 0x50, 0xFE, 0xDD, + 0x02, 0xF4, 0x06, 0x21, 0x00, 0x13, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, + 0x41, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x23, 0x35, 0x32, 0x1E, + 0x02, 0x15, 0x15, 0x14, 0x16, 0x33, 0x01, 0x35, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x3E, 0x02, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x14, 0x0E, 0x02, + 0x01, 0x07, 0x35, 0x33, 0x02, 0xF4, 0x91, 0xB7, 0x64, 0x25, 0x56, 0x7D, + 0x6D, 0xA9, 0x75, 0x3C, 0x62, 0x7B, 0xFD, 0x5C, 0x7D, 0x56, 0x25, 0x64, + 0xB7, 0x91, 0x7B, 0x62, 0x3C, 0x75, 0xA9, 0x02, 0x37, 0xF0, 0xF0, 0x02, + 0x64, 0x2F, 0x52, 0x68, 0x38, 0xF8, 0x76, 0x66, 0xC8, 0x23, 0x58, 0x9D, + 0x79, 0xC3, 0x72, 0x65, 0xFB, 0xE7, 0xC8, 0x66, 0x76, 0xF7, 0x38, 0x68, + 0x53, 0x30, 0x92, 0x01, 0x65, 0x73, 0xC2, 0x79, 0x9D, 0x57, 0x24, 0x03, + 0x2C, 0x01, 0xEE, 0x00, 0x02, 0x00, 0x4F, 0xFE, 0x5B, 0x07, 0xAA, 0x05, + 0xC3, 0x00, 0x49, 0x00, 0x59, 0x00, 0x00, 0x41, 0x22, 0x24, 0x26, 0x02, + 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, 0x14, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x35, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x02, 0x26, + 0x24, 0x23, 0x22, 0x04, 0x06, 0x02, 0x15, 0x14, 0x12, 0x16, 0x04, 0x33, + 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x03, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, + 0x14, 0xDC, 0xFE, 0x9D, 0xFE, 0x88, 0x87, 0xFD, 0x01, 0x62, 0xDA, 0xD2, + 0x01, 0x53, 0xF4, 0x82, 0x34, 0x69, 0x9C, 0x68, 0x54, 0x72, 0x3F, 0x07, + 0x03, 0x1A, 0x93, 0x77, 0x88, 0xC4, 0x6A, 0x77, 0xC9, 0x7A, 0x64, 0x8B, + 0x1C, 0x03, 0xC2, 0x35, 0x31, 0x3F, 0x54, 0x2B, 0x5F, 0xB6, 0xFE, 0xFE, + 0xA4, 0xAC, 0xFE, 0xEF, 0xC0, 0x65, 0x65, 0xC1, 0x01, 0x13, 0xAD, 0x5D, + 0x9F, 0x7C, 0x27, 0x49, 0x2D, 0x91, 0xBE, 0x95, 0x51, 0x6D, 0x37, 0x38, + 0x6D, 0x4F, 0x4F, 0x71, 0x3B, 0x39, 0x70, 0xFE, 0x5B, 0x86, 0xF8, 0x01, + 0x5D, 0xD7, 0xD5, 0x01, 0x5D, 0xFC, 0x88, 0x81, 0xEE, 0xFE, 0xB8, 0xC7, + 0x80, 0xCE, 0x93, 0x50, 0x34, 0x4F, 0x2A, 0x44, 0x63, 0x85, 0xE4, 0x8D, + 0x97, 0xDF, 0x79, 0x4A, 0x30, 0x63, 0xFD, 0x67, 0x3E, 0x3C, 0x53, 0xA1, + 0x75, 0xA0, 0x01, 0x01, 0xB6, 0x60, 0x66, 0xC2, 0xFE, 0xED, 0xAC, 0xAC, + 0xFE, 0xED, 0xC0, 0x66, 0x1C, 0x25, 0x0F, 0xBF, 0x13, 0x2C, 0x20, 0x02, + 0x88, 0x46, 0x87, 0x61, 0x63, 0x83, 0x43, 0x47, 0x84, 0x5E, 0x5D, 0x88, + 0x49, 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0x47, 0x02, 0x73, 0x06, 0x8B, 0x06, + 0x06, 0x05, 0x9B, 0x00, 0x6A, 0xFF, 0xFF, 0x00, 0x36, 0xFF, 0x47, 0x02, + 0x1B, 0x06, 0x8B, 0x06, 0x06, 0x05, 0x9C, 0x00, 0x6A, 0xFF, 0xFF, 0x00, + 0x99, 0xFF, 0x47, 0x02, 0x58, 0x06, 0x8B, 0x06, 0x06, 0x05, 0x9D, 0x00, + 0x6A, 0xFF, 0xFF, 0x00, 0x50, 0xFF, 0x47, 0x02, 0x0F, 0x06, 0x8B, 0x06, + 0x06, 0x05, 0x9F, 0x00, 0x6A, 0xFF, 0xFF, 0x00, 0x7A, 0xFF, 0x47, 0x03, + 0x1D, 0x06, 0x8B, 0x06, 0x06, 0x05, 0xA1, 0x00, 0x6A, 0xFF, 0xFF, 0x00, + 0x50, 0xFF, 0x47, 0x02, 0xF4, 0x06, 0x8B, 0x06, 0x06, 0x05, 0xA2, 0x00, + 0x6A, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0x35, 0x07, 0xAA, 0x06, 0x9D, 0x06, + 0x07, 0x05, 0xA3, 0x00, 0x00, 0x00, 0xDA, 0x00, 0x04, 0x00, 0x06, 0x00, + 0x00, 0x04, 0xF4, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, + 0x0F, 0x00, 0x00, 0x61, 0x13, 0x33, 0x03, 0x01, 0x37, 0x21, 0x07, 0x01, + 0x13, 0x33, 0x03, 0x01, 0x37, 0x21, 0x07, 0x02, 0xA5, 0xF5, 0xC7, 0xF5, + 0xFC, 0x9A, 0x21, 0x04, 0x78, 0x22, 0xFC, 0x1D, 0xF4, 0xC7, 0xF4, 0xFE, + 0xFB, 0x22, 0x04, 0x76, 0x20, 0x05, 0xD2, 0xFA, 0x2E, 0x01, 0x83, 0xC6, + 0xC6, 0xFE, 0x7D, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x88, 0xC7, 0xC7, 0x00, + 0x06, 0x00, 0x6E, 0xFF, 0xEB, 0x05, 0x6A, 0x04, 0xED, 0x00, 0x13, 0x00, + 0x23, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x33, 0x00, 0x00, 0x45, + 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, + 0x14, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x27, 0x37, 0x17, 0x03, + 0x27, 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, 0x03, 0x27, 0x37, 0x17, 0x02, + 0xE8, 0x7E, 0xDB, 0xA7, 0x5D, 0x5D, 0xA7, 0xDC, 0x7D, 0x7C, 0xDC, 0xA7, + 0x5F, 0x5F, 0xA7, 0xDC, 0x7C, 0x77, 0xC1, 0x73, 0x73, 0xC1, 0x77, 0x77, + 0xC4, 0x73, 0x73, 0xC4, 0x02, 0x2A, 0x82, 0xCB, 0x86, 0x86, 0xCB, 0x82, + 0xCF, 0xFB, 0x86, 0x82, 0xCB, 0x86, 0x86, 0xCB, 0x82, 0xCF, 0x14, 0x5F, + 0xAB, 0xE5, 0x85, 0x85, 0xE4, 0xAA, 0x5F, 0x5F, 0xAA, 0xE4, 0x85, 0x85, + 0xE5, 0xAB, 0x5F, 0xB2, 0x79, 0xCC, 0x7D, 0x7E, 0xCC, 0x78, 0x78, 0xCB, + 0x7F, 0x7D, 0xCC, 0x79, 0x02, 0xF9, 0x87, 0xCF, 0x88, 0xFB, 0x86, 0xCE, + 0x85, 0xCB, 0x88, 0x88, 0xCB, 0x85, 0x02, 0xDE, 0xCE, 0x88, 0xCF, 0x00, + 0x01, 0x00, 0x0D, 0xFF, 0x20, 0x02, 0xCE, 0x06, 0x18, 0x00, 0x03, 0x00, + 0x00, 0x41, 0x01, 0x23, 0x01, 0x02, 0xCE, 0xFE, 0x20, 0xE1, 0x01, 0xE0, + 0x06, 0x18, 0xF9, 0x08, 0x06, 0xF8, 0x00, 0x01, 0x00, 0xE2, 0xFE, 0x20, + 0x01, 0xCE, 0x07, 0xB2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, + 0x01, 0xCE, 0xEC, 0x07, 0xB2, 0xF6, 0x6E, 0x09, 0x92, 0x00, 0x02, 0x00, + 0xB9, 0xFE, 0xE8, 0x01, 0xA0, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x53, 0x33, 0x11, 0x23, 0x13, 0x11, 0x23, 0x11, 0xB9, 0xE7, 0xE7, + 0xE7, 0xE7, 0x01, 0x9A, 0xFD, 0x4E, 0x06, 0xEA, 0xFD, 0x51, 0x02, 0xAF, + 0x00, 0x01, 0x00, 0x0D, 0xFF, 0x20, 0x02, 0xCE, 0x06, 0x18, 0x00, 0x03, + 0x00, 0x00, 0x45, 0x01, 0x33, 0x01, 0x01, 0xED, 0xFE, 0x20, 0xE1, 0x01, + 0xE0, 0xE0, 0x06, 0xF8, 0xF9, 0x08, 0x00, 0x01, 0x00, 0x7A, 0x01, 0xEE, + 0x03, 0x16, 0x02, 0xC2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x03, 0x16, 0xFD, 0x64, 0x02, 0xC2, 0xD4, 0xD4, 0x00, 0x01, 0x00, 0x00, + 0x01, 0xEE, 0x04, 0x00, 0x02, 0xC2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x04, 0x00, 0xFC, 0x00, 0x02, 0xC2, 0xD4, 0xD4, 0x00, 0x01, + 0x00, 0x4A, 0x02, 0x2F, 0x04, 0xDE, 0x03, 0x03, 0x00, 0x03, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x04, 0xDE, 0xFB, 0x6C, 0x03, 0x03, 0xD4, 0xD4, + 0x00, 0x01, 0x00, 0x00, 0x01, 0xEE, 0x08, 0x00, 0x02, 0xC2, 0x00, 0x03, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x08, 0x00, 0xF8, 0x00, 0x02, 0xC2, + 0xD4, 0xD4, 0xFF, 0xFF, 0x00, 0x00, 0x01, 0xEE, 0x08, 0x00, 0x02, 0xC2, + 0x06, 0x06, 0x05, 0xB4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x9B, 0x01, 0x06, + 0x03, 0x1B, 0x03, 0x86, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x01, 0xDB, 0x58, 0x92, 0x56, 0x56, 0x92, 0x58, 0x59, 0x91, 0x56, 0x56, + 0x91, 0x01, 0x06, 0x56, 0x92, 0x58, 0x59, 0x91, 0x56, 0x56, 0x91, 0x59, + 0x58, 0x92, 0x56, 0x00, 0x02, 0x00, 0x9B, 0x01, 0x12, 0x03, 0x1B, 0x03, + 0x92, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, + 0xDB, 0x58, 0x92, 0x56, 0x56, 0x92, 0x58, 0x59, 0x90, 0x57, 0x57, 0x91, + 0x58, 0x46, 0x63, 0x63, 0x46, 0x47, 0x63, 0x63, 0x01, 0x12, 0x56, 0x92, + 0x58, 0x58, 0x91, 0x57, 0x57, 0x91, 0x58, 0x58, 0x92, 0x56, 0x96, 0x63, + 0x47, 0x46, 0x63, 0x63, 0x46, 0x47, 0x63, 0x00, 0x01, 0x00, 0xC2, 0x01, + 0xE8, 0x02, 0xF4, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x02, 0xF4, 0xFD, 0xCE, 0x02, 0xBC, 0xD4, 0xD4, 0x00, 0x01, 0x01, + 0x08, 0x01, 0x0C, 0x03, 0x22, 0x03, 0x98, 0x00, 0x02, 0x00, 0x00, 0x41, + 0x11, 0x01, 0x01, 0x08, 0x02, 0x1A, 0x01, 0x0C, 0x02, 0x8C, 0xFE, 0xBA, + 0x00, 0x02, 0x00, 0x7E, 0x00, 0xA8, 0x04, 0x1D, 0x03, 0xFA, 0x00, 0x0E, + 0x00, 0x12, 0x00, 0x00, 0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x11, 0x02, + 0x39, 0x87, 0xC8, 0x6C, 0x6C, 0xC8, 0x87, 0x01, 0x91, 0xFE, 0xC1, 0x01, + 0x3F, 0x8B, 0xDE, 0xA8, 0x66, 0xBF, 0x85, 0x85, 0xBE, 0x65, 0xA1, 0xFD, + 0xF0, 0xA1, 0x03, 0x52, 0xFC, 0xAE, 0x00, 0x02, 0x00, 0x8D, 0x00, 0xA8, + 0x04, 0x2C, 0x03, 0xFA, 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x65, 0x21, + 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x21, 0x23, 0x11, 0x33, 0x02, 0x70, 0xFE, 0x6F, 0x01, 0x3F, 0xFE, + 0xC1, 0x01, 0x91, 0x89, 0xC7, 0x6C, 0x6C, 0xC7, 0xFE, 0x71, 0xDD, 0xDD, + 0xA8, 0xA1, 0x02, 0x10, 0xA1, 0x66, 0xBD, 0x85, 0x85, 0xBF, 0x66, 0x03, + 0x52, 0x00, 0x01, 0x00, 0xC9, 0x01, 0x2E, 0x03, 0x0F, 0x03, 0x74, 0x00, + 0x03, 0x00, 0x00, 0x53, 0x21, 0x11, 0x21, 0xC9, 0x02, 0x46, 0xFD, 0xBA, + 0x03, 0x74, 0xFD, 0xBA, 0xFF, 0xFF, 0x00, 0x7A, 0x02, 0x7F, 0x03, 0x16, + 0x03, 0x53, 0x06, 0x07, 0x05, 0xB1, 0x00, 0x00, 0x00, 0x91, 0xFF, 0xFF, + 0x00, 0x00, 0x02, 0x7F, 0x04, 0x00, 0x03, 0x53, 0x06, 0x07, 0x05, 0xB2, + 0x00, 0x00, 0x00, 0x91, 0xFF, 0xFF, 0x00, 0x4A, 0x02, 0xAA, 0x04, 0xDE, + 0x03, 0x7E, 0x06, 0x06, 0x05, 0xB3, 0x00, 0x7B, 0xFF, 0xFF, 0x00, 0x00, + 0x02, 0x7F, 0x08, 0x00, 0x03, 0x53, 0x06, 0x07, 0x05, 0xB4, 0x00, 0x00, + 0x00, 0x91, 0xFF, 0xFF, 0x00, 0x9B, 0x01, 0xA9, 0x03, 0x1B, 0x04, 0x29, + 0x06, 0x07, 0x05, 0xB6, 0x00, 0x00, 0x00, 0xA3, 0xFF, 0xFF, 0x00, 0x9B, + 0x01, 0xA9, 0x03, 0x1B, 0x04, 0x29, 0x06, 0x07, 0x05, 0xB7, 0x00, 0x00, + 0x00, 0x97, 0xFF, 0xFF, 0x00, 0xC2, 0x02, 0x7F, 0x02, 0xF4, 0x03, 0x53, + 0x06, 0x07, 0x05, 0xB8, 0x00, 0x00, 0x00, 0x97, 0xFF, 0xFF, 0x01, 0x08, + 0x01, 0xA3, 0x03, 0x22, 0x04, 0x2F, 0x06, 0x07, 0x05, 0xB9, 0x00, 0x00, + 0x00, 0x97, 0xFF, 0xFF, 0x00, 0x7E, 0x01, 0x40, 0x04, 0x1D, 0x04, 0x92, + 0x06, 0x07, 0x05, 0xBA, 0x00, 0x00, 0x00, 0x98, 0xFF, 0xFF, 0x00, 0x8D, + 0x01, 0x40, 0x04, 0x2C, 0x04, 0x92, 0x06, 0x07, 0x05, 0xBB, 0x00, 0x00, + 0x00, 0x98, 0xFF, 0xFF, 0x00, 0xC9, 0x01, 0xC6, 0x03, 0x0F, 0x04, 0x0C, + 0x06, 0x07, 0x05, 0xBC, 0x00, 0x00, 0x00, 0x98, 0x00, 0x01, 0x00, 0x5E, + 0x03, 0xAE, 0x01, 0xAC, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, + 0x33, 0x03, 0x5E, 0x9B, 0xB3, 0x50, 0x03, 0xAE, 0x02, 0x24, 0xFD, 0xDC, + 0x00, 0x01, 0x00, 0x5E, 0x03, 0xAE, 0x01, 0xAC, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0x5E, 0x51, 0xFD, 0x9B, 0x03, 0xAE, + 0x02, 0x24, 0xFD, 0xDC, 0x00, 0x01, 0x00, 0xA6, 0x03, 0xA5, 0x01, 0x96, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x53, 0x03, 0x33, 0x03, 0xBF, 0x19, + 0xF0, 0x1A, 0x03, 0xA5, 0x02, 0x2D, 0xFD, 0xD3, 0xFF, 0xFF, 0x00, 0xA6, + 0x03, 0xA5, 0x03, 0x14, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xCA, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xCA, 0x01, 0x7F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5E, + 0x03, 0xAE, 0x03, 0x37, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xC8, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xC8, 0x01, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5E, + 0x03, 0xAE, 0x03, 0x2D, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xC9, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xC9, 0x01, 0x81, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3A, + 0xFE, 0xC0, 0x03, 0x0A, 0x00, 0xE4, 0x04, 0x27, 0x05, 0xC9, 0xFF, 0xDC, + 0xFB, 0x12, 0x00, 0x07, 0x05, 0xC9, 0x01, 0x5D, 0xFB, 0x12, 0xFF, 0xFF, + 0x00, 0x3A, 0xFE, 0xC0, 0x01, 0x89, 0x00, 0xE5, 0x04, 0x07, 0x05, 0xC9, + 0xFF, 0xDC, 0xFB, 0x13, 0x00, 0x01, 0x00, 0x2F, 0x03, 0xAE, 0x01, 0x7D, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x23, 0x03, 0x33, 0x01, 0x7D, + 0xB3, 0x9B, 0xFE, 0x03, 0xAE, 0x02, 0x24, 0xFF, 0xFF, 0x00, 0x2F, 0x03, + 0xAE, 0x02, 0xFE, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xD0, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xD0, 0x01, 0x81, 0x00, 0x00, 0x00, 0x01, 0x00, 0x5C, 0x03, + 0xA0, 0x01, 0x88, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, + 0x03, 0x5C, 0x34, 0xF8, 0x7C, 0x03, 0xA0, 0x02, 0x32, 0xFD, 0xCE, 0xFF, + 0xFF, 0x00, 0x5C, 0x03, 0xA0, 0x03, 0x6A, 0x05, 0xD2, 0x04, 0x26, 0x05, + 0xD2, 0x00, 0x00, 0x00, 0x07, 0x05, 0xD2, 0x01, 0xE2, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x5C, 0x03, 0xA0, 0x05, 0x4B, 0x05, 0xD2, 0x04, 0x26, 0x05, + 0xD2, 0x00, 0x00, 0x00, 0x27, 0x05, 0xD2, 0x01, 0xE2, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xD2, 0x03, 0xC4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5C, 0x03, + 0xA0, 0x07, 0x2D, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xD2, 0x00, 0x00, 0x00, + 0x27, 0x05, 0xD2, 0x01, 0xE2, 0x00, 0x00, 0x00, 0x27, 0x05, 0xD2, 0x03, + 0xC4, 0x00, 0x00, 0x00, 0x07, 0x05, 0xD2, 0x05, 0xA6, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x5C, 0x03, 0xA0, 0x01, 0x88, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x00, 0x41, 0x23, 0x03, 0x33, 0x01, 0x88, 0xB2, 0x7A, 0xF6, 0x03, 0xA0, + 0x02, 0x32, 0xFF, 0xFF, 0x00, 0x5C, 0x03, 0xA0, 0x03, 0x6A, 0x05, 0xD2, + 0x04, 0x26, 0x05, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x05, 0xD6, 0x01, 0xE2, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5C, 0x03, 0xA0, 0x05, 0x4B, 0x05, 0xD2, + 0x04, 0x26, 0x05, 0xD6, 0x00, 0x00, 0x00, 0x27, 0x05, 0xD6, 0x01, 0xE2, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xD6, 0x03, 0xC4, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x64, 0x03, 0x7A, 0x01, 0x6B, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, + 0x53, 0x03, 0x21, 0x03, 0xA5, 0x41, 0x01, 0x07, 0x3F, 0x03, 0x7A, 0x02, + 0x58, 0xFD, 0xA8, 0xFF, 0xFF, 0x00, 0x64, 0x03, 0x7A, 0x03, 0x3A, 0x05, + 0xD2, 0x04, 0x26, 0x05, 0xD9, 0x00, 0x00, 0x00, 0x07, 0x05, 0xD9, 0x01, + 0xCE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x42, 0xFE, 0xC0, 0x01, 0x91, 0x00, + 0xE4, 0x04, 0x07, 0x05, 0xC9, 0xFF, 0xE4, 0xFB, 0x12, 0x00, 0x01, 0x00, + 0x69, 0xFF, 0xEE, 0x01, 0xA1, 0x01, 0x26, 0x00, 0x0B, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, + 0x05, 0x41, 0x5B, 0x5B, 0x41, 0x41, 0x5B, 0x5B, 0x12, 0x5B, 0x41, 0x42, + 0x5A, 0x5A, 0x42, 0x41, 0x5B, 0xFF, 0xFF, 0x00, 0x69, 0xFF, 0xEE, 0x05, + 0xB4, 0x01, 0x26, 0x04, 0x26, 0x05, 0xDC, 0x00, 0x00, 0x00, 0x27, 0x05, + 0xDC, 0x02, 0x09, 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x04, 0x13, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x69, 0xFF, 0xEE, 0x03, 0xAA, 0x01, 0x26, 0x04, + 0x26, 0x05, 0xDC, 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x02, 0x09, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x69, 0xFF, 0xEE, 0x01, 0xA1, 0x04, 0x06, 0x06, + 0x26, 0x05, 0xDC, 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x00, 0x02, + 0xE0, 0xFF, 0xFF, 0x00, 0x69, 0x00, 0xDD, 0x01, 0xA1, 0x04, 0xF4, 0x06, + 0x27, 0x05, 0xDC, 0x00, 0x00, 0x00, 0xEF, 0x00, 0x07, 0x05, 0xDC, 0x00, + 0x00, 0x03, 0xCE, 0xFF, 0xFF, 0x00, 0x69, 0x00, 0xDD, 0x01, 0xA1, 0x04, + 0xF4, 0x06, 0x27, 0x05, 0xDC, 0x00, 0x00, 0x00, 0xEF, 0x00, 0x07, 0x05, + 0xDC, 0x00, 0x00, 0x03, 0xCE, 0xFF, 0xFF, 0x00, 0x42, 0xFE, 0xC0, 0x01, + 0xA9, 0x04, 0x06, 0x04, 0x27, 0x05, 0xC9, 0xFF, 0xE4, 0xFB, 0x12, 0x00, + 0x07, 0x05, 0xDC, 0x00, 0x09, 0x02, 0xE0, 0xFF, 0xFF, 0x00, 0x69, 0x02, + 0x28, 0x01, 0xA1, 0x03, 0x5F, 0x06, 0x07, 0x05, 0xDC, 0x00, 0x00, 0x02, + 0x39, 0xFF, 0xFF, 0x00, 0x69, 0x03, 0x08, 0x01, 0xA1, 0x04, 0x40, 0x06, + 0x07, 0x05, 0xDC, 0x00, 0x00, 0x03, 0x1A, 0xFF, 0xFF, 0x00, 0x42, 0xFE, + 0xC0, 0x01, 0xA9, 0x04, 0x06, 0x04, 0x27, 0x05, 0xC9, 0xFF, 0xE4, 0xFB, + 0x12, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x09, 0x02, 0xE0, 0x00, 0x01, 0x00, + 0x43, 0x00, 0x90, 0x02, 0xD6, 0x04, 0x0E, 0x00, 0x05, 0x00, 0x00, 0x65, + 0x01, 0x01, 0x21, 0x01, 0x01, 0x01, 0xBB, 0xFE, 0x88, 0x01, 0x78, 0x01, + 0x1B, 0xFE, 0x8F, 0x01, 0x71, 0x90, 0x01, 0xBF, 0x01, 0xBF, 0xFE, 0x41, + 0xFE, 0x41, 0x00, 0x01, 0x00, 0x30, 0x00, 0x90, 0x02, 0xC3, 0x04, 0x0E, + 0x00, 0x05, 0x00, 0x00, 0x77, 0x01, 0x01, 0x21, 0x01, 0x01, 0x30, 0x01, + 0x71, 0xFE, 0x8F, 0x01, 0x1B, 0x01, 0x78, 0xFE, 0x88, 0x90, 0x01, 0xBF, + 0x01, 0xBF, 0xFE, 0x41, 0xFE, 0x41, 0xFF, 0xFF, 0x00, 0x43, 0x00, 0x90, + 0x04, 0x96, 0x04, 0x0E, 0x04, 0x26, 0x05, 0xE6, 0x00, 0x00, 0x00, 0x07, + 0x05, 0xE6, 0x01, 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x30, 0x00, 0x90, + 0x04, 0x83, 0x04, 0x0E, 0x04, 0x26, 0x05, 0xE7, 0x00, 0x00, 0x00, 0x07, + 0x05, 0xE7, 0x01, 0xC0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x99, 0x00, 0x1C, + 0x04, 0x77, 0x04, 0x81, 0x00, 0x09, 0x00, 0x00, 0x53, 0x35, 0x01, 0x15, + 0x01, 0x37, 0x15, 0x27, 0x01, 0x15, 0x99, 0x03, 0xDE, 0xFD, 0x3C, 0x08, + 0x08, 0x02, 0xC4, 0x01, 0xEA, 0xC9, 0x01, 0xCE, 0xFE, 0xFE, 0xCE, 0x0E, + 0x21, 0x0D, 0xFE, 0xCD, 0xFC, 0x00, 0x01, 0x00, 0xC0, 0x00, 0x1C, 0x04, + 0x9F, 0x04, 0x81, 0x00, 0x09, 0x00, 0x00, 0x41, 0x01, 0x35, 0x01, 0x07, + 0x35, 0x17, 0x01, 0x35, 0x01, 0x04, 0x9F, 0xFC, 0x21, 0x02, 0xC5, 0x08, + 0x08, 0xFD, 0x3B, 0x03, 0xDF, 0x01, 0xEA, 0xFE, 0x32, 0xFC, 0x01, 0x33, + 0x0D, 0x21, 0x0E, 0x01, 0x32, 0xFE, 0xFE, 0x32, 0x00, 0x02, 0x00, 0xAC, + 0x00, 0x3D, 0x04, 0x8B, 0x04, 0x8F, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x00, + 0x65, 0x21, 0x35, 0x21, 0x01, 0x35, 0x01, 0x15, 0x05, 0x37, 0x15, 0x27, + 0x05, 0x15, 0x04, 0x8B, 0xFC, 0x21, 0x03, 0xDF, 0xFC, 0x21, 0x03, 0xDF, + 0xFD, 0x64, 0x08, 0x08, 0x02, 0x9C, 0x3D, 0xD6, 0x01, 0x86, 0xC9, 0x01, + 0x2D, 0xD7, 0xB7, 0x0E, 0x22, 0x0E, 0xB7, 0xD7, 0x00, 0x02, 0x00, 0xAC, + 0x00, 0x3D, 0x04, 0x8B, 0x04, 0x8F, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x00, + 0x77, 0x35, 0x21, 0x15, 0x11, 0x01, 0x35, 0x25, 0x07, 0x35, 0x17, 0x25, + 0x35, 0x01, 0xAC, 0x03, 0xDF, 0xFC, 0x21, 0x02, 0x9C, 0x08, 0x08, 0xFD, + 0x64, 0x03, 0xDF, 0x3D, 0xD6, 0xD6, 0x02, 0x5C, 0xFE, 0xD4, 0xD7, 0xB7, + 0x0E, 0x22, 0x0E, 0xB7, 0xD7, 0xFE, 0xD3, 0x00, 0x02, 0x00, 0xBA, 0x00, + 0xFA, 0x04, 0x7C, 0x03, 0xA3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, + 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0xBA, 0x03, 0xC2, 0xFC, 0x3E, + 0x03, 0xC2, 0x02, 0xC8, 0xDB, 0xDB, 0xFE, 0x32, 0xDB, 0xDB, 0x00, 0x03, + 0x00, 0xBA, 0x00, 0x1D, 0x04, 0x7C, 0x04, 0x7F, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x00, 0x65, 0x01, 0x33, 0x01, 0x01, 0x35, 0x21, 0x15, + 0x01, 0x35, 0x21, 0x15, 0x01, 0x53, 0x01, 0xBE, 0xD2, 0xFE, 0x42, 0xFE, + 0x95, 0x03, 0xC2, 0xFC, 0x3E, 0x03, 0xC2, 0x1D, 0x04, 0x62, 0xFB, 0x9E, + 0x02, 0xAB, 0xDB, 0xDB, 0xFE, 0x32, 0xDB, 0xDB, 0x00, 0x02, 0x00, 0xA6, + 0x00, 0x4D, 0x04, 0x91, 0x04, 0x39, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x65, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x02, 0x2D, 0xDE, 0xFD, + 0x9B, 0x03, 0xEB, 0x4D, 0x03, 0xEC, 0xFC, 0x14, 0x01, 0x8C, 0xD4, 0xD4, + 0x00, 0x01, 0x00, 0xB0, 0x01, 0xDF, 0x04, 0x87, 0x02, 0xBE, 0x00, 0x03, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x04, 0x87, 0xFC, 0x29, 0x02, 0xBE, + 0xDF, 0xDF, 0x00, 0x02, 0x00, 0xA3, 0x00, 0x55, 0x04, 0x94, 0x04, 0x48, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x65, 0x01, 0x37, 0x01, 0x05, 0x27, + 0x01, 0x17, 0x03, 0xF5, 0xFC, 0xAE, 0xA0, 0x03, 0x51, 0xFC, 0xAF, 0xA0, + 0x03, 0x52, 0x9F, 0x55, 0x03, 0x51, 0xA2, 0xFC, 0xAC, 0x9F, 0x9F, 0x03, + 0x54, 0xA2, 0x00, 0x03, 0x00, 0xB0, 0x00, 0x27, 0x04, 0x87, 0x04, 0x76, + 0x00, 0x03, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x01, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x03, 0x06, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x04, 0x87, 0xFC, 0x29, 0x01, 0xEB, 0x42, 0x5C, 0x5C, 0x42, 0x41, 0x5B, + 0x5C, 0x40, 0x41, 0x5D, 0x5D, 0x41, 0x41, 0x5B, 0x5B, 0x02, 0xBA, 0xD7, + 0xD7, 0xFD, 0x6D, 0x01, 0x5C, 0x42, 0x40, 0x5B, 0x5B, 0x40, 0x42, 0x5C, + 0x03, 0x14, 0x01, 0x5D, 0x42, 0x40, 0x5C, 0x5C, 0x40, 0x42, 0x5D, 0x00, + 0x03, 0x00, 0xAC, 0x00, 0x3D, 0x04, 0x8B, 0x04, 0x73, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, + 0x15, 0x01, 0x11, 0x33, 0x11, 0xAC, 0x03, 0xDF, 0xFC, 0x21, 0x03, 0xDF, + 0xFD, 0xA1, 0xDE, 0x3D, 0xD6, 0xD6, 0x02, 0x57, 0xD1, 0xD1, 0xFE, 0xF2, + 0x02, 0xED, 0xFD, 0x13, 0x00, 0x02, 0x00, 0x8C, 0x00, 0x9C, 0x04, 0xAD, + 0x04, 0x01, 0x00, 0x1B, 0x00, 0x37, 0x00, 0x00, 0x53, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x27, 0x33, 0x16, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x17, + 0x03, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x27, 0x33, 0x16, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x17, 0x8C, 0x50, 0x8A, 0x57, 0x4A, 0x76, 0x4D, 0x31, + 0x42, 0x24, 0x3A, 0x42, 0x01, 0xCF, 0x02, 0x52, 0x8D, 0x57, 0x47, 0x79, + 0x50, 0x32, 0x39, 0x25, 0x38, 0x45, 0x01, 0xCF, 0x50, 0x8A, 0x57, 0x4A, + 0x76, 0x4D, 0x31, 0x42, 0x23, 0x3B, 0x42, 0x01, 0xCF, 0x02, 0x52, 0x8C, + 0x58, 0x47, 0x79, 0x51, 0x31, 0x39, 0x25, 0x38, 0x45, 0x01, 0x02, 0x8A, + 0x83, 0xA6, 0x4E, 0x3C, 0x3D, 0x2A, 0x24, 0x56, 0x52, 0x80, 0xA7, 0x52, + 0x39, 0x42, 0x29, 0x20, 0x4C, 0x57, 0xFE, 0x34, 0x84, 0xA4, 0x4E, 0x3B, + 0x3F, 0x29, 0x23, 0x55, 0x53, 0x81, 0xA7, 0x52, 0x39, 0x42, 0x29, 0x20, + 0x4C, 0x56, 0x00, 0x01, 0x00, 0x89, 0x01, 0x7E, 0x04, 0xAE, 0x03, 0x28, + 0x00, 0x1B, 0x00, 0x00, 0x53, 0x26, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x27, 0x33, 0x16, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x17, 0x8C, 0x03, 0x4F, 0x8C, + 0x59, 0x47, 0x7C, 0x4F, 0x2F, 0x3C, 0x26, 0x38, 0x46, 0x02, 0xCF, 0x03, + 0x50, 0x8C, 0x57, 0x4A, 0x7D, 0x4E, 0x30, 0x3A, 0x26, 0x35, 0x47, 0x01, + 0x01, 0xA2, 0x83, 0xAE, 0x55, 0x3B, 0x46, 0x29, 0x26, 0x55, 0x57, 0x83, + 0xAD, 0x56, 0x3D, 0x44, 0x2A, 0x25, 0x50, 0x5C, 0xFF, 0xFF, 0x00, 0x99, + 0x00, 0xB7, 0x04, 0x77, 0x05, 0x1B, 0x06, 0x07, 0x05, 0xEA, 0x00, 0x00, + 0x00, 0x9A, 0xFF, 0xFF, 0x00, 0xC0, 0x00, 0xB7, 0x04, 0x9F, 0x05, 0x1B, + 0x06, 0x07, 0x05, 0xEB, 0x00, 0x00, 0x00, 0x9A, 0xFF, 0xFF, 0x00, 0xAC, + 0x00, 0xC0, 0x04, 0x8B, 0x05, 0x12, 0x06, 0x07, 0x05, 0xEC, 0x00, 0x00, + 0x00, 0x83, 0xFF, 0xFF, 0x00, 0xAC, 0x00, 0xC0, 0x04, 0x8B, 0x05, 0x12, + 0x06, 0x07, 0x05, 0xED, 0x00, 0x00, 0x00, 0x83, 0xFF, 0xFF, 0x00, 0xBA, + 0x01, 0x95, 0x04, 0x7C, 0x04, 0x3E, 0x06, 0x07, 0x05, 0xEE, 0x00, 0x00, + 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xBA, 0x00, 0xB8, 0x04, 0x7C, 0x05, 0x1A, + 0x06, 0x07, 0x05, 0xEF, 0x00, 0x00, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xA6, + 0x00, 0xEB, 0x04, 0x91, 0x04, 0xD7, 0x06, 0x07, 0x05, 0xF0, 0x00, 0x00, + 0x00, 0x9E, 0xFF, 0xFF, 0x00, 0xB0, 0x02, 0x79, 0x04, 0x87, 0x03, 0x59, + 0x06, 0x07, 0x05, 0xF1, 0x00, 0x00, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xA3, + 0x00, 0xF0, 0x04, 0x94, 0x04, 0xE2, 0x06, 0x07, 0x05, 0xF2, 0x00, 0x00, + 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xB0, 0x00, 0xC2, 0x04, 0x87, 0x05, 0x10, + 0x06, 0x07, 0x05, 0xF3, 0x00, 0x00, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0xAC, + 0x00, 0xCE, 0x04, 0x8B, 0x05, 0x04, 0x06, 0x07, 0x05, 0xF4, 0x00, 0x00, + 0x00, 0x91, 0xFF, 0xFF, 0x00, 0x8C, 0x01, 0x37, 0x04, 0xAD, 0x04, 0x9B, + 0x06, 0x07, 0x05, 0xF5, 0x00, 0x00, 0x00, 0x9A, 0xFF, 0xFF, 0x00, 0x89, + 0x02, 0x14, 0x04, 0xAE, 0x03, 0xBE, 0x06, 0x07, 0x05, 0xF6, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x01, 0x00, 0xD2, 0x01, 0x37, 0x04, 0x44, 0x03, 0x02, + 0x00, 0x05, 0x00, 0x00, 0x41, 0x35, 0x21, 0x35, 0x21, 0x11, 0x03, 0x66, + 0xFD, 0x6C, 0x03, 0x72, 0x01, 0x37, 0xF7, 0xD4, 0xFE, 0x35, 0x00, 0x01, + 0x00, 0x00, 0xFF, 0x32, 0x03, 0xBF, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x61, 0x15, 0x21, 0x35, 0x03, 0xBF, 0xFC, 0x41, 0xCE, 0xCE, 0x00, 0x02, + 0x00, 0x7D, 0x01, 0x86, 0x03, 0xCF, 0x05, 0xD2, 0x00, 0x05, 0x00, 0x09, + 0x00, 0x00, 0x41, 0x03, 0x11, 0x33, 0x11, 0x03, 0x01, 0x35, 0x21, 0x15, + 0x01, 0xD4, 0x2B, 0xFA, 0x2C, 0xFE, 0x06, 0x03, 0x52, 0x01, 0x86, 0x01, + 0x90, 0x02, 0xBC, 0xFD, 0x44, 0xFE, 0x70, 0x02, 0x57, 0xC8, 0xC8, 0x00, + 0x03, 0x00, 0x7D, 0x00, 0x00, 0x03, 0xCF, 0x05, 0xD2, 0x00, 0x05, 0x00, + 0x09, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x03, 0x11, 0x33, 0x11, 0x03, 0x01, + 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x01, 0xD4, 0x2B, 0xFA, 0x2C, + 0xFE, 0x06, 0x03, 0x52, 0xFC, 0xAE, 0x03, 0x52, 0x01, 0x90, 0x04, 0x42, + 0xFB, 0xBE, 0xFE, 0x70, 0x02, 0x48, 0xC7, 0xC7, 0x01, 0xA6, 0xC7, 0xC7, + 0x00, 0x02, 0x00, 0x35, 0x03, 0x2E, 0x03, 0x7A, 0x05, 0xAB, 0x00, 0x03, + 0x00, 0x0B, 0x00, 0x00, 0x41, 0x33, 0x15, 0x23, 0x01, 0x01, 0x33, 0x01, + 0x23, 0x03, 0x33, 0x03, 0x01, 0xBD, 0x34, 0x34, 0xFE, 0x78, 0x01, 0x30, + 0xE5, 0x01, 0x30, 0xD2, 0xD8, 0x0F, 0xD7, 0x05, 0x3E, 0x4E, 0xFE, 0x3E, + 0x02, 0x7D, 0xFD, 0x83, 0x01, 0xDF, 0xFE, 0x21, 0x00, 0x01, 0x00, 0x7D, + 0x02, 0x8C, 0x03, 0xAA, 0x05, 0xD2, 0x00, 0x11, 0x00, 0x00, 0x41, 0x13, + 0x07, 0x27, 0x25, 0x25, 0x37, 0x17, 0x03, 0x33, 0x03, 0x37, 0x17, 0x05, + 0x05, 0x07, 0x27, 0x13, 0x01, 0xBC, 0x11, 0xF9, 0x57, 0x01, 0x09, 0xFE, + 0xF7, 0x57, 0xF9, 0x11, 0xAE, 0x0F, 0xF8, 0x57, 0xFE, 0xF7, 0x01, 0x09, + 0x57, 0xF8, 0x0F, 0x02, 0x8C, 0x01, 0x29, 0xA4, 0x98, 0x85, 0x85, 0x9A, + 0xA4, 0x01, 0x29, 0xFE, 0xD7, 0xA4, 0x9A, 0x85, 0x85, 0x98, 0xA4, 0xFE, + 0xD7, 0x00, 0x01, 0x00, 0xA6, 0x00, 0xF5, 0x04, 0x7E, 0x04, 0xDD, 0x00, + 0x17, 0x00, 0x00, 0x65, 0x13, 0x17, 0x05, 0x27, 0x25, 0x15, 0x25, 0x37, + 0x05, 0x07, 0x03, 0x33, 0x03, 0x27, 0x25, 0x17, 0x05, 0x35, 0x05, 0x07, + 0x25, 0x37, 0x13, 0x02, 0x2A, 0x0F, 0x47, 0xFE, 0x8D, 0x66, 0x01, 0x84, + 0xFE, 0x7B, 0x67, 0x01, 0x72, 0x46, 0x0F, 0xD1, 0x0E, 0x48, 0x01, 0x72, + 0x67, 0xFE, 0x7B, 0x01, 0x84, 0x66, 0xFE, 0x8E, 0x48, 0x0E, 0xF5, 0x01, + 0xB7, 0x29, 0xEF, 0xB2, 0xCD, 0x54, 0xCE, 0xB2, 0xEE, 0x2B, 0x01, 0xB7, + 0xFE, 0x49, 0x2B, 0xEE, 0xB2, 0xCE, 0x54, 0xCD, 0xB2, 0xEF, 0x29, 0xFE, + 0x49, 0x00, 0x04, 0x00, 0x4B, 0x01, 0x5A, 0x04, 0xD7, 0x05, 0xE6, 0x00, + 0x13, 0x00, 0x23, 0x00, 0x27, 0x00, 0x3D, 0x00, 0x00, 0x41, 0x22, 0x2E, + 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, + 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x27, 0x33, 0x17, 0x21, 0x11, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x11, 0x02, 0x91, 0x78, 0xD3, 0xA0, + 0x5B, 0x5B, 0xA0, 0xD3, 0x78, 0x79, 0xD3, 0xA0, 0x5A, 0x5A, 0xA0, 0xD3, + 0x79, 0x78, 0xC5, 0x75, 0x75, 0xC5, 0x78, 0x78, 0xC5, 0x74, 0x74, 0xC5, + 0xDB, 0x77, 0x95, 0x7D, 0xFE, 0x2A, 0xF4, 0x3E, 0x5E, 0x35, 0x37, 0x61, + 0x41, 0x94, 0x8B, 0x23, 0x2E, 0x2E, 0x23, 0x53, 0x01, 0x5A, 0x5B, 0xA0, + 0xD3, 0x78, 0x78, 0xD3, 0xA0, 0x5B, 0x5B, 0xA0, 0xD3, 0x78, 0x78, 0xD3, + 0xA0, 0x5B, 0x95, 0x74, 0xC5, 0x78, 0x78, 0xC4, 0x75, 0x75, 0xC4, 0x78, + 0x78, 0xC4, 0x75, 0xA8, 0xF5, 0xF5, 0x02, 0x18, 0x2D, 0x52, 0x3A, 0x38, + 0x51, 0x2C, 0x6F, 0x26, 0x20, 0x21, 0x23, 0xFE, 0x5D, 0x00, 0x03, 0x00, + 0x94, 0xFF, 0xE9, 0x06, 0x94, 0x05, 0xE9, 0x00, 0x1F, 0x00, 0x33, 0x00, + 0x47, 0x00, 0x00, 0x41, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x01, 0x22, + 0x24, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, + 0x12, 0x15, 0x14, 0x02, 0x06, 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, + 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, 0xF8, + 0x70, 0xBF, 0x74, 0x65, 0xAB, 0x6F, 0x0D, 0xC8, 0x0D, 0x70, 0x47, 0x3E, + 0x68, 0x3E, 0x3E, 0x68, 0x3E, 0x47, 0x66, 0x0D, 0xC7, 0x0B, 0x6B, 0xA6, + 0x65, 0x74, 0xBF, 0x70, 0x01, 0x9C, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0x77, + 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, + 0xEA, 0x9F, 0x73, 0xC9, 0x99, 0x56, 0x56, 0x99, 0xC9, 0x73, 0x73, 0xCA, + 0x99, 0x56, 0x56, 0x99, 0xCA, 0x02, 0xE8, 0x74, 0xBE, 0x71, 0x58, 0x96, + 0x60, 0x3F, 0x50, 0x3D, 0x67, 0x3F, 0x3F, 0x66, 0x3E, 0x50, 0x3E, 0x5F, + 0x98, 0x57, 0x71, 0xBE, 0xFD, 0x74, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, + 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, 0xEA, + 0xD4, 0x77, 0xD5, 0x56, 0x99, 0xC9, 0x73, 0x73, 0xC9, 0x99, 0x56, 0x56, + 0x99, 0xC9, 0x73, 0x73, 0xC9, 0x99, 0x56, 0x00, 0x03, 0x00, 0x94, 0xFF, + 0xE9, 0x06, 0x94, 0x05, 0xE9, 0x00, 0x1F, 0x00, 0x33, 0x00, 0x47, 0x00, + 0x00, 0x41, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x01, 0x22, 0x24, 0x26, + 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, + 0x14, 0x02, 0x06, 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, + 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x05, 0x31, 0x71, 0xBE, + 0x74, 0x64, 0xA7, 0x6B, 0x0C, 0xC7, 0x0E, 0x65, 0x48, 0x3F, 0x66, 0x3E, + 0x3E, 0x66, 0x3F, 0x48, 0x6F, 0x0D, 0xC7, 0x0C, 0x6F, 0xAC, 0x64, 0x74, + 0xBE, 0x71, 0xFE, 0x63, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0x77, 0xD4, 0x01, + 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, + 0x73, 0xC9, 0x99, 0x56, 0x56, 0x99, 0xC9, 0x73, 0x73, 0xCA, 0x99, 0x56, + 0x56, 0x99, 0xCA, 0x02, 0xE8, 0x73, 0xBE, 0x71, 0x57, 0x98, 0x5F, 0x3E, + 0x50, 0x3E, 0x66, 0x3F, 0x3F, 0x67, 0x3D, 0x50, 0x3F, 0x60, 0x96, 0x58, + 0x71, 0xBE, 0xFC, 0x8D, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, + 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, + 0xD5, 0x56, 0x99, 0xC9, 0x73, 0x73, 0xC9, 0x99, 0x56, 0x56, 0x99, 0xC9, + 0x73, 0x73, 0xC9, 0x99, 0x56, 0x00, 0x03, 0x00, 0x94, 0xFF, 0xE9, 0x06, + 0x94, 0x05, 0xE9, 0x00, 0x13, 0x00, 0x27, 0x00, 0x3B, 0x00, 0x00, 0x41, + 0x11, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x11, 0x13, 0x22, 0x24, 0x26, 0x02, + 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, 0x14, + 0x02, 0x06, 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, + 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x02, 0x88, 0x01, 0x47, 0x8A, + 0xA0, 0xA2, 0x8B, 0xD4, 0xC3, 0x3D, 0x42, 0x42, 0x3D, 0x74, 0x4D, 0x9F, + 0xFE, 0xEA, 0xD4, 0x77, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, + 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x73, 0xC9, 0x99, 0x56, 0x56, + 0x99, 0xC9, 0x73, 0x73, 0xCA, 0x99, 0x56, 0x56, 0x99, 0xCA, 0x01, 0x68, + 0x02, 0xF4, 0x8D, 0x77, 0x76, 0x8D, 0x9A, 0x38, 0x31, 0x31, 0x38, 0xFD, + 0xA7, 0xFE, 0x81, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, + 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0xD5, + 0x56, 0x99, 0xC9, 0x73, 0x73, 0xC9, 0x99, 0x56, 0x56, 0x99, 0xC9, 0x73, + 0x73, 0xC9, 0x99, 0x56, 0x00, 0x05, 0x00, 0x3E, 0x03, 0xBA, 0x04, 0x96, + 0x05, 0xD2, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x12, 0x00, 0x16, + 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x21, 0x11, 0x33, + 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, + 0x15, 0x03, 0x56, 0xDF, 0x6E, 0x91, 0x92, 0x6D, 0xDE, 0xFE, 0xC0, 0x76, + 0x01, 0x52, 0x77, 0xFC, 0x4A, 0x77, 0xFE, 0xE7, 0x01, 0xBB, 0x03, 0xBA, + 0x02, 0x18, 0xFE, 0x8E, 0x01, 0x72, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, + 0x02, 0x18, 0xFD, 0xE8, 0x01, 0xE8, 0xFE, 0x18, 0x01, 0xB4, 0x64, 0x64, + 0x00, 0x04, 0x00, 0x3E, 0x03, 0xB5, 0x04, 0x84, 0x05, 0xD7, 0x00, 0x27, + 0x00, 0x2B, 0x00, 0x32, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, + 0x26, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x16, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x37, 0x11, 0x33, 0x11, 0x33, 0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x33, + 0x11, 0x33, 0x11, 0x01, 0x14, 0x65, 0x71, 0x75, 0x2D, 0x36, 0x30, 0x34, + 0x23, 0x2C, 0x3C, 0x54, 0x4F, 0x02, 0x01, 0x6F, 0x62, 0x61, 0x6C, 0x75, + 0x27, 0x30, 0x2E, 0x2E, 0x02, 0x1F, 0x24, 0x3B, 0x54, 0x5C, 0x71, 0xC7, + 0x76, 0x89, 0xDE, 0x6D, 0x91, 0x91, 0x6E, 0xDE, 0x89, 0x76, 0x03, 0xB5, + 0x5A, 0x50, 0x22, 0x24, 0x1D, 0x1E, 0x1A, 0x1F, 0x07, 0x08, 0x0D, 0x55, + 0x3C, 0x46, 0x57, 0x56, 0x53, 0x27, 0x1F, 0x1C, 0x1B, 0x19, 0x1E, 0x06, + 0x08, 0x0D, 0x56, 0x41, 0x48, 0x57, 0x05, 0x02, 0x18, 0xFD, 0xE8, 0x02, + 0x18, 0xFE, 0x8E, 0x01, 0x72, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x00, + 0x05, 0x00, 0x3E, 0x03, 0xBA, 0x05, 0x6A, 0x05, 0xD2, 0x00, 0x07, 0x00, + 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x19, 0x00, 0x00, 0x41, 0x11, 0x21, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, + 0x15, 0x17, 0x35, 0x33, 0x15, 0x17, 0x11, 0x33, 0x11, 0x33, 0x15, 0x02, + 0x57, 0x01, 0x5F, 0xE9, 0xE9, 0xFD, 0x2A, 0x77, 0xFE, 0xE7, 0x01, 0xBB, + 0xAE, 0xE0, 0x8C, 0x77, 0xE0, 0x03, 0xBA, 0x02, 0x18, 0x64, 0xFE, 0xB0, + 0x64, 0x01, 0xE8, 0xFE, 0x18, 0x01, 0xB4, 0x64, 0x64, 0xD3, 0x60, 0x60, + 0xE1, 0x02, 0x18, 0xFE, 0x4C, 0x64, 0x00, 0x05, 0x00, 0x4A, 0x03, 0xBA, + 0x05, 0xBD, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x10, 0x00, 0x14, 0x00, 0x18, + 0x00, 0x1C, 0x00, 0x00, 0x53, 0x11, 0x21, 0x15, 0x23, 0x15, 0x33, 0x15, + 0x23, 0x15, 0x33, 0x13, 0x33, 0x13, 0x23, 0x03, 0x03, 0x37, 0x35, 0x21, + 0x15, 0x17, 0x01, 0x33, 0x01, 0x21, 0x01, 0x33, 0x01, 0x4A, 0x01, 0x49, + 0xD4, 0xB7, 0xB7, 0xCE, 0xDF, 0x70, 0xDC, 0x75, 0xA0, 0x9E, 0x04, 0x01, + 0x3A, 0x70, 0x01, 0x7C, 0x85, 0xFE, 0x83, 0x01, 0x02, 0xFE, 0x83, 0x85, + 0x01, 0x7C, 0x03, 0xBA, 0x02, 0x18, 0x64, 0x8D, 0x62, 0xC5, 0x02, 0x18, + 0xFD, 0xE8, 0x01, 0x91, 0xFE, 0x6F, 0x72, 0x5C, 0x5C, 0x72, 0x02, 0x18, + 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x00, 0x05, 0x00, 0x4A, 0x03, 0xBA, + 0x04, 0xA4, 0x05, 0xD2, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x12, + 0x00, 0x27, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x21, + 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x35, 0x33, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, + 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x01, 0x48, 0xDF, 0x6E, + 0x91, 0x92, 0x6E, 0xDE, 0xFE, 0xC0, 0x75, 0x01, 0x53, 0x76, 0x5D, 0x77, + 0x42, 0x9C, 0x36, 0x41, 0x01, 0x3F, 0x37, 0x9E, 0x9E, 0x68, 0x86, 0x3E, + 0x6B, 0x45, 0x03, 0xBA, 0x02, 0x18, 0xFE, 0x8E, 0x01, 0x72, 0xFD, 0xE8, + 0x02, 0x18, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, + 0x64, 0x44, 0x35, 0x5D, 0x36, 0x44, 0x64, 0x01, 0x7D, 0x62, 0x59, 0x42, + 0x65, 0x38, 0x00, 0x04, 0x00, 0x4A, 0x03, 0xB6, 0x04, 0xC4, 0x05, 0xD5, + 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x28, 0x00, 0x00, 0x41, 0x03, + 0x33, 0x13, 0x13, 0x33, 0x03, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, + 0x11, 0x05, 0x06, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x23, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, + 0x33, 0x06, 0x06, 0x01, 0x48, 0xDF, 0x6E, 0x91, 0x92, 0x6E, 0xDE, 0xFE, + 0xC0, 0x75, 0x01, 0x53, 0x76, 0x01, 0x50, 0x7F, 0x86, 0x81, 0x81, 0x6E, + 0x79, 0x08, 0x73, 0x09, 0x3D, 0x36, 0x45, 0x45, 0x46, 0x47, 0x34, 0x3B, + 0x0A, 0x72, 0x0A, 0x72, 0x03, 0xBA, 0x02, 0x18, 0xFE, 0x8E, 0x01, 0x72, + 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x03, 0x01, + 0x87, 0x88, 0x8A, 0x86, 0x67, 0x60, 0x31, 0x31, 0x53, 0x55, 0x56, 0x56, + 0x2E, 0x31, 0x60, 0x65, 0x00, 0x02, 0x00, 0x64, 0x03, 0x23, 0x03, 0x1D, + 0x05, 0xDD, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x01, 0xC1, 0x61, 0x9E, 0x5E, 0x5E, 0x9F, 0x60, + 0x60, 0x9E, 0x5E, 0x5E, 0x9E, 0x60, 0x2D, 0x4B, 0x2D, 0x2D, 0x4B, 0x2D, + 0x2E, 0x4C, 0x2C, 0x2C, 0x4C, 0x03, 0x23, 0x5E, 0x9F, 0x5F, 0x61, 0x9E, + 0x5F, 0x5F, 0x9E, 0x61, 0x60, 0x9E, 0x5E, 0xB7, 0x2D, 0x4B, 0x2D, 0x2F, + 0x4B, 0x2C, 0x2C, 0x4B, 0x2F, 0x2D, 0x4B, 0x2D, 0x00, 0x02, 0x00, 0x37, + 0x02, 0x80, 0x03, 0x2D, 0x05, 0xEA, 0x00, 0x23, 0x00, 0x32, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x3E, 0x02, 0x35, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x11, 0x23, 0x35, 0x23, 0x06, 0x06, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x35, 0x0E, 0x02, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, + 0x5C, 0x54, 0x85, 0x4C, 0x5D, 0x99, 0x56, 0x4E, 0x5D, 0x2A, 0x4F, 0x47, + 0x47, 0x58, 0x08, 0xCB, 0x0A, 0x5F, 0xA2, 0x6C, 0x50, 0x83, 0x5F, 0x34, + 0xD1, 0x05, 0x1F, 0x77, 0x2D, 0x3E, 0x59, 0x2E, 0x0D, 0x39, 0x4C, 0x27, + 0x40, 0x5A, 0x4E, 0x02, 0x80, 0x38, 0x71, 0x54, 0x5F, 0x6A, 0x31, 0x09, + 0x08, 0x0D, 0x1B, 0x1C, 0x06, 0x34, 0x41, 0x40, 0x32, 0x08, 0x52, 0x79, + 0x42, 0x26, 0x49, 0x6B, 0x45, 0xFD, 0xC4, 0x76, 0x39, 0x4C, 0x9A, 0x2E, + 0x4D, 0x2E, 0x5B, 0x09, 0x0E, 0x0C, 0x06, 0x0A, 0x34, 0x36, 0x30, 0x37, + 0x00, 0x02, 0x00, 0x35, 0x02, 0x7C, 0x03, 0x84, 0x05, 0xEB, 0x00, 0x0F, + 0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x01, 0xDC, 0x7E, 0xBF, 0x6A, 0x6A, 0xBE, 0x7F, 0x80, 0xBE, 0x6A, 0x6A, + 0xBE, 0x80, 0x40, 0x5C, 0x32, 0x31, 0x5D, 0x40, 0x3F, 0x5D, 0x32, 0x32, + 0x5D, 0x02, 0x7C, 0x6E, 0xC6, 0x83, 0x84, 0xC5, 0x6F, 0x6F, 0xC5, 0x84, + 0x83, 0xC6, 0x6E, 0xB0, 0x41, 0x76, 0x50, 0x51, 0x76, 0x42, 0x41, 0x77, + 0x51, 0x50, 0x76, 0x41, 0x00, 0x02, 0x00, 0x38, 0x02, 0xE8, 0x01, 0x0F, + 0x07, 0x2D, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x11, 0x33, 0x11, + 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x41, 0xC4, 0x61, 0x2C, 0x40, 0x40, 0x2C, 0x2B, 0x40, 0x40, 0x02, 0xE8, + 0x03, 0x18, 0xFC, 0xE8, 0x03, 0x72, 0x3F, 0x2B, 0x2A, 0x3F, 0x3E, 0x2B, + 0x2C, 0x3E, 0x00, 0x01, 0x00, 0x40, 0x02, 0xE8, 0x02, 0xE2, 0x06, 0x08, + 0x00, 0x14, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x01, 0x02, 0xC2, 0xBA, 0x08, 0x19, 0x74, 0x53, 0x72, 0x8E, 0xC3, + 0x4A, 0x40, 0x40, 0x52, 0x04, 0xC6, 0xFE, 0x22, 0x03, 0x18, 0x82, 0x3F, + 0x4B, 0x93, 0x84, 0xFD, 0xF7, 0x01, 0xE8, 0x47, 0x4F, 0x54, 0x00, 0x02, + 0x00, 0x3E, 0x00, 0x00, 0x04, 0x19, 0x05, 0xD2, 0x00, 0x0C, 0x00, 0x10, + 0x00, 0x00, 0x41, 0x21, 0x11, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x21, 0x03, 0x11, 0x33, 0x11, 0x04, 0x0D, 0xFE, 0x7A, 0x55, + 0xA1, 0xE0, 0x73, 0x73, 0xE0, 0xA1, 0x01, 0xDB, 0xD2, 0xDE, 0x05, 0x02, + 0xFD, 0x26, 0x7A, 0xD5, 0x87, 0x86, 0xD3, 0x7B, 0xFA, 0x2E, 0x05, 0xD2, + 0xFA, 0x2E, 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, 0x04, 0x5C, 0x05, 0xD2, + 0x00, 0x0C, 0x00, 0x10, 0x00, 0x00, 0x53, 0x35, 0x21, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x11, 0x03, 0x23, 0x11, 0x33, 0x8E, + 0x01, 0xDA, 0xA2, 0xDF, 0x73, 0x73, 0xDF, 0xA2, 0x55, 0xB4, 0xDE, 0xDE, + 0x05, 0x02, 0xD0, 0x7B, 0xD3, 0x86, 0x87, 0xD5, 0x7A, 0x02, 0xDA, 0xFA, + 0xFE, 0x05, 0xD2, 0x00, 0x02, 0x00, 0x4F, 0xFE, 0xD3, 0x04, 0x0C, 0x05, + 0xE7, 0x00, 0x3E, 0x00, 0x50, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, + 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x25, + 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x17, 0x05, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, + 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x03, 0x16, 0x36, 0x36, 0x37, + 0x36, 0x26, 0x26, 0x27, 0x27, 0x26, 0x06, 0x06, 0x07, 0x06, 0x16, 0x16, + 0x17, 0x02, 0x22, 0x80, 0xBE, 0x6C, 0x04, 0xE6, 0x05, 0x66, 0x5E, 0x52, + 0x62, 0x2B, 0x44, 0x28, 0xFE, 0xF3, 0x46, 0x67, 0x37, 0x37, 0x5E, 0x3C, + 0x3E, 0x49, 0xDA, 0xB7, 0xBC, 0xD6, 0x08, 0xE5, 0x05, 0x59, 0x56, 0x4E, + 0x5A, 0x2C, 0x48, 0x2A, 0x01, 0x0D, 0x45, 0x64, 0x35, 0x39, 0x5F, 0x3A, + 0x2F, 0x3D, 0x1F, 0x69, 0xBC, 0x07, 0x1A, 0x4A, 0x3A, 0x02, 0x02, 0x19, + 0x39, 0x30, 0xFE, 0x1B, 0x47, 0x37, 0x03, 0x03, 0x1D, 0x3C, 0x2E, 0xFE, + 0xD3, 0x59, 0xA4, 0x71, 0x0A, 0x4F, 0x56, 0x44, 0x41, 0x2D, 0x3F, 0x2D, + 0x11, 0x7F, 0x20, 0x5F, 0x77, 0x41, 0x41, 0x6D, 0x45, 0x05, 0x02, 0x33, + 0x7D, 0x5C, 0x9F, 0xB7, 0xC1, 0xAB, 0x09, 0x4D, 0x55, 0x47, 0x3F, 0x2C, + 0x42, 0x2F, 0x12, 0x7E, 0x20, 0x5D, 0x73, 0x3F, 0x42, 0x6E, 0x46, 0x08, + 0x02, 0x20, 0x54, 0x61, 0x36, 0x67, 0x9A, 0x53, 0x02, 0xB6, 0x0D, 0x14, + 0x41, 0x34, 0x23, 0x41, 0x38, 0x14, 0x7A, 0x0E, 0x15, 0x40, 0x35, 0x25, + 0x44, 0x38, 0x15, 0x00, 0x03, 0x00, 0x46, 0x00, 0xC9, 0x07, 0x44, 0x04, + 0x2A, 0x00, 0x2A, 0x00, 0x3E, 0x00, 0x52, 0x00, 0x00, 0x41, 0x36, 0x16, + 0x16, 0x17, 0x16, 0x16, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x26, + 0x26, 0x27, 0x06, 0x06, 0x07, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x03, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x36, 0x36, + 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x05, 0x36, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x16, 0x16, 0x17, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x01, 0xFD, 0x57, 0x8E, 0x73, 0x2B, + 0x15, 0x22, 0x0F, 0x0E, 0x1F, 0x16, 0x42, 0xC3, 0x80, 0x7A, 0xC6, 0x76, + 0x76, 0xC6, 0x7A, 0x56, 0x8E, 0x72, 0x2C, 0x16, 0x22, 0x0E, 0x10, 0x22, + 0x14, 0x2A, 0x73, 0x8F, 0x57, 0x79, 0xC8, 0x76, 0x76, 0xC8, 0x57, 0x01, + 0x38, 0x5E, 0x39, 0x43, 0x6F, 0x31, 0x1D, 0x2A, 0x10, 0x10, 0x30, 0x17, + 0x2D, 0x73, 0x43, 0x39, 0x5E, 0x38, 0x05, 0x2E, 0x01, 0x38, 0x5D, 0x3A, + 0x44, 0x73, 0x2C, 0x1C, 0x2F, 0x0B, 0x11, 0x29, 0x1C, 0x30, 0x70, 0x43, + 0x3A, 0x5D, 0x38, 0x04, 0x29, 0x01, 0x31, 0x4E, 0x2A, 0x13, 0x25, 0x12, + 0x12, 0x22, 0x14, 0x41, 0x69, 0x75, 0xC3, 0x77, 0x78, 0xC4, 0x75, 0x31, + 0x4C, 0x29, 0x14, 0x25, 0x13, 0x13, 0x25, 0x14, 0x28, 0x4C, 0x32, 0x75, + 0xC4, 0x78, 0x77, 0xC4, 0x75, 0xFE, 0x50, 0x38, 0x5D, 0x36, 0x3A, 0x2E, + 0x1B, 0x33, 0x15, 0x14, 0x38, 0x15, 0x2C, 0x3C, 0x37, 0x5B, 0x37, 0x37, + 0x5B, 0x37, 0x3D, 0x2B, 0x1A, 0x39, 0x0E, 0x18, 0x31, 0x1A, 0x2E, 0x3A, + 0x36, 0x5D, 0x00, 0x02, 0x00, 0x8E, 0xFF, 0xEC, 0x04, 0x8B, 0x05, 0xE6, + 0x00, 0x1F, 0x00, 0x31, 0x00, 0x00, 0x41, 0x32, 0x16, 0x17, 0x2E, 0x02, + 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x04, 0x12, 0x15, + 0x15, 0x14, 0x02, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, + 0x36, 0x17, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x35, 0x2E, 0x02, 0x02, 0x6E, 0x56, 0x97, 0x38, 0x14, + 0x67, 0x92, 0x58, 0x43, 0x7B, 0x41, 0x25, 0x48, 0x8F, 0x69, 0xBE, 0x01, + 0x00, 0x83, 0x7B, 0xE7, 0xA2, 0x9C, 0xE3, 0x7A, 0x73, 0xD6, 0xBA, 0x57, + 0x70, 0x35, 0x35, 0x6C, 0x54, 0x55, 0x6E, 0x35, 0x0A, 0x38, 0x63, 0x04, + 0x08, 0x3D, 0x39, 0x79, 0xAB, 0x5A, 0x1B, 0x19, 0xC1, 0x22, 0x27, 0xC6, + 0xFE, 0x97, 0xF6, 0x3A, 0xC4, 0xFE, 0xD4, 0xAB, 0x89, 0xF0, 0x99, 0x16, + 0x93, 0xE1, 0x80, 0xD3, 0x4E, 0x87, 0x56, 0x15, 0x57, 0x8D, 0x52, 0x60, + 0xAA, 0x6E, 0x63, 0x1D, 0x49, 0x35, 0x00, 0x03, 0x00, 0x6C, 0xFE, 0xF2, + 0x05, 0x0B, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x10, 0x00, 0x00, + 0x45, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0x01, 0x15, 0x01, 0x23, + 0x35, 0x01, 0x01, 0x35, 0x33, 0x05, 0x0B, 0xFB, 0xC7, 0x04, 0x08, 0xFB, + 0xF7, 0x03, 0x03, 0xFD, 0x4F, 0xB7, 0x02, 0x60, 0xFD, 0xA0, 0xB7, 0x3B, + 0xD3, 0xD3, 0x06, 0x0D, 0xD5, 0xD5, 0xFC, 0xB3, 0x3F, 0xFC, 0xAC, 0x96, + 0x02, 0xDD, 0x02, 0xD4, 0x99, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0x0F, 0x05, + 0x24, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x21, + 0x11, 0x21, 0x11, 0x05, 0x24, 0xFE, 0xFD, 0xFD, 0x98, 0xFE, 0xFD, 0x05, + 0xD2, 0xF9, 0x3D, 0x05, 0xE2, 0xFA, 0x1E, 0x06, 0xC3, 0x00, 0x01, 0xFF, + 0xC3, 0xFE, 0x1D, 0x02, 0xA8, 0x06, 0x19, 0x00, 0x1B, 0x00, 0x00, 0x53, + 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x11, 0x14, 0x06, 0x45, 0x21, 0x42, 0x1F, 0x03, 0x17, 0x33, 0x17, 0x43, + 0x3E, 0xBB, 0xB3, 0x25, 0x49, 0x24, 0x06, 0x1A, 0x3B, 0x1C, 0x47, 0x43, + 0xB4, 0xFE, 0x1D, 0x02, 0x02, 0xD3, 0x01, 0x01, 0x48, 0x4D, 0x05, 0x1B, + 0xB7, 0xC0, 0x03, 0x02, 0xD2, 0x01, 0x01, 0x50, 0x57, 0xFA, 0xE2, 0xAD, + 0xB5, 0x00, 0x03, 0x00, 0x5D, 0x00, 0x00, 0x04, 0xC8, 0x05, 0xD2, 0x00, + 0x04, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x65, 0x01, 0x33, 0x01, 0x23, + 0x03, 0x13, 0x17, 0x23, 0x01, 0x07, 0x35, 0x21, 0x15, 0x02, 0x59, 0x01, + 0x8B, 0xE4, 0xFE, 0x1B, 0xAA, 0x64, 0xB5, 0x1D, 0x9E, 0xFE, 0xDF, 0x8B, + 0x01, 0x6B, 0xE6, 0x04, 0xEC, 0xFA, 0x2E, 0x02, 0xFF, 0xFD, 0xDC, 0xDB, + 0x02, 0xFF, 0xD4, 0xD4, 0xD4, 0x00, 0x03, 0x00, 0x4C, 0xFF, 0xCE, 0x05, + 0x0C, 0x04, 0x8E, 0x00, 0x03, 0x00, 0x17, 0x00, 0x28, 0x00, 0x00, 0x57, + 0x27, 0x01, 0x17, 0x01, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, + 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x17, 0x06, 0x16, 0x16, 0x9A, + 0x4E, 0x04, 0x71, 0x4F, 0xFD, 0xA3, 0x78, 0xD2, 0x9E, 0x59, 0x59, 0x9E, + 0xD2, 0x78, 0x76, 0xCF, 0x9F, 0x59, 0x5A, 0x9E, 0xCF, 0x77, 0x5C, 0x98, + 0x5B, 0x5C, 0x97, 0x5C, 0x46, 0x7B, 0x5D, 0x34, 0x01, 0x01, 0x5A, 0x9A, + 0x32, 0x50, 0x04, 0x70, 0x4C, 0xFB, 0xAC, 0x5A, 0x9E, 0xD1, 0x77, 0x77, + 0xCF, 0x9F, 0x59, 0x59, 0x9F, 0xCF, 0x77, 0x77, 0xD1, 0x9E, 0x5A, 0xF0, + 0x5B, 0x98, 0x5D, 0x5C, 0x99, 0x5B, 0x34, 0x5D, 0x79, 0x46, 0x5C, 0x99, + 0x5B, 0x00, 0x02, 0x00, 0x39, 0x00, 0x00, 0x04, 0x45, 0x05, 0xD2, 0x00, + 0x07, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x01, 0x33, 0x07, 0x01, 0x01, 0x17, + 0x23, 0x37, 0x01, 0x01, 0x27, 0x33, 0x01, 0x01, 0x23, 0x39, 0x01, 0x97, + 0xBE, 0x2C, 0xFE, 0xF5, 0x01, 0x10, 0x20, 0xB6, 0x48, 0x01, 0x0E, 0xFE, + 0xF0, 0x20, 0xB5, 0x01, 0x99, 0xFE, 0x6A, 0xB7, 0x02, 0xE8, 0x02, 0xEA, + 0xC6, 0xFD, 0xDC, 0xFD, 0xD7, 0xBF, 0xBF, 0x02, 0x29, 0x02, 0x24, 0xC6, + 0xFD, 0x16, 0xFD, 0x18, 0x00, 0x02, 0x00, 0x40, 0x03, 0x5F, 0x02, 0xA8, + 0x05, 0xC6, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, + 0x35, 0x23, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x06, 0x06, 0x07, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, 0x1F, 0x62, 0x7D, 0x43, 0x73, 0x47, + 0x55, 0x4A, 0x32, 0x2D, 0x2D, 0x38, 0x06, 0xBD, 0x08, 0x49, 0x82, 0x5A, + 0x5B, 0x83, 0x48, 0xC6, 0x04, 0x1B, 0x5D, 0x0A, 0x3A, 0x48, 0x15, 0x45, + 0x20, 0x2C, 0x36, 0x32, 0x03, 0x5F, 0x57, 0x58, 0x42, 0x4D, 0x25, 0x05, + 0x06, 0x10, 0x1C, 0x03, 0x1B, 0x1E, 0x1F, 0x1B, 0x06, 0x3C, 0x58, 0x31, + 0x31, 0x5B, 0x40, 0xFE, 0x6F, 0x52, 0x2F, 0x2D, 0x84, 0x32, 0x28, 0x36, + 0x07, 0x0B, 0x04, 0x07, 0x20, 0x1D, 0x1A, 0x1C, 0x00, 0x02, 0x00, 0x5B, + 0x03, 0x5E, 0x02, 0xFC, 0x06, 0xA0, 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x11, 0x33, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0xE6, 0x43, + 0x62, 0x19, 0x03, 0xCA, 0xCC, 0x03, 0x1C, 0x5E, 0x44, 0x4F, 0x7D, 0x48, + 0x47, 0x7D, 0x8F, 0x3D, 0x45, 0x45, 0x3D, 0x3E, 0x4B, 0x4B, 0x03, 0x5E, + 0x35, 0x32, 0x5C, 0x03, 0x37, 0xFE, 0xC5, 0x2E, 0x33, 0x4A, 0x8A, 0x60, + 0x60, 0x8A, 0x4A, 0xA0, 0x50, 0x44, 0x45, 0x4E, 0x4F, 0x44, 0x43, 0x51, + 0x00, 0x01, 0x00, 0x40, 0x03, 0x5C, 0x02, 0xC9, 0x05, 0xC7, 0x00, 0x1F, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x90, 0x66, 0x97, + 0x53, 0x53, 0x97, 0x66, 0x59, 0x87, 0x52, 0x07, 0xC3, 0x05, 0x1D, 0x30, + 0x21, 0x3E, 0x46, 0x46, 0x3E, 0x22, 0x30, 0x1D, 0x04, 0xC3, 0x05, 0x51, + 0x89, 0x03, 0x5C, 0x4E, 0x8B, 0x5C, 0x5D, 0x8B, 0x4E, 0x3D, 0x6D, 0x47, + 0x0A, 0x1D, 0x29, 0x15, 0x4E, 0x48, 0x46, 0x50, 0x17, 0x2B, 0x1B, 0x09, + 0x48, 0x6E, 0x3D, 0x00, 0x02, 0x00, 0x40, 0x03, 0x5E, 0x02, 0xE1, 0x06, + 0xA0, 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x14, 0x16, 0x01, 0x56, 0x52, 0x7E, 0x46, 0x48, 0x7D, 0x4F, + 0x45, 0x5E, 0x1B, 0x02, 0xCD, 0xCA, 0x03, 0x19, 0x62, 0x06, 0x3E, 0x4B, + 0x4B, 0x3E, 0x3E, 0x45, 0x46, 0x03, 0x5E, 0x4A, 0x8A, 0x60, 0x60, 0x8A, + 0x4A, 0x33, 0x2E, 0x01, 0x3B, 0xFC, 0xC9, 0x5C, 0x32, 0x35, 0xA0, 0x51, + 0x43, 0x44, 0x4F, 0x4E, 0x45, 0x45, 0x4F, 0x00, 0x01, 0x00, 0x40, 0x03, + 0x5C, 0x02, 0xD0, 0x05, 0xC7, 0x00, 0x22, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x21, + 0x35, 0x21, 0x07, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x8F, 0x65, 0x97, + 0x53, 0x53, 0x95, 0x61, 0x61, 0x93, 0x53, 0xFD, 0xB5, 0x01, 0xEA, 0x5E, + 0x46, 0x3E, 0x2A, 0x3C, 0x1F, 0x4B, 0x42, 0x31, 0x3F, 0x0C, 0xB7, 0x14, + 0xAA, 0x03, 0x5C, 0x4E, 0x8B, 0x5C, 0x5B, 0x8B, 0x50, 0x4D, 0x89, 0x5C, + 0x35, 0x76, 0x18, 0x36, 0x3E, 0x1C, 0x33, 0x24, 0x58, 0x39, 0x40, 0x1F, + 0x1A, 0x09, 0x56, 0x6C, 0x00, 0x02, 0x00, 0x26, 0x03, 0x69, 0x01, 0xF7, + 0x06, 0xAC, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, + 0x13, 0x15, 0x21, 0x35, 0x9B, 0x73, 0x6E, 0x26, 0x46, 0x0F, 0x0B, 0x09, + 0x27, 0x0F, 0x26, 0x1F, 0x86, 0xFE, 0x38, 0x03, 0x69, 0x02, 0x82, 0x62, + 0x5F, 0x04, 0x02, 0x9A, 0x01, 0x01, 0x1B, 0x1E, 0xFD, 0x94, 0x02, 0x52, + 0x9B, 0x9B, 0x00, 0x02, 0x00, 0x40, 0x02, 0x79, 0x02, 0xE1, 0x05, 0xC6, + 0x00, 0x22, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x37, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x23, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x35, + 0x33, 0x11, 0x14, 0x06, 0x06, 0x03, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x96, 0x5E, 0x84, 0x4C, 0x0B, 0xBF, + 0x09, 0x41, 0x2F, 0x3F, 0x43, 0x06, 0x19, 0x61, 0x41, 0x52, 0x7D, 0x47, + 0x48, 0x7D, 0x4F, 0x45, 0x60, 0x1B, 0x02, 0xCB, 0x53, 0x95, 0x66, 0x3E, + 0x4B, 0x4B, 0x3E, 0x3D, 0x46, 0x46, 0x02, 0x79, 0x30, 0x54, 0x36, 0x0A, + 0x1B, 0x1B, 0x35, 0x37, 0x5E, 0x33, 0x2F, 0x48, 0x84, 0x5B, 0x5E, 0x88, + 0x4A, 0x35, 0x2E, 0x58, 0xFD, 0xCC, 0x5D, 0x78, 0x39, 0x01, 0x91, 0x4D, + 0x42, 0x42, 0x4D, 0x4C, 0x43, 0x43, 0x4C, 0x00, 0x01, 0x00, 0x5B, 0x03, + 0x69, 0x02, 0xD8, 0x06, 0xA0, 0x00, 0x15, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x11, 0x33, 0x11, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x01, 0x27, 0xCC, 0xCB, 0x1B, + 0x1E, 0x71, 0x59, 0x46, 0x67, 0x38, 0xCD, 0x3A, 0x35, 0x34, 0x41, 0x04, + 0xAD, 0xFE, 0xBC, 0x03, 0x37, 0xFE, 0x7D, 0x4E, 0x5B, 0x38, 0x68, 0x46, + 0xFE, 0x89, 0x01, 0x4C, 0x30, 0x35, 0x36, 0x00, 0x02, 0x00, 0x55, 0x03, + 0x69, 0x01, 0x2E, 0x06, 0xC0, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, + 0x11, 0x33, 0x11, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x5B, 0xCD, 0x67, 0x2D, 0x3F, 0x40, 0x2C, 0x2D, 0x40, + 0x3F, 0x03, 0x69, 0x02, 0x52, 0xFD, 0xAE, 0x02, 0x8E, 0x3B, 0x2A, 0x2A, + 0x3A, 0x3A, 0x2A, 0x2A, 0x3B, 0x00, 0x02, 0xFF, 0xF0, 0x02, 0x82, 0x01, + 0x2F, 0x06, 0xC0, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x00, 0x53, 0x33, 0x11, + 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x13, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x5C, 0xCC, + 0x39, 0x6D, 0x4F, 0x43, 0x25, 0x26, 0x21, 0x66, 0x2E, 0x3F, 0x3F, 0x2E, + 0x2D, 0x40, 0x40, 0x05, 0xBB, 0xFD, 0x91, 0x45, 0x5A, 0x2B, 0x9C, 0x1D, + 0x20, 0x02, 0x9C, 0x3B, 0x2A, 0x2A, 0x3A, 0x3A, 0x2A, 0x2A, 0x3B, 0x00, + 0x03, 0x00, 0x5B, 0x03, 0x69, 0x02, 0xEF, 0x06, 0xA0, 0x00, 0x06, 0x00, + 0x0A, 0x00, 0x0E, 0x00, 0x00, 0x41, 0x35, 0x33, 0x37, 0x33, 0x01, 0x23, + 0x01, 0x11, 0x33, 0x11, 0x33, 0x27, 0x37, 0x01, 0x01, 0x13, 0x19, 0xCD, + 0xEB, 0xFE, 0xE0, 0x34, 0xFE, 0xCB, 0xCC, 0xDB, 0xBB, 0x86, 0x01, 0x22, + 0x03, 0xFB, 0xF3, 0xCD, 0xFE, 0xCA, 0xFE, 0xE4, 0x03, 0x37, 0xFC, 0xC9, + 0xEF, 0x90, 0xFE, 0x81, 0x00, 0x01, 0x00, 0x5B, 0x03, 0x69, 0x01, 0x27, + 0x06, 0xA0, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x27, + 0xCC, 0x06, 0xA0, 0xFC, 0xC9, 0x03, 0x37, 0x00, 0x01, 0x00, 0x5B, 0x03, + 0x69, 0x04, 0x4D, 0x05, 0xC6, 0x00, 0x26, 0x00, 0x00, 0x53, 0x11, 0x33, + 0x17, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x5B, + 0xC2, 0x04, 0x0C, 0x19, 0x74, 0x44, 0x31, 0x50, 0x36, 0x0A, 0x14, 0x0D, + 0x42, 0x5C, 0x34, 0x60, 0x7B, 0xCD, 0x38, 0x2C, 0x2E, 0x38, 0xC4, 0x37, + 0x2C, 0x2D, 0x3B, 0x03, 0x69, 0x02, 0x52, 0x92, 0x53, 0x4A, 0x23, 0x48, + 0x37, 0x37, 0x48, 0x23, 0x6F, 0x61, 0xFE, 0x73, 0x01, 0x5D, 0x2B, 0x30, + 0x32, 0x2A, 0xFE, 0xA4, 0x01, 0x5F, 0x29, 0x30, 0x32, 0x2D, 0xFE, 0xA7, + 0x00, 0x01, 0x00, 0x5B, 0x03, 0x69, 0x02, 0xD8, 0x05, 0xC6, 0x00, 0x15, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x17, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x01, 0x27, 0xCC, 0xC7, 0x01, 0x18, 0x1E, 0x71, 0x59, 0x46, 0x67, 0x38, + 0xCD, 0x3A, 0x35, 0x34, 0x41, 0x04, 0xAD, 0xFE, 0xBC, 0x02, 0x52, 0x9E, + 0x4E, 0x5B, 0x38, 0x68, 0x46, 0xFE, 0x89, 0x01, 0x4C, 0x30, 0x35, 0x36, + 0x00, 0x02, 0x00, 0x40, 0x03, 0x5C, 0x02, 0xE6, 0x05, 0xC7, 0x00, 0x0F, + 0x00, 0x1D, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, 0x93, + 0x66, 0x98, 0x55, 0x55, 0x98, 0x66, 0x67, 0x98, 0x54, 0x54, 0x98, 0x67, + 0x3C, 0x48, 0x22, 0x3A, 0x28, 0x27, 0x3C, 0x21, 0x49, 0x03, 0x5C, 0x4D, + 0x8B, 0x5D, 0x5E, 0x8A, 0x4E, 0x4E, 0x8A, 0x5E, 0x5D, 0x8B, 0x4D, 0x9F, + 0x4F, 0x47, 0x31, 0x42, 0x23, 0x23, 0x43, 0x30, 0x47, 0x4F, 0x00, 0x02, + 0x00, 0x5B, 0x02, 0x82, 0x02, 0xFC, 0x05, 0xC6, 0x00, 0x14, 0x00, 0x20, + 0x00, 0x00, 0x53, 0x11, 0x33, 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x11, 0x13, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x5B, + 0xCA, 0x04, 0x1B, 0x60, 0x44, 0x4F, 0x7D, 0x48, 0x47, 0x7D, 0x52, 0x43, + 0x5F, 0x19, 0x04, 0x82, 0x3D, 0x45, 0x45, 0x3D, 0x3E, 0x4B, 0x4B, 0x02, + 0x82, 0x03, 0x39, 0x54, 0x2D, 0x32, 0x4A, 0x8A, 0x60, 0x60, 0x8A, 0x4A, + 0x35, 0x30, 0xFE, 0xBF, 0x01, 0x7C, 0x50, 0x44, 0x45, 0x4E, 0x4F, 0x44, + 0x43, 0x51, 0x00, 0x02, 0x00, 0x40, 0x02, 0x82, 0x02, 0xE1, 0x05, 0xC6, + 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, 0x41, 0x23, 0x11, 0x23, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x33, 0x35, 0x33, 0x01, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x02, 0xE1, 0xCD, 0x03, 0x19, 0x5E, 0x44, 0x52, 0x7E, + 0x46, 0x48, 0x7D, 0x4F, 0x46, 0x5F, 0x1A, 0x04, 0xCA, 0xFE, 0xB2, 0x3E, + 0x4B, 0x4B, 0x3E, 0x3E, 0x45, 0x46, 0x02, 0x82, 0x01, 0x41, 0x2F, 0x36, + 0x4A, 0x8A, 0x60, 0x60, 0x8A, 0x4A, 0x33, 0x2C, 0x54, 0xFE, 0x43, 0x51, + 0x43, 0x44, 0x4F, 0x4E, 0x45, 0x45, 0x4F, 0x00, 0x01, 0x00, 0x5B, 0x03, + 0x69, 0x01, 0xFC, 0x05, 0xBE, 0x00, 0x12, 0x00, 0x00, 0x53, 0x11, 0x33, + 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x5B, 0xC6, 0x03, 0x13, 0x50, 0x3D, 0x13, 0x16, + 0x0F, 0x08, 0x32, 0x17, 0x3A, 0x4A, 0x03, 0x69, 0x02, 0x52, 0x6B, 0x3B, + 0x33, 0x02, 0x01, 0xAA, 0x02, 0x02, 0x42, 0x3B, 0xFE, 0xD1, 0x00, 0x01, + 0x00, 0x3E, 0x03, 0x5B, 0x02, 0xA6, 0x05, 0xC6, 0x00, 0x2A, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0x75, 0x80, 0xA8, 0x0F, 0xBB, 0x06, + 0x1F, 0x34, 0x21, 0x2F, 0x36, 0x29, 0x28, 0x76, 0x63, 0x62, 0x9C, 0x86, + 0x80, 0x99, 0x0B, 0xAE, 0x03, 0x20, 0x30, 0x1E, 0x28, 0x34, 0x25, 0x26, + 0x80, 0x66, 0x5E, 0x4D, 0x8A, 0x03, 0x5B, 0x66, 0x58, 0x0F, 0x13, 0x1E, + 0x11, 0x19, 0x14, 0x11, 0x18, 0x06, 0x14, 0x10, 0x59, 0x45, 0x5A, 0x68, + 0x62, 0x55, 0x12, 0x12, 0x1C, 0x11, 0x19, 0x14, 0x11, 0x18, 0x06, 0x15, + 0x10, 0x51, 0x41, 0x3D, 0x5D, 0x34, 0x00, 0x02, 0x00, 0x26, 0x03, 0x66, + 0x01, 0xE3, 0x06, 0x56, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x53, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x33, 0x17, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x01, 0x15, 0x21, 0x35, 0x8F, 0xCC, 0x1B, 0x21, 0x0F, 0x29, + 0x0B, 0x09, 0x15, 0x41, 0x22, 0x6E, 0x6E, 0x01, 0x4E, 0xFE, 0x49, 0x06, + 0x56, 0xFD, 0xDB, 0x1A, 0x14, 0x02, 0x9A, 0x02, 0x03, 0x53, 0x5A, 0x01, + 0xA8, 0x9B, 0x9B, 0x00, 0x01, 0x00, 0x5B, 0x03, 0x5E, 0x02, 0xD8, 0x05, + 0xBB, 0x00, 0x15, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x23, 0x27, + 0x33, 0x06, 0x06, 0x01, 0x40, 0x47, 0x66, 0x38, 0xCC, 0x3B, 0x35, 0x34, + 0x40, 0xCD, 0xC7, 0x02, 0x19, 0x1E, 0x71, 0x03, 0x5E, 0x38, 0x67, 0x47, + 0x01, 0x77, 0xFE, 0xB4, 0x30, 0x35, 0x36, 0x36, 0x01, 0x45, 0xFD, 0xAE, + 0x9D, 0x4D, 0x5B, 0x00, 0x01, 0x00, 0x22, 0x03, 0x69, 0x02, 0xEE, 0x05, + 0xBB, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x16, 0x16, 0x17, + 0x23, 0x36, 0x36, 0x37, 0x13, 0x33, 0x03, 0x01, 0x13, 0xF1, 0xD7, 0x64, + 0x14, 0x20, 0x10, 0x2C, 0x10, 0x1F, 0x14, 0x61, 0xD5, 0xF2, 0x03, 0x69, + 0x02, 0x52, 0xFE, 0xF2, 0x38, 0x75, 0x41, 0x42, 0x74, 0x38, 0x01, 0x0E, + 0xFD, 0xAE, 0x00, 0x01, 0x00, 0x21, 0x03, 0x69, 0x04, 0x3C, 0x05, 0xBB, + 0x00, 0x23, 0x00, 0x00, 0x53, 0x03, 0x33, 0x17, 0x16, 0x16, 0x17, 0x23, + 0x36, 0x36, 0x37, 0x37, 0x33, 0x17, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, + 0x37, 0x37, 0x33, 0x03, 0x23, 0x27, 0x2E, 0x02, 0x27, 0x33, 0x0E, 0x02, + 0x07, 0x07, 0xE9, 0xC8, 0xD7, 0x34, 0x12, 0x20, 0x0E, 0x19, 0x11, 0x23, + 0x14, 0x38, 0xB6, 0x38, 0x14, 0x23, 0x11, 0x19, 0x0B, 0x21, 0x12, 0x34, + 0xDA, 0xC9, 0xD2, 0x49, 0x0C, 0x14, 0x12, 0x0A, 0x24, 0x09, 0x14, 0x14, + 0x0B, 0x49, 0x03, 0x69, 0x02, 0x52, 0xB4, 0x3E, 0x91, 0x4B, 0x4D, 0x8C, + 0x41, 0xB4, 0xB4, 0x40, 0x8E, 0x4C, 0x3F, 0x9A, 0x41, 0xB4, 0xFD, 0xAE, + 0xD0, 0x23, 0x47, 0x47, 0x22, 0x20, 0x4B, 0x49, 0x1F, 0xD0, 0x00, 0x01, + 0x00, 0x24, 0x03, 0x69, 0x02, 0xD1, 0x05, 0xBB, 0x00, 0x1C, 0x00, 0x00, + 0x53, 0x01, 0x07, 0x03, 0x33, 0x17, 0x16, 0x16, 0x17, 0x23, 0x3E, 0x02, + 0x37, 0x37, 0x33, 0x03, 0x37, 0x13, 0x23, 0x27, 0x26, 0x26, 0x27, 0x33, + 0x06, 0x06, 0x07, 0x07, 0x24, 0x01, 0x04, 0x03, 0xF2, 0xDC, 0x32, 0x1A, + 0x2C, 0x16, 0x40, 0x10, 0x1C, 0x1F, 0x13, 0x34, 0xD9, 0xF9, 0x03, 0xFF, + 0xDC, 0x3A, 0x1B, 0x2B, 0x17, 0x39, 0x1C, 0x25, 0x1D, 0x3B, 0x03, 0x69, + 0x01, 0x64, 0x66, 0x01, 0x54, 0x45, 0x25, 0x53, 0x29, 0x1E, 0x34, 0x34, + 0x1B, 0x45, 0xFE, 0xAC, 0x66, 0xFE, 0x9C, 0x4D, 0x27, 0x4E, 0x29, 0x31, + 0x45, 0x28, 0x4D, 0x00, 0x01, 0x00, 0x22, 0x02, 0x81, 0x02, 0xEF, 0x05, + 0xBB, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x37, 0x33, 0x16, 0x3E, 0x02, 0x37, + 0x37, 0x03, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, + 0x33, 0x01, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x66, 0x0F, 0x45, 0x14, 0x1D, + 0x16, 0x10, 0x05, 0x07, 0xFB, 0xD7, 0x65, 0x15, 0x1E, 0x10, 0x34, 0x0F, + 0x22, 0x15, 0x67, 0xD5, 0xFE, 0xE5, 0x16, 0x3F, 0x56, 0x3B, 0x23, 0x46, + 0x02, 0x87, 0x9A, 0x04, 0x04, 0x0E, 0x16, 0x0F, 0x15, 0x02, 0x52, 0xFE, + 0xF2, 0x38, 0x76, 0x40, 0x41, 0x75, 0x38, 0x01, 0x0E, 0xFD, 0x64, 0x35, + 0x47, 0x22, 0x03, 0x00, 0x01, 0x00, 0x5B, 0x03, 0x69, 0x02, 0x8E, 0x05, + 0xBB, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, + 0x15, 0x01, 0x15, 0x21, 0x15, 0x5B, 0x01, 0x3B, 0xFE, 0xC9, 0x02, 0x28, + 0xFE, 0xD1, 0x01, 0x36, 0x03, 0x69, 0x7F, 0x01, 0x33, 0x02, 0x9E, 0x89, + 0xFE, 0xD6, 0x02, 0x9D, 0x00, 0x02, 0x00, 0x43, 0x03, 0x5C, 0x03, 0x3D, + 0x06, 0xAC, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0xC0, 0xB3, 0xCA, + 0xCA, 0xB3, 0xB3, 0xCA, 0xC9, 0xB4, 0x53, 0x5D, 0x5D, 0x53, 0x52, 0x5E, + 0x5D, 0x03, 0x5C, 0xE2, 0xC5, 0xC7, 0xE2, 0xE2, 0xC7, 0xC5, 0xE2, 0xA7, + 0x87, 0x79, 0x7A, 0x89, 0x89, 0x7A, 0x79, 0x87, 0x00, 0x03, 0x00, 0x43, + 0x03, 0x5C, 0x03, 0x3D, 0x06, 0xAC, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x07, 0x27, 0x01, 0x17, 0x01, 0xC0, 0xB3, 0xCA, 0xCA, 0xB3, + 0xB3, 0xCA, 0xC9, 0xB4, 0x53, 0x5D, 0x5D, 0x53, 0x52, 0x5E, 0x5D, 0x2F, + 0x50, 0x01, 0x53, 0x52, 0x03, 0x5C, 0xE2, 0xC5, 0xC7, 0xE2, 0xE2, 0xC7, + 0xC5, 0xE2, 0xA7, 0x87, 0x79, 0x7A, 0x89, 0x89, 0x7A, 0x79, 0x87, 0x41, + 0x24, 0x02, 0x61, 0x22, 0x00, 0x01, 0x00, 0x3D, 0x03, 0x69, 0x01, 0xDE, + 0x06, 0xA0, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x23, 0x07, + 0x35, 0x37, 0x01, 0xDE, 0xCE, 0x02, 0xD1, 0xDA, 0x06, 0xA0, 0xFC, 0xC9, + 0x02, 0x7C, 0x76, 0xB3, 0x7E, 0x00, 0x01, 0x00, 0x51, 0x03, 0x69, 0x01, + 0xDA, 0x06, 0x9F, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x11, 0x17, 0x0E, 0x02, + 0x23, 0x35, 0x33, 0x32, 0x36, 0x37, 0x33, 0x11, 0x01, 0x0C, 0x0C, 0x1B, + 0x3F, 0x46, 0x27, 0x1E, 0x4A, 0x62, 0x0B, 0xB4, 0x03, 0x69, 0x02, 0x32, + 0x0B, 0x08, 0x0A, 0x04, 0x9D, 0x44, 0x44, 0xFC, 0xCA, 0x00, 0x01, 0x00, + 0x4B, 0x03, 0x69, 0x02, 0xF1, 0x06, 0xAC, 0x00, 0x1C, 0x00, 0x00, 0x53, + 0x35, 0x25, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x07, 0x15, + 0x21, 0x15, 0x52, 0x01, 0x50, 0x24, 0x3A, 0x22, 0x4A, 0x3B, 0x41, 0x4D, + 0xC4, 0xB8, 0x9A, 0x93, 0xBA, 0x19, 0x35, 0x53, 0x3A, 0x9C, 0x01, 0x7E, + 0x03, 0x69, 0x96, 0xFD, 0x1B, 0x30, 0x35, 0x21, 0x31, 0x3A, 0x46, 0x3F, + 0x89, 0xA0, 0x8B, 0x76, 0x2C, 0x4B, 0x46, 0x46, 0x27, 0x6F, 0x02, 0xA7, + 0x00, 0x01, 0x00, 0x4D, 0x03, 0x5C, 0x03, 0x16, 0x06, 0xAC, 0x00, 0x2D, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x01, 0xB0, 0x72, 0x9E, 0x53, 0xCC, 0x51, 0x45, 0x40, 0x52, 0x58, 0x49, + 0x56, 0x56, 0x43, 0x4F, 0x48, 0x3A, 0x3D, 0x4C, 0x01, 0xC7, 0x54, 0x98, + 0x65, 0x60, 0x94, 0x54, 0x63, 0x4F, 0x66, 0x6A, 0x5B, 0xA1, 0x03, 0x5C, + 0x4E, 0x82, 0x4D, 0x39, 0x41, 0x37, 0x2C, 0x2C, 0x35, 0x8F, 0x32, 0x2A, + 0x2B, 0x35, 0x39, 0x2E, 0x4B, 0x76, 0x44, 0x3C, 0x68, 0x44, 0x47, 0x5C, + 0x0A, 0x03, 0x0A, 0x6E, 0x4A, 0x47, 0x6F, 0x40, 0x00, 0x01, 0x00, 0x4D, + 0x03, 0x5C, 0x03, 0x12, 0x06, 0xA0, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x26, 0x35, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x23, 0x35, 0x37, 0x35, 0x21, 0x35, 0x21, 0x15, 0x05, 0x35, 0x36, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0xB0, 0x70, 0x9F, 0x54, 0xCC, + 0x02, 0x52, 0x42, 0x40, 0x50, 0x55, 0x4C, 0x7A, 0xCC, 0xFE, 0x8D, 0x02, + 0x6B, 0xFE, 0xD9, 0x6D, 0x96, 0x4E, 0x5A, 0x9F, 0x03, 0x5C, 0x4E, 0x82, + 0x4D, 0x37, 0x43, 0x40, 0x34, 0x31, 0x3C, 0x79, 0x9D, 0x02, 0xA8, 0x9D, + 0xE7, 0x2A, 0x0C, 0x36, 0x6D, 0x47, 0x4F, 0x79, 0x44, 0x00, 0x02, 0x00, + 0x48, 0x03, 0x69, 0x03, 0x3F, 0x06, 0xA0, 0x00, 0x09, 0x00, 0x0F, 0x00, + 0x00, 0x53, 0x35, 0x01, 0x33, 0x15, 0x23, 0x03, 0x15, 0x21, 0x15, 0x05, + 0x35, 0x37, 0x11, 0x33, 0x11, 0x48, 0x01, 0x82, 0x89, 0x4D, 0xF4, 0x02, + 0x2D, 0xFE, 0xC8, 0x02, 0xC6, 0x04, 0x05, 0xA0, 0x01, 0xFB, 0xCA, 0xFE, + 0xD0, 0x03, 0x9E, 0x9C, 0xCB, 0x48, 0x02, 0x24, 0xFC, 0xC9, 0x00, 0x02, + 0x00, 0x48, 0x03, 0x69, 0x03, 0x3F, 0x06, 0xA0, 0x00, 0x07, 0x00, 0x0D, + 0x00, 0x00, 0x53, 0x35, 0x01, 0x33, 0x01, 0x15, 0x21, 0x15, 0x05, 0x35, + 0x37, 0x35, 0x33, 0x11, 0x48, 0x01, 0x75, 0xCE, 0xFE, 0x90, 0x02, 0x24, + 0xFE, 0xC8, 0x03, 0xC1, 0x04, 0x05, 0xA0, 0x01, 0xFB, 0xFE, 0x06, 0x03, + 0x9E, 0x9C, 0xCB, 0x48, 0xEE, 0xFD, 0xFF, 0x00, 0x01, 0x00, 0x47, 0x03, + 0x5D, 0x02, 0xFD, 0x06, 0xA0, 0x00, 0x21, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, 0x07, 0x33, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x01, 0xA1, 0x64, 0x99, 0x59, + 0x04, 0xC8, 0x02, 0x54, 0x3D, 0x41, 0x52, 0x52, 0x40, 0x33, 0x4B, 0x10, + 0xBE, 0x1F, 0x02, 0x51, 0xFE, 0x65, 0x11, 0x02, 0x1E, 0x5D, 0x3A, 0x52, + 0x88, 0x51, 0xBE, 0x03, 0x5D, 0x42, 0x7A, 0x51, 0x30, 0x3F, 0x48, 0x39, + 0x3A, 0x49, 0x26, 0x21, 0x0B, 0x01, 0xDD, 0xA8, 0xA3, 0x1E, 0x23, 0x49, + 0x7C, 0x4F, 0x80, 0xA5, 0x00, 0x02, 0x00, 0x43, 0x03, 0x5C, 0x03, 0x13, + 0x06, 0xAC, 0x00, 0x1F, 0x00, 0x2C, 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x06, 0x16, 0x01, 0xB8, 0x54, 0x89, 0x63, 0x35, 0x59, 0xAA, + 0x77, 0x5F, 0x8F, 0x55, 0x08, 0xC7, 0x09, 0x48, 0x36, 0x3F, 0x4E, 0x23, + 0x02, 0x20, 0x72, 0x49, 0x57, 0x88, 0x4D, 0xC2, 0x9B, 0x3F, 0x55, 0x54, + 0x3F, 0x29, 0x43, 0x27, 0x01, 0x56, 0x03, 0x5C, 0x35, 0x67, 0x9A, 0x65, + 0x87, 0xC4, 0x6A, 0x43, 0x71, 0x46, 0x29, 0x2D, 0x3C, 0x65, 0x3D, 0x30, + 0x33, 0x47, 0x7A, 0x4F, 0x81, 0xA0, 0xA1, 0x47, 0x37, 0x35, 0x47, 0x20, + 0x37, 0x24, 0x37, 0x48, 0x00, 0x02, 0x00, 0x43, 0x03, 0x5D, 0x02, 0xF4, + 0x06, 0xA0, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x37, 0x13, 0x33, 0x01, 0x23, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0xA0, 0x63, 0x9E, 0x5C, 0x3D, + 0x36, 0xD8, 0xDC, 0xFE, 0xE3, 0x29, 0x0C, 0x2C, 0x43, 0x2E, 0x59, 0x84, + 0x4A, 0x57, 0x99, 0x68, 0x3F, 0x54, 0x54, 0x3F, 0x3F, 0x53, 0x53, 0x03, + 0x5D, 0x46, 0x80, 0x57, 0x44, 0x7F, 0x48, 0x01, 0x1B, 0xFE, 0x95, 0x10, + 0x25, 0x19, 0x41, 0x74, 0x52, 0x55, 0x81, 0x49, 0xA0, 0x47, 0x36, 0x36, + 0x47, 0x47, 0x36, 0x36, 0x47, 0x00, 0x01, 0x00, 0x3A, 0x03, 0x69, 0x02, + 0xC5, 0x06, 0xA0, 0x00, 0x07, 0x00, 0x00, 0x53, 0x01, 0x35, 0x21, 0x35, + 0x21, 0x15, 0x01, 0x79, 0x01, 0x75, 0xFE, 0x4C, 0x02, 0x8B, 0xFE, 0x8A, + 0x03, 0x69, 0x02, 0x88, 0x02, 0xAD, 0xA9, 0xFD, 0x72, 0x00, 0x03, 0x00, + 0x43, 0x03, 0x5C, 0x03, 0x13, 0x06, 0xAC, 0x00, 0x1F, 0x00, 0x2B, 0x00, + 0x37, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, + 0x35, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x13, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0xAA, + 0x6A, 0xA2, 0x5B, 0x37, 0x64, 0x41, 0x56, 0x67, 0x53, 0x95, 0x60, 0x62, + 0x94, 0x54, 0x66, 0x57, 0x41, 0x62, 0x39, 0x5C, 0xA2, 0x6B, 0x40, 0x51, + 0x52, 0x3F, 0x3E, 0x52, 0x51, 0x3F, 0x38, 0x46, 0x45, 0x39, 0x37, 0x46, + 0x46, 0x03, 0x5C, 0x3C, 0x6A, 0x45, 0x37, 0x56, 0x37, 0x08, 0x01, 0x0D, + 0x61, 0x4A, 0x43, 0x64, 0x39, 0x38, 0x65, 0x43, 0x49, 0x62, 0x0D, 0x01, + 0x08, 0x38, 0x55, 0x37, 0x45, 0x6A, 0x3C, 0x92, 0x3C, 0x2E, 0x2F, 0x3C, + 0x3C, 0x2F, 0x2F, 0x3B, 0x01, 0x6A, 0x34, 0x2A, 0x2B, 0x34, 0x33, 0x2C, + 0x2A, 0x34, 0x00, 0x02, 0x00, 0x43, 0x03, 0x5C, 0x03, 0x13, 0x06, 0xAD, + 0x00, 0x20, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x33, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x23, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, + 0x06, 0x06, 0x03, 0x32, 0x36, 0x36, 0x35, 0x36, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x01, 0x99, 0x5E, 0x90, 0x56, 0x08, 0xC7, 0x0A, 0x48, + 0x36, 0x40, 0x4D, 0x23, 0x02, 0x21, 0x72, 0x48, 0x57, 0x88, 0x4D, 0x58, + 0x9D, 0x67, 0x55, 0x88, 0x63, 0x34, 0x59, 0xA9, 0x72, 0x29, 0x42, 0x28, + 0x01, 0x55, 0x3E, 0x3F, 0x55, 0x54, 0x03, 0x5C, 0x43, 0x72, 0x45, 0x28, + 0x2E, 0x3C, 0x65, 0x3E, 0x31, 0x32, 0x47, 0x7A, 0x4F, 0x55, 0x83, 0x49, + 0x36, 0x67, 0x9A, 0x65, 0x86, 0xC5, 0x6A, 0x01, 0xB6, 0x1F, 0x38, 0x24, + 0x37, 0x47, 0x46, 0x37, 0x36, 0x46, 0x00, 0x02, 0x00, 0x43, 0x03, 0x69, + 0x02, 0xF4, 0x06, 0xAB, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, 0x41, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x03, 0x23, 0x01, 0x33, 0x0E, 0x02, + 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x17, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x01, 0x96, 0x65, 0x9D, + 0x5C, 0x3D, 0x37, 0xD7, 0xDC, 0x01, 0x1C, 0x2A, 0x0D, 0x2D, 0x42, 0x2E, + 0x58, 0x84, 0x4A, 0x57, 0x9A, 0x67, 0x3F, 0x54, 0x54, 0x3F, 0x3F, 0x53, + 0x53, 0x06, 0xAB, 0x46, 0x7F, 0x58, 0x43, 0x80, 0x48, 0xFE, 0xE6, 0x01, + 0x6B, 0x12, 0x24, 0x18, 0x40, 0x76, 0x50, 0x56, 0x81, 0x48, 0xA0, 0x47, + 0x36, 0x36, 0x46, 0x46, 0x36, 0x36, 0x47, 0x00, 0x01, 0x00, 0x67, 0x02, + 0xE2, 0x01, 0xBC, 0x06, 0xE4, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x34, 0x36, + 0x36, 0x37, 0x33, 0x06, 0x02, 0x15, 0x14, 0x16, 0x16, 0x17, 0x23, 0x26, + 0x26, 0x67, 0x26, 0x42, 0x2B, 0xC2, 0x3C, 0x49, 0x1D, 0x3B, 0x2D, 0xC2, + 0x48, 0x4B, 0x04, 0xCA, 0x61, 0xC9, 0xB2, 0x3E, 0x77, 0xFE, 0xE3, 0x86, + 0x4E, 0x96, 0xA3, 0x61, 0x6B, 0xF9, 0x00, 0x01, 0x00, 0x37, 0x02, 0xE2, + 0x01, 0x8B, 0x06, 0xE4, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x3E, 0x02, 0x35, + 0x34, 0x02, 0x27, 0x33, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x07, 0x37, 0x2D, + 0x3B, 0x1D, 0x49, 0x3C, 0xC2, 0x2B, 0x42, 0x25, 0x4B, 0x47, 0x02, 0xE2, + 0x61, 0xA3, 0x96, 0x4E, 0x86, 0x01, 0x1D, 0x77, 0x3E, 0xB2, 0xC9, 0x61, + 0x84, 0xF9, 0x6B, 0x00, 0x01, 0x00, 0x6F, 0x02, 0xE2, 0x01, 0xA9, 0x06, + 0xE4, 0x00, 0x07, 0x00, 0x00, 0x53, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, + 0x15, 0x6F, 0x01, 0x3A, 0x6F, 0x6F, 0x02, 0xE2, 0x04, 0x02, 0x9A, 0xFD, + 0x33, 0x9B, 0x00, 0x01, 0x00, 0x49, 0x02, 0xE2, 0x01, 0x83, 0x06, 0xE4, + 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, + 0x49, 0x6F, 0x6F, 0x01, 0x3A, 0x02, 0xE2, 0x9B, 0x02, 0xCD, 0x9A, 0xFB, + 0xFE, 0x00, 0x02, 0x00, 0x7E, 0x03, 0xC4, 0x02, 0xF6, 0x06, 0x0F, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x25, 0x35, 0x21, + 0x15, 0x01, 0x65, 0xAB, 0xFE, 0x6E, 0x02, 0x78, 0x03, 0xC4, 0x02, 0x4B, + 0xFD, 0xB5, 0xD5, 0xA1, 0xA1, 0x00, 0x01, 0x00, 0x81, 0x04, 0x9F, 0x02, + 0xF4, 0x05, 0x48, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x02, + 0xF4, 0xFD, 0x8D, 0x05, 0x48, 0xA9, 0xA9, 0x00, 0x02, 0x00, 0x84, 0x04, + 0x14, 0x02, 0xF1, 0x05, 0xD3, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, + 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x84, 0x02, 0x6D, 0xFD, 0x93, + 0x02, 0x6D, 0x05, 0x2B, 0xA8, 0xA8, 0xFE, 0xE9, 0xA8, 0xA8, 0xFF, 0xFF, + 0x00, 0x40, 0xFE, 0xAF, 0x02, 0xA8, 0x01, 0x16, 0x06, 0x07, 0x06, 0x25, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5B, 0xFE, 0xAE, 0x02, 0xFC, + 0x01, 0xF0, 0x06, 0x07, 0x06, 0x26, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x40, 0xFE, 0xAC, 0x02, 0xC9, 0x01, 0x17, 0x06, 0x07, 0x06, 0x27, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x40, 0xFE, 0xAE, 0x02, 0xE1, + 0x01, 0xF0, 0x06, 0x07, 0x06, 0x28, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x40, 0xFE, 0xAC, 0x02, 0xD0, 0x01, 0x17, 0x06, 0x07, 0x06, 0x29, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x26, 0xFE, 0xB9, 0x01, 0xF7, + 0x01, 0xFC, 0x06, 0x07, 0x06, 0x2A, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x40, 0xFD, 0xC9, 0x02, 0xE1, 0x01, 0x16, 0x06, 0x07, 0x06, 0x2B, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5B, 0xFE, 0xB9, 0x02, 0xD8, + 0x01, 0xF0, 0x06, 0x07, 0x06, 0x2C, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x55, 0xFE, 0xB9, 0x01, 0x2E, 0x02, 0x10, 0x06, 0x07, 0x06, 0x2D, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0xFF, 0xF0, 0xFD, 0xD2, 0x01, 0x2F, + 0x02, 0x10, 0x06, 0x07, 0x06, 0x2E, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x5B, 0xFE, 0xB9, 0x02, 0xEF, 0x01, 0xF0, 0x06, 0x07, 0x06, 0x2F, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5B, 0xFE, 0xB9, 0x01, 0x27, + 0x01, 0xF0, 0x06, 0x07, 0x06, 0x30, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x5B, 0xFE, 0xB9, 0x04, 0x4D, 0x01, 0x16, 0x06, 0x07, 0x06, 0x31, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5B, 0xFE, 0xB9, 0x02, 0xD8, + 0x01, 0x16, 0x06, 0x07, 0x06, 0x32, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x40, 0xFE, 0xAC, 0x02, 0xE6, 0x01, 0x17, 0x06, 0x07, 0x06, 0x33, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5B, 0xFD, 0xD2, 0x02, 0xFC, + 0x01, 0x16, 0x06, 0x07, 0x06, 0x34, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x40, 0xFD, 0xD2, 0x02, 0xE1, 0x01, 0x16, 0x06, 0x07, 0x06, 0x35, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5B, 0xFE, 0xB9, 0x01, 0xFC, + 0x01, 0x0E, 0x06, 0x07, 0x06, 0x36, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x3E, 0xFE, 0xAB, 0x02, 0xA6, 0x01, 0x16, 0x06, 0x07, 0x06, 0x37, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x26, 0xFE, 0xB6, 0x01, 0xE3, + 0x01, 0xA6, 0x06, 0x07, 0x06, 0x38, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x5B, 0xFE, 0xAE, 0x02, 0xD8, 0x01, 0x0B, 0x06, 0x07, 0x06, 0x39, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x22, 0xFE, 0xB9, 0x02, 0xEE, + 0x01, 0x0B, 0x06, 0x07, 0x06, 0x3A, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x21, 0xFE, 0xB9, 0x04, 0x3C, 0x01, 0x0B, 0x06, 0x07, 0x06, 0x3B, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x24, 0xFE, 0xB9, 0x02, 0xD1, + 0x01, 0x0B, 0x06, 0x07, 0x06, 0x3C, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x22, 0xFD, 0xD1, 0x02, 0xEF, 0x01, 0x0B, 0x06, 0x07, 0x06, 0x3D, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5B, 0xFE, 0xB9, 0x02, 0x8E, + 0x01, 0x0B, 0x06, 0x07, 0x06, 0x3E, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x43, 0xFE, 0xAC, 0x03, 0x3D, 0x01, 0xFC, 0x06, 0x07, 0x06, 0x3F, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xAC, 0x03, 0x3D, + 0x01, 0xFC, 0x06, 0x07, 0x06, 0x40, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x3D, 0xFE, 0xB9, 0x01, 0xDE, 0x01, 0xF0, 0x06, 0x07, 0x06, 0x41, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x51, 0xFE, 0xB9, 0x01, 0xDA, + 0x01, 0xEF, 0x06, 0x07, 0x06, 0x42, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x4B, 0xFE, 0xB9, 0x02, 0xF1, 0x01, 0xFC, 0x06, 0x07, 0x06, 0x43, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x4D, 0xFE, 0xAC, 0x03, 0x16, + 0x01, 0xFC, 0x06, 0x07, 0x06, 0x44, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x4D, 0xFE, 0xAC, 0x03, 0x12, 0x01, 0xF0, 0x06, 0x07, 0x06, 0x45, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x48, 0xFE, 0xB9, 0x03, 0x3F, + 0x01, 0xF0, 0x06, 0x07, 0x06, 0x46, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x48, 0xFE, 0xB9, 0x03, 0x3F, 0x01, 0xF0, 0x06, 0x07, 0x06, 0x47, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0xAD, 0x02, 0xFD, + 0x01, 0xF0, 0x06, 0x07, 0x06, 0x48, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x43, 0xFE, 0xAC, 0x03, 0x13, 0x01, 0xFC, 0x06, 0x07, 0x06, 0x49, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xAD, 0x02, 0xF4, + 0x01, 0xF0, 0x06, 0x07, 0x06, 0x4A, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x3A, 0xFE, 0xB9, 0x02, 0xC5, 0x01, 0xF0, 0x06, 0x07, 0x06, 0x4B, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xAC, 0x03, 0x13, + 0x01, 0xFC, 0x06, 0x07, 0x06, 0x4C, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x43, 0xFE, 0xAC, 0x03, 0x13, 0x01, 0xFD, 0x06, 0x07, 0x06, 0x4D, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xB9, 0x02, 0xF4, + 0x01, 0xFB, 0x06, 0x07, 0x06, 0x4E, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x67, 0xFE, 0x32, 0x01, 0xBC, 0x02, 0x34, 0x06, 0x07, 0x06, 0x4F, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x32, 0x01, 0x8B, + 0x02, 0x34, 0x06, 0x07, 0x06, 0x50, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x6F, 0xFE, 0x32, 0x01, 0xA9, 0x02, 0x34, 0x06, 0x07, 0x06, 0x51, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x49, 0xFE, 0x32, 0x01, 0x83, + 0x02, 0x34, 0x06, 0x07, 0x06, 0x52, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x7E, 0xFF, 0x14, 0x02, 0xF6, 0x01, 0x5F, 0x06, 0x07, 0x06, 0x53, + 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0xEF, 0x02, 0xF4, + 0x00, 0x98, 0x06, 0x07, 0x06, 0x54, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, + 0x00, 0x84, 0xFF, 0x64, 0x02, 0xF1, 0x01, 0x23, 0x06, 0x07, 0x06, 0x55, + 0x00, 0x00, 0xFB, 0x50, 0x00, 0x01, 0xFE, 0x4D, 0x00, 0x00, 0x03, 0x17, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x61, 0x01, 0x33, 0x01, 0xFE, 0x4D, + 0x04, 0x00, 0xCA, 0xFC, 0x00, 0x05, 0xD2, 0xFA, 0x2E, 0x00, 0x02, 0x00, + 0x3D, 0xFF, 0xF4, 0x02, 0xE4, 0x03, 0x43, 0x00, 0x0B, 0x00, 0x17, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x01, 0x90, 0x9F, 0xB4, 0xB4, 0x9F, 0xA0, 0xB4, 0xB4, 0xA0, 0x4B, + 0x53, 0x53, 0x4B, 0x4A, 0x53, 0x53, 0x0C, 0xE0, 0xC6, 0xC7, 0xE2, 0xE2, + 0xC7, 0xC5, 0xE1, 0x96, 0x90, 0x80, 0x82, 0x91, 0x91, 0x82, 0x80, 0x90, + 0x00, 0x03, 0x00, 0x3D, 0xFF, 0xF4, 0x02, 0xE5, 0x03, 0x43, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x07, 0x27, 0x01, 0x17, 0x01, 0x91, + 0xA0, 0xB4, 0xB4, 0xA0, 0xA0, 0xB4, 0xB4, 0xA0, 0x4B, 0x53, 0x53, 0x4B, + 0x4A, 0x54, 0x54, 0x2B, 0x48, 0x01, 0x31, 0x49, 0x0C, 0xE1, 0xC5, 0xC7, + 0xE2, 0xE3, 0xC6, 0xC5, 0xE1, 0x95, 0x91, 0x80, 0x82, 0x92, 0x92, 0x82, + 0x80, 0x91, 0x30, 0x23, 0x02, 0x63, 0x22, 0x00, 0x01, 0x00, 0x36, 0x00, + 0x00, 0x01, 0xAC, 0x03, 0x37, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x11, 0x23, 0x07, 0x35, 0x37, 0x01, 0xAC, 0xB6, 0x03, 0xBD, 0xC2, 0x03, + 0x37, 0xFC, 0xC9, 0x02, 0x8F, 0x7D, 0xA5, 0x80, 0x00, 0x01, 0x00, 0x49, + 0x00, 0x00, 0x01, 0xA8, 0x03, 0x37, 0x00, 0x0D, 0x00, 0x00, 0x73, 0x11, + 0x17, 0x0E, 0x02, 0x23, 0x35, 0x33, 0x32, 0x36, 0x37, 0x33, 0x11, 0xF1, + 0x0B, 0x17, 0x37, 0x40, 0x25, 0x19, 0x42, 0x59, 0x0B, 0xA0, 0x02, 0x4C, + 0x0B, 0x09, 0x0D, 0x06, 0x8D, 0x43, 0x42, 0xFC, 0xC9, 0x00, 0x01, 0x00, + 0x44, 0x00, 0x00, 0x02, 0x9F, 0x03, 0x43, 0x00, 0x1A, 0x00, 0x00, 0x73, + 0x35, 0x01, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x15, + 0x21, 0x15, 0x4B, 0x01, 0x2A, 0x32, 0x43, 0x43, 0x36, 0x39, 0x45, 0xAF, + 0xA5, 0x89, 0x83, 0xA6, 0x29, 0x56, 0x43, 0x8E, 0x01, 0x54, 0x86, 0x01, + 0x06, 0x2B, 0x4F, 0x36, 0x35, 0x3E, 0x49, 0x43, 0x84, 0x9C, 0x8B, 0x72, + 0x35, 0x5D, 0x61, 0x3C, 0x7E, 0x03, 0x96, 0x00, 0x01, 0x00, 0x47, 0xFF, + 0xF4, 0x02, 0xC4, 0x03, 0x43, 0x00, 0x2C, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x01, 0x84, 0x65, 0x8E, 0x49, 0x01, 0xB6, + 0x01, 0x49, 0x3D, 0x39, 0x4B, 0x50, 0x42, 0x4F, 0x4F, 0x3B, 0x48, 0x40, + 0x34, 0x35, 0x47, 0x01, 0xB1, 0x01, 0x4C, 0x87, 0x5A, 0x57, 0x83, 0x4A, + 0x58, 0x44, 0x59, 0x5E, 0xB3, 0x0C, 0x49, 0x7A, 0x4C, 0x3A, 0x42, 0x3C, + 0x30, 0x31, 0x3B, 0x88, 0x36, 0x2E, 0x2F, 0x3A, 0x3C, 0x33, 0x4A, 0x72, + 0x42, 0x3C, 0x68, 0x42, 0x47, 0x5C, 0x0D, 0x03, 0x0B, 0x6D, 0x4A, 0x6B, + 0x89, 0x00, 0x01, 0x00, 0x47, 0xFF, 0xF4, 0x02, 0xC1, 0x03, 0x37, 0x00, + 0x20, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x37, 0x35, 0x21, + 0x35, 0x21, 0x15, 0x05, 0x35, 0x36, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x01, 0x84, 0x63, 0x8D, 0x4C, 0x01, 0xB5, 0x02, 0x4C, 0x3A, 0x3A, 0x49, + 0x22, 0x42, 0x2F, 0x6B, 0xB5, 0xFE, 0xB4, 0x02, 0x29, 0xFE, 0xFB, 0x60, + 0x85, 0x46, 0x50, 0x8F, 0x0C, 0x48, 0x7B, 0x4C, 0x38, 0x44, 0x43, 0x39, + 0x24, 0x36, 0x20, 0x71, 0xAF, 0x03, 0x97, 0x8C, 0xF5, 0x27, 0x0A, 0x37, + 0x6E, 0x47, 0x4E, 0x77, 0x42, 0x00, 0x02, 0x00, 0x40, 0x00, 0x00, 0x02, + 0xE7, 0x03, 0x37, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00, 0x77, 0x35, 0x01, + 0x33, 0x15, 0x23, 0x03, 0x15, 0x21, 0x15, 0x05, 0x35, 0x37, 0x11, 0x33, + 0x11, 0x40, 0x01, 0x5A, 0x79, 0x44, 0xDB, 0x01, 0xF3, 0xFE, 0xEA, 0x01, + 0xB0, 0x9F, 0x92, 0x02, 0x06, 0xBA, 0xFE, 0xB8, 0x04, 0x92, 0x9F, 0xCB, + 0x41, 0x02, 0x2B, 0xFC, 0xC9, 0x00, 0x02, 0x00, 0x40, 0x00, 0x00, 0x02, + 0xE7, 0x03, 0x37, 0x00, 0x07, 0x00, 0x0D, 0x00, 0x00, 0x77, 0x35, 0x01, + 0x33, 0x01, 0x15, 0x21, 0x15, 0x05, 0x35, 0x37, 0x35, 0x33, 0x11, 0x40, + 0x01, 0x4B, 0xB7, 0xFE, 0xBA, 0x01, 0xEB, 0xFE, 0xEA, 0x01, 0xAD, 0x9F, + 0x92, 0x02, 0x06, 0xFD, 0xFE, 0x04, 0x92, 0x9F, 0xCB, 0x41, 0xF5, 0xFD, + 0xFF, 0x00, 0x01, 0x00, 0x42, 0xFF, 0xF4, 0x02, 0xAD, 0x03, 0x37, 0x00, + 0x22, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x13, 0x21, + 0x15, 0x21, 0x07, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x01, 0x76, 0x58, 0x89, 0x4F, 0x04, 0xB2, 0x02, 0x4C, 0x35, + 0x3A, 0x49, 0x49, 0x3A, 0x2C, 0x45, 0x0E, 0xA9, 0x1F, 0x02, 0x0F, 0xFE, + 0x92, 0x10, 0x03, 0x1B, 0x52, 0x31, 0x4A, 0x7A, 0x49, 0x4D, 0x8C, 0x0C, + 0x41, 0x75, 0x4E, 0x33, 0x40, 0x4E, 0x3E, 0x3E, 0x50, 0x24, 0x20, 0x0B, + 0x01, 0xD1, 0x97, 0xB5, 0x1E, 0x21, 0x48, 0x7E, 0x4F, 0x54, 0x83, 0x4A, + 0x00, 0x02, 0x00, 0x3D, 0xFF, 0xF4, 0x02, 0xC2, 0x03, 0x43, 0x00, 0x1E, + 0x00, 0x2B, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x06, 0x16, 0x01, + 0x8B, 0x49, 0x7B, 0x59, 0x31, 0x51, 0x98, 0x6A, 0x55, 0x7F, 0x4E, 0x07, + 0xB2, 0x09, 0x41, 0x30, 0x50, 0x50, 0x03, 0x1F, 0x67, 0x3E, 0x4E, 0x7A, + 0x46, 0xAE, 0x8B, 0x39, 0x4D, 0x4B, 0x39, 0x24, 0x3D, 0x25, 0x01, 0x02, + 0x4F, 0x0C, 0x31, 0x65, 0x99, 0x67, 0x8A, 0xC5, 0x6A, 0x40, 0x6E, 0x44, + 0x2C, 0x32, 0x82, 0x6F, 0x32, 0x32, 0x47, 0x7A, 0x4F, 0x7F, 0x9F, 0x91, + 0x50, 0x3B, 0x3B, 0x4F, 0x23, 0x3E, 0x28, 0x3C, 0x50, 0x00, 0x02, 0x00, + 0x3D, 0xFF, 0xF5, 0x02, 0xA1, 0x03, 0x37, 0x00, 0x13, 0x00, 0x1F, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x13, 0x33, 0x03, + 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x73, 0x59, + 0x8C, 0x51, 0x37, 0x35, 0xBB, 0xC3, 0xFF, 0x2C, 0x11, 0x4D, 0x40, 0x77, + 0x90, 0xA9, 0x89, 0x3A, 0x49, 0x49, 0x3A, 0x38, 0x4A, 0x4A, 0x0B, 0x46, + 0x7F, 0x55, 0x43, 0x84, 0x4D, 0x01, 0x14, 0xFE, 0x8B, 0x1C, 0x36, 0x8D, + 0x78, 0x7D, 0x9D, 0x90, 0x4E, 0x3A, 0x3C, 0x4C, 0x4C, 0x3B, 0x3B, 0x4E, + 0x00, 0x01, 0x00, 0x35, 0x00, 0x00, 0x02, 0x7B, 0x03, 0x37, 0x00, 0x07, + 0x00, 0x00, 0x73, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x6C, 0x01, + 0x50, 0xFE, 0x79, 0x02, 0x46, 0xFE, 0xB0, 0x02, 0x9A, 0x02, 0x9B, 0x99, + 0xFD, 0x62, 0x00, 0x03, 0x00, 0x3D, 0xFF, 0xF4, 0x02, 0xBF, 0x03, 0x43, + 0x00, 0x1F, 0x00, 0x2B, 0x00, 0x37, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x13, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x01, 0x7E, 0x5F, 0x91, 0x51, 0x32, 0x58, 0x38, 0x4B, + 0x5B, 0x4B, 0x84, 0x56, 0x57, 0x84, 0x4A, 0x5B, 0x4B, 0x3A, 0x57, 0x31, + 0x51, 0x91, 0x5F, 0x3A, 0x48, 0x49, 0x39, 0x39, 0x4A, 0x48, 0x3B, 0x32, + 0x3F, 0x3E, 0x33, 0x33, 0x3E, 0x3E, 0x0C, 0x3B, 0x6A, 0x45, 0x38, 0x56, + 0x37, 0x08, 0x01, 0x0D, 0x62, 0x49, 0x42, 0x64, 0x39, 0x39, 0x64, 0x42, + 0x49, 0x62, 0x0D, 0x01, 0x08, 0x39, 0x56, 0x36, 0x45, 0x6A, 0x3B, 0x86, + 0x40, 0x32, 0x33, 0x42, 0x42, 0x33, 0x32, 0x40, 0x01, 0x6F, 0x3A, 0x2F, + 0x2F, 0x38, 0x38, 0x2F, 0x2F, 0x3A, 0x00, 0x02, 0x00, 0x3D, 0xFF, 0xF3, + 0x02, 0xC2, 0x03, 0x44, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x23, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x03, 0x32, 0x36, 0x36, 0x37, 0x36, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x6F, 0x54, 0x81, 0x4D, + 0x08, 0xB2, 0x09, 0x41, 0x30, 0x3A, 0x46, 0x21, 0x03, 0x1E, 0x66, 0x40, + 0x4E, 0x7A, 0x46, 0x4F, 0x8C, 0x5B, 0x49, 0x7A, 0x5A, 0x32, 0x51, 0x98, + 0x64, 0x26, 0x3C, 0x23, 0x01, 0x02, 0x4D, 0x3A, 0x39, 0x4D, 0x4B, 0x0D, + 0x41, 0x6E, 0x44, 0x2C, 0x32, 0x41, 0x6E, 0x42, 0x30, 0x34, 0x47, 0x7B, + 0x4E, 0x55, 0x81, 0x49, 0x31, 0x64, 0x9A, 0x68, 0x89, 0xC6, 0x6B, 0x01, + 0xAC, 0x24, 0x3C, 0x26, 0x3A, 0x52, 0x4F, 0x3B, 0x3A, 0x4E, 0x00, 0x02, + 0x00, 0x3D, 0x00, 0x00, 0x02, 0xA1, 0x03, 0x42, 0x00, 0x14, 0x00, 0x20, + 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x03, 0x23, + 0x13, 0x33, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x17, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x01, + 0x6B, 0x59, 0x8D, 0x50, 0x36, 0x36, 0xBA, 0xC4, 0xFF, 0x2C, 0x10, 0x4D, + 0x41, 0x4F, 0x76, 0x42, 0xAA, 0x88, 0x39, 0x4A, 0x4A, 0x39, 0x38, 0x4A, + 0x49, 0x03, 0x42, 0x46, 0x7F, 0x55, 0x43, 0x83, 0x4F, 0xFE, 0xED, 0x01, + 0x75, 0x1C, 0x36, 0x3F, 0x76, 0x50, 0x7D, 0x9D, 0x90, 0x4E, 0x3B, 0x3A, + 0x4E, 0x4E, 0x3A, 0x3B, 0x4E, 0x00, 0x02, 0x00, 0x72, 0x00, 0x73, 0x02, + 0xAD, 0x02, 0xB0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x65, 0x11, 0x33, + 0x11, 0x25, 0x35, 0x21, 0x15, 0x01, 0x44, 0x97, 0xFE, 0x97, 0x02, 0x3B, + 0x73, 0x02, 0x3D, 0xFD, 0xC3, 0xD7, 0x90, 0x90, 0x00, 0x01, 0x00, 0x73, + 0x01, 0x46, 0x02, 0xAA, 0x01, 0xDE, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x02, 0xAA, 0xFD, 0xC9, 0x01, 0xDE, 0x98, 0x98, 0x00, 0x02, + 0x00, 0x78, 0x00, 0xC2, 0x02, 0xA8, 0x02, 0x65, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x78, 0x02, + 0x30, 0xFD, 0xD0, 0x02, 0x30, 0x01, 0xCF, 0x96, 0x96, 0xFE, 0xF3, 0x96, + 0x96, 0x00, 0x01, 0x00, 0x5E, 0xFF, 0xB2, 0x01, 0x8F, 0x03, 0xB1, 0x00, + 0x0F, 0x00, 0x00, 0x53, 0x34, 0x36, 0x36, 0x37, 0x33, 0x06, 0x02, 0x15, + 0x14, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x5E, 0x22, 0x3D, 0x26, 0xAC, + 0x36, 0x43, 0x1A, 0x36, 0x29, 0xAC, 0x41, 0x44, 0x01, 0x98, 0x60, 0xC8, + 0xB2, 0x3F, 0x79, 0xFE, 0xE2, 0x82, 0x4B, 0x96, 0xA3, 0x62, 0x6D, 0xF8, + 0x00, 0x01, 0x00, 0x31, 0xFF, 0xB2, 0x01, 0x61, 0x03, 0xB1, 0x00, 0x0F, + 0x00, 0x00, 0x57, 0x3E, 0x02, 0x35, 0x34, 0x02, 0x27, 0x33, 0x1E, 0x02, + 0x15, 0x14, 0x06, 0x07, 0x31, 0x29, 0x35, 0x1B, 0x43, 0x36, 0xAB, 0x28, + 0x3C, 0x21, 0x44, 0x41, 0x4E, 0x60, 0xA3, 0x97, 0x4C, 0x84, 0x01, 0x1D, + 0x78, 0x3F, 0xB4, 0xC7, 0x5F, 0x83, 0xF8, 0x6B, 0x00, 0x01, 0x00, 0x43, + 0xFF, 0xF2, 0x01, 0x31, 0x00, 0xE0, 0x00, 0x0B, 0x00, 0x00, 0x57, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xBA, 0x32, + 0x45, 0x45, 0x32, 0x32, 0x45, 0x45, 0x0E, 0x46, 0x31, 0x32, 0x45, 0x45, + 0x32, 0x31, 0x46, 0x00, 0x01, 0x00, 0x25, 0xFF, 0x0A, 0x01, 0x32, 0x00, + 0xAF, 0x00, 0x03, 0x00, 0x00, 0x57, 0x13, 0x33, 0x03, 0x25, 0x43, 0xCA, + 0x7F, 0xF6, 0x01, 0xA5, 0xFE, 0x5B, 0x00, 0x01, 0x00, 0x43, 0xFF, 0x08, + 0x01, 0x52, 0x00, 0xDF, 0x00, 0x16, 0x00, 0x00, 0x57, 0x27, 0x36, 0x36, + 0x35, 0x34, 0x34, 0x35, 0x33, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x74, 0x25, 0x57, 0x48, 0x1C, + 0x2B, 0x2B, 0x2F, 0x42, 0x49, 0x39, 0x3B, 0x52, 0x74, 0xF8, 0x52, 0x24, + 0x5F, 0x55, 0x09, 0x10, 0x09, 0x27, 0x35, 0x40, 0x32, 0x32, 0x43, 0x53, + 0x4E, 0x76, 0x97, 0x00, 0x01, 0x00, 0x58, 0xFF, 0x21, 0x01, 0x31, 0x00, + 0xC6, 0x00, 0x0E, 0x00, 0x00, 0x57, 0x35, 0x33, 0x32, 0x36, 0x35, 0x35, + 0x17, 0x23, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x58, 0x1C, 0x27, 0x2B, + 0x18, 0x86, 0xD9, 0x67, 0x5D, 0xDF, 0x5E, 0x34, 0x2E, 0x32, 0x17, 0xCA, + 0xDF, 0x62, 0x64, 0xFF, 0xFF, 0x00, 0x3D, 0x02, 0x8F, 0x02, 0xE4, 0x05, + 0xDE, 0x06, 0x07, 0x06, 0x88, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x3D, 0x02, 0x8F, 0x02, 0xE5, 0x05, 0xDE, 0x06, 0x07, 0x06, 0x89, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x36, 0x02, 0x9B, 0x01, 0xAC, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x8A, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x49, 0x02, 0x9B, 0x01, 0xA8, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x8B, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x44, 0x02, 0x9B, 0x02, 0x9F, 0x05, + 0xDE, 0x06, 0x07, 0x06, 0x8C, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x47, 0x02, 0x8F, 0x02, 0xC4, 0x05, 0xDE, 0x06, 0x07, 0x06, 0x8D, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x47, 0x02, 0x8F, 0x02, 0xC1, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x8E, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x40, 0x02, 0x9B, 0x02, 0xE7, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x8F, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x40, 0x02, 0x9B, 0x02, 0xE7, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x90, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x42, 0x02, 0x8F, 0x02, 0xAD, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x91, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x3D, 0x02, 0x8F, 0x02, 0xC2, 0x05, + 0xDE, 0x06, 0x07, 0x06, 0x92, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x3D, 0x02, 0x90, 0x02, 0xA1, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x93, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x35, 0x02, 0x9B, 0x02, 0x7B, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x94, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x3D, 0x02, 0x8F, 0x02, 0xBF, 0x05, 0xDE, 0x06, 0x07, 0x06, 0x95, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x3D, 0x02, 0x8E, 0x02, 0xC2, 0x05, + 0xDF, 0x06, 0x07, 0x06, 0x96, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x3D, 0x02, 0x9B, 0x02, 0xA1, 0x05, 0xDD, 0x06, 0x07, 0x06, 0x97, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x72, 0x03, 0x0F, 0x02, 0xAD, 0x05, + 0x4B, 0x06, 0x07, 0x06, 0x98, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x73, 0x03, 0xE2, 0x02, 0xAA, 0x04, 0x79, 0x06, 0x07, 0x06, 0x99, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x78, 0x03, 0x5D, 0x02, 0xA8, 0x05, + 0x00, 0x06, 0x07, 0x06, 0x9A, 0x00, 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, + 0x5E, 0x02, 0x4D, 0x01, 0x8F, 0x06, 0x4C, 0x06, 0x07, 0x06, 0x9B, 0x00, + 0x00, 0x02, 0x9B, 0xFF, 0xFF, 0x00, 0x31, 0x02, 0x4D, 0x01, 0x61, 0x06, + 0x4C, 0x06, 0x07, 0x06, 0x9C, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x01, 0x00, + 0x43, 0x02, 0x6E, 0x01, 0x31, 0x03, 0x5C, 0x00, 0x0B, 0x00, 0x00, 0x53, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xBA, + 0x32, 0x45, 0x45, 0x32, 0x32, 0x45, 0x45, 0x02, 0x6E, 0x46, 0x31, 0x32, + 0x45, 0x45, 0x32, 0x32, 0x45, 0x00, 0x01, 0x00, 0x25, 0x01, 0x9F, 0x01, + 0x32, 0x03, 0x44, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0x25, + 0x43, 0xCA, 0x7F, 0x01, 0x9F, 0x01, 0xA5, 0xFE, 0x5B, 0xFF, 0xFF, 0x00, + 0x43, 0x01, 0x85, 0x01, 0x52, 0x03, 0x5C, 0x06, 0x07, 0x06, 0x9F, 0x00, + 0x00, 0x02, 0x7D, 0xFF, 0xFF, 0x00, 0x58, 0x01, 0xA9, 0x01, 0x31, 0x03, + 0x4D, 0x06, 0x07, 0x06, 0xA0, 0x00, 0x00, 0x02, 0x88, 0xFF, 0xFF, 0x00, + 0x36, 0x00, 0x00, 0x05, 0x50, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, + 0x00, 0x02, 0x9B, 0x00, 0x07, 0x06, 0x87, 0x02, 0x3A, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x36, 0x00, 0x00, 0x06, 0x3D, 0x05, 0xD2, 0x04, 0x27, 0x06, + 0x8A, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0x3A, 0x00, + 0x00, 0x00, 0x07, 0x06, 0x8C, 0x03, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x3D, 0xFF, 0xF4, 0x07, 0x53, 0x05, 0xDE, 0x04, 0x27, 0x06, 0x88, 0x00, + 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x03, 0x20, 0x00, 0x00, 0x00, + 0x07, 0x06, 0x8D, 0x04, 0x8E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x36, 0xFF, + 0xF4, 0x06, 0x6C, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, + 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0x3A, 0x00, 0x00, 0x00, 0x07, 0x06, + 0x8D, 0x03, 0xA8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xF4, 0x07, + 0x52, 0x05, 0xDE, 0x04, 0x27, 0x06, 0x8C, 0x00, 0x00, 0x02, 0x9B, 0x00, + 0x27, 0x06, 0x87, 0x03, 0x20, 0x00, 0x00, 0x00, 0x07, 0x06, 0x8D, 0x04, + 0x8E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x36, 0x00, 0x00, 0x06, 0x02, 0x05, + 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, + 0x87, 0x02, 0x3A, 0x00, 0x00, 0x00, 0x07, 0x06, 0x8F, 0x03, 0x1B, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x47, 0x00, 0x00, 0x06, 0xAC, 0x05, 0xDE, 0x04, + 0x27, 0x06, 0x8D, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, + 0xE4, 0x00, 0x00, 0x00, 0x07, 0x06, 0x8F, 0x03, 0xC5, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x36, 0xFF, 0xF4, 0x06, 0x81, 0x05, 0xD2, 0x04, 0x27, 0x06, + 0x8A, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0x3A, 0x00, + 0x00, 0x00, 0x07, 0x06, 0x91, 0x03, 0xD4, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x44, 0xFF, 0xF4, 0x07, 0x67, 0x05, 0xDE, 0x04, 0x27, 0x06, 0x8C, 0x00, + 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x03, 0x20, 0x00, 0x00, 0x00, + 0x07, 0x06, 0x91, 0x04, 0xBA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, + 0xF4, 0x07, 0x2C, 0x05, 0xDE, 0x04, 0x27, 0x06, 0x8D, 0x00, 0x00, 0x02, + 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x06, + 0x91, 0x04, 0x7F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xF4, 0x07, + 0x6E, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8F, 0x00, 0x00, 0x02, 0x9B, 0x00, + 0x27, 0x06, 0x87, 0x03, 0x26, 0x00, 0x00, 0x00, 0x07, 0x06, 0x91, 0x04, + 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x36, 0xFF, 0xF4, 0x06, 0x60, 0x05, + 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, + 0x87, 0x02, 0x3A, 0x00, 0x00, 0x00, 0x07, 0x06, 0x92, 0x03, 0x9E, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x42, 0xFF, 0xF4, 0x07, 0x10, 0x05, 0xD2, 0x04, + 0x27, 0x06, 0x91, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, 0x92, 0x04, 0x4E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x36, 0x00, 0x00, 0x06, 0x8E, 0x05, 0xD2, 0x04, 0x27, 0x06, + 0x8A, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0x3A, 0x00, + 0x00, 0x00, 0x07, 0x06, 0x94, 0x04, 0x13, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x36, 0xFF, 0xF4, 0x06, 0x5D, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, + 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0x3A, 0x00, 0x00, 0x00, + 0x07, 0x06, 0x95, 0x03, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, + 0xF4, 0x07, 0x07, 0x05, 0xDE, 0x04, 0x27, 0x06, 0x8D, 0x00, 0x00, 0x02, + 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x06, + 0x95, 0x04, 0x48, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x42, 0xFF, 0xF4, 0x07, + 0x0D, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x91, 0x00, 0x00, 0x02, 0x9B, 0x00, + 0x27, 0x06, 0x87, 0x02, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, 0x95, 0x04, + 0x4E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x35, 0xFF, 0xF4, 0x06, 0x2D, 0x05, + 0xD2, 0x04, 0x27, 0x06, 0x94, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, + 0x87, 0x02, 0x0A, 0x00, 0x00, 0x00, 0x07, 0x06, 0x95, 0x03, 0x6E, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x36, 0xFF, 0xF3, 0x06, 0x60, 0x05, 0xD2, 0x04, + 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, + 0x3A, 0x00, 0x00, 0x00, 0x07, 0x06, 0x96, 0x03, 0x9E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x36, 0xFF, 0xF4, 0x08, 0x81, 0x05, 0xD2, 0x04, 0x27, 0x06, + 0x8A, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x27, 0x06, 0x87, 0x02, 0x3A, 0x00, + 0x00, 0x00, 0x27, 0x06, 0x8A, 0x03, 0x9E, 0x00, 0x00, 0x00, 0x07, 0x06, + 0x88, 0x05, 0x9D, 0x00, 0x00, 0x00, 0x05, 0x00, 0x91, 0xFF, 0xE7, 0x06, + 0xDC, 0x05, 0xEA, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x31, 0x00, 0x3F, 0x00, + 0x43, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, + 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x01, + 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x05, 0x01, 0x33, 0x01, 0x01, + 0xDA, 0x63, 0x94, 0x52, 0x52, 0x94, 0x63, 0x65, 0x93, 0x51, 0x51, 0x94, + 0x64, 0x42, 0x47, 0x46, 0x43, 0x41, 0x48, 0x48, 0x03, 0xFA, 0x64, 0x94, + 0x52, 0x53, 0x94, 0x63, 0x64, 0x93, 0x52, 0x52, 0x93, 0x64, 0x42, 0x47, + 0x47, 0x42, 0x42, 0x48, 0x48, 0xFB, 0xFE, 0x04, 0x00, 0xCA, 0xFC, 0x00, + 0x03, 0x06, 0x5A, 0x9E, 0x65, 0x29, 0x65, 0x9E, 0x5B, 0x5B, 0x9E, 0x65, + 0x29, 0x65, 0x9E, 0x5A, 0xA5, 0x63, 0x55, 0x29, 0x56, 0x63, 0x64, 0x55, + 0x29, 0x55, 0x63, 0xFC, 0x3C, 0x5B, 0x9E, 0x65, 0x28, 0x66, 0x9E, 0x5B, + 0x5B, 0x9E, 0x66, 0x28, 0x65, 0x9E, 0x5B, 0xA6, 0x62, 0x56, 0x28, 0x56, + 0x64, 0x64, 0x56, 0x28, 0x56, 0x62, 0x8D, 0x05, 0xD2, 0xFA, 0x2E, 0x00, + 0x07, 0x00, 0x91, 0xFF, 0xE7, 0x09, 0xB7, 0x05, 0xEA, 0x00, 0x11, 0x00, + 0x1F, 0x00, 0x31, 0x00, 0x3F, 0x00, 0x51, 0x00, 0x5F, 0x00, 0x63, 0x00, + 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x01, 0x22, 0x26, + 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x15, 0x14, 0x16, 0x05, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, + 0x16, 0x05, 0x01, 0x33, 0x01, 0x01, 0xDA, 0x63, 0x94, 0x52, 0x52, 0x94, + 0x63, 0x65, 0x93, 0x51, 0x51, 0x94, 0x64, 0x42, 0x47, 0x46, 0x43, 0x41, + 0x48, 0x48, 0x03, 0xFA, 0x64, 0x94, 0x52, 0x53, 0x94, 0x63, 0x64, 0x93, + 0x52, 0x52, 0x93, 0x64, 0x42, 0x47, 0x47, 0x42, 0x42, 0x48, 0x48, 0x03, + 0x1D, 0x64, 0x94, 0x51, 0x52, 0x94, 0x63, 0x64, 0x94, 0x51, 0x52, 0x93, + 0x64, 0x42, 0x47, 0x47, 0x42, 0x42, 0x48, 0x48, 0xF9, 0x23, 0x04, 0x00, + 0xCA, 0xFC, 0x00, 0x03, 0x06, 0x5A, 0x9E, 0x65, 0x29, 0x65, 0x9E, 0x5B, + 0x5B, 0x9E, 0x65, 0x29, 0x65, 0x9E, 0x5A, 0xA5, 0x63, 0x55, 0x29, 0x56, + 0x63, 0x64, 0x55, 0x29, 0x55, 0x63, 0xFC, 0x3C, 0x5B, 0x9E, 0x65, 0x28, + 0x66, 0x9E, 0x5B, 0x5B, 0x9E, 0x66, 0x28, 0x65, 0x9E, 0x5B, 0xA6, 0x62, + 0x56, 0x28, 0x56, 0x64, 0x64, 0x56, 0x28, 0x56, 0x62, 0xA6, 0x5B, 0x9E, + 0x65, 0x28, 0x66, 0x9E, 0x5B, 0x5B, 0x9E, 0x66, 0x28, 0x65, 0x9E, 0x5B, + 0xA6, 0x62, 0x56, 0x28, 0x56, 0x64, 0x64, 0x56, 0x28, 0x56, 0x62, 0x8D, + 0x05, 0xD2, 0xFA, 0x2E, 0x00, 0x09, 0x00, 0x91, 0xFF, 0xE7, 0x0C, 0x92, + 0x05, 0xEA, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x31, 0x00, 0x3F, 0x00, 0x51, + 0x00, 0x5F, 0x00, 0x71, 0x00, 0x7F, 0x00, 0x83, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x01, 0x22, 0x26, 0x26, 0x35, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, + 0x14, 0x16, 0x05, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x05, 0x22, + 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x05, 0x01, 0x33, 0x01, 0x01, 0xDA, + 0x63, 0x94, 0x52, 0x52, 0x94, 0x63, 0x65, 0x93, 0x51, 0x51, 0x94, 0x64, + 0x42, 0x47, 0x46, 0x43, 0x41, 0x48, 0x48, 0x03, 0xFA, 0x64, 0x94, 0x52, + 0x53, 0x94, 0x63, 0x64, 0x93, 0x52, 0x52, 0x93, 0x64, 0x42, 0x47, 0x47, + 0x42, 0x42, 0x48, 0x48, 0x03, 0x1D, 0x64, 0x94, 0x51, 0x52, 0x94, 0x63, + 0x64, 0x94, 0x51, 0x52, 0x93, 0x64, 0x42, 0x47, 0x47, 0x42, 0x42, 0x48, + 0x48, 0x03, 0x1D, 0x63, 0x94, 0x52, 0x52, 0x94, 0x63, 0x64, 0x94, 0x51, + 0x52, 0x93, 0x64, 0x42, 0x47, 0x47, 0x42, 0x41, 0x48, 0x47, 0xF6, 0x48, + 0x04, 0x00, 0xCA, 0xFC, 0x00, 0x03, 0x06, 0x5A, 0x9E, 0x65, 0x29, 0x65, + 0x9E, 0x5B, 0x5B, 0x9E, 0x65, 0x29, 0x65, 0x9E, 0x5A, 0xA5, 0x63, 0x55, + 0x29, 0x56, 0x63, 0x64, 0x55, 0x29, 0x55, 0x63, 0xFC, 0x3C, 0x5B, 0x9E, + 0x65, 0x28, 0x66, 0x9E, 0x5B, 0x5B, 0x9E, 0x66, 0x28, 0x65, 0x9E, 0x5B, + 0xA6, 0x62, 0x56, 0x28, 0x56, 0x64, 0x64, 0x56, 0x28, 0x56, 0x62, 0xA6, + 0x5B, 0x9E, 0x65, 0x28, 0x66, 0x9E, 0x5B, 0x5B, 0x9E, 0x66, 0x28, 0x65, + 0x9E, 0x5B, 0xA6, 0x62, 0x56, 0x28, 0x56, 0x64, 0x64, 0x56, 0x28, 0x56, + 0x62, 0xA6, 0x5B, 0x9E, 0x65, 0x28, 0x66, 0x9E, 0x5B, 0x5B, 0x9E, 0x66, + 0x28, 0x65, 0x9E, 0x5B, 0xA6, 0x62, 0x56, 0x28, 0x56, 0x64, 0x64, 0x56, + 0x28, 0x56, 0x62, 0x8D, 0x05, 0xD2, 0xFA, 0x2E, 0xFF, 0xFF, 0x00, 0x20, + 0xFF, 0xEF, 0x06, 0x6B, 0x05, 0xD2, 0x04, 0x26, 0x0B, 0x37, 0x00, 0x00, + 0x00, 0x27, 0x06, 0x87, 0x02, 0xE9, 0x00, 0x00, 0x00, 0x07, 0x06, 0x37, + 0x03, 0xC5, 0xFC, 0x94, 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xF5, 0x06, 0xAC, + 0x05, 0xE9, 0x04, 0x26, 0x06, 0x27, 0x00, 0x22, 0x00, 0x27, 0x06, 0x87, + 0x02, 0x9C, 0x00, 0x00, 0x00, 0x07, 0x06, 0x39, 0x03, 0xD4, 0xFC, 0x97, + 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xF3, 0x06, 0x8C, 0x05, 0xE9, 0x04, 0x26, + 0x06, 0x27, 0x00, 0x22, 0x00, 0x27, 0x06, 0x87, 0x02, 0xA3, 0x00, 0x00, + 0x00, 0x07, 0x06, 0x33, 0x03, 0xA6, 0xFC, 0x97, 0xFF, 0xFF, 0x00, 0x40, + 0xFF, 0xEE, 0x06, 0x7F, 0x05, 0xE9, 0x04, 0x26, 0x06, 0x25, 0x00, 0x23, + 0x00, 0x27, 0x06, 0x87, 0x02, 0xC9, 0x00, 0x00, 0x00, 0x07, 0x06, 0x27, + 0x03, 0xB7, 0xFC, 0x92, 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xED, 0x06, 0x62, + 0x05, 0xE9, 0x04, 0x26, 0x06, 0x25, 0x00, 0x23, 0x00, 0x27, 0x06, 0x87, + 0x02, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0x37, 0x03, 0xBC, 0xFC, 0x92, + 0xFF, 0xFF, 0x00, 0x64, 0x04, 0xB4, 0x02, 0x01, 0x05, 0xE8, 0x04, 0x06, + 0x06, 0xE8, 0x00, 0x00, 0x00, 0x02, 0x00, 0x64, 0x04, 0xB4, 0x03, 0x5F, + 0x05, 0xE8, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x23, 0x13, 0x33, + 0x13, 0x23, 0x13, 0x33, 0x01, 0x1F, 0xBB, 0x7E, 0xF2, 0x96, 0xC0, 0xB7, + 0xFE, 0x04, 0xB4, 0x01, 0x34, 0xFE, 0xCC, 0x01, 0x34, 0xFF, 0xFF, 0x00, + 0x58, 0x04, 0xB4, 0x01, 0xF5, 0x05, 0xE8, 0x04, 0x06, 0x06, 0xE9, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0xB0, 0x04, 0xB4, 0x01, 0xBD, 0x05, 0xE8, 0x06, + 0x06, 0x0A, 0xF3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xE8, 0x04, 0xCE, 0x03, + 0xBE, 0x05, 0xE8, 0x04, 0x06, 0x0A, 0x8B, 0x00, 0x00, 0x00, 0x03, 0x00, + 0xE8, 0x04, 0xCE, 0x05, 0x72, 0x05, 0xE8, 0x00, 0x0B, 0x00, 0x17, 0x00, + 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x04, 0xE1, 0x3D, 0x54, 0x54, 0x3D, 0x3D, 0x54, 0x53, + 0xFC, 0x5A, 0x3D, 0x54, 0x54, 0x3D, 0x3E, 0x53, 0x53, 0x01, 0x76, 0x3D, + 0x54, 0x54, 0x3D, 0x3E, 0x53, 0x53, 0x04, 0xCE, 0x52, 0x3B, 0x3C, 0x51, + 0x51, 0x3C, 0x3C, 0x51, 0x52, 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3C, 0x51, + 0x52, 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3C, 0x51, 0xFF, 0xFF, 0x00, 0x44, + 0x04, 0xC3, 0x03, 0x07, 0x05, 0xE8, 0x04, 0x06, 0x0A, 0x8D, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0xAB, 0x04, 0xDD, 0x03, 0x38, 0x05, 0xD6, 0x04, 0x06, + 0x06, 0xEC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x85, 0x04, 0xF4, 0x02, 0xBE, + 0x05, 0xA2, 0x04, 0x06, 0x06, 0xEB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x67, + 0x04, 0xB9, 0x02, 0xEF, 0x05, 0xE5, 0x04, 0x06, 0x0A, 0x8F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x6B, 0x04, 0xB9, 0x02, 0xF4, 0x05, 0xE5, 0x04, 0x06, + 0x0A, 0x8F, 0x04, 0x00, 0xFF, 0xFF, 0x00, 0x6A, 0x04, 0xCB, 0x01, 0x98, + 0x05, 0xE9, 0x04, 0x06, 0x0A, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, + 0x04, 0x82, 0x02, 0x54, 0x06, 0x61, 0x04, 0x06, 0x0A, 0x90, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x44, 0x04, 0xC3, 0x03, 0x07, 0x05, 0xE8, 0x04, 0x06, + 0x0A, 0x8E, 0x00, 0x00, 0x00, 0x03, 0x00, 0xE8, 0x04, 0xDA, 0x04, 0x69, + 0x06, 0x8C, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x37, 0x13, + 0x33, 0x03, 0x03, 0xE0, 0x39, 0x51, 0x51, 0x39, 0x39, 0x50, 0x50, 0xFD, + 0x59, 0x39, 0x51, 0x51, 0x39, 0x39, 0x51, 0x51, 0xA2, 0x23, 0xEA, 0x6F, + 0x04, 0xDA, 0x50, 0x38, 0x37, 0x50, 0x50, 0x38, 0x37, 0x50, 0x50, 0x38, + 0x37, 0x50, 0x50, 0x38, 0x37, 0x50, 0x7E, 0x01, 0x34, 0xFE, 0xCC, 0xFF, + 0xFF, 0x00, 0xC3, 0xFE, 0x5E, 0x02, 0x33, 0x00, 0x2D, 0x04, 0x06, 0x0A, + 0x95, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x49, 0xFE, 0x5B, 0x01, 0xDE, 0x00, + 0x28, 0x04, 0x06, 0x0A, 0x96, 0x00, 0x00, 0x00, 0x01, 0x00, 0x35, 0xFE, + 0x1C, 0x01, 0x7E, 0xFF, 0x8A, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, + 0x03, 0x35, 0x56, 0xF3, 0x92, 0xFE, 0x1C, 0x01, 0x6E, 0xFE, 0x92, 0x00, + 0x01, 0x00, 0x64, 0x04, 0xB4, 0x02, 0x01, 0x05, 0xE8, 0x00, 0x03, 0x00, + 0x00, 0x53, 0x13, 0x21, 0x03, 0x64, 0x9D, 0x01, 0x00, 0xE3, 0x04, 0xB4, + 0x01, 0x34, 0xFE, 0xCC, 0x00, 0x01, 0x00, 0x58, 0x04, 0xB4, 0x01, 0xF5, + 0x05, 0xE8, 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x01, 0x3A, + 0xE2, 0xFF, 0x9E, 0x04, 0xB4, 0x01, 0x34, 0xFE, 0xCC, 0x00, 0x02, 0x00, + 0x58, 0x04, 0xB4, 0x03, 0x53, 0x05, 0xE8, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x41, 0x03, 0x33, 0x13, 0x21, 0x03, 0x33, 0x13, 0x02, 0x98, 0xB5, + 0xF2, 0x7E, 0xFD, 0xFA, 0xF5, 0xFE, 0xB7, 0x04, 0xB4, 0x01, 0x34, 0xFE, + 0xCC, 0x01, 0x34, 0xFE, 0xCC, 0x00, 0x01, 0x00, 0x85, 0x04, 0xF4, 0x02, + 0xBE, 0x05, 0xA2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x02, + 0xBE, 0xFD, 0xC7, 0x05, 0xA2, 0xAE, 0xAE, 0x00, 0x01, 0x00, 0xAB, 0x04, + 0xDD, 0x03, 0x38, 0x05, 0xD6, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x2E, + 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x02, 0x7A, 0x2C, 0x49, 0x3E, + 0x33, 0x16, 0x1D, 0x1E, 0x02, 0x96, 0x03, 0x64, 0x58, 0x2D, 0x47, 0x3A, + 0x34, 0x19, 0x1F, 0x1D, 0x03, 0x94, 0x03, 0x68, 0x04, 0xDD, 0x1D, 0x26, + 0x1D, 0x35, 0x26, 0x72, 0x82, 0x1D, 0x26, 0x1D, 0x2D, 0x2E, 0x72, 0x82, + 0xFF, 0xFF, 0x00, 0x6A, 0xFE, 0x38, 0x01, 0x98, 0xFF, 0x56, 0x04, 0x07, + 0x0A, 0x8C, 0x00, 0x00, 0xF9, 0x6D, 0x00, 0x01, 0xFC, 0xCC, 0xFD, 0xD6, + 0xFD, 0xEB, 0xFF, 0x70, 0x00, 0x09, 0x00, 0x00, 0x45, 0x15, 0x14, 0x06, + 0x07, 0x27, 0x36, 0x36, 0x35, 0x35, 0xFD, 0xEB, 0x53, 0x44, 0x88, 0x24, + 0x33, 0x90, 0x47, 0x59, 0xBC, 0x3E, 0x4D, 0x37, 0x75, 0x4E, 0x53, 0x00, + 0x04, 0x00, 0x81, 0x00, 0x00, 0x08, 0x24, 0x05, 0xE6, 0x00, 0x0B, 0x00, + 0x0F, 0x00, 0x21, 0x00, 0x2F, 0x00, 0x00, 0x73, 0x11, 0x33, 0x01, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x01, 0x23, 0x11, 0x01, 0x35, 0x21, 0x15, 0x01, + 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x15, 0x16, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x15, 0x06, 0x16, 0x81, 0xE1, 0x02, 0x72, 0x0D, + 0xE3, 0xDD, 0xFD, 0x8E, 0x0F, 0x04, 0x20, 0x02, 0x80, 0xFE, 0xBF, 0x6D, + 0x9F, 0x56, 0x56, 0x9F, 0x6B, 0x6E, 0x9E, 0x54, 0x01, 0x55, 0x9D, 0x6D, + 0x4C, 0x4F, 0x01, 0x4F, 0x4D, 0x4E, 0x4D, 0x01, 0x50, 0x05, 0xD2, 0xFB, + 0xD1, 0x04, 0x2F, 0xFA, 0x2E, 0x04, 0x29, 0xFB, 0xD7, 0x01, 0xB8, 0xA2, + 0xA2, 0x01, 0x1E, 0x5A, 0xA0, 0x67, 0x4E, 0x67, 0x9F, 0x5B, 0x5B, 0xA0, + 0x66, 0x4E, 0x67, 0x9F, 0x5B, 0xA6, 0x66, 0x55, 0x4E, 0x54, 0x64, 0x64, + 0x54, 0x4E, 0x55, 0x66, 0xFF, 0xFF, 0x00, 0x64, 0xFF, 0xE9, 0x09, 0x00, + 0x05, 0xE9, 0x04, 0x26, 0x06, 0x15, 0x00, 0x00, 0x00, 0x07, 0x00, 0x49, + 0x03, 0x79, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x64, 0x00, 0x00, 0x07, 0xE1, + 0x05, 0xDD, 0x04, 0x26, 0x06, 0x15, 0x00, 0x00, 0x00, 0x07, 0x00, 0x89, + 0x03, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x51, + 0x05, 0xD2, 0x06, 0x06, 0x01, 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x86, 0x07, 0xFD, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xF2, 0x01, 0x79, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, + 0xFF, 0xE9, 0x05, 0xB6, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xDC, 0x02, 0x02, 0x02, 0x61, 0x00, 0x02, 0x00, 0x86, + 0xFF, 0xEC, 0x04, 0x93, 0x04, 0x4E, 0x00, 0x1C, 0x00, 0x25, 0x00, 0x00, + 0x65, 0x15, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x14, 0x15, 0x21, 0x11, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x01, 0x06, 0x06, 0x07, 0x11, 0x21, 0x11, 0x26, 0x26, + 0x04, 0x13, 0x52, 0xC0, 0x66, 0x6F, 0xC1, 0x93, 0x52, 0x5A, 0x99, 0xBE, + 0x64, 0x8B, 0xE4, 0x89, 0xFC, 0xF1, 0x3A, 0x8F, 0x4E, 0x5F, 0xBE, 0xFE, + 0xE3, 0x4B, 0x90, 0x3C, 0x02, 0x28, 0x35, 0x8E, 0xC6, 0x68, 0x34, 0x3E, + 0x58, 0x9B, 0xCB, 0x74, 0x73, 0xCB, 0x9A, 0x58, 0x8C, 0xF4, 0x9C, 0x02, + 0x13, 0x1B, 0xFE, 0xB8, 0x32, 0x3C, 0x3A, 0x03, 0x6C, 0x01, 0x43, 0x36, + 0xFE, 0xE8, 0x01, 0x20, 0x35, 0x3C, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0xCF, + 0x06, 0x8E, 0x05, 0x49, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, + 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x21, 0x15, 0x21, 0x22, + 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x17, 0x17, 0x03, 0x72, 0xFD, 0x44, + 0x02, 0xBC, 0x93, 0xF4, 0x30, 0x70, 0x6E, 0x31, 0x08, 0x2B, 0x60, 0x64, + 0x2F, 0x03, 0xA6, 0xFC, 0x5A, 0x2F, 0x64, 0x60, 0x2B, 0x08, 0x25, 0x51, + 0x54, 0x51, 0x24, 0xF4, 0x31, 0x02, 0xBD, 0x02, 0xBD, 0x93, 0xF3, 0x31, + 0x64, 0x61, 0x2B, 0x42, 0x05, 0x07, 0x06, 0xD4, 0x05, 0x09, 0x03, 0x42, + 0x20, 0x47, 0x4B, 0x4B, 0x24, 0xF3, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0xCF, + 0x09, 0xA6, 0x05, 0x48, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, + 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x21, 0x15, 0x21, 0x22, + 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x17, 0x17, 0x03, 0x73, 0xFD, 0x43, + 0x02, 0xBD, 0x92, 0xF4, 0x30, 0x6F, 0x6F, 0x31, 0x08, 0x2B, 0x60, 0x64, + 0x2F, 0x06, 0xBE, 0xF9, 0x42, 0x2F, 0x64, 0x60, 0x2B, 0x08, 0x25, 0x51, + 0x54, 0x51, 0x24, 0xF4, 0x31, 0x02, 0xBD, 0x02, 0xBC, 0x91, 0xF4, 0x30, + 0x65, 0x61, 0x2B, 0x42, 0x04, 0x08, 0x06, 0xD4, 0x05, 0x08, 0x04, 0x42, + 0x20, 0x47, 0x4B, 0x4B, 0x24, 0xF3, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0xCE, + 0x14, 0x60, 0x05, 0x49, 0x00, 0x08, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, + 0x01, 0x21, 0x15, 0x21, 0x01, 0x03, 0x73, 0xFD, 0x43, 0x02, 0xBD, 0x93, + 0xFE, 0x3E, 0x12, 0x1C, 0xED, 0xE4, 0x01, 0xC2, 0x32, 0x02, 0xBE, 0x02, + 0xBD, 0x92, 0xFE, 0x3F, 0xD4, 0xFE, 0x3F, 0x00, 0x03, 0x00, 0xB6, 0xFF, + 0xCE, 0x06, 0x8E, 0x05, 0x49, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0D, 0x00, + 0x00, 0x45, 0x01, 0x01, 0x17, 0x09, 0x02, 0x27, 0x21, 0x15, 0x01, 0x37, + 0x21, 0x15, 0x03, 0x73, 0xFD, 0x43, 0x02, 0xBD, 0x93, 0xFD, 0xD3, 0x02, + 0x2D, 0xFE, 0x5C, 0xCF, 0x04, 0xFB, 0xFB, 0x05, 0xCF, 0x04, 0x2C, 0x32, + 0x02, 0xBE, 0x02, 0xBD, 0x92, 0xFD, 0xD5, 0xFD, 0xD3, 0x01, 0x0A, 0xCF, + 0xCF, 0x01, 0x75, 0xCF, 0xCF, 0x00, 0x03, 0x00, 0xB6, 0xFF, 0xCE, 0x09, + 0xA6, 0x05, 0x49, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x45, + 0x01, 0x01, 0x17, 0x09, 0x02, 0x27, 0x21, 0x15, 0x01, 0x37, 0x21, 0x15, + 0x03, 0x73, 0xFD, 0x43, 0x02, 0xBD, 0x93, 0xFD, 0xD3, 0x02, 0x2D, 0xFE, + 0x5C, 0xCF, 0x08, 0x13, 0xF7, 0xED, 0xCF, 0x07, 0x44, 0x32, 0x02, 0xBE, + 0x02, 0xBD, 0x92, 0xFD, 0xD5, 0xFD, 0xD3, 0x01, 0x0A, 0xCF, 0xCF, 0x01, + 0x75, 0xCF, 0xCF, 0x00, 0x01, 0x00, 0xEC, 0xFF, 0xCF, 0x06, 0xC4, 0x05, + 0x49, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x27, 0x37, 0x3E, 0x03, 0x37, 0x17, + 0x0E, 0x02, 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, + 0x02, 0x27, 0x27, 0x37, 0x01, 0x04, 0x07, 0x92, 0xF3, 0x24, 0x51, 0x55, + 0x50, 0x25, 0x08, 0x2A, 0x60, 0x64, 0x30, 0xFC, 0x5B, 0x03, 0xA5, 0x30, + 0x64, 0x60, 0x2A, 0x08, 0x30, 0x6F, 0x6F, 0x31, 0xF4, 0x93, 0x02, 0xBD, + 0x31, 0x92, 0xF3, 0x24, 0x4B, 0x4B, 0x47, 0x20, 0x42, 0x03, 0x09, 0x05, + 0xD4, 0x06, 0x07, 0x05, 0x42, 0x2B, 0x61, 0x64, 0x31, 0xF3, 0x93, 0xFD, + 0x43, 0x00, 0x01, 0x00, 0xEC, 0xFF, 0xCF, 0x09, 0xDC, 0x05, 0x48, 0x00, + 0x1B, 0x00, 0x00, 0x45, 0x27, 0x37, 0x3E, 0x03, 0x37, 0x17, 0x0E, 0x02, + 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x27, + 0x27, 0x37, 0x01, 0x07, 0x1F, 0x93, 0xF4, 0x24, 0x51, 0x55, 0x50, 0x25, + 0x08, 0x2A, 0x60, 0x64, 0x30, 0xF9, 0x43, 0x06, 0xBD, 0x30, 0x64, 0x60, + 0x2A, 0x08, 0x30, 0x6F, 0x6F, 0x31, 0xF4, 0x93, 0x02, 0xBD, 0x31, 0x92, + 0xF3, 0x24, 0x4B, 0x4B, 0x47, 0x20, 0x42, 0x04, 0x08, 0x05, 0xD4, 0x06, + 0x08, 0x04, 0x42, 0x2B, 0x61, 0x65, 0x30, 0xF4, 0x91, 0xFD, 0x44, 0x00, + 0x01, 0x00, 0xEC, 0xFF, 0xCE, 0x14, 0x96, 0x05, 0x49, 0x00, 0x08, 0x00, + 0x00, 0x45, 0x27, 0x01, 0x21, 0x35, 0x21, 0x01, 0x37, 0x01, 0x11, 0xD8, + 0x93, 0x01, 0xC3, 0xED, 0xE4, 0x12, 0x1C, 0xFE, 0x3D, 0x93, 0x02, 0xBE, + 0x32, 0x93, 0x01, 0xC1, 0xD4, 0x01, 0xC1, 0x92, 0xFD, 0x43, 0x00, 0x03, + 0x00, 0xEC, 0xFF, 0xCE, 0x06, 0xC4, 0x05, 0x49, 0x00, 0x05, 0x00, 0x09, + 0x00, 0x0D, 0x00, 0x00, 0x45, 0x27, 0x01, 0x01, 0x37, 0x01, 0x01, 0x35, + 0x21, 0x07, 0x01, 0x35, 0x21, 0x17, 0x04, 0x08, 0x93, 0x02, 0x2C, 0xFD, + 0xD4, 0x93, 0x02, 0xBC, 0xFA, 0x28, 0x04, 0xFB, 0xD0, 0xFB, 0xD5, 0x04, + 0x2B, 0xD0, 0x32, 0x91, 0x02, 0x2D, 0x02, 0x2B, 0x92, 0xFD, 0x43, 0xFE, + 0xDD, 0xCF, 0xCF, 0x01, 0x75, 0xCF, 0xCF, 0x00, 0x03, 0x00, 0xEC, 0xFF, + 0xCE, 0x09, 0xDC, 0x05, 0x49, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0D, 0x00, + 0x00, 0x45, 0x27, 0x01, 0x01, 0x37, 0x01, 0x01, 0x35, 0x21, 0x07, 0x01, + 0x35, 0x21, 0x17, 0x07, 0x1E, 0x93, 0x02, 0x2D, 0xFD, 0xD3, 0x93, 0x02, + 0xBE, 0xF7, 0x10, 0x08, 0x12, 0xCF, 0xF8, 0xBD, 0x07, 0x43, 0xCF, 0x32, + 0x91, 0x02, 0x2D, 0x02, 0x2B, 0x92, 0xFD, 0x43, 0xFE, 0xDD, 0xCF, 0xCF, + 0x01, 0x75, 0xCF, 0xCF, 0x00, 0x01, 0x00, 0xD3, 0xFF, 0xEC, 0x05, 0x14, + 0x04, 0x2E, 0x00, 0x1B, 0x00, 0x00, 0x77, 0x11, 0x21, 0x15, 0x21, 0x22, + 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x17, 0x01, 0x07, 0x01, 0x2E, 0x02, + 0x27, 0x37, 0x1E, 0x03, 0x15, 0x11, 0xD3, 0x03, 0xCF, 0xFE, 0xB8, 0x45, + 0x96, 0x93, 0x40, 0x29, 0x21, 0x4A, 0x4B, 0x20, 0x02, 0x69, 0x95, 0xFD, + 0x97, 0x21, 0x44, 0x3E, 0x1B, 0x38, 0x03, 0x08, 0x07, 0x04, 0x5F, 0x03, + 0xCF, 0xD3, 0x07, 0x0A, 0x04, 0x39, 0x1B, 0x3F, 0x42, 0x22, 0xFD, 0x97, + 0x96, 0x02, 0x69, 0x22, 0x4A, 0x4A, 0x21, 0x28, 0x30, 0x6C, 0x71, 0x6E, + 0x32, 0xFE, 0xB8, 0x00, 0x01, 0x00, 0xC8, 0xFF, 0xEC, 0x05, 0x09, 0x04, + 0x2E, 0x00, 0x1B, 0x00, 0x00, 0x65, 0x23, 0x11, 0x34, 0x3E, 0x02, 0x37, + 0x17, 0x0E, 0x02, 0x07, 0x01, 0x27, 0x01, 0x3E, 0x02, 0x37, 0x17, 0x0E, + 0x02, 0x23, 0x21, 0x35, 0x21, 0x05, 0x09, 0xD3, 0x05, 0x07, 0x07, 0x03, + 0x39, 0x1B, 0x3F, 0x42, 0x22, 0xFD, 0x97, 0x96, 0x02, 0x69, 0x22, 0x4A, + 0x4A, 0x20, 0x2A, 0x41, 0x93, 0x96, 0x44, 0xFE, 0xB7, 0x03, 0xCF, 0x5F, + 0x01, 0x48, 0x32, 0x6E, 0x71, 0x6C, 0x30, 0x28, 0x21, 0x4A, 0x4A, 0x22, + 0xFD, 0x97, 0x96, 0x02, 0x69, 0x22, 0x42, 0x3F, 0x1B, 0x39, 0x04, 0x0A, + 0x07, 0xD3, 0x00, 0x01, 0x00, 0xC8, 0x00, 0x00, 0x05, 0x09, 0x04, 0x42, + 0x00, 0x1B, 0x00, 0x00, 0x41, 0x11, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, + 0x17, 0x07, 0x2E, 0x02, 0x27, 0x01, 0x37, 0x01, 0x1E, 0x02, 0x17, 0x07, + 0x2E, 0x03, 0x35, 0x11, 0x05, 0x09, 0xFC, 0x31, 0x01, 0x49, 0x44, 0x96, + 0x93, 0x41, 0x2A, 0x20, 0x4A, 0x4A, 0x22, 0xFD, 0x97, 0x96, 0x02, 0x69, + 0x22, 0x42, 0x3F, 0x1B, 0x39, 0x03, 0x07, 0x07, 0x05, 0x03, 0xCF, 0xFC, + 0x31, 0xD3, 0x07, 0x0A, 0x04, 0x39, 0x1B, 0x3E, 0x43, 0x22, 0x02, 0x69, + 0x96, 0xFD, 0x97, 0x21, 0x4B, 0x4A, 0x21, 0x28, 0x30, 0x6C, 0x70, 0x6F, + 0x32, 0x01, 0x48, 0x00, 0x01, 0x00, 0xD3, 0x00, 0x00, 0x05, 0x14, 0x04, + 0x42, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x07, + 0x27, 0x3E, 0x02, 0x37, 0x01, 0x17, 0x01, 0x0E, 0x02, 0x07, 0x27, 0x3E, + 0x02, 0x33, 0x21, 0x15, 0x21, 0xD3, 0xD3, 0x04, 0x07, 0x08, 0x03, 0x38, + 0x1B, 0x3E, 0x44, 0x21, 0x02, 0x69, 0x95, 0xFD, 0x97, 0x20, 0x4B, 0x4A, + 0x21, 0x29, 0x40, 0x93, 0x96, 0x45, 0x01, 0x48, 0xFC, 0x31, 0x03, 0xCF, + 0xFE, 0xB8, 0x32, 0x6F, 0x70, 0x6C, 0x30, 0x28, 0x21, 0x4A, 0x4B, 0x21, + 0x02, 0x69, 0x96, 0xFD, 0x97, 0x22, 0x43, 0x3E, 0x1B, 0x39, 0x04, 0x0A, + 0x07, 0xD3, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0xE9, 0x09, 0xDC, 0x05, 0x2F, + 0x00, 0x33, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, 0x07, 0x0E, 0x02, 0x07, + 0x27, 0x3E, 0x02, 0x33, 0x21, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, + 0x27, 0x27, 0x37, 0x01, 0x01, 0x27, 0x37, 0x3E, 0x03, 0x37, 0x17, 0x0E, + 0x02, 0x23, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x17, 0x17, + 0x03, 0x59, 0xFD, 0x5D, 0x02, 0xA3, 0x92, 0xDA, 0x30, 0x6F, 0x6F, 0x31, + 0x08, 0x2B, 0x60, 0x64, 0x2F, 0x04, 0xC1, 0x30, 0x64, 0x60, 0x2A, 0x08, + 0x30, 0x6F, 0x6F, 0x31, 0xDA, 0x92, 0x02, 0xA4, 0xFD, 0x5C, 0x92, 0xDA, + 0x24, 0x51, 0x55, 0x50, 0x25, 0x08, 0x2A, 0x60, 0x64, 0x30, 0xFB, 0x3F, + 0x2F, 0x64, 0x60, 0x2B, 0x08, 0x25, 0x51, 0x54, 0x51, 0x24, 0xDA, 0x17, + 0x02, 0xA3, 0x02, 0xA3, 0x92, 0xDA, 0x30, 0x65, 0x61, 0x2B, 0x42, 0x04, + 0x08, 0x06, 0x06, 0x08, 0x04, 0x42, 0x2B, 0x61, 0x65, 0x30, 0xDA, 0x92, + 0xFD, 0x5D, 0xFD, 0x5D, 0x92, 0xDA, 0x24, 0x4B, 0x4B, 0x47, 0x20, 0x42, + 0x04, 0x09, 0x05, 0x05, 0x09, 0x04, 0x42, 0x20, 0x47, 0x4B, 0x4B, 0x24, + 0xDA, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0xE9, 0x0D, 0x22, 0x05, 0x2F, 0x00, + 0x33, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, 0x07, 0x0E, 0x02, 0x07, 0x27, + 0x3E, 0x02, 0x33, 0x21, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x27, + 0x27, 0x37, 0x01, 0x01, 0x27, 0x37, 0x3E, 0x03, 0x37, 0x17, 0x0E, 0x02, + 0x23, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x17, 0x17, 0x03, + 0x59, 0xFD, 0x5D, 0x02, 0xA3, 0x92, 0xDA, 0x30, 0x6F, 0x6F, 0x31, 0x08, + 0x2B, 0x60, 0x64, 0x2F, 0x08, 0x07, 0x30, 0x64, 0x60, 0x2A, 0x08, 0x30, + 0x6F, 0x6F, 0x31, 0xDA, 0x92, 0x02, 0xA4, 0xFD, 0x5C, 0x92, 0xDA, 0x24, + 0x51, 0x55, 0x50, 0x25, 0x08, 0x2A, 0x60, 0x64, 0x30, 0xF7, 0xF9, 0x2F, + 0x64, 0x60, 0x2B, 0x08, 0x25, 0x51, 0x54, 0x51, 0x24, 0xDA, 0x17, 0x02, + 0xA3, 0x02, 0xA3, 0x92, 0xDA, 0x30, 0x65, 0x61, 0x2B, 0x42, 0x04, 0x08, + 0x06, 0x06, 0x08, 0x04, 0x42, 0x2B, 0x61, 0x65, 0x30, 0xDA, 0x92, 0xFD, + 0x5D, 0xFD, 0x5D, 0x92, 0xDA, 0x24, 0x4B, 0x4B, 0x47, 0x20, 0x42, 0x04, + 0x09, 0x05, 0x05, 0x09, 0x04, 0x42, 0x20, 0x47, 0x4B, 0x4B, 0x24, 0xDA, + 0x00, 0x04, 0x00, 0xB6, 0xFF, 0xCE, 0x09, 0xDC, 0x05, 0x49, 0x00, 0x05, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x45, 0x27, 0x01, 0x01, + 0x37, 0x09, 0x03, 0x17, 0x09, 0x02, 0x27, 0x21, 0x07, 0x01, 0x37, 0x21, + 0x17, 0x07, 0x1E, 0x93, 0x02, 0x2D, 0xFD, 0xD3, 0x93, 0x02, 0xBE, 0xF9, + 0x97, 0xFD, 0x43, 0x02, 0xBD, 0x93, 0xFD, 0xD3, 0x02, 0x2D, 0xFE, 0x5C, + 0xCF, 0x07, 0x65, 0xCA, 0xF9, 0x65, 0xCF, 0x05, 0xCC, 0xCA, 0x32, 0x91, + 0x02, 0x2D, 0x02, 0x2B, 0x92, 0xFD, 0x43, 0xFD, 0x42, 0x02, 0xBE, 0x02, + 0xBD, 0x92, 0xFD, 0xD5, 0xFD, 0xD3, 0x01, 0x0A, 0xCF, 0xCF, 0x01, 0x75, + 0xCF, 0xCF, 0x00, 0x04, 0x00, 0xB6, 0xFF, 0xCE, 0x0D, 0x22, 0x05, 0x49, + 0x00, 0x05, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x45, 0x27, + 0x01, 0x01, 0x37, 0x09, 0x03, 0x17, 0x09, 0x02, 0x27, 0x21, 0x07, 0x01, + 0x37, 0x21, 0x17, 0x0A, 0x64, 0x93, 0x02, 0x2D, 0xFD, 0xD3, 0x93, 0x02, + 0xBE, 0xF6, 0x51, 0xFD, 0x43, 0x02, 0xBD, 0x93, 0xFD, 0xD3, 0x02, 0x2D, + 0xFE, 0x5C, 0xCF, 0x0A, 0xAB, 0xCA, 0xF6, 0x1F, 0xCF, 0x09, 0x12, 0xCA, + 0x32, 0x91, 0x02, 0x2D, 0x02, 0x2B, 0x92, 0xFD, 0x43, 0xFD, 0x42, 0x02, + 0xBE, 0x02, 0xBD, 0x92, 0xFD, 0xD5, 0xFD, 0xD3, 0x01, 0x0A, 0xCF, 0xCF, + 0x01, 0x75, 0xCF, 0xCF, 0x00, 0x01, 0x00, 0xB6, 0x00, 0x00, 0x06, 0x2F, + 0x05, 0xEB, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x01, 0x01, 0x07, 0x27, 0x2E, + 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, 0x23, 0x11, 0x34, 0x36, 0x36, + 0x37, 0x17, 0x0E, 0x03, 0x07, 0x07, 0xB6, 0x02, 0xBD, 0x02, 0xBC, 0x92, + 0xF3, 0x31, 0x65, 0x61, 0x2A, 0x42, 0x04, 0x08, 0x05, 0xD4, 0x06, 0x08, + 0x04, 0x41, 0x1F, 0x47, 0x4B, 0x4B, 0x24, 0xF3, 0x03, 0x2E, 0x02, 0xBD, + 0xFD, 0x43, 0x93, 0xF4, 0x31, 0x6F, 0x6F, 0x30, 0x08, 0x2A, 0x60, 0x64, + 0x30, 0xFC, 0x48, 0x03, 0xB8, 0x30, 0x64, 0x60, 0x2A, 0x08, 0x25, 0x50, + 0x55, 0x51, 0x24, 0xF4, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0xE7, 0x06, 0x2F, + 0x05, 0xD2, 0x00, 0x1B, 0x00, 0x00, 0x49, 0x02, 0x37, 0x17, 0x1E, 0x02, + 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x07, + 0x27, 0x3E, 0x03, 0x37, 0x37, 0x06, 0x2F, 0xFD, 0x43, 0xFD, 0x44, 0x91, + 0xF4, 0x30, 0x65, 0x61, 0x2B, 0x43, 0x03, 0x09, 0x05, 0xD4, 0x05, 0x09, + 0x04, 0x41, 0x20, 0x47, 0x4B, 0x4B, 0x23, 0xF3, 0x02, 0xA4, 0xFD, 0x43, + 0x02, 0xBD, 0x93, 0xF4, 0x30, 0x70, 0x6E, 0x31, 0x08, 0x2A, 0x61, 0x64, + 0x2F, 0x03, 0xB8, 0xFC, 0x48, 0x2F, 0x64, 0x61, 0x2A, 0x08, 0x25, 0x50, + 0x55, 0x51, 0x24, 0xF4, 0x00, 0x02, 0x00, 0xB7, 0x00, 0x00, 0x05, 0xFC, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1F, 0x00, 0x00, 0x73, 0x35, 0x21, 0x15, + 0x01, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x37, + 0x37, 0x17, 0x01, 0x01, 0x37, 0x17, 0x1E, 0x03, 0x17, 0x07, 0x2E, 0x02, + 0xBB, 0x05, 0x3C, 0xFC, 0xF8, 0xD4, 0x05, 0x08, 0x05, 0x42, 0x2B, 0x61, + 0x65, 0x30, 0xDA, 0x92, 0xFD, 0x5D, 0xFD, 0x5E, 0x92, 0xD9, 0x24, 0x4B, + 0x4B, 0x47, 0x20, 0x42, 0x04, 0x08, 0x06, 0xD4, 0xD4, 0x03, 0x41, 0x02, + 0x91, 0xFD, 0x6F, 0x2F, 0x63, 0x61, 0x2A, 0x08, 0x30, 0x6F, 0x6F, 0x31, + 0xDA, 0x93, 0xFD, 0x5D, 0x02, 0xA3, 0x93, 0xDA, 0x25, 0x50, 0x55, 0x51, + 0x24, 0x08, 0x2A, 0x61, 0x63, 0x00, 0x01, 0x00, 0xB6, 0xFD, 0xF9, 0x05, + 0xFB, 0x07, 0x1F, 0x00, 0x33, 0x00, 0x00, 0x41, 0x01, 0x37, 0x17, 0x1E, + 0x03, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x34, 0x36, 0x36, 0x37, 0x17, + 0x0E, 0x03, 0x07, 0x07, 0x27, 0x01, 0x01, 0x07, 0x27, 0x2E, 0x02, 0x27, + 0x37, 0x1E, 0x02, 0x15, 0x11, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, + 0x37, 0x37, 0x17, 0x03, 0x58, 0xFD, 0x5E, 0x92, 0xD9, 0x24, 0x4B, 0x4B, + 0x47, 0x20, 0x42, 0x04, 0x08, 0x06, 0x06, 0x08, 0x04, 0x42, 0x20, 0x47, + 0x4B, 0x4B, 0x24, 0xD9, 0x92, 0x02, 0xA2, 0x02, 0xA3, 0x92, 0xDA, 0x30, + 0x65, 0x61, 0x2B, 0x42, 0x04, 0x09, 0x05, 0x05, 0x09, 0x04, 0x42, 0x2B, + 0x61, 0x65, 0x30, 0xDA, 0x92, 0xFD, 0xF9, 0x02, 0xA3, 0x93, 0xDA, 0x25, + 0x50, 0x55, 0x51, 0x24, 0x09, 0x2B, 0x60, 0x64, 0x2F, 0x04, 0xC2, 0x2F, + 0x64, 0x61, 0x2A, 0x09, 0x24, 0x51, 0x55, 0x50, 0x25, 0xDA, 0x93, 0x02, + 0xA3, 0xFD, 0x5D, 0x93, 0xDA, 0x31, 0x6F, 0x6F, 0x30, 0x09, 0x2A, 0x61, + 0x64, 0x2F, 0xFB, 0x3E, 0x2F, 0x64, 0x60, 0x2B, 0x09, 0x30, 0x6F, 0x6F, + 0x31, 0xDA, 0x93, 0x00, 0x01, 0x00, 0xB6, 0xFF, 0xCF, 0x08, 0x6A, 0x06, + 0x00, 0x00, 0x2D, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, 0x07, 0x0E, 0x02, + 0x07, 0x27, 0x3E, 0x02, 0x33, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x17, 0x17, 0x03, + 0x73, 0xFD, 0x43, 0x02, 0xBD, 0x92, 0xF4, 0x30, 0x6F, 0x6F, 0x31, 0x08, + 0x2B, 0x60, 0x64, 0x2F, 0x03, 0x87, 0x51, 0x81, 0x4C, 0x4C, 0x81, 0x51, + 0x55, 0x58, 0x8D, 0xE4, 0x87, 0x87, 0xE4, 0x8D, 0xFC, 0x76, 0x2F, 0x64, + 0x60, 0x2B, 0x08, 0x25, 0x51, 0x54, 0x51, 0x24, 0xF4, 0x31, 0x02, 0xBD, + 0x02, 0xBC, 0x91, 0xF4, 0x30, 0x65, 0x61, 0x2B, 0x42, 0x04, 0x09, 0x05, + 0x4B, 0x80, 0x50, 0x50, 0x80, 0x4B, 0xD4, 0x84, 0xE1, 0x8A, 0x8A, 0xE1, + 0x84, 0x05, 0x09, 0x03, 0x42, 0x20, 0x47, 0x4B, 0x4B, 0x24, 0xF3, 0x00, + 0x01, 0x00, 0xA6, 0xFF, 0xCF, 0x08, 0x5B, 0x06, 0x00, 0x00, 0x2D, 0x00, + 0x00, 0x45, 0x27, 0x37, 0x3E, 0x03, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x21, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x21, 0x32, 0x16, 0x16, 0x17, + 0x07, 0x2E, 0x02, 0x27, 0x27, 0x37, 0x01, 0x05, 0x9E, 0x92, 0xF3, 0x24, + 0x51, 0x55, 0x51, 0x24, 0x08, 0x29, 0x61, 0x64, 0x2F, 0xFC, 0x76, 0x8D, + 0xE5, 0x87, 0x87, 0xE5, 0x8D, 0x57, 0x55, 0x4F, 0x82, 0x4C, 0x4C, 0x81, + 0x50, 0x03, 0x88, 0x2F, 0x64, 0x61, 0x29, 0x08, 0x30, 0x6F, 0x6F, 0x31, + 0xF3, 0x92, 0x02, 0xBD, 0x31, 0x92, 0xF3, 0x24, 0x4B, 0x4B, 0x47, 0x20, + 0x42, 0x03, 0x09, 0x05, 0x84, 0xE1, 0x8A, 0x8A, 0xE1, 0x84, 0xD4, 0x4B, + 0x80, 0x50, 0x50, 0x80, 0x4B, 0x05, 0x09, 0x04, 0x42, 0x2B, 0x61, 0x65, + 0x30, 0xF4, 0x91, 0xFD, 0x44, 0xFF, 0xFF, 0x00, 0xB6, 0x00, 0x2C, 0x06, + 0x8E, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x06, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xB6, 0x00, 0x2C, 0x09, 0xA6, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x07, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xB6, 0x00, 0x2C, 0x14, 0x60, 0x05, 0xA6, 0x06, + 0x06, 0x07, 0x08, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xB6, 0x00, 0x2C, 0x06, + 0x8E, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x09, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xB6, 0x00, 0x2C, 0x09, 0xA6, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x0A, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xEC, 0x00, 0x2C, 0x06, 0xC4, 0x05, 0xA6, 0x06, + 0x06, 0x07, 0x0B, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xEC, 0x00, 0x2C, 0x09, + 0xDC, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x0C, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xEC, 0x00, 0x2C, 0x14, 0x96, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x0D, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xEC, 0x00, 0x2C, 0x06, 0xC4, 0x05, 0xA6, 0x06, + 0x06, 0x07, 0x0E, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xEC, 0x00, 0x2C, 0x09, + 0xDC, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x0F, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xB6, 0x00, 0x46, 0x09, 0xDC, 0x05, 0x8C, 0x06, 0x06, 0x07, 0x14, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xB6, 0x00, 0x46, 0x0D, 0x22, 0x05, 0x8C, 0x06, + 0x06, 0x07, 0x15, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xB6, 0x00, 0x2C, 0x09, + 0xDC, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x16, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xB6, 0x00, 0x2C, 0x0D, 0x22, 0x05, 0xA6, 0x06, 0x06, 0x07, 0x17, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xC8, 0x00, 0xB8, 0x05, 0x09, 0x04, 0xFA, 0x06, + 0x07, 0x07, 0x11, 0x00, 0x00, 0x00, 0xCC, 0xFF, 0xFF, 0x00, 0xC8, 0x00, + 0xD8, 0x05, 0x09, 0x05, 0x1A, 0x06, 0x07, 0x07, 0x12, 0x00, 0x00, 0x00, + 0xD8, 0xFF, 0xFF, 0x00, 0xD3, 0x00, 0xD8, 0x05, 0x14, 0x05, 0x1A, 0x06, + 0x07, 0x07, 0x13, 0x00, 0x00, 0x00, 0xD8, 0xFF, 0xFF, 0x00, 0xD3, 0x00, + 0xB8, 0x05, 0x14, 0x04, 0xFA, 0x06, 0x07, 0x07, 0x10, 0x00, 0x00, 0x00, + 0xCC, 0x00, 0x01, 0x00, 0xBA, 0x00, 0x7D, 0x06, 0x6D, 0x04, 0xCA, 0x00, + 0x05, 0x00, 0x00, 0x53, 0x37, 0x01, 0x01, 0x17, 0x01, 0xBA, 0xA8, 0x01, + 0x64, 0x02, 0xFD, 0xAA, 0xFC, 0x59, 0x02, 0x83, 0xAB, 0xFE, 0xA2, 0x02, + 0xFA, 0xA9, 0xFC, 0x5C, 0x00, 0x02, 0x01, 0x4F, 0x00, 0x7D, 0x05, 0x96, + 0x04, 0xBE, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x65, 0x27, 0x01, 0x17, + 0x03, 0x01, 0x37, 0x01, 0x01, 0xFA, 0xAA, 0x03, 0x9B, 0xAB, 0xAC, 0xFC, + 0x65, 0xAA, 0x03, 0x9C, 0x7D, 0xAA, 0x03, 0x97, 0xAA, 0xFC, 0x69, 0x03, + 0x97, 0xAA, 0xFC, 0x69, 0x00, 0x01, 0x00, 0x5A, 0xFF, 0xA2, 0x07, 0xC2, + 0x05, 0xD2, 0x00, 0x02, 0x00, 0x00, 0x53, 0x21, 0x01, 0x5A, 0x07, 0x68, + 0xFC, 0x4B, 0x05, 0xD2, 0xF9, 0xD0, 0x00, 0x01, 0x00, 0x5A, 0x00, 0x00, + 0x07, 0xC1, 0x06, 0x2E, 0x00, 0x02, 0x00, 0x00, 0x73, 0x01, 0x01, 0x5A, + 0x03, 0xB3, 0x03, 0xB4, 0x06, 0x2E, 0xF9, 0xD2, 0x00, 0x01, 0x00, 0x56, + 0xFF, 0x46, 0x06, 0xA3, 0x06, 0x8C, 0x00, 0x02, 0x00, 0x00, 0x45, 0x01, + 0x01, 0x06, 0xA3, 0xF9, 0xB3, 0x06, 0x4D, 0xBA, 0x03, 0xA2, 0x03, 0xA4, + 0x00, 0x01, 0x00, 0xB9, 0xFF, 0x46, 0x07, 0x04, 0x06, 0x8C, 0x00, 0x02, + 0x00, 0x00, 0x57, 0x11, 0x01, 0xB9, 0x06, 0x4B, 0xBA, 0x07, 0x46, 0xFC, + 0x5C, 0x00, 0x02, 0x00, 0x5A, 0xFF, 0xA2, 0x07, 0xC2, 0x05, 0xD2, 0x00, + 0x02, 0x00, 0x05, 0x00, 0x00, 0x53, 0x21, 0x09, 0x03, 0x5A, 0x07, 0x68, + 0xFC, 0x4B, 0xFD, 0xBD, 0x02, 0x43, 0x02, 0x44, 0x05, 0xD2, 0xF9, 0xD0, + 0x05, 0x60, 0xFC, 0x33, 0x03, 0xCD, 0x00, 0x02, 0x00, 0x5A, 0x00, 0x00, + 0x07, 0xC2, 0x06, 0x2E, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x73, 0x01, + 0x01, 0x25, 0x21, 0x01, 0x5A, 0x03, 0xB3, 0x03, 0xB5, 0xFA, 0x08, 0x04, + 0x87, 0xFD, 0xBC, 0x06, 0x2E, 0xF9, 0xD2, 0xD0, 0x03, 0xCB, 0x00, 0x02, + 0x00, 0x56, 0xFF, 0x46, 0x06, 0xA3, 0x06, 0x8C, 0x00, 0x02, 0x00, 0x05, + 0x00, 0x00, 0x45, 0x01, 0x01, 0x03, 0x11, 0x01, 0x06, 0xA3, 0xF9, 0xB3, + 0x06, 0x4D, 0xD0, 0xFC, 0x26, 0xBA, 0x03, 0xA2, 0x03, 0xA4, 0xFA, 0x21, + 0x04, 0x77, 0xFD, 0xC4, 0x00, 0x02, 0x00, 0xB9, 0xFF, 0x46, 0x07, 0x04, + 0x06, 0x8C, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x57, 0x11, 0x09, 0x03, + 0xB9, 0x06, 0x4B, 0xFA, 0x85, 0x03, 0xD9, 0xFC, 0x27, 0xBA, 0x07, 0x46, + 0xFC, 0x5C, 0xFD, 0xC5, 0x02, 0x3B, 0x02, 0x3C, 0x00, 0x03, 0x00, 0x34, + 0x00, 0x00, 0x07, 0xE8, 0x06, 0x8C, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x12, + 0x00, 0x00, 0x73, 0x01, 0x01, 0x25, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x03, 0x33, 0x13, 0x23, 0x34, 0x03, 0xDA, + 0x03, 0xDA, 0xFC, 0x26, 0x3A, 0x51, 0x51, 0x3A, 0x39, 0x51, 0x51, 0x2C, + 0xCA, 0x0B, 0xE1, 0x06, 0x8C, 0xF9, 0x74, 0xC0, 0x01, 0x51, 0x39, 0x3A, + 0x52, 0x52, 0x3A, 0x39, 0x51, 0x01, 0xB1, 0x01, 0xEC, 0x00, 0x01, 0x00, + 0x94, 0xFF, 0xE9, 0x06, 0x94, 0x05, 0xE9, 0x00, 0x13, 0x00, 0x00, 0x45, + 0x22, 0x24, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, + 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x04, 0x03, 0x94, 0x9F, 0xFE, 0xEA, + 0xD4, 0x77, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, + 0x77, 0xD4, 0xFE, 0xEA, 0x17, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, + 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, 0xEA, 0xD4, + 0x77, 0x00, 0x02, 0x00, 0x94, 0xFF, 0xE9, 0x06, 0x94, 0x05, 0xE9, 0x00, + 0x13, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x24, 0x26, 0x02, 0x35, 0x34, + 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, + 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, + 0x02, 0x15, 0x14, 0x1E, 0x02, 0x03, 0x94, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, + 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, + 0xFE, 0xEA, 0x9F, 0x73, 0xC9, 0x99, 0x56, 0x56, 0x99, 0xC9, 0x73, 0x73, + 0xCA, 0x99, 0x56, 0x56, 0x99, 0xCA, 0x17, 0x77, 0xD4, 0x01, 0x16, 0x9F, + 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, + 0xEA, 0xD4, 0x77, 0xD5, 0x56, 0x99, 0xC9, 0x73, 0x73, 0xC9, 0x99, 0x56, + 0x56, 0x99, 0xC9, 0x73, 0x73, 0xC9, 0x99, 0x56, 0x00, 0x01, 0x00, 0xAC, + 0x00, 0x00, 0x06, 0x7E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x73, 0x11, + 0x21, 0x11, 0xAC, 0x05, 0xD2, 0x05, 0xD2, 0xFA, 0x2E, 0x00, 0x02, 0x00, + 0xAC, 0x00, 0x00, 0x06, 0x7E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x73, 0x11, 0x21, 0x11, 0x25, 0x21, 0x11, 0x21, 0xAC, 0x05, 0xD2, + 0xFA, 0xFD, 0x04, 0x32, 0xFB, 0xCE, 0x05, 0xD2, 0xFA, 0x2E, 0xD0, 0x04, + 0x32, 0x00, 0x02, 0x00, 0xAC, 0x00, 0x00, 0x06, 0x7E, 0x05, 0xD2, 0x00, + 0x0C, 0x00, 0x1C, 0x00, 0x00, 0x61, 0x22, 0x35, 0x11, 0x34, 0x33, 0x21, + 0x16, 0x16, 0x15, 0x11, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x11, + 0x34, 0x26, 0x23, 0x21, 0x06, 0x06, 0x15, 0x11, 0x16, 0x16, 0x01, 0x94, + 0xE8, 0xE8, 0x04, 0x00, 0x72, 0x78, 0x02, 0xE8, 0xFC, 0x1B, 0x03, 0xCA, + 0x22, 0x12, 0x12, 0x22, 0xFC, 0x36, 0x21, 0x13, 0x01, 0x12, 0xE8, 0x04, + 0x00, 0xEA, 0x01, 0x77, 0x72, 0xFC, 0x00, 0xE8, 0xD0, 0x12, 0x21, 0x03, + 0xCB, 0x21, 0x13, 0x01, 0x12, 0x21, 0xFC, 0x35, 0x21, 0x12, 0x00, 0x03, + 0x00, 0xAC, 0x00, 0x00, 0x06, 0x7E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x10, + 0x00, 0x20, 0x00, 0x00, 0x41, 0x21, 0x15, 0x21, 0x13, 0x22, 0x35, 0x11, + 0x34, 0x33, 0x21, 0x16, 0x16, 0x15, 0x11, 0x06, 0x23, 0x25, 0x21, 0x32, + 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x21, 0x06, 0x06, 0x15, 0x11, 0x16, + 0x16, 0x01, 0x0E, 0x05, 0x09, 0xFA, 0xF7, 0x86, 0xE8, 0xE8, 0x04, 0x00, + 0x72, 0x78, 0x02, 0xE8, 0xFC, 0x1B, 0x03, 0xCA, 0x22, 0x12, 0x12, 0x22, + 0xFC, 0x36, 0x21, 0x13, 0x01, 0x12, 0x04, 0x02, 0xBA, 0xFC, 0xB8, 0xE8, + 0x04, 0x00, 0xEA, 0x01, 0x77, 0x72, 0xFC, 0x00, 0xE8, 0xD0, 0x12, 0x21, + 0x03, 0xCB, 0x21, 0x13, 0x01, 0x12, 0x21, 0xFC, 0x35, 0x21, 0x12, 0x00, + 0x03, 0x00, 0xAC, 0x00, 0x00, 0x06, 0x7E, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x10, 0x00, 0x20, 0x00, 0x00, 0x41, 0x21, 0x15, 0x21, 0x13, 0x22, 0x35, + 0x11, 0x34, 0x33, 0x21, 0x16, 0x16, 0x15, 0x11, 0x06, 0x23, 0x25, 0x21, + 0x32, 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x21, 0x06, 0x06, 0x15, 0x11, + 0x16, 0x16, 0x01, 0x10, 0x05, 0x08, 0xFA, 0xF8, 0x84, 0xE8, 0xE8, 0x04, + 0x00, 0x72, 0x78, 0x02, 0xE8, 0xFC, 0x1B, 0x03, 0xCA, 0x22, 0x12, 0x12, + 0x22, 0xFC, 0x36, 0x21, 0x13, 0x01, 0x12, 0x02, 0x8A, 0xBA, 0xFE, 0x30, + 0xE8, 0x04, 0x00, 0xEA, 0x01, 0x77, 0x72, 0xFC, 0x00, 0xE8, 0xD0, 0x12, + 0x21, 0x03, 0xCB, 0x21, 0x13, 0x01, 0x12, 0x21, 0xFC, 0x35, 0x21, 0x12, + 0x00, 0x01, 0x00, 0x54, 0xFF, 0x18, 0x07, 0xF8, 0x06, 0xBA, 0x00, 0x03, + 0x00, 0x00, 0x49, 0x03, 0x07, 0xF8, 0xFC, 0x34, 0xFC, 0x28, 0x03, 0xD8, + 0x02, 0xE8, 0xFC, 0x30, 0x03, 0xD0, 0x03, 0xD2, 0x00, 0x04, 0x00, 0x54, + 0xFF, 0x18, 0x07, 0xF8, 0x06, 0xBA, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x00, 0x49, 0x0F, 0x05, 0xD4, 0xFE, 0x58, 0xFE, 0x52, + 0x01, 0xAE, 0x03, 0xCC, 0xFE, 0x57, 0xFE, 0x57, 0x01, 0xA9, 0xFD, 0x63, + 0xFE, 0x51, 0xFE, 0x51, 0x01, 0xAF, 0x03, 0xD1, 0xFE, 0x58, 0xFE, 0x52, + 0x01, 0xAE, 0x05, 0x0C, 0xFE, 0x56, 0x01, 0xAA, 0x01, 0xAE, 0xFC, 0x2E, + 0xFE, 0x52, 0x01, 0xAE, 0x01, 0xAA, 0xFE, 0x56, 0xFE, 0x52, 0x01, 0xAE, + 0x01, 0xAA, 0xFC, 0x2E, 0xFE, 0x58, 0x01, 0xA8, 0x01, 0xAE, 0x00, 0x02, + 0x00, 0x54, 0xFF, 0x18, 0x07, 0xF8, 0x06, 0xBA, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x49, 0x07, 0x07, 0xF8, 0xFC, 0x34, 0xFC, 0x28, 0x03, 0xD8, + 0x02, 0xA7, 0xFD, 0x58, 0xFD, 0x50, 0x02, 0xB0, 0x02, 0xE8, 0xFC, 0x30, + 0x03, 0xD0, 0x03, 0xD2, 0xFC, 0x2E, 0x02, 0xAC, 0xFD, 0x54, 0xFD, 0x55, + 0x00, 0x08, 0x00, 0x54, 0xFF, 0x18, 0x07, 0xF8, 0x06, 0xBA, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1B, + 0x00, 0x1F, 0x00, 0x00, 0x49, 0x03, 0x05, 0x37, 0x27, 0x07, 0x09, 0x03, + 0x05, 0x37, 0x27, 0x07, 0x25, 0x09, 0x02, 0x05, 0x37, 0x27, 0x07, 0x25, + 0x09, 0x02, 0x05, 0x37, 0x27, 0x07, 0x02, 0x03, 0xFE, 0x51, 0x01, 0xAF, + 0x01, 0xAF, 0xFE, 0x51, 0xD6, 0xD6, 0xD4, 0x02, 0xFD, 0xFE, 0x52, 0x01, + 0xAE, 0x01, 0xA8, 0xFE, 0x58, 0xD0, 0xD0, 0xD5, 0x02, 0xF8, 0xFE, 0x57, + 0x01, 0xA9, 0x01, 0xA9, 0xFE, 0x57, 0xD5, 0xD5, 0xD5, 0xFE, 0xB2, 0xFE, + 0x52, 0x01, 0xAE, 0x01, 0xA8, 0xFE, 0x58, 0xD0, 0xD0, 0xD5, 0x01, 0x3A, + 0x01, 0xAE, 0x01, 0xAA, 0xFE, 0x56, 0xD6, 0xD6, 0xD5, 0xD5, 0xFC, 0x30, + 0x01, 0xA8, 0x01, 0xAE, 0xFE, 0x52, 0xD0, 0xD0, 0xD4, 0xD4, 0x7A, 0x01, + 0xAE, 0x01, 0xAA, 0xFE, 0x56, 0xD6, 0xD6, 0xD5, 0xD5, 0x7A, 0x01, 0xAA, + 0x01, 0xAE, 0xFE, 0x52, 0xD1, 0xD1, 0xD6, 0xD6, 0x00, 0x0A, 0x00, 0x9E, + 0xFF, 0x54, 0x07, 0xC6, 0x06, 0x7E, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x23, + 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x33, 0x00, 0x37, 0x00, 0x3B, + 0x00, 0x3F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x26, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x03, 0x11, 0x33, 0x11, 0x05, 0x27, 0x01, 0x17, 0x03, 0x35, 0x21, 0x15, + 0x01, 0x01, 0x37, 0x01, 0x01, 0x11, 0x33, 0x11, 0x25, 0x27, 0x01, 0x17, + 0x01, 0x35, 0x21, 0x15, 0x13, 0x01, 0x37, 0x01, 0x04, 0x32, 0x5B, 0x95, + 0x58, 0x01, 0x59, 0x95, 0x5B, 0x5A, 0x95, 0x59, 0x59, 0x95, 0x5A, 0x2D, + 0x4B, 0x2D, 0x2D, 0x4B, 0x2D, 0x2F, 0x4B, 0x2C, 0x2C, 0x4B, 0x1F, 0x9B, + 0x01, 0x38, 0x6F, 0x01, 0x3C, 0x6D, 0xE5, 0x01, 0xBA, 0xFE, 0xBE, 0xFE, + 0xC4, 0x6F, 0x01, 0x3A, 0xFC, 0xF3, 0x9B, 0xFD, 0x60, 0x6D, 0x01, 0x3A, + 0x6D, 0xFD, 0x85, 0x01, 0xBA, 0x54, 0xFE, 0xC6, 0x6D, 0x01, 0x3A, 0x01, + 0xA0, 0x59, 0x95, 0x5A, 0x5B, 0x96, 0x59, 0x59, 0x96, 0x5B, 0x5A, 0x95, + 0x59, 0xA4, 0x2C, 0x4B, 0x2D, 0x2F, 0x4A, 0x2D, 0x2D, 0x4B, 0x2E, 0x2D, + 0x4B, 0x2C, 0x02, 0x7E, 0x01, 0xBC, 0xFE, 0x44, 0xC1, 0x6D, 0x01, 0x3A, + 0x6D, 0xFD, 0x60, 0x9A, 0x9A, 0xFD, 0x8E, 0x01, 0x3A, 0x6E, 0xFE, 0xC6, + 0xFE, 0xBD, 0x01, 0xBA, 0xFE, 0x46, 0xD5, 0x6E, 0x01, 0x3A, 0x6E, 0x01, + 0x38, 0x9A, 0x9A, 0x01, 0x66, 0x01, 0x3A, 0x6D, 0xFE, 0xC6, 0x00, 0x09, + 0x00, 0x9E, 0xFF, 0x54, 0x07, 0xC6, 0x06, 0x7E, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x27, 0x00, 0x2B, + 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x26, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x03, 0x11, 0x33, 0x11, + 0x05, 0x27, 0x01, 0x17, 0x03, 0x35, 0x21, 0x15, 0x01, 0x01, 0x37, 0x01, + 0x01, 0x11, 0x33, 0x11, 0x25, 0x27, 0x01, 0x17, 0x01, 0x35, 0x21, 0x15, + 0x13, 0x01, 0x37, 0x01, 0x04, 0x32, 0x5B, 0x95, 0x58, 0x01, 0x59, 0x95, + 0x5B, 0x5A, 0x95, 0x59, 0x59, 0x95, 0xA8, 0x9B, 0x01, 0x38, 0x6F, 0x01, + 0x3C, 0x6D, 0xE5, 0x01, 0xBA, 0xFE, 0xBE, 0xFE, 0xC4, 0x6F, 0x01, 0x3A, + 0xFC, 0xF3, 0x9B, 0xFD, 0x60, 0x6D, 0x01, 0x3A, 0x6D, 0xFD, 0x85, 0x01, + 0xBA, 0x54, 0xFE, 0xC6, 0x6D, 0x01, 0x3A, 0x01, 0xA0, 0x59, 0x95, 0x5A, + 0x5B, 0x96, 0x59, 0x59, 0x96, 0x5B, 0x5A, 0x95, 0x59, 0x03, 0x22, 0x01, + 0xBC, 0xFE, 0x44, 0xC1, 0x6D, 0x01, 0x3A, 0x6D, 0xFD, 0x60, 0x9A, 0x9A, + 0xFD, 0x8E, 0x01, 0x3A, 0x6E, 0xFE, 0xC6, 0xFE, 0xBD, 0x01, 0xBA, 0xFE, + 0x46, 0xD5, 0x6E, 0x01, 0x3A, 0x6E, 0x01, 0x38, 0x9A, 0x9A, 0x01, 0x66, + 0x01, 0x3A, 0x6D, 0xFE, 0xC6, 0x00, 0x02, 0x00, 0x83, 0xFF, 0xE8, 0x07, + 0x83, 0x05, 0xF2, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x45, 0x01, 0x26, + 0x26, 0x36, 0x37, 0x36, 0x36, 0x16, 0x17, 0x17, 0x37, 0x36, 0x36, 0x16, + 0x17, 0x16, 0x16, 0x06, 0x07, 0x01, 0x01, 0x36, 0x36, 0x26, 0x27, 0x26, + 0x26, 0x06, 0x07, 0x07, 0x27, 0x26, 0x26, 0x06, 0x07, 0x06, 0x06, 0x16, + 0x17, 0x04, 0x04, 0xFD, 0x14, 0x5A, 0x3B, 0x3C, 0x58, 0x5C, 0xE9, 0xE9, + 0x5B, 0x64, 0x62, 0x5B, 0xE9, 0xE9, 0x5A, 0x5A, 0x3C, 0x3C, 0x59, 0xFD, + 0x16, 0x02, 0x58, 0x31, 0x1F, 0x20, 0x32, 0x31, 0x7F, 0x7F, 0x34, 0xF3, + 0xF4, 0x33, 0x81, 0x7F, 0x33, 0x30, 0x20, 0x21, 0x30, 0x18, 0x02, 0xEC, + 0x5A, 0xED, 0xEC, 0x57, 0x59, 0x3B, 0x3B, 0x59, 0x60, 0x60, 0x59, 0x3B, + 0x3B, 0x59, 0x57, 0xEC, 0xED, 0x5A, 0xFE, 0x3A, 0x02, 0x5A, 0x30, 0x82, + 0x81, 0x2F, 0x30, 0x21, 0x21, 0x32, 0xED, 0xED, 0x32, 0x21, 0x20, 0x32, + 0x2F, 0x81, 0x81, 0x30, 0x00, 0x01, 0x00, 0x83, 0xFF, 0xE8, 0x07, 0x83, + 0x05, 0xF2, 0x00, 0x13, 0x00, 0x00, 0x45, 0x01, 0x26, 0x26, 0x36, 0x37, + 0x36, 0x36, 0x16, 0x17, 0x17, 0x37, 0x36, 0x36, 0x16, 0x17, 0x16, 0x16, + 0x06, 0x07, 0x04, 0x04, 0xFD, 0x14, 0x5A, 0x3B, 0x3C, 0x58, 0x5C, 0xE9, + 0xE9, 0x5B, 0x64, 0x62, 0x5B, 0xE9, 0xE9, 0x5A, 0x5A, 0x3C, 0x3C, 0x59, + 0x18, 0x02, 0xEC, 0x5A, 0xED, 0xEC, 0x57, 0x59, 0x3B, 0x3B, 0x59, 0x60, + 0x60, 0x59, 0x3B, 0x3B, 0x59, 0x57, 0xEC, 0xED, 0x5A, 0xFF, 0xFF, 0x00, + 0x83, 0xFF, 0xE8, 0x07, 0x83, 0x05, 0xF2, 0x06, 0x06, 0x07, 0x49, 0x00, + 0x00, 0x00, 0x01, 0x00, 0xA6, 0xFF, 0xF2, 0x07, 0x8E, 0x06, 0x8C, 0x00, + 0x09, 0x00, 0x00, 0x41, 0x01, 0x13, 0x01, 0x21, 0x13, 0x13, 0x21, 0x01, + 0x13, 0x04, 0x1A, 0xFD, 0xDA, 0xDA, 0xFD, 0xD8, 0x02, 0xA4, 0xD0, 0xD2, + 0x02, 0xA2, 0xFD, 0xDA, 0xD8, 0x01, 0x7E, 0xFE, 0x74, 0x02, 0x86, 0x01, + 0x8E, 0x02, 0x86, 0xFD, 0x7A, 0xFE, 0x72, 0xFD, 0x7A, 0x00, 0x02, 0x00, + 0xA6, 0xFF, 0xF2, 0x07, 0x8E, 0x06, 0x8C, 0x00, 0x09, 0x00, 0x13, 0x00, + 0x00, 0x41, 0x01, 0x13, 0x01, 0x21, 0x13, 0x13, 0x21, 0x01, 0x13, 0x01, + 0x17, 0x03, 0x37, 0x21, 0x03, 0x03, 0x21, 0x17, 0x03, 0x04, 0x1A, 0xFD, + 0xDA, 0xDA, 0xFD, 0xD8, 0x02, 0xA4, 0xD0, 0xD2, 0x02, 0xA2, 0xFD, 0xDA, + 0xD8, 0xFD, 0xDA, 0xED, 0x5E, 0xF3, 0xFE, 0xDC, 0x5E, 0x5B, 0xFE, 0xDA, + 0xF4, 0x60, 0x01, 0x7E, 0xFE, 0x74, 0x02, 0x86, 0x01, 0x8E, 0x02, 0x86, + 0xFD, 0x7A, 0xFE, 0x72, 0xFD, 0x7A, 0x02, 0x54, 0xAA, 0x01, 0x19, 0xAF, + 0x01, 0x1D, 0xFE, 0xE3, 0xAF, 0xFE, 0xE7, 0x00, 0x01, 0x00, 0x95, 0x00, + 0x00, 0x07, 0xD7, 0x06, 0x46, 0x00, 0x06, 0x00, 0x00, 0x53, 0x01, 0x01, + 0x21, 0x11, 0x21, 0x11, 0x95, 0x03, 0xA1, 0x03, 0xA1, 0xFE, 0x2D, 0xFC, + 0x65, 0x02, 0xA4, 0x03, 0xA2, 0xFC, 0x5E, 0xFD, 0x5C, 0x02, 0xA4, 0x00, + 0x02, 0x00, 0x95, 0x00, 0x00, 0x07, 0xD7, 0x06, 0x46, 0x00, 0x06, 0x00, + 0x0D, 0x00, 0x00, 0x53, 0x01, 0x01, 0x21, 0x11, 0x21, 0x11, 0x27, 0x33, + 0x11, 0x21, 0x11, 0x33, 0x01, 0x95, 0x03, 0xA1, 0x03, 0xA1, 0xFE, 0x2D, + 0xFC, 0x65, 0x2F, 0xFA, 0x02, 0x05, 0xF9, 0xFE, 0x04, 0x02, 0xA4, 0x03, + 0xA2, 0xFC, 0x5E, 0xFD, 0x5C, 0x02, 0xA4, 0xA3, 0xFD, 0x5B, 0x02, 0xA5, + 0x01, 0xFC, 0x00, 0x04, 0x00, 0x95, 0xFE, 0x98, 0x07, 0xD7, 0x06, 0x46, + 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x15, 0x00, 0x00, 0x41, 0x11, + 0x21, 0x01, 0x01, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x25, 0x21, 0x35, + 0x21, 0x11, 0x21, 0x11, 0x33, 0x01, 0x01, 0x33, 0x02, 0x69, 0xFE, 0x2C, + 0x03, 0xA1, 0x03, 0xA1, 0xFE, 0x2D, 0xFC, 0x65, 0x03, 0x9B, 0xFD, 0x30, + 0x02, 0x05, 0xFD, 0xFB, 0x02, 0x05, 0xF9, 0xFE, 0x04, 0xFE, 0x04, 0xFA, + 0x01, 0x12, 0x01, 0x92, 0x03, 0xA2, 0xFC, 0x5E, 0xFE, 0x6E, 0xFD, 0x86, + 0x01, 0xDC, 0xFE, 0x24, 0x9F, 0xA0, 0x01, 0xDD, 0x01, 0x93, 0x01, 0xFC, + 0xFE, 0x04, 0x00, 0x06, 0x00, 0xCD, 0xFF, 0xDF, 0x06, 0xE1, 0x05, 0xF2, + 0x00, 0x3B, 0x00, 0x49, 0x00, 0x57, 0x00, 0x65, 0x00, 0x73, 0x00, 0x77, + 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x33, + 0x35, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x15, 0x33, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x15, 0x33, 0x1E, 0x02, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x23, 0x15, 0x14, 0x06, + 0x06, 0x27, 0x3E, 0x02, 0x35, 0x35, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x13, 0x33, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x21, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x13, 0x3E, 0x02, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x15, 0x14, 0x16, 0x16, 0x01, 0x33, 0x35, 0x23, 0x02, + 0x18, 0x5B, 0x96, 0x5A, 0x5A, 0x96, 0x5A, 0x9A, 0x9A, 0x5A, 0x96, 0x5A, + 0x5A, 0x96, 0x5B, 0x5C, 0x97, 0x5A, 0xE5, 0x59, 0x97, 0x5B, 0x5C, 0x96, + 0x5A, 0x5A, 0x96, 0x5C, 0x98, 0x98, 0x5C, 0x96, 0x5A, 0x5A, 0x96, 0x5C, + 0x5B, 0x97, 0x59, 0xE5, 0x5A, 0x97, 0x5D, 0x2B, 0x46, 0x29, 0x99, 0x2A, + 0x45, 0x29, 0x29, 0x45, 0x2A, 0x99, 0x29, 0x46, 0x2B, 0x29, 0x45, 0x29, + 0x29, 0x45, 0x03, 0x0F, 0x98, 0x2A, 0x45, 0x29, 0x29, 0x45, 0x2A, 0x2A, + 0x45, 0x29, 0x98, 0x2A, 0x45, 0x29, 0x29, 0x45, 0x2A, 0x98, 0x29, 0x45, + 0xFD, 0xFA, 0xE5, 0xE5, 0x21, 0x5A, 0x96, 0x5B, 0x5C, 0x97, 0x5A, 0x01, + 0xE4, 0x59, 0x97, 0x5C, 0x5B, 0x96, 0x59, 0x5A, 0x95, 0x5B, 0x99, 0x99, + 0x5B, 0x96, 0x59, 0x59, 0x96, 0x5B, 0x5C, 0x96, 0x5A, 0xE4, 0x01, 0x5A, + 0x97, 0x5C, 0x5B, 0x96, 0x5A, 0x5A, 0x96, 0x5B, 0x99, 0x99, 0x5B, 0x96, + 0x5A, 0xB3, 0x01, 0x28, 0x46, 0x29, 0x99, 0x29, 0x45, 0x2B, 0x29, 0x46, + 0x28, 0x03, 0x7C, 0x99, 0x2A, 0x44, 0x28, 0x28, 0x44, 0x2A, 0x2B, 0x45, + 0x29, 0x29, 0x46, 0x2A, 0x2A, 0x44, 0x28, 0x28, 0x44, 0x2A, 0xFB, 0xEA, + 0x01, 0x28, 0x46, 0x29, 0x2A, 0x46, 0x29, 0x99, 0x29, 0x46, 0x28, 0x01, + 0xE5, 0xE4, 0x00, 0x01, 0x00, 0xB6, 0x02, 0xEA, 0x05, 0x80, 0x05, 0xE0, + 0x00, 0x05, 0x00, 0x00, 0x41, 0x27, 0x01, 0x01, 0x07, 0x01, 0x01, 0x47, + 0x91, 0x02, 0x64, 0x02, 0x66, 0x91, 0xFE, 0x2B, 0x02, 0xEA, 0x91, 0x02, + 0x65, 0xFD, 0x9B, 0x91, 0x01, 0xD2, 0x00, 0x02, 0x00, 0xB6, 0x01, 0x97, + 0x05, 0x80, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x53, 0x35, + 0x21, 0x15, 0x01, 0x27, 0x01, 0x01, 0x07, 0x01, 0xB9, 0x04, 0xC4, 0xFB, + 0xCA, 0x91, 0x02, 0x64, 0x02, 0x66, 0x91, 0xFE, 0x2B, 0x04, 0xFE, 0xD4, + 0xD4, 0xFC, 0x99, 0x92, 0x02, 0x64, 0xFD, 0x9C, 0x92, 0x01, 0xD3, 0x00, + 0x01, 0x00, 0xB6, 0xFF, 0xE8, 0x05, 0x80, 0x02, 0xDE, 0x00, 0x05, 0x00, + 0x00, 0x41, 0x17, 0x01, 0x01, 0x37, 0x01, 0x04, 0xEF, 0x91, 0xFD, 0x9B, + 0xFD, 0x9B, 0x91, 0x01, 0xD4, 0x02, 0xDE, 0x91, 0xFD, 0x9B, 0x02, 0x65, + 0x91, 0xFE, 0x2E, 0x00, 0x03, 0x00, 0x52, 0xFF, 0xE8, 0x05, 0xE4, 0x05, + 0x0C, 0x00, 0x05, 0x00, 0x26, 0x00, 0x33, 0x00, 0x00, 0x45, 0x01, 0x37, + 0x01, 0x01, 0x17, 0x05, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x36, + 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x35, 0x23, 0x06, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x35, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x03, 0x1A, 0xFD, 0x38, 0x6C, 0x02, 0x5C, 0x02, 0x5D, 0x6D, 0xFC, 0xD0, + 0x61, 0x7E, 0x44, 0x73, 0x46, 0x56, 0x4A, 0x32, 0x2E, 0x2D, 0x37, 0x06, + 0xBD, 0x08, 0x49, 0x82, 0x5A, 0x5B, 0x83, 0x47, 0xC5, 0x04, 0x1B, 0x5D, + 0x0A, 0x3A, 0x47, 0x15, 0x45, 0x1F, 0x2C, 0x37, 0x32, 0x18, 0x02, 0xCA, + 0x6A, 0xFD, 0xA3, 0x02, 0x5D, 0x6A, 0x0D, 0x57, 0x58, 0x42, 0x4D, 0x24, + 0x06, 0x06, 0x10, 0x1C, 0x03, 0x1B, 0x1E, 0x1F, 0x1B, 0x06, 0x3C, 0x58, + 0x31, 0x31, 0x5B, 0x40, 0xFE, 0x6F, 0x52, 0x2F, 0x2D, 0x84, 0x32, 0x28, + 0x36, 0x07, 0x0B, 0x04, 0x07, 0x20, 0x1D, 0x1A, 0x1C, 0x00, 0x02, 0x00, + 0xA6, 0x00, 0x00, 0x07, 0x60, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x0B, 0x00, + 0x00, 0x41, 0x21, 0x15, 0x21, 0x21, 0x35, 0x21, 0x01, 0x21, 0x15, 0x21, + 0x01, 0x04, 0xA8, 0x02, 0xB8, 0xFD, 0x48, 0xFB, 0xFE, 0x02, 0x59, 0x02, + 0x85, 0x01, 0xDC, 0xFD, 0xA8, 0xFD, 0x7B, 0x05, 0xD2, 0xD5, 0xD5, 0xFB, + 0x02, 0xD4, 0x04, 0xFD, 0x00, 0x02, 0x00, 0xA6, 0x00, 0x00, 0x07, 0x60, + 0x05, 0xD2, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x21, 0x01, + 0x21, 0x15, 0x21, 0x01, 0x21, 0x35, 0x21, 0x15, 0xA6, 0x01, 0xDD, 0x02, + 0x85, 0x02, 0x58, 0xFE, 0x24, 0xFD, 0x7B, 0x01, 0xA9, 0x02, 0xB8, 0xD4, + 0x04, 0xFE, 0xD5, 0xFB, 0x03, 0xD4, 0xD4, 0x00, 0x03, 0x00, 0xD4, 0x00, + 0x00, 0x06, 0xA6, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x06, 0x00, 0x26, 0x00, + 0x00, 0x41, 0x37, 0x01, 0x07, 0x01, 0x11, 0x21, 0x17, 0x35, 0x32, 0x04, + 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x04, 0x23, 0x22, 0x24, 0x26, 0x02, + 0x35, 0x33, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, + 0x02, 0x01, 0x18, 0x95, 0x02, 0x5A, 0x94, 0xFD, 0x61, 0x02, 0x22, 0xC8, + 0x9B, 0x01, 0x0D, 0xCD, 0x73, 0x73, 0xCD, 0xFE, 0xF3, 0x9B, 0x9A, 0xFE, + 0xF2, 0xCE, 0x74, 0xD4, 0x53, 0x93, 0xC1, 0x6F, 0x6E, 0xC1, 0x92, 0x53, + 0x53, 0x92, 0xC1, 0x04, 0xF9, 0x95, 0xFD, 0xA5, 0x94, 0x01, 0x11, 0x02, + 0x22, 0xD5, 0xD5, 0x74, 0xCD, 0xFE, 0xF2, 0x9B, 0x9A, 0xFE, 0xF2, 0xCC, + 0x74, 0x74, 0xCC, 0x01, 0x0E, 0x9A, 0x6E, 0xC1, 0x92, 0x53, 0x53, 0x91, + 0xC2, 0x6E, 0x6F, 0xC1, 0x93, 0x52, 0x00, 0x02, 0x00, 0xD4, 0x00, 0x00, + 0x06, 0xA6, 0x07, 0x30, 0x00, 0x1F, 0x00, 0x22, 0x00, 0x00, 0x41, 0x35, + 0x32, 0x04, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x04, 0x23, 0x22, 0x24, + 0x26, 0x02, 0x35, 0x33, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, + 0x34, 0x2E, 0x02, 0x03, 0x01, 0x01, 0x03, 0xBE, 0x9B, 0x01, 0x0D, 0xCD, + 0x73, 0x73, 0xCD, 0xFE, 0xF3, 0x9B, 0x9A, 0xFE, 0xF2, 0xCE, 0x74, 0xD4, + 0x53, 0x93, 0xC1, 0x6F, 0x6E, 0xC1, 0x92, 0x53, 0x53, 0x92, 0xC1, 0x49, + 0xFE, 0x25, 0x01, 0xDB, 0x04, 0xFD, 0xD5, 0x74, 0xCD, 0xFE, 0xF2, 0x9B, + 0x9A, 0xFE, 0xF2, 0xCC, 0x74, 0x74, 0xCC, 0x01, 0x0E, 0x9A, 0x6E, 0xC1, + 0x92, 0x53, 0x53, 0x91, 0xC2, 0x6E, 0x6F, 0xC1, 0x93, 0x52, 0xFE, 0x88, + 0x01, 0xD6, 0x01, 0xD5, 0x00, 0x02, 0x00, 0xD4, 0x00, 0x00, 0x06, 0xA6, + 0x07, 0x30, 0x00, 0x1F, 0x00, 0x22, 0x00, 0x00, 0x61, 0x22, 0x24, 0x26, + 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x15, 0x22, 0x0E, 0x02, 0x15, + 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x33, 0x14, 0x02, 0x06, + 0x04, 0x03, 0x11, 0x01, 0x03, 0xBE, 0x9B, 0xFE, 0xF2, 0xCD, 0x74, 0x74, + 0xCD, 0x01, 0x0E, 0x9B, 0x6F, 0xC2, 0x92, 0x53, 0x53, 0x92, 0xC2, 0x6F, + 0x6E, 0xC1, 0x92, 0x53, 0xD4, 0x73, 0xCD, 0xFE, 0xF2, 0xC2, 0x01, 0xDB, + 0x74, 0xCC, 0x01, 0x0E, 0x9A, 0x9B, 0x01, 0x0E, 0xCD, 0x74, 0xD5, 0x52, + 0x93, 0xC1, 0x6F, 0x6E, 0xC2, 0x91, 0x53, 0x53, 0x92, 0xC1, 0x6E, 0x9A, + 0xFE, 0xF2, 0xCC, 0x74, 0x03, 0x85, 0x03, 0xAB, 0xFE, 0x2B, 0x00, 0x04, + 0x00, 0x9A, 0x00, 0x00, 0x08, 0xEC, 0x05, 0xD2, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x61, 0x01, 0x01, 0x21, 0x11, 0x25, + 0x21, 0x11, 0x21, 0x01, 0x01, 0x07, 0x01, 0x37, 0x11, 0x27, 0x01, 0x17, + 0x03, 0x7E, 0xFD, 0x1C, 0x02, 0xE4, 0x05, 0x6E, 0xFA, 0xE9, 0x04, 0x44, + 0xFB, 0xBC, 0xFD, 0xEA, 0x05, 0x6D, 0x8F, 0xFD, 0x35, 0x8D, 0x8D, 0x02, + 0xCB, 0x8F, 0x02, 0xE8, 0x02, 0xEA, 0xFA, 0x2E, 0xD0, 0x04, 0x32, 0xFD, + 0xE6, 0xFE, 0xE8, 0x91, 0x02, 0xC3, 0x91, 0xFC, 0xAC, 0x91, 0x02, 0xC3, + 0x91, 0x00, 0x04, 0x00, 0xA6, 0x00, 0x00, 0x08, 0xFA, 0x05, 0xD2, 0x00, + 0x04, 0x00, 0x08, 0x00, 0x0C, 0x00, 0x11, 0x00, 0x00, 0x73, 0x11, 0x21, + 0x09, 0x02, 0x27, 0x01, 0x17, 0x03, 0x01, 0x37, 0x01, 0x01, 0x21, 0x01, + 0x01, 0x21, 0xA6, 0x05, 0x6E, 0x02, 0xE6, 0xFD, 0x1A, 0xFC, 0xE0, 0x8D, + 0x02, 0xCB, 0x8D, 0x8D, 0xFD, 0x35, 0x8D, 0x02, 0xCB, 0xFB, 0xB9, 0x04, + 0x44, 0x02, 0x16, 0xFD, 0xEA, 0xFB, 0xBC, 0x05, 0xD2, 0xFD, 0x16, 0xFD, + 0x18, 0x01, 0x3F, 0x91, 0x02, 0xC3, 0x91, 0xFD, 0x3D, 0x02, 0xC3, 0x91, + 0xFD, 0x3D, 0xFF, 0x00, 0x02, 0x18, 0x02, 0x1A, 0x00, 0x04, 0x00, 0x81, + 0x00, 0x00, 0x07, 0x57, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x25, 0x21, 0x11, 0x21, + 0x01, 0x01, 0x37, 0x01, 0x05, 0x27, 0x01, 0x17, 0x81, 0x06, 0xD6, 0xF9, + 0xFA, 0x05, 0x36, 0xFA, 0xCA, 0x03, 0xBB, 0xFD, 0x33, 0x8F, 0x02, 0xCB, + 0xFD, 0x35, 0x8F, 0x02, 0xCD, 0x8D, 0x05, 0xD2, 0xFA, 0x2E, 0xD0, 0x04, + 0x32, 0xFC, 0x3D, 0x02, 0xC3, 0x91, 0xFD, 0x3D, 0x91, 0x91, 0x02, 0xC3, + 0x91, 0x00, 0x02, 0x00, 0x72, 0x00, 0xD9, 0x06, 0x4E, 0x05, 0xE8, 0x00, + 0x03, 0x00, 0x06, 0x00, 0x00, 0x77, 0x11, 0x21, 0x11, 0x09, 0x02, 0x74, + 0x05, 0xD6, 0xFA, 0x28, 0x02, 0xEE, 0x02, 0xEE, 0xD9, 0x01, 0x31, 0xFE, + 0xCF, 0x02, 0x0F, 0x03, 0x00, 0xFD, 0x00, 0x00, 0x04, 0x00, 0xB6, 0x00, + 0xB7, 0x07, 0x25, 0x05, 0xD2, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, + 0x0E, 0x00, 0x00, 0x65, 0x01, 0x01, 0x03, 0x35, 0x21, 0x15, 0x23, 0x11, + 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x02, 0x90, 0xFE, 0x26, 0x01, 0xDA, + 0x96, 0x05, 0x27, 0xCD, 0xD1, 0xFD, 0x99, 0x02, 0x63, 0xB7, 0x01, 0xD5, + 0x01, 0xD5, 0xFD, 0xC2, 0xD1, 0xD1, 0x03, 0xAF, 0xFC, 0x51, 0x02, 0xDB, + 0xD4, 0xD4, 0x00, 0x03, 0x00, 0xB6, 0x00, 0xB7, 0x07, 0x25, 0x05, 0xD2, + 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x65, 0x01, 0x01, 0x03, + 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x11, 0x02, 0x90, 0xFE, 0x26, 0x01, + 0xDA, 0x96, 0x05, 0x27, 0xCD, 0xD1, 0xB7, 0x01, 0xD5, 0x01, 0xD5, 0xFD, + 0xC2, 0xD1, 0xD1, 0x03, 0xAF, 0xFC, 0x51, 0x00, 0x03, 0x00, 0xB8, 0x00, + 0xB7, 0x07, 0x27, 0x05, 0xD2, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, + 0x00, 0x65, 0x11, 0x01, 0x05, 0x11, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, + 0x05, 0x4C, 0x01, 0xDB, 0xF9, 0x91, 0xCF, 0xCB, 0x05, 0x26, 0xB7, 0x03, + 0xAA, 0xFE, 0x2B, 0x69, 0x03, 0xAF, 0xFC, 0x51, 0xD1, 0xD1, 0x00, 0x03, + 0x00, 0xB6, 0x00, 0x00, 0x07, 0x25, 0x06, 0x00, 0x00, 0x02, 0x00, 0x06, + 0x00, 0x0A, 0x00, 0x00, 0x49, 0x02, 0x03, 0x35, 0x21, 0x15, 0x03, 0x11, + 0x33, 0x11, 0x02, 0x90, 0xFE, 0x26, 0x01, 0xDA, 0x96, 0x05, 0x27, 0xCD, + 0xD1, 0x02, 0x55, 0x01, 0xD6, 0x01, 0xD5, 0xFD, 0xC2, 0xD2, 0xD2, 0xFC, + 0x3E, 0x04, 0x94, 0xFB, 0x6C, 0x00, 0x03, 0x00, 0xB8, 0x00, 0x00, 0x07, + 0x27, 0x06, 0x00, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x41, + 0x11, 0x01, 0x01, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x05, 0x4C, + 0x01, 0xDB, 0xF9, 0x91, 0xCF, 0xCB, 0x05, 0x26, 0x02, 0x55, 0x03, 0xAB, + 0xFE, 0x2B, 0xFB, 0xD5, 0x04, 0x94, 0xFB, 0x6C, 0x03, 0xC2, 0xD2, 0xD2, + 0x00, 0x03, 0x00, 0xB8, 0xFF, 0xE8, 0x06, 0x1D, 0x05, 0xD2, 0x00, 0x02, + 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x45, 0x01, 0x21, 0x05, 0x03, 0x33, + 0x11, 0x01, 0x35, 0x21, 0x15, 0x04, 0x48, 0xFE, 0x2A, 0x03, 0xAB, 0xFD, + 0xC1, 0x01, 0xD5, 0xFC, 0x06, 0x03, 0xFA, 0x18, 0x01, 0xDB, 0x95, 0x04, + 0xA0, 0xFB, 0x60, 0x03, 0xD4, 0xD0, 0xD0, 0x00, 0x03, 0x00, 0xA6, 0x01, + 0x13, 0x07, 0x7C, 0x04, 0xBD, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, + 0x00, 0x49, 0x03, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x03, 0xE3, + 0xFE, 0x26, 0x01, 0xDA, 0xFC, 0xC3, 0xD0, 0x01, 0xBF, 0x04, 0x47, 0x01, + 0x13, 0x01, 0xD5, 0x01, 0xD5, 0xFC, 0x58, 0x03, 0xA8, 0xFC, 0x58, 0x01, + 0x6B, 0xD2, 0xD2, 0x00, 0x03, 0x00, 0xA6, 0x01, 0x13, 0x07, 0x7C, 0x04, + 0xBD, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x41, 0x11, 0x01, + 0x05, 0x35, 0x21, 0x15, 0x01, 0x11, 0x33, 0x11, 0x04, 0x3E, 0x01, 0xDC, + 0xFA, 0x8C, 0x04, 0x48, 0x01, 0xBE, 0xD0, 0x01, 0x13, 0x03, 0xAA, 0xFE, + 0x2B, 0x68, 0xD2, 0xD2, 0xFE, 0x95, 0x03, 0xA8, 0xFC, 0x58, 0x00, 0x04, + 0x00, 0x95, 0x00, 0x00, 0x04, 0x40, 0x06, 0x0E, 0x00, 0x02, 0x00, 0x06, + 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x00, 0x53, 0x09, 0x02, 0x35, 0x21, 0x15, + 0x01, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x95, 0x01, 0xD5, 0x01, + 0xD6, 0xFC, 0xD8, 0x02, 0xA5, 0xFE, 0x44, 0xD2, 0xFE, 0x45, 0x02, 0xA5, + 0x04, 0x33, 0x01, 0xDB, 0xFE, 0x25, 0xFD, 0x09, 0xC2, 0xC2, 0xFE, 0xC4, + 0x04, 0xDB, 0xFB, 0x25, 0x02, 0x97, 0xC1, 0xC1, 0x00, 0x04, 0x00, 0x95, + 0xFF, 0xD2, 0x04, 0x40, 0x05, 0xE0, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, + 0x00, 0x0E, 0x00, 0x00, 0x45, 0x01, 0x21, 0x25, 0x35, 0x21, 0x15, 0x01, + 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x02, 0x6A, 0xFE, 0x2B, 0x03, + 0xAB, 0xFC, 0xD8, 0x02, 0xA5, 0xFE, 0x44, 0xD2, 0xFE, 0x45, 0x02, 0xA5, + 0x2E, 0x01, 0xDB, 0xDB, 0xC1, 0xC1, 0xFE, 0x7D, 0x04, 0xDB, 0xFB, 0x25, + 0x02, 0xDD, 0xC2, 0xC2, 0x00, 0x01, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, + 0x08, 0x60, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x24, 0x00, 0x00, 0x02, + 0x35, 0x34, 0x12, 0x00, 0x00, 0x24, 0x33, 0x32, 0x04, 0x00, 0x00, 0x12, + 0x15, 0x14, 0x02, 0x00, 0x00, 0x04, 0x05, 0x8F, 0xE8, 0xFE, 0x5D, 0xFE, + 0xA2, 0xFE, 0xFF, 0x8D, 0x8D, 0x01, 0x01, 0x01, 0x5E, 0x01, 0xA4, 0xE7, + 0xE8, 0x01, 0xA4, 0x01, 0x5D, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, + 0xA3, 0xFE, 0x5C, 0xFD, 0x72, 0x8D, 0x01, 0x01, 0x01, 0x5D, 0x01, 0xA4, + 0xE8, 0xE8, 0x01, 0xA3, 0x01, 0x5E, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, + 0xFE, 0xA2, 0xFE, 0x5D, 0xE8, 0xE8, 0xFE, 0x5C, 0xFE, 0xA3, 0xFE, 0xFF, + 0x8D, 0x00, 0x02, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x00, + 0x17, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, 0x24, 0x00, 0x00, 0x02, 0x35, + 0x34, 0x12, 0x00, 0x00, 0x24, 0x33, 0x32, 0x04, 0x00, 0x00, 0x12, 0x15, + 0x14, 0x02, 0x00, 0x00, 0x04, 0x27, 0x32, 0x24, 0x24, 0x12, 0x12, 0x35, + 0x34, 0x02, 0x02, 0x24, 0x24, 0x23, 0x22, 0x04, 0x04, 0x02, 0x02, 0x15, + 0x14, 0x12, 0x12, 0x04, 0x04, 0x05, 0x8F, 0xE8, 0xFE, 0x5D, 0xFE, 0xA2, + 0xFE, 0xFF, 0x8D, 0x8D, 0x01, 0x01, 0x01, 0x5E, 0x01, 0xA4, 0xE7, 0xE8, + 0x01, 0xA4, 0x01, 0x5D, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA3, + 0xFE, 0x5C, 0xE7, 0xC1, 0x01, 0x5E, 0x01, 0x25, 0xD6, 0x76, 0x76, 0xD7, + 0xFE, 0xDC, 0xFE, 0xA2, 0xC1, 0xC2, 0xFE, 0xA1, 0xFE, 0xDC, 0xD6, 0x77, + 0x77, 0xD6, 0x01, 0x24, 0x01, 0x5F, 0xFD, 0x72, 0x8D, 0x01, 0x01, 0x01, + 0x5D, 0x01, 0xA4, 0xE8, 0xE8, 0x01, 0xA3, 0x01, 0x5E, 0x01, 0x01, 0x8D, + 0x8D, 0xFE, 0xFF, 0xFE, 0xA2, 0xFE, 0x5D, 0xE8, 0xE8, 0xFE, 0x5C, 0xFE, + 0xA3, 0xFE, 0xFF, 0x8D, 0xE4, 0x76, 0xD7, 0x01, 0x25, 0x01, 0x5F, 0xC2, + 0xC2, 0x01, 0x5F, 0x01, 0x24, 0xD8, 0x76, 0x76, 0xD7, 0xFE, 0xDB, 0xFE, + 0xA1, 0xC2, 0xC2, 0xFE, 0xA1, 0xFE, 0xDB, 0xD7, 0x76, 0x00, 0x02, 0x00, + 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x00, 0x0E, 0x00, 0x1E, 0x00, + 0x00, 0x41, 0x26, 0x35, 0x11, 0x34, 0x36, 0x33, 0x21, 0x36, 0x16, 0x15, + 0x11, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x11, 0x34, 0x26, + 0x23, 0x21, 0x22, 0x06, 0x15, 0x11, 0x16, 0x16, 0x01, 0x3A, 0xFA, 0x80, + 0x7A, 0x08, 0x98, 0x7A, 0x80, 0x01, 0x7F, 0x7A, 0xF7, 0x57, 0x08, 0xBA, + 0x12, 0x16, 0x16, 0x12, 0xF7, 0x46, 0x12, 0x18, 0x01, 0x17, 0xFD, 0xA2, + 0x02, 0xFA, 0x08, 0x96, 0x7A, 0x80, 0x01, 0x81, 0x7A, 0xF7, 0x6A, 0x7B, + 0x81, 0xC1, 0x16, 0x12, 0x08, 0xBC, 0x11, 0x17, 0x17, 0x11, 0xF7, 0x44, + 0x12, 0x16, 0xFF, 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, + 0x06, 0x06, 0x07, 0x69, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x06, 0x07, 0x6A, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x02, 0xC7, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x41, 0x03, 0x11, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x49, 0x02, 0x8B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x54, 0x03, 0x0B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x5F, 0x03, 0x0F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x89, 0x03, 0x3F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x8D, 0x02, 0x9B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0xA1, 0x02, 0xAC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x04, 0x89, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x0A, 0x03, 0x45, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x0F, 0x02, 0xEA, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x19, 0x03, 0x60, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x24, 0x01, 0xFF, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x2C, 0x02, 0xA5, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x41, 0x02, 0x8C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x77, 0x03, 0x12, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x7E, 0x02, 0x8B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x80, 0x03, 0x09, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x8D, 0x02, 0xFD, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0x9B, 0x03, 0x05, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xA8, 0x02, 0xB7, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xC8, 0x02, 0xC5, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xCB, 0x01, 0x9A, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xD2, 0x02, 0xCE, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xD8, 0x02, 0xD4, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xF0, 0x03, 0x07, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x3B, 0x02, 0xFD, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x3C, 0x03, 0xCD, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x3D, 0x03, 0x35, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x3F, 0x03, 0x10, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x40, 0x02, 0xBA, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x41, 0x03, 0x28, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x43, 0x03, 0x18, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x44, 0x03, 0x5F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x45, 0x03, 0x1D, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x46, 0x03, 0x1D, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x47, 0x02, 0xFC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x48, 0x03, 0xAE, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x49, 0x03, 0x10, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x4A, 0x02, 0xBB, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x4B, 0x03, 0x30, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x4C, 0x03, 0x30, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x91, 0x04, 0x89, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0x95, 0x03, 0x66, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xAB, 0x03, 0x12, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xB1, 0x03, 0xC7, 0x00, 0x91, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xEA, 0x02, 0xC9, 0x00, 0x9A, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xEB, 0x03, 0x23, 0x00, 0x9A, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xEE, 0x02, 0xF4, 0x00, 0x9B, 0x00, 0x04, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x1F, 0x00, 0x37, 0x00, 0x00, 0x65, 0x11, 0x33, 0x11, 0x01, 0x35, + 0x21, 0x15, 0x01, 0x22, 0x24, 0x00, 0x00, 0x02, 0x35, 0x34, 0x12, 0x00, + 0x00, 0x24, 0x33, 0x32, 0x04, 0x00, 0x00, 0x12, 0x15, 0x14, 0x02, 0x00, + 0x00, 0x04, 0x27, 0x32, 0x24, 0x24, 0x12, 0x12, 0x35, 0x34, 0x02, 0x02, + 0x24, 0x24, 0x23, 0x22, 0x04, 0x04, 0x02, 0x02, 0x15, 0x14, 0x12, 0x12, + 0x04, 0x04, 0x05, 0x20, 0xDD, 0xFC, 0xEC, 0x05, 0x4C, 0xFD, 0x5A, 0xE8, + 0xFE, 0x5D, 0xFE, 0xA2, 0xFE, 0xFF, 0x8D, 0x8D, 0x01, 0x01, 0x01, 0x5E, + 0x01, 0xA4, 0xE7, 0xE8, 0x01, 0xA4, 0x01, 0x5D, 0x01, 0x01, 0x8D, 0x8D, + 0xFE, 0xFF, 0xFE, 0xA3, 0xFE, 0x5C, 0xE7, 0xC1, 0x01, 0x5E, 0x01, 0x25, + 0xD6, 0x76, 0x76, 0xD7, 0xFE, 0xDC, 0xFE, 0xA2, 0xC1, 0xC2, 0xFE, 0xA1, + 0xFE, 0xDC, 0xD6, 0x77, 0x77, 0xD6, 0x01, 0x24, 0x01, 0x5F, 0x43, 0x05, + 0x4D, 0xFA, 0xB3, 0x02, 0x3D, 0xD3, 0xD3, 0xFA, 0xF2, 0x8D, 0x01, 0x01, + 0x01, 0x5D, 0x01, 0xA4, 0xE8, 0xE8, 0x01, 0xA3, 0x01, 0x5E, 0x01, 0x01, + 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA2, 0xFE, 0x5D, 0xE8, 0xE8, 0xFE, 0x5C, + 0xFE, 0xA3, 0xFE, 0xFF, 0x8D, 0xE4, 0x76, 0xD7, 0x01, 0x25, 0x01, 0x5F, + 0xC2, 0xC2, 0x01, 0x5F, 0x01, 0x24, 0xD8, 0x76, 0x76, 0xD7, 0xFE, 0xDB, + 0xFE, 0xA1, 0xC2, 0xC2, 0xFE, 0xA1, 0xFE, 0xDB, 0xD7, 0x76, 0xFF, 0xFF, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xF1, 0x02, 0xF3, 0x00, 0x9B, 0x00, 0x03, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x00, 0x03, 0x00, 0x1B, + 0x00, 0x33, 0x00, 0x00, 0x65, 0x27, 0x01, 0x17, 0x01, 0x22, 0x24, 0x00, + 0x00, 0x02, 0x35, 0x34, 0x12, 0x00, 0x00, 0x24, 0x33, 0x32, 0x04, 0x00, + 0x00, 0x12, 0x15, 0x14, 0x02, 0x00, 0x00, 0x04, 0x27, 0x32, 0x24, 0x24, + 0x12, 0x12, 0x35, 0x34, 0x02, 0x02, 0x24, 0x24, 0x23, 0x22, 0x04, 0x04, + 0x02, 0x02, 0x15, 0x14, 0x12, 0x12, 0x04, 0x04, 0x04, 0x18, 0xAF, 0x03, + 0x9C, 0xAF, 0xFD, 0xDB, 0xE8, 0xFE, 0x5D, 0xFE, 0xA2, 0xFE, 0xFF, 0x8D, + 0x8D, 0x01, 0x01, 0x01, 0x5E, 0x01, 0xA4, 0xE7, 0xE8, 0x01, 0xA4, 0x01, + 0x5D, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA3, 0xFE, 0x5C, 0xE7, + 0xC1, 0x01, 0x5E, 0x01, 0x25, 0xD6, 0x76, 0x76, 0xD7, 0xFE, 0xDC, 0xFE, + 0xA2, 0xC1, 0xC2, 0xFE, 0xA1, 0xFE, 0xDC, 0xD6, 0x77, 0x77, 0xD6, 0x01, + 0x24, 0x01, 0x5F, 0x7A, 0x92, 0x04, 0x4D, 0x92, 0xF8, 0xAB, 0x8D, 0x01, + 0x01, 0x01, 0x5D, 0x01, 0xA4, 0xE8, 0xE8, 0x01, 0xA3, 0x01, 0x5E, 0x01, + 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA2, 0xFE, 0x5D, 0xE8, 0xE8, 0xFE, + 0x5C, 0xFE, 0xA3, 0xFE, 0xFF, 0x8D, 0xE4, 0x76, 0xD7, 0x01, 0x25, 0x01, + 0x5F, 0xC2, 0xC2, 0x01, 0x5F, 0x01, 0x24, 0xD8, 0x76, 0x76, 0xD7, 0xFE, + 0xDB, 0xFE, 0xA1, 0xC2, 0xC2, 0xFE, 0xA1, 0xFE, 0xDB, 0xD7, 0x76, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x05, 0xF2, 0x02, 0xF3, 0x00, 0x9B, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x05, 0xF3, 0x02, 0xF3, 0x00, 0x9B, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x07, 0x18, 0x02, 0x1D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x07, 0x19, 0x02, 0x1D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x07, 0x1A, 0x02, 0x36, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x07, 0x06, 0x01, 0xED, 0x00, 0x5D, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x07, 0x0B, 0x01, 0xB7, 0x00, 0x5D, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x07, 0x30, 0x02, 0x16, 0x00, 0x45, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, + 0x69, 0x00, 0x00, 0x00, 0x07, 0x07, 0x31, 0x02, 0x1D, 0x00, 0x4B, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x02, 0xBE, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x41, 0x02, 0xED, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x49, 0x02, 0x82, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x54, 0x02, 0xB6, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x5F, 0x03, 0x0A, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x89, 0x03, 0x33, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x8D, 0x02, 0x97, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0x97, 0x02, 0x83, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0xA1, 0x02, 0xA3, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x04, 0x80, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x0A, 0x03, 0x53, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x0F, 0x02, 0xBB, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x19, 0x03, 0x3B, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x24, 0x01, 0xF6, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x2C, 0x02, 0x9C, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x41, 0x02, 0x83, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x77, 0x03, 0x09, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x7E, 0x02, 0x82, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x80, 0x03, 0x00, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x8D, 0x02, 0xF4, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0x9B, 0x02, 0xFC, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0xA8, 0x02, 0xAE, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0xC8, 0x02, 0xBC, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0xCB, 0x01, 0x91, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0xD2, 0x02, 0xC5, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0xD8, 0x02, 0xCB, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x01, 0xF0, 0x02, 0xFE, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x3B, 0x02, 0xF4, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x3C, 0x03, 0xC4, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x3D, 0x03, 0x2C, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x3F, 0x03, 0x03, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x40, 0x02, 0xCE, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x41, 0x03, 0x1F, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x43, 0x03, 0x0F, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x44, 0x03, 0x57, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x45, 0x03, 0x14, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x46, 0x03, 0x12, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x47, 0x02, 0xF3, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x48, 0x03, 0xBF, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x49, 0x03, 0x07, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x4A, 0x02, 0xE0, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x4B, 0x03, 0x27, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x4C, 0x03, 0x27, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x91, 0x04, 0x80, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0x95, 0x03, 0x5C, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0xAB, 0x03, 0x09, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0xB1, 0x03, 0xBE, 0x00, 0x91, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0xEA, 0x02, 0xEB, 0x00, 0x9A, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0xEB, 0x02, 0xEB, 0x00, 0x9A, 0xFF, + 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, + 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0xEE, 0x02, 0xEB, 0x00, 0x9B, 0x00, + 0x04, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x65, 0x11, 0x33, 0x11, 0x01, + 0x35, 0x21, 0x15, 0x01, 0x26, 0x35, 0x11, 0x34, 0x36, 0x33, 0x21, 0x36, + 0x16, 0x15, 0x11, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x11, + 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, 0x11, 0x16, 0x16, 0x05, 0x17, + 0xDE, 0xFC, 0xEB, 0x05, 0x4C, 0xF9, 0x0E, 0xFA, 0x80, 0x7A, 0x08, 0x98, + 0x7A, 0x80, 0x01, 0x7F, 0x7A, 0xF7, 0x57, 0x08, 0xBA, 0x12, 0x16, 0x16, + 0x12, 0xF7, 0x46, 0x12, 0x18, 0x01, 0x17, 0x43, 0x05, 0x4D, 0xFA, 0xB3, + 0x02, 0x3D, 0xD3, 0xD3, 0xFB, 0x22, 0x02, 0xFA, 0x08, 0x96, 0x7A, 0x80, + 0x01, 0x81, 0x7A, 0xF7, 0x6A, 0x7B, 0x81, 0xC1, 0x16, 0x12, 0x08, 0xBC, + 0x11, 0x17, 0x17, 0x11, 0xF7, 0x44, 0x12, 0x16, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xF1, 0x02, 0xEA, 0x00, 0x9B, 0x00, 0x03, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x00, 0x03, 0x00, 0x12, 0x00, 0x22, + 0x00, 0x00, 0x65, 0x27, 0x01, 0x17, 0x01, 0x26, 0x35, 0x11, 0x34, 0x36, + 0x33, 0x21, 0x36, 0x16, 0x15, 0x11, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, + 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, 0x11, 0x16, + 0x16, 0x04, 0x0F, 0xAE, 0x03, 0x9C, 0xAE, 0xF9, 0x8F, 0xFA, 0x80, 0x7A, + 0x08, 0x98, 0x7A, 0x80, 0x01, 0x7F, 0x7A, 0xF7, 0x57, 0x08, 0xBA, 0x12, + 0x16, 0x16, 0x12, 0xF7, 0x46, 0x12, 0x18, 0x01, 0x17, 0x7A, 0x92, 0x04, + 0x4D, 0x92, 0xF8, 0xDB, 0x02, 0xFA, 0x08, 0x96, 0x7A, 0x80, 0x01, 0x81, + 0x7A, 0xF7, 0x6A, 0x7B, 0x81, 0xC1, 0x16, 0x12, 0x08, 0xBC, 0x11, 0x17, + 0x17, 0x11, 0xF7, 0x44, 0x12, 0x16, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x05, 0xF2, 0x02, 0xEA, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x05, 0xF3, 0x02, 0xEA, 0x00, 0x9B, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x07, 0x18, 0x02, 0x14, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x07, 0x19, 0x02, 0x14, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x07, 0x1A, 0x02, 0x2D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x07, 0x06, 0x01, 0xE4, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x07, 0x0B, 0x01, 0xAE, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x07, 0x30, 0x02, 0x14, 0x00, 0x45, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, + 0x07, 0x31, 0x02, 0x14, 0x00, 0x4B, 0xFF, 0xFF, 0x00, 0x4F, 0xFD, 0x93, + 0x05, 0x8E, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0xF5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, 0xFD, 0x93, + 0x05, 0x8F, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0xF6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0x93, + 0x05, 0x51, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0xB5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0x93, + 0x04, 0x36, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0x4C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0x93, + 0x05, 0x53, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0xE7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0x93, + 0x04, 0xF6, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4E, 0xFD, 0x93, + 0x04, 0xD5, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0x91, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFD, 0x93, + 0x04, 0x5D, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, + 0x07, 0xF7, 0x01, 0x3B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x6B, 0xFD, 0x93, + 0x01, 0x7A, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x06, + 0x07, 0xF7, 0xF0, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFD, 0x93, 0x02, 0x0A, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x06, 0x07, 0xF7, + 0x2E, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFD, 0x93, 0x04, 0x31, 0x04, 0x42, + 0x06, 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, 0x4F, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x6B, 0xFD, 0x93, 0x02, 0xC9, 0x04, 0x39, + 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x06, 0x07, 0xF7, 0xF1, 0x00, + 0xFF, 0xFF, 0x00, 0x43, 0xFD, 0x93, 0x03, 0xDD, 0x04, 0x43, 0x06, 0x26, + 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, 0x0F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x12, 0xFD, 0x93, 0x02, 0xA1, 0x05, 0x49, 0x06, 0x26, + 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x00, 0x9F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFD, 0x93, 0x02, 0x52, 0x05, 0x49, 0x06, 0x26, + 0x03, 0x87, 0x00, 0x00, 0x00, 0x06, 0x07, 0xF7, 0x51, 0x00, 0x00, 0x01, + 0x00, 0x7B, 0xFD, 0x93, 0x01, 0x8A, 0xFF, 0x87, 0x00, 0x16, 0x00, 0x00, + 0x53, 0x27, 0x36, 0x36, 0x35, 0x34, 0x34, 0x35, 0x33, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xAC, + 0x25, 0x57, 0x48, 0x1C, 0x2C, 0x2A, 0x2F, 0x42, 0x49, 0x39, 0x3C, 0x51, + 0x75, 0xFD, 0x93, 0x57, 0x26, 0x65, 0x5D, 0x08, 0x10, 0x09, 0x28, 0x38, + 0x44, 0x35, 0x35, 0x46, 0x57, 0x54, 0x7D, 0xA1, 0xFF, 0xFF, 0x00, 0x5F, + 0xFE, 0xBF, 0x01, 0xB0, 0x01, 0x24, 0x04, 0x07, 0x07, 0xFE, 0xFF, 0xFB, + 0xFB, 0x40, 0xFF, 0xFF, 0x00, 0x5F, 0xFE, 0xBF, 0x01, 0xB0, 0x04, 0x06, + 0x04, 0x27, 0x07, 0xFE, 0xFF, 0xFB, 0xFB, 0x40, 0x00, 0x07, 0x05, 0xDC, + 0x00, 0x09, 0x02, 0xE0, 0x00, 0x02, 0x00, 0x59, 0xFE, 0xBF, 0x01, 0xAA, + 0x04, 0x06, 0x00, 0x18, 0x00, 0x24, 0x00, 0x00, 0x41, 0x2E, 0x02, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, + 0x33, 0x14, 0x14, 0x15, 0x14, 0x16, 0x16, 0x17, 0x03, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x6D, 0x59, 0x7B, + 0x40, 0x66, 0x49, 0x46, 0x5C, 0x53, 0x3B, 0x35, 0x36, 0x23, 0x27, 0x57, + 0x48, 0x9E, 0x41, 0x5B, 0x5B, 0x41, 0x42, 0x5A, 0x5A, 0xFE, 0xBF, 0x24, + 0x6E, 0x9C, 0x65, 0x67, 0x6B, 0x57, 0x42, 0x42, 0x53, 0x47, 0x33, 0x0C, + 0x16, 0x0C, 0x48, 0x66, 0x4A, 0x20, 0x03, 0xA4, 0x5B, 0x41, 0x41, 0x5B, + 0x5B, 0x41, 0x41, 0x5B, 0xFF, 0xFF, 0x00, 0x64, 0x03, 0x8B, 0x03, 0x71, + 0x05, 0xF0, 0x04, 0x26, 0x07, 0xFD, 0x00, 0x00, 0x00, 0x07, 0x07, 0xFD, + 0x01, 0xBC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x64, 0x03, 0x7F, 0x03, 0x71, + 0x05, 0xE4, 0x04, 0x26, 0x07, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x07, 0xFE, + 0x01, 0xBC, 0x00, 0x00, 0x00, 0x01, 0x00, 0x64, 0x03, 0x8B, 0x01, 0xB5, + 0x05, 0xF0, 0x00, 0x18, 0x00, 0x00, 0x41, 0x17, 0x0E, 0x02, 0x15, 0x14, + 0x14, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x01, 0x78, 0x2C, 0x48, 0x56, 0x27, + 0x23, 0x36, 0x35, 0x3B, 0x53, 0x5C, 0x46, 0x49, 0x66, 0x3F, 0x7C, 0x05, + 0xF0, 0x6C, 0x1E, 0x4B, 0x65, 0x49, 0x0C, 0x16, 0x0C, 0x34, 0x46, 0x53, + 0x42, 0x42, 0x57, 0x6B, 0x67, 0x65, 0x9B, 0x70, 0x00, 0x01, 0x00, 0x64, + 0x03, 0x7F, 0x01, 0xB5, 0x05, 0xE4, 0x00, 0x18, 0x00, 0x00, 0x53, 0x27, + 0x3E, 0x02, 0x35, 0x34, 0x34, 0x35, 0x33, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0xA1, 0x2C, + 0x48, 0x56, 0x27, 0x23, 0x35, 0x36, 0x3B, 0x53, 0x5C, 0x46, 0x4A, 0x65, + 0x3F, 0x7B, 0x03, 0x7F, 0x6B, 0x20, 0x4A, 0x66, 0x48, 0x0C, 0x16, 0x0C, + 0x33, 0x47, 0x53, 0x42, 0x42, 0x57, 0x6B, 0x67, 0x65, 0x9C, 0x6E, 0x00, + 0x01, 0x00, 0x64, 0x03, 0x7F, 0x01, 0xB5, 0x05, 0xE4, 0x00, 0x18, 0x00, + 0x00, 0x41, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, 0x14, 0x14, 0x15, 0x14, 0x16, 0x16, + 0x17, 0x01, 0x78, 0x59, 0x7C, 0x3F, 0x66, 0x49, 0x46, 0x5C, 0x53, 0x3B, + 0x35, 0x36, 0x23, 0x27, 0x56, 0x48, 0x03, 0x7F, 0x24, 0x6E, 0x9C, 0x65, + 0x67, 0x6B, 0x57, 0x42, 0x42, 0x53, 0x47, 0x33, 0x0C, 0x16, 0x0C, 0x48, + 0x66, 0x4A, 0x20, 0x00, 0x02, 0x00, 0x64, 0x03, 0x7F, 0x03, 0x71, 0x05, + 0xE4, 0x00, 0x18, 0x00, 0x31, 0x00, 0x00, 0x41, 0x2E, 0x02, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, + 0x14, 0x14, 0x15, 0x14, 0x16, 0x16, 0x17, 0x05, 0x2E, 0x02, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, + 0x14, 0x14, 0x15, 0x14, 0x16, 0x16, 0x17, 0x03, 0x34, 0x59, 0x7C, 0x3F, + 0x66, 0x49, 0x46, 0x5C, 0x53, 0x3B, 0x35, 0x36, 0x23, 0x27, 0x56, 0x48, + 0xFE, 0x18, 0x59, 0x7C, 0x3F, 0x66, 0x49, 0x46, 0x5C, 0x53, 0x3B, 0x35, + 0x36, 0x23, 0x27, 0x56, 0x48, 0x03, 0x7F, 0x24, 0x6E, 0x9C, 0x65, 0x67, + 0x6B, 0x57, 0x42, 0x42, 0x53, 0x47, 0x33, 0x0C, 0x16, 0x0C, 0x48, 0x66, + 0x4A, 0x20, 0x6B, 0x24, 0x6E, 0x9C, 0x65, 0x67, 0x6B, 0x57, 0x42, 0x42, + 0x53, 0x47, 0x33, 0x0C, 0x16, 0x0C, 0x48, 0x66, 0x4A, 0x20, 0xFF, 0xFF, + 0x00, 0x64, 0xFE, 0xBF, 0x01, 0xB5, 0x01, 0x24, 0x06, 0x07, 0x07, 0xFE, + 0x00, 0x00, 0xFB, 0x40, 0xFF, 0xFF, 0x00, 0x64, 0xFE, 0xBE, 0x03, 0x71, + 0x01, 0x23, 0x04, 0x27, 0x07, 0xFE, 0x00, 0x00, 0xFB, 0x3F, 0x00, 0x07, + 0x07, 0xFE, 0x01, 0xBC, 0xFB, 0x3F, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x52, + 0x05, 0x86, 0x07, 0x89, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, + 0x0A, 0x8F, 0x01, 0x24, 0x01, 0xA4, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xCE, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x52, 0x05, 0x86, 0x07, 0x8C, + 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x01, 0x2A, + 0x01, 0xA4, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xCE, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x7C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x08, 0x78, 0x06, 0x26, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xF8, 0x00, 0x78, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xCE, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x15, 0xFE, 0x52, 0x05, 0x86, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xCE, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x04, 0xE5, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x41, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x7E, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x52, 0x04, 0xE5, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x41, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x83, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x87, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x49, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xFB, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x05, 0x50, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x54, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4D, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x52, 0x05, 0x50, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x54, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x6E, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x52, 0x04, 0x7F, 0x07, 0x8C, 0x06, 0x26, 0x00, 0x5F, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0xDB, 0x01, 0xA4, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x7F, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE0, 0x00, 0x2D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x7F, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x7F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x52, + 0x04, 0x7F, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x7F, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x61, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x89, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x70, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, + 0x05, 0x8E, 0x07, 0x7E, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0xF9, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x05, 0x44, 0x07, 0x7E, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE0, 0x00, 0x8F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x05, 0x44, 0x07, 0x7E, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0xE2, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x52, + 0x05, 0x44, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0xE2, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xBB, 0x00, 0x00, + 0x02, 0x52, 0x07, 0x7E, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE0, 0xFE, 0xB3, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xBB, 0x00, 0x00, + 0x02, 0x52, 0x08, 0xCA, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xF2, 0xFE, 0xAB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x01, 0x8B, 0x07, 0x7E, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x00, 0x05, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x52, + 0x01, 0x8B, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x00, 0x05, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x52, + 0x05, 0x51, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0xB7, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x52, + 0x04, 0x36, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x4E, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xE9, 0xFE, 0x52, + 0x04, 0x36, 0x07, 0x46, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x27, + 0x08, 0xE1, 0x01, 0x4E, 0xF9, 0x6D, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x64, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, 0x9F, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x8E, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x52, 0x06, 0x9F, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x8E, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xEA, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0x52, 0x05, 0x53, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xEA, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, 0x52, 0x05, 0xB6, 0x07, 0x8C, + 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x01, 0x5E, + 0x01, 0xA4, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x02, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x7E, 0x06, 0x26, 0x01, 0x41, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0xAF, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x08, 0x78, 0x06, 0x26, 0x01, 0x41, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xF8, 0x00, 0xAC, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x07, 0x7E, 0x06, 0x26, 0x01, 0x41, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x02, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x4F, 0xFE, 0x52, 0x05, 0xB6, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x41, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x02, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x4F, 0xFE, 0x52, 0x05, 0xB7, 0x06, 0xBB, 0x06, 0x26, 0x01, 0x45, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x02, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, 0x08, 0xA9, 0x06, 0x26, 0x01, 0x41, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xFC, 0x01, 0x17, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x04, 0xCB, 0x07, 0x7E, 0x06, 0x26, 0x01, 0x77, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x7A, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0x00, 0x00, 0x04, 0xF6, 0x07, 0x7E, 0x06, 0x26, 0x01, 0x80, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x8F, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x52, 0x04, 0xF6, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x80, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x9C, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x81, 0xFE, 0x52, 0x04, 0xF6, 0x07, 0x46, 0x06, 0x26, 0x01, 0x80, + 0x00, 0x00, 0x00, 0x27, 0x08, 0xE1, 0x01, 0x9C, 0xF9, 0x6D, 0x00, 0x07, + 0x06, 0xEB, 0x00, 0xEF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4E, 0xFF, 0xE8, + 0x04, 0xD5, 0x08, 0xA7, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xF0, 0x00, 0xD0, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4E, 0xFF, 0xE8, + 0x04, 0xD5, 0x07, 0x7E, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x8E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4E, 0xFE, 0x52, + 0x04, 0xD5, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x94, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x4E, 0xFE, 0x52, + 0x04, 0xD5, 0x07, 0x7E, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x27, + 0x08, 0xE1, 0x01, 0x94, 0xF9, 0x6D, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x8E, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0xDD, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x89, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0x52, 0x04, 0xDD, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x89, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x85, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xCA, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF2, 0x00, 0x7D, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x52, 0x05, 0x33, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x85, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xBE, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF4, 0x00, 0x7D, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xCA, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF6, 0x00, 0x7D, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0x78, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF8, 0x00, 0x81, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x52, 0x05, 0x33, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xD7, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x52, 0x05, 0xE0, 0x06, 0xBB, + 0x06, 0x26, 0x01, 0xA9, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xD7, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xE8, 0x05, 0x33, 0x08, 0xA6, + 0x06, 0x26, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xFB, 0x01, 0x37, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x52, 0x05, 0x7E, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0xC8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xC8, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x07, 0xD6, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x01, 0xA2, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x07, 0xD6, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0xF4, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x52, 0x07, 0xD6, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0xF4, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x6A, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x6E, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x6A, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xC0, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x68, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xBA, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0xFE, 0x52, 0x05, 0x62, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xBC, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x46, 0x00, 0x00, 0x04, 0xCC, 0x07, 0x7E, + 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x87, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x46, 0xFE, 0x52, 0x04, 0xCC, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x86, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x8F, 0x07, 0x7E, + 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xFA, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x7E, + 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFF, 0x40, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x08, 0xCA, + 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF2, 0xFF, 0x39, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x7E, + 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x92, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x48, 0xFE, 0x52, 0x02, 0xE0, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x92, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0x52, 0x03, 0xEE, 0x05, 0xE5, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x28, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x47, 0xFE, 0x52, 0x03, 0xEE, 0x05, 0xE8, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0x86, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x28, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, + 0x03, 0xEE, 0x05, 0xDA, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, + 0x08, 0xE0, 0xD8, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, + 0x06, 0xD4, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF8, + 0xD4, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, 0xEE, 0x03, 0xEE, 0x05, 0xDA, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x2A, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0x52, 0x03, 0xEE, 0x04, 0x42, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x28, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x7E, 0x06, 0xAF, + 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xC8, + 0x00, 0xD5, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, 0x04, 0x7E, 0x05, 0xD2, + 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x73, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x05, 0xDA, + 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4C, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4E, 0x06, 0xAF, + 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0xF9, + 0x00, 0xD5, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x52, 0x04, 0x4E, 0x05, 0xD2, + 0x06, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4E, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x52, 0x04, 0x3E, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0x9C, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x40, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xDA, 0x06, 0x26, 0x02, 0x66, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xEE, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x3E, 0x05, 0xDA, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x40, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x52, 0x04, 0x3E, 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x40, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x12, + 0x00, 0x00, 0x02, 0xB9, 0x07, 0x8C, 0x06, 0x26, 0x02, 0x87, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x00, 0x98, 0x01, 0xB2, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x4E, 0x04, 0x4E, 0x05, 0xDA, 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4A, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xA8, + 0x00, 0x00, 0x04, 0x31, 0x07, 0x7E, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE0, 0xFE, 0xA1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x71, + 0x00, 0x00, 0x04, 0x31, 0x07, 0x7E, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0xFF, 0xF3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0x52, 0x04, 0x31, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x52, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x71, + 0x00, 0x00, 0x01, 0x78, 0x05, 0xDA, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xE1, 0xF3, 0x00, 0xFF, 0xFF, 0xFF, 0xA9, 0x00, 0x00, + 0x02, 0x40, 0x05, 0xDA, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE0, 0xFE, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xA9, 0x00, 0x00, + 0x02, 0x40, 0x07, 0x26, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xF2, 0xFE, 0x9A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x71, 0xFE, 0x52, + 0x01, 0x78, 0x05, 0xDA, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, + 0x08, 0xE1, 0xF3, 0x00, 0x00, 0x07, 0x08, 0xE1, 0xFF, 0xF4, 0xF9, 0x6D, + 0xFF, 0xFF, 0xFF, 0xEB, 0xFE, 0x5B, 0x01, 0x80, 0x05, 0xDA, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x96, 0xA3, 0x00, 0x00, 0x06, + 0x08, 0xE1, 0xF3, 0x00, 0xFF, 0xFF, 0xFF, 0xC3, 0xFE, 0x5E, 0x01, 0x78, + 0x05, 0xDA, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE1, + 0xF4, 0x00, 0xFF, 0xFF, 0xFF, 0x8F, 0xFE, 0x5E, 0x02, 0x59, 0x05, 0xDA, + 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0xFF, 0x1F, + 0xFF, 0xAD, 0x00, 0x06, 0x08, 0xE1, 0xF4, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFE, 0x52, 0x04, 0x5D, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x3E, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, + 0x00, 0x00, 0x03, 0x1D, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xE0, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xCB, 0x01, 0x89, 0x02, 0x60, 0xFF, 0xFF, 0x00, 0x70, + 0xFE, 0x52, 0x01, 0x77, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0xFF, 0xF2, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xD8, + 0xFE, 0x52, 0x02, 0x11, 0x07, 0x46, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, + 0x00, 0x27, 0x08, 0xE1, 0xFF, 0xF2, 0xF9, 0x6D, 0x00, 0x07, 0x06, 0xEB, + 0xFF, 0x53, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x06, 0x8C, + 0x05, 0xDA, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, + 0x02, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, 0x06, 0x8C, + 0x04, 0x42, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, + 0x02, 0x7F, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x31, + 0x05, 0xDA, 0x06, 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, + 0x01, 0x52, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, 0x04, 0x31, + 0x04, 0x42, 0x06, 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, + 0x01, 0x52, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x52, 0x04, 0x5C, + 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, + 0x00, 0xAB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4F, 0xF9, 0x6D, + 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xDA, 0x06, 0x26, + 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xFD, 0x00, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x06, 0xD4, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xF8, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x5C, 0x05, 0xDA, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x52, 0x04, 0x5C, 0x04, 0x44, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4F, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, + 0xFE, 0x52, 0x04, 0x7A, 0x05, 0x20, 0x06, 0x26, 0x03, 0x1A, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x4F, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xE8, 0x04, 0x5C, 0x07, 0x05, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xFC, 0x64, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, + 0x04, 0x7E, 0x05, 0xDA, 0x06, 0x26, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, + 0x02, 0xC9, 0x05, 0xDA, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x00, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x71, 0xFE, 0x52, + 0x02, 0xC9, 0x04, 0x39, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0xFF, 0xF3, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x71, 0xFE, 0x52, + 0x02, 0xC9, 0x05, 0xA2, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x27, + 0x08, 0xE1, 0xFF, 0xF3, 0xF9, 0x6D, 0x00, 0x06, 0x06, 0xEB, 0xFB, 0x00, + 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x07, 0x55, 0x06, 0x26, + 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x08, 0xEF, 0x01, 0x5E, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x07, 0x03, 0x06, 0x26, + 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF0, 0x00, 0x53, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xE7, 0x03, 0xDD, 0x05, 0xDA, 0x06, 0x26, + 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x11, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0x52, 0x03, 0xDD, 0x04, 0x43, 0x06, 0x26, + 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x11, 0xF9, 0x6D, + 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0x52, 0x03, 0xDD, 0x05, 0xDA, 0x06, 0x26, + 0x03, 0x67, 0x00, 0x00, 0x00, 0x27, 0x08, 0xE1, 0x01, 0x11, 0xF9, 0x6D, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x11, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xF8, + 0xFF, 0xFD, 0x02, 0xA1, 0x06, 0xF5, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE0, 0xFE, 0xF0, 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x12, + 0xFF, 0xFD, 0x02, 0xA1, 0x06, 0xF5, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x00, 0x42, 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x12, + 0xFE, 0x52, 0x02, 0xA1, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x00, 0xA2, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, + 0xFF, 0xEC, 0x04, 0x31, 0x05, 0xDA, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, + 0x04, 0x31, 0x07, 0x26, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, + 0x08, 0xF2, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, 0x04, 0x31, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x0C, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, + 0x07, 0x1A, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF4, + 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x07, 0x26, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF6, 0xF8, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x06, 0xD4, 0x06, 0x26, + 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF8, 0xFC, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFE, 0x52, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x5E, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x75, 0xFE, 0x52, 0x04, 0xE4, 0x05, 0x20, 0x06, 0x26, 0x03, 0x94, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x5E, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x31, 0x07, 0x02, 0x06, 0x26, 0x03, 0x91, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xFB, 0x00, 0xB2, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x16, 0xFE, 0x52, 0x04, 0x51, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xD2, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x32, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x05, 0xDA, 0x06, 0x26, 0x03, 0xD6, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0xE6, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0x00, 0x00, 0x06, 0x5B, 0x05, 0xDA, 0x06, 0x26, 0x03, 0xD6, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x38, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0xFE, 0x52, 0x06, 0x5B, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xD6, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x37, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x19, 0x00, 0x00, 0x04, 0x31, 0x05, 0xDA, 0x06, 0x26, 0x03, 0xDF, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xD2, 0x00, 0xFF, 0xFF, 0x00, 0x19, + 0x00, 0x00, 0x04, 0x31, 0x05, 0xDA, 0x06, 0x26, 0x03, 0xDF, 0x00, 0x00, + 0x00, 0x07, 0x08, 0xE1, 0x01, 0x24, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, + 0xFE, 0x5C, 0x04, 0x51, 0x05, 0xDA, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xE0, 0xD8, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0xFE, 0x5C, + 0x04, 0x51, 0x05, 0xDA, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x2A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0xFE, 0x52, + 0x04, 0x51, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x02, 0x6B, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, + 0x03, 0xC5, 0x05, 0xDA, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x11, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0xFE, 0x52, + 0x03, 0xC5, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x12, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x52, + 0x04, 0x4D, 0x05, 0xE5, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x27, + 0x0A, 0x8F, 0x00, 0xA6, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x56, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x52, 0x04, 0x4D, 0x05, 0xE8, + 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0xAC, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x56, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x05, 0xDA, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xFE, 0x00, 0xFF, 0xFF, 0x00, 0x44, + 0xFF, 0xEB, 0x04, 0x4D, 0x06, 0xD4, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xF8, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, + 0x04, 0x4D, 0x05, 0xDA, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x50, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x52, + 0x04, 0x4D, 0x04, 0x42, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x01, 0x56, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x72, 0xFE, 0x52, + 0x01, 0x78, 0x04, 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0xFF, 0xF4, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, + 0x02, 0x5B, 0x07, 0x8C, 0x06, 0x26, 0x02, 0x88, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x00, 0x3A, 0x01, 0xB2, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xFE, + 0x03, 0x1D, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xCB, 0x01, 0x89, 0x02, 0x60, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, + 0x02, 0x0A, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xE1, 0x00, 0x31, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xD8, 0xFE, 0x52, + 0x02, 0x11, 0x07, 0x46, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x27, + 0x08, 0xE1, 0x00, 0x31, 0xF9, 0x6D, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x53, + 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xA9, 0xFF, 0xFD, 0x02, 0x52, 0x06, 0xF5, + 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFE, 0xA1, + 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x71, 0xFF, 0xFD, 0x02, 0x52, 0x06, 0xF5, + 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0xFF, 0xF3, + 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, 0x02, 0x52, 0x05, 0x49, + 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x53, + 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xDA, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x26, 0x06, 0x26, + 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF2, 0xF8, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFE, 0x52, 0x04, 0x31, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x00, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x1A, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xF4, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFF, 0xEB, 0x04, 0x31, 0x07, 0x26, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xF6, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, + 0x04, 0x31, 0x06, 0xD4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, + 0x08, 0xF8, 0xFC, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, 0x04, 0x31, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, + 0x01, 0x52, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x52, 0x04, 0xE4, + 0x05, 0x20, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, + 0x01, 0x52, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, + 0x07, 0x02, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xFB, + 0x00, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x7F, + 0x07, 0x7E, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x2D, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xBB, 0x00, 0x00, 0x02, 0x52, + 0x07, 0x7E, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0xFE, 0xB3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x93, + 0x07, 0x7E, 0x06, 0x26, 0x04, 0x4F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x8E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xCF, + 0x07, 0x7E, 0x06, 0x26, 0x04, 0x2E, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x01, 0xA1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x56, 0xFF, 0xE9, 0x04, 0xA3, + 0x07, 0x7E, 0x06, 0x26, 0x05, 0x3F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x29, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x53, + 0x07, 0x7E, 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x98, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0xB6, + 0x07, 0x7E, 0x06, 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0xAF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, 0x05, 0x83, + 0x07, 0x7E, 0x06, 0x26, 0x04, 0x47, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x77, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x0C, + 0x07, 0x7E, 0x06, 0x26, 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x3E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0xF6, + 0x07, 0x7E, 0x06, 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, + 0x00, 0x62, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, 0x6D, + 0x07, 0x7E, 0x04, 0x26, 0x04, 0x44, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, + 0x04, 0xE2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x01, 0x0B, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x07, 0x7E, 0x06, 0x26, + 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFF, 0x40, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xEA, 0x04, 0x3A, 0x05, 0xDA, 0x06, 0x26, + 0x02, 0x85, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0x0D, 0x00, 0xFF, 0xFF, + 0x00, 0x19, 0x00, 0x00, 0x06, 0x73, 0x05, 0xDA, 0x06, 0x26, 0x04, 0xE9, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0xF3, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x40, 0xFF, 0xF0, 0x03, 0xB1, 0x05, 0xDA, 0x06, 0x26, 0x04, 0xEB, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xA6, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x42, 0x05, 0xDA, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xE0, 0x08, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, + 0x04, 0x5C, 0x05, 0xDA, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x26, + 0x0B, 0x40, 0x03, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xFD, 0x00, 0xFF, 0xFF, + 0x00, 0x3F, 0xFF, 0xE8, 0x04, 0x28, 0x05, 0xDA, 0x06, 0x26, 0x05, 0x10, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xCC, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x1C, 0x05, 0xDA, 0x06, 0x26, 0x05, 0x04, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xE0, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, + 0x05, 0x6B, 0x05, 0xDA, 0x04, 0x26, 0x05, 0x09, 0x00, 0x00, 0x00, 0x27, + 0x02, 0xB2, 0x03, 0xF7, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x9D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x05, 0x1E, 0x07, 0x7E, + 0x06, 0x26, 0x04, 0x26, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x56, + 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xA8, 0xFF, 0xFE, 0x02, 0x40, 0x05, 0xDA, + 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFE, 0xA1, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x05, 0xDA, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x06, 0x8C, 0x06, 0x26, + 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, 0xDC, 0xA2, 0x00, 0xFF, 0xFF, + 0xFF, 0x42, 0xFF, 0xFE, 0x02, 0x9E, 0x06, 0x8C, 0x06, 0x26, 0x04, 0x99, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xDD, 0xFE, 0x3B, 0x00, 0x00, 0xFF, 0xFF, + 0xFF, 0xA9, 0xFF, 0xFE, 0x02, 0x41, 0x07, 0x01, 0x06, 0x26, 0x04, 0x99, + 0x00, 0x00, 0x00, 0x07, 0x08, 0xDF, 0xFF, 0x14, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x31, 0x06, 0x8C, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x06, 0x08, 0xDD, 0x9A, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFF, 0xEB, 0x04, 0x31, 0x06, 0x8C, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, + 0x00, 0x06, 0x08, 0xDC, 0xA2, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEB, + 0x04, 0x31, 0x07, 0x01, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x08, 0xDF, 0x00, 0x73, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x76, 0x03, 0x17, + 0x01, 0x93, 0x04, 0x2E, 0x06, 0x07, 0x08, 0xCB, 0x00, 0x00, 0x03, 0x17, + 0x00, 0x01, 0x00, 0x76, 0x00, 0x00, 0x01, 0x93, 0x01, 0x17, 0x00, 0x03, + 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x76, 0x01, 0x1D, 0x01, 0x17, 0xFE, + 0xE9, 0x00, 0x01, 0x00, 0x76, 0xFE, 0xD6, 0x01, 0x93, 0x01, 0x17, 0x00, + 0x0E, 0x00, 0x00, 0x53, 0x35, 0x33, 0x32, 0x36, 0x35, 0x35, 0x17, 0x23, + 0x11, 0x21, 0x11, 0x14, 0x06, 0x23, 0x76, 0x24, 0x33, 0x38, 0x20, 0xAF, + 0x01, 0x1D, 0x87, 0x7B, 0xFE, 0xD6, 0x83, 0x47, 0x3E, 0x43, 0x21, 0x01, + 0x17, 0xFE, 0xD0, 0x87, 0x8A, 0xFF, 0xFF, 0x00, 0x76, 0x00, 0x00, 0x01, + 0x93, 0x04, 0x21, 0x06, 0x26, 0x08, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xCB, 0x00, 0x00, 0x03, 0x0A, 0xFF, 0xFF, 0x00, 0x76, 0xFE, 0xD6, 0x01, + 0x93, 0x04, 0x21, 0x06, 0x26, 0x08, 0xCC, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xCB, 0x00, 0x00, 0x03, 0x0A, 0xFF, 0xFF, 0x00, 0x76, 0x00, 0x00, 0x05, + 0xA6, 0x01, 0x17, 0x04, 0x26, 0x08, 0xCB, 0x00, 0x00, 0x00, 0x27, 0x08, + 0xCB, 0x02, 0x09, 0x00, 0x00, 0x00, 0x07, 0x08, 0xCB, 0x04, 0x13, 0x00, + 0x00, 0x00, 0x02, 0x00, 0x6D, 0x00, 0x00, 0x01, 0x8A, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x03, 0x21, 0x03, 0x01, 0x11, 0x21, + 0x11, 0x87, 0x15, 0x01, 0x12, 0x15, 0xFE, 0xFE, 0x01, 0x1D, 0x01, 0xB5, + 0x04, 0x1D, 0xFB, 0xE3, 0xFE, 0x4B, 0x01, 0x14, 0xFE, 0xEC, 0x00, 0x02, + 0x00, 0x44, 0x00, 0x00, 0x04, 0x0F, 0x05, 0xE8, 0x00, 0x21, 0x00, 0x25, + 0x00, 0x00, 0x41, 0x35, 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x23, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x02, 0x15, 0x15, 0x01, + 0x11, 0x21, 0x11, 0x01, 0x9C, 0x34, 0x65, 0x49, 0x4C, 0x48, 0x38, 0x66, + 0x44, 0x48, 0x6D, 0x3D, 0xFA, 0x7E, 0xDF, 0x91, 0x8D, 0xD7, 0x79, 0x6B, + 0x65, 0x3E, 0x52, 0x27, 0xFE, 0xFB, 0x01, 0x1D, 0x01, 0xB0, 0x4D, 0x6D, + 0x7E, 0x54, 0x2D, 0x31, 0x72, 0x41, 0x3C, 0x59, 0x30, 0x3A, 0x6F, 0x4E, + 0x8C, 0xCF, 0x72, 0x64, 0xB3, 0x76, 0x72, 0xB4, 0x43, 0x29, 0x46, 0x54, + 0x40, 0x3F, 0xFE, 0x50, 0x01, 0x14, 0xFE, 0xEC, 0xFF, 0xFF, 0x00, 0x76, + 0x02, 0x37, 0x01, 0x93, 0x03, 0x4D, 0x06, 0x07, 0x08, 0xCB, 0x00, 0x00, + 0x02, 0x37, 0x00, 0x02, 0x00, 0x76, 0xFE, 0xD6, 0x01, 0x93, 0x04, 0x21, + 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x41, 0x23, 0x22, 0x26, 0x35, 0x11, + 0x21, 0x11, 0x23, 0x37, 0x15, 0x14, 0x16, 0x33, 0x33, 0x11, 0x21, 0x11, + 0x21, 0x01, 0x93, 0x1B, 0x7A, 0x88, 0x01, 0x1D, 0xAF, 0x21, 0x37, 0x33, + 0x24, 0xFE, 0xE3, 0x01, 0x1D, 0xFE, 0xD6, 0x8A, 0x87, 0x01, 0x30, 0xFE, + 0xE9, 0x21, 0x43, 0x3E, 0x47, 0x03, 0xB1, 0x01, 0x17, 0xFF, 0xFF, 0x00, + 0x76, 0x00, 0x00, 0x03, 0x9D, 0x01, 0x17, 0x04, 0x26, 0x08, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xCB, 0x02, 0x09, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x76, 0x00, 0xD8, 0x01, 0x93, 0x04, 0xF9, 0x06, 0x27, 0x08, 0xCB, 0x00, + 0x00, 0x00, 0xD8, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x00, 0x03, 0xE2, 0xFF, + 0xFF, 0x00, 0x84, 0x00, 0x00, 0x01, 0xA2, 0x01, 0x17, 0x04, 0x06, 0x08, + 0xCB, 0x0E, 0x00, 0xFF, 0xFF, 0x00, 0x84, 0xFE, 0xD6, 0x01, 0xA2, 0x01, + 0x17, 0x04, 0x06, 0x08, 0xCC, 0x0E, 0x00, 0xFF, 0xFF, 0x00, 0x84, 0x00, + 0x00, 0x01, 0xA2, 0x04, 0x21, 0x04, 0x26, 0x08, 0xCB, 0x0E, 0x00, 0x00, + 0x07, 0x08, 0xCB, 0x00, 0x0E, 0x03, 0x0A, 0xFF, 0xFF, 0x00, 0x84, 0xFE, + 0xD6, 0x01, 0xA2, 0x04, 0x21, 0x04, 0x26, 0x08, 0xCC, 0x0E, 0x00, 0x00, + 0x07, 0x08, 0xCB, 0x00, 0x0E, 0x03, 0x0A, 0xFF, 0xFF, 0x00, 0x84, 0x00, + 0xD8, 0x01, 0xA2, 0x04, 0xF9, 0x04, 0x27, 0x08, 0xCB, 0x00, 0x0E, 0x00, + 0xD8, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x0E, 0x03, 0xE2, 0xFF, 0xFF, 0x00, + 0x76, 0x01, 0xB1, 0x01, 0x93, 0x05, 0xD2, 0x06, 0x27, 0x08, 0xCB, 0x00, + 0x00, 0x01, 0xB1, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x00, 0x04, 0xBB, 0x00, + 0x03, 0x01, 0x08, 0x04, 0xE5, 0x04, 0x63, 0x06, 0x8C, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x21, 0x35, 0x33, + 0x15, 0x25, 0x13, 0x33, 0x03, 0x01, 0x08, 0xF0, 0x01, 0x7B, 0xF0, 0xFD, + 0xEC, 0x23, 0xEA, 0x6F, 0x04, 0xE5, 0xF5, 0xF5, 0xF5, 0xF5, 0x73, 0x01, + 0x34, 0xFE, 0xCC, 0x00, 0x03, 0x01, 0x08, 0x04, 0xE5, 0x04, 0x63, 0x06, + 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x23, 0x35, + 0x33, 0x05, 0x23, 0x35, 0x33, 0x05, 0x23, 0x03, 0x33, 0x04, 0x63, 0xF0, + 0xF0, 0xFD, 0x95, 0xF0, 0xF0, 0x01, 0x24, 0x9E, 0x6F, 0xE9, 0x04, 0xE5, + 0xF5, 0xF5, 0xF5, 0x82, 0x01, 0x34, 0xFF, 0xFF, 0x01, 0x08, 0x04, 0xE5, + 0x04, 0x63, 0x06, 0x8C, 0x06, 0x06, 0x08, 0xDC, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x95, 0x04, 0xC5, 0x03, 0x2D, 0x07, 0x01, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x1F, 0x00, 0x00, 0x53, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, + 0x03, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x95, 0xF5, + 0xAD, 0xF5, 0xBD, 0x2C, 0x49, 0x3D, 0x34, 0x16, 0x1D, 0x1D, 0x02, 0x97, + 0x03, 0x64, 0x58, 0x2D, 0x47, 0x3A, 0x34, 0x19, 0x1F, 0x1D, 0x03, 0x94, + 0x03, 0x68, 0x04, 0xC5, 0xEF, 0xEF, 0xEF, 0xEF, 0x01, 0x51, 0x1B, 0x24, + 0x1B, 0x32, 0x24, 0x6B, 0x7C, 0x1C, 0x24, 0x1B, 0x2A, 0x2C, 0x6C, 0x7A, + 0x00, 0x02, 0x01, 0x08, 0x04, 0xE5, 0x03, 0x9F, 0x05, 0xDA, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, + 0x01, 0x08, 0xF5, 0xAD, 0xF5, 0x04, 0xE5, 0xF5, 0xF5, 0xF5, 0xF5, 0x00, + 0x01, 0x00, 0x7E, 0x04, 0xE5, 0x01, 0x85, 0x05, 0xDA, 0x00, 0x03, 0x00, + 0x00, 0x53, 0x35, 0x21, 0x15, 0x7E, 0x01, 0x07, 0x04, 0xE5, 0xF5, 0xF5, + 0xFF, 0xFF, 0x00, 0x7E, 0x04, 0xE5, 0x01, 0x85, 0x05, 0xDA, 0x06, 0x06, + 0x08, 0xE1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x76, 0x04, 0xD6, 0x07, 0xAF, + 0x05, 0xED, 0x04, 0x27, 0x08, 0xCB, 0x00, 0x00, 0x04, 0xD6, 0x00, 0x27, + 0x08, 0xCB, 0x02, 0x09, 0x04, 0xD6, 0x00, 0x27, 0x08, 0xCB, 0x04, 0x13, + 0x04, 0xD6, 0x00, 0x07, 0x08, 0xCB, 0x06, 0x1C, 0x04, 0xD6, 0xFF, 0xFF, + 0x00, 0x76, 0x04, 0xD6, 0x05, 0xA6, 0x05, 0xED, 0x04, 0x27, 0x08, 0xCB, + 0x00, 0x00, 0x04, 0xD6, 0x00, 0x27, 0x08, 0xCB, 0x02, 0x09, 0x04, 0xD6, + 0x00, 0x07, 0x08, 0xCB, 0x04, 0x13, 0x04, 0xD6, 0xFF, 0xFF, 0x00, 0x76, + 0xFE, 0x4C, 0x05, 0xA6, 0xFF, 0x63, 0x04, 0x27, 0x08, 0xCB, 0x00, 0x00, + 0xFE, 0x4C, 0x00, 0x27, 0x08, 0xCB, 0x02, 0x09, 0xFE, 0x4C, 0x00, 0x07, + 0x08, 0xCB, 0x04, 0x13, 0xFE, 0x4C, 0xFF, 0xFF, 0x01, 0x08, 0x04, 0xE5, + 0x03, 0x9F, 0x05, 0xDA, 0x04, 0x06, 0x08, 0xE0, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x7E, 0x04, 0xE5, 0x01, 0x85, 0x05, 0xDA, 0x04, 0x06, 0x08, 0xE1, + 0x00, 0x00, 0x00, 0x03, 0x01, 0x08, 0x04, 0xE5, 0x05, 0x41, 0x05, 0xDA, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, + 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x01, 0x08, 0xF5, 0xAD, + 0xF5, 0xAD, 0xF5, 0x04, 0xE5, 0xF5, 0xF5, 0xF5, 0xF5, 0xF5, 0xF5, 0xFF, + 0xFF, 0xFF, 0xF5, 0xFE, 0x55, 0x03, 0x9D, 0x05, 0xDA, 0x06, 0x26, 0x02, + 0xD0, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x25, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0x00, 0x00, 0x02, 0x5B, 0x07, 0x8C, 0x04, 0x26, 0x02, + 0x86, 0xB3, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x3A, 0x01, 0xB2, 0xFF, + 0xFF, 0x00, 0x7E, 0xFE, 0x52, 0x01, 0x85, 0xFF, 0x47, 0x04, 0x07, 0x08, + 0xE1, 0x00, 0x00, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x76, 0x00, 0x00, 0x01, + 0x93, 0x01, 0x17, 0x06, 0x06, 0x08, 0xCB, 0x00, 0x00, 0xFF, 0xFF, 0x01, + 0x08, 0x04, 0xE5, 0x04, 0x63, 0x06, 0x8C, 0x06, 0x06, 0x08, 0xDC, 0x00, + 0x00, 0xFF, 0xFF, 0x01, 0x08, 0xFE, 0x52, 0x03, 0x9F, 0xFF, 0x47, 0x04, + 0x07, 0x08, 0xE0, 0x00, 0x00, 0xF9, 0x6D, 0x00, 0x02, 0x00, 0x2E, 0x04, + 0xCF, 0x02, 0x21, 0x07, 0x55, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, + 0x13, 0x21, 0x01, 0x03, 0x35, 0x21, 0x15, 0x32, 0xC7, 0x01, 0x28, 0xFE, + 0xE7, 0xDA, 0x01, 0x07, 0x04, 0xCF, 0x01, 0x31, 0xFE, 0xCF, 0x01, 0x92, + 0xF4, 0xF4, 0x00, 0x02, 0x00, 0x5E, 0x04, 0xC1, 0x03, 0x22, 0x07, 0x03, + 0x00, 0x08, 0x00, 0x0C, 0x00, 0x00, 0x41, 0x17, 0x37, 0x33, 0x15, 0x03, + 0x23, 0x03, 0x35, 0x37, 0x35, 0x33, 0x15, 0x01, 0x36, 0x89, 0x89, 0xDA, + 0xFA, 0xD4, 0xF6, 0xE6, 0xF7, 0x05, 0xD6, 0xA2, 0xA2, 0x03, 0xFE, 0xEE, + 0x01, 0x12, 0x03, 0x48, 0xE5, 0xE5, 0xFF, 0xFF, 0x00, 0x5E, 0x06, 0x65, + 0x03, 0x22, 0x08, 0xA7, 0x06, 0x07, 0x08, 0xF0, 0x00, 0x00, 0x01, 0xA4, + 0x00, 0x03, 0x01, 0x0F, 0x04, 0xC5, 0x03, 0xA7, 0x07, 0x26, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x15, 0x01, 0x13, 0x33, 0x03, 0x01, 0x0F, 0xF5, 0xAE, 0xF5, 0xFE, + 0x59, 0x95, 0xF0, 0xD7, 0x04, 0xC5, 0xEF, 0xEF, 0xEF, 0xEF, 0x01, 0x4A, + 0x01, 0x17, 0xFE, 0xE9, 0xFF, 0xFF, 0x01, 0x0F, 0x06, 0x69, 0x03, 0xA7, + 0x08, 0xCA, 0x06, 0x07, 0x08, 0xF2, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, + 0x01, 0x0C, 0x04, 0xC5, 0x03, 0xA9, 0x07, 0x1A, 0x00, 0x08, 0x00, 0x0C, + 0x00, 0x10, 0x00, 0x00, 0x41, 0x17, 0x37, 0x33, 0x15, 0x03, 0x23, 0x03, + 0x35, 0x13, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x01, 0xD6, 0x83, + 0x84, 0xCC, 0xED, 0xC7, 0xE9, 0x03, 0xF5, 0xAE, 0xF5, 0x07, 0x1A, 0xA4, + 0xA4, 0x03, 0xFE, 0xEC, 0x01, 0x14, 0x03, 0xFD, 0xAB, 0xEF, 0xEF, 0xEF, + 0xEF, 0xFF, 0xFF, 0x01, 0x0C, 0x06, 0x69, 0x03, 0xA9, 0x08, 0xBE, 0x06, + 0x07, 0x08, 0xF4, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, 0x01, 0x0F, 0x04, + 0xC5, 0x03, 0xA7, 0x07, 0x26, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, + 0x00, 0x41, 0x03, 0x33, 0x13, 0x01, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x15, 0x01, 0xFE, 0xD6, 0xEF, 0x96, 0xFE, 0x62, 0xF5, 0xAE, 0xF5, 0x06, + 0x0F, 0x01, 0x17, 0xFE, 0xE9, 0xFE, 0xB6, 0xEF, 0xEF, 0xEF, 0xEF, 0xFF, + 0xFF, 0x01, 0x0F, 0x06, 0x69, 0x03, 0xA7, 0x08, 0xCA, 0x06, 0x07, 0x08, + 0xF6, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, 0x01, 0x0B, 0x04, 0xC5, 0x03, + 0xA3, 0x06, 0xD4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x03, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x03, + 0x74, 0xFD, 0xC6, 0x2F, 0xF5, 0xAE, 0xF5, 0x06, 0xD4, 0x9A, 0x9A, 0xFD, + 0xF1, 0xEF, 0xEF, 0xEF, 0xEF, 0xFF, 0xFF, 0x01, 0x0B, 0x06, 0x69, 0x03, + 0xA3, 0x08, 0x78, 0x06, 0x07, 0x08, 0xF8, 0x00, 0x00, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x5A, 0x06, 0x89, 0x02, 0xDA, 0x08, 0xA6, 0x06, 0x07, 0x08, + 0xFB, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, 0x00, 0x5A, 0x04, 0xE5, 0x02, + 0xDA, 0x07, 0x02, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x27, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x02, + 0xBE, 0xFD, 0xC7, 0x2B, 0xEB, 0xAA, 0xEB, 0x05, 0x92, 0xAD, 0xAD, 0x8A, + 0xE6, 0xE6, 0xE6, 0xE6, 0x00, 0x03, 0x00, 0xA4, 0x04, 0xBF, 0x03, 0x31, + 0x07, 0x05, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x01, 0x35, 0x33, 0x15, + 0x33, 0x35, 0x33, 0x15, 0x02, 0x73, 0x2C, 0x49, 0x3D, 0x34, 0x16, 0x1D, + 0x1D, 0x02, 0x97, 0x03, 0x64, 0x58, 0x2D, 0x47, 0x3A, 0x34, 0x19, 0x1F, + 0x1D, 0x04, 0x93, 0x03, 0x68, 0xFD, 0xE1, 0xE9, 0xAA, 0xE8, 0x04, 0xBF, + 0x1C, 0x26, 0x1C, 0x34, 0x25, 0x70, 0x80, 0x1C, 0x26, 0x1C, 0x2B, 0x2E, + 0x70, 0x80, 0x01, 0x66, 0xE0, 0xE0, 0xE0, 0xE0, 0xFF, 0xFF, 0x00, 0xA4, + 0x04, 0xBF, 0x03, 0x31, 0x07, 0x05, 0x06, 0x06, 0x08, 0xFC, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4F, 0xFD, 0xA9, 0x05, 0x8E, 0x05, 0xE9, 0x06, 0x26, + 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x02, 0x23, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4F, 0xFD, 0xA9, 0x05, 0x8F, 0x05, 0xE9, 0x06, 0x26, + 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x02, 0x24, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0xA9, 0x05, 0x51, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0xE3, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0xA9, 0x04, 0x36, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0x7A, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0xA9, 0x05, 0x53, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x02, 0x16, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x81, 0xFD, 0xA9, 0x04, 0xF6, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0xC8, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4E, 0xFD, 0xA9, 0x04, 0xD5, 0x05, 0xE9, 0x06, 0x26, + 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0xC0, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFD, 0xA9, 0x04, 0x5D, 0x05, 0xD2, 0x06, 0x26, + 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0x6A, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x75, 0xFD, 0xA9, 0x01, 0x74, 0x05, 0xD2, 0x06, 0x26, + 0x02, 0xE0, 0x00, 0x00, 0x00, 0x06, 0x09, 0x0D, 0x1E, 0x00, 0xFF, 0xFF, + 0x00, 0x75, 0xFD, 0xA9, 0x02, 0x0A, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xEF, + 0x00, 0x00, 0x00, 0x06, 0x09, 0x0D, 0x5D, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFD, 0xA9, 0x04, 0x31, 0x04, 0x42, 0x06, 0x26, 0x03, 0x05, 0x00, 0x00, + 0x00, 0x07, 0x09, 0x0D, 0x01, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, + 0xFD, 0xA9, 0x02, 0xC9, 0x04, 0x39, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, + 0x00, 0x06, 0x09, 0x0D, 0x1F, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0xFD, 0xA9, + 0x03, 0xDD, 0x04, 0x43, 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, + 0x09, 0x0D, 0x01, 0x3D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x12, 0xFD, 0xA9, + 0x02, 0xA1, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, + 0x09, 0x0D, 0x00, 0xCE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFD, 0xA9, + 0x02, 0x52, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x06, + 0x09, 0x0D, 0x7F, 0x00, 0x00, 0x01, 0x00, 0x63, 0xFD, 0xA9, 0x01, 0x47, + 0xFF, 0x7C, 0x00, 0x0E, 0x00, 0x00, 0x53, 0x35, 0x33, 0x32, 0x36, 0x35, + 0x35, 0x17, 0x23, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x63, 0x1E, 0x28, + 0x2E, 0x19, 0x8D, 0xE4, 0x6D, 0x61, 0xFD, 0xA9, 0x68, 0x39, 0x34, 0x38, + 0x19, 0xDF, 0xF6, 0x6E, 0x6F, 0xFF, 0xFF, 0x00, 0x54, 0xFE, 0xD6, 0x01, + 0x71, 0x01, 0x17, 0x04, 0x06, 0x08, 0xCC, 0xDE, 0x00, 0xFF, 0xFF, 0x00, + 0x54, 0xFE, 0xD6, 0x03, 0x0C, 0x01, 0x17, 0x04, 0x26, 0x08, 0xCC, 0xDE, + 0x00, 0x00, 0x07, 0x08, 0xCC, 0x01, 0x78, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x54, 0x03, 0x92, 0x03, 0x0C, 0x05, 0xD2, 0x04, 0x26, 0x09, 0x12, 0x00, + 0x00, 0x00, 0x07, 0x09, 0x12, 0x01, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x54, 0x03, 0x92, 0x03, 0x0C, 0x05, 0xD2, 0x04, 0x27, 0x08, 0xCC, 0xFF, + 0xDE, 0x04, 0xBB, 0x00, 0x07, 0x08, 0xCC, 0x01, 0x78, 0x04, 0xBB, 0x00, + 0x01, 0x00, 0x54, 0x03, 0x92, 0x01, 0x71, 0x05, 0xD2, 0x00, 0x0E, 0x00, + 0x00, 0x41, 0x15, 0x23, 0x22, 0x06, 0x15, 0x15, 0x27, 0x33, 0x11, 0x21, + 0x11, 0x34, 0x36, 0x33, 0x01, 0x71, 0x25, 0x33, 0x37, 0x21, 0xB0, 0xFE, + 0xE3, 0x88, 0x7A, 0x05, 0xD2, 0x83, 0x46, 0x3E, 0x44, 0x21, 0xFE, 0xEA, + 0x01, 0x2F, 0x88, 0x89, 0xFF, 0xFF, 0x00, 0x54, 0x03, 0x92, 0x01, 0x71, + 0x05, 0xD2, 0x04, 0x07, 0x08, 0xCC, 0xFF, 0xDE, 0x04, 0xBB, 0x00, 0x01, + 0x00, 0x54, 0x03, 0x92, 0x01, 0x71, 0x05, 0xD2, 0x00, 0x0E, 0x00, 0x00, + 0x41, 0x23, 0x22, 0x26, 0x35, 0x11, 0x21, 0x11, 0x23, 0x37, 0x15, 0x14, + 0x16, 0x33, 0x33, 0x01, 0x71, 0x1B, 0x7A, 0x88, 0x01, 0x1D, 0xB0, 0x21, + 0x37, 0x33, 0x25, 0x03, 0x92, 0x8A, 0x86, 0x01, 0x30, 0xFE, 0xE9, 0x21, + 0x43, 0x3E, 0x46, 0xFF, 0xFF, 0x00, 0x54, 0x03, 0x92, 0x03, 0x0C, 0x05, + 0xD2, 0x04, 0x26, 0x09, 0x14, 0x00, 0x00, 0x00, 0x07, 0x09, 0x14, 0x01, + 0x9B, 0x00, 0x00, 0x00, 0x02, 0x00, 0x81, 0x00, 0x00, 0x04, 0xCE, 0x05, + 0xD2, 0x00, 0x0E, 0x00, 0x18, 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x81, 0x03, 0xBB, 0xFD, + 0x4B, 0x01, 0x28, 0xAA, 0xF3, 0x82, 0x81, 0xF4, 0xAA, 0xFE, 0xD8, 0x01, + 0x28, 0x5C, 0x7D, 0x42, 0x92, 0x89, 0xFE, 0xD8, 0x05, 0xD2, 0xDD, 0xFE, + 0x99, 0x6F, 0xC9, 0x88, 0x89, 0xD0, 0x75, 0xD9, 0x45, 0x71, 0x42, 0x5F, + 0x87, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x0A, 0x6B, 0x05, 0xD2, 0x04, + 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x01, 0xF0, 0x05, 0x9F, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0xA2, 0x05, 0xD2, 0x04, + 0x26, 0x00, 0x54, 0x52, 0x00, 0x00, 0x06, 0x0B, 0x69, 0xE3, 0x00, 0x00, + 0x02, 0x00, 0x66, 0x00, 0x00, 0x04, 0xB1, 0x05, 0xC2, 0x00, 0x0E, 0x00, + 0x18, 0x00, 0x00, 0x61, 0x21, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x21, 0x11, 0x21, 0x35, 0x21, 0x01, 0x11, 0x21, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x04, 0xB1, 0xFD, 0xD4, 0xAA, 0xF3, 0x82, 0x82, + 0xF3, 0xAA, 0x01, 0x1A, 0xFD, 0x5A, 0x03, 0xB8, 0xFE, 0xEE, 0xFE, 0xE6, + 0x8B, 0x82, 0x39, 0x77, 0x5D, 0x76, 0xD0, 0x88, 0x88, 0xCB, 0x71, 0x01, + 0x50, 0xE0, 0xFB, 0x1A, 0x01, 0xDA, 0x85, 0x60, 0x41, 0x70, 0x44, 0xFF, + 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0xA2, 0x05, 0xD2, 0x04, 0x26, 0x00, + 0x54, 0x52, 0x00, 0x00, 0x06, 0x0B, 0x69, 0xE3, 0x00, 0x00, 0x01, 0x00, + 0x4F, 0xFF, 0xE9, 0x04, 0x9C, 0x05, 0xE9, 0x00, 0x34, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x23, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x21, 0x0E, 0x02, 0x02, 0x75, 0xA0, 0xF8, 0x8E, 0x4D, 0x91, 0x66, 0x7C, + 0x98, 0x82, 0xE4, 0x93, 0x99, 0xE9, 0x83, 0xFC, 0x43, 0x77, 0x4E, 0x4C, + 0x72, 0x40, 0x45, 0x7D, 0x54, 0x81, 0x81, 0x5F, 0x8D, 0x4E, 0x49, 0x83, + 0x55, 0x58, 0x81, 0x47, 0x01, 0x04, 0x01, 0x84, 0xF7, 0x17, 0x72, 0xC7, + 0x81, 0x59, 0x94, 0x63, 0x0F, 0x04, 0x1E, 0xAB, 0x7B, 0x78, 0xBB, 0x6C, + 0x75, 0xCE, 0x85, 0x4C, 0x6D, 0x3C, 0x38, 0x66, 0x45, 0x40, 0x60, 0x34, + 0xCC, 0x39, 0x67, 0x45, 0x47, 0x6C, 0x3B, 0x41, 0x7C, 0x55, 0x8B, 0xDD, + 0x81, 0xFF, 0xFF, 0x00, 0x46, 0x00, 0x00, 0x04, 0xE4, 0x05, 0xD2, 0x04, + 0x06, 0x04, 0x0D, 0xF8, 0x00, 0x00, 0x01, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0x95, 0x05, 0xE9, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, + 0x35, 0x21, 0x15, 0x21, 0x37, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x21, 0x3E, 0x03, + 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x02, 0xE7, 0x8C, 0xEF, + 0xB2, 0x62, 0x04, 0x82, 0xFC, 0x3F, 0x43, 0x67, 0xB3, 0x6F, 0x84, 0xBD, + 0x64, 0x67, 0xBF, 0x84, 0x48, 0x79, 0x60, 0x40, 0x0F, 0xFE, 0xF2, 0x11, + 0x6E, 0xAA, 0xDB, 0x7C, 0xC7, 0x01, 0x39, 0xB3, 0xAB, 0xFE, 0xCB, 0x17, + 0x5A, 0xA5, 0xE4, 0x89, 0xB4, 0xD2, 0x06, 0x6B, 0xA2, 0x59, 0x80, 0xED, + 0xA4, 0xA4, 0xEE, 0x81, 0x26, 0x49, 0x65, 0x3F, 0x73, 0xBB, 0x89, 0x4A, + 0xBC, 0xFE, 0xA6, 0xEB, 0xE6, 0xFE, 0xA7, 0xC0, 0x00, 0x01, 0x00, 0x37, + 0xFE, 0x47, 0x05, 0x03, 0x05, 0xD2, 0x00, 0x23, 0x00, 0x00, 0x77, 0x21, + 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, + 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x16, 0x16, 0x12, + 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x24, 0x26, 0x37, 0x01, 0x09, 0x05, + 0x5F, 0x99, 0x5C, 0x6D, 0x9C, 0x55, 0x6A, 0xBA, 0x78, 0x8E, 0x01, 0xBF, + 0xFC, 0xFE, 0x04, 0x53, 0xFE, 0x0B, 0xA0, 0xF3, 0x88, 0x5A, 0xA4, 0xE3, + 0x89, 0xAA, 0xFE, 0xF1, 0xA3, 0x5A, 0x5A, 0x8A, 0x4E, 0x6B, 0xB8, 0x74, + 0x83, 0xBE, 0x67, 0xC6, 0x01, 0xB7, 0x0D, 0xE1, 0xBF, 0xFE, 0x14, 0x0E, + 0x0A, 0x9E, 0xFE, 0xFB, 0xA8, 0x8B, 0xE9, 0xAB, 0x5E, 0x87, 0xF1, 0xFF, + 0xFF, 0x00, 0x37, 0xFE, 0x47, 0x05, 0x03, 0x07, 0x8C, 0x06, 0x26, 0x09, + 0x1E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xFC, 0x01, 0xA4, 0x00, + 0x01, 0x00, 0x46, 0xFE, 0x47, 0x05, 0x13, 0x05, 0xD2, 0x00, 0x23, 0x00, + 0x00, 0x65, 0x06, 0x06, 0x04, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x12, + 0x36, 0x37, 0x35, 0x01, 0x35, 0x21, 0x15, 0x21, 0x15, 0x01, 0x15, 0x23, + 0x26, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, + 0x05, 0x13, 0x06, 0xA4, 0xFE, 0xF1, 0xAA, 0x89, 0xE3, 0xA4, 0x5A, 0x89, + 0xF3, 0x9F, 0xFE, 0x0B, 0x04, 0x54, 0xFC, 0xFC, 0x01, 0xC0, 0x8D, 0x78, + 0xBB, 0x69, 0x54, 0x9D, 0x6C, 0x5D, 0x98, 0x5F, 0x05, 0x5A, 0x9B, 0xF1, + 0x87, 0x5E, 0xAB, 0xE9, 0x8B, 0xA8, 0x01, 0x06, 0x9D, 0x0A, 0x0E, 0x01, + 0xEC, 0xBF, 0xE2, 0x0B, 0xFE, 0x48, 0xC6, 0x01, 0x68, 0xBE, 0x83, 0x74, + 0xB8, 0x6B, 0x4E, 0x8A, 0x5A, 0x00, 0x02, 0x00, 0x6C, 0xFE, 0x4C, 0x04, + 0xA9, 0x05, 0xE6, 0x00, 0x1A, 0x00, 0x2D, 0x00, 0x00, 0x53, 0x35, 0x36, + 0x24, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x21, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x04, 0x25, + 0x37, 0x1E, 0x02, 0x15, 0x14, 0x02, 0x04, 0x04, 0x07, 0x35, 0x36, 0x24, + 0x36, 0x36, 0x35, 0x34, 0x26, 0xD3, 0xB5, 0x01, 0x05, 0xA6, 0x50, 0x83, + 0x7F, 0x4E, 0x75, 0x40, 0xFE, 0xEE, 0x01, 0x88, 0xF2, 0x9B, 0x9E, 0xEE, + 0x85, 0x7F, 0xF6, 0xFE, 0x9B, 0x01, 0x36, 0x4F, 0x6F, 0xA3, 0x59, 0x8F, + 0xFE, 0xF9, 0xFE, 0x98, 0xD8, 0xA7, 0x01, 0x06, 0xB6, 0x5F, 0x4A, 0x01, + 0x46, 0xCB, 0x36, 0x6A, 0x77, 0x90, 0x5B, 0x7A, 0x7C, 0x2F, 0x56, 0x39, + 0x7C, 0xB9, 0x66, 0x62, 0xC1, 0x8F, 0x87, 0xE5, 0xBB, 0x92, 0xD8, 0x9D, + 0x0E, 0x67, 0xAE, 0x7B, 0xAA, 0xFE, 0xFD, 0xBA, 0x7C, 0x23, 0xDA, 0x21, + 0x5E, 0x88, 0xB7, 0x7A, 0x73, 0x73, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0xEB, + 0x06, 0x07, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x01, 0x0A, 0x02, 0x0C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0xEB, + 0x08, 0x68, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, + 0x01, 0x0A, 0x04, 0x6D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x84, 0x00, 0x00, + 0x04, 0x39, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x19, 0x03, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0xCA, 0xFD, 0xE8, 0xFF, 0xFF, 0x00, 0x81, 0xFF, 0xEB, + 0x09, 0xD0, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, + 0x01, 0x0A, 0x05, 0xD5, 0x00, 0x00, 0x00, 0x03, 0x00, 0x5A, 0xFE, 0x5E, + 0x06, 0x97, 0x05, 0xE6, 0x00, 0x15, 0x00, 0x2B, 0x00, 0x32, 0x00, 0x00, + 0x41, 0x11, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, 0x35, 0x25, + 0x15, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x11, 0x01, 0x11, 0x05, 0x11, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x25, 0x35, 0x34, 0x12, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x25, 0x11, 0x21, 0x11, 0x05, 0x11, + 0x25, 0x04, 0xFA, 0x2B, 0x9E, 0xD2, 0x7C, 0x99, 0xF1, 0xA7, 0x58, 0x01, + 0x14, 0x01, 0x51, 0xAA, 0x86, 0x53, 0x87, 0x28, 0x01, 0x08, 0xFE, 0xF8, + 0x28, 0x89, 0x4E, 0x89, 0xAB, 0x51, 0xFE, 0xEC, 0x5A, 0xAA, 0xF5, 0x9C, + 0x78, 0xCF, 0x9A, 0x01, 0xC7, 0xFE, 0xF9, 0xFE, 0xE1, 0x01, 0x5E, 0x03, + 0x43, 0xFD, 0x7C, 0x3B, 0x60, 0x38, 0x60, 0xB7, 0x01, 0x04, 0xA3, 0x6E, + 0x03, 0x71, 0x96, 0xD9, 0x74, 0x2D, 0x27, 0x02, 0x28, 0x01, 0xD0, 0xFD, + 0x88, 0x03, 0x02, 0x1D, 0x29, 0x2B, 0x6E, 0xD7, 0x9C, 0x70, 0x01, 0x6F, + 0xA5, 0x01, 0x05, 0xB5, 0x5F, 0x3A, 0x5F, 0x85, 0xF8, 0x8C, 0x06, 0x49, + 0x79, 0x01, 0x0A, 0x9A, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0xDD, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x68, + 0x00, 0xAE, 0xFF, 0xF2, 0x00, 0x02, 0x00, 0x15, 0x00, 0x00, 0x06, 0x01, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, 0x53, 0x27, 0x13, 0x21, + 0x13, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, + 0x21, 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0xDE, + 0xC9, 0xFC, 0x01, 0x0C, 0x42, 0x01, 0x8C, 0xA6, 0xEF, 0x81, 0x7E, 0xE9, + 0xA1, 0xFD, 0xB5, 0x01, 0x09, 0x01, 0x2A, 0x82, 0x99, 0x45, 0x7F, 0x57, + 0xFE, 0x7E, 0x03, 0xA5, 0x72, 0x01, 0xBB, 0xFD, 0xDA, 0x71, 0xD1, 0x8E, + 0x92, 0xD6, 0x74, 0x05, 0xD2, 0xFB, 0x0D, 0x89, 0x76, 0x4A, 0x6D, 0x3B, + 0x00, 0x01, 0x00, 0x5B, 0xFF, 0xEC, 0x04, 0xBA, 0x05, 0xE6, 0x00, 0x1F, + 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, 0x21, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x14, 0x06, 0x06, 0x02, 0x8A, + 0xA1, 0xFD, 0x91, 0x01, 0x11, 0x95, 0x89, 0x89, 0x91, 0x46, 0x4C, 0x11, + 0x2C, 0x15, 0x20, 0x46, 0x25, 0xA6, 0xC9, 0x95, 0xFD, 0x14, 0x73, 0xE4, + 0xA7, 0x03, 0xE8, 0xFC, 0x18, 0x92, 0x91, 0x91, 0x92, 0x02, 0x79, 0x5B, + 0x46, 0x03, 0x04, 0xD7, 0x08, 0x0A, 0xC8, 0xBB, 0xFD, 0x87, 0xA7, 0xE3, + 0x74, 0x00, 0x03, 0x00, 0x54, 0xFE, 0x9E, 0x05, 0x7D, 0x06, 0x38, 0x00, + 0x03, 0x00, 0x1C, 0x00, 0x21, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x25, + 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x21, 0x27, + 0x21, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x21, 0x01, + 0x01, 0x21, 0x01, 0x15, 0x54, 0x01, 0x13, 0xFE, 0xED, 0x02, 0x15, 0xAA, + 0xF1, 0x80, 0x50, 0x94, 0x66, 0x53, 0xFE, 0x2D, 0x01, 0x01, 0x56, 0x58, + 0x76, 0x3B, 0x38, 0x75, 0x5C, 0xFE, 0xFF, 0xFE, 0xEC, 0x04, 0x03, 0xFD, + 0xEA, 0x01, 0x22, 0x02, 0x1A, 0x05, 0x6D, 0xCB, 0xCB, 0x65, 0x65, 0xC3, + 0x8F, 0x71, 0xA7, 0x70, 0x20, 0x2B, 0xDA, 0x01, 0x3A, 0x69, 0x43, 0x48, + 0x6A, 0x39, 0xFB, 0x0C, 0xFE, 0x9E, 0x03, 0xF1, 0xFC, 0x1B, 0x0C, 0x00, + 0x03, 0x00, 0x8F, 0xFF, 0xEC, 0x06, 0xC3, 0x05, 0xD2, 0x00, 0x04, 0x00, + 0x18, 0x00, 0x2D, 0x00, 0x00, 0x65, 0x11, 0x21, 0x11, 0x23, 0x13, 0x37, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x21, 0x11, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x25, 0x37, 0x16, 0x06, 0x06, 0x23, + 0x22, 0x26, 0x26, 0x35, 0x11, 0x21, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x3E, 0x02, 0x05, 0xBB, 0x01, 0x08, 0xF1, 0x05, 0x5F, 0x5B, 0xBA, 0x8F, + 0x6E, 0xA5, 0x5A, 0x01, 0x06, 0x2E, 0x4D, 0x2F, 0x61, 0x71, 0x30, 0xFD, + 0x6B, 0x61, 0x01, 0x5C, 0xBC, 0x92, 0x74, 0xA3, 0x54, 0x01, 0x07, 0x2D, + 0x4C, 0x2E, 0x4B, 0x64, 0x3C, 0x1A, 0xEF, 0x04, 0xE3, 0xFA, 0x2E, 0x01, + 0xF8, 0x02, 0x97, 0xEE, 0x89, 0x56, 0xC6, 0xA8, 0x04, 0x22, 0xFB, 0xDE, + 0x5A, 0x67, 0x2C, 0x53, 0x8D, 0x55, 0x02, 0x98, 0xEE, 0x88, 0x57, 0xC6, + 0xA7, 0x04, 0x22, 0xFB, 0xDE, 0x5A, 0x67, 0x2C, 0x32, 0x55, 0x70, 0x00, + 0x02, 0x00, 0x80, 0xFE, 0x5E, 0x04, 0xF7, 0x05, 0xE6, 0x00, 0x03, 0x00, + 0x21, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x13, 0x35, 0x36, 0x24, 0x36, + 0x36, 0x35, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x11, + 0x36, 0x36, 0x33, 0x32, 0x04, 0x12, 0x15, 0x15, 0x14, 0x02, 0x00, 0x04, + 0x01, 0x91, 0xFE, 0xEF, 0x90, 0xB8, 0x01, 0x0F, 0xB3, 0x57, 0x23, 0x4D, + 0x7C, 0x59, 0x67, 0x8F, 0x55, 0x13, 0x37, 0xAC, 0x78, 0xB4, 0x01, 0x11, + 0x99, 0x8D, 0xFE, 0xF9, 0xFE, 0x90, 0x05, 0xD2, 0xF8, 0x8C, 0x07, 0x74, + 0xF9, 0x76, 0xDD, 0x29, 0x9C, 0xD0, 0xF2, 0x7F, 0x38, 0x60, 0x9C, 0x6F, + 0x3B, 0x4A, 0x84, 0x57, 0x01, 0x90, 0x33, 0x3F, 0x91, 0xFE, 0xE1, 0xD7, + 0x34, 0xB6, 0xFE, 0xBE, 0xFE, 0xFC, 0xBA, 0x00, 0x02, 0x00, 0x6F, 0xFE, + 0x60, 0x04, 0xAA, 0x05, 0xE6, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x41, + 0x21, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x01, 0x11, 0x21, 0x11, 0x04, 0xAA, 0xFE, + 0xF5, 0x40, 0x7D, 0x59, 0x74, 0xD1, 0x58, 0x54, 0xE5, 0x85, 0x8A, 0xE9, + 0x8D, 0xFC, 0xCD, 0xFE, 0xF8, 0xFE, 0x60, 0x05, 0xB4, 0x58, 0x6F, 0x35, + 0x66, 0x5C, 0xE7, 0x50, 0x61, 0x6C, 0xD0, 0x96, 0x01, 0xBE, 0xFA, 0x2E, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x4C, 0xFF, 0xEC, 0x04, 0xCB, 0x05, 0xE6, + 0x00, 0x11, 0x00, 0x1F, 0x00, 0x41, 0x00, 0x00, 0x41, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x17, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x16, + 0x36, 0x35, 0x34, 0x26, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x27, 0x35, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x2E, 0x02, + 0x35, 0x34, 0x36, 0x36, 0x37, 0x15, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x02, 0x80, 0x17, 0xA6, 0xFD, 0x8E, 0x90, 0xFE, 0xA3, 0x17, 0xA3, 0xFF, + 0x92, 0x8F, 0xFF, 0xBD, 0x17, 0x83, 0x9D, 0x9E, 0x82, 0x17, 0x82, 0x9B, + 0x9B, 0x9F, 0x20, 0x53, 0x80, 0x49, 0x49, 0x4B, 0x7E, 0xBF, 0x6C, 0x93, + 0xFE, 0x9F, 0x21, 0xA0, 0xFC, 0x92, 0x6C, 0xBF, 0x7D, 0x4C, 0x48, 0x49, + 0x7F, 0x03, 0x8C, 0x68, 0xCA, 0x94, 0x9A, 0xD3, 0x6D, 0x6C, 0xD3, 0x99, + 0x94, 0xCC, 0x68, 0xC7, 0x82, 0x7F, 0x7E, 0x7D, 0x01, 0x7D, 0x81, 0x7F, + 0x80, 0xE0, 0x1B, 0x52, 0x51, 0x4C, 0x53, 0x11, 0xD3, 0x03, 0x59, 0xAA, + 0x7D, 0x8E, 0xAA, 0x4C, 0x01, 0x4B, 0xAA, 0x8E, 0x7E, 0xAA, 0x58, 0x03, + 0xD3, 0x11, 0x53, 0x4C, 0x52, 0x51, 0x1B, 0x00, 0x02, 0x00, 0x41, 0x00, + 0x00, 0x04, 0x15, 0x05, 0xE6, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x41, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x21, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x23, 0x37, 0x11, 0x21, 0x11, 0x01, 0xC1, 0x54, 0x5F, 0x65, + 0x27, 0x24, 0x65, 0x62, 0x62, 0x6A, 0x04, 0xFE, 0xFC, 0x02, 0x78, 0xD1, + 0x85, 0xA9, 0xE5, 0x76, 0x75, 0xE6, 0xAA, 0x4F, 0xEA, 0xFE, 0xEA, 0x01, + 0xEA, 0x58, 0x91, 0x55, 0x9A, 0x4A, 0x93, 0x64, 0x72, 0x58, 0x7F, 0xC1, + 0x6D, 0x94, 0xF8, 0x98, 0x99, 0x97, 0xF6, 0x93, 0xE1, 0xFE, 0x16, 0x01, + 0xEA, 0x00, 0x02, 0x00, 0x50, 0x00, 0x00, 0x05, 0x80, 0x05, 0xD2, 0x00, + 0x04, 0x00, 0x09, 0x00, 0x00, 0x61, 0x01, 0x03, 0x33, 0x09, 0x02, 0x21, + 0x01, 0x33, 0x04, 0x51, 0xFE, 0x87, 0x34, 0xCD, 0x02, 0x0F, 0xFD, 0x77, + 0xFE, 0x89, 0xFE, 0xD0, 0x02, 0x0F, 0xCC, 0x04, 0xB1, 0x01, 0x21, 0xFA, + 0x2E, 0x04, 0xB1, 0xFB, 0x4F, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0xA4, 0x00, + 0x00, 0x06, 0x19, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x19, 0x23, 0x00, 0x00, + 0x07, 0x01, 0x19, 0x01, 0xE3, 0x00, 0x00, 0x00, 0x01, 0x00, 0x62, 0xFF, + 0xEC, 0x04, 0x55, 0x05, 0xBC, 0x00, 0x26, 0x00, 0x00, 0x41, 0x37, 0x1E, + 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, + 0x12, 0x36, 0x24, 0x37, 0x17, 0x0E, 0x03, 0x15, 0x15, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x02, 0x67, 0x69, 0x6F, 0xAF, + 0x67, 0x77, 0xDD, 0x9B, 0x7A, 0xBF, 0x85, 0x46, 0x58, 0xB1, 0x01, 0x0B, + 0xB2, 0x20, 0x6E, 0xAE, 0x79, 0x3F, 0x01, 0x3D, 0x6B, 0x45, 0x47, 0x67, + 0x38, 0x3C, 0x65, 0x03, 0x08, 0xC6, 0x26, 0x94, 0xCD, 0x7B, 0x95, 0xD8, + 0x73, 0x59, 0x9E, 0xD1, 0x78, 0x3B, 0xAC, 0x01, 0x21, 0xDE, 0x90, 0x1A, + 0xD8, 0x15, 0x5C, 0x94, 0xD1, 0x8B, 0x73, 0x69, 0x94, 0x4D, 0x39, 0x6E, + 0x4D, 0x59, 0x83, 0x59, 0x00, 0x04, 0x00, 0x3C, 0xFF, 0xEC, 0x05, 0xA4, + 0x05, 0xD2, 0x00, 0x04, 0x00, 0x09, 0x00, 0x19, 0x00, 0x26, 0x00, 0x00, + 0x41, 0x01, 0x21, 0x01, 0x03, 0x01, 0x01, 0x07, 0x23, 0x01, 0x01, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x02, 0xDD, 0x01, 0x9E, 0x01, 0x29, 0xFD, 0x6F, 0x36, + 0xFE, 0xE7, 0x01, 0xB1, 0x32, 0x97, 0xFD, 0xEF, 0x01, 0x23, 0x6A, 0xB0, + 0x68, 0x68, 0xAF, 0x6B, 0x71, 0xAE, 0x64, 0x69, 0xAF, 0x6A, 0x3D, 0x57, + 0x57, 0x3D, 0x41, 0x57, 0x28, 0x45, 0x02, 0x5D, 0x03, 0x75, 0xFA, 0xE6, + 0x01, 0x49, 0x03, 0xD1, 0xFC, 0x8C, 0x72, 0x03, 0xE6, 0xFA, 0x1A, 0x66, + 0xAE, 0x6A, 0x69, 0xAE, 0x69, 0x6C, 0xAE, 0x66, 0x69, 0xAE, 0x67, 0xE4, + 0x4F, 0x4D, 0x4D, 0x4E, 0x4E, 0x4D, 0x33, 0x46, 0x23, 0x00, 0x01, 0x00, + 0x81, 0xFF, 0xEC, 0x05, 0x2D, 0x05, 0xE7, 0x00, 0x2C, 0x00, 0x00, 0x73, + 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x01, 0x1E, 0x02, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x23, 0x35, 0x01, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x81, 0x76, 0xE5, 0xA5, 0x72, 0xCE, + 0xB7, 0x50, 0xFE, 0xB4, 0x87, 0xC2, 0x68, 0x85, 0xEA, 0x97, 0x4D, 0xA3, + 0x46, 0x4C, 0x2E, 0x71, 0x3E, 0x7F, 0x8B, 0x40, 0x61, 0x65, 0x25, 0x8C, + 0x01, 0x17, 0x2A, 0x7F, 0x55, 0x62, 0x6F, 0x2E, 0x03, 0xD8, 0xAC, 0xEA, + 0x79, 0x40, 0x6E, 0x47, 0xFE, 0x68, 0x0D, 0x72, 0xB9, 0x78, 0x8B, 0xC8, + 0x6B, 0x1C, 0x1C, 0xCE, 0x13, 0x1D, 0x7D, 0x6E, 0x53, 0x64, 0x34, 0x11, + 0xAF, 0x01, 0x62, 0x20, 0x34, 0x53, 0x8E, 0x59, 0xFC, 0x2C, 0xFF, 0xFF, + 0x00, 0x44, 0xFF, 0xEB, 0x04, 0x4D, 0x04, 0x42, 0x06, 0x06, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x75, 0xFF, 0xEB, 0x04, 0x7E, 0x04, 0x42, + 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x23, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0xB4, 0x4B, 0x7A, + 0x5C, 0x1F, 0x05, 0xFA, 0xFB, 0x05, 0x1E, 0x5C, 0x7B, 0x4A, 0x87, 0xCE, + 0x75, 0x73, 0xCE, 0xC8, 0x51, 0x75, 0x41, 0x41, 0x75, 0x51, 0x53, 0x79, + 0x42, 0x42, 0x7A, 0x15, 0x2D, 0x53, 0x38, 0xA3, 0x04, 0x2E, 0x9C, 0x35, + 0x4F, 0x2C, 0x8A, 0xF9, 0xA8, 0xA8, 0xFA, 0x8A, 0xD3, 0x53, 0x9A, 0x6C, + 0x6D, 0x99, 0x52, 0x55, 0x9A, 0x69, 0x68, 0x9B, 0x56, 0x00, 0x02, 0x00, + 0x3C, 0xFF, 0xEC, 0x05, 0x39, 0x04, 0x6C, 0x00, 0x1E, 0x00, 0x3D, 0x00, + 0x00, 0x53, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x1E, 0x02, + 0x15, 0x14, 0x06, 0x23, 0x35, 0x16, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x25, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x07, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x15, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x37, 0x3E, 0x03, 0x33, 0x32, 0x16, 0xC6, 0x8A, 0x32, + 0x8E, 0x61, 0x4A, 0x79, 0x71, 0x78, 0x48, 0x23, 0x44, 0x2E, 0xA4, 0x8A, + 0x21, 0x17, 0x2B, 0x57, 0x44, 0x3A, 0x4E, 0x42, 0x27, 0x20, 0x3B, 0x04, + 0x5B, 0x8D, 0x19, 0x3B, 0x1F, 0x28, 0x44, 0x59, 0x49, 0x36, 0x4D, 0x28, + 0x18, 0x20, 0x89, 0xA4, 0x2F, 0x47, 0x24, 0x46, 0x76, 0x71, 0x7C, 0x49, + 0x61, 0x8D, 0x03, 0x36, 0x9D, 0x3C, 0x5D, 0x44, 0x84, 0xC2, 0x7D, 0x3B, + 0x87, 0x89, 0x3F, 0x73, 0x7C, 0xC5, 0x01, 0x25, 0x13, 0x1F, 0x66, 0x9F, + 0x73, 0x5E, 0x6E, 0x30, 0x28, 0x80, 0x9D, 0x1D, 0x28, 0x37, 0x87, 0x78, + 0x56, 0x87, 0x61, 0x20, 0x13, 0x23, 0xC5, 0x7D, 0x72, 0x3F, 0x89, 0x89, + 0x40, 0x7A, 0xBF, 0x83, 0x44, 0x5D, 0x00, 0x01, 0x00, 0x4C, 0xFE, 0x46, + 0x04, 0x08, 0x04, 0x6C, 0x00, 0x21, 0x00, 0x00, 0x45, 0x32, 0x36, 0x37, + 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x11, 0x14, 0x16, 0x16, 0x02, 0x41, 0x57, 0x74, 0x04, 0xF8, 0x01, + 0x7B, 0xCC, 0x7C, 0xA9, 0xE0, 0x6F, 0x6F, 0xE0, 0xA8, 0x87, 0xCB, 0x72, + 0x01, 0xF8, 0x04, 0x6A, 0x62, 0x61, 0x66, 0x23, 0x23, 0x65, 0xE7, 0x60, + 0x4C, 0x6B, 0xAE, 0x66, 0x92, 0xF8, 0x96, 0x01, 0xE4, 0x96, 0xF8, 0x94, + 0x68, 0xBB, 0x7C, 0x53, 0x79, 0x67, 0x9A, 0x4E, 0xFE, 0x1C, 0x4E, 0x99, + 0x66, 0x00, 0x02, 0x00, 0x5E, 0xFE, 0x88, 0x04, 0x5B, 0x04, 0x6C, 0x00, + 0x20, 0x00, 0x34, 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x2E, 0x02, 0x27, + 0x26, 0x02, 0x35, 0x35, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x1E, 0x03, 0x17, 0x03, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x17, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x03, 0xD6, 0xFC, 0xFA, 0x01, 0xAD, + 0x0F, 0x3C, 0x4D, 0x25, 0x9C, 0xC6, 0x01, 0x77, 0xE3, 0xA2, 0xA3, 0xE5, + 0x78, 0x6B, 0xBF, 0x7E, 0x0A, 0x10, 0x0B, 0x26, 0x59, 0x5B, 0x50, 0x1E, + 0x83, 0x2E, 0x6C, 0x5E, 0x59, 0x6C, 0x31, 0x66, 0x43, 0x10, 0x20, 0x15, + 0x5B, 0x71, 0x34, 0xFE, 0x88, 0xD0, 0x0E, 0x33, 0x3D, 0x1D, 0x80, 0x01, + 0x0E, 0xA5, 0x14, 0xA7, 0xFD, 0x8E, 0x89, 0xF3, 0xA1, 0x14, 0x82, 0xD1, + 0x87, 0x12, 0x01, 0x02, 0x21, 0x4F, 0x54, 0x4F, 0x22, 0x03, 0x0F, 0x14, + 0x61, 0x9F, 0x5F, 0x5C, 0x9E, 0x65, 0x14, 0x73, 0xA4, 0x28, 0x06, 0x04, + 0x5B, 0x95, 0x00, 0x01, 0x00, 0x3F, 0xFF, 0xEC, 0x04, 0x16, 0x04, 0x6C, + 0x00, 0x23, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x15, + 0x21, 0x15, 0x21, 0x35, 0x10, 0x12, 0x33, 0x32, 0x16, 0x12, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x01, 0xFF, 0x91, 0xDA, 0x42, 0x8C, 0x36, 0x8F, 0x4A, + 0x88, 0x96, 0x19, 0x38, 0x5C, 0x42, 0x5D, 0x74, 0x08, 0x02, 0x53, 0xFC, + 0xA9, 0xFB, 0xDB, 0xA1, 0xE6, 0x7A, 0x82, 0xF0, 0x14, 0x6E, 0x5B, 0x8B, + 0x43, 0x3D, 0xAF, 0x98, 0x27, 0x4A, 0x83, 0x64, 0x3A, 0x7D, 0x7B, 0x0F, + 0xBA, 0x71, 0x01, 0x01, 0x01, 0x22, 0x94, 0xFE, 0xFD, 0xA7, 0x27, 0x9C, + 0xF4, 0x8B, 0xFF, 0xFF, 0xFF, 0xC3, 0xFE, 0x1D, 0x02, 0xA8, 0x06, 0x19, + 0x06, 0x06, 0x06, 0x21, 0x00, 0x00, 0x00, 0x01, 0x00, 0x44, 0xFE, 0x5E, + 0x04, 0x09, 0x06, 0x19, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x05, 0x07, + 0x01, 0x2E, 0x02, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x03, 0x08, 0x4B, 0xA2, 0x84, 0xA0, 0xB3, 0xBB, 0x99, + 0x60, 0xBA, 0x48, 0x01, 0x0C, 0x83, 0xFE, 0xDE, 0x2B, 0x47, 0x3F, 0x22, + 0x2F, 0x32, 0x39, 0x2D, 0x31, 0x46, 0xBA, 0xB4, 0x24, 0x49, 0x24, 0x06, + 0x19, 0x3B, 0x1D, 0x47, 0x43, 0x46, 0x62, 0x9E, 0x5C, 0x8C, 0x79, 0x7F, + 0x9F, 0x4E, 0x40, 0xE9, 0x9A, 0x01, 0x00, 0x23, 0x2A, 0x11, 0x04, 0x04, + 0x35, 0x27, 0x2A, 0x35, 0x3F, 0x3D, 0x05, 0x1B, 0xB7, 0xC0, 0x03, 0x02, + 0xD2, 0x01, 0x01, 0x50, 0x57, 0x00, 0x03, 0x00, 0x6A, 0xFE, 0x55, 0x04, + 0x4C, 0x06, 0x15, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x2A, 0x00, 0x00, 0x41, + 0x25, 0x11, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x01, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x05, 0x32, 0x36, 0x27, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x02, 0x69, 0x01, 0x08, 0x48, 0x42, + 0x25, 0x2C, 0x1E, 0x4A, 0x22, 0xA6, 0xB3, 0xFE, 0x01, 0x67, 0xB0, 0x6C, + 0x6A, 0xB0, 0x6A, 0x6A, 0xB0, 0x6A, 0x6B, 0xB0, 0x68, 0x01, 0x84, 0x3D, + 0x58, 0x01, 0x58, 0x3C, 0x42, 0x56, 0x56, 0x04, 0x17, 0x80, 0xFB, 0x40, + 0x5C, 0x50, 0x09, 0xD0, 0x08, 0x07, 0xC6, 0xBC, 0x04, 0xC0, 0x69, 0xAE, + 0x67, 0x67, 0xAE, 0x69, 0x68, 0xAF, 0x69, 0x69, 0xAE, 0x30, 0x4E, 0x4E, + 0x4D, 0x4D, 0x4E, 0x4C, 0x4E, 0x4E, 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xEA, + 0x04, 0x3A, 0x04, 0x45, 0x06, 0x06, 0x02, 0x85, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x40, 0xFF, 0xE8, 0x06, 0x17, 0x04, 0x44, 0x00, 0x27, 0x00, 0x39, + 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x25, 0x15, 0x05, 0x37, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x01, 0x22, 0x26, 0x26, 0x27, 0x07, 0x27, 0x25, + 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x02, 0x3C, 0x6F, + 0xBA, 0x88, 0x4B, 0x03, 0x90, 0xFC, 0xF0, 0x72, 0x40, 0x75, 0x52, 0x51, + 0x76, 0x40, 0x42, 0x7B, 0x58, 0x3E, 0x61, 0x42, 0x0F, 0xED, 0x16, 0x86, + 0xCA, 0x7C, 0xA1, 0xEA, 0x7F, 0x81, 0xE6, 0x02, 0xAC, 0x4A, 0x66, 0x42, + 0x16, 0x88, 0x06, 0x01, 0x2E, 0x14, 0x22, 0x31, 0x26, 0x11, 0x27, 0x13, + 0x28, 0x26, 0x4B, 0x18, 0x4D, 0x91, 0xCC, 0x7F, 0x1B, 0x8E, 0xB0, 0x7A, + 0x4A, 0x5A, 0x86, 0x49, 0x49, 0x85, 0x57, 0x70, 0x5F, 0x8B, 0x4C, 0x25, + 0x43, 0x2F, 0x0B, 0x65, 0x99, 0x56, 0x8E, 0xFB, 0xA3, 0xA3, 0xFD, 0x90, + 0x01, 0x10, 0x40, 0x84, 0x67, 0x15, 0xAE, 0x31, 0x7F, 0x8B, 0x37, 0x08, + 0x06, 0xA0, 0x11, 0x11, 0xFF, 0xFF, 0x00, 0x56, 0xFE, 0x45, 0x04, 0x99, + 0x04, 0x2E, 0x06, 0x07, 0x05, 0x49, 0x00, 0x00, 0xFE, 0x5C, 0xFF, 0xFF, + 0x00, 0x56, 0xFE, 0x45, 0x04, 0x99, 0x05, 0xE8, 0x06, 0x27, 0x05, 0x49, + 0x00, 0x00, 0xFE, 0x5C, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xD6, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x56, 0xFE, 0x55, 0x04, 0xBE, 0x04, 0x2E, 0x00, 0x35, + 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x01, 0x07, 0x01, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x23, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x1E, 0x03, + 0x15, 0x14, 0x0E, 0x02, 0x02, 0x24, 0x53, 0xA4, 0x87, 0x50, 0x59, 0xA2, + 0x6C, 0x5C, 0x9E, 0x81, 0x31, 0x01, 0x55, 0x74, 0xFE, 0xB0, 0x3A, 0x9F, + 0x5B, 0x41, 0x49, 0x46, 0x73, 0x44, 0x73, 0x8F, 0x42, 0x4E, 0x8B, 0x5B, + 0x94, 0x01, 0x56, 0xFD, 0x8C, 0x03, 0xC1, 0xFE, 0x6A, 0x6B, 0xA0, 0x6A, + 0x34, 0x4D, 0x94, 0xD9, 0xFE, 0x55, 0x27, 0x50, 0x78, 0x51, 0x55, 0x7B, + 0x46, 0x32, 0x4B, 0x27, 0xFE, 0xF8, 0x8F, 0x01, 0x05, 0x2E, 0x4E, 0x31, + 0x26, 0x24, 0x33, 0x1B, 0x57, 0x84, 0x42, 0x46, 0x70, 0x3F, 0xBB, 0x01, + 0x55, 0x04, 0xE0, 0xB8, 0xFE, 0x6F, 0x04, 0x08, 0x50, 0x7A, 0x95, 0x4D, + 0x5D, 0xAA, 0x84, 0x4D, 0x00, 0x01, 0x00, 0x4F, 0xFE, 0x45, 0x04, 0x9D, + 0x04, 0x2E, 0x00, 0x22, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x37, 0x35, 0x01, 0x35, 0x21, 0x15, 0x21, 0x15, 0x01, 0x15, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x37, 0x21, 0x0E, 0x02, 0x02, 0x76, 0xA1, 0xF9, 0x8D, 0x6A, 0xCD, 0x95, + 0xFE, 0x68, 0x03, 0xC3, 0xFD, 0x85, 0x01, 0x5C, 0x90, 0x65, 0x8F, 0x4C, + 0x49, 0x82, 0x56, 0x58, 0x80, 0x48, 0x01, 0x01, 0x04, 0x02, 0x85, 0xF5, + 0xFE, 0x45, 0x73, 0xCA, 0x82, 0x6E, 0xBA, 0x7A, 0x0C, 0x04, 0x01, 0xB9, + 0xBF, 0xE0, 0x04, 0xFE, 0x7D, 0xBF, 0x3D, 0x6F, 0x4C, 0x4A, 0x6E, 0x3C, + 0x41, 0x7C, 0x55, 0x8C, 0xDD, 0x80, 0x00, 0x02, 0x00, 0x51, 0xFE, 0x45, + 0x04, 0x01, 0x04, 0x2E, 0x00, 0x07, 0x00, 0x33, 0x00, 0x00, 0x53, 0x21, + 0x15, 0x01, 0x23, 0x35, 0x25, 0x21, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x37, 0x33, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x3E, 0x02, 0x37, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x0E, 0x02, 0x87, 0x03, + 0x7A, 0xFD, 0xD2, 0x93, 0x01, 0x37, 0xFE, 0x10, 0xCB, 0x67, 0x53, 0x36, + 0x64, 0x43, 0x03, 0xFD, 0x6C, 0xD2, 0x9A, 0x86, 0xCA, 0x70, 0x4A, 0x79, + 0x92, 0x47, 0x41, 0x61, 0x36, 0x54, 0x59, 0x71, 0x08, 0x69, 0x85, 0xC1, + 0x69, 0x45, 0x75, 0x93, 0x4E, 0x50, 0x60, 0x2A, 0x04, 0x2E, 0x9C, 0xFE, + 0x3F, 0x9C, 0xEE, 0xFC, 0x26, 0x3C, 0x3F, 0x1E, 0x4A, 0x41, 0x5A, 0xA6, + 0x6A, 0x54, 0x96, 0x64, 0x53, 0x73, 0x4A, 0x2E, 0x0F, 0x0E, 0x1B, 0x32, + 0x2C, 0x33, 0x37, 0xBE, 0x4B, 0x87, 0x5C, 0x4C, 0x6D, 0x4B, 0x32, 0x12, + 0x11, 0x2E, 0x38, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x05, 0x8C, 0x05, + 0xD2, 0x00, 0x2F, 0x00, 0x00, 0x61, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x01, 0xF4, 0x8C, 0xA8, 0x4B, 0xFF, 0x3D, + 0x42, 0x01, 0xD8, 0x5F, 0x60, 0x4C, 0x46, 0xB6, 0x99, 0x9C, 0x6A, 0xC3, + 0x82, 0x80, 0xC0, 0x6F, 0x08, 0xED, 0x05, 0x69, 0x57, 0x53, 0x64, 0x4B, + 0x46, 0xBE, 0x9E, 0x95, 0x6E, 0xC8, 0x89, 0x4C, 0x97, 0x71, 0x04, 0x7E, + 0xFB, 0x72, 0x42, 0x3D, 0x3A, 0x38, 0x31, 0x3B, 0x0D, 0x23, 0x1E, 0x91, + 0x79, 0x62, 0x94, 0x52, 0x53, 0x97, 0x68, 0x0A, 0x44, 0x5A, 0x4A, 0x37, + 0x2F, 0x39, 0x0F, 0x28, 0x21, 0x8E, 0x76, 0x67, 0x8F, 0x4A, 0x00, 0x06, + 0x00, 0x5C, 0x00, 0x00, 0x03, 0x9B, 0x05, 0xAF, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x13, 0x15, + 0x21, 0x35, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x02, 0xE8, + 0xFE, 0x24, 0x14, 0xC4, 0x03, 0x3F, 0xC4, 0x11, 0xFE, 0x24, 0x14, 0xC4, + 0x03, 0x3F, 0xC4, 0x02, 0x47, 0x99, 0x99, 0xFD, 0xB9, 0x02, 0x47, 0xFD, + 0xB9, 0x02, 0x47, 0x03, 0x68, 0x9A, 0x9A, 0xFD, 0xBC, 0x02, 0x44, 0xFD, + 0xBC, 0x02, 0x44, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x4E, 0x04, 0x4E, 0x04, + 0x42, 0x06, 0x06, 0x02, 0x92, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4C, 0x00, + 0x00, 0x04, 0x08, 0x05, 0xE6, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x41, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x23, 0x25, 0x11, 0x21, 0x11, 0x01, 0x9C, 0x77, 0x5E, 0x67, + 0x28, 0x01, 0x25, 0x66, 0x63, 0x55, 0x74, 0x05, 0xF9, 0x04, 0x7A, 0xCA, + 0x7B, 0xAA, 0xE0, 0x6F, 0x6E, 0xDF, 0xA8, 0x77, 0x01, 0x05, 0xFE, 0xF2, + 0x02, 0x2F, 0x5D, 0x99, 0x57, 0x4C, 0x52, 0x98, 0x61, 0x5F, 0x4D, 0x6D, + 0xAD, 0x65, 0x92, 0xF7, 0x95, 0x4C, 0x96, 0xF7, 0x93, 0xD3, 0xFD, 0xD1, + 0x02, 0x2F, 0x00, 0x03, 0x00, 0x4C, 0x00, 0x00, 0x04, 0x08, 0x05, 0xE6, + 0x00, 0x03, 0x00, 0x20, 0x00, 0x24, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x37, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x23, 0x25, 0x11, 0x21, 0x11, 0x03, 0x71, 0xFD, 0x4E, + 0xDD, 0x77, 0x5E, 0x67, 0x28, 0x01, 0x25, 0x66, 0x63, 0x55, 0x74, 0x05, + 0xF9, 0x04, 0x7A, 0xCB, 0x7A, 0xAA, 0xE0, 0x6F, 0x6F, 0xDE, 0xA8, 0x77, + 0x01, 0x05, 0xFE, 0xF2, 0x01, 0x3A, 0xAF, 0xAF, 0xF5, 0x5D, 0x99, 0x57, + 0x4C, 0x52, 0x98, 0x61, 0x5F, 0x4D, 0x6D, 0xAD, 0x65, 0x92, 0xF7, 0x95, + 0x4C, 0x96, 0xF7, 0x93, 0xD3, 0xFD, 0xD1, 0x02, 0x2F, 0x00, 0x02, 0x00, + 0x5F, 0xFF, 0xEC, 0x03, 0xF9, 0x05, 0x44, 0x00, 0x20, 0x00, 0x24, 0x00, + 0x00, 0x41, 0x34, 0x2E, 0x04, 0x35, 0x11, 0x21, 0x11, 0x14, 0x1E, 0x04, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x33, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x13, 0x15, 0x21, 0x35, 0x02, 0xF5, 0x35, 0x55, 0x5F, + 0x55, 0x36, 0x01, 0x0A, 0x35, 0x54, 0x5D, 0x53, 0x35, 0x70, 0xCB, 0x89, + 0x98, 0xD2, 0x6C, 0xFF, 0x03, 0x43, 0x62, 0x33, 0x59, 0x64, 0x56, 0xFD, + 0x89, 0x01, 0x29, 0x2C, 0x3D, 0x32, 0x39, 0x52, 0x7B, 0x5B, 0x02, 0x1F, + 0xFD, 0xE2, 0x43, 0x53, 0x37, 0x31, 0x3F, 0x64, 0x4F, 0x5F, 0x96, 0x55, + 0x6C, 0xA7, 0x59, 0x40, 0x4C, 0x1F, 0x44, 0x03, 0x49, 0xC0, 0xC0, 0xFF, + 0xFF, 0x00, 0x4C, 0x00, 0x00, 0x04, 0x08, 0x05, 0xE6, 0x06, 0x26, 0x09, + 0x4D, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0x00, 0x65, 0xFD, 0xD9, 0x00, + 0x02, 0x00, 0x4C, 0xFF, 0xEC, 0x04, 0x08, 0x05, 0xD2, 0x00, 0x1C, 0x00, + 0x20, 0x00, 0x00, 0x41, 0x23, 0x35, 0x33, 0x36, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x35, 0x36, 0x26, 0x26, 0x13, 0x11, 0x21, 0x11, + 0x02, 0x13, 0x52, 0x4E, 0xAA, 0xE0, 0x6F, 0x6F, 0xDF, 0xAA, 0x84, 0xC9, + 0x73, 0x04, 0xF9, 0x05, 0x68, 0x61, 0x63, 0x66, 0x24, 0x01, 0x24, 0x66, + 0x29, 0xFE, 0xF6, 0x03, 0xD5, 0xD3, 0x01, 0x94, 0xF7, 0x97, 0x7B, 0x95, + 0xF8, 0x93, 0x68, 0xBA, 0x7B, 0x52, 0x77, 0x67, 0x99, 0x4C, 0x7B, 0x4F, + 0x9B, 0x64, 0x01, 0xFD, 0xFE, 0x03, 0x01, 0xFD, 0x00, 0x02, 0x00, 0x4C, + 0x00, 0x00, 0x04, 0x08, 0x05, 0xE6, 0x00, 0x1D, 0x00, 0x21, 0x00, 0x00, + 0x41, 0x33, 0x15, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x15, 0x14, 0x1E, 0x02, 0x03, 0x11, 0x21, 0x11, 0x02, 0x41, 0x52, + 0x4F, 0xA9, 0xE0, 0x6F, 0x6F, 0xE0, 0xA8, 0x87, 0xCB, 0x72, 0x01, 0xF8, + 0x04, 0x6A, 0x62, 0x61, 0x66, 0x23, 0x11, 0x31, 0x5D, 0x3F, 0x01, 0x08, + 0x02, 0x2D, 0xD3, 0x93, 0xF7, 0x95, 0x4C, 0x97, 0xF8, 0x92, 0x67, 0xBA, + 0x7D, 0x54, 0x77, 0x67, 0x99, 0x4E, 0x4C, 0x37, 0x74, 0x64, 0x3D, 0xFD, + 0xD3, 0x02, 0x30, 0xFD, 0xD0, 0x00, 0x02, 0x00, 0x6B, 0xFE, 0x4C, 0x03, + 0xEC, 0x04, 0x6C, 0x00, 0x17, 0x00, 0x26, 0x00, 0x00, 0x77, 0x35, 0x3E, + 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x21, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x04, 0x37, 0x37, 0x16, 0x16, + 0x15, 0x14, 0x00, 0x05, 0x35, 0x3E, 0x02, 0x35, 0x34, 0x26, 0xD7, 0xAC, + 0xE0, 0x6D, 0x54, 0x53, 0x38, 0x52, 0x2C, 0xFE, 0xF8, 0x6E, 0xCB, 0x8C, + 0xCA, 0xDE, 0xB3, 0xFE, 0xA9, 0x8E, 0x52, 0x9B, 0xA3, 0xFE, 0x75, 0xFE, + 0x76, 0xC0, 0xE5, 0x67, 0x49, 0xB1, 0xBF, 0x31, 0x76, 0x91, 0x57, 0x50, + 0x53, 0x26, 0x46, 0x31, 0x6F, 0xA1, 0x57, 0xB6, 0xA3, 0x8B, 0xEA, 0xB3, + 0xB9, 0x75, 0x17, 0xB3, 0x96, 0xF3, 0xFE, 0xCA, 0x44, 0xC6, 0x37, 0x7B, + 0x9C, 0x68, 0x5B, 0x74, 0xFF, 0xFF, 0xFF, 0xC2, 0xFE, 0x1D, 0x02, 0xA8, + 0x06, 0x19, 0x06, 0x26, 0x06, 0x21, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, + 0xFF, 0x52, 0xFD, 0x6C, 0x00, 0x03, 0x00, 0x75, 0x00, 0x00, 0x04, 0x58, + 0x04, 0x2E, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x11, + 0x23, 0x11, 0x21, 0x01, 0x21, 0x27, 0x33, 0x01, 0x03, 0x01, 0x37, 0x01, + 0x01, 0x74, 0xFF, 0x03, 0xE3, 0xFD, 0xFB, 0xFE, 0xE3, 0x0B, 0xAA, 0x01, + 0x55, 0x0E, 0xFE, 0xA9, 0xB3, 0x01, 0xDA, 0x04, 0x2E, 0xFB, 0xD2, 0x04, + 0x2E, 0xFD, 0x80, 0xCB, 0x01, 0xB5, 0xFB, 0xD2, 0x01, 0xB9, 0x94, 0xFD, + 0xB3, 0x00, 0x02, 0x00, 0x16, 0xFF, 0xFA, 0x04, 0xC4, 0x05, 0xD7, 0x00, + 0x03, 0x00, 0x2A, 0x00, 0x00, 0x53, 0x27, 0x25, 0x17, 0x01, 0x01, 0x27, + 0x2E, 0x02, 0x07, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x01, 0x1E, 0x02, 0x37, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x27, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0xF2, 0x22, + 0x02, 0x3E, 0x26, 0xFC, 0xE2, 0x01, 0x9D, 0x26, 0x11, 0x2A, 0x39, 0x27, + 0x62, 0x0E, 0x26, 0x57, 0x2B, 0x4F, 0x7F, 0x5E, 0x21, 0x01, 0x5F, 0x12, + 0x28, 0x36, 0x26, 0x4A, 0x0E, 0x1F, 0x47, 0x24, 0x50, 0x7B, 0x5B, 0x1E, + 0x74, 0x20, 0x36, 0x1A, 0x45, 0x1A, 0x35, 0x20, 0xC4, 0x04, 0x09, 0x8A, + 0xC8, 0x88, 0xFB, 0x2D, 0x04, 0x2B, 0x65, 0x2F, 0x35, 0x15, 0x03, 0x02, + 0xCD, 0x03, 0x03, 0x36, 0x70, 0x56, 0xFC, 0x68, 0x2F, 0x36, 0x15, 0x02, + 0x02, 0xCC, 0x03, 0x04, 0x37, 0x6F, 0x57, 0x01, 0x3C, 0x5C, 0xB7, 0x5E, + 0x5D, 0xB8, 0x5C, 0xFD, 0xCD, 0x00, 0x02, 0x00, 0x81, 0xFE, 0x45, 0x05, + 0x03, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x24, 0x00, 0x00, 0x53, 0x33, 0x11, + 0x23, 0x05, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x23, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x17, 0x01, 0x15, 0x1E, + 0x02, 0x07, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x27, 0x81, 0xF6, 0xF6, 0x01, + 0x82, 0x26, 0x73, 0x47, 0x51, 0x7B, 0x45, 0x45, 0x7D, 0x57, 0xA4, 0x01, + 0x5E, 0xFD, 0x8D, 0x03, 0xBB, 0x01, 0xFE, 0x69, 0x92, 0xC6, 0x64, 0x01, + 0x01, 0x8B, 0xF6, 0xA1, 0x7D, 0xD0, 0x49, 0x05, 0xD2, 0xFA, 0x4C, 0xA7, + 0x28, 0x2E, 0x42, 0x7A, 0x55, 0x52, 0x76, 0x3E, 0xBF, 0x01, 0x82, 0x0C, + 0xD9, 0xB5, 0xFE, 0x44, 0x0C, 0x10, 0x7A, 0xBD, 0x77, 0x90, 0xD7, 0x77, + 0x4B, 0x42, 0x00, 0x02, 0x00, 0x39, 0xFE, 0x5E, 0x05, 0x37, 0x04, 0x6C, + 0x00, 0x25, 0x00, 0x2C, 0x00, 0x00, 0x65, 0x32, 0x36, 0x37, 0x11, 0x21, + 0x11, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x12, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x11, 0x25, 0x11, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x01, 0x11, 0x21, 0x11, 0x07, + 0x11, 0x25, 0x02, 0x2D, 0x2E, 0x43, 0x1A, 0x01, 0x09, 0x27, 0x6F, 0x98, + 0x68, 0xA5, 0xDE, 0x6F, 0x6E, 0xE0, 0xAA, 0x60, 0x9B, 0x72, 0x23, 0xFE, + 0xF7, 0x1A, 0x46, 0x31, 0x5E, 0x64, 0x25, 0x31, 0x69, 0x03, 0x5D, 0xFE, + 0xF9, 0xE7, 0x01, 0x31, 0xC0, 0x18, 0x15, 0x01, 0x67, 0xFE, 0x5D, 0x37, + 0x5A, 0x34, 0x93, 0xF8, 0x95, 0x22, 0xA4, 0x01, 0x04, 0x96, 0x3E, 0x60, + 0x34, 0xFE, 0x86, 0x0D, 0x01, 0x36, 0x1A, 0x1C, 0x65, 0xA6, 0x60, 0x22, + 0x61, 0x96, 0x55, 0x03, 0x9E, 0xFA, 0x00, 0x04, 0xC9, 0x6C, 0x01, 0x15, + 0x8E, 0x00, 0x02, 0x00, 0x80, 0xFF, 0xEC, 0x06, 0x71, 0x04, 0x6C, 0x00, + 0x1B, 0x00, 0x37, 0x00, 0x00, 0x41, 0x15, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x02, 0x23, + 0x22, 0x2E, 0x02, 0x27, 0x34, 0x36, 0x36, 0x24, 0x17, 0x35, 0x32, 0x04, + 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x02, 0x35, 0x35, 0x33, + 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x03, + 0x79, 0xB9, 0xD9, 0x5E, 0x23, 0x4E, 0x42, 0x4A, 0x6A, 0xBF, 0xCB, 0xBE, + 0x74, 0xA0, 0x64, 0x2D, 0x01, 0x5F, 0xBE, 0x01, 0x1D, 0xBF, 0xBE, 0x01, + 0x1D, 0xBF, 0x5E, 0x2E, 0x63, 0xA1, 0x74, 0xBD, 0xCC, 0xBF, 0x01, 0x6A, + 0x4A, 0x41, 0x4F, 0x22, 0x5D, 0xD9, 0x04, 0x6C, 0xD3, 0x75, 0xC3, 0x76, + 0x4F, 0x89, 0x53, 0x85, 0xA2, 0xBD, 0xAB, 0xFD, 0xFE, 0xF0, 0x58, 0x93, + 0xB5, 0x5D, 0x88, 0xE9, 0xB0, 0x62, 0xD3, 0xD3, 0x62, 0xB0, 0xE9, 0x88, + 0x5D, 0xB5, 0x93, 0x58, 0x01, 0x10, 0xFD, 0xAB, 0xBD, 0xA1, 0x86, 0x53, + 0x89, 0x4F, 0x76, 0xC3, 0x75, 0x00, 0x01, 0x00, 0x4C, 0xFF, 0xEC, 0x04, + 0x08, 0x04, 0x6C, 0x00, 0x22, 0x00, 0x00, 0x53, 0x33, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x4C, 0xF9, 0x03, 0x36, 0x5E, 0x3D, 0x5E, 0x64, + 0x25, 0x01, 0x27, 0x65, 0x5F, 0x66, 0x66, 0x05, 0xF9, 0x04, 0x71, 0xCA, + 0x88, 0xA6, 0xDF, 0x70, 0x72, 0xDE, 0xA3, 0x82, 0xCC, 0x77, 0x01, 0x6E, + 0x34, 0x4E, 0x2C, 0x62, 0x9B, 0x55, 0x2A, 0x54, 0xA1, 0x68, 0x80, 0x68, + 0x8A, 0xC6, 0x6B, 0x95, 0xFE, 0x9D, 0x2A, 0x99, 0xFA, 0x93, 0x66, 0xAF, + 0x00, 0x03, 0x00, 0x84, 0xFE, 0x74, 0x04, 0xF0, 0x05, 0xD2, 0x00, 0x12, + 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, 0x53, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, + 0x25, 0x15, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x13, 0x11, 0x21, 0x11, 0x84, 0x8C, + 0xFF, 0xAB, 0xAC, 0xFE, 0x8C, 0x8C, 0xFE, 0xAC, 0x7B, 0xCE, 0x99, 0x54, + 0x01, 0x0A, 0x2B, 0x50, 0x6E, 0x43, 0x42, 0x6F, 0x4F, 0x2C, 0x49, 0x86, + 0x5D, 0x42, 0x6F, 0x50, 0x2B, 0xA9, 0x01, 0x05, 0x02, 0x20, 0x18, 0xB8, + 0xFB, 0x81, 0x81, 0xFB, 0xB8, 0x18, 0xB8, 0xFC, 0x80, 0x46, 0x8C, 0xD4, + 0xA6, 0x18, 0x5A, 0x85, 0x56, 0x2B, 0x2B, 0x56, 0x85, 0x5A, 0x18, 0x74, + 0x9D, 0x50, 0x2D, 0x57, 0x85, 0xFB, 0xE4, 0x07, 0x5E, 0xF8, 0xA2, 0x00, + 0x02, 0x00, 0x43, 0xFF, 0xEC, 0x02, 0x96, 0x06, 0x00, 0x00, 0x04, 0x00, + 0x14, 0x00, 0x00, 0x65, 0x11, 0x21, 0x11, 0x23, 0x05, 0x37, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x16, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x01, 0x8D, 0x01, 0x09, 0xFD, 0xFE, 0xAA, 0x01, 0x18, 0x38, 0x17, 0x53, + 0x6C, 0x39, 0x05, 0x39, 0x01, 0x49, 0x91, 0x6C, 0x16, 0x35, 0xDB, 0x05, + 0x25, 0xFA, 0x00, 0x07, 0xFB, 0x03, 0x06, 0x38, 0x68, 0x48, 0x04, 0x89, + 0xDB, 0x7F, 0x07, 0x00, 0x04, 0x00, 0x3B, 0xFE, 0x5E, 0x05, 0x0B, 0x06, + 0x15, 0x00, 0x03, 0x00, 0x15, 0x00, 0x25, 0x00, 0x35, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x13, 0x21, 0x11, 0x06, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x01, 0x21, 0x11, + 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x05, 0x21, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x03, 0x50, 0xFC, 0xEB, 0xAD, 0x01, 0x09, + 0x01, 0x35, 0x40, 0x23, 0x4D, 0x3E, 0x0B, 0x23, 0x91, 0x52, 0x76, 0x84, + 0x36, 0x03, 0x12, 0xFE, 0xF8, 0x01, 0xD5, 0xB4, 0x28, 0x48, 0x21, 0x06, + 0x13, 0x2F, 0x1C, 0x50, 0x5D, 0xFE, 0xF8, 0x01, 0x08, 0xD4, 0xB5, 0x26, + 0x48, 0x1F, 0x04, 0x12, 0x2F, 0x1D, 0x52, 0x5A, 0x04, 0x3A, 0xC0, 0xC0, + 0x01, 0x0A, 0xFC, 0x02, 0x4A, 0x37, 0x0A, 0x0C, 0x02, 0xC9, 0x0A, 0x1E, + 0x56, 0x9B, 0x69, 0xFE, 0xBA, 0x04, 0x9D, 0xB7, 0xC1, 0x0A, 0x08, 0xCD, + 0x05, 0x04, 0x52, 0x50, 0x3D, 0xFB, 0x74, 0xB6, 0xC0, 0x0A, 0x07, 0xCD, + 0x04, 0x06, 0x55, 0x4D, 0x00, 0x03, 0x00, 0x12, 0xFF, 0xFD, 0x02, 0x8A, + 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x53, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x01, 0x15, 0x21, 0x35, 0x17, 0x11, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0xAF, 0xFD, + 0x37, 0x40, 0x17, 0x32, 0x14, 0x0A, 0x1E, 0x51, 0x29, 0x9C, 0xA7, 0x01, + 0xD6, 0xFD, 0x8D, 0x9D, 0xA8, 0xA5, 0x2D, 0x47, 0x19, 0x12, 0x3F, 0x18, + 0x3D, 0x36, 0x04, 0x2E, 0xFD, 0x17, 0x42, 0x38, 0x01, 0x01, 0xCB, 0x03, + 0x02, 0x94, 0x89, 0x03, 0x14, 0xCA, 0xCA, 0xDD, 0x01, 0x5D, 0x92, 0x95, + 0x02, 0x01, 0xCD, 0x01, 0x01, 0x2E, 0x32, 0xFE, 0xAA, 0x00, 0x02, 0x00, + 0x6A, 0xFF, 0xEE, 0x04, 0x4E, 0x04, 0x3A, 0x00, 0x22, 0x00, 0x26, 0x00, + 0x00, 0x41, 0x27, 0x13, 0x21, 0x15, 0x21, 0x07, 0x36, 0x36, 0x37, 0x36, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x25, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x03, + 0x15, 0x21, 0x35, 0x01, 0xCC, 0xEC, 0x4E, 0x02, 0xDC, 0xFD, 0xFD, 0x1D, + 0x22, 0x77, 0x41, 0x7D, 0xB0, 0x5D, 0x5E, 0xCB, 0xA4, 0x54, 0xA4, 0x86, + 0x50, 0x01, 0x04, 0x03, 0x6F, 0x58, 0x67, 0x5F, 0x65, 0x60, 0x49, 0x56, + 0x42, 0xFE, 0xC9, 0x01, 0xD1, 0x0E, 0x02, 0x5B, 0xD5, 0xCA, 0x14, 0x21, + 0x01, 0x02, 0x56, 0xA6, 0x75, 0x69, 0xA9, 0x62, 0x28, 0x52, 0x7E, 0x56, + 0x0F, 0x41, 0x45, 0x5E, 0x4C, 0x4C, 0x5D, 0x2A, 0x02, 0x4C, 0xD5, 0xD5, + 0x00, 0x02, 0x00, 0x16, 0x00, 0x00, 0x05, 0x1C, 0x04, 0x2E, 0x00, 0x03, + 0x00, 0x19, 0x00, 0x00, 0x53, 0x27, 0x13, 0x33, 0x13, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0xD0, 0xBA, 0xD5, 0xF6, 0x4E, 0x01, + 0x43, 0x83, 0xBF, 0x68, 0x68, 0xBF, 0x83, 0xFE, 0x0A, 0xFF, 0xF1, 0x55, + 0x63, 0x63, 0x55, 0xFE, 0xC3, 0x02, 0x4D, 0x69, 0x01, 0x78, 0xFE, 0xA1, + 0x59, 0xA0, 0x6C, 0x6D, 0xA2, 0x5B, 0x04, 0x2E, 0xFC, 0xA5, 0x52, 0x45, + 0x44, 0x50, 0x00, 0x02, 0x00, 0x12, 0x00, 0x00, 0x05, 0xCE, 0x05, 0x49, + 0x00, 0x2E, 0x00, 0x32, 0x00, 0x00, 0x61, 0x22, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x01, 0x35, 0x21, 0x05, 0x01, 0xF4, 0x9E, + 0xA7, 0xFE, 0x38, 0x42, 0x01, 0xDD, 0x5E, 0x6A, 0x4C, 0x46, 0xB6, 0x9A, + 0x9C, 0x6B, 0xC2, 0x83, 0x80, 0xC1, 0x6F, 0x07, 0xEE, 0x04, 0x69, 0x57, + 0x53, 0x64, 0x4B, 0x45, 0xBE, 0x9E, 0x96, 0x73, 0xCC, 0x85, 0xFC, 0x08, + 0x03, 0xB6, 0xFE, 0xEB, 0x94, 0x8A, 0x04, 0x2B, 0xFB, 0xF6, 0x43, 0x3B, + 0x38, 0x38, 0x30, 0x38, 0x0E, 0x25, 0x20, 0x97, 0x78, 0x62, 0x94, 0x52, + 0x54, 0x99, 0x69, 0x06, 0x43, 0x5B, 0x4A, 0x37, 0x30, 0x3C, 0x0F, 0x25, + 0x1F, 0x8D, 0x75, 0x68, 0x90, 0x4B, 0x03, 0x63, 0xCB, 0xCB, 0x00, 0x03, + 0x00, 0x50, 0xFF, 0xEC, 0x04, 0xC3, 0x06, 0x14, 0x00, 0x11, 0x00, 0x1F, + 0x00, 0x41, 0x00, 0x00, 0x41, 0x33, 0x36, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x17, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x35, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x23, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, + 0x15, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x02, 0x7F, 0x16, 0xA0, + 0xFC, 0x92, 0x91, 0xFC, 0xA1, 0x16, 0xA0, 0xFD, 0x92, 0x92, 0xFD, 0xB6, + 0x16, 0x87, 0x9D, 0x9D, 0x87, 0x17, 0x87, 0x9B, 0x9C, 0x82, 0x54, 0x82, + 0x4A, 0x51, 0x48, 0x78, 0xBD, 0x6D, 0x95, 0xFB, 0x99, 0x20, 0x99, 0xFB, + 0x96, 0x6D, 0xBD, 0x78, 0x46, 0x51, 0x4A, 0x81, 0x54, 0x03, 0x80, 0x01, + 0x60, 0xC6, 0x99, 0x9B, 0xD2, 0x69, 0x69, 0xD1, 0x9A, 0x9A, 0xC7, 0x60, + 0xC0, 0x85, 0x7B, 0x7B, 0x86, 0x86, 0x7C, 0x7A, 0x85, 0xD4, 0x28, 0x62, + 0x56, 0x5B, 0x62, 0x1A, 0xC8, 0x02, 0x5F, 0xB6, 0x85, 0x9A, 0xB7, 0x51, + 0x01, 0x50, 0xB8, 0x99, 0x84, 0xB6, 0x60, 0x02, 0xC8, 0x1A, 0x62, 0x5C, + 0x55, 0x62, 0x28, 0x00, 0x05, 0x00, 0x5C, 0xFF, 0xEC, 0x06, 0xF1, 0x05, + 0xD2, 0x00, 0x12, 0x00, 0x22, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x4A, 0x00, + 0x00, 0x41, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x27, 0x35, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x05, 0x35, 0x36, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x07, 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x05, 0x11, + 0x21, 0x11, 0x23, 0x01, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x15, 0x0E, 0x03, 0x23, 0x22, 0x26, 0x26, 0x25, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x06, 0xF1, 0x69, 0xC3, 0x86, 0x64, 0x96, 0x69, 0x3F, 0x0E, 0x12, 0x66, + 0xB4, 0x87, 0x86, 0xC1, 0x68, 0xFE, 0xF6, 0x01, 0x2E, 0x67, 0x57, 0x73, + 0x7B, 0x0E, 0x14, 0x77, 0x74, 0x59, 0x65, 0x2A, 0xFD, 0x3B, 0x01, 0x09, + 0xF1, 0xFD, 0x22, 0x68, 0xC2, 0x86, 0x87, 0xB4, 0x65, 0x11, 0x0D, 0x3F, + 0x69, 0x97, 0x64, 0x85, 0xC3, 0x69, 0x01, 0x0A, 0x2A, 0x66, 0x59, 0x74, + 0x76, 0x13, 0x0D, 0x7A, 0x73, 0x57, 0x68, 0x2D, 0x02, 0x34, 0x14, 0xA5, + 0xFE, 0x91, 0x4F, 0x93, 0xCA, 0x7B, 0x2A, 0xA8, 0xFB, 0x8C, 0x8D, 0xFF, + 0xC0, 0x14, 0x66, 0x9F, 0x5D, 0xA2, 0x80, 0x98, 0x7C, 0x9D, 0x5E, 0x9E, + 0xDA, 0x04, 0xED, 0xFA, 0x2E, 0x02, 0x20, 0x14, 0xAC, 0xFF, 0x8D, 0x8C, + 0xFB, 0xA8, 0x2A, 0x7B, 0xCA, 0x93, 0x4F, 0x91, 0xFE, 0xB9, 0x14, 0x61, + 0x9E, 0x5E, 0x9D, 0x7C, 0x98, 0x80, 0xA2, 0x5D, 0x9F, 0x00, 0x05, 0x00, + 0x5C, 0xFE, 0x60, 0x06, 0xF1, 0x04, 0x6C, 0x00, 0x05, 0x00, 0x18, 0x00, + 0x28, 0x00, 0x3B, 0x00, 0x4B, 0x00, 0x00, 0x41, 0x11, 0x37, 0x33, 0x17, + 0x11, 0x01, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, + 0x0E, 0x03, 0x23, 0x22, 0x26, 0x26, 0x25, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x05, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x27, 0x35, 0x3E, 0x02, 0x33, + 0x32, 0x16, 0x16, 0x05, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x03, 0x22, 0x1C, 0xD8, 0x15, + 0xFC, 0x31, 0x68, 0xC2, 0x86, 0x87, 0xB4, 0x65, 0x11, 0x0D, 0x3F, 0x69, + 0x97, 0x64, 0x85, 0xC3, 0x69, 0x01, 0x0A, 0x2A, 0x66, 0x59, 0x74, 0x76, + 0x13, 0x0D, 0x7A, 0x73, 0x57, 0x68, 0x2D, 0x05, 0x8B, 0x69, 0xC3, 0x86, + 0x64, 0x96, 0x69, 0x3F, 0x0E, 0x12, 0x66, 0xB4, 0x87, 0x86, 0xC1, 0x68, + 0xFE, 0xF6, 0x01, 0x2E, 0x67, 0x57, 0x73, 0x7B, 0x0E, 0x14, 0x77, 0x74, + 0x59, 0x65, 0x2A, 0xFE, 0x60, 0x05, 0x24, 0xDA, 0xD0, 0xFA, 0xD2, 0x03, + 0xC0, 0x14, 0xAC, 0xFF, 0x8D, 0x8C, 0xFB, 0xA8, 0x2A, 0x7B, 0xCA, 0x93, + 0x4F, 0x91, 0xFE, 0xB9, 0x14, 0x61, 0x9E, 0x5E, 0x9D, 0x7C, 0x98, 0x80, + 0xA2, 0x5D, 0x9F, 0x66, 0x14, 0xA5, 0xFE, 0x91, 0x4F, 0x93, 0xCA, 0x7B, + 0x2A, 0xA8, 0xFB, 0x8C, 0x8D, 0xFF, 0xC0, 0x14, 0x66, 0x9F, 0x5D, 0xA2, + 0x80, 0x98, 0x7C, 0x9D, 0x5E, 0x9E, 0x00, 0x02, 0x00, 0x71, 0x00, 0x00, + 0x03, 0xE6, 0x04, 0x6C, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x17, 0x21, + 0x11, 0x21, 0x71, 0x71, 0xC9, 0x85, 0xCA, 0xEC, 0x56, 0xB3, 0x8D, 0x72, + 0x3A, 0x6A, 0x5C, 0x50, 0x5E, 0x5A, 0x5C, 0x34, 0x01, 0x0A, 0xFE, 0xF6, + 0x02, 0xB6, 0x89, 0xC4, 0x69, 0xDE, 0xCB, 0x72, 0xAE, 0x61, 0x98, 0x77, + 0x6A, 0x62, 0x7C, 0x77, 0x6C, 0xDC, 0xFE, 0x26, 0xFF, 0xFF, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x16, 0x04, 0x2E, 0x06, 0x06, 0x04, 0xE4, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x75, 0x00, 0x00, 0x05, 0x97, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x09, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x65, 0x15, 0x21, 0x35, + 0x01, 0x01, 0x23, 0x35, 0x01, 0x33, 0x23, 0x15, 0x21, 0x35, 0x13, 0x11, + 0x23, 0x11, 0x05, 0x97, 0xFC, 0xC8, 0x03, 0x2C, 0xFD, 0x27, 0xA3, 0x02, + 0xD9, 0xA3, 0x64, 0xFB, 0xD1, 0x7C, 0xFF, 0xD4, 0xD4, 0xD4, 0x02, 0xE6, + 0xFC, 0x46, 0xA8, 0x03, 0xB6, 0xD5, 0xD5, 0x01, 0x74, 0xFA, 0x2E, 0x05, + 0xD2, 0x00, 0x08, 0x00, 0x45, 0x00, 0x00, 0x03, 0xB5, 0x05, 0xB2, 0x00, + 0x05, 0x00, 0x0A, 0x00, 0x0F, 0x00, 0x15, 0x00, 0x1B, 0x00, 0x20, 0x00, + 0x25, 0x00, 0x2B, 0x00, 0x00, 0x41, 0x13, 0x33, 0x07, 0x03, 0x23, 0x03, + 0x13, 0x17, 0x23, 0x03, 0x01, 0x13, 0x33, 0x03, 0x23, 0x03, 0x13, 0x17, + 0x23, 0x03, 0x27, 0x03, 0x13, 0x33, 0x07, 0x03, 0x23, 0x03, 0x13, 0x17, + 0x23, 0x03, 0x01, 0x13, 0x33, 0x03, 0x23, 0x03, 0x13, 0x17, 0x23, 0x03, + 0x27, 0x01, 0x26, 0x8D, 0x7E, 0x18, 0x94, 0x68, 0x1C, 0x5C, 0x08, 0x79, + 0xA7, 0x02, 0x5A, 0x5A, 0xBC, 0xA7, 0x79, 0x50, 0x92, 0x08, 0x6A, 0x91, + 0x17, 0xA7, 0x8D, 0x7E, 0x18, 0x94, 0x68, 0x1C, 0x5C, 0x08, 0x79, 0xA7, + 0x02, 0x5A, 0x5A, 0xBC, 0xA7, 0x79, 0x50, 0x92, 0x08, 0x6A, 0x91, 0x17, + 0x03, 0xFC, 0x01, 0xB6, 0x9B, 0xFE, 0x51, 0x02, 0x4A, 0xFE, 0x4C, 0x96, + 0x02, 0x4A, 0xFE, 0x4D, 0x01, 0xB3, 0xFD, 0xB6, 0x02, 0x4A, 0xFE, 0x4C, + 0x96, 0x01, 0xAF, 0x9B, 0xFA, 0xE4, 0x01, 0xB2, 0x99, 0xFE, 0x51, 0x02, + 0x48, 0xFE, 0x50, 0x98, 0x02, 0x48, 0xFE, 0x51, 0x01, 0xAF, 0xFD, 0xB8, + 0x02, 0x48, 0xFE, 0x4E, 0x96, 0x01, 0xAF, 0x99, 0x00, 0x02, 0x00, 0x0D, + 0x00, 0x00, 0x02, 0xCB, 0x06, 0x15, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x61, 0x21, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x37, 0x15, 0x21, 0x35, 0x01, 0xBC, 0xFE, 0xF6, + 0xD3, 0xB6, 0x26, 0x4A, 0x20, 0x07, 0x11, 0x30, 0x1A, 0x52, 0x5B, 0xDE, + 0xFD, 0x73, 0x04, 0x9C, 0xB8, 0xC1, 0x0A, 0x07, 0xCD, 0x04, 0x05, 0x54, + 0x50, 0x35, 0xAE, 0xAE, 0xFF, 0xFF, 0x00, 0x5F, 0xFF, 0xE8, 0x04, 0x72, + 0x05, 0xD2, 0x04, 0x06, 0x04, 0x70, 0x1A, 0x00, 0x00, 0x03, 0x00, 0x4C, + 0x00, 0x00, 0x04, 0xC3, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x25, 0x11, 0x21, 0x11, 0x21, 0x11, + 0x23, 0x11, 0x04, 0xC3, 0xFB, 0x89, 0x01, 0xCE, 0xFE, 0xFF, 0x02, 0xB6, + 0xFF, 0x05, 0x50, 0xB0, 0xB0, 0x82, 0xFA, 0x2E, 0x05, 0xD2, 0xFA, 0x2E, + 0x05, 0xD2, 0x00, 0x01, 0x00, 0x6A, 0xFF, 0xEC, 0x04, 0x4F, 0x06, 0x24, + 0x00, 0x26, 0x00, 0x00, 0x41, 0x37, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x12, 0x36, 0x36, 0x37, 0x17, + 0x0E, 0x03, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x02, 0x67, 0x69, 0x6D, 0xAD, 0x65, 0x76, 0xDB, 0x98, + 0x78, 0xBC, 0x83, 0x45, 0x5C, 0xAE, 0xF9, 0x9D, 0x57, 0x67, 0xB2, 0x88, + 0x4C, 0x3E, 0x6B, 0x44, 0x48, 0x66, 0x37, 0x3B, 0x65, 0x03, 0x08, 0xC6, + 0x26, 0x94, 0xCD, 0x7B, 0x96, 0xD7, 0x73, 0x59, 0x9E, 0xD1, 0x78, 0x3B, + 0xAB, 0x01, 0x29, 0xF3, 0xBA, 0x3C, 0xC6, 0x2F, 0x8A, 0xBB, 0xF2, 0x97, + 0x51, 0x6C, 0x95, 0x4E, 0x3A, 0x70, 0x4F, 0x5A, 0x83, 0x58, 0x00, 0x03, + 0x00, 0x32, 0xFE, 0x4C, 0x04, 0xE9, 0x04, 0x5E, 0x00, 0x04, 0x00, 0x10, + 0x00, 0x26, 0x00, 0x00, 0x41, 0x13, 0x13, 0x27, 0x01, 0x13, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x27, 0x27, + 0x01, 0x21, 0x01, 0x0E, 0x02, 0x02, 0x04, 0xD0, 0x5C, 0xFC, 0xFE, 0xAD, + 0xD8, 0x3D, 0x57, 0x56, 0x3E, 0x41, 0x59, 0x5A, 0x3A, 0x6A, 0xAF, 0x68, + 0x69, 0xB0, 0x6B, 0x4E, 0x8C, 0x6C, 0x3E, 0x8E, 0x08, 0x01, 0x25, 0x01, + 0x20, 0xFE, 0x52, 0x27, 0x6C, 0x93, 0x04, 0x5E, 0xFD, 0x4F, 0xFE, 0x5B, + 0xAE, 0x03, 0xA8, 0xFA, 0xD2, 0x4D, 0x4D, 0x4E, 0x4F, 0x4F, 0x4E, 0x4D, + 0x4D, 0xE4, 0x67, 0xAE, 0x69, 0x69, 0xAE, 0x69, 0x3C, 0x6A, 0x8B, 0x4F, + 0x55, 0x99, 0x03, 0xA6, 0xFB, 0x2C, 0x6D, 0x8E, 0x43, 0x00, 0x01, 0x00, + 0x4C, 0xFF, 0xEC, 0x04, 0x08, 0x04, 0x6C, 0x00, 0x22, 0x00, 0x00, 0x53, + 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x36, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x4C, 0xF9, 0x03, 0x36, + 0x5E, 0x3D, 0x5E, 0x64, 0x25, 0x01, 0x27, 0x65, 0x5F, 0x66, 0x66, 0x05, + 0xF9, 0x04, 0x71, 0xCA, 0x88, 0xA6, 0xDF, 0x70, 0x72, 0xDE, 0xA3, 0x82, + 0xCC, 0x77, 0x01, 0x6E, 0x34, 0x4E, 0x2C, 0x62, 0x9B, 0x55, 0x2A, 0x54, + 0xA1, 0x68, 0x80, 0x68, 0x8A, 0xC6, 0x6B, 0x95, 0xFE, 0x9D, 0x2A, 0x99, + 0xFA, 0x93, 0x66, 0xAF, 0x00, 0x01, 0x00, 0x67, 0xFF, 0xEC, 0x04, 0xB1, + 0x04, 0x6C, 0x00, 0x3B, 0x00, 0x00, 0x65, 0x32, 0x3E, 0x02, 0x35, 0x34, + 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x15, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x2E, 0x02, 0x35, + 0x34, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x35, 0x32, 0x1E, 0x02, + 0x15, 0x14, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x02, 0x8B, 0x58, 0x6F, + 0x3C, 0x17, 0x23, 0x2E, 0x23, 0x1E, 0x4E, 0x93, 0x74, 0x16, 0x30, 0x21, + 0x23, 0x2D, 0x24, 0x32, 0x79, 0xD6, 0xA5, 0xA5, 0xD6, 0x78, 0x31, 0x22, + 0x2E, 0x22, 0x21, 0x31, 0x17, 0x76, 0x94, 0x4E, 0x1D, 0x24, 0x2F, 0x24, + 0x17, 0x3F, 0x6F, 0xBF, 0x2F, 0x4B, 0x57, 0x28, 0x3F, 0x71, 0x6D, 0x6F, + 0x3D, 0x29, 0x53, 0x45, 0x2A, 0xCC, 0x0E, 0x23, 0x22, 0x32, 0x5F, 0x69, + 0x83, 0x58, 0x42, 0x8A, 0x77, 0x49, 0x49, 0x77, 0x8B, 0x41, 0x58, 0x83, + 0x69, 0x5F, 0x32, 0x22, 0x23, 0x0E, 0xCC, 0x2A, 0x45, 0x53, 0x29, 0x3D, + 0x6F, 0x6D, 0x71, 0x3F, 0x28, 0x57, 0x4B, 0x2F, 0x00, 0x02, 0x00, 0x61, + 0xFF, 0xEC, 0x03, 0xF5, 0x04, 0x6C, 0x00, 0x0B, 0x00, 0x24, 0x00, 0x00, + 0x65, 0x15, 0x22, 0x26, 0x26, 0x35, 0x11, 0x21, 0x11, 0x14, 0x16, 0x16, + 0x17, 0x35, 0x32, 0x36, 0x36, 0x35, 0x11, 0x36, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x14, 0x06, + 0x06, 0x02, 0x29, 0x86, 0xCE, 0x74, 0x01, 0x08, 0x30, 0x56, 0x3A, 0x3C, + 0x58, 0x2F, 0x01, 0x35, 0x33, 0x16, 0x29, 0x19, 0x1E, 0x3B, 0x78, 0x39, + 0x64, 0x6D, 0x29, 0x74, 0xD0, 0xC3, 0xD7, 0x5C, 0xC7, 0xA1, 0x02, 0xAE, + 0xFD, 0x52, 0x5A, 0x68, 0x2B, 0xD7, 0xD7, 0x2B, 0x68, 0x5A, 0x01, 0x56, + 0x45, 0x41, 0x06, 0x05, 0xBF, 0x12, 0x1A, 0x58, 0x94, 0x5A, 0xFE, 0x8A, + 0xA1, 0xC7, 0x5C, 0x00, 0x02, 0x00, 0xA4, 0xFE, 0x60, 0x04, 0x75, 0x04, + 0x6C, 0x00, 0x04, 0x00, 0x22, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x33, + 0x03, 0x07, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, + 0x06, 0x04, 0x07, 0x27, 0x3E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x01, 0xAE, 0xFE, 0xF6, 0xF6, 0x16, 0x73, 0x0E, 0x3F, + 0x68, 0x99, 0x68, 0x8B, 0xC0, 0x63, 0x6C, 0xCF, 0xFE, 0xD8, 0xBC, 0x10, + 0xA0, 0xF8, 0x8E, 0x30, 0x69, 0x56, 0x52, 0x68, 0x37, 0x03, 0x8E, 0xFA, + 0xD2, 0x05, 0xFE, 0xFE, 0x26, 0x36, 0x77, 0xC7, 0x91, 0x4F, 0x8A, 0xF8, + 0xA4, 0x33, 0x9E, 0xE6, 0xA6, 0x79, 0x30, 0xD1, 0x1C, 0x7C, 0xD1, 0x99, + 0x33, 0x5B, 0x98, 0x5D, 0x46, 0x7B, 0x00, 0x02, 0x00, 0x0B, 0x00, 0x00, + 0x04, 0x3C, 0x04, 0x2E, 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x73, 0x01, + 0x21, 0x01, 0x21, 0x03, 0x2E, 0x02, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, + 0x27, 0x35, 0x21, 0x15, 0x0B, 0x01, 0x71, 0x01, 0x4D, 0x01, 0x73, 0xFE, + 0xE6, 0x96, 0x15, 0x2D, 0x2E, 0x1A, 0x41, 0x27, 0x44, 0x20, 0x98, 0x1B, + 0x02, 0x3E, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xD6, 0x50, 0x9C, 0xA8, 0x62, + 0x90, 0xF3, 0x73, 0xFE, 0x2A, 0xD6, 0xC8, 0xC8, 0x00, 0x03, 0x00, 0x75, + 0x00, 0x00, 0x04, 0x3E, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, 0x21, 0x11, + 0x23, 0x11, 0x03, 0x83, 0xFD, 0xAD, 0x44, 0xFF, 0x03, 0xC9, 0xFE, 0x02, + 0x92, 0xD9, 0xD9, 0x01, 0x9C, 0xFB, 0xD2, 0x04, 0x2E, 0xFB, 0xD2, 0x04, + 0x2E, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x05, 0xB2, 0x04, 0x2E, 0x00, + 0x2B, 0x00, 0x00, 0x73, 0x11, 0x21, 0x13, 0x1E, 0x03, 0x17, 0x23, 0x3E, + 0x03, 0x37, 0x13, 0x21, 0x11, 0x23, 0x11, 0x34, 0x3E, 0x02, 0x37, 0x33, + 0x0E, 0x02, 0x07, 0x03, 0x23, 0x03, 0x2E, 0x02, 0x27, 0x33, 0x1E, 0x03, + 0x15, 0x11, 0x75, 0x01, 0x7F, 0xC9, 0x11, 0x1E, 0x1B, 0x19, 0x0B, 0x2D, + 0x0C, 0x18, 0x1B, 0x1E, 0x10, 0xC8, 0x01, 0x7F, 0xFB, 0x02, 0x02, 0x02, + 0x01, 0x22, 0x1B, 0x35, 0x39, 0x21, 0xB7, 0xD6, 0xB9, 0x21, 0x3B, 0x36, + 0x1B, 0x26, 0x01, 0x02, 0x02, 0x02, 0x04, 0x2E, 0xFE, 0x01, 0x30, 0x63, + 0x63, 0x5D, 0x2A, 0x29, 0x5D, 0x63, 0x64, 0x30, 0x01, 0xFF, 0xFB, 0xD2, + 0x01, 0xC3, 0x43, 0x7F, 0x7A, 0x79, 0x3E, 0x52, 0xA5, 0xA6, 0x55, 0xFE, + 0x3C, 0x01, 0xC4, 0x56, 0xA6, 0xA4, 0x52, 0x3C, 0x79, 0x7B, 0x7F, 0x44, + 0xFE, 0x3D, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x03, 0xDC, 0x04, 0x2E, + 0x00, 0x07, 0x00, 0x00, 0x61, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, + 0x01, 0x78, 0xFE, 0x9A, 0x03, 0xCA, 0xFE, 0x9B, 0x03, 0x59, 0xD5, 0xD5, + 0xFC, 0xA7, 0x00, 0x01, 0x00, 0x5F, 0xFE, 0x4C, 0x03, 0x4A, 0x01, 0x8A, + 0x00, 0x22, 0x00, 0x00, 0x41, 0x36, 0x16, 0x16, 0x15, 0x15, 0x16, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x21, 0x15, 0x21, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x27, 0x36, 0x36, 0x01, 0xB5, 0x7B, 0xB6, 0x63, 0x01, 0x66, 0xAC, 0x6C, + 0x75, 0xA3, 0x55, 0x02, 0x85, 0xFE, 0x4A, 0x51, 0x4F, 0x57, 0x58, 0x77, + 0x5B, 0x3E, 0x60, 0x24, 0x76, 0x28, 0xA1, 0x01, 0x89, 0x01, 0x67, 0xAF, + 0x6D, 0x1F, 0x7C, 0xB9, 0x67, 0x64, 0xB2, 0x75, 0x63, 0x9B, 0x0E, 0x45, + 0x53, 0x80, 0x6F, 0x1F, 0x63, 0x75, 0x35, 0x2A, 0x78, 0x37, 0x5B, 0xFF, + 0xFF, 0x00, 0x6A, 0xFF, 0xEE, 0x01, 0xA3, 0x05, 0xD2, 0x06, 0x06, 0x05, + 0x91, 0x00, 0x00, 0x00, 0x01, 0x00, 0xBA, 0x00, 0x00, 0x01, 0x67, 0x05, + 0xC2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x67, 0xAD, + 0x05, 0xC2, 0xFA, 0x3E, 0x05, 0xC2, 0xFF, 0xFF, 0x00, 0x90, 0x00, 0x00, + 0x02, 0x4B, 0x05, 0xC2, 0x04, 0x26, 0x09, 0x73, 0xD6, 0x00, 0x00, 0x07, + 0x09, 0x73, 0x00, 0xE4, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x8E, 0x00, 0x00, + 0x02, 0x59, 0x05, 0xC2, 0x04, 0x26, 0x09, 0x73, 0xE5, 0x00, 0x00, 0x27, + 0x0B, 0x61, 0xFF, 0x1F, 0x01, 0x3B, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x1F, + 0xFF, 0x58, 0x00, 0x05, 0x00, 0x5F, 0x00, 0x00, 0x09, 0x29, 0x05, 0xB2, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x65, 0x07, 0x01, 0x37, 0x31, 0x03, 0x21, 0x13, 0x21, 0x03, 0x21, 0x13, + 0x01, 0x07, 0x01, 0x37, 0x21, 0x03, 0x21, 0x13, 0x04, 0xB8, 0xC3, 0xFD, + 0x49, 0xC2, 0x8D, 0xFE, 0xEC, 0x8E, 0x04, 0xA7, 0x8E, 0xFE, 0xF1, 0x8F, + 0x03, 0xC5, 0xC2, 0xFD, 0x4A, 0xC1, 0x03, 0x95, 0x8F, 0xFE, 0xF1, 0x8E, + 0x84, 0x84, 0x05, 0x2D, 0x85, 0xFA, 0x4E, 0x05, 0xB2, 0xFA, 0x4E, 0x05, + 0xB2, 0xFA, 0xD2, 0x84, 0x05, 0x2D, 0x85, 0xFA, 0x4E, 0x05, 0xB2, 0x00, + 0x02, 0x00, 0x56, 0x02, 0x8D, 0x03, 0x40, 0x05, 0xAF, 0x00, 0x03, 0x00, + 0x19, 0x00, 0x00, 0x41, 0x23, 0x13, 0x33, 0x01, 0x21, 0x11, 0x33, 0x11, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x02, 0x65, 0xEA, 0xDB, 0xEA, 0xFE, 0x83, + 0xFE, 0x93, 0xD0, 0x94, 0x48, 0x45, 0x40, 0x44, 0xD9, 0xE2, 0x66, 0x93, + 0x50, 0x51, 0x98, 0x04, 0x45, 0x01, 0x6A, 0xFC, 0xDE, 0x03, 0x22, 0xFD, + 0x8D, 0x39, 0x2D, 0x2A, 0x3A, 0xAD, 0x4F, 0x7F, 0x4A, 0x49, 0x7B, 0x4A, + 0x00, 0x02, 0x00, 0x44, 0x01, 0x4F, 0x02, 0x95, 0x05, 0xAF, 0x00, 0x0E, + 0x00, 0x20, 0x00, 0x00, 0x53, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, + 0x37, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x01, 0x0E, 0x02, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, + 0x44, 0x16, 0x33, 0x1B, 0x50, 0x51, 0x01, 0x30, 0x3E, 0x70, 0x4A, 0x15, + 0x21, 0x02, 0x49, 0x12, 0x33, 0x37, 0x1A, 0x4A, 0x5A, 0x2A, 0xCF, 0x2B, + 0x27, 0x11, 0x25, 0x0D, 0x02, 0x89, 0xD4, 0x0A, 0x0A, 0x65, 0x56, 0x03, + 0x71, 0xB0, 0x64, 0x04, 0xFE, 0xD7, 0x03, 0x07, 0x04, 0x37, 0x72, 0x59, + 0x03, 0x5E, 0xFC, 0xB5, 0x29, 0x2E, 0x07, 0x04, 0x00, 0x02, 0x00, 0x79, + 0x02, 0x8D, 0x03, 0x24, 0x07, 0x0F, 0x00, 0x11, 0x00, 0x23, 0x00, 0x00, + 0x41, 0x11, 0x23, 0x11, 0x26, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x03, 0x07, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x01, 0x47, 0xCD, 0x01, 0x29, 0x5A, 0x49, 0x17, 0x39, 0x36, 0x11, 0x0E, + 0x25, 0x12, 0x27, 0x29, 0x18, 0x2E, 0x41, 0x7E, 0x5A, 0x7B, 0x8F, 0xD0, + 0x43, 0x41, 0x39, 0x47, 0x21, 0x05, 0xFA, 0xFC, 0x93, 0x03, 0x7F, 0x5A, + 0x73, 0x36, 0x04, 0x07, 0x03, 0xBA, 0x04, 0x05, 0x2C, 0xFE, 0x14, 0x04, + 0x72, 0xB0, 0x64, 0x90, 0xA2, 0xFE, 0x05, 0x01, 0xC2, 0x66, 0x57, 0x39, + 0x60, 0x00, 0x02, 0x00, 0x2E, 0x02, 0x82, 0x01, 0xEC, 0x05, 0xAF, 0x00, + 0x0E, 0x00, 0x13, 0x00, 0x00, 0x53, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x37, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x37, 0x11, 0x33, 0x11, + 0x23, 0x2E, 0x15, 0x32, 0x1E, 0x4F, 0x52, 0x32, 0x40, 0x6F, 0x4A, 0x14, + 0x22, 0xE6, 0xCF, 0xA1, 0x02, 0x89, 0xD4, 0x09, 0x0B, 0x65, 0x56, 0x03, + 0x71, 0xB0, 0x64, 0x04, 0xB3, 0x02, 0x76, 0xFC, 0xDE, 0x00, 0x01, 0x00, + 0x81, 0x00, 0x00, 0x04, 0x3C, 0x05, 0xD2, 0x00, 0x05, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x11, 0x21, 0x11, 0x04, 0x3C, 0xFD, 0x4F, 0xFE, 0xF6, 0x05, + 0xD2, 0xE4, 0xFB, 0x12, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, + 0x04, 0x3C, 0x07, 0x8C, 0x06, 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x01, 0x9C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0xFE, 0xC0, + 0x04, 0x3C, 0x05, 0xD2, 0x06, 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3D, 0x00, 0x9A, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xC3, 0x00, 0x00, + 0x04, 0x3C, 0x05, 0xD2, 0x06, 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x06, + 0x0B, 0x68, 0x91, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x51, + 0x07, 0x8C, 0x06, 0x26, 0x04, 0x31, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, + 0x01, 0xD6, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0x44, + 0x05, 0xD2, 0x06, 0x06, 0x04, 0x0C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, + 0x00, 0x00, 0x04, 0xCB, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x77, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x87, 0x05, 0xE9, 0x06, 0x06, + 0x00, 0x49, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x37, 0x00, 0x00, 0x04, 0xDD, + 0x05, 0xD2, 0x06, 0x06, 0x01, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, + 0x00, 0x00, 0x05, 0x0C, 0x07, 0x89, 0x06, 0x26, 0x04, 0x37, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xE6, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, + 0x00, 0x00, 0x05, 0x6A, 0x05, 0xD2, 0x06, 0x06, 0x01, 0xD2, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x81, 0xFF, 0xEC, 0x06, 0xE6, 0x05, 0xD2, 0x00, 0x22, + 0x00, 0x00, 0x53, 0x11, 0x21, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x11, 0x21, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x21, 0x11, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x81, 0x01, 0x06, 0x77, 0x5C, 0x65, 0x73, 0x01, 0x05, 0x6E, 0x61, + 0x61, 0x79, 0x01, 0x06, 0x7F, 0xD9, 0x88, 0x6B, 0xAD, 0x39, 0x3C, 0xB2, + 0x6D, 0x88, 0xD6, 0x7B, 0x01, 0xBD, 0x04, 0x15, 0xFB, 0xEB, 0x7A, 0x7C, + 0x7B, 0x7B, 0x04, 0x15, 0xFB, 0xEB, 0x7B, 0x7B, 0x7B, 0x7B, 0x04, 0x15, + 0xFB, 0xEB, 0x99, 0xCF, 0x69, 0x4C, 0x4C, 0x4C, 0x4C, 0x69, 0xCF, 0xFF, + 0xFF, 0x00, 0x16, 0x00, 0x00, 0x05, 0x46, 0x05, 0xD2, 0x04, 0x26, 0x04, + 0x44, 0x71, 0x00, 0x00, 0x07, 0x0B, 0x68, 0xFF, 0xE4, 0x01, 0xC0, 0x00, + 0x03, 0x00, 0x81, 0xFF, 0xEC, 0x07, 0x6B, 0x05, 0xE6, 0x00, 0x03, 0x00, + 0x29, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x25, 0x05, 0x2E, + 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, + 0x02, 0x37, 0x05, 0x0E, 0x03, 0x23, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, + 0x24, 0x33, 0x32, 0x1E, 0x02, 0x01, 0x11, 0x21, 0x11, 0x05, 0x54, 0xFB, + 0xFC, 0x06, 0x1B, 0xFF, 0x00, 0x11, 0x45, 0x60, 0x75, 0x41, 0x75, 0xBA, + 0x6B, 0x6B, 0xBA, 0x75, 0x40, 0x74, 0x60, 0x44, 0x11, 0x01, 0x02, 0x1A, + 0x70, 0xA3, 0xCB, 0x73, 0xC2, 0xFE, 0xD2, 0xAD, 0xAD, 0x01, 0x2E, 0xC2, + 0x71, 0xCA, 0xA4, 0x72, 0xFA, 0x37, 0xFE, 0xFA, 0x03, 0x56, 0xD5, 0xD5, + 0xA9, 0x19, 0x44, 0x67, 0x45, 0x23, 0x74, 0xEB, 0xB3, 0xB2, 0xEA, 0x73, + 0x22, 0x44, 0x66, 0x43, 0x19, 0x71, 0xB3, 0x7C, 0x42, 0xB7, 0x01, 0x56, + 0xEE, 0xF0, 0x01, 0x57, 0xB8, 0x41, 0x7D, 0xB5, 0x01, 0x5F, 0xFA, 0x2E, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x15, 0x00, 0x00, 0x05, 0x86, 0x05, 0xD2, + 0x00, 0x03, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, + 0x01, 0x01, 0x21, 0x01, 0x21, 0x01, 0x26, 0x02, 0x27, 0x33, 0x06, 0x02, + 0x07, 0x01, 0x13, 0x35, 0x21, 0x15, 0x03, 0x3D, 0xE0, 0xFD, 0xB8, 0x02, + 0x11, 0x01, 0x4E, 0x02, 0x12, 0xFE, 0xDD, 0xFE, 0xFA, 0x27, 0x55, 0x37, + 0x46, 0x36, 0x56, 0x28, 0xFE, 0xF7, 0x1B, 0x03, 0x00, 0x02, 0x17, 0xFD, + 0xE9, 0x02, 0x17, 0xFD, 0xE9, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x0D, 0x7B, + 0x01, 0x1C, 0xBF, 0xBF, 0xFE, 0xE4, 0x7B, 0xFC, 0xF3, 0x01, 0xB8, 0xBE, + 0xBE, 0x00, 0x04, 0x00, 0x81, 0x00, 0x00, 0x07, 0x93, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x41, 0x11, 0x21, + 0x11, 0x01, 0x11, 0x23, 0x11, 0x01, 0x01, 0x21, 0x01, 0x21, 0x01, 0x26, + 0x02, 0x27, 0x33, 0x06, 0x02, 0x07, 0x01, 0x01, 0x35, 0x21, 0x15, 0x01, + 0x8B, 0xFE, 0xF6, 0x04, 0xC8, 0xE0, 0xFD, 0xB8, 0x02, 0x12, 0x01, 0x4D, + 0x02, 0x13, 0xFE, 0xDC, 0xFE, 0xFB, 0x27, 0x56, 0x36, 0x45, 0x36, 0x56, + 0x27, 0xFE, 0xF6, 0xFD, 0xF3, 0x05, 0x28, 0x05, 0xD2, 0xFA, 0x2E, 0x05, + 0xD2, 0xFC, 0x45, 0xFD, 0xE9, 0x02, 0x17, 0xFD, 0xE9, 0x05, 0xD2, 0xFA, + 0x2E, 0x03, 0x0D, 0x7B, 0x01, 0x1C, 0xBF, 0xBF, 0xFE, 0xE4, 0x7B, 0xFC, + 0xF3, 0x01, 0xB8, 0xBE, 0xBE, 0x00, 0x05, 0x00, 0x75, 0x00, 0x00, 0x06, + 0x57, 0x05, 0xD2, 0x00, 0x15, 0x00, 0x19, 0x00, 0x1E, 0x00, 0x23, 0x00, + 0x27, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x11, 0x21, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, + 0x11, 0x21, 0x11, 0x33, 0x11, 0x03, 0x01, 0x21, 0x01, 0x07, 0x23, 0x27, + 0x01, 0x21, 0x01, 0x01, 0x35, 0x21, 0x15, 0x75, 0x74, 0xE2, 0xA3, 0x01, + 0xF0, 0xA4, 0xE1, 0x74, 0xFE, 0xFB, 0x83, 0x77, 0xFE, 0x1C, 0x77, 0x83, + 0x01, 0x6E, 0xFC, 0xE7, 0xFD, 0xE1, 0x01, 0x1C, 0x01, 0xAF, 0x21, 0x47, + 0x15, 0x01, 0xA6, 0x01, 0x1C, 0xFD, 0xE0, 0xFD, 0xCF, 0x03, 0x8D, 0x01, + 0x52, 0x98, 0xD7, 0x71, 0x71, 0xD7, 0x98, 0xFE, 0xAE, 0x01, 0x51, 0x7C, + 0x89, 0x89, 0x7C, 0xFE, 0xAF, 0x02, 0xD8, 0xFD, 0x28, 0x02, 0x48, 0x03, + 0x8A, 0xFC, 0xF1, 0x7B, 0x82, 0x03, 0x08, 0xFC, 0x76, 0x02, 0xAD, 0xDD, + 0xDD, 0x00, 0x07, 0x00, 0x81, 0x00, 0x00, 0x08, 0xBC, 0x05, 0xD2, 0x00, + 0x15, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x21, 0x00, 0x26, 0x00, 0x2B, 0x00, + 0x2F, 0x00, 0x00, 0x61, 0x11, 0x34, 0x36, 0x36, 0x33, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x11, 0x21, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, + 0x11, 0x21, 0x11, 0x21, 0x11, 0x03, 0x35, 0x21, 0x15, 0x13, 0x11, 0x33, + 0x11, 0x03, 0x01, 0x21, 0x01, 0x07, 0x23, 0x27, 0x01, 0x21, 0x01, 0x01, + 0x35, 0x21, 0x15, 0x02, 0xDA, 0x74, 0xE2, 0xA3, 0x01, 0xF0, 0xA4, 0xE1, + 0x74, 0xFE, 0xFB, 0x83, 0x77, 0xFE, 0x1C, 0x77, 0x83, 0xFC, 0xA2, 0x01, + 0x06, 0x37, 0x03, 0xBB, 0x41, 0xFD, 0xE7, 0xFD, 0xE1, 0x01, 0x1C, 0x01, + 0xAE, 0x20, 0x47, 0x15, 0x01, 0xA6, 0x01, 0x1B, 0xFD, 0xE1, 0xFD, 0xCE, + 0x03, 0x8B, 0x01, 0x52, 0x98, 0xD7, 0x71, 0x71, 0xD7, 0x98, 0xFE, 0xAE, + 0x01, 0x51, 0x7C, 0x89, 0x89, 0x7C, 0xFE, 0xAF, 0x05, 0xD2, 0xFA, 0x2E, + 0x02, 0x57, 0xDA, 0xDA, 0xFD, 0xA9, 0x02, 0xD8, 0xFD, 0x28, 0x02, 0x48, + 0x03, 0x8A, 0xFC, 0xF1, 0x7B, 0x82, 0x03, 0x08, 0xFC, 0x76, 0x02, 0xAD, + 0xDD, 0xDD, 0x00, 0x03, 0x00, 0x5C, 0xFE, 0x40, 0x03, 0xFC, 0x07, 0x78, + 0x00, 0x13, 0x00, 0x35, 0x00, 0x3E, 0x00, 0x00, 0x53, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x21, 0x13, 0x33, 0x04, 0x04, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, + 0x35, 0x34, 0x36, 0x33, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x23, 0x13, 0x17, 0x37, 0x33, 0x15, 0x01, 0x23, 0x01, 0x35, 0xBB, 0x01, + 0x17, 0xA1, 0xE6, 0x7D, 0x7C, 0xE6, 0xA0, 0x9A, 0x95, 0x86, 0x78, 0x79, + 0x82, 0xFE, 0xE9, 0x7F, 0x95, 0x01, 0x08, 0x01, 0x25, 0x7F, 0xE3, 0x96, + 0x3A, 0x40, 0x3C, 0x2F, 0x46, 0x23, 0x54, 0x57, 0x8D, 0x52, 0xBF, 0xA5, + 0x38, 0x4F, 0x70, 0x3C, 0x99, 0x8F, 0x91, 0x8C, 0xA5, 0xA4, 0xD1, 0xFE, + 0xD7, 0x99, 0xFE, 0xD6, 0x05, 0xD2, 0x59, 0xA8, 0x7A, 0x7A, 0xB3, 0x62, + 0x99, 0x77, 0x5B, 0x60, 0x67, 0xFE, 0x21, 0x01, 0xC4, 0xC1, 0x83, 0xBF, + 0x67, 0x38, 0x2D, 0x2B, 0x3F, 0x2C, 0x0F, 0xA2, 0x18, 0x60, 0x91, 0x60, + 0x8E, 0x8D, 0x38, 0x66, 0x47, 0x70, 0x6E, 0x04, 0xF1, 0x98, 0x98, 0x0A, + 0xFE, 0xEA, 0x01, 0x16, 0x0A, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, + 0x71, 0x05, 0xD2, 0x06, 0x06, 0x04, 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x15, 0x00, 0x00, 0x05, 0x9D, 0x07, 0x8C, 0x06, 0x26, 0x04, 0x51, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, 0x92, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x4F, 0xFE, 0x5C, 0x0A, 0x57, 0x05, 0xE9, 0x04, 0x26, 0x01, 0x41, 0x00, + 0x00, 0x00, 0x07, 0x03, 0xE4, 0x06, 0x05, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x56, 0xFE, 0x5E, 0x04, 0xA3, 0x05, 0xE9, 0x06, 0x26, 0x05, 0x3F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x4E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4F, 0xFE, 0x5F, 0x05, 0x87, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x49, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0xBC, 0x00, 0x01, 0xFF, 0xFF, 0x00, + 0x37, 0xFE, 0xC0, 0x04, 0xDD, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x02, 0x1E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x15, 0x00, 0x00, 0x05, 0x62, 0x05, 0xD2, 0x06, 0x06, 0x01, 0xD8, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x05, 0x62, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x68, 0x00, 0xE2, 0xFE, + 0x81, 0xFF, 0xFF, 0x00, 0x12, 0xFE, 0xC0, 0x06, 0x97, 0x05, 0xE9, 0x06, + 0x26, 0x04, 0x4E, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3E, 0x03, 0x0B, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x01, 0x8B, 0x05, 0xD2, 0x06, + 0x06, 0x00, 0xC5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, + 0xCF, 0x07, 0x89, 0x06, 0x26, 0x04, 0x2E, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x02, 0x49, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x37, 0xFE, 0xC0, 0x06, + 0x0A, 0x05, 0xD2, 0x06, 0x26, 0x04, 0x34, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x3C, 0x03, 0xFA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0xC0, 0x05, + 0x8B, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x3D, 0x04, 0x05, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0x93, 0x07, 0x8C, 0x06, 0x26, 0x04, 0x4F, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8B, 0x00, 0x8E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, + 0xCF, 0x07, 0x8C, 0x06, 0x26, 0x04, 0x2E, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8B, 0x01, 0xA1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x56, 0xFF, 0xE9, 0x04, + 0xA3, 0x07, 0x8C, 0x06, 0x26, 0x05, 0x3F, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8B, 0x00, 0x29, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, 0x05, + 0x83, 0x07, 0x8C, 0x06, 0x26, 0x04, 0x47, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8B, 0x00, 0x77, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, + 0xF6, 0x07, 0x8C, 0x06, 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8B, 0x00, 0x62, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, + 0x6D, 0x07, 0x8C, 0x04, 0x26, 0x04, 0x44, 0x00, 0x00, 0x00, 0x27, 0x00, + 0xC5, 0x04, 0xE2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x01, 0x0B, 0x01, + 0xA4, 0x00, 0x02, 0x00, 0x18, 0x00, 0x00, 0x05, 0x6A, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x23, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x01, 0x15, + 0x01, 0x21, 0x13, 0x1E, 0x02, 0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, 0x21, + 0x01, 0x35, 0x01, 0x21, 0x03, 0x2E, 0x02, 0x27, 0x33, 0x0E, 0x02, 0x07, + 0x03, 0x95, 0x04, 0x57, 0xFB, 0x2C, 0x02, 0x5B, 0xFD, 0xCF, 0x01, 0x30, + 0xB7, 0x24, 0x3D, 0x3B, 0x1E, 0x3F, 0x20, 0x3B, 0x3F, 0x24, 0xBA, 0x01, + 0x28, 0xFD, 0xD6, 0x02, 0x50, 0xFE, 0xCC, 0xE3, 0x1F, 0x38, 0x35, 0x1C, + 0x2D, 0x1B, 0x36, 0x39, 0x20, 0xE8, 0x02, 0xA9, 0xA9, 0xA9, 0xFD, 0x57, + 0x03, 0x5B, 0xC5, 0x03, 0x3C, 0xFE, 0xED, 0x36, 0x64, 0x62, 0x33, 0x33, + 0x62, 0x64, 0x36, 0x01, 0x13, 0xFC, 0xD1, 0xBE, 0xFC, 0x9F, 0x01, 0x51, + 0x30, 0x55, 0x55, 0x2D, 0x2D, 0x54, 0x56, 0x30, 0xFE, 0xAF, 0x00, 0x02, + 0x00, 0x4F, 0x00, 0x00, 0x05, 0x4C, 0x05, 0xEA, 0x00, 0x24, 0x00, 0x28, + 0x00, 0x00, 0x65, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, + 0x1E, 0x02, 0x17, 0x21, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, 0x0E, 0x03, 0x05, 0x13, + 0x21, 0x11, 0x02, 0xCE, 0x85, 0xE8, 0xAF, 0x63, 0xAC, 0x01, 0x2C, 0xC1, + 0x78, 0xD0, 0xA2, 0x68, 0x12, 0xFE, 0xF3, 0x12, 0x5F, 0x8D, 0x55, 0x7D, + 0xB4, 0x61, 0x61, 0xB4, 0x7C, 0x57, 0x8C, 0x5F, 0x12, 0xA0, 0x16, 0x56, + 0x84, 0xB2, 0x01, 0x0A, 0x01, 0x01, 0x01, 0x82, 0x60, 0xB5, 0xFF, 0xA0, + 0xD6, 0x01, 0x36, 0xA8, 0x44, 0x7F, 0xB4, 0x71, 0x52, 0x6F, 0x3A, 0x6F, + 0xCD, 0x8B, 0x8C, 0xCD, 0x6E, 0x3A, 0x6E, 0x50, 0x6D, 0xB2, 0x80, 0x46, + 0x82, 0x02, 0x67, 0xFD, 0x99, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x05, + 0x46, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x44, 0x71, 0x00, 0x00, 0x07, 0x0B, + 0x68, 0xFF, 0xE4, 0x01, 0xC0, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x03, + 0x57, 0x05, 0xE8, 0x06, 0x26, 0x04, 0xE5, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x01, 0x1C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0xC0, 0x03, + 0x57, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xE5, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x3D, 0x00, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xDE, 0x00, 0x00, 0x03, + 0x57, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xE5, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x61, 0xFF, 0x6F, 0xFF, 0x3D, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, + 0x42, 0x05, 0xE5, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x00, 0xB0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, + 0x42, 0x05, 0xE8, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE9, 0x00, 0xCD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, + 0x65, 0x05, 0xE8, 0x06, 0x26, 0x04, 0xEE, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x01, 0x66, 0x00, 0x00, 0x00, 0x01, 0x00, 0x75, 0xFF, 0xEC, 0x06, + 0x31, 0x04, 0x2E, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x27, 0x33, 0x0E, 0x02, 0x01, 0xFE, 0x77, 0xB0, + 0x62, 0xFF, 0x5D, 0x54, 0x55, 0x5D, 0xFB, 0x5E, 0x52, 0x54, 0x5D, 0xFE, + 0x61, 0xAF, 0x77, 0x78, 0xAF, 0x60, 0x01, 0x63, 0x01, 0x60, 0xAE, 0x14, + 0x65, 0xB6, 0x78, 0x02, 0xAF, 0xFD, 0x57, 0x5B, 0x6B, 0x6B, 0x5B, 0x02, + 0xA9, 0xFD, 0x57, 0x5B, 0x6B, 0x6B, 0x5B, 0x02, 0xA9, 0xFD, 0x51, 0x78, + 0xB6, 0x65, 0x64, 0xB5, 0x7A, 0x7A, 0xB5, 0x64, 0x00, 0x03, 0x00, 0x75, + 0xFF, 0xE8, 0x06, 0x0F, 0x04, 0x44, 0x00, 0x03, 0x00, 0x07, 0x00, 0x28, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, 0x01, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x33, 0x0E, 0x02, 0x04, 0x8E, 0xFC, 0x93, 0x53, 0xFF, 0x03, + 0xBB, 0x9D, 0xEA, 0x81, 0x81, 0xEB, 0x9C, 0x85, 0xD1, 0x7F, 0x0A, 0xF8, + 0x09, 0x3B, 0x60, 0x41, 0x52, 0x78, 0x40, 0x40, 0x78, 0x52, 0x61, 0x71, + 0x12, 0xF9, 0x09, 0x7D, 0xD2, 0x02, 0x6F, 0xB1, 0xB1, 0x01, 0xBF, 0xFB, + 0xD2, 0x04, 0x2E, 0xFB, 0xBA, 0x8E, 0xFB, 0xA4, 0xA5, 0xFC, 0x8E, 0x67, + 0xB4, 0x77, 0x38, 0x56, 0x31, 0x55, 0x9C, 0x6A, 0x6A, 0x9C, 0x55, 0x68, + 0x58, 0x74, 0xB6, 0x69, 0x00, 0x03, 0x00, 0x16, 0x00, 0x00, 0x04, 0x72, + 0x04, 0x2E, 0x00, 0x04, 0x00, 0x15, 0x00, 0x1A, 0x00, 0x00, 0x61, 0x01, + 0x03, 0x33, 0x01, 0x21, 0x35, 0x34, 0x26, 0x27, 0x35, 0x32, 0x16, 0x17, + 0x36, 0x36, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x21, 0x01, 0x33, 0x03, + 0x01, 0x03, 0x6F, 0xFE, 0xF9, 0x69, 0xC6, 0x01, 0xAD, 0xFD, 0x75, 0x3D, + 0x3D, 0x3F, 0x73, 0x26, 0x26, 0x72, 0x40, 0x3E, 0x3D, 0xFD, 0x74, 0x01, + 0xAA, 0xC8, 0x6C, 0xFE, 0xFB, 0x02, 0xCD, 0x01, 0x61, 0xFB, 0xD2, 0xC8, + 0x41, 0x3D, 0x02, 0xB5, 0x32, 0x39, 0x39, 0x32, 0xB5, 0x02, 0x3D, 0x41, + 0xC8, 0x04, 0x2E, 0xFE, 0x9E, 0xFD, 0x34, 0x00, 0x05, 0x00, 0x75, 0x00, + 0x00, 0x06, 0x4B, 0x04, 0x2E, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0C, 0x00, + 0x1D, 0x00, 0x22, 0x00, 0x00, 0x61, 0x01, 0x03, 0x33, 0x01, 0x21, 0x11, + 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x13, 0x35, 0x34, 0x26, 0x27, 0x35, + 0x32, 0x16, 0x17, 0x36, 0x36, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x21, + 0x01, 0x33, 0x03, 0x01, 0x05, 0x48, 0xFE, 0xF8, 0x69, 0xC6, 0x01, 0xAE, + 0xFA, 0x2A, 0xFF, 0x86, 0x02, 0x17, 0xBA, 0x3C, 0x3E, 0x40, 0x72, 0x26, + 0x26, 0x72, 0x40, 0x3D, 0x3E, 0xFD, 0x75, 0x01, 0xAA, 0xC7, 0x6C, 0xFE, + 0xFB, 0x02, 0xCD, 0x01, 0x61, 0xFB, 0xD2, 0x04, 0x2E, 0xFB, 0xD2, 0x01, + 0x4A, 0xB4, 0xB4, 0xFE, 0xB6, 0xC8, 0x41, 0x3D, 0x02, 0xB5, 0x32, 0x39, + 0x39, 0x32, 0xB5, 0x02, 0x3D, 0x41, 0xC8, 0x04, 0x2E, 0xFE, 0x9E, 0xFD, + 0x34, 0x00, 0x05, 0x00, 0x62, 0x00, 0x00, 0x05, 0x66, 0x04, 0x2E, 0x00, + 0x15, 0x00, 0x19, 0x00, 0x1E, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x73, + 0x35, 0x34, 0x36, 0x33, 0x21, 0x32, 0x16, 0x15, 0x15, 0x23, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x21, 0x22, 0x06, 0x06, 0x15, 0x15, 0x21, 0x11, 0x33, + 0x11, 0x03, 0x01, 0x21, 0x01, 0x07, 0x23, 0x27, 0x01, 0x21, 0x01, 0x01, + 0x35, 0x21, 0x15, 0x62, 0xFE, 0xE1, 0x01, 0x49, 0xDF, 0xFD, 0xF5, 0x35, + 0x68, 0x4A, 0xFE, 0xB7, 0x48, 0x68, 0x39, 0x01, 0x15, 0xF4, 0xF6, 0xFE, + 0x6A, 0x01, 0x17, 0x01, 0x35, 0x17, 0x3B, 0x13, 0x01, 0x34, 0x01, 0x16, + 0xFE, 0x64, 0xFE, 0x1F, 0x02, 0xE9, 0xA6, 0xD1, 0xDE, 0xDE, 0xD1, 0xA6, + 0xA8, 0x4B, 0x64, 0x33, 0x30, 0x64, 0x4E, 0xA8, 0x02, 0x0B, 0xFD, 0xF5, + 0x01, 0x94, 0x02, 0x9A, 0xFD, 0xB0, 0x4A, 0x50, 0x02, 0x4A, 0xFD, 0x66, + 0x01, 0xE3, 0xB7, 0xB7, 0x00, 0x07, 0x00, 0x75, 0x00, 0x00, 0x07, 0x6C, + 0x04, 0x2E, 0x00, 0x18, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x24, 0x00, 0x29, + 0x00, 0x2E, 0x00, 0x32, 0x00, 0x00, 0x61, 0x35, 0x34, 0x3E, 0x03, 0x33, + 0x25, 0x32, 0x16, 0x15, 0x15, 0x23, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, + 0x22, 0x06, 0x06, 0x15, 0x15, 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, + 0x15, 0x13, 0x11, 0x33, 0x11, 0x03, 0x01, 0x21, 0x01, 0x07, 0x23, 0x27, + 0x01, 0x21, 0x01, 0x01, 0x35, 0x21, 0x15, 0x02, 0x68, 0x4C, 0x7D, 0x92, + 0x8E, 0x36, 0x01, 0x09, 0xE2, 0xFA, 0xF5, 0x36, 0x67, 0x4A, 0xFE, 0xB6, + 0x47, 0x69, 0x38, 0xFD, 0x17, 0xFF, 0x7B, 0x03, 0x65, 0x15, 0xF4, 0xF6, + 0xFE, 0x69, 0x01, 0x17, 0x01, 0x36, 0x17, 0x3B, 0x13, 0x01, 0x34, 0x01, + 0x16, 0xFE, 0x64, 0xFE, 0x1F, 0x02, 0xE9, 0x8B, 0x6A, 0x91, 0x5C, 0x31, + 0x13, 0x2F, 0xE1, 0xCE, 0xA6, 0xA8, 0x4B, 0x64, 0x33, 0x30, 0x64, 0x4E, + 0xA8, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0x8A, 0xC9, 0xC8, 0xFE, 0x75, 0x02, + 0x0B, 0xFD, 0xF5, 0x01, 0x94, 0x02, 0x9A, 0xFD, 0xB0, 0x4A, 0x50, 0x02, + 0x4A, 0xFD, 0x66, 0x01, 0xE3, 0xB7, 0xB7, 0x00, 0x02, 0x00, 0x3A, 0xFE, + 0x5E, 0x03, 0x9E, 0x05, 0xE8, 0x00, 0x37, 0x00, 0x40, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x21, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, + 0x35, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x22, + 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x03, 0x17, 0x37, 0x33, 0x15, + 0x03, 0x23, 0x03, 0x35, 0x01, 0xB8, 0x6C, 0xAD, 0x65, 0x64, 0xAD, 0x6B, + 0x4C, 0x4D, 0x52, 0x52, 0x4D, 0xFE, 0xF9, 0xF1, 0x4E, 0x52, 0x52, 0x4E, + 0xFE, 0x9D, 0x01, 0x5F, 0x7D, 0xBC, 0x68, 0x70, 0xBF, 0x79, 0xE6, 0xF8, + 0x7F, 0xC1, 0x6B, 0x67, 0xBD, 0x80, 0x42, 0x3F, 0x45, 0x46, 0x40, 0x28, + 0x6E, 0x89, 0x89, 0xDA, 0xFA, 0xD4, 0xF6, 0xFE, 0x5E, 0x4B, 0x89, 0x5E, + 0x5E, 0x89, 0x4C, 0x3B, 0x37, 0x36, 0x3B, 0xD2, 0x3D, 0x38, 0x35, 0x39, + 0xD3, 0x45, 0x84, 0x60, 0x62, 0x79, 0x37, 0x61, 0x46, 0x87, 0x5F, 0x60, + 0x8C, 0x4C, 0x32, 0x2D, 0x2F, 0x32, 0xD2, 0x07, 0x8A, 0xAB, 0xAB, 0x03, + 0xFE, 0xDE, 0x01, 0x22, 0x03, 0xFF, 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x05, + 0xE2, 0x05, 0x49, 0x06, 0x06, 0x04, 0xC9, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x16, 0x00, 0x00, 0x04, 0x95, 0x05, 0xE8, 0x06, 0x26, 0x05, 0x1A, 0x00, + 0x00, 0x00, 0x06, 0x06, 0xEA, 0xE9, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFE, + 0x5E, 0x03, 0xB1, 0x04, 0x42, 0x06, 0x26, 0x04, 0xEB, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x95, 0x00, 0xBC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFE, + 0x5E, 0x04, 0x2D, 0x04, 0x44, 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x95, 0x01, 0x10, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x12, 0xFE, + 0xC0, 0x03, 0xDC, 0x04, 0x2E, 0x06, 0x26, 0x09, 0x70, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3D, 0x01, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0xFE, + 0x5E, 0x04, 0x51, 0x04, 0x2E, 0x06, 0x06, 0x04, 0x6F, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x16, 0xFE, 0x5E, 0x04, 0x51, 0x04, 0x2E, 0x06, 0x26, 0x04, + 0x6F, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0x00, 0x5E, 0xFC, 0xC2, 0xFF, + 0xFF, 0x00, 0x12, 0xFE, 0x5E, 0x05, 0x81, 0x04, 0x44, 0x06, 0x26, 0x05, + 0x18, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x02, 0x4D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x19, 0x00, 0x00, 0x06, 0x73, 0x05, 0xE5, 0x06, 0x26, 0x04, + 0xE9, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x9B, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0xC0, 0x04, 0xB1, 0x04, 0x2E, 0x04, 0x26, 0x05, + 0x04, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x2B, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x40, 0xFF, 0xEA, 0x04, 0x3A, 0x04, 0x45, 0x06, 0x06, 0x02, + 0x85, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xEA, 0x04, 0x3A, 0x05, + 0xE8, 0x06, 0x26, 0x02, 0x85, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x0D, + 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x06, 0x73, 0x05, 0xE8, 0x06, + 0x26, 0x04, 0xE9, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0xF3, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFF, 0xF0, 0x03, 0xB1, 0x05, 0xE8, 0x06, + 0x26, 0x04, 0xEB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xA6, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x42, 0x05, 0xA2, 0x06, 0x26, 0x04, + 0xEC, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xBA, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0x00, 0x00, 0x04, 0x42, 0x05, 0xE8, 0x06, 0x26, 0x04, + 0xEC, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x08, 0x00, 0xFF, 0xFF, 0x00, + 0x44, 0xFF, 0xE8, 0x04, 0x5C, 0x04, 0x44, 0x06, 0x26, 0x03, 0x16, 0x00, + 0x00, 0x00, 0x06, 0x0B, 0x40, 0x03, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xE8, 0x04, 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x26, 0x0B, 0x40, 0x03, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xFD, 0x00, 0xFF, + 0xFF, 0x00, 0x3F, 0xFF, 0xE8, 0x04, 0x28, 0x05, 0xE8, 0x06, 0x26, 0x05, + 0x10, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xCC, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0x00, 0x00, 0x04, 0x1C, 0x05, 0xE8, 0x06, 0x26, 0x05, 0x04, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, + 0x00, 0x05, 0x6B, 0x05, 0xE8, 0x04, 0x26, 0x05, 0x09, 0x00, 0x00, 0x00, + 0x27, 0x02, 0xB2, 0x03, 0xF7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, + 0x9D, 0x00, 0x00, 0x00, 0x02, 0x00, 0x19, 0x00, 0x00, 0x04, 0x31, 0x04, + 0x2E, 0x00, 0x03, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, + 0x01, 0x07, 0x01, 0x21, 0x17, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, + 0x37, 0x21, 0x01, 0x37, 0x01, 0x21, 0x27, 0x26, 0x26, 0x27, 0x33, 0x06, + 0x06, 0x07, 0x07, 0x53, 0x03, 0xA3, 0xFC, 0x23, 0x01, 0xB0, 0x03, 0xFE, + 0x6B, 0x01, 0x1B, 0x6E, 0x2B, 0x4C, 0x27, 0x5F, 0x28, 0x4C, 0x2C, 0x71, + 0x01, 0x16, 0xFE, 0x65, 0x03, 0x01, 0xA9, 0xFE, 0xE6, 0x81, 0x2B, 0x4B, + 0x26, 0x58, 0x27, 0x4B, 0x2C, 0x82, 0x01, 0xCE, 0xA9, 0xA9, 0xFE, 0x32, + 0x02, 0x6D, 0x92, 0x02, 0x53, 0xAD, 0x46, 0x85, 0x42, 0x42, 0x85, 0x46, + 0xAD, 0xFD, 0xAC, 0x92, 0xFD, 0x94, 0xC4, 0x45, 0x80, 0x40, 0x40, 0x80, + 0x45, 0xC4, 0x00, 0x02, 0x00, 0x44, 0xFE, 0xC3, 0x04, 0x2C, 0x04, 0x44, + 0x00, 0x03, 0x00, 0x1D, 0x00, 0x00, 0x65, 0x11, 0x23, 0x11, 0x17, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x02, + 0xDE, 0xF6, 0x65, 0x9D, 0xEA, 0x82, 0x82, 0xEA, 0x9D, 0x85, 0xD0, 0x80, + 0x0A, 0xF8, 0x09, 0x3B, 0x5F, 0x41, 0x53, 0x77, 0x40, 0x40, 0x77, 0x53, + 0xBB, 0xFE, 0x08, 0x01, 0xF8, 0xD3, 0x8E, 0xFB, 0xA4, 0xA5, 0xFC, 0x8E, + 0x67, 0xB4, 0x77, 0x38, 0x56, 0x31, 0x55, 0x9C, 0x6A, 0x6A, 0x9C, 0x55, + 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x04, 0x61, 0x05, 0xD2, 0x00, 0x09, + 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, + 0x81, 0x03, 0xE0, 0xFD, 0x2A, 0x02, 0xD6, 0xFD, 0x2A, 0x05, 0xD2, 0xE4, + 0xFE, 0x60, 0xE0, 0xFD, 0x92, 0x00, 0x03, 0x00, 0x81, 0xFE, 0x4D, 0x05, + 0x51, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x10, 0x00, 0x16, 0x00, 0x00, 0x41, + 0x11, 0x3E, 0x02, 0x37, 0x01, 0x21, 0x01, 0x27, 0x01, 0x11, 0x21, 0x11, + 0x03, 0x17, 0x11, 0x01, 0x27, 0x13, 0x01, 0x37, 0x01, 0x01, 0x3F, 0x33, + 0x64, 0x68, 0x37, 0x01, 0x8A, 0x01, 0x47, 0xFD, 0x89, 0x14, 0xFD, 0xC6, + 0x01, 0x0A, 0x01, 0x01, 0x02, 0x97, 0xCF, 0xCF, 0xFE, 0x1B, 0xA2, 0x02, + 0x72, 0x01, 0x61, 0x01, 0x3B, 0x41, 0x7B, 0x7A, 0x40, 0x01, 0xC0, 0xFD, + 0x39, 0x02, 0xFC, 0xF3, 0x05, 0xD2, 0xFE, 0x42, 0xFE, 0x9B, 0x80, 0xFD, + 0xD1, 0xFE, 0x4D, 0x86, 0x01, 0x2D, 0x02, 0xC0, 0xCB, 0xFC, 0x75, 0x00, + 0x01, 0x00, 0x4B, 0xFF, 0xE9, 0x05, 0x83, 0x05, 0xE9, 0x00, 0x25, 0x00, + 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x21, 0x1E, 0x03, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x21, 0x3E, + 0x03, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x02, 0xCA, 0x80, + 0xD9, 0xA9, 0x6C, 0x11, 0x01, 0x0C, 0x0F, 0x42, 0x60, 0x78, 0x47, 0x85, + 0xC3, 0x69, 0x6A, 0xC2, 0x86, 0x46, 0x79, 0x60, 0x41, 0x0F, 0xFE, 0xF4, + 0x12, 0x6E, 0xA9, 0xD8, 0x7E, 0xCB, 0x01, 0x3B, 0xB3, 0xB3, 0xFE, 0xC5, + 0x17, 0x4C, 0x8C, 0xC2, 0x77, 0x46, 0x6C, 0x4B, 0x26, 0x81, 0xEE, 0xA2, + 0xA3, 0xEE, 0x82, 0x26, 0x4C, 0x6D, 0x46, 0x7B, 0xC3, 0x8B, 0x4A, 0xBC, + 0xFE, 0xA7, 0xEC, 0xEA, 0xFE, 0xA7, 0xBC, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, + 0xE9, 0x05, 0x87, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xDC, 0x02, 0x02, 0x02, 0x5F, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, + 0xE9, 0x05, 0x83, 0x05, 0xE9, 0x06, 0x26, 0x09, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xDC, 0x01, 0xBE, 0x02, 0x5F, 0xFF, 0xFF, 0x00, 0x75, 0x00, + 0x00, 0x04, 0x58, 0x04, 0x2E, 0x06, 0x06, 0x09, 0x50, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x75, 0xFE, 0x5E, 0x04, 0xB5, 0x04, 0x2E, 0x06, 0x06, 0x03, + 0x95, 0x00, 0x00, 0x00, 0x01, 0x00, 0x16, 0x00, 0x00, 0x04, 0x76, 0x04, + 0x30, 0x00, 0x15, 0x00, 0x00, 0x61, 0x01, 0x26, 0x26, 0x23, 0x23, 0x35, + 0x33, 0x32, 0x16, 0x17, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, + 0x13, 0x21, 0x01, 0x01, 0xCE, 0xFE, 0xD2, 0x0D, 0x2B, 0x26, 0x2C, 0x2F, + 0x88, 0x9D, 0x25, 0x7E, 0x1F, 0x35, 0x1B, 0x3E, 0x1B, 0x34, 0x1E, 0xC1, + 0x01, 0x0A, 0xFE, 0x6F, 0x03, 0x23, 0x22, 0x1D, 0xCE, 0x64, 0x6F, 0xFE, + 0x9E, 0x5D, 0xB7, 0x5D, 0x5D, 0xB8, 0x5C, 0x02, 0x33, 0xFB, 0xD2, 0x00, + 0x01, 0x00, 0x3F, 0xFF, 0xE8, 0x04, 0x28, 0x04, 0x44, 0x00, 0x25, 0x00, + 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x27, 0x3E, + 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x02, 0x20, 0x63, + 0xA7, 0x80, 0x4D, 0x0A, 0xF8, 0x09, 0x26, 0x39, 0x4D, 0x31, 0x55, 0x76, + 0x3F, 0x3F, 0x76, 0x55, 0x30, 0x4F, 0x3A, 0x26, 0x08, 0xF6, 0x0A, 0x4F, + 0x7E, 0xA7, 0x62, 0x9C, 0xEA, 0x82, 0x82, 0xE9, 0x18, 0x3A, 0x6A, 0x8F, + 0x57, 0x0B, 0x2C, 0x48, 0x33, 0x1B, 0x56, 0x9C, 0x68, 0x69, 0x9C, 0x57, + 0x1C, 0x32, 0x46, 0x2B, 0x0B, 0x57, 0x8F, 0x68, 0x39, 0x8E, 0xFC, 0xA5, + 0xA5, 0xFB, 0x8D, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x2D, 0x04, + 0x44, 0x00, 0x0B, 0x00, 0x31, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x03, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, + 0x17, 0x0E, 0x03, 0x02, 0x4F, 0x32, 0x47, 0x47, 0x32, 0x32, 0x46, 0x46, + 0x34, 0x9C, 0xEB, 0x82, 0x82, 0xEB, 0x9C, 0x62, 0xA6, 0x7F, 0x4E, 0x0B, + 0xF7, 0x07, 0x26, 0x3B, 0x4E, 0x30, 0x55, 0x77, 0x3E, 0x3E, 0x77, 0x55, + 0x31, 0x4D, 0x39, 0x25, 0x09, 0xF8, 0x09, 0x4E, 0x7F, 0xA8, 0x01, 0x9E, + 0x47, 0x32, 0x32, 0x46, 0x46, 0x32, 0x32, 0x47, 0xFE, 0x4A, 0x8D, 0xFB, + 0xA5, 0xA5, 0xFC, 0x8E, 0x39, 0x68, 0x8F, 0x57, 0x0B, 0x2B, 0x46, 0x32, + 0x1C, 0x57, 0x9C, 0x69, 0x68, 0x9C, 0x56, 0x1B, 0x33, 0x48, 0x2C, 0x0B, + 0x57, 0x8F, 0x6A, 0x3A, 0x00, 0x02, 0x00, 0x3F, 0xFF, 0xE8, 0x04, 0x28, + 0x04, 0x44, 0x00, 0x0B, 0x00, 0x31, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x03, 0x22, 0x2E, 0x02, + 0x27, 0x37, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x02, 0x18, 0x32, 0x47, 0x47, 0x32, 0x32, 0x46, + 0x46, 0x2A, 0x63, 0xA7, 0x80, 0x4D, 0x0A, 0xF8, 0x09, 0x26, 0x39, 0x4D, + 0x31, 0x55, 0x76, 0x3F, 0x3F, 0x76, 0x55, 0x30, 0x4F, 0x3A, 0x26, 0x08, + 0xF6, 0x0A, 0x4F, 0x7E, 0xA7, 0x62, 0x9C, 0xEA, 0x82, 0x82, 0xE9, 0x01, + 0x9D, 0x47, 0x32, 0x32, 0x47, 0x47, 0x32, 0x32, 0x47, 0xFE, 0x4B, 0x3A, + 0x6A, 0x8F, 0x57, 0x0B, 0x2C, 0x48, 0x33, 0x1B, 0x56, 0x9C, 0x68, 0x69, + 0x9C, 0x57, 0x1C, 0x32, 0x46, 0x2B, 0x0B, 0x57, 0x8F, 0x68, 0x39, 0x8E, + 0xFC, 0xA5, 0xA5, 0xFB, 0x8D, 0x00, 0x01, 0x00, 0x75, 0xFE, 0x5E, 0x03, + 0xC2, 0x04, 0x2E, 0x00, 0x09, 0x00, 0x00, 0x53, 0x11, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x15, 0x21, 0x11, 0x75, 0x03, 0x4D, 0xFD, 0xB2, 0x02, 0x4E, + 0xFD, 0xB2, 0xFE, 0x5E, 0x05, 0xD0, 0xD3, 0xFE, 0xA4, 0xD3, 0xFD, 0x32, + 0x00, 0x03, 0x00, 0x75, 0xFE, 0x4E, 0x04, 0x58, 0x04, 0x2E, 0x00, 0x05, + 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x27, 0x13, 0x01, 0x37, 0x01, + 0x21, 0x11, 0x33, 0x11, 0x03, 0x27, 0x33, 0x01, 0x21, 0x01, 0x02, 0xF2, + 0xB4, 0xEF, 0xFE, 0x98, 0xB3, 0x01, 0xDA, 0xFC, 0x23, 0xFF, 0x3E, 0x0B, + 0xAB, 0x01, 0x54, 0x01, 0x2E, 0xFD, 0xFA, 0xFE, 0x4E, 0x7F, 0x01, 0x34, + 0x01, 0xB6, 0x96, 0xFD, 0xB3, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xAC, 0xD0, + 0x01, 0xB2, 0xFD, 0x7E, 0x00, 0x02, 0x00, 0x8E, 0xFF, 0xEC, 0x04, 0x8B, + 0x06, 0x14, 0x00, 0x2D, 0x00, 0x3C, 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x02, 0x35, 0x35, 0x34, 0x12, + 0x24, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x0E, 0x02, 0x15, 0x36, 0x36, 0x17, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x02, 0xCB, 0x88, 0xC9, + 0x6F, 0x78, 0xE0, 0x9E, 0xA9, 0xE8, 0x76, 0x8A, 0x01, 0x00, 0xB3, 0x6C, + 0x9D, 0x55, 0x4E, 0xA5, 0x81, 0x41, 0x9C, 0x61, 0x3F, 0x41, 0x78, 0x2F, + 0x46, 0x48, 0x3F, 0x46, 0x52, 0x78, 0x4F, 0x25, 0x42, 0xB3, 0x32, 0x44, + 0x70, 0x42, 0x34, 0x6B, 0x53, 0x54, 0x6D, 0x35, 0x77, 0x03, 0xA1, 0x6E, + 0xCF, 0x90, 0x8E, 0xDC, 0x7E, 0x9D, 0x01, 0x37, 0xE6, 0x42, 0xF9, 0x01, + 0x6C, 0xC7, 0x45, 0x7C, 0x55, 0x45, 0x82, 0x53, 0x17, 0x22, 0xB0, 0x1A, + 0x18, 0x32, 0x21, 0x26, 0x3A, 0x5C, 0xA0, 0xCE, 0x74, 0x46, 0x4B, 0xD4, + 0x37, 0x6E, 0x54, 0x53, 0x7D, 0x45, 0x45, 0x7D, 0x53, 0x7C, 0x7D, 0x00, + 0x01, 0x00, 0x6B, 0xFF, 0xEC, 0x04, 0xAB, 0x05, 0xE6, 0x00, 0x33, 0x00, + 0x00, 0x41, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x24, 0x26, 0x35, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x14, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x06, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x15, 0x06, 0x16, 0x16, 0x33, + 0x32, 0x3E, 0x02, 0x04, 0xA2, 0x09, 0x39, 0x56, 0x45, 0x23, 0xB7, 0xFE, + 0xE8, 0x9E, 0x60, 0xAB, 0x71, 0xA7, 0xC6, 0x7C, 0xD8, 0x8C, 0x91, 0xDA, + 0x7A, 0xFE, 0x01, 0x7B, 0x68, 0x61, 0x73, 0x39, 0x34, 0x30, 0x3B, 0x01, + 0x01, 0x56, 0xA4, 0x75, 0x19, 0x27, 0x2E, 0x47, 0x03, 0x28, 0xDA, 0x11, + 0x12, 0x08, 0x8C, 0xF8, 0xA2, 0x1A, 0x78, 0xAE, 0x5D, 0xD6, 0xC0, 0xFD, + 0x73, 0x92, 0xD3, 0x72, 0x78, 0xD4, 0x8B, 0x01, 0x12, 0xFE, 0xEE, 0x74, + 0x88, 0x82, 0x7A, 0x02, 0xA2, 0x50, 0x4A, 0x43, 0x4E, 0x1E, 0x60, 0x94, + 0x53, 0x02, 0x07, 0x0C, 0x00, 0x03, 0x00, 0x48, 0xFF, 0xEC, 0x06, 0xA7, + 0x04, 0x5E, 0x00, 0x03, 0x00, 0x1D, 0x00, 0x37, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x33, 0x33, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x02, + 0x35, 0x34, 0x12, 0x25, 0x33, 0x16, 0x12, 0x15, 0x16, 0x02, 0x06, 0x23, + 0x22, 0x26, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x06, 0xA7, 0xF9, 0xA1, 0xDD, 0xFB, 0x3F, + 0x49, 0x1E, 0x2E, 0x58, 0x3C, 0x50, 0x62, 0xBF, 0x57, 0xAC, 0x81, 0x83, + 0xBF, 0x68, 0x54, 0x03, 0xFC, 0xFD, 0x51, 0x54, 0x01, 0x67, 0xC0, 0x85, + 0x80, 0xAC, 0x58, 0xBF, 0x63, 0x4F, 0x3E, 0x57, 0x2E, 0x1F, 0x48, 0x04, + 0x5E, 0xC0, 0xC0, 0x72, 0xBF, 0xAC, 0x57, 0x71, 0xA3, 0x56, 0x97, 0x90, + 0xEC, 0xDA, 0xA2, 0xEC, 0x7F, 0x82, 0x01, 0x00, 0xBD, 0x9B, 0x01, 0x1B, + 0x7D, 0x7D, 0xFE, 0xE8, 0x99, 0xBD, 0xFE, 0xFD, 0x84, 0x7F, 0xEC, 0xA2, + 0xDA, 0xEC, 0x90, 0x97, 0x56, 0xA3, 0x71, 0x57, 0xAC, 0xBF, 0x00, 0x03, + 0x00, 0x62, 0xFF, 0xEC, 0x05, 0x71, 0x04, 0x6C, 0x00, 0x03, 0x00, 0x15, + 0x00, 0x27, 0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x27, 0x03, 0x36, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, + 0x11, 0x01, 0x22, 0x2E, 0x02, 0x35, 0x11, 0x37, 0x11, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0xE8, 0x03, 0x3F, 0xE1, 0xFC, 0xC2, + 0x7F, 0x03, 0x01, 0x5B, 0x43, 0x11, 0x26, 0x11, 0x01, 0x1B, 0x53, 0x21, + 0x56, 0x7B, 0x4D, 0x24, 0x02, 0xAF, 0x58, 0x7C, 0x4C, 0x22, 0xE8, 0x01, + 0x58, 0x48, 0x0E, 0x27, 0x13, 0x1B, 0x54, 0x04, 0x5E, 0xFB, 0xA2, 0x21, + 0x02, 0xEA, 0x56, 0x40, 0x04, 0x04, 0xC2, 0x07, 0x0A, 0x34, 0x5F, 0x81, + 0x4D, 0xFD, 0xE5, 0xFE, 0xFC, 0x37, 0x61, 0x80, 0x48, 0x02, 0x20, 0xD0, + 0xFD, 0x10, 0x54, 0x40, 0x03, 0x04, 0xC2, 0x09, 0x08, 0x00, 0x03, 0x00, + 0x8D, 0xFE, 0x25, 0x04, 0x8B, 0x04, 0x6C, 0x00, 0x16, 0x00, 0x2C, 0x00, + 0x3E, 0x00, 0x00, 0x41, 0x23, 0x34, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x02, + 0x35, 0x35, 0x17, 0x15, 0x06, 0x1E, 0x02, 0x17, 0x1E, 0x03, 0x01, 0x22, + 0x26, 0x26, 0x27, 0x2E, 0x02, 0x37, 0x35, 0x34, 0x12, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, + 0x16, 0x04, 0x2F, 0xD3, 0x31, 0x62, 0x49, 0x73, 0xB8, 0x82, 0x45, 0xD0, + 0x08, 0x26, 0x58, 0x85, 0x57, 0x5D, 0x90, 0x61, 0x31, 0xFE, 0x8F, 0x6D, + 0xB2, 0x8B, 0x35, 0x0F, 0x27, 0x1C, 0x01, 0x77, 0xE4, 0xA3, 0xA3, 0xE4, + 0x78, 0x6C, 0xCE, 0xC5, 0x59, 0x6D, 0x30, 0x01, 0x2F, 0x6C, 0x5C, 0x5A, + 0x6C, 0x31, 0x32, 0x6C, 0xFE, 0x25, 0x2A, 0x32, 0x1F, 0x0F, 0x19, 0x77, + 0xC7, 0x01, 0x1E, 0xC0, 0x44, 0x17, 0x45, 0x93, 0xD0, 0x88, 0x4F, 0x12, + 0x13, 0x30, 0x4C, 0x75, 0x01, 0xBF, 0x52, 0x9A, 0x6A, 0x1F, 0x2B, 0x25, + 0x13, 0x14, 0xAC, 0x01, 0x06, 0x93, 0x8B, 0xF5, 0xA1, 0x1B, 0x8E, 0xE3, + 0x84, 0xD3, 0x51, 0x84, 0x4D, 0x1B, 0x5C, 0x98, 0x5A, 0x58, 0x97, 0x5F, + 0x1B, 0x4D, 0x84, 0x51, 0x00, 0x02, 0x00, 0x36, 0xFF, 0xF6, 0x03, 0x63, + 0x04, 0x5E, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x65, 0x21, 0x15, 0x21, + 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x15, 0x21, + 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x13, 0x15, 0x21, 0x35, + 0x02, 0x30, 0x01, 0x33, 0xFE, 0xCD, 0xA9, 0xE1, 0x70, 0x70, 0xE1, 0xA9, + 0x01, 0x33, 0xFE, 0xCD, 0x5D, 0x69, 0x2A, 0x26, 0x67, 0xF2, 0xFE, 0x00, + 0xCA, 0xD4, 0x91, 0xF9, 0x9A, 0x22, 0x9B, 0xF7, 0x90, 0xD3, 0x5A, 0x97, + 0x5E, 0x22, 0x52, 0x9B, 0x63, 0x01, 0xC0, 0xC1, 0xC1, 0xFF, 0xFF, 0x00, + 0x44, 0xFF, 0xE8, 0x05, 0x11, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x54, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x55, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x43, 0xFF, 0xE9, 0x03, 0xDC, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x71, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x14, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFE, 0x5E, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x80, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x5D, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x75, 0xFF, 0xFE, 0x02, 0x0A, 0x05, 0xE8, 0x06, 0x26, 0x04, 0x99, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0xF3, 0xF4, 0x00, 0xFF, 0xFF, 0xFF, 0xA4, 0xFF, + 0xFE, 0x02, 0x44, 0x07, 0x22, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x4B, 0xFE, 0xCC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xE8, 0x04, 0x5C, 0x05, 0xE8, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF3, 0x01, 0x50, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, + 0xEB, 0x04, 0x31, 0x05, 0xE8, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF3, 0x01, 0x53, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, + 0xEB, 0x04, 0x31, 0x06, 0x8C, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x06, 0x06, 0xE4, 0xA9, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xF0, 0x06, + 0x26, 0x05, 0xE8, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0xF3, 0x02, 0x36, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8C, 0xFE, 0x1E, 0x01, + 0xC3, 0xFF, 0x8A, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x33, 0x15, 0x06, 0x06, 0x01, + 0x4D, 0x58, 0x69, 0xCA, 0x1A, 0x1F, 0x0D, 0x1A, 0x0D, 0x1C, 0x3D, 0xFE, + 0x1E, 0x6B, 0x56, 0xAB, 0x97, 0x22, 0x1E, 0x92, 0x01, 0x02, 0xFF, 0xFF, + 0x00, 0x8C, 0xFE, 0x1E, 0x01, 0xC3, 0xFF, 0x8A, 0x06, 0x06, 0x09, 0xE4, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x48, 0x02, 0x7A, 0x03, 0x4F, 0x06, 0xCE, + 0x00, 0x11, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, + 0x06, 0x06, 0x27, 0x36, 0x36, 0x35, 0x35, 0x36, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x15, 0x14, 0x16, 0x01, 0x21, 0x35, 0x21, 0x01, 0xCD, 0x68, 0xB1, + 0x6C, 0x6A, 0xB1, 0x69, 0x6A, 0xB0, 0x69, 0x69, 0xAF, 0x6A, 0x61, 0x53, + 0x01, 0x57, 0x60, 0x5E, 0x57, 0x5C, 0x01, 0x7B, 0xFD, 0x9D, 0x02, 0x63, + 0x02, 0x7A, 0x6A, 0xDB, 0xA7, 0x86, 0xA7, 0xD5, 0x66, 0x66, 0xD5, 0xA7, + 0x86, 0xA7, 0xDB, 0x6A, 0xAF, 0x01, 0x91, 0x93, 0xB4, 0x97, 0x8A, 0x8A, + 0x97, 0xB4, 0x99, 0x8B, 0x01, 0x26, 0xAF, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x01, 0x8B, 0x05, 0xD2, 0x06, 0x06, 0x00, 0xC5, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x81, 0x00, 0x00, 0x03, 0x97, 0x05, 0xD2, 0x04, 0x26, 0x00, + 0xC5, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x02, 0x0C, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x81, 0x00, 0x00, 0x05, 0xA3, 0x05, 0xD2, 0x04, 0x26, 0x00, + 0xC5, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x02, 0x0C, 0x00, 0x00, 0x00, + 0x07, 0x00, 0xC5, 0x04, 0x18, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x07, 0x8A, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, + 0x07, 0x01, 0xC8, 0x02, 0x0C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, 0x00, + 0x00, 0x05, 0x7E, 0x05, 0xD2, 0x06, 0x06, 0x01, 0xC8, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x15, 0x00, 0x00, 0x07, 0x1E, 0x05, 0xD2, 0x04, 0x26, 0x01, + 0xC8, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x05, 0x93, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x15, 0x00, 0x00, 0x09, 0x2A, 0x05, 0xD2, 0x04, 0x26, 0x01, + 0xC8, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x05, 0x93, 0x00, 0x00, 0x00, + 0x07, 0x00, 0xC5, 0x07, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x15, 0x00, + 0x00, 0x0B, 0x36, 0x05, 0xD2, 0x04, 0x26, 0x01, 0xC8, 0x00, 0x00, 0x00, + 0x27, 0x00, 0xC5, 0x05, 0x93, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x07, + 0x9F, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x09, 0xAC, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x81, 0x00, 0x00, 0x07, 0x76, 0x05, 0xD2, 0x04, 0x26, 0x00, + 0xC5, 0x00, 0x00, 0x00, 0x07, 0x01, 0xD2, 0x02, 0x0C, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x6A, 0x05, 0xD2, 0x06, 0x06, 0x01, + 0xD2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0x0D, 0x05, + 0xD2, 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x05, + 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x09, 0x19, 0x05, + 0xD2, 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x05, + 0x83, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x07, 0x8F, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x81, 0x00, 0x00, 0x04, 0x36, 0x05, 0xD2, 0x06, 0x06, 0x01, + 0x19, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, 0xFF, 0xE9, 0x05, 0x87, 0x05, + 0xE9, 0x06, 0x06, 0x00, 0x49, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x81, 0x00, + 0x00, 0x05, 0x50, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x54, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x81, 0x00, 0x00, 0x06, 0x9F, 0x05, 0xD2, 0x06, 0x06, 0x01, + 0x24, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x56, 0x00, 0x00, 0x01, 0x84, 0x05, + 0xE9, 0x04, 0x26, 0x02, 0xB2, 0xF8, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xEC, + 0x00, 0xFF, 0xFF, 0x00, 0x5D, 0x00, 0x00, 0x03, 0x75, 0x05, 0xE9, 0x04, + 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xF4, 0x00, 0x00, + 0x27, 0x02, 0xB2, 0x01, 0xE9, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0xDD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5D, 0x00, 0x00, 0x05, 0x5E, 0x05, + 0xE9, 0x04, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xF4, + 0x00, 0x00, 0x27, 0x02, 0xB2, 0x01, 0xE9, 0x00, 0x00, 0x00, 0x27, 0x0A, + 0x8C, 0x01, 0xDD, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x03, 0xD2, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x03, 0xC6, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x5D, 0x00, 0x00, 0x06, 0x3A, 0x05, 0xE9, 0x04, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xF4, 0x00, 0x00, 0x07, 0x03, 0xD2, 0x01, + 0xE9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x11, 0x00, 0x00, 0x04, 0x4B, 0x04, + 0x2E, 0x04, 0x06, 0x03, 0xD2, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x0F, 0x00, + 0x00, 0x05, 0xBB, 0x05, 0xE9, 0x04, 0x26, 0x03, 0xD2, 0xF8, 0x00, 0x00, + 0x27, 0x02, 0xB2, 0x04, 0x30, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x04, + 0x23, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x07, 0xDC, 0x05, + 0xE9, 0x04, 0x26, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x04, + 0x67, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x04, 0x5B, 0x00, 0x00, 0x00, + 0x27, 0x02, 0xB2, 0x06, 0x50, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x06, + 0x44, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x09, 0xC5, 0x05, + 0xE9, 0x04, 0x26, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x04, + 0x67, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x04, 0x5B, 0x00, 0x00, 0x00, + 0x27, 0x02, 0xB2, 0x06, 0x50, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x06, + 0x44, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x08, 0x3A, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x08, 0x2D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5D, 0x00, + 0x00, 0x06, 0x1A, 0x05, 0xE9, 0x04, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, + 0x26, 0x0A, 0x8C, 0xF4, 0x00, 0x00, 0x07, 0x03, 0xDF, 0x01, 0xE9, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x11, 0x00, 0x00, 0x04, 0x2A, 0x04, 0x2E, 0x04, + 0x06, 0x03, 0xDF, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x05, + 0xD6, 0x05, 0xE9, 0x04, 0x26, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x27, 0x02, + 0xB2, 0x04, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x04, 0x3E, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x19, 0x00, 0x00, 0x07, 0xBF, 0x05, 0xE9, 0x04, + 0x26, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x04, 0x4A, 0x00, + 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x04, 0x3E, 0x00, 0x00, 0x00, 0x27, 0x02, + 0xB2, 0x06, 0x33, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x06, 0x27, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x01, 0x74, 0x05, 0xD2, 0x06, + 0x06, 0x02, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x2D, 0x04, 0x44, 0x06, 0x06, 0x02, 0x4A, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x40, 0xFF, 0xEB, 0x04, 0x49, 0x05, 0xD2, 0x04, 0x06, 0x02, 0x55, 0xFB, + 0x00, 0xFF, 0xFF, 0x00, 0x75, 0x00, 0x00, 0x06, 0x8C, 0x04, 0x42, 0x06, + 0x06, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x01, 0x00, 0x69, 0xFF, 0xEC, 0x05, + 0x0A, 0x05, 0xE5, 0x00, 0x21, 0x00, 0x00, 0x53, 0x21, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x21, 0x3E, 0x02, 0x33, 0x32, 0x04, 0x12, 0x15, 0x15, 0x14, 0x02, 0x04, + 0x23, 0x22, 0x26, 0x26, 0x6B, 0x01, 0x0A, 0x10, 0x91, 0x8E, 0x86, 0x99, + 0x40, 0x49, 0x9E, 0x7F, 0x91, 0x89, 0x0F, 0xFE, 0xF5, 0x10, 0x87, 0xF3, + 0xAD, 0xC3, 0x01, 0x14, 0x93, 0x91, 0xFE, 0xEE, 0xC3, 0xAA, 0xF6, 0x8C, + 0x01, 0xDD, 0x8B, 0x92, 0x7A, 0xD9, 0x8E, 0x90, 0x94, 0xD7, 0x75, 0x9B, + 0x89, 0x90, 0xE4, 0x84, 0xAB, 0xFE, 0xC9, 0xD3, 0x8F, 0xD4, 0xFE, 0xC8, + 0xA9, 0x82, 0xE1, 0x00, 0x02, 0x00, 0x9A, 0xFE, 0x98, 0x05, 0x39, 0x05, + 0xE6, 0x00, 0x22, 0x00, 0x26, 0x00, 0x00, 0x41, 0x17, 0x0E, 0x02, 0x23, + 0x22, 0x24, 0x02, 0x35, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x21, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x11, 0x21, 0x11, 0x04, 0x55, 0x9E, 0x34, + 0x90, 0xBC, 0x79, 0xBE, 0xFE, 0xEF, 0x91, 0x95, 0x01, 0x14, 0xBD, 0xAF, + 0xF3, 0x89, 0x0E, 0xFE, 0xF9, 0x0F, 0x8C, 0x92, 0x7E, 0x9D, 0x47, 0x01, + 0x3F, 0x99, 0x86, 0x4F, 0x80, 0x62, 0xF6, 0xFE, 0xF6, 0x01, 0x81, 0x88, + 0x51, 0x79, 0x43, 0xAA, 0x01, 0x37, 0xD4, 0x90, 0xD4, 0x01, 0x36, 0xAB, + 0x83, 0xE3, 0x92, 0x89, 0x9B, 0x75, 0xD7, 0x94, 0x91, 0x8E, 0xD9, 0x7A, + 0x2F, 0x57, 0xA4, 0xFC, 0xAE, 0x03, 0x52, 0x00, 0x03, 0x00, 0x6F, 0x00, + 0x00, 0x06, 0x7E, 0x05, 0xB2, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0D, 0x00, + 0x00, 0x41, 0x01, 0x13, 0x23, 0x01, 0x01, 0x11, 0x21, 0x11, 0x01, 0x01, + 0x23, 0x13, 0x01, 0x01, 0x2F, 0x02, 0x3D, 0x55, 0xC6, 0xFD, 0x74, 0x03, + 0x89, 0xFE, 0xFA, 0x03, 0x8C, 0xFD, 0x76, 0xC8, 0x56, 0x02, 0x41, 0x03, + 0x60, 0xFD, 0xA1, 0xFE, 0xFF, 0x02, 0x9F, 0x03, 0x13, 0xFA, 0xED, 0x05, + 0x13, 0xFC, 0xE9, 0xFD, 0x65, 0x01, 0x01, 0x02, 0x5F, 0x00, 0x01, 0x00, + 0x34, 0x01, 0xDD, 0x04, 0x83, 0x03, 0x53, 0x00, 0x15, 0x00, 0x00, 0x41, + 0x23, 0x2E, 0x03, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x03, 0x33, + 0x32, 0x1E, 0x02, 0x04, 0x83, 0xC0, 0x11, 0x34, 0x52, 0x7A, 0x57, 0x5B, + 0x7B, 0x4F, 0x31, 0x11, 0xC0, 0x1C, 0x5B, 0x86, 0xB5, 0x75, 0x75, 0xB5, + 0x86, 0x5C, 0x01, 0xDD, 0x1D, 0x47, 0x40, 0x29, 0x29, 0x41, 0x46, 0x1D, + 0x47, 0x86, 0x6B, 0x3E, 0x3E, 0x6B, 0x86, 0x00, 0x01, 0x00, 0x63, 0xFE, + 0x69, 0x02, 0x19, 0x06, 0xEA, 0x00, 0x07, 0x00, 0x00, 0x57, 0x37, 0x11, + 0x27, 0x37, 0x01, 0x11, 0x01, 0x63, 0xCF, 0xCF, 0x9F, 0x01, 0x17, 0xFE, + 0xE9, 0xFC, 0xCE, 0x05, 0xAE, 0xCD, 0x9D, 0xFE, 0xED, 0xF9, 0xA3, 0xFE, + 0xEF, 0x00, 0x0C, 0x00, 0x86, 0x00, 0x82, 0x05, 0x54, 0x05, 0x28, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, + 0x1B, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, + 0x00, 0x41, 0x21, 0x35, 0x21, 0x03, 0x01, 0x37, 0x01, 0x05, 0x11, 0x33, + 0x11, 0x25, 0x01, 0x17, 0x01, 0x01, 0x21, 0x35, 0x21, 0x03, 0x01, 0x37, + 0x01, 0x05, 0x11, 0x33, 0x11, 0x25, 0x01, 0x17, 0x01, 0x01, 0x21, 0x35, + 0x21, 0x03, 0x01, 0x37, 0x01, 0x05, 0x11, 0x33, 0x11, 0x25, 0x01, 0x17, + 0x01, 0x02, 0xC8, 0xFD, 0xBE, 0x02, 0x42, 0x85, 0xFE, 0x6E, 0x57, 0x01, + 0x97, 0xFE, 0xC8, 0x7F, 0xFE, 0xCB, 0x01, 0x92, 0x5C, 0xFE, 0x69, 0x03, + 0x06, 0xFD, 0xBE, 0x02, 0x42, 0x84, 0xFE, 0x6C, 0x57, 0x01, 0x97, 0xFE, + 0xC9, 0x7E, 0xFE, 0xCB, 0x01, 0x94, 0x5A, 0xFE, 0x69, 0x03, 0x07, 0xFD, + 0xBD, 0x02, 0x43, 0x85, 0xFE, 0x6D, 0x58, 0x01, 0x97, 0xFE, 0xC7, 0x7F, + 0xFE, 0xCB, 0x01, 0x93, 0x5C, 0xFE, 0x69, 0x01, 0x62, 0x7B, 0xFE, 0xCC, + 0x01, 0x92, 0x58, 0xFE, 0x6D, 0x7E, 0x02, 0x38, 0xFD, 0xC8, 0x80, 0x01, + 0x91, 0x58, 0xFE, 0x6E, 0x03, 0x25, 0x7B, 0xFE, 0xCC, 0x01, 0x92, 0x59, + 0xFE, 0x6C, 0x7E, 0x02, 0x3A, 0xFD, 0xC6, 0x80, 0x01, 0x92, 0x59, 0xFE, + 0x6E, 0xFE, 0x4D, 0x7B, 0xFE, 0xCC, 0x01, 0x92, 0x58, 0xFE, 0x6D, 0x7E, + 0x02, 0x38, 0xFD, 0xC8, 0x80, 0x01, 0x91, 0x58, 0xFE, 0x6E, 0x00, 0x02, + 0x00, 0x5A, 0xFD, 0xDA, 0x03, 0x9A, 0xFF, 0x9C, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x00, 0x41, 0x03, 0x23, 0x01, 0x33, 0x13, 0x03, 0x27, 0x33, 0x01, + 0x01, 0xEA, 0xBC, 0xD4, 0x01, 0x46, 0x8F, 0x99, 0xC4, 0x43, 0x93, 0x01, + 0x46, 0xFE, 0xF4, 0xFE, 0xE6, 0x01, 0xC2, 0xFE, 0x3E, 0x01, 0x1A, 0xA8, + 0xFE, 0x3E, 0x00, 0x02, 0x00, 0x3E, 0xFE, 0x12, 0x03, 0x56, 0x02, 0x65, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x01, 0x27, 0x01, 0x03, 0x01, + 0x37, 0x01, 0x03, 0x56, 0xFD, 0x94, 0xAC, 0x02, 0x6A, 0x3F, 0xFE, 0xF3, + 0x89, 0x01, 0x30, 0x02, 0x04, 0xFC, 0x0E, 0x60, 0x03, 0xF3, 0xFB, 0xAD, + 0x01, 0xAA, 0x90, 0xFE, 0x1D, 0x00, 0x01, 0x00, 0x2A, 0x04, 0x9D, 0x06, + 0x62, 0x06, 0x12, 0x00, 0x11, 0x00, 0x00, 0x41, 0x2E, 0x02, 0x23, 0x22, + 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x17, + 0x05, 0xFD, 0x66, 0xE4, 0xF2, 0x7D, 0x80, 0xF0, 0xD8, 0x5D, 0x75, 0x52, + 0xFA, 0x01, 0x2E, 0xA0, 0xAD, 0x01, 0x38, 0xF3, 0x46, 0x04, 0x9D, 0x3A, + 0x4E, 0x27, 0x26, 0x4D, 0x3A, 0x5D, 0x55, 0x7C, 0x45, 0x45, 0x7C, 0x55, + 0xFF, 0xFF, 0x00, 0x69, 0x02, 0x28, 0x01, 0xA1, 0x03, 0x5F, 0x06, 0x07, + 0x05, 0xDC, 0x00, 0x00, 0x02, 0x39, 0xFF, 0xFF, 0x00, 0x69, 0xFF, 0xEE, + 0x01, 0xA1, 0x01, 0x26, 0x06, 0x06, 0x05, 0xDC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x32, 0x06, 0x07, 0x03, 0xF1, 0x06, 0xD5, 0x04, 0x07, 0x06, 0x05, + 0x00, 0x32, 0x06, 0xD5, 0x00, 0x06, 0x00, 0x81, 0x00, 0x5A, 0x05, 0x54, + 0x05, 0x03, 0x00, 0x03, 0x00, 0x07, 0x00, 0x13, 0x00, 0x1F, 0x00, 0x2B, + 0x00, 0x37, 0x00, 0x00, 0x65, 0x27, 0x01, 0x17, 0x03, 0x01, 0x37, 0x01, + 0x01, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x01, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x03, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x01, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x01, 0xB1, 0xA0, 0x03, 0x1B, 0x9F, 0x9F, 0xFC, 0xE5, 0xA0, 0x03, 0x1A, + 0xFB, 0xB6, 0x01, 0x4F, 0x45, 0x45, 0x50, 0x4F, 0x46, 0x45, 0x4F, 0x01, + 0xD4, 0x01, 0x4E, 0x45, 0x45, 0x50, 0x50, 0x45, 0x45, 0x4E, 0x01, 0x01, + 0x4E, 0x45, 0x45, 0x50, 0x50, 0x45, 0x45, 0x4E, 0x01, 0xD1, 0x51, 0x46, + 0x44, 0x51, 0x51, 0x44, 0x45, 0x52, 0xD2, 0x9E, 0x03, 0x1B, 0x9F, 0xFC, + 0xE6, 0x03, 0x1A, 0x9F, 0xFC, 0xE5, 0x01, 0x41, 0x38, 0x4C, 0x4C, 0x38, + 0x37, 0x4C, 0x4C, 0xFE, 0x62, 0x38, 0x4C, 0x4C, 0x38, 0x36, 0x4C, 0x4C, + 0x03, 0xD9, 0x38, 0x4C, 0x4C, 0x38, 0x37, 0x4A, 0x4A, 0xFE, 0x69, 0x38, + 0x4C, 0x4C, 0x38, 0x37, 0x4C, 0x4C, 0x00, 0x02, 0x00, 0x69, 0xFE, 0xC0, + 0x01, 0xD0, 0x04, 0x06, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x23, + 0x03, 0x33, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x01, 0xD0, 0xB3, 0x9C, 0xFE, 0x7A, 0x41, 0x5B, 0x5B, 0x41, + 0x41, 0x5B, 0x5B, 0xFE, 0xC0, 0x02, 0x24, 0x01, 0xEA, 0x5B, 0x41, 0x41, + 0x5B, 0x5B, 0x41, 0x41, 0x5B, 0x00, 0x01, 0x00, 0x2A, 0xFE, 0x1A, 0x06, + 0x62, 0xFF, 0x8C, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x24, 0x26, 0x27, + 0x37, 0x16, 0x04, 0x33, 0x32, 0x24, 0x37, 0x17, 0x06, 0x06, 0x04, 0x03, + 0x44, 0xC9, 0xFE, 0xD5, 0xD8, 0x4E, 0x75, 0x66, 0x01, 0x4A, 0xF5, 0xF6, + 0x01, 0x5C, 0x67, 0x65, 0x3E, 0xDD, 0xFE, 0xC7, 0xFE, 0x1A, 0x46, 0x7E, + 0x51, 0x5D, 0x3E, 0x5C, 0x60, 0x3A, 0x5D, 0x4C, 0x7E, 0x4B, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0x80, 0x03, 0xAA, 0x02, 0xC6, 0x06, 0x07, 0x06, 0x09, + 0x00, 0x00, 0xFC, 0xF4, 0x00, 0x02, 0x00, 0x21, 0xFE, 0x1A, 0x06, 0x5A, + 0x06, 0x13, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x36, 0x04, 0x16, + 0x17, 0x07, 0x26, 0x24, 0x23, 0x22, 0x04, 0x07, 0x27, 0x36, 0x36, 0x24, + 0x13, 0x22, 0x24, 0x26, 0x27, 0x37, 0x16, 0x04, 0x33, 0x32, 0x24, 0x37, + 0x17, 0x06, 0x06, 0x04, 0x03, 0x3A, 0xCA, 0x01, 0x39, 0xDD, 0x3E, 0x65, + 0x67, 0xFE, 0xA5, 0xF7, 0xF4, 0xFE, 0xB6, 0x67, 0x74, 0x4E, 0xD8, 0x01, + 0x2B, 0xCA, 0xC9, 0xFE, 0xD5, 0xD9, 0x4D, 0x74, 0x67, 0x01, 0x4A, 0xF5, + 0xF5, 0x01, 0x5C, 0x68, 0x65, 0x3E, 0xDD, 0xFE, 0xC6, 0x06, 0x12, 0x01, + 0x4C, 0x7E, 0x4C, 0x5D, 0x3A, 0x60, 0x5C, 0x3E, 0x5D, 0x51, 0x7E, 0x47, + 0xF8, 0x07, 0x46, 0x7E, 0x51, 0x5D, 0x3E, 0x5C, 0x60, 0x3A, 0x5D, 0x4C, + 0x7E, 0x4B, 0xFF, 0xFF, 0x00, 0xE2, 0xFE, 0x8D, 0x04, 0x11, 0x05, 0xD2, + 0x04, 0x26, 0x06, 0x09, 0x65, 0x00, 0x00, 0x07, 0x06, 0x09, 0x00, 0x67, + 0xFC, 0x01, 0x00, 0x01, 0x00, 0x6A, 0x01, 0xE8, 0x05, 0x6A, 0x03, 0x88, + 0x00, 0x17, 0x00, 0x00, 0x41, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, + 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x05, 0x03, 0x67, 0x38, 0xAE, 0x6A, 0x57, 0x9C, 0x90, 0x8C, + 0x48, 0x4E, 0x76, 0x37, 0x5E, 0x43, 0xAF, 0x6B, 0x52, 0x97, 0x8E, 0x89, + 0x44, 0x45, 0x78, 0x03, 0x1E, 0xA5, 0x32, 0x5F, 0x3D, 0x50, 0x3C, 0x33, + 0x2A, 0xAC, 0x34, 0x54, 0x3C, 0x50, 0x3C, 0x34, 0x00, 0x01, 0x00, 0x2A, + 0xFE, 0x19, 0x06, 0x62, 0xFF, 0x8C, 0x00, 0x10, 0x00, 0x00, 0x45, 0x32, + 0x04, 0x16, 0x17, 0x07, 0x26, 0x26, 0x24, 0x23, 0x22, 0x04, 0x07, 0x27, + 0x36, 0x36, 0x24, 0x03, 0x44, 0xC9, 0x01, 0x3A, 0xDD, 0x3E, 0x65, 0x44, + 0xCA, 0xFE, 0xF9, 0xA4, 0xF3, 0xFE, 0xB4, 0x66, 0x75, 0x4C, 0xD7, 0x01, + 0x2C, 0x74, 0x4C, 0x7E, 0x4C, 0x5C, 0x26, 0x46, 0x2E, 0x5B, 0x40, 0x5D, + 0x50, 0x7D, 0x49, 0x00, 0x04, 0x00, 0x9E, 0x00, 0x32, 0x04, 0x78, 0x04, + 0x02, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x41, + 0x21, 0x35, 0x21, 0x03, 0x01, 0x37, 0x01, 0x01, 0x11, 0x23, 0x13, 0x03, + 0x27, 0x01, 0x17, 0x04, 0x78, 0xFC, 0x26, 0x03, 0xDA, 0xD9, 0xFD, 0x4A, + 0x8F, 0x02, 0xB6, 0xFE, 0xC2, 0xCA, 0x01, 0xAF, 0x8F, 0x02, 0xB6, 0x8F, + 0x01, 0xB5, 0xC8, 0xFD, 0xF8, 0x02, 0xB9, 0x8C, 0xFD, 0x47, 0x03, 0x01, + 0xFC, 0x30, 0x03, 0xD0, 0xFC, 0x73, 0x8C, 0x02, 0xB9, 0x8C, 0xFF, 0xFF, + 0x00, 0xE2, 0xFE, 0x20, 0x03, 0x35, 0x07, 0xB2, 0x04, 0x26, 0x05, 0xAE, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xAE, 0x01, 0x67, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x59, 0x01, 0xEE, 0x02, 0xF6, 0x02, 0xC2, 0x04, 0x06, 0x05, 0xB1, + 0xDF, 0x00, 0xFF, 0xFF, 0x00, 0x59, 0x01, 0xEE, 0x02, 0xF6, 0x02, 0xC2, + 0x04, 0x06, 0x05, 0xB1, 0xDF, 0x00, 0x00, 0x02, 0xFF, 0xF7, 0xFE, 0x60, + 0x03, 0x9E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0x03, 0x9E, 0xFC, 0x59, 0x03, 0xA7, + 0xFC, 0x59, 0xFE, 0xF9, 0x99, 0x99, 0x01, 0x07, 0x9C, 0x9C, 0x00, 0x03, + 0x00, 0x41, 0x00, 0xD8, 0x03, 0x57, 0x05, 0xAF, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x2C, 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, 0x23, 0x03, 0x13, 0x13, + 0x23, 0x01, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x37, + 0x33, 0x07, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x27, 0x27, 0x33, 0x17, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x01, + 0xD8, 0x91, 0xEE, 0xFE, 0xD7, 0x94, 0x69, 0x91, 0x3E, 0x97, 0xFE, 0xD8, + 0x01, 0x87, 0x40, 0x67, 0x3C, 0x09, 0x13, 0x0D, 0x5C, 0xBA, 0x3A, 0x15, + 0x20, 0x13, 0x10, 0x16, 0x17, 0x0D, 0x23, 0x1E, 0x39, 0xB6, 0x55, 0x0F, + 0x11, 0x09, 0x3A, 0x64, 0x03, 0xC9, 0x01, 0xE6, 0xFC, 0xDE, 0x03, 0x22, + 0xFE, 0x1A, 0xFE, 0xC4, 0x03, 0x22, 0xFB, 0x29, 0x2A, 0x55, 0x3F, 0x10, + 0x26, 0x30, 0x1D, 0xC9, 0x84, 0x32, 0x45, 0x2E, 0x12, 0x15, 0x1D, 0x1D, + 0x15, 0x1C, 0x53, 0x4B, 0x81, 0xC1, 0x1F, 0x33, 0x28, 0x11, 0x3F, 0x55, + 0x2A, 0x00, 0x01, 0x00, 0x6F, 0x00, 0x00, 0x04, 0xA8, 0x05, 0x3E, 0x00, + 0x13, 0x00, 0x00, 0x41, 0x03, 0x05, 0x07, 0x25, 0x03, 0x23, 0x13, 0x25, + 0x37, 0x05, 0x13, 0x25, 0x37, 0x05, 0x13, 0x33, 0x03, 0x05, 0x07, 0x03, + 0x37, 0xD4, 0x01, 0x29, 0x4A, 0xFE, 0xD9, 0xB9, 0xB2, 0xE5, 0xFE, 0xDA, + 0x47, 0x01, 0x2C, 0xCC, 0xFE, 0xD9, 0x4D, 0x01, 0x27, 0xBB, 0xAF, 0xE8, + 0x01, 0x2B, 0x4C, 0x03, 0x28, 0xFE, 0x98, 0xAC, 0x80, 0xAC, 0xFE, 0xC0, + 0x01, 0x8E, 0xAC, 0x80, 0xAC, 0x01, 0x6A, 0xA8, 0x82, 0xAA, 0x01, 0x46, + 0xFE, 0x6A, 0xAA, 0x7E, 0xFF, 0xFF, 0x00, 0x92, 0x03, 0x7A, 0x01, 0x99, + 0x05, 0xD2, 0x04, 0x06, 0x05, 0xD9, 0x2E, 0x00, 0x00, 0x01, 0x00, 0x61, + 0xFE, 0x51, 0x01, 0xBF, 0xFF, 0xAE, 0x00, 0x03, 0x00, 0x00, 0x45, 0x03, + 0x23, 0x13, 0x01, 0xBF, 0x69, 0xF5, 0xCF, 0x52, 0xFE, 0xA3, 0x01, 0x5D, + 0x00, 0x02, 0x00, 0x36, 0xFF, 0xF5, 0x03, 0x63, 0x04, 0x45, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x77, 0x21, 0x32, 0x36, 0x36, 0x27, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x21, 0x13, 0x35, 0x21, 0x15, 0x36, 0x01, 0x33, 0x5D, + 0x6A, 0x2D, 0x01, 0x29, 0x69, 0x62, 0xFE, 0xCE, 0x01, 0x32, 0xAA, 0xE1, + 0x70, 0x70, 0xE1, 0xA9, 0xFE, 0xCD, 0xA4, 0x01, 0xFE, 0xCA, 0x57, 0x92, + 0x59, 0x22, 0x4F, 0x95, 0x60, 0xD3, 0x8F, 0xF3, 0x95, 0x22, 0x95, 0xF4, + 0x8E, 0x01, 0xC8, 0xC1, 0xC1, 0x00, 0x02, 0x00, 0x52, 0x02, 0x42, 0x03, + 0x46, 0x05, 0x31, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, 0x13, 0x13, + 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x13, 0x01, 0x95, 0x44, 0xA6, 0xC7, + 0xFE, 0xE0, 0xB3, 0xFE, 0xDF, 0xC9, 0xA3, 0x45, 0x02, 0x42, 0x01, 0x32, + 0x01, 0xBD, 0xFD, 0x11, 0x02, 0xEF, 0xFE, 0x43, 0xFE, 0xCE, 0x00, 0x02, + 0x00, 0x80, 0x02, 0x4D, 0x03, 0x7C, 0x05, 0x36, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x00, 0x53, 0x35, 0x01, 0x15, 0x05, 0x01, 0x01, 0x35, 0x05, 0x05, + 0x80, 0x02, 0xFC, 0xFE, 0x3A, 0x01, 0xC6, 0xFD, 0x04, 0x01, 0x36, 0x01, + 0xC6, 0x03, 0x8B, 0x8F, 0x01, 0x1C, 0xC7, 0xA2, 0xFE, 0x80, 0x01, 0x1C, + 0x8F, 0x46, 0x9E, 0x00, 0x02, 0x00, 0x80, 0x02, 0x4D, 0x03, 0x7C, 0x05, + 0x36, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, 0x25, 0x25, 0x35, 0x01, + 0x01, 0x35, 0x25, 0x25, 0x15, 0x03, 0x7C, 0xFE, 0xCB, 0xFE, 0x39, 0x02, + 0xFC, 0xFD, 0x04, 0x01, 0xC7, 0x01, 0x35, 0x03, 0x8B, 0x42, 0xA2, 0xC7, + 0xFE, 0xE4, 0xFE, 0x33, 0xC7, 0x9E, 0x46, 0x8F, 0x00, 0x02, 0x00, 0x52, + 0x02, 0x42, 0x03, 0x46, 0x05, 0x31, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, + 0x41, 0x03, 0x03, 0x33, 0x01, 0x21, 0x01, 0x33, 0x03, 0x03, 0x02, 0x7F, + 0xA6, 0x44, 0x91, 0x01, 0x20, 0xFD, 0x0C, 0x01, 0x21, 0x90, 0x45, 0xA3, + 0x02, 0x42, 0x01, 0xBE, 0x01, 0x31, 0xFD, 0x11, 0x02, 0xEF, 0xFE, 0xCF, + 0xFE, 0x42, 0x00, 0x02, 0x00, 0x88, 0x00, 0xA0, 0x02, 0x56, 0x02, 0x34, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x05, 0x11, + 0x33, 0x11, 0x88, 0x01, 0xCE, 0xFE, 0xBE, 0xB5, 0x01, 0x8D, 0xA7, 0xA7, + 0xED, 0x01, 0x94, 0xFE, 0x6C, 0x00, 0x02, 0x00, 0x64, 0xFD, 0xDC, 0x02, + 0x77, 0xFF, 0xB8, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, 0x03, 0x33, + 0x13, 0x17, 0x23, 0x37, 0x13, 0x33, 0x03, 0x01, 0x30, 0xCC, 0x8D, 0x73, + 0x31, 0x4B, 0x2F, 0x71, 0x8D, 0xC9, 0xFD, 0xDC, 0x01, 0xDC, 0xFE, 0xE6, + 0xC2, 0xC2, 0x01, 0x1A, 0xFE, 0x24, 0x00, 0x01, 0x00, 0x44, 0x01, 0x13, + 0x02, 0x39, 0x01, 0xBB, 0x00, 0x03, 0x00, 0x00, 0x53, 0x21, 0x15, 0x21, + 0x44, 0x01, 0xF5, 0xFE, 0x0B, 0x01, 0xBB, 0xA8, 0x00, 0x02, 0x00, 0x88, + 0x00, 0x77, 0x02, 0x56, 0x02, 0x55, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x11, 0x23, 0x11, 0x07, 0x21, 0x15, 0x21, 0x01, 0xC9, 0xB5, 0x8C, + 0x01, 0xCE, 0xFE, 0x32, 0x02, 0x55, 0xFE, 0x22, 0x01, 0xDE, 0x9A, 0xA8, + 0xFF, 0xFF, 0x00, 0x69, 0x01, 0xCD, 0x01, 0xA1, 0x05, 0xE4, 0x06, 0x27, + 0x05, 0xDC, 0x00, 0x00, 0x01, 0xDF, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x00, + 0x04, 0xBE, 0xFF, 0xFF, 0x00, 0x3A, 0x04, 0x56, 0x01, 0x0A, 0x05, 0xE5, + 0x06, 0x06, 0x0B, 0x33, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3D, 0x02, 0x4D, + 0x01, 0x3B, 0x04, 0x2C, 0x04, 0x07, 0x0A, 0xAB, 0x00, 0x00, 0xFD, 0xCB, + 0x00, 0x01, 0x00, 0x87, 0xFE, 0x59, 0x03, 0x72, 0xFF, 0x7D, 0x00, 0x08, + 0x00, 0x00, 0x45, 0x17, 0x37, 0x33, 0x15, 0x01, 0x23, 0x01, 0x35, 0x01, + 0x68, 0x94, 0x97, 0xDF, 0xFE, 0xDC, 0xA4, 0xFE, 0xDD, 0x83, 0x96, 0x96, + 0x0A, 0xFE, 0xE6, 0x01, 0x1A, 0x0A, 0x00, 0x02, 0x00, 0x7D, 0x04, 0x86, + 0x03, 0x20, 0x06, 0x17, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x05, 0x15, 0x21, 0x35, 0x03, 0x20, 0xFD, 0x5D, 0x02, 0xA3, + 0xFD, 0x5D, 0x06, 0x17, 0xA0, 0xA0, 0xEF, 0xA2, 0xA2, 0x00, 0x02, 0x00, + 0x64, 0xFD, 0xDC, 0x02, 0x77, 0xFF, 0xB8, 0x00, 0x04, 0x00, 0x09, 0x00, + 0x00, 0x53, 0x13, 0x33, 0x07, 0x03, 0x33, 0x03, 0x27, 0x33, 0x13, 0x64, + 0xCC, 0x65, 0x31, 0x73, 0xF9, 0x71, 0x2F, 0x64, 0xC9, 0xFD, 0xDC, 0x01, + 0xDC, 0xC1, 0xFE, 0xE5, 0x01, 0x1B, 0xC1, 0xFE, 0x24, 0x00, 0x02, 0x00, + 0x63, 0xFD, 0xDA, 0x02, 0x7A, 0xFF, 0xBE, 0x00, 0x04, 0x00, 0x09, 0x00, + 0x00, 0x53, 0x35, 0x25, 0x15, 0x05, 0x05, 0x25, 0x35, 0x17, 0x05, 0x63, + 0x02, 0x17, 0xFE, 0xC1, 0x01, 0x3F, 0xFD, 0xE9, 0xD8, 0x01, 0x3F, 0xFE, + 0xA8, 0x5E, 0xB8, 0x82, 0x69, 0xF9, 0xB8, 0x5D, 0x2D, 0x66, 0x00, 0x02, + 0x00, 0x63, 0xFD, 0xDA, 0x02, 0x7A, 0xFF, 0xBE, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x00, 0x41, 0x27, 0x25, 0x35, 0x05, 0x01, 0x35, 0x25, 0x37, 0x15, + 0x02, 0x7A, 0xD9, 0xFE, 0xC2, 0x02, 0x17, 0xFD, 0xE9, 0x01, 0x3E, 0xD9, + 0xFE, 0xA8, 0x2B, 0x69, 0x82, 0xB8, 0xFE, 0xD4, 0x82, 0x66, 0x2D, 0x5D, + 0x00, 0x02, 0x00, 0x56, 0xFD, 0xE8, 0x02, 0x48, 0xFF, 0xB5, 0x00, 0x0F, + 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x4F, 0x46, 0x71, + 0x42, 0x42, 0x71, 0x46, 0x46, 0x70, 0x43, 0x43, 0x70, 0x46, 0x2D, 0x3E, + 0x3E, 0x2D, 0x2D, 0x3E, 0x3E, 0xFD, 0xE8, 0x3D, 0x69, 0x41, 0x40, 0x69, + 0x3D, 0x3D, 0x69, 0x40, 0x41, 0x69, 0x3D, 0x7E, 0x3D, 0x2C, 0x2C, 0x3D, + 0x3D, 0x2C, 0x2C, 0x3D, 0xFF, 0xFF, 0x00, 0x8F, 0x00, 0xB9, 0x02, 0x2C, + 0x01, 0xEC, 0x04, 0x07, 0x06, 0xE9, 0x00, 0x37, 0xFC, 0x05, 0xFF, 0xFF, + 0x00, 0xA6, 0x04, 0xB4, 0x03, 0xA0, 0x05, 0xE8, 0x04, 0x06, 0x06, 0xEA, + 0x4E, 0x00, 0xFF, 0xFF, 0x00, 0xA6, 0x04, 0xB4, 0x03, 0xA0, 0x05, 0xE8, + 0x04, 0x06, 0x0A, 0xF4, 0x41, 0x00, 0x00, 0x01, 0x00, 0x52, 0xFE, 0x54, + 0x03, 0x46, 0xFF, 0x6D, 0x00, 0x19, 0x00, 0x00, 0x45, 0x17, 0x14, 0x06, + 0x06, 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x27, 0x3E, 0x02, + 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x02, 0xA7, 0x9F, 0x3C, 0x67, + 0x41, 0x31, 0x47, 0x38, 0x3D, 0x28, 0x26, 0x34, 0xA1, 0x01, 0x3B, 0x69, + 0x41, 0x29, 0x44, 0x3F, 0x41, 0x26, 0x26, 0x36, 0x93, 0x0C, 0x4A, 0x74, + 0x44, 0x1A, 0x22, 0x1A, 0x35, 0x2C, 0x07, 0x49, 0x77, 0x47, 0x1B, 0x22, + 0x1B, 0x35, 0x00, 0x02, 0x00, 0x71, 0x04, 0x75, 0x02, 0x10, 0x06, 0x00, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x11, 0x33, 0x11, 0x27, 0x35, + 0x21, 0x15, 0x71, 0xB1, 0xB1, 0x01, 0x9F, 0x04, 0x75, 0x01, 0x8B, 0xFE, + 0x75, 0xE5, 0xA6, 0xA6, 0x00, 0x02, 0x00, 0x71, 0x04, 0x75, 0x02, 0x10, + 0x06, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, + 0x25, 0x35, 0x21, 0x15, 0x01, 0x5E, 0xB2, 0xFE, 0x61, 0x01, 0x9F, 0x04, + 0x75, 0x01, 0x8B, 0xFE, 0x75, 0xE5, 0xA6, 0xA6, 0x00, 0x02, 0x00, 0x71, + 0xFE, 0x2D, 0x02, 0x10, 0xFF, 0xBB, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x53, 0x11, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x71, 0xB1, 0xB1, 0x01, + 0x9F, 0xFE, 0x2D, 0x01, 0x8E, 0xFE, 0x72, 0xA6, 0xA6, 0x00, 0x02, 0x00, + 0x71, 0xFE, 0x2D, 0x02, 0x10, 0xFF, 0xBB, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x41, 0x11, 0x33, 0x11, 0x21, 0x35, 0x21, 0x15, 0x01, 0x5E, 0xB2, + 0xFE, 0x61, 0x01, 0x9F, 0xFE, 0x2D, 0x01, 0x8E, 0xFE, 0x72, 0xA6, 0xA6, + 0x00, 0x03, 0x00, 0x69, 0xFE, 0x3E, 0x03, 0x32, 0xFF, 0xAF, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x37, 0x11, + 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x02, 0x8E, 0xFE, 0x63, 0x29, 0xB1, + 0x02, 0xC9, 0xB3, 0xFE, 0xDA, 0x9C, 0x9C, 0xD5, 0xFE, 0x8F, 0x01, 0x71, + 0xFE, 0x8F, 0x01, 0x71, 0x00, 0x02, 0x00, 0x80, 0xFE, 0x2D, 0x03, 0x1D, + 0xFF, 0xBB, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x37, 0x11, 0x23, 0x11, 0x03, 0x1D, 0xFD, 0xEB, 0x29, 0xB1, 0xFE, 0xCB, + 0x9E, 0x9E, 0xF0, 0xFE, 0x72, 0x01, 0x8E, 0x00, 0x03, 0x00, 0x74, 0xFE, + 0x4C, 0x03, 0x88, 0x00, 0xA8, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, + 0x00, 0x45, 0x15, 0x21, 0x35, 0x37, 0x33, 0x01, 0x27, 0x01, 0x23, 0x01, + 0x37, 0x03, 0x88, 0xFD, 0x6C, 0xB5, 0xCE, 0xFE, 0x7D, 0x80, 0x02, 0x03, + 0xCE, 0xFE, 0xCB, 0x86, 0x33, 0xA5, 0xA5, 0xDB, 0xFE, 0x84, 0x4E, 0xFE, + 0xD2, 0x01, 0x2E, 0x48, 0x00, 0x02, 0x00, 0x88, 0x00, 0xA0, 0x02, 0x56, + 0x02, 0x26, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, + 0x21, 0x11, 0x33, 0x11, 0x88, 0x01, 0xCE, 0xFE, 0xBE, 0xB5, 0xA0, 0xA7, + 0xA7, 0x01, 0x86, 0xFE, 0x7A, 0x00, 0x02, 0x00, 0x5E, 0x00, 0x00, 0x02, + 0x7C, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, + 0x11, 0x33, 0x15, 0x21, 0x35, 0x02, 0x7C, 0xFE, 0xF8, 0xDD, 0xFE, 0x0D, + 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xD5, 0xD5, 0x00, 0x02, 0x00, 0x5E, + 0x00, 0x00, 0x02, 0x7C, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x11, 0x21, 0x11, 0x13, 0x15, 0x21, 0x35, 0x02, 0x7C, 0xFE, 0xF8, + 0xDD, 0xFE, 0x0D, 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xFB, 0x22, 0xD4, + 0xD4, 0x00, 0x02, 0x00, 0x5E, 0x00, 0x00, 0x02, 0x7C, 0x05, 0xB2, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x13, 0x15, 0x21, + 0x35, 0x02, 0x7C, 0xFE, 0xF8, 0xDD, 0xFE, 0x0D, 0x05, 0xB2, 0xFA, 0x4E, + 0x05, 0xB2, 0xFE, 0xFC, 0xD4, 0xD4, 0x00, 0x02, 0x00, 0x5E, 0x00, 0x00, + 0x02, 0x7C, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, + 0x21, 0x11, 0x13, 0x15, 0x21, 0x35, 0x02, 0x7C, 0xFE, 0xF8, 0xDD, 0xFE, + 0x0D, 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xFC, 0x25, 0xD3, 0xD3, 0x00, + 0x02, 0x00, 0x5E, 0x00, 0x00, 0x02, 0x7C, 0x05, 0xB2, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x13, 0x15, 0x21, 0x35, 0x02, + 0x7C, 0xFE, 0xF8, 0xDD, 0xFE, 0x0D, 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, + 0xFD, 0x90, 0xD4, 0xD4, 0x00, 0x02, 0x00, 0x61, 0x04, 0x7F, 0x02, 0x79, + 0x06, 0x9C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x01, 0x17, + 0x03, 0x01, 0x37, 0x01, 0xD6, 0x75, 0x01, 0xA4, 0x74, 0x76, 0xFE, 0x60, + 0x74, 0x01, 0xA0, 0x04, 0x82, 0x76, 0x01, 0xA1, 0x74, 0xFE, 0x5A, 0x01, + 0xA6, 0x77, 0xFE, 0x5A, 0x00, 0x01, 0xFF, 0xD0, 0x01, 0x40, 0x02, 0x4B, + 0x03, 0x2E, 0x00, 0x11, 0x00, 0x00, 0x43, 0x27, 0x25, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x2E, + 0x02, 0x01, 0x8C, 0x0F, 0x17, 0x33, 0x38, 0x0C, 0x20, 0x0C, 0x26, 0x20, + 0x4B, 0x28, 0x54, 0x62, 0x35, 0x15, 0x02, 0x1C, 0xBF, 0x53, 0x5D, 0x7F, + 0x40, 0x05, 0x02, 0xB7, 0x10, 0x12, 0x4A, 0x7A, 0x49, 0x00, 0x02, 0x00, + 0x6B, 0x02, 0x8D, 0x03, 0x2F, 0x05, 0xBA, 0x00, 0x18, 0x00, 0x1C, 0x00, + 0x00, 0x41, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, + 0x15, 0x23, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x03, 0x23, 0x11, 0x33, 0x02, 0x68, 0x04, 0x4E, 0x40, 0x50, 0x4D, + 0x45, 0x53, 0x3E, 0x54, 0x62, 0x98, 0x56, 0x5C, 0xA2, 0x67, 0x65, 0x9E, + 0x5C, 0xFD, 0xCC, 0xCC, 0x04, 0x8B, 0x3B, 0x47, 0x6B, 0x59, 0x55, 0x67, + 0x9F, 0x01, 0x56, 0x9E, 0x6A, 0x76, 0xA2, 0x55, 0x4C, 0x88, 0x5B, 0xFE, + 0x02, 0x01, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x03, 0x8A, 0x05, + 0xEA, 0x00, 0x22, 0x00, 0x00, 0x61, 0x22, 0x26, 0x35, 0x11, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x04, 0x23, 0x35, 0x32, + 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x14, 0x16, + 0x33, 0x33, 0x15, 0x02, 0x97, 0xE6, 0xDD, 0xBD, 0xA5, 0x69, 0x98, 0x53, + 0x78, 0xE6, 0xFE, 0xB7, 0xD1, 0xA6, 0xF5, 0x9F, 0x4E, 0x2D, 0x31, 0x36, + 0x34, 0x56, 0x6F, 0x68, 0xC5, 0xCE, 0x02, 0xA8, 0xCD, 0xE2, 0x5B, 0xAB, + 0x78, 0x9A, 0xFB, 0xB5, 0x63, 0xA2, 0x53, 0x93, 0xC2, 0x6D, 0x4D, 0x4B, + 0x57, 0x5D, 0xFD, 0x39, 0x6F, 0x56, 0xCE, 0x00, 0x01, 0x00, 0x7D, 0xFE, + 0xB3, 0x05, 0x54, 0x00, 0x8C, 0x00, 0x07, 0x00, 0x00, 0x53, 0x11, 0x33, + 0x11, 0x21, 0x11, 0x33, 0x11, 0x7D, 0xD8, 0x03, 0x28, 0xD7, 0xFE, 0xB3, + 0x01, 0xD9, 0xFE, 0xF3, 0x01, 0x0D, 0xFE, 0x27, 0x00, 0x05, 0x00, 0x65, + 0xFF, 0xFF, 0x05, 0x6B, 0x06, 0x00, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x21, + 0x00, 0x25, 0x00, 0x29, 0x00, 0x00, 0x41, 0x15, 0x22, 0x26, 0x26, 0x35, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x17, 0x15, 0x06, 0x16, 0x16, 0x01, 0x15, 0x21, 0x35, + 0x13, 0x11, 0x23, 0x11, 0x01, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, + 0x02, 0x44, 0x8C, 0xD8, 0x7B, 0x7B, 0xD8, 0x8B, 0xCD, 0xF2, 0x10, 0xFE, + 0x0E, 0x62, 0x61, 0x45, 0x66, 0x36, 0x01, 0x01, 0x37, 0x66, 0x03, 0x6C, + 0xFD, 0x82, 0x53, 0xFD, 0x02, 0xD6, 0xFD, 0xD4, 0x02, 0x7E, 0xFD, 0x82, + 0x02, 0x7A, 0xC7, 0x77, 0xD4, 0x8B, 0xA4, 0x8B, 0xD2, 0x76, 0xC4, 0xC8, + 0x65, 0x60, 0x46, 0x77, 0x4D, 0xA6, 0x4D, 0x7A, 0x47, 0xFE, 0x4E, 0xCA, + 0xCA, 0x03, 0x43, 0xFB, 0xF3, 0x04, 0x0D, 0xFE, 0x71, 0xCA, 0xCA, 0x01, + 0x8F, 0xCA, 0xCA, 0x00, 0x03, 0x00, 0x60, 0x00, 0x00, 0x05, 0x3F, 0x05, + 0xD2, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x05, 0x01, 0x33, 0x01, 0x01, 0x1D, 0x34, + 0x56, 0x33, 0x33, 0x56, 0x34, 0x34, 0x56, 0x33, 0x33, 0x56, 0x03, 0x31, + 0x34, 0x56, 0x33, 0x33, 0x56, 0x34, 0x34, 0x56, 0x33, 0x33, 0x56, 0xFB, + 0xB5, 0x04, 0x00, 0xC9, 0xFC, 0x00, 0x03, 0xA4, 0x32, 0x56, 0x34, 0x35, + 0x55, 0x33, 0x33, 0x55, 0x35, 0x34, 0x56, 0x32, 0xFD, 0x14, 0x33, 0x56, + 0x34, 0x34, 0x56, 0x33, 0x33, 0x56, 0x34, 0x34, 0x56, 0x33, 0xB8, 0x05, + 0xD2, 0xFA, 0x2E, 0x00, 0x02, 0xFC, 0x8A, 0x04, 0xA7, 0xFE, 0x86, 0x06, + 0xE2, 0x00, 0x15, 0x00, 0x2B, 0x00, 0x00, 0x41, 0x35, 0x36, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x27, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x06, + 0x16, 0x17, 0x23, 0x26, 0x26, 0x37, 0x17, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0xFD, 0xDA, 0x01, 0x28, 0x29, 0x28, 0x2C, 0x93, 0x82, + 0x6A, 0x62, 0x81, 0x01, 0x0A, 0x0B, 0x96, 0x0A, 0x0B, 0x10, 0x01, 0x62, + 0x34, 0x36, 0x28, 0x23, 0x2F, 0x46, 0x1A, 0x12, 0x57, 0x4E, 0x53, 0x66, + 0x83, 0x7D, 0x05, 0x2F, 0xEE, 0x27, 0x29, 0x1F, 0x1F, 0x05, 0x49, 0x65, + 0x65, 0x62, 0xE3, 0x28, 0x40, 0x1E, 0x19, 0x42, 0xEE, 0x57, 0x31, 0x1F, + 0x1B, 0x1F, 0x33, 0x16, 0x4E, 0x24, 0x4A, 0x5B, 0x4C, 0x52, 0x5B, 0x00, + 0x01, 0xFC, 0x87, 0x04, 0xA2, 0xFE, 0x86, 0x06, 0xE0, 0x00, 0x21, 0x00, + 0x00, 0x41, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x15, 0x21, 0x35, 0x21, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x15, 0x06, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFD, 0x9D, + 0x58, 0x7C, 0x42, 0x42, 0x75, 0x4E, 0x7A, 0x80, 0xFE, 0x46, 0x01, 0x28, + 0x32, 0x36, 0x3B, 0x34, 0x01, 0x48, 0x42, 0x2F, 0x43, 0x16, 0x4B, 0x1A, + 0x6A, 0x04, 0xA2, 0x01, 0x48, 0x7A, 0x4A, 0x13, 0x57, 0x80, 0x47, 0x98, + 0x79, 0x3A, 0x60, 0x0A, 0x2F, 0x39, 0x5B, 0x4A, 0x13, 0x45, 0x4F, 0x21, + 0x1E, 0x51, 0x23, 0x43, 0x00, 0x02, 0xFD, 0x3A, 0x04, 0xB2, 0xFD, 0xE5, + 0x07, 0xB0, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, + 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, + 0xFD, 0xDC, 0x96, 0x0C, 0x01, 0x2E, 0x28, 0x26, 0x2D, 0x01, 0x01, 0x2D, + 0x28, 0x27, 0x2D, 0x06, 0xDA, 0xFD, 0xD8, 0x02, 0x28, 0x89, 0x21, 0x2C, + 0x2C, 0x21, 0x21, 0x2C, 0x2C, 0x00, 0x02, 0xFC, 0x7C, 0x04, 0xA2, 0xFE, + 0x95, 0x06, 0xE0, 0x00, 0x0D, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x26, 0x26, + 0x27, 0x35, 0x36, 0x36, 0x33, 0x32, 0x16, 0x07, 0x15, 0x16, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, + 0x16, 0xFD, 0x89, 0x7B, 0x91, 0x01, 0x01, 0x91, 0x7B, 0x7E, 0x8E, 0x01, + 0x01, 0x8E, 0x7E, 0x40, 0x37, 0x01, 0x36, 0x40, 0x3F, 0x38, 0x38, 0x04, + 0xA2, 0x01, 0x9B, 0x7C, 0x0C, 0x7C, 0x9E, 0x9E, 0x7C, 0x0C, 0x79, 0x9E, + 0x78, 0x5A, 0x45, 0x0C, 0x46, 0x5B, 0x5B, 0x46, 0x0C, 0x46, 0x59, 0x00, + 0x02, 0xFC, 0x91, 0x04, 0xA8, 0xFE, 0x7A, 0x06, 0xDA, 0x00, 0x04, 0x00, + 0x14, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x23, 0x03, 0x37, 0x16, 0x06, + 0x23, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0xFD, 0xE2, 0x98, 0x7C, 0x0A, 0x33, 0x01, 0x6A, 0x6F, 0x56, 0x68, 0x95, + 0x2D, 0x2A, 0x42, 0x35, 0x05, 0x35, 0x01, 0xA5, 0xFD, 0xD8, 0x01, 0x00, + 0x02, 0x75, 0x97, 0x6B, 0x79, 0x01, 0x4E, 0xFE, 0xB2, 0x37, 0x35, 0x50, + 0x00, 0x01, 0xFC, 0x88, 0x04, 0xA2, 0xFE, 0x7B, 0x06, 0xE0, 0x00, 0x1E, + 0x00, 0x00, 0x41, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0xFD, 0x8F, 0x59, 0x75, 0x39, + 0x82, 0x85, 0x6F, 0x7B, 0x02, 0x8D, 0x01, 0x30, 0x30, 0x29, 0x31, 0x15, + 0x01, 0x14, 0x31, 0x29, 0x2A, 0x34, 0x03, 0x8D, 0x02, 0x88, 0x04, 0xA2, + 0x01, 0x4C, 0x7F, 0x4C, 0x10, 0x73, 0xA3, 0x7A, 0x59, 0x22, 0x38, 0x2C, + 0x48, 0x29, 0x10, 0x2B, 0x48, 0x2C, 0x2A, 0x23, 0x54, 0x71, 0x00, 0x03, + 0xFC, 0x7E, 0x04, 0xA4, 0xFE, 0x85, 0x07, 0xC7, 0x00, 0x04, 0x00, 0x13, + 0x00, 0x21, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x23, 0x07, 0x26, 0x26, + 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x0E, 0x02, 0x27, + 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x16, + 0x16, 0xFD, 0xED, 0x98, 0x83, 0xA3, 0x69, 0x78, 0x77, 0x6A, 0x69, 0x68, + 0x0C, 0x08, 0x33, 0x5C, 0x22, 0x35, 0x3D, 0x09, 0x06, 0x40, 0x35, 0x38, + 0x38, 0x01, 0x36, 0x05, 0x25, 0x02, 0xA2, 0xFC, 0xEB, 0x0E, 0x01, 0x9F, + 0x78, 0x0B, 0x7D, 0x9C, 0x91, 0x76, 0x2F, 0x4D, 0x75, 0x43, 0x78, 0x01, + 0x42, 0x3A, 0x4D, 0x40, 0x43, 0x5C, 0x47, 0x0B, 0x46, 0x58, 0x00, 0x02, + 0xFC, 0x91, 0x04, 0xB2, 0xFE, 0x7A, 0x07, 0xC7, 0x00, 0x03, 0x00, 0x13, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x23, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x11, 0x23, 0x11, 0x36, 0x26, 0x23, 0x22, 0x06, 0xFD, 0x26, + 0x95, 0x81, 0x2B, 0x6B, 0x68, 0x57, 0x69, 0x98, 0x01, 0x28, 0x31, 0x43, + 0x34, 0x07, 0xC7, 0xFC, 0xEB, 0x03, 0x15, 0xFE, 0x0D, 0x74, 0x98, 0x71, + 0x80, 0xFE, 0xC3, 0x01, 0x3D, 0x3C, 0x3B, 0x52, 0x00, 0x03, 0xFB, 0xE5, + 0x04, 0xB2, 0xFF, 0x1F, 0x06, 0xE0, 0x00, 0x04, 0x00, 0x14, 0x00, 0x24, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x05, + 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0xFC, 0x7C, 0x97, 0x79, 0x0C, 0x34, 0x6A, 0x6D, 0x58, + 0x68, 0x95, 0x2B, 0x2B, 0x42, 0x36, 0x01, 0x53, 0x36, 0x02, 0x68, 0x6F, + 0x57, 0x68, 0x97, 0x29, 0x2B, 0x43, 0x35, 0x06, 0x57, 0xFE, 0x5B, 0x02, + 0x28, 0xFE, 0xFA, 0x74, 0x98, 0x6D, 0x7A, 0xFE, 0xB9, 0x01, 0x47, 0x39, + 0x34, 0x4F, 0x43, 0x72, 0x9A, 0x6E, 0x7A, 0xFE, 0xBA, 0x01, 0x47, 0x38, + 0x35, 0x50, 0x00, 0x02, 0xFD, 0x0B, 0x04, 0xB2, 0xFE, 0x48, 0x06, 0xE0, + 0x00, 0x04, 0x00, 0x11, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x17, + 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, + 0xFD, 0xA2, 0x97, 0x7C, 0xC1, 0x0C, 0x21, 0x12, 0x3A, 0x3E, 0x34, 0x62, + 0x5A, 0x1B, 0x06, 0x57, 0xFE, 0x5B, 0x02, 0x28, 0x01, 0x90, 0x06, 0x08, + 0x42, 0x41, 0x73, 0x99, 0x00, 0x02, 0x00, 0x28, 0x04, 0xAB, 0x01, 0x7B, + 0x07, 0x66, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x37, 0x33, 0x11, 0x14, 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, + 0x22, 0x26, 0x35, 0x01, 0x7B, 0xFE, 0xAD, 0x5A, 0x97, 0x34, 0x0E, 0x19, + 0x06, 0x0C, 0x2E, 0x1D, 0x52, 0x4F, 0x06, 0xE0, 0x73, 0x73, 0x86, 0xFE, + 0x04, 0x45, 0x03, 0x02, 0x77, 0x03, 0x05, 0x60, 0x5B, 0x00, 0x02, 0xFC, + 0x7E, 0x04, 0xB2, 0xFE, 0x8F, 0x06, 0xDD, 0x00, 0x04, 0x00, 0x09, 0x00, + 0x00, 0x41, 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x33, 0x13, 0x17, 0xFD, + 0x69, 0x28, 0x5C, 0xA2, 0xC2, 0x8D, 0xC2, 0x9F, 0x60, 0x26, 0x04, 0xB2, + 0xD6, 0x01, 0x55, 0xFD, 0xD5, 0x02, 0x2B, 0xFE, 0xAB, 0xD6, 0x00, 0x01, + 0xFC, 0x9A, 0x04, 0xB2, 0xFE, 0xAC, 0x06, 0xDD, 0x00, 0x0B, 0x00, 0x00, + 0x41, 0x17, 0x37, 0x33, 0x03, 0x13, 0x23, 0x27, 0x07, 0x23, 0x13, 0x03, + 0xFD, 0x47, 0x5B, 0x5C, 0xA8, 0xA3, 0xA9, 0xA7, 0x63, 0x61, 0xA7, 0xA8, + 0xA3, 0x06, 0xDD, 0xA2, 0xA2, 0xFE, 0xEF, 0xFE, 0xE6, 0xA9, 0xA9, 0x01, + 0x1A, 0x01, 0x11, 0x00, 0x02, 0xFD, 0x0A, 0xFD, 0xDA, 0xFE, 0x45, 0xFF, + 0x86, 0x00, 0x04, 0x00, 0x12, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, + 0x37, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x16, 0xFD, 0x9F, 0x95, 0x7B, 0xC0, 0x0D, 0x1F, 0x12, 0x39, 0x3E, + 0x36, 0x01, 0x62, 0x5A, 0x0E, 0x19, 0xFE, 0xFD, 0xFE, 0xDD, 0x01, 0xA6, + 0x01, 0x90, 0x06, 0x07, 0x40, 0x44, 0x74, 0x98, 0x01, 0x00, 0x02, 0xFB, + 0xF2, 0x04, 0xA7, 0xFE, 0xF7, 0x05, 0x6C, 0x00, 0x0E, 0x00, 0x1D, 0x00, + 0x00, 0x41, 0x33, 0x14, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x25, 0x33, 0x16, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0xFD, 0x29, 0x7D, 0x68, 0x65, + 0x44, 0x69, 0x3A, 0x93, 0x2D, 0x27, 0x27, 0x2A, 0x01, 0x34, 0x97, 0x02, + 0x83, 0x66, 0x43, 0x60, 0x31, 0x7B, 0x01, 0x31, 0x27, 0x2A, 0x27, 0x05, + 0x6C, 0x62, 0x63, 0x34, 0x59, 0x38, 0x24, 0x2D, 0x28, 0x29, 0x62, 0x63, + 0x34, 0x59, 0x38, 0x24, 0x2D, 0x29, 0x00, 0x03, 0xFB, 0xDD, 0x04, 0xA2, + 0xFF, 0x2B, 0x06, 0xE2, 0x00, 0x0F, 0x00, 0x25, 0x00, 0x47, 0x00, 0x00, + 0x41, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x15, 0x27, 0x17, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x01, 0x2E, 0x02, 0x35, 0x35, 0x3E, 0x02, 0x33, 0x32, 0x16, + 0x15, 0x15, 0x21, 0x35, 0x21, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFD, 0x2D, + 0x28, 0x29, 0x28, 0x2C, 0x93, 0x82, 0x6A, 0x62, 0x81, 0x87, 0x01, 0x62, + 0x33, 0x37, 0x29, 0x23, 0x2C, 0x4A, 0x07, 0x1C, 0x15, 0x5F, 0x4E, 0x53, + 0x65, 0x82, 0x7C, 0x01, 0x67, 0x56, 0x7D, 0x42, 0x01, 0x41, 0x76, 0x4E, + 0x7B, 0x7D, 0xFE, 0x47, 0x01, 0x27, 0x30, 0x37, 0x3C, 0x32, 0x47, 0x3F, + 0x2A, 0x47, 0x19, 0x4B, 0x1B, 0x70, 0x05, 0xC5, 0x57, 0x28, 0x29, 0x1F, + 0x1F, 0x05, 0x49, 0x65, 0x65, 0x62, 0x4E, 0x2E, 0x57, 0x31, 0x1F, 0x1B, + 0x1F, 0x31, 0x22, 0x4B, 0x2E, 0x4D, 0x5B, 0x4C, 0x52, 0x5B, 0xFE, 0xA7, + 0x01, 0x47, 0x7A, 0x4B, 0x13, 0x57, 0x80, 0x47, 0x98, 0x79, 0x3A, 0x60, + 0x0A, 0x2E, 0x3A, 0x5D, 0x48, 0x13, 0x46, 0x4E, 0x1D, 0x22, 0x51, 0x27, + 0x3F, 0x00, 0x04, 0xFB, 0xD2, 0x04, 0xA2, 0xFF, 0x3B, 0x06, 0xE2, 0x00, + 0x0F, 0x00, 0x25, 0x00, 0x34, 0x00, 0x42, 0x00, 0x00, 0x41, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x15, 0x27, 0x17, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x01, + 0x26, 0x26, 0x35, 0x35, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, 0x15, 0x14, + 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x15, 0x14, 0x16, 0xFD, 0x22, 0x27, 0x29, 0x28, 0x2C, 0x93, 0x01, 0x83, + 0x6A, 0x62, 0x80, 0x86, 0x01, 0x62, 0x34, 0x36, 0x28, 0x23, 0x2C, 0x49, + 0x0B, 0x19, 0x15, 0x5E, 0x4E, 0x53, 0x66, 0x83, 0x7D, 0x01, 0x5E, 0x7B, + 0x92, 0x01, 0x41, 0x78, 0x52, 0x7E, 0x8E, 0x8E, 0x7D, 0x3F, 0x38, 0x01, + 0x37, 0x40, 0x3F, 0x37, 0x37, 0x05, 0xC5, 0x57, 0x28, 0x29, 0x1F, 0x1F, + 0x05, 0x49, 0x65, 0x65, 0x62, 0x4E, 0x2E, 0x57, 0x31, 0x1F, 0x1B, 0x1F, + 0x32, 0x22, 0x4C, 0x2E, 0x4D, 0x5B, 0x4C, 0x52, 0x5B, 0xFE, 0xA7, 0x01, + 0x9B, 0x7C, 0x0C, 0x53, 0x7F, 0x48, 0x9F, 0x7B, 0x0C, 0x7A, 0x9D, 0x78, + 0x59, 0x46, 0x0C, 0x47, 0x5A, 0x5B, 0x46, 0x0C, 0x45, 0x5A, 0x00, 0x03, + 0xFB, 0xC9, 0x04, 0xA7, 0xFE, 0xE7, 0x06, 0xE2, 0x00, 0x04, 0x00, 0x1A, + 0x00, 0x30, 0x00, 0x00, 0x41, 0x13, 0x33, 0x03, 0x23, 0x27, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x15, 0x14, 0x16, 0x17, 0x23, 0x26, 0x26, 0x37, 0x17, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x17, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0xFD, 0xB7, 0x8E, 0xA2, 0xE9, 0x7F, 0x66, + 0x27, 0x2A, 0x27, 0x2D, 0x92, 0x01, 0x83, 0x69, 0x62, 0x81, 0x0A, 0x0B, + 0x98, 0x09, 0x0B, 0x10, 0x01, 0x62, 0x34, 0x36, 0x29, 0x23, 0x2E, 0x47, + 0x1A, 0x12, 0x58, 0x4D, 0x54, 0x65, 0x83, 0x7C, 0x05, 0x76, 0x01, 0x66, + 0xFD, 0xD6, 0x7D, 0xED, 0x28, 0x29, 0x1F, 0x1F, 0x05, 0x49, 0x65, 0x65, + 0x62, 0xE3, 0x28, 0x40, 0x1E, 0x19, 0x42, 0xEE, 0x57, 0x31, 0x1F, 0x1B, + 0x1F, 0x33, 0x16, 0x4E, 0x24, 0x4A, 0x5B, 0x4C, 0x52, 0x5B, 0x00, 0x01, + 0xFC, 0x64, 0x04, 0xA8, 0xFE, 0x93, 0x07, 0xC2, 0x00, 0x27, 0x00, 0x00, + 0x41, 0x37, 0x1E, 0x02, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x36, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x26, 0x26, 0xFD, 0x08, 0x2F, 0x60, 0x9D, 0x5F, 0x4B, 0x7F, 0x4E, + 0x50, 0x7E, 0x49, 0x44, 0x76, 0x4D, 0x3D, 0x66, 0x40, 0x03, 0x42, 0x01, + 0x49, 0x4C, 0x41, 0x3F, 0x41, 0x40, 0x3C, 0x47, 0x4A, 0x70, 0x07, 0x52, + 0x70, 0x15, 0x7E, 0xB9, 0x74, 0x28, 0x5A, 0x8A, 0x4E, 0x43, 0x72, 0x45, + 0x4D, 0x74, 0x40, 0x35, 0x57, 0x33, 0x03, 0x1B, 0x35, 0x50, 0x3F, 0x37, + 0x4A, 0x65, 0x53, 0x29, 0x62, 0x87, 0x54, 0x00, 0x02, 0xFC, 0x64, 0x04, + 0xA8, 0xFE, 0x93, 0x07, 0xC2, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, 0x41, + 0x37, 0x1E, 0x02, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x36, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x34, + 0x26, 0x26, 0x25, 0x05, 0x27, 0x25, 0xFD, 0x08, 0x2F, 0x60, 0x9D, 0x5F, + 0x4B, 0x7F, 0x4E, 0x50, 0x7E, 0x49, 0x44, 0x76, 0x4D, 0x3D, 0x66, 0x40, + 0x03, 0x42, 0x01, 0x49, 0x4C, 0x41, 0x3F, 0x41, 0x40, 0x3C, 0x47, 0x4A, + 0x70, 0x01, 0x36, 0xFE, 0xAE, 0x28, 0x01, 0x53, 0x07, 0x52, 0x70, 0x15, + 0x7E, 0xB9, 0x74, 0x28, 0x5A, 0x8A, 0x4E, 0x43, 0x72, 0x45, 0x4D, 0x74, + 0x40, 0x35, 0x57, 0x33, 0x03, 0x1B, 0x35, 0x50, 0x3F, 0x37, 0x4A, 0x65, + 0x53, 0x29, 0x62, 0x87, 0x54, 0x36, 0xB8, 0x39, 0xBA, 0x00, 0x03, 0xFC, + 0x76, 0x03, 0xDA, 0xFE, 0x88, 0x06, 0xE8, 0x00, 0x11, 0x00, 0x22, 0x00, + 0x30, 0x00, 0x00, 0x41, 0x06, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x11, 0x37, 0x33, 0x11, 0x14, 0x06, 0x06, 0x27, 0x2E, 0x02, + 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, 0x0E, 0x02, + 0x27, 0x16, 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, + 0x06, 0x16, 0xFD, 0x72, 0x37, 0x7F, 0x27, 0x46, 0x1D, 0x4C, 0x28, 0x43, + 0x41, 0x12, 0x86, 0x4B, 0x7E, 0x5D, 0x45, 0x6B, 0x3C, 0x84, 0x68, 0x49, + 0x5B, 0x2F, 0x0A, 0x0A, 0x32, 0x5B, 0x22, 0x3F, 0x37, 0x0C, 0x09, 0x3C, + 0x3D, 0x3D, 0x3C, 0x01, 0x39, 0x03, 0xDB, 0x01, 0x2D, 0x2E, 0x5D, 0x20, + 0x22, 0x3C, 0x38, 0x01, 0x9B, 0x7E, 0xFD, 0xE9, 0x50, 0x69, 0x32, 0xCF, + 0x01, 0x4A, 0x7E, 0x50, 0x0B, 0x7C, 0x9E, 0x46, 0x7D, 0x54, 0x14, 0x4F, + 0x7C, 0x47, 0x78, 0x01, 0x45, 0x39, 0x4D, 0x3F, 0x44, 0x5B, 0x47, 0x0B, + 0x46, 0x5B, 0x00, 0x01, 0xFC, 0x66, 0x04, 0xA8, 0xFE, 0x8B, 0x07, 0x08, + 0x00, 0x20, 0x00, 0x00, 0x41, 0x26, 0x26, 0x27, 0x35, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x35, 0x23, 0x35, 0x21, 0x15, 0x06, + 0x06, 0xFD, 0x7F, 0x7A, 0x9E, 0x01, 0x01, 0x9C, 0x76, 0x76, 0x84, 0x09, + 0x91, 0x09, 0x32, 0x37, 0x2B, 0x38, 0x1A, 0x01, 0x3C, 0x46, 0x32, 0x38, + 0x0C, 0x74, 0x01, 0x0A, 0x18, 0x86, 0x04, 0xA8, 0x01, 0x87, 0x6A, 0x7E, + 0x6B, 0x85, 0x65, 0x5B, 0x29, 0x21, 0x1F, 0x3E, 0x2C, 0x66, 0x3B, 0x49, + 0x0E, 0x0B, 0x4E, 0x6C, 0xF1, 0x1D, 0x3B, 0x00, 0x03, 0xFC, 0x92, 0x04, + 0xB2, 0xFE, 0xA5, 0x07, 0xCE, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0D, 0x00, + 0x00, 0x41, 0x11, 0x23, 0x11, 0x05, 0x03, 0x07, 0x27, 0x37, 0x37, 0x13, + 0x27, 0x37, 0x13, 0xFD, 0x29, 0x97, 0x01, 0xF4, 0xF4, 0x84, 0x29, 0x66, + 0x92, 0x1D, 0xAA, 0x64, 0xF1, 0x07, 0xCE, 0xFC, 0xE4, 0x03, 0x1C, 0xF4, + 0xFE, 0xED, 0x86, 0x73, 0x7C, 0xAA, 0xFD, 0xD8, 0xFF, 0x5A, 0xFE, 0xA7, + 0x00, 0x01, 0xFD, 0x37, 0x04, 0xB2, 0xFD, 0xCC, 0x07, 0xC7, 0x00, 0x03, + 0x00, 0x00, 0x41, 0x33, 0x11, 0x23, 0xFD, 0x37, 0x95, 0x95, 0x07, 0xC7, + 0xFC, 0xEB, 0x00, 0x02, 0xFC, 0xCF, 0x04, 0xB2, 0xFE, 0x67, 0x07, 0x06, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, + 0x23, 0x11, 0xFE, 0x67, 0xFE, 0xD4, 0x29, 0x95, 0x05, 0x2B, 0x79, 0x79, + 0x01, 0xDB, 0xFD, 0xAC, 0x02, 0x54, 0x00, 0x03, 0xFC, 0x20, 0x04, 0xB2, + 0xFE, 0xCF, 0x07, 0x06, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x00, + 0x41, 0x13, 0x33, 0x03, 0x23, 0x03, 0x33, 0x23, 0x11, 0x23, 0x11, 0x01, + 0x11, 0x33, 0x11, 0xFD, 0x77, 0x9F, 0x7D, 0xE3, 0x71, 0xE3, 0x7C, 0x23, + 0x95, 0x02, 0x18, 0x97, 0x05, 0x58, 0x01, 0xAE, 0xFD, 0xAC, 0x02, 0x54, + 0xFD, 0xAC, 0x02, 0x54, 0xFD, 0xAC, 0x02, 0x54, 0xFD, 0xAC, 0x00, 0x02, + 0xFC, 0xA9, 0x04, 0xB2, 0xFE, 0x91, 0x06, 0xE4, 0x00, 0x04, 0x00, 0x14, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x13, 0x07, 0x26, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0xFD, + 0x40, 0x97, 0x7C, 0x09, 0x33, 0x01, 0x6B, 0x6F, 0x56, 0x67, 0x95, 0x2C, + 0x2B, 0x41, 0x36, 0x06, 0x57, 0xFE, 0x5B, 0x02, 0x28, 0xFF, 0x00, 0x02, + 0x75, 0x97, 0x6B, 0x79, 0xFE, 0xB2, 0x01, 0x4E, 0x38, 0x34, 0x4F, 0x00, + 0x03, 0xFC, 0x58, 0x04, 0xB2, 0xFE, 0x8D, 0x07, 0x06, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x07, 0x01, 0x37, 0x31, 0x11, 0x23, + 0x11, 0x21, 0x11, 0x23, 0x11, 0xFE, 0x64, 0x6F, 0xFE, 0x88, 0x72, 0x97, + 0x02, 0x35, 0x98, 0x04, 0xF2, 0x40, 0x02, 0x16, 0x3E, 0xFD, 0xAC, 0x02, + 0x54, 0xFD, 0xAC, 0x02, 0x54, 0x00, 0x02, 0xFC, 0x78, 0x04, 0xB2, 0xFE, + 0x7B, 0x07, 0x06, 0x00, 0x1B, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x23, 0x35, + 0x33, 0x16, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x11, 0x23, 0x11, 0x21, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x02, 0x07, 0x0E, 0x02, 0x27, + 0x37, 0x32, 0x16, 0x16, 0x15, 0x15, 0x1E, 0x02, 0x17, 0x15, 0x23, 0x26, + 0x26, 0x35, 0x35, 0x36, 0x26, 0xFD, 0x9A, 0xB9, 0x97, 0x26, 0x2E, 0x30, + 0x24, 0x69, 0x97, 0x01, 0x00, 0x6C, 0x81, 0x51, 0x4A, 0x04, 0x03, 0x01, + 0x03, 0x0B, 0x06, 0x07, 0x37, 0x30, 0x51, 0x57, 0x20, 0x01, 0x02, 0x09, + 0x07, 0x9B, 0x0B, 0x04, 0x01, 0x30, 0x05, 0x82, 0x79, 0x01, 0x2B, 0x22, + 0x20, 0x26, 0xFE, 0x25, 0x02, 0x54, 0x61, 0x54, 0x3C, 0x54, 0x14, 0x01, + 0x0F, 0x0F, 0x01, 0x03, 0x06, 0x03, 0x01, 0x50, 0x2B, 0x46, 0x29, 0x29, + 0x09, 0x23, 0x21, 0x09, 0x07, 0x0C, 0x44, 0x0D, 0x29, 0x28, 0x22, 0x00, + 0x02, 0xFC, 0xC0, 0x04, 0xB2, 0xFE, 0x5A, 0x06, 0xDD, 0x00, 0x15, 0x00, + 0x1A, 0x00, 0x00, 0x41, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x13, 0x27, 0x37, 0x17, 0x15, 0xFD, 0x06, 0x46, 0x1D, 0x3D, 0x45, 0x29, + 0x53, 0x78, 0x40, 0x65, 0x39, 0x47, 0x46, 0x47, 0x25, 0x1E, 0x1F, 0x35, + 0x9C, 0x92, 0x97, 0x95, 0x06, 0x41, 0x59, 0x15, 0x1D, 0x11, 0x5F, 0x53, + 0x39, 0x51, 0x38, 0x15, 0x53, 0x1D, 0x38, 0x2B, 0x1D, 0x22, 0x14, 0xFE, + 0x60, 0xF5, 0x0A, 0xF9, 0x06, 0x00, 0x01, 0xFC, 0x83, 0x04, 0xA5, 0xFE, + 0x69, 0x06, 0xE3, 0x00, 0x26, 0x00, 0x00, 0x41, 0x34, 0x26, 0x27, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x26, 0x35, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0xFD, 0xD4, + 0x2F, 0x48, 0x51, 0x76, 0x7C, 0x64, 0x6A, 0x86, 0x91, 0x04, 0x2B, 0x30, + 0x23, 0x2A, 0x2E, 0x3D, 0x66, 0x6F, 0x88, 0x66, 0x50, 0x6E, 0x3A, 0x8C, + 0x01, 0x47, 0x28, 0x2B, 0x2A, 0x05, 0x48, 0x17, 0x23, 0x0F, 0x12, 0x4B, + 0x4D, 0x48, 0x60, 0x66, 0x4B, 0x1F, 0x25, 0x1C, 0x1B, 0x19, 0x1D, 0x0D, + 0x17, 0x4C, 0x4C, 0x4D, 0x5B, 0x38, 0x56, 0x2C, 0x2C, 0x21, 0x1E, 0x00, + 0x01, 0xFD, 0x31, 0x04, 0xB2, 0xFE, 0x51, 0x07, 0xD8, 0x00, 0x0F, 0x00, + 0x00, 0x41, 0x23, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0xFD, 0xC7, 0x96, 0x01, 0x74, 0x5A, 0x14, + 0x26, 0x17, 0x0A, 0x09, 0x17, 0x0E, 0x22, 0x30, 0x04, 0xB2, 0x02, 0x61, + 0x60, 0x65, 0x06, 0x04, 0x74, 0x04, 0x02, 0x27, 0x26, 0x00, 0x03, 0xFC, + 0x96, 0x04, 0xB2, 0xFE, 0x62, 0x06, 0xDA, 0x00, 0x03, 0x00, 0x09, 0x00, + 0x0D, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x01, 0x23, 0x35, 0x01, + 0x33, 0x23, 0x15, 0x21, 0x35, 0xFE, 0x62, 0xFE, 0x5C, 0x01, 0x99, 0xFE, + 0x9D, 0x5E, 0x01, 0x68, 0x59, 0x32, 0xFE, 0x77, 0x05, 0x2B, 0x79, 0x79, + 0x01, 0x50, 0xFE, 0x37, 0x60, 0x01, 0xC8, 0x79, 0x79, 0x00, 0x03, 0xFC, + 0x5A, 0x04, 0xA7, 0xFE, 0x9D, 0x06, 0xE5, 0x00, 0x0F, 0x00, 0x1D, 0x00, + 0x2D, 0x00, 0x00, 0x41, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x15, 0x0E, 0x02, 0x27, 0x16, 0x36, 0x37, 0x35, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x16, 0x16, 0x13, 0x33, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x11, + 0xFD, 0x40, 0x6B, 0x7B, 0x7A, 0x6C, 0x43, 0x54, 0x2D, 0x08, 0x08, 0x30, + 0x54, 0x1E, 0x3C, 0x3B, 0x09, 0x07, 0x3D, 0x3C, 0x3C, 0x37, 0x01, 0x34, + 0xB4, 0x87, 0x14, 0x12, 0x08, 0x03, 0x0D, 0x12, 0x27, 0x16, 0x43, 0x44, + 0x04, 0xA8, 0x01, 0x97, 0x76, 0x09, 0x80, 0xA6, 0x4C, 0x7F, 0x4D, 0x16, + 0x53, 0x79, 0x42, 0x76, 0x01, 0x4E, 0x41, 0x23, 0x44, 0x58, 0x62, 0x4B, + 0x09, 0x43, 0x55, 0x01, 0xBB, 0xFE, 0x84, 0x20, 0x20, 0x04, 0x6B, 0x0B, + 0x04, 0x5D, 0x5A, 0x01, 0x03, 0x00, 0x02, 0xFC, 0x6B, 0x03, 0xE6, 0xFE, + 0x8B, 0x07, 0xA3, 0x00, 0x16, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x37, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x13, 0x36, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x23, 0x11, 0x3E, 0x02, 0xFD, 0x4A, 0x49, 0x75, + 0x83, 0x83, 0x73, 0x36, 0x6E, 0x49, 0x36, 0x03, 0x54, 0x48, 0x3A, 0x3F, + 0x44, 0x34, 0x34, 0x27, 0x69, 0x8A, 0x82, 0x65, 0x33, 0x26, 0x31, 0x34, + 0x38, 0x2F, 0x28, 0x44, 0x97, 0x01, 0x4A, 0x78, 0x06, 0x4F, 0x6E, 0x5A, + 0x6A, 0x75, 0x29, 0x59, 0x47, 0x0F, 0x25, 0x3F, 0x3A, 0x30, 0x43, 0x35, + 0x01, 0xA4, 0x01, 0x66, 0x5E, 0x57, 0x68, 0x4C, 0x30, 0x35, 0x28, 0x35, + 0x37, 0x3F, 0xFD, 0x2E, 0x02, 0xD2, 0x4F, 0x68, 0x34, 0x00, 0x08, 0xF9, + 0xC0, 0xFE, 0xC2, 0x01, 0x80, 0x05, 0xAE, 0x00, 0x0D, 0x00, 0x1B, 0x00, + 0x29, 0x00, 0x37, 0x00, 0x45, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6F, 0x00, + 0x00, 0x41, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x01, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, + 0x36, 0x26, 0x23, 0x22, 0x06, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x23, 0x36, 0x26, 0x23, 0x22, 0x06, 0x03, 0x23, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x01, 0x23, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x01, + 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x03, 0x23, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x13, 0x23, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, + 0x26, 0x26, 0x23, 0x22, 0x06, 0xFD, 0x2D, 0x74, 0x01, 0x73, 0x64, 0x62, + 0x73, 0x71, 0x2E, 0x36, 0x37, 0x2D, 0x02, 0x5C, 0x75, 0x73, 0x63, 0x64, + 0x75, 0x74, 0x01, 0x2D, 0x39, 0x35, 0x2C, 0xBE, 0x75, 0x01, 0x74, 0x62, + 0x63, 0x74, 0x73, 0x01, 0x2E, 0x37, 0x34, 0x2E, 0xCA, 0x73, 0x74, 0x64, + 0x61, 0x74, 0x70, 0x01, 0x2E, 0x36, 0x36, 0x2F, 0xFD, 0xB6, 0x74, 0x73, + 0x63, 0x63, 0x74, 0x72, 0x01, 0x2D, 0x37, 0x35, 0x2D, 0xFD, 0xB5, 0x75, + 0x74, 0x63, 0x63, 0x75, 0x73, 0x01, 0x2C, 0x38, 0x35, 0x2D, 0xB5, 0x72, + 0x01, 0x73, 0x62, 0x65, 0x74, 0x73, 0x2E, 0x38, 0x35, 0x2D, 0xA9, 0x72, + 0x01, 0x74, 0x61, 0x63, 0x75, 0x73, 0x01, 0x2C, 0x38, 0x35, 0x2C, 0x04, + 0xF4, 0x51, 0x69, 0x69, 0x51, 0x27, 0x3D, 0x3D, 0xFE, 0xC3, 0x53, 0x69, + 0x69, 0x53, 0x28, 0x3C, 0x3C, 0xFD, 0xE2, 0x51, 0x69, 0x69, 0x51, 0x28, + 0x3C, 0x3C, 0xFD, 0xD0, 0x51, 0x6D, 0x6B, 0x53, 0x27, 0x3F, 0x3F, 0xFE, + 0xBB, 0x53, 0x6B, 0x6B, 0x53, 0x28, 0x3E, 0x3F, 0x04, 0xF5, 0x53, 0x69, + 0x69, 0x53, 0x28, 0x3C, 0x3C, 0xFD, 0xE2, 0x51, 0x69, 0x69, 0x51, 0x27, + 0x3D, 0x3D, 0xFD, 0xD1, 0x52, 0x6C, 0x6C, 0x52, 0x27, 0x3F, 0x40, 0x00, + 0x08, 0xF9, 0xF6, 0xFE, 0x62, 0x01, 0x59, 0x05, 0xC6, 0x00, 0x04, 0x00, + 0x09, 0x00, 0x0E, 0x00, 0x13, 0x00, 0x18, 0x00, 0x1D, 0x00, 0x22, 0x00, + 0x27, 0x00, 0x00, 0x41, 0x27, 0x13, 0x33, 0x03, 0x05, 0x27, 0x37, 0x25, + 0x17, 0x13, 0x25, 0x35, 0x37, 0x05, 0x01, 0x03, 0x37, 0x33, 0x13, 0x05, + 0x13, 0x33, 0x17, 0x03, 0x01, 0x27, 0x25, 0x17, 0x07, 0x01, 0x25, 0x35, + 0x05, 0x15, 0x13, 0x03, 0x37, 0x13, 0x07, 0xFD, 0x45, 0x0C, 0x7C, 0x62, + 0x48, 0x01, 0x97, 0x64, 0x02, 0x01, 0x4A, 0x44, 0xC7, 0xFE, 0x9F, 0x0F, + 0x01, 0x52, 0xFE, 0x9E, 0xCA, 0x62, 0x12, 0x99, 0xFC, 0xFF, 0x47, 0x8B, + 0x0C, 0x7D, 0xFD, 0x68, 0x47, 0x01, 0x2C, 0x63, 0x01, 0xFE, 0xFF, 0xFE, + 0xAE, 0x01, 0x60, 0x55, 0x97, 0x42, 0xC9, 0x64, 0x04, 0x66, 0x0E, 0x01, + 0x52, 0xFE, 0xA0, 0xDE, 0x64, 0x0E, 0x9A, 0x46, 0xFD, 0x58, 0x46, 0x8C, + 0x0A, 0x7A, 0xFD, 0x0A, 0x01, 0x2C, 0x62, 0xFE, 0xBA, 0xF8, 0x01, 0x60, + 0x0E, 0xFE, 0xAE, 0x01, 0x0A, 0x42, 0xCA, 0x64, 0x0E, 0x01, 0xA0, 0x7A, + 0x62, 0x44, 0x8C, 0x01, 0xAC, 0x01, 0x48, 0x42, 0xFE, 0xD6, 0x60, 0x00, + 0x01, 0xFC, 0x23, 0x04, 0xA2, 0xFF, 0x01, 0x05, 0xFE, 0x00, 0x07, 0x00, + 0x00, 0x43, 0x21, 0x15, 0x23, 0x37, 0x21, 0x27, 0x33, 0xFF, 0xFD, 0xD6, + 0xB4, 0x01, 0x02, 0x2C, 0x01, 0xB2, 0x05, 0x20, 0x7E, 0xF0, 0x6C, 0x00, + 0x01, 0xFC, 0x2E, 0x05, 0x18, 0xFF, 0x36, 0x06, 0x14, 0x00, 0x15, 0x00, + 0x00, 0x41, 0x33, 0x32, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, 0x15, 0x23, + 0x35, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x23, 0x23, 0xFC, 0x2E, 0x1E, + 0x52, 0x85, 0x74, 0x70, 0x3C, 0x71, 0x82, 0x8B, 0x01, 0x3C, 0x2F, 0x2B, + 0x65, 0x77, 0x91, 0x59, 0x20, 0x05, 0x9E, 0x23, 0x2F, 0x24, 0x69, 0x6D, + 0x26, 0x10, 0x36, 0x30, 0x24, 0x2E, 0x24, 0x00, 0x01, 0xFD, 0x4E, 0x05, + 0x18, 0xFE, 0x4A, 0x06, 0x67, 0x00, 0x05, 0x00, 0x00, 0x41, 0x27, 0x35, + 0x33, 0x07, 0x17, 0xFD, 0xF7, 0xA9, 0xC2, 0x03, 0x3D, 0x05, 0x18, 0xC6, + 0x89, 0x9B, 0x6F, 0x00, 0x01, 0xFD, 0x6F, 0x05, 0x18, 0xFE, 0x6A, 0x06, + 0x67, 0x00, 0x05, 0x00, 0x00, 0x41, 0x07, 0x27, 0x37, 0x27, 0x33, 0xFE, + 0x6A, 0xA8, 0x53, 0x3C, 0x03, 0xC2, 0x05, 0xDE, 0xC6, 0x45, 0x6F, 0x9B, + 0x00, 0x01, 0xFB, 0xDE, 0x05, 0x18, 0xFF, 0x22, 0x06, 0x14, 0x00, 0x15, + 0x00, 0x00, 0x41, 0x33, 0x15, 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, + 0x15, 0x15, 0x23, 0x35, 0x34, 0x36, 0x33, 0x32, 0x1E, 0x02, 0xFE, 0x7F, + 0xA3, 0xB2, 0x34, 0x50, 0x4F, 0x65, 0x49, 0x30, 0x56, 0x8B, 0x98, 0x84, + 0x50, 0x71, 0x54, 0x48, 0x05, 0x9E, 0x86, 0x23, 0x2F, 0x24, 0x30, 0x36, + 0x10, 0x26, 0x62, 0x74, 0x24, 0x2F, 0x23, 0x00, 0x04, 0xFC, 0x25, 0x04, + 0xA4, 0xFF, 0x11, 0x06, 0xE2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x26, 0x00, + 0x2A, 0x00, 0x00, 0x41, 0x15, 0x23, 0x35, 0x37, 0x11, 0x23, 0x11, 0x01, + 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x25, 0x35, 0x33, 0x15, 0xFD, 0x76, + 0xE3, 0x27, 0x95, 0x02, 0x04, 0x7B, 0x8E, 0x3F, 0x78, 0x53, 0x3C, 0x69, + 0x41, 0x01, 0x8C, 0x01, 0x31, 0x29, 0x2D, 0x33, 0x15, 0x34, 0x40, 0x2D, + 0x2E, 0x01, 0x8C, 0x01, 0x84, 0xFE, 0xF2, 0xDB, 0x06, 0x01, 0x74, 0x74, + 0xD9, 0xFD, 0xD8, 0x02, 0x28, 0xFD, 0xCA, 0x01, 0x9B, 0x7B, 0x11, 0x50, + 0x7E, 0x48, 0x2E, 0x58, 0x3F, 0x25, 0x28, 0x2C, 0x48, 0x2B, 0x11, 0x43, + 0x5A, 0x32, 0x2A, 0x61, 0x73, 0xF0, 0x5F, 0x5F, 0xFF, 0xFF, 0xFC, 0x41, + 0x04, 0xDD, 0xFE, 0xCD, 0x05, 0xD6, 0x04, 0x07, 0x06, 0xEC, 0xFB, 0x96, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x28, 0x03, 0x72, 0x01, 0x71, 0x04, 0xE0, + 0x04, 0x07, 0x06, 0xE7, 0xFF, 0xF3, 0x05, 0x56, 0x00, 0x01, 0x00, 0x50, + 0x04, 0xAA, 0x01, 0x71, 0x05, 0xF5, 0x00, 0x11, 0x00, 0x00, 0x53, 0x23, + 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x72, 0x0C, 0x10, 0x31, 0x33, 0x30, 0x2F, 0x2B, + 0x22, 0x77, 0x88, 0x88, 0x04, 0xAA, 0x55, 0x1E, 0x1E, 0x1A, 0x1B, 0x85, + 0x59, 0x4C, 0x4B, 0x5B, 0x00, 0x01, 0x00, 0x50, 0x04, 0xAA, 0x01, 0x71, + 0x05, 0xF5, 0x00, 0x11, 0x00, 0x00, 0x53, 0x23, 0x35, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x72, 0x0C, 0x10, 0x31, 0x33, 0x30, 0x2F, 0x2B, 0x22, 0x77, 0x88, 0x88, + 0x04, 0xAA, 0x55, 0x1E, 0x1E, 0x1A, 0x1B, 0x85, 0x59, 0x4C, 0x4B, 0x5B, + 0x00, 0x01, 0x00, 0x50, 0x04, 0xAA, 0x01, 0x71, 0x05, 0xF5, 0x00, 0x11, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x01, 0x4F, 0x77, 0x88, + 0x88, 0x77, 0x22, 0x2C, 0x2E, 0x31, 0x33, 0x32, 0x10, 0x04, 0xAA, 0x5B, + 0x4B, 0x4C, 0x59, 0x85, 0x1B, 0x1A, 0x1E, 0x1E, 0x55, 0x00, 0x02, 0x00, + 0x50, 0x04, 0xAA, 0x02, 0x7B, 0x05, 0xF5, 0x00, 0x11, 0x00, 0x15, 0x00, + 0x00, 0x53, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, + 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x25, 0x23, 0x03, 0x33, 0x72, + 0x0C, 0x10, 0x31, 0x33, 0x30, 0x2F, 0x2B, 0x22, 0x77, 0x88, 0x88, 0x01, + 0x92, 0x90, 0x66, 0xD5, 0x04, 0xAA, 0x55, 0x1E, 0x1E, 0x1A, 0x1B, 0x85, + 0x59, 0x4C, 0x4B, 0x5B, 0x04, 0x01, 0x44, 0x00, 0x02, 0x00, 0x50, 0x04, + 0xAA, 0x02, 0x9F, 0x05, 0xF5, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x33, 0x33, 0x15, 0x25, 0x23, 0x03, 0x33, 0x01, 0x4F, 0x77, + 0x88, 0x88, 0x77, 0x22, 0x2C, 0x2E, 0x31, 0x33, 0x32, 0x10, 0x01, 0x44, + 0x91, 0x65, 0xD4, 0x04, 0xAA, 0x5B, 0x4B, 0x4C, 0x59, 0x85, 0x1B, 0x1A, + 0x1E, 0x1E, 0x55, 0x04, 0x01, 0x44, 0x00, 0x02, 0x00, 0x50, 0x04, 0xAA, + 0x02, 0xBF, 0x05, 0xF5, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x53, 0x23, + 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x37, 0x13, 0x33, 0x03, 0x72, 0x0C, 0x10, 0x31, + 0x33, 0x30, 0x2F, 0x2B, 0x22, 0x77, 0x88, 0x88, 0xE0, 0x22, 0xD4, 0x65, + 0x04, 0xAA, 0x55, 0x1E, 0x1E, 0x1A, 0x1B, 0x85, 0x59, 0x4C, 0x4B, 0x5B, + 0x04, 0x01, 0x44, 0xFE, 0xBC, 0x00, 0x02, 0x00, 0x50, 0x04, 0xAA, 0x02, + 0xCC, 0x05, 0xF5, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x33, 0x15, 0x37, 0x13, 0x33, 0x03, 0x01, 0x4F, 0x77, 0x88, 0x88, + 0x77, 0x22, 0x2C, 0x2E, 0x31, 0x33, 0x32, 0x10, 0x7B, 0x21, 0xD5, 0x66, + 0x04, 0xAA, 0x5B, 0x4B, 0x4C, 0x59, 0x85, 0x1B, 0x1A, 0x1E, 0x1E, 0x55, + 0x04, 0x01, 0x44, 0xFE, 0xBC, 0x00, 0x02, 0x00, 0x00, 0x04, 0xAA, 0x02, + 0x77, 0x07, 0x2F, 0x00, 0x11, 0x00, 0x29, 0x00, 0x00, 0x53, 0x23, 0x35, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x13, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, + 0x06, 0xCD, 0x0C, 0x10, 0x31, 0x34, 0x31, 0x2F, 0x2B, 0x22, 0x77, 0x88, + 0x88, 0x7C, 0x2A, 0x47, 0x3C, 0x32, 0x16, 0x1C, 0x1C, 0x02, 0x91, 0x03, + 0x60, 0x55, 0x2B, 0x45, 0x39, 0x32, 0x19, 0x1D, 0x1C, 0x04, 0x8E, 0x03, + 0x64, 0x04, 0xAA, 0x55, 0x1F, 0x1D, 0x1A, 0x1B, 0x85, 0x59, 0x4C, 0x4B, + 0x5B, 0x01, 0x98, 0x1B, 0x25, 0x1B, 0x33, 0x23, 0x6B, 0x7D, 0x1C, 0x24, + 0x1C, 0x2B, 0x2C, 0x6D, 0x7B, 0x00, 0x02, 0x00, 0x00, 0x04, 0xAA, 0x02, + 0x77, 0x07, 0x2F, 0x00, 0x11, 0x00, 0x29, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x33, 0x15, 0x13, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, + 0x06, 0x01, 0xAA, 0x77, 0x88, 0x88, 0x77, 0x22, 0x2B, 0x2F, 0x31, 0x33, + 0x32, 0x10, 0x0A, 0x2A, 0x47, 0x3C, 0x32, 0x16, 0x1C, 0x1C, 0x02, 0x91, + 0x03, 0x60, 0x55, 0x2B, 0x45, 0x39, 0x32, 0x19, 0x1D, 0x1C, 0x04, 0x8E, + 0x03, 0x64, 0x04, 0xAA, 0x5B, 0x4B, 0x4C, 0x59, 0x85, 0x1B, 0x1A, 0x1D, + 0x1F, 0x55, 0x01, 0x98, 0x1B, 0x25, 0x1B, 0x33, 0x23, 0x6B, 0x7D, 0x1C, + 0x24, 0x1C, 0x2B, 0x2C, 0x6D, 0x7B, 0x00, 0x03, 0x00, 0xE8, 0x04, 0xDA, + 0x04, 0x69, 0x06, 0x8C, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x25, 0x23, 0x03, 0x33, 0x01, 0x72, 0x39, 0x51, 0x51, 0x39, 0x39, 0x51, + 0x51, 0x02, 0x35, 0x39, 0x51, 0x51, 0x39, 0x39, 0x50, 0x50, 0xFE, 0xEC, + 0x9E, 0x6F, 0xE9, 0x04, 0xDA, 0x50, 0x38, 0x37, 0x50, 0x50, 0x38, 0x37, + 0x50, 0x50, 0x38, 0x37, 0x50, 0x50, 0x38, 0x37, 0x50, 0x7E, 0x01, 0x34, + 0xFF, 0xFF, 0x00, 0xE8, 0x04, 0xDA, 0x04, 0x69, 0x06, 0x8C, 0x06, 0x06, + 0x06, 0xE4, 0x00, 0x00, 0x00, 0x03, 0x00, 0x6D, 0x04, 0xAF, 0x03, 0x43, + 0x07, 0x01, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x22, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x02, 0xB2, 0x3D, 0x54, + 0x54, 0x3D, 0x3E, 0x53, 0x53, 0xFE, 0x0E, 0x3D, 0x54, 0x54, 0x3D, 0x3E, + 0x53, 0x53, 0x01, 0x35, 0x2B, 0x4A, 0x3D, 0x34, 0x16, 0x1D, 0x1D, 0x02, + 0x97, 0x03, 0x65, 0x57, 0x2D, 0x47, 0x3A, 0x34, 0x19, 0x1F, 0x1D, 0x04, + 0x93, 0x03, 0x68, 0x04, 0xAF, 0x52, 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3B, + 0x52, 0x52, 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3B, 0x52, 0x01, 0x67, 0x1B, + 0x24, 0x1B, 0x32, 0x24, 0x6B, 0x7C, 0x1C, 0x24, 0x1B, 0x2A, 0x2C, 0x6C, + 0x7A, 0x00, 0x01, 0x00, 0x28, 0x04, 0xB4, 0x01, 0x35, 0x05, 0xE8, 0x00, + 0x03, 0x00, 0x00, 0x41, 0x23, 0x03, 0x33, 0x01, 0x35, 0x9E, 0x6F, 0xE9, + 0x04, 0xB4, 0x01, 0x34, 0xFF, 0xFF, 0x00, 0xB0, 0x04, 0xB4, 0x01, 0xBD, + 0x05, 0xE8, 0x06, 0x06, 0x0A, 0xF3, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xAB, + 0x04, 0xDD, 0x03, 0x38, 0x05, 0xD6, 0x04, 0x06, 0x06, 0xEC, 0x00, 0x00, + 0x00, 0x02, 0x00, 0xE8, 0x04, 0xCE, 0x03, 0xBE, 0x05, 0xE8, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x03, 0x2D, 0x3D, 0x54, 0x54, 0x3D, 0x3E, 0x53, + 0x53, 0xFE, 0x0E, 0x3D, 0x54, 0x54, 0x3D, 0x3E, 0x53, 0x53, 0x04, 0xCE, + 0x52, 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3C, 0x51, 0x52, 0x3B, 0x3C, 0x51, + 0x51, 0x3C, 0x3C, 0x51, 0x00, 0x01, 0x00, 0x6A, 0x04, 0xCB, 0x01, 0x98, + 0x05, 0xE9, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x01, 0x40, 0x57, 0x57, 0x3F, + 0x41, 0x57, 0x57, 0x04, 0xCB, 0x53, 0x3C, 0x3D, 0x52, 0x52, 0x3D, 0x3C, + 0x53, 0x00, 0x01, 0x00, 0x44, 0x04, 0xC3, 0x03, 0x07, 0x05, 0xE8, 0x00, + 0x08, 0x00, 0x00, 0x41, 0x23, 0x35, 0x13, 0x33, 0x13, 0x15, 0x23, 0x27, + 0x01, 0x1C, 0xD8, 0xF5, 0xD5, 0xF9, 0xD9, 0x8A, 0x04, 0xC3, 0x02, 0x01, + 0x23, 0xFE, 0xDD, 0x02, 0xAA, 0x00, 0x01, 0x00, 0x44, 0x04, 0xC3, 0x03, + 0x07, 0x05, 0xE8, 0x00, 0x08, 0x00, 0x00, 0x41, 0x17, 0x37, 0x33, 0x15, + 0x03, 0x23, 0x03, 0x35, 0x01, 0x1C, 0x88, 0x8A, 0xD9, 0xF9, 0xD5, 0xF5, + 0x05, 0xE8, 0xAB, 0xAB, 0x03, 0xFE, 0xDE, 0x01, 0x22, 0x03, 0x00, 0x01, + 0x00, 0x67, 0x04, 0xB9, 0x02, 0xEF, 0x05, 0xE5, 0x00, 0x0F, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x33, 0x14, 0x06, 0x06, 0x01, 0xAB, 0x5B, 0x93, 0x56, 0xA1, 0x5C, 0x47, + 0x47, 0x5C, 0xA1, 0x55, 0x93, 0x04, 0xB9, 0x50, 0x88, 0x54, 0x42, 0x55, + 0x55, 0x42, 0x54, 0x88, 0x50, 0x00, 0x02, 0x00, 0x58, 0x04, 0x82, 0x02, + 0x54, 0x06, 0x61, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x01, 0x56, 0x47, 0x73, 0x44, 0x44, 0x73, 0x47, 0x48, 0x73, 0x43, + 0x43, 0x73, 0x48, 0x2F, 0x3E, 0x3E, 0x2F, 0x2D, 0x40, 0x40, 0x04, 0x82, + 0x3F, 0x6D, 0x44, 0x43, 0x6C, 0x40, 0x40, 0x6C, 0x44, 0x43, 0x6C, 0x40, + 0x82, 0x40, 0x2E, 0x2D, 0x40, 0x3F, 0x2E, 0x2E, 0x40, 0x00, 0x01, 0x00, + 0x68, 0x04, 0xB4, 0x01, 0xCB, 0x05, 0xE8, 0x00, 0x0D, 0x00, 0x00, 0x41, + 0x23, 0x37, 0x36, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x06, + 0x07, 0x01, 0x6A, 0xA6, 0x49, 0x08, 0x08, 0x10, 0x95, 0x9A, 0x4B, 0x5A, + 0x24, 0x0F, 0x1D, 0x04, 0xB4, 0x87, 0x0E, 0x0E, 0x91, 0x28, 0x42, 0x51, + 0x2A, 0x00, 0x01, 0x01, 0xBF, 0x01, 0x93, 0x02, 0xFF, 0x03, 0xDC, 0x00, + 0x0A, 0x00, 0x00, 0x41, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, + 0x35, 0x35, 0x02, 0xFF, 0x30, 0x53, 0x35, 0x88, 0x28, 0x2F, 0x03, 0xDC, + 0xC1, 0x43, 0x92, 0x84, 0x2F, 0x4E, 0x43, 0x98, 0x5E, 0xC2, 0x00, 0x01, + 0x01, 0xBF, 0x01, 0x93, 0x02, 0xFF, 0x03, 0xDC, 0x00, 0x0A, 0x00, 0x00, + 0x41, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x35, 0x35, 0x02, + 0xFF, 0x30, 0x53, 0x35, 0x88, 0x28, 0x2F, 0x03, 0xDC, 0xC1, 0x43, 0x92, + 0x84, 0x2F, 0x4E, 0x43, 0x98, 0x5E, 0xC2, 0x00, 0x01, 0xFE, 0x2D, 0x03, + 0xE4, 0xFF, 0x6E, 0x05, 0xC9, 0x00, 0x0B, 0x00, 0x00, 0x43, 0x14, 0x0E, + 0x02, 0x07, 0x27, 0x3E, 0x03, 0x35, 0x92, 0x13, 0x2A, 0x47, 0x35, 0x88, + 0x17, 0x21, 0x15, 0x0B, 0x05, 0xC9, 0x2D, 0x7E, 0x8B, 0x81, 0x2E, 0x4E, + 0x2D, 0x51, 0x5B, 0x72, 0x4C, 0x00, 0x01, 0x00, 0xC3, 0xFE, 0x5E, 0x02, + 0x33, 0x00, 0x2D, 0x00, 0x13, 0x00, 0x00, 0x53, 0x35, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x33, 0x15, 0x07, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x23, 0xC3, 0x77, 0x2F, 0x2D, 0x2D, 0x2F, 0x54, 0x23, 0x6D, + 0x01, 0x5A, 0x64, 0x7C, 0x70, 0xFE, 0x5E, 0x74, 0x1E, 0x20, 0x1F, 0x1F, + 0xDF, 0x2D, 0x53, 0x02, 0x58, 0x49, 0x57, 0x55, 0x00, 0x01, 0x00, 0x49, + 0xFE, 0x5B, 0x01, 0xDE, 0x00, 0x28, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x43, 0x74, 0x86, 0x57, 0x5B, + 0xD6, 0x50, 0x44, 0x28, 0x2A, 0x10, 0x22, 0x0F, 0x0E, 0x21, 0x53, 0xFE, + 0x5B, 0x67, 0x61, 0x4B, 0x7E, 0x3C, 0x28, 0x3B, 0x4E, 0x2A, 0x21, 0x23, + 0x03, 0x03, 0xA9, 0x04, 0x07, 0xFF, 0xFF, 0x00, 0x44, 0xFE, 0x3C, 0x03, + 0x07, 0xFF, 0x61, 0x06, 0x07, 0x0A, 0x8E, 0x00, 0x00, 0xF9, 0x79, 0x00, + 0x01, 0xFB, 0xD3, 0xFF, 0x75, 0xFF, 0x10, 0x04, 0xBE, 0x00, 0x03, 0x00, + 0x00, 0x43, 0x01, 0x23, 0x01, 0xF0, 0xFD, 0x5C, 0x99, 0x02, 0xA2, 0x04, + 0xBE, 0xFA, 0xB7, 0x05, 0x49, 0x00, 0x01, 0xFB, 0x6F, 0xFF, 0xC2, 0xFF, + 0xE8, 0x06, 0x10, 0x00, 0x03, 0x00, 0x00, 0x43, 0x01, 0x23, 0x01, 0x18, + 0xFC, 0x23, 0x9C, 0x03, 0xDD, 0x06, 0x10, 0xF9, 0xB2, 0x06, 0x4E, 0x00, + 0x03, 0xFC, 0x13, 0x04, 0xBB, 0xFE, 0xDB, 0x06, 0x46, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x27, 0x35, 0x21, + 0x15, 0x07, 0x11, 0x33, 0x11, 0xFC, 0x13, 0xB3, 0x1E, 0x01, 0xA1, 0x1F, + 0xB1, 0x04, 0xBB, 0x01, 0x8B, 0xFE, 0x75, 0xEE, 0x9D, 0x9D, 0xEE, 0x01, + 0x8B, 0xFE, 0x75, 0xFF, 0xFF, 0xFC, 0x4C, 0xFD, 0x58, 0xFE, 0xB9, 0xFF, + 0x17, 0x04, 0x07, 0x06, 0x55, 0xFB, 0xC8, 0xF9, 0x44, 0xFF, 0xFF, 0xFC, + 0xAE, 0xFE, 0x0B, 0xFE, 0xA6, 0xFF, 0xB8, 0x04, 0x27, 0x0B, 0x31, 0xFC, + 0x57, 0xF9, 0x92, 0x00, 0x07, 0x0B, 0x31, 0xFD, 0x9E, 0xF9, 0x94, 0x00, + 0x02, 0xFC, 0xCE, 0xFE, 0x07, 0xFE, 0x6E, 0xFF, 0x93, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x25, 0x35, 0x21, 0x15, 0xFD, + 0xBB, 0xB3, 0xFE, 0x60, 0x01, 0xA0, 0xFE, 0x07, 0x01, 0x8C, 0xFE, 0x74, + 0xE6, 0xA6, 0xA6, 0x00, 0x02, 0xFB, 0xE4, 0x04, 0x95, 0xFE, 0xD8, 0x06, + 0x34, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, 0x23, + 0x22, 0x06, 0x15, 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x35, 0x17, 0x16, 0x06, 0x06, 0x07, 0x27, 0x13, 0x17, 0xFD, + 0xF1, 0x31, 0x44, 0x39, 0x3B, 0x2A, 0x25, 0x34, 0xA1, 0x3D, 0x67, 0x42, + 0x29, 0x44, 0x3F, 0x41, 0x26, 0x25, 0x37, 0x9E, 0x01, 0x3C, 0x69, 0xDA, + 0x70, 0xB3, 0x6F, 0x04, 0xF0, 0x1A, 0x24, 0x1B, 0x37, 0x2F, 0x09, 0x49, + 0x77, 0x48, 0x1B, 0x23, 0x1A, 0x36, 0x2E, 0x0C, 0x49, 0x76, 0x45, 0x5B, + 0x3D, 0x01, 0x62, 0x3E, 0x00, 0x03, 0xFB, 0xE2, 0x04, 0x7F, 0xFE, 0xD5, + 0x07, 0xB8, 0x00, 0x19, 0x00, 0x25, 0x00, 0x31, 0x00, 0x00, 0x41, 0x17, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x27, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x25, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x03, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xFE, 0x34, + 0xA1, 0x3D, 0x68, 0x42, 0x31, 0x45, 0x39, 0x3C, 0x28, 0x24, 0x37, 0x9E, + 0x3C, 0x67, 0x40, 0x2A, 0x44, 0x3F, 0x42, 0x27, 0x26, 0x34, 0xFE, 0x94, + 0x01, 0x4F, 0x44, 0x45, 0x52, 0x52, 0x45, 0x43, 0x50, 0x01, 0x01, 0x4E, + 0x45, 0x45, 0x52, 0x52, 0x45, 0x44, 0x4F, 0x06, 0xA9, 0x0C, 0x4A, 0x76, + 0x46, 0x1B, 0x24, 0x1A, 0x36, 0x2F, 0x0B, 0x49, 0x77, 0x47, 0x1A, 0x22, + 0x1B, 0x35, 0xBC, 0x36, 0x4B, 0x4A, 0x37, 0x37, 0x4A, 0x49, 0xFE, 0x01, + 0x35, 0x4D, 0x4B, 0x38, 0x36, 0x4A, 0x4A, 0x00, 0x02, 0xFC, 0x06, 0x04, + 0xDC, 0xFE, 0xFA, 0x06, 0xAD, 0x00, 0x17, 0x00, 0x2F, 0x00, 0x00, 0x41, + 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0x11, + 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0xFE, + 0x59, 0xA1, 0x3D, 0x69, 0x42, 0x41, 0x52, 0x4A, 0x36, 0x25, 0x36, 0x9E, + 0x3C, 0x67, 0x41, 0x37, 0x56, 0x54, 0x34, 0x25, 0x35, 0xA1, 0x3D, 0x69, + 0x41, 0x41, 0x53, 0x4A, 0x36, 0x24, 0x37, 0x9E, 0x3C, 0x67, 0x41, 0x37, + 0x56, 0x54, 0x34, 0x26, 0x34, 0x05, 0xC0, 0x09, 0x3C, 0x5F, 0x37, 0x23, + 0x24, 0x2B, 0x25, 0x08, 0x39, 0x5F, 0x39, 0x22, 0x22, 0x2A, 0x01, 0x12, + 0x0B, 0x3A, 0x5F, 0x37, 0x23, 0x22, 0x2A, 0x25, 0x07, 0x3A, 0x60, 0x3A, + 0x24, 0x23, 0x2B, 0x00, 0x05, 0xFB, 0xB6, 0xFD, 0xD8, 0xFF, 0x30, 0xFF, + 0x83, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, + 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x23, 0x27, 0x37, 0x37, 0x33, 0x01, + 0x27, 0x05, 0x23, 0x01, 0x17, 0x25, 0x33, 0x17, 0x07, 0xFE, 0xD4, 0xFD, + 0x3A, 0x01, 0x0E, 0x91, 0xD5, 0x59, 0x7C, 0x91, 0xFE, 0xF7, 0x5D, 0x02, + 0xA3, 0x91, 0x01, 0x0D, 0x5B, 0xFE, 0x98, 0x91, 0xD7, 0x5D, 0xFE, 0xE9, + 0x75, 0x75, 0xFE, 0xEF, 0xD7, 0x35, 0x9F, 0xFE, 0xF8, 0x34, 0xD7, 0x01, + 0x0C, 0x35, 0xD4, 0xD4, 0x34, 0x00, 0x03, 0xFC, 0x97, 0xFD, 0xD9, 0xFE, + 0x65, 0xFF, 0xAB, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, + 0x23, 0x11, 0x33, 0x05, 0x35, 0x37, 0x17, 0x17, 0x15, 0x25, 0x37, 0xFD, + 0xBB, 0x7A, 0x7A, 0xFE, 0xDC, 0xE7, 0x3B, 0xAC, 0xFE, 0xE1, 0x38, 0xFD, + 0xD9, 0x01, 0x7D, 0xFE, 0x88, 0xCB, 0x54, 0x77, 0x88, 0xFB, 0x58, 0xFF, + 0xFF, 0xFC, 0x34, 0x04, 0xEC, 0xFF, 0x30, 0x07, 0xD6, 0x04, 0x07, 0x0A, + 0x28, 0xFB, 0xB4, 0x02, 0x9F, 0x00, 0x01, 0xFD, 0x29, 0x04, 0x68, 0xFD, + 0xFF, 0x05, 0xF0, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x06, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x15, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0xFD, 0xFF, 0x5A, + 0x7C, 0x7C, 0x5A, 0x2D, 0x37, 0x37, 0x2D, 0x04, 0x69, 0x01, 0x6C, 0x54, + 0x54, 0x74, 0x60, 0x3C, 0x2C, 0x28, 0x3B, 0x00, 0x02, 0xFC, 0x26, 0x04, + 0x8E, 0xFE, 0xC9, 0x06, 0xD0, 0x00, 0x0D, 0x00, 0x19, 0x00, 0x00, 0x41, + 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x01, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x06, 0x06, 0x23, 0x22, + 0x26, 0xFE, 0xC9, 0xC4, 0x42, 0x4C, 0x4D, 0x43, 0xC1, 0xB7, 0x9A, 0x9C, + 0xB5, 0xFE, 0x1A, 0x50, 0x44, 0x44, 0x51, 0x01, 0x01, 0x4E, 0x47, 0x44, + 0x50, 0x05, 0xAD, 0x37, 0x52, 0x52, 0x37, 0x80, 0xA3, 0xA3, 0xFE, 0xE2, + 0x38, 0x4A, 0x4A, 0x38, 0x35, 0x4C, 0x4A, 0x00, 0x02, 0xFC, 0xB9, 0xFD, + 0xF0, 0xFE, 0x90, 0xFF, 0xC7, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, + 0x27, 0x01, 0x17, 0x03, 0x01, 0x37, 0x01, 0xFD, 0x1F, 0x66, 0x01, 0x72, + 0x65, 0x67, 0xFE, 0x90, 0x68, 0x01, 0x6D, 0xFD, 0xF3, 0x66, 0x01, 0x6C, + 0x66, 0xFE, 0x91, 0x01, 0x70, 0x67, 0xFE, 0x8E, 0xFF, 0xFF, 0xFC, 0xAB, + 0xFD, 0xDA, 0xFE, 0xC1, 0xFF, 0xBE, 0x04, 0x07, 0x0A, 0x34, 0xFC, 0x47, + 0x00, 0x00, 0xFF, 0xFF, 0xFC, 0xB1, 0xFD, 0xDA, 0xFE, 0xC7, 0xFF, 0xBE, + 0x04, 0x07, 0x0A, 0x35, 0xFC, 0x4D, 0x00, 0x00, 0xFF, 0xFF, 0xFB, 0xF1, + 0xFD, 0xDA, 0x00, 0x29, 0xFF, 0xBE, 0x04, 0x27, 0x0A, 0x35, 0xFB, 0x8E, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x33, 0xFD, 0xB2, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x3D, 0x04, 0x82, 0x01, 0x3B, 0x06, 0x61, 0x00, 0x0F, 0x00, 0x00, + 0x53, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x35, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x3D, 0x2E, 0x3F, 0x3E, 0x2F, 0x48, 0x73, 0x43, + 0x43, 0x73, 0x04, 0x82, 0x82, 0x40, 0x2E, 0x2D, 0x40, 0x82, 0x40, 0x6C, + 0x44, 0x43, 0x6C, 0x40, 0xFF, 0xFF, 0x00, 0x6A, 0x04, 0xCD, 0x01, 0x98, + 0x05, 0xEB, 0x06, 0x06, 0x0A, 0x8C, 0x00, 0x02, 0x00, 0x01, 0xFC, 0x98, + 0xFD, 0xE6, 0xFE, 0x5F, 0xFF, 0xB6, 0x00, 0x0E, 0x00, 0x00, 0x41, 0x37, + 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17, 0x07, 0x17, 0x07, 0x27, + 0x07, 0xFC, 0xCC, 0x6E, 0xA2, 0x1D, 0xA1, 0x0A, 0x62, 0x09, 0x9D, 0x1D, + 0xA4, 0x6A, 0x4E, 0x60, 0x5D, 0xFE, 0x21, 0x92, 0x2E, 0x5E, 0x41, 0xB8, + 0xBB, 0x3E, 0x5E, 0x2E, 0x8E, 0x39, 0x98, 0x92, 0x00, 0x04, 0xFB, 0xF8, + 0xFE, 0x1C, 0xFF, 0x16, 0xFF, 0xB7, 0x00, 0x0B, 0x00, 0x18, 0x00, 0x24, + 0x00, 0x31, 0x00, 0x00, 0x41, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x17, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0xFB, 0xF9, 0x01, 0x83, 0x60, 0x5E, + 0x84, 0x82, 0x60, 0x61, 0x82, 0x73, 0x1B, 0x32, 0x23, 0x32, 0x3D, 0x3D, + 0x32, 0x33, 0x3E, 0xE8, 0x01, 0x83, 0x5F, 0x62, 0x81, 0x83, 0x60, 0x60, + 0x82, 0x72, 0x1C, 0x33, 0x21, 0x32, 0x3F, 0x3F, 0x32, 0x32, 0x3F, 0xFE, + 0xE7, 0x56, 0x7A, 0x7A, 0x56, 0x54, 0x77, 0x77, 0x54, 0x1C, 0x31, 0x1F, + 0x41, 0x2B, 0x2E, 0x42, 0x42, 0x2E, 0x56, 0x7A, 0x7B, 0x55, 0x54, 0x77, + 0x77, 0x54, 0x1C, 0x31, 0x1F, 0x41, 0x2B, 0x2D, 0x43, 0x43, 0x00, 0x01, + 0xFC, 0xB1, 0x04, 0x9E, 0xFE, 0x5E, 0x06, 0x7E, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x33, 0x07, 0x33, 0x03, 0x23, 0x37, 0x23, 0xFD, 0x1F, 0x8F, 0x3C, + 0xEC, 0x70, 0x8F, 0x3E, 0xEC, 0x06, 0x7E, 0xAB, 0xFE, 0xCB, 0xA9, 0xFF, + 0xFF, 0xFC, 0xD4, 0xFE, 0x44, 0x02, 0x92, 0xFF, 0x97, 0x06, 0x07, 0x0A, + 0xB1, 0xFF, 0xE4, 0xF9, 0xB5, 0x00, 0x01, 0xFC, 0xF0, 0x04, 0x8F, 0x02, + 0xAE, 0x05, 0xE2, 0x00, 0x15, 0x00, 0x00, 0x43, 0x22, 0x2E, 0x02, 0x27, + 0x33, 0x1E, 0x03, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x33, 0x0E, 0x03, 0x30, + 0x9F, 0xF4, 0xB2, 0x77, 0x24, 0xC2, 0x1D, 0x5E, 0x85, 0xB0, 0x6E, 0x6F, + 0xB1, 0x86, 0x5C, 0x1B, 0xC1, 0x23, 0x79, 0xB2, 0xF3, 0x04, 0x8F, 0x3C, + 0x62, 0x78, 0x3D, 0x1B, 0x3F, 0x3A, 0x25, 0x25, 0x3A, 0x40, 0x1A, 0x3E, + 0x78, 0x62, 0x3B, 0x00, 0x01, 0xFB, 0x59, 0x05, 0x30, 0x00, 0x00, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x00, 0x51, 0x15, 0x21, 0x35, 0xFB, 0x59, 0x05, + 0xD2, 0xA2, 0xA2, 0xFF, 0xFF, 0xFB, 0x59, 0xFE, 0x83, 0x00, 0x00, 0xFF, + 0x25, 0x06, 0x07, 0x0A, 0xB2, 0x00, 0x00, 0xF9, 0x53, 0x00, 0x01, 0xFB, + 0xD5, 0x04, 0xD2, 0x03, 0xB4, 0x05, 0xFA, 0x00, 0x1A, 0x00, 0x00, 0x41, + 0x27, 0x3E, 0x02, 0x33, 0x32, 0x0C, 0x03, 0x33, 0x32, 0x36, 0x37, 0x17, + 0x06, 0x06, 0x23, 0x22, 0x2C, 0x02, 0x26, 0x23, 0x22, 0x06, 0xFC, 0x62, + 0x8D, 0x0F, 0x56, 0x88, 0x5B, 0x61, 0x01, 0x12, 0x01, 0x37, 0x01, 0x33, + 0x01, 0x07, 0x58, 0x4E, 0x6F, 0x10, 0x8E, 0x0E, 0xB2, 0x84, 0x76, 0xFE, + 0xE4, 0xFE, 0xD2, 0xFE, 0xDD, 0xFE, 0x5D, 0x49, 0x70, 0x04, 0xD2, 0x27, + 0x46, 0x6A, 0x3A, 0x12, 0x1A, 0x1A, 0x12, 0x34, 0x3B, 0x2D, 0x6D, 0x78, + 0x12, 0x1B, 0x1A, 0x12, 0x34, 0x00, 0x01, 0xFC, 0xF0, 0x04, 0x7B, 0x02, + 0xAE, 0x05, 0xCE, 0x00, 0x15, 0x00, 0x00, 0x41, 0x23, 0x2E, 0x03, 0x23, + 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x03, 0x33, 0x32, 0x1E, 0x02, 0x02, + 0xAE, 0xC1, 0x1B, 0x5B, 0x85, 0xB2, 0x70, 0x71, 0xB1, 0x84, 0x5C, 0x1C, + 0xC2, 0x25, 0x7A, 0xB4, 0xF1, 0x9C, 0x9B, 0xF1, 0xB3, 0x7B, 0x04, 0x7B, + 0x1A, 0x3F, 0x3B, 0x26, 0x26, 0x3B, 0x3F, 0x1A, 0x40, 0x78, 0x61, 0x3A, + 0x39, 0x61, 0x79, 0x00, 0x03, 0xFC, 0xD6, 0xFD, 0xD6, 0x03, 0x59, 0xFF, + 0x83, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x01, 0x23, 0x01, 0x17, 0x25, 0x33, 0x05, 0x07, 0x02, 0xD7, 0xF9, + 0xFF, 0x05, 0x53, 0xD1, 0x01, 0x82, 0x7F, 0xFD, 0xFF, 0xD1, 0x01, 0x30, + 0x83, 0xFE, 0xE6, 0x71, 0x71, 0xFE, 0xF0, 0x01, 0x0E, 0x37, 0xD6, 0xD6, + 0x32, 0xFF, 0xFF, 0x00, 0x69, 0x04, 0xC6, 0x07, 0xBD, 0x05, 0xFD, 0x04, + 0x27, 0x05, 0xDC, 0x00, 0x00, 0x04, 0xD7, 0x00, 0x27, 0x05, 0xDC, 0x02, + 0x09, 0x04, 0xD7, 0x00, 0x27, 0x05, 0xDC, 0x04, 0x13, 0x04, 0xD7, 0x00, + 0x07, 0x05, 0xDC, 0x06, 0x1C, 0x04, 0xD7, 0x00, 0x02, 0x00, 0x85, 0x04, + 0xE3, 0x02, 0xCE, 0x07, 0x26, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x37, 0x13, 0x33, 0x03, 0x02, 0xBE, 0xFD, 0xC7, 0xC4, + 0x95, 0xF0, 0xD6, 0x05, 0x90, 0xAD, 0xAD, 0x7B, 0x01, 0x1B, 0xFE, 0xE5, + 0xFF, 0xFF, 0x00, 0x69, 0x04, 0xC6, 0x05, 0xB4, 0x05, 0xFD, 0x04, 0x27, + 0x05, 0xDC, 0x00, 0x00, 0x04, 0xD7, 0x00, 0x27, 0x05, 0xDC, 0x02, 0x09, + 0x04, 0xD7, 0x00, 0x07, 0x05, 0xDC, 0x04, 0x13, 0x04, 0xD7, 0xFF, 0xFF, + 0x00, 0x69, 0xFE, 0x3B, 0x05, 0xB4, 0xFF, 0x73, 0x04, 0x27, 0x05, 0xDC, + 0x00, 0x00, 0xFE, 0x4C, 0x00, 0x27, 0x05, 0xDC, 0x02, 0x09, 0xFE, 0x4C, + 0x00, 0x07, 0x05, 0xDC, 0x04, 0x13, 0xFE, 0x4C, 0x00, 0x03, 0xFB, 0x63, + 0x04, 0x8C, 0xFF, 0x3E, 0x06, 0x00, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x1B, + 0x00, 0x00, 0x41, 0x13, 0x23, 0x01, 0x07, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x25, 0x26, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xFD, 0x5A, 0xC8, 0xDD, 0xFE, 0xEB, + 0xCD, 0x51, 0x45, 0x45, 0x4F, 0x50, 0x44, 0x45, 0x51, 0x02, 0xB3, 0x01, + 0x51, 0x44, 0x45, 0x4F, 0x4F, 0x45, 0x44, 0x51, 0x06, 0x00, 0xFE, 0xCF, + 0x01, 0x31, 0xF4, 0x38, 0x4B, 0x4C, 0x37, 0x37, 0x49, 0x49, 0x9A, 0x39, + 0x49, 0x4B, 0x37, 0x37, 0x49, 0x49, 0x00, 0x03, 0xFB, 0x6F, 0x04, 0x8C, + 0xFF, 0x4B, 0x06, 0x00, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, + 0x41, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x05, 0x13, 0x21, 0x01, 0x25, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0xFE, 0x1F, 0x51, 0x46, 0x45, 0x50, 0x50, 0x45, + 0x46, 0x51, 0xFE, 0x75, 0xC7, 0x01, 0x29, 0xFE, 0xE5, 0xFE, 0x06, 0x4F, + 0x46, 0x44, 0x51, 0x51, 0x44, 0x46, 0x4F, 0x05, 0x0C, 0x37, 0x4C, 0x4C, + 0x37, 0x35, 0x4B, 0x4B, 0x08, 0x01, 0x31, 0xFE, 0xCF, 0xA0, 0x37, 0x4B, + 0x49, 0x39, 0x37, 0x49, 0x4A, 0x00, 0x01, 0xFC, 0xCA, 0xFD, 0xD4, 0xFE, + 0x2F, 0xFF, 0xB0, 0x00, 0x31, 0x00, 0x00, 0x45, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x15, 0x14, 0x0E, + 0x02, 0x15, 0x14, 0x16, 0x17, 0x07, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, + 0x37, 0x2E, 0x03, 0x35, 0x34, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x07, 0xFC, 0xCA, 0x2C, 0x6E, 0x32, 0x44, 0x4B, 0x2B, 0x37, 0x2A, + 0x2D, 0x3B, 0x2E, 0x2E, 0x3B, 0x2D, 0x3B, 0x3B, 0x13, 0x6C, 0x89, 0x2D, + 0x3A, 0x2D, 0x01, 0x01, 0x2D, 0x3A, 0x2D, 0x30, 0x3F, 0x30, 0x16, 0x0D, + 0x22, 0x43, 0x1E, 0x84, 0x1A, 0x1A, 0x3A, 0x2B, 0x1D, 0x20, 0x11, 0x0C, + 0x09, 0x08, 0x09, 0x0D, 0x1B, 0x19, 0x17, 0x19, 0x0B, 0x09, 0x09, 0x06, + 0x0F, 0x06, 0x5A, 0x0A, 0x3C, 0x2C, 0x19, 0x19, 0x0B, 0x08, 0x08, 0x08, + 0x09, 0x0B, 0x17, 0x18, 0x14, 0x1C, 0x14, 0x0F, 0x08, 0x0D, 0x07, 0x15, + 0x10, 0x00, 0x02, 0xFC, 0x83, 0x04, 0xA8, 0xFF, 0x39, 0x06, 0x2F, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x17, 0x05, 0x27, 0x27, 0x37, 0x05, + 0x07, 0xFE, 0xE0, 0x59, 0xFE, 0x55, 0x5A, 0xB1, 0x5A, 0x01, 0x0A, 0x59, + 0x06, 0x2F, 0x95, 0xF2, 0x95, 0x01, 0x95, 0x96, 0x95, 0x00, 0x01, 0xFB, + 0xE2, 0x04, 0xCF, 0xFE, 0xE2, 0x06, 0x00, 0x00, 0x05, 0x00, 0x00, 0x41, + 0x03, 0x21, 0x17, 0x21, 0x15, 0xFC, 0xDC, 0xFA, 0x01, 0x18, 0x4D, 0x01, + 0x9B, 0x04, 0xCF, 0x01, 0x31, 0x90, 0xA1, 0x00, 0x01, 0xFC, 0x58, 0x04, + 0xCF, 0xFF, 0x40, 0x06, 0x00, 0x00, 0x05, 0x00, 0x00, 0x41, 0x35, 0x21, + 0x13, 0x23, 0x27, 0xFC, 0x58, 0x02, 0x21, 0xC7, 0xDA, 0x84, 0x05, 0x5F, + 0xA1, 0xFE, 0xCF, 0x90, 0x00, 0x01, 0xFC, 0x1D, 0x04, 0xCF, 0xFE, 0xFE, + 0x06, 0x00, 0x00, 0x05, 0x00, 0x00, 0x41, 0x13, 0x21, 0x15, 0x21, 0x07, + 0xFC, 0x1D, 0xC6, 0x02, 0x1B, 0xFE, 0x7C, 0x83, 0x04, 0xCF, 0x01, 0x31, + 0xA1, 0x90, 0x00, 0x01, 0xFB, 0xCA, 0x04, 0xCF, 0xFF, 0x58, 0x06, 0x00, + 0x00, 0x09, 0x00, 0x00, 0x41, 0x03, 0x33, 0x17, 0x37, 0x21, 0x13, 0x23, + 0x27, 0x07, 0xFC, 0x98, 0xCE, 0xFA, 0x5C, 0x62, 0x01, 0x48, 0x8E, 0xC0, + 0x7A, 0x7B, 0x04, 0xCF, 0x01, 0x31, 0x9E, 0x9E, 0xFE, 0xCF, 0xA4, 0xA4, + 0x00, 0x01, 0xFC, 0x01, 0x04, 0xCF, 0xFF, 0x8F, 0x06, 0x00, 0x00, 0x09, + 0x00, 0x00, 0x41, 0x13, 0x21, 0x17, 0x37, 0x33, 0x03, 0x21, 0x27, 0x07, + 0xFC, 0x01, 0x8C, 0x01, 0x49, 0x5F, 0x60, 0xFA, 0xCE, 0xFE, 0xF5, 0x82, + 0x7B, 0x04, 0xCF, 0x01, 0x31, 0x9E, 0x9E, 0xFE, 0xCF, 0xA4, 0xA4, 0x00, + 0x01, 0xFB, 0x06, 0x04, 0xCE, 0xFF, 0xFD, 0x05, 0xEE, 0x00, 0x0F, 0x00, + 0x00, 0x43, 0x21, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x21, 0x03, 0xFD, 0x79, 0x2A, 0x97, 0x5E, 0x9A, + 0xB7, 0xC0, 0x01, 0x41, 0x4F, 0x4F, 0x3F, 0x03, 0x18, 0x05, 0x4C, 0x3F, + 0x3F, 0xA0, 0x80, 0x36, 0x52, 0x52, 0x36, 0x00, 0x01, 0xFA, 0xE2, 0x04, + 0xCE, 0xFF, 0xD8, 0x05, 0xEE, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x27, 0x21, 0x35, 0x21, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, + 0x06, 0xFE, 0x86, 0x5D, 0x98, 0x2D, 0xFD, 0x7E, 0x03, 0x15, 0x42, 0x4D, + 0x4E, 0x40, 0xC4, 0xB6, 0x04, 0xCE, 0x40, 0x3E, 0xA2, 0x36, 0x52, 0x52, + 0x36, 0x80, 0xA0, 0x00, 0x01, 0xFC, 0x6F, 0x04, 0x9E, 0x03, 0x32, 0x05, + 0xEE, 0x00, 0x08, 0x00, 0x00, 0x53, 0x05, 0x15, 0x07, 0x25, 0x05, 0x27, + 0x35, 0x25, 0x1E, 0x03, 0x14, 0xCB, 0xFD, 0x68, 0xFD, 0x68, 0xC8, 0x03, + 0x11, 0x05, 0xEE, 0xF1, 0x17, 0x48, 0xD4, 0xD4, 0x48, 0x19, 0xEF, 0x00, + 0x01, 0xFC, 0x9A, 0x03, 0xF8, 0xFE, 0x2E, 0x05, 0xC6, 0x00, 0x13, 0x00, + 0x00, 0x41, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x27, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0xFD, 0x34, 0x74, + 0x86, 0x56, 0x5C, 0xD6, 0x50, 0x44, 0x28, 0x2A, 0x0F, 0x23, 0x0F, 0x0D, + 0x20, 0x54, 0x05, 0xC6, 0x67, 0x61, 0x4B, 0x7F, 0x3C, 0x28, 0x3B, 0x4F, + 0x29, 0x21, 0x23, 0x03, 0x02, 0xA8, 0x05, 0x07, 0x00, 0x03, 0xFC, 0x94, + 0xFD, 0xD4, 0xFE, 0x65, 0xFF, 0x8E, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x00, 0x45, 0x03, 0x23, 0x13, 0x05, 0x03, 0x23, 0x13, 0x07, 0x35, + 0x21, 0x15, 0xFD, 0x87, 0x55, 0x9E, 0x55, 0x01, 0x7C, 0x56, 0xA0, 0x56, + 0xC4, 0x01, 0x02, 0x72, 0xFE, 0xEA, 0x01, 0x16, 0xA2, 0xFE, 0xE8, 0x01, + 0x18, 0x74, 0x74, 0x74, 0x00, 0x01, 0xFC, 0x81, 0xFE, 0x0E, 0xFF, 0x7C, + 0xFF, 0xC2, 0x00, 0x19, 0x00, 0x00, 0x45, 0x33, 0x07, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0xFD, 0x16, 0x9F, 0x60, 0x2B, + 0x43, 0x19, 0x27, 0x40, 0x3D, 0x21, 0x1D, 0x35, 0x0B, 0x7E, 0x06, 0x2B, + 0x51, 0x40, 0x38, 0x60, 0x5A, 0x2E, 0x2B, 0x52, 0x30, 0x6C, 0x3E, 0xF3, + 0x1A, 0x12, 0x20, 0x20, 0x22, 0x2B, 0x26, 0x37, 0x61, 0x3C, 0x26, 0x26, + 0x1D, 0x1C, 0x30, 0x00, 0x01, 0xFC, 0x52, 0x04, 0x78, 0xFE, 0xA3, 0x05, + 0xE8, 0x00, 0x26, 0x00, 0x00, 0x41, 0x32, 0x36, 0x37, 0x26, 0x26, 0x27, + 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x15, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0xFD, 0xF9, 0x1B, 0x1F, + 0x01, 0x01, 0x23, 0x2D, 0x2E, 0x58, 0x3A, 0x5D, 0x52, 0x4B, 0x50, 0x19, + 0x0D, 0x22, 0x17, 0x1C, 0x1E, 0x29, 0x1D, 0x4E, 0x66, 0x62, 0x49, 0x4A, + 0x53, 0x13, 0x11, 0x23, 0x04, 0xE8, 0x22, 0x20, 0x20, 0x31, 0x02, 0x6B, + 0x2B, 0x54, 0x3D, 0x4E, 0x66, 0x4F, 0x53, 0x2E, 0x21, 0x1E, 0x1C, 0x24, + 0x1F, 0x02, 0x70, 0x01, 0x63, 0x51, 0x4E, 0x5D, 0x53, 0x44, 0x35, 0x26, + 0x00, 0x01, 0xFC, 0x54, 0x04, 0x7E, 0xFE, 0xAB, 0x07, 0x7A, 0x00, 0x24, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, + 0x06, 0xFD, 0x54, 0x41, 0x75, 0x4A, 0x4D, 0x82, 0x4F, 0x87, 0xB2, 0x49, + 0x76, 0x8A, 0x44, 0x32, 0x41, 0x88, 0x5D, 0x57, 0x41, 0x3D, 0x55, 0x49, + 0x37, 0x1E, 0x30, 0x14, 0x1A, 0x18, 0x45, 0x05, 0x92, 0x2E, 0x66, 0x53, + 0x4C, 0x74, 0x41, 0xA5, 0x93, 0x72, 0x9D, 0x67, 0x3D, 0x11, 0x74, 0x15, + 0x44, 0x85, 0x73, 0x64, 0x60, 0x48, 0x3F, 0x48, 0x3A, 0x09, 0x09, 0x58, + 0x11, 0x16, 0x00, 0x02, 0xFC, 0x88, 0x03, 0xC4, 0xFE, 0x7B, 0x06, 0xE0, + 0x00, 0x0F, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x33, 0x07, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x27, 0x16, 0x36, 0x35, 0x34, 0x26, 0x27, 0x37, 0x2E, + 0x02, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x23, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, + 0x33, 0x06, 0x06, 0xFD, 0x55, 0x68, 0x05, 0x1E, 0x33, 0x5D, 0x5A, 0x05, + 0x1D, 0x21, 0x23, 0x26, 0x4D, 0x59, 0x75, 0x39, 0x82, 0x85, 0x6F, 0x7B, + 0x02, 0x8D, 0x01, 0x30, 0x30, 0x29, 0x31, 0x15, 0x01, 0x14, 0x31, 0x29, + 0x2A, 0x34, 0x03, 0x8D, 0x02, 0x88, 0x04, 0xAD, 0x1D, 0x06, 0x23, 0x2D, + 0x36, 0x40, 0x53, 0x01, 0x12, 0x16, 0x13, 0x10, 0x03, 0x3E, 0x01, 0x4C, + 0x7F, 0x4C, 0x10, 0x73, 0xA3, 0x7A, 0x59, 0x22, 0x38, 0x2C, 0x48, 0x29, + 0x10, 0x2B, 0x48, 0x2C, 0x2A, 0x23, 0x54, 0x71, 0x00, 0x03, 0xFC, 0x78, + 0x04, 0xA4, 0xFE, 0x7E, 0x07, 0xC7, 0x00, 0x04, 0x00, 0x13, 0x00, 0x21, + 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x07, 0x17, 0x2E, 0x02, 0x27, 0x35, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x14, 0x06, 0x27, 0x36, 0x36, + 0x35, 0x35, 0x36, 0x26, 0x23, 0x22, 0x06, 0x07, 0x15, 0x16, 0x16, 0xFC, + 0x78, 0x97, 0x16, 0xA4, 0x43, 0x5C, 0x35, 0x09, 0x0D, 0x69, 0x65, 0x6C, + 0x77, 0x76, 0x8E, 0x3B, 0x32, 0x01, 0x35, 0x3A, 0x35, 0x3D, 0x09, 0x09, + 0x3E, 0x04, 0xB2, 0x03, 0x15, 0xFD, 0x5E, 0x73, 0x0E, 0x01, 0x40, 0x75, + 0x50, 0x2F, 0x7B, 0x8C, 0x9A, 0x7F, 0x0B, 0x78, 0x9F, 0x78, 0x01, 0x59, + 0x45, 0x0B, 0x47, 0x5C, 0x45, 0x3E, 0x4D, 0x39, 0x43, 0x00, 0x01, 0xFC, + 0x7E, 0x04, 0xA2, 0xFE, 0x7D, 0x06, 0xE0, 0x00, 0x21, 0x00, 0x00, 0x41, + 0x26, 0x26, 0x35, 0x35, 0x21, 0x15, 0x21, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x35, 0x36, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0xFD, 0x75, 0x79, + 0x7E, 0x01, 0xB8, 0xFE, 0xD9, 0x32, 0x35, 0x3C, 0x32, 0x01, 0x46, 0x41, + 0x2C, 0x46, 0x19, 0x49, 0x1B, 0x6C, 0x55, 0x58, 0x7D, 0x42, 0x42, 0x77, + 0x04, 0xA2, 0x01, 0x98, 0x77, 0x3B, 0x61, 0x09, 0x2F, 0x39, 0x5C, 0x49, + 0x15, 0x41, 0x51, 0x1D, 0x21, 0x50, 0x27, 0x40, 0x48, 0x79, 0x4C, 0x13, + 0x55, 0x80, 0x48, 0x00, 0x02, 0xFC, 0xD0, 0x04, 0xB2, 0xFE, 0x4A, 0x07, + 0xD8, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, + 0x23, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0xFE, 0x20, 0xFE, 0xB0, 0xF5, 0x99, 0x01, 0x76, 0x5B, + 0x14, 0x24, 0x14, 0x06, 0x0B, 0x15, 0x0D, 0x24, 0x2E, 0x06, 0xE0, 0x73, + 0x73, 0xFD, 0xD2, 0x02, 0x61, 0x60, 0x65, 0x06, 0x04, 0x74, 0x04, 0x02, + 0x27, 0x26, 0x00, 0x03, 0xFC, 0xB9, 0x04, 0xB2, 0xFE, 0x3E, 0x07, 0xC7, + 0x00, 0x15, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x17, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0x15, 0x17, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x03, 0x33, 0x11, 0x23, 0xFD, 0xF7, 0x47, 0x3D, + 0x2F, 0x24, 0x33, 0x2D, 0x1D, 0x14, 0x1B, 0x49, 0x3D, 0x31, 0x1D, 0x34, + 0x34, 0x1B, 0x13, 0x1D, 0x47, 0x3D, 0x2F, 0x24, 0x33, 0x2D, 0x1D, 0x14, + 0x1B, 0x49, 0x3D, 0x31, 0x1D, 0x34, 0x34, 0x1B, 0x13, 0x1D, 0xC4, 0x95, + 0x95, 0x06, 0xD9, 0x16, 0x2F, 0x46, 0x16, 0x16, 0x21, 0x17, 0x15, 0x2D, + 0x4A, 0x17, 0x17, 0x21, 0x84, 0x15, 0x2D, 0x47, 0x16, 0x17, 0x25, 0x14, + 0x12, 0x2F, 0x49, 0x16, 0x16, 0x21, 0x01, 0xA0, 0xFC, 0xEB, 0x00, 0x03, + 0xFC, 0x30, 0x03, 0xEC, 0xFE, 0x85, 0x06, 0xE0, 0x00, 0x03, 0x00, 0x11, + 0x00, 0x1F, 0x00, 0x00, 0x41, 0x13, 0x17, 0x03, 0x37, 0x26, 0x26, 0x35, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x14, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x06, 0x16, + 0xFC, 0x30, 0xA9, 0x78, 0xAA, 0xD2, 0x7B, 0x90, 0x8F, 0x7C, 0x7E, 0x8E, + 0x8F, 0x7D, 0x40, 0x38, 0x01, 0x36, 0x41, 0x3F, 0x37, 0x01, 0x37, 0x04, + 0x2E, 0x01, 0x0C, 0x44, 0xFE, 0xF6, 0xB6, 0x01, 0x9B, 0x7C, 0x0C, 0x7C, + 0x9E, 0x9E, 0x7C, 0x0C, 0x7C, 0x9B, 0x78, 0x58, 0x47, 0x0C, 0x45, 0x5C, + 0x5B, 0x46, 0x0C, 0x45, 0x5A, 0x00, 0x03, 0xFC, 0x99, 0x03, 0xBF, 0xFE, + 0xA0, 0x06, 0xE2, 0x00, 0x04, 0x00, 0x13, 0x00, 0x21, 0x00, 0x00, 0x41, + 0x11, 0x23, 0x11, 0x33, 0x37, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x35, 0x3E, 0x02, 0x17, 0x06, 0x06, 0x07, 0x15, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, 0xFD, 0x31, 0x98, 0x83, + 0xA3, 0x69, 0x78, 0x77, 0x6A, 0x69, 0x68, 0x0C, 0x08, 0x33, 0x5D, 0x21, + 0x35, 0x3D, 0x09, 0x07, 0x3F, 0x35, 0x38, 0x38, 0x01, 0x36, 0x06, 0x61, + 0xFD, 0x5E, 0x03, 0x15, 0x0E, 0x01, 0x9F, 0x78, 0x0B, 0x7D, 0x9C, 0x91, + 0x76, 0x2F, 0x4D, 0x75, 0x44, 0x79, 0x01, 0x41, 0x3B, 0x4D, 0x40, 0x43, + 0x5C, 0x47, 0x0B, 0x46, 0x58, 0x00, 0x02, 0xFC, 0xA8, 0x03, 0xBA, 0xFE, + 0x4A, 0x07, 0xD8, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x23, 0x11, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x07, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0xFD, 0xC5, 0x98, 0x01, 0x76, 0x5B, 0x13, + 0x23, 0x15, 0x05, 0x0B, 0x15, 0x0E, 0x24, 0x2E, 0x98, 0x98, 0x75, 0x5A, + 0x14, 0x27, 0x13, 0x05, 0x0A, 0x17, 0x0F, 0x23, 0x2D, 0x04, 0xB2, 0x02, + 0x61, 0x60, 0x65, 0x06, 0x04, 0x74, 0x04, 0x02, 0x27, 0x26, 0x31, 0xFD, + 0xA0, 0x62, 0x66, 0x07, 0x04, 0x73, 0x03, 0x03, 0x27, 0x29, 0x00, 0x03, + 0xFC, 0x26, 0x03, 0xEC, 0xFE, 0x6C, 0x06, 0xDA, 0x00, 0x03, 0x00, 0x08, + 0x00, 0x19, 0x00, 0x00, 0x41, 0x13, 0x17, 0x03, 0x01, 0x11, 0x33, 0x11, + 0x23, 0x03, 0x37, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, + 0x06, 0x16, 0x33, 0x32, 0x36, 0x36, 0xFC, 0x26, 0xA9, 0x77, 0xAA, 0x01, + 0x38, 0x98, 0x7C, 0x09, 0x34, 0x6B, 0x6F, 0x56, 0x68, 0x97, 0x01, 0x29, + 0x2E, 0x2D, 0x34, 0x16, 0x04, 0x2E, 0x01, 0x0C, 0x44, 0xFE, 0xF6, 0x01, + 0x49, 0x01, 0xA5, 0xFD, 0xD8, 0x01, 0x00, 0x02, 0x76, 0x96, 0x6B, 0x79, + 0x01, 0x4E, 0xFE, 0xB2, 0x33, 0x39, 0x26, 0x43, 0x00, 0x04, 0xFB, 0xFB, + 0x04, 0xB2, 0xFE, 0xF5, 0x06, 0xDA, 0x00, 0x05, 0x00, 0x0A, 0x00, 0x0F, + 0x00, 0x15, 0x00, 0x00, 0x41, 0x13, 0x33, 0x07, 0x03, 0x23, 0x03, 0x13, + 0x17, 0x23, 0x03, 0x01, 0x13, 0x33, 0x03, 0x23, 0x03, 0x13, 0x17, 0x23, + 0x03, 0x27, 0xFC, 0xD0, 0x6B, 0x6B, 0x35, 0x6A, 0x4E, 0x2C, 0x4D, 0x11, + 0x5E, 0x92, 0x02, 0x1C, 0x4A, 0x94, 0x92, 0x60, 0x4F, 0x68, 0x19, 0x4C, + 0x69, 0x38, 0x05, 0x6A, 0x01, 0x70, 0xD4, 0xFE, 0xAC, 0x02, 0x28, 0xFE, + 0x90, 0xB8, 0x02, 0x28, 0xFE, 0x95, 0x01, 0x6B, 0xFD, 0xD8, 0x02, 0x28, + 0xFE, 0x90, 0xB8, 0x01, 0x53, 0xD5, 0x00, 0x04, 0xFC, 0x8A, 0x04, 0xA7, + 0xFE, 0x84, 0x07, 0xB0, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x2D, 0x00, 0x43, + 0x00, 0x00, 0x41, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x25, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x13, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x06, 0x16, 0x17, 0x23, 0x26, 0x26, + 0x37, 0x17, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0xFC, 0xAB, + 0x2F, 0x25, 0x29, 0x2C, 0x2D, 0x28, 0x27, 0x2D, 0x01, 0x08, 0x01, 0x2E, + 0x27, 0x27, 0x2E, 0x2E, 0x27, 0x27, 0x2E, 0x26, 0x28, 0x28, 0x29, 0x2C, + 0x92, 0x82, 0x68, 0x63, 0x82, 0x01, 0x08, 0x0B, 0x96, 0x09, 0x0B, 0x11, + 0x01, 0x62, 0x35, 0x35, 0x28, 0x23, 0x2D, 0x48, 0x19, 0x11, 0x58, 0x4E, + 0x52, 0x66, 0x83, 0x7C, 0x07, 0x63, 0x21, 0x2C, 0x2C, 0x21, 0x21, 0x2C, + 0x2C, 0x21, 0x21, 0x2C, 0x2C, 0x21, 0x22, 0x2B, 0x2B, 0xFD, 0xEE, 0xEE, + 0x27, 0x29, 0x1F, 0x1F, 0x05, 0x49, 0x65, 0x65, 0x62, 0xE3, 0x23, 0x42, + 0x21, 0x19, 0x3F, 0xF1, 0x57, 0x32, 0x1E, 0x1B, 0x1F, 0x32, 0x17, 0x4E, + 0x24, 0x4A, 0x5B, 0x4C, 0x52, 0x5B, 0x00, 0x04, 0xFC, 0x70, 0x04, 0xA2, + 0xFE, 0x87, 0x07, 0xB0, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x25, 0x00, 0x33, + 0x00, 0x00, 0x41, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x25, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x03, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0xFC, 0xA4, 0x01, 0x2E, 0x27, 0x28, + 0x2C, 0x2C, 0x28, 0x28, 0x2D, 0x01, 0x07, 0x30, 0x27, 0x25, 0x30, 0x2F, + 0x26, 0x27, 0x30, 0x2E, 0x7B, 0x91, 0x91, 0x7B, 0x7D, 0x8E, 0x8E, 0x7D, + 0x40, 0x37, 0x01, 0x36, 0x40, 0x3F, 0x38, 0x38, 0x07, 0x63, 0x21, 0x2C, + 0x2C, 0x21, 0x21, 0x2C, 0x2C, 0x21, 0x21, 0x2C, 0x2C, 0x21, 0x22, 0x2B, + 0x2B, 0xFD, 0x61, 0x01, 0x9B, 0x7C, 0x0C, 0x7C, 0x9E, 0x9E, 0x7C, 0x0C, + 0x79, 0x9E, 0x78, 0x59, 0x46, 0x0C, 0x46, 0x5B, 0x5B, 0x46, 0x0C, 0x46, + 0x59, 0x00, 0x04, 0xFC, 0x87, 0x04, 0xA8, 0xFE, 0x71, 0x07, 0xB0, 0x00, + 0x0B, 0x00, 0x17, 0x00, 0x1C, 0x00, 0x2C, 0x00, 0x00, 0x41, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x25, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x07, 0x16, 0x06, 0x23, 0x22, 0x26, 0x13, 0x11, 0x33, + 0x11, 0x23, 0x03, 0x37, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0xFC, 0xA1, 0x2F, 0x26, 0x27, 0x2F, + 0x2E, 0x28, 0x26, 0x2F, 0x01, 0x09, 0x2D, 0x26, 0x29, 0x2D, 0x01, 0x01, + 0x2D, 0x29, 0x26, 0x2D, 0x2F, 0x98, 0x7D, 0x0A, 0x34, 0x69, 0x6F, 0x57, + 0x68, 0x96, 0x2C, 0x2A, 0x43, 0x35, 0x07, 0x63, 0x21, 0x2C, 0x2C, 0x21, + 0x22, 0x2B, 0x2B, 0x22, 0x21, 0x2C, 0x2C, 0x21, 0x22, 0x2B, 0x2B, 0xFD, + 0xF4, 0x01, 0xA5, 0xFD, 0xD8, 0x01, 0x00, 0x02, 0x75, 0x97, 0x6B, 0x79, + 0x01, 0x4E, 0xFE, 0xB2, 0x37, 0x35, 0x4F, 0xFF, 0xFF, 0xFC, 0xE0, 0x04, + 0x9D, 0xFE, 0xAE, 0x06, 0x23, 0x04, 0x07, 0x0A, 0x42, 0xFC, 0x58, 0x03, + 0xFC, 0x00, 0x01, 0xFC, 0xE3, 0xFE, 0x51, 0x02, 0xA0, 0xFF, 0xA5, 0x00, + 0x15, 0x00, 0x00, 0x41, 0x23, 0x2E, 0x03, 0x23, 0x22, 0x0E, 0x02, 0x07, + 0x23, 0x3E, 0x03, 0x33, 0x32, 0x1E, 0x02, 0x02, 0xA0, 0xC2, 0x1B, 0x5C, + 0x86, 0xB0, 0x6F, 0x6F, 0xB1, 0x84, 0x5C, 0x1D, 0xC2, 0x25, 0x7A, 0xB4, + 0xF1, 0x9B, 0x9A, 0xF0, 0xB4, 0x7C, 0xFE, 0x51, 0x1B, 0x40, 0x39, 0x25, + 0x26, 0x39, 0x40, 0x1A, 0x40, 0x79, 0x61, 0x3A, 0x39, 0x61, 0x79, 0x00, + 0x02, 0xFC, 0x32, 0xFD, 0xFD, 0xFF, 0x26, 0xFF, 0xBB, 0x00, 0x17, 0x00, + 0x2F, 0x00, 0x00, 0x41, 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x03, 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x23, 0x22, 0x06, 0xFC, 0xD0, 0x9E, 0x3C, 0x67, 0x41, 0x37, 0x55, 0x54, + 0x35, 0x24, 0x36, 0xA1, 0x3E, 0x69, 0x41, 0x41, 0x52, 0x4A, 0x36, 0x25, + 0x35, 0x01, 0x9E, 0x3C, 0x67, 0x41, 0x37, 0x55, 0x54, 0x35, 0x24, 0x36, + 0xA1, 0x3E, 0x67, 0x41, 0x42, 0x53, 0x4A, 0x36, 0x25, 0x35, 0xFE, 0xDF, + 0x08, 0x37, 0x5D, 0x38, 0x23, 0x22, 0x29, 0x24, 0x0A, 0x39, 0x5B, 0x35, + 0x22, 0x22, 0x2A, 0xFE, 0xFB, 0x07, 0x37, 0x5C, 0x37, 0x22, 0x22, 0x2B, + 0x22, 0x09, 0x38, 0x5B, 0x35, 0x23, 0x22, 0x2B, 0xFF, 0xFF, 0xFC, 0x52, + 0x04, 0x9D, 0xFF, 0x4D, 0x07, 0x86, 0x04, 0x07, 0x0A, 0x27, 0xFB, 0xD1, + 0x02, 0x50, 0x00, 0x04, 0xFB, 0x04, 0xFD, 0xDA, 0x00, 0x83, 0xFF, 0xBB, + 0x00, 0x04, 0x00, 0x09, 0x00, 0x0E, 0x00, 0x13, 0x00, 0x00, 0x41, 0x37, + 0x13, 0x33, 0x01, 0x05, 0x35, 0x25, 0x25, 0x15, 0x35, 0x25, 0x25, 0x35, + 0x05, 0x13, 0x01, 0x33, 0x13, 0x17, 0xFE, 0xD0, 0x51, 0xA8, 0xBA, 0xFE, + 0xDD, 0xFB, 0xA4, 0x01, 0xB6, 0x01, 0x00, 0xFF, 0x00, 0xFE, 0x4A, 0x02, + 0xB6, 0xF3, 0xFE, 0xE0, 0xBA, 0xA1, 0x55, 0xFD, 0xE4, 0xBA, 0x01, 0x13, + 0xFE, 0x33, 0x0A, 0x8D, 0x66, 0x20, 0x59, 0x15, 0x1F, 0x67, 0x8C, 0xB8, + 0xFE, 0xE1, 0x01, 0xCD, 0xFE, 0xED, 0xBA, 0x00, 0x01, 0xFC, 0x25, 0x04, + 0xDB, 0xFF, 0x23, 0x07, 0xD7, 0x00, 0x11, 0x00, 0x00, 0x41, 0x37, 0x07, + 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17, 0x07, 0x17, + 0x07, 0x27, 0x17, 0xFD, 0x49, 0x0C, 0xD4, 0x5B, 0xDE, 0xDF, 0x5C, 0xD2, + 0x0A, 0xB6, 0x0B, 0xD2, 0x5C, 0xDC, 0xDD, 0x5C, 0xD3, 0x0B, 0x04, 0xDB, + 0xF5, 0x84, 0x9A, 0x73, 0x71, 0x9C, 0x85, 0xF6, 0xF5, 0x84, 0x9C, 0x71, + 0x6F, 0x9C, 0x82, 0xF5, 0xFF, 0xFF, 0x00, 0x85, 0x04, 0xF4, 0x02, 0xBE, + 0x05, 0xA2, 0x04, 0x06, 0x06, 0xEB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x78, + 0x04, 0xB4, 0x02, 0x15, 0x05, 0xE8, 0x04, 0x06, 0x06, 0xE8, 0x14, 0x00, + 0xFF, 0xFF, 0x00, 0x8F, 0x04, 0xB4, 0x02, 0x2C, 0x05, 0xE8, 0x04, 0x06, + 0x06, 0xE9, 0x37, 0x00, 0x00, 0x02, 0x00, 0x59, 0x00, 0x00, 0x02, 0xE4, + 0x03, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x65, 0x15, 0x21, 0x35, + 0x13, 0x11, 0x21, 0x11, 0x02, 0xE4, 0xFE, 0x15, 0x68, 0xFE, 0xF8, 0xD4, + 0xD4, 0xD4, 0x02, 0xB8, 0xFC, 0x74, 0x03, 0x8C, 0x00, 0x02, 0x00, 0x69, + 0x00, 0x00, 0x02, 0xD3, 0x03, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x21, 0x11, 0x02, 0xD3, 0xFE, 0x36, + 0x69, 0xFE, 0xF7, 0x02, 0x31, 0xD4, 0xD4, 0x01, 0x5B, 0xFC, 0x74, 0x03, + 0x8C, 0x00, 0x03, 0x00, 0xE8, 0x04, 0xAF, 0x03, 0xBE, 0x07, 0x26, 0x00, + 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x13, 0x33, 0x03, 0x03, + 0x2D, 0x3D, 0x54, 0x54, 0x3D, 0x3E, 0x53, 0x53, 0xFE, 0x0E, 0x3D, 0x54, + 0x54, 0x3D, 0x3E, 0x53, 0x53, 0x49, 0x95, 0xF0, 0xD7, 0x04, 0xAF, 0x52, + 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3B, 0x52, 0x52, 0x3B, 0x3C, 0x51, 0x51, + 0x3C, 0x3B, 0x52, 0x01, 0x60, 0x01, 0x17, 0xFE, 0xE9, 0xFF, 0xFF, 0x00, + 0x44, 0xFE, 0x3C, 0x03, 0x07, 0xFF, 0x61, 0x04, 0x07, 0x0A, 0x8E, 0x00, + 0x00, 0xF9, 0x79, 0x00, 0x02, 0xFF, 0xE4, 0x04, 0xAC, 0x02, 0x1D, 0x06, + 0xD4, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x15, 0x21, 0x35, 0x01, + 0x01, 0x40, 0x57, 0x57, 0x3F, 0x41, 0x57, 0x57, 0xDC, 0xFD, 0xC7, 0x04, + 0xAC, 0x53, 0x3D, 0x3C, 0x53, 0x53, 0x3D, 0x3C, 0x53, 0x02, 0x28, 0x9A, + 0x9A, 0x00, 0x03, 0x00, 0xE8, 0x04, 0xAF, 0x03, 0xBE, 0x06, 0xD4, 0x00, + 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x15, 0x21, 0x35, 0x03, + 0x2D, 0x3D, 0x54, 0x54, 0x3D, 0x3E, 0x53, 0x53, 0xFE, 0x0E, 0x3D, 0x54, + 0x54, 0x3D, 0x3E, 0x53, 0x53, 0x01, 0xC1, 0xFD, 0xC6, 0x04, 0xAF, 0x52, + 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3B, 0x52, 0x52, 0x3B, 0x3C, 0x51, 0x51, + 0x3C, 0x3B, 0x52, 0x02, 0x25, 0x9A, 0x9A, 0x00, 0x03, 0x00, 0xE8, 0x04, + 0xAF, 0x03, 0xBE, 0x07, 0x26, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, + 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x13, 0x03, 0x33, 0x13, 0x03, 0x2D, 0x3D, 0x54, 0x54, 0x3D, 0x3E, + 0x53, 0x53, 0xFE, 0x0E, 0x3D, 0x54, 0x54, 0x3D, 0x3E, 0x53, 0x53, 0x47, + 0xD6, 0xEF, 0x96, 0x04, 0xAF, 0x52, 0x3C, 0x3B, 0x52, 0x51, 0x3C, 0x3C, + 0x52, 0x52, 0x3C, 0x3B, 0x52, 0x51, 0x3C, 0x3C, 0x52, 0x01, 0x60, 0x01, + 0x17, 0xFE, 0xE9, 0x00, 0x03, 0x00, 0x3B, 0x04, 0xE5, 0x02, 0xF9, 0x07, + 0x12, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x25, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x02, 0xBE, 0xFD, 0xC7, 0x01, 0xE9, 0x3B, 0x51, 0x51, 0x3B, 0x3A, + 0x51, 0x51, 0xFE, 0x1F, 0x3B, 0x51, 0x51, 0x3B, 0x3A, 0x51, 0x50, 0x05, + 0x92, 0xAD, 0xAD, 0x71, 0x4F, 0x39, 0x39, 0x4E, 0x4E, 0x39, 0x3A, 0x4E, + 0x4F, 0x39, 0x39, 0x4E, 0x4E, 0x39, 0x3A, 0x4E, 0x00, 0x02, 0x00, 0xAB, + 0x04, 0xBF, 0x03, 0x38, 0x07, 0x26, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, + 0x41, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x01, 0x13, + 0x33, 0x03, 0x02, 0x7A, 0x2C, 0x49, 0x3E, 0x33, 0x16, 0x1D, 0x1E, 0x02, + 0x96, 0x03, 0x64, 0x58, 0x2D, 0x47, 0x3A, 0x34, 0x19, 0x1F, 0x1D, 0x03, + 0x94, 0x03, 0x68, 0xFE, 0xBF, 0x95, 0xF0, 0xD6, 0x04, 0xBF, 0x1D, 0x26, + 0x1D, 0x35, 0x26, 0x72, 0x82, 0x1D, 0x26, 0x1D, 0x2D, 0x2E, 0x73, 0x81, + 0x01, 0x50, 0x01, 0x17, 0xFE, 0xE9, 0x00, 0x03, 0x00, 0xE8, 0x04, 0xAF, + 0x03, 0xBE, 0x07, 0x1A, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x20, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x13, 0x17, 0x37, 0x33, 0x15, 0x03, 0x23, 0x03, 0x35, 0x03, 0x2D, 0x3D, + 0x54, 0x54, 0x3D, 0x3E, 0x53, 0x53, 0xFE, 0x0E, 0x3D, 0x54, 0x54, 0x3D, + 0x3E, 0x53, 0x53, 0x1F, 0x83, 0x84, 0xCC, 0xED, 0xC7, 0xE9, 0x04, 0xAF, + 0x52, 0x3B, 0x3C, 0x51, 0x51, 0x3C, 0x3B, 0x52, 0x52, 0x3B, 0x3C, 0x51, + 0x51, 0x3C, 0x3B, 0x52, 0x02, 0x6B, 0xA4, 0xA4, 0x03, 0xFE, 0xEC, 0x01, + 0x14, 0x03, 0xFF, 0xFF, 0x00, 0xE8, 0x06, 0x53, 0x03, 0xBE, 0x08, 0xBE, + 0x06, 0x07, 0x0A, 0xEB, 0x00, 0x00, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0xE8, + 0x06, 0x53, 0x03, 0xBE, 0x08, 0x78, 0x06, 0x07, 0x0A, 0xE7, 0x00, 0x00, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0xE8, 0x06, 0x53, 0x03, 0xBE, 0x08, 0xCA, + 0x06, 0x07, 0x0A, 0xE4, 0x00, 0x00, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xE4, + 0x04, 0xAC, 0x02, 0x1D, 0x06, 0xD4, 0x06, 0x06, 0x0A, 0xE6, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0xE8, 0x06, 0x54, 0x03, 0xBE, 0x08, 0xCA, 0x06, 0x07, + 0x0A, 0xE8, 0x00, 0x00, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0xAB, 0x04, 0xBF, + 0x03, 0x38, 0x07, 0x26, 0x06, 0x06, 0x0A, 0xEA, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x58, 0x06, 0x21, 0x02, 0x54, 0x07, 0xFD, 0x00, 0x0F, 0x00, 0x1B, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x56, 0x48, 0x73, 0x43, 0x43, + 0x73, 0x48, 0x49, 0x72, 0x43, 0x43, 0x72, 0x49, 0x2F, 0x3E, 0x3E, 0x2F, + 0x2E, 0x3F, 0x3F, 0x06, 0x21, 0x3F, 0x6C, 0x43, 0x43, 0x6C, 0x3F, 0x3F, + 0x6C, 0x43, 0x43, 0x6B, 0x40, 0x82, 0x3E, 0x2E, 0x2E, 0x3E, 0x3E, 0x2D, + 0x2E, 0x3F, 0x00, 0x01, 0x00, 0xB0, 0x04, 0xB4, 0x01, 0xBD, 0x05, 0xE8, + 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0xB0, 0x23, 0xEA, 0x6F, + 0x04, 0xB4, 0x01, 0x34, 0xFE, 0xCC, 0x00, 0x02, 0x00, 0x64, 0x04, 0xB4, + 0x03, 0x5F, 0x05, 0xE8, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x23, + 0x13, 0x33, 0x13, 0x23, 0x13, 0x33, 0x01, 0x1F, 0xBB, 0x7E, 0xF2, 0x96, + 0xC0, 0xB7, 0xFE, 0x04, 0xB4, 0x01, 0x34, 0xFE, 0xCC, 0x01, 0x34, 0xFF, + 0xFF, 0x00, 0x64, 0x04, 0xB4, 0x02, 0x01, 0x05, 0xE8, 0x04, 0x06, 0x06, + 0xE8, 0x00, 0x00, 0xFF, 0xFF, 0xFC, 0x86, 0xFE, 0x5F, 0xFE, 0x23, 0xFF, + 0x92, 0x04, 0x07, 0x06, 0xE8, 0xFC, 0x23, 0xF9, 0xAB, 0x00, 0x02, 0xFB, + 0xE1, 0xFE, 0x99, 0xFF, 0x0E, 0xFF, 0x8F, 0x00, 0x0F, 0x00, 0x1F, 0x00, + 0x00, 0x45, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x26, 0x25, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x33, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0xFB, 0xE1, 0x6B, + 0x45, 0x33, 0x3C, 0x41, 0x6C, 0x3A, 0x68, 0x47, 0x41, 0x66, 0x3C, 0x01, + 0x60, 0x6C, 0x3F, 0x3C, 0x33, 0x46, 0x6D, 0x3C, 0x68, 0x42, 0x47, 0x68, + 0x37, 0x71, 0x34, 0x3F, 0x3F, 0x34, 0x45, 0x70, 0x41, 0x41, 0x70, 0x45, + 0x34, 0x3F, 0x3F, 0x34, 0x45, 0x70, 0x41, 0x41, 0x70, 0x00, 0x01, 0x00, + 0x5E, 0x04, 0xC3, 0x02, 0xEB, 0x05, 0xED, 0x00, 0x0F, 0x00, 0x00, 0x41, + 0x32, 0x16, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, + 0x34, 0x36, 0x36, 0x01, 0xA5, 0x5F, 0x93, 0x54, 0xA2, 0x5D, 0x47, 0x48, + 0x5E, 0xA1, 0x55, 0x93, 0x05, 0xED, 0x4F, 0x87, 0x54, 0x41, 0x53, 0x53, + 0x41, 0x54, 0x87, 0x4F, 0xFF, 0xFF, 0x00, 0x5E, 0xFE, 0x4A, 0x02, 0xEB, + 0xFF, 0x74, 0x06, 0x07, 0x0A, 0xF8, 0x00, 0x00, 0xF9, 0x87, 0xFF, 0xFF, + 0xFC, 0x61, 0xFE, 0x36, 0xFE, 0xEA, 0xFF, 0x62, 0x04, 0x07, 0x0A, 0x8F, + 0xFB, 0xFA, 0xF9, 0x7D, 0xFF, 0xFF, 0xFC, 0x3E, 0xFE, 0x25, 0xFF, 0x07, + 0xFF, 0x96, 0x04, 0x07, 0x0A, 0x3F, 0xFB, 0xD6, 0xFF, 0xE7, 0x00, 0x03, + 0xFC, 0x1A, 0xFE, 0x29, 0xFE, 0xE3, 0xFF, 0x9C, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x27, 0x35, 0x21, 0x15, + 0x07, 0x11, 0x33, 0x11, 0xFC, 0x1A, 0xB2, 0x1F, 0x01, 0x9D, 0x19, 0xB2, + 0xFE, 0x29, 0x01, 0x73, 0xFE, 0x8D, 0xDA, 0x99, 0x99, 0xDA, 0x01, 0x73, + 0xFE, 0x8D, 0x00, 0x02, 0xFC, 0x26, 0x04, 0xC7, 0xFE, 0xC8, 0x06, 0xD1, + 0x00, 0x0E, 0x00, 0x1A, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x33, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x0E, 0x02, 0x03, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x06, 0x06, 0xFD, 0x76, 0x9A, 0xB6, + 0xC1, 0x41, 0x4E, 0x4D, 0x42, 0xC3, 0x01, 0x52, 0x97, 0x67, 0x4C, 0x48, + 0x52, 0x43, 0x46, 0x4E, 0x01, 0x01, 0x4C, 0x04, 0xC7, 0xA2, 0x80, 0x35, + 0x52, 0x51, 0x36, 0x54, 0x83, 0x4B, 0x01, 0x09, 0x4D, 0x32, 0x3B, 0x47, + 0x4A, 0x37, 0x36, 0x4A, 0xFF, 0xFF, 0xFC, 0x46, 0xFE, 0x3C, 0xFF, 0x09, + 0xFF, 0x61, 0x04, 0x07, 0x0A, 0x8D, 0xFC, 0x02, 0xF9, 0x79, 0xFF, 0xFF, + 0xFC, 0xDE, 0x03, 0xE0, 0xFE, 0x1D, 0x06, 0x18, 0x04, 0x07, 0x0B, 0x2C, + 0xFC, 0x6E, 0x00, 0x00, 0x00, 0x01, 0xFD, 0x09, 0x03, 0xE4, 0xFE, 0x49, + 0x06, 0x2D, 0x00, 0x0A, 0x00, 0x00, 0x41, 0x35, 0x34, 0x36, 0x36, 0x37, + 0x17, 0x06, 0x06, 0x15, 0x15, 0xFD, 0x09, 0x30, 0x54, 0x34, 0x88, 0x28, + 0x2F, 0x03, 0xE4, 0xC1, 0x44, 0x91, 0x84, 0x2F, 0x4E, 0x43, 0x98, 0x5E, + 0xC2, 0xFF, 0xFF, 0x00, 0xE8, 0x04, 0xDA, 0x04, 0x69, 0x06, 0x8C, 0x06, + 0x06, 0x06, 0xE4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xE8, 0xFE, 0x3B, 0x03, + 0xBE, 0xFF, 0x55, 0x04, 0x07, 0x0A, 0x8B, 0x00, 0x00, 0xF9, 0x6D, 0xFF, + 0xFF, 0x00, 0x58, 0x04, 0xB4, 0x01, 0xF5, 0x05, 0xE8, 0x04, 0x06, 0x06, + 0xE9, 0x00, 0x00, 0xFF, 0xFF, 0xFC, 0xAB, 0xFE, 0x5F, 0xFE, 0x48, 0xFF, + 0x92, 0x04, 0x07, 0x06, 0xE9, 0xFC, 0x54, 0xF9, 0xAB, 0x00, 0x01, 0x00, + 0x64, 0x04, 0xCF, 0x01, 0xC8, 0x05, 0xF4, 0x00, 0x0D, 0x00, 0x00, 0x41, + 0x23, 0x37, 0x36, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x06, + 0x07, 0x01, 0x6D, 0xA7, 0x43, 0x08, 0x08, 0x10, 0x95, 0x9A, 0x4B, 0x5B, + 0x24, 0x0F, 0x1E, 0x04, 0xCF, 0x78, 0x0E, 0x0F, 0x90, 0x27, 0x43, 0x51, + 0x2A, 0x00, 0x01, 0xFD, 0x91, 0xFE, 0x56, 0xFF, 0x4D, 0x00, 0xCF, 0x00, + 0x10, 0x00, 0x00, 0x65, 0x33, 0x11, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, + 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0xFE, 0x76, 0xD7, 0x01, + 0xA3, 0x98, 0x1D, 0x43, 0x20, 0x14, 0x25, 0x12, 0x2C, 0x45, 0x29, 0xCF, + 0xFE, 0xE8, 0xAA, 0xB7, 0x06, 0x09, 0xBB, 0x04, 0x02, 0x1F, 0x45, 0x39, + 0x00, 0x01, 0xFE, 0xAA, 0xFE, 0x56, 0x00, 0x64, 0x00, 0xCF, 0x00, 0x10, + 0x00, 0x00, 0x43, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x1A, 0x99, 0xA3, 0xD6, 0x28, + 0x46, 0x2D, 0x12, 0x24, 0x13, 0x1F, 0x43, 0xFE, 0x56, 0x01, 0xB6, 0xAA, + 0x01, 0x18, 0xFE, 0xE8, 0x37, 0x45, 0x21, 0x02, 0x04, 0xBB, 0x08, 0x06, + 0x00, 0x01, 0xFD, 0x24, 0xFD, 0xF2, 0xFE, 0x31, 0xFF, 0xBA, 0x00, 0x0F, + 0x00, 0x00, 0x45, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x33, 0x15, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0xFD, 0x24, 0xAB, 0x18, 0x1D, 0x0C, + 0x19, 0x08, 0x0E, 0x2A, 0x20, 0x4C, 0x69, 0x46, 0xFE, 0xF5, 0x20, 0x22, + 0x02, 0x70, 0x05, 0x08, 0x58, 0x64, 0xFF, 0xFF, 0xFD, 0x53, 0x04, 0x79, + 0xFE, 0x04, 0x06, 0x24, 0x04, 0x07, 0x0B, 0x31, 0xFC, 0xFC, 0x00, 0x00, + 0xFF, 0xFF, 0xFC, 0xBF, 0x04, 0x79, 0xFE, 0x93, 0x06, 0x24, 0x04, 0x27, + 0x0B, 0x31, 0xFC, 0x68, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x31, 0xFD, 0x8B, + 0x00, 0x00, 0xFF, 0xFF, 0xFD, 0x52, 0xFE, 0x0B, 0xFE, 0x03, 0xFF, 0xB6, + 0x04, 0x07, 0x0B, 0x31, 0xFC, 0xFB, 0xF9, 0x92, 0xFF, 0xFF, 0x00, 0x85, + 0xFE, 0x8F, 0x02, 0xBE, 0xFF, 0x3D, 0x04, 0x07, 0x06, 0xEB, 0x00, 0x00, + 0xF9, 0x9B, 0xFF, 0xFF, 0xFB, 0xB5, 0x06, 0x2E, 0xFF, 0x74, 0x06, 0xFC, + 0x04, 0x07, 0x06, 0x05, 0xFB, 0xB5, 0x06, 0xFC, 0x00, 0x02, 0xFB, 0xA1, + 0x05, 0xD9, 0xFF, 0x45, 0x07, 0x89, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x43, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0xBB, 0xFC, 0x5C, 0x03, + 0xA4, 0xFC, 0x5C, 0x06, 0x74, 0x9B, 0x9B, 0x01, 0x15, 0x9B, 0x9B, 0xFF, + 0xFF, 0xFD, 0x1F, 0xFE, 0x1D, 0xFD, 0xEF, 0xFF, 0xAC, 0x04, 0x07, 0x0B, + 0x33, 0xFC, 0xE5, 0xF9, 0xC7, 0xFF, 0xFF, 0x00, 0x3D, 0xFD, 0xCF, 0x01, + 0x3B, 0xFF, 0xAF, 0x04, 0x07, 0x0A, 0xAB, 0x00, 0x00, 0xF9, 0x4E, 0xFF, + 0xFF, 0xFC, 0xA9, 0xFD, 0xDF, 0xFE, 0xA5, 0xFF, 0xBE, 0x04, 0x07, 0x0A, + 0x90, 0xFC, 0x51, 0xF9, 0x5D, 0x00, 0x02, 0xFB, 0xF6, 0xFE, 0x93, 0xFF, + 0x68, 0xFF, 0x89, 0x00, 0x0D, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x23, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0x05, + 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, + 0x06, 0xFD, 0xEC, 0x7B, 0x8B, 0x70, 0x70, 0x8C, 0x7C, 0x43, 0x3D, 0x3D, + 0x43, 0xFE, 0x85, 0x7B, 0x8B, 0x70, 0x70, 0x8B, 0x7B, 0x43, 0x3D, 0x3C, + 0x44, 0xFE, 0x93, 0x6F, 0x87, 0x87, 0x6F, 0x3D, 0x3F, 0x3F, 0x3D, 0x6F, + 0x87, 0x87, 0x6F, 0x3D, 0x3F, 0x3F, 0xFF, 0xFF, 0xFC, 0x5F, 0x01, 0x97, + 0xFE, 0xEB, 0x02, 0x90, 0x04, 0x07, 0x06, 0xEC, 0xFB, 0xB4, 0xFC, 0xBA, + 0xFF, 0xFF, 0xFC, 0x60, 0xFE, 0x53, 0xFE, 0xEC, 0xFF, 0x4B, 0x04, 0x07, + 0x06, 0xEC, 0xFB, 0xB5, 0xF9, 0x75, 0xFF, 0xFF, 0xFB, 0xB3, 0xFE, 0x9D, + 0xFF, 0x72, 0xFF, 0x6B, 0x04, 0x07, 0x06, 0x05, 0xFB, 0xB3, 0xFF, 0x6B, + 0x00, 0x02, 0xFB, 0x9E, 0xFD, 0xF1, 0xFF, 0x45, 0xFF, 0xAD, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x47, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, + 0xBB, 0xFC, 0x59, 0x03, 0xA7, 0xFC, 0x59, 0x53, 0xB1, 0xB1, 0xFE, 0xF5, + 0xB1, 0xB1, 0x00, 0x02, 0xFC, 0xBA, 0x04, 0xE4, 0xFE, 0x9D, 0x06, 0xC5, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x27, 0x01, 0x17, 0x03, 0x01, + 0x37, 0x01, 0xFD, 0x23, 0x69, 0x01, 0x7C, 0x67, 0x69, 0xFE, 0x86, 0x6C, + 0x01, 0x77, 0x04, 0xE6, 0x67, 0x01, 0x77, 0x69, 0xFE, 0x89, 0x01, 0x78, + 0x69, 0xFE, 0x88, 0x00, 0x02, 0x00, 0x28, 0x04, 0xCF, 0x02, 0x21, 0x07, + 0x5B, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x13, 0x21, 0x01, 0x03, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x32, + 0xC7, 0x01, 0x28, 0xFE, 0xE7, 0xE0, 0x4D, 0x3F, 0x42, 0x49, 0x4B, 0x40, + 0x40, 0x4C, 0x04, 0xCF, 0x01, 0x31, 0xFE, 0xCF, 0x02, 0x0C, 0x37, 0x49, + 0x4B, 0x35, 0x37, 0x48, 0x48, 0x00, 0x02, 0x00, 0x5E, 0x04, 0xC1, 0x03, + 0x22, 0x07, 0x10, 0x00, 0x08, 0x00, 0x14, 0x00, 0x00, 0x41, 0x17, 0x37, + 0x33, 0x15, 0x03, 0x23, 0x03, 0x35, 0x25, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x36, 0x89, 0x89, 0xDA, 0xFA, + 0xD4, 0xF6, 0x01, 0x61, 0x3C, 0x53, 0x53, 0x3C, 0x3C, 0x53, 0x53, 0x05, + 0xD6, 0xA2, 0xA2, 0x03, 0xFE, 0xEE, 0x01, 0x12, 0x03, 0x2E, 0x4E, 0x38, + 0x39, 0x4D, 0x4D, 0x39, 0x38, 0x4E, 0xFF, 0xFF, 0x00, 0x5E, 0x06, 0x65, + 0x03, 0x22, 0x08, 0xB4, 0x06, 0x07, 0x0B, 0x19, 0x00, 0x00, 0x01, 0xA4, + 0x00, 0x03, 0x00, 0x58, 0x04, 0x82, 0x02, 0x77, 0x07, 0x67, 0x00, 0x03, + 0x00, 0x13, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x37, 0x33, 0x07, 0x03, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x01, 0x01, 0x92, 0xE4, 0xC7, 0x5A, 0x47, 0x73, 0x44, 0x44, + 0x73, 0x47, 0x48, 0x73, 0x43, 0x43, 0x73, 0x48, 0x2F, 0x3E, 0x3E, 0x2F, + 0x2D, 0x40, 0x40, 0x06, 0xA1, 0xC6, 0xC6, 0xFD, 0xE1, 0x3F, 0x6D, 0x44, + 0x43, 0x6C, 0x40, 0x40, 0x6C, 0x44, 0x43, 0x6C, 0x40, 0x82, 0x40, 0x2D, + 0x2E, 0x40, 0x3F, 0x2E, 0x2E, 0x40, 0x00, 0x03, 0x00, 0x58, 0x06, 0x09, + 0x02, 0x76, 0x08, 0xDB, 0x00, 0x03, 0x00, 0x13, 0x00, 0x1F, 0x00, 0x00, + 0x41, 0x37, 0x33, 0x07, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x00, 0x92, 0xE4, + 0xC7, 0x59, 0x48, 0x73, 0x43, 0x43, 0x73, 0x48, 0x49, 0x72, 0x43, 0x43, + 0x72, 0x49, 0x2F, 0x3E, 0x3E, 0x2F, 0x2E, 0x3F, 0x3F, 0x08, 0x15, 0xC6, + 0xC6, 0xFD, 0xF4, 0x3E, 0x6A, 0x41, 0x42, 0x6A, 0x3E, 0x3E, 0x6A, 0x42, + 0x41, 0x6A, 0x3E, 0x7F, 0x3D, 0x2E, 0x2D, 0x3D, 0x3D, 0x2D, 0x2D, 0x3E, + 0x00, 0x03, 0x00, 0x88, 0x04, 0xBF, 0x03, 0x41, 0x07, 0x12, 0x00, 0x17, + 0x00, 0x23, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, 0x23, 0x22, + 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x37, 0x33, 0x06, 0x06, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x02, 0x73, 0x2C, 0x49, 0x3D, 0x34, 0x16, 0x1D, + 0x1D, 0x02, 0x97, 0x03, 0x64, 0x58, 0x2D, 0x47, 0x3A, 0x34, 0x19, 0x1F, + 0x1D, 0x04, 0x93, 0x03, 0x68, 0x0F, 0x3B, 0x50, 0x50, 0x3B, 0x3A, 0x50, + 0x50, 0xFE, 0x21, 0x3A, 0x50, 0x50, 0x3A, 0x3B, 0x50, 0x50, 0x04, 0xBF, + 0x1C, 0x26, 0x1C, 0x34, 0x25, 0x70, 0x80, 0x1C, 0x26, 0x1C, 0x2B, 0x2E, + 0x70, 0x80, 0x01, 0x4E, 0x4B, 0x37, 0x38, 0x4B, 0x4B, 0x38, 0x37, 0x4B, + 0x4B, 0x37, 0x38, 0x4B, 0x4B, 0x38, 0x37, 0x4B, 0xFF, 0xFF, 0x00, 0x88, + 0x04, 0xBF, 0x03, 0x41, 0x07, 0x12, 0x06, 0x06, 0x0B, 0x1D, 0x00, 0x00, + 0x00, 0x02, 0x00, 0xAB, 0x04, 0xBF, 0x03, 0x38, 0x06, 0xD4, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, + 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, + 0x06, 0x06, 0x13, 0x15, 0x21, 0x35, 0x02, 0x7A, 0x2C, 0x49, 0x3E, 0x33, + 0x16, 0x1D, 0x1E, 0x02, 0x96, 0x03, 0x64, 0x58, 0x2D, 0x47, 0x3A, 0x34, + 0x19, 0x1F, 0x1D, 0x03, 0x94, 0x03, 0x68, 0x41, 0xFD, 0xC6, 0x04, 0xBF, + 0x1D, 0x26, 0x1D, 0x35, 0x26, 0x72, 0x82, 0x1D, 0x26, 0x1D, 0x2D, 0x2E, + 0x73, 0x81, 0x02, 0x15, 0x9A, 0x9A, 0x00, 0x02, 0x00, 0x28, 0x06, 0x5F, + 0x02, 0x80, 0x07, 0xE1, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x13, + 0x33, 0x03, 0x01, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x01, 0x12, 0x91, 0xDD, 0xCD, 0xFE, 0x75, 0x47, 0x3B, 0x3E, + 0x45, 0x45, 0x3E, 0x3C, 0x46, 0x06, 0x5F, 0x01, 0x03, 0xFE, 0xFD, 0x01, + 0x0F, 0x30, 0x43, 0x44, 0x2F, 0x30, 0x44, 0x45, 0x00, 0x02, 0x00, 0x67, + 0x04, 0xA6, 0x02, 0xEF, 0x07, 0x12, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x33, 0x14, 0x06, 0x06, 0x03, 0x13, 0x33, 0x03, 0x01, 0xAB, 0x5B, 0x93, + 0x56, 0xA1, 0x5C, 0x47, 0x47, 0x5C, 0xA1, 0x55, 0x93, 0xB4, 0x90, 0xE5, + 0xCE, 0x04, 0xA6, 0x50, 0x88, 0x54, 0x42, 0x55, 0x55, 0x42, 0x54, 0x88, + 0x50, 0x01, 0x56, 0x01, 0x16, 0xFE, 0xEA, 0x00, 0x02, 0x00, 0x66, 0x04, + 0xA6, 0x02, 0xEE, 0x07, 0x12, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, + 0x14, 0x06, 0x06, 0x03, 0x23, 0x03, 0x33, 0x01, 0xAA, 0x5C, 0x93, 0x55, + 0xA1, 0x5C, 0x47, 0x47, 0x5C, 0xA1, 0x56, 0x93, 0x03, 0xA7, 0xCE, 0xE5, + 0x04, 0xA6, 0x50, 0x88, 0x54, 0x42, 0x55, 0x55, 0x42, 0x54, 0x88, 0x50, + 0x01, 0x56, 0x01, 0x16, 0x00, 0x02, 0x00, 0x6A, 0x04, 0xAA, 0x02, 0xF8, + 0x07, 0x05, 0x00, 0x0F, 0x00, 0x27, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, + 0x13, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x01, 0xA9, + 0x5C, 0x90, 0x53, 0x9A, 0x5D, 0x48, 0x47, 0x5D, 0xA1, 0x57, 0x93, 0x37, + 0x2C, 0x49, 0x3E, 0x33, 0x16, 0x1D, 0x1E, 0x02, 0x96, 0x03, 0x64, 0x58, + 0x2C, 0x47, 0x3B, 0x33, 0x1A, 0x1F, 0x1D, 0x03, 0x93, 0x02, 0x68, 0x04, + 0xAA, 0x50, 0x88, 0x53, 0x42, 0x55, 0x55, 0x42, 0x53, 0x88, 0x50, 0x01, + 0x70, 0x1B, 0x24, 0x1B, 0x32, 0x23, 0x6B, 0x7B, 0x1B, 0x24, 0x1C, 0x2B, + 0x2C, 0x6D, 0x7A, 0x00, 0x02, 0x00, 0x44, 0x04, 0xB0, 0x03, 0x9E, 0x07, + 0x13, 0x00, 0x08, 0x00, 0x0C, 0x00, 0x00, 0x41, 0x23, 0x35, 0x13, 0x33, + 0x13, 0x15, 0x23, 0x27, 0x37, 0x13, 0x33, 0x03, 0x01, 0x1C, 0xD8, 0xF5, + 0xD5, 0xF9, 0xD9, 0x8A, 0x85, 0x8F, 0xE6, 0xCE, 0x04, 0xB0, 0x02, 0x01, + 0x23, 0xFE, 0xDD, 0x02, 0xAA, 0xA2, 0x01, 0x17, 0xFE, 0xE9, 0x00, 0x02, + 0x00, 0x44, 0x04, 0xB0, 0x03, 0x19, 0x07, 0x13, 0x00, 0x08, 0x00, 0x0C, + 0x00, 0x00, 0x41, 0x23, 0x35, 0x13, 0x33, 0x13, 0x15, 0x23, 0x27, 0x37, + 0x03, 0x33, 0x13, 0x01, 0x1C, 0xD8, 0xF5, 0xD5, 0xF9, 0xD9, 0x8A, 0xCE, + 0xCE, 0xE6, 0x8F, 0x04, 0xB0, 0x02, 0x01, 0x23, 0xFE, 0xDD, 0x02, 0xAA, + 0xA2, 0x01, 0x17, 0xFE, 0xE9, 0x00, 0x02, 0x00, 0x44, 0x04, 0xB0, 0x03, + 0x11, 0x07, 0x13, 0x00, 0x08, 0x00, 0x15, 0x00, 0x00, 0x41, 0x23, 0x35, + 0x13, 0x33, 0x13, 0x15, 0x23, 0x27, 0x25, 0x23, 0x37, 0x36, 0x26, 0x23, + 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x07, 0x01, 0x1C, 0xD8, 0xF5, 0xD5, + 0xF9, 0xD9, 0x8A, 0x01, 0x1D, 0x96, 0x3D, 0x08, 0x08, 0x0F, 0x8A, 0x8D, + 0x5B, 0x57, 0x03, 0x25, 0x04, 0xB0, 0x02, 0x01, 0x23, 0xFE, 0xDD, 0x02, + 0xAA, 0xA2, 0x73, 0x0E, 0x0E, 0x88, 0x41, 0x64, 0x35, 0x00, 0x02, 0x00, + 0x44, 0x04, 0xB0, 0x03, 0x07, 0x07, 0x05, 0x00, 0x08, 0x00, 0x20, 0x00, + 0x00, 0x41, 0x23, 0x35, 0x13, 0x33, 0x13, 0x15, 0x23, 0x27, 0x37, 0x22, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x01, 0x1C, 0xD8, 0xF5, + 0xD5, 0xF9, 0xD9, 0x8A, 0x8A, 0x2C, 0x4A, 0x3D, 0x33, 0x17, 0x1C, 0x1E, + 0x02, 0x96, 0x03, 0x64, 0x57, 0x2D, 0x47, 0x3B, 0x33, 0x1A, 0x1F, 0x1C, + 0x04, 0x93, 0x02, 0x68, 0x04, 0xB0, 0x02, 0x01, 0x23, 0xFE, 0xDD, 0x02, + 0xAA, 0xC0, 0x1B, 0x24, 0x1B, 0x32, 0x23, 0x6B, 0x7B, 0x1B, 0x25, 0x1B, + 0x2A, 0x2C, 0x6C, 0x7A, 0x00, 0x01, 0x00, 0x98, 0x04, 0x9E, 0x01, 0x6B, + 0x06, 0x1C, 0x00, 0x03, 0x00, 0x00, 0x53, 0x11, 0x33, 0x03, 0x98, 0xD3, + 0x35, 0x04, 0x9E, 0x01, 0x7E, 0xFE, 0x82, 0xFF, 0xFF, 0x00, 0x78, 0xFE, + 0x74, 0x02, 0x15, 0xFF, 0xA8, 0x04, 0x07, 0x06, 0xE8, 0x00, 0x14, 0xF9, + 0xC0, 0x00, 0x01, 0x00, 0x6D, 0x03, 0x3E, 0x01, 0xB3, 0x04, 0x3A, 0x00, + 0x03, 0x00, 0x00, 0x53, 0x21, 0x07, 0x23, 0x6D, 0x01, 0x46, 0x98, 0x17, + 0x04, 0x3A, 0xFC, 0x00, 0x02, 0x00, 0x6D, 0x00, 0x00, 0x01, 0xB3, 0x04, + 0x3A, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x21, 0x07, 0x23, 0x03, + 0x37, 0x33, 0x17, 0x6D, 0x01, 0x46, 0x98, 0x17, 0x97, 0x97, 0x17, 0x98, + 0x04, 0x3A, 0xFC, 0xFC, 0xC2, 0xFD, 0xFD, 0x00, 0x01, 0x00, 0x70, 0x03, + 0xE0, 0x01, 0xAF, 0x06, 0x18, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x2E, 0x02, + 0x27, 0x27, 0x33, 0x17, 0x1E, 0x02, 0x17, 0x01, 0x01, 0x11, 0x38, 0x34, + 0x0B, 0x09, 0xE5, 0x05, 0x07, 0x20, 0x24, 0x0A, 0x03, 0xE0, 0x2E, 0xA0, + 0xBF, 0x5A, 0x51, 0x52, 0x63, 0xBD, 0x9A, 0x2C, 0x00, 0x01, 0x00, 0x6F, + 0x03, 0xE5, 0x01, 0xB0, 0x06, 0x2D, 0x00, 0x0A, 0x00, 0x00, 0x53, 0x35, + 0x34, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x15, 0x6F, 0x30, 0x55, + 0x34, 0x88, 0x28, 0x32, 0x03, 0xE5, 0xC0, 0x45, 0x91, 0x83, 0x2F, 0x4E, + 0x42, 0x96, 0x61, 0xC1, 0x00, 0x02, 0x00, 0x78, 0x02, 0x8D, 0x03, 0x26, + 0x07, 0x0F, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x53, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x23, 0x23, 0x35, 0x33, 0x3E, + 0x02, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x13, 0x33, 0x11, + 0x23, 0x78, 0x02, 0xB0, 0x92, 0x79, 0xA0, 0x51, 0xB6, 0xB5, 0x3E, 0x2E, + 0x44, 0x47, 0x1C, 0x38, 0x5C, 0x46, 0x39, 0x06, 0x29, 0xD4, 0xD4, 0x05, + 0xF0, 0x82, 0x9D, 0x64, 0xB2, 0x73, 0x99, 0xB6, 0xD7, 0xA9, 0x01, 0x3D, + 0x65, 0x3C, 0x9A, 0x61, 0x81, 0x44, 0x30, 0xFE, 0x19, 0xFE, 0x84, 0x00, + 0x02, 0x00, 0x78, 0x02, 0x8D, 0x03, 0x26, 0x07, 0x0F, 0x00, 0x19, 0x00, + 0x1D, 0x00, 0x00, 0x41, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, 0x23, 0x06, 0x26, 0x35, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x01, 0x33, 0x11, 0x23, 0x03, 0x26, 0xC3, + 0x06, 0x3A, 0x44, 0x5D, 0x37, 0x1C, 0x49, 0x43, 0x2B, 0x3D, 0xB5, 0xB4, + 0x4C, 0x9F, 0x7E, 0x91, 0xB1, 0xFE, 0x43, 0xD6, 0xD6, 0x05, 0xF0, 0x31, + 0x43, 0x81, 0x61, 0x9A, 0x3C, 0x65, 0x3E, 0xA9, 0x01, 0xD8, 0xB6, 0x99, + 0x6E, 0xB2, 0x69, 0x9E, 0xFD, 0x98, 0xFE, 0x84, 0xFF, 0xFF, 0x00, 0x8F, + 0xFE, 0x74, 0x02, 0x2C, 0xFF, 0xA8, 0x04, 0x07, 0x06, 0xE9, 0x00, 0x37, + 0xF9, 0xC0, 0x00, 0x01, 0x00, 0x57, 0x04, 0x79, 0x01, 0x08, 0x06, 0x24, + 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x08, 0xB1, 0x06, + 0x24, 0xFE, 0x55, 0x01, 0xAB, 0xFF, 0xFF, 0x00, 0x85, 0xFE, 0x8F, 0x02, + 0xBE, 0xFF, 0x3D, 0x04, 0x07, 0x06, 0xEB, 0x00, 0x00, 0xF9, 0x9B, 0x00, + 0x01, 0x00, 0x3A, 0x04, 0x56, 0x01, 0x0A, 0x05, 0xE5, 0x00, 0x0D, 0x00, + 0x00, 0x41, 0x06, 0x26, 0x35, 0x34, 0x36, 0x33, 0x15, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x33, 0x01, 0x0A, 0x55, 0x7B, 0x7B, 0x55, 0x27, 0x33, 0x33, + 0x27, 0x04, 0x57, 0x01, 0x6C, 0x57, 0x59, 0x73, 0x6F, 0x35, 0x28, 0x24, + 0x33, 0xFF, 0xFF, 0x00, 0x3D, 0x04, 0x82, 0x01, 0x3B, 0x06, 0x61, 0x04, + 0x06, 0x0A, 0xAB, 0x00, 0x00, 0x00, 0x01, 0x00, 0x57, 0xFD, 0xF8, 0x01, + 0x08, 0xFF, 0x9B, 0x00, 0x03, 0x00, 0x00, 0x45, 0x11, 0x23, 0x11, 0x01, + 0x08, 0xB1, 0x65, 0xFE, 0x5D, 0x01, 0xA3, 0x00, 0x07, 0xFB, 0x5A, 0x04, + 0xB2, 0xFF, 0x08, 0x06, 0xDA, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0C, 0x00, + 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x21, 0x15, + 0x21, 0x03, 0x33, 0x11, 0x23, 0x01, 0x33, 0x03, 0x23, 0x27, 0x01, 0x33, + 0x13, 0x07, 0x23, 0x07, 0x11, 0x33, 0x11, 0x01, 0x21, 0x07, 0x21, 0x03, + 0x23, 0x35, 0x26, 0x36, 0x33, 0x33, 0x36, 0x16, 0x15, 0x15, 0x23, 0x35, + 0x26, 0x26, 0x23, 0x23, 0x22, 0x06, 0x15, 0xFB, 0xC7, 0x01, 0xAC, 0xFE, + 0x54, 0x6D, 0x96, 0x96, 0x02, 0xD9, 0xA4, 0xE5, 0x4A, 0x12, 0xFE, 0xFF, + 0xA4, 0x9F, 0x13, 0x4A, 0x10, 0x92, 0xFE, 0xFD, 0x01, 0x72, 0x25, 0xFE, + 0xD7, 0x29, 0x91, 0x01, 0x7F, 0x80, 0xA8, 0x72, 0x8C, 0x91, 0x01, 0x30, + 0x3C, 0xA8, 0x33, 0x3A, 0x05, 0xEA, 0x70, 0x01, 0x60, 0xFD, 0xD8, 0x02, + 0x28, 0xFE, 0x9E, 0x37, 0x01, 0x2B, 0xFE, 0xD2, 0x34, 0xC6, 0x01, 0x23, + 0xFE, 0xDD, 0x02, 0x28, 0x6E, 0xFE, 0x46, 0x58, 0x73, 0x6D, 0x01, 0x61, + 0x80, 0x58, 0x58, 0x40, 0x30, 0x28, 0x48, 0x00, 0x02, 0x00, 0x20, 0x03, + 0x80, 0x02, 0xE8, 0x05, 0xD2, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x53, + 0x13, 0x33, 0x13, 0x23, 0x27, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, + 0x07, 0x27, 0x35, 0x21, 0x15, 0x20, 0xEF, 0xE6, 0xF3, 0xC2, 0x59, 0x1E, + 0x30, 0x13, 0x2C, 0x13, 0x2F, 0x1F, 0x5A, 0x17, 0x01, 0x7C, 0x03, 0x80, + 0x02, 0x52, 0xFD, 0xAE, 0xDA, 0x4B, 0xA1, 0x53, 0x51, 0xA3, 0x4B, 0xDA, + 0x6E, 0x76, 0x76, 0x00, 0x01, 0xFF, 0xE0, 0xFF, 0xBF, 0x05, 0x41, 0x06, + 0x13, 0x00, 0x03, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x79, 0x99, 0x04, + 0xC8, 0x99, 0x41, 0x7E, 0x05, 0xD6, 0x7E, 0x00, 0x01, 0x00, 0x28, 0x02, + 0xA2, 0x02, 0xBA, 0x03, 0x30, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, 0x21, + 0x15, 0x28, 0x02, 0x92, 0x02, 0xA2, 0x8E, 0x8E, 0x00, 0x01, 0x00, 0x82, + 0x02, 0x91, 0x03, 0x36, 0x03, 0x0F, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, + 0x21, 0x15, 0x82, 0x02, 0xB4, 0x02, 0x91, 0x7E, 0x7E, 0x00, 0x01, 0x00, + 0x83, 0x01, 0x94, 0x01, 0x32, 0x04, 0x3F, 0x00, 0x03, 0x00, 0x00, 0x53, + 0x11, 0x33, 0x11, 0x83, 0xAF, 0x01, 0x94, 0x02, 0xAB, 0xFD, 0x55, 0x00, + 0x01, 0x00, 0x7B, 0xFE, 0xC0, 0x02, 0x0F, 0x00, 0xD3, 0x00, 0x05, 0x00, + 0x00, 0x53, 0x13, 0x23, 0x35, 0x21, 0x03, 0x7B, 0x62, 0x4B, 0x01, 0x7D, + 0xA3, 0xFE, 0xC0, 0x01, 0x40, 0xD3, 0xFD, 0xED, 0x00, 0x01, 0x00, 0x32, + 0xFE, 0xC0, 0x01, 0x86, 0x00, 0xE2, 0x00, 0x05, 0x00, 0x00, 0x53, 0x11, + 0x23, 0x35, 0x21, 0x03, 0x84, 0x52, 0x01, 0x54, 0x09, 0xFE, 0xC0, 0x01, + 0x40, 0xE2, 0xFD, 0xDE, 0x00, 0x01, 0x00, 0x80, 0xFE, 0xC0, 0x01, 0x82, + 0x00, 0x40, 0x00, 0x03, 0x00, 0x00, 0x53, 0x03, 0x21, 0x03, 0x83, 0x03, + 0x01, 0x02, 0x03, 0xFE, 0xC0, 0x01, 0x80, 0xFE, 0x80, 0x00, 0x01, 0x00, + 0x32, 0xFE, 0x5B, 0x02, 0x15, 0x00, 0xBD, 0x00, 0x11, 0x00, 0x00, 0x53, + 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x23, + 0x35, 0x21, 0x15, 0x06, 0x06, 0xB3, 0x21, 0x40, 0x20, 0x03, 0x1A, 0x37, + 0x1A, 0x3C, 0x45, 0x5C, 0x01, 0x50, 0x01, 0xB5, 0xFE, 0x5B, 0x02, 0x01, + 0xCC, 0x01, 0x01, 0x4B, 0x4E, 0x3F, 0xBD, 0xFC, 0xB1, 0xB5, 0x00, 0x01, + 0x00, 0xC5, 0x01, 0x8A, 0x03, 0xD7, 0x02, 0xA3, 0x00, 0x15, 0x00, 0x00, + 0x41, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, + 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0x01, 0x16, + 0x51, 0x44, 0x76, 0x49, 0x3B, 0x62, 0x52, 0x21, 0x30, 0x53, 0x25, 0x57, + 0x40, 0x74, 0x50, 0x3C, 0x61, 0x4E, 0x23, 0x2A, 0x57, 0x01, 0x8A, 0x42, + 0x56, 0x61, 0x27, 0x26, 0x2C, 0x41, 0x3B, 0x5E, 0x5E, 0x26, 0x27, 0x35, + 0x00, 0x01, 0x00, 0x3A, 0xFF, 0xD0, 0x04, 0x67, 0x04, 0x5D, 0x00, 0x03, + 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0xA5, 0x6B, 0x03, 0xC3, 0x6A, 0x30, + 0x60, 0x04, 0x2D, 0x5F, 0x00, 0x01, 0x00, 0x75, 0x00, 0x00, 0x04, 0x32, + 0x04, 0x2E, 0x00, 0x07, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x75, 0xFF, 0x01, 0xC0, 0xFE, 0x04, 0x2E, 0xFC, 0xAB, 0x03, + 0x55, 0xFB, 0xD2, 0xFF, 0xFF, 0xFF, 0x8F, 0x00, 0x00, 0x02, 0x5A, 0x04, + 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, + 0x20, 0xFF, 0x6A, 0x00, 0x01, 0x00, 0x7C, 0x02, 0x32, 0x01, 0x4B, 0x05, + 0x56, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x4B, 0xCF, + 0x05, 0x56, 0xFC, 0xDC, 0x03, 0x24, 0x00, 0x01, 0x00, 0x27, 0x01, 0x50, + 0x01, 0x96, 0x05, 0xB3, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x33, 0x11, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0xC9, 0xCD, 0x01, 0x84, 0x85, 0x19, 0x34, 0x18, 0x0E, 0x1E, 0x0F, 0x31, + 0x36, 0x05, 0xB3, 0xFC, 0xCD, 0x8E, 0xA2, 0x05, 0x06, 0xAA, 0x01, 0x05, + 0x3D, 0x44, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEB, 0x06, 0x73, 0x04, 0x42, + 0x04, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x49, 0x04, 0x28, + 0xFF, 0x9C, 0x00, 0x01, 0x00, 0x40, 0xFF, 0x97, 0x04, 0x12, 0x03, 0x98, + 0x00, 0x18, 0x00, 0x00, 0x45, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x01, 0x78, 0x6B, 0x86, 0x9E, 0x9F, 0x85, + 0x86, 0x9D, 0x80, 0x64, 0xC5, 0x92, 0x99, 0xF1, 0x8D, 0x8E, 0xFD, 0xA4, + 0x69, 0xEC, 0x93, 0x7E, 0x7F, 0x97, 0x9D, 0x88, 0xA8, 0xEE, 0x7D, 0x83, + 0xE9, 0x98, 0x97, 0xE5, 0x81, 0x00, 0x02, 0x00, 0x6A, 0x00, 0x00, 0x01, + 0xA9, 0x05, 0xEB, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x73, 0x13, 0x33, + 0x13, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x7D, 0x16, 0xED, 0x16, 0x8D, 0x43, 0x5C, 0x5C, 0x43, 0x43, 0x5D, + 0x5D, 0x04, 0x1E, 0xFB, 0xE2, 0x04, 0xAE, 0x5C, 0x42, 0x42, 0x5D, 0x5D, + 0x42, 0x42, 0x5C, 0x00, 0x01, 0x00, 0x81, 0x00, 0x00, 0x05, 0x23, 0x05, + 0xD2, 0x00, 0x07, 0x00, 0x00, 0x61, 0x21, 0x11, 0x21, 0x11, 0x21, 0x11, + 0x21, 0x05, 0x23, 0xFB, 0x5E, 0x01, 0x0A, 0x02, 0x8E, 0x01, 0x0A, 0x05, + 0xD2, 0xFB, 0x12, 0x04, 0xEE, 0x00, 0x02, 0x00, 0x67, 0x04, 0xA6, 0x02, + 0xEF, 0x07, 0x13, 0x00, 0x0F, 0x00, 0x1C, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, + 0x06, 0x03, 0x23, 0x37, 0x36, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, + 0x16, 0x07, 0x01, 0xAB, 0x5B, 0x93, 0x56, 0xA1, 0x5C, 0x47, 0x47, 0x5C, + 0xA1, 0x55, 0x93, 0x13, 0x96, 0x3E, 0x07, 0x08, 0x0F, 0x89, 0x8C, 0x5B, + 0x58, 0x03, 0x26, 0x04, 0xA6, 0x50, 0x88, 0x54, 0x42, 0x55, 0x55, 0x42, + 0x54, 0x88, 0x50, 0x01, 0x56, 0x73, 0x0E, 0x0E, 0x88, 0x41, 0x64, 0x35, + 0x00, 0x03, 0x00, 0xD8, 0x04, 0xBC, 0x03, 0x78, 0x07, 0x22, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x13, 0x33, 0x03, 0x02, 0xEF, + 0x39, 0x51, 0x51, 0x39, 0x39, 0x50, 0x51, 0xFE, 0x3B, 0x39, 0x51, 0x51, + 0x39, 0x39, 0x50, 0x50, 0x3F, 0x22, 0xDB, 0x69, 0x04, 0xBC, 0x4F, 0x38, + 0x38, 0x4F, 0x4F, 0x38, 0x38, 0x4F, 0x4F, 0x38, 0x38, 0x4F, 0x4F, 0x38, + 0x38, 0x4F, 0x01, 0x41, 0x01, 0x25, 0xFE, 0xDB, 0xFF, 0xFF, 0x00, 0x50, + 0x04, 0xAA, 0x01, 0x71, 0x05, 0xF5, 0x06, 0x06, 0x0A, 0x7E, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x50, 0x04, 0xAA, 0x02, 0x7B, 0x05, 0xF5, 0x06, 0x06, + 0x0A, 0x7F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x50, 0x04, 0xAA, 0x02, 0x9F, + 0x05, 0xF5, 0x06, 0x06, 0x0A, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x50, + 0x04, 0xAA, 0x02, 0xBF, 0x05, 0xF5, 0x06, 0x06, 0x0A, 0x81, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x50, 0x04, 0xAA, 0x02, 0xCC, 0x05, 0xF5, 0x06, 0x06, + 0x0A, 0x82, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x04, 0xAA, 0x02, 0x77, + 0x07, 0x2F, 0x06, 0x06, 0x0A, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, + 0x04, 0xAA, 0x02, 0x77, 0x07, 0x2F, 0x06, 0x06, 0x0A, 0x84, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x2D, 0x04, 0xB7, 0x01, 0x3A, 0x05, 0xEA, 0x06, 0x06, + 0x0A, 0x88, 0x05, 0x02, 0x00, 0x02, 0x00, 0x78, 0x04, 0xE5, 0x02, 0xBE, + 0x07, 0x26, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x37, 0x03, 0x33, 0x13, 0x02, 0xBE, 0xFD, 0xC7, 0xC9, 0xD6, 0xF0, 0x95, + 0x05, 0x92, 0xAD, 0xAD, 0x79, 0x01, 0x1B, 0xFE, 0xE5, 0x00, 0x01, 0x00, + 0x5E, 0x04, 0xCF, 0x01, 0xFB, 0x05, 0xF4, 0x00, 0x03, 0x00, 0x00, 0x41, + 0x03, 0x21, 0x13, 0x01, 0x40, 0xE2, 0x01, 0x00, 0x9D, 0x04, 0xCF, 0x01, + 0x25, 0xFE, 0xDB, 0x00, 0x01, 0x00, 0x5E, 0x04, 0xCF, 0x01, 0xFB, 0x05, + 0xF4, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x21, 0x03, 0x5E, 0x9D, 0x01, + 0x00, 0xE2, 0x04, 0xCF, 0x01, 0x25, 0xFE, 0xDB, 0x00, 0x01, 0x00, 0x3F, + 0xFE, 0x5B, 0x01, 0xDE, 0x00, 0x19, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x37, 0x05, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x3E, 0x74, 0x8B, 0x4F, 0x3F, + 0x01, 0x04, 0x50, 0x44, 0x28, 0x2A, 0x10, 0x23, 0x0E, 0x0E, 0x21, 0x59, + 0xFE, 0x5B, 0x66, 0x62, 0x4C, 0x72, 0x38, 0x19, 0x3B, 0x4E, 0x2A, 0x21, + 0x23, 0x03, 0x03, 0xA9, 0x04, 0x07, 0x00, 0x01, 0xFF, 0xDE, 0xFE, 0x5B, + 0x03, 0x52, 0x02, 0xE8, 0x00, 0x1D, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, + 0x34, 0x3E, 0x05, 0x35, 0x33, 0x14, 0x0E, 0x05, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xDC, 0x74, 0x8A, 0x57, 0x8F, 0xAB, + 0xAB, 0x8F, 0x57, 0x52, 0x45, 0x71, 0x88, 0x88, 0x71, 0x45, 0x28, 0x2A, + 0x10, 0x22, 0x0F, 0x0E, 0x21, 0x53, 0xFE, 0x5B, 0x67, 0x61, 0x4E, 0x6A, + 0x51, 0x4E, 0x65, 0x93, 0xD9, 0x9D, 0x9F, 0xE8, 0xA4, 0x71, 0x50, 0x41, + 0x42, 0x2C, 0x21, 0x23, 0x03, 0x03, 0xA9, 0x04, 0x07, 0x00, 0x01, 0x00, + 0x3D, 0xFE, 0x5B, 0x03, 0x4F, 0x02, 0x03, 0x00, 0x1C, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x35, 0x34, 0x3E, 0x05, 0x35, 0x33, 0x14, 0x0E, 0x04, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x3B, 0x73, + 0x8B, 0x4D, 0x7D, 0x96, 0x96, 0x7E, 0x4C, 0x52, 0x4E, 0x7A, 0x8A, 0x7A, + 0x4E, 0x28, 0x2A, 0x10, 0x22, 0x0F, 0x0E, 0x21, 0x53, 0xFE, 0x5B, 0x67, + 0x61, 0x47, 0x62, 0x48, 0x40, 0x4B, 0x66, 0x94, 0x6A, 0x7F, 0xB1, 0x7A, + 0x55, 0x44, 0x44, 0x2F, 0x21, 0x23, 0x03, 0x03, 0xA9, 0x04, 0x07, 0x00, + 0x01, 0x00, 0x49, 0xFE, 0x5C, 0x01, 0xDE, 0x00, 0x10, 0x00, 0x13, 0x00, + 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x43, 0x74, + 0x86, 0x4B, 0x45, 0xF8, 0x50, 0x44, 0x28, 0x2A, 0x10, 0x23, 0x0E, 0x0E, + 0x21, 0x53, 0xFE, 0x5C, 0x67, 0x61, 0x47, 0x6F, 0x36, 0x10, 0x3C, 0x4C, + 0x29, 0x21, 0x23, 0x03, 0x02, 0xA9, 0x04, 0x07, 0x00, 0x01, 0x00, 0x5A, + 0xFE, 0x5B, 0x02, 0x36, 0x01, 0x3B, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x01, 0x0E, 0x03, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x5C, 0x7C, 0x86, 0x13, + 0x22, 0x2D, 0x19, 0x01, 0x61, 0x0F, 0x4C, 0x54, 0x3B, 0x28, 0x32, 0x10, + 0x22, 0x0E, 0x0E, 0x20, 0x51, 0xFE, 0x5B, 0x65, 0x60, 0x25, 0x43, 0x3E, + 0x3C, 0x1F, 0x01, 0x1A, 0x4E, 0x8B, 0x7A, 0x6C, 0x2F, 0x21, 0x23, 0x03, + 0x03, 0xA9, 0x04, 0x07, 0x00, 0x01, 0xFF, 0xC1, 0xFE, 0x5B, 0x02, 0x8E, + 0x02, 0x16, 0x00, 0x1C, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x3E, + 0x05, 0x35, 0x33, 0x14, 0x0E, 0x04, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0xC3, 0x7B, 0x87, 0x43, 0x6E, 0x84, 0x83, 0x6F, + 0x42, 0x64, 0x44, 0x6C, 0x7B, 0x6C, 0x44, 0x28, 0x32, 0x0E, 0x1A, 0x0D, + 0x0E, 0x1E, 0x4B, 0xFE, 0x5B, 0x65, 0x60, 0x47, 0x64, 0x4D, 0x47, 0x51, + 0x69, 0x95, 0x68, 0x87, 0xB8, 0x7D, 0x54, 0x43, 0x45, 0x31, 0x21, 0x23, + 0x03, 0x03, 0xA9, 0x04, 0x07, 0x00, 0x01, 0x00, 0x40, 0xFE, 0x5C, 0x01, + 0x9D, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x37, 0x07, 0x06, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, + 0x2C, 0x53, 0x68, 0x31, 0xD8, 0x2A, 0x15, 0x2F, 0x40, 0x12, 0x25, 0x10, + 0x0E, 0x1A, 0x37, 0xFE, 0x5C, 0x39, 0x6A, 0x4A, 0xB7, 0x74, 0x3B, 0x3F, + 0x03, 0x02, 0xB0, 0x04, 0x07, 0x00, 0x01, 0xFF, 0xD9, 0xFE, 0x5B, 0x02, + 0x8E, 0x01, 0xA4, 0x00, 0x1C, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, + 0x3E, 0x05, 0x35, 0x33, 0x14, 0x0E, 0x04, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x17, 0x06, 0x06, 0xDC, 0x7C, 0x87, 0x41, 0x69, 0x7F, 0x7E, + 0x6A, 0x40, 0x64, 0x41, 0x67, 0x73, 0x66, 0x42, 0x29, 0x31, 0x0E, 0x1A, + 0x0D, 0x0E, 0x1D, 0x4C, 0xFE, 0x5B, 0x65, 0x60, 0x47, 0x61, 0x47, 0x3B, + 0x3F, 0x52, 0x75, 0x54, 0x6F, 0x96, 0x63, 0x44, 0x39, 0x41, 0x31, 0x21, + 0x23, 0x03, 0x03, 0xA9, 0x04, 0x07, 0x00, 0x02, 0xFC, 0x9F, 0x05, 0x02, + 0xFF, 0x54, 0x06, 0x7A, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, + 0x21, 0x15, 0x07, 0x11, 0x33, 0x11, 0xFC, 0x9F, 0x02, 0x30, 0x2C, 0xB1, + 0x05, 0xDE, 0x9C, 0x9C, 0xDC, 0x01, 0x78, 0xFE, 0x88, 0x00, 0x01, 0xFA, + 0xEA, 0x01, 0xC0, 0xFF, 0xEE, 0x02, 0x70, 0x00, 0x03, 0x00, 0x00, 0x43, + 0x15, 0x21, 0x35, 0x12, 0xFA, 0xFC, 0x02, 0x70, 0xB0, 0xB0, 0x00, 0x01, + 0x00, 0x70, 0x02, 0x94, 0x03, 0x3A, 0x03, 0x3E, 0x00, 0x03, 0x00, 0x00, + 0x53, 0x35, 0x21, 0x15, 0x70, 0x02, 0xCA, 0x02, 0x94, 0xAA, 0xAA, 0x00, + 0x02, 0xFC, 0xA6, 0xFE, 0x06, 0xFE, 0x56, 0xFF, 0xAE, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x41, 0x11, 0x21, 0x11, 0x01, 0x15, 0x33, 0x35, 0xFC, + 0xA6, 0x01, 0xB0, 0xFE, 0xD6, 0xA2, 0xFE, 0x06, 0x01, 0xA8, 0xFE, 0x58, + 0x01, 0x24, 0x9E, 0x9E, 0xFF, 0xFF, 0xFC, 0xA1, 0xFE, 0x0F, 0xFE, 0x6F, + 0xFF, 0xA2, 0x04, 0x07, 0x0A, 0x2A, 0xFC, 0x19, 0xFD, 0x6F, 0x00, 0x02, + 0xFC, 0x8B, 0xFE, 0x15, 0xFE, 0x5F, 0xFF, 0xBF, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x25, 0x35, 0x21, 0x15, 0xFD, 0xAC, + 0xB3, 0xFE, 0x2C, 0x01, 0xC5, 0xFE, 0x15, 0x01, 0xAA, 0xFE, 0x56, 0x84, + 0xA5, 0xA5, 0x00, 0x02, 0xFC, 0xAC, 0xFE, 0x15, 0xFE, 0x80, 0xFF, 0xBF, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x27, 0x35, + 0x21, 0x15, 0xFC, 0xAC, 0xB1, 0xA2, 0x01, 0xC5, 0xFE, 0x15, 0x01, 0xAA, + 0xFE, 0x56, 0x84, 0xA5, 0xA5, 0xFF, 0xFF, 0xFC, 0xE0, 0xFE, 0x33, 0xFE, + 0xAE, 0xFF, 0xB9, 0x04, 0x07, 0x0A, 0x42, 0xFC, 0x58, 0xFD, 0x93, 0x00, + 0x01, 0xFD, 0x07, 0x04, 0x61, 0xFD, 0xF8, 0x06, 0x91, 0x00, 0x16, 0x00, + 0x00, 0x41, 0x35, 0x16, 0x36, 0x35, 0x34, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x15, 0x22, 0x06, 0x15, 0x14, 0x16, 0x16, 0x15, 0x14, 0x06, + 0xFD, 0x07, 0x2C, 0x1F, 0x24, 0x24, 0x3D, 0x6B, 0x44, 0x20, 0x22, 0x22, + 0x22, 0x81, 0x04, 0x61, 0x88, 0x01, 0x24, 0x13, 0x1B, 0x48, 0x54, 0x2C, + 0x33, 0x3F, 0x1D, 0x88, 0x1B, 0x15, 0x20, 0x48, 0x51, 0x2E, 0x4A, 0x47, + 0x00, 0x01, 0x00, 0x32, 0x02, 0x88, 0x03, 0x86, 0x03, 0x4A, 0x00, 0x03, + 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x32, 0x03, 0x54, 0x02, 0x88, 0xC2, + 0xC2, 0x00, 0x01, 0x00, 0x32, 0x02, 0x88, 0x03, 0x4E, 0x03, 0x4A, 0x00, + 0x03, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x32, 0x03, 0x1C, 0x02, 0x88, + 0xC2, 0xC2, 0x00, 0x01, 0x00, 0x00, 0x02, 0x25, 0x02, 0x33, 0x04, 0x36, + 0x00, 0x03, 0x00, 0x00, 0x51, 0x35, 0x01, 0x15, 0x02, 0x33, 0x02, 0x25, + 0xCB, 0x01, 0x46, 0xCC, 0x00, 0x01, 0x00, 0x00, 0x01, 0xBA, 0x03, 0x29, + 0x04, 0x79, 0x00, 0x03, 0x00, 0x00, 0x51, 0x35, 0x01, 0x15, 0x03, 0x29, + 0x01, 0xBA, 0xEC, 0x01, 0xD3, 0xEC, 0x00, 0x01, 0x00, 0x1F, 0x02, 0x6A, + 0x02, 0xF3, 0x03, 0x63, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, + 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x02, 0x1F, 0x30, 0x51, 0x42, 0x39, + 0x18, 0x20, 0x21, 0x02, 0xA9, 0x04, 0x71, 0x61, 0x31, 0x4F, 0x3F, 0x38, + 0x1C, 0x23, 0x20, 0x03, 0xA5, 0x03, 0x74, 0x02, 0x6A, 0x1D, 0x26, 0x1C, + 0x34, 0x26, 0x72, 0x82, 0x1D, 0x26, 0x1D, 0x2D, 0x2E, 0x73, 0x81, 0x00, + 0x01, 0x00, 0x8E, 0x04, 0xAD, 0x01, 0xA0, 0x06, 0x73, 0x00, 0x0A, 0x00, + 0x00, 0x53, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x15, + 0x8E, 0x2A, 0x3F, 0x1E, 0x8B, 0x1F, 0x33, 0x04, 0xAD, 0x87, 0x50, 0x7B, + 0x59, 0x1B, 0x50, 0x34, 0x74, 0x51, 0x7D, 0x00 +}; + + +inline std::vector inter_medium = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x47, 0x44, 0x45, 0x46, 0x66, 0xD6, 0x60, 0xD7, 0x00, 0x00, 0x02, 0x54, + 0x00, 0x00, 0x03, 0xFA, 0x47, 0x50, 0x4F, 0x53, 0x40, 0x07, 0x46, 0x88, + 0x00, 0x01, 0xAF, 0x08, 0x00, 0x01, 0x72, 0x2C, 0x47, 0x53, 0x55, 0x42, + 0xD4, 0x98, 0x8B, 0x6D, 0x00, 0x00, 0x6B, 0xA0, 0x00, 0x00, 0x5F, 0x94, + 0x4F, 0x53, 0x2F, 0x32, 0x17, 0xB8, 0x65, 0x39, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x00, 0x60, 0x53, 0x54, 0x41, 0x54, 0x57, 0xDB, 0x3F, 0xA5, + 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x00, 0x5A, 0x63, 0x6D, 0x61, 0x70, + 0x4D, 0x8D, 0x9D, 0xF1, 0x00, 0x00, 0xCB, 0x34, 0x00, 0x00, 0x64, 0x8A, + 0x67, 0x61, 0x73, 0x70, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x14, + 0x00, 0x00, 0x00, 0x08, 0x67, 0x6C, 0x79, 0x66, 0xC2, 0xDB, 0x24, 0xC5, + 0x00, 0x03, 0x21, 0x34, 0x00, 0x02, 0x19, 0xE3, 0x68, 0x65, 0x61, 0x64, + 0x32, 0x79, 0x5A, 0xB3, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x00, 0x36, + 0x68, 0x68, 0x65, 0x61, 0x16, 0x35, 0x1F, 0x5F, 0x00, 0x00, 0x01, 0x3C, + 0x00, 0x00, 0x00, 0x24, 0x68, 0x6D, 0x74, 0x78, 0x42, 0xC7, 0xAC, 0x7A, + 0x00, 0x00, 0x10, 0x2C, 0x00, 0x00, 0x2D, 0xB8, 0x6C, 0x6F, 0x63, 0x61, + 0x0B, 0x37, 0x5C, 0xF5, 0x00, 0x00, 0x3D, 0xE4, 0x00, 0x00, 0x2D, 0xBC, + 0x6D, 0x61, 0x78, 0x70, 0x0B, 0x89, 0x00, 0xF6, 0x00, 0x00, 0x01, 0x1C, + 0x00, 0x00, 0x00, 0x20, 0x6E, 0x61, 0x6D, 0x65, 0x74, 0x05, 0x9E, 0xBF, + 0x00, 0x00, 0x06, 0x50, 0x00, 0x00, 0x09, 0xDC, 0x70, 0x6F, 0x73, 0x74, + 0xCF, 0xEB, 0x5F, 0x0C, 0x00, 0x01, 0x2F, 0xC0, 0x00, 0x00, 0x7F, 0x48, + 0x70, 0x72, 0x65, 0x70, 0x68, 0x06, 0x8C, 0x85, 0x00, 0x00, 0x01, 0x0C, + 0x00, 0x00, 0x00, 0x07, 0xB8, 0x01, 0xFF, 0x85, 0xB0, 0x04, 0x8D, 0x00, + 0x00, 0x01, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, + 0x0B, 0x6E, 0x00, 0x84, 0x00, 0x0C, 0x00, 0x70, 0x00, 0x07, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x07, 0xC0, 0xFE, 0x12, + 0x00, 0x00, 0x15, 0x47, 0xF9, 0xDF, 0xF8, 0x98, 0x14, 0x93, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0B, 0x6E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x42, + 0x11, 0x33, 0x85, 0x64, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x03, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xE2, 0x76, 0x87, 0x90, 0x00, 0x00, 0x00, 0x00, + 0xE2, 0x76, 0x87, 0x9D, 0xF9, 0xDF, 0xFD, 0x5E, 0x14, 0x93, 0x08, 0xED, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x02, 0x6F, 0x70, 0x73, 0x7A, + 0x01, 0x38, 0x00, 0x00, 0x77, 0x67, 0x68, 0x74, 0x01, 0x01, 0x00, 0x01, + 0x69, 0x74, 0x61, 0x6C, 0x01, 0x40, 0x00, 0x02, 0x00, 0x22, 0x00, 0x16, + 0x00, 0x06, 0x00, 0x03, 0x00, 0x02, 0x00, 0x02, 0x01, 0x41, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, + 0x01, 0x33, 0x01, 0xF4, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x3F, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0xEE, + 0x01, 0xF4, 0x00, 0x05, 0x00, 0x00, 0x05, 0x33, 0x04, 0xCD, 0x00, 0x00, + 0x00, 0x9A, 0x05, 0x33, 0x04, 0xCD, 0x00, 0x00, 0x02, 0xCD, 0x00, 0xA0, + 0x02, 0x82, 0x00, 0x00, 0x02, 0x00, 0x05, 0x03, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x04, 0xE0, 0x00, 0x02, 0xFF, 0x12, 0x00, 0xA1, 0xFF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x53, 0x4D, 0x53, 0x00, 0xC0, + 0x00, 0x00, 0xFF, 0xFF, 0x07, 0xC0, 0xFE, 0x12, 0x00, 0x00, 0x08, 0xDD, + 0x02, 0x94, 0x00, 0x00, 0x01, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x04, 0x2E, + 0x05, 0xD2, 0x00, 0x00, 0x00, 0x20, 0x00, 0x0C, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0xBA, 0x00, 0x02, + 0x00, 0x9C, 0x00, 0x02, 0x00, 0xAD, 0x00, 0x01, 0x00, 0xAF, 0x01, 0x16, + 0x00, 0x01, 0x01, 0x18, 0x01, 0x8A, 0x00, 0x01, 0x01, 0x8C, 0x01, 0x99, + 0x00, 0x01, 0x01, 0x9B, 0x01, 0xD8, 0x00, 0x01, 0x01, 0xDA, 0x01, 0xF9, + 0x00, 0x01, 0x01, 0xFB, 0x02, 0x48, 0x00, 0x01, 0x02, 0x4A, 0x02, 0x85, + 0x00, 0x01, 0x02, 0x87, 0x02, 0xA3, 0x00, 0x01, 0x02, 0xA5, 0x02, 0xA5, + 0x00, 0x01, 0x02, 0xA8, 0x02, 0xC7, 0x00, 0x01, 0x02, 0xCB, 0x02, 0xCE, + 0x00, 0x01, 0x02, 0xD0, 0x02, 0xD1, 0x00, 0x01, 0x02, 0xD6, 0x02, 0xE4, + 0x00, 0x01, 0x02, 0xE6, 0x02, 0xFC, 0x00, 0x01, 0x02, 0xFE, 0x03, 0x48, + 0x00, 0x01, 0x03, 0x4A, 0x03, 0x58, 0x00, 0x01, 0x03, 0x5B, 0x03, 0x64, + 0x00, 0x01, 0x03, 0x67, 0x03, 0x75, 0x00, 0x01, 0x03, 0x78, 0x03, 0x79, + 0x00, 0x01, 0x03, 0x7B, 0x03, 0x7B, 0x00, 0x01, 0x03, 0x7D, 0x03, 0x94, + 0x00, 0x01, 0x03, 0x96, 0x03, 0xE2, 0x00, 0x01, 0x03, 0xE4, 0x03, 0xFA, + 0x00, 0x01, 0x03, 0xFC, 0x03, 0xFD, 0x00, 0x01, 0x04, 0x00, 0x04, 0x06, + 0x00, 0x01, 0x04, 0x08, 0x04, 0x08, 0x00, 0x01, 0x04, 0x0A, 0x04, 0x0A, + 0x00, 0x01, 0x04, 0x10, 0x04, 0x24, 0x00, 0x01, 0x04, 0x26, 0x04, 0x28, + 0x00, 0x01, 0x04, 0x2B, 0x04, 0x2C, 0x00, 0x01, 0x04, 0x2E, 0x04, 0x31, + 0x00, 0x01, 0x04, 0x34, 0x04, 0x37, 0x00, 0x01, 0x04, 0x39, 0x04, 0x4A, + 0x00, 0x01, 0x04, 0x4C, 0x04, 0x4C, 0x00, 0x01, 0x04, 0x4E, 0x04, 0x52, + 0x00, 0x01, 0x04, 0x54, 0x04, 0x6D, 0x00, 0x01, 0x04, 0x6F, 0x04, 0x6F, + 0x00, 0x01, 0x04, 0x71, 0x04, 0x72, 0x00, 0x01, 0x04, 0x74, 0x04, 0x75, + 0x00, 0x01, 0x04, 0x77, 0x04, 0x7E, 0x00, 0x01, 0x04, 0x80, 0x04, 0x97, + 0x00, 0x01, 0x04, 0x99, 0x04, 0xAB, 0x00, 0x01, 0x04, 0xAE, 0x04, 0xB1, + 0x00, 0x01, 0x04, 0xB5, 0x04, 0xC6, 0x00, 0x01, 0x04, 0xCA, 0x04, 0xE1, + 0x00, 0x01, 0x04, 0xE5, 0x04, 0xE7, 0x00, 0x01, 0x04, 0xE9, 0x04, 0xEE, + 0x00, 0x01, 0x04, 0xF0, 0x04, 0xF0, 0x00, 0x01, 0x04, 0xF2, 0x04, 0xFE, + 0x00, 0x01, 0x05, 0x01, 0x05, 0x08, 0x00, 0x01, 0x05, 0x0B, 0x05, 0x0B, + 0x00, 0x01, 0x05, 0x0E, 0x05, 0x0E, 0x00, 0x01, 0x05, 0x10, 0x05, 0x11, + 0x00, 0x01, 0x05, 0x13, 0x05, 0x15, 0x00, 0x01, 0x05, 0x17, 0x05, 0x1C, + 0x00, 0x01, 0x05, 0x25, 0x05, 0x25, 0x00, 0x01, 0x05, 0x2A, 0x05, 0x2A, + 0x00, 0x01, 0x05, 0x2C, 0x05, 0x2F, 0x00, 0x01, 0x05, 0x31, 0x05, 0x31, + 0x00, 0x01, 0x05, 0x36, 0x05, 0x36, 0x00, 0x01, 0x05, 0x38, 0x05, 0x3B, + 0x00, 0x01, 0x05, 0x3D, 0x05, 0x3F, 0x00, 0x01, 0x05, 0x47, 0x05, 0x47, + 0x00, 0x01, 0x05, 0x49, 0x05, 0x49, 0x00, 0x01, 0x05, 0x4D, 0x05, 0x4D, + 0x00, 0x01, 0x05, 0x4F, 0x05, 0x50, 0x00, 0x01, 0x05, 0x57, 0x05, 0x57, + 0x00, 0x01, 0x05, 0x59, 0x05, 0x59, 0x00, 0x01, 0x05, 0x66, 0x05, 0x67, + 0x00, 0x01, 0x05, 0x6C, 0x05, 0x6D, 0x00, 0x01, 0x05, 0x9D, 0x05, 0xA0, + 0x00, 0x01, 0x05, 0xA6, 0x05, 0xA7, 0x00, 0x01, 0x06, 0x16, 0x06, 0x17, + 0x00, 0x01, 0x06, 0x21, 0x06, 0x21, 0x00, 0x01, 0x06, 0x25, 0x06, 0x40, + 0x00, 0x01, 0x06, 0x43, 0x06, 0x45, 0x00, 0x01, 0x06, 0x51, 0x06, 0x52, + 0x00, 0x01, 0x06, 0x56, 0x06, 0x5E, 0x00, 0x01, 0x06, 0x60, 0x06, 0x71, + 0x00, 0x01, 0x06, 0x74, 0x06, 0x76, 0x00, 0x01, 0x06, 0x82, 0x06, 0x83, + 0x00, 0x01, 0x06, 0x88, 0x06, 0x89, 0x00, 0x01, 0x06, 0x8C, 0x06, 0x8E, + 0x00, 0x01, 0x06, 0xA1, 0x06, 0xA2, 0x00, 0x01, 0x06, 0xA5, 0x06, 0xA7, + 0x00, 0x01, 0x06, 0xBB, 0x06, 0xBE, 0x00, 0x01, 0x06, 0xC0, 0x06, 0xC0, + 0x00, 0x01, 0x06, 0xC2, 0x06, 0xC3, 0x00, 0x01, 0x06, 0xC9, 0x06, 0xC9, + 0x00, 0x01, 0x06, 0xCD, 0x06, 0xCD, 0x00, 0x01, 0x06, 0xD1, 0x06, 0xD5, + 0x00, 0x01, 0x06, 0xDB, 0x06, 0xDB, 0x00, 0x01, 0x06, 0xE7, 0x06, 0xEE, + 0x00, 0x03, 0x07, 0x00, 0x07, 0x04, 0x00, 0x01, 0x07, 0x54, 0x07, 0x54, + 0x00, 0x01, 0x07, 0x6D, 0x07, 0x87, 0x00, 0x01, 0x07, 0x89, 0x07, 0x8A, + 0x00, 0x01, 0x07, 0x91, 0x07, 0x91, 0x00, 0x01, 0x07, 0x93, 0x07, 0x93, + 0x00, 0x01, 0x07, 0xAA, 0x07, 0xC5, 0x00, 0x01, 0x07, 0xC7, 0x07, 0xC8, + 0x00, 0x01, 0x07, 0xCF, 0x07, 0xCF, 0x00, 0x01, 0x07, 0xD1, 0x07, 0xD1, + 0x00, 0x01, 0x07, 0xE8, 0x07, 0xF6, 0x00, 0x01, 0x07, 0xF7, 0x07, 0xF7, + 0x00, 0x03, 0x08, 0x03, 0x08, 0x64, 0x00, 0x01, 0x08, 0x67, 0x08, 0xC9, + 0x00, 0x01, 0x08, 0xDC, 0x08, 0xDC, 0x00, 0x01, 0x08, 0xE0, 0x08, 0xE5, + 0x00, 0x03, 0x08, 0xE8, 0x08, 0xEA, 0x00, 0x01, 0x08, 0xEF, 0x08, 0xEF, + 0x00, 0x01, 0x08, 0xFE, 0x09, 0x0C, 0x00, 0x01, 0x09, 0x0D, 0x09, 0x0D, + 0x00, 0x03, 0x09, 0x17, 0x09, 0x18, 0x00, 0x01, 0x09, 0x1A, 0x09, 0x1B, + 0x00, 0x01, 0x09, 0x1E, 0x09, 0x20, 0x00, 0x01, 0x09, 0x22, 0x09, 0x25, + 0x00, 0x01, 0x09, 0x27, 0x09, 0x28, 0x00, 0x01, 0x09, 0x31, 0x09, 0x31, + 0x00, 0x01, 0x09, 0x35, 0x09, 0x36, 0x00, 0x01, 0x09, 0x3B, 0x09, 0x3B, + 0x00, 0x01, 0x09, 0x3E, 0x09, 0x3E, 0x00, 0x01, 0x09, 0x40, 0x09, 0x41, + 0x00, 0x01, 0x09, 0x43, 0x09, 0x43, 0x00, 0x01, 0x09, 0x47, 0x09, 0x47, + 0x00, 0x01, 0x09, 0x4B, 0x09, 0x4B, 0x00, 0x01, 0x09, 0x4D, 0x09, 0x4D, + 0x00, 0x01, 0x09, 0x4F, 0x09, 0x4F, 0x00, 0x01, 0x09, 0x51, 0x09, 0x51, + 0x00, 0x01, 0x09, 0x59, 0x09, 0x59, 0x00, 0x01, 0x09, 0x6D, 0x09, 0x70, + 0x00, 0x01, 0x09, 0x7B, 0x09, 0x7F, 0x00, 0x01, 0x09, 0x81, 0x09, 0x85, + 0x00, 0x01, 0x09, 0x87, 0x09, 0x87, 0x00, 0x01, 0x09, 0x8F, 0x09, 0xA9, + 0x00, 0x01, 0x09, 0xB2, 0x09, 0xC6, 0x00, 0x01, 0x09, 0xCA, 0x09, 0xCC, + 0x00, 0x01, 0x09, 0xCF, 0x09, 0xD2, 0x00, 0x01, 0x09, 0xD7, 0x09, 0xD7, + 0x00, 0x01, 0x09, 0xDB, 0x09, 0xE3, 0x00, 0x01, 0x09, 0xE7, 0x0A, 0x06, + 0x00, 0x01, 0x0A, 0x4F, 0x0A, 0x71, 0x00, 0x03, 0x0A, 0x74, 0x0A, 0x7B, + 0x00, 0x03, 0x0A, 0x8B, 0x0A, 0xDE, 0x00, 0x03, 0x0A, 0xF2, 0x0A, 0xF2, + 0x00, 0x03, 0x0A, 0xF8, 0x0A, 0xF8, 0x00, 0x01, 0x0B, 0x00, 0x0B, 0x00, + 0x00, 0x01, 0x0B, 0x18, 0x0B, 0x18, 0x00, 0x01, 0x0B, 0x36, 0x0B, 0x36, + 0x00, 0x03, 0x0B, 0x42, 0x0B, 0x43, 0x00, 0x01, 0x0B, 0x46, 0x0B, 0x46, + 0x00, 0x02, 0x0B, 0x49, 0x0B, 0x49, 0x00, 0x01, 0x0B, 0x4A, 0x0B, 0x4A, + 0x00, 0x03, 0x0B, 0x54, 0x0B, 0x54, 0x00, 0x03, 0x0B, 0x55, 0x0B, 0x56, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x3A, 0x00, 0x00, + 0x00, 0x0C, 0x00, 0x01, 0x00, 0x15, 0x06, 0xE8, 0x06, 0xE9, 0x06, 0xEA, + 0x06, 0xEB, 0x06, 0xEC, 0x08, 0xE0, 0x08, 0xE1, 0x0A, 0x8B, 0x0A, 0x8C, + 0x0A, 0x8D, 0x0A, 0x8E, 0x0A, 0x8F, 0x0A, 0x90, 0x0A, 0x91, 0x0A, 0xAB, + 0x0A, 0xB2, 0x0A, 0xB8, 0x0A, 0xDE, 0x0A, 0xF2, 0x0B, 0x4A, 0x0B, 0x54, + 0x00, 0x01, 0x00, 0x01, 0x06, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, + 0x02, 0xD6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x00, 0x00, 0x90, + 0x06, 0x76, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x01, 0x00, 0x22, + 0x06, 0x54, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x02, 0x00, 0x0E, + 0x06, 0x46, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x03, 0x00, 0x36, + 0x06, 0x10, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x04, 0x00, 0x22, + 0x06, 0x54, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x05, 0x00, 0x36, + 0x05, 0xDA, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x06, 0x00, 0x20, + 0x05, 0xBA, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x07, 0x00, 0x54, + 0x05, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x08, 0x00, 0x08, + 0x05, 0x5E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x09, 0x00, 0x20, + 0x05, 0x3E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0B, 0x00, 0x20, + 0x05, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0C, 0x00, 0x20, + 0x05, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0D, 0x01, 0x22, + 0x03, 0xFC, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x0E, 0x00, 0x36, + 0x03, 0xC6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x10, 0x00, 0x14, + 0x03, 0xB2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x11, 0x00, 0x0C, + 0x03, 0xA6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x00, 0x19, 0x00, 0x0A, + 0x03, 0x9C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x00, 0x00, 0x18, + 0x03, 0x84, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x01, 0x00, 0x0C, + 0x03, 0x78, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x14, 0x00, 0x16, + 0x03, 0x62, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x15, 0x00, 0x1C, + 0x03, 0x46, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x16, 0x00, 0x2A, + 0x03, 0x1C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x17, 0x00, 0x40, + 0x02, 0xDC, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x18, 0x00, 0x24, + 0x02, 0xB8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x19, 0x00, 0x24, + 0x02, 0x94, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1A, 0x00, 0x24, + 0x02, 0x70, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1B, 0x00, 0x1A, + 0x02, 0x56, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1C, 0x00, 0x1A, + 0x02, 0x3C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1D, 0x00, 0x12, + 0x02, 0x2A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1E, 0x00, 0x10, + 0x02, 0x1A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x1F, 0x00, 0x12, + 0x02, 0x08, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x20, 0x00, 0x2C, + 0x01, 0xDC, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x21, 0x00, 0x18, + 0x01, 0xC4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x22, 0x00, 0x22, + 0x01, 0xA2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x23, 0x00, 0x2E, + 0x01, 0x74, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x24, 0x00, 0x1C, + 0x01, 0x58, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x25, 0x00, 0x26, + 0x01, 0x32, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x26, 0x00, 0x1C, + 0x01, 0x16, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x27, 0x00, 0x12, + 0x01, 0x04, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x28, 0x00, 0x12, + 0x00, 0xF2, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x29, 0x00, 0x32, + 0x00, 0xC0, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x2F, 0x00, 0x08, + 0x00, 0xB8, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x30, 0x00, 0x14, + 0x00, 0xA4, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x31, 0x00, 0x0A, + 0x00, 0x9A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x32, 0x00, 0x0E, + 0x06, 0x46, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x33, 0x00, 0x0C, + 0x03, 0xA6, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x34, 0x00, 0x10, + 0x00, 0x8A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x35, 0x00, 0x08, + 0x00, 0x82, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x36, 0x00, 0x12, + 0x00, 0x70, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x37, 0x00, 0x0A, + 0x00, 0x66, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x38, 0x00, 0x18, + 0x00, 0x4E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x39, 0x00, 0x08, + 0x00, 0x46, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3A, 0x00, 0x08, + 0x00, 0x3E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3B, 0x00, 0x08, + 0x00, 0x36, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3C, 0x00, 0x08, + 0x00, 0x2E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3D, 0x00, 0x08, + 0x00, 0x26, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3E, 0x00, 0x08, + 0x00, 0x1E, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x3F, 0x00, 0x08, + 0x00, 0x16, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x40, 0x00, 0x0C, + 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, 0x01, 0x41, 0x00, 0x0A, + 0x00, 0x00, 0x00, 0x52, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, + 0x00, 0x49, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, + 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x32, 0x00, 0x34, + 0x00, 0x70, 0x00, 0x74, 0x00, 0x32, 0x00, 0x30, 0x00, 0x70, 0x00, 0x74, + 0x00, 0x31, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x31, 0x00, 0x37, + 0x00, 0x70, 0x00, 0x74, 0x00, 0x31, 0x00, 0x36, 0x00, 0x70, 0x00, 0x74, + 0x00, 0x31, 0x00, 0x34, 0x00, 0x70, 0x00, 0x74, 0x00, 0x4F, 0x00, 0x70, + 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, + 0x00, 0x53, 0x00, 0x69, 0x00, 0x7A, 0x00, 0x65, 0x00, 0x42, 0x00, 0x6C, + 0x00, 0x61, 0x00, 0x63, 0x00, 0x6B, 0x00, 0x45, 0x00, 0x78, 0x00, 0x74, + 0x00, 0x72, 0x00, 0x61, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, + 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, 0x00, 0x53, 0x00, 0x65, + 0x00, 0x6D, 0x00, 0x69, 0x00, 0x42, 0x00, 0x6F, 0x00, 0x6C, 0x00, 0x64, + 0x00, 0x4C, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x45, + 0x00, 0x78, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x4C, 0x00, 0x69, + 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, + 0x00, 0x6E, 0x00, 0x41, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x6E, 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x63, + 0x00, 0x61, 0x00, 0x70, 0x00, 0x69, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, + 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, 0x00, 0x61, 0x00, 0x72, 0x00, 0x70, + 0x00, 0x20, 0x00, 0x53, 0x00, 0x43, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, + 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x74, 0x00, 0x43, + 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, + 0x00, 0x20, 0x00, 0x66, 0x00, 0x53, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x67, + 0x00, 0x6C, 0x00, 0x65, 0x00, 0x2D, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6F, + 0x00, 0x72, 0x00, 0x79, 0x00, 0x20, 0x00, 0x61, 0x00, 0x43, 0x00, 0x61, + 0x00, 0x70, 0x00, 0x69, 0x00, 0x74, 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, + 0x00, 0x47, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, + 0x00, 0x20, 0x00, 0x73, 0x00, 0x70, 0x00, 0x75, 0x00, 0x72, 0x00, 0x46, + 0x00, 0x6C, 0x00, 0x61, 0x00, 0x74, 0x00, 0x2D, 0x00, 0x74, 0x00, 0x6F, + 0x00, 0x70, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x72, 0x00, 0x65, + 0x00, 0x65, 0x00, 0x55, 0x00, 0x70, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x2D, 0x00, 0x63, 0x00, 0x61, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, + 0x00, 0x69, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, + 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 0x72, 0x00, 0x69, 0x00, 0x66, + 0x00, 0x41, 0x00, 0x6C, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, + 0x00, 0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x68, + 0x00, 0x61, 0x00, 0x72, 0x00, 0x70, 0x00, 0x20, 0x00, 0x73, 0x00, 0x53, + 0x00, 0x69, 0x00, 0x6D, 0x00, 0x70, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x66, + 0x00, 0x69, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x4C, + 0x00, 0x6F, 0x00, 0x77, 0x00, 0x65, 0x00, 0x72, 0x00, 0x2D, 0x00, 0x63, + 0x00, 0x61, 0x00, 0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x20, + 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, 0x00, 0x20, 0x00, 0x74, + 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x20, 0x00, 0x6E, 0x00, 0x69, 0x00, 0x6E, 0x00, 0x65, + 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x73, + 0x00, 0x69, 0x00, 0x78, 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, + 0x00, 0x20, 0x00, 0x66, 0x00, 0x6F, 0x00, 0x75, 0x00, 0x72, 0x00, 0x41, + 0x00, 0x6C, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x6E, 0x00, 0x61, + 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x65, + 0x00, 0x53, 0x00, 0x71, 0x00, 0x75, 0x00, 0x61, 0x00, 0x72, 0x00, 0x65, + 0x00, 0x20, 0x00, 0x71, 0x00, 0x75, 0x00, 0x6F, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x73, 0x00, 0x53, 0x00, 0x71, 0x00, 0x75, 0x00, 0x61, 0x00, 0x72, + 0x00, 0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x63, + 0x00, 0x74, 0x00, 0x75, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x53, 0x00, 0x71, 0x00, 0x75, 0x00, 0x61, 0x00, 0x72, + 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, + 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x73, 0x00, 0x43, 0x00, 0x69, 0x00, 0x72, 0x00, 0x63, 0x00, 0x6C, + 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x63, 0x00, 0x68, 0x00, 0x61, + 0x00, 0x72, 0x00, 0x61, 0x00, 0x63, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x73, 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, + 0x00, 0x62, 0x00, 0x69, 0x00, 0x67, 0x00, 0x75, 0x00, 0x61, 0x00, 0x74, + 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x28, 0x00, 0x6E, + 0x00, 0x6F, 0x00, 0x20, 0x00, 0x73, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x73, + 0x00, 0x68, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x7A, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x6F, 0x00, 0x29, 0x00, 0x52, 0x00, 0x6F, 0x00, 0x75, + 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x71, 0x00, 0x75, 0x00, 0x6F, + 0x00, 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x20, 0x00, 0x26, 0x00, 0x20, + 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x73, + 0x00, 0x44, 0x00, 0x69, 0x00, 0x73, 0x00, 0x61, 0x00, 0x6D, 0x00, 0x62, + 0x00, 0x69, 0x00, 0x67, 0x00, 0x75, 0x00, 0x61, 0x00, 0x74, 0x00, 0x69, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x4F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, + 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, + 0x00, 0x73, 0x00, 0x57, 0x00, 0x65, 0x00, 0x69, 0x00, 0x67, 0x00, 0x68, + 0x00, 0x74, 0x00, 0x4F, 0x00, 0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x63, + 0x00, 0x61, 0x00, 0x6C, 0x00, 0x20, 0x00, 0x73, 0x00, 0x69, 0x00, 0x7A, + 0x00, 0x65, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x4D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, + 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, + 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x68, 0x00, 0x74, + 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, + 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x66, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x6F, 0x00, 0x72, + 0x00, 0x67, 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, + 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, 0x00, 0x53, + 0x00, 0x6F, 0x00, 0x66, 0x00, 0x74, 0x00, 0x77, 0x00, 0x61, 0x00, 0x72, + 0x00, 0x65, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6C, + 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, + 0x00, 0x64, 0x00, 0x20, 0x00, 0x75, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, + 0x00, 0x53, 0x00, 0x49, 0x00, 0x4C, 0x00, 0x20, 0x00, 0x4F, 0x00, 0x70, + 0x00, 0x65, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x74, 0x00, 0x20, 0x00, 0x4C, 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, + 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2C, 0x00, 0x20, 0x00, 0x56, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, 0x00, 0x6E, + 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x20, + 0x00, 0x54, 0x00, 0x68, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x6C, + 0x00, 0x69, 0x00, 0x63, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, + 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, 0x00, 0x61, 0x00, 0x76, + 0x00, 0x61, 0x00, 0x69, 0x00, 0x6C, 0x00, 0x61, 0x00, 0x62, 0x00, 0x6C, + 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, + 0x00, 0x20, 0x00, 0x61, 0x00, 0x20, 0x00, 0x46, 0x00, 0x41, 0x00, 0x51, + 0x00, 0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x3A, 0x00, 0x20, 0x00, 0x68, + 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, + 0x00, 0x2F, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x66, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x6C, 0x00, 0x69, 0x00, 0x63, + 0x00, 0x65, 0x00, 0x6E, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2E, 0x00, 0x6F, + 0x00, 0x72, 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, + 0x00, 0x73, 0x00, 0x3A, 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x72, 0x00, 0x73, + 0x00, 0x6D, 0x00, 0x73, 0x00, 0x2E, 0x00, 0x6D, 0x00, 0x65, 0x00, 0x2F, + 0x00, 0x52, 0x00, 0x61, 0x00, 0x73, 0x00, 0x6D, 0x00, 0x75, 0x00, 0x73, + 0x00, 0x20, 0x00, 0x41, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x73, 0x00, 0x73, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x72, 0x00, 0x73, + 0x00, 0x6D, 0x00, 0x73, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x20, 0x00, 0x55, 0x00, 0x49, 0x00, 0x20, 0x00, 0x61, + 0x00, 0x6E, 0x00, 0x64, 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, + 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x69, 0x00, 0x73, 0x00, 0x20, + 0x00, 0x61, 0x00, 0x20, 0x00, 0x74, 0x00, 0x72, 0x00, 0x61, 0x00, 0x64, + 0x00, 0x65, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x72, 0x00, 0x6B, 0x00, 0x20, + 0x00, 0x6F, 0x00, 0x66, 0x00, 0x20, 0x00, 0x72, 0x00, 0x73, 0x00, 0x6D, + 0x00, 0x73, 0x00, 0x2E, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x2D, + 0x00, 0x4D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, + 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6F, + 0x00, 0x6E, 0x00, 0x20, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x30, 0x00, 0x30, + 0x00, 0x31, 0x00, 0x3B, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x2D, + 0x00, 0x36, 0x00, 0x36, 0x00, 0x36, 0x00, 0x34, 0x00, 0x37, 0x00, 0x63, + 0x00, 0x30, 0x00, 0x62, 0x00, 0x62, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x30, + 0x00, 0x30, 0x00, 0x31, 0x00, 0x3B, 0x00, 0x52, 0x00, 0x53, 0x00, 0x4D, + 0x00, 0x53, 0x00, 0x3B, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, + 0x00, 0x72, 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x2D, + 0x00, 0x4D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, + 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, 0x61, + 0x00, 0x72, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x20, 0x00, 0x32, 0x00, 0x38, 0x00, 0x70, 0x00, 0x74, 0x00, 0x20, + 0x00, 0x4D, 0x00, 0x65, 0x00, 0x64, 0x00, 0x69, 0x00, 0x75, 0x00, 0x6D, + 0x00, 0x43, 0x00, 0x6F, 0x00, 0x70, 0x00, 0x79, 0x00, 0x72, 0x00, 0x69, + 0x00, 0x67, 0x00, 0x68, 0x00, 0x74, 0x00, 0x20, 0x00, 0x32, 0x00, 0x30, + 0x00, 0x31, 0x00, 0x36, 0x00, 0x20, 0x00, 0x54, 0x00, 0x68, 0x00, 0x65, + 0x00, 0x20, 0x00, 0x49, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, + 0x00, 0x20, 0x00, 0x50, 0x00, 0x72, 0x00, 0x6F, 0x00, 0x6A, 0x00, 0x65, + 0x00, 0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x41, 0x00, 0x75, 0x00, 0x74, + 0x00, 0x68, 0x00, 0x6F, 0x00, 0x72, 0x00, 0x73, 0x00, 0x20, 0x00, 0x28, + 0x00, 0x68, 0x00, 0x74, 0x00, 0x74, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3A, + 0x00, 0x2F, 0x00, 0x2F, 0x00, 0x67, 0x00, 0x69, 0x00, 0x74, 0x00, 0x68, + 0x00, 0x75, 0x00, 0x62, 0x00, 0x2E, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, + 0x00, 0x2F, 0x00, 0x72, 0x00, 0x73, 0x00, 0x6D, 0x00, 0x73, 0x00, 0x2F, + 0x00, 0x69, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x65, 0x00, 0x72, 0x00, 0x29, + 0x05, 0x40, 0x01, 0x48, 0x01, 0xB3, 0x00, 0x00, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x96, 0x00, 0x3B, + 0x05, 0x99, 0x00, 0x3E, 0x06, 0x6D, 0x00, 0x3A, 0x06, 0x82, 0x00, 0x3A, + 0x06, 0x7B, 0x00, 0x3A, 0x06, 0x89, 0x00, 0x3A, 0x05, 0xF9, 0x00, 0x3A, + 0x06, 0x09, 0x00, 0x3A, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0xFF, 0xF3, 0x05, 0x73, 0x00, 0x18, 0x05, 0x99, 0x00, 0x3E, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x96, 0x00, 0x3B, 0x05, 0x99, 0x00, 0x3E, 0x06, 0x6D, 0x00, 0x3A, + 0x06, 0x82, 0x00, 0x3A, 0x06, 0x7B, 0x00, 0x3A, 0x06, 0x89, 0x00, 0x3A, + 0x05, 0xF9, 0x00, 0x3A, 0x06, 0x09, 0x00, 0x3A, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x07, 0xE7, 0x00, 0x18, 0x07, 0xE7, 0x00, 0x18, + 0x07, 0xE7, 0x00, 0x18, 0x07, 0xE7, 0x00, 0x18, 0x05, 0x27, 0x00, 0x8E, + 0x05, 0x27, 0x00, 0x8E, 0x05, 0x27, 0x00, 0x8E, 0x05, 0x27, 0x00, 0x8E, + 0x05, 0x46, 0x00, 0x05, 0x06, 0x63, 0x00, 0x2B, 0x05, 0x27, 0x00, 0x8E, + 0x05, 0x27, 0x00, 0x8E, 0x05, 0xCE, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x58, + 0x05, 0xCE, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x58, + 0x05, 0xCE, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x58, + 0x05, 0xCE, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x53, 0x05, 0xCE, 0x00, 0x58, + 0x05, 0x99, 0x00, 0x8E, 0x06, 0xD5, 0x00, 0x2B, 0x05, 0x99, 0x00, 0x8E, + 0x05, 0x99, 0x00, 0x8E, 0x05, 0x99, 0x00, 0x8E, 0x05, 0x99, 0x00, 0x8E, + 0x05, 0x99, 0x00, 0x8E, 0x05, 0x99, 0x00, 0x8E, 0x05, 0xE0, 0x00, 0x16, + 0x09, 0xA9, 0x00, 0x8E, 0x09, 0xA9, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x51, + 0x04, 0xBD, 0x00, 0x8E, 0x05, 0xC6, 0x00, 0x3A, 0x05, 0xF1, 0x00, 0x3A, + 0x06, 0x06, 0x00, 0x3A, 0x07, 0x10, 0x00, 0x3A, 0x07, 0x25, 0x00, 0x3A, + 0x07, 0x1D, 0x00, 0x3A, 0x07, 0x2B, 0x00, 0x3A, 0x05, 0xF4, 0xFF, 0xD1, + 0x05, 0xC6, 0x00, 0x3A, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0x8D, 0x00, 0x8E, + 0x04, 0x8D, 0xFF, 0xB9, 0x04, 0x8D, 0x00, 0x8E, 0x04, 0x8D, 0x00, 0x3F, + 0x05, 0xE3, 0x00, 0x58, 0x05, 0xE3, 0x00, 0x58, 0x05, 0xE3, 0x00, 0x58, + 0x05, 0xE3, 0x00, 0x58, 0x05, 0xE3, 0x00, 0x58, 0x05, 0xE3, 0x00, 0x58, + 0x05, 0xE3, 0x00, 0x58, 0x05, 0xE3, 0x00, 0x58, 0x05, 0xE3, 0x00, 0x58, + 0x05, 0xE3, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, + 0x05, 0xF9, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, + 0x05, 0xF9, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, + 0x05, 0xF9, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, 0x05, 0xC0, 0x00, 0x8E, + 0x05, 0xC0, 0x00, 0x89, 0x05, 0xC0, 0x00, 0x8E, 0x05, 0xC0, 0x00, 0x8E, + 0x05, 0xC0, 0x00, 0x8E, 0x05, 0xC0, 0x00, 0x8E, 0x05, 0xC0, 0x00, 0x8E, + 0x05, 0xC0, 0x00, 0x8E, 0x06, 0x09, 0x00, 0x3A, 0x05, 0xC0, 0x00, 0x8E, + 0x05, 0xE1, 0x00, 0x8E, 0x05, 0xC0, 0x00, 0x8E, 0x07, 0xB7, 0x00, 0x8E, + 0x08, 0x7E, 0x00, 0x8E, 0x05, 0xC0, 0x00, 0x8E, 0x06, 0xC9, 0x00, 0x3A, + 0x06, 0xF5, 0x00, 0x3A, 0x07, 0x09, 0x00, 0x3A, 0x08, 0x13, 0x00, 0x3A, + 0x08, 0x28, 0x00, 0x3A, 0x08, 0x20, 0x00, 0x3A, 0x08, 0x2F, 0x00, 0x3A, + 0x07, 0x9F, 0x00, 0x3A, 0x07, 0xAF, 0x00, 0x3A, 0x06, 0xF7, 0xFF, 0xD1, + 0x06, 0xC9, 0x00, 0x3A, 0x05, 0xC0, 0x00, 0x8E, 0x06, 0xF5, 0x00, 0x3A, + 0x07, 0x09, 0x00, 0x3A, 0x08, 0x13, 0x00, 0x3A, 0x08, 0x28, 0x00, 0x3A, + 0x08, 0x20, 0x00, 0x3A, 0x08, 0x2F, 0x00, 0x3A, 0x07, 0x9F, 0x00, 0x3A, + 0x07, 0xAF, 0x00, 0x3A, 0x05, 0xC0, 0x00, 0x8E, 0x01, 0xFC, 0x00, 0x8E, + 0x03, 0xF9, 0x00, 0x8E, 0x01, 0xFC, 0xFF, 0xA6, 0x01, 0xFC, 0xFF, 0x9F, + 0x02, 0x9D, 0x00, 0x10, 0x01, 0xFC, 0xFF, 0xCC, 0x01, 0xFC, 0xFF, 0xE0, + 0x01, 0xFC, 0x00, 0x8E, 0x01, 0xFC, 0xFF, 0xB0, 0x01, 0xFC, 0xFF, 0xCC, + 0x01, 0xFC, 0xFF, 0xE6, 0x01, 0xFC, 0xFF, 0xCD, 0x01, 0xFC, 0x00, 0x07, + 0x01, 0xFC, 0x00, 0x78, 0x01, 0xFC, 0xFF, 0xB0, 0x01, 0xFC, 0xFF, 0x2D, + 0x01, 0xFC, 0xFF, 0xCA, 0x01, 0xFC, 0x00, 0x54, 0x01, 0xFC, 0x00, 0x78, + 0x02, 0x07, 0x00, 0x7D, 0x01, 0xFC, 0x00, 0x8E, 0x03, 0x05, 0x00, 0x3A, + 0x01, 0xFC, 0xFF, 0xA6, 0x03, 0x31, 0x00, 0x3A, 0x03, 0x45, 0x00, 0x3A, + 0x04, 0x50, 0x00, 0x3A, 0x04, 0x64, 0x00, 0x3A, 0x04, 0x5D, 0x00, 0x3A, + 0x04, 0x6B, 0x00, 0x3A, 0x03, 0xDB, 0x00, 0x3A, 0x03, 0xEB, 0x00, 0x3A, + 0x01, 0xFC, 0xFF, 0xCD, 0x01, 0xFC, 0xFF, 0xE6, 0x03, 0x33, 0xFF, 0xD1, + 0x03, 0x05, 0x00, 0x3A, 0x01, 0xFC, 0x00, 0x8E, 0x01, 0xFC, 0xFF, 0xA6, + 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x2B, 0x03, 0x06, 0x00, 0x24, + 0x03, 0x06, 0x00, 0x44, 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x4D, + 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x34, 0x03, 0x06, 0x00, 0x4D, + 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x4D, + 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x34, 0x03, 0x06, 0xFF, 0xB2, + 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x4D, + 0x04, 0x6F, 0x00, 0x3A, 0x04, 0x83, 0x00, 0x3A, 0x05, 0xCE, 0x00, 0x3A, + 0x05, 0xA2, 0x00, 0x3A, 0x05, 0x9A, 0x00, 0x3A, 0x05, 0xA9, 0x00, 0x3A, + 0x05, 0x19, 0x00, 0x3A, 0x05, 0x29, 0x00, 0x3A, 0x03, 0x06, 0x00, 0x4D, + 0x03, 0x06, 0x00, 0x4D, 0x04, 0x3D, 0xFF, 0x9D, 0x04, 0x43, 0x00, 0x3A, + 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x2B, 0x04, 0x68, 0x00, 0x4A, + 0x04, 0x68, 0x00, 0x4A, 0x04, 0xB8, 0x00, 0x4A, 0x04, 0x68, 0x00, 0x4A, + 0x04, 0x68, 0x00, 0x4A, 0x05, 0x46, 0x00, 0x8E, 0x05, 0x46, 0x00, 0x8E, + 0x05, 0x46, 0x00, 0x8E, 0x05, 0x46, 0x00, 0x8E, 0x05, 0x46, 0x00, 0x8E, + 0x05, 0x46, 0x00, 0x8E, 0x06, 0x98, 0x00, 0x3A, 0x05, 0x9F, 0x00, 0x8E, + 0x05, 0x58, 0x00, 0x8E, 0x05, 0x46, 0x00, 0x8E, 0x04, 0x61, 0x00, 0x8E, + 0x04, 0x61, 0x00, 0x8E, 0x04, 0x61, 0x00, 0x8E, 0x04, 0x61, 0x00, 0x8E, + 0x04, 0x61, 0x00, 0x8E, 0x04, 0x61, 0xFF, 0xE5, 0x04, 0x61, 0x00, 0x8E, + 0x04, 0x61, 0x00, 0x8E, 0x04, 0xA4, 0x00, 0x17, 0x04, 0xA8, 0x00, 0x16, + 0x06, 0x31, 0x00, 0x8E, 0x07, 0x09, 0x00, 0x8E, 0x07, 0x09, 0x00, 0x8E, + 0x07, 0x09, 0x00, 0x8E, 0x07, 0x09, 0x00, 0x8E, 0x07, 0x09, 0x00, 0x8E, + 0x07, 0x09, 0x00, 0x8E, 0x07, 0x09, 0x00, 0x8E, 0x07, 0x09, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0xFF, 0xB9, 0x05, 0xCB, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, 0x07, 0x9B, 0x00, 0x8E, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x06, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x06, 0x00, 0x58, 0x06, 0x06, 0x00, 0x58, + 0x06, 0x06, 0x00, 0x58, 0x06, 0x06, 0x00, 0x58, 0x06, 0x06, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0xA7, 0x00, 0x3A, + 0x06, 0xD3, 0x00, 0x3A, 0x06, 0xE7, 0x00, 0x3A, 0x07, 0xF1, 0x00, 0x3A, + 0x08, 0x06, 0x00, 0x3A, 0x07, 0xFE, 0x00, 0x3A, 0x08, 0x0D, 0x00, 0x3A, + 0x06, 0x05, 0xFF, 0x03, 0x06, 0x05, 0x00, 0x58, 0x06, 0xA7, 0x00, 0x3A, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x08, 0x06, 0x00, 0x58, + 0x04, 0xFD, 0x00, 0x8E, 0x04, 0xFD, 0x00, 0x8E, 0x04, 0xFD, 0x00, 0x8E, + 0x04, 0xF7, 0x00, 0x90, 0x06, 0x39, 0x00, 0x2C, 0x04, 0xFD, 0x00, 0x8E, + 0x06, 0x64, 0x00, 0x3A, 0x06, 0x06, 0x00, 0x58, 0x06, 0x08, 0x00, 0x58, + 0x05, 0x20, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, + 0x05, 0x20, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, + 0x05, 0x20, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, + 0x05, 0x20, 0x00, 0x8E, 0x04, 0xFF, 0x00, 0x90, 0x05, 0x80, 0x00, 0x8E, + 0x05, 0x12, 0xFF, 0xFF, 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, + 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, + 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, + 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, + 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, 0x05, 0x5D, 0x00, 0x8E, + 0x05, 0x03, 0x00, 0x3A, 0x05, 0x03, 0x00, 0x3A, 0x05, 0x03, 0x00, 0x3A, + 0x05, 0x03, 0x00, 0x3A, 0x05, 0x03, 0x00, 0x3A, 0x05, 0x03, 0x00, 0x3A, + 0x05, 0x03, 0x00, 0x3A, 0x05, 0x03, 0x00, 0x3A, 0x05, 0x1B, 0x00, 0x3C, + 0x04, 0xFE, 0x01, 0xBE, 0x05, 0x03, 0x00, 0x3A, 0x05, 0x03, 0x00, 0x3A, + 0x05, 0x03, 0x00, 0x3A, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB0, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB0, 0x00, 0x89, 0x05, 0xB0, 0x00, 0x89, 0x05, 0xB0, 0x00, 0x89, + 0x05, 0xB0, 0x00, 0x89, 0x05, 0xB0, 0x00, 0x89, 0x05, 0xCC, 0xFF, 0xE2, + 0x05, 0x6F, 0x00, 0x18, 0x05, 0x6F, 0x00, 0x18, 0x05, 0x6F, 0x00, 0x18, + 0x07, 0xCA, 0x00, 0x18, 0x07, 0xCA, 0x00, 0x18, 0x07, 0xCA, 0x00, 0x18, + 0x07, 0xCA, 0x00, 0x18, 0x07, 0xCA, 0x00, 0x18, 0x07, 0xCA, 0x00, 0x18, + 0x07, 0xCA, 0x00, 0x18, 0x05, 0x5F, 0x00, 0x1C, 0x05, 0x5F, 0x00, 0x1C, + 0x05, 0x5F, 0x00, 0x1C, 0x05, 0x8B, 0x00, 0x1C, 0x05, 0xB6, 0x00, 0x1C, + 0x05, 0x5F, 0x00, 0x1C, 0x05, 0x56, 0x00, 0x18, 0x05, 0xAE, 0x00, 0x21, + 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, + 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, + 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, + 0x05, 0x4E, 0xFF, 0xF3, 0x05, 0x56, 0x00, 0x18, 0x06, 0xD5, 0x00, 0x3A, + 0x05, 0x56, 0x00, 0x18, 0x07, 0x15, 0x00, 0x3A, 0x08, 0x34, 0x00, 0x3A, + 0x08, 0x3A, 0x00, 0x3A, 0x07, 0xBA, 0x00, 0x3A, 0x05, 0x56, 0x00, 0x18, + 0x05, 0x56, 0x00, 0x18, 0x05, 0xEC, 0xFE, 0xBA, 0x06, 0xD5, 0x00, 0x3A, + 0x05, 0x56, 0x00, 0x18, 0x05, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, 0x48, + 0x05, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, 0x48, + 0x05, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, 0x48, + 0x05, 0x00, 0x00, 0x48, 0x05, 0x00, 0x00, 0x48, 0x04, 0xD0, 0x00, 0x47, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x7D, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x07, 0x14, 0x00, 0x4C, 0x07, 0x14, 0x00, 0x4C, 0x07, 0x14, 0x00, 0x4C, + 0x07, 0x14, 0x00, 0x4C, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x7D, + 0x04, 0xAF, 0xFF, 0xEB, 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAE, 0x00, 0x7D, + 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAF, 0x00, 0x7D, + 0x04, 0xAF, 0x00, 0x7D, 0x04, 0x59, 0x00, 0x4A, 0x04, 0x59, 0x00, 0x4A, + 0x05, 0x00, 0x00, 0x4A, 0x04, 0x59, 0x00, 0x4A, 0x04, 0x59, 0x00, 0x4A, + 0x04, 0x59, 0x00, 0x4A, 0x04, 0x59, 0x00, 0x4A, 0x04, 0x59, 0x00, 0x4A, + 0x04, 0x59, 0x00, 0x4A, 0x04, 0x59, 0x00, 0x4A, 0x04, 0x59, 0x00, 0x4A, + 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, 0x05, 0xEF, 0x00, 0x4A, + 0x05, 0x89, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, + 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, + 0x08, 0xBF, 0x00, 0x4A, 0x08, 0x5A, 0x00, 0x4A, 0x08, 0xBF, 0x00, 0x4A, + 0x07, 0xD9, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x46, 0x02, 0xD0, 0x00, 0xC9, 0x02, 0xB7, 0x00, 0x11, + 0x02, 0x61, 0x00, 0x7D, 0x02, 0x8F, 0x00, 0x11, 0x02, 0x3B, 0x00, 0x7D, + 0x02, 0x61, 0x00, 0x7D, 0x06, 0x39, 0x00, 0x7D, 0x02, 0x3C, 0x00, 0x7D, + 0x02, 0xD0, 0x00, 0x26, 0x02, 0x3C, 0x00, 0x7D, 0x02, 0xB7, 0x00, 0x11, + 0x06, 0x8E, 0x00, 0x11, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x05, 0x38, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0x46, 0x00, 0x37, + 0x04, 0x99, 0x00, 0x37, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x73, + 0x04, 0x8D, 0xFF, 0xEA, 0x04, 0x8D, 0xFF, 0xEA, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x07, 0x77, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x05, 0x01, 0x00, 0x11, 0x05, 0x01, 0x00, 0x11, 0x04, 0x8D, 0xFF, 0xEA, + 0x04, 0x8D, 0xFF, 0x99, 0x04, 0x8D, 0xFF, 0x99, 0x04, 0x8D, 0x00, 0x61, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0xFF, 0x8F, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x01, 0xD0, 0x00, 0x61, + 0x01, 0xD0, 0x00, 0x7D, 0x03, 0xA0, 0x00, 0x7D, 0x01, 0xD0, 0xFF, 0x90, + 0x01, 0xD0, 0xFF, 0x89, 0x01, 0xD0, 0xFF, 0xB6, 0x01, 0xD0, 0xFF, 0xB6, + 0x01, 0xD0, 0xFF, 0xB6, 0x01, 0xD0, 0xFF, 0x96, 0x01, 0xD0, 0xFF, 0xCA, + 0x01, 0xD0, 0x00, 0x7D, 0x01, 0xD0, 0xFF, 0x9A, 0x01, 0xD0, 0xFF, 0xD0, + 0x01, 0xD0, 0xFF, 0xB7, 0x01, 0xD0, 0xFF, 0xEC, 0x01, 0xD0, 0xFF, 0xEC, + 0x01, 0xD0, 0xFF, 0x9A, 0x01, 0xD0, 0xFF, 0x17, 0x01, 0xD0, 0xFF, 0xB4, + 0x01, 0xD0, 0x00, 0x3E, 0x01, 0xD0, 0x00, 0x61, 0x01, 0xD0, 0x00, 0x62, + 0x01, 0xD0, 0xFF, 0xC9, 0x01, 0xD0, 0xFF, 0x94, 0x01, 0xD0, 0xFF, 0x94, + 0x01, 0xD0, 0xFF, 0x94, 0x01, 0xD0, 0x00, 0x61, 0x01, 0xD0, 0xFF, 0x90, + 0x03, 0xA0, 0x00, 0x61, 0x02, 0x5A, 0x00, 0x31, 0x01, 0xD0, 0xFF, 0xC9, + 0x02, 0xE6, 0xFF, 0xE2, 0x02, 0xE6, 0xFF, 0xE2, 0x01, 0xD0, 0xFF, 0x9A, + 0x01, 0xD0, 0xFF, 0x9A, 0x01, 0xD0, 0xFF, 0xC9, 0x01, 0xD0, 0xFF, 0xC9, + 0x03, 0xA0, 0x00, 0x7D, 0x04, 0x3D, 0x00, 0x7D, 0x04, 0x3D, 0x00, 0x7D, + 0x04, 0x3D, 0x00, 0x7D, 0x04, 0x3D, 0xFF, 0x99, 0x04, 0x3D, 0x00, 0x7D, + 0x04, 0x3D, 0x00, 0x7D, 0x04, 0x3D, 0x00, 0x7D, 0x04, 0x3D, 0xFF, 0xFF, + 0x04, 0x3D, 0x00, 0x7D, 0x01, 0xD0, 0x00, 0x7D, 0x01, 0xD0, 0xFF, 0xDA, + 0x01, 0xD0, 0xFF, 0x94, 0x01, 0xD0, 0xFF, 0xA7, 0x01, 0xD0, 0x00, 0x7D, + 0x03, 0x63, 0xFF, 0xFF, 0x03, 0x10, 0xFF, 0x8C, 0x02, 0xEB, 0x00, 0x7D, + 0x01, 0xD0, 0x00, 0x7D, 0x01, 0xD0, 0x00, 0x2A, 0x02, 0xAA, 0x00, 0x7D, + 0x01, 0xD0, 0x00, 0x61, 0x01, 0xD0, 0xFF, 0xCF, 0x01, 0xD0, 0xFF, 0xCF, + 0x01, 0xD0, 0xFF, 0x9A, 0x02, 0x07, 0x00, 0x7D, 0x02, 0x61, 0x00, 0x11, + 0x02, 0xC7, 0x00, 0x11, 0x02, 0xAB, 0x00, 0x11, 0x03, 0x5C, 0x00, 0x11, + 0x03, 0x23, 0x00, 0x7D, 0x02, 0x07, 0x00, 0x7D, 0x02, 0x07, 0x00, 0x6A, + 0x02, 0xB0, 0x00, 0x7D, 0x02, 0x07, 0x00, 0x7D, 0x02, 0x07, 0xFF, 0xCF, + 0x02, 0x07, 0x00, 0x0F, 0x02, 0x07, 0xFF, 0xDA, 0x01, 0xD0, 0x00, 0x7D, + 0x03, 0xA5, 0x00, 0x7D, 0x06, 0xE4, 0x00, 0x7D, 0x06, 0xE4, 0x00, 0x7D, + 0x06, 0xE4, 0x00, 0x7D, 0x06, 0xE4, 0x00, 0x7D, 0x06, 0xE4, 0x00, 0x7D, + 0x06, 0xE4, 0x00, 0x7D, 0x06, 0xE4, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x05, 0xCD, 0x00, 0x7D, 0x04, 0x8D, 0xFF, 0xA6, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x06, 0x5D, 0x00, 0x7D, + 0x04, 0xCC, 0x00, 0x7D, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x38, 0x04, 0x8D, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8D, 0x00, 0x4A, + 0x04, 0x8D, 0x00, 0x4A, 0x04, 0x8D, 0x00, 0x4A, 0x04, 0x8D, 0x00, 0x4A, + 0x04, 0x8D, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x38, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x07, 0x98, 0x00, 0x4A, 0x06, 0x4C, 0x00, 0x4A, 0x08, 0xB2, 0x00, 0x4A, + 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xB4, 0x00, 0x7F, 0x04, 0xAF, 0x00, 0x7D, + 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAF, 0x00, 0x7D, + 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x02, 0xCC, 0x00, 0x7D, 0x02, 0xCC, 0x00, 0x7D, 0x02, 0xCC, 0xFF, 0x96, + 0x02, 0xCC, 0x00, 0x27, 0x02, 0xCC, 0x00, 0x27, 0x02, 0xBD, 0x00, 0x27, + 0x02, 0xBD, 0x00, 0x7D, 0x02, 0xCC, 0x00, 0x7D, 0x02, 0xCC, 0x00, 0x7D, + 0x02, 0xCC, 0x00, 0x2A, 0x02, 0xCC, 0x00, 0x3E, 0x02, 0xCC, 0xFF, 0xBB, + 0x02, 0xCC, 0x00, 0x58, 0x02, 0xCC, 0x00, 0x7D, 0x02, 0xCC, 0x00, 0x61, + 0x02, 0xCC, 0x00, 0x61, 0x02, 0xCC, 0xFF, 0xCF, 0x04, 0x52, 0x00, 0x7D, + 0x04, 0x52, 0x00, 0x7D, 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, + 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, + 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, + 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, + 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, + 0x04, 0x00, 0x00, 0x49, 0x04, 0xD2, 0x00, 0x8E, 0x04, 0xED, 0x00, 0x8E, + 0x02, 0xA9, 0x00, 0x11, 0x02, 0xA9, 0x00, 0x11, 0x02, 0x90, 0x00, 0x11, + 0x03, 0x5C, 0xFF, 0xBD, 0x06, 0x72, 0x00, 0x11, 0x02, 0xA9, 0x00, 0x2E, + 0x02, 0xA9, 0x00, 0x11, 0x02, 0xA9, 0x00, 0x11, 0x03, 0x1F, 0x00, 0x11, + 0x02, 0xA9, 0x00, 0x11, 0x02, 0xA9, 0x00, 0x11, 0x02, 0xA9, 0x00, 0x11, + 0x02, 0xA9, 0x00, 0x11, 0x02, 0xA9, 0x00, 0x11, 0x02, 0xA9, 0xFF, 0xD8, + 0x02, 0x60, 0x00, 0x7D, 0x02, 0x60, 0x00, 0x7D, 0x02, 0x60, 0x00, 0x7D, + 0x02, 0xD6, 0x00, 0x7D, 0x02, 0x60, 0x00, 0x7D, 0x02, 0x60, 0x00, 0x61, + 0x02, 0x60, 0x00, 0x7D, 0x02, 0x60, 0x00, 0x31, 0x02, 0x60, 0xFF, 0xFC, + 0x02, 0x60, 0xFF, 0x90, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0xF0, 0x00, 0x7D, 0x04, 0x99, 0x00, 0x7D, + 0x05, 0x24, 0x00, 0x11, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x75, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0xF0, 0x00, 0x7D, + 0x04, 0xF0, 0x00, 0x7D, 0x04, 0xF0, 0x00, 0x7D, 0x04, 0xF0, 0x00, 0x7D, + 0x04, 0xF0, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x05, 0x24, 0x00, 0x11, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x75, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0xF1, 0x00, 0x7D, 0x04, 0xF1, 0x00, 0x7D, 0x04, 0xF1, 0x00, 0x7D, + 0x04, 0xF1, 0x00, 0x7D, 0x04, 0xF1, 0x00, 0x7D, 0x04, 0xF1, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x4B, 0x00, 0x1D, 0x06, 0x4A, 0x00, 0x1F, 0x06, 0x4A, 0x00, 0x1F, + 0x06, 0x4A, 0x00, 0x1F, 0x06, 0x4A, 0x00, 0x1F, 0x06, 0x4A, 0x00, 0x1F, + 0x06, 0x4A, 0x00, 0x1F, 0x06, 0x4A, 0x00, 0x1F, 0x06, 0x4A, 0x00, 0x1F, + 0x06, 0x4A, 0x00, 0x1F, 0x04, 0x35, 0x00, 0x1F, 0x04, 0x35, 0x00, 0x1F, + 0x04, 0x35, 0x00, 0x1F, 0x04, 0x35, 0x00, 0x1F, 0x04, 0x61, 0x00, 0x11, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, 0x05, 0x67, 0x00, 0x1D, + 0x04, 0x4E, 0x00, 0x1E, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0xF7, 0x00, 0x18, 0x04, 0xF7, 0x00, 0x18, + 0x04, 0xF7, 0x00, 0x18, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x69, 0x00, 0x1D, + 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, + 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, + 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, + 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, 0x04, 0xF9, 0x00, 0x85, + 0x04, 0x68, 0x00, 0x8E, 0x05, 0x60, 0x00, 0x18, 0x06, 0x05, 0x00, 0x58, + 0x04, 0xFF, 0x00, 0x56, 0x05, 0xC0, 0x00, 0x8E, 0x05, 0x2A, 0x00, 0x51, + 0x06, 0xE0, 0x00, 0x58, 0x06, 0xE1, 0x00, 0x8E, 0x05, 0xFB, 0x00, 0x58, + 0x06, 0xA8, 0x00, 0x3A, 0x06, 0xA8, 0x00, 0x3A, 0x06, 0xD4, 0x00, 0x3A, + 0x06, 0xE8, 0x00, 0x3A, 0x07, 0xF2, 0x00, 0x3A, 0x08, 0x07, 0x00, 0x3A, + 0x08, 0x00, 0x00, 0x3A, 0x08, 0x0E, 0x00, 0x3A, 0x07, 0x7E, 0x00, 0x3A, + 0x07, 0x8E, 0x00, 0x3A, 0x06, 0xC5, 0xFF, 0xC2, 0x06, 0xD4, 0x00, 0x3A, + 0x06, 0xE8, 0x00, 0x3A, 0x07, 0xF2, 0x00, 0x3A, 0x08, 0x07, 0x00, 0x3A, + 0x08, 0x00, 0x00, 0x3A, 0x08, 0x0E, 0x00, 0x3A, 0x07, 0x7E, 0x00, 0x3A, + 0x07, 0x8E, 0x00, 0x3A, 0x05, 0xFB, 0x00, 0x58, 0x05, 0xF6, 0x00, 0x5A, + 0x05, 0x30, 0x00, 0x3A, 0x06, 0x9A, 0x00, 0x3A, 0x05, 0x30, 0x00, 0x3A, + 0x05, 0x27, 0x00, 0x0B, 0x04, 0xF9, 0x00, 0x8E, 0x04, 0x68, 0x00, 0x8E, + 0x04, 0xAF, 0x00, 0x16, 0x06, 0x58, 0x00, 0x3A, 0x07, 0xA9, 0x00, 0x1C, + 0x07, 0xD5, 0x00, 0x1C, 0x04, 0xE2, 0x00, 0x5E, 0x05, 0x46, 0x00, 0x8E, + 0x05, 0x3E, 0x00, 0x8E, 0x05, 0x49, 0x00, 0x8E, 0x05, 0xC3, 0x00, 0x3A, + 0x06, 0x05, 0x00, 0x58, 0x05, 0x99, 0x00, 0x8E, 0x04, 0xF7, 0x00, 0x18, + 0x06, 0x8B, 0x00, 0x58, 0x05, 0xBB, 0x00, 0x8E, 0x07, 0x46, 0x00, 0x3A, + 0x05, 0x6C, 0x00, 0x7D, 0x05, 0x8D, 0x00, 0x7D, 0x05, 0x6C, 0x00, 0x7D, + 0x05, 0x6C, 0x00, 0x8E, 0x06, 0xE6, 0x00, 0x3A, 0x07, 0x89, 0x00, 0x8E, + 0x07, 0xA9, 0x00, 0x8E, 0x06, 0x5F, 0x00, 0x3A, 0x06, 0xCB, 0x00, 0x8E, + 0x05, 0x0D, 0x00, 0x8E, 0x08, 0xB5, 0x00, 0x3A, 0x08, 0xD1, 0x00, 0x8E, + 0x05, 0xCE, 0x00, 0x53, 0x08, 0x14, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x3C, + 0x05, 0x12, 0x00, 0x8E, 0x08, 0xB2, 0x00, 0x8E, 0x05, 0xCE, 0x00, 0x58, + 0x07, 0xDE, 0x00, 0x58, 0x06, 0xCB, 0x00, 0x11, 0x05, 0xE1, 0x00, 0x5F, + 0x04, 0xD9, 0x00, 0x5E, 0x05, 0x92, 0x00, 0x18, 0x06, 0x96, 0x00, 0x3A, + 0x04, 0x83, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, 0x05, 0x31, 0x00, 0x4A, + 0x04, 0x99, 0x00, 0x7D, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x88, 0x00, 0x4A, + 0x04, 0x03, 0x00, 0x4B, 0x04, 0x03, 0x00, 0x4B, 0x04, 0x2B, 0x00, 0x4B, + 0x04, 0x03, 0x00, 0x4B, 0x04, 0x03, 0x00, 0x49, 0x04, 0x2B, 0x00, 0x4A, + 0x05, 0x81, 0x00, 0x49, 0x04, 0x03, 0x00, 0x4B, 0x04, 0x03, 0x00, 0x4B, + 0x04, 0x03, 0x00, 0x4B, 0x04, 0x03, 0x00, 0x4B, 0x04, 0x03, 0x00, 0x4B, + 0x04, 0x03, 0x00, 0x4B, 0x04, 0x03, 0x00, 0x4B, 0x03, 0xE7, 0x00, 0x4A, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0xC7, 0x00, 0x58, 0x02, 0x07, 0x00, 0x7D, 0x02, 0x07, 0xFF, 0xA7, + 0x02, 0x07, 0x00, 0x7D, 0x02, 0x07, 0xFF, 0x8F, 0x02, 0x07, 0x00, 0x7C, + 0x02, 0x07, 0x00, 0x58, 0x02, 0x07, 0xFF, 0xCE, 0x02, 0x07, 0xFF, 0xA6, + 0x02, 0x07, 0xFF, 0xCF, 0x02, 0x07, 0xFF, 0xB0, 0x02, 0x07, 0xFF, 0xBE, + 0x02, 0x07, 0xFF, 0xB6, 0x02, 0x07, 0x00, 0x3D, 0x02, 0x07, 0xFF, 0xB6, + 0x02, 0x07, 0xFF, 0xCF, 0x02, 0x07, 0xFF, 0x3C, 0x02, 0x07, 0xFF, 0xB5, + 0x02, 0x07, 0xFF, 0x88, 0x04, 0xCC, 0x00, 0x1D, 0x04, 0x2A, 0x00, 0x4F, + 0x04, 0xF8, 0x00, 0x2E, 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAF, 0x00, 0x7D, + 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAF, 0xFF, 0xC7, 0x04, 0x58, 0x00, 0x4A, + 0x04, 0xDC, 0x00, 0x4A, 0x03, 0xCD, 0x00, 0x11, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x05, 0xC5, 0x00, 0x4A, + 0x05, 0x61, 0x00, 0x4A, 0x06, 0x29, 0x00, 0x7D, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, + 0x06, 0x51, 0x00, 0x4A, 0x06, 0x51, 0x00, 0x4A, 0x04, 0xBF, 0x00, 0x37, + 0x04, 0x89, 0x00, 0x4A, 0x04, 0x4E, 0x00, 0x7D, 0x03, 0x75, 0x00, 0x7D, + 0x03, 0x75, 0x00, 0x7D, 0x03, 0x75, 0xFF, 0xE7, 0x04, 0xE8, 0x00, 0x1A, + 0x06, 0x63, 0x00, 0x1F, 0x06, 0x94, 0x00, 0x1F, 0x03, 0xDA, 0x00, 0x47, + 0x04, 0x9C, 0x00, 0x7D, 0x04, 0x9C, 0x00, 0x7D, 0x04, 0x3E, 0x00, 0x7D, + 0x04, 0x96, 0x00, 0x7D, 0x04, 0x7B, 0x00, 0x7D, 0x04, 0x9B, 0x00, 0x7D, + 0x05, 0x02, 0x00, 0x11, 0x04, 0x8F, 0x00, 0x11, 0x04, 0x8F, 0x00, 0x11, + 0x04, 0xAF, 0x00, 0x11, 0x06, 0x07, 0x00, 0x7D, 0x06, 0x07, 0x00, 0x7D, + 0x04, 0x97, 0x00, 0x7D, 0x04, 0xB8, 0x00, 0x7D, 0x05, 0x75, 0x00, 0x7D, + 0x04, 0x97, 0x00, 0x7D, 0x04, 0x97, 0x00, 0x7D, 0x04, 0x91, 0x00, 0x7D, + 0x03, 0xCD, 0x00, 0x11, 0x05, 0x81, 0x00, 0x4A, 0x04, 0x01, 0x00, 0x1F, + 0x04, 0x74, 0x00, 0x1F, 0x04, 0xC4, 0x00, 0x7D, 0x04, 0x91, 0x00, 0x7D, + 0x04, 0x7C, 0x00, 0x7D, 0x04, 0x9C, 0x00, 0x7D, 0x04, 0x7C, 0x00, 0x7D, + 0x06, 0x79, 0x00, 0x7D, 0x06, 0x99, 0x00, 0x7D, 0x04, 0x4C, 0x00, 0x7D, + 0x05, 0x10, 0x00, 0x11, 0x05, 0xB7, 0x00, 0x7D, 0x04, 0xC7, 0x00, 0x11, + 0x04, 0xC7, 0x00, 0x11, 0x07, 0x3C, 0x00, 0x2E, 0x07, 0x0F, 0x00, 0x7D, + 0x04, 0x59, 0x00, 0x44, 0x06, 0x7D, 0x00, 0x7D, 0x04, 0x52, 0x00, 0x19, + 0x04, 0x3A, 0x00, 0x7D, 0x07, 0x42, 0x00, 0x7D, 0x04, 0x59, 0x00, 0x4A, + 0x06, 0x3F, 0x00, 0x4A, 0x05, 0x50, 0x00, 0x11, 0x05, 0xA1, 0x00, 0x11, + 0x04, 0xD9, 0x00, 0x5E, 0x04, 0x9C, 0x00, 0x1D, 0x05, 0x0D, 0x00, 0x52, + 0x04, 0x59, 0x00, 0x4A, 0x04, 0x44, 0x00, 0x07, 0x04, 0xC8, 0x00, 0x51, + 0x03, 0x1F, 0x00, 0x15, 0x04, 0xB0, 0x00, 0x4F, 0x05, 0x7D, 0x00, 0x3B, + 0x05, 0x32, 0x00, 0x20, 0x04, 0x3A, 0x00, 0x28, 0x05, 0x07, 0x00, 0x44, + 0x07, 0x3A, 0x00, 0x8E, 0x05, 0x45, 0x00, 0x33, 0x05, 0xBB, 0x00, 0x21, + 0x07, 0xA9, 0x00, 0x20, 0x04, 0xC8, 0x00, 0x51, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x26, 0x00, 0x6E, 0x05, 0xF2, 0x00, 0x13, 0x05, 0xE3, 0x00, 0x58, + 0x05, 0xCE, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x58, 0x05, 0xA4, 0x00, 0x58, + 0x05, 0x03, 0x00, 0x3A, 0x0A, 0xEB, 0x00, 0x4A, 0x06, 0xAE, 0x00, 0x7D, + 0x06, 0x95, 0x00, 0x93, 0x05, 0xB4, 0x00, 0x7B, 0x08, 0xCD, 0x00, 0x8E, + 0x05, 0xB4, 0x00, 0x7E, 0x04, 0xC9, 0xFF, 0xFB, 0x05, 0x27, 0x00, 0x8E, + 0x05, 0x27, 0x00, 0x8E, 0x05, 0x0A, 0x00, 0x58, 0x03, 0x0D, 0x00, 0x38, + 0x04, 0xAA, 0x00, 0x61, 0x04, 0xAA, 0x00, 0x61, 0x04, 0xE2, 0x00, 0x5E, + 0x05, 0x17, 0x00, 0x43, 0x04, 0xB5, 0x00, 0x53, 0x04, 0xFA, 0x00, 0x3A, + 0x04, 0xD3, 0x00, 0x58, 0x04, 0x4B, 0x00, 0x3A, 0x04, 0xCF, 0x00, 0x58, + 0x04, 0xD3, 0x00, 0x58, 0x05, 0x0A, 0x00, 0x58, 0x03, 0x07, 0x00, 0x6F, + 0x04, 0xD9, 0x00, 0x5E, 0x05, 0x17, 0x00, 0x43, 0x04, 0xAD, 0x00, 0x58, + 0x04, 0xAD, 0x00, 0x58, 0x05, 0x29, 0x00, 0x6E, 0x05, 0x29, 0x00, 0xD2, + 0x05, 0x29, 0x00, 0xA0, 0x05, 0x29, 0x00, 0x79, 0x05, 0x29, 0x00, 0x4C, + 0x05, 0x29, 0x00, 0x8D, 0x05, 0x29, 0x00, 0x83, 0x05, 0x29, 0x00, 0xA9, + 0x05, 0x29, 0x00, 0x85, 0x05, 0x29, 0x00, 0x83, 0x05, 0x29, 0x00, 0x6E, + 0x05, 0x29, 0x00, 0xD2, 0x05, 0x29, 0x00, 0x7C, 0x05, 0x29, 0x00, 0x4C, + 0x05, 0x29, 0x00, 0x96, 0x05, 0x29, 0x00, 0x96, 0x02, 0x26, 0x00, 0x6C, + 0x02, 0x26, 0x00, 0x89, 0x02, 0x26, 0x00, 0x89, 0x02, 0x26, 0x00, 0x89, + 0x02, 0x26, 0x00, 0x6C, 0x03, 0x20, 0x01, 0x0C, 0x03, 0x20, 0x00, 0x53, + 0x03, 0x20, 0x00, 0x5F, 0x03, 0x20, 0x00, 0x53, 0x03, 0x20, 0x01, 0x30, + 0x03, 0x20, 0x00, 0x53, 0x03, 0x20, 0x01, 0x0C, 0x03, 0x20, 0x00, 0x53, + 0x03, 0x20, 0x00, 0x5F, 0x03, 0x20, 0x00, 0x53, 0x03, 0x20, 0x01, 0x30, + 0x03, 0x20, 0x00, 0x53, 0x05, 0x29, 0x01, 0x4A, 0x05, 0x29, 0x01, 0x4A, + 0x05, 0x29, 0x00, 0xB2, 0x05, 0x29, 0x00, 0xB2, 0x05, 0x29, 0x00, 0xB2, + 0x05, 0x29, 0x00, 0xB2, 0x05, 0x29, 0x00, 0xC4, 0x05, 0x29, 0x00, 0xC4, + 0x05, 0x29, 0x00, 0xAA, 0x05, 0x29, 0x00, 0xB6, 0x05, 0x29, 0x00, 0xB0, + 0x05, 0x29, 0x00, 0xB6, 0x05, 0x29, 0x00, 0xB2, 0x05, 0x29, 0x00, 0x8E, + 0x05, 0x29, 0x00, 0x8C, 0x05, 0x29, 0x01, 0x02, 0x05, 0x29, 0x00, 0xB2, + 0x05, 0x29, 0x00, 0xB2, 0x05, 0x29, 0x00, 0xB2, 0x05, 0x29, 0x00, 0xB2, + 0x05, 0x29, 0x00, 0xC4, 0x05, 0x29, 0x00, 0xC4, 0x05, 0x29, 0x00, 0xAA, + 0x05, 0x29, 0x00, 0xB6, 0x05, 0x29, 0x00, 0xB0, 0x05, 0x29, 0x00, 0xB6, + 0x05, 0x29, 0x00, 0xB2, 0x05, 0x29, 0x00, 0x8E, 0x05, 0x29, 0x00, 0x8C, + 0x05, 0x29, 0x00, 0xB7, 0x02, 0x26, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x05, 0x07, 0x00, 0x4A, 0x03, 0x57, 0x00, 0x3A, + 0x01, 0xF7, 0x00, 0x6D, 0x03, 0xEE, 0x00, 0x6D, 0x01, 0xFE, 0x00, 0x6D, + 0x06, 0x40, 0x00, 0x6D, 0x04, 0x4A, 0x00, 0x44, 0x08, 0x93, 0x00, 0x44, + 0x06, 0x40, 0x00, 0x44, 0x04, 0x4A, 0x00, 0x5B, 0x04, 0x1A, 0x00, 0x44, + 0x04, 0x1A, 0x00, 0x5B, 0x02, 0x95, 0x00, 0x99, 0x02, 0x95, 0x00, 0x3B, + 0x02, 0x95, 0x00, 0xA3, 0x02, 0x95, 0x00, 0xA3, 0x02, 0x95, 0x00, 0x55, + 0x02, 0x95, 0x00, 0x55, 0x03, 0x4A, 0x00, 0x79, 0x03, 0x4A, 0x00, 0x55, + 0x07, 0xE0, 0x00, 0x58, 0x02, 0x95, 0x00, 0x99, 0x02, 0x95, 0x00, 0x3B, + 0x02, 0x95, 0x00, 0xA3, 0x02, 0x95, 0x00, 0x55, 0x03, 0x4A, 0x00, 0x79, + 0x03, 0x4A, 0x00, 0x55, 0x07, 0xE0, 0x00, 0x58, 0x04, 0xEB, 0x00, 0x07, + 0x05, 0xB5, 0x00, 0x66, 0x02, 0xC3, 0x00, 0x11, 0x02, 0x90, 0x00, 0xE7, + 0x02, 0x25, 0x00, 0xB0, 0x02, 0xC3, 0x00, 0x11, 0x03, 0x86, 0x00, 0x79, + 0x04, 0x00, 0x00, 0x00, 0x05, 0x29, 0x00, 0x55, 0x08, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x00, 0x00, 0x03, 0xE9, 0x00, 0xB4, 0x03, 0xE9, 0x00, 0xB4, + 0x03, 0xE9, 0x00, 0xE2, 0x03, 0xE9, 0x01, 0x27, 0x04, 0x99, 0x00, 0x7B, + 0x04, 0x99, 0x00, 0x88, 0x03, 0xE9, 0x00, 0xE4, 0x03, 0x86, 0x00, 0x79, + 0x04, 0x00, 0x00, 0x00, 0x05, 0x29, 0x00, 0x55, 0x08, 0x00, 0x00, 0x00, + 0x03, 0xE9, 0x00, 0xB4, 0x03, 0xE9, 0x00, 0xB4, 0x03, 0xE9, 0x00, 0xE2, + 0x03, 0xE9, 0x01, 0x27, 0x04, 0x99, 0x00, 0x7B, 0x04, 0x99, 0x00, 0x88, + 0x03, 0xE9, 0x00, 0xE4, 0x01, 0xC1, 0x00, 0x60, 0x01, 0xC1, 0x00, 0x60, + 0x02, 0x2C, 0x00, 0xAF, 0x03, 0x88, 0x00, 0xAF, 0x03, 0x25, 0x00, 0x60, + 0x03, 0x21, 0x00, 0x60, 0x02, 0xFF, 0x00, 0x3E, 0x01, 0x9F, 0x00, 0x3E, + 0x01, 0xC1, 0x00, 0x30, 0x03, 0x21, 0x00, 0x30, 0x01, 0xBA, 0x00, 0x54, + 0x03, 0x73, 0x00, 0x54, 0x05, 0x2C, 0x00, 0x54, 0x06, 0xE5, 0x00, 0x54, + 0x01, 0xBA, 0x00, 0x54, 0x03, 0x73, 0x00, 0x54, 0x05, 0x2C, 0x00, 0x54, + 0x01, 0xC4, 0x00, 0x6D, 0x03, 0x86, 0x00, 0x6D, 0x01, 0xF5, 0x00, 0x45, + 0x01, 0xF5, 0x00, 0x6D, 0x05, 0xE0, 0x00, 0x6D, 0x03, 0xEA, 0x00, 0x6D, + 0x01, 0xF5, 0x00, 0x6D, 0x01, 0xF5, 0x00, 0x6D, 0x01, 0xF5, 0x00, 0x6D, + 0x01, 0xFF, 0x00, 0x45, 0x01, 0xF5, 0x00, 0x6D, 0x01, 0xF5, 0x00, 0x6D, + 0x01, 0xFF, 0x00, 0x45, 0x02, 0xDD, 0x00, 0x44, 0x02, 0xDD, 0x00, 0x30, + 0x04, 0x88, 0x00, 0x44, 0x04, 0x88, 0x00, 0x30, 0x05, 0x26, 0x00, 0x9A, + 0x05, 0x26, 0x00, 0xC7, 0x05, 0x26, 0x00, 0xB1, 0x05, 0x26, 0x00, 0xB1, + 0x05, 0x26, 0x00, 0xC2, 0x05, 0x26, 0x00, 0xC2, 0x05, 0x26, 0x00, 0xA8, + 0x05, 0x26, 0x00, 0xB5, 0x05, 0x26, 0x00, 0xAE, 0x05, 0x26, 0x00, 0xB5, + 0x05, 0x26, 0x00, 0xB1, 0x05, 0x26, 0x00, 0x8D, 0x05, 0x26, 0x00, 0x8B, + 0x05, 0x26, 0x00, 0x9A, 0x05, 0x26, 0x00, 0xC7, 0x05, 0x26, 0x00, 0xB1, + 0x05, 0x26, 0x00, 0xB1, 0x05, 0x26, 0x00, 0xC2, 0x05, 0x26, 0x00, 0xC2, + 0x05, 0x26, 0x00, 0xA8, 0x05, 0x26, 0x00, 0xB5, 0x05, 0x26, 0x00, 0xAE, + 0x05, 0x26, 0x00, 0xB5, 0x05, 0x26, 0x00, 0xB1, 0x05, 0x26, 0x00, 0x8D, + 0x05, 0x26, 0x00, 0x8B, 0x05, 0x26, 0x00, 0xD3, 0x03, 0xB1, 0x00, 0x00, + 0x04, 0x01, 0x00, 0x6B, 0x04, 0x01, 0x00, 0x6B, 0x03, 0x9F, 0x00, 0x37, + 0x03, 0xFB, 0x00, 0x6B, 0x05, 0x0C, 0x00, 0xA8, 0x05, 0x1F, 0x00, 0x4A, + 0x07, 0x23, 0x00, 0x91, 0x07, 0x23, 0x00, 0x91, 0x07, 0x23, 0x00, 0x91, + 0x04, 0xC6, 0x00, 0x3B, 0x04, 0xB2, 0x00, 0x3B, 0x05, 0x82, 0x00, 0x3B, + 0x05, 0xD4, 0x00, 0x47, 0x04, 0xC9, 0x00, 0x47, 0x04, 0xE9, 0x00, 0x47, + 0x03, 0x78, 0x00, 0x66, 0x03, 0x7C, 0x00, 0x3A, 0x03, 0xAD, 0x00, 0x38, + 0x01, 0x79, 0x00, 0x3C, 0x03, 0x29, 0x00, 0x44, 0x04, 0x96, 0x00, 0x44, + 0x04, 0x96, 0x00, 0x8E, 0x04, 0x5B, 0x00, 0x58, 0x07, 0x67, 0x00, 0x4B, + 0x04, 0xF9, 0x00, 0x8B, 0x05, 0x29, 0x00, 0x52, 0x05, 0xB7, 0x00, 0xAC, + 0x02, 0xC7, 0xFF, 0xC9, 0x04, 0xF9, 0x00, 0x48, 0x05, 0x50, 0x00, 0x49, + 0x04, 0x56, 0x00, 0x39, 0x02, 0xFA, 0x00, 0x43, 0x03, 0x34, 0x00, 0x5F, + 0x02, 0xFF, 0x00, 0x43, 0x03, 0x34, 0x00, 0x43, 0x03, 0x08, 0x00, 0x43, + 0x02, 0x15, 0x00, 0x26, 0x03, 0x35, 0x00, 0x43, 0x03, 0x29, 0x00, 0x5F, + 0x01, 0x79, 0x00, 0x57, 0x01, 0x79, 0xFF, 0xF2, 0x02, 0xF8, 0x00, 0x5F, + 0x01, 0x78, 0x00, 0x5F, 0x04, 0x9D, 0x00, 0x5F, 0x03, 0x29, 0x00, 0x5F, + 0x03, 0x1F, 0x00, 0x43, 0x03, 0x34, 0x00, 0x5F, 0x03, 0x34, 0x00, 0x43, + 0x02, 0x1B, 0x00, 0x5F, 0x02, 0xD7, 0x00, 0x41, 0x02, 0x06, 0x00, 0x26, + 0x03, 0x29, 0x00, 0x5F, 0x03, 0x05, 0x00, 0x26, 0x04, 0x4D, 0x00, 0x25, + 0x02, 0xEB, 0x00, 0x27, 0x03, 0x06, 0x00, 0x26, 0x02, 0xDF, 0x00, 0x5C, + 0x03, 0x75, 0x00, 0x47, 0x03, 0x75, 0x00, 0x47, 0x02, 0x32, 0x00, 0x3E, + 0x02, 0x2F, 0x00, 0x55, 0x03, 0x37, 0x00, 0x50, 0x03, 0x52, 0x00, 0x51, + 0x03, 0x4D, 0x00, 0x51, 0x03, 0x67, 0x00, 0x48, 0x03, 0x67, 0x00, 0x48, + 0x03, 0x38, 0x00, 0x4A, 0x03, 0x4C, 0x00, 0x47, 0x03, 0x2F, 0x00, 0x47, + 0x02, 0xF8, 0x00, 0x3D, 0x03, 0x4C, 0x00, 0x47, 0x03, 0x4C, 0x00, 0x47, + 0x03, 0x2F, 0x00, 0x47, 0x01, 0xEA, 0x00, 0x6C, 0x01, 0xEA, 0x00, 0x3A, + 0x01, 0xEA, 0x00, 0x74, 0x01, 0xEA, 0x00, 0x4C, 0x03, 0x6A, 0x00, 0x7F, + 0x03, 0x6B, 0x00, 0x83, 0x03, 0x6A, 0x00, 0x87, 0x02, 0xFA, 0x00, 0x43, + 0x03, 0x34, 0x00, 0x5F, 0x02, 0xFF, 0x00, 0x43, 0x03, 0x34, 0x00, 0x43, + 0x03, 0x08, 0x00, 0x43, 0x02, 0x15, 0x00, 0x26, 0x03, 0x35, 0x00, 0x43, + 0x03, 0x29, 0x00, 0x5F, 0x01, 0x79, 0x00, 0x57, 0x01, 0x79, 0xFF, 0xF2, + 0x02, 0xF8, 0x00, 0x5F, 0x01, 0x78, 0x00, 0x5F, 0x04, 0x9D, 0x00, 0x5F, + 0x03, 0x29, 0x00, 0x5F, 0x03, 0x1F, 0x00, 0x43, 0x03, 0x34, 0x00, 0x5F, + 0x03, 0x34, 0x00, 0x43, 0x02, 0x1B, 0x00, 0x5F, 0x02, 0xD7, 0x00, 0x41, + 0x02, 0x06, 0x00, 0x26, 0x03, 0x29, 0x00, 0x5F, 0x03, 0x05, 0x00, 0x26, + 0x04, 0x4D, 0x00, 0x25, 0x02, 0xEB, 0x00, 0x27, 0x03, 0x06, 0x00, 0x26, + 0x02, 0xDF, 0x00, 0x5C, 0x03, 0x75, 0x00, 0x47, 0x03, 0x75, 0x00, 0x47, + 0x02, 0x32, 0x00, 0x3E, 0x02, 0x2F, 0x00, 0x55, 0x03, 0x37, 0x00, 0x50, + 0x03, 0x52, 0x00, 0x51, 0x03, 0x4D, 0x00, 0x51, 0x03, 0x67, 0x00, 0x48, + 0x03, 0x67, 0x00, 0x48, 0x03, 0x38, 0x00, 0x4A, 0x03, 0x4C, 0x00, 0x47, + 0x03, 0x2F, 0x00, 0x47, 0x02, 0xF8, 0x00, 0x3D, 0x03, 0x4C, 0x00, 0x47, + 0x03, 0x4C, 0x00, 0x47, 0x03, 0x2F, 0x00, 0x47, 0x01, 0xEA, 0x00, 0x6C, + 0x01, 0xEA, 0x00, 0x3A, 0x01, 0xEA, 0x00, 0x74, 0x01, 0xEA, 0x00, 0x4C, + 0x03, 0x6A, 0x00, 0x7F, 0x03, 0x6B, 0x00, 0x83, 0x03, 0x6A, 0x00, 0x87, + 0x01, 0x42, 0xFE, 0x43, 0x03, 0x19, 0x00, 0x42, 0x03, 0x1A, 0x00, 0x41, + 0x01, 0xFC, 0x00, 0x38, 0x01, 0xF7, 0x00, 0x4D, 0x02, 0xE2, 0x00, 0x4A, + 0x02, 0xFE, 0x00, 0x4C, 0x02, 0xFA, 0x00, 0x4C, 0x03, 0x20, 0x00, 0x42, + 0x03, 0x20, 0x00, 0x42, 0x02, 0xE6, 0x00, 0x46, 0x02, 0xF9, 0x00, 0x42, + 0x02, 0xD9, 0x00, 0x42, 0x02, 0xAC, 0x00, 0x38, 0x02, 0xF6, 0x00, 0x42, + 0x02, 0xF9, 0x00, 0x42, 0x02, 0xD9, 0x00, 0x42, 0x03, 0x1C, 0x00, 0x74, + 0x03, 0x1A, 0x00, 0x76, 0x03, 0x1C, 0x00, 0x7D, 0x01, 0xBC, 0x00, 0x65, + 0x01, 0xBC, 0x00, 0x34, 0x01, 0x63, 0x00, 0x43, 0x01, 0x7E, 0x00, 0x25, + 0x01, 0x8B, 0x00, 0x49, 0x01, 0x90, 0x00, 0x61, 0x03, 0x19, 0x00, 0x42, + 0x03, 0x1A, 0x00, 0x41, 0x01, 0xFC, 0x00, 0x38, 0x01, 0xF7, 0x00, 0x4D, + 0x02, 0xE2, 0x00, 0x4A, 0x02, 0xFE, 0x00, 0x4C, 0x02, 0xFA, 0x00, 0x4C, + 0x03, 0x20, 0x00, 0x42, 0x03, 0x20, 0x00, 0x42, 0x02, 0xE6, 0x00, 0x46, + 0x02, 0xF9, 0x00, 0x42, 0x02, 0xD9, 0x00, 0x42, 0x02, 0xAC, 0x00, 0x38, + 0x02, 0xF6, 0x00, 0x42, 0x02, 0xF9, 0x00, 0x42, 0x02, 0xD9, 0x00, 0x42, + 0x03, 0x1C, 0x00, 0x74, 0x03, 0x1A, 0x00, 0x76, 0x03, 0x1C, 0x00, 0x7D, + 0x01, 0xBC, 0x00, 0x65, 0x01, 0xBC, 0x00, 0x34, 0x01, 0x63, 0x00, 0x43, + 0x01, 0x7E, 0x00, 0x25, 0x01, 0x8B, 0x00, 0x49, 0x01, 0x90, 0x00, 0x61, + 0x03, 0x7B, 0x00, 0x38, 0x06, 0x5D, 0x00, 0x38, 0x07, 0x61, 0x00, 0x42, + 0x06, 0x82, 0x00, 0x38, 0x07, 0x65, 0x00, 0x4A, 0x06, 0x17, 0x00, 0x38, + 0x06, 0xBF, 0x00, 0x4C, 0x06, 0x9D, 0x00, 0x38, 0x07, 0x81, 0x00, 0x4A, + 0x07, 0x45, 0x00, 0x4C, 0x07, 0x84, 0x00, 0x42, 0x06, 0x75, 0x00, 0x38, + 0x07, 0x21, 0x00, 0x46, 0x06, 0xA1, 0x00, 0x38, 0x06, 0x71, 0x00, 0x38, + 0x07, 0x19, 0x00, 0x4C, 0x07, 0x1D, 0x00, 0x46, 0x06, 0x41, 0x00, 0x38, + 0x06, 0x75, 0x00, 0x38, 0x08, 0x8F, 0x00, 0x38, 0x07, 0x36, 0x00, 0x95, + 0x09, 0xFD, 0x00, 0x95, 0x0C, 0xC4, 0x00, 0x95, 0x06, 0x6D, 0x00, 0x21, + 0x06, 0xD6, 0x00, 0x43, 0x06, 0xAA, 0x00, 0x43, 0x06, 0x93, 0x00, 0x43, + 0x06, 0x74, 0x00, 0x43, 0x02, 0x36, 0x00, 0x67, 0x03, 0x87, 0x00, 0x68, + 0x02, 0x36, 0x00, 0x58, 0x02, 0x25, 0x00, 0x9C, 0x04, 0x8D, 0x00, 0xEE, + 0x06, 0x38, 0x00, 0xEE, 0x03, 0x3A, 0x00, 0x4F, 0x03, 0xD5, 0x00, 0xBA, + 0x03, 0x52, 0x00, 0x90, 0x03, 0x39, 0x00, 0x6B, 0x03, 0x3F, 0x00, 0x6D, + 0x01, 0xDD, 0x00, 0x68, 0x02, 0x7A, 0x00, 0x43, 0x03, 0x3A, 0x00, 0x4F, + 0x05, 0x34, 0x00, 0xEE, 0x02, 0x37, 0x00, 0xA6, 0x01, 0xFC, 0x00, 0x50, + 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0xBA, + 0x01, 0xDD, 0x00, 0x68, 0x00, 0x00, 0xFC, 0xD3, 0x01, 0xF4, 0x00, 0x00, + 0x01, 0xF4, 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x02, 0x1C, 0x00, 0x00, + 0x04, 0x6D, 0x00, 0x00, 0x08, 0xD4, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x08, 0x00, 0x00, 0x00, 0x02, 0xAC, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x01, 0x54, 0x00, 0x00, 0x05, 0x29, 0x00, 0x00, 0x01, 0xF5, 0x00, 0x00, + 0x01, 0x36, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x08, 0x91, 0x00, 0x8E, 0x09, 0x41, 0x00, 0x66, 0x08, 0x06, 0x00, 0x66, + 0x05, 0x46, 0x00, 0x8E, 0x05, 0x73, 0x00, 0x18, 0x06, 0x05, 0x00, 0x58, + 0x04, 0xFA, 0x00, 0x7A, 0x07, 0x75, 0x00, 0xB3, 0x0A, 0x8D, 0x00, 0xB3, + 0x15, 0x47, 0x00, 0xB3, 0x07, 0x75, 0x00, 0xB3, 0x0A, 0x8D, 0x00, 0xB3, + 0x07, 0x75, 0x00, 0xE9, 0x0A, 0x8D, 0x00, 0xE9, 0x15, 0x47, 0x00, 0xE9, + 0x07, 0x75, 0x00, 0xE9, 0x0A, 0x8D, 0x00, 0xE9, 0x05, 0xE1, 0x00, 0xD3, + 0x05, 0xE1, 0x00, 0xCD, 0x05, 0xE1, 0x00, 0xCD, 0x05, 0xE1, 0x00, 0xD3, + 0x0A, 0x8D, 0x00, 0xB3, 0x0D, 0xD3, 0x00, 0xB3, 0x0A, 0x8D, 0x00, 0xB3, + 0x0D, 0xD3, 0x00, 0xB3, 0x06, 0xAF, 0x00, 0xB3, 0x06, 0xAF, 0x00, 0xB3, + 0x06, 0x98, 0x00, 0xB5, 0x06, 0x95, 0x00, 0xB3, 0x09, 0x02, 0x00, 0xB3, + 0x09, 0x02, 0x00, 0xA8, 0x07, 0x75, 0x00, 0xB3, 0x0A, 0x8D, 0x00, 0xB3, + 0x15, 0x47, 0x00, 0xB3, 0x07, 0x75, 0x00, 0xB3, 0x0A, 0x8D, 0x00, 0xB3, + 0x07, 0x75, 0x00, 0xE9, 0x0A, 0x8D, 0x00, 0xE9, 0x15, 0x47, 0x00, 0xE9, + 0x07, 0x75, 0x00, 0xE9, 0x0A, 0x8D, 0x00, 0xE9, 0x0A, 0x8D, 0x00, 0xB3, + 0x0D, 0xD3, 0x00, 0xB3, 0x0A, 0x8D, 0x00, 0xB3, 0x0D, 0xD3, 0x00, 0xB3, + 0x05, 0xE1, 0x00, 0xCD, 0x05, 0xE1, 0x00, 0xCD, 0x05, 0xE1, 0x00, 0xD3, + 0x05, 0xE1, 0x00, 0xD3, 0x06, 0xE0, 0x00, 0xC0, 0x06, 0xE1, 0x01, 0x62, + 0x07, 0xFE, 0x00, 0x53, 0x07, 0xFE, 0x00, 0x53, 0x07, 0x3E, 0x00, 0x50, + 0x07, 0x3E, 0x00, 0xB0, 0x07, 0xFE, 0x00, 0x53, 0x07, 0xFE, 0x00, 0x53, + 0x07, 0x3E, 0x00, 0x50, 0x07, 0x3E, 0x00, 0xB0, 0x08, 0x1B, 0x00, 0x34, + 0x07, 0x23, 0x00, 0x91, 0x07, 0x23, 0x00, 0x91, 0x07, 0x23, 0x00, 0xA9, + 0x07, 0x23, 0x00, 0xA9, 0x07, 0x23, 0x00, 0xA9, 0x07, 0x23, 0x00, 0xA9, + 0x07, 0x23, 0x00, 0xA9, 0x08, 0x41, 0x00, 0x4F, 0x08, 0x41, 0x00, 0x4F, + 0x08, 0x41, 0x00, 0x4F, 0x08, 0x41, 0x00, 0x4F, 0x08, 0x5F, 0x00, 0x9B, + 0x08, 0x5F, 0x00, 0x9B, 0x08, 0x01, 0x00, 0x80, 0x08, 0x01, 0x00, 0x80, + 0x08, 0x01, 0x00, 0x80, 0x08, 0x2F, 0x00, 0xA3, 0x08, 0x2F, 0x00, 0xA3, + 0x08, 0x36, 0x00, 0x9B, 0x08, 0x36, 0x00, 0x9B, 0x08, 0x36, 0x00, 0x9B, + 0x07, 0xBE, 0x00, 0xD6, 0x06, 0x20, 0x00, 0xB3, 0x06, 0x20, 0x00, 0xB3, + 0x06, 0x20, 0x00, 0xB3, 0x06, 0x31, 0x00, 0x4F, 0x08, 0x01, 0x00, 0xA3, + 0x08, 0x01, 0x00, 0xA3, 0x07, 0x75, 0x00, 0xD1, 0x07, 0x75, 0x00, 0xD1, + 0x07, 0x75, 0x00, 0xD1, 0x09, 0x8D, 0x00, 0x97, 0x09, 0x8D, 0x00, 0xA3, + 0x07, 0xFA, 0x00, 0x8E, 0x06, 0xBB, 0x00, 0x6F, 0x07, 0xC7, 0x00, 0xB3, + 0x07, 0xC7, 0x00, 0xB3, 0x07, 0xC7, 0x00, 0xB5, 0x07, 0xC7, 0x00, 0xB3, + 0x07, 0xC7, 0x00, 0xB5, 0x06, 0xA3, 0x00, 0xB5, 0x08, 0x05, 0x00, 0xA3, + 0x08, 0x05, 0x00, 0xA3, 0x04, 0xBD, 0x00, 0x9B, 0x04, 0xBD, 0x00, 0x9B, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, 0x0B, 0x1E, 0x00, 0x18, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, + 0x0B, 0x0C, 0x00, 0x40, 0x0B, 0x0C, 0x00, 0x40, 0x05, 0xE3, 0x00, 0x58, + 0x05, 0xF9, 0x00, 0x58, 0x05, 0x46, 0x00, 0x8E, 0x04, 0x61, 0x00, 0x8E, + 0x05, 0xCB, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, 0x05, 0x0D, 0x00, 0x52, + 0x04, 0x3D, 0x00, 0x7D, 0x01, 0xD0, 0x00, 0x64, 0x02, 0x07, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x02, 0xCC, 0x00, 0x65, 0x04, 0x01, 0x00, 0x4B, + 0x02, 0xA9, 0x00, 0x11, 0x02, 0x60, 0x00, 0x7D, 0x00, 0x00, 0x00, 0x7F, + 0x01, 0xF5, 0x00, 0x66, 0x01, 0xF5, 0x00, 0x66, 0x01, 0xF5, 0x00, 0x5B, + 0x03, 0xA7, 0x00, 0x6B, 0x03, 0xA7, 0x00, 0x6B, 0x02, 0x0A, 0x00, 0x6B, + 0x02, 0x0A, 0x00, 0x6B, 0x02, 0x0A, 0x00, 0x6B, 0x03, 0xA7, 0x00, 0x6B, + 0x02, 0x0A, 0x00, 0x6B, 0x03, 0xA7, 0x00, 0x6B, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, + 0x05, 0x73, 0x00, 0x18, 0x05, 0x73, 0x00, 0x18, 0x05, 0x27, 0x00, 0x8E, + 0x05, 0x27, 0x00, 0x8E, 0x05, 0xCE, 0x00, 0x58, 0x05, 0x99, 0x00, 0x8E, + 0x05, 0x99, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, + 0x04, 0xBD, 0x00, 0x8E, 0x04, 0xBD, 0x00, 0x8E, 0x04, 0x8D, 0x00, 0x8E, + 0x05, 0xE3, 0x00, 0x58, 0x05, 0xC0, 0x00, 0x8E, 0x05, 0xC0, 0x00, 0x8E, + 0x05, 0xC0, 0x00, 0x8E, 0x01, 0xFC, 0xFF, 0xC8, 0x01, 0xFC, 0xFF, 0xC8, + 0x01, 0xFC, 0x00, 0x8E, 0x01, 0xFC, 0x00, 0x8E, 0x05, 0x46, 0x00, 0x8E, + 0x04, 0x61, 0x00, 0x8E, 0x04, 0x61, 0xFF, 0xE5, 0x07, 0x09, 0x00, 0x8E, + 0x07, 0x09, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x06, 0x05, 0x00, 0x58, 0x06, 0x06, 0x00, 0x58, + 0x06, 0x05, 0x00, 0x58, 0x04, 0xFD, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, + 0x05, 0x20, 0x00, 0x8E, 0x05, 0x20, 0x00, 0x8E, 0x05, 0x0D, 0x00, 0x52, + 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, 0x05, 0x0D, 0x00, 0x52, + 0x05, 0x03, 0x00, 0x3A, 0x05, 0x03, 0x00, 0x3A, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, + 0x05, 0xB0, 0x00, 0x89, 0x05, 0xB1, 0x00, 0x89, 0x05, 0x6F, 0x00, 0x18, + 0x07, 0xCA, 0x00, 0x18, 0x07, 0xCA, 0x00, 0x18, 0x07, 0xCA, 0x00, 0x18, + 0x05, 0x5F, 0x00, 0x1C, 0x05, 0x5F, 0x00, 0x1C, 0x05, 0x56, 0x00, 0x18, + 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, 0x05, 0x00, 0x00, 0x48, + 0x05, 0x00, 0x00, 0x48, 0x05, 0xF9, 0x00, 0x58, 0x03, 0x06, 0x00, 0x4D, + 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x4D, 0x03, 0x06, 0x00, 0x4D, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, 0x04, 0x4E, 0x00, 0x4C, + 0x04, 0xAF, 0x00, 0x7D, 0x04, 0xAF, 0x00, 0x7D, 0x04, 0x59, 0x00, 0x4A, + 0x04, 0xAF, 0x00, 0x4A, 0x04, 0xAF, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, 0x04, 0x6F, 0x00, 0x4A, + 0x02, 0xB7, 0x00, 0x11, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0x8D, 0xFF, 0xB1, + 0x04, 0x8D, 0x00, 0x78, 0x04, 0x8D, 0x00, 0x7D, 0x01, 0xD0, 0x00, 0x78, + 0x01, 0xD0, 0xFF, 0xB2, 0x01, 0xD0, 0xFF, 0xB2, 0x01, 0xD0, 0x00, 0x78, + 0x01, 0xD0, 0xFF, 0xEC, 0x01, 0xD0, 0xFF, 0xC9, 0x01, 0xD0, 0xFF, 0x94, + 0x04, 0x3D, 0x00, 0x7D, 0x02, 0xF0, 0x00, 0x7D, 0x01, 0xD0, 0x00, 0x77, + 0x01, 0xD0, 0xFF, 0xCF, 0x06, 0xE4, 0x00, 0x7D, 0x06, 0xE4, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8D, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0xAF, 0x00, 0x7D, 0x02, 0xCC, 0x00, 0x7D, 0x02, 0xCC, 0x00, 0x77, + 0x02, 0xCC, 0x00, 0x74, 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, + 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, 0x04, 0x01, 0x00, 0x4B, + 0x02, 0xA9, 0xFF, 0xFA, 0x02, 0xA9, 0x00, 0x11, 0x02, 0xA9, 0x00, 0x11, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0xF0, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x4B, 0x00, 0x1D, 0x06, 0x4A, 0x00, 0x1F, 0x06, 0x4A, 0x00, 0x1F, + 0x06, 0x4A, 0x00, 0x1F, 0x04, 0x35, 0x00, 0x1F, 0x04, 0x35, 0x00, 0x1F, + 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x10, 0x00, 0x65, 0x04, 0x10, 0x00, 0x65, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x4A, 0x04, 0xB0, 0x00, 0x4A, 0x01, 0xD0, 0x00, 0x78, + 0x02, 0x61, 0x00, 0x7D, 0x03, 0x23, 0x00, 0x7D, 0x02, 0x07, 0x00, 0x7D, + 0x02, 0x07, 0xFF, 0xCF, 0x02, 0x60, 0xFF, 0xB2, 0x02, 0x60, 0x00, 0x78, + 0x02, 0x60, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0xF1, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0xBD, 0x00, 0x8E, 0x01, 0xFC, 0xFF, 0xC8, + 0x05, 0xE1, 0x00, 0x5F, 0x07, 0xA9, 0x00, 0x1C, 0x04, 0xE2, 0x00, 0x5E, + 0x05, 0xCB, 0x00, 0x8E, 0x06, 0x05, 0x00, 0x58, 0x05, 0xCE, 0x00, 0x53, + 0x04, 0xF7, 0x00, 0x18, 0x05, 0x6C, 0x00, 0x7D, 0x06, 0xCB, 0x00, 0x8E, + 0x03, 0x06, 0x00, 0x4D, 0x04, 0x6F, 0x00, 0x46, 0x06, 0x63, 0x00, 0x1F, + 0x03, 0xDA, 0x00, 0x47, 0x04, 0x9C, 0x00, 0x7D, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x59, 0x00, 0x44, 0x04, 0x7C, 0x00, 0x7D, 0x05, 0xB7, 0x00, 0x7D, + 0x05, 0x30, 0x00, 0x3A, 0x02, 0x07, 0xFF, 0xB1, 0x04, 0x8D, 0x00, 0x7D, + 0x04, 0x8D, 0x00, 0x7D, 0x02, 0x07, 0xFF, 0x4D, 0x02, 0x07, 0xFF, 0xB2, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x01, 0xF5, 0x00, 0x7C, 0x01, 0xF5, 0x00, 0x7C, 0x01, 0xF5, 0x00, 0x7C, + 0x01, 0xF5, 0x00, 0x7C, 0x01, 0xF5, 0x00, 0x7C, 0x05, 0xE0, 0x00, 0x7C, + 0x01, 0xDB, 0x00, 0x6F, 0x04, 0x4A, 0x00, 0x44, 0x01, 0xF5, 0x00, 0x7C, + 0x01, 0xF5, 0x00, 0x7C, 0x03, 0xEA, 0x00, 0x7C, 0x01, 0xF5, 0x00, 0x7C, + 0x02, 0x26, 0x00, 0x95, 0x02, 0x26, 0x00, 0x95, 0x02, 0x26, 0x00, 0x95, + 0x02, 0x26, 0x00, 0x95, 0x02, 0x26, 0x00, 0x95, 0x01, 0xF5, 0x00, 0x7C, + 0x05, 0x4B, 0x01, 0x11, 0x05, 0x4B, 0x01, 0x11, 0x05, 0x4B, 0x01, 0x11, + 0x03, 0xB9, 0x00, 0xA7, 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x00, 0x7F, + 0x00, 0x00, 0x00, 0x7F, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x7C, + 0x00, 0x00, 0x00, 0x7C, 0x04, 0x8D, 0x01, 0x11, 0x01, 0xDD, 0x00, 0x7F, + 0x06, 0x22, 0x01, 0x11, 0x02, 0xE6, 0xFF, 0xE2, 0x02, 0x3C, 0x00, 0x7D, + 0x01, 0xDD, 0x00, 0x7F, 0x01, 0xF5, 0x00, 0x7C, 0x05, 0x4B, 0x01, 0x11, + 0x04, 0x8D, 0x01, 0x11, 0x02, 0x2A, 0x00, 0x30, 0x03, 0x5D, 0x00, 0x61, + 0x03, 0x5D, 0x00, 0x61, 0x04, 0x9A, 0x01, 0x17, 0x04, 0x9A, 0x01, 0x17, + 0x04, 0x9A, 0x01, 0x08, 0x04, 0x9A, 0x01, 0x08, 0x04, 0x9A, 0x01, 0x17, + 0x04, 0x9A, 0x01, 0x17, 0x04, 0x8D, 0x01, 0x12, 0x04, 0x8D, 0x01, 0x12, + 0x03, 0x52, 0x00, 0x72, 0x03, 0x52, 0x00, 0x72, 0x03, 0xD3, 0x00, 0xB4, + 0x03, 0xD3, 0x00, 0xB4, 0x05, 0xE3, 0x00, 0x58, 0x05, 0xF9, 0x00, 0x58, + 0x05, 0x46, 0x00, 0x8E, 0x04, 0x61, 0x00, 0x8E, 0x05, 0xCB, 0x00, 0x8E, + 0x05, 0x20, 0x00, 0x8E, 0x05, 0x0D, 0x00, 0x52, 0x04, 0x3D, 0x00, 0x7D, + 0x01, 0xD0, 0x00, 0x7C, 0x02, 0x07, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, + 0x02, 0xCC, 0x00, 0x7D, 0x04, 0x01, 0x00, 0x4B, 0x02, 0xA9, 0x00, 0x11, + 0x02, 0x60, 0x00, 0x7D, 0x00, 0x00, 0x00, 0x6C, 0x01, 0xAB, 0x00, 0x57, + 0x03, 0x2C, 0x00, 0x57, 0x03, 0x2C, 0x00, 0x57, 0x03, 0x2C, 0x00, 0x57, + 0x01, 0xAB, 0x00, 0x57, 0x01, 0xAB, 0x00, 0x57, 0x01, 0xAB, 0x00, 0x57, + 0x03, 0x2C, 0x00, 0x57, 0x05, 0x0E, 0x00, 0x8E, 0x0A, 0x99, 0x00, 0x8E, + 0x05, 0xE0, 0x00, 0x16, 0x04, 0xF8, 0x00, 0x62, 0x05, 0xE0, 0x00, 0x16, + 0x04, 0xE2, 0x00, 0x58, 0x04, 0xF5, 0x00, 0x47, 0x05, 0xE1, 0x00, 0x5F, + 0x05, 0x3E, 0x00, 0x3A, 0x05, 0x3E, 0x00, 0x3A, 0x05, 0x3F, 0x00, 0x4F, + 0x04, 0xF8, 0x00, 0x6B, 0x06, 0x64, 0x00, 0x8E, 0x08, 0xC9, 0x00, 0x8E, + 0x04, 0x5D, 0x00, 0x90, 0x0A, 0x33, 0x00, 0x8E, 0x06, 0xE9, 0x00, 0x5E, + 0x05, 0x03, 0x00, 0x3A, 0x06, 0x1D, 0x00, 0x18, 0x04, 0xF7, 0x00, 0x5B, + 0x05, 0xB3, 0x00, 0x54, 0x07, 0x2D, 0x00, 0x8E, 0x05, 0x29, 0x00, 0x6D, + 0x04, 0xF8, 0x00, 0x67, 0x04, 0xF8, 0x00, 0x43, 0x04, 0x3C, 0x00, 0x40, + 0x05, 0xB3, 0x00, 0x53, 0x06, 0x4B, 0x00, 0xA0, 0x04, 0x6C, 0x00, 0x51, + 0x05, 0xB2, 0x00, 0x47, 0x05, 0x5E, 0x00, 0x8E, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0xB0, 0x00, 0x7D, 0x05, 0x83, 0x00, 0x4A, 0x04, 0x3B, 0x00, 0x49, + 0x04, 0x6C, 0x00, 0x46, 0x04, 0x3B, 0x00, 0x40, 0x02, 0xC7, 0xFF, 0xC9, + 0x04, 0x25, 0x00, 0x4A, 0x04, 0x6C, 0x00, 0x61, 0x04, 0x6F, 0x00, 0x46, + 0x05, 0xF8, 0x00, 0x46, 0x04, 0xD9, 0x00, 0x5E, 0x04, 0xD9, 0x00, 0x5E, + 0x04, 0xF0, 0x00, 0x5E, 0x04, 0xE3, 0x00, 0x58, 0x04, 0x3B, 0x00, 0x4B, + 0x05, 0x94, 0x00, 0x7D, 0x04, 0x0C, 0x00, 0x6C, 0x04, 0xB0, 0x00, 0x4A, + 0x04, 0x3B, 0x00, 0x49, 0x04, 0x3B, 0x00, 0x49, 0x04, 0x3C, 0x00, 0x5F, + 0x04, 0x3B, 0x00, 0x49, 0x04, 0x3B, 0x00, 0x49, 0x04, 0x3B, 0x00, 0x49, + 0x04, 0x3C, 0x00, 0x6C, 0x02, 0xC7, 0xFF, 0xC9, 0x04, 0x25, 0x00, 0x7D, + 0x04, 0xCC, 0x00, 0x1D, 0x05, 0x13, 0x00, 0x8E, 0x05, 0x27, 0x00, 0x33, + 0x06, 0xA0, 0x00, 0x6B, 0x04, 0x3B, 0x00, 0x49, 0x05, 0x29, 0x00, 0x82, + 0x02, 0xC3, 0x00, 0x48, 0x04, 0xAA, 0x00, 0x24, 0x02, 0x92, 0x00, 0x11, + 0x04, 0x6D, 0x00, 0x58, 0x05, 0x42, 0x00, 0x1D, 0x05, 0xC4, 0x00, 0x11, + 0x04, 0xF7, 0x00, 0x46, 0x07, 0x2A, 0x00, 0x54, 0x07, 0x2A, 0x00, 0x54, + 0x04, 0x3C, 0x00, 0x72, 0x04, 0x4E, 0x00, 0x7D, 0x05, 0xC9, 0x00, 0x7D, + 0x03, 0xB1, 0x00, 0x29, 0x02, 0xC2, 0x00, 0x0D, 0x04, 0x6B, 0x00, 0x46, + 0x04, 0x9B, 0x00, 0x3E, 0x04, 0x6D, 0x00, 0x56, 0x04, 0xF6, 0x00, 0x3D, + 0x04, 0x3B, 0x00, 0x49, 0x04, 0xF8, 0x00, 0x64, 0x04, 0x3C, 0x00, 0x68, + 0x04, 0xFA, 0x00, 0xA2, 0x04, 0x20, 0x00, 0x0E, 0x04, 0x97, 0x00, 0x7D, + 0x06, 0x07, 0x00, 0x7D, 0x03, 0xCD, 0x00, 0x11, 0x03, 0x80, 0x00, 0x5A, + 0x01, 0xF7, 0x00, 0x6D, 0x02, 0x08, 0x00, 0xB1, 0x02, 0xC7, 0x00, 0x7F, + 0x01, 0xD0, 0xFF, 0x94, 0x09, 0x5F, 0x00, 0x59, 0x03, 0x7F, 0x00, 0x50, + 0x02, 0xC3, 0x00, 0x46, 0x03, 0x82, 0x00, 0x76, 0x02, 0x05, 0x00, 0x2B, + 0x04, 0x68, 0x00, 0x8E, 0x04, 0x68, 0x00, 0x8E, 0x04, 0x68, 0x00, 0x8E, + 0x04, 0x68, 0xFF, 0xCF, 0x05, 0x46, 0x00, 0x8E, 0x05, 0xC0, 0x00, 0x8E, + 0x04, 0xFD, 0x00, 0x8E, 0x05, 0xCE, 0x00, 0x58, 0x05, 0x03, 0x00, 0x3A, + 0x04, 0xF7, 0x00, 0x18, 0x05, 0x5F, 0x00, 0x1C, 0x07, 0x28, 0x00, 0x8E, + 0x05, 0x79, 0x00, 0x16, 0x07, 0x92, 0x00, 0x8E, 0x05, 0x73, 0x00, 0x18, + 0x07, 0x7A, 0x00, 0x8E, 0x06, 0xB3, 0x00, 0x7D, 0x09, 0x15, 0x00, 0x8E, + 0x04, 0x3A, 0x00, 0x61, 0x06, 0xE1, 0x00, 0x8E, 0x05, 0x92, 0x00, 0x18, + 0x0A, 0x50, 0x00, 0x58, 0x04, 0xE2, 0x00, 0x5E, 0x05, 0xCE, 0x00, 0x58, + 0x05, 0x03, 0x00, 0x3A, 0x05, 0x56, 0x00, 0x18, 0x05, 0x56, 0x00, 0x18, + 0x06, 0xCB, 0x00, 0x11, 0x01, 0xFC, 0x00, 0x8E, 0x07, 0xA9, 0x00, 0x1C, + 0x05, 0xC3, 0x00, 0x3A, 0x05, 0x8D, 0x00, 0x7D, 0x05, 0xE1, 0x00, 0x5F, + 0x07, 0xA9, 0x00, 0x1C, 0x04, 0xE2, 0x00, 0x5E, 0x05, 0xCE, 0x00, 0x53, + 0x05, 0x6C, 0x00, 0x7D, 0x06, 0xCB, 0x00, 0x8E, 0x05, 0x5F, 0x00, 0x1C, + 0x05, 0x9F, 0x00, 0x58, 0x05, 0x79, 0x00, 0x16, 0x03, 0x75, 0x00, 0x7D, + 0x03, 0x75, 0x00, 0x7D, 0x03, 0x75, 0xFF, 0xE7, 0x04, 0x9C, 0x00, 0x7D, + 0x04, 0x9C, 0x00, 0x7D, 0x04, 0x3E, 0x00, 0x7D, 0x06, 0x6D, 0x00, 0x7D, + 0x06, 0x28, 0x00, 0x7D, 0x04, 0x78, 0x00, 0x1D, 0x06, 0x37, 0x00, 0x7D, + 0x05, 0xA8, 0x00, 0x61, 0x07, 0xA8, 0x00, 0x7D, 0x03, 0xFD, 0x00, 0x3E, + 0x06, 0x29, 0x00, 0x7D, 0x04, 0x9C, 0x00, 0x1D, 0x03, 0xDA, 0x00, 0x47, + 0x04, 0x59, 0x00, 0x4A, 0x03, 0xCD, 0x00, 0x11, 0x04, 0x4B, 0x00, 0x1D, + 0x04, 0x4B, 0x00, 0x1D, 0x05, 0xA1, 0x00, 0x11, 0x06, 0x63, 0x00, 0x1F, + 0x04, 0x9C, 0x00, 0x7D, 0x04, 0x6F, 0x00, 0x46, 0x04, 0x6F, 0x00, 0x46, + 0x06, 0x63, 0x00, 0x1F, 0x03, 0xDA, 0x00, 0x47, 0x04, 0x9C, 0x00, 0x7D, + 0x04, 0x9C, 0x00, 0x7D, 0x04, 0x8E, 0x00, 0x4A, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x59, 0x00, 0x44, 0x04, 0x7C, 0x00, 0x7D, 0x05, 0xB7, 0x00, 0x7D, + 0x04, 0x35, 0x00, 0x1F, 0x04, 0x57, 0x00, 0x4A, 0x04, 0x9F, 0x00, 0x8E, + 0x05, 0x46, 0x00, 0x8E, 0x05, 0xCE, 0x00, 0x53, 0x05, 0xCE, 0x00, 0x58, + 0x05, 0xCE, 0x00, 0x53, 0x04, 0x25, 0x00, 0x7D, 0x04, 0x99, 0x00, 0x7D, + 0x04, 0x77, 0x00, 0x1D, 0x04, 0x59, 0x00, 0x44, 0x04, 0x59, 0x00, 0x4A, + 0x04, 0x59, 0x00, 0x44, 0x04, 0x18, 0x00, 0x7D, 0x04, 0x25, 0x00, 0x7D, + 0x04, 0xF9, 0x00, 0x8B, 0x04, 0xF8, 0x00, 0x6C, 0x06, 0xA0, 0x00, 0x44, + 0x05, 0xB4, 0x00, 0x5E, 0x04, 0xF9, 0x00, 0x8B, 0x03, 0x7F, 0x00, 0x2F, + 0x05, 0x31, 0x00, 0x4A, 0x04, 0x03, 0x00, 0x4B, 0x04, 0x8D, 0x00, 0x7D, + 0x02, 0x07, 0x00, 0x7D, 0x02, 0x07, 0xFF, 0xA7, 0x04, 0x8E, 0x00, 0x4A, + 0x04, 0x8D, 0x00, 0x7D, 0x04, 0x8D, 0x00, 0x7D, 0x06, 0x51, 0x00, 0x4A, + 0x02, 0x08, 0x00, 0x88, 0x02, 0x08, 0x00, 0x88, 0x03, 0x7F, 0x00, 0x47, + 0x01, 0xFC, 0x00, 0x8E, 0x03, 0xF9, 0x00, 0x8E, 0x05, 0xF5, 0x00, 0x8E, + 0x07, 0x6B, 0x00, 0x8E, 0x05, 0x6F, 0x00, 0x18, 0x07, 0x6B, 0x00, 0x18, + 0x09, 0x68, 0x00, 0x18, 0x0B, 0x64, 0x00, 0x18, 0x07, 0x5B, 0x00, 0x8E, + 0x05, 0x5F, 0x00, 0x1C, 0x07, 0x5B, 0x00, 0x1C, 0x09, 0x57, 0x00, 0x1C, + 0x04, 0x61, 0x00, 0x8E, 0x05, 0xCE, 0x00, 0x58, 0x05, 0x99, 0x00, 0x8E, + 0x07, 0x09, 0x00, 0x8E, 0x01, 0xFF, 0x00, 0x58, 0x03, 0xA0, 0x00, 0x61, + 0x05, 0x70, 0x00, 0x61, 0x06, 0x1B, 0x00, 0x61, 0x04, 0x36, 0x00, 0x14, + 0x05, 0xD8, 0x00, 0x13, 0x07, 0xEB, 0x00, 0x1D, 0x09, 0xBB, 0x00, 0x1D, + 0x06, 0x05, 0x00, 0x61, 0x04, 0x35, 0x00, 0x15, 0x06, 0x05, 0x00, 0x1F, + 0x07, 0xD5, 0x00, 0x1F, 0x01, 0xD0, 0x00, 0x7D, 0x04, 0x59, 0x00, 0x4A, + 0x04, 0xC4, 0x00, 0x41, 0x06, 0xE4, 0x00, 0x7D, 0x05, 0x28, 0x00, 0x52, + 0x05, 0xB5, 0x00, 0x9A, 0x06, 0x9F, 0x00, 0x6A, 0x00, 0x00, 0x00, 0x00, + 0x04, 0x6B, 0x00, 0x1A, 0x02, 0x37, 0x00, 0x49, 0x05, 0xB5, 0x00, 0x7A, + 0x03, 0xAF, 0x00, 0x50, 0x03, 0x7E, 0x00, 0x3E, 0x06, 0x6C, 0x00, 0x2F, + 0x01, 0xF5, 0x00, 0x6D, 0x01, 0xF5, 0x00, 0x6D, 0x04, 0x08, 0x00, 0x42, + 0x05, 0x59, 0x00, 0x68, 0x01, 0xFF, 0x00, 0x6D, 0x06, 0x6C, 0x00, 0x2F, + 0x03, 0xFB, 0x00, 0x6B, 0x06, 0x6B, 0x00, 0x23, 0x04, 0x3D, 0x00, 0xD1, + 0x05, 0xB4, 0x00, 0x6C, 0x06, 0x6C, 0x00, 0x2F, 0x04, 0x9E, 0x00, 0x87, + 0x03, 0xD9, 0x00, 0xE7, 0x02, 0xF2, 0x00, 0x34, 0x02, 0xF2, 0x00, 0x34, + 0x03, 0x81, 0xFF, 0xEE, 0x03, 0x7F, 0x00, 0x40, 0x04, 0xF8, 0x00, 0x65, + 0x02, 0x06, 0x00, 0xAD, 0x02, 0x07, 0x00, 0x60, 0x03, 0x7F, 0x00, 0x2F, + 0x03, 0x7F, 0x00, 0x4B, 0x03, 0xB2, 0x00, 0x64, 0x03, 0xB2, 0x00, 0x64, + 0x03, 0x7F, 0x00, 0x4B, 0x02, 0xC6, 0x00, 0x88, 0x02, 0xC4, 0x00, 0x5D, + 0x02, 0x36, 0x00, 0x2F, 0x02, 0xC6, 0x00, 0x88, 0x01, 0xF5, 0x00, 0x6D, + 0x01, 0x36, 0x00, 0x37, 0x01, 0x4A, 0x00, 0x42, 0x03, 0xB1, 0x00, 0x80, + 0x03, 0x81, 0x00, 0x73, 0x02, 0xC4, 0x00, 0x5D, 0x02, 0xC4, 0x00, 0x5E, + 0x02, 0xC4, 0x00, 0x5E, 0x02, 0x6F, 0x00, 0x41, 0x02, 0xC3, 0x00, 0xA3, + 0x04, 0x24, 0x00, 0xAF, 0x04, 0x24, 0x00, 0xAF, 0x03, 0x80, 0x00, 0x50, + 0x02, 0x38, 0x00, 0x52, 0x02, 0x38, 0x00, 0x52, 0x02, 0x38, 0x00, 0x52, + 0x02, 0x38, 0x00, 0x52, 0x03, 0x81, 0x00, 0x64, 0x03, 0x82, 0x00, 0x6F, + 0x03, 0xB2, 0x00, 0x51, 0x02, 0xC6, 0x00, 0x88, 0x02, 0xC4, 0x00, 0x67, + 0x02, 0xC4, 0x00, 0x67, 0x02, 0xC4, 0x00, 0x67, 0x02, 0xC4, 0x00, 0x67, + 0x02, 0xC4, 0x00, 0x67, 0x02, 0xC3, 0x00, 0x61, 0x02, 0x14, 0xFF, 0xD5, + 0x03, 0x80, 0x00, 0x5C, 0x03, 0x97, 0x00, 0x11, 0x05, 0xB4, 0x00, 0x7E, + 0x05, 0xB4, 0x00, 0x77, 0x05, 0x67, 0x00, 0x56, 0x00, 0x00, 0xFC, 0xA3, + 0x00, 0x00, 0xFC, 0xA1, 0x00, 0x00, 0xFD, 0x52, 0x00, 0x00, 0xFC, 0x96, + 0x00, 0x00, 0xFC, 0xAB, 0x00, 0x00, 0xFC, 0x9E, 0x00, 0x00, 0xFC, 0x93, + 0x00, 0x00, 0xFC, 0xAB, 0x00, 0x00, 0xFC, 0x03, 0x00, 0x00, 0xFD, 0x1A, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0xFC, 0x99, 0x00, 0x00, 0xFC, 0xBF, + 0x00, 0x00, 0xFD, 0x18, 0x00, 0x00, 0xFC, 0x0A, 0x00, 0x00, 0xFB, 0xE9, + 0x00, 0x00, 0xFB, 0xE4, 0x00, 0x00, 0xFB, 0xDF, 0x00, 0x00, 0xFC, 0x7D, + 0x00, 0x00, 0xFC, 0x7D, 0x00, 0x00, 0xFC, 0x88, 0x00, 0x00, 0xFC, 0x7A, + 0x00, 0x00, 0xFC, 0xA1, 0x00, 0x00, 0xFD, 0x48, 0x00, 0x00, 0xFC, 0xDC, + 0x00, 0x00, 0xFC, 0x34, 0x00, 0x00, 0xFC, 0xAC, 0x00, 0x00, 0xFC, 0x63, + 0x00, 0x00, 0xFC, 0x8A, 0x00, 0x00, 0xFC, 0xD4, 0x00, 0x00, 0xFC, 0x92, + 0x00, 0x00, 0xFD, 0x42, 0x00, 0x00, 0xFC, 0xAB, 0x00, 0x00, 0xFC, 0x69, + 0x00, 0x00, 0xFC, 0x7D, 0x00, 0x00, 0xF9, 0xDF, 0x00, 0x00, 0xFA, 0x04, + 0x00, 0x00, 0xFC, 0x31, 0x00, 0x00, 0xFC, 0x40, 0x00, 0x00, 0xFD, 0x4B, + 0x00, 0x00, 0xFD, 0x7C, 0x00, 0x00, 0xFB, 0xFB, 0x00, 0x00, 0xFC, 0x50, + 0x00, 0x00, 0xFC, 0x6C, 0x00, 0x00, 0x00, 0x28, 0x01, 0xB6, 0x00, 0x50, + 0x01, 0xB6, 0x00, 0x50, 0x01, 0xB6, 0x00, 0x50, 0x02, 0x8C, 0x00, 0x50, + 0x02, 0xAC, 0x00, 0x50, 0x02, 0xCC, 0x00, 0x50, 0x02, 0xD1, 0x00, 0x50, + 0x02, 0x5A, 0x00, 0x00, 0x02, 0x5A, 0x00, 0x00, 0x05, 0x34, 0x00, 0xEE, + 0x05, 0x34, 0x00, 0xEE, 0x03, 0xB9, 0x00, 0x7E, 0x01, 0x41, 0x00, 0x28, + 0x02, 0x25, 0x00, 0x9C, 0x03, 0xD3, 0x00, 0xBA, 0x00, 0x00, 0x00, 0xEE, + 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x4F, + 0x00, 0x00, 0x00, 0x6B, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x69, + 0x00, 0x00, 0x01, 0xB1, 0x00, 0x00, 0x01, 0xB1, 0x00, 0x00, 0xFE, 0x47, + 0x00, 0x00, 0x00, 0xA6, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x4F, + 0x00, 0x00, 0xFB, 0xEC, 0x00, 0x00, 0xFB, 0x7F, 0x00, 0x00, 0xFC, 0x2D, + 0x00, 0x00, 0xFC, 0x58, 0x00, 0x00, 0xFC, 0xD5, 0x00, 0x00, 0xFC, 0xDB, + 0x00, 0x00, 0xFB, 0xFF, 0x00, 0x00, 0xFB, 0xF4, 0x00, 0x00, 0xFC, 0x27, + 0x00, 0x00, 0xFB, 0xDF, 0x00, 0x00, 0xFC, 0xA0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFC, 0x42, 0x00, 0x00, 0xFD, 0x4C, 0x00, 0x00, 0xFC, 0x49, + 0x00, 0x00, 0xFC, 0xDD, 0x00, 0x00, 0xFC, 0xCF, 0x00, 0x00, 0xFC, 0xE6, + 0x00, 0x00, 0xFC, 0x26, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x68, + 0x00, 0x00, 0xFC, 0xAC, 0x00, 0x00, 0xFC, 0x0E, 0x00, 0x00, 0xFC, 0xD5, + 0x00, 0x00, 0xFC, 0xFF, 0x00, 0x00, 0xFD, 0x0D, 0x00, 0x00, 0xFB, 0x5C, + 0x00, 0x00, 0xFB, 0x5C, 0x00, 0x00, 0xFC, 0x04, 0x00, 0x00, 0xFD, 0x0D, + 0x00, 0x00, 0xFD, 0x05, 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x90, + 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0xFB, 0xA6, + 0x00, 0x00, 0xFB, 0x9E, 0x00, 0x00, 0xFC, 0xDC, 0x00, 0x00, 0xFC, 0x9F, + 0x00, 0x00, 0xFC, 0x14, 0x00, 0x00, 0xFC, 0x7C, 0x00, 0x00, 0xFC, 0x45, + 0x00, 0x00, 0xFB, 0xF7, 0x00, 0x00, 0xFC, 0x3A, 0x00, 0x00, 0xFB, 0x2C, + 0x00, 0x00, 0xFB, 0x07, 0x00, 0x00, 0xFC, 0x65, 0x00, 0x00, 0xFC, 0xD2, + 0x00, 0x00, 0xFC, 0xA7, 0x00, 0x00, 0xFC, 0x9E, 0x00, 0x00, 0xFC, 0x65, + 0x00, 0x00, 0xFC, 0x6E, 0x00, 0x00, 0xFC, 0x9E, 0x00, 0x00, 0xFC, 0x8A, + 0x00, 0x00, 0xFC, 0x92, 0x00, 0x00, 0xFC, 0xDE, 0x00, 0x00, 0xFC, 0xD0, + 0x00, 0x00, 0xFC, 0x45, 0x00, 0x00, 0xFC, 0x9A, 0x00, 0x00, 0xFC, 0xB6, + 0x00, 0x00, 0xFC, 0x40, 0x00, 0x00, 0xFC, 0x0D, 0x00, 0x00, 0xFC, 0xA3, + 0x00, 0x00, 0xFC, 0x82, 0x00, 0x00, 0xFC, 0x9B, 0x00, 0x00, 0xFD, 0x00, + 0x00, 0x00, 0xFC, 0xF9, 0x00, 0x00, 0xFC, 0x4A, 0x00, 0x00, 0xFC, 0x58, + 0x00, 0x00, 0xFB, 0x0A, 0x00, 0x00, 0xFC, 0x33, 0x03, 0x51, 0x00, 0x90, + 0x02, 0xC3, 0x00, 0x7B, 0x02, 0xC3, 0x00, 0xA3, 0x02, 0xF4, 0x00, 0x4A, + 0x02, 0xF4, 0x00, 0x61, 0x04, 0x9A, 0x00, 0xEE, 0x03, 0x3A, 0x00, 0x4F, + 0x01, 0xDD, 0xFF, 0xD5, 0x04, 0x8D, 0x00, 0xEE, 0x04, 0x9A, 0x00, 0xEE, + 0x03, 0x52, 0x00, 0x50, 0x03, 0xD3, 0x00, 0xBA, 0x04, 0x9A, 0x00, 0xEE, + 0x04, 0x9A, 0x00, 0xEE, 0x04, 0x8D, 0x00, 0xEE, 0x04, 0x9A, 0x00, 0xEE, + 0x01, 0xDD, 0xFF, 0xD5, 0x04, 0x9A, 0x00, 0xEE, 0x03, 0xD3, 0x00, 0xBA, + 0x00, 0x00, 0x00, 0x43, 0x02, 0x25, 0x00, 0x9C, 0x03, 0x87, 0x00, 0x68, + 0x02, 0x36, 0x00, 0x67, 0x00, 0x01, 0xFC, 0xA5, 0x00, 0x01, 0xFB, 0xF7, + 0x03, 0x39, 0x00, 0x69, 0x03, 0x39, 0x00, 0x69, 0x00, 0x01, 0xFC, 0x83, + 0x00, 0x01, 0xFC, 0x56, 0x00, 0x00, 0xFC, 0x24, 0x00, 0x01, 0xFC, 0x4A, + 0x00, 0x00, 0xFC, 0x68, 0x00, 0x00, 0xFC, 0xF2, 0x00, 0x04, 0xFD, 0x1F, + 0x05, 0x34, 0x00, 0xEE, 0x04, 0x8D, 0x00, 0xEE, 0x02, 0x36, 0x00, 0x58, + 0x00, 0x01, 0xFC, 0xCE, 0x02, 0x17, 0x00, 0x64, 0x00, 0x00, 0xFD, 0x90, + 0x00, 0x00, 0xFE, 0xAF, 0x00, 0x05, 0xFD, 0x39, 0x00, 0x06, 0xFD, 0x6D, + 0x00, 0x02, 0xFC, 0xE3, 0x00, 0x06, 0xFD, 0x6D, 0x03, 0x52, 0x00, 0x90, + 0x00, 0x01, 0xFB, 0xCA, 0x00, 0x01, 0xFB, 0xB7, 0x00, 0x00, 0xFD, 0x3D, + 0x01, 0x4A, 0x00, 0x42, 0x00, 0x00, 0xFC, 0xBC, 0x00, 0x01, 0xFC, 0x0D, + 0x00, 0x01, 0xFC, 0x80, 0x00, 0x01, 0xFC, 0x81, 0x00, 0x01, 0xFB, 0xC9, + 0x00, 0x01, 0xFB, 0xB3, 0x00, 0x04, 0xFC, 0xDE, 0x02, 0x2A, 0x00, 0x28, + 0x03, 0x5D, 0x00, 0x61, 0x03, 0x5D, 0x00, 0x61, 0x02, 0x7A, 0x00, 0x43, + 0x02, 0x7A, 0x00, 0x43, 0x03, 0xD3, 0x00, 0x92, 0x03, 0xD3, 0x00, 0x92, + 0x03, 0xD3, 0x00, 0xBA, 0x02, 0x8F, 0x00, 0x28, 0x03, 0x37, 0x00, 0x6B, + 0x03, 0x37, 0x00, 0x69, 0x03, 0x37, 0x00, 0x6D, 0x03, 0x38, 0x00, 0x4F, + 0x03, 0x66, 0x00, 0x4F, 0x03, 0x38, 0x00, 0x4F, 0x03, 0x38, 0x00, 0x4F, + 0x01, 0xEF, 0x00, 0xA2, 0x02, 0xC3, 0x00, 0x7B, 0x02, 0x08, 0x00, 0x6D, + 0x02, 0x08, 0x00, 0x6D, 0x02, 0x08, 0x00, 0x70, 0x02, 0x07, 0x00, 0x6A, + 0x03, 0x82, 0x00, 0x6A, 0x03, 0x82, 0x00, 0x6A, 0x02, 0xC3, 0x00, 0xA3, + 0x01, 0x4B, 0x00, 0x53, 0x03, 0x52, 0x00, 0x90, 0x01, 0x36, 0x00, 0x37, + 0x01, 0x4A, 0x00, 0x42, 0x01, 0x4B, 0x00, 0x53, 0x00, 0x00, 0xFB, 0xA8, + 0x02, 0xF0, 0x00, 0x21, 0x05, 0x20, 0xFF, 0xEC, 0x02, 0xCD, 0x00, 0x28, + 0x03, 0x9F, 0x00, 0x82, 0x01, 0xAA, 0x00, 0x81, 0x02, 0x16, 0x00, 0x8E, + 0x01, 0x89, 0x00, 0x32, 0x01, 0xD7, 0x00, 0x80, 0x02, 0x24, 0x00, 0x32, + 0x04, 0x8C, 0x00, 0xAB, 0x04, 0x8D, 0x00, 0x38, 0x04, 0x91, 0x00, 0x7D, + 0x01, 0xD0, 0xFF, 0x96, 0x01, 0x7D, 0x00, 0x5F, 0x01, 0x7A, 0x00, 0x13, + 0x06, 0x07, 0x00, 0x4A, 0x04, 0x46, 0x00, 0x40, 0x01, 0xFE, 0x00, 0x6D, + 0x05, 0x99, 0x00, 0x8E, 0x00, 0x00, 0x00, 0x6B, 0x04, 0x3C, 0x00, 0xDC, + 0x01, 0xB6, 0x00, 0x50, 0x02, 0x8C, 0x00, 0x50, 0x02, 0xAC, 0x00, 0x50, + 0x02, 0xCC, 0x00, 0x50, 0x02, 0xD1, 0x00, 0x50, 0x02, 0x5A, 0x00, 0x00, + 0x02, 0x5A, 0x00, 0x00, 0x01, 0x61, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x90, + 0x02, 0x36, 0x00, 0x60, 0x02, 0x36, 0x00, 0x60, 0x01, 0xFD, 0x00, 0x4B, + 0x03, 0x37, 0xFF, 0xDA, 0x03, 0x37, 0x00, 0x3C, 0x02, 0x05, 0x00, 0x50, + 0x02, 0x72, 0x00, 0x6B, 0x02, 0x9E, 0xFF, 0xB2, 0x01, 0xD2, 0x00, 0x40, + 0x02, 0x9E, 0xFF, 0xCD, 0x00, 0x01, 0xFC, 0xD0, 0x00, 0x00, 0xFB, 0x0B, + 0x03, 0x98, 0x00, 0x79, 0x00, 0x03, 0xFC, 0xBD, 0x00, 0x00, 0xFC, 0xB2, + 0x00, 0x03, 0xFC, 0xAA, 0x00, 0x00, 0xFC, 0xC0, 0x00, 0x02, 0xFD, 0x00, + 0x00, 0x05, 0xFD, 0x1D, 0x03, 0x9C, 0x00, 0x32, 0x03, 0x6F, 0x00, 0x32, + 0x02, 0x1A, 0x00, 0x00, 0x03, 0x06, 0x00, 0x00, 0x02, 0xD0, 0x00, 0x28, + 0x02, 0x09, 0x00, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD3, + 0x00, 0x00, 0x00, 0xD3, 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x01, 0x37, + 0x00, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x01, 0x67, 0x00, 0x00, 0x01, 0x7F, + 0x00, 0x00, 0x01, 0x97, 0x00, 0x00, 0x01, 0xAF, 0x00, 0x00, 0x01, 0xC7, + 0x00, 0x00, 0x01, 0xE7, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x02, 0x17, + 0x00, 0x00, 0x02, 0x2F, 0x00, 0x00, 0x02, 0x47, 0x00, 0x00, 0x02, 0x5F, + 0x00, 0x00, 0x02, 0x77, 0x00, 0x00, 0x02, 0x8F, 0x00, 0x00, 0x02, 0xA7, + 0x00, 0x00, 0x02, 0xBF, 0x00, 0x00, 0x02, 0xD7, 0x00, 0x00, 0x02, 0xEF, + 0x00, 0x00, 0x03, 0x07, 0x00, 0x00, 0x03, 0x1F, 0x00, 0x00, 0x03, 0x37, + 0x00, 0x00, 0x03, 0x4F, 0x00, 0x00, 0x03, 0x67, 0x00, 0x00, 0x03, 0x87, + 0x00, 0x00, 0x03, 0x9F, 0x00, 0x00, 0x03, 0xB7, 0x00, 0x00, 0x03, 0xCF, + 0x00, 0x00, 0x03, 0xE7, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x04, 0x17, + 0x00, 0x00, 0x04, 0x2D, 0x00, 0x00, 0x04, 0x43, 0x00, 0x00, 0x04, 0x59, + 0x00, 0x00, 0x04, 0x71, 0x00, 0x00, 0x04, 0x89, 0x00, 0x00, 0x04, 0xA1, + 0x00, 0x00, 0x04, 0xB9, 0x00, 0x00, 0x04, 0xD1, 0x00, 0x00, 0x04, 0xE9, + 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x19, 0x00, 0x00, 0x05, 0x2F, + 0x00, 0x00, 0x05, 0x90, 0x00, 0x00, 0x05, 0xA6, 0x00, 0x00, 0x05, 0xB6, + 0x00, 0x00, 0x05, 0xCE, 0x00, 0x00, 0x05, 0xE6, 0x00, 0x00, 0x06, 0x04, + 0x00, 0x00, 0x06, 0x22, 0x00, 0x00, 0x06, 0x42, 0x00, 0x00, 0x06, 0x62, + 0x00, 0x00, 0x06, 0x82, 0x00, 0x00, 0x06, 0xA2, 0x00, 0x00, 0x06, 0xC2, + 0x00, 0x00, 0x06, 0xE2, 0x00, 0x00, 0x06, 0xFA, 0x00, 0x00, 0x07, 0x39, + 0x00, 0x00, 0x07, 0x83, 0x00, 0x00, 0x07, 0x9B, 0x00, 0x00, 0x07, 0xB3, + 0x00, 0x00, 0x07, 0xC3, 0x00, 0x00, 0x08, 0x3C, 0x00, 0x00, 0x08, 0x54, + 0x00, 0x00, 0x08, 0x6C, 0x00, 0x00, 0x08, 0x84, 0x00, 0x00, 0x08, 0x9C, + 0x00, 0x00, 0x09, 0x35, 0x00, 0x00, 0x09, 0x45, 0x00, 0x00, 0x09, 0x55, + 0x00, 0x00, 0x09, 0xC7, 0x00, 0x00, 0x0A, 0x66, 0x00, 0x00, 0x0A, 0x7E, + 0x00, 0x00, 0x0A, 0x96, 0x00, 0x00, 0x0A, 0xAE, 0x00, 0x00, 0x0A, 0xC6, + 0x00, 0x00, 0x0A, 0xDE, 0x00, 0x00, 0x0A, 0xFE, 0x00, 0x00, 0x0B, 0x82, + 0x00, 0x00, 0x0B, 0xF5, 0x00, 0x00, 0x0C, 0x05, 0x00, 0x00, 0x0C, 0x5F, + 0x00, 0x00, 0x0C, 0xD9, 0x00, 0x00, 0x0C, 0xF1, 0x00, 0x00, 0x0D, 0x09, + 0x00, 0x00, 0x0D, 0x21, 0x00, 0x00, 0x0D, 0x39, 0x00, 0x00, 0x0D, 0x51, + 0x00, 0x00, 0x0D, 0x69, 0x00, 0x00, 0x0D, 0x7F, 0x00, 0x00, 0x0D, 0x97, + 0x00, 0x00, 0x0D, 0xB7, 0x00, 0x00, 0x0D, 0xE5, 0x00, 0x00, 0x0D, 0xFD, + 0x00, 0x00, 0x0E, 0x15, 0x00, 0x00, 0x0E, 0x2D, 0x00, 0x00, 0x0E, 0x45, + 0x00, 0x00, 0x0E, 0x5D, 0x00, 0x00, 0x0E, 0x75, 0x00, 0x00, 0x0E, 0x8D, + 0x00, 0x00, 0x0E, 0xA5, 0x00, 0x00, 0x0E, 0xBD, 0x00, 0x00, 0x0E, 0xD5, + 0x00, 0x00, 0x0E, 0xED, 0x00, 0x00, 0x0F, 0x05, 0x00, 0x00, 0x0F, 0x1D, + 0x00, 0x00, 0x0F, 0x35, 0x00, 0x00, 0x0F, 0x4D, 0x00, 0x00, 0x0F, 0x65, + 0x00, 0x00, 0x0F, 0x85, 0x00, 0x00, 0x0F, 0x9D, 0x00, 0x00, 0x0F, 0xB5, + 0x00, 0x00, 0x0F, 0xCD, 0x00, 0x00, 0x0F, 0xE5, 0x00, 0x00, 0x0F, 0xFD, + 0x00, 0x00, 0x10, 0x15, 0x00, 0x00, 0x10, 0x2D, 0x00, 0x00, 0x10, 0x4D, + 0x00, 0x00, 0x10, 0x8F, 0x00, 0x00, 0x10, 0xC0, 0x00, 0x00, 0x10, 0xD0, + 0x00, 0x00, 0x10, 0xE8, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x11, 0x18, + 0x00, 0x00, 0x11, 0x30, 0x00, 0x00, 0x11, 0x48, 0x00, 0x00, 0x11, 0x60, + 0x00, 0x00, 0x11, 0x78, 0x00, 0x00, 0x11, 0x92, 0x00, 0x00, 0x11, 0xAA, + 0x00, 0x00, 0x11, 0xBA, 0x00, 0x00, 0x11, 0xD2, 0x00, 0x00, 0x11, 0xEA, + 0x00, 0x00, 0x12, 0x02, 0x00, 0x00, 0x12, 0x2B, 0x00, 0x00, 0x12, 0x80, + 0x00, 0x00, 0x12, 0x98, 0x00, 0x00, 0x12, 0xC4, 0x00, 0x00, 0x13, 0x3E, + 0x00, 0x00, 0x13, 0x56, 0x00, 0x00, 0x13, 0xFD, 0x00, 0x00, 0x14, 0x15, + 0x00, 0x00, 0x14, 0x2D, 0x00, 0x00, 0x14, 0x45, 0x00, 0x00, 0x14, 0x5D, + 0x00, 0x00, 0x14, 0x75, 0x00, 0x00, 0x14, 0x8D, 0x00, 0x00, 0x14, 0xA5, + 0x00, 0x00, 0x15, 0x2E, 0x00, 0x00, 0x15, 0x46, 0x00, 0x00, 0x15, 0xFC, + 0x00, 0x00, 0x16, 0x14, 0x00, 0x00, 0x16, 0x2C, 0x00, 0x00, 0x16, 0x44, + 0x00, 0x00, 0x16, 0x5C, 0x00, 0x00, 0x16, 0x74, 0x00, 0x00, 0x16, 0x8C, + 0x00, 0x00, 0x16, 0xA4, 0x00, 0x00, 0x16, 0xD2, 0x00, 0x00, 0x16, 0xE8, + 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x17, 0x18, 0x00, 0x00, 0x17, 0x30, + 0x00, 0x00, 0x17, 0x48, 0x00, 0x00, 0x17, 0x60, 0x00, 0x00, 0x17, 0x78, + 0x00, 0x00, 0x17, 0xB6, 0x00, 0x00, 0x18, 0x12, 0x00, 0x00, 0x18, 0x2A, + 0x00, 0x00, 0x18, 0x42, 0x00, 0x00, 0x18, 0x82, 0x00, 0x00, 0x18, 0xDF, + 0x00, 0x00, 0x18, 0xEF, 0x00, 0x00, 0x19, 0x07, 0x00, 0x00, 0x19, 0x1F, + 0x00, 0x00, 0x19, 0x37, 0x00, 0x00, 0x19, 0x4F, 0x00, 0x00, 0x19, 0x67, + 0x00, 0x00, 0x19, 0x7F, 0x00, 0x00, 0x19, 0x97, 0x00, 0x00, 0x19, 0xAF, + 0x00, 0x00, 0x19, 0xC7, 0x00, 0x00, 0x19, 0xE1, 0x00, 0x00, 0x19, 0xF9, + 0x00, 0x00, 0x1A, 0x09, 0x00, 0x00, 0x1A, 0x29, 0x00, 0x00, 0x1A, 0x49, + 0x00, 0x00, 0x1A, 0x69, 0x00, 0x00, 0x1A, 0x89, 0x00, 0x00, 0x1A, 0xA9, + 0x00, 0x00, 0x1A, 0xC9, 0x00, 0x00, 0x1A, 0xE9, 0x00, 0x00, 0x1B, 0x09, + 0x00, 0x00, 0x1B, 0x21, 0x00, 0x00, 0x1B, 0x3C, 0x00, 0x00, 0x1B, 0x54, + 0x00, 0x00, 0x1B, 0x6C, 0x00, 0x00, 0x1B, 0x84, 0x00, 0x00, 0x1B, 0x9A, + 0x00, 0x00, 0x1B, 0xB2, 0x00, 0x00, 0x1B, 0xCA, 0x00, 0x00, 0x1B, 0xE2, + 0x00, 0x00, 0x1B, 0xFA, 0x00, 0x00, 0x1C, 0x12, 0x00, 0x00, 0x1C, 0x2A, + 0x00, 0x00, 0x1C, 0x42, 0x00, 0x00, 0x1C, 0x58, 0x00, 0x00, 0x1C, 0x70, + 0x00, 0x00, 0x1C, 0x88, 0x00, 0x00, 0x1C, 0xA0, 0x00, 0x00, 0x1C, 0xB8, + 0x00, 0x00, 0x1C, 0xD0, 0x00, 0x00, 0x1C, 0xE8, 0x00, 0x00, 0x1C, 0xF8, + 0x00, 0x00, 0x1D, 0x08, 0x00, 0x00, 0x1D, 0x20, 0x00, 0x00, 0x1D, 0x38, + 0x00, 0x00, 0x1D, 0x50, 0x00, 0x00, 0x1D, 0x68, 0x00, 0x00, 0x1D, 0x80, + 0x00, 0x00, 0x1D, 0x98, 0x00, 0x00, 0x1D, 0xB0, 0x00, 0x00, 0x1D, 0xC8, + 0x00, 0x00, 0x1D, 0xE0, 0x00, 0x00, 0x1D, 0xF8, 0x00, 0x00, 0x1E, 0x10, + 0x00, 0x00, 0x1E, 0x28, 0x00, 0x00, 0x1E, 0x42, 0x00, 0x00, 0x1E, 0x5A, + 0x00, 0x00, 0x1E, 0x6A, 0x00, 0x00, 0x1E, 0x82, 0x00, 0x00, 0x1E, 0xAB, + 0x00, 0x00, 0x1E, 0xC3, 0x00, 0x00, 0x1E, 0xDB, 0x00, 0x00, 0x1E, 0xF1, + 0x00, 0x00, 0x1F, 0x09, 0x00, 0x00, 0x1F, 0x21, 0x00, 0x00, 0x1F, 0x39, + 0x00, 0x00, 0x1F, 0x51, 0x00, 0x00, 0x1F, 0x69, 0x00, 0x00, 0x1F, 0x81, + 0x00, 0x00, 0x1F, 0x99, 0x00, 0x00, 0x1F, 0xB1, 0x00, 0x00, 0x1F, 0xC9, + 0x00, 0x00, 0x1F, 0xE1, 0x00, 0x00, 0x1F, 0xF9, 0x00, 0x00, 0x20, 0x11, + 0x00, 0x00, 0x20, 0x29, 0x00, 0x00, 0x20, 0x41, 0x00, 0x00, 0x20, 0x59, + 0x00, 0x00, 0x20, 0x71, 0x00, 0x00, 0x20, 0x89, 0x00, 0x00, 0x20, 0xA1, + 0x00, 0x00, 0x20, 0xB9, 0x00, 0x00, 0x20, 0xD1, 0x00, 0x00, 0x20, 0xE9, + 0x00, 0x00, 0x21, 0x01, 0x00, 0x00, 0x21, 0x19, 0x00, 0x00, 0x21, 0x31, + 0x00, 0x00, 0x21, 0x4B, 0x00, 0x00, 0x21, 0x63, 0x00, 0x00, 0x21, 0x73, + 0x00, 0x00, 0x21, 0x8B, 0x00, 0x00, 0x21, 0xC5, 0x00, 0x00, 0x21, 0xDD, + 0x00, 0x00, 0x21, 0xF5, 0x00, 0x00, 0x22, 0x05, 0x00, 0x00, 0x22, 0x15, + 0x00, 0x00, 0x22, 0x71, 0x00, 0x00, 0x22, 0x89, 0x00, 0x00, 0x22, 0xA1, + 0x00, 0x00, 0x22, 0xB9, 0x00, 0x00, 0x22, 0xD1, 0x00, 0x00, 0x22, 0xE9, + 0x00, 0x00, 0x23, 0x33, 0x00, 0x00, 0x23, 0x4B, 0x00, 0x00, 0x23, 0x9A, + 0x00, 0x00, 0x23, 0xAA, 0x00, 0x00, 0x23, 0xC7, 0x00, 0x00, 0x23, 0xDF, + 0x00, 0x00, 0x23, 0xF7, 0x00, 0x00, 0x24, 0x0F, 0x00, 0x00, 0x24, 0x27, + 0x00, 0x00, 0x24, 0x47, 0x00, 0x00, 0x24, 0x5F, 0x00, 0x00, 0x24, 0x77, + 0x00, 0x00, 0x24, 0x8D, 0x00, 0x00, 0x24, 0xA3, 0x00, 0x00, 0x24, 0xC3, + 0x00, 0x00, 0x25, 0x4F, 0x00, 0x00, 0x25, 0x67, 0x00, 0x00, 0x25, 0x7F, + 0x00, 0x00, 0x25, 0x97, 0x00, 0x00, 0x25, 0xAF, 0x00, 0x00, 0x25, 0xBF, + 0x00, 0x00, 0x25, 0xCF, 0x00, 0x00, 0x25, 0xDF, 0x00, 0x00, 0x26, 0x3B, + 0x00, 0x00, 0x26, 0x53, 0x00, 0x00, 0x26, 0x6B, 0x00, 0x00, 0x26, 0x83, + 0x00, 0x00, 0x26, 0x9B, 0x00, 0x00, 0x26, 0xB3, 0x00, 0x00, 0x26, 0xCB, + 0x00, 0x00, 0x26, 0xE3, 0x00, 0x00, 0x26, 0xFB, 0x00, 0x00, 0x27, 0x13, + 0x00, 0x00, 0x27, 0x9B, 0x00, 0x00, 0x28, 0x25, 0x00, 0x00, 0x28, 0x83, + 0x00, 0x00, 0x28, 0x9B, 0x00, 0x00, 0x28, 0xB3, 0x00, 0x00, 0x28, 0xCB, + 0x00, 0x00, 0x28, 0xE3, 0x00, 0x00, 0x29, 0x03, 0x00, 0x00, 0x29, 0x13, + 0x00, 0x00, 0x29, 0x23, 0x00, 0x00, 0x29, 0x43, 0x00, 0x00, 0x29, 0xAE, + 0x00, 0x00, 0x29, 0xC6, 0x00, 0x00, 0x29, 0xDE, 0x00, 0x00, 0x29, 0xF6, + 0x00, 0x00, 0x2A, 0x91, 0x00, 0x00, 0x2A, 0xA9, 0x00, 0x00, 0x2A, 0xC1, + 0x00, 0x00, 0x2A, 0xD9, 0x00, 0x00, 0x2A, 0xF1, 0x00, 0x00, 0x2B, 0x09, + 0x00, 0x00, 0x2B, 0x21, 0x00, 0x00, 0x2B, 0x39, 0x00, 0x00, 0x2B, 0x51, + 0x00, 0x00, 0x2B, 0x71, 0x00, 0x00, 0x2B, 0x89, 0x00, 0x00, 0x2B, 0xA1, + 0x00, 0x00, 0x2B, 0xB9, 0x00, 0x00, 0x2B, 0xD1, 0x00, 0x00, 0x2B, 0xE9, + 0x00, 0x00, 0x2C, 0x01, 0x00, 0x00, 0x2C, 0x19, 0x00, 0x00, 0x2C, 0x31, + 0x00, 0x00, 0x2C, 0x49, 0x00, 0x00, 0x2C, 0x61, 0x00, 0x00, 0x2C, 0x79, + 0x00, 0x00, 0x2C, 0x91, 0x00, 0x00, 0x2C, 0xA9, 0x00, 0x00, 0x2C, 0xC1, + 0x00, 0x00, 0x2C, 0xD9, 0x00, 0x00, 0x2C, 0xF1, 0x00, 0x00, 0x2D, 0x11, + 0x00, 0x00, 0x2D, 0x29, 0x00, 0x00, 0x2D, 0x41, 0x00, 0x00, 0x2D, 0x59, + 0x00, 0x00, 0x2D, 0x71, 0x00, 0x00, 0x2D, 0x89, 0x00, 0x00, 0x2D, 0xA9, + 0x00, 0x00, 0x2D, 0xB9, 0x00, 0x00, 0x2D, 0xD1, 0x00, 0x00, 0x2D, 0xE9, + 0x00, 0x00, 0x2E, 0x01, 0x00, 0x00, 0x2E, 0x19, 0x00, 0x00, 0x2E, 0x31, + 0x00, 0x00, 0x2E, 0x49, 0x00, 0x00, 0x2E, 0x61, 0x00, 0x00, 0x2E, 0x79, + 0x00, 0x00, 0x2E, 0xF3, 0x00, 0x00, 0x2F, 0x0B, 0x00, 0x00, 0x2F, 0x1B, + 0x00, 0x00, 0x2F, 0x33, 0x00, 0x00, 0x2F, 0x43, 0x00, 0x00, 0x2F, 0x53, + 0x00, 0x00, 0x2F, 0x6B, 0x00, 0x00, 0x2F, 0xD7, 0x00, 0x00, 0x30, 0x23, + 0x00, 0x00, 0x30, 0x3B, 0x00, 0x00, 0x30, 0x53, 0x00, 0x00, 0x30, 0xB6, + 0x00, 0x00, 0x31, 0x22, 0x00, 0x00, 0x31, 0x32, 0x00, 0x00, 0x31, 0x4A, + 0x00, 0x00, 0x31, 0xCF, 0x00, 0x00, 0x32, 0x72, 0x00, 0x00, 0x32, 0xCF, + 0x00, 0x00, 0x32, 0xE7, 0x00, 0x00, 0x32, 0xFF, 0x00, 0x00, 0x33, 0x17, + 0x00, 0x00, 0x33, 0x2F, 0x00, 0x00, 0x33, 0x47, 0x00, 0x00, 0x33, 0x5F, + 0x00, 0x00, 0x33, 0x77, 0x00, 0x00, 0x33, 0x97, 0x00, 0x00, 0x33, 0xAF, + 0x00, 0x00, 0x34, 0x2A, 0x00, 0x00, 0x34, 0x9A, 0x00, 0x00, 0x35, 0x08, + 0x00, 0x00, 0x35, 0x9D, 0x00, 0x00, 0x35, 0xB5, 0x00, 0x00, 0x35, 0xCD, + 0x00, 0x00, 0x35, 0xE5, 0x00, 0x00, 0x35, 0xFD, 0x00, 0x00, 0x36, 0x15, + 0x00, 0x00, 0x36, 0x2D, 0x00, 0x00, 0x36, 0x45, 0x00, 0x00, 0x36, 0x5D, + 0x00, 0x00, 0x36, 0x75, 0x00, 0x00, 0x36, 0x95, 0x00, 0x00, 0x36, 0xA5, + 0x00, 0x00, 0x37, 0x37, 0x00, 0x00, 0x37, 0xA0, 0x00, 0x00, 0x37, 0xC4, + 0x00, 0x00, 0x37, 0xDC, 0x00, 0x00, 0x37, 0xF4, 0x00, 0x00, 0x38, 0x0C, + 0x00, 0x00, 0x38, 0x24, 0x00, 0x00, 0x38, 0x3C, 0x00, 0x00, 0x38, 0x54, + 0x00, 0x00, 0x38, 0x6C, 0x00, 0x00, 0x38, 0xAD, 0x00, 0x00, 0x38, 0xD2, + 0x00, 0x00, 0x39, 0x23, 0x00, 0x00, 0x39, 0x59, 0x00, 0x00, 0x39, 0x69, + 0x00, 0x00, 0x39, 0xB3, 0x00, 0x00, 0x3A, 0x1A, 0x00, 0x00, 0x3A, 0x32, + 0x00, 0x00, 0x3A, 0x4A, 0x00, 0x00, 0x3A, 0x62, 0x00, 0x00, 0x3A, 0x7A, + 0x00, 0x00, 0x3A, 0x92, 0x00, 0x00, 0x3A, 0xAA, 0x00, 0x00, 0x3A, 0xC2, + 0x00, 0x00, 0x3A, 0xDA, 0x00, 0x00, 0x3A, 0xF2, 0x00, 0x00, 0x3B, 0x0A, + 0x00, 0x00, 0x3B, 0x22, 0x00, 0x00, 0x3B, 0x3A, 0x00, 0x00, 0x3B, 0x52, + 0x00, 0x00, 0x3B, 0x6A, 0x00, 0x00, 0x3B, 0x82, 0x00, 0x00, 0x3B, 0x9A, + 0x00, 0x00, 0x3B, 0xB2, 0x00, 0x00, 0x3B, 0xCA, 0x00, 0x00, 0x3B, 0xE2, + 0x00, 0x00, 0x3B, 0xFA, 0x00, 0x00, 0x3C, 0x12, 0x00, 0x00, 0x3C, 0x2A, + 0x00, 0x00, 0x3C, 0x42, 0x00, 0x00, 0x3C, 0x5A, 0x00, 0x00, 0x3C, 0x72, + 0x00, 0x00, 0x3C, 0x8A, 0x00, 0x00, 0x3C, 0xA2, 0x00, 0x00, 0x3C, 0xBA, + 0x00, 0x00, 0x3C, 0xD2, 0x00, 0x00, 0x3D, 0x2B, 0x00, 0x00, 0x3D, 0x6A, + 0x00, 0x00, 0x3D, 0x82, 0x00, 0x00, 0x3D, 0x9A, 0x00, 0x00, 0x3E, 0x1A, + 0x00, 0x00, 0x3E, 0x32, 0x00, 0x00, 0x3E, 0x4A, 0x00, 0x00, 0x3E, 0x62, + 0x00, 0x00, 0x3E, 0x7A, 0x00, 0x00, 0x3E, 0x92, 0x00, 0x00, 0x3E, 0xAA, + 0x00, 0x00, 0x3F, 0x1A, 0x00, 0x00, 0x3F, 0x32, 0x00, 0x00, 0x3F, 0x4A, + 0x00, 0x00, 0x3F, 0x62, 0x00, 0x00, 0x3F, 0x7A, 0x00, 0x00, 0x3F, 0x8A, + 0x00, 0x00, 0x3F, 0xCF, 0x00, 0x00, 0x40, 0x1F, 0x00, 0x00, 0x40, 0x37, + 0x00, 0x00, 0x40, 0x4F, 0x00, 0x00, 0x40, 0x67, 0x00, 0x00, 0x40, 0x7F, + 0x00, 0x00, 0x40, 0x97, 0x00, 0x00, 0x40, 0xAF, 0x00, 0x00, 0x40, 0xC7, + 0x00, 0x00, 0x40, 0xDF, 0x00, 0x00, 0x40, 0xF7, 0x00, 0x00, 0x41, 0x4C, + 0x00, 0x00, 0x41, 0x5C, 0x00, 0x00, 0x41, 0x74, 0x00, 0x00, 0x41, 0x8C, + 0x00, 0x00, 0x41, 0xA4, 0x00, 0x00, 0x41, 0xBC, 0x00, 0x00, 0x41, 0xD4, + 0x00, 0x00, 0x41, 0xEC, 0x00, 0x00, 0x42, 0x04, 0x00, 0x00, 0x42, 0x1C, + 0x00, 0x00, 0x42, 0x36, 0x00, 0x00, 0x42, 0x4E, 0x00, 0x00, 0x42, 0x66, + 0x00, 0x00, 0x42, 0xB9, 0x00, 0x00, 0x42, 0xD1, 0x00, 0x00, 0x42, 0xE9, + 0x00, 0x00, 0x43, 0x01, 0x00, 0x00, 0x43, 0x19, 0x00, 0x00, 0x43, 0x31, + 0x00, 0x00, 0x43, 0x49, 0x00, 0x00, 0x43, 0xC8, 0x00, 0x00, 0x43, 0xE0, + 0x00, 0x00, 0x43, 0xF0, 0x00, 0x00, 0x44, 0x4E, 0x00, 0x00, 0x44, 0xF2, + 0x00, 0x00, 0x45, 0x0A, 0x00, 0x00, 0x45, 0x22, 0x00, 0x00, 0x45, 0x3A, + 0x00, 0x00, 0x45, 0x5A, 0x00, 0x00, 0x45, 0x72, 0x00, 0x00, 0x45, 0x8A, + 0x00, 0x00, 0x45, 0xA2, 0x00, 0x00, 0x45, 0xBA, 0x00, 0x00, 0x45, 0xD2, + 0x00, 0x00, 0x45, 0xEA, 0x00, 0x00, 0x46, 0x0A, 0x00, 0x00, 0x46, 0x22, + 0x00, 0x00, 0x46, 0x3A, 0x00, 0x00, 0x46, 0x52, 0x00, 0x00, 0x46, 0x68, + 0x00, 0x00, 0x46, 0x7E, 0x00, 0x00, 0x46, 0x94, 0x00, 0x00, 0x46, 0xAC, + 0x00, 0x00, 0x46, 0xC4, 0x00, 0x00, 0x46, 0xDC, 0x00, 0x00, 0x46, 0xF4, + 0x00, 0x00, 0x47, 0x0C, 0x00, 0x00, 0x47, 0x24, 0x00, 0x00, 0x47, 0x3A, + 0x00, 0x00, 0x47, 0x52, 0x00, 0x00, 0x47, 0x6A, 0x00, 0x00, 0x47, 0x82, + 0x00, 0x00, 0x47, 0x9A, 0x00, 0x00, 0x47, 0xBA, 0x00, 0x00, 0x47, 0xD2, + 0x00, 0x00, 0x47, 0xE8, 0x00, 0x00, 0x48, 0x8D, 0x00, 0x00, 0x48, 0x9D, + 0x00, 0x00, 0x48, 0xB5, 0x00, 0x00, 0x48, 0xCB, 0x00, 0x00, 0x49, 0xB7, + 0x00, 0x00, 0x49, 0xCF, 0x00, 0x00, 0x49, 0xE7, 0x00, 0x00, 0x49, 0xF7, + 0x00, 0x00, 0x4A, 0x6A, 0x00, 0x00, 0x4A, 0x82, 0x00, 0x00, 0x4A, 0x9A, + 0x00, 0x00, 0x4A, 0xB2, 0x00, 0x00, 0x4A, 0xD2, 0x00, 0x00, 0x4A, 0xEA, + 0x00, 0x00, 0x4B, 0x02, 0x00, 0x00, 0x4B, 0x1A, 0x00, 0x00, 0x4B, 0x32, + 0x00, 0x00, 0x4B, 0x4A, 0x00, 0x00, 0x4B, 0x62, 0x00, 0x00, 0x4B, 0x82, + 0x00, 0x00, 0x4B, 0x9A, 0x00, 0x00, 0x4B, 0xB2, 0x00, 0x00, 0x4B, 0xCA, + 0x00, 0x00, 0x4B, 0xE0, 0x00, 0x00, 0x4B, 0xF6, 0x00, 0x00, 0x4C, 0x0C, + 0x00, 0x00, 0x4C, 0x24, 0x00, 0x00, 0x4C, 0x3C, 0x00, 0x00, 0x4C, 0x54, + 0x00, 0x00, 0x4C, 0x6C, 0x00, 0x00, 0x4C, 0x84, 0x00, 0x00, 0x4C, 0x9C, + 0x00, 0x00, 0x4C, 0xB4, 0x00, 0x00, 0x4C, 0xCC, 0x00, 0x00, 0x4C, 0xE4, + 0x00, 0x00, 0x4C, 0xFC, 0x00, 0x00, 0x4D, 0x14, 0x00, 0x00, 0x4D, 0x2C, + 0x00, 0x00, 0x4D, 0x42, 0x00, 0x00, 0x4D, 0xB6, 0x00, 0x00, 0x4D, 0xCE, + 0x00, 0x00, 0x4E, 0x51, 0x00, 0x00, 0x4E, 0xF1, 0x00, 0x00, 0x4F, 0x09, + 0x00, 0x00, 0x4F, 0x21, 0x00, 0x00, 0x4F, 0x39, 0x00, 0x00, 0x4F, 0xAE, + 0x00, 0x00, 0x50, 0x1E, 0x00, 0x00, 0x50, 0xA1, 0x00, 0x00, 0x51, 0x43, + 0x00, 0x00, 0x51, 0x5B, 0x00, 0x00, 0x51, 0x73, 0x00, 0x00, 0x51, 0x8B, + 0x00, 0x00, 0x51, 0xA3, 0x00, 0x00, 0x51, 0xBB, 0x00, 0x00, 0x51, 0xDB, + 0x00, 0x00, 0x51, 0xEB, 0x00, 0x00, 0x51, 0xFB, 0x00, 0x00, 0x52, 0x6F, + 0x00, 0x00, 0x52, 0x87, 0x00, 0x00, 0x53, 0x28, 0x00, 0x00, 0x53, 0xC8, + 0x00, 0x00, 0x54, 0x4C, 0x00, 0x00, 0x55, 0x1B, 0x00, 0x00, 0x55, 0x33, + 0x00, 0x00, 0x55, 0x4B, 0x00, 0x00, 0x55, 0x63, 0x00, 0x00, 0x55, 0x7B, + 0x00, 0x00, 0x55, 0x93, 0x00, 0x00, 0x55, 0xAB, 0x00, 0x00, 0x55, 0xC3, + 0x00, 0x00, 0x56, 0x5B, 0x00, 0x00, 0x56, 0x7B, 0x00, 0x00, 0x57, 0x4E, + 0x00, 0x00, 0x57, 0x6E, 0x00, 0x00, 0x57, 0xE3, 0x00, 0x00, 0x57, 0xF9, + 0x00, 0x00, 0x58, 0x81, 0x00, 0x00, 0x58, 0x99, 0x00, 0x00, 0x58, 0xB1, + 0x00, 0x00, 0x58, 0xC9, 0x00, 0x00, 0x58, 0xE1, 0x00, 0x00, 0x58, 0xF9, + 0x00, 0x00, 0x59, 0x11, 0x00, 0x00, 0x59, 0x29, 0x00, 0x00, 0x59, 0x41, + 0x00, 0x00, 0x59, 0x57, 0x00, 0x00, 0x59, 0x6F, 0x00, 0x00, 0x59, 0x87, + 0x00, 0x00, 0x59, 0x9F, 0x00, 0x00, 0x59, 0xB7, 0x00, 0x00, 0x59, 0xCF, + 0x00, 0x00, 0x59, 0xE7, 0x00, 0x00, 0x5A, 0x07, 0x00, 0x00, 0x5A, 0x1F, + 0x00, 0x00, 0x5A, 0x37, 0x00, 0x00, 0x5A, 0x4D, 0x00, 0x00, 0x5A, 0x65, + 0x00, 0x00, 0x5A, 0x7D, 0x00, 0x00, 0x5A, 0x95, 0x00, 0x00, 0x5A, 0xAD, + 0x00, 0x00, 0x5A, 0xCD, 0x00, 0x00, 0x5A, 0xDD, 0x00, 0x00, 0x5A, 0xF5, + 0x00, 0x00, 0x5B, 0x0B, 0x00, 0x00, 0x5B, 0x23, 0x00, 0x00, 0x5B, 0x99, + 0x00, 0x00, 0x5B, 0xD3, 0x00, 0x00, 0x5C, 0x1D, 0x00, 0x00, 0x5C, 0x67, + 0x00, 0x00, 0x5C, 0xAE, 0x00, 0x00, 0x5C, 0xF4, 0x00, 0x00, 0x5D, 0x0C, + 0x00, 0x00, 0x5D, 0x24, 0x00, 0x00, 0x5D, 0x34, 0x00, 0x00, 0x5D, 0x4A, + 0x00, 0x00, 0x5D, 0x62, 0x00, 0x00, 0x5D, 0x7A, 0x00, 0x00, 0x5D, 0x92, + 0x00, 0x00, 0x5E, 0x2E, 0x00, 0x00, 0x5E, 0xF6, 0x00, 0x00, 0x5F, 0x0E, + 0x00, 0x00, 0x5F, 0x26, 0x00, 0x00, 0x5F, 0x3E, 0x00, 0x00, 0x5F, 0x56, + 0x00, 0x00, 0x5F, 0x6E, 0x00, 0x00, 0x5F, 0x86, 0x00, 0x00, 0x5F, 0x9E, + 0x00, 0x00, 0x5F, 0xB6, 0x00, 0x00, 0x60, 0x23, 0x00, 0x00, 0x60, 0xC3, + 0x00, 0x00, 0x61, 0x0E, 0x00, 0x00, 0x61, 0x24, 0x00, 0x00, 0x61, 0x3C, + 0x00, 0x00, 0x61, 0xBF, 0x00, 0x00, 0x62, 0x33, 0x00, 0x00, 0x62, 0xD2, + 0x00, 0x00, 0x63, 0x4A, 0x00, 0x00, 0x63, 0x95, 0x00, 0x00, 0x64, 0x04, + 0x00, 0x00, 0x64, 0x92, 0x00, 0x00, 0x64, 0xAA, 0x00, 0x00, 0x64, 0xC2, + 0x00, 0x00, 0x64, 0xDA, 0x00, 0x00, 0x64, 0xF2, 0x00, 0x00, 0x65, 0x0A, + 0x00, 0x00, 0x65, 0x22, 0x00, 0x00, 0x65, 0x3A, 0x00, 0x00, 0x65, 0x52, + 0x00, 0x00, 0x65, 0x62, 0x00, 0x00, 0x65, 0x78, 0x00, 0x00, 0x65, 0x90, + 0x00, 0x00, 0x65, 0xA8, 0x00, 0x00, 0x65, 0xC0, 0x00, 0x00, 0x65, 0xD8, + 0x00, 0x00, 0x65, 0xF0, 0x00, 0x00, 0x66, 0x0E, 0x00, 0x00, 0x66, 0x26, + 0x00, 0x00, 0x66, 0x44, 0x00, 0x00, 0x66, 0x5C, 0x00, 0x00, 0x66, 0x72, + 0x00, 0x00, 0x66, 0x8A, 0x00, 0x00, 0x66, 0xA2, 0x00, 0x00, 0x66, 0xBA, + 0x00, 0x00, 0x66, 0xD0, 0x00, 0x00, 0x66, 0xEC, 0x00, 0x00, 0x67, 0x04, + 0x00, 0x00, 0x67, 0x1C, 0x00, 0x00, 0x67, 0x34, 0x00, 0x00, 0x67, 0x4A, + 0x00, 0x00, 0x67, 0x68, 0x00, 0x00, 0x67, 0x80, 0x00, 0x00, 0x67, 0xAE, + 0x00, 0x00, 0x67, 0xC6, 0x00, 0x00, 0x67, 0xE4, 0x00, 0x00, 0x67, 0xFC, + 0x00, 0x00, 0x68, 0x12, 0x00, 0x00, 0x68, 0x2A, 0x00, 0x00, 0x68, 0x50, + 0x00, 0x00, 0x68, 0x79, 0x00, 0x00, 0x68, 0x8F, 0x00, 0x00, 0x68, 0xF3, + 0x00, 0x00, 0x69, 0x0B, 0x00, 0x00, 0x69, 0x23, 0x00, 0x00, 0x69, 0x3B, + 0x00, 0x00, 0x69, 0x51, 0x00, 0x00, 0x69, 0x67, 0x00, 0x00, 0x69, 0x87, + 0x00, 0x00, 0x69, 0xCE, 0x00, 0x00, 0x6A, 0x3F, 0x00, 0x00, 0x6A, 0x57, + 0x00, 0x00, 0x6A, 0x6F, 0x00, 0x00, 0x6A, 0x87, 0x00, 0x00, 0x6A, 0x9F, + 0x00, 0x00, 0x6A, 0xB7, 0x00, 0x00, 0x6A, 0xFE, 0x00, 0x00, 0x6B, 0x45, + 0x00, 0x00, 0x6B, 0x60, 0x00, 0x00, 0x6B, 0x76, 0x00, 0x00, 0x6B, 0x8E, + 0x00, 0x00, 0x6B, 0xA6, 0x00, 0x00, 0x6B, 0xEA, 0x00, 0x00, 0x6C, 0x51, + 0x00, 0x00, 0x6C, 0xC6, 0x00, 0x00, 0x6C, 0xDE, 0x00, 0x00, 0x6C, 0xF6, + 0x00, 0x00, 0x6D, 0x0C, 0x00, 0x00, 0x6D, 0x24, 0x00, 0x00, 0x6D, 0x3C, + 0x00, 0x00, 0x6D, 0x5C, 0x00, 0x00, 0x6D, 0x74, 0x00, 0x00, 0x6D, 0x8C, + 0x00, 0x00, 0x6D, 0xC5, 0x00, 0x00, 0x6D, 0xDB, 0x00, 0x00, 0x6D, 0xF1, + 0x00, 0x00, 0x6E, 0x07, 0x00, 0x00, 0x6E, 0x85, 0x00, 0x00, 0x6E, 0x9D, + 0x00, 0x00, 0x6E, 0xB5, 0x00, 0x00, 0x6E, 0xCB, 0x00, 0x00, 0x6E, 0xE3, + 0x00, 0x00, 0x6E, 0xFB, 0x00, 0x00, 0x6F, 0x1B, 0x00, 0x00, 0x6F, 0x33, + 0x00, 0x00, 0x6F, 0x4B, 0x00, 0x00, 0x6F, 0x5B, 0x00, 0x00, 0x6F, 0x78, + 0x00, 0x00, 0x6F, 0xEF, 0x00, 0x00, 0x70, 0x93, 0x00, 0x00, 0x71, 0x0D, + 0x00, 0x00, 0x71, 0x95, 0x00, 0x00, 0x71, 0xAD, 0x00, 0x00, 0x71, 0xC5, + 0x00, 0x00, 0x71, 0xDD, 0x00, 0x00, 0x72, 0x29, 0x00, 0x00, 0x72, 0x3F, + 0x00, 0x00, 0x72, 0xB5, 0x00, 0x00, 0x73, 0x2A, 0x00, 0x00, 0x73, 0xD0, + 0x00, 0x00, 0x74, 0x44, 0x00, 0x00, 0x74, 0x54, 0x00, 0x00, 0x74, 0x6C, + 0x00, 0x00, 0x74, 0x84, 0x00, 0x00, 0x74, 0x9C, 0x00, 0x00, 0x74, 0xB4, + 0x00, 0x00, 0x74, 0xCC, 0x00, 0x00, 0x74, 0xE4, 0x00, 0x00, 0x74, 0xFC, + 0x00, 0x00, 0x75, 0x14, 0x00, 0x00, 0x75, 0x34, 0x00, 0x00, 0x75, 0x87, + 0x00, 0x00, 0x75, 0xEA, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x76, 0x16, + 0x00, 0x00, 0x76, 0x2C, 0x00, 0x00, 0x76, 0xB9, 0x00, 0x00, 0x76, 0xD1, + 0x00, 0x00, 0x76, 0xE9, 0x00, 0x00, 0x77, 0x01, 0x00, 0x00, 0x77, 0x19, + 0x00, 0x00, 0x77, 0x31, 0x00, 0x00, 0x77, 0x49, 0x00, 0x00, 0x77, 0x61, + 0x00, 0x00, 0x77, 0x79, 0x00, 0x00, 0x77, 0x99, 0x00, 0x00, 0x77, 0xAF, + 0x00, 0x00, 0x77, 0xC7, 0x00, 0x00, 0x77, 0xDD, 0x00, 0x00, 0x77, 0xF3, + 0x00, 0x00, 0x78, 0x0B, 0x00, 0x00, 0x78, 0x23, 0x00, 0x00, 0x78, 0x39, + 0x00, 0x00, 0x78, 0x4F, 0x00, 0x00, 0x78, 0x67, 0x00, 0x00, 0x78, 0x7F, + 0x00, 0x00, 0x78, 0x97, 0x00, 0x00, 0x78, 0xAF, 0x00, 0x00, 0x78, 0xC7, + 0x00, 0x00, 0x78, 0xDF, 0x00, 0x00, 0x78, 0xF7, 0x00, 0x00, 0x79, 0x0F, + 0x00, 0x00, 0x79, 0x2F, 0x00, 0x00, 0x79, 0x47, 0x00, 0x00, 0x79, 0x5F, + 0x00, 0x00, 0x79, 0x77, 0x00, 0x00, 0x7A, 0x44, 0x00, 0x00, 0x7A, 0x5C, + 0x00, 0x00, 0x7A, 0x7A, 0x00, 0x00, 0x7A, 0x8A, 0x00, 0x00, 0x7A, 0xA2, + 0x00, 0x00, 0x7A, 0xBA, 0x00, 0x00, 0x7A, 0xD2, 0x00, 0x00, 0x7A, 0xEA, + 0x00, 0x00, 0x7B, 0x02, 0x00, 0x00, 0x7B, 0x1A, 0x00, 0x00, 0x7B, 0x32, + 0x00, 0x00, 0x7B, 0x4A, 0x00, 0x00, 0x7B, 0x60, 0x00, 0x00, 0x7B, 0xD2, + 0x00, 0x00, 0x7B, 0xE2, 0x00, 0x00, 0x7B, 0xF8, 0x00, 0x00, 0x7C, 0x10, + 0x00, 0x00, 0x7C, 0x8D, 0x00, 0x00, 0x7C, 0xA5, 0x00, 0x00, 0x7D, 0x1B, + 0x00, 0x00, 0x7D, 0xA6, 0x00, 0x00, 0x7E, 0x47, 0x00, 0x00, 0x7E, 0x5F, + 0x00, 0x00, 0x7E, 0x77, 0x00, 0x00, 0x7E, 0x87, 0x00, 0x00, 0x7E, 0xFD, + 0x00, 0x00, 0x7F, 0x9E, 0x00, 0x00, 0x80, 0x3E, 0x00, 0x00, 0x80, 0x7E, + 0x00, 0x00, 0x80, 0xEB, 0x00, 0x00, 0x81, 0x03, 0x00, 0x00, 0x81, 0x46, + 0x00, 0x00, 0x81, 0xB4, 0x00, 0x00, 0x81, 0xF2, 0x00, 0x00, 0x82, 0x31, + 0x00, 0x00, 0x82, 0x81, 0x00, 0x00, 0x82, 0x99, 0x00, 0x00, 0x82, 0xAF, + 0x00, 0x00, 0x82, 0xC5, 0x00, 0x00, 0x82, 0xDD, 0x00, 0x00, 0x82, 0xF3, + 0x00, 0x00, 0x83, 0x0B, 0x00, 0x00, 0x83, 0x23, 0x00, 0x00, 0x83, 0x41, + 0x00, 0x00, 0x83, 0x59, 0x00, 0x00, 0x83, 0xA9, 0x00, 0x00, 0x83, 0xF9, + 0x00, 0x00, 0x84, 0x7D, 0x00, 0x00, 0x85, 0x32, 0x00, 0x00, 0x85, 0xEA, + 0x00, 0x00, 0x86, 0x02, 0x00, 0x00, 0x86, 0x1A, 0x00, 0x00, 0x86, 0x32, + 0x00, 0x00, 0x86, 0x4A, 0x00, 0x00, 0x86, 0x62, 0x00, 0x00, 0x86, 0x7A, + 0x00, 0x00, 0x86, 0x92, 0x00, 0x00, 0x86, 0xAA, 0x00, 0x00, 0x86, 0xC2, + 0x00, 0x00, 0x86, 0xE2, 0x00, 0x00, 0x86, 0xF2, 0x00, 0x00, 0x87, 0x71, + 0x00, 0x00, 0x87, 0xE9, 0x00, 0x00, 0x88, 0x79, 0x00, 0x00, 0x88, 0xBF, + 0x00, 0x00, 0x89, 0x31, 0x00, 0x00, 0x89, 0x79, 0x00, 0x00, 0x89, 0xFB, + 0x00, 0x00, 0x8A, 0xB7, 0x00, 0x00, 0x8A, 0xFA, 0x00, 0x00, 0x8B, 0x4E, + 0x00, 0x00, 0x8B, 0x66, 0x00, 0x00, 0x8B, 0x7E, 0x00, 0x00, 0x8B, 0x96, + 0x00, 0x00, 0x8B, 0xAE, 0x00, 0x00, 0x8B, 0xC6, 0x00, 0x00, 0x8B, 0xDE, + 0x00, 0x00, 0x8B, 0xF6, 0x00, 0x00, 0x8C, 0x0E, 0x00, 0x00, 0x8C, 0x54, + 0x00, 0x00, 0x8C, 0xC6, 0x00, 0x00, 0x8C, 0xDE, 0x00, 0x00, 0x8C, 0xF6, + 0x00, 0x00, 0x8D, 0x0C, 0x00, 0x00, 0x8D, 0x24, 0x00, 0x00, 0x8D, 0x3C, + 0x00, 0x00, 0x8D, 0x54, 0x00, 0x00, 0x8D, 0x6C, 0x00, 0x00, 0x8D, 0x84, + 0x00, 0x00, 0x8D, 0xCE, 0x00, 0x00, 0x8D, 0xE4, 0x00, 0x00, 0x8D, 0xFA, + 0x00, 0x00, 0x8E, 0x61, 0x00, 0x00, 0x8E, 0xCC, 0x00, 0x00, 0x8F, 0x26, + 0x00, 0x00, 0x8F, 0x3E, 0x00, 0x00, 0x8F, 0x56, 0x00, 0x00, 0x8F, 0x6E, + 0x00, 0x00, 0x8F, 0x86, 0x00, 0x00, 0x8F, 0x9E, 0x00, 0x00, 0x8F, 0xB6, + 0x00, 0x00, 0x8F, 0xCE, 0x00, 0x00, 0x8F, 0xE6, 0x00, 0x00, 0x8F, 0xFE, + 0x00, 0x00, 0x90, 0x14, 0x00, 0x00, 0x90, 0x2A, 0x00, 0x00, 0x90, 0x40, + 0x00, 0x00, 0x90, 0x56, 0x00, 0x00, 0x90, 0x6C, 0x00, 0x00, 0x90, 0x84, + 0x00, 0x00, 0x90, 0x9C, 0x00, 0x00, 0x90, 0xB4, 0x00, 0x00, 0x90, 0xCC, + 0x00, 0x00, 0x90, 0xE2, 0x00, 0x00, 0x90, 0xFA, 0x00, 0x00, 0x91, 0x12, + 0x00, 0x00, 0x91, 0x2A, 0x00, 0x00, 0x91, 0x42, 0x00, 0x00, 0x91, 0x5A, + 0x00, 0x00, 0x91, 0x72, 0x00, 0x00, 0x91, 0x88, 0x00, 0x00, 0x91, 0xA0, + 0x00, 0x00, 0x91, 0xE8, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x92, 0x57, + 0x00, 0x00, 0x92, 0x6F, 0x00, 0x00, 0x92, 0x87, 0x00, 0x00, 0x92, 0x9F, + 0x00, 0x00, 0x92, 0xB7, 0x00, 0x00, 0x92, 0xCD, 0x00, 0x00, 0x92, 0xE3, + 0x00, 0x00, 0x92, 0xF9, 0x00, 0x00, 0x93, 0x11, 0x00, 0x00, 0x93, 0x27, + 0x00, 0x00, 0x93, 0x3D, 0x00, 0x00, 0x93, 0x53, 0x00, 0x00, 0x93, 0x6B, + 0x00, 0x00, 0x93, 0x83, 0x00, 0x00, 0x93, 0x9B, 0x00, 0x00, 0x94, 0x00, + 0x00, 0x00, 0x94, 0x18, 0x00, 0x00, 0x94, 0x30, 0x00, 0x00, 0x94, 0x48, + 0x00, 0x00, 0x94, 0x60, 0x00, 0x00, 0x94, 0x76, 0x00, 0x00, 0x94, 0x8E, + 0x00, 0x00, 0x94, 0xA6, 0x00, 0x00, 0x94, 0xBE, 0x00, 0x00, 0x94, 0xD6, + 0x00, 0x00, 0x94, 0xEE, 0x00, 0x00, 0x95, 0x06, 0x00, 0x00, 0x95, 0x1C, + 0x00, 0x00, 0x95, 0x32, 0x00, 0x00, 0x95, 0x4A, 0x00, 0x00, 0x95, 0x85, + 0x00, 0x00, 0x95, 0xC2, 0x00, 0x00, 0x95, 0xD8, 0x00, 0x00, 0x95, 0xF0, + 0x00, 0x00, 0x96, 0x6B, 0x00, 0x00, 0x96, 0x83, 0x00, 0x00, 0x97, 0x00, + 0x00, 0x00, 0x97, 0x18, 0x00, 0x00, 0x97, 0x30, 0x00, 0x00, 0x97, 0x48, + 0x00, 0x00, 0x97, 0x60, 0x00, 0x00, 0x97, 0x78, 0x00, 0x00, 0x97, 0x90, + 0x00, 0x00, 0x97, 0xF4, 0x00, 0x00, 0x98, 0x0C, 0x00, 0x00, 0x98, 0x22, + 0x00, 0x00, 0x98, 0x32, 0x00, 0x00, 0x98, 0xAA, 0x00, 0x00, 0x99, 0x0A, + 0x00, 0x00, 0x99, 0x20, 0x00, 0x00, 0x99, 0xB4, 0x00, 0x00, 0x9A, 0x22, + 0x00, 0x00, 0x9A, 0x3A, 0x00, 0x00, 0x9A, 0x52, 0x00, 0x00, 0x9A, 0x68, + 0x00, 0x00, 0x9A, 0x80, 0x00, 0x00, 0x9A, 0x98, 0x00, 0x00, 0x9A, 0xB0, + 0x00, 0x00, 0x9A, 0xC8, 0x00, 0x00, 0x9A, 0xE0, 0x00, 0x00, 0x9A, 0xF6, + 0x00, 0x00, 0x9B, 0x06, 0x00, 0x00, 0x9B, 0x1E, 0x00, 0x00, 0x9B, 0x34, + 0x00, 0x00, 0x9B, 0x4A, 0x00, 0x00, 0x9B, 0x62, 0x00, 0x00, 0x9B, 0xC3, + 0x00, 0x00, 0x9B, 0xDB, 0x00, 0x00, 0x9B, 0xF3, 0x00, 0x00, 0x9C, 0x0B, + 0x00, 0x00, 0x9C, 0x23, 0x00, 0x00, 0x9C, 0x64, 0x00, 0x00, 0x9C, 0x93, + 0x00, 0x00, 0x9C, 0xAB, 0x00, 0x00, 0x9C, 0xEF, 0x00, 0x00, 0x9D, 0x61, + 0x00, 0x00, 0x9D, 0xBD, 0x00, 0x00, 0x9D, 0xD5, 0x00, 0x00, 0x9D, 0xED, + 0x00, 0x00, 0x9E, 0x05, 0x00, 0x00, 0x9E, 0x1D, 0x00, 0x00, 0x9E, 0x35, + 0x00, 0x00, 0x9E, 0x4D, 0x00, 0x00, 0x9E, 0xA2, 0x00, 0x00, 0x9E, 0xC2, + 0x00, 0x00, 0x9E, 0xEE, 0x00, 0x00, 0x9F, 0x68, 0x00, 0x00, 0x9F, 0x9B, + 0x00, 0x00, 0x9F, 0xC1, 0x00, 0x00, 0xA0, 0x3C, 0x00, 0x00, 0xA0, 0xBD, + 0x00, 0x00, 0xA1, 0x1B, 0x00, 0x00, 0xA1, 0x93, 0x00, 0x00, 0xA1, 0xAB, + 0x00, 0x00, 0xA1, 0xC3, 0x00, 0x00, 0xA1, 0xDB, 0x00, 0x00, 0xA1, 0xF3, + 0x00, 0x00, 0xA2, 0x0B, 0x00, 0x00, 0xA2, 0x23, 0x00, 0x00, 0xA2, 0x3B, + 0x00, 0x00, 0xA2, 0x53, 0x00, 0x00, 0xA2, 0x6B, 0x00, 0x00, 0xA2, 0x83, + 0x00, 0x00, 0xA2, 0x9D, 0x00, 0x00, 0xA2, 0xBD, 0x00, 0x00, 0xA2, 0xDD, + 0x00, 0x00, 0xA2, 0xFD, 0x00, 0x00, 0xA3, 0x1D, 0x00, 0x00, 0xA3, 0x3D, + 0x00, 0x00, 0xA3, 0x5D, 0x00, 0x00, 0xA3, 0x7D, 0x00, 0x00, 0xA3, 0x9D, + 0x00, 0x00, 0xA3, 0xB5, 0x00, 0x00, 0xA4, 0x33, 0x00, 0x00, 0xA4, 0xA2, + 0x00, 0x00, 0xA4, 0xBA, 0x00, 0x00, 0xA4, 0xD2, 0x00, 0x00, 0xA5, 0x44, + 0x00, 0x00, 0xA5, 0x93, 0x00, 0x00, 0xA5, 0xC0, 0x00, 0x00, 0xA5, 0xDC, + 0x00, 0x00, 0xA6, 0x37, 0x00, 0x00, 0xA6, 0x8C, 0x00, 0x00, 0xA6, 0xA4, + 0x00, 0x00, 0xA6, 0xB4, 0x00, 0x00, 0xA6, 0xED, 0x00, 0x00, 0xA7, 0x38, + 0x00, 0x00, 0xA7, 0x9A, 0x00, 0x00, 0xA7, 0xDB, 0x00, 0x00, 0xA7, 0xEB, + 0x00, 0x00, 0xA8, 0x03, 0x00, 0x00, 0xA8, 0x59, 0x00, 0x00, 0xA8, 0xDA, + 0x00, 0x00, 0xA8, 0xF2, 0x00, 0x00, 0xA9, 0x39, 0x00, 0x00, 0xA9, 0x83, + 0x00, 0x00, 0xA9, 0x9B, 0x00, 0x00, 0xA9, 0xB3, 0x00, 0x00, 0xA9, 0xFD, + 0x00, 0x00, 0xAA, 0x57, 0x00, 0x00, 0xAA, 0x87, 0x00, 0x00, 0xAA, 0x9F, + 0x00, 0x00, 0xAA, 0xF7, 0x00, 0x00, 0xAB, 0x0F, 0x00, 0x00, 0xAB, 0x5B, + 0x00, 0x00, 0xAB, 0xD6, 0x00, 0x00, 0xAC, 0x39, 0x00, 0x00, 0xAC, 0xB9, + 0x00, 0x00, 0xAD, 0x41, 0x00, 0x00, 0xAD, 0x9D, 0x00, 0x00, 0xAD, 0xB5, + 0x00, 0x00, 0xAD, 0xCD, 0x00, 0x00, 0xAE, 0x4D, 0x00, 0x00, 0xAF, 0x10, + 0x00, 0x00, 0xAF, 0xAE, 0x00, 0x00, 0xB0, 0x2A, 0x00, 0x00, 0xB0, 0x3A, + 0x00, 0x00, 0xB0, 0x79, 0x00, 0x00, 0xB0, 0x91, 0x00, 0x00, 0xB1, 0x2C, + 0x00, 0x00, 0xB1, 0xB4, 0x00, 0x00, 0xB1, 0xCC, 0x00, 0x00, 0xB1, 0xE4, + 0x00, 0x00, 0xB1, 0xFC, 0x00, 0x00, 0xB2, 0x14, 0x00, 0x00, 0xB2, 0x2C, + 0x00, 0x00, 0xB2, 0x44, 0x00, 0x00, 0xB2, 0x5C, 0x00, 0x00, 0xB2, 0x74, + 0x00, 0x00, 0xB2, 0x8C, 0x00, 0x00, 0xB2, 0xA4, 0x00, 0x00, 0xB2, 0xC4, + 0x00, 0x00, 0xB2, 0xE4, 0x00, 0x00, 0xB3, 0x04, 0x00, 0x00, 0xB3, 0x24, + 0x00, 0x00, 0xB3, 0x44, 0x00, 0x00, 0xB3, 0x64, 0x00, 0x00, 0xB3, 0x84, + 0x00, 0x00, 0xB3, 0xA4, 0x00, 0x00, 0xB3, 0xBC, 0x00, 0x00, 0xB3, 0xD4, + 0x00, 0x00, 0xB3, 0xF4, 0x00, 0x00, 0xB4, 0x0C, 0x00, 0x00, 0xB4, 0x2C, + 0x00, 0x00, 0xB4, 0x42, 0x00, 0x00, 0xB4, 0x60, 0x00, 0x00, 0xB4, 0xFC, + 0x00, 0x00, 0xB5, 0x46, 0x00, 0x00, 0xB5, 0xE1, 0x00, 0x00, 0xB6, 0x7A, + 0x00, 0x00, 0xB6, 0x92, 0x00, 0x00, 0xB7, 0x28, 0x00, 0x00, 0xB7, 0x38, + 0x00, 0x00, 0xB7, 0xD0, 0x00, 0x00, 0xB8, 0x66, 0x00, 0x00, 0xB9, 0x36, + 0x00, 0x00, 0xB9, 0x4E, 0x00, 0x00, 0xB9, 0x66, 0x00, 0x00, 0xB9, 0x7E, + 0x00, 0x00, 0xB9, 0x96, 0x00, 0x00, 0xB9, 0xAE, 0x00, 0x00, 0xB9, 0xC6, + 0x00, 0x00, 0xB9, 0xDE, 0x00, 0x00, 0xBA, 0x5F, 0x00, 0x00, 0xBA, 0xAB, + 0x00, 0x00, 0xBA, 0xC3, 0x00, 0x00, 0xBA, 0xDB, 0x00, 0x00, 0xBA, 0xF3, + 0x00, 0x00, 0xBB, 0x0B, 0x00, 0x00, 0xBB, 0x23, 0x00, 0x00, 0xBB, 0x3B, + 0x00, 0x00, 0xBB, 0x53, 0x00, 0x00, 0xBB, 0x6B, 0x00, 0x00, 0xBB, 0x83, + 0x00, 0x00, 0xBB, 0x9B, 0x00, 0x00, 0xBB, 0xB9, 0x00, 0x00, 0xBB, 0xD7, + 0x00, 0x00, 0xBB, 0xF5, 0x00, 0x00, 0xBC, 0x13, 0x00, 0x00, 0xBC, 0x31, + 0x00, 0x00, 0xBC, 0x4F, 0x00, 0x00, 0xBC, 0x6D, 0x00, 0x00, 0xBC, 0x8B, + 0x00, 0x00, 0xBC, 0xA9, 0x00, 0x00, 0xBC, 0xBF, 0x00, 0x00, 0xBC, 0xDD, + 0x00, 0x00, 0xBC, 0xF3, 0x00, 0x00, 0xBD, 0x0F, 0x00, 0x00, 0xBD, 0x83, + 0x00, 0x00, 0xBD, 0xBC, 0x00, 0x00, 0xBD, 0xD4, 0x00, 0x00, 0xBD, 0xEA, + 0x00, 0x00, 0xBE, 0x02, 0x00, 0x00, 0xBE, 0x18, 0x00, 0x00, 0xBE, 0x2E, + 0x00, 0x00, 0xBE, 0x46, 0x00, 0x00, 0xBE, 0x5E, 0x00, 0x00, 0xBE, 0x76, + 0x00, 0x00, 0xBE, 0x8E, 0x00, 0x00, 0xBE, 0xA4, 0x00, 0x00, 0xBE, 0xBA, + 0x00, 0x00, 0xBE, 0xD0, 0x00, 0x00, 0xBE, 0xE8, 0x00, 0x00, 0xBF, 0x00, + 0x00, 0x00, 0xBF, 0x18, 0x00, 0x00, 0xBF, 0x30, 0x00, 0x00, 0xBF, 0x48, + 0x00, 0x00, 0xBF, 0xC9, 0x00, 0x00, 0xC0, 0x5A, 0x00, 0x00, 0xC0, 0xAF, + 0x00, 0x00, 0xC1, 0x1F, 0x00, 0x00, 0xC1, 0x37, 0x00, 0x00, 0xC1, 0x4F, + 0x00, 0x00, 0xC1, 0x67, 0x00, 0x00, 0xC1, 0xD7, 0x00, 0x00, 0xC2, 0x46, + 0x00, 0x00, 0xC2, 0x8A, 0x00, 0x00, 0xC2, 0x9A, 0x00, 0x00, 0xC2, 0xB0, + 0x00, 0x00, 0xC2, 0xC6, 0x00, 0x00, 0xC2, 0xDE, 0x00, 0x00, 0xC2, 0xF6, + 0x00, 0x00, 0xC3, 0x0E, 0x00, 0x00, 0xC3, 0x26, 0x00, 0x00, 0xC3, 0x3E, + 0x00, 0x00, 0xC3, 0x56, 0x00, 0x00, 0xC3, 0x6E, 0x00, 0x00, 0xC3, 0x86, + 0x00, 0x00, 0xC3, 0x9E, 0x00, 0x00, 0xC3, 0xB6, 0x00, 0x00, 0xC3, 0xCE, + 0x00, 0x00, 0xC3, 0xE6, 0x00, 0x00, 0xC3, 0xFC, 0x00, 0x00, 0xC4, 0x12, + 0x00, 0x00, 0xC4, 0x2A, 0x00, 0x00, 0xC4, 0xB3, 0x00, 0x00, 0xC5, 0x2C, + 0x00, 0x00, 0xC5, 0x86, 0x00, 0x00, 0xC6, 0x11, 0x00, 0x00, 0xC6, 0x29, + 0x00, 0x00, 0xC6, 0x41, 0x00, 0x00, 0xC6, 0x59, 0x00, 0x00, 0xC6, 0x71, + 0x00, 0x00, 0xC6, 0x89, 0x00, 0x00, 0xC6, 0xA1, 0x00, 0x00, 0xC6, 0xB9, + 0x00, 0x00, 0xC6, 0xD1, 0x00, 0x00, 0xC6, 0xE9, 0x00, 0x00, 0xC7, 0x01, + 0x00, 0x00, 0xC7, 0x21, 0x00, 0x00, 0xC7, 0x41, 0x00, 0x00, 0xC7, 0x61, + 0x00, 0x00, 0xC7, 0x81, 0x00, 0x00, 0xC7, 0xA1, 0x00, 0x00, 0xC7, 0xC1, + 0x00, 0x00, 0xC7, 0xE1, 0x00, 0x00, 0xC8, 0x01, 0x00, 0x00, 0xC8, 0x21, + 0x00, 0x00, 0xC8, 0x39, 0x00, 0x00, 0xC8, 0x59, 0x00, 0x00, 0xC8, 0x71, + 0x00, 0x00, 0xC8, 0x91, 0x00, 0x00, 0xC8, 0xFC, 0x00, 0x00, 0xC9, 0x95, + 0x00, 0x00, 0xC9, 0xFF, 0x00, 0x00, 0xCA, 0x1F, 0x00, 0x00, 0xCA, 0x4A, + 0x00, 0x00, 0xCA, 0x68, 0x00, 0x00, 0xCA, 0xBE, 0x00, 0x00, 0xCB, 0x14, + 0x00, 0x00, 0xCB, 0x2C, 0x00, 0x00, 0xCB, 0xAD, 0x00, 0x00, 0xCB, 0xDD, + 0x00, 0x00, 0xCB, 0xFD, 0x00, 0x00, 0xCC, 0x36, 0x00, 0x00, 0xCC, 0x9F, + 0x00, 0x00, 0xCC, 0xB7, 0x00, 0x00, 0xCC, 0xFD, 0x00, 0x00, 0xCD, 0x45, + 0x00, 0x00, 0xCD, 0x86, 0x00, 0x00, 0xCD, 0x9E, 0x00, 0x00, 0xCD, 0xB6, + 0x00, 0x00, 0xCD, 0xC6, 0x00, 0x00, 0xCD, 0xDE, 0x00, 0x00, 0xCD, 0xEE, + 0x00, 0x00, 0xCE, 0x06, 0x00, 0x00, 0xCE, 0x48, 0x00, 0x00, 0xCE, 0xA6, + 0x00, 0x00, 0xCE, 0xBE, 0x00, 0x00, 0xCE, 0xE4, 0x00, 0x00, 0xCE, 0xF4, + 0x00, 0x00, 0xCF, 0x6D, 0x00, 0x00, 0xCF, 0xE0, 0x00, 0x00, 0xCF, 0xF8, + 0x00, 0x00, 0xD0, 0x10, 0x00, 0x00, 0xD0, 0x28, 0x00, 0x00, 0xD0, 0x71, + 0x00, 0x00, 0xD0, 0x89, 0x00, 0x00, 0xD0, 0xA1, 0x00, 0x00, 0xD0, 0xD1, + 0x00, 0x00, 0xD0, 0xE9, 0x00, 0x00, 0xD1, 0x32, 0x00, 0x00, 0xD1, 0x86, + 0x00, 0x00, 0xD1, 0x9E, 0x00, 0x00, 0xD2, 0x01, 0x00, 0x00, 0xD2, 0x64, + 0x00, 0x00, 0xD2, 0x7C, 0x00, 0x00, 0xD2, 0xDE, 0x00, 0x00, 0xD3, 0x5C, + 0x00, 0x00, 0xD3, 0xD9, 0x00, 0x00, 0xD4, 0x28, 0x00, 0x00, 0xD4, 0x91, + 0x00, 0x00, 0xD4, 0xEF, 0x00, 0x00, 0xD5, 0x6D, 0x00, 0x00, 0xD6, 0x20, + 0x00, 0x00, 0xD6, 0x67, 0x00, 0x00, 0xD6, 0xF4, 0x00, 0x00, 0xD7, 0x06, + 0x00, 0x00, 0xD7, 0x41, 0x00, 0x00, 0xD7, 0xE3, 0x00, 0x00, 0xD8, 0x5F, + 0x00, 0x00, 0xD8, 0xB8, 0x00, 0x00, 0xD9, 0x40, 0x00, 0x00, 0xD9, 0xA9, + 0x00, 0x00, 0xDA, 0x0B, 0x00, 0x00, 0xDA, 0x68, 0x00, 0x00, 0xDA, 0xEF, + 0x00, 0x00, 0xDB, 0x65, 0x00, 0x00, 0xDB, 0x9A, 0x00, 0x00, 0xDB, 0xB2, + 0x00, 0x00, 0xDC, 0x19, 0x00, 0x00, 0xDC, 0x6F, 0x00, 0x00, 0xDC, 0xD3, + 0x00, 0x00, 0xDD, 0x69, 0x00, 0x00, 0xDD, 0xC6, 0x00, 0x00, 0xDE, 0x6A, + 0x00, 0x00, 0xDE, 0xE4, 0x00, 0x00, 0xDF, 0x6B, 0x00, 0x00, 0xE0, 0x01, + 0x00, 0x00, 0xE0, 0x80, 0x00, 0x00, 0xE1, 0x2C, 0x00, 0x00, 0xE1, 0x6F, + 0x00, 0x00, 0xE2, 0x86, 0x00, 0x00, 0xE3, 0x11, 0x00, 0x00, 0xE3, 0x6C, + 0x00, 0x00, 0xE3, 0xC4, 0x00, 0x00, 0xE3, 0xDC, 0x00, 0x00, 0xE4, 0x6B, + 0x00, 0x00, 0xE4, 0x83, 0x00, 0x00, 0xE5, 0x0C, 0x00, 0x00, 0xE5, 0xBD, + 0x00, 0x00, 0xE6, 0x28, 0x00, 0x00, 0xE6, 0x4F, 0x00, 0x00, 0xE6, 0xB1, + 0x00, 0x00, 0xE6, 0xC9, 0x00, 0x00, 0xE7, 0x5D, 0x00, 0x00, 0xE7, 0x9D, + 0x00, 0x00, 0xE8, 0x13, 0x00, 0x00, 0xE8, 0x98, 0x00, 0x00, 0xE9, 0x30, + 0x00, 0x00, 0xE9, 0x56, 0x00, 0x00, 0xEA, 0x0E, 0x00, 0x00, 0xEA, 0xA8, + 0x00, 0x00, 0xEB, 0x25, 0x00, 0x00, 0xEB, 0x5A, 0x00, 0x00, 0xEB, 0xC6, + 0x00, 0x00, 0xEC, 0x01, 0x00, 0x00, 0xEC, 0x7A, 0x00, 0x00, 0xEC, 0xF4, + 0x00, 0x00, 0xED, 0x5F, 0x00, 0x00, 0xED, 0x91, 0x00, 0x00, 0xED, 0xA1, + 0x00, 0x00, 0xED, 0xB1, 0x00, 0x00, 0xED, 0xC1, 0x00, 0x00, 0xED, 0xD1, + 0x00, 0x00, 0xED, 0xE1, 0x00, 0x00, 0xED, 0xF1, 0x00, 0x00, 0xEE, 0x01, + 0x00, 0x00, 0xEE, 0x11, 0x00, 0x00, 0xEE, 0x8E, 0x00, 0x00, 0xEE, 0xCE, + 0x00, 0x00, 0xEE, 0xDE, 0x00, 0x00, 0xEE, 0xEE, 0x00, 0x00, 0xEE, 0xFE, + 0x00, 0x00, 0xEF, 0x0E, 0x00, 0x00, 0xEF, 0x20, 0x00, 0x00, 0xEF, 0x30, + 0x00, 0x00, 0xEF, 0x48, 0x00, 0x00, 0xEF, 0x62, 0x00, 0x00, 0xEF, 0x7C, + 0x00, 0x00, 0xEF, 0x8C, 0x00, 0x00, 0xEF, 0x9C, 0x00, 0x00, 0xF0, 0x1C, + 0x00, 0x00, 0xF0, 0xA0, 0x00, 0x00, 0xF0, 0xB2, 0x00, 0x00, 0xF0, 0xC2, + 0x00, 0x00, 0xF0, 0xD2, 0x00, 0x00, 0xF0, 0xE2, 0x00, 0x00, 0xF0, 0xF2, + 0x00, 0x00, 0xF1, 0x02, 0x00, 0x00, 0xF1, 0x14, 0x00, 0x00, 0xF1, 0x24, + 0x00, 0x00, 0xF1, 0x36, 0x00, 0x00, 0xF1, 0x48, 0x00, 0x00, 0xF1, 0x58, + 0x00, 0x00, 0xF1, 0x68, 0x00, 0x00, 0xF1, 0x78, 0x00, 0x00, 0xF1, 0x88, + 0x00, 0x00, 0xF1, 0x98, 0x00, 0x00, 0xF1, 0xA8, 0x00, 0x00, 0xF1, 0xB8, + 0x00, 0x00, 0xF1, 0xC8, 0x00, 0x00, 0xF1, 0xD8, 0x00, 0x00, 0xF1, 0xE8, + 0x00, 0x00, 0xF1, 0xF8, 0x00, 0x00, 0xF2, 0x08, 0x00, 0x00, 0xF2, 0x18, + 0x00, 0x00, 0xF2, 0x2A, 0x00, 0x00, 0xF2, 0x3C, 0x00, 0x00, 0xF2, 0x4E, + 0x00, 0x00, 0xF2, 0x60, 0x00, 0x00, 0xF2, 0x72, 0x00, 0x00, 0xF2, 0x84, + 0x00, 0x00, 0xF2, 0x96, 0x00, 0x00, 0xF2, 0xA8, 0x00, 0x00, 0xF2, 0xBA, + 0x00, 0x00, 0xF2, 0xCC, 0x00, 0x00, 0xF2, 0xDE, 0x00, 0x00, 0xF2, 0xF0, + 0x00, 0x00, 0xF3, 0x02, 0x00, 0x00, 0xF3, 0x14, 0x00, 0x00, 0xF3, 0x24, + 0x00, 0x00, 0xF3, 0x24, 0x00, 0x00, 0xF3, 0x24, 0x00, 0x00, 0xF3, 0x24, + 0x00, 0x00, 0xF3, 0xE1, 0x00, 0x00, 0xF4, 0x04, 0x00, 0x00, 0xF4, 0x40, + 0x00, 0x00, 0xF4, 0x58, 0x00, 0x00, 0xF4, 0x94, 0x00, 0x00, 0xF4, 0xAC, + 0x00, 0x00, 0xF5, 0x33, 0x00, 0x00, 0xF5, 0x4B, 0x00, 0x00, 0xF5, 0x63, + 0x00, 0x00, 0xF5, 0xEA, 0x00, 0x00, 0xF6, 0x7F, 0x00, 0x00, 0xF7, 0x14, + 0x00, 0x00, 0xF7, 0x58, 0x00, 0x00, 0xF7, 0x9C, 0x00, 0x00, 0xF7, 0xBF, + 0x00, 0x00, 0xF7, 0xF0, 0x00, 0x00, 0xF8, 0x13, 0x00, 0x00, 0xF8, 0x43, + 0x00, 0x00, 0xF8, 0xC3, 0x00, 0x00, 0xF9, 0x47, 0x00, 0x00, 0xFA, 0x4D, + 0x00, 0x00, 0xFA, 0x5D, 0x00, 0x00, 0xFA, 0x6D, 0x00, 0x00, 0xFA, 0x7D, + 0x00, 0x00, 0xFA, 0x8D, 0x00, 0x00, 0xFA, 0x9D, 0x00, 0x00, 0xFA, 0xAD, + 0x00, 0x00, 0xFA, 0xBF, 0x00, 0x00, 0xFB, 0x0A, 0x00, 0x00, 0xFB, 0xB2, + 0x00, 0x00, 0xFB, 0xD1, 0x00, 0x00, 0xFB, 0xEC, 0x00, 0x00, 0xFC, 0x13, + 0x00, 0x00, 0xFC, 0x31, 0x00, 0x00, 0xFC, 0x4B, 0x00, 0x00, 0xFC, 0x65, + 0x00, 0x00, 0xFC, 0x7F, 0x00, 0x00, 0xFC, 0x99, 0x00, 0x00, 0xFC, 0xA9, + 0x00, 0x00, 0xFC, 0xE2, 0x00, 0x00, 0xFD, 0x3A, 0x00, 0x00, 0xFD, 0x54, + 0x00, 0x00, 0xFD, 0x6F, 0x00, 0x00, 0xFD, 0xB1, 0x00, 0x00, 0xFD, 0xF4, + 0x00, 0x00, 0xFE, 0x0F, 0x00, 0x00, 0xFE, 0x21, 0x00, 0x00, 0xFE, 0x33, + 0x00, 0x00, 0xFE, 0x43, 0x00, 0x00, 0xFE, 0x55, 0x00, 0x00, 0xFE, 0x67, + 0x00, 0x00, 0xFE, 0x79, 0x00, 0x00, 0xFE, 0x8B, 0x00, 0x00, 0xFE, 0x9D, + 0x00, 0x00, 0xFE, 0xAF, 0x00, 0x00, 0xFE, 0xC1, 0x00, 0x00, 0xFE, 0xD3, + 0x00, 0x00, 0xFE, 0xEF, 0x00, 0x00, 0xFF, 0x0B, 0x00, 0x00, 0xFF, 0x27, + 0x00, 0x00, 0xFF, 0x3F, 0x00, 0x00, 0xFF, 0x57, 0x00, 0x00, 0xFF, 0x6F, + 0x00, 0x00, 0xFF, 0x89, 0x00, 0x00, 0xFF, 0x9B, 0x00, 0x00, 0xFF, 0xB6, + 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x22, 0x00, 0x01, 0x00, 0x4A, 0x00, 0x01, 0x00, 0x65, + 0x00, 0x01, 0x00, 0x7D, 0x00, 0x01, 0x00, 0x9D, 0x00, 0x01, 0x00, 0xB9, + 0x00, 0x01, 0x00, 0xD1, 0x00, 0x01, 0x00, 0xE3, 0x00, 0x01, 0x01, 0x0E, + 0x00, 0x01, 0x01, 0x2E, 0x00, 0x01, 0x01, 0x46, 0x00, 0x01, 0x01, 0x5E, + 0x00, 0x01, 0x01, 0x78, 0x00, 0x01, 0x01, 0x92, 0x00, 0x01, 0x01, 0xAC, + 0x00, 0x01, 0x01, 0xBE, 0x00, 0x01, 0x01, 0xD0, 0x00, 0x01, 0x01, 0xEA, + 0x00, 0x01, 0x02, 0x12, 0x00, 0x01, 0x02, 0x39, 0x00, 0x01, 0x02, 0x51, + 0x00, 0x01, 0x02, 0x69, 0x00, 0x01, 0x02, 0x98, 0x00, 0x01, 0x02, 0xCB, + 0x00, 0x01, 0x03, 0x07, 0x00, 0x01, 0x03, 0x42, 0x00, 0x01, 0x03, 0x69, + 0x00, 0x01, 0x03, 0xA3, 0x00, 0x01, 0x03, 0xCB, 0x00, 0x01, 0x03, 0xE5, + 0x00, 0x01, 0x04, 0x15, 0x00, 0x01, 0x04, 0x71, 0x00, 0x01, 0x04, 0xA6, + 0x00, 0x01, 0x05, 0x4E, 0x00, 0x01, 0x05, 0xA8, 0x00, 0x01, 0x05, 0xBA, + 0x00, 0x01, 0x05, 0xCC, 0x00, 0x01, 0x05, 0xDE, 0x00, 0x01, 0x05, 0xF0, + 0x00, 0x01, 0x06, 0x02, 0x00, 0x01, 0x06, 0x14, 0x00, 0x01, 0x06, 0x26, + 0x00, 0x01, 0x06, 0x38, 0x00, 0x01, 0x06, 0x4A, 0x00, 0x01, 0x06, 0x5C, + 0x00, 0x01, 0x06, 0x6E, 0x00, 0x01, 0x06, 0x80, 0x00, 0x01, 0x06, 0x92, + 0x00, 0x01, 0x06, 0xB3, 0x00, 0x01, 0x06, 0xCB, 0x00, 0x01, 0x06, 0xFC, + 0x00, 0x01, 0x07, 0x39, 0x00, 0x01, 0x07, 0x71, 0x00, 0x01, 0x07, 0xC2, + 0x00, 0x01, 0x08, 0x22, 0x00, 0x01, 0x08, 0xD2, 0x00, 0x01, 0x09, 0xA8, + 0x00, 0x01, 0x0A, 0x7E, 0x00, 0x01, 0x0B, 0x31, 0x00, 0x01, 0x0B, 0x8D, + 0x00, 0x01, 0x0C, 0x35, 0x00, 0x01, 0x0C, 0x90, 0x00, 0x01, 0x0C, 0xFC, + 0x00, 0x01, 0x0D, 0x7B, 0x00, 0x01, 0x0E, 0x00, 0x00, 0x01, 0x0E, 0x64, + 0x00, 0x01, 0x0E, 0xF8, 0x00, 0x01, 0x0F, 0x5C, 0x00, 0x01, 0x0F, 0x96, + 0x00, 0x01, 0x0F, 0xD9, 0x00, 0x01, 0x10, 0x19, 0x00, 0x01, 0x10, 0x56, + 0x00, 0x01, 0x11, 0x49, 0x00, 0x01, 0x12, 0x44, 0x00, 0x01, 0x12, 0xD7, + 0x00, 0x01, 0x13, 0x1E, 0x00, 0x01, 0x13, 0x44, 0x00, 0x01, 0x13, 0x9C, + 0x00, 0x01, 0x13, 0xDC, 0x00, 0x01, 0x14, 0x5D, 0x00, 0x01, 0x14, 0xA8, + 0x00, 0x01, 0x15, 0x30, 0x00, 0x01, 0x15, 0x94, 0x00, 0x01, 0x15, 0xF7, + 0x00, 0x01, 0x16, 0x5B, 0x00, 0x01, 0x16, 0xC4, 0x00, 0x01, 0x17, 0x0A, + 0x00, 0x01, 0x17, 0x93, 0x00, 0x01, 0x17, 0xDB, 0x00, 0x01, 0x18, 0x15, + 0x00, 0x01, 0x18, 0x63, 0x00, 0x01, 0x18, 0xA4, 0x00, 0x01, 0x18, 0xBF, + 0x00, 0x01, 0x19, 0x30, 0x00, 0x01, 0x19, 0x78, 0x00, 0x01, 0x19, 0xD6, + 0x00, 0x01, 0x1A, 0x3A, 0x00, 0x01, 0x1A, 0x9F, 0x00, 0x01, 0x1A, 0xDE, + 0x00, 0x01, 0x1B, 0x5E, 0x00, 0x01, 0x1B, 0xA5, 0x00, 0x01, 0x1B, 0xED, + 0x00, 0x01, 0x1C, 0x28, 0x00, 0x01, 0x1C, 0x9C, 0x00, 0x01, 0x1D, 0x02, + 0x00, 0x01, 0x1D, 0x62, 0x00, 0x01, 0x1D, 0x93, 0x00, 0x01, 0x1D, 0xDF, + 0x00, 0x01, 0x1E, 0x3B, 0x00, 0x01, 0x1E, 0x60, 0x00, 0x01, 0x1E, 0x94, + 0x00, 0x01, 0x1E, 0xEB, 0x00, 0x01, 0x1F, 0x6A, 0x00, 0x01, 0x1F, 0xCB, + 0x00, 0x01, 0x20, 0x09, 0x00, 0x01, 0x20, 0x42, 0x00, 0x01, 0x20, 0xAB, + 0x00, 0x01, 0x21, 0x2F, 0x00, 0x01, 0x21, 0x9C, 0x00, 0x01, 0x21, 0xC4, + 0x00, 0x01, 0x22, 0x65, 0x00, 0x01, 0x22, 0xEE, 0x00, 0x01, 0x23, 0x5B, + 0x00, 0x01, 0x23, 0x96, 0x00, 0x01, 0x23, 0xCF, 0x00, 0x01, 0x23, 0xF2, + 0x00, 0x01, 0x24, 0x15, 0x00, 0x01, 0x24, 0x3D, 0x00, 0x01, 0x24, 0x57, + 0x00, 0x01, 0x24, 0x7E, 0x00, 0x01, 0x24, 0x90, 0x00, 0x01, 0x24, 0xA2, + 0x00, 0x01, 0x24, 0xB4, 0x00, 0x01, 0x24, 0xC6, 0x00, 0x01, 0x24, 0xD8, + 0x00, 0x01, 0x24, 0xEA, 0x00, 0x01, 0x24, 0xFC, 0x00, 0x01, 0x25, 0x0E, + 0x00, 0x01, 0x25, 0x20, 0x00, 0x01, 0x25, 0x32, 0x00, 0x01, 0x25, 0x44, + 0x00, 0x01, 0x25, 0x56, 0x00, 0x01, 0x25, 0x68, 0x00, 0x01, 0x25, 0x7A, + 0x00, 0x01, 0x25, 0x8C, 0x00, 0x01, 0x25, 0x9E, 0x00, 0x01, 0x25, 0xB0, + 0x00, 0x01, 0x25, 0xC2, 0x00, 0x01, 0x25, 0xD4, 0x00, 0x01, 0x25, 0xE6, + 0x00, 0x01, 0x25, 0xF8, 0x00, 0x01, 0x26, 0x0A, 0x00, 0x01, 0x26, 0x1C, + 0x00, 0x01, 0x26, 0x2E, 0x00, 0x01, 0x26, 0x40, 0x00, 0x01, 0x26, 0x52, + 0x00, 0x01, 0x26, 0x64, 0x00, 0x01, 0x26, 0x76, 0x00, 0x01, 0x26, 0x88, + 0x00, 0x01, 0x26, 0x9A, 0x00, 0x01, 0x26, 0xAC, 0x00, 0x01, 0x26, 0xBE, + 0x00, 0x01, 0x26, 0xD0, 0x00, 0x01, 0x26, 0xE2, 0x00, 0x01, 0x26, 0xF4, + 0x00, 0x01, 0x27, 0x06, 0x00, 0x01, 0x27, 0x18, 0x00, 0x01, 0x27, 0x2A, + 0x00, 0x01, 0x27, 0x3C, 0x00, 0x01, 0x27, 0x4E, 0x00, 0x01, 0x27, 0x60, + 0x00, 0x01, 0x27, 0x72, 0x00, 0x01, 0x27, 0x84, 0x00, 0x01, 0x27, 0x96, + 0x00, 0x01, 0x27, 0xA8, 0x00, 0x01, 0x27, 0xBA, 0x00, 0x01, 0x27, 0xCC, + 0x00, 0x01, 0x27, 0xDE, 0x00, 0x01, 0x27, 0xF0, 0x00, 0x01, 0x28, 0x0D, + 0x00, 0x01, 0x28, 0x58, 0x00, 0x01, 0x28, 0xB3, 0x00, 0x01, 0x28, 0xD8, + 0x00, 0x01, 0x29, 0x09, 0x00, 0x01, 0x29, 0x5B, 0x00, 0x01, 0x29, 0xD9, + 0x00, 0x01, 0x2A, 0x3D, 0x00, 0x01, 0x2A, 0x79, 0x00, 0x01, 0x2A, 0xB1, + 0x00, 0x01, 0x2B, 0x1C, 0x00, 0x01, 0x2B, 0x9D, 0x00, 0x01, 0x2C, 0x01, + 0x00, 0x01, 0x2C, 0x27, 0x00, 0x01, 0x2C, 0xC7, 0x00, 0x01, 0x2D, 0x4F, + 0x00, 0x01, 0x2D, 0xB7, 0x00, 0x01, 0x2D, 0xDE, 0x00, 0x01, 0x2D, 0xF8, + 0x00, 0x01, 0x2E, 0x1F, 0x00, 0x01, 0x2E, 0x5A, 0x00, 0x01, 0x2E, 0x92, + 0x00, 0x01, 0x2E, 0xBD, 0x00, 0x01, 0x2E, 0xD8, 0x00, 0x01, 0x2F, 0x1D, + 0x00, 0x01, 0x2F, 0x4D, 0x00, 0x01, 0x2F, 0x5F, 0x00, 0x01, 0x2F, 0x71, + 0x00, 0x01, 0x2F, 0x83, 0x00, 0x01, 0x2F, 0x95, 0x00, 0x01, 0x2F, 0xA7, + 0x00, 0x01, 0x2F, 0xB9, 0x00, 0x01, 0x2F, 0xCB, 0x00, 0x01, 0x2F, 0xDD, + 0x00, 0x01, 0x2F, 0xEF, 0x00, 0x01, 0x30, 0x01, 0x00, 0x01, 0x30, 0x13, + 0x00, 0x01, 0x30, 0x25, 0x00, 0x01, 0x30, 0x37, 0x00, 0x01, 0x30, 0x49, + 0x00, 0x01, 0x30, 0x5B, 0x00, 0x01, 0x30, 0x6D, 0x00, 0x01, 0x30, 0x7F, + 0x00, 0x01, 0x30, 0x91, 0x00, 0x01, 0x30, 0xA3, 0x00, 0x01, 0x30, 0xB5, + 0x00, 0x01, 0x30, 0xC7, 0x00, 0x01, 0x30, 0xF3, 0x00, 0x01, 0x31, 0x0F, + 0x00, 0x01, 0x31, 0x21, 0x00, 0x01, 0x31, 0x33, 0x00, 0x01, 0x31, 0x4D, + 0x00, 0x01, 0x31, 0x6F, 0x00, 0x01, 0x31, 0x91, 0x00, 0x01, 0x31, 0xB3, + 0x00, 0x01, 0x31, 0xD5, 0x00, 0x01, 0x31, 0xF7, 0x00, 0x01, 0x32, 0x19, + 0x00, 0x01, 0x32, 0x3B, 0x00, 0x01, 0x32, 0x5D, 0x00, 0x01, 0x32, 0x7F, + 0x00, 0x01, 0x32, 0xA1, 0x00, 0x01, 0x32, 0xC3, 0x00, 0x01, 0x32, 0xE5, + 0x00, 0x01, 0x33, 0x07, 0x00, 0x01, 0x33, 0x29, 0x00, 0x01, 0x33, 0x4B, + 0x00, 0x01, 0x33, 0x6D, 0x00, 0x01, 0x33, 0x8F, 0x00, 0x01, 0x33, 0xB1, + 0x00, 0x01, 0x33, 0xDB, 0x00, 0x01, 0x34, 0xA1, 0x00, 0x01, 0x35, 0xBA, + 0x00, 0x01, 0x37, 0x26, 0x00, 0x01, 0x37, 0x46, 0x00, 0x01, 0x37, 0x66, + 0x00, 0x01, 0x37, 0x86, 0x00, 0x01, 0x37, 0xA6, 0x00, 0x01, 0x37, 0xC6, + 0x00, 0x01, 0x37, 0xD6, 0x00, 0x01, 0x37, 0xFF, 0x00, 0x01, 0x38, 0x0F, + 0x00, 0x01, 0x38, 0x1F, 0x00, 0x01, 0x38, 0x2F, 0x00, 0x01, 0x38, 0x9A, + 0x00, 0x01, 0x38, 0xAA, 0x00, 0x01, 0x38, 0xBA, 0x00, 0x01, 0x38, 0xCA, + 0x00, 0x01, 0x38, 0xDA, 0x00, 0x01, 0x38, 0xEA, 0x00, 0x01, 0x38, 0xFA, + 0x00, 0x01, 0x39, 0x0A, 0x00, 0x01, 0x39, 0x1A, 0x00, 0x01, 0x39, 0x75, + 0x00, 0x01, 0x39, 0x85, 0x00, 0x01, 0x39, 0x95, 0x00, 0x01, 0x39, 0xB1, + 0x00, 0x01, 0x39, 0xCD, 0x00, 0x01, 0x39, 0xEA, 0x00, 0x01, 0x3A, 0x16, + 0x00, 0x01, 0x3A, 0x30, 0x00, 0x01, 0x3A, 0x7D, 0x00, 0x01, 0x3A, 0x8F, + 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, + 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, + 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, + 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, + 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, + 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3A, 0xB8, 0x00, 0x01, 0x3B, 0x4C, + 0x00, 0x01, 0x3B, 0x64, 0x00, 0x01, 0x3B, 0x7C, 0x00, 0x01, 0x3B, 0x8C, + 0x00, 0x01, 0x3B, 0xA4, 0x00, 0x01, 0x3B, 0xBC, 0x00, 0x01, 0x3C, 0x32, + 0x00, 0x01, 0x3C, 0x92, 0x00, 0x01, 0x3C, 0xF2, 0x00, 0x01, 0x3D, 0x23, + 0x00, 0x01, 0x3D, 0x69, 0x00, 0x01, 0x3D, 0xAF, 0x00, 0x01, 0x3E, 0x0D, + 0x00, 0x01, 0x3E, 0x6B, 0x00, 0x01, 0x3E, 0x9A, 0x00, 0x01, 0x3E, 0xDF, + 0x00, 0x01, 0x3F, 0x24, 0x00, 0x01, 0x3F, 0x83, 0x00, 0x01, 0x3F, 0xE2, + 0x00, 0x01, 0x40, 0x43, 0x00, 0x01, 0x40, 0xA2, 0x00, 0x01, 0x41, 0x49, + 0x00, 0x01, 0x41, 0xF0, 0x00, 0x01, 0x42, 0x52, 0x00, 0x01, 0x42, 0xB4, + 0x00, 0x01, 0x43, 0x14, 0x00, 0x01, 0x43, 0x74, 0x00, 0x01, 0x43, 0xE1, + 0x00, 0x01, 0x44, 0x87, 0x00, 0x01, 0x45, 0x13, 0x00, 0x01, 0x45, 0x9D, + 0x00, 0x01, 0x45, 0xAD, 0x00, 0x01, 0x45, 0xBD, 0x00, 0x01, 0x45, 0xCD, + 0x00, 0x01, 0x45, 0xDD, 0x00, 0x01, 0x45, 0xED, 0x00, 0x01, 0x45, 0xFD, + 0x00, 0x01, 0x46, 0x0D, 0x00, 0x01, 0x46, 0x1D, 0x00, 0x01, 0x46, 0x2D, + 0x00, 0x01, 0x46, 0x3D, 0x00, 0x01, 0x46, 0x4D, 0x00, 0x01, 0x46, 0x5D, + 0x00, 0x01, 0x46, 0x6D, 0x00, 0x01, 0x46, 0x7D, 0x00, 0x01, 0x46, 0x8F, + 0x00, 0x01, 0x46, 0xA1, 0x00, 0x01, 0x46, 0xB3, 0x00, 0x01, 0x46, 0xC5, + 0x00, 0x01, 0x46, 0xEC, 0x00, 0x01, 0x47, 0x1C, 0x00, 0x01, 0x47, 0x36, + 0x00, 0x01, 0x47, 0x50, 0x00, 0x01, 0x47, 0x6C, 0x00, 0x01, 0x47, 0x85, + 0x00, 0x01, 0x47, 0xAE, 0x00, 0x01, 0x47, 0xD6, 0x00, 0x01, 0x48, 0x00, + 0x00, 0x01, 0x48, 0x28, 0x00, 0x01, 0x48, 0x71, 0x00, 0x01, 0x48, 0xBD, + 0x00, 0x01, 0x49, 0x3C, 0x00, 0x01, 0x49, 0x55, 0x00, 0x01, 0x49, 0x7D, + 0x00, 0x01, 0x49, 0xD9, 0x00, 0x01, 0x4A, 0x44, 0x00, 0x01, 0x4A, 0xB0, + 0x00, 0x01, 0x4A, 0xD0, 0x00, 0x01, 0x4B, 0x26, 0x00, 0x01, 0x4B, 0x58, + 0x00, 0x01, 0x4B, 0xF0, 0x00, 0x01, 0x4C, 0xD6, 0x00, 0x01, 0x4D, 0x91, + 0x00, 0x01, 0x4E, 0x20, 0x00, 0x01, 0x4E, 0x6D, 0x00, 0x01, 0x4E, 0x7D, + 0x00, 0x01, 0x4E, 0xB5, 0x00, 0x01, 0x4F, 0x15, 0x00, 0x01, 0x4F, 0x3D, + 0x00, 0x01, 0x4F, 0x7C, 0x00, 0x01, 0x4F, 0xDD, 0x00, 0x01, 0x51, 0x27, + 0x00, 0x01, 0x51, 0x4F, 0x00, 0x01, 0x51, 0x84, 0x00, 0x01, 0x51, 0xAC, + 0x00, 0x01, 0x52, 0x4E, 0x00, 0x01, 0x52, 0x85, 0x00, 0x01, 0x52, 0xB8, + 0x00, 0x01, 0x53, 0x3B, 0x00, 0x01, 0x53, 0xB1, 0x00, 0x01, 0x54, 0x23, + 0x00, 0x01, 0x54, 0x7A, 0x00, 0x01, 0x54, 0xD5, 0x00, 0x01, 0x55, 0x22, + 0x00, 0x01, 0x55, 0x4C, 0x00, 0x01, 0x55, 0x8F, 0x00, 0x01, 0x55, 0xC4, + 0x00, 0x01, 0x55, 0xF7, 0x00, 0x01, 0x56, 0x2E, 0x00, 0x01, 0x56, 0x65, + 0x00, 0x01, 0x56, 0x9C, 0x00, 0x01, 0x56, 0xD4, 0x00, 0x01, 0x57, 0x0B, + 0x00, 0x01, 0x57, 0x51, 0x00, 0x01, 0x57, 0x95, 0x00, 0x01, 0x57, 0xFE, + 0x00, 0x01, 0x58, 0xBA, 0x00, 0x01, 0x59, 0x1F, 0x00, 0x01, 0x59, 0x2F, + 0x00, 0x01, 0x59, 0x3F, 0x00, 0x01, 0x59, 0x57, 0x00, 0x01, 0x59, 0x6F, + 0x00, 0x01, 0x59, 0x87, 0x00, 0x01, 0x59, 0x9F, 0x00, 0x01, 0x59, 0xB7, + 0x00, 0x01, 0x59, 0xCF, 0x00, 0x01, 0x59, 0xE7, 0x00, 0x01, 0x59, 0xFF, + 0x00, 0x01, 0x5A, 0x17, 0x00, 0x01, 0x5A, 0x2F, 0x00, 0x01, 0x5A, 0x47, + 0x00, 0x01, 0x5A, 0x5F, 0x00, 0x01, 0x5A, 0x77, 0x00, 0x01, 0x5A, 0x8F, + 0x00, 0x01, 0x5A, 0xA7, 0x00, 0x01, 0x5A, 0xBF, 0x00, 0x01, 0x5A, 0xD7, + 0x00, 0x01, 0x5A, 0xEF, 0x00, 0x01, 0x5B, 0x07, 0x00, 0x01, 0x5B, 0x1F, + 0x00, 0x01, 0x5B, 0x37, 0x00, 0x01, 0x5B, 0x4F, 0x00, 0x01, 0x5B, 0x67, + 0x00, 0x01, 0x5B, 0x7F, 0x00, 0x01, 0x5B, 0x97, 0x00, 0x01, 0x5B, 0xAF, + 0x00, 0x01, 0x5B, 0xC7, 0x00, 0x01, 0x5B, 0xDF, 0x00, 0x01, 0x5B, 0xF7, + 0x00, 0x01, 0x5C, 0x0F, 0x00, 0x01, 0x5C, 0x27, 0x00, 0x01, 0x5C, 0x3F, + 0x00, 0x01, 0x5C, 0x57, 0x00, 0x01, 0x5C, 0x6F, 0x00, 0x01, 0x5C, 0x87, + 0x00, 0x01, 0x5C, 0x9F, 0x00, 0x01, 0x5C, 0xB7, 0x00, 0x01, 0x5C, 0xCF, + 0x00, 0x01, 0x5C, 0xE7, 0x00, 0x01, 0x5C, 0xFF, 0x00, 0x01, 0x5D, 0x17, + 0x00, 0x01, 0x5D, 0x2F, 0x00, 0x01, 0x5D, 0x47, 0x00, 0x01, 0x5D, 0x5F, + 0x00, 0x01, 0x5D, 0x77, 0x00, 0x01, 0x5D, 0x8F, 0x00, 0x01, 0x5D, 0xA7, + 0x00, 0x01, 0x5D, 0xBF, 0x00, 0x01, 0x5D, 0xD7, 0x00, 0x01, 0x5E, 0xAF, + 0x00, 0x01, 0x5E, 0xC7, 0x00, 0x01, 0x5F, 0x94, 0x00, 0x01, 0x5F, 0xAC, + 0x00, 0x01, 0x5F, 0xC4, 0x00, 0x01, 0x5F, 0xDC, 0x00, 0x01, 0x5F, 0xF4, + 0x00, 0x01, 0x60, 0x0C, 0x00, 0x01, 0x60, 0x24, 0x00, 0x01, 0x60, 0x3C, + 0x00, 0x01, 0x60, 0x54, 0x00, 0x01, 0x60, 0x6C, 0x00, 0x01, 0x60, 0x84, + 0x00, 0x01, 0x60, 0x9C, 0x00, 0x01, 0x60, 0xB4, 0x00, 0x01, 0x60, 0xCC, + 0x00, 0x01, 0x60, 0xE4, 0x00, 0x01, 0x60, 0xFC, 0x00, 0x01, 0x61, 0x14, + 0x00, 0x01, 0x61, 0x2C, 0x00, 0x01, 0x61, 0x44, 0x00, 0x01, 0x61, 0x5C, + 0x00, 0x01, 0x61, 0x74, 0x00, 0x01, 0x61, 0x8C, 0x00, 0x01, 0x61, 0xA4, + 0x00, 0x01, 0x61, 0xBC, 0x00, 0x01, 0x61, 0xD4, 0x00, 0x01, 0x61, 0xEC, + 0x00, 0x01, 0x62, 0x04, 0x00, 0x01, 0x62, 0x1C, 0x00, 0x01, 0x62, 0x34, + 0x00, 0x01, 0x62, 0x4C, 0x00, 0x01, 0x62, 0x64, 0x00, 0x01, 0x62, 0x7C, + 0x00, 0x01, 0x62, 0x94, 0x00, 0x01, 0x62, 0xAC, 0x00, 0x01, 0x62, 0xC4, + 0x00, 0x01, 0x62, 0xDC, 0x00, 0x01, 0x62, 0xF4, 0x00, 0x01, 0x63, 0x0C, + 0x00, 0x01, 0x63, 0x24, 0x00, 0x01, 0x63, 0x3C, 0x00, 0x01, 0x63, 0x54, + 0x00, 0x01, 0x63, 0x6C, 0x00, 0x01, 0x63, 0x84, 0x00, 0x01, 0x63, 0x9C, + 0x00, 0x01, 0x63, 0xB4, 0x00, 0x01, 0x63, 0xCC, 0x00, 0x01, 0x63, 0xE4, + 0x00, 0x01, 0x63, 0xFC, 0x00, 0x01, 0x64, 0x14, 0x00, 0x01, 0x64, 0x2C, + 0x00, 0x01, 0x64, 0x44, 0x00, 0x01, 0x64, 0x5C, 0x00, 0x01, 0x64, 0x74, + 0x00, 0x01, 0x64, 0x8C, 0x00, 0x01, 0x64, 0xA4, 0x00, 0x01, 0x64, 0xBC, + 0x00, 0x01, 0x64, 0xD4, 0x00, 0x01, 0x64, 0xEC, 0x00, 0x01, 0x65, 0x04, + 0x00, 0x01, 0x65, 0x1C, 0x00, 0x01, 0x65, 0x9D, 0x00, 0x01, 0x65, 0xB5, + 0x00, 0x01, 0x66, 0x2B, 0x00, 0x01, 0x66, 0x43, 0x00, 0x01, 0x66, 0x5B, + 0x00, 0x01, 0x66, 0x73, 0x00, 0x01, 0x66, 0x8B, 0x00, 0x01, 0x66, 0xA3, + 0x00, 0x01, 0x66, 0xBB, 0x00, 0x01, 0x66, 0xD3, 0x00, 0x01, 0x66, 0xEB, + 0x00, 0x01, 0x67, 0x03, 0x00, 0x01, 0x67, 0x1B, 0x00, 0x01, 0x67, 0x33, + 0x00, 0x01, 0x67, 0x4B, 0x00, 0x01, 0x67, 0x63, 0x00, 0x01, 0x67, 0x7B, + 0x00, 0x01, 0x67, 0x93, 0x00, 0x01, 0x67, 0xAB, 0x00, 0x01, 0x67, 0xC3, + 0x00, 0x01, 0x67, 0xD9, 0x00, 0x01, 0x67, 0xEF, 0x00, 0x01, 0x68, 0x07, + 0x00, 0x01, 0x68, 0x1D, 0x00, 0x01, 0x68, 0x35, 0x00, 0x01, 0x68, 0x4D, + 0x00, 0x01, 0x68, 0x63, 0x00, 0x01, 0x68, 0xA9, 0x00, 0x01, 0x68, 0xBB, + 0x00, 0x01, 0x68, 0xD5, 0x00, 0x01, 0x69, 0x41, 0x00, 0x01, 0x69, 0x59, + 0x00, 0x01, 0x69, 0x71, 0x00, 0x01, 0x69, 0xBD, 0x00, 0x01, 0x6A, 0x08, + 0x00, 0x01, 0x6A, 0x54, 0x00, 0x01, 0x6A, 0xDF, 0x00, 0x01, 0x6A, 0xF1, + 0x00, 0x01, 0x6B, 0x0B, 0x00, 0x01, 0x6B, 0x2B, 0x00, 0x01, 0x6B, 0x4B, + 0x00, 0x01, 0x6B, 0x63, 0x00, 0x01, 0x6B, 0x7B, 0x00, 0x01, 0x6B, 0x93, + 0x00, 0x01, 0x6B, 0xAB, 0x00, 0x01, 0x6B, 0xC3, 0x00, 0x01, 0x6B, 0xDB, + 0x00, 0x01, 0x6B, 0xF3, 0x00, 0x01, 0x6C, 0x0B, 0x00, 0x01, 0x6C, 0x23, + 0x00, 0x01, 0x6C, 0x43, 0x00, 0x01, 0x6C, 0x5B, 0x00, 0x01, 0x6C, 0x73, + 0x00, 0x01, 0x6C, 0x8B, 0x00, 0x01, 0x6C, 0xA3, 0x00, 0x01, 0x6C, 0xBB, + 0x00, 0x01, 0x6C, 0xD3, 0x00, 0x01, 0x6C, 0xEB, 0x00, 0x01, 0x6D, 0x03, + 0x00, 0x01, 0x6D, 0x1B, 0x00, 0x01, 0x6D, 0x33, 0x00, 0x01, 0x6D, 0x4B, + 0x00, 0x01, 0x6D, 0x63, 0x00, 0x01, 0x6D, 0x7B, 0x00, 0x01, 0x6D, 0x93, + 0x00, 0x01, 0x6D, 0xB3, 0x00, 0x01, 0x6D, 0xCB, 0x00, 0x01, 0x6D, 0xE3, + 0x00, 0x01, 0x6D, 0xFB, 0x00, 0x01, 0x6E, 0x13, 0x00, 0x01, 0x6E, 0x33, + 0x00, 0x01, 0x6E, 0x4B, 0x00, 0x01, 0x6E, 0x63, 0x00, 0x01, 0x6E, 0x7B, + 0x00, 0x01, 0x6E, 0x93, 0x00, 0x01, 0x6E, 0xAB, 0x00, 0x01, 0x6E, 0xC3, + 0x00, 0x01, 0x6E, 0xDB, 0x00, 0x01, 0x6E, 0xF3, 0x00, 0x01, 0x6F, 0x0B, + 0x00, 0x01, 0x6F, 0x2B, 0x00, 0x01, 0x6F, 0x43, 0x00, 0x01, 0x6F, 0x5B, + 0x00, 0x01, 0x6F, 0x73, 0x00, 0x01, 0x6F, 0x93, 0x00, 0x01, 0x6F, 0xAB, + 0x00, 0x01, 0x6F, 0xC3, 0x00, 0x01, 0x6F, 0xDB, 0x00, 0x01, 0x6F, 0xF3, + 0x00, 0x01, 0x70, 0x0B, 0x00, 0x01, 0x70, 0x23, 0x00, 0x01, 0x70, 0x3B, + 0x00, 0x01, 0x70, 0x53, 0x00, 0x01, 0x70, 0x6B, 0x00, 0x01, 0x70, 0x83, + 0x00, 0x01, 0x70, 0x9B, 0x00, 0x01, 0x70, 0xB3, 0x00, 0x01, 0x70, 0xCB, + 0x00, 0x01, 0x70, 0xE3, 0x00, 0x01, 0x70, 0xFB, 0x00, 0x01, 0x71, 0x13, + 0x00, 0x01, 0x71, 0x2B, 0x00, 0x01, 0x71, 0x43, 0x00, 0x01, 0x71, 0x5B, + 0x00, 0x01, 0x71, 0x73, 0x00, 0x01, 0x71, 0x8B, 0x00, 0x01, 0x71, 0xA3, + 0x00, 0x01, 0x71, 0xBB, 0x00, 0x01, 0x71, 0xD3, 0x00, 0x01, 0x71, 0xEB, + 0x00, 0x01, 0x72, 0x03, 0x00, 0x01, 0x72, 0x1B, 0x00, 0x01, 0x72, 0x3B, + 0x00, 0x01, 0x72, 0x5B, 0x00, 0x01, 0x72, 0x71, 0x00, 0x01, 0x72, 0x87, + 0x00, 0x01, 0x72, 0x9F, 0x00, 0x01, 0x72, 0xB7, 0x00, 0x01, 0x72, 0xCF, + 0x00, 0x01, 0x72, 0xE7, 0x00, 0x01, 0x72, 0xFF, 0x00, 0x01, 0x73, 0x17, + 0x00, 0x01, 0x73, 0x2F, 0x00, 0x01, 0x73, 0x4F, 0x00, 0x01, 0x73, 0x65, + 0x00, 0x01, 0x73, 0x7D, 0x00, 0x01, 0x73, 0x95, 0x00, 0x01, 0x73, 0xAD, + 0x00, 0x01, 0x73, 0xC5, 0x00, 0x01, 0x73, 0xDD, 0x00, 0x01, 0x73, 0xF5, + 0x00, 0x01, 0x74, 0x0D, 0x00, 0x01, 0x74, 0x23, 0x00, 0x01, 0x74, 0x3B, + 0x00, 0x01, 0x74, 0x53, 0x00, 0x01, 0x74, 0x71, 0x00, 0x01, 0x74, 0x8D, + 0x00, 0x01, 0x74, 0xA3, 0x00, 0x01, 0x74, 0xC1, 0x00, 0x01, 0x74, 0xD9, + 0x00, 0x01, 0x74, 0xF1, 0x00, 0x01, 0x75, 0x09, 0x00, 0x01, 0x75, 0x29, + 0x00, 0x01, 0x75, 0x41, 0x00, 0x01, 0x75, 0x59, 0x00, 0x01, 0x75, 0x71, + 0x00, 0x01, 0x75, 0x89, 0x00, 0x01, 0x75, 0xA9, 0x00, 0x01, 0x75, 0xBF, + 0x00, 0x01, 0x75, 0xD5, 0x00, 0x01, 0x75, 0xED, 0x00, 0x01, 0x76, 0x05, + 0x00, 0x01, 0x76, 0x1D, 0x00, 0x01, 0x76, 0x33, 0x00, 0x01, 0x76, 0x4B, + 0x00, 0x01, 0x76, 0x63, 0x00, 0x01, 0x76, 0x7B, 0x00, 0x01, 0x76, 0x99, + 0x00, 0x01, 0x76, 0xB1, 0x00, 0x01, 0x76, 0xC9, 0x00, 0x01, 0x76, 0xE1, + 0x00, 0x01, 0x76, 0xF9, 0x00, 0x01, 0x77, 0x19, 0x00, 0x01, 0x77, 0x31, + 0x00, 0x01, 0x77, 0x49, 0x00, 0x01, 0x77, 0x61, 0x00, 0x01, 0x77, 0x77, + 0x00, 0x01, 0x77, 0x8D, 0x00, 0x01, 0x77, 0xA5, 0x00, 0x01, 0x77, 0xBB, + 0x00, 0x01, 0x77, 0xD1, 0x00, 0x01, 0x77, 0xE7, 0x00, 0x01, 0x77, 0xFF, + 0x00, 0x01, 0x78, 0x17, 0x00, 0x01, 0x78, 0x2F, 0x00, 0x01, 0x78, 0x47, + 0x00, 0x01, 0x78, 0x5F, 0x00, 0x01, 0x78, 0x77, 0x00, 0x01, 0x78, 0x8F, + 0x00, 0x01, 0x78, 0xA5, 0x00, 0x01, 0x78, 0xBD, 0x00, 0x01, 0x78, 0xD3, + 0x00, 0x01, 0x78, 0xEB, 0x00, 0x01, 0x79, 0x03, 0x00, 0x01, 0x79, 0x1B, + 0x00, 0x01, 0x79, 0x33, 0x00, 0x01, 0x79, 0x53, 0x00, 0x01, 0x79, 0x73, + 0x00, 0x01, 0x79, 0x89, 0x00, 0x01, 0x79, 0x9F, 0x00, 0x01, 0x79, 0xB7, + 0x00, 0x01, 0x79, 0xCF, 0x00, 0x01, 0x79, 0xE7, 0x00, 0x01, 0x79, 0xFF, + 0x00, 0x01, 0x7A, 0x17, 0x00, 0x01, 0x7A, 0x2F, 0x00, 0x01, 0x7A, 0x4F, + 0x00, 0x01, 0x7A, 0x67, 0x00, 0x01, 0x7A, 0x7F, 0x00, 0x01, 0x7A, 0x97, + 0x00, 0x01, 0x7A, 0xAD, 0x00, 0x01, 0x7A, 0xC3, 0x00, 0x01, 0x7A, 0xDB, + 0x00, 0x01, 0x7A, 0xF1, 0x00, 0x01, 0x7B, 0x07, 0x00, 0x01, 0x7B, 0x1D, + 0x00, 0x01, 0x7B, 0x35, 0x00, 0x01, 0x7B, 0x4D, 0x00, 0x01, 0x7B, 0x65, + 0x00, 0x01, 0x7B, 0x7D, 0x00, 0x01, 0x7B, 0x95, 0x00, 0x01, 0x7B, 0xAD, + 0x00, 0x01, 0x7B, 0xC5, 0x00, 0x01, 0x7B, 0xDD, 0x00, 0x01, 0x7B, 0xF5, + 0x00, 0x01, 0x7C, 0x0D, 0x00, 0x01, 0x7C, 0x25, 0x00, 0x01, 0x7C, 0x3D, + 0x00, 0x01, 0x7C, 0x55, 0x00, 0x01, 0x7C, 0x75, 0x00, 0x01, 0x7C, 0x8D, + 0x00, 0x01, 0x7C, 0xA3, 0x00, 0x01, 0x7C, 0xBB, 0x00, 0x01, 0x7C, 0xD1, + 0x00, 0x01, 0x7C, 0xE7, 0x00, 0x01, 0x7D, 0x03, 0x00, 0x01, 0x7D, 0x19, + 0x00, 0x01, 0x7D, 0x2F, 0x00, 0x01, 0x7D, 0x4F, 0x00, 0x01, 0x7D, 0x67, + 0x00, 0x01, 0x7D, 0x7F, 0x00, 0x01, 0x7D, 0x95, 0x00, 0x01, 0x7D, 0xAB, + 0x00, 0x01, 0x7D, 0xC3, 0x00, 0x01, 0x7D, 0xDB, 0x00, 0x01, 0x7D, 0xF1, + 0x00, 0x01, 0x7E, 0x07, 0x00, 0x01, 0x7E, 0x1F, 0x00, 0x01, 0x7E, 0x31, + 0x00, 0x01, 0x7E, 0x47, 0x00, 0x01, 0x7E, 0x79, 0x00, 0x01, 0x7E, 0x91, + 0x00, 0x01, 0x7E, 0xA9, 0x00, 0x01, 0x7E, 0xC9, 0x00, 0x01, 0x7E, 0xF1, + 0x00, 0x01, 0x7F, 0x64, 0x00, 0x01, 0x7F, 0x76, 0x00, 0x01, 0x7F, 0xB4, + 0x00, 0x01, 0x7F, 0xCC, 0x00, 0x01, 0x7F, 0xE6, 0x00, 0x01, 0x7F, 0xF6, + 0x00, 0x01, 0x80, 0x06, 0x00, 0x01, 0x80, 0x1E, 0x00, 0x01, 0x80, 0x36, + 0x00, 0x01, 0x80, 0x50, 0x00, 0x01, 0x80, 0x6A, 0x00, 0x01, 0x80, 0x9E, + 0x00, 0x01, 0x80, 0xD1, 0x00, 0x01, 0x80, 0xE1, 0x00, 0x01, 0x81, 0x43, + 0x00, 0x01, 0x81, 0x66, 0x00, 0x01, 0x81, 0x7E, 0x00, 0x01, 0x81, 0x8E, + 0x00, 0x01, 0x81, 0xB8, 0x00, 0x01, 0x81, 0xDA, 0x00, 0x01, 0x81, 0xFC, + 0x00, 0x01, 0x82, 0x0C, 0x00, 0x01, 0x82, 0x1C, 0x00, 0x01, 0x82, 0x49, + 0x00, 0x01, 0x82, 0x61, 0x00, 0x01, 0x82, 0x79, 0x00, 0x01, 0x82, 0x8B, + 0x00, 0x01, 0x82, 0x9B, 0x00, 0x01, 0x82, 0xAB, 0x00, 0x01, 0x82, 0xBD, + 0x00, 0x01, 0x82, 0xE7, 0x00, 0x01, 0x83, 0x1B, 0x00, 0x01, 0x83, 0x2D, + 0x00, 0x01, 0x83, 0x61, 0x00, 0x01, 0x83, 0x73, 0x00, 0x01, 0x83, 0xB2, + 0x00, 0x01, 0x83, 0xC4, 0x00, 0x01, 0x83, 0xF8, 0x00, 0x01, 0x84, 0x0A, + 0x00, 0x01, 0x84, 0x3A, 0x00, 0x01, 0x84, 0x4C, 0x00, 0x01, 0x84, 0x5E, + 0x00, 0x01, 0x84, 0x8D, 0x00, 0x01, 0x84, 0xF1, 0x00, 0x01, 0x85, 0x01, + 0x00, 0x01, 0x85, 0x19, 0x00, 0x01, 0x85, 0x31, 0x00, 0x01, 0x85, 0x49, + 0x00, 0x01, 0x85, 0x61, 0x00, 0x01, 0x85, 0x79, 0x00, 0x01, 0x85, 0x91, + 0x00, 0x01, 0x85, 0xA9, 0x00, 0x01, 0x85, 0xC1, 0x00, 0x01, 0x85, 0xD7, + 0x00, 0x01, 0x85, 0xED, 0x00, 0x01, 0x86, 0x05, 0x00, 0x01, 0x86, 0x1B, + 0x00, 0x01, 0x86, 0x33, 0x00, 0x01, 0x86, 0x4B, 0x00, 0x01, 0x86, 0x61, + 0x00, 0x01, 0x86, 0x92, 0x00, 0x01, 0x86, 0xA2, 0x00, 0x01, 0x86, 0xBA, + 0x00, 0x01, 0x86, 0xD2, 0x00, 0x01, 0x86, 0xEC, 0x00, 0x01, 0x87, 0x1F, + 0x00, 0x01, 0x87, 0x31, 0x00, 0x01, 0x87, 0x64, 0x00, 0x01, 0x87, 0x7C, + 0x00, 0x01, 0x87, 0xCE, 0x00, 0x01, 0x87, 0xE6, 0x00, 0x01, 0x87, 0xFC, + 0x00, 0x01, 0x88, 0x50, 0x00, 0x01, 0x88, 0x66, 0x00, 0x01, 0x88, 0xFB, + 0x00, 0x01, 0x89, 0x0B, 0x00, 0x01, 0x89, 0x85, 0x00, 0x01, 0x89, 0xF3, + 0x00, 0x01, 0x8A, 0x0B, 0x00, 0x01, 0x8A, 0x7C, 0x00, 0x01, 0x8B, 0x0C, + 0x00, 0x01, 0x8B, 0x24, 0x00, 0x01, 0x8B, 0x3C, 0x00, 0x01, 0x8B, 0x54, + 0x00, 0x01, 0x8B, 0x6C, 0x00, 0x01, 0x8C, 0x0B, 0x00, 0x01, 0x8C, 0x23, + 0x00, 0x01, 0x8C, 0x7D, 0x00, 0x01, 0x8C, 0xDE, 0x00, 0x01, 0x8D, 0x51, + 0x00, 0x01, 0x8D, 0xDE, 0x00, 0x01, 0x8E, 0x52, 0x00, 0x01, 0x8E, 0xA0, + 0x00, 0x01, 0x8F, 0x59, 0x00, 0x01, 0x8F, 0xBD, 0x00, 0x01, 0x8F, 0xF3, + 0x00, 0x01, 0x90, 0x0B, 0x00, 0x01, 0x90, 0x7F, 0x00, 0x01, 0x91, 0x09, + 0x00, 0x01, 0x91, 0x8E, 0x00, 0x01, 0x91, 0x9E, 0x00, 0x01, 0x92, 0x11, + 0x00, 0x01, 0x92, 0xC2, 0x00, 0x01, 0x93, 0x2A, 0x00, 0x01, 0x93, 0xC7, + 0x00, 0x01, 0x94, 0x33, 0x00, 0x01, 0x94, 0x43, 0x00, 0x01, 0x94, 0xC5, + 0x00, 0x01, 0x95, 0x49, 0x00, 0x01, 0x95, 0x59, 0x00, 0x01, 0x96, 0x07, + 0x00, 0x01, 0x96, 0x19, 0x00, 0x01, 0x96, 0x33, 0x00, 0x01, 0x96, 0xD1, + 0x00, 0x01, 0x97, 0x3E, 0x00, 0x01, 0x97, 0xD8, 0x00, 0x01, 0x98, 0x63, + 0x00, 0x01, 0x98, 0xBC, 0x00, 0x01, 0x98, 0xCC, 0x00, 0x01, 0x99, 0x31, + 0x00, 0x01, 0x99, 0xA2, 0x00, 0x01, 0x9A, 0x0F, 0x00, 0x01, 0x9A, 0x27, + 0x00, 0x01, 0x9A, 0x8E, 0x00, 0x01, 0x9A, 0xF6, 0x00, 0x01, 0x9B, 0x6C, + 0x00, 0x01, 0x9B, 0x84, 0x00, 0x01, 0x9B, 0xC9, 0x00, 0x01, 0x9C, 0x5D, + 0x00, 0x01, 0x9C, 0xD1, 0x00, 0x01, 0x9D, 0x5D, 0x00, 0x01, 0x9D, 0xFC, + 0x00, 0x01, 0x9E, 0x63, 0x00, 0x01, 0x9E, 0xE4, 0x00, 0x01, 0x9F, 0x2F, + 0x00, 0x01, 0x9F, 0xD4, 0x00, 0x01, 0xA0, 0x44, 0x00, 0x01, 0xA0, 0xBE, + 0x00, 0x01, 0xA1, 0x15, 0x00, 0x01, 0xA1, 0xAD, 0x00, 0x01, 0xA2, 0x66, + 0x00, 0x01, 0xA3, 0x41, 0x00, 0x01, 0xA4, 0x20, 0x00, 0x01, 0xA4, 0x74, + 0x00, 0x01, 0xA4, 0x84, 0x00, 0x01, 0xA4, 0xCD, 0x00, 0x01, 0xA5, 0x7C, + 0x00, 0x01, 0xA5, 0xC0, 0x00, 0x01, 0xA5, 0xD0, 0x00, 0x01, 0xA6, 0x05, + 0x00, 0x01, 0xA6, 0x79, 0x00, 0x01, 0xA6, 0xFD, 0x00, 0x01, 0xA7, 0x64, + 0x00, 0x01, 0xA8, 0x04, 0x00, 0x01, 0xA8, 0x75, 0x00, 0x01, 0xA8, 0xE5, + 0x00, 0x01, 0xA9, 0x2E, 0x00, 0x01, 0xA9, 0x63, 0x00, 0x01, 0xA9, 0xE8, + 0x00, 0x01, 0xAA, 0x0C, 0x00, 0x01, 0xAA, 0x73, 0x00, 0x01, 0xAA, 0x83, + 0x00, 0x01, 0xAA, 0x9E, 0x00, 0x01, 0xAA, 0xB6, 0x00, 0x01, 0xAA, 0xD6, + 0x00, 0x01, 0xAB, 0x30, 0x00, 0x01, 0xAB, 0x86, 0x00, 0x01, 0xAB, 0xEE, + 0x00, 0x01, 0xAC, 0x5E, 0x00, 0x01, 0xAC, 0xA3, 0x00, 0x01, 0xAC, 0xC3, + 0x00, 0x01, 0xAC, 0xDB, 0x00, 0x01, 0xAC, 0xF3, 0x00, 0x01, 0xAD, 0x09, + 0x00, 0x01, 0xAD, 0x21, 0x00, 0x01, 0xAD, 0x31, 0x00, 0x01, 0xAD, 0x41, + 0x00, 0x01, 0xAD, 0x51, 0x00, 0x01, 0xAD, 0x61, 0x00, 0x01, 0xAD, 0x79, + 0x00, 0x01, 0xAD, 0x89, 0x00, 0x01, 0xAD, 0xF1, 0x00, 0x01, 0xAE, 0x09, + 0x00, 0x01, 0xAE, 0x99, 0x00, 0x01, 0xAE, 0xF7, 0x00, 0x01, 0xAF, 0x65, + 0x00, 0x01, 0xAF, 0xEE, 0x00, 0x01, 0xB0, 0x93, 0x00, 0x01, 0xB1, 0x48, + 0x00, 0x01, 0xB1, 0x58, 0x00, 0x01, 0xB1, 0x70, 0x00, 0x01, 0xB1, 0x88, + 0x00, 0x01, 0xB1, 0xA0, 0x00, 0x01, 0xB1, 0xB8, 0x00, 0x01, 0xB1, 0xD0, + 0x00, 0x01, 0xB1, 0xE0, 0x00, 0x01, 0xB1, 0xF8, 0x00, 0x01, 0xB2, 0x10, + 0x00, 0x01, 0xB2, 0x20, 0x00, 0x01, 0xB2, 0x38, 0x00, 0x01, 0xB2, 0x50, + 0x00, 0x01, 0xB2, 0x68, 0x00, 0x01, 0xB2, 0x80, 0x00, 0x01, 0xB2, 0x98, + 0x00, 0x01, 0xB2, 0xB0, 0x00, 0x01, 0xB2, 0xC8, 0x00, 0x01, 0xB2, 0xE0, + 0x00, 0x01, 0xB3, 0x00, 0x00, 0x01, 0xB3, 0x80, 0x00, 0x01, 0xB3, 0xFD, + 0x00, 0x01, 0xB4, 0x15, 0x00, 0x01, 0xB4, 0x2D, 0x00, 0x01, 0xB4, 0x45, + 0x00, 0x01, 0xB4, 0x5D, 0x00, 0x01, 0xB4, 0x75, 0x00, 0x01, 0xB4, 0x8D, + 0x00, 0x01, 0xB4, 0xA5, 0x00, 0x01, 0xB5, 0x14, 0x00, 0x01, 0xB5, 0x94, + 0x00, 0x01, 0xB5, 0xF7, 0x00, 0x01, 0xB6, 0x75, 0x00, 0x01, 0xB6, 0xFA, + 0x00, 0x01, 0xB7, 0xA4, 0x00, 0x01, 0xB8, 0x55, 0x00, 0x01, 0xB8, 0x65, + 0x00, 0x01, 0xB8, 0x7B, 0x00, 0x01, 0xB8, 0x93, 0x00, 0x01, 0xB8, 0xAB, + 0x00, 0x01, 0xB8, 0xC3, 0x00, 0x01, 0xB8, 0xD3, 0x00, 0x01, 0xB8, 0xEB, + 0x00, 0x01, 0xB9, 0x03, 0x00, 0x01, 0xB9, 0x1B, 0x00, 0x01, 0xB9, 0x33, + 0x00, 0x01, 0xB9, 0x43, 0x00, 0x01, 0xB9, 0x59, 0x00, 0x01, 0xB9, 0x71, + 0x00, 0x01, 0xB9, 0x87, 0x00, 0x01, 0xB9, 0x9F, 0x00, 0x01, 0xB9, 0xB5, + 0x00, 0x01, 0xB9, 0xCB, 0x00, 0x01, 0xB9, 0xE7, 0x00, 0x01, 0xB9, 0xFD, + 0x00, 0x01, 0xBA, 0x13, 0x00, 0x01, 0xBA, 0x33, 0x00, 0x01, 0xBA, 0xA7, + 0x00, 0x01, 0xBB, 0x05, 0x00, 0x01, 0xBB, 0x2E, 0x00, 0x01, 0xBB, 0x93, + 0x00, 0x01, 0xBC, 0x05, 0x00, 0x01, 0xBC, 0x1D, 0x00, 0x01, 0xBC, 0x35, + 0x00, 0x01, 0xBC, 0x45, 0x00, 0x01, 0xBC, 0x55, 0x00, 0x01, 0xBC, 0xA4, + 0x00, 0x01, 0xBD, 0x14, 0x00, 0x01, 0xBD, 0xA5, 0x00, 0x01, 0xBE, 0x36, + 0x00, 0x01, 0xBE, 0x61, 0x00, 0x01, 0xBE, 0xAE, 0x00, 0x01, 0xBF, 0x5E, + 0x00, 0x01, 0xBF, 0xF1, 0x00, 0x01, 0xC0, 0x94, 0x00, 0x01, 0xC1, 0x15, + 0x00, 0x01, 0xC1, 0xD0, 0x00, 0x01, 0xC2, 0x29, 0x00, 0x01, 0xC2, 0x41, + 0x00, 0x01, 0xC2, 0x59, 0x00, 0x01, 0xC2, 0x71, 0x00, 0x01, 0xC2, 0x87, + 0x00, 0x01, 0xC2, 0x9F, 0x00, 0x01, 0xC2, 0xB7, 0x00, 0x01, 0xC2, 0xCF, + 0x00, 0x01, 0xC2, 0xE5, 0x00, 0x01, 0xC2, 0xFD, 0x00, 0x01, 0xC3, 0x33, + 0x00, 0x01, 0xC3, 0x43, 0x00, 0x01, 0xC3, 0xB2, 0x00, 0x01, 0xC3, 0xC2, + 0x00, 0x01, 0xC3, 0xDA, 0x00, 0x01, 0xC3, 0xFA, 0x00, 0x01, 0xC4, 0x12, + 0x00, 0x01, 0xC4, 0x22, 0x00, 0x01, 0xC4, 0x3A, 0x00, 0x01, 0xC4, 0x5A, + 0x00, 0x01, 0xC4, 0x82, 0x00, 0x01, 0xC4, 0x9A, 0x00, 0x01, 0xC4, 0xAA, + 0x00, 0x01, 0xC4, 0xC2, 0x00, 0x01, 0xC4, 0xE2, 0x00, 0x01, 0xC4, 0xF2, + 0x00, 0x01, 0xC5, 0x02, 0x00, 0x01, 0xC5, 0x12, 0x00, 0x01, 0xC5, 0x22, + 0x00, 0x01, 0xC5, 0x38, 0x00, 0x01, 0xC5, 0x5E, 0x00, 0x01, 0xC5, 0x94, + 0x00, 0x01, 0xC5, 0xB2, 0x00, 0x01, 0xC5, 0xC2, 0x00, 0x01, 0xC5, 0xE2, + 0x00, 0x01, 0xC6, 0x12, 0x00, 0x01, 0xC6, 0x52, 0x00, 0x01, 0xC6, 0x70, + 0x00, 0x01, 0xC6, 0x80, 0x00, 0x01, 0xC6, 0xA0, 0x00, 0x01, 0xC6, 0xD0, + 0x00, 0x01, 0xC6, 0xE0, 0x00, 0x01, 0xC6, 0xF0, 0x00, 0x01, 0xC7, 0x00, + 0x00, 0x01, 0xC7, 0x10, 0x00, 0x01, 0xC7, 0x78, 0x00, 0x01, 0xC7, 0xF2, + 0x00, 0x01, 0xC8, 0x39, 0x00, 0x01, 0xC8, 0x39, 0x00, 0x01, 0xC8, 0x7F, + 0x00, 0x01, 0xC8, 0xA9, 0x00, 0x01, 0xC9, 0x7E, 0x00, 0x01, 0xC9, 0xB2, + 0x00, 0x01, 0xC9, 0xE5, 0x00, 0x01, 0xCA, 0x28, 0x00, 0x01, 0xCA, 0x3A, + 0x00, 0x01, 0xCA, 0x4A, 0x00, 0x01, 0xCA, 0x5C, 0x00, 0x01, 0xCB, 0x10, + 0x00, 0x01, 0xCB, 0x4B, 0x00, 0x01, 0xCB, 0x8C, 0x00, 0x01, 0xCB, 0x9E, + 0x00, 0x01, 0xCC, 0x14, 0x00, 0x01, 0xCC, 0x2C, 0x00, 0x01, 0xCC, 0x7A, + 0x00, 0x01, 0xCC, 0xBD, 0x00, 0x01, 0xCD, 0x0C, 0x00, 0x01, 0xCD, 0x24, + 0x00, 0x01, 0xCD, 0x34, 0x00, 0x01, 0xCD, 0x44, 0x00, 0x01, 0xCD, 0x6C, + 0x00, 0x01, 0xCD, 0xFF, 0x00, 0x01, 0xCE, 0x56, 0x00, 0x01, 0xCE, 0x66, + 0x00, 0x01, 0xCE, 0x82, 0x00, 0x01, 0xCE, 0xDB, 0x00, 0x01, 0xCF, 0x10, + 0x00, 0x01, 0xCF, 0x45, 0x00, 0x01, 0xCF, 0x7A, 0x00, 0x01, 0xCF, 0xB0, + 0x00, 0x01, 0xCF, 0xD7, 0x00, 0x01, 0xD0, 0x08, 0x00, 0x01, 0xD0, 0x22, + 0x00, 0x01, 0xD0, 0x4A, 0x00, 0x01, 0xD0, 0x64, 0x00, 0x01, 0xD0, 0x74, + 0x00, 0x01, 0xD0, 0x86, 0x00, 0x01, 0xD0, 0xB0, 0x00, 0x01, 0xD0, 0xD7, + 0x00, 0x01, 0xD1, 0x08, 0x00, 0x01, 0xD1, 0x39, 0x00, 0x01, 0xD1, 0x6B, + 0x00, 0x01, 0xD1, 0xC3, 0x00, 0x01, 0xD1, 0xD5, 0x00, 0x01, 0xD1, 0xE5, + 0x00, 0x01, 0xD1, 0xF5, 0x00, 0x01, 0xD2, 0x45, 0x00, 0x01, 0xD2, 0x6B, + 0x00, 0x01, 0xD2, 0x93, 0x00, 0x01, 0xD2, 0xB8, 0x00, 0x01, 0xD2, 0xDF, + 0x00, 0x01, 0xD3, 0x13, 0x00, 0x01, 0xD3, 0x3A, 0x00, 0x01, 0xD3, 0x73, + 0x00, 0x01, 0xD3, 0x98, 0x00, 0x01, 0xD3, 0xBE, 0x00, 0x01, 0xD3, 0xE6, + 0x00, 0x01, 0xD4, 0x0E, 0x00, 0x01, 0xD4, 0x36, 0x00, 0x01, 0xD4, 0x5E, + 0x00, 0x01, 0xD4, 0x8E, 0x00, 0x01, 0xD4, 0xCF, 0x00, 0x01, 0xD5, 0x29, + 0x00, 0x01, 0xD5, 0x8E, 0x00, 0x01, 0xD5, 0xB3, 0x00, 0x01, 0xD6, 0x3C, + 0x00, 0x01, 0xD6, 0xB4, 0x00, 0x01, 0xD7, 0x33, 0x00, 0x01, 0xD7, 0x98, + 0x00, 0x01, 0xD7, 0xD2, 0x00, 0x01, 0xD8, 0x28, 0x00, 0x01, 0xD8, 0x71, + 0x00, 0x01, 0xD8, 0xCF, 0x00, 0x01, 0xD9, 0x3A, 0x00, 0x01, 0xD9, 0x7F, + 0x00, 0x01, 0xD9, 0xF3, 0x00, 0x01, 0xDA, 0x30, 0x00, 0x01, 0xDA, 0x71, + 0x00, 0x01, 0xDA, 0xA2, 0x00, 0x01, 0xDA, 0xD7, 0x00, 0x01, 0xDB, 0x19, + 0x00, 0x01, 0xDB, 0x77, 0x00, 0x01, 0xDC, 0x3F, 0x00, 0x01, 0xDC, 0xFC, + 0x00, 0x01, 0xDD, 0x8C, 0x00, 0x01, 0xDE, 0x01, 0x00, 0x01, 0xDE, 0x87, + 0x00, 0x01, 0xDF, 0x1B, 0x00, 0x01, 0xDF, 0x7E, 0x00, 0x01, 0xDF, 0xC0, + 0x00, 0x01, 0xDF, 0xDA, 0x00, 0x01, 0xE0, 0x02, 0x00, 0x01, 0xE0, 0x42, + 0x00, 0x01, 0xE0, 0x8B, 0x00, 0x01, 0xE0, 0xC1, 0x00, 0x01, 0xE1, 0x48, + 0x00, 0x01, 0xE1, 0xA2, 0x00, 0x01, 0xE2, 0x14, 0x00, 0x01, 0xE2, 0x4D, + 0x00, 0x01, 0xE2, 0x89, 0x00, 0x01, 0xE3, 0x15, 0x00, 0x01, 0xE3, 0x9E, + 0x00, 0x01, 0xE4, 0xD6, 0x00, 0x01, 0xE5, 0x7D, 0x00, 0x01, 0xE5, 0xA1, + 0x00, 0x01, 0xE5, 0xE5, 0x00, 0x01, 0xE6, 0x05, 0x00, 0x01, 0xE6, 0x26, + 0x00, 0x01, 0xE6, 0x6A, 0x00, 0x01, 0xE6, 0xEE, 0x00, 0x01, 0xE7, 0x00, + 0x00, 0x01, 0xE7, 0x12, 0x00, 0x01, 0xE7, 0x4A, 0x00, 0x01, 0xE7, 0x82, + 0x00, 0x01, 0xE7, 0xBB, 0x00, 0x01, 0xE8, 0x01, 0x00, 0x01, 0xE8, 0x48, + 0x00, 0x01, 0xE8, 0x8F, 0x00, 0x01, 0xE8, 0xD7, 0x00, 0x01, 0xE9, 0x4F, + 0x00, 0x01, 0xE9, 0xC8, 0x00, 0x01, 0xEA, 0x22, 0x00, 0x01, 0xEA, 0x32, + 0x00, 0x01, 0xEA, 0xBF, 0x00, 0x01, 0xEA, 0xDA, 0x00, 0x01, 0xEA, 0xEA, + 0x00, 0x01, 0xEA, 0xFA, 0x00, 0x01, 0xEB, 0x46, 0x00, 0x01, 0xEB, 0x72, + 0x00, 0x01, 0xEB, 0x9A, 0x00, 0x01, 0xEB, 0xC3, 0x00, 0x01, 0xEB, 0xFA, + 0x00, 0x01, 0xEC, 0x52, 0x00, 0x01, 0xEC, 0x86, 0x00, 0x01, 0xEC, 0xB3, + 0x00, 0x01, 0xEC, 0xE0, 0x00, 0x01, 0xED, 0x0E, 0x00, 0x01, 0xED, 0x4D, + 0x00, 0x01, 0xED, 0x92, 0x00, 0x01, 0xED, 0xA4, 0x00, 0x01, 0xED, 0xC2, + 0x00, 0x01, 0xED, 0xE0, 0x00, 0x01, 0xEE, 0x14, 0x00, 0x01, 0xEE, 0x26, + 0x00, 0x01, 0xEE, 0x40, 0x00, 0x01, 0xEE, 0x68, 0x00, 0x01, 0xEE, 0xC8, + 0x00, 0x01, 0xEF, 0x59, 0x00, 0x01, 0xEF, 0xE5, 0x00, 0x01, 0xF0, 0x3B, + 0x00, 0x01, 0xF0, 0x72, 0x00, 0x01, 0xF0, 0x72, 0x00, 0x01, 0xF0, 0x84, + 0x00, 0x01, 0xF0, 0xB7, 0x00, 0x01, 0xF1, 0x0B, 0x00, 0x01, 0xF1, 0x3C, + 0x00, 0x01, 0xF1, 0x4E, 0x00, 0x01, 0xF1, 0x60, 0x00, 0x01, 0xF1, 0x7A, + 0x00, 0x01, 0xF1, 0xB0, 0x00, 0x01, 0xF1, 0xC0, 0x00, 0x01, 0xF1, 0xFC, + 0x00, 0x01, 0xF2, 0x8E, 0x00, 0x01, 0xF2, 0xB3, 0x00, 0x01, 0xF2, 0xC5, + 0x00, 0x01, 0xF3, 0x0B, 0x00, 0x01, 0xF3, 0x23, 0x00, 0x01, 0xF3, 0x35, + 0x00, 0x01, 0xF3, 0x91, 0x00, 0x01, 0xF3, 0xD7, 0x00, 0x01, 0xF4, 0x11, + 0x00, 0x01, 0xF4, 0x3B, 0x00, 0x01, 0xF4, 0x64, 0x00, 0x01, 0xF4, 0x86, + 0x00, 0x01, 0xF4, 0xA8, 0x00, 0x01, 0xF5, 0x06, 0x00, 0x01, 0xF5, 0x68, + 0x00, 0x01, 0xF5, 0xF4, 0x00, 0x01, 0xF6, 0x20, 0x00, 0x01, 0xF6, 0x41, + 0x00, 0x01, 0xF6, 0x62, 0x00, 0x01, 0xF6, 0x84, 0x00, 0x01, 0xF6, 0xB2, + 0x00, 0x01, 0xF6, 0xE0, 0x00, 0x01, 0xF7, 0x18, 0x00, 0x01, 0xF7, 0x50, + 0x00, 0x01, 0xF7, 0x7C, 0x00, 0x01, 0xF7, 0xC1, 0x00, 0x01, 0xF7, 0xF8, + 0x00, 0x01, 0xF8, 0x4B, 0x00, 0x01, 0xF8, 0xBF, 0x00, 0x01, 0xF9, 0x2D, + 0x00, 0x01, 0xF9, 0xB7, 0x00, 0x01, 0xFA, 0x24, 0x00, 0x01, 0xFA, 0x89, + 0x00, 0x01, 0xFA, 0xD0, 0x00, 0x01, 0xFB, 0x5D, 0x00, 0x01, 0xFB, 0xC5, + 0x00, 0x01, 0xFC, 0x30, 0x00, 0x01, 0xFC, 0x96, 0x00, 0x01, 0xFC, 0xF3, + 0x00, 0x01, 0xFD, 0x51, 0x00, 0x01, 0xFE, 0x0F, 0x00, 0x01, 0xFE, 0xA6, + 0x00, 0x01, 0xFF, 0x30, 0x00, 0x01, 0xFF, 0x42, 0x00, 0x01, 0xFF, 0x88, + 0x00, 0x02, 0x00, 0x14, 0x00, 0x02, 0x00, 0x26, 0x00, 0x02, 0x00, 0x7F, + 0x00, 0x02, 0x00, 0xC4, 0x00, 0x02, 0x00, 0xD4, 0x00, 0x02, 0x00, 0xE4, + 0x00, 0x02, 0x00, 0xF4, 0x00, 0x02, 0x01, 0x1B, 0x00, 0x02, 0x01, 0x43, + 0x00, 0x02, 0x01, 0x9F, 0x00, 0x02, 0x01, 0xB1, 0x00, 0x02, 0x01, 0xEA, + 0x00, 0x02, 0x02, 0x44, 0x00, 0x02, 0x02, 0xA0, 0x00, 0x02, 0x02, 0xF9, + 0x00, 0x02, 0x03, 0x57, 0x00, 0x02, 0x03, 0xBF, 0x00, 0x02, 0x03, 0xD1, + 0x00, 0x02, 0x03, 0xE3, 0x00, 0x02, 0x03, 0xF5, 0x00, 0x02, 0x04, 0x05, + 0x00, 0x02, 0x04, 0x17, 0x00, 0x02, 0x04, 0x27, 0x00, 0x02, 0x04, 0x7F, + 0x00, 0x02, 0x04, 0x9B, 0x00, 0x02, 0x04, 0xC4, 0x00, 0x02, 0x04, 0xD4, + 0x00, 0x02, 0x04, 0xE6, 0x00, 0x02, 0x05, 0x48, 0x00, 0x02, 0x05, 0x7F, + 0x00, 0x02, 0x05, 0x91, 0x00, 0x02, 0x05, 0xA3, 0x00, 0x02, 0x05, 0xB5, + 0x00, 0x02, 0x05, 0xE9, 0x00, 0x02, 0x06, 0x3D, 0x00, 0x02, 0x06, 0x4F, + 0x00, 0x02, 0x06, 0x61, 0x00, 0x02, 0x06, 0x8E, 0x00, 0x02, 0x06, 0x9E, + 0x00, 0x02, 0x06, 0xB0, 0x00, 0x02, 0x06, 0xC0, 0x00, 0x02, 0x06, 0xD2, + 0x00, 0x02, 0x07, 0x06, 0x00, 0x02, 0x07, 0x40, 0x00, 0x02, 0x07, 0x7B, + 0x00, 0x02, 0x07, 0xB2, 0x00, 0x02, 0x07, 0xC4, 0x00, 0x02, 0x07, 0xDE, + 0x00, 0x02, 0x07, 0xF0, 0x00, 0x02, 0x08, 0x02, 0x00, 0x02, 0x08, 0x14, + 0x00, 0x02, 0x08, 0x3B, 0x00, 0x02, 0x08, 0x4D, 0x00, 0x02, 0x08, 0x5F, + 0x00, 0x02, 0x08, 0x71, 0x00, 0x02, 0x08, 0xC7, 0x00, 0x02, 0x08, 0xD9, + 0x00, 0x02, 0x08, 0xEB, 0x00, 0x02, 0x08, 0xFD, 0x00, 0x02, 0x09, 0x23, + 0x00, 0x02, 0x09, 0x54, 0x00, 0x02, 0x09, 0x92, 0x00, 0x02, 0x09, 0xDB, + 0x00, 0x02, 0x09, 0xED, 0x00, 0x02, 0x0A, 0x52, 0x00, 0x02, 0x0A, 0xB7, + 0x00, 0x02, 0x0B, 0x43, 0x00, 0x02, 0x0B, 0x53, 0x00, 0x02, 0x0B, 0xAD, + 0x00, 0x02, 0x0B, 0xEA, 0x00, 0x02, 0x0C, 0x31, 0x00, 0x02, 0x0C, 0x76, + 0x00, 0x02, 0x0C, 0xED, 0x00, 0x02, 0x0D, 0x24, 0x00, 0x02, 0x0D, 0x5B, + 0x00, 0x02, 0x0D, 0xA7, 0x00, 0x02, 0x0E, 0x0E, 0x00, 0x02, 0x0E, 0x29, + 0x00, 0x02, 0x0E, 0x3B, 0x00, 0x02, 0x0E, 0x55, 0x00, 0x02, 0x0E, 0x7D, + 0x00, 0x02, 0x0E, 0xAE, 0x00, 0x02, 0x0E, 0xDA, 0x00, 0x02, 0x0F, 0x35, + 0x00, 0x02, 0x0F, 0x92, 0x00, 0x02, 0x0F, 0xA4, 0x00, 0x02, 0x0F, 0xBE, + 0x00, 0x02, 0x0F, 0xD0, 0x00, 0x02, 0x10, 0x02, 0x00, 0x02, 0x10, 0x12, + 0x00, 0x02, 0x10, 0x2B, 0x00, 0x02, 0x10, 0xC5, 0x00, 0x02, 0x11, 0x09, + 0x00, 0x02, 0x11, 0x25, 0x00, 0x02, 0x11, 0x3E, 0x00, 0x02, 0x11, 0x57, + 0x00, 0x02, 0x11, 0x71, 0x00, 0x02, 0x11, 0x92, 0x00, 0x02, 0x11, 0xB2, + 0x00, 0x02, 0x11, 0xCE, 0x00, 0x02, 0x12, 0x0B, 0x00, 0x02, 0x12, 0x54, + 0x00, 0x02, 0x12, 0x70, 0x00, 0x02, 0x12, 0x93, 0x00, 0x02, 0x12, 0xAB, + 0x00, 0x02, 0x12, 0xC6, 0x00, 0x02, 0x12, 0xFE, 0x00, 0x02, 0x13, 0x16, + 0x00, 0x02, 0x13, 0x61, 0x00, 0x02, 0x13, 0x9C, 0x00, 0x02, 0x13, 0xC0, + 0x00, 0x02, 0x14, 0x1B, 0x00, 0x02, 0x14, 0x77, 0x00, 0x02, 0x14, 0x87, + 0x00, 0x02, 0x14, 0x97, 0x00, 0x02, 0x14, 0xA7, 0x00, 0x02, 0x14, 0xB7, + 0x00, 0x02, 0x14, 0xC7, 0x00, 0x02, 0x14, 0xD7, 0x00, 0x02, 0x14, 0xE7, + 0x00, 0x02, 0x14, 0xF7, 0x00, 0x02, 0x15, 0x20, 0x00, 0x02, 0x15, 0x3D, + 0x00, 0x02, 0x15, 0x59, 0x00, 0x02, 0x15, 0x9E, 0x00, 0x02, 0x15, 0xF5, + 0x00, 0x02, 0x16, 0x4B, 0x00, 0x02, 0x16, 0x90, 0x00, 0x02, 0x16, 0xE0, + 0x00, 0x02, 0x17, 0x35, 0x00, 0x02, 0x17, 0x71, 0x00, 0x02, 0x17, 0xC6, + 0x00, 0x02, 0x17, 0xED, 0x00, 0x02, 0x18, 0x06, 0x00, 0x02, 0x18, 0x1F, + 0x00, 0x02, 0x18, 0x48, 0x00, 0x02, 0x18, 0x5A, 0x00, 0x02, 0x18, 0x82, + 0x00, 0x02, 0x18, 0xA9, 0x00, 0x02, 0x18, 0xBB, 0x00, 0x02, 0x19, 0x04, + 0x00, 0x02, 0x19, 0x1D, 0x00, 0x02, 0x19, 0x36, 0x00, 0x02, 0x19, 0x50, + 0x00, 0x02, 0x19, 0x6A, 0x00, 0x02, 0x19, 0xB7, 0x00, 0x02, 0x19, 0xE3, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x01, 0x80, 0x04, 0x80, 0x00, 0x02, + 0x44, 0x46, 0x4C, 0x54, 0x01, 0x20, 0x6C, 0x61, 0x74, 0x6E, 0x00, 0x0E, + 0x01, 0x16, 0x00, 0x03, 0x43, 0x41, 0x54, 0x20, 0x00, 0xBE, 0x4D, 0x4F, + 0x4C, 0x20, 0x00, 0x6A, 0x52, 0x4F, 0x4D, 0x20, 0x00, 0x16, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, + 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, + 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x17, + 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, + 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, + 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, + 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, + 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x16, + 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, + 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, + 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x27, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, + 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, 0x00, 0x0E, 0x00, 0x0F, + 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, + 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, 0x00, 0x1D, + 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, 0x00, 0x23, + 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x26, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, + 0x00, 0x08, 0x00, 0x09, 0x00, 0x0A, 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x0D, + 0x00, 0x0E, 0x00, 0x0F, 0x00, 0x10, 0x00, 0x11, 0x00, 0x12, 0x00, 0x13, + 0x00, 0x14, 0x00, 0x18, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, + 0x00, 0x1D, 0x00, 0x1E, 0x00, 0x1F, 0x00, 0x20, 0x00, 0x21, 0x00, 0x22, + 0x00, 0x23, 0x00, 0x24, 0x00, 0x25, 0x00, 0x26, 0x00, 0x27, 0x00, 0x28, + 0x00, 0x29, 0x61, 0x61, 0x6C, 0x74, 0x02, 0xF8, 0x63, 0x61, 0x6C, 0x74, + 0x02, 0xEC, 0x63, 0x61, 0x73, 0x65, 0x02, 0xE6, 0x63, 0x63, 0x6D, 0x70, + 0x02, 0xD6, 0x63, 0x76, 0x30, 0x31, 0x02, 0xC2, 0x63, 0x76, 0x30, 0x32, + 0x02, 0xAE, 0x63, 0x76, 0x30, 0x33, 0x02, 0x9A, 0x63, 0x76, 0x30, 0x34, + 0x02, 0x86, 0x63, 0x76, 0x30, 0x35, 0x02, 0x72, 0x63, 0x76, 0x30, 0x36, + 0x02, 0x5E, 0x63, 0x76, 0x30, 0x37, 0x02, 0x4A, 0x63, 0x76, 0x30, 0x38, + 0x02, 0x36, 0x63, 0x76, 0x30, 0x39, 0x02, 0x22, 0x63, 0x76, 0x31, 0x30, + 0x02, 0x0E, 0x63, 0x76, 0x31, 0x31, 0x01, 0xFA, 0x63, 0x76, 0x31, 0x32, + 0x01, 0xE6, 0x63, 0x76, 0x31, 0x33, 0x01, 0xD2, 0x63, 0x76, 0x31, 0x34, + 0x01, 0xBE, 0x64, 0x6C, 0x69, 0x67, 0x01, 0xB6, 0x64, 0x6E, 0x6F, 0x6D, + 0x01, 0xB0, 0x66, 0x72, 0x61, 0x63, 0x01, 0x92, 0x6C, 0x6F, 0x63, 0x6C, + 0x01, 0x8C, 0x6C, 0x6F, 0x63, 0x6C, 0x01, 0x86, 0x6C, 0x6F, 0x63, 0x6C, + 0x01, 0x80, 0x6E, 0x75, 0x6D, 0x72, 0x01, 0x7A, 0x6F, 0x72, 0x64, 0x6E, + 0x01, 0x72, 0x70, 0x6E, 0x75, 0x6D, 0x01, 0x6C, 0x73, 0x61, 0x6C, 0x74, + 0x01, 0x66, 0x73, 0x69, 0x6E, 0x66, 0x01, 0x60, 0x73, 0x73, 0x30, 0x31, + 0x01, 0x56, 0x73, 0x73, 0x30, 0x32, 0x01, 0x4C, 0x73, 0x73, 0x30, 0x33, + 0x01, 0x42, 0x73, 0x73, 0x30, 0x34, 0x01, 0x38, 0x73, 0x73, 0x30, 0x35, + 0x01, 0x2E, 0x73, 0x73, 0x30, 0x36, 0x01, 0x24, 0x73, 0x73, 0x30, 0x37, + 0x01, 0x1A, 0x73, 0x73, 0x30, 0x38, 0x01, 0x10, 0x73, 0x75, 0x62, 0x73, + 0x01, 0x0A, 0x73, 0x75, 0x70, 0x73, 0x01, 0x04, 0x74, 0x6E, 0x75, 0x6D, + 0x00, 0xFE, 0x7A, 0x65, 0x72, 0x6F, 0x00, 0xF8, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x3E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x3B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3A, 0x00, 0x06, 0x00, 0x01, + 0x00, 0x4A, 0x00, 0x00, 0x01, 0x1B, 0x00, 0x06, 0x00, 0x01, 0x00, 0x49, + 0x00, 0x00, 0x01, 0x1A, 0x00, 0x06, 0x00, 0x01, 0x00, 0x48, 0x00, 0x00, + 0x01, 0x19, 0x00, 0x06, 0x00, 0x01, 0x00, 0x47, 0x00, 0x00, 0x01, 0x18, + 0x00, 0x06, 0x00, 0x01, 0x00, 0x46, 0x00, 0x00, 0x01, 0x17, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x45, 0x00, 0x00, 0x01, 0x16, 0x00, 0x06, 0x00, 0x01, + 0x00, 0x44, 0x00, 0x00, 0x01, 0x15, 0x00, 0x06, 0x00, 0x01, 0x00, 0x43, + 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x42, 0x00, 0x00, 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x3F, 0x00, 0x41, 0x00, 0x00, 0x00, 0x01, 0x00, 0x11, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0C, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x13, + 0x00, 0x15, 0x00, 0x17, 0x00, 0x19, 0x00, 0x1B, 0x00, 0x1D, 0x00, 0x1F, + 0x00, 0x21, 0x00, 0x23, 0x00, 0x25, 0x00, 0x27, 0x00, 0x29, 0x00, 0x2B, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x02, 0x00, 0x35, + 0x00, 0x39, 0x00, 0x06, 0x00, 0x01, 0x00, 0x58, 0x00, 0x00, 0x01, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x57, 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x56, + 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x55, 0x00, 0x00, 0x01, 0x26, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x54, 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x53, + 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x52, 0x00, 0x00, 0x01, 0x23, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x51, 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x50, + 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x4F, 0x00, 0x00, 0x01, 0x20, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x4E, 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x4D, + 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x4C, 0x00, 0x00, 0x01, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x01, 0x00, 0x4B, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x02, + 0x00, 0x04, 0x00, 0x05, 0x00, 0x07, 0x00, 0x08, 0x00, 0x0A, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x04, 0x00, 0x2E, 0x00, 0x2F, + 0x00, 0x32, 0x00, 0x33, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x59, 0x55, 0xFA, 0x51, 0xB6, 0x50, 0x4C, 0x50, 0x26, 0x3F, 0xD2, + 0x3F, 0xB0, 0x3F, 0x96, 0x3C, 0x38, 0x3C, 0x1C, 0x3C, 0x02, 0x39, 0x22, + 0x39, 0x0A, 0x39, 0x0A, 0x38, 0xC8, 0x38, 0xA8, 0x38, 0x88, 0x37, 0xCA, + 0x37, 0x6C, 0x37, 0x16, 0x34, 0xDC, 0x34, 0xCE, 0x34, 0xAE, 0x34, 0x7E, + 0x34, 0x3C, 0x34, 0x7E, 0x34, 0x1E, 0x34, 0x7E, 0x33, 0xFE, 0x34, 0x7E, + 0x33, 0xDC, 0x34, 0x7E, 0x33, 0xB8, 0x34, 0x7E, 0x33, 0x92, 0x34, 0x7E, + 0x33, 0x6A, 0x34, 0x7E, 0x33, 0x40, 0x34, 0x7E, 0x33, 0x14, 0x34, 0x7E, + 0x32, 0xD0, 0x37, 0x16, 0x32, 0xAE, 0x32, 0xA0, 0x31, 0xEA, 0x20, 0xA8, + 0x20, 0x32, 0x20, 0x18, 0x1F, 0xF6, 0x1E, 0x5C, 0x15, 0x0A, 0x14, 0x54, + 0x13, 0x36, 0x12, 0xFC, 0x12, 0xEA, 0x12, 0xD6, 0x12, 0x8C, 0x37, 0xCA, + 0x12, 0x28, 0x11, 0x8A, 0x10, 0x98, 0x10, 0x66, 0x10, 0x12, 0x0F, 0xF0, + 0x0F, 0xCE, 0x0C, 0xC8, 0x0C, 0x36, 0x0B, 0x7E, 0x0A, 0xF8, 0x0A, 0x60, + 0x09, 0x32, 0x08, 0x00, 0x04, 0x3A, 0x04, 0x0C, 0x03, 0xDA, 0x03, 0xA8, + 0x03, 0x76, 0x03, 0x44, 0x02, 0xFC, 0x02, 0x86, 0x02, 0x72, 0x01, 0xFE, + 0x01, 0xCC, 0x01, 0x98, 0x01, 0x28, 0x01, 0x06, 0x00, 0xC8, 0x00, 0xB4, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, + 0x07, 0x9A, 0x00, 0x01, 0x00, 0x01, 0x01, 0x9A, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x20, 0x00, 0x0D, 0x03, 0x87, + 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, 0x03, 0x8B, 0x03, 0x8C, 0x03, 0x8D, + 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, 0x08, 0xA1, 0x08, 0xA2, 0x08, 0xA3, + 0x00, 0x02, 0x00, 0x03, 0x03, 0x78, 0x03, 0x79, 0x00, 0x00, 0x03, 0x7F, + 0x03, 0x86, 0x00, 0x02, 0x08, 0x7F, 0x08, 0x81, 0x00, 0x0A, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, 0x00, 0x04, + 0x02, 0x88, 0x02, 0x8B, 0x02, 0x8C, 0x08, 0x9D, 0x00, 0x01, 0x00, 0x04, + 0x02, 0x87, 0x02, 0x90, 0x02, 0x91, 0x08, 0x5B, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x4C, 0x00, 0x23, 0x02, 0x23, + 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, + 0x02, 0x2A, 0x02, 0x2B, 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x2F, + 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, + 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, + 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, + 0x02, 0x23, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, 0x00, 0x02, 0x00, 0x04, + 0x01, 0xFB, 0x02, 0x17, 0x00, 0x00, 0x02, 0x19, 0x02, 0x1A, 0x00, 0x1D, + 0x02, 0x1C, 0x02, 0x1C, 0x00, 0x1F, 0x08, 0x4E, 0x08, 0x50, 0x00, 0x20, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x1C, + 0x00, 0x0B, 0x00, 0x97, 0x00, 0x98, 0x00, 0x99, 0x00, 0x9A, 0x00, 0x9B, + 0x00, 0x9C, 0x00, 0x9D, 0x00, 0x9E, 0x00, 0x9F, 0x00, 0xA0, 0x08, 0x47, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x8D, 0x00, 0x96, 0x00, 0x00, 0x08, 0x13, + 0x08, 0x13, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, 0x05, 0x49, 0x05, 0x59, 0x06, 0x45, + 0x06, 0x76, 0x06, 0x8E, 0x06, 0xA7, 0x07, 0x93, 0x07, 0xD1, 0x00, 0x01, + 0x00, 0x08, 0x05, 0x3F, 0x05, 0x50, 0x06, 0x44, 0x06, 0x75, 0x06, 0x8D, + 0x06, 0xA6, 0x07, 0x8A, 0x07, 0xC8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x00, 0x4A, 0x00, 0x22, 0x00, 0xEA, 0x00, 0xEB, + 0x00, 0xEC, 0x00, 0xED, 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, + 0x00, 0xF2, 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, + 0x00, 0xF8, 0x00, 0xF9, 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, + 0x00, 0xFE, 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, + 0x01, 0x04, 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, + 0x08, 0x48, 0x08, 0xB8, 0x00, 0x02, 0x00, 0x05, 0x00, 0xC5, 0x00, 0xC5, + 0x00, 0x00, 0x00, 0xC7, 0x00, 0xD7, 0x00, 0x01, 0x00, 0xDC, 0x00, 0xE9, + 0x00, 0x12, 0x08, 0x17, 0x08, 0x17, 0x00, 0x20, 0x08, 0xAE, 0x08, 0xAE, + 0x00, 0x21, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x03, 0x76, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x58, 0x00, 0x29, + 0x03, 0xB2, 0x03, 0xBA, 0x03, 0xCF, 0x03, 0xC3, 0x03, 0xB4, 0x03, 0xC1, + 0x03, 0xB3, 0x03, 0xB7, 0x03, 0xCB, 0x03, 0xB5, 0x03, 0xCE, 0x03, 0xC9, + 0x03, 0xCD, 0x03, 0xB6, 0x03, 0xBF, 0x03, 0xBB, 0x03, 0xBD, 0x03, 0xBE, + 0x03, 0xB9, 0x03, 0xCA, 0x03, 0xBC, 0x03, 0xD1, 0x03, 0xB8, 0x03, 0xD0, + 0x03, 0xCC, 0x03, 0xC0, 0x03, 0xC2, 0x03, 0xC4, 0x03, 0xC6, 0x03, 0xC7, + 0x03, 0xC8, 0x03, 0xC5, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, 0x08, 0xA7, + 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, 0x00, 0x02, + 0x00, 0x03, 0x03, 0x91, 0x03, 0x94, 0x00, 0x00, 0x03, 0x96, 0x03, 0xB1, + 0x00, 0x04, 0x08, 0x82, 0x08, 0x8A, 0x00, 0x20, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x24, 0x00, 0x0F, 0x02, 0xEF, + 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, + 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, + 0x08, 0x9F, 0x08, 0xA0, 0x00, 0x02, 0x00, 0x04, 0x02, 0xE0, 0x02, 0xE3, + 0x00, 0x00, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x04, 0x02, 0xE7, 0x02, 0xEE, + 0x00, 0x05, 0x08, 0x69, 0x08, 0x6A, 0x00, 0x0D, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, 0x05, 0x4C, + 0x05, 0x5C, 0x06, 0x4E, 0x06, 0x7F, 0x06, 0x97, 0x06, 0xB0, 0x07, 0x96, + 0x07, 0xD4, 0x00, 0x01, 0x00, 0x08, 0x05, 0x46, 0x05, 0x56, 0x06, 0x4D, + 0x06, 0x7E, 0x06, 0x96, 0x06, 0xAF, 0x07, 0x90, 0x07, 0xCE, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, + 0x05, 0x4B, 0x05, 0x5B, 0x06, 0x4A, 0x06, 0x7B, 0x06, 0x93, 0x06, 0xAC, + 0x07, 0x95, 0x07, 0xD3, 0x00, 0x01, 0x00, 0x08, 0x05, 0x43, 0x05, 0x53, + 0x06, 0x49, 0x06, 0x7A, 0x06, 0x92, 0x06, 0xAB, 0x07, 0x8D, 0x07, 0xCB, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, + 0x00, 0x08, 0x05, 0x4A, 0x05, 0x5A, 0x06, 0x47, 0x06, 0x78, 0x06, 0x90, + 0x06, 0xA9, 0x07, 0x94, 0x07, 0xD2, 0x00, 0x01, 0x00, 0x08, 0x05, 0x40, + 0x05, 0x51, 0x06, 0x46, 0x06, 0x77, 0x06, 0x8F, 0x06, 0xA8, 0x07, 0x8B, + 0x07, 0xC9, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x16, 0x00, 0x08, 0x05, 0x48, 0x05, 0x58, 0x06, 0x42, 0x06, 0x73, + 0x06, 0x8B, 0x06, 0xA4, 0x07, 0x92, 0x07, 0xD0, 0x00, 0x01, 0x00, 0x08, + 0x05, 0x3C, 0x05, 0x4E, 0x06, 0x41, 0x06, 0x72, 0x06, 0x8A, 0x06, 0xA3, + 0x07, 0x88, 0x07, 0xC6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, 0x09, 0x12, 0x09, 0x13, 0x09, 0x10, + 0x09, 0x11, 0x09, 0x0F, 0x09, 0x0E, 0x09, 0x14, 0x09, 0x15, 0x00, 0x02, + 0x00, 0x02, 0x05, 0xC8, 0x05, 0xC9, 0x00, 0x00, 0x05, 0xCC, 0x05, 0xD1, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x01, 0xE0, 0x00, 0xED, 0x08, 0x05, 0x08, 0x06, 0x08, 0x08, 0x08, 0x04, + 0x08, 0x03, 0x08, 0x09, 0x08, 0x0A, 0x08, 0x0B, 0x08, 0x0C, 0x08, 0x0D, + 0x08, 0x0F, 0x08, 0x10, 0x08, 0x11, 0x08, 0x0E, 0x08, 0x12, 0x08, 0x13, + 0x08, 0xFE, 0x08, 0x47, 0x08, 0xFF, 0x08, 0x15, 0x08, 0x16, 0x08, 0x14, + 0x08, 0x17, 0x08, 0x18, 0x08, 0x19, 0x08, 0x1A, 0x08, 0xAE, 0x08, 0x48, + 0x08, 0x49, 0x08, 0x4A, 0x08, 0x4B, 0x08, 0xB8, 0x09, 0x00, 0x08, 0x1B, + 0x09, 0x01, 0x08, 0x1C, 0x08, 0x1D, 0x08, 0x1E, 0x08, 0x1F, 0x09, 0x02, + 0x08, 0x20, 0x08, 0x21, 0x08, 0x23, 0x08, 0x28, 0x08, 0x26, 0x08, 0x22, + 0x08, 0x27, 0x08, 0x29, 0x09, 0x03, 0x08, 0x2A, 0x08, 0x2B, 0x08, 0x2C, + 0x09, 0x04, 0x08, 0x2E, 0x08, 0x2F, 0x08, 0x2D, 0x08, 0x30, 0x08, 0x31, + 0x08, 0x32, 0x08, 0x33, 0x08, 0x38, 0x08, 0x34, 0x08, 0x36, 0x08, 0x37, + 0x08, 0x35, 0x08, 0x3B, 0x08, 0x39, 0x08, 0x3A, 0x08, 0x3C, 0x08, 0x3D, + 0x08, 0x3E, 0x08, 0x3F, 0x08, 0x41, 0x08, 0x40, 0x08, 0x42, 0x08, 0x43, + 0x08, 0x44, 0x08, 0x45, 0x08, 0x46, 0x08, 0x4C, 0x08, 0x4D, 0x08, 0x4E, + 0x08, 0x4F, 0x08, 0x50, 0x08, 0x51, 0x08, 0x96, 0x08, 0x97, 0x08, 0x98, + 0x08, 0x99, 0x08, 0x9A, 0x08, 0x9B, 0x08, 0x52, 0x08, 0x53, 0x08, 0x54, + 0x08, 0x55, 0x08, 0x56, 0x08, 0x58, 0x08, 0x59, 0x08, 0x5A, 0x08, 0x57, + 0x08, 0x9D, 0x08, 0xEA, 0x08, 0x5B, 0x08, 0x5C, 0x08, 0x5E, 0x08, 0x5F, + 0x08, 0x5D, 0x08, 0x60, 0x08, 0x61, 0x08, 0x62, 0x08, 0x64, 0x08, 0x63, + 0x08, 0x65, 0x08, 0xE9, 0x09, 0x05, 0x08, 0x67, 0x08, 0x68, 0x09, 0x06, + 0x08, 0x69, 0x08, 0x6A, 0x08, 0x9E, 0x09, 0x07, 0x08, 0x9F, 0x08, 0xA0, + 0x08, 0x6B, 0x08, 0x6C, 0x09, 0x08, 0x08, 0x6D, 0x08, 0x6E, 0x08, 0x70, + 0x08, 0x75, 0x08, 0x73, 0x08, 0x6F, 0x08, 0x74, 0x08, 0x76, 0x09, 0x09, + 0x08, 0x77, 0x08, 0x78, 0x08, 0x79, 0x09, 0x0A, 0x08, 0x7C, 0x08, 0x7D, + 0x08, 0x7A, 0x08, 0x7B, 0x08, 0x7E, 0x09, 0x0B, 0x08, 0x80, 0x08, 0x81, + 0x08, 0x7F, 0x09, 0x0C, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA1, 0x08, 0x82, + 0x08, 0x87, 0x08, 0x83, 0x08, 0x85, 0x08, 0x86, 0x08, 0x84, 0x08, 0x8A, + 0x08, 0x88, 0x08, 0x89, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, 0x08, 0xA7, + 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, 0x08, 0x8B, + 0x08, 0x8C, 0x08, 0x8D, 0x08, 0x8E, 0x08, 0x90, 0x08, 0x8F, 0x08, 0x91, + 0x08, 0x92, 0x08, 0x93, 0x08, 0x94, 0x08, 0x95, 0x08, 0xC2, 0x08, 0xC4, + 0x08, 0xC3, 0x08, 0xD7, 0x08, 0xD6, 0x08, 0xD8, 0x08, 0xDA, 0x08, 0xD9, + 0x08, 0xD0, 0x08, 0xD1, 0x08, 0xCC, 0x08, 0xCB, 0x08, 0xCF, 0x08, 0xCD, + 0x08, 0xD5, 0x08, 0xCE, 0x08, 0xD2, 0x08, 0xCA, 0x06, 0xA0, 0x06, 0xB9, + 0x08, 0xE6, 0x08, 0xE8, 0x08, 0xE7, 0x08, 0xDC, 0x09, 0x0D, 0x08, 0xEB, + 0x08, 0xBE, 0x08, 0xEC, 0x08, 0xD3, 0x08, 0xDB, 0x08, 0xDD, 0x08, 0xDE, + 0x08, 0xDF, 0x08, 0xE0, 0x08, 0xE1, 0x08, 0xE2, 0x08, 0xE3, 0x08, 0xE4, + 0x08, 0xE5, 0x08, 0xF2, 0x08, 0xF8, 0x08, 0xF6, 0x08, 0xFB, 0x08, 0xF4, + 0x08, 0xF5, 0x08, 0xF9, 0x08, 0xF3, 0x08, 0xF7, 0x08, 0xED, 0x08, 0xEE, + 0x08, 0xEF, 0x08, 0xF0, 0x08, 0xF1, 0x08, 0xFC, 0x08, 0xFD, 0x00, 0x01, + 0x00, 0xED, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x15, 0x00, 0x1B, 0x00, 0x20, + 0x00, 0x42, 0x00, 0x43, 0x00, 0x4E, 0x00, 0x57, 0x00, 0x58, 0x00, 0x63, + 0x00, 0x66, 0x00, 0x71, 0x00, 0x78, 0x00, 0x8B, 0x00, 0x92, 0x00, 0x93, + 0x00, 0x9C, 0x00, 0x9D, 0x00, 0xA5, 0x00, 0xA6, 0x00, 0xA7, 0x00, 0xC7, + 0x00, 0xC8, 0x00, 0xD2, 0x00, 0xD7, 0x00, 0xE9, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xF6, 0x00, 0xFB, 0x01, 0x09, 0x01, 0x10, 0x01, 0x13, 0x01, 0x1B, + 0x01, 0x1D, 0x01, 0x1E, 0x01, 0x26, 0x01, 0x27, 0x01, 0x2F, 0x01, 0x32, + 0x01, 0x33, 0x01, 0x42, 0x01, 0x56, 0x01, 0x59, 0x01, 0x5F, 0x01, 0x64, + 0x01, 0x79, 0x01, 0x82, 0x01, 0x86, 0x01, 0x87, 0x01, 0x88, 0x01, 0x92, + 0x01, 0x93, 0x01, 0x94, 0x01, 0x96, 0x01, 0x97, 0x01, 0x9F, 0x01, 0xA0, + 0x01, 0xAD, 0x01, 0xB5, 0x01, 0xB6, 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xBB, + 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC6, 0x01, 0xCA, 0x01, 0xCF, 0x01, 0xD0, + 0x01, 0xD1, 0x01, 0xD3, 0x01, 0xD4, 0x01, 0xDC, 0x01, 0xDE, 0x01, 0xE0, + 0x01, 0xF2, 0x01, 0xF5, 0x01, 0xFF, 0x02, 0x06, 0x02, 0x0B, 0x02, 0x0C, + 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x27, 0x02, 0x2E, 0x02, 0x33, 0x02, 0x34, + 0x02, 0x35, 0x02, 0x36, 0x02, 0x46, 0x02, 0x47, 0x02, 0x50, 0x02, 0x5C, + 0x02, 0x5D, 0x02, 0x67, 0x02, 0x6E, 0x02, 0x79, 0x02, 0x80, 0x02, 0x8B, + 0x02, 0x8F, 0x02, 0x90, 0x02, 0x97, 0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, + 0x02, 0xB1, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xC0, 0x02, 0xC5, 0x02, 0xCF, + 0x02, 0xD1, 0x02, 0xD9, 0x02, 0xDC, 0x02, 0xE7, 0x02, 0xE9, 0x02, 0xEB, + 0x02, 0xEC, 0x02, 0xF4, 0x02, 0xF6, 0x02, 0xF8, 0x02, 0xF9, 0x03, 0x03, + 0x03, 0x04, 0x03, 0x0D, 0x03, 0x10, 0x03, 0x11, 0x03, 0x17, 0x03, 0x2B, + 0x03, 0x2E, 0x03, 0x34, 0x03, 0x39, 0x03, 0x4F, 0x03, 0x5D, 0x03, 0x61, + 0x03, 0x62, 0x03, 0x63, 0x03, 0x6E, 0x03, 0x6F, 0x03, 0x70, 0x03, 0x71, + 0x03, 0x72, 0x03, 0x73, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x86, + 0x03, 0x8B, 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x90, 0x03, 0x92, 0x03, 0xA0, + 0x03, 0xA1, 0x03, 0xA2, 0x03, 0xA3, 0x03, 0xA6, 0x03, 0xAA, 0x03, 0xAB, + 0x03, 0xB1, 0x03, 0xBA, 0x03, 0xBB, 0x03, 0xBC, 0x03, 0xBD, 0x03, 0xBE, + 0x03, 0xBF, 0x03, 0xC0, 0x03, 0xC5, 0x03, 0xCC, 0x03, 0xD5, 0x03, 0xD7, + 0x03, 0xDC, 0x03, 0xDD, 0x03, 0xE0, 0x03, 0xE1, 0x03, 0xE5, 0x03, 0xEB, + 0x03, 0xEE, 0x04, 0x02, 0x04, 0x05, 0x04, 0x9C, 0x04, 0xB6, 0x04, 0xB7, + 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, 0x05, 0x61, 0x05, 0x91, + 0x05, 0x95, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xDF, 0x05, 0xE0, + 0x05, 0xE2, 0x05, 0xE3, 0x05, 0xE4, 0x06, 0x9E, 0x06, 0xB7, 0x06, 0xDA, + 0x06, 0xDB, 0x06, 0xE1, 0x06, 0xE4, 0x06, 0xE7, 0x06, 0xED, 0x09, 0xC3, + 0x0A, 0x12, 0x0A, 0x15, 0x0A, 0x2E, 0x0A, 0x85, 0x0A, 0x86, 0x0A, 0x87, + 0x0A, 0x8B, 0x0A, 0x8C, 0x0A, 0xAC, 0x0A, 0xB7, 0x0A, 0xB9, 0x0A, 0xBA, + 0x0A, 0xE4, 0x0A, 0xE7, 0x0A, 0xE8, 0x0A, 0xE9, 0x0A, 0xEB, 0x0A, 0xEC, + 0x0A, 0xED, 0x0A, 0xEE, 0x0A, 0xF0, 0x0B, 0x01, 0x0B, 0x02, 0x0B, 0x18, + 0x0B, 0x19, 0x0B, 0x1A, 0x0B, 0x1D, 0x0B, 0x1E, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x96, 0x00, 0x48, 0x07, 0xAA, + 0x07, 0xAB, 0x07, 0xAC, 0x07, 0xAD, 0x07, 0xAE, 0x07, 0xAF, 0x07, 0xB0, + 0x07, 0xB1, 0x07, 0xB2, 0x07, 0xB3, 0x07, 0xB4, 0x07, 0xB5, 0x07, 0xB6, + 0x07, 0xB7, 0x07, 0xB8, 0x07, 0xB9, 0x07, 0xBA, 0x07, 0xBB, 0x07, 0xBC, + 0x07, 0xBD, 0x07, 0xBE, 0x07, 0xBF, 0x07, 0xC0, 0x07, 0xC1, 0x07, 0xC2, + 0x07, 0xC3, 0x07, 0xC4, 0x07, 0xC5, 0x07, 0xC6, 0x07, 0xC7, 0x07, 0xC8, + 0x07, 0xC9, 0x07, 0xCA, 0x07, 0xCB, 0x07, 0xCC, 0x07, 0xCD, 0x07, 0xCE, + 0x07, 0xCF, 0x07, 0xD0, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, + 0x07, 0xD5, 0x07, 0xD6, 0x07, 0xD7, 0x07, 0xD8, 0x07, 0xD8, 0x07, 0xD9, + 0x07, 0xDA, 0x07, 0xDB, 0x07, 0xDC, 0x07, 0xDD, 0x07, 0xDF, 0x07, 0xE0, + 0x07, 0xD9, 0x07, 0xDA, 0x07, 0xDB, 0x07, 0xDC, 0x07, 0xDD, 0x07, 0xDF, + 0x07, 0xE0, 0x07, 0xDE, 0x07, 0xE4, 0x07, 0xE5, 0x07, 0xE1, 0x07, 0xE2, + 0x07, 0xE3, 0x07, 0xE4, 0x07, 0xE5, 0x07, 0xE6, 0x07, 0xE7, 0x00, 0x01, + 0x00, 0x48, 0x00, 0x02, 0x00, 0x41, 0x00, 0x49, 0x00, 0x54, 0x00, 0x5F, + 0x00, 0x89, 0x00, 0x8D, 0x00, 0x97, 0x00, 0xA1, 0x00, 0xC5, 0x01, 0x0A, + 0x01, 0x0F, 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, 0x01, 0x77, + 0x01, 0x7E, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, 0x01, 0xC8, + 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x3B, 0x05, 0x3C, + 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, + 0x05, 0x45, 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, 0x05, 0x49, 0x05, 0x4A, + 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x91, 0x05, 0x95, 0x05, 0xAB, 0x05, 0xB1, + 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEE, 0x05, 0xF0, 0x05, 0xF1, + 0x05, 0xF2, 0x05, 0xF3, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xFB, 0x05, 0xFD, + 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x87, 0x07, 0x06, 0x07, 0x0B, + 0x07, 0x18, 0x07, 0x19, 0x07, 0x1A, 0x07, 0x1E, 0x07, 0x23, 0x07, 0x30, + 0x07, 0x31, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x94, 0x00, 0x47, 0x07, 0x6D, 0x07, 0x6E, 0x07, 0x6F, 0x07, 0x70, + 0x07, 0x71, 0x07, 0x72, 0x07, 0x73, 0x07, 0x74, 0x07, 0x75, 0x07, 0x76, + 0x07, 0x77, 0x07, 0x78, 0x07, 0x79, 0x07, 0x7A, 0x07, 0x7B, 0x07, 0x7C, + 0x07, 0x7D, 0x07, 0x7E, 0x07, 0x7F, 0x07, 0x80, 0x07, 0x81, 0x07, 0x82, + 0x07, 0x83, 0x07, 0x84, 0x07, 0x85, 0x07, 0x86, 0x07, 0x87, 0x07, 0x88, + 0x07, 0x89, 0x07, 0x8A, 0x07, 0x8B, 0x07, 0x8C, 0x07, 0x8D, 0x07, 0x8E, + 0x07, 0x8F, 0x07, 0x90, 0x07, 0x91, 0x07, 0x92, 0x07, 0x93, 0x07, 0x94, + 0x07, 0x95, 0x07, 0x96, 0x07, 0x97, 0x07, 0x98, 0x07, 0x99, 0x07, 0x9A, + 0x07, 0x9A, 0x07, 0x9B, 0x07, 0x9C, 0x07, 0x9D, 0x07, 0x9E, 0x07, 0x9F, + 0x07, 0xA1, 0x07, 0xA2, 0x07, 0x9B, 0x07, 0x9C, 0x07, 0x9D, 0x07, 0x9E, + 0x07, 0x9F, 0x07, 0xA1, 0x07, 0xA2, 0x07, 0xA0, 0x07, 0xA6, 0x07, 0xA7, + 0x07, 0xA3, 0x07, 0xA4, 0x07, 0xA5, 0x07, 0xA6, 0x07, 0xA7, 0x07, 0xA8, + 0x07, 0xA9, 0x00, 0x01, 0x00, 0x47, 0x00, 0x02, 0x00, 0x41, 0x00, 0x49, + 0x00, 0x54, 0x00, 0x5F, 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, + 0x01, 0x0A, 0x01, 0x0F, 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, + 0x01, 0x77, 0x01, 0x7E, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, + 0x01, 0xC8, 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x3B, + 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, + 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, 0x05, 0x49, + 0x05, 0x4A, 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x91, 0x05, 0x95, 0x05, 0xAB, + 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEE, 0x05, 0xF0, + 0x05, 0xF1, 0x05, 0xF2, 0x05, 0xF3, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xFB, + 0x05, 0xFD, 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x87, 0x07, 0x06, + 0x07, 0x0B, 0x07, 0x18, 0x07, 0x19, 0x07, 0x1A, 0x07, 0x1E, 0x07, 0x23, + 0x07, 0x30, 0x07, 0x31, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x62, 0x00, 0x2E, 0x00, 0xEA, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xED, 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, 0x00, 0xF2, + 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, + 0x00, 0xF9, 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, + 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, + 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x02, 0xEF, + 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, + 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, + 0x03, 0x77, 0x00, 0x02, 0x00, 0x07, 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0xC7, 0x00, 0xD7, 0x00, 0x01, 0x00, 0xDC, 0x00, 0xE9, 0x00, 0x12, + 0x02, 0xE0, 0x02, 0xE3, 0x00, 0x20, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x24, + 0x02, 0xE7, 0x02, 0xEE, 0x00, 0x25, 0x03, 0x76, 0x03, 0x76, 0x00, 0x2D, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x40, + 0x00, 0x1D, 0x07, 0xE8, 0x07, 0xE9, 0x07, 0xEA, 0x07, 0xEB, 0x07, 0xEC, + 0x07, 0xED, 0x07, 0xEE, 0x07, 0xEF, 0x07, 0xF0, 0x07, 0xF1, 0x07, 0xF2, + 0x07, 0xF3, 0x07, 0xF4, 0x07, 0xF5, 0x07, 0xF6, 0x07, 0xFD, 0x07, 0xFE, + 0x07, 0xFB, 0x07, 0xFC, 0x08, 0x02, 0x08, 0x01, 0x07, 0xFF, 0x08, 0x00, + 0x07, 0xF8, 0x07, 0xF9, 0x06, 0x9F, 0x06, 0xB8, 0x07, 0xF7, 0x07, 0xFA, + 0x00, 0x01, 0x00, 0x1D, 0x00, 0x93, 0x00, 0x9D, 0x01, 0x10, 0x01, 0x1B, + 0x01, 0x2F, 0x01, 0x82, 0x01, 0x92, 0x02, 0xD9, 0x02, 0xE9, 0x02, 0xF6, + 0x03, 0x0D, 0x03, 0x5D, 0x03, 0x6E, 0x03, 0x81, 0x03, 0x8B, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xCE, 0x05, 0xCF, 0x05, 0xD0, + 0x05, 0xD1, 0x05, 0xDB, 0x05, 0xE2, 0x06, 0x9E, 0x06, 0xB7, 0x06, 0xE7, + 0x0A, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x6A, 0x00, 0x32, 0x00, 0xEA, 0x00, 0xEB, 0x00, 0xEC, 0x00, 0xED, + 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, 0x00, 0xF2, 0x00, 0xF3, + 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, 0x00, 0xF9, + 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, 0x00, 0xFF, + 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, + 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x02, 0xEF, 0x02, 0xF0, + 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, 0x02, 0xF6, + 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, 0x03, 0x77, + 0x05, 0x47, 0x05, 0x57, 0x07, 0x91, 0x07, 0xCF, 0x00, 0x02, 0x00, 0x0B, + 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x00, 0x00, 0xC7, 0x00, 0xD7, 0x00, 0x01, + 0x00, 0xDC, 0x00, 0xE9, 0x00, 0x12, 0x02, 0xE0, 0x02, 0xE3, 0x00, 0x20, + 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x24, 0x02, 0xE7, 0x02, 0xEE, 0x00, 0x25, + 0x03, 0x76, 0x03, 0x76, 0x00, 0x2D, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x2E, + 0x05, 0x4D, 0x05, 0x4D, 0x00, 0x2F, 0x07, 0x87, 0x07, 0x87, 0x00, 0x30, + 0x07, 0xC5, 0x07, 0xC5, 0x00, 0x31, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x00, 0x46, 0x00, 0x20, 0x05, 0x49, 0x05, 0x4A, + 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x59, 0x05, 0x5A, 0x05, 0x5B, 0x05, 0x5C, + 0x06, 0x45, 0x06, 0x47, 0x06, 0x4A, 0x06, 0x4E, 0x06, 0x76, 0x06, 0x78, + 0x06, 0x7B, 0x06, 0x7F, 0x06, 0x8E, 0x06, 0x90, 0x06, 0x93, 0x06, 0x97, + 0x06, 0xA7, 0x06, 0xA9, 0x06, 0xAC, 0x06, 0xB0, 0x07, 0x93, 0x07, 0x94, + 0x07, 0x95, 0x07, 0x96, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, + 0x00, 0x01, 0x00, 0x20, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x43, 0x05, 0x46, + 0x05, 0x50, 0x05, 0x51, 0x05, 0x53, 0x05, 0x56, 0x06, 0x44, 0x06, 0x46, + 0x06, 0x49, 0x06, 0x4D, 0x06, 0x75, 0x06, 0x77, 0x06, 0x7A, 0x06, 0x7E, + 0x06, 0x8D, 0x06, 0x8F, 0x06, 0x92, 0x06, 0x96, 0x06, 0xA6, 0x06, 0xA8, + 0x06, 0xAB, 0x06, 0xAF, 0x07, 0x8A, 0x07, 0x8B, 0x07, 0x8D, 0x07, 0x90, + 0x07, 0xC8, 0x07, 0xC9, 0x07, 0xCB, 0x07, 0xCE, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x01, 0x8C, 0x00, 0xC3, 0x00, 0x97, + 0x00, 0x98, 0x00, 0x99, 0x00, 0x9A, 0x00, 0x9B, 0x00, 0x9C, 0x00, 0x9D, + 0x00, 0x9E, 0x00, 0x9F, 0x00, 0xA0, 0x00, 0xEA, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xED, 0x00, 0xEE, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xF1, 0x00, 0xF2, + 0x00, 0xF3, 0x00, 0xF4, 0x00, 0xF5, 0x00, 0xF6, 0x00, 0xF7, 0x00, 0xF8, + 0x00, 0xF9, 0x00, 0xFA, 0x00, 0xFB, 0x00, 0xFC, 0x00, 0xFD, 0x00, 0xFE, + 0x00, 0xFF, 0x01, 0x00, 0x01, 0x01, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, + 0x01, 0x05, 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x09, 0x34, + 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, + 0x02, 0x29, 0x02, 0x2A, 0x02, 0x2B, 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, + 0x02, 0x2F, 0x02, 0x30, 0x02, 0x31, 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, + 0x02, 0x35, 0x02, 0x36, 0x02, 0x37, 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, + 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, + 0x02, 0x41, 0x02, 0x23, 0x02, 0x88, 0x02, 0x8B, 0x02, 0x8C, 0x02, 0xEF, + 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, + 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, 0x02, 0xF9, 0x02, 0xFA, 0x02, 0xFB, + 0x03, 0x77, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, 0x03, 0x8B, + 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, 0x03, 0xB2, + 0x03, 0xBA, 0x03, 0xCF, 0x03, 0xC3, 0x03, 0xB4, 0x03, 0xC1, 0x03, 0xB3, + 0x03, 0xB7, 0x03, 0xCB, 0x03, 0xB5, 0x03, 0xCE, 0x03, 0xC9, 0x03, 0xCD, + 0x03, 0xB6, 0x03, 0xBF, 0x03, 0xBB, 0x03, 0xBD, 0x03, 0xBE, 0x03, 0xB9, + 0x03, 0xCA, 0x03, 0xBC, 0x03, 0xD1, 0x03, 0xB8, 0x03, 0xD0, 0x03, 0xCC, + 0x03, 0xC0, 0x03, 0xC2, 0x03, 0xC4, 0x03, 0xC6, 0x03, 0xC7, 0x03, 0xC8, + 0x03, 0xC5, 0x05, 0x48, 0x05, 0x49, 0x05, 0x4A, 0x05, 0x4B, 0x05, 0x4C, + 0x05, 0x58, 0x05, 0x59, 0x05, 0x5A, 0x05, 0x5B, 0x05, 0x5C, 0x06, 0x42, + 0x06, 0x45, 0x06, 0x47, 0x06, 0x4A, 0x06, 0x4E, 0x06, 0x73, 0x06, 0x76, + 0x06, 0x78, 0x06, 0x7B, 0x06, 0x7F, 0x06, 0x8B, 0x06, 0x8E, 0x06, 0x90, + 0x06, 0x93, 0x06, 0x97, 0x06, 0xA4, 0x06, 0xA7, 0x06, 0xA9, 0x06, 0xAC, + 0x06, 0xB0, 0x07, 0x92, 0x07, 0x93, 0x07, 0x94, 0x07, 0x95, 0x07, 0x96, + 0x07, 0xD0, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, 0x08, 0x47, + 0x08, 0x48, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, 0x08, 0x9D, 0x08, 0x9F, + 0x08, 0xA0, 0x08, 0xA1, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA4, 0x08, 0xA5, + 0x08, 0xA6, 0x08, 0xA7, 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, + 0x08, 0xAC, 0x08, 0xB8, 0x00, 0x02, 0x00, 0x3D, 0x00, 0x8D, 0x00, 0x96, + 0x00, 0x00, 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x0A, 0x00, 0xC7, 0x00, 0xD7, + 0x00, 0x0B, 0x00, 0xDC, 0x00, 0xE9, 0x00, 0x1C, 0x01, 0x9A, 0x01, 0x9A, + 0x00, 0x2A, 0x01, 0xFB, 0x02, 0x17, 0x00, 0x2B, 0x02, 0x19, 0x02, 0x1A, + 0x00, 0x48, 0x02, 0x1C, 0x02, 0x1C, 0x00, 0x4A, 0x02, 0x87, 0x02, 0x87, + 0x00, 0x4B, 0x02, 0x90, 0x02, 0x91, 0x00, 0x4C, 0x02, 0xE0, 0x02, 0xE3, + 0x00, 0x4E, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x52, 0x02, 0xE7, 0x02, 0xEE, + 0x00, 0x53, 0x03, 0x76, 0x03, 0x76, 0x00, 0x5B, 0x03, 0x78, 0x03, 0x79, + 0x00, 0x5C, 0x03, 0x7F, 0x03, 0x86, 0x00, 0x5E, 0x03, 0x91, 0x03, 0x94, + 0x00, 0x66, 0x03, 0x96, 0x03, 0xB1, 0x00, 0x6A, 0x05, 0x3C, 0x05, 0x3C, + 0x00, 0x86, 0x05, 0x3F, 0x05, 0x40, 0x00, 0x87, 0x05, 0x43, 0x05, 0x43, + 0x00, 0x89, 0x05, 0x46, 0x05, 0x46, 0x00, 0x8A, 0x05, 0x4E, 0x05, 0x4E, + 0x00, 0x8B, 0x05, 0x50, 0x05, 0x51, 0x00, 0x8C, 0x05, 0x53, 0x05, 0x53, + 0x00, 0x8E, 0x05, 0x56, 0x05, 0x56, 0x00, 0x8F, 0x06, 0x41, 0x06, 0x41, + 0x00, 0x90, 0x06, 0x44, 0x06, 0x44, 0x00, 0x91, 0x06, 0x46, 0x06, 0x46, + 0x00, 0x92, 0x06, 0x49, 0x06, 0x49, 0x00, 0x93, 0x06, 0x4D, 0x06, 0x4D, + 0x00, 0x94, 0x06, 0x72, 0x06, 0x72, 0x00, 0x95, 0x06, 0x75, 0x06, 0x75, + 0x00, 0x96, 0x06, 0x77, 0x06, 0x77, 0x00, 0x97, 0x06, 0x7A, 0x06, 0x7A, + 0x00, 0x98, 0x06, 0x7E, 0x06, 0x7E, 0x00, 0x99, 0x06, 0x8A, 0x06, 0x8A, + 0x00, 0x9A, 0x06, 0x8D, 0x06, 0x8D, 0x00, 0x9B, 0x06, 0x8F, 0x06, 0x8F, + 0x00, 0x9C, 0x06, 0x92, 0x06, 0x92, 0x00, 0x9D, 0x06, 0x96, 0x06, 0x96, + 0x00, 0x9E, 0x06, 0xA3, 0x06, 0xA3, 0x00, 0x9F, 0x06, 0xA6, 0x06, 0xA6, + 0x00, 0xA0, 0x06, 0xA8, 0x06, 0xA8, 0x00, 0xA1, 0x06, 0xAB, 0x06, 0xAB, + 0x00, 0xA2, 0x06, 0xAF, 0x06, 0xAF, 0x00, 0xA3, 0x07, 0x88, 0x07, 0x88, + 0x00, 0xA4, 0x07, 0x8A, 0x07, 0x8B, 0x00, 0xA5, 0x07, 0x8D, 0x07, 0x8D, + 0x00, 0xA7, 0x07, 0x90, 0x07, 0x90, 0x00, 0xA8, 0x07, 0xC6, 0x07, 0xC6, + 0x00, 0xA9, 0x07, 0xC8, 0x07, 0xC9, 0x00, 0xAA, 0x07, 0xCB, 0x07, 0xCB, + 0x00, 0xAC, 0x07, 0xCE, 0x07, 0xCE, 0x00, 0xAD, 0x08, 0x13, 0x08, 0x13, + 0x00, 0xAE, 0x08, 0x17, 0x08, 0x17, 0x00, 0xAF, 0x08, 0x4E, 0x08, 0x50, + 0x00, 0xB0, 0x08, 0x5B, 0x08, 0x5B, 0x00, 0xB3, 0x08, 0x69, 0x08, 0x6A, + 0x00, 0xB4, 0x08, 0x7F, 0x08, 0x8A, 0x00, 0xB6, 0x08, 0xAE, 0x08, 0xAE, + 0x00, 0xC2, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x06, 0xFF, + 0x00, 0x03, 0x03, 0x16, 0x05, 0xDC, 0x00, 0x01, 0x00, 0x01, 0x01, 0x2C, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x0E, + 0x00, 0x04, 0x06, 0x16, 0x06, 0x17, 0x06, 0x16, 0x06, 0x17, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x02, 0x01, 0x41, 0x01, 0xFB, 0x03, 0x16, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x24, 0x00, 0x0A, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x40, 0x00, 0x01, 0x00, 0x02, 0x01, 0x41, 0x03, 0x16, 0x00, 0x03, + 0x00, 0x01, 0x00, 0x1A, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x01, 0xFB, + 0x00, 0x02, 0x00, 0x03, 0x05, 0x3B, 0x05, 0x3D, 0x00, 0x00, 0x05, 0x3F, + 0x05, 0x41, 0x00, 0x03, 0x05, 0x43, 0x05, 0x46, 0x00, 0x06, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x16, 0x00, 0x08, + 0x05, 0x47, 0x05, 0x57, 0x06, 0x40, 0x06, 0x71, 0x06, 0x89, 0x06, 0xA2, + 0x07, 0x91, 0x07, 0xCF, 0x00, 0x01, 0x00, 0x08, 0x05, 0x3B, 0x05, 0x4D, + 0x06, 0x3F, 0x06, 0x70, 0x06, 0x88, 0x06, 0xA1, 0x07, 0x87, 0x07, 0xC5, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x80, + 0x00, 0x3D, 0x05, 0x4D, 0x05, 0x4E, 0x05, 0x4F, 0x05, 0x50, 0x05, 0x51, + 0x05, 0x52, 0x05, 0x53, 0x05, 0x54, 0x05, 0x55, 0x05, 0x56, 0x05, 0x59, + 0x05, 0x62, 0x05, 0x63, 0x05, 0x66, 0x05, 0x67, 0x05, 0x64, 0x05, 0x65, + 0x05, 0x68, 0x05, 0x69, 0x05, 0x6C, 0x05, 0x6D, 0x05, 0x6A, 0x05, 0x6B, + 0x05, 0x6E, 0x05, 0x6F, 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, + 0x05, 0x61, 0x05, 0x70, 0x05, 0x71, 0x05, 0x72, 0x05, 0x73, 0x05, 0x74, + 0x05, 0x75, 0x05, 0x76, 0x05, 0x77, 0x05, 0x78, 0x05, 0x79, 0x05, 0x7A, + 0x05, 0x7B, 0x05, 0x7C, 0x05, 0x7E, 0x05, 0x7F, 0x05, 0x80, 0x05, 0x81, + 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, 0x05, 0x85, 0x05, 0x86, 0x05, 0x87, + 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, 0x05, 0x7D, 0x05, 0x8B, 0x05, 0x8C, + 0x05, 0x8D, 0x05, 0x8E, 0x00, 0x02, 0x00, 0x11, 0x05, 0x3B, 0x05, 0x3D, + 0x00, 0x00, 0x05, 0x3F, 0x05, 0x41, 0x00, 0x03, 0x05, 0x43, 0x05, 0x46, + 0x00, 0x06, 0x05, 0x49, 0x05, 0x49, 0x00, 0x0A, 0x05, 0x9B, 0x05, 0x9D, + 0x00, 0x0B, 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x0E, 0x05, 0xA1, 0x05, 0xA2, + 0x00, 0x0F, 0x05, 0xA4, 0x05, 0xA9, 0x00, 0x11, 0x05, 0xB1, 0x05, 0xB1, + 0x00, 0x17, 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x18, 0x05, 0xDB, 0x05, 0xDC, + 0x00, 0x19, 0x05, 0xDF, 0x05, 0xE0, 0x00, 0x1B, 0x05, 0xE2, 0x05, 0xE2, + 0x00, 0x1D, 0x05, 0xEA, 0x06, 0x03, 0x00, 0x1E, 0x06, 0x09, 0x06, 0x0A, + 0x00, 0x38, 0x06, 0xEF, 0x06, 0xF0, 0x00, 0x3A, 0x06, 0xFB, 0x06, 0xFB, + 0x00, 0x3C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x80, 0x00, 0x3D, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, + 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, + 0x05, 0x49, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDF, 0x05, 0xE0, 0x05, 0xE2, + 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0x9D, 0x05, 0x9F, + 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA8, 0x05, 0xA9, 0x05, 0xA6, 0x05, 0xA7, + 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, 0x05, 0xED, + 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, 0x05, 0xF3, + 0x05, 0xF4, 0x05, 0xF5, 0x05, 0xF6, 0x06, 0x09, 0x05, 0xF7, 0x05, 0xF8, + 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, + 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, + 0x06, 0xEF, 0x06, 0xF0, 0x06, 0xFB, 0x00, 0x02, 0x00, 0x03, 0x05, 0x4D, + 0x05, 0x56, 0x00, 0x00, 0x05, 0x59, 0x05, 0x59, 0x00, 0x0A, 0x05, 0x5D, + 0x05, 0x8E, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x25, 0xFE, 0x00, 0x2B, 0x06, 0x25, 0x06, 0x26, 0x06, 0x27, + 0x06, 0x28, 0x06, 0x29, 0x06, 0x2A, 0x06, 0x2B, 0x06, 0x2C, 0x06, 0x2D, + 0x06, 0x2E, 0x06, 0x2F, 0x06, 0x30, 0x06, 0x31, 0x06, 0x32, 0x06, 0x33, + 0x06, 0x34, 0x06, 0x35, 0x06, 0x36, 0x06, 0x37, 0x06, 0x38, 0x06, 0x39, + 0x06, 0x3A, 0x06, 0x3B, 0x06, 0x3C, 0x06, 0x3D, 0x06, 0x3E, 0x06, 0x3F, + 0x06, 0x41, 0x06, 0x43, 0x06, 0x44, 0x06, 0x46, 0x06, 0x48, 0x06, 0x49, + 0x06, 0x4B, 0x06, 0x4C, 0x06, 0x4D, 0x06, 0x4F, 0x06, 0x50, 0x06, 0x51, + 0x06, 0x52, 0x06, 0x55, 0x06, 0x53, 0x06, 0x54, 0x00, 0x04, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x36, 0x00, 0x04, 0x00, 0x2C, + 0x00, 0x22, 0x00, 0x18, 0x00, 0x0E, 0x00, 0x01, 0x00, 0x04, 0x05, 0x9A, + 0x00, 0x02, 0x05, 0x93, 0x00, 0x01, 0x00, 0x04, 0x05, 0x99, 0x00, 0x02, + 0x05, 0x91, 0x00, 0x01, 0x00, 0x04, 0x05, 0x9A, 0x00, 0x02, 0x05, 0x98, + 0x00, 0x01, 0x00, 0x04, 0x05, 0x99, 0x00, 0x02, 0x05, 0x95, 0x00, 0x01, + 0x00, 0x04, 0x05, 0x91, 0x05, 0x93, 0x05, 0x95, 0x05, 0x98, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x78, 0x00, 0x03, + 0x02, 0x88, 0x02, 0x8B, 0x02, 0x8C, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x01, 0x14, 0x00, 0x02, 0x02, 0x8A, 0x02, 0x8A, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x1C, + 0x00, 0x0B, 0x02, 0x89, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, + 0x03, 0x8B, 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, + 0x00, 0x02, 0x00, 0x03, 0x02, 0x87, 0x02, 0x87, 0x00, 0x00, 0x03, 0x78, + 0x03, 0x79, 0x00, 0x01, 0x03, 0x7F, 0x03, 0x86, 0x00, 0x03, 0x00, 0x06, + 0x00, 0x08, 0x00, 0x04, 0x00, 0xD8, 0x00, 0xB6, 0x00, 0x2A, 0x00, 0x0E, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x3E, 0x00, 0x01, 0x00, 0x12, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x38, 0x00, 0x01, 0x00, 0x03, 0x02, 0x87, + 0x02, 0x90, 0x02, 0x91, 0x00, 0x03, 0x00, 0x01, 0x00, 0x22, 0x00, 0x01, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x02, + 0x00, 0x02, 0x03, 0x78, 0x03, 0x79, 0x00, 0x00, 0x03, 0x7F, 0x03, 0x86, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x11, 0x02, 0x55, 0x02, 0x5A, 0x00, 0x00, + 0x02, 0x5C, 0x02, 0x60, 0x00, 0x06, 0x02, 0x65, 0x02, 0x65, 0x00, 0x0B, + 0x02, 0x87, 0x02, 0x88, 0x00, 0x0C, 0x02, 0x8B, 0x02, 0x8C, 0x00, 0x0E, + 0x02, 0x90, 0x02, 0x91, 0x00, 0x10, 0x02, 0xD7, 0x02, 0xDD, 0x00, 0x12, + 0x02, 0xDF, 0x02, 0xFB, 0x00, 0x19, 0x03, 0x54, 0x03, 0x56, 0x00, 0x36, + 0x03, 0x5A, 0x03, 0x64, 0x00, 0x39, 0x03, 0x78, 0x03, 0x79, 0x00, 0x44, + 0x03, 0x7F, 0x03, 0x90, 0x00, 0x46, 0x03, 0xD2, 0x03, 0xD2, 0x00, 0x58, + 0x03, 0xD4, 0x03, 0xD7, 0x00, 0x59, 0x03, 0xD9, 0x03, 0xE5, 0x00, 0x5D, + 0x03, 0xE7, 0x03, 0xF5, 0x00, 0x6A, 0x03, 0xFA, 0x03, 0xFB, 0x00, 0x79, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x62, 0x00, 0x01, 0x00, 0x1A, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x01, 0x00, 0x01, + 0x02, 0xB1, 0x00, 0x01, 0x00, 0x02, 0x02, 0x87, 0x02, 0x89, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x40, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x36, 0x00, 0x01, 0x00, 0x15, 0x02, 0xB1, 0x02, 0xB2, + 0x02, 0xB3, 0x02, 0xB7, 0x02, 0xB9, 0x02, 0xBA, 0x02, 0xBB, 0x02, 0xC0, + 0x02, 0xC4, 0x02, 0xC5, 0x02, 0xC7, 0x02, 0xC8, 0x02, 0xC9, 0x02, 0xCA, + 0x02, 0xCB, 0x02, 0xCD, 0x02, 0xCE, 0x02, 0xCF, 0x02, 0xD1, 0x02, 0xD4, + 0x02, 0xD5, 0x00, 0x01, 0x00, 0x01, 0x02, 0x87, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x6E, 0x00, 0x34, 0x05, 0xFF, + 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, 0x05, 0xA8, 0x05, 0xA9, + 0x05, 0xAA, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, 0x05, 0xC1, + 0x05, 0xC2, 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, 0x05, 0xC7, + 0x05, 0xE0, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, + 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, + 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, 0x07, 0x1E, 0x07, 0x1F, 0x07, 0x20, + 0x07, 0x21, 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, 0x07, 0x26, + 0x07, 0x27, 0x07, 0x2F, 0x07, 0x2C, 0x07, 0x2D, 0x07, 0x2E, 0x07, 0x28, + 0x07, 0x29, 0x07, 0x2A, 0x07, 0x2B, 0x00, 0x02, 0x00, 0x0A, 0x03, 0xDF, + 0x03, 0xDF, 0x00, 0x00, 0x05, 0x9B, 0x05, 0x9D, 0x00, 0x01, 0x05, 0x9F, + 0x05, 0x9F, 0x00, 0x04, 0x05, 0xA1, 0x05, 0xA3, 0x00, 0x05, 0x05, 0xB1, + 0x05, 0xB4, 0x00, 0x08, 0x05, 0xB6, 0x05, 0xBC, 0x00, 0x0C, 0x05, 0xDF, + 0x05, 0xDF, 0x00, 0x13, 0x05, 0xEA, 0x05, 0xF6, 0x00, 0x14, 0x06, 0x09, + 0x06, 0x09, 0x00, 0x21, 0x07, 0x06, 0x07, 0x17, 0x00, 0x22, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x45, 0x09, 0x1A, 0x08, 0xFE, 0x08, 0xE4, 0x08, 0xCA, + 0x08, 0xB0, 0x08, 0x96, 0x08, 0x5C, 0x08, 0x48, 0x08, 0x32, 0x08, 0x1A, + 0x08, 0x00, 0x07, 0xE2, 0x07, 0xCE, 0x07, 0xB8, 0x07, 0xA0, 0x07, 0x86, + 0x07, 0x68, 0x07, 0x54, 0x07, 0x3E, 0x07, 0x26, 0x07, 0x0C, 0x05, 0x46, + 0x05, 0x2A, 0x05, 0x16, 0x05, 0x04, 0x04, 0xF4, 0x04, 0xE2, 0x04, 0xCE, + 0x04, 0xB8, 0x04, 0xA0, 0x04, 0x8E, 0x04, 0x7C, 0x04, 0x68, 0x04, 0x52, + 0x04, 0x3A, 0x04, 0x20, 0x04, 0x0C, 0x03, 0xF6, 0x03, 0xDE, 0x03, 0xC8, + 0x03, 0xB0, 0x03, 0x96, 0x03, 0x7E, 0x03, 0x64, 0x03, 0x48, 0x03, 0x0E, + 0x02, 0xF2, 0x02, 0xDA, 0x02, 0xC0, 0x02, 0xA4, 0x02, 0x86, 0x02, 0x6A, + 0x02, 0x52, 0x02, 0x38, 0x02, 0x1C, 0x01, 0xFE, 0x01, 0xE2, 0x01, 0xCA, + 0x01, 0xB0, 0x01, 0x94, 0x01, 0x76, 0x01, 0x34, 0x01, 0x1E, 0x01, 0x08, + 0x00, 0xF0, 0x00, 0xDA, 0x00, 0xC2, 0x00, 0xA8, 0x00, 0x90, 0x00, 0x03, + 0x00, 0x02, 0x0A, 0xF8, 0x0A, 0xF8, 0x00, 0x01, 0x00, 0xB8, 0x00, 0x02, + 0x04, 0xAC, 0x0A, 0xF8, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x03, 0x04, 0x94, 0x0A, 0xE0, 0x0A, 0xE0, 0x00, 0x01, 0x00, 0xA0, + 0x00, 0x02, 0x04, 0x94, 0x0A, 0xE0, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x03, 0x04, 0x7A, 0x0A, 0xC6, 0x0A, 0xC6, 0x00, 0x01, + 0x00, 0x86, 0x00, 0x01, 0x0A, 0xC6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x74, 0x00, 0x01, 0x00, 0x6E, 0x00, 0x02, + 0x04, 0x62, 0x0A, 0xAE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x02, 0x04, 0x4C, 0x00, 0x5E, 0x00, 0x01, 0x00, 0x58, 0x00, 0x02, + 0x04, 0x4C, 0x0A, 0x98, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x02, 0x04, 0x34, 0x00, 0x46, 0x00, 0x01, 0x00, 0x40, 0x00, 0x01, + 0x0A, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, + 0x0A, 0x6A, 0x0A, 0x6A, 0x00, 0x01, 0x00, 0x2A, 0x00, 0x01, 0x0A, 0x6A, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x00, 0x1A, + 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x0A, 0x54, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x03, 0xDF, 0x00, 0x02, 0x00, 0x06, + 0x05, 0x3C, 0x05, 0x3D, 0x00, 0x00, 0x05, 0x3F, 0x05, 0x41, 0x00, 0x02, + 0x05, 0x43, 0x05, 0x46, 0x00, 0x05, 0x05, 0x48, 0x05, 0x4C, 0x00, 0x09, + 0x05, 0x4E, 0x05, 0x56, 0x00, 0x0E, 0x05, 0x58, 0x05, 0x5C, 0x00, 0x17, + 0x00, 0x03, 0x00, 0x07, 0x06, 0xFE, 0x06, 0xFE, 0x06, 0xFE, 0x06, 0xFE, + 0x06, 0xFE, 0x06, 0xFE, 0x00, 0x82, 0x00, 0x01, 0x06, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x06, 0x06, 0xE0, + 0x06, 0xE0, 0x06, 0xE0, 0x06, 0xE0, 0x06, 0xE0, 0x00, 0x64, 0x00, 0x01, + 0x05, 0xE6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x05, 0x06, 0xC4, 0x06, 0xC4, 0x06, 0xC4, 0x06, 0xC4, 0x00, 0x48, + 0x00, 0x01, 0x05, 0xCA, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x04, 0x06, 0xAA, 0x06, 0xAA, 0x06, 0xAA, 0x00, 0x2E, + 0x00, 0x01, 0x05, 0xB0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x03, 0x06, 0x92, 0x06, 0x92, 0x00, 0x16, 0x00, 0x01, + 0x05, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, + 0x00, 0x01, 0x05, 0xA6, 0x00, 0x03, 0x00, 0x07, 0x06, 0x76, 0x06, 0x76, + 0x06, 0x76, 0x06, 0x76, 0x06, 0x76, 0x06, 0x76, 0x00, 0x82, 0x00, 0x01, + 0x05, 0xF6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x06, 0x06, 0x58, 0x06, 0x58, 0x06, 0x58, 0x06, 0x58, 0x06, 0x58, + 0x00, 0x64, 0x00, 0x01, 0x05, 0xD8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x05, 0x06, 0x3C, 0x06, 0x3C, 0x06, 0x3C, + 0x06, 0x3C, 0x00, 0x48, 0x00, 0x01, 0x05, 0xBC, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x04, 0x06, 0x22, 0x06, 0x22, + 0x06, 0x22, 0x00, 0x2E, 0x00, 0x01, 0x05, 0xA2, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, 0x06, 0x0A, 0x06, 0x0A, + 0x00, 0x16, 0x00, 0x01, 0x05, 0x8A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x05, 0xA8, 0x00, 0x03, 0x00, 0x07, + 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEE, + 0x00, 0x82, 0x00, 0x01, 0x06, 0x24, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x06, 0x05, 0xD0, 0x05, 0xD0, 0x05, 0xD0, + 0x05, 0xD0, 0x05, 0xD0, 0x00, 0x64, 0x00, 0x01, 0x06, 0x06, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x05, 0x05, 0xB4, + 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xB4, 0x00, 0x48, 0x00, 0x01, 0x05, 0xEA, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x04, + 0x05, 0x9A, 0x05, 0x9A, 0x05, 0x9A, 0x00, 0x2E, 0x00, 0x01, 0x05, 0xD0, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, + 0x05, 0x82, 0x05, 0x82, 0x00, 0x16, 0x00, 0x01, 0x05, 0xB8, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x05, 0xA4, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x02, 0x00, 0x06, 0x05, 0xA4, + 0x05, 0xAA, 0x00, 0x00, 0x05, 0xBD, 0x05, 0xC7, 0x00, 0x07, 0x05, 0xE0, + 0x05, 0xE0, 0x00, 0x12, 0x05, 0xF7, 0x06, 0x03, 0x00, 0x13, 0x06, 0x0A, + 0x06, 0x0A, 0x00, 0x20, 0x07, 0x1E, 0x07, 0x2F, 0x00, 0x21, 0x00, 0x03, + 0x00, 0x03, 0x01, 0xF4, 0x01, 0xF4, 0x03, 0x00, 0x00, 0x01, 0x02, 0xC6, + 0x00, 0x03, 0x01, 0xF4, 0x01, 0xF4, 0x03, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, 0x01, 0xD8, 0x01, 0xD8, 0x02, 0xE4, + 0x00, 0x01, 0x02, 0xAA, 0x00, 0x02, 0x01, 0xD8, 0x02, 0xE4, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x03, 0x01, 0xBE, 0x01, 0xBE, + 0x02, 0xCA, 0x00, 0x01, 0x02, 0x90, 0x00, 0x01, 0x02, 0xCA, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, 0x01, 0xA6, 0x02, 0xB2, + 0x00, 0x01, 0x02, 0x78, 0x00, 0x03, 0x01, 0xA6, 0x01, 0xA6, 0x02, 0xB2, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, 0x01, 0x8C, + 0x02, 0x98, 0x00, 0x01, 0x02, 0x5E, 0x00, 0x02, 0x01, 0x8C, 0x02, 0x98, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x02, 0x01, 0x74, + 0x02, 0x80, 0x00, 0x01, 0x02, 0x46, 0x00, 0x01, 0x02, 0x80, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x02, 0x6A, 0x00, 0x01, + 0x02, 0x30, 0x00, 0x03, 0x01, 0x5E, 0x01, 0x5E, 0x02, 0x6A, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x02, 0x52, 0x00, 0x01, + 0x02, 0x18, 0x00, 0x02, 0x01, 0x46, 0x02, 0x52, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x02, 0x3C, 0x00, 0x01, 0x02, 0x02, + 0x00, 0x01, 0x02, 0x3C, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x01, 0xEE, 0x00, 0x05, 0x01, 0xEE, 0x01, 0xEE, + 0x01, 0xEE, 0x01, 0xEE, 0x02, 0x28, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0xD4, 0x00, 0x04, 0x01, 0xD4, + 0x01, 0xD4, 0x01, 0xD4, 0x02, 0x0E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x01, 0xBC, 0x00, 0x03, 0x01, 0xBC, + 0x01, 0xBC, 0x01, 0xF6, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x01, 0xA6, 0x00, 0x02, 0x01, 0xA6, 0x01, 0xE0, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x01, 0x92, 0x00, 0x01, 0x01, 0xCC, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x03, 0x00, 0x01, 0x00, 0xC8, 0x00, 0x01, 0x01, 0x80, 0x00, 0x02, + 0x01, 0x80, 0x01, 0xBA, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x01, 0x6E, + 0x01, 0x6E, 0x01, 0x6E, 0x01, 0x6E, 0x00, 0xB6, 0x00, 0x01, 0x01, 0x6E, + 0x00, 0x01, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x01, 0x56, + 0x01, 0x56, 0x01, 0x56, 0x00, 0x9E, 0x00, 0x01, 0x01, 0x56, 0x00, 0x01, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x01, 0x40, 0x01, 0x40, + 0x00, 0x88, 0x00, 0x01, 0x01, 0x40, 0x00, 0x01, 0x01, 0x7A, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x02, 0x01, 0x2C, 0x00, 0x74, 0x00, 0x01, 0x01, 0x2C, + 0x00, 0x01, 0x01, 0x66, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x62, + 0x00, 0x01, 0x01, 0x1A, 0x00, 0x01, 0x01, 0x54, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x01, 0x01, 0x44, 0x00, 0x01, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x03, 0x00, 0x01, 0x01, 0x32, 0x00, 0x01, + 0x00, 0xF8, 0x00, 0x03, 0x00, 0x26, 0x00, 0x26, 0x00, 0x40, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x01, 0x01, 0x1E, 0x00, 0x01, 0x00, 0xE4, 0x00, 0x02, + 0x00, 0x12, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x06, 0xEF, + 0x06, 0xFE, 0x00, 0x00, 0x00, 0x03, 0x00, 0x01, 0x01, 0x02, 0x00, 0x01, + 0x00, 0xC8, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x00, 0x02, 0x00, 0x1E, + 0x01, 0xFB, 0x02, 0x17, 0x00, 0x00, 0x02, 0x19, 0x02, 0x22, 0x00, 0x1D, + 0x02, 0x42, 0x02, 0x64, 0x00, 0x27, 0x02, 0x66, 0x02, 0x85, 0x00, 0x4A, + 0x02, 0x87, 0x02, 0x87, 0x00, 0x6A, 0x02, 0x8D, 0x02, 0x8D, 0x00, 0x6B, + 0x02, 0x8F, 0x02, 0xB2, 0x00, 0x6C, 0x02, 0xB4, 0x02, 0xB7, 0x00, 0x90, + 0x02, 0xB9, 0x02, 0xBE, 0x00, 0x94, 0x02, 0xC0, 0x02, 0xC5, 0x00, 0x9A, + 0x02, 0xC7, 0x02, 0xC9, 0x00, 0xA0, 0x02, 0xCB, 0x02, 0xCF, 0x00, 0xA3, + 0x02, 0xD1, 0x02, 0xDE, 0x00, 0xA8, 0x02, 0xE0, 0x02, 0xEE, 0x00, 0xB6, + 0x02, 0xFC, 0x02, 0xFC, 0x00, 0xC5, 0x02, 0xFE, 0x03, 0x54, 0x00, 0xC6, + 0x03, 0x56, 0x03, 0x5A, 0x01, 0x1D, 0x03, 0x5C, 0x03, 0x76, 0x01, 0x22, + 0x03, 0x78, 0x03, 0x86, 0x01, 0x3D, 0x03, 0x91, 0x03, 0x94, 0x01, 0x4C, + 0x03, 0x96, 0x03, 0xB1, 0x01, 0x50, 0x03, 0xD2, 0x03, 0xF6, 0x01, 0x6C, + 0x03, 0xFB, 0x04, 0x06, 0x01, 0x91, 0x04, 0x53, 0x05, 0x18, 0x01, 0x9D, + 0x05, 0x1A, 0x05, 0x1A, 0x02, 0x63, 0x07, 0x04, 0x07, 0x04, 0x02, 0x64, + 0x09, 0x05, 0x09, 0x0C, 0x02, 0x65, 0x09, 0x35, 0x09, 0x6C, 0x02, 0x6D, + 0x09, 0xA4, 0x09, 0xC7, 0x02, 0xA5, 0x09, 0xCD, 0x09, 0xE4, 0x02, 0xC9, + 0x00, 0x02, 0x00, 0x09, 0x05, 0x9B, 0x05, 0x9D, 0x00, 0x00, 0x05, 0x9F, + 0x05, 0x9F, 0x00, 0x03, 0x05, 0xA1, 0x05, 0xA3, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB4, 0x00, 0x07, 0x05, 0xB6, 0x05, 0xBC, 0x00, 0x0B, 0x05, 0xDF, + 0x05, 0xDF, 0x00, 0x12, 0x05, 0xEA, 0x05, 0xF6, 0x00, 0x13, 0x06, 0x09, + 0x06, 0x09, 0x00, 0x20, 0x07, 0x06, 0x07, 0x17, 0x00, 0x21, 0x00, 0x02, + 0x00, 0x20, 0x00, 0x02, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x96, + 0x00, 0x08, 0x00, 0xA1, 0x00, 0xC5, 0x00, 0x94, 0x00, 0xC7, 0x00, 0xE9, + 0x00, 0xB9, 0x01, 0x0A, 0x01, 0x89, 0x00, 0xDC, 0x01, 0x8C, 0x01, 0xA3, + 0x01, 0x5C, 0x01, 0xA5, 0x01, 0xEE, 0x01, 0x74, 0x01, 0xF0, 0x01, 0xFA, + 0x01, 0xBE, 0x03, 0xF7, 0x03, 0xF9, 0x01, 0xC9, 0x04, 0x07, 0x04, 0x52, + 0x01, 0xCC, 0x05, 0x1B, 0x05, 0x38, 0x02, 0x18, 0x05, 0x3B, 0x05, 0x5C, + 0x02, 0x36, 0x05, 0x8F, 0x05, 0x8F, 0x02, 0x58, 0x05, 0x91, 0x05, 0x9A, + 0x02, 0x59, 0x05, 0xAE, 0x05, 0xAE, 0x02, 0x63, 0x06, 0x1A, 0x06, 0x1A, + 0x02, 0x64, 0x06, 0xBA, 0x06, 0xBB, 0x02, 0x65, 0x06, 0xBD, 0x06, 0xBD, + 0x02, 0x67, 0x06, 0xBF, 0x06, 0xC0, 0x02, 0x68, 0x06, 0xC6, 0x06, 0xC6, + 0x02, 0x6A, 0x06, 0xC8, 0x06, 0xCB, 0x02, 0x6B, 0x06, 0xCE, 0x06, 0xD5, + 0x02, 0x6F, 0x06, 0xFF, 0x06, 0xFF, 0x02, 0x77, 0x07, 0x32, 0x07, 0x35, + 0x02, 0x78, 0x07, 0x3A, 0x07, 0x3C, 0x02, 0x7C, 0x07, 0x42, 0x07, 0x4A, + 0x02, 0x7F, 0x07, 0x4D, 0x07, 0x52, 0x02, 0x88, 0x07, 0x55, 0x07, 0x5D, + 0x02, 0x8E, 0x08, 0xFE, 0x09, 0x04, 0x02, 0x97, 0x09, 0x16, 0x09, 0x33, + 0x02, 0x9E, 0x09, 0x7B, 0x09, 0xA3, 0x02, 0xBC, 0x09, 0xC8, 0x09, 0xCC, + 0x02, 0xE5, 0x00, 0x03, 0x00, 0x07, 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, + 0x01, 0x68, 0x01, 0x68, 0x01, 0x68, 0x00, 0x74, 0x00, 0x01, 0x00, 0x6E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, 0x01, 0x4E, 0x01, 0x4E, + 0x01, 0x4E, 0x01, 0x4E, 0x01, 0x4E, 0x00, 0x5A, 0x00, 0x01, 0x00, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x01, 0x36, 0x01, 0x36, + 0x01, 0x36, 0x01, 0x36, 0x00, 0x42, 0x00, 0x01, 0x00, 0x3C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x01, 0x20, 0x01, 0x20, 0x01, 0x20, + 0x00, 0x2C, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x03, 0x01, 0x0C, 0x01, 0x0C, 0x00, 0x18, 0x00, 0x01, 0x00, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x05, 0x9F, 0x00, 0x01, + 0x00, 0x01, 0x05, 0x9D, 0x00, 0x03, 0x00, 0x07, 0x00, 0xEE, 0x00, 0xEE, + 0x00, 0xEE, 0x00, 0xEE, 0x00, 0xEE, 0x00, 0xEE, 0x00, 0x74, 0x00, 0x01, + 0x00, 0x6E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, 0x00, 0xD4, + 0x00, 0xD4, 0x00, 0xD4, 0x00, 0xD4, 0x00, 0xD4, 0x00, 0x5A, 0x00, 0x01, + 0x00, 0x54, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0xBC, + 0x00, 0xBC, 0x00, 0xBC, 0x00, 0xBC, 0x00, 0x42, 0x00, 0x01, 0x00, 0x3C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0xA6, 0x00, 0xA6, + 0x00, 0xA6, 0x00, 0x2C, 0x00, 0x01, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x03, 0x00, 0x92, 0x00, 0x92, 0x00, 0x18, 0x00, 0x01, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x05, 0xA2, + 0x00, 0x01, 0x00, 0x01, 0x05, 0xA1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x74, + 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0x6E, + 0x00, 0x01, 0x00, 0xAA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x06, + 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x5A, 0x00, 0x54, + 0x00, 0x01, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, + 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x01, + 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x04, 0x00, 0x2C, + 0x00, 0x2C, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x01, 0x00, 0x62, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x03, 0x00, 0x18, 0x00, 0x18, 0x00, 0x12, + 0x00, 0x01, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, + 0x05, 0x9B, 0x00, 0x02, 0x00, 0x05, 0x00, 0x02, 0x02, 0x85, 0x00, 0x00, + 0x02, 0x87, 0x0B, 0x1F, 0x02, 0x84, 0x0B, 0x29, 0x0B, 0x36, 0x0B, 0x1D, + 0x0B, 0x42, 0x0B, 0x68, 0x0B, 0x2B, 0x0B, 0x6A, 0x0B, 0x6B, 0x0B, 0x52, + 0x00, 0x03, 0x00, 0x02, 0x00, 0xA0, 0x00, 0x7C, 0x00, 0x01, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, + 0x05, 0x9C, 0x00, 0x03, 0x00, 0x01, 0x00, 0x62, 0x00, 0x01, 0x00, 0x14, + 0x00, 0x01, 0x00, 0x7E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, + 0x00, 0x01, 0x05, 0xB6, 0x00, 0x03, 0x00, 0x01, 0x00, 0x48, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x64, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, + 0x00, 0x01, 0x00, 0x01, 0x05, 0xB4, 0x00, 0x03, 0x00, 0x01, 0x00, 0x2E, + 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x00, 0x4A, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x34, 0x00, 0x01, 0x00, 0x01, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x14, 0x00, 0x01, 0x02, 0x94, 0x00, 0x01, 0x00, 0x30, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x02, 0x05, 0xDF, 0x05, 0xE0, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x32, 0x00, 0x02, 0x00, 0x1C, + 0x00, 0x14, 0x00, 0x01, 0x00, 0x00, 0x00, 0x34, 0x00, 0x01, 0x00, 0x02, + 0x05, 0x9C, 0x05, 0xA5, 0x00, 0x01, 0x00, 0x09, 0x05, 0xB1, 0x05, 0xB2, + 0x05, 0xB4, 0x05, 0xB6, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xF1, + 0x05, 0xFE, 0x00, 0x01, 0x00, 0x01, 0x05, 0xDF, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x01, 0x7E, 0x00, 0x08, 0x01, 0x3C, + 0x01, 0x0C, 0x00, 0x56, 0x00, 0x4E, 0x00, 0x44, 0x00, 0x3A, 0x00, 0x28, + 0x00, 0x16, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x07, 0x29, 0x00, 0x02, + 0x05, 0xF8, 0x07, 0x29, 0x00, 0x02, 0x05, 0xEB, 0x00, 0x02, 0x00, 0x0C, + 0x00, 0x06, 0x07, 0x28, 0x00, 0x02, 0x05, 0xF8, 0x07, 0x28, 0x00, 0x02, + 0x05, 0xEB, 0x00, 0x01, 0x00, 0x04, 0x07, 0x15, 0x00, 0x02, 0x05, 0xEB, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x14, 0x00, 0x02, 0x05, 0xEB, 0x00, 0x03, + 0x00, 0xDE, 0x00, 0xD6, 0x00, 0xCA, 0x00, 0x12, 0x00, 0xAC, 0x00, 0xA2, + 0x00, 0x98, 0x00, 0x8E, 0x00, 0x84, 0x00, 0x7A, 0x00, 0x70, 0x00, 0x66, + 0x00, 0x5E, 0x00, 0x56, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x3E, 0x00, 0x36, + 0x00, 0x2E, 0x00, 0x26, 0x01, 0x02, 0x00, 0xF6, 0x07, 0x22, 0x00, 0x03, + 0x05, 0xFB, 0x05, 0xFB, 0x07, 0x22, 0x00, 0x03, 0x05, 0xFB, 0x05, 0xEE, + 0x07, 0x22, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xFB, 0x07, 0x22, 0x00, 0x03, + 0x05, 0xEE, 0x05, 0xEE, 0x07, 0x2A, 0x00, 0x03, 0x05, 0xFB, 0x05, 0xF8, + 0x07, 0x2A, 0x00, 0x03, 0x05, 0xFB, 0x05, 0xEB, 0x07, 0x2A, 0x00, 0x03, + 0x05, 0xEE, 0x05, 0xF8, 0x07, 0x2A, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xEB, + 0x07, 0x2B, 0x00, 0x04, 0x05, 0xFB, 0x05, 0xFB, 0x05, 0xF8, 0x07, 0x2B, + 0x00, 0x04, 0x05, 0xFB, 0x05, 0xFB, 0x05, 0xEB, 0x07, 0x2B, 0x00, 0x04, + 0x05, 0xFB, 0x05, 0xEE, 0x05, 0xF8, 0x07, 0x2B, 0x00, 0x04, 0x05, 0xFB, + 0x05, 0xEE, 0x05, 0xEB, 0x07, 0x2B, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xFB, + 0x05, 0xF8, 0x07, 0x2B, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xFB, 0x05, 0xEB, + 0x07, 0x2B, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xF8, 0x07, 0x2B, + 0x00, 0x04, 0x05, 0xEE, 0x05, 0xEE, 0x05, 0xEB, 0x00, 0x05, 0x00, 0x28, + 0x00, 0x20, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x07, 0x26, 0x00, 0x02, + 0x05, 0xF8, 0x07, 0x0E, 0x00, 0x02, 0x05, 0xEB, 0x07, 0x27, 0x00, 0x03, + 0x05, 0xFB, 0x05, 0xF8, 0x07, 0x27, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xF8, + 0x07, 0x0F, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xEB, 0x00, 0x07, 0x00, 0x38, + 0x00, 0x30, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, + 0x07, 0x29, 0x00, 0x02, 0x07, 0x24, 0x07, 0x15, 0x00, 0x02, 0x07, 0x0C, + 0x07, 0x28, 0x00, 0x02, 0x07, 0x23, 0x07, 0x14, 0x00, 0x02, 0x07, 0x0B, + 0x07, 0x0A, 0x00, 0x03, 0x05, 0xEE, 0x05, 0xEE, 0x07, 0x16, 0x00, 0x03, + 0x05, 0xEE, 0x05, 0xEB, 0x07, 0x17, 0x00, 0x04, 0x05, 0xEE, 0x05, 0xEE, + 0x05, 0xEB, 0x00, 0x01, 0x00, 0x08, 0x05, 0xEA, 0x05, 0xEE, 0x05, 0xF7, + 0x05, 0xFB, 0x07, 0x06, 0x07, 0x07, 0x07, 0x1E, 0x07, 0x1F, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x7E, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x07, 0x1E, 0x00, 0x02, + 0x05, 0xBD, 0x07, 0x1E, 0x00, 0x02, 0x05, 0xB1, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x82, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x06, 0x00, 0x02, 0x05, 0xB1, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x50, 0x00, 0x32, 0x00, 0x20, 0x00, 0x0E, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3C, 0x00, 0x34, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x31, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x50, 0x00, 0x4A, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x30, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x00, 0x18, 0x00, 0x10, 0x00, 0x01, + 0x00, 0x2E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x05, 0xB1, 0x05, 0xBD, + 0x00, 0x01, 0x00, 0x01, 0x05, 0xF7, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x20, 0x00, 0x1A, 0x00, 0x01, 0x00, 0x10, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x01, 0x05, 0x3B, 0x05, 0x5C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, + 0x05, 0xB1, 0x00, 0x01, 0x00, 0x01, 0x05, 0xEA, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x11, 0x26, 0x00, 0x08, 0x0E, 0x9E, + 0x0E, 0x20, 0x0E, 0x20, 0x0D, 0xC8, 0x0D, 0x70, 0x0D, 0x70, 0x0B, 0xC0, + 0x00, 0x16, 0x01, 0x00, 0x0B, 0xA0, 0x0B, 0x96, 0x0B, 0x8C, 0x0B, 0x82, + 0x0B, 0x78, 0x0B, 0x6E, 0x0B, 0x64, 0x0B, 0x5A, 0x0B, 0x50, 0x0B, 0x46, + 0x0B, 0x3C, 0x0B, 0x32, 0x0B, 0x28, 0x0B, 0x1E, 0x0B, 0x14, 0x0B, 0x0A, + 0x0B, 0x00, 0x0A, 0xF6, 0x0A, 0xEC, 0x0A, 0xE2, 0x0A, 0xD8, 0x0A, 0xCE, + 0x0A, 0xC4, 0x0A, 0xBA, 0x0A, 0xB0, 0x0A, 0xA6, 0x0A, 0x9C, 0x0A, 0x92, + 0x0A, 0x88, 0x0A, 0x7E, 0x0A, 0x74, 0x0A, 0x6A, 0x0A, 0x60, 0x0A, 0x56, + 0x0A, 0x4C, 0x0A, 0x42, 0x0A, 0x38, 0x0A, 0x2E, 0x0A, 0x24, 0x0A, 0x1A, + 0x0A, 0x10, 0x0A, 0x06, 0x09, 0xFC, 0x09, 0xF2, 0x09, 0xE8, 0x09, 0xDE, + 0x09, 0xD4, 0x09, 0xCA, 0x09, 0xC0, 0x09, 0xB6, 0x09, 0xAC, 0x09, 0xA2, + 0x09, 0x98, 0x09, 0x8E, 0x09, 0x84, 0x09, 0x7A, 0x09, 0x70, 0x09, 0x66, + 0x09, 0x5C, 0x09, 0x52, 0x09, 0x48, 0x09, 0x3E, 0x09, 0x34, 0x09, 0x2A, + 0x09, 0x20, 0x09, 0x16, 0x09, 0x0C, 0x09, 0x02, 0x08, 0xF8, 0x08, 0xEE, + 0x08, 0xE4, 0x08, 0xDA, 0x08, 0xD0, 0x08, 0xC6, 0x08, 0xBC, 0x08, 0xB2, + 0x08, 0xA8, 0x08, 0x9E, 0x08, 0x94, 0x08, 0x8A, 0x08, 0x80, 0x08, 0x76, + 0x08, 0x6C, 0x08, 0x62, 0x08, 0x58, 0x08, 0x4E, 0x08, 0x44, 0x08, 0x3A, + 0x08, 0x30, 0x08, 0x26, 0x08, 0x1C, 0x08, 0x12, 0x08, 0x08, 0x07, 0xFE, + 0x07, 0xF4, 0x07, 0xEA, 0x07, 0xE0, 0x07, 0xD6, 0x07, 0xCC, 0x07, 0xC2, + 0x07, 0xB8, 0x07, 0xAE, 0x07, 0xA4, 0x07, 0x9A, 0x07, 0x90, 0x07, 0x86, + 0x07, 0x7C, 0x07, 0x72, 0x07, 0x68, 0x07, 0x5E, 0x07, 0x54, 0x07, 0x4A, + 0x07, 0x40, 0x07, 0x36, 0x07, 0x2C, 0x07, 0x22, 0x07, 0x18, 0x07, 0x0E, + 0x07, 0x04, 0x06, 0xFA, 0x06, 0xF0, 0x06, 0xE6, 0x06, 0xDC, 0x06, 0xD2, + 0x06, 0xC8, 0x06, 0xBE, 0x06, 0xB4, 0x06, 0xAA, 0x06, 0xA0, 0x06, 0x96, + 0x06, 0x8C, 0x06, 0x82, 0x06, 0x78, 0x06, 0x6E, 0x06, 0x64, 0x06, 0x5A, + 0x06, 0x50, 0x06, 0x46, 0x06, 0x3C, 0x06, 0x32, 0x06, 0x28, 0x06, 0x1E, + 0x06, 0x14, 0x06, 0x0A, 0x06, 0x00, 0x05, 0xF6, 0x05, 0xEC, 0x05, 0xE2, + 0x05, 0xD8, 0x05, 0xCE, 0x05, 0xC4, 0x05, 0xBA, 0x05, 0xB0, 0x05, 0xA6, + 0x05, 0x9C, 0x05, 0x92, 0x05, 0x88, 0x05, 0x7E, 0x05, 0x74, 0x05, 0x6A, + 0x05, 0x60, 0x05, 0x56, 0x05, 0x4C, 0x05, 0x42, 0x05, 0x38, 0x05, 0x2E, + 0x05, 0x24, 0x05, 0x1A, 0x05, 0x10, 0x05, 0x06, 0x04, 0xFC, 0x04, 0xF2, + 0x04, 0xE8, 0x04, 0xDE, 0x04, 0xD4, 0x04, 0xCA, 0x04, 0xC0, 0x04, 0xB6, + 0x04, 0xAC, 0x04, 0xA2, 0x04, 0x98, 0x04, 0x8E, 0x04, 0x84, 0x04, 0x7A, + 0x04, 0x70, 0x04, 0x66, 0x04, 0x5C, 0x04, 0x52, 0x04, 0x48, 0x04, 0x3E, + 0x04, 0x34, 0x04, 0x2A, 0x04, 0x20, 0x04, 0x16, 0x04, 0x0C, 0x04, 0x02, + 0x03, 0xF8, 0x03, 0xEE, 0x03, 0xE4, 0x03, 0xDA, 0x03, 0xD0, 0x03, 0xC6, + 0x03, 0xBC, 0x03, 0xB2, 0x03, 0xA8, 0x03, 0x9E, 0x03, 0x94, 0x03, 0x8A, + 0x03, 0x80, 0x03, 0x76, 0x03, 0x6C, 0x03, 0x62, 0x03, 0x58, 0x03, 0x4E, + 0x03, 0x44, 0x03, 0x3A, 0x03, 0x32, 0x03, 0x2A, 0x03, 0x22, 0x03, 0x1A, + 0x03, 0x12, 0x03, 0x0A, 0x03, 0x02, 0x02, 0xFA, 0x02, 0xF2, 0x02, 0xEA, + 0x02, 0xE2, 0x02, 0xDA, 0x02, 0xD2, 0x02, 0xCA, 0x02, 0xC2, 0x02, 0xBA, + 0x02, 0xB2, 0x02, 0xAA, 0x02, 0xA2, 0x02, 0x9A, 0x02, 0x92, 0x02, 0x8A, + 0x02, 0x82, 0x02, 0x7A, 0x02, 0x72, 0x02, 0x6A, 0x02, 0x62, 0x02, 0x5A, + 0x02, 0x52, 0x02, 0x4A, 0x02, 0x42, 0x02, 0x3A, 0x02, 0x32, 0x02, 0x2A, + 0x02, 0x22, 0x02, 0x1A, 0x02, 0x14, 0x02, 0x0E, 0x02, 0x08, 0x02, 0x02, + 0x07, 0x1F, 0x00, 0x02, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x02, 0x05, 0xBE, + 0x07, 0x1F, 0x00, 0x02, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x02, 0x05, 0xB2, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xC0, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBE, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xBD, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xBD, + 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x1F, 0x00, 0x03, + 0x05, 0xB1, 0x05, 0xB2, 0x07, 0x1F, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xC0, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xBE, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBE, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xBD, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xC0, 0x07, 0x20, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xBE, 0x07, 0x20, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xBD, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x20, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xB1, + 0x00, 0x26, 0x01, 0xA6, 0x01, 0x9C, 0x01, 0x92, 0x01, 0x88, 0x01, 0x7E, + 0x01, 0x74, 0x01, 0x6A, 0x01, 0x60, 0x01, 0x56, 0x01, 0x4C, 0x01, 0x42, + 0x01, 0x38, 0x01, 0x2E, 0x01, 0x24, 0x01, 0x1A, 0x01, 0x10, 0x01, 0x06, + 0x00, 0xFC, 0x00, 0xF2, 0x00, 0xE8, 0x00, 0xDE, 0x00, 0xD4, 0x00, 0xCA, + 0x00, 0xC0, 0x00, 0xB6, 0x00, 0xAC, 0x00, 0xA2, 0x00, 0x9A, 0x00, 0x92, + 0x00, 0x8A, 0x00, 0x82, 0x00, 0x7A, 0x00, 0x72, 0x00, 0x6A, 0x00, 0x62, + 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, 0x07, 0x07, 0x00, 0x02, 0x05, 0xB4, + 0x07, 0x07, 0x00, 0x02, 0x05, 0xB2, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB4, + 0x05, 0xB4, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB2, 0x07, 0x07, + 0x00, 0x03, 0x05, 0xB4, 0x05, 0xB1, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB2, + 0x05, 0xB4, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x07, + 0x00, 0x03, 0x05, 0xB2, 0x05, 0xB1, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB1, + 0x05, 0xB4, 0x07, 0x07, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB2, 0x07, 0x07, + 0x00, 0x03, 0x05, 0xB1, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB4, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xB1, + 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB4, 0x07, 0x08, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB1, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB1, 0x05, 0xB4, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, + 0x05, 0xB2, 0x07, 0x08, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xB1, + 0x00, 0x2B, 0x03, 0x52, 0x03, 0x48, 0x03, 0x3E, 0x03, 0x34, 0x03, 0x2A, + 0x03, 0x20, 0x03, 0x16, 0x03, 0x0C, 0x03, 0x02, 0x02, 0xF8, 0x02, 0xEE, + 0x02, 0xE4, 0x02, 0xDA, 0x02, 0xD0, 0x02, 0xC6, 0x02, 0xBC, 0x02, 0xB2, + 0x02, 0xA8, 0x02, 0x9E, 0x02, 0x94, 0x02, 0x8A, 0x02, 0x80, 0x02, 0x76, + 0x02, 0x6C, 0x02, 0x62, 0x02, 0x58, 0x02, 0x4E, 0x02, 0x44, 0x02, 0x3A, + 0x02, 0x30, 0x02, 0x26, 0x02, 0x1C, 0x02, 0x12, 0x02, 0x08, 0x01, 0xFE, + 0x01, 0xF4, 0x01, 0xD4, 0x01, 0xCC, 0x01, 0xC4, 0x01, 0xBC, 0x01, 0xB4, + 0x01, 0xAC, 0x01, 0x22, 0x00, 0x2B, 0x02, 0xFA, 0x02, 0xF0, 0x02, 0xE6, + 0x02, 0xDC, 0x02, 0xD2, 0x02, 0xC8, 0x02, 0xBE, 0x02, 0xB4, 0x02, 0xAA, + 0x02, 0xA0, 0x02, 0x96, 0x02, 0x8C, 0x02, 0x82, 0x02, 0x78, 0x02, 0x6E, + 0x02, 0x64, 0x02, 0x5A, 0x02, 0x50, 0x02, 0x46, 0x02, 0x3C, 0x02, 0x32, + 0x02, 0x28, 0x02, 0x1E, 0x02, 0x14, 0x02, 0x0A, 0x02, 0x00, 0x01, 0xF6, + 0x01, 0xEC, 0x01, 0xE2, 0x01, 0xD8, 0x01, 0xCE, 0x01, 0xC4, 0x01, 0xBA, + 0x01, 0xB0, 0x01, 0xA6, 0x01, 0x9C, 0x01, 0x7C, 0x01, 0x74, 0x01, 0x6C, + 0x01, 0x64, 0x01, 0x5C, 0x01, 0x54, 0x01, 0x48, 0x00, 0x38, 0x02, 0xFC, + 0x02, 0xF2, 0x02, 0xE8, 0x02, 0xDE, 0x02, 0xD4, 0x02, 0xCA, 0x02, 0xC0, + 0x02, 0xB6, 0x02, 0xAC, 0x02, 0xA2, 0x02, 0x98, 0x02, 0x8E, 0x02, 0x84, + 0x02, 0x7A, 0x02, 0x70, 0x02, 0x66, 0x02, 0x5C, 0x02, 0x52, 0x02, 0x48, + 0x02, 0x3E, 0x02, 0x34, 0x02, 0x2A, 0x02, 0x20, 0x02, 0x16, 0x02, 0x0C, + 0x02, 0x02, 0x01, 0xF8, 0x01, 0xEE, 0x01, 0xE4, 0x01, 0xDA, 0x01, 0xD0, + 0x01, 0xC6, 0x01, 0xBC, 0x01, 0xB2, 0x01, 0xA8, 0x01, 0x9E, 0x01, 0x94, + 0x01, 0x8A, 0x01, 0x80, 0x01, 0x76, 0x01, 0x6C, 0x01, 0x62, 0x01, 0x58, + 0x01, 0x4E, 0x01, 0x44, 0x01, 0x3C, 0x01, 0x34, 0x01, 0x2C, 0x01, 0x24, + 0x01, 0x1C, 0x01, 0x14, 0x01, 0x0C, 0x01, 0x04, 0x00, 0xFC, 0x00, 0x78, + 0x00, 0x72, 0x07, 0x24, 0x00, 0x02, 0x05, 0xF8, 0x07, 0x0C, 0x00, 0x02, + 0x05, 0xEB, 0x00, 0x38, 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6A, 0x02, 0x60, + 0x02, 0x56, 0x02, 0x4C, 0x02, 0x42, 0x02, 0x38, 0x02, 0x2E, 0x02, 0x24, + 0x02, 0x1A, 0x02, 0x10, 0x02, 0x06, 0x01, 0xFC, 0x01, 0xF2, 0x01, 0xE8, + 0x01, 0xDE, 0x01, 0xD4, 0x01, 0xCA, 0x01, 0xC0, 0x01, 0xB6, 0x01, 0xAC, + 0x01, 0xA2, 0x01, 0x98, 0x01, 0x8E, 0x01, 0x84, 0x01, 0x7A, 0x01, 0x70, + 0x01, 0x66, 0x01, 0x5C, 0x01, 0x52, 0x01, 0x48, 0x01, 0x3E, 0x01, 0x34, + 0x01, 0x2A, 0x01, 0x20, 0x01, 0x16, 0x01, 0x0C, 0x01, 0x02, 0x00, 0xF8, + 0x00, 0xEE, 0x00, 0xE4, 0x00, 0xDA, 0x00, 0xD0, 0x00, 0xC6, 0x00, 0xBE, + 0x00, 0xB6, 0x00, 0xAE, 0x00, 0xA6, 0x00, 0x9E, 0x00, 0x96, 0x00, 0x8E, + 0x00, 0x86, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, 0x07, 0x23, 0x00, 0x02, + 0x05, 0xF8, 0x07, 0x0B, 0x00, 0x02, 0x05, 0xEB, 0x07, 0x24, 0x00, 0x03, + 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x24, 0x00, 0x03, 0x05, 0xBE, 0x05, 0xF8, + 0x07, 0x24, 0x00, 0x03, 0x05, 0xBD, 0x05, 0xF8, 0x07, 0x24, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xF8, 0x07, 0x24, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xF8, + 0x07, 0x24, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x0C, 0x00, 0x03, + 0x05, 0xB4, 0x05, 0xEB, 0x07, 0x0C, 0x00, 0x03, 0x05, 0xB2, 0x05, 0xEB, + 0x07, 0x0C, 0x00, 0x03, 0x05, 0xB1, 0x05, 0xEB, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xC0, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xC0, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xBE, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xBD, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xBD, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xB2, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xC0, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xBE, 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xBD, + 0x05, 0xF8, 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xF8, + 0x07, 0x25, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xF8, 0x07, 0x25, + 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, 0x05, 0xF8, 0x07, 0x0D, 0x00, 0x04, + 0x05, 0xB4, 0x05, 0xB4, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB4, + 0x05, 0xB2, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB4, 0x05, 0xB1, + 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xEB, + 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB2, 0x05, 0xEB, 0x07, 0x0D, + 0x00, 0x04, 0x05, 0xB2, 0x05, 0xB1, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, + 0x05, 0xB1, 0x05, 0xB4, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB1, + 0x05, 0xB2, 0x05, 0xEB, 0x07, 0x0D, 0x00, 0x04, 0x05, 0xB1, 0x05, 0xB1, + 0x05, 0xEB, 0x00, 0x01, 0x00, 0x08, 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB4, + 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xC0, 0x05, 0xEA, 0x05, 0xF7, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x00, 0x6E, 0x00, 0x34, + 0x0B, 0x48, 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, 0x05, 0xA8, + 0x05, 0xA9, 0x05, 0xAA, 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, + 0x05, 0xC1, 0x05, 0xC2, 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, + 0x05, 0xC7, 0x05, 0xE0, 0x05, 0xF7, 0x05, 0xF8, 0x05, 0xF9, 0x05, 0xFA, + 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, + 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, 0x07, 0x1E, 0x07, 0x1F, + 0x07, 0x20, 0x07, 0x21, 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, + 0x07, 0x26, 0x07, 0x27, 0x07, 0x2F, 0x07, 0x2C, 0x07, 0x2D, 0x07, 0x2E, + 0x07, 0x28, 0x07, 0x29, 0x07, 0x2A, 0x07, 0x2B, 0x00, 0x02, 0x00, 0x0A, + 0x05, 0x93, 0x05, 0x93, 0x00, 0x00, 0x05, 0x9B, 0x05, 0x9D, 0x00, 0x01, + 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x04, 0x05, 0xA1, 0x05, 0xA3, 0x00, 0x05, + 0x05, 0xB1, 0x05, 0xB4, 0x00, 0x08, 0x05, 0xB6, 0x05, 0xBC, 0x00, 0x0C, + 0x05, 0xDF, 0x05, 0xDF, 0x00, 0x13, 0x05, 0xEA, 0x05, 0xF6, 0x00, 0x14, + 0x06, 0x09, 0x06, 0x09, 0x00, 0x21, 0x07, 0x06, 0x07, 0x17, 0x00, 0x22, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x22, + 0x00, 0x0D, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, + 0x00, 0x01, 0x04, 0x90, 0x00, 0x01, 0x00, 0x14, 0x00, 0x01, 0x01, 0xA2, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x01, 0x00, 0x01, 0x06, 0xEF, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x12, 0x00, 0x01, 0x04, 0x6E, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x2A, 0x00, 0x01, 0x00, 0x13, 0x06, 0x87, 0x06, 0x88, 0x06, 0x8A, + 0x06, 0x8C, 0x06, 0x8D, 0x06, 0x8F, 0x06, 0x91, 0x06, 0x92, 0x06, 0x94, + 0x06, 0x95, 0x06, 0x96, 0x06, 0x98, 0x06, 0x99, 0x06, 0x9A, 0x06, 0x9B, + 0x06, 0x9C, 0x06, 0x9D, 0x06, 0x9E, 0x06, 0xBA, 0x00, 0x06, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x04, 0x2A, + 0x00, 0x0A, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, + 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0x3C, 0x01, 0xAC, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x28, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0xFE, 0x00, 0x09, 0x01, 0x10, + 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, 0x01, 0x10, + 0x01, 0x10, 0x01, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x03, 0xD4, 0x00, 0x08, 0x00, 0xE6, 0x00, 0xE6, 0x00, 0xE6, 0x00, 0xE6, + 0x00, 0xE6, 0x00, 0xE6, 0x00, 0xE6, 0x01, 0x56, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x24, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x03, 0xAC, 0x00, 0x07, 0x00, 0xBE, 0x00, 0xBE, + 0x00, 0xBE, 0x00, 0xBE, 0x00, 0xBE, 0x00, 0xBE, 0x01, 0x2E, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x22, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0x86, 0x00, 0x06, 0x00, 0x98, + 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x00, 0x98, 0x01, 0x08, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0x62, 0x00, 0x05, 0x00, 0x74, + 0x00, 0x74, 0x00, 0x74, 0x00, 0x74, 0x00, 0xE4, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x1E, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x01, 0x03, 0x40, 0x00, 0x04, 0x00, 0x52, 0x00, 0x52, + 0x00, 0x52, 0x00, 0xC2, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x03, 0x20, 0x00, 0x03, 0x00, 0x32, 0x00, 0x32, 0x00, 0xA2, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x1A, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x03, 0x02, 0x00, 0x02, 0x00, 0x14, + 0x00, 0x84, 0x00, 0x01, 0x00, 0x00, 0x00, 0x18, 0x00, 0x01, 0x00, 0x11, + 0x06, 0xA1, 0x06, 0xA3, 0x06, 0xA5, 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, + 0x06, 0xAB, 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, 0x06, 0xB1, 0x06, 0xB2, + 0x06, 0xB3, 0x06, 0xB4, 0x06, 0xB5, 0x06, 0xB6, 0x06, 0xB7, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x02, 0xC0, 0x00, 0x11, + 0x06, 0xA1, 0x06, 0xA3, 0x06, 0xA5, 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, + 0x06, 0xAB, 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, 0x06, 0xB4, 0x06, 0xB5, + 0x06, 0xB7, 0x06, 0xB6, 0x06, 0xB3, 0x06, 0xB1, 0x06, 0xB2, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, + 0x02, 0x90, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x01, 0x00, 0x01, 0x06, 0x87, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x02, 0x3A, 0x00, 0xDA, 0x00, 0x06, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x02, 0x2C, 0x01, 0xF8, 0x01, 0xF0, + 0x01, 0xF8, 0x00, 0x02, 0x00, 0x00, 0x00, 0x10, 0x00, 0x15, 0x01, 0xC2, + 0x01, 0xA4, 0x01, 0x88, 0x01, 0x6C, 0x01, 0x52, 0x01, 0x38, 0x01, 0x20, + 0x01, 0x08, 0x00, 0xF2, 0x00, 0xDC, 0x00, 0xC8, 0x00, 0xB4, 0x00, 0xA2, + 0x00, 0x90, 0x00, 0x80, 0x00, 0x70, 0x00, 0x62, 0x00, 0x54, 0x00, 0x48, + 0x00, 0x3C, 0x00, 0x2C, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x03, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x09, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x0B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x0B, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x05, 0xAD, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x08, 0x05, 0x3B, 0x05, 0x3D, + 0x00, 0x01, 0x05, 0x3F, 0x05, 0x41, 0x00, 0x01, 0x05, 0x43, 0x05, 0x46, + 0x00, 0x01, 0x05, 0x9B, 0x05, 0x9C, 0x00, 0x01, 0x05, 0xAD, 0x05, 0xAD, + 0x00, 0x02, 0x05, 0xDB, 0x05, 0xDC, 0x00, 0x01, 0x05, 0xEE, 0x05, 0xEE, + 0x00, 0x01, 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x05, 0xAD, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x28, 0x00, 0x11, 0x06, 0x88, 0x06, 0x8A, 0x06, 0x8C, 0x06, 0x8D, + 0x06, 0x8F, 0x06, 0x91, 0x06, 0x92, 0x06, 0x94, 0x06, 0x95, 0x06, 0x96, + 0x06, 0x9B, 0x06, 0x9C, 0x06, 0x9E, 0x06, 0x9D, 0x06, 0x9A, 0x06, 0x98, + 0x06, 0x99, 0x00, 0x01, 0x00, 0x11, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, + 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, + 0x05, 0x46, 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xEE, + 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x02, 0x00, 0x2C, 0x00, 0x13, 0x06, 0x18, 0x06, 0x19, 0x06, 0xA1, + 0x06, 0xA3, 0x06, 0xA5, 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, 0x06, 0xAB, + 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, 0x06, 0xB4, 0x06, 0xB5, 0x06, 0xB7, + 0x06, 0xB6, 0x06, 0xB3, 0x06, 0xB1, 0x06, 0xB2, 0x00, 0x01, 0x00, 0x13, + 0x02, 0xB1, 0x03, 0x05, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, + 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, + 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xEE, 0x05, 0xF0, + 0x05, 0xF1, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x5C, 0x00, 0x2B, 0x06, 0x56, 0x06, 0x57, 0x06, 0x58, 0x06, 0x59, + 0x06, 0x5A, 0x06, 0x5B, 0x06, 0x5C, 0x06, 0x5D, 0x06, 0x5E, 0x06, 0x5F, + 0x06, 0x60, 0x06, 0x61, 0x06, 0x62, 0x06, 0x63, 0x06, 0x64, 0x06, 0x65, + 0x06, 0x66, 0x06, 0x67, 0x06, 0x68, 0x06, 0x69, 0x06, 0x6A, 0x06, 0x6B, + 0x06, 0x6C, 0x06, 0x6D, 0x06, 0x6E, 0x06, 0x6F, 0x06, 0x70, 0x06, 0x72, + 0x06, 0x74, 0x06, 0x75, 0x06, 0x77, 0x06, 0x79, 0x06, 0x7A, 0x06, 0x7C, + 0x06, 0x7D, 0x06, 0x7E, 0x06, 0x80, 0x06, 0x81, 0x06, 0x82, 0x06, 0x83, + 0x06, 0x86, 0x06, 0x84, 0x06, 0x85, 0x00, 0x01, 0x00, 0x2B, 0x01, 0xFB, + 0x02, 0x42, 0x02, 0x4A, 0x02, 0x55, 0x02, 0x66, 0x02, 0x87, 0x02, 0x92, + 0x02, 0x9E, 0x02, 0xB1, 0x02, 0xCF, 0x02, 0xD7, 0x02, 0xE0, 0x02, 0xFE, + 0x03, 0x05, 0x03, 0x16, 0x03, 0x4B, 0x03, 0x51, 0x03, 0x54, 0x03, 0x67, + 0x03, 0x78, 0x03, 0x91, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, 0x03, 0xE4, + 0x03, 0xFC, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, + 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x9B, + 0x05, 0x9C, 0x05, 0x9D, 0x05, 0x9F, 0x05, 0xEE, 0x05, 0xF0, 0x05, 0xF1, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x12, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x09, 0x24, 0x00, 0x02, + 0x05, 0xE3, 0x00, 0x01, 0x00, 0x01, 0x01, 0x19, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x12, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x04, 0x02, 0xE7, 0x00, 0x02, 0x05, 0xE3, 0x00, 0x01, + 0x00, 0x01, 0x02, 0xE0, 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x0A, 0x00, 0x02, 0x00, 0x26, 0x00, 0x12, 0x00, 0x01, + 0x00, 0x02, 0x01, 0x19, 0x02, 0xE0, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x02, 0x05, 0xE3, 0x00, 0x01, 0x02, 0xE0, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x0E, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x05, 0xE3, + 0x00, 0x01, 0x01, 0x19, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x06, 0x00, 0x02, + 0x00, 0x01, 0x00, 0x03, 0x01, 0x90, 0x03, 0x6C, 0x03, 0x7F, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x05, 0xEE, 0x00, 0x3D, + 0x02, 0xCE, 0x02, 0xC4, 0x02, 0xBA, 0x02, 0xB0, 0x02, 0xA6, 0x02, 0x9C, + 0x02, 0x92, 0x02, 0x88, 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6A, 0x02, 0x60, + 0x02, 0x56, 0x02, 0x4C, 0x02, 0x42, 0x02, 0x38, 0x02, 0x2E, 0x02, 0x24, + 0x02, 0x1A, 0x02, 0x10, 0x02, 0x06, 0x01, 0xFC, 0x01, 0xF2, 0x01, 0xE8, + 0x01, 0xDE, 0x01, 0xD4, 0x01, 0xCA, 0x01, 0xC0, 0x01, 0xB6, 0x01, 0xAC, + 0x01, 0xA2, 0x01, 0x98, 0x01, 0x8E, 0x01, 0x84, 0x01, 0x7A, 0x01, 0x70, + 0x01, 0x66, 0x01, 0x5C, 0x01, 0x52, 0x01, 0x48, 0x01, 0x3E, 0x01, 0x34, + 0x01, 0x2A, 0x01, 0x20, 0x01, 0x16, 0x01, 0x0C, 0x01, 0x02, 0x00, 0xF8, + 0x00, 0xEE, 0x00, 0xE4, 0x00, 0xDA, 0x00, 0xD0, 0x00, 0xC6, 0x01, 0x16, + 0x00, 0xBC, 0x00, 0xB2, 0x00, 0xA8, 0x00, 0x9E, 0x00, 0x94, 0x00, 0x8A, + 0x00, 0x80, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA9, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xA8, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xA5, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xA4, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA3, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA7, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0xA6, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xA2, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xA1, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x9F, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x9E, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x9D, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x9C, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x9B, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x9A, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xA0, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x99, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x98, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x97, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x96, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x95, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x94, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x93, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x92, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x91, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x90, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x8F, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x8E, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x8D, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x8C, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x8B, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x8A, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x89, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x88, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x87, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x86, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x85, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x84, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x83, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x82, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x81, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x80, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x7F, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x7E, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x7D, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x7C, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x7B, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x7A, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x79, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x78, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x77, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x76, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x75, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x74, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x73, 0x00, 0x02, 0x07, 0x6B, + 0x00, 0x01, 0x00, 0x04, 0x07, 0x72, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, + 0x00, 0x04, 0x07, 0x71, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, + 0x07, 0x70, 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x6F, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x01, 0x00, 0x04, 0x07, 0x6E, 0x00, 0x02, + 0x07, 0x6B, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x03, 0xC2, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x00, 0x04, 0x07, 0x6D, + 0x00, 0x02, 0x07, 0x6B, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, + 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x03, 0xA8, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x09, 0x00, 0x01, 0x00, 0x01, 0x07, 0x6B, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, 0x02, 0xD8, 0x00, 0x3D, 0x02, 0xCE, + 0x02, 0xC4, 0x02, 0xBA, 0x02, 0xB0, 0x02, 0xA6, 0x02, 0x9C, 0x02, 0x92, + 0x02, 0x88, 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6A, 0x02, 0x60, 0x02, 0x56, + 0x02, 0x4C, 0x02, 0x42, 0x02, 0x38, 0x02, 0x2E, 0x02, 0x24, 0x02, 0x1A, + 0x02, 0x10, 0x02, 0x06, 0x01, 0xFC, 0x01, 0xF2, 0x01, 0xE8, 0x01, 0xDE, + 0x01, 0xD4, 0x01, 0xCA, 0x01, 0xC0, 0x01, 0xB6, 0x01, 0xAC, 0x01, 0xA2, + 0x01, 0x98, 0x01, 0x8E, 0x01, 0x84, 0x01, 0x7A, 0x01, 0x70, 0x01, 0x66, + 0x01, 0x5C, 0x01, 0x52, 0x01, 0x48, 0x01, 0x3E, 0x01, 0x34, 0x01, 0x2A, + 0x01, 0x20, 0x01, 0x16, 0x01, 0x0C, 0x01, 0x02, 0x00, 0xF8, 0x00, 0xEE, + 0x00, 0xE4, 0x00, 0xDA, 0x00, 0xD0, 0x00, 0xC6, 0x01, 0x16, 0x00, 0xBC, + 0x00, 0xB2, 0x00, 0xA8, 0x00, 0x9E, 0x00, 0x94, 0x00, 0x8A, 0x00, 0x80, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xE7, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xE6, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xE3, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xE2, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xE1, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xE5, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xE4, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xE0, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xDF, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDD, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDC, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDB, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xDA, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xD9, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xD8, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xDE, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD7, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD6, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xD5, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xD4, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xD3, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD2, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD1, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xD0, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xCF, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xCE, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xCD, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xCC, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xCB, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xCA, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xC9, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xC8, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xC7, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC6, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC5, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC4, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xC3, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xC2, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xC1, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xC0, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xBF, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xBE, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xBD, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xBC, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xBB, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xBA, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB9, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB8, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xB7, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xB6, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xB5, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB4, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB3, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xB2, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x04, 0x07, 0xB0, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xAF, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, + 0x07, 0xAE, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xAD, + 0x00, 0x02, 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xAC, 0x00, 0x02, + 0x07, 0x6C, 0x00, 0x01, 0x00, 0x04, 0x07, 0xAB, 0x00, 0x02, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x3D, 0x00, 0x41, 0x00, 0x49, 0x00, 0x54, 0x00, 0x5F, + 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, 0x01, 0x0A, 0x01, 0x0F, + 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, 0x01, 0x77, 0x01, 0x7E, + 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, 0x01, 0xC8, 0x01, 0xCB, + 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, + 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, + 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, 0x05, 0x49, 0x05, 0x4A, 0x05, 0x4B, + 0x05, 0x4C, 0x05, 0x91, 0x05, 0x95, 0x05, 0xAB, 0x05, 0xAD, 0x05, 0xB1, + 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEE, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, + 0x05, 0xF3, 0x06, 0x87, 0x07, 0x06, 0x07, 0x0B, 0x07, 0x18, 0x07, 0x19, + 0x07, 0x1A, 0x07, 0x30, 0x07, 0x31, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x00, 0x2E, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0x04, 0x07, 0xAA, 0x00, 0x02, 0x07, 0x6C, 0x00, 0x05, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x08, 0x00, 0x03, 0x00, 0x02, 0x00, 0x01, 0x00, 0x14, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x07, 0x6C, + 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x08, 0x00, 0x01, 0x0F, 0xC4, 0x00, 0x42, 0x0E, 0xE0, 0x0E, 0xD6, + 0x0E, 0xC4, 0x0E, 0xAA, 0x0E, 0x78, 0x0E, 0x46, 0x0D, 0x80, 0x0D, 0x76, + 0x0D, 0x3C, 0x0D, 0x0A, 0x0C, 0x86, 0x0C, 0x7C, 0x0C, 0x52, 0x0C, 0x18, + 0x0B, 0xFE, 0x0B, 0xB4, 0x0A, 0xC4, 0x0A, 0xBA, 0x0A, 0x90, 0x0A, 0x7E, + 0x0A, 0x3C, 0x09, 0xE6, 0x09, 0xAC, 0x08, 0xDE, 0x08, 0xB4, 0x08, 0xA2, + 0x08, 0x70, 0x08, 0x5E, 0x08, 0x0C, 0x07, 0xDA, 0x07, 0x38, 0x07, 0x2E, + 0x07, 0x1C, 0x07, 0x02, 0x06, 0xD0, 0x06, 0x9E, 0x06, 0x14, 0x06, 0x0A, + 0x06, 0x00, 0x05, 0xCE, 0x05, 0x94, 0x05, 0x7A, 0x05, 0x18, 0x05, 0x06, + 0x04, 0xDC, 0x04, 0x9A, 0x04, 0x90, 0x04, 0x76, 0x04, 0x2C, 0x03, 0x8A, + 0x03, 0x80, 0x03, 0x56, 0x03, 0x44, 0x03, 0x02, 0x02, 0xC0, 0x02, 0x7E, + 0x01, 0xC4, 0x01, 0x9A, 0x01, 0x88, 0x01, 0x4E, 0x01, 0x3C, 0x00, 0xE2, + 0x00, 0xB0, 0x00, 0x9E, 0x00, 0x94, 0x00, 0x8A, 0x00, 0x01, 0x00, 0x04, + 0x05, 0x57, 0x00, 0x02, 0x0A, 0x99, 0x00, 0x01, 0x00, 0x04, 0x05, 0x47, + 0x00, 0x02, 0x0A, 0x99, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x04, 0x28, + 0x00, 0x02, 0x0A, 0x8B, 0x04, 0x27, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x06, + 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, + 0x04, 0x06, 0x00, 0x02, 0x0B, 0x0C, 0x04, 0x05, 0x00, 0x02, 0x06, 0xED, + 0x04, 0x04, 0x00, 0x02, 0x0A, 0x8D, 0x04, 0x03, 0x00, 0x02, 0x0A, 0x8E, + 0x04, 0x02, 0x00, 0x02, 0x0A, 0x8C, 0x04, 0x01, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x0B, 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, + 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, + 0x03, 0xEC, 0x00, 0x02, 0x0A, 0x90, 0x03, 0xEB, 0x00, 0x02, 0x0A, 0x8C, + 0x03, 0xEA, 0x00, 0x02, 0x06, 0xEB, 0x03, 0xF0, 0x00, 0x02, 0x06, 0xEC, + 0x03, 0xEF, 0x00, 0x02, 0x0A, 0x91, 0x03, 0xEE, 0x00, 0x02, 0x06, 0xED, + 0x03, 0xED, 0x00, 0x02, 0x06, 0xE9, 0x03, 0xE9, 0x00, 0x02, 0x0A, 0x8D, + 0x03, 0xE5, 0x00, 0x02, 0x0A, 0x8B, 0x03, 0xFA, 0x00, 0x02, 0x0A, 0x96, + 0x03, 0xE8, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, + 0x03, 0xE1, 0x00, 0x02, 0x0A, 0x8B, 0x03, 0xE0, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, + 0x00, 0x16, 0x00, 0x10, 0x03, 0xDE, 0x00, 0x02, 0x0A, 0x90, 0x03, 0xDD, + 0x00, 0x02, 0x06, 0xED, 0x03, 0xDC, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0xD7, + 0x00, 0x02, 0x0A, 0x8B, 0x03, 0xDB, 0x00, 0x02, 0x06, 0xE8, 0x03, 0xDA, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0xD9, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x02, + 0x00, 0x0C, 0x00, 0x06, 0x03, 0xD5, 0x00, 0x02, 0x06, 0xED, 0x03, 0xD4, + 0x00, 0x02, 0x06, 0xEC, 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, + 0x00, 0x12, 0x00, 0x0C, 0x03, 0xB1, 0x00, 0x02, 0x06, 0xED, 0x03, 0xB0, + 0x00, 0x02, 0x06, 0xEC, 0x03, 0xAF, 0x00, 0x02, 0x0A, 0x91, 0x03, 0xAE, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0xAD, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x17, + 0x00, 0xB4, 0x00, 0xAE, 0x00, 0xA8, 0x00, 0xA2, 0x00, 0x9C, 0x00, 0x96, + 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, + 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, + 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x03, 0xA9, + 0x00, 0x02, 0x0A, 0xF1, 0x03, 0xA8, 0x00, 0x02, 0x0A, 0xFE, 0x03, 0xA7, + 0x00, 0x02, 0x0B, 0x14, 0x03, 0xA6, 0x00, 0x02, 0x0B, 0x02, 0x03, 0xA5, + 0x00, 0x02, 0x0A, 0xF8, 0x03, 0xA4, 0x00, 0x02, 0x06, 0xEA, 0x03, 0xA3, + 0x00, 0x02, 0x0A, 0xF0, 0x03, 0xA2, 0x00, 0x02, 0x0A, 0xEC, 0x03, 0xA1, + 0x00, 0x02, 0x0A, 0xEE, 0x03, 0xA0, 0x00, 0x02, 0x0A, 0xED, 0x03, 0x9F, + 0x00, 0x02, 0x0A, 0x8E, 0x03, 0xAC, 0x00, 0x02, 0x0A, 0x91, 0x03, 0xAB, + 0x00, 0x02, 0x06, 0xED, 0x03, 0x9E, 0x00, 0x02, 0x0A, 0x96, 0x03, 0x9D, + 0x00, 0x02, 0x0A, 0xF4, 0x03, 0x9C, 0x00, 0x02, 0x0A, 0x90, 0x03, 0x9B, + 0x00, 0x02, 0x0A, 0x8F, 0x03, 0x9A, 0x00, 0x02, 0x06, 0xEB, 0x03, 0x93, + 0x00, 0x02, 0x06, 0xEC, 0x03, 0x92, 0x00, 0x02, 0x0A, 0x8B, 0x03, 0x99, + 0x00, 0x02, 0x0A, 0x8D, 0x03, 0x98, 0x00, 0x02, 0x06, 0xE8, 0x03, 0x97, + 0x00, 0x02, 0x06, 0xE9, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x03, 0x86, + 0x00, 0x02, 0x0A, 0x8B, 0x03, 0x85, 0x00, 0x02, 0x0A, 0xFE, 0x03, 0x84, + 0x00, 0x02, 0x0B, 0x0C, 0x03, 0x83, 0x00, 0x02, 0x06, 0xED, 0x03, 0x82, + 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x7F, 0x00, 0x02, 0x0A, 0x95, 0x03, 0x81, + 0x00, 0x02, 0x06, 0xE7, 0x03, 0x80, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x08, + 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, + 0x00, 0x18, 0x00, 0x12, 0x03, 0x72, 0x00, 0x02, 0x0B, 0x19, 0x03, 0x70, + 0x00, 0x02, 0x06, 0xED, 0x03, 0x6F, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x6D, + 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x6E, 0x00, 0x02, 0x06, 0xE7, 0x03, 0x6C, + 0x00, 0x02, 0x0A, 0x95, 0x03, 0x6B, 0x00, 0x02, 0x0A, 0x8D, 0x03, 0x6A, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x03, 0x64, + 0x00, 0x02, 0x0B, 0x0C, 0x03, 0x62, 0x00, 0x02, 0x06, 0xED, 0x03, 0x61, + 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x60, 0x00, 0x02, 0x0A, 0xF8, 0x03, 0x5F, + 0x00, 0x02, 0x06, 0xEA, 0x03, 0x5E, 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x5D, + 0x00, 0x02, 0x06, 0xE7, 0x03, 0x5C, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x02, + 0x00, 0x0C, 0x00, 0x06, 0x03, 0x4F, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x4E, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, + 0x00, 0x12, 0x00, 0x0C, 0x03, 0x39, 0x00, 0x02, 0x06, 0xED, 0x03, 0x38, + 0x00, 0x02, 0x06, 0xEC, 0x03, 0x37, 0x00, 0x02, 0x0A, 0x91, 0x03, 0x36, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0x35, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, + 0x00, 0x04, 0x03, 0x3A, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x14, 0x00, 0x9C, + 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, + 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, + 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x03, 0x2B, 0x00, 0x02, 0x0B, 0x1E, 0x03, 0x2A, 0x00, 0x02, + 0x0A, 0xF1, 0x03, 0x29, 0x00, 0x02, 0x0A, 0xEF, 0x03, 0x28, 0x00, 0x02, + 0x0A, 0x8C, 0x03, 0x26, 0x00, 0x02, 0x0A, 0xED, 0x03, 0x25, 0x00, 0x02, + 0x0A, 0xF8, 0x03, 0x24, 0x00, 0x02, 0x06, 0xEA, 0x03, 0x22, 0x00, 0x02, + 0x0A, 0x96, 0x03, 0x21, 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x2F, 0x00, 0x02, + 0x0A, 0x91, 0x03, 0x2E, 0x00, 0x02, 0x06, 0xED, 0x03, 0x19, 0x00, 0x02, + 0x0A, 0x99, 0x03, 0x20, 0x00, 0x02, 0x0A, 0xF4, 0x03, 0x1F, 0x00, 0x02, + 0x0A, 0x8F, 0x03, 0x1E, 0x00, 0x02, 0x06, 0xEB, 0x03, 0x17, 0x00, 0x02, + 0x0A, 0x8B, 0x03, 0x18, 0x00, 0x02, 0x06, 0xEC, 0x03, 0x1D, 0x00, 0x02, + 0x0A, 0x8D, 0x03, 0x1C, 0x00, 0x02, 0x06, 0xE8, 0x03, 0x1B, 0x00, 0x02, + 0x06, 0xE9, 0x00, 0x09, 0x00, 0x44, 0x00, 0x3E, 0x00, 0x38, 0x00, 0x32, + 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x03, 0x13, + 0x00, 0x02, 0x0A, 0xFE, 0x03, 0x12, 0x00, 0x02, 0x0B, 0x0C, 0x03, 0x11, + 0x00, 0x02, 0x06, 0xED, 0x03, 0x10, 0x00, 0x02, 0x0A, 0x8C, 0x03, 0x0F, + 0x00, 0x02, 0x06, 0xE9, 0x03, 0x0E, 0x00, 0x02, 0x0A, 0x8E, 0x03, 0x0D, + 0x00, 0x02, 0x06, 0xE7, 0x03, 0x0C, 0x00, 0x02, 0x06, 0xE8, 0x03, 0x06, + 0x00, 0x02, 0x06, 0xEC, 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, + 0x03, 0x04, 0x00, 0x02, 0x06, 0xED, 0x03, 0x03, 0x00, 0x02, 0x0A, 0x8C, + 0x03, 0x02, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x04, 0x02, 0xF0, + 0x00, 0x02, 0x0A, 0x99, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, + 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x02, 0xEE, + 0x00, 0x02, 0x0A, 0xFE, 0x02, 0xED, 0x00, 0x02, 0x0B, 0x0C, 0x02, 0xEB, + 0x00, 0x02, 0x06, 0xED, 0x02, 0xE1, 0x00, 0x02, 0x0A, 0x99, 0x02, 0xE7, + 0x00, 0x02, 0x0A, 0x8C, 0x02, 0xE9, 0x00, 0x02, 0x06, 0xE7, 0x02, 0xE8, + 0x00, 0x02, 0x06, 0xE8, 0x02, 0xEA, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x05, + 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x02, 0xDD, + 0x00, 0x02, 0x0B, 0x0C, 0x02, 0xDC, 0x00, 0x02, 0x06, 0xED, 0x02, 0xDB, + 0x00, 0x02, 0x06, 0xE8, 0x02, 0xDA, 0x00, 0x02, 0x0A, 0x8E, 0x02, 0xD9, + 0x00, 0x02, 0x06, 0xE7, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x02, 0xD3, + 0x00, 0x02, 0x0A, 0x8E, 0x02, 0xD2, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x0C, + 0x00, 0x5C, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4A, 0x00, 0x44, 0x00, 0x3E, + 0x00, 0x38, 0x00, 0x32, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, + 0x02, 0xB5, 0x00, 0x02, 0x0A, 0xEE, 0x02, 0xC3, 0x00, 0x02, 0x0A, 0xF8, + 0x02, 0xC2, 0x00, 0x02, 0x06, 0xEA, 0x02, 0xC1, 0x00, 0x02, 0x0A, 0x8E, + 0x02, 0xC4, 0x00, 0x02, 0x0A, 0x91, 0x02, 0xBE, 0x00, 0x02, 0x0A, 0x8F, + 0x02, 0xBD, 0x00, 0x02, 0x06, 0xEB, 0x02, 0xB6, 0x00, 0x02, 0x06, 0xEC, + 0x02, 0xB4, 0x00, 0x02, 0x0A, 0x8B, 0x02, 0xBC, 0x00, 0x02, 0x0A, 0x8D, + 0x02, 0xBB, 0x00, 0x02, 0x06, 0xE8, 0x02, 0xBA, 0x00, 0x02, 0x06, 0xE9, + 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x02, 0xB7, 0x00, 0x02, + 0x0B, 0x14, 0x02, 0xC5, 0x00, 0x02, 0x06, 0xED, 0x02, 0xC0, 0x00, 0x02, + 0x0A, 0x96, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, + 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x02, 0xAF, 0x00, 0x02, 0x0B, 0x0C, + 0x02, 0xAE, 0x00, 0x02, 0x0A, 0xFA, 0x02, 0xAD, 0x00, 0x02, 0x0A, 0x8B, + 0x02, 0xAC, 0x00, 0x02, 0x06, 0xED, 0x02, 0xAB, 0x00, 0x02, 0x0A, 0x8C, + 0x02, 0xAA, 0x00, 0x02, 0x0A, 0x8E, 0x02, 0xA9, 0x00, 0x02, 0x0A, 0x8D, + 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, + 0x00, 0x0E, 0x02, 0x9B, 0x00, 0x02, 0x06, 0xEB, 0x02, 0x9A, 0x00, 0x02, + 0x06, 0xE8, 0x02, 0x99, 0x00, 0x02, 0x0A, 0x8E, 0x02, 0x97, 0x00, 0x02, + 0x0A, 0x8C, 0x02, 0x96, 0x00, 0x02, 0x0A, 0x8F, 0x02, 0x95, 0x00, 0x02, + 0x0A, 0x8D, 0x00, 0x01, 0x00, 0x04, 0x02, 0x8F, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x01, 0x00, 0x04, 0x02, 0x90, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x11, + 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, + 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, + 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x02, 0x77, + 0x00, 0x02, 0x0B, 0x14, 0x02, 0x76, 0x00, 0x02, 0x0A, 0xFE, 0x02, 0x73, + 0x00, 0x02, 0x0A, 0x95, 0x02, 0x72, 0x00, 0x02, 0x0A, 0xF8, 0x02, 0x71, + 0x00, 0x02, 0x06, 0xEA, 0x02, 0x7B, 0x00, 0x02, 0x06, 0xEC, 0x02, 0x7A, + 0x00, 0x02, 0x0A, 0x91, 0x02, 0x79, 0x00, 0x02, 0x06, 0xED, 0x02, 0x70, + 0x00, 0x02, 0x0A, 0x8E, 0x02, 0x6F, 0x00, 0x02, 0x0A, 0x96, 0x02, 0x6E, + 0x00, 0x02, 0x0A, 0x8C, 0x02, 0x6D, 0x00, 0x02, 0x0A, 0x8F, 0x02, 0x6C, + 0x00, 0x02, 0x06, 0xEB, 0x02, 0x67, 0x00, 0x02, 0x0A, 0x8B, 0x02, 0x6B, + 0x00, 0x02, 0x0A, 0x8D, 0x02, 0x6A, 0x00, 0x02, 0x06, 0xE8, 0x02, 0x69, + 0x00, 0x02, 0x06, 0xE9, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, + 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x02, 0x60, 0x00, 0x02, 0x0A, 0xFE, + 0x02, 0x5F, 0x00, 0x02, 0x06, 0xE7, 0x02, 0x5E, 0x00, 0x02, 0x0B, 0x0C, + 0x02, 0x5D, 0x00, 0x02, 0x06, 0xED, 0x02, 0x5C, 0x00, 0x02, 0x0A, 0x8C, + 0x02, 0x5B, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, + 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x02, 0x51, 0x00, 0x02, + 0x0A, 0x8E, 0x02, 0x50, 0x00, 0x02, 0x0A, 0x8C, 0x02, 0x4F, 0x00, 0x02, + 0x0A, 0x8D, 0x02, 0x4E, 0x00, 0x02, 0x06, 0xE8, 0x02, 0x4B, 0x00, 0x02, + 0x0A, 0x99, 0x02, 0x4D, 0x00, 0x02, 0x0A, 0x95, 0x00, 0x03, 0x00, 0x14, + 0x00, 0x0E, 0x00, 0x08, 0x02, 0x48, 0x00, 0x02, 0x0B, 0x0C, 0x02, 0x47, + 0x00, 0x02, 0x06, 0xED, 0x02, 0x46, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x02, + 0x00, 0x0C, 0x00, 0x06, 0x02, 0x20, 0x00, 0x02, 0x06, 0xEB, 0x02, 0x21, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x04, 0x02, 0x18, 0x00, 0x02, + 0x0A, 0x90, 0x00, 0x14, 0x00, 0x9C, 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, + 0x00, 0x84, 0x00, 0x7E, 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, + 0x00, 0x60, 0x00, 0x5A, 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, + 0x00, 0x3C, 0x00, 0x36, 0x00, 0x30, 0x00, 0x2A, 0x02, 0x19, 0x00, 0x02, + 0x0B, 0x11, 0x02, 0x0D, 0x00, 0x02, 0x0A, 0x8C, 0x02, 0x12, 0x00, 0x02, + 0x0A, 0xF8, 0x02, 0x0A, 0x00, 0x02, 0x06, 0xEA, 0x02, 0x0F, 0x00, 0x02, + 0x0A, 0xEF, 0x02, 0x0C, 0x00, 0x02, 0x0A, 0xED, 0x02, 0x03, 0x00, 0x02, + 0x0A, 0x8E, 0x02, 0x01, 0x00, 0x02, 0x0B, 0x4A, 0x02, 0x11, 0x00, 0x02, + 0x0A, 0x91, 0x02, 0x0E, 0x00, 0x02, 0x06, 0xED, 0x02, 0x14, 0x00, 0x02, + 0x0A, 0x96, 0x01, 0xFD, 0x00, 0x02, 0x0A, 0x8F, 0x02, 0x13, 0x00, 0x02, + 0x06, 0xEB, 0x02, 0x17, 0x00, 0x02, 0x0B, 0x1B, 0x02, 0x16, 0x00, 0x02, + 0x0A, 0x90, 0x02, 0x0B, 0x00, 0x02, 0x0A, 0x8B, 0x02, 0x1A, 0x00, 0x02, + 0x06, 0xEC, 0x02, 0x04, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xFC, 0x00, 0x02, + 0x06, 0xE8, 0x02, 0x10, 0x00, 0x02, 0x06, 0xE9, 0x00, 0x06, 0x00, 0x2C, + 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x01, 0xF6, + 0x00, 0x02, 0x0B, 0x0C, 0x01, 0xF5, 0x00, 0x02, 0x06, 0xED, 0x01, 0xF4, + 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xF3, 0x00, 0x02, 0x0A, 0x8E, 0x01, 0xF2, + 0x00, 0x02, 0x0A, 0x8C, 0x01, 0xF1, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x0A, + 0x00, 0x4C, 0x00, 0x46, 0x00, 0x40, 0x00, 0x3A, 0x00, 0x34, 0x00, 0x2E, + 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x01, 0xDE, 0x00, 0x02, + 0x0A, 0x8C, 0x01, 0xDD, 0x00, 0x02, 0x06, 0xEB, 0x01, 0xE2, 0x00, 0x02, + 0x06, 0xEC, 0x01, 0xE1, 0x00, 0x02, 0x0A, 0x91, 0x01, 0xE0, 0x00, 0x02, + 0x06, 0xED, 0x01, 0xDF, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xDC, 0x00, 0x02, + 0x0A, 0x8B, 0x01, 0xDB, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xEF, 0x00, 0x02, + 0x0A, 0x96, 0x01, 0xDA, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x02, 0x00, 0x0C, + 0x00, 0x06, 0x01, 0xD4, 0x00, 0x02, 0x0A, 0x8B, 0x01, 0xD3, 0x00, 0x02, + 0x0A, 0x8C, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, + 0x00, 0x14, 0x00, 0x0E, 0x01, 0xD1, 0x00, 0x02, 0x06, 0xED, 0x01, 0xD0, + 0x00, 0x02, 0x0A, 0x8C, 0x01, 0xCF, 0x00, 0x02, 0x0A, 0x8B, 0x01, 0xCE, + 0x00, 0x02, 0x06, 0xE8, 0x01, 0xCD, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xCC, + 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x01, 0xCA, + 0x00, 0x02, 0x06, 0xED, 0x01, 0xC9, 0x00, 0x02, 0x06, 0xEC, 0x00, 0x05, + 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x01, 0xC6, + 0x00, 0x02, 0x06, 0xED, 0x01, 0xC5, 0x00, 0x02, 0x06, 0xEC, 0x01, 0xC4, + 0x00, 0x02, 0x0A, 0x91, 0x01, 0xC3, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xC2, + 0x00, 0x02, 0x06, 0xE8, 0x00, 0x18, 0x00, 0xC6, 0x00, 0xBE, 0x00, 0xB6, + 0x00, 0xAE, 0x00, 0xA6, 0x00, 0x9E, 0x00, 0x98, 0x00, 0x92, 0x00, 0x8C, + 0x00, 0x86, 0x00, 0x80, 0x00, 0x7A, 0x00, 0x74, 0x00, 0x6E, 0x00, 0x68, + 0x00, 0x62, 0x00, 0x5C, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4A, 0x00, 0x44, + 0x00, 0x3E, 0x00, 0x38, 0x00, 0x32, 0x01, 0xBD, 0x00, 0x02, 0x0A, 0xFE, + 0x01, 0xBC, 0x00, 0x02, 0x0B, 0x14, 0x01, 0xBB, 0x00, 0x02, 0x0B, 0x02, + 0x01, 0xBA, 0x00, 0x02, 0x0A, 0xF8, 0x01, 0xB9, 0x00, 0x02, 0x06, 0xEA, + 0x01, 0xB4, 0x00, 0x02, 0x0A, 0x8E, 0x01, 0xC1, 0x00, 0x02, 0x0A, 0x91, + 0x01, 0xC0, 0x00, 0x02, 0x06, 0xED, 0x01, 0xB3, 0x00, 0x02, 0x0A, 0x96, + 0x01, 0xB2, 0x00, 0x02, 0x0A, 0xF4, 0x01, 0xB1, 0x00, 0x02, 0x0A, 0x90, + 0x01, 0xB0, 0x00, 0x02, 0x0A, 0x8F, 0x01, 0xAF, 0x00, 0x02, 0x06, 0xEB, + 0x01, 0xAE, 0x00, 0x02, 0x06, 0xEC, 0x01, 0xAD, 0x00, 0x02, 0x0A, 0x8B, + 0x01, 0xAC, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0xAB, 0x00, 0x02, 0x06, 0xE8, + 0x01, 0xAA, 0x00, 0x02, 0x06, 0xE9, 0x01, 0xBF, 0x00, 0x03, 0x06, 0xEB, + 0x0A, 0x8B, 0x01, 0xBE, 0x00, 0x03, 0x06, 0xEC, 0x06, 0xE8, 0x01, 0xB8, + 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xE9, 0x01, 0xB7, 0x00, 0x03, 0x0A, 0x8B, + 0x0A, 0x8E, 0x01, 0xB6, 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xE8, 0x01, 0xB5, + 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xEB, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, + 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x01, 0xA2, + 0x00, 0x02, 0x0A, 0xFE, 0x01, 0xA1, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0xA0, + 0x00, 0x02, 0x06, 0xED, 0x01, 0x9F, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x9D, + 0x00, 0x02, 0x0A, 0x8E, 0x01, 0x9C, 0x00, 0x02, 0x0A, 0x95, 0x01, 0x9E, + 0x00, 0x02, 0x06, 0xE7, 0x00, 0x0A, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x40, + 0x00, 0x3A, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, + 0x00, 0x16, 0x01, 0x96, 0x00, 0x02, 0x0B, 0x1A, 0x01, 0x94, 0x00, 0x02, + 0x06, 0xED, 0x01, 0x93, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x91, 0x00, 0x02, + 0x0A, 0x8E, 0x01, 0x92, 0x00, 0x02, 0x06, 0xE7, 0x01, 0x90, 0x00, 0x02, + 0x0A, 0x95, 0x01, 0x8F, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0x8E, 0x00, 0x02, + 0x06, 0xE8, 0x01, 0x96, 0x00, 0x03, 0x0A, 0x8E, 0x0A, 0x8C, 0x01, 0x95, + 0x00, 0x03, 0x06, 0xE8, 0x0A, 0x8C, 0x00, 0x08, 0x00, 0x3C, 0x00, 0x36, + 0x00, 0x30, 0x00, 0x2A, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, + 0x01, 0x89, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x87, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x86, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x85, 0x00, 0x02, 0x0A, 0xF8, + 0x01, 0x84, 0x00, 0x02, 0x06, 0xEA, 0x01, 0x83, 0x00, 0x02, 0x0A, 0x8E, + 0x01, 0x82, 0x00, 0x02, 0x06, 0xE7, 0x01, 0x81, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x01, 0x79, 0x00, 0x02, 0x0A, 0x8C, + 0x01, 0x78, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, + 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, 0x01, 0x64, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x63, 0x00, 0x02, 0x06, 0xEC, 0x01, 0x62, 0x00, 0x02, 0x0A, 0x91, + 0x01, 0x61, 0x00, 0x02, 0x06, 0xE9, 0x01, 0x60, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x01, 0x00, 0x04, 0x01, 0x65, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x1B, + 0x00, 0xE8, 0x00, 0xE0, 0x00, 0xD8, 0x00, 0xD0, 0x00, 0xC8, 0x00, 0xC0, + 0x00, 0xB8, 0x00, 0xB0, 0x00, 0xA8, 0x00, 0xA0, 0x00, 0x98, 0x00, 0x92, + 0x00, 0x8C, 0x00, 0x86, 0x00, 0x80, 0x00, 0x7A, 0x00, 0x74, 0x00, 0x6E, + 0x00, 0x68, 0x00, 0x62, 0x00, 0x5C, 0x00, 0x56, 0x00, 0x50, 0x00, 0x4A, + 0x00, 0x44, 0x00, 0x3E, 0x00, 0x38, 0x01, 0x53, 0x00, 0x02, 0x0A, 0x8C, + 0x01, 0x50, 0x00, 0x02, 0x0A, 0xF8, 0x01, 0x4F, 0x00, 0x02, 0x06, 0xEA, + 0x01, 0x4D, 0x00, 0x02, 0x0A, 0x96, 0x01, 0x4C, 0x00, 0x02, 0x0A, 0x8E, + 0x01, 0x5A, 0x00, 0x02, 0x0A, 0x91, 0x01, 0x59, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x44, 0x00, 0x02, 0x0A, 0x99, 0x01, 0x4B, 0x00, 0x02, 0x0A, 0xF4, + 0x01, 0x4A, 0x00, 0x02, 0x0A, 0x8F, 0x01, 0x49, 0x00, 0x02, 0x06, 0xEB, + 0x01, 0x42, 0x00, 0x02, 0x0A, 0x8B, 0x01, 0x43, 0x00, 0x02, 0x06, 0xEC, + 0x01, 0x48, 0x00, 0x02, 0x0A, 0x8D, 0x01, 0x47, 0x00, 0x02, 0x06, 0xE8, + 0x01, 0x46, 0x00, 0x02, 0x06, 0xE9, 0x01, 0x58, 0x00, 0x03, 0x06, 0xEB, + 0x06, 0xE8, 0x01, 0x57, 0x00, 0x03, 0x06, 0xEB, 0x06, 0xE9, 0x01, 0x56, + 0x00, 0x03, 0x06, 0xEC, 0x0A, 0x8B, 0x01, 0x55, 0x00, 0x03, 0x06, 0xEC, + 0x06, 0xE8, 0x01, 0x54, 0x00, 0x03, 0x0A, 0x8C, 0x06, 0xEB, 0x01, 0x52, + 0x00, 0x03, 0x06, 0xEC, 0x06, 0xEB, 0x01, 0x51, 0x00, 0x03, 0x0A, 0x8B, + 0x06, 0xEB, 0x01, 0x5E, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xEC, 0x01, 0x5D, + 0x00, 0x03, 0x0A, 0x8D, 0x0A, 0x91, 0x01, 0x5C, 0x00, 0x03, 0x0A, 0x8D, + 0x06, 0xE9, 0x01, 0x5B, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE8, 0x00, 0x09, + 0x00, 0x44, 0x00, 0x3E, 0x00, 0x38, 0x00, 0x32, 0x00, 0x2C, 0x00, 0x26, + 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x01, 0x35, 0x00, 0x02, 0x0A, 0xFE, + 0x01, 0x34, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x33, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x32, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x31, 0x00, 0x02, 0x06, 0xE9, + 0x01, 0x30, 0x00, 0x02, 0x0A, 0x8E, 0x01, 0x2F, 0x00, 0x02, 0x06, 0xE7, + 0x01, 0x2E, 0x00, 0x02, 0x06, 0xE8, 0x01, 0x2D, 0x00, 0x02, 0x06, 0xEC, + 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x01, 0x27, 0x00, 0x02, + 0x06, 0xED, 0x01, 0x26, 0x00, 0x02, 0x0A, 0x8C, 0x01, 0x25, 0x00, 0x02, + 0x06, 0xE8, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, 0x00, 0x22, + 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x01, 0x20, 0x00, 0x02, 0x0A, 0xFE, + 0x01, 0x1F, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x1D, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x21, 0x00, 0x02, 0x0A, 0x99, 0x09, 0x24, 0x00, 0x02, 0x0A, 0x8C, + 0x01, 0x1B, 0x00, 0x02, 0x06, 0xE7, 0x01, 0x1A, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x05, 0x00, 0x24, 0x00, 0x1E, 0x00, 0x18, 0x00, 0x12, 0x00, 0x0C, + 0x01, 0x14, 0x00, 0x02, 0x0B, 0x0C, 0x01, 0x13, 0x00, 0x02, 0x06, 0xED, + 0x01, 0x12, 0x00, 0x02, 0x06, 0xE8, 0x01, 0x11, 0x00, 0x02, 0x0A, 0x8E, + 0x01, 0x10, 0x00, 0x02, 0x06, 0xE7, 0x00, 0x01, 0x00, 0x04, 0x01, 0x0B, + 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x10, 0x00, 0x7C, 0x00, 0x76, 0x00, 0x70, + 0x00, 0x6A, 0x00, 0x64, 0x00, 0x5E, 0x00, 0x58, 0x00, 0x52, 0x00, 0x4C, + 0x00, 0x46, 0x00, 0x40, 0x00, 0x3A, 0x00, 0x34, 0x00, 0x2E, 0x00, 0x28, + 0x00, 0x22, 0x00, 0xCA, 0x00, 0x02, 0x0B, 0x14, 0x00, 0xD5, 0x00, 0x02, + 0x0A, 0xF8, 0x00, 0xD4, 0x00, 0x02, 0x06, 0xEA, 0x00, 0xD3, 0x00, 0x02, + 0x0A, 0x8E, 0x00, 0xD7, 0x00, 0x02, 0x06, 0xED, 0x00, 0xD6, 0x00, 0x02, + 0x0A, 0x91, 0x00, 0xD2, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0xD1, 0x00, 0x02, + 0x0A, 0x96, 0x00, 0xD0, 0x00, 0x02, 0x0A, 0x8F, 0x00, 0xCF, 0x00, 0x02, + 0x06, 0xEB, 0x00, 0xCE, 0x00, 0x02, 0x06, 0xEC, 0x00, 0xC7, 0x00, 0x02, + 0x0A, 0x8B, 0x00, 0xCD, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0xCC, 0x00, 0x02, + 0x06, 0xE8, 0x00, 0xCB, 0x00, 0x02, 0x06, 0xE9, 0x00, 0xC8, 0x00, 0x03, + 0x0A, 0x8B, 0x06, 0xE8, 0x00, 0x06, 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, + 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x00, 0xA8, 0x00, 0x02, 0x0A, 0xFA, + 0x00, 0xA7, 0x00, 0x02, 0x0A, 0x8B, 0x00, 0xA6, 0x00, 0x02, 0x06, 0xED, + 0x00, 0xA5, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0xA4, 0x00, 0x02, 0x0A, 0x8E, + 0x00, 0xA3, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x07, 0x00, 0x34, 0x00, 0x2E, + 0x00, 0x28, 0x00, 0x22, 0x00, 0x1C, 0x00, 0x16, 0x00, 0x10, 0x00, 0x96, + 0x00, 0x02, 0x06, 0xEB, 0x00, 0x95, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x94, + 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x93, 0x00, 0x02, 0x06, 0xE7, 0x00, 0x92, + 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x91, 0x00, 0x02, 0x0A, 0x8F, 0x00, 0x90, + 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x01, 0x00, 0x04, 0x00, 0x8B, 0x00, 0x02, + 0x0A, 0x8C, 0x00, 0x17, 0x00, 0xBE, 0x00, 0xB6, 0x00, 0xAE, 0x00, 0xA6, + 0x00, 0x9E, 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, + 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, + 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, + 0x00, 0x30, 0x00, 0x6F, 0x00, 0x02, 0x0B, 0x14, 0x00, 0x6E, 0x00, 0x02, + 0x0A, 0xFE, 0x00, 0x6B, 0x00, 0x02, 0x0A, 0x95, 0x00, 0x6A, 0x00, 0x02, + 0x0A, 0xF8, 0x00, 0x69, 0x00, 0x02, 0x06, 0xEA, 0x00, 0x73, 0x00, 0x02, + 0x06, 0xEC, 0x00, 0x72, 0x00, 0x02, 0x0A, 0x91, 0x00, 0x71, 0x00, 0x02, + 0x06, 0xED, 0x00, 0x68, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x67, 0x00, 0x02, + 0x0A, 0x96, 0x00, 0x66, 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x65, 0x00, 0x02, + 0x0A, 0x8F, 0x00, 0x64, 0x00, 0x02, 0x06, 0xEB, 0x00, 0x63, 0x00, 0x02, + 0x0A, 0x8B, 0x00, 0x62, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x61, 0x00, 0x02, + 0x06, 0xE8, 0x00, 0x60, 0x00, 0x02, 0x06, 0xE9, 0x00, 0x6D, 0x00, 0x03, + 0x06, 0xEB, 0x06, 0xE8, 0x00, 0x6C, 0x00, 0x03, 0x06, 0xEB, 0x06, 0xE9, + 0x00, 0x77, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xEC, 0x00, 0x76, 0x00, 0x03, + 0x0A, 0x8D, 0x0A, 0x91, 0x00, 0x75, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE9, + 0x00, 0x74, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE8, 0x00, 0x06, 0x00, 0x2C, + 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x5B, + 0x00, 0x02, 0x0A, 0xFE, 0x00, 0x5A, 0x00, 0x02, 0x06, 0xE7, 0x00, 0x59, + 0x00, 0x02, 0x0B, 0x0C, 0x00, 0x58, 0x00, 0x02, 0x06, 0xED, 0x00, 0x57, + 0x00, 0x02, 0x0A, 0x8C, 0x00, 0x56, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x06, + 0x00, 0x2C, 0x00, 0x26, 0x00, 0x20, 0x00, 0x1A, 0x00, 0x14, 0x00, 0x0E, + 0x00, 0x4F, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x4E, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x4D, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x4C, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x51, 0x00, 0x02, 0x0A, 0x99, 0x00, 0x4B, 0x00, 0x02, 0x0A, 0x95, + 0x00, 0x03, 0x00, 0x14, 0x00, 0x0E, 0x00, 0x08, 0x00, 0x44, 0x00, 0x02, + 0x0B, 0x0C, 0x00, 0x43, 0x00, 0x02, 0x06, 0xED, 0x00, 0x42, 0x00, 0x02, + 0x0A, 0x8C, 0x00, 0x02, 0x00, 0x0C, 0x00, 0x06, 0x00, 0x3E, 0x00, 0x02, + 0x06, 0xEB, 0x00, 0x3F, 0x00, 0x02, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x04, + 0x00, 0x0A, 0x00, 0x02, 0x0A, 0x90, 0x00, 0x1A, 0x00, 0xDC, 0x00, 0xD4, + 0x00, 0xCC, 0x00, 0xC4, 0x00, 0xBC, 0x00, 0xB4, 0x00, 0xAC, 0x00, 0xA4, + 0x00, 0x9C, 0x00, 0x96, 0x00, 0x90, 0x00, 0x8A, 0x00, 0x84, 0x00, 0x7E, + 0x00, 0x78, 0x00, 0x72, 0x00, 0x6C, 0x00, 0x66, 0x00, 0x60, 0x00, 0x5A, + 0x00, 0x54, 0x00, 0x4E, 0x00, 0x48, 0x00, 0x42, 0x00, 0x3C, 0x00, 0x36, + 0x00, 0x14, 0x00, 0x02, 0x0B, 0x11, 0x00, 0x13, 0x00, 0x02, 0x0A, 0x8C, + 0x00, 0x12, 0x00, 0x02, 0x0A, 0xF8, 0x00, 0x11, 0x00, 0x02, 0x06, 0xEA, + 0x00, 0x0E, 0x00, 0x02, 0x0A, 0x8E, 0x00, 0x16, 0x00, 0x02, 0x0A, 0x91, + 0x00, 0x15, 0x00, 0x02, 0x06, 0xED, 0x00, 0x0D, 0x00, 0x02, 0x0A, 0x96, + 0x00, 0x0C, 0x00, 0x02, 0x0A, 0x8F, 0x00, 0x0B, 0x00, 0x02, 0x06, 0xEB, + 0x00, 0x09, 0x00, 0x02, 0x0B, 0x1C, 0x00, 0x08, 0x00, 0x02, 0x0A, 0x90, + 0x00, 0x03, 0x00, 0x02, 0x0A, 0x8B, 0x00, 0x04, 0x00, 0x02, 0x06, 0xEC, + 0x00, 0x07, 0x00, 0x02, 0x0A, 0x8D, 0x00, 0x06, 0x00, 0x02, 0x06, 0xE8, + 0x00, 0x05, 0x00, 0x02, 0x06, 0xE9, 0x00, 0x10, 0x00, 0x03, 0x0A, 0x8C, + 0x06, 0xEB, 0x00, 0x0F, 0x00, 0x03, 0x0A, 0x8B, 0x06, 0xEB, 0x00, 0x1E, + 0x00, 0x03, 0x0A, 0x8F, 0x0A, 0x91, 0x00, 0x1D, 0x00, 0x03, 0x0A, 0x8F, + 0x06, 0xE9, 0x00, 0x1C, 0x00, 0x03, 0x0A, 0x8F, 0x06, 0xE8, 0x00, 0x1A, + 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xEC, 0x00, 0x19, 0x00, 0x03, 0x0A, 0x8D, + 0x0A, 0x91, 0x00, 0x18, 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE9, 0x00, 0x17, + 0x00, 0x03, 0x0A, 0x8D, 0x06, 0xE8, 0x00, 0x01, 0x00, 0x42, 0x00, 0x02, + 0x00, 0x0D, 0x00, 0x3D, 0x00, 0x41, 0x00, 0x49, 0x00, 0x54, 0x00, 0x5F, + 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, 0x01, 0x0A, 0x01, 0x0F, + 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, 0x01, 0x44, 0x01, 0x45, + 0x01, 0x77, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, 0x01, 0xA9, + 0x01, 0xC8, 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x01, 0xFB, + 0x02, 0x14, 0x02, 0x1F, 0x02, 0x42, 0x02, 0x4A, 0x02, 0x55, 0x02, 0x66, + 0x02, 0x87, 0x02, 0x8D, 0x02, 0x92, 0x02, 0x9E, 0x02, 0xB1, 0x02, 0xB2, + 0x02, 0xC7, 0x02, 0xD7, 0x02, 0xE0, 0x02, 0xEF, 0x02, 0xFE, 0x03, 0x05, + 0x03, 0x16, 0x03, 0x19, 0x03, 0x1A, 0x03, 0x4B, 0x03, 0x54, 0x03, 0x67, + 0x03, 0x78, 0x03, 0x91, 0x03, 0x94, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, + 0x03, 0xE4, 0x03, 0xFC, 0x04, 0x26, 0x05, 0x3B, 0x05, 0x4D, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x01, 0x6C, 0x00, 0x0C, + 0x02, 0xB2, 0x02, 0xB8, 0x0B, 0x43, 0x02, 0xBF, 0x02, 0xC6, 0x02, 0xCA, + 0x02, 0xB2, 0x02, 0xC7, 0x02, 0xD0, 0x02, 0xC7, 0x02, 0xC7, 0x0B, 0x44, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, 0x01, 0x46, + 0x01, 0x42, 0x00, 0xF6, 0x00, 0x38, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x26, + 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, + 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x26, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x02, 0x00, 0x1F, 0x06, 0xE8, 0x06, 0xEC, + 0x00, 0x01, 0x0A, 0x4F, 0x0A, 0x5B, 0x00, 0x01, 0x0A, 0x5D, 0x0A, 0x71, + 0x00, 0x01, 0x0A, 0x74, 0x0A, 0x7B, 0x00, 0x01, 0x0A, 0x8B, 0x0A, 0x94, + 0x00, 0x01, 0x0A, 0x9A, 0x0A, 0x9A, 0x00, 0x01, 0x0A, 0x9E, 0x0A, 0xA0, + 0x00, 0x01, 0x0A, 0xA4, 0x0A, 0xA6, 0x00, 0x01, 0x0A, 0xAB, 0x0A, 0xAC, + 0x00, 0x01, 0x0A, 0xAF, 0x0A, 0xAF, 0x00, 0x01, 0x0A, 0xB7, 0x0A, 0xB8, + 0x00, 0x01, 0x0A, 0xBB, 0x0A, 0xBC, 0x00, 0x01, 0x0A, 0xBE, 0x0A, 0xC7, + 0x00, 0x01, 0x0A, 0xCA, 0x0A, 0xD9, 0x00, 0x01, 0x0A, 0xDC, 0x0A, 0xDC, + 0x00, 0x01, 0x0A, 0xDE, 0x0A, 0xDE, 0x00, 0x01, 0x0A, 0xEC, 0x0A, 0xF1, + 0x00, 0x01, 0x0A, 0xF4, 0x0A, 0xF5, 0x00, 0x01, 0x0A, 0xF8, 0x0A, 0xF8, + 0x00, 0x01, 0x0A, 0xFD, 0x0A, 0xFD, 0x00, 0x01, 0x0A, 0xFF, 0x0B, 0x01, + 0x00, 0x01, 0x0B, 0x03, 0x0B, 0x03, 0x00, 0x01, 0x0B, 0x09, 0x0B, 0x0A, + 0x00, 0x01, 0x0B, 0x0D, 0x0B, 0x0E, 0x00, 0x01, 0x0B, 0x17, 0x0B, 0x17, + 0x00, 0x01, 0x0B, 0x19, 0x0B, 0x1A, 0x00, 0x01, 0x0B, 0x1E, 0x0B, 0x1E, + 0x00, 0x01, 0x0B, 0x36, 0x0B, 0x36, 0x00, 0x01, 0x0B, 0x4A, 0x0B, 0x4A, + 0x00, 0x01, 0x0B, 0x5F, 0x0B, 0x5F, 0x00, 0x01, 0x0B, 0x67, 0x0B, 0x67, + 0x00, 0x01, 0x00, 0x02, 0x00, 0x0C, 0x02, 0xB1, 0x02, 0xB1, 0x00, 0x01, + 0x02, 0xB7, 0x02, 0xB7, 0x00, 0x07, 0x02, 0xB9, 0x02, 0xB9, 0x00, 0x03, + 0x02, 0xC0, 0x02, 0xC0, 0x00, 0x06, 0x02, 0xC5, 0x02, 0xC5, 0x00, 0x05, + 0x02, 0xC9, 0x02, 0xC9, 0x00, 0x0B, 0x02, 0xCB, 0x02, 0xCB, 0x00, 0x04, + 0x02, 0xCF, 0x02, 0xCF, 0x00, 0x08, 0x02, 0xD1, 0x02, 0xD1, 0x00, 0x09, + 0x02, 0xD4, 0x02, 0xD4, 0x00, 0x0C, 0x02, 0xD5, 0x02, 0xD5, 0x00, 0x0A, + 0x06, 0x18, 0x06, 0x18, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x0C, 0x02, 0xB1, 0x02, 0xB7, 0x02, 0xB9, 0x02, 0xC0, 0x02, 0xC5, + 0x02, 0xC9, 0x02, 0xCB, 0x02, 0xCF, 0x02, 0xD1, 0x02, 0xD4, 0x02, 0xD5, + 0x06, 0x18, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x01, + 0x00, 0xC2, 0x00, 0x5E, 0x04, 0x36, 0x04, 0x30, 0x04, 0x2A, 0x04, 0x24, + 0x04, 0x1E, 0x04, 0x18, 0x04, 0x12, 0x04, 0x0A, 0x04, 0x04, 0x03, 0xFE, + 0x03, 0xF8, 0x03, 0xF2, 0x03, 0xEC, 0x03, 0xE6, 0x03, 0xE0, 0x03, 0xD6, + 0x03, 0xCE, 0x03, 0xC8, 0x03, 0xC2, 0x03, 0xBC, 0x03, 0xB6, 0x03, 0xB0, + 0x03, 0xAA, 0x03, 0xA2, 0x03, 0x9C, 0x03, 0x94, 0x03, 0x8E, 0x03, 0x88, + 0x03, 0x82, 0x03, 0x7C, 0x03, 0x76, 0x03, 0x70, 0x03, 0x6A, 0x03, 0x64, + 0x03, 0x5E, 0x03, 0x58, 0x03, 0x52, 0x03, 0x4C, 0x03, 0x46, 0x03, 0x40, + 0x03, 0x3A, 0x03, 0x2E, 0x03, 0x22, 0x03, 0x16, 0x03, 0x0A, 0x02, 0xFE, + 0x02, 0xF2, 0x02, 0xE6, 0x02, 0xDA, 0x02, 0xCE, 0x02, 0xC2, 0x02, 0xBC, + 0x02, 0xB6, 0x02, 0xB0, 0x02, 0xAA, 0x02, 0xA4, 0x02, 0x96, 0x02, 0x88, + 0x02, 0x7E, 0x02, 0x74, 0x02, 0x6E, 0x02, 0x68, 0x02, 0x62, 0x02, 0x5C, + 0x02, 0x56, 0x02, 0x50, 0x02, 0x4A, 0x02, 0x44, 0x02, 0x3E, 0x02, 0x38, + 0x02, 0x32, 0x02, 0x26, 0x02, 0x1C, 0x02, 0x14, 0x02, 0x0E, 0x02, 0x06, + 0x02, 0x00, 0x01, 0xFA, 0x01, 0xF4, 0x01, 0xEE, 0x01, 0xE0, 0x01, 0xDA, + 0x01, 0xCC, 0x01, 0xBE, 0x01, 0xB8, 0x01, 0xB2, 0x01, 0xAC, 0x01, 0xA6, + 0x01, 0xA0, 0x01, 0x9A, 0x01, 0x94, 0x01, 0x8E, 0x01, 0x88, 0x01, 0x82, + 0x00, 0x01, 0x00, 0x5E, 0x00, 0x93, 0x00, 0x9D, 0x01, 0x10, 0x01, 0x1B, + 0x01, 0x2F, 0x01, 0x82, 0x01, 0x92, 0x01, 0xFB, 0x02, 0x42, 0x02, 0x4A, + 0x02, 0x55, 0x02, 0x66, 0x02, 0x87, 0x02, 0x92, 0x02, 0x9E, 0x02, 0xB1, + 0x02, 0xCF, 0x02, 0xD7, 0x02, 0xD9, 0x02, 0xE0, 0x02, 0xE9, 0x02, 0xF6, + 0x02, 0xFE, 0x03, 0x05, 0x03, 0x0D, 0x03, 0x16, 0x03, 0x4B, 0x03, 0x51, + 0x03, 0x54, 0x03, 0x5D, 0x03, 0x67, 0x03, 0x6E, 0x03, 0x78, 0x03, 0x81, + 0x03, 0x8B, 0x03, 0x91, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, 0x03, 0xE4, + 0x03, 0xFC, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, + 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x5D, + 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, 0x05, 0x61, 0x05, 0x9B, 0x05, 0x9C, + 0x05, 0x9D, 0x05, 0x9F, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0xB1, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xCE, 0x05, 0xCF, 0x05, 0xD0, + 0x05, 0xD1, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDF, 0x05, 0xE0, 0x05, 0xE2, + 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, + 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, 0x05, 0xF3, 0x05, 0xF4, 0x05, 0xF5, + 0x05, 0xF6, 0x06, 0x09, 0x06, 0x9E, 0x06, 0xB7, 0x06, 0xE7, 0x0A, 0x15, + 0x00, 0x02, 0x07, 0xFA, 0x08, 0xD3, 0x00, 0x02, 0x07, 0xF7, 0x09, 0x0D, + 0x00, 0x02, 0x06, 0xB8, 0x06, 0xB9, 0x00, 0x02, 0x06, 0x9F, 0x06, 0xA0, + 0x00, 0x02, 0x06, 0x0A, 0x05, 0x7D, 0x00, 0x02, 0x06, 0x03, 0x05, 0x7C, + 0x00, 0x02, 0x06, 0x02, 0x05, 0x7B, 0x00, 0x02, 0x06, 0x01, 0x05, 0x7A, + 0x00, 0x02, 0x06, 0x00, 0x05, 0x79, 0x00, 0x02, 0x05, 0xFF, 0x05, 0x78, + 0x00, 0x06, 0x06, 0x85, 0x06, 0xB2, 0x06, 0x99, 0x05, 0xFE, 0x06, 0x54, + 0x05, 0x77, 0x00, 0x06, 0x06, 0x84, 0x06, 0xB1, 0x06, 0x98, 0x05, 0xFD, + 0x06, 0x53, 0x05, 0x76, 0x00, 0x02, 0x05, 0xFC, 0x05, 0x75, 0x00, 0x06, + 0x06, 0x86, 0x06, 0xB3, 0x06, 0x9A, 0x05, 0xFB, 0x06, 0x55, 0x05, 0x74, + 0x00, 0x02, 0x05, 0xFA, 0x05, 0x73, 0x00, 0x02, 0x05, 0xF9, 0x05, 0x72, + 0x00, 0x02, 0x05, 0xF8, 0x05, 0x71, 0x00, 0x02, 0x05, 0xF7, 0x05, 0x70, + 0x00, 0x03, 0x05, 0x61, 0x07, 0xF9, 0x08, 0xCE, 0x00, 0x02, 0x05, 0x60, + 0x08, 0xD5, 0x00, 0x03, 0x05, 0xE0, 0x05, 0x5F, 0x08, 0xCD, 0x00, 0x04, + 0x06, 0xB6, 0x06, 0x9D, 0x05, 0x5E, 0x08, 0xCB, 0x00, 0x05, 0x06, 0xB7, + 0x06, 0x9E, 0x05, 0x5D, 0x07, 0xF8, 0x08, 0xCC, 0x00, 0x02, 0x08, 0x00, + 0x09, 0x15, 0x00, 0x02, 0x07, 0xFF, 0x09, 0x14, 0x00, 0x02, 0x08, 0x01, + 0x09, 0x0E, 0x00, 0x02, 0x08, 0x02, 0x09, 0x0F, 0x00, 0x02, 0x07, 0xFC, + 0x09, 0x11, 0x00, 0x02, 0x07, 0xFB, 0x09, 0x10, 0x00, 0x02, 0x07, 0xFE, + 0x09, 0x13, 0x00, 0x02, 0x07, 0xFD, 0x09, 0x12, 0x00, 0x02, 0x05, 0xBD, + 0x05, 0x6E, 0x00, 0x02, 0x05, 0xA9, 0x05, 0x65, 0x00, 0x02, 0x05, 0xA8, + 0x05, 0x64, 0x00, 0x04, 0x06, 0x83, 0x05, 0xA7, 0x06, 0x52, 0x05, 0x67, + 0x00, 0x04, 0x06, 0x82, 0x05, 0xA6, 0x06, 0x51, 0x05, 0x66, 0x00, 0x06, + 0x06, 0x81, 0x06, 0xB5, 0x06, 0x9C, 0x05, 0xA5, 0x06, 0x50, 0x05, 0x63, + 0x00, 0x06, 0x06, 0x80, 0x06, 0xB4, 0x06, 0x9B, 0x05, 0xA4, 0x06, 0x4F, + 0x05, 0x62, 0x00, 0x02, 0x05, 0xE2, 0x08, 0xD9, 0x00, 0x02, 0x05, 0xE0, + 0x08, 0xDA, 0x00, 0x02, 0x05, 0xDF, 0x08, 0xD8, 0x00, 0x02, 0x05, 0xDC, + 0x08, 0xD6, 0x00, 0x02, 0x05, 0xDB, 0x08, 0xD7, 0x00, 0x05, 0x06, 0x7E, + 0x06, 0xAF, 0x06, 0x96, 0x06, 0x4D, 0x05, 0x56, 0x00, 0x05, 0x06, 0x7D, + 0x06, 0xAE, 0x06, 0x95, 0x06, 0x4C, 0x05, 0x55, 0x00, 0x05, 0x06, 0x7C, + 0x06, 0xAD, 0x06, 0x94, 0x06, 0x4B, 0x05, 0x54, 0x00, 0x05, 0x06, 0x7A, + 0x06, 0xAB, 0x06, 0x92, 0x06, 0x49, 0x05, 0x53, 0x00, 0x05, 0x06, 0x79, + 0x06, 0xAA, 0x06, 0x91, 0x06, 0x48, 0x05, 0x52, 0x00, 0x05, 0x06, 0x77, + 0x06, 0xA8, 0x06, 0x8F, 0x06, 0x46, 0x05, 0x51, 0x00, 0x05, 0x06, 0x75, + 0x06, 0xA6, 0x06, 0x8D, 0x06, 0x44, 0x05, 0x50, 0x00, 0x05, 0x06, 0x74, + 0x06, 0xA5, 0x06, 0x8C, 0x06, 0x43, 0x05, 0x4F, 0x00, 0x05, 0x06, 0x72, + 0x06, 0xA3, 0x06, 0x8A, 0x06, 0x41, 0x05, 0x4E, 0x00, 0x05, 0x06, 0x70, + 0x06, 0xA1, 0x06, 0x88, 0x06, 0x3F, 0x05, 0x4D, 0x00, 0x02, 0x06, 0x6F, + 0x06, 0x3E, 0x00, 0x02, 0x06, 0x6E, 0x06, 0x3D, 0x00, 0x02, 0x06, 0x6D, + 0x06, 0x3C, 0x00, 0x02, 0x06, 0x6C, 0x06, 0x3B, 0x00, 0x02, 0x06, 0x6B, + 0x06, 0x3A, 0x00, 0x02, 0x06, 0x6A, 0x06, 0x39, 0x00, 0x02, 0x07, 0xF6, + 0x09, 0x0C, 0x00, 0x02, 0x07, 0xF5, 0x09, 0x0B, 0x00, 0x02, 0x06, 0x69, + 0x06, 0x38, 0x00, 0x02, 0x07, 0xF4, 0x09, 0x0A, 0x00, 0x02, 0x06, 0x68, + 0x06, 0x37, 0x00, 0x02, 0x07, 0xF3, 0x09, 0x09, 0x00, 0x02, 0x06, 0x67, + 0x06, 0x36, 0x00, 0x02, 0x06, 0x66, 0x06, 0x35, 0x00, 0x02, 0x06, 0x65, + 0x06, 0x34, 0x00, 0x03, 0x06, 0x64, 0x06, 0x33, 0x06, 0x17, 0x00, 0x02, + 0x07, 0xF2, 0x09, 0x08, 0x00, 0x03, 0x06, 0x63, 0x06, 0x19, 0x06, 0x32, + 0x00, 0x02, 0x06, 0x62, 0x06, 0x31, 0x00, 0x02, 0x07, 0xF1, 0x09, 0x07, + 0x00, 0x02, 0x07, 0xF0, 0x09, 0x06, 0x00, 0x02, 0x06, 0x61, 0x06, 0x30, + 0x00, 0x02, 0x07, 0xEF, 0x09, 0x05, 0x00, 0x02, 0x06, 0x60, 0x06, 0x2F, + 0x00, 0x03, 0x06, 0x5F, 0x06, 0x2E, 0x08, 0x65, 0x00, 0x04, 0x06, 0x5E, + 0x06, 0x18, 0x06, 0x2D, 0x08, 0x60, 0x00, 0x02, 0x06, 0x5D, 0x06, 0x2C, + 0x00, 0x02, 0x06, 0x5C, 0x06, 0x2B, 0x00, 0x02, 0x06, 0x5B, 0x06, 0x2A, + 0x00, 0x02, 0x06, 0x5A, 0x06, 0x29, 0x00, 0x02, 0x06, 0x59, 0x06, 0x28, + 0x00, 0x02, 0x06, 0x58, 0x06, 0x27, 0x00, 0x02, 0x06, 0x57, 0x06, 0x26, + 0x00, 0x03, 0x06, 0x56, 0x06, 0x25, 0x06, 0x16, 0x00, 0x02, 0x07, 0xEE, + 0x09, 0x04, 0x00, 0x02, 0x07, 0xED, 0x09, 0x03, 0x00, 0x02, 0x07, 0xEC, + 0x09, 0x02, 0x00, 0x02, 0x07, 0xEB, 0x09, 0x01, 0x00, 0x02, 0x07, 0xEA, + 0x09, 0x00, 0x00, 0x02, 0x07, 0xE9, 0x08, 0xFF, 0x00, 0x02, 0x07, 0xE8, + 0x08, 0xFE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02, + 0x02, 0x8A, 0x01, 0x42, 0x06, 0x16, 0x08, 0x05, 0x08, 0x06, 0x08, 0x08, + 0x08, 0x04, 0x08, 0x03, 0x08, 0x09, 0x08, 0x0A, 0x08, 0x0B, 0x08, 0x0C, + 0x08, 0x0D, 0x08, 0x0F, 0x08, 0x10, 0x08, 0x11, 0x08, 0x0E, 0x08, 0x12, + 0x08, 0x13, 0x08, 0x47, 0x08, 0x15, 0x08, 0x16, 0x08, 0x14, 0x08, 0x17, + 0x08, 0x18, 0x08, 0x19, 0x08, 0x1A, 0x08, 0xAE, 0x08, 0x48, 0x08, 0x49, + 0x08, 0x4A, 0x08, 0x4B, 0x08, 0xB8, 0x08, 0x1B, 0x08, 0x1C, 0x08, 0x1D, + 0x08, 0x1E, 0x08, 0x1F, 0x08, 0x20, 0x08, 0x21, 0x06, 0x17, 0x08, 0x23, + 0x08, 0x28, 0x08, 0x26, 0x08, 0x22, 0x08, 0x27, 0x08, 0x29, 0x08, 0x2A, + 0x08, 0x2B, 0x08, 0x2C, 0x01, 0x92, 0x08, 0x2E, 0x08, 0x2F, 0x08, 0x2D, + 0x08, 0x30, 0x08, 0x31, 0x08, 0x32, 0x08, 0x33, 0x08, 0x38, 0x08, 0x34, + 0x08, 0x36, 0x08, 0x37, 0x08, 0x35, 0x08, 0x3B, 0x08, 0x39, 0x08, 0x3A, + 0x08, 0x3C, 0x08, 0x3D, 0x08, 0x3E, 0x08, 0x3F, 0x08, 0x41, 0x08, 0x40, + 0x08, 0x42, 0x08, 0x43, 0x08, 0x44, 0x08, 0x45, 0x08, 0x46, 0x08, 0x4C, + 0x08, 0x4D, 0x08, 0x4E, 0x08, 0x4F, 0x08, 0x50, 0x08, 0x51, 0x08, 0x96, + 0x08, 0x97, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, 0x08, 0x9B, 0x08, 0x52, + 0x08, 0x53, 0x08, 0x54, 0x08, 0x55, 0x08, 0x56, 0x08, 0x58, 0x08, 0x59, + 0x08, 0x5A, 0x08, 0x57, 0x08, 0x9D, 0x08, 0xEA, 0x08, 0x5B, 0x08, 0x5C, + 0x08, 0x5E, 0x08, 0x5F, 0x08, 0x5D, 0x08, 0x61, 0x08, 0x62, 0x08, 0x64, + 0x08, 0x63, 0x08, 0xE9, 0x08, 0x67, 0x08, 0x68, 0x08, 0x69, 0x08, 0x6A, + 0x08, 0x9E, 0x08, 0x9F, 0x08, 0xA0, 0x08, 0x6B, 0x08, 0x6C, 0x08, 0x6D, + 0x08, 0x6E, 0x08, 0x70, 0x08, 0x75, 0x08, 0x73, 0x08, 0x6F, 0x08, 0x74, + 0x08, 0x76, 0x08, 0x77, 0x08, 0x78, 0x08, 0x79, 0x03, 0x6E, 0x08, 0x7C, + 0x08, 0x7D, 0x08, 0x7A, 0x08, 0x7B, 0x08, 0x7E, 0x03, 0x81, 0x08, 0x80, + 0x08, 0x81, 0x08, 0x7F, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA1, 0x08, 0x82, + 0x08, 0x87, 0x08, 0x83, 0x08, 0x85, 0x08, 0x86, 0x08, 0x84, 0x08, 0x8A, + 0x08, 0x88, 0x08, 0x89, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, 0x08, 0xA7, + 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, 0x08, 0x8B, + 0x08, 0x8C, 0x08, 0x8D, 0x08, 0x8E, 0x08, 0x90, 0x08, 0x8F, 0x08, 0x91, + 0x08, 0x92, 0x08, 0x93, 0x08, 0x94, 0x08, 0x95, 0x08, 0xC2, 0x08, 0xC4, + 0x08, 0xC3, 0x05, 0x59, 0x05, 0x3B, 0x05, 0x3C, 0x05, 0x3D, 0x05, 0x3F, + 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, + 0x05, 0x49, 0x05, 0x9B, 0x05, 0x9C, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0x9D, + 0x05, 0x9F, 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA8, 0x05, 0xA9, 0x05, 0xA6, + 0x05, 0xA7, 0x05, 0xB1, 0x05, 0xBD, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, + 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, + 0x05, 0xF3, 0x05, 0xF4, 0x05, 0xF5, 0x05, 0xF6, 0x06, 0x09, 0x05, 0xF7, + 0x05, 0xF8, 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, + 0x05, 0xFE, 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, + 0x06, 0x0A, 0x06, 0xEF, 0x06, 0xF0, 0x06, 0xFB, 0x08, 0xD0, 0x0B, 0x48, + 0x08, 0xD1, 0x05, 0xAA, 0x05, 0x68, 0x05, 0x69, 0x05, 0x6C, 0x05, 0x6D, + 0x05, 0x6A, 0x05, 0x6B, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, 0x05, 0xC1, + 0x05, 0xC2, 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, 0x05, 0xC7, + 0x05, 0x6F, 0x08, 0xCF, 0x08, 0xD2, 0x08, 0xCA, 0x05, 0x7E, 0x05, 0x7F, + 0x05, 0x80, 0x05, 0x81, 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, 0x05, 0x85, + 0x05, 0x86, 0x05, 0x87, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, 0x05, 0x8B, + 0x08, 0xE6, 0x08, 0xE8, 0x08, 0xE7, 0x08, 0xDC, 0x08, 0xEB, 0x05, 0x8C, + 0x05, 0x8D, 0x05, 0x8E, 0x07, 0x1E, 0x07, 0x1F, 0x07, 0x20, 0x07, 0x21, + 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, 0x07, 0x26, 0x07, 0x27, + 0x07, 0x2F, 0x07, 0x2C, 0x07, 0x2D, 0x07, 0x2E, 0x07, 0x28, 0x07, 0x29, + 0x07, 0x2A, 0x07, 0x2B, 0x08, 0xBE, 0x08, 0xEC, 0x08, 0xDB, 0x08, 0xDD, + 0x08, 0xDE, 0x08, 0xDF, 0x08, 0xE0, 0x08, 0xE1, 0x08, 0xE2, 0x08, 0xE3, + 0x08, 0xE4, 0x08, 0xE5, 0x08, 0xF2, 0x08, 0xF8, 0x08, 0xF6, 0x08, 0xFB, + 0x08, 0xF4, 0x08, 0xF5, 0x08, 0xF9, 0x08, 0xF3, 0x08, 0xF7, 0x08, 0xED, + 0x08, 0xEE, 0x08, 0xEF, 0x08, 0xF0, 0x08, 0xF1, 0x08, 0xFC, 0x08, 0xFD, + 0x00, 0x01, 0x01, 0x42, 0x00, 0x02, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x15, + 0x00, 0x1B, 0x00, 0x20, 0x00, 0x42, 0x00, 0x43, 0x00, 0x4E, 0x00, 0x57, + 0x00, 0x58, 0x00, 0x63, 0x00, 0x66, 0x00, 0x71, 0x00, 0x78, 0x00, 0x8B, + 0x00, 0x92, 0x00, 0x9C, 0x00, 0xA5, 0x00, 0xA6, 0x00, 0xA7, 0x00, 0xC7, + 0x00, 0xC8, 0x00, 0xD2, 0x00, 0xD7, 0x00, 0xE9, 0x00, 0xEB, 0x00, 0xEC, + 0x00, 0xF6, 0x00, 0xFB, 0x01, 0x09, 0x01, 0x13, 0x01, 0x1D, 0x01, 0x1E, + 0x01, 0x26, 0x01, 0x27, 0x01, 0x32, 0x01, 0x33, 0x01, 0x41, 0x01, 0x42, + 0x01, 0x56, 0x01, 0x59, 0x01, 0x5F, 0x01, 0x64, 0x01, 0x79, 0x01, 0x86, + 0x01, 0x87, 0x01, 0x88, 0x01, 0x90, 0x01, 0x93, 0x01, 0x94, 0x01, 0x96, + 0x01, 0x97, 0x01, 0x9F, 0x01, 0xA0, 0x01, 0xAD, 0x01, 0xB5, 0x01, 0xB6, + 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xBB, 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC6, + 0x01, 0xCA, 0x01, 0xCF, 0x01, 0xD0, 0x01, 0xD1, 0x01, 0xD3, 0x01, 0xD4, + 0x01, 0xDC, 0x01, 0xDE, 0x01, 0xE0, 0x01, 0xF2, 0x01, 0xF5, 0x01, 0xFF, + 0x02, 0x06, 0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, 0x02, 0x27, + 0x02, 0x2E, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x46, + 0x02, 0x47, 0x02, 0x50, 0x02, 0x5C, 0x02, 0x5D, 0x02, 0x67, 0x02, 0x6E, + 0x02, 0x79, 0x02, 0x80, 0x02, 0x8B, 0x02, 0x8F, 0x02, 0x90, 0x02, 0x97, + 0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xC0, + 0x02, 0xC5, 0x02, 0xD1, 0x02, 0xDC, 0x02, 0xE7, 0x02, 0xEB, 0x02, 0xEC, + 0x02, 0xF4, 0x02, 0xF8, 0x02, 0xF9, 0x03, 0x03, 0x03, 0x04, 0x03, 0x10, + 0x03, 0x11, 0x03, 0x17, 0x03, 0x2B, 0x03, 0x2E, 0x03, 0x34, 0x03, 0x39, + 0x03, 0x4F, 0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x6C, 0x03, 0x6F, + 0x03, 0x70, 0x03, 0x71, 0x03, 0x72, 0x03, 0x73, 0x03, 0x7F, 0x03, 0x82, + 0x03, 0x83, 0x03, 0x86, 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x90, 0x03, 0x92, + 0x03, 0xA0, 0x03, 0xA1, 0x03, 0xA2, 0x03, 0xA3, 0x03, 0xA6, 0x03, 0xAA, + 0x03, 0xAB, 0x03, 0xB1, 0x03, 0xBA, 0x03, 0xBB, 0x03, 0xBC, 0x03, 0xBD, + 0x03, 0xBE, 0x03, 0xBF, 0x03, 0xC0, 0x03, 0xC5, 0x03, 0xCC, 0x03, 0xD5, + 0x03, 0xD7, 0x03, 0xDC, 0x03, 0xDD, 0x03, 0xE0, 0x03, 0xE1, 0x03, 0xE5, + 0x03, 0xEB, 0x03, 0xEE, 0x04, 0x02, 0x04, 0x05, 0x04, 0x9C, 0x04, 0xB6, + 0x04, 0xB7, 0x05, 0x49, 0x05, 0x4D, 0x05, 0x4E, 0x05, 0x4F, 0x05, 0x50, + 0x05, 0x51, 0x05, 0x52, 0x05, 0x53, 0x05, 0x54, 0x05, 0x55, 0x05, 0x56, + 0x05, 0x59, 0x05, 0x62, 0x05, 0x63, 0x05, 0x64, 0x05, 0x65, 0x05, 0x66, + 0x05, 0x67, 0x05, 0x68, 0x05, 0x69, 0x05, 0x6A, 0x05, 0x6B, 0x05, 0x6C, + 0x05, 0x6D, 0x05, 0x6E, 0x05, 0x6F, 0x05, 0x70, 0x05, 0x71, 0x05, 0x72, + 0x05, 0x73, 0x05, 0x74, 0x05, 0x75, 0x05, 0x76, 0x05, 0x77, 0x05, 0x78, + 0x05, 0x79, 0x05, 0x7A, 0x05, 0x7B, 0x05, 0x7C, 0x05, 0x7D, 0x05, 0x7E, + 0x05, 0x7F, 0x05, 0x80, 0x05, 0x81, 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, + 0x05, 0x85, 0x05, 0x86, 0x05, 0x87, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, + 0x05, 0x8B, 0x05, 0x8C, 0x05, 0x8D, 0x05, 0x8E, 0x05, 0x91, 0x05, 0x93, + 0x05, 0x95, 0x05, 0xA3, 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, + 0x05, 0xA8, 0x05, 0xA9, 0x05, 0xB2, 0x05, 0xB3, 0x05, 0xB4, 0x05, 0xB6, + 0x05, 0xB7, 0x05, 0xB8, 0x05, 0xB9, 0x05, 0xBA, 0x05, 0xBB, 0x05, 0xBC, + 0x05, 0xBD, 0x05, 0xDD, 0x05, 0xE3, 0x05, 0xE4, 0x05, 0xF7, 0x05, 0xF8, + 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFD, 0x05, 0xFE, + 0x05, 0xFF, 0x06, 0x00, 0x06, 0x01, 0x06, 0x02, 0x06, 0x03, 0x06, 0x0A, + 0x06, 0xDA, 0x06, 0xDB, 0x06, 0xE1, 0x06, 0xE4, 0x06, 0xED, 0x06, 0xEF, + 0x06, 0xF0, 0x06, 0xFB, 0x07, 0x06, 0x07, 0x07, 0x07, 0x08, 0x07, 0x09, + 0x07, 0x0A, 0x07, 0x0B, 0x07, 0x0C, 0x07, 0x0D, 0x07, 0x0E, 0x07, 0x0F, + 0x07, 0x10, 0x07, 0x11, 0x07, 0x12, 0x07, 0x13, 0x07, 0x14, 0x07, 0x15, + 0x07, 0x16, 0x07, 0x17, 0x09, 0xC3, 0x0A, 0x12, 0x0A, 0x2E, 0x0A, 0x85, + 0x0A, 0x86, 0x0A, 0x87, 0x0A, 0x8B, 0x0A, 0x8C, 0x0A, 0xAC, 0x0A, 0xB7, + 0x0A, 0xB9, 0x0A, 0xBA, 0x0A, 0xE4, 0x0A, 0xE7, 0x0A, 0xE8, 0x0A, 0xE9, + 0x0A, 0xEB, 0x0A, 0xEC, 0x0A, 0xED, 0x0A, 0xEE, 0x0A, 0xF0, 0x0B, 0x01, + 0x0B, 0x02, 0x0B, 0x18, 0x0B, 0x19, 0x0B, 0x1A, 0x0B, 0x1D, 0x0B, 0x1E, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x4E, 0xDC, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x24, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x00, 0x4E, 0xDC, 0x00, 0x03, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x4E, 0xB8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x06, 0x8E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, + 0x00, 0x00, 0x06, 0xEF, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x21, + 0x00, 0x00, 0x05, 0x91, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x00, 0x05, 0xCB, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x23, + 0x00, 0x00, 0x05, 0xAB, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x00, 0x05, 0x1B, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x06, 0xCE, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x26, + 0x00, 0x00, 0x05, 0x8F, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x00, 0x05, 0xCA, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x05, 0x9B, 0x00, 0x00, 0x00, 0x2A, 0x00, 0x00, 0x00, 0x2A, + 0x00, 0x00, 0x06, 0x09, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x2B, + 0x00, 0x00, 0x05, 0xF0, 0x00, 0x00, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x2C, + 0x00, 0x00, 0x05, 0xDB, 0x00, 0x00, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x2D, + 0x00, 0x00, 0x05, 0xB1, 0x00, 0x00, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x2E, + 0x00, 0x00, 0x05, 0xDC, 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x00, 0x2F, + 0x00, 0x00, 0x05, 0xAD, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x32, + 0x00, 0x00, 0x05, 0x3B, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x35, + 0x00, 0x00, 0x05, 0x3F, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x39, + 0x00, 0x00, 0x05, 0x43, 0x00, 0x00, 0x00, 0x3A, 0x00, 0x00, 0x00, 0x3A, + 0x00, 0x00, 0x05, 0xDF, 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x3B, + 0x00, 0x00, 0x05, 0xE2, 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x3C, + 0x00, 0x00, 0x05, 0xEA, 0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x3D, + 0x00, 0x00, 0x05, 0xEE, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x3E, + 0x00, 0x00, 0x05, 0xEB, 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x00, 0x3F, + 0x00, 0x00, 0x05, 0x95, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x05, 0xA3, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x41, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x42, + 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x43, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x46, + 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x00, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x48, + 0x00, 0x00, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x49, + 0x00, 0x00, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x4A, 0x00, 0x00, 0x00, 0x4A, + 0x00, 0x00, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x4B, 0x00, 0x00, 0x00, 0x4B, + 0x00, 0x00, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x4C, 0x00, 0x00, 0x00, 0x4C, + 0x00, 0x00, 0x01, 0x19, 0x00, 0x00, 0x00, 0x4D, 0x00, 0x00, 0x00, 0x4D, + 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x4E, + 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x4F, + 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x50, + 0x00, 0x00, 0x01, 0x77, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x01, 0x7E, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x52, + 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0x53, + 0x00, 0x00, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x54, + 0x00, 0x00, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, + 0x00, 0x00, 0x01, 0xA8, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x56, + 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, + 0x00, 0x00, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x00, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x59, + 0x00, 0x00, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x5A, 0x00, 0x00, 0x00, 0x5A, + 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x5B, 0x00, 0x00, 0x00, 0x5B, + 0x00, 0x00, 0x05, 0x9D, 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5C, + 0x00, 0x00, 0x05, 0xB0, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x5D, + 0x00, 0x00, 0x05, 0x9F, 0x00, 0x00, 0x00, 0x5E, 0x00, 0x00, 0x00, 0x5E, + 0x00, 0x00, 0x06, 0x08, 0x00, 0x00, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x5F, + 0x00, 0x00, 0x06, 0x05, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x60, + 0x00, 0x00, 0x06, 0xD8, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x61, + 0x00, 0x00, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x62, + 0x00, 0x00, 0x02, 0x42, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x63, + 0x00, 0x00, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x55, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x65, + 0x00, 0x00, 0x02, 0x66, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x66, + 0x00, 0x00, 0x02, 0x87, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x67, + 0x00, 0x00, 0x02, 0x92, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x68, + 0x00, 0x00, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x69, + 0x00, 0x00, 0x02, 0xB1, 0x00, 0x00, 0x00, 0x6A, 0x00, 0x00, 0x00, 0x6A, + 0x00, 0x00, 0x02, 0xCF, 0x00, 0x00, 0x00, 0x6B, 0x00, 0x00, 0x00, 0x6B, + 0x00, 0x00, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x00, 0x6C, + 0x00, 0x00, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0x00, 0x6D, + 0x00, 0x00, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x6E, 0x00, 0x00, 0x00, 0x6E, + 0x00, 0x00, 0x03, 0x05, 0x00, 0x00, 0x00, 0x6F, 0x00, 0x00, 0x00, 0x6F, + 0x00, 0x00, 0x03, 0x16, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x70, + 0x00, 0x00, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x71, + 0x00, 0x00, 0x03, 0x51, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x72, + 0x00, 0x00, 0x03, 0x54, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x73, + 0x00, 0x00, 0x03, 0x67, 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x00, 0x74, + 0x00, 0x00, 0x03, 0x78, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0x75, + 0x00, 0x00, 0x03, 0x91, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x76, + 0x00, 0x00, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x77, + 0x00, 0x00, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x78, + 0x00, 0x00, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x79, + 0x00, 0x00, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x7A, 0x00, 0x00, 0x00, 0x7A, + 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x7B, 0x00, 0x00, 0x00, 0x7B, + 0x00, 0x00, 0x05, 0xA1, 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x00, 0x7C, + 0x00, 0x00, 0x05, 0xAE, 0x00, 0x00, 0x00, 0x7D, 0x00, 0x00, 0x00, 0x7D, + 0x00, 0x00, 0x05, 0xA2, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00, 0x7E, + 0x00, 0x00, 0x05, 0xF6, 0x00, 0x00, 0x00, 0xA0, 0x00, 0x00, 0x00, 0xA0, + 0x00, 0x00, 0x06, 0xF0, 0x00, 0x00, 0x00, 0xA1, 0x00, 0x00, 0x00, 0xA1, + 0x00, 0x00, 0x05, 0x93, 0x00, 0x00, 0x00, 0xA2, 0x00, 0x00, 0x00, 0xA2, + 0x00, 0x00, 0x05, 0x1C, 0x00, 0x00, 0x00, 0xA3, 0x00, 0x00, 0x00, 0xA3, + 0x00, 0x00, 0x05, 0x1E, 0x00, 0x00, 0x00, 0xA4, 0x00, 0x00, 0x00, 0xA4, + 0x00, 0x00, 0x05, 0xAC, 0x00, 0x00, 0x00, 0xA5, 0x00, 0x00, 0x00, 0xA5, + 0x00, 0x00, 0x05, 0x1D, 0x00, 0x00, 0x00, 0xA6, 0x00, 0x00, 0x00, 0xA6, + 0x00, 0x00, 0x05, 0xAF, 0x00, 0x00, 0x00, 0xA7, 0x00, 0x00, 0x00, 0xA7, + 0x00, 0x00, 0x06, 0x1C, 0x00, 0x00, 0x00, 0xA8, 0x00, 0x00, 0x00, 0xA8, + 0x00, 0x00, 0x06, 0xDA, 0x00, 0x00, 0x00, 0xA9, 0x00, 0x00, 0x00, 0xA9, + 0x00, 0x00, 0x06, 0x0C, 0x00, 0x00, 0x00, 0xAA, 0x00, 0x00, 0x00, 0xAA, + 0x00, 0x00, 0x06, 0x16, 0x00, 0x00, 0x00, 0xAB, 0x00, 0x00, 0x00, 0xAB, + 0x00, 0x00, 0x05, 0xE8, 0x00, 0x00, 0x00, 0xAC, 0x00, 0x00, 0x00, 0xAC, + 0x00, 0x00, 0x06, 0x04, 0x00, 0x00, 0x00, 0xAE, 0x00, 0x00, 0x00, 0xAE, + 0x00, 0x00, 0x06, 0x0B, 0x00, 0x00, 0x00, 0xAF, 0x00, 0x00, 0x00, 0xAF, + 0x00, 0x00, 0x06, 0xDE, 0x00, 0x00, 0x00, 0xB0, 0x00, 0x00, 0x00, 0xB0, + 0x00, 0x00, 0x06, 0x15, 0x00, 0x00, 0x00, 0xB1, 0x00, 0x00, 0x00, 0xB1, + 0x00, 0x00, 0x05, 0xF4, 0x00, 0x00, 0x00, 0xB2, 0x00, 0x00, 0x00, 0xB3, + 0x00, 0x00, 0x06, 0x43, 0x00, 0x00, 0x00, 0xB4, 0x00, 0x00, 0x00, 0xB4, + 0x00, 0x00, 0x06, 0xD6, 0x00, 0x00, 0x00, 0xB5, 0x00, 0x00, 0x00, 0xB5, + 0x00, 0x00, 0x03, 0x95, 0x00, 0x00, 0x00, 0xB6, 0x00, 0x00, 0x00, 0xB6, + 0x00, 0x00, 0x06, 0x1A, 0x00, 0x00, 0x00, 0xB7, 0x00, 0x00, 0x00, 0xB7, + 0x00, 0x00, 0x05, 0xE3, 0x00, 0x00, 0x00, 0xB8, 0x00, 0x00, 0x00, 0xB8, + 0x00, 0x00, 0x06, 0xE5, 0x00, 0x00, 0x00, 0xB9, 0x00, 0x00, 0x00, 0xB9, + 0x00, 0x00, 0x06, 0x41, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0xBA, + 0x00, 0x00, 0x06, 0x17, 0x00, 0x00, 0x00, 0xBB, 0x00, 0x00, 0x00, 0xBB, + 0x00, 0x00, 0x05, 0xE9, 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x00, 0xBC, + 0x00, 0x00, 0x06, 0xBF, 0x00, 0x00, 0x00, 0xBD, 0x00, 0x00, 0x00, 0xBD, + 0x00, 0x00, 0x06, 0xBB, 0x00, 0x00, 0x00, 0xBE, 0x00, 0x00, 0x00, 0xBE, + 0x00, 0x00, 0x06, 0xC0, 0x00, 0x00, 0x00, 0xBF, 0x00, 0x00, 0x00, 0xBF, + 0x00, 0x00, 0x05, 0x98, 0x00, 0x00, 0x00, 0xC0, 0x00, 0x00, 0x00, 0xC2, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xC3, 0x00, 0x00, 0x00, 0xC3, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xC4, 0x00, 0x00, 0x00, 0xC4, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xC5, 0x00, 0x00, 0x00, 0xC5, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xC6, 0x00, 0x00, 0x00, 0xC6, + 0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0xC7, 0x00, 0x00, 0x00, 0xC7, + 0x00, 0x00, 0x00, 0x4B, 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x00, 0xCB, + 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0xCC, 0x00, 0x00, 0x00, 0xCE, + 0x00, 0x00, 0x00, 0xCB, 0x00, 0x00, 0x00, 0xCF, 0x00, 0x00, 0x00, 0xCF, + 0x00, 0x00, 0x00, 0xC7, 0x00, 0x00, 0x00, 0xD0, 0x00, 0x00, 0x00, 0xD0, + 0x00, 0x00, 0x09, 0x1A, 0x00, 0x00, 0x00, 0xD1, 0x00, 0x00, 0x00, 0xD1, + 0x00, 0x00, 0x01, 0x2D, 0x00, 0x00, 0x00, 0xD2, 0x00, 0x00, 0x00, 0xD4, + 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x00, 0xD5, 0x00, 0x00, 0x00, 0xD5, + 0x00, 0x00, 0x01, 0x43, 0x00, 0x00, 0x00, 0xD6, 0x00, 0x00, 0x00, 0xD6, + 0x00, 0x00, 0x01, 0x42, 0x00, 0x00, 0x00, 0xD7, 0x00, 0x00, 0x00, 0xD7, + 0x00, 0x00, 0x05, 0xF2, 0x00, 0x00, 0x00, 0xD8, 0x00, 0x00, 0x00, 0xD8, + 0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x00, 0xD9, 0x00, 0x00, 0x00, 0xDC, + 0x00, 0x00, 0x01, 0xAA, 0x00, 0x00, 0x00, 0xDD, 0x00, 0x00, 0x00, 0xDD, + 0x00, 0x00, 0x01, 0xDA, 0x00, 0x00, 0x00, 0xDE, 0x00, 0x00, 0x00, 0xDE, + 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x00, 0xDF, 0x00, 0x00, 0x00, 0xDF, + 0x00, 0x00, 0x03, 0x76, 0x00, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0xE0, + 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x00, 0xE1, 0x00, 0x00, 0x00, 0xE1, + 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x00, 0xE2, 0x00, 0x00, 0x00, 0xE2, + 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x00, 0xE3, 0x00, 0x00, 0x00, 0xE3, + 0x00, 0x00, 0x02, 0x1A, 0x00, 0x00, 0x00, 0xE4, 0x00, 0x00, 0x00, 0xE4, + 0x00, 0x00, 0x02, 0x0B, 0x00, 0x00, 0x00, 0xE5, 0x00, 0x00, 0x00, 0xE5, + 0x00, 0x00, 0x02, 0x16, 0x00, 0x00, 0x00, 0xE6, 0x00, 0x00, 0x00, 0xE6, + 0x00, 0x00, 0x02, 0x1F, 0x00, 0x00, 0x00, 0xE7, 0x00, 0x00, 0x00, 0xE7, + 0x00, 0x00, 0x02, 0x4D, 0x00, 0x00, 0x00, 0xE8, 0x00, 0x00, 0x00, 0xEA, + 0x00, 0x00, 0x02, 0x69, 0x00, 0x00, 0x00, 0xEB, 0x00, 0x00, 0x00, 0xEB, + 0x00, 0x00, 0x02, 0x67, 0x00, 0x00, 0x00, 0xEC, 0x00, 0x00, 0x00, 0xEE, + 0x00, 0x00, 0x02, 0xBA, 0x00, 0x00, 0x00, 0xEF, 0x00, 0x00, 0x00, 0xEF, + 0x00, 0x00, 0x02, 0xB4, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0xF0, + 0x00, 0x00, 0x04, 0x53, 0x00, 0x00, 0x00, 0xF1, 0x00, 0x00, 0x00, 0xF1, + 0x00, 0x00, 0x03, 0x06, 0x00, 0x00, 0x00, 0xF2, 0x00, 0x00, 0x00, 0xF4, + 0x00, 0x00, 0x03, 0x1B, 0x00, 0x00, 0x00, 0xF5, 0x00, 0x00, 0x00, 0xF5, + 0x00, 0x00, 0x03, 0x18, 0x00, 0x00, 0x00, 0xF6, 0x00, 0x00, 0x00, 0xF6, + 0x00, 0x00, 0x03, 0x17, 0x00, 0x00, 0x00, 0xF7, 0x00, 0x00, 0x00, 0xF7, + 0x00, 0x00, 0x05, 0xF3, 0x00, 0x00, 0x00, 0xF8, 0x00, 0x00, 0x00, 0xF8, + 0x00, 0x00, 0x03, 0x19, 0x00, 0x00, 0x00, 0xF9, 0x00, 0x00, 0x00, 0xFB, + 0x00, 0x00, 0x03, 0x97, 0x00, 0x00, 0x00, 0xFC, 0x00, 0x00, 0x00, 0xFC, + 0x00, 0x00, 0x03, 0x92, 0x00, 0x00, 0x00, 0xFD, 0x00, 0x00, 0x00, 0xFD, + 0x00, 0x00, 0x03, 0xE8, 0x00, 0x00, 0x00, 0xFE, 0x00, 0x00, 0x00, 0xFE, + 0x00, 0x00, 0x02, 0x49, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0xFF, + 0x00, 0x00, 0x03, 0xE5, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x01, 0x01, + 0x00, 0x00, 0x02, 0x13, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x01, 0x02, + 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x01, 0x03, + 0x00, 0x00, 0x01, 0xFD, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x01, 0x04, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x01, 0x05, + 0x00, 0x00, 0x02, 0x14, 0x00, 0x00, 0x01, 0x06, 0x00, 0x00, 0x01, 0x06, + 0x00, 0x00, 0x00, 0x4C, 0x00, 0x00, 0x01, 0x07, 0x00, 0x00, 0x01, 0x07, + 0x00, 0x00, 0x02, 0x4E, 0x00, 0x00, 0x01, 0x08, 0x00, 0x00, 0x01, 0x08, + 0x00, 0x00, 0x00, 0x4D, 0x00, 0x00, 0x01, 0x09, 0x00, 0x00, 0x01, 0x09, + 0x00, 0x00, 0x02, 0x4F, 0x00, 0x00, 0x01, 0x0A, 0x00, 0x00, 0x01, 0x0A, + 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x01, 0x0B, 0x00, 0x00, 0x01, 0x0B, + 0x00, 0x00, 0x02, 0x50, 0x00, 0x00, 0x01, 0x0C, 0x00, 0x00, 0x01, 0x0C, + 0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x01, 0x0D, 0x00, 0x00, 0x01, 0x0D, + 0x00, 0x00, 0x02, 0x51, 0x00, 0x00, 0x01, 0x0E, 0x00, 0x00, 0x01, 0x0E, + 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x01, 0x0F, 0x00, 0x00, 0x01, 0x0F, + 0x00, 0x00, 0x02, 0x5B, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x01, 0x10, + 0x00, 0x00, 0x09, 0x18, 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x01, 0x11, + 0x00, 0x00, 0x02, 0x56, 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x01, 0x12, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x01, 0x13, + 0x00, 0x00, 0x02, 0x6C, 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x01, 0x14, + 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x01, 0x15, 0x00, 0x00, 0x01, 0x15, + 0x00, 0x00, 0x02, 0x6D, 0x00, 0x00, 0x01, 0x16, 0x00, 0x00, 0x01, 0x16, + 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x01, 0x17, + 0x00, 0x00, 0x02, 0x6E, 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x01, 0x18, + 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x01, 0x19, 0x00, 0x00, 0x01, 0x19, + 0x00, 0x00, 0x02, 0x6F, 0x00, 0x00, 0x01, 0x1A, 0x00, 0x00, 0x01, 0x1A, + 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x01, 0x1B, 0x00, 0x00, 0x01, 0x1B, + 0x00, 0x00, 0x02, 0x70, 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x01, 0x1C, + 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x01, 0x1D, 0x00, 0x00, 0x01, 0x1D, + 0x00, 0x00, 0x02, 0x95, 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x01, 0x1E, + 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x01, 0x1F, + 0x00, 0x00, 0x02, 0x96, 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x01, 0x20, + 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x01, 0x21, + 0x00, 0x00, 0x02, 0x97, 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x01, 0x22, + 0x00, 0x00, 0x00, 0x93, 0x00, 0x00, 0x01, 0x23, 0x00, 0x00, 0x01, 0x23, + 0x00, 0x00, 0x02, 0x98, 0x00, 0x00, 0x01, 0x24, 0x00, 0x00, 0x01, 0x24, + 0x00, 0x00, 0x00, 0xA3, 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x01, 0x25, + 0x00, 0x00, 0x02, 0xA9, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x01, 0x26, + 0x00, 0x00, 0x00, 0xA9, 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, 0x01, 0x27, + 0x00, 0x00, 0x02, 0xA8, 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x01, 0x28, + 0x00, 0x00, 0x00, 0xCE, 0x00, 0x00, 0x01, 0x29, 0x00, 0x00, 0x01, 0x29, + 0x00, 0x00, 0x02, 0xB6, 0x00, 0x00, 0x01, 0x2A, 0x00, 0x00, 0x01, 0x2A, + 0x00, 0x00, 0x00, 0xCF, 0x00, 0x00, 0x01, 0x2B, 0x00, 0x00, 0x01, 0x2B, + 0x00, 0x00, 0x02, 0xBD, 0x00, 0x00, 0x01, 0x2C, 0x00, 0x00, 0x01, 0x2C, + 0x00, 0x00, 0x00, 0xD0, 0x00, 0x00, 0x01, 0x2D, 0x00, 0x00, 0x01, 0x2D, + 0x00, 0x00, 0x02, 0xBE, 0x00, 0x00, 0x01, 0x2E, 0x00, 0x00, 0x01, 0x2E, + 0x00, 0x00, 0x00, 0xD1, 0x00, 0x00, 0x01, 0x2F, 0x00, 0x00, 0x01, 0x2F, + 0x00, 0x00, 0x02, 0xC0, 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x01, 0x30, + 0x00, 0x00, 0x00, 0xD2, 0x00, 0x00, 0x01, 0x31, 0x00, 0x00, 0x01, 0x31, + 0x00, 0x00, 0x02, 0xB2, 0x00, 0x00, 0x01, 0x32, 0x00, 0x00, 0x01, 0x32, + 0x00, 0x00, 0x09, 0x22, 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, 0x01, 0x33, + 0x00, 0x00, 0x02, 0xCD, 0x00, 0x00, 0x01, 0x34, 0x00, 0x00, 0x01, 0x34, + 0x00, 0x00, 0x01, 0x0B, 0x00, 0x00, 0x01, 0x35, 0x00, 0x00, 0x01, 0x35, + 0x00, 0x00, 0x02, 0xD2, 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x01, 0x36, + 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x01, 0x37, 0x00, 0x00, 0x01, 0x37, + 0x00, 0x00, 0x02, 0xD9, 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x01, 0x38, + 0x00, 0x00, 0x09, 0x50, 0x00, 0x00, 0x01, 0x39, 0x00, 0x00, 0x01, 0x39, + 0x00, 0x00, 0x01, 0x1A, 0x00, 0x00, 0x01, 0x3A, 0x00, 0x00, 0x01, 0x3A, + 0x00, 0x00, 0x02, 0xE8, 0x00, 0x00, 0x01, 0x3B, 0x00, 0x00, 0x01, 0x3B, + 0x00, 0x00, 0x01, 0x1B, 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x01, 0x3C, + 0x00, 0x00, 0x02, 0xE9, 0x00, 0x00, 0x01, 0x3D, 0x00, 0x00, 0x01, 0x3D, + 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x01, 0x3E, 0x00, 0x00, 0x01, 0x3E, + 0x00, 0x00, 0x02, 0xEA, 0x00, 0x00, 0x01, 0x3F, 0x00, 0x00, 0x01, 0x3F, + 0x00, 0x00, 0x09, 0x24, 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0x40, + 0x00, 0x00, 0x02, 0xE7, 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x01, 0x41, + 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x01, 0x42, 0x00, 0x00, 0x01, 0x42, + 0x00, 0x00, 0x02, 0xE1, 0x00, 0x00, 0x01, 0x43, 0x00, 0x00, 0x01, 0x43, + 0x00, 0x00, 0x01, 0x2E, 0x00, 0x00, 0x01, 0x44, 0x00, 0x00, 0x01, 0x44, + 0x00, 0x00, 0x03, 0x0C, 0x00, 0x00, 0x01, 0x45, 0x00, 0x00, 0x01, 0x45, + 0x00, 0x00, 0x01, 0x2F, 0x00, 0x00, 0x01, 0x46, 0x00, 0x00, 0x01, 0x46, + 0x00, 0x00, 0x03, 0x0D, 0x00, 0x00, 0x01, 0x47, 0x00, 0x00, 0x01, 0x47, + 0x00, 0x00, 0x01, 0x30, 0x00, 0x00, 0x01, 0x48, 0x00, 0x00, 0x01, 0x48, + 0x00, 0x00, 0x03, 0x0E, 0x00, 0x00, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x4A, + 0x00, 0x00, 0x01, 0x37, 0x00, 0x00, 0x01, 0x4B, 0x00, 0x00, 0x01, 0x4B, + 0x00, 0x00, 0x03, 0x08, 0x00, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0x4C, + 0x00, 0x00, 0x01, 0x49, 0x00, 0x00, 0x01, 0x4D, 0x00, 0x00, 0x01, 0x4D, + 0x00, 0x00, 0x03, 0x1E, 0x00, 0x00, 0x01, 0x4E, 0x00, 0x00, 0x01, 0x4E, + 0x00, 0x00, 0x01, 0x4A, 0x00, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x01, 0x4F, + 0x00, 0x00, 0x03, 0x1F, 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x01, 0x50, + 0x00, 0x00, 0x01, 0x4B, 0x00, 0x00, 0x01, 0x51, 0x00, 0x00, 0x01, 0x51, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x01, 0x52, 0x00, 0x00, 0x01, 0x52, + 0x00, 0x00, 0x01, 0x76, 0x00, 0x00, 0x01, 0x53, 0x00, 0x00, 0x01, 0x53, + 0x00, 0x00, 0x03, 0x48, 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x01, 0x54, + 0x00, 0x00, 0x01, 0x81, 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x01, 0x55, + 0x00, 0x00, 0x03, 0x5C, 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x01, 0x56, + 0x00, 0x00, 0x01, 0x82, 0x00, 0x00, 0x01, 0x57, 0x00, 0x00, 0x01, 0x57, + 0x00, 0x00, 0x03, 0x5D, 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x01, 0x58, + 0x00, 0x00, 0x01, 0x83, 0x00, 0x00, 0x01, 0x59, 0x00, 0x00, 0x01, 0x59, + 0x00, 0x00, 0x03, 0x5E, 0x00, 0x00, 0x01, 0x5A, 0x00, 0x00, 0x01, 0x5A, + 0x00, 0x00, 0x01, 0x8E, 0x00, 0x00, 0x01, 0x5B, 0x00, 0x00, 0x01, 0x5B, + 0x00, 0x00, 0x03, 0x6A, 0x00, 0x00, 0x01, 0x5C, 0x00, 0x00, 0x01, 0x5C, + 0x00, 0x00, 0x01, 0x8F, 0x00, 0x00, 0x01, 0x5D, 0x00, 0x00, 0x01, 0x5D, + 0x00, 0x00, 0x03, 0x6B, 0x00, 0x00, 0x01, 0x5E, 0x00, 0x00, 0x01, 0x5E, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x5F, 0x00, 0x00, 0x01, 0x5F, + 0x00, 0x00, 0x03, 0x6C, 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x01, 0x60, + 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x01, 0x61, 0x00, 0x00, 0x01, 0x61, + 0x00, 0x00, 0x03, 0x6D, 0x00, 0x00, 0x01, 0x62, 0x00, 0x00, 0x01, 0x62, + 0x00, 0x00, 0x01, 0x9C, 0x00, 0x00, 0x01, 0x63, 0x00, 0x00, 0x01, 0x63, + 0x00, 0x00, 0x03, 0x7F, 0x00, 0x00, 0x01, 0x64, 0x00, 0x00, 0x01, 0x64, + 0x00, 0x00, 0x01, 0x9D, 0x00, 0x00, 0x01, 0x65, 0x00, 0x00, 0x01, 0x65, + 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x01, 0x66, 0x00, 0x00, 0x01, 0x66, + 0x00, 0x00, 0x09, 0x27, 0x00, 0x00, 0x01, 0x67, 0x00, 0x00, 0x01, 0x67, + 0x00, 0x00, 0x03, 0x7E, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x01, 0x68, + 0x00, 0x00, 0x01, 0xAE, 0x00, 0x00, 0x01, 0x69, 0x00, 0x00, 0x01, 0x69, + 0x00, 0x00, 0x03, 0x93, 0x00, 0x00, 0x01, 0x6A, 0x00, 0x00, 0x01, 0x6A, + 0x00, 0x00, 0x01, 0xAF, 0x00, 0x00, 0x01, 0x6B, 0x00, 0x00, 0x01, 0x6B, + 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x01, 0x6C, 0x00, 0x00, 0x01, 0x6C, + 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0x6D, 0x00, 0x00, 0x01, 0x6D, + 0x00, 0x00, 0x03, 0x9B, 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x01, 0x6E, + 0x00, 0x00, 0x01, 0xB1, 0x00, 0x00, 0x01, 0x6F, 0x00, 0x00, 0x01, 0x6F, + 0x00, 0x00, 0x03, 0x9C, 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x01, 0x70, + 0x00, 0x00, 0x01, 0xB2, 0x00, 0x00, 0x01, 0x71, 0x00, 0x00, 0x01, 0x71, + 0x00, 0x00, 0x03, 0x9D, 0x00, 0x00, 0x01, 0x72, 0x00, 0x00, 0x01, 0x72, + 0x00, 0x00, 0x01, 0xB3, 0x00, 0x00, 0x01, 0x73, 0x00, 0x00, 0x01, 0x73, + 0x00, 0x00, 0x03, 0x9E, 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x01, 0x74, + 0x00, 0x00, 0x01, 0xCC, 0x00, 0x00, 0x01, 0x75, 0x00, 0x00, 0x01, 0x75, + 0x00, 0x00, 0x03, 0xD9, 0x00, 0x00, 0x01, 0x76, 0x00, 0x00, 0x01, 0x76, + 0x00, 0x00, 0x01, 0xDB, 0x00, 0x00, 0x01, 0x77, 0x00, 0x00, 0x01, 0x77, + 0x00, 0x00, 0x03, 0xE9, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x01, 0x78, + 0x00, 0x00, 0x01, 0xDC, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x01, 0x79, + 0x00, 0x00, 0x01, 0xF1, 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x01, 0x7A, + 0x00, 0x00, 0x04, 0x01, 0x00, 0x00, 0x01, 0x7B, 0x00, 0x00, 0x01, 0x7B, + 0x00, 0x00, 0x01, 0xF2, 0x00, 0x00, 0x01, 0x7C, 0x00, 0x00, 0x01, 0x7C, + 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x01, 0x7D, 0x00, 0x00, 0x01, 0x7D, + 0x00, 0x00, 0x01, 0xF3, 0x00, 0x00, 0x01, 0x7E, 0x00, 0x00, 0x01, 0x7E, + 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x01, 0x7F, 0x00, 0x00, 0x01, 0x7F, + 0x00, 0x00, 0x02, 0x8D, 0x00, 0x00, 0x01, 0x80, 0x00, 0x00, 0x01, 0x80, + 0x00, 0x00, 0x02, 0x43, 0x00, 0x00, 0x01, 0x81, 0x00, 0x00, 0x01, 0x81, + 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x01, 0x82, 0x00, 0x00, 0x01, 0x82, + 0x00, 0x00, 0x09, 0x16, 0x00, 0x00, 0x01, 0x83, 0x00, 0x00, 0x01, 0x83, + 0x00, 0x00, 0x02, 0x44, 0x00, 0x00, 0x01, 0x84, 0x00, 0x00, 0x01, 0x84, + 0x00, 0x00, 0x09, 0x28, 0x00, 0x00, 0x01, 0x85, 0x00, 0x00, 0x01, 0x85, + 0x00, 0x00, 0x09, 0x5B, 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x01, 0x86, + 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x01, 0x87, 0x00, 0x00, 0x01, 0x87, + 0x00, 0x00, 0x00, 0x4A, 0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x01, 0x88, + 0x00, 0x00, 0x02, 0x4C, 0x00, 0x00, 0x01, 0x89, 0x00, 0x00, 0x01, 0x89, + 0x00, 0x00, 0x00, 0x5C, 0x00, 0x00, 0x01, 0x8A, 0x00, 0x00, 0x01, 0x8A, + 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x01, 0x8B, 0x00, 0x00, 0x01, 0x8B, + 0x00, 0x00, 0x09, 0x19, 0x00, 0x00, 0x01, 0x8C, 0x00, 0x00, 0x01, 0x8C, + 0x00, 0x00, 0x02, 0x59, 0x00, 0x00, 0x01, 0x8D, 0x00, 0x00, 0x01, 0x8D, + 0x00, 0x00, 0x09, 0x39, 0x00, 0x00, 0x01, 0x8E, 0x00, 0x00, 0x01, 0x8E, + 0x00, 0x00, 0x00, 0x7A, 0x00, 0x00, 0x01, 0x8F, 0x00, 0x00, 0x01, 0x8F, + 0x00, 0x00, 0x09, 0x1D, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x09, 0x1B, 0x00, 0x00, 0x01, 0x91, 0x00, 0x00, 0x01, 0x91, + 0x00, 0x00, 0x00, 0x8A, 0x00, 0x00, 0x01, 0x92, 0x00, 0x00, 0x01, 0x92, + 0x00, 0x00, 0x05, 0x1F, 0x00, 0x00, 0x01, 0x93, 0x00, 0x00, 0x01, 0x93, + 0x00, 0x00, 0x00, 0x8F, 0x00, 0x00, 0x01, 0x94, 0x00, 0x00, 0x01, 0x94, + 0x00, 0x00, 0x04, 0x29, 0x00, 0x00, 0x01, 0x95, 0x00, 0x00, 0x01, 0x95, + 0x00, 0x00, 0x02, 0xA4, 0x00, 0x00, 0x01, 0x96, 0x00, 0x00, 0x01, 0x96, + 0x00, 0x00, 0x00, 0xD8, 0x00, 0x00, 0x01, 0x97, 0x00, 0x00, 0x01, 0x97, + 0x00, 0x00, 0x00, 0xC9, 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x01, 0x98, + 0x00, 0x00, 0x01, 0x17, 0x00, 0x00, 0x01, 0x99, 0x00, 0x00, 0x01, 0x99, + 0x00, 0x00, 0x02, 0xD8, 0x00, 0x00, 0x01, 0x9A, 0x00, 0x00, 0x01, 0x9A, + 0x00, 0x00, 0x02, 0xE2, 0x00, 0x00, 0x01, 0x9B, 0x00, 0x00, 0x01, 0x9B, + 0x00, 0x00, 0x09, 0x51, 0x00, 0x00, 0x01, 0x9C, 0x00, 0x00, 0x01, 0x9C, + 0x00, 0x00, 0x09, 0x2B, 0x00, 0x00, 0x01, 0x9D, 0x00, 0x00, 0x01, 0x9D, + 0x00, 0x00, 0x01, 0x36, 0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x01, 0x9E, + 0x00, 0x00, 0x03, 0x0B, 0x00, 0x00, 0x01, 0x9F, 0x00, 0x00, 0x01, 0x9F, + 0x00, 0x00, 0x01, 0x73, 0x00, 0x00, 0x01, 0xA0, 0x00, 0x00, 0x01, 0xA0, + 0x00, 0x00, 0x01, 0x45, 0x00, 0x00, 0x01, 0xA1, 0x00, 0x00, 0x01, 0xA1, + 0x00, 0x00, 0x03, 0x1A, 0x00, 0x00, 0x01, 0xA2, 0x00, 0x00, 0x01, 0xA2, + 0x00, 0x00, 0x09, 0x26, 0x00, 0x00, 0x01, 0xA3, 0x00, 0x00, 0x01, 0xA3, + 0x00, 0x00, 0x09, 0x53, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x00, 0x01, 0xA4, + 0x00, 0x00, 0x01, 0x7B, 0x00, 0x00, 0x01, 0xA5, 0x00, 0x00, 0x01, 0xA5, + 0x00, 0x00, 0x03, 0x4D, 0x00, 0x00, 0x01, 0xA6, 0x00, 0x00, 0x01, 0xA6, + 0x00, 0x00, 0x09, 0x2A, 0x00, 0x00, 0x01, 0xA7, 0x00, 0x00, 0x01, 0xA7, + 0x00, 0x00, 0x01, 0x99, 0x00, 0x00, 0x01, 0xA8, 0x00, 0x00, 0x01, 0xA8, + 0x00, 0x00, 0x03, 0x75, 0x00, 0x00, 0x01, 0xA9, 0x00, 0x00, 0x01, 0xA9, + 0x00, 0x00, 0x09, 0x1C, 0x00, 0x00, 0x01, 0xAA, 0x00, 0x00, 0x01, 0xAA, + 0x00, 0x00, 0x09, 0x3D, 0x00, 0x00, 0x01, 0xAB, 0x00, 0x00, 0x01, 0xAB, + 0x00, 0x00, 0x03, 0x79, 0x00, 0x00, 0x01, 0xAC, 0x00, 0x00, 0x01, 0xAC, + 0x00, 0x00, 0x01, 0xA3, 0x00, 0x00, 0x01, 0xAD, 0x00, 0x00, 0x01, 0xAD, + 0x00, 0x00, 0x09, 0x59, 0x00, 0x00, 0x01, 0xAE, 0x00, 0x00, 0x01, 0xAE, + 0x00, 0x00, 0x01, 0xA5, 0x00, 0x00, 0x01, 0xAF, 0x00, 0x00, 0x01, 0xAF, + 0x00, 0x00, 0x01, 0xA9, 0x00, 0x00, 0x01, 0xB0, 0x00, 0x00, 0x01, 0xB0, + 0x00, 0x00, 0x03, 0x94, 0x00, 0x00, 0x01, 0xB1, 0x00, 0x00, 0x01, 0xB1, + 0x00, 0x00, 0x04, 0x25, 0x00, 0x00, 0x01, 0xB2, 0x00, 0x00, 0x01, 0xB2, + 0x00, 0x00, 0x09, 0x29, 0x00, 0x00, 0x01, 0xB3, 0x00, 0x00, 0x01, 0xB3, + 0x00, 0x00, 0x01, 0xD9, 0x00, 0x00, 0x01, 0xB4, 0x00, 0x00, 0x01, 0xB4, + 0x00, 0x00, 0x03, 0xE6, 0x00, 0x00, 0x01, 0xB5, 0x00, 0x00, 0x01, 0xB5, + 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x01, 0xB6, 0x00, 0x00, 0x01, 0xB6, + 0x00, 0x00, 0x03, 0xFD, 0x00, 0x00, 0x01, 0xB7, 0x00, 0x00, 0x01, 0xB7, + 0x00, 0x00, 0x09, 0x1E, 0x00, 0x00, 0x01, 0xB8, 0x00, 0x00, 0x01, 0xB8, + 0x00, 0x00, 0x09, 0x20, 0x00, 0x00, 0x01, 0xB9, 0x00, 0x00, 0x01, 0xBA, + 0x00, 0x00, 0x09, 0x43, 0x00, 0x00, 0x01, 0xBB, 0x00, 0x00, 0x01, 0xBB, + 0x00, 0x00, 0x05, 0x3E, 0x00, 0x00, 0x01, 0xBC, 0x00, 0x00, 0x01, 0xBC, + 0x00, 0x00, 0x05, 0x42, 0x00, 0x00, 0x01, 0xBD, 0x00, 0x00, 0x01, 0xBD, + 0x00, 0x00, 0x09, 0x5A, 0x00, 0x00, 0x01, 0xBE, 0x00, 0x00, 0x01, 0xBE, + 0x00, 0x00, 0x09, 0x4A, 0x00, 0x00, 0x01, 0xBF, 0x00, 0x00, 0x01, 0xBF, + 0x00, 0x00, 0x09, 0x6C, 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x01, 0xC2, + 0x00, 0x00, 0x09, 0x73, 0x00, 0x00, 0x01, 0xC3, 0x00, 0x00, 0x01, 0xC3, + 0x00, 0x00, 0x09, 0x72, 0x00, 0x00, 0x01, 0xC5, 0x00, 0x00, 0x01, 0xC5, + 0x00, 0x00, 0x00, 0x5E, 0x00, 0x00, 0x01, 0xC6, 0x00, 0x00, 0x01, 0xC6, + 0x00, 0x00, 0x02, 0x63, 0x00, 0x00, 0x01, 0xC7, 0x00, 0x00, 0x01, 0xC7, + 0x00, 0x00, 0x09, 0x23, 0x00, 0x00, 0x01, 0xC8, 0x00, 0x00, 0x01, 0xC8, + 0x00, 0x00, 0x01, 0x23, 0x00, 0x00, 0x01, 0xC9, 0x00, 0x00, 0x01, 0xC9, + 0x00, 0x00, 0x02, 0xD6, 0x00, 0x00, 0x01, 0xCA, 0x00, 0x00, 0x01, 0xCA, + 0x00, 0x00, 0x09, 0x25, 0x00, 0x00, 0x01, 0xCB, 0x00, 0x00, 0x01, 0xCB, + 0x00, 0x00, 0x01, 0x40, 0x00, 0x00, 0x01, 0xCC, 0x00, 0x00, 0x01, 0xCC, + 0x00, 0x00, 0x03, 0x14, 0x00, 0x00, 0x01, 0xCD, 0x00, 0x00, 0x01, 0xCD, + 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x01, 0xCE, + 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x01, 0xCF, 0x00, 0x00, 0x01, 0xCF, + 0x00, 0x00, 0x00, 0xD3, 0x00, 0x00, 0x01, 0xD0, 0x00, 0x00, 0x01, 0xD0, + 0x00, 0x00, 0x02, 0xC1, 0x00, 0x00, 0x01, 0xD1, 0x00, 0x00, 0x01, 0xD1, + 0x00, 0x00, 0x01, 0x4C, 0x00, 0x00, 0x01, 0xD2, 0x00, 0x00, 0x01, 0xD2, + 0x00, 0x00, 0x03, 0x21, 0x00, 0x00, 0x01, 0xD3, 0x00, 0x00, 0x01, 0xD3, + 0x00, 0x00, 0x01, 0xB4, 0x00, 0x00, 0x01, 0xD4, 0x00, 0x00, 0x01, 0xD4, + 0x00, 0x00, 0x03, 0x9F, 0x00, 0x00, 0x01, 0xD5, 0x00, 0x00, 0x01, 0xD5, + 0x00, 0x00, 0x01, 0xB5, 0x00, 0x00, 0x01, 0xD6, 0x00, 0x00, 0x01, 0xD6, + 0x00, 0x00, 0x03, 0xA0, 0x00, 0x00, 0x01, 0xD7, 0x00, 0x00, 0x01, 0xD7, + 0x00, 0x00, 0x01, 0xB6, 0x00, 0x00, 0x01, 0xD8, 0x00, 0x00, 0x01, 0xD8, + 0x00, 0x00, 0x03, 0xA1, 0x00, 0x00, 0x01, 0xD9, 0x00, 0x00, 0x01, 0xD9, + 0x00, 0x00, 0x01, 0xB7, 0x00, 0x00, 0x01, 0xDA, 0x00, 0x00, 0x01, 0xDA, + 0x00, 0x00, 0x03, 0xA2, 0x00, 0x00, 0x01, 0xDB, 0x00, 0x00, 0x01, 0xDB, + 0x00, 0x00, 0x01, 0xB8, 0x00, 0x00, 0x01, 0xDC, 0x00, 0x00, 0x01, 0xDC, + 0x00, 0x00, 0x03, 0xA3, 0x00, 0x00, 0x01, 0xDD, 0x00, 0x00, 0x01, 0xDD, + 0x00, 0x00, 0x02, 0x85, 0x00, 0x00, 0x01, 0xDE, 0x00, 0x00, 0x01, 0xDE, + 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x01, 0xDF, 0x00, 0x00, 0x01, 0xDF, + 0x00, 0x00, 0x02, 0x0C, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x01, 0xE0, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0xE1, 0x00, 0x00, 0x01, 0xE1, + 0x00, 0x00, 0x02, 0x0F, 0x00, 0x00, 0x01, 0xE2, 0x00, 0x00, 0x01, 0xE2, + 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x01, 0xE3, 0x00, 0x00, 0x01, 0xE3, + 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x01, 0xE4, 0x00, 0x00, 0x01, 0xE4, + 0x00, 0x00, 0x00, 0x8E, 0x00, 0x00, 0x01, 0xE5, 0x00, 0x00, 0x01, 0xE5, + 0x00, 0x00, 0x02, 0x94, 0x00, 0x00, 0x01, 0xE6, 0x00, 0x00, 0x01, 0xE6, + 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x01, 0xE7, 0x00, 0x00, 0x01, 0xE7, + 0x00, 0x00, 0x02, 0x99, 0x00, 0x00, 0x01, 0xE8, 0x00, 0x00, 0x01, 0xE8, + 0x00, 0x00, 0x01, 0x11, 0x00, 0x00, 0x01, 0xE9, 0x00, 0x00, 0x01, 0xE9, + 0x00, 0x00, 0x02, 0xDA, 0x00, 0x00, 0x01, 0xEA, 0x00, 0x00, 0x01, 0xEA, + 0x00, 0x00, 0x01, 0x4D, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x00, 0x01, 0xEB, + 0x00, 0x00, 0x03, 0x22, 0x00, 0x00, 0x01, 0xEC, 0x00, 0x00, 0x01, 0xEC, + 0x00, 0x00, 0x01, 0x4E, 0x00, 0x00, 0x01, 0xED, 0x00, 0x00, 0x01, 0xED, + 0x00, 0x00, 0x03, 0x23, 0x00, 0x00, 0x01, 0xEE, 0x00, 0x00, 0x01, 0xEE, + 0x00, 0x00, 0x09, 0x1F, 0x00, 0x00, 0x01, 0xEF, 0x00, 0x00, 0x01, 0xEF, + 0x00, 0x00, 0x09, 0x41, 0x00, 0x00, 0x01, 0xF0, 0x00, 0x00, 0x01, 0xF0, + 0x00, 0x00, 0x02, 0xD3, 0x00, 0x00, 0x01, 0xF1, 0x00, 0x00, 0x01, 0xF1, + 0x00, 0x00, 0x09, 0x17, 0x00, 0x00, 0x01, 0xF2, 0x00, 0x00, 0x01, 0xF2, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x01, 0xF3, 0x00, 0x00, 0x01, 0xF3, + 0x00, 0x00, 0x02, 0x61, 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x01, 0xF4, + 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x01, 0xF5, 0x00, 0x00, 0x01, 0xF5, + 0x00, 0x00, 0x02, 0x9A, 0x00, 0x00, 0x01, 0xF6, 0x00, 0x00, 0x01, 0xF6, + 0x00, 0x00, 0x00, 0xAE, 0x00, 0x00, 0x01, 0xF7, 0x00, 0x00, 0x01, 0xF7, + 0x00, 0x00, 0x09, 0x2C, 0x00, 0x00, 0x01, 0xF8, 0x00, 0x00, 0x01, 0xF8, + 0x00, 0x00, 0x01, 0x31, 0x00, 0x00, 0x01, 0xF9, 0x00, 0x00, 0x01, 0xF9, + 0x00, 0x00, 0x03, 0x0F, 0x00, 0x00, 0x01, 0xFA, 0x00, 0x00, 0x01, 0xFA, + 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x01, 0xFB, 0x00, 0x00, 0x01, 0xFB, + 0x00, 0x00, 0x02, 0x17, 0x00, 0x00, 0x01, 0xFC, 0x00, 0x00, 0x01, 0xFC, + 0x00, 0x00, 0x00, 0x3F, 0x00, 0x00, 0x01, 0xFD, 0x00, 0x00, 0x01, 0xFD, + 0x00, 0x00, 0x02, 0x21, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x01, 0xFE, + 0x00, 0x00, 0x01, 0x65, 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x01, 0xFF, + 0x00, 0x00, 0x03, 0x3A, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x02, 0x01, + 0x00, 0x00, 0x02, 0x0A, 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x02, 0x02, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x02, 0x03, + 0x00, 0x00, 0x02, 0x12, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, 0x02, 0x04, + 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x02, 0x05, + 0x00, 0x00, 0x02, 0x71, 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x02, 0x06, + 0x00, 0x00, 0x00, 0x6A, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x02, 0x07, + 0x00, 0x00, 0x02, 0x72, 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x02, 0x08, + 0x00, 0x00, 0x00, 0xD4, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x02, 0x09, + 0x00, 0x00, 0x02, 0xC2, 0x00, 0x00, 0x02, 0x0A, 0x00, 0x00, 0x02, 0x0A, + 0x00, 0x00, 0x00, 0xD5, 0x00, 0x00, 0x02, 0x0B, 0x00, 0x00, 0x02, 0x0B, + 0x00, 0x00, 0x02, 0xC3, 0x00, 0x00, 0x02, 0x0C, 0x00, 0x00, 0x02, 0x0C, + 0x00, 0x00, 0x01, 0x4F, 0x00, 0x00, 0x02, 0x0D, 0x00, 0x00, 0x02, 0x0D, + 0x00, 0x00, 0x03, 0x24, 0x00, 0x00, 0x02, 0x0E, 0x00, 0x00, 0x02, 0x0E, + 0x00, 0x00, 0x01, 0x50, 0x00, 0x00, 0x02, 0x0F, 0x00, 0x00, 0x02, 0x0F, + 0x00, 0x00, 0x03, 0x25, 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, 0x02, 0x10, + 0x00, 0x00, 0x01, 0x84, 0x00, 0x00, 0x02, 0x11, 0x00, 0x00, 0x02, 0x11, + 0x00, 0x00, 0x03, 0x5F, 0x00, 0x00, 0x02, 0x12, 0x00, 0x00, 0x02, 0x12, + 0x00, 0x00, 0x01, 0x85, 0x00, 0x00, 0x02, 0x13, 0x00, 0x00, 0x02, 0x13, + 0x00, 0x00, 0x03, 0x60, 0x00, 0x00, 0x02, 0x14, 0x00, 0x00, 0x02, 0x14, + 0x00, 0x00, 0x01, 0xB9, 0x00, 0x00, 0x02, 0x15, 0x00, 0x00, 0x02, 0x15, + 0x00, 0x00, 0x03, 0xA4, 0x00, 0x00, 0x02, 0x16, 0x00, 0x00, 0x02, 0x16, + 0x00, 0x00, 0x01, 0xBA, 0x00, 0x00, 0x02, 0x17, 0x00, 0x00, 0x02, 0x17, + 0x00, 0x00, 0x03, 0xA5, 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0x02, 0x18, + 0x00, 0x00, 0x01, 0x92, 0x00, 0x00, 0x02, 0x19, 0x00, 0x00, 0x02, 0x19, + 0x00, 0x00, 0x03, 0x6E, 0x00, 0x00, 0x02, 0x1A, 0x00, 0x00, 0x02, 0x1A, + 0x00, 0x00, 0x01, 0x9E, 0x00, 0x00, 0x02, 0x1B, 0x00, 0x00, 0x02, 0x1B, + 0x00, 0x00, 0x03, 0x81, 0x00, 0x00, 0x02, 0x1C, 0x00, 0x00, 0x02, 0x1C, + 0x00, 0x00, 0x09, 0x21, 0x00, 0x00, 0x02, 0x1D, 0x00, 0x00, 0x02, 0x1D, + 0x00, 0x00, 0x09, 0x4E, 0x00, 0x00, 0x02, 0x1E, 0x00, 0x00, 0x02, 0x1E, + 0x00, 0x00, 0x00, 0xA4, 0x00, 0x00, 0x02, 0x1F, 0x00, 0x00, 0x02, 0x1F, + 0x00, 0x00, 0x02, 0xAA, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, 0x02, 0x20, + 0x00, 0x00, 0x09, 0x2D, 0x00, 0x00, 0x02, 0x21, 0x00, 0x00, 0x02, 0x21, + 0x00, 0x00, 0x02, 0x5A, 0x00, 0x00, 0x02, 0x22, 0x00, 0x00, 0x02, 0x22, + 0x00, 0x00, 0x09, 0x2E, 0x00, 0x00, 0x02, 0x23, 0x00, 0x00, 0x02, 0x23, + 0x00, 0x00, 0x09, 0x5D, 0x00, 0x00, 0x02, 0x24, 0x00, 0x00, 0x02, 0x24, + 0x00, 0x00, 0x01, 0xF7, 0x00, 0x00, 0x02, 0x25, 0x00, 0x00, 0x02, 0x25, + 0x00, 0x00, 0x03, 0xFE, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x02, 0x27, 0x00, 0x00, 0x02, 0x27, + 0x00, 0x00, 0x02, 0x0D, 0x00, 0x00, 0x02, 0x28, 0x00, 0x00, 0x02, 0x28, + 0x00, 0x00, 0x00, 0x6B, 0x00, 0x00, 0x02, 0x29, 0x00, 0x00, 0x02, 0x29, + 0x00, 0x00, 0x02, 0x73, 0x00, 0x00, 0x02, 0x2A, 0x00, 0x00, 0x02, 0x2A, + 0x00, 0x00, 0x01, 0x51, 0x00, 0x00, 0x02, 0x2B, 0x00, 0x00, 0x02, 0x2B, + 0x00, 0x00, 0x03, 0x26, 0x00, 0x00, 0x02, 0x2C, 0x00, 0x00, 0x02, 0x2C, + 0x00, 0x00, 0x01, 0x52, 0x00, 0x00, 0x02, 0x2D, 0x00, 0x00, 0x02, 0x2D, + 0x00, 0x00, 0x03, 0x27, 0x00, 0x00, 0x02, 0x2E, 0x00, 0x00, 0x02, 0x2E, + 0x00, 0x00, 0x01, 0x53, 0x00, 0x00, 0x02, 0x2F, 0x00, 0x00, 0x02, 0x2F, + 0x00, 0x00, 0x03, 0x28, 0x00, 0x00, 0x02, 0x30, 0x00, 0x00, 0x02, 0x30, + 0x00, 0x00, 0x01, 0x54, 0x00, 0x00, 0x02, 0x31, 0x00, 0x00, 0x02, 0x31, + 0x00, 0x00, 0x03, 0x29, 0x00, 0x00, 0x02, 0x32, 0x00, 0x00, 0x02, 0x32, + 0x00, 0x00, 0x01, 0xDD, 0x00, 0x00, 0x02, 0x33, 0x00, 0x00, 0x02, 0x33, + 0x00, 0x00, 0x03, 0xEA, 0x00, 0x00, 0x02, 0x34, 0x00, 0x00, 0x02, 0x34, + 0x00, 0x00, 0x02, 0xE6, 0x00, 0x00, 0x02, 0x35, 0x00, 0x00, 0x02, 0x35, + 0x00, 0x00, 0x03, 0x09, 0x00, 0x00, 0x02, 0x36, 0x00, 0x00, 0x02, 0x36, + 0x00, 0x00, 0x03, 0x7B, 0x00, 0x00, 0x02, 0x37, 0x00, 0x00, 0x02, 0x37, + 0x00, 0x00, 0x02, 0xC7, 0x00, 0x00, 0x02, 0x38, 0x00, 0x00, 0x02, 0x39, + 0x00, 0x00, 0x09, 0x5E, 0x00, 0x00, 0x02, 0x3A, 0x00, 0x00, 0x02, 0x3A, + 0x00, 0x00, 0x00, 0x2E, 0x00, 0x00, 0x02, 0x3B, 0x00, 0x00, 0x02, 0x3B, + 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x02, 0x3C, 0x00, 0x00, 0x02, 0x3C, + 0x00, 0x00, 0x02, 0x4B, 0x00, 0x00, 0x02, 0x3D, 0x00, 0x00, 0x02, 0x3D, + 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x02, 0x3E, 0x00, 0x00, 0x02, 0x3E, + 0x00, 0x00, 0x01, 0xA6, 0x00, 0x00, 0x02, 0x3F, 0x00, 0x00, 0x02, 0x3F, + 0x00, 0x00, 0x03, 0x69, 0x00, 0x00, 0x02, 0x40, 0x00, 0x00, 0x02, 0x40, + 0x00, 0x00, 0x03, 0xFF, 0x00, 0x00, 0x02, 0x41, 0x00, 0x00, 0x02, 0x41, + 0x00, 0x00, 0x09, 0x2F, 0x00, 0x00, 0x02, 0x42, 0x00, 0x00, 0x02, 0x42, + 0x00, 0x00, 0x09, 0x60, 0x00, 0x00, 0x02, 0x43, 0x00, 0x00, 0x02, 0x43, + 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x02, 0x44, 0x00, 0x00, 0x02, 0x44, + 0x00, 0x00, 0x01, 0xC7, 0x00, 0x00, 0x02, 0x45, 0x00, 0x00, 0x02, 0x45, + 0x00, 0x00, 0x09, 0x30, 0x00, 0x00, 0x02, 0x46, 0x00, 0x00, 0x02, 0x46, + 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x02, 0x47, 0x00, 0x00, 0x02, 0x47, + 0x00, 0x00, 0x02, 0x68, 0x00, 0x00, 0x02, 0x48, 0x00, 0x00, 0x02, 0x48, + 0x00, 0x00, 0x01, 0x0C, 0x00, 0x00, 0x02, 0x49, 0x00, 0x00, 0x02, 0x49, + 0x00, 0x00, 0x02, 0xC9, 0x00, 0x00, 0x02, 0x4A, 0x00, 0x00, 0x02, 0x4A, + 0x00, 0x00, 0x01, 0x7F, 0x00, 0x00, 0x02, 0x4B, 0x00, 0x00, 0x02, 0x4B, + 0x00, 0x00, 0x03, 0x53, 0x00, 0x00, 0x02, 0x4C, 0x00, 0x00, 0x02, 0x4C, + 0x00, 0x00, 0x01, 0x8C, 0x00, 0x00, 0x02, 0x4D, 0x00, 0x00, 0x02, 0x4D, + 0x00, 0x00, 0x03, 0x56, 0x00, 0x00, 0x02, 0x4E, 0x00, 0x00, 0x02, 0x4E, + 0x00, 0x00, 0x01, 0xE3, 0x00, 0x00, 0x02, 0x4F, 0x00, 0x00, 0x02, 0x4F, + 0x00, 0x00, 0x03, 0xE7, 0x00, 0x00, 0x02, 0x50, 0x00, 0x00, 0x02, 0x50, + 0x00, 0x00, 0x02, 0x1B, 0x00, 0x00, 0x02, 0x51, 0x00, 0x00, 0x02, 0x52, + 0x00, 0x00, 0x09, 0x35, 0x00, 0x00, 0x02, 0x53, 0x00, 0x00, 0x02, 0x53, + 0x00, 0x00, 0x02, 0x45, 0x00, 0x00, 0x02, 0x54, 0x00, 0x00, 0x02, 0x54, + 0x00, 0x00, 0x09, 0x55, 0x00, 0x00, 0x02, 0x56, 0x00, 0x00, 0x02, 0x57, + 0x00, 0x00, 0x02, 0x57, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x09, 0x3A, 0x00, 0x00, 0x02, 0x59, 0x00, 0x00, 0x02, 0x5A, + 0x00, 0x00, 0x09, 0x3E, 0x00, 0x00, 0x02, 0x5B, 0x00, 0x00, 0x02, 0x5C, + 0x00, 0x00, 0x04, 0x74, 0x00, 0x00, 0x02, 0x5D, 0x00, 0x00, 0x02, 0x5D, + 0x00, 0x00, 0x04, 0x77, 0x00, 0x00, 0x02, 0x5E, 0x00, 0x00, 0x02, 0x5E, + 0x00, 0x00, 0x04, 0x76, 0x00, 0x00, 0x02, 0x5F, 0x00, 0x00, 0x02, 0x5F, + 0x00, 0x00, 0x02, 0xC8, 0x00, 0x00, 0x02, 0x60, 0x00, 0x00, 0x02, 0x60, + 0x00, 0x00, 0x02, 0x93, 0x00, 0x00, 0x02, 0x61, 0x00, 0x00, 0x02, 0x61, + 0x00, 0x00, 0x09, 0x47, 0x00, 0x00, 0x02, 0x62, 0x00, 0x00, 0x02, 0x62, + 0x00, 0x00, 0x02, 0x9C, 0x00, 0x00, 0x02, 0x63, 0x00, 0x00, 0x02, 0x63, + 0x00, 0x00, 0x04, 0xE2, 0x00, 0x00, 0x02, 0x64, 0x00, 0x00, 0x02, 0x64, + 0x00, 0x00, 0x09, 0x37, 0x00, 0x00, 0x02, 0x65, 0x00, 0x00, 0x02, 0x65, + 0x00, 0x00, 0x02, 0xA5, 0x00, 0x00, 0x02, 0x66, 0x00, 0x00, 0x02, 0x67, + 0x00, 0x00, 0x02, 0xA2, 0x00, 0x00, 0x02, 0x68, 0x00, 0x00, 0x02, 0x68, + 0x00, 0x00, 0x02, 0xB9, 0x00, 0x00, 0x02, 0x69, 0x00, 0x00, 0x02, 0x69, + 0x00, 0x00, 0x04, 0x99, 0x00, 0x00, 0x02, 0x6A, 0x00, 0x00, 0x02, 0x6A, + 0x00, 0x00, 0x02, 0xCE, 0x00, 0x00, 0x02, 0x6B, 0x00, 0x00, 0x02, 0x6B, + 0x00, 0x00, 0x02, 0xE3, 0x00, 0x00, 0x02, 0x6C, 0x00, 0x00, 0x02, 0x6C, + 0x00, 0x00, 0x02, 0xE5, 0x00, 0x00, 0x02, 0x6D, 0x00, 0x00, 0x02, 0x6D, + 0x00, 0x00, 0x02, 0xE4, 0x00, 0x00, 0x02, 0x6E, 0x00, 0x00, 0x02, 0x6E, + 0x00, 0x00, 0x09, 0x52, 0x00, 0x00, 0x02, 0x6F, 0x00, 0x00, 0x02, 0x70, + 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x02, 0x71, 0x00, 0x00, 0x02, 0x71, + 0x00, 0x00, 0x02, 0xFF, 0x00, 0x00, 0x02, 0x72, 0x00, 0x00, 0x02, 0x72, + 0x00, 0x00, 0x03, 0x0A, 0x00, 0x00, 0x02, 0x73, 0x00, 0x00, 0x02, 0x73, + 0x00, 0x00, 0x03, 0x07, 0x00, 0x00, 0x02, 0x74, 0x00, 0x00, 0x02, 0x74, + 0x00, 0x00, 0x03, 0x15, 0x00, 0x00, 0x02, 0x75, 0x00, 0x00, 0x02, 0x75, + 0x00, 0x00, 0x03, 0x45, 0x00, 0x00, 0x02, 0x76, 0x00, 0x00, 0x02, 0x76, + 0x00, 0x00, 0x03, 0x49, 0x00, 0x00, 0x02, 0x77, 0x00, 0x00, 0x02, 0x77, + 0x00, 0x00, 0x09, 0x54, 0x00, 0x00, 0x02, 0x78, 0x00, 0x00, 0x02, 0x78, + 0x00, 0x00, 0x09, 0x56, 0x00, 0x00, 0x02, 0x79, 0x00, 0x00, 0x02, 0x79, + 0x00, 0x00, 0x03, 0x57, 0x00, 0x00, 0x02, 0x7A, 0x00, 0x00, 0x02, 0x7A, + 0x00, 0x00, 0x09, 0x57, 0x00, 0x00, 0x02, 0x7B, 0x00, 0x00, 0x02, 0x7B, + 0x00, 0x00, 0x03, 0x58, 0x00, 0x00, 0x02, 0x7E, 0x00, 0x00, 0x02, 0x7E, + 0x00, 0x00, 0x03, 0x5A, 0x00, 0x00, 0x02, 0x7F, 0x00, 0x00, 0x02, 0x7F, + 0x00, 0x00, 0x03, 0x59, 0x00, 0x00, 0x02, 0x80, 0x00, 0x00, 0x02, 0x81, + 0x00, 0x00, 0x03, 0x65, 0x00, 0x00, 0x02, 0x82, 0x00, 0x00, 0x02, 0x82, + 0x00, 0x00, 0x03, 0x68, 0x00, 0x00, 0x02, 0x83, 0x00, 0x00, 0x02, 0x83, + 0x00, 0x00, 0x09, 0x3B, 0x00, 0x00, 0x02, 0x84, 0x00, 0x00, 0x02, 0x84, + 0x00, 0x00, 0x09, 0x4F, 0x00, 0x00, 0x02, 0x86, 0x00, 0x00, 0x02, 0x86, + 0x00, 0x00, 0x09, 0x3C, 0x00, 0x00, 0x02, 0x87, 0x00, 0x00, 0x02, 0x87, + 0x00, 0x00, 0x03, 0x7D, 0x00, 0x00, 0x02, 0x88, 0x00, 0x00, 0x02, 0x88, + 0x00, 0x00, 0x03, 0x7A, 0x00, 0x00, 0x02, 0x89, 0x00, 0x00, 0x02, 0x89, + 0x00, 0x00, 0x03, 0x96, 0x00, 0x00, 0x02, 0x8A, 0x00, 0x00, 0x02, 0x8B, + 0x00, 0x00, 0x09, 0x6A, 0x00, 0x00, 0x02, 0x8C, 0x00, 0x00, 0x02, 0x8C, + 0x00, 0x00, 0x03, 0xD3, 0x00, 0x00, 0x02, 0x8D, 0x00, 0x00, 0x02, 0x8D, + 0x00, 0x00, 0x03, 0xD8, 0x00, 0x00, 0x02, 0x8E, 0x00, 0x00, 0x02, 0x8E, + 0x00, 0x00, 0x03, 0xF6, 0x00, 0x00, 0x02, 0x8F, 0x00, 0x00, 0x02, 0x8F, + 0x00, 0x00, 0x03, 0xFB, 0x00, 0x00, 0x02, 0x90, 0x00, 0x00, 0x02, 0x90, + 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x02, 0x92, 0x00, 0x00, 0x02, 0x92, + 0x00, 0x00, 0x09, 0x40, 0x00, 0x00, 0x02, 0x93, 0x00, 0x00, 0x02, 0x93, + 0x00, 0x00, 0x09, 0x42, 0x00, 0x00, 0x02, 0x94, 0x00, 0x00, 0x02, 0x94, + 0x00, 0x00, 0x09, 0x48, 0x00, 0x00, 0x02, 0x95, 0x00, 0x00, 0x02, 0x95, + 0x00, 0x00, 0x09, 0x4D, 0x00, 0x00, 0x02, 0x96, 0x00, 0x00, 0x02, 0x96, + 0x00, 0x00, 0x09, 0x4C, 0x00, 0x00, 0x02, 0x97, 0x00, 0x00, 0x02, 0x97, + 0x00, 0x00, 0x09, 0x38, 0x00, 0x00, 0x02, 0x98, 0x00, 0x00, 0x02, 0x98, + 0x00, 0x00, 0x07, 0x04, 0x00, 0x00, 0x02, 0x99, 0x00, 0x00, 0x02, 0x99, + 0x00, 0x00, 0x09, 0x61, 0x00, 0x00, 0x02, 0x9A, 0x00, 0x00, 0x02, 0x9A, + 0x00, 0x00, 0x04, 0x73, 0x00, 0x00, 0x02, 0x9B, 0x00, 0x00, 0x02, 0x9B, + 0x00, 0x00, 0x02, 0x9D, 0x00, 0x00, 0x02, 0x9C, 0x00, 0x00, 0x02, 0x9C, + 0x00, 0x00, 0x09, 0x6E, 0x00, 0x00, 0x02, 0x9D, 0x00, 0x00, 0x02, 0x9D, + 0x00, 0x00, 0x02, 0xD1, 0x00, 0x00, 0x02, 0x9E, 0x00, 0x00, 0x02, 0x9E, + 0x00, 0x00, 0x02, 0xDE, 0x00, 0x00, 0x02, 0x9F, 0x00, 0x00, 0x02, 0x9F, + 0x00, 0x00, 0x02, 0xFD, 0x00, 0x00, 0x02, 0xA0, 0x00, 0x00, 0x02, 0xA0, + 0x00, 0x00, 0x03, 0x52, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x00, 0x02, 0xA1, + 0x00, 0x00, 0x09, 0x49, 0x00, 0x00, 0x02, 0xA2, 0x00, 0x00, 0x02, 0xA2, + 0x00, 0x00, 0x09, 0x4B, 0x00, 0x00, 0x02, 0xA3, 0x00, 0x00, 0x02, 0xA3, + 0x00, 0x00, 0x02, 0x62, 0x00, 0x00, 0x02, 0xA4, 0x00, 0x00, 0x02, 0xA4, + 0x00, 0x00, 0x02, 0x64, 0x00, 0x00, 0x02, 0xA6, 0x00, 0x00, 0x02, 0xA6, + 0x00, 0x00, 0x09, 0x5C, 0x00, 0x00, 0x02, 0xA7, 0x00, 0x00, 0x02, 0xA7, + 0x00, 0x00, 0x09, 0x58, 0x00, 0x00, 0x02, 0xA8, 0x00, 0x00, 0x02, 0xA8, + 0x00, 0x00, 0x03, 0x7C, 0x00, 0x00, 0x02, 0xA9, 0x00, 0x00, 0x02, 0xA9, + 0x00, 0x00, 0x02, 0x91, 0x00, 0x00, 0x02, 0xAA, 0x00, 0x00, 0x02, 0xAA, + 0x00, 0x00, 0x09, 0x45, 0x00, 0x00, 0x02, 0xAB, 0x00, 0x00, 0x02, 0xAC, + 0x00, 0x00, 0x09, 0x62, 0x00, 0x00, 0x02, 0xAD, 0x00, 0x00, 0x02, 0xAD, + 0x00, 0x00, 0x09, 0x46, 0x00, 0x00, 0x02, 0xAE, 0x00, 0x00, 0x02, 0xAF, + 0x00, 0x00, 0x02, 0xA6, 0x00, 0x00, 0x02, 0xB0, 0x00, 0x00, 0x02, 0xB0, + 0x00, 0x00, 0x06, 0x2C, 0x00, 0x00, 0x02, 0xB1, 0x00, 0x00, 0x02, 0xB1, + 0x00, 0x00, 0x09, 0x79, 0x00, 0x00, 0x02, 0xB2, 0x00, 0x00, 0x02, 0xB2, + 0x00, 0x00, 0x06, 0x2E, 0x00, 0x00, 0x02, 0xB3, 0x00, 0x00, 0x02, 0xB3, + 0x00, 0x00, 0x06, 0x36, 0x00, 0x00, 0x02, 0xB4, 0x00, 0x00, 0x02, 0xB4, + 0x00, 0x00, 0x09, 0x7A, 0x00, 0x00, 0x02, 0xB5, 0x00, 0x00, 0x02, 0xB5, + 0x00, 0x00, 0x09, 0x78, 0x00, 0x00, 0x02, 0xB6, 0x00, 0x00, 0x02, 0xB6, + 0x00, 0x00, 0x09, 0x77, 0x00, 0x00, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xB7, + 0x00, 0x00, 0x06, 0x3B, 0x00, 0x00, 0x02, 0xB8, 0x00, 0x00, 0x02, 0xB8, + 0x00, 0x00, 0x06, 0x3D, 0x00, 0x00, 0x02, 0xB9, 0x00, 0x00, 0x02, 0xBA, + 0x00, 0x00, 0x05, 0xD9, 0x00, 0x00, 0x02, 0xBB, 0x00, 0x00, 0x02, 0xBB, + 0x00, 0x00, 0x0B, 0x2D, 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, 0x02, 0xBC, + 0x00, 0x00, 0x05, 0xC9, 0x00, 0x00, 0x02, 0xBD, 0x00, 0x00, 0x02, 0xBD, + 0x00, 0x00, 0x0B, 0x2C, 0x00, 0x00, 0x02, 0xBE, 0x00, 0x00, 0x02, 0xBE, + 0x00, 0x00, 0x0B, 0x34, 0x00, 0x00, 0x02, 0xBF, 0x00, 0x00, 0x02, 0xBF, + 0x00, 0x00, 0x0B, 0x33, 0x00, 0x00, 0x02, 0xC0, 0x00, 0x00, 0x02, 0xC1, + 0x00, 0x00, 0x0B, 0x2E, 0x00, 0x00, 0x02, 0xC2, 0x00, 0x00, 0x02, 0xC4, + 0x00, 0x00, 0x0A, 0x27, 0x00, 0x00, 0x02, 0xC5, 0x00, 0x00, 0x02, 0xC5, + 0x00, 0x00, 0x0A, 0x26, 0x00, 0x00, 0x02, 0xC6, 0x00, 0x00, 0x02, 0xC6, + 0x00, 0x00, 0x06, 0xDC, 0x00, 0x00, 0x02, 0xC7, 0x00, 0x00, 0x02, 0xC7, + 0x00, 0x00, 0x06, 0xE3, 0x00, 0x00, 0x02, 0xC8, 0x00, 0x00, 0x02, 0xC8, + 0x00, 0x00, 0x0B, 0x31, 0x00, 0x00, 0x02, 0xC9, 0x00, 0x00, 0x02, 0xCB, + 0x00, 0x00, 0x0A, 0xDF, 0x00, 0x00, 0x02, 0xCC, 0x00, 0x00, 0x02, 0xCC, + 0x00, 0x00, 0x0B, 0x35, 0x00, 0x00, 0x02, 0xCD, 0x00, 0x00, 0x02, 0xCD, + 0x00, 0x00, 0x0B, 0x32, 0x00, 0x00, 0x02, 0xCE, 0x00, 0x00, 0x02, 0xCE, + 0x00, 0x00, 0x0B, 0x30, 0x00, 0x00, 0x02, 0xCF, 0x00, 0x00, 0x02, 0xCF, + 0x00, 0x00, 0x0B, 0x29, 0x00, 0x00, 0x02, 0xD0, 0x00, 0x00, 0x02, 0xD0, + 0x00, 0x00, 0x0B, 0x2B, 0x00, 0x00, 0x02, 0xD1, 0x00, 0x00, 0x02, 0xD1, + 0x00, 0x00, 0x0B, 0x2A, 0x00, 0x00, 0x02, 0xD2, 0x00, 0x00, 0x02, 0xD2, + 0x00, 0x00, 0x0A, 0x30, 0x00, 0x00, 0x02, 0xD3, 0x00, 0x00, 0x02, 0xD3, + 0x00, 0x00, 0x0A, 0x2F, 0x00, 0x00, 0x02, 0xD4, 0x00, 0x00, 0x02, 0xD4, + 0x00, 0x00, 0x0A, 0x42, 0x00, 0x00, 0x02, 0xD5, 0x00, 0x00, 0x02, 0xD5, + 0x00, 0x00, 0x0A, 0x2A, 0x00, 0x00, 0x02, 0xD6, 0x00, 0x00, 0x02, 0xD6, + 0x00, 0x00, 0x0A, 0x2D, 0x00, 0x00, 0x02, 0xD7, 0x00, 0x00, 0x02, 0xD7, + 0x00, 0x00, 0x0A, 0x2C, 0x00, 0x00, 0x02, 0xD8, 0x00, 0x00, 0x02, 0xD8, + 0x00, 0x00, 0x06, 0xDF, 0x00, 0x00, 0x02, 0xD9, 0x00, 0x00, 0x02, 0xDA, + 0x00, 0x00, 0x06, 0xE1, 0x00, 0x00, 0x02, 0xDB, 0x00, 0x00, 0x02, 0xDB, + 0x00, 0x00, 0x06, 0xE6, 0x00, 0x00, 0x02, 0xDC, 0x00, 0x00, 0x02, 0xDC, + 0x00, 0x00, 0x06, 0xDD, 0x00, 0x00, 0x02, 0xDD, 0x00, 0x00, 0x02, 0xDD, + 0x00, 0x00, 0x06, 0xD7, 0x00, 0x00, 0x02, 0xDE, 0x00, 0x00, 0x02, 0xDE, + 0x00, 0x00, 0x0A, 0x49, 0x00, 0x00, 0x02, 0xDF, 0x00, 0x00, 0x02, 0xDF, + 0x00, 0x00, 0x0A, 0x48, 0x00, 0x00, 0x02, 0xE0, 0x00, 0x00, 0x02, 0xE0, + 0x00, 0x00, 0x0A, 0x21, 0x00, 0x00, 0x02, 0xE1, 0x00, 0x00, 0x02, 0xE1, + 0x00, 0x00, 0x06, 0x30, 0x00, 0x00, 0x02, 0xE2, 0x00, 0x00, 0x02, 0xE2, + 0x00, 0x00, 0x06, 0x37, 0x00, 0x00, 0x02, 0xE3, 0x00, 0x00, 0x02, 0xE3, + 0x00, 0x00, 0x06, 0x3C, 0x00, 0x00, 0x02, 0xE4, 0x00, 0x00, 0x02, 0xE4, + 0x00, 0x00, 0x0A, 0x4A, 0x00, 0x00, 0x02, 0xE5, 0x00, 0x00, 0x02, 0xE5, + 0x00, 0x00, 0x0A, 0x43, 0x00, 0x00, 0x02, 0xE6, 0x00, 0x00, 0x02, 0xE6, + 0x00, 0x00, 0x0A, 0x45, 0x00, 0x00, 0x02, 0xE7, 0x00, 0x00, 0x02, 0xE7, + 0x00, 0x00, 0x0A, 0x47, 0x00, 0x00, 0x02, 0xE8, 0x00, 0x00, 0x02, 0xE8, + 0x00, 0x00, 0x0A, 0x46, 0x00, 0x00, 0x02, 0xE9, 0x00, 0x00, 0x02, 0xE9, + 0x00, 0x00, 0x0A, 0x44, 0x00, 0x00, 0x02, 0xEA, 0x00, 0x00, 0x02, 0xEB, + 0x00, 0x00, 0x0A, 0xE2, 0x00, 0x00, 0x02, 0xEC, 0x00, 0x00, 0x02, 0xED, + 0x00, 0x00, 0x0A, 0x31, 0x00, 0x00, 0x02, 0xEE, 0x00, 0x00, 0x02, 0xEE, + 0x00, 0x00, 0x05, 0xCD, 0x00, 0x00, 0x02, 0xEF, 0x00, 0x00, 0x02, 0xEF, + 0x00, 0x00, 0x0A, 0x2B, 0x00, 0x00, 0x02, 0xF0, 0x00, 0x00, 0x02, 0xF7, + 0x00, 0x00, 0x0A, 0x33, 0x00, 0x00, 0x02, 0xF8, 0x00, 0x00, 0x02, 0xF8, + 0x00, 0x00, 0x0A, 0x2E, 0x00, 0x00, 0x02, 0xF9, 0x00, 0x00, 0x02, 0xFF, + 0x00, 0x00, 0x0A, 0x3B, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x03, 0x00, + 0x00, 0x00, 0x06, 0xE9, 0x00, 0x00, 0x03, 0x01, 0x00, 0x00, 0x03, 0x01, + 0x00, 0x00, 0x06, 0xE8, 0x00, 0x00, 0x03, 0x02, 0x00, 0x00, 0x03, 0x02, + 0x00, 0x00, 0x0A, 0x8D, 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x03, 0x03, + 0x00, 0x00, 0x06, 0xEC, 0x00, 0x00, 0x03, 0x04, 0x00, 0x00, 0x03, 0x04, + 0x00, 0x00, 0x06, 0xEB, 0x00, 0x00, 0x03, 0x06, 0x00, 0x00, 0x03, 0x06, + 0x00, 0x00, 0x0A, 0x8F, 0x00, 0x00, 0x03, 0x07, 0x00, 0x00, 0x03, 0x07, + 0x00, 0x00, 0x0A, 0x8C, 0x00, 0x00, 0x03, 0x08, 0x00, 0x00, 0x03, 0x08, + 0x00, 0x00, 0x0A, 0x8B, 0x00, 0x00, 0x03, 0x09, 0x00, 0x00, 0x03, 0x09, + 0x00, 0x00, 0x0A, 0x91, 0x00, 0x00, 0x03, 0x0A, 0x00, 0x00, 0x03, 0x0A, + 0x00, 0x00, 0x0A, 0x90, 0x00, 0x00, 0x03, 0x0C, 0x00, 0x00, 0x03, 0x0C, + 0x00, 0x00, 0x0A, 0x8E, 0x00, 0x00, 0x03, 0x0F, 0x00, 0x00, 0x03, 0x0F, + 0x00, 0x00, 0x06, 0xEA, 0x00, 0x00, 0x03, 0x13, 0x00, 0x00, 0x03, 0x13, + 0x00, 0x00, 0x0A, 0x92, 0x00, 0x00, 0x03, 0x15, 0x00, 0x00, 0x03, 0x15, + 0x00, 0x00, 0x0A, 0x93, 0x00, 0x00, 0x03, 0x1B, 0x00, 0x00, 0x03, 0x1B, + 0x00, 0x00, 0x0A, 0x94, 0x00, 0x00, 0x03, 0x23, 0x00, 0x00, 0x03, 0x23, + 0x00, 0x00, 0x06, 0xED, 0x00, 0x00, 0x03, 0x26, 0x00, 0x00, 0x03, 0x26, + 0x00, 0x00, 0x06, 0xEE, 0x00, 0x00, 0x03, 0x27, 0x00, 0x00, 0x03, 0x28, + 0x00, 0x00, 0x0A, 0x95, 0x00, 0x00, 0x03, 0x2C, 0x00, 0x00, 0x03, 0x2C, + 0x00, 0x00, 0x0A, 0x97, 0x00, 0x00, 0x03, 0x37, 0x00, 0x00, 0x03, 0x38, + 0x00, 0x00, 0x0A, 0x98, 0x00, 0x00, 0x03, 0x42, 0x00, 0x00, 0x03, 0x43, + 0x00, 0x00, 0x0A, 0x7A, 0x00, 0x00, 0x03, 0x46, 0x00, 0x00, 0x03, 0x62, + 0x00, 0x00, 0x0A, 0x9A, 0x00, 0x00, 0x03, 0x63, 0x00, 0x00, 0x03, 0x6F, + 0x00, 0x00, 0x0A, 0x4F, 0x00, 0x00, 0x03, 0x74, 0x00, 0x00, 0x03, 0x75, + 0x00, 0x00, 0x0A, 0x23, 0x00, 0x00, 0x03, 0x76, 0x00, 0x00, 0x03, 0x76, + 0x00, 0x00, 0x01, 0x3E, 0x00, 0x00, 0x03, 0x7A, 0x00, 0x00, 0x03, 0x7A, + 0x00, 0x00, 0x09, 0xE5, 0x00, 0x00, 0x03, 0x7B, 0x00, 0x00, 0x03, 0x7D, + 0x00, 0x00, 0x09, 0xD0, 0x00, 0x00, 0x03, 0x7E, 0x00, 0x00, 0x03, 0x7E, + 0x00, 0x00, 0x05, 0xE5, 0x00, 0x00, 0x03, 0x7F, 0x00, 0x00, 0x03, 0x7F, + 0x00, 0x00, 0x01, 0x0D, 0x00, 0x00, 0x03, 0x84, 0x00, 0x00, 0x03, 0x84, + 0x00, 0x00, 0x06, 0xD9, 0x00, 0x00, 0x03, 0x85, 0x00, 0x00, 0x03, 0x85, + 0x00, 0x00, 0x06, 0xE4, 0x00, 0x00, 0x03, 0x86, 0x00, 0x00, 0x03, 0x86, + 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x03, 0x87, 0x00, 0x00, 0x03, 0x87, + 0x00, 0x00, 0x05, 0xE4, 0x00, 0x00, 0x03, 0x88, 0x00, 0x00, 0x03, 0x88, + 0x00, 0x00, 0x00, 0x7C, 0x00, 0x00, 0x03, 0x89, 0x00, 0x00, 0x03, 0x89, + 0x00, 0x00, 0x00, 0xB0, 0x00, 0x00, 0x03, 0x8A, 0x00, 0x00, 0x03, 0x8A, + 0x00, 0x00, 0x00, 0xDA, 0x00, 0x00, 0x03, 0x8C, 0x00, 0x00, 0x03, 0x8C, + 0x00, 0x00, 0x01, 0x67, 0x00, 0x00, 0x03, 0x8E, 0x00, 0x00, 0x03, 0x8E, + 0x00, 0x00, 0x01, 0xE5, 0x00, 0x00, 0x03, 0x8F, 0x00, 0x00, 0x03, 0x8F, + 0x00, 0x00, 0x04, 0x12, 0x00, 0x00, 0x03, 0x90, 0x00, 0x00, 0x03, 0x90, + 0x00, 0x00, 0x04, 0x9A, 0x00, 0x00, 0x03, 0x91, 0x00, 0x00, 0x03, 0x91, + 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x03, 0x92, 0x00, 0x00, 0x03, 0x92, + 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x03, 0x93, 0x00, 0x00, 0x03, 0x94, + 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x03, 0x95, 0x00, 0x00, 0x03, 0x95, + 0x00, 0x00, 0x00, 0x7B, 0x00, 0x00, 0x03, 0x96, 0x00, 0x00, 0x03, 0x96, + 0x00, 0x00, 0x01, 0xF9, 0x00, 0x00, 0x03, 0x97, 0x00, 0x00, 0x03, 0x97, + 0x00, 0x00, 0x00, 0xAF, 0x00, 0x00, 0x03, 0x98, 0x00, 0x00, 0x03, 0x98, + 0x00, 0x00, 0x04, 0x0A, 0x00, 0x00, 0x03, 0x99, 0x00, 0x00, 0x03, 0x99, + 0x00, 0x00, 0x00, 0xD9, 0x00, 0x00, 0x03, 0x9A, 0x00, 0x00, 0x03, 0x9A, + 0x00, 0x00, 0x01, 0x18, 0x00, 0x00, 0x03, 0x9B, 0x00, 0x00, 0x03, 0x9B, + 0x00, 0x00, 0x00, 0x3C, 0x00, 0x00, 0x03, 0x9C, 0x00, 0x00, 0x03, 0x9C, + 0x00, 0x00, 0x01, 0x29, 0x00, 0x00, 0x03, 0x9D, 0x00, 0x00, 0x03, 0x9D, + 0x00, 0x00, 0x01, 0x3F, 0x00, 0x00, 0x03, 0x9E, 0x00, 0x00, 0x03, 0x9E, + 0x00, 0x00, 0x04, 0x0B, 0x00, 0x00, 0x03, 0x9F, 0x00, 0x00, 0x03, 0x9F, + 0x00, 0x00, 0x01, 0x66, 0x00, 0x00, 0x03, 0xA0, 0x00, 0x00, 0x03, 0xA0, + 0x00, 0x00, 0x04, 0x0C, 0x00, 0x00, 0x03, 0xA1, 0x00, 0x00, 0x03, 0xA1, + 0x00, 0x00, 0x01, 0x7C, 0x00, 0x00, 0x03, 0xA3, 0x00, 0x00, 0x03, 0xA3, + 0x00, 0x00, 0x04, 0x0D, 0x00, 0x00, 0x03, 0xA4, 0x00, 0x00, 0x03, 0xA4, + 0x00, 0x00, 0x01, 0xA7, 0x00, 0x00, 0x03, 0xA5, 0x00, 0x00, 0x03, 0xA5, + 0x00, 0x00, 0x01, 0xE4, 0x00, 0x00, 0x03, 0xA6, 0x00, 0x00, 0x03, 0xA6, + 0x00, 0x00, 0x04, 0x0E, 0x00, 0x00, 0x03, 0xA7, 0x00, 0x00, 0x03, 0xA7, + 0x00, 0x00, 0x01, 0xD7, 0x00, 0x00, 0x03, 0xA8, 0x00, 0x00, 0x03, 0xA9, + 0x00, 0x00, 0x04, 0x0F, 0x00, 0x00, 0x03, 0xAA, 0x00, 0x00, 0x03, 0xAA, + 0x00, 0x00, 0x00, 0xDB, 0x00, 0x00, 0x03, 0xAB, 0x00, 0x00, 0x03, 0xAB, + 0x00, 0x00, 0x01, 0xE6, 0x00, 0x00, 0x03, 0xAC, 0x00, 0x00, 0x03, 0xAC, + 0x00, 0x00, 0x04, 0x55, 0x00, 0x00, 0x03, 0xAD, 0x00, 0x00, 0x03, 0xAD, + 0x00, 0x00, 0x04, 0x72, 0x00, 0x00, 0x03, 0xAE, 0x00, 0x00, 0x03, 0xAE, + 0x00, 0x00, 0x04, 0x81, 0x00, 0x00, 0x03, 0xAF, 0x00, 0x00, 0x03, 0xAF, + 0x00, 0x00, 0x04, 0x9B, 0x00, 0x00, 0x03, 0xB0, 0x00, 0x00, 0x03, 0xB0, + 0x00, 0x00, 0x04, 0xB6, 0x00, 0x00, 0x03, 0xB1, 0x00, 0x00, 0x03, 0xB1, + 0x00, 0x00, 0x04, 0x54, 0x00, 0x00, 0x03, 0xB2, 0x00, 0x00, 0x03, 0xB5, + 0x00, 0x00, 0x04, 0x6E, 0x00, 0x00, 0x03, 0xB6, 0x00, 0x00, 0x03, 0xB7, + 0x00, 0x00, 0x04, 0x7F, 0x00, 0x00, 0x03, 0xB8, 0x00, 0x00, 0x03, 0xB9, + 0x00, 0x00, 0x04, 0x98, 0x00, 0x00, 0x03, 0xBA, 0x00, 0x00, 0x03, 0xBA, + 0x00, 0x00, 0x09, 0xCD, 0x00, 0x00, 0x03, 0xBB, 0x00, 0x00, 0x03, 0xBB, + 0x00, 0x00, 0x04, 0xAB, 0x00, 0x00, 0x03, 0xBC, 0x00, 0x00, 0x03, 0xBD, + 0x00, 0x00, 0x09, 0xCE, 0x00, 0x00, 0x03, 0xBE, 0x00, 0x00, 0x03, 0xBE, + 0x00, 0x00, 0x04, 0xAC, 0x00, 0x00, 0x03, 0xBF, 0x00, 0x00, 0x03, 0xBF, + 0x00, 0x00, 0x03, 0x3B, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x03, 0xC1, + 0x00, 0x00, 0x04, 0xAD, 0x00, 0x00, 0x03, 0xC2, 0x00, 0x00, 0x03, 0xC5, + 0x00, 0x00, 0x04, 0xB2, 0x00, 0x00, 0x03, 0xC6, 0x00, 0x00, 0x03, 0xC6, + 0x00, 0x00, 0x04, 0xC7, 0x00, 0x00, 0x03, 0xC7, 0x00, 0x00, 0x03, 0xC7, + 0x00, 0x00, 0x03, 0xE3, 0x00, 0x00, 0x03, 0xC8, 0x00, 0x00, 0x03, 0xC9, + 0x00, 0x00, 0x04, 0xC9, 0x00, 0x00, 0x03, 0xCA, 0x00, 0x00, 0x03, 0xCA, + 0x00, 0x00, 0x04, 0x9C, 0x00, 0x00, 0x03, 0xCB, 0x00, 0x00, 0x03, 0xCB, + 0x00, 0x00, 0x04, 0xB7, 0x00, 0x00, 0x03, 0xCC, 0x00, 0x00, 0x03, 0xCC, + 0x00, 0x00, 0x03, 0x3C, 0x00, 0x00, 0x03, 0xCD, 0x00, 0x00, 0x03, 0xCD, + 0x00, 0x00, 0x04, 0xB8, 0x00, 0x00, 0x03, 0xCE, 0x00, 0x00, 0x03, 0xCE, + 0x00, 0x00, 0x04, 0xCB, 0x00, 0x00, 0x03, 0xCF, 0x00, 0x00, 0x03, 0xCF, + 0x00, 0x00, 0x09, 0xC9, 0x00, 0x00, 0x03, 0xD0, 0x00, 0x00, 0x03, 0xD1, + 0x00, 0x00, 0x09, 0xD5, 0x00, 0x00, 0x03, 0xD2, 0x00, 0x00, 0x03, 0xD4, + 0x00, 0x00, 0x04, 0x26, 0x00, 0x00, 0x03, 0xD5, 0x00, 0x00, 0x03, 0xD5, + 0x00, 0x00, 0x04, 0xC8, 0x00, 0x00, 0x03, 0xD6, 0x00, 0x00, 0x03, 0xD6, + 0x00, 0x00, 0x09, 0xD7, 0x00, 0x00, 0x03, 0xD7, 0x00, 0x00, 0x03, 0xD7, + 0x00, 0x00, 0x09, 0xD4, 0x00, 0x00, 0x03, 0xDC, 0x00, 0x00, 0x03, 0xDC, + 0x00, 0x00, 0x09, 0xC8, 0x00, 0x00, 0x03, 0xDD, 0x00, 0x00, 0x03, 0xDD, + 0x00, 0x00, 0x09, 0xD3, 0x00, 0x00, 0x03, 0xF0, 0x00, 0x00, 0x03, 0xF1, + 0x00, 0x00, 0x09, 0xD8, 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, 0x03, 0xF2, + 0x00, 0x00, 0x02, 0x53, 0x00, 0x00, 0x03, 0xF3, 0x00, 0x00, 0x03, 0xF3, + 0x00, 0x00, 0x02, 0xD4, 0x00, 0x00, 0x03, 0xF4, 0x00, 0x00, 0x03, 0xF4, + 0x00, 0x00, 0x01, 0x6F, 0x00, 0x00, 0x03, 0xF5, 0x00, 0x00, 0x03, 0xF5, + 0x00, 0x00, 0x09, 0xDA, 0x00, 0x00, 0x03, 0xF6, 0x00, 0x00, 0x03, 0xF6, + 0x00, 0x00, 0x0A, 0x25, 0x00, 0x00, 0x03, 0xF9, 0x00, 0x00, 0x03, 0xF9, + 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x03, 0xFA, 0x00, 0x00, 0x03, 0xFA, + 0x00, 0x00, 0x01, 0x2A, 0x00, 0x00, 0x03, 0xFC, 0x00, 0x00, 0x03, 0xFC, + 0x00, 0x00, 0x04, 0xB1, 0x00, 0x00, 0x03, 0xFD, 0x00, 0x00, 0x03, 0xFF, + 0x00, 0x00, 0x09, 0xCA, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x01, + 0x00, 0x00, 0x00, 0x86, 0x00, 0x00, 0x04, 0x02, 0x00, 0x00, 0x04, 0x02, + 0x00, 0x00, 0x04, 0x52, 0x00, 0x00, 0x04, 0x03, 0x00, 0x00, 0x04, 0x03, + 0x00, 0x00, 0x09, 0x7C, 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x04, 0x04, + 0x00, 0x00, 0x04, 0x4C, 0x00, 0x00, 0x04, 0x05, 0x00, 0x00, 0x04, 0x05, + 0x00, 0x00, 0x01, 0x98, 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x04, 0x07, + 0x00, 0x00, 0x00, 0xE8, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x04, 0x08, + 0x00, 0x00, 0x01, 0x0E, 0x00, 0x00, 0x04, 0x09, 0x00, 0x00, 0x04, 0x0A, + 0x00, 0x00, 0x04, 0x45, 0x00, 0x00, 0x04, 0x0B, 0x00, 0x00, 0x04, 0x0B, + 0x00, 0x00, 0x04, 0x3F, 0x00, 0x00, 0x04, 0x0C, 0x00, 0x00, 0x04, 0x0C, + 0x00, 0x00, 0x09, 0x7F, 0x00, 0x00, 0x04, 0x0D, 0x00, 0x00, 0x04, 0x0D, + 0x00, 0x00, 0x01, 0x39, 0x00, 0x00, 0x04, 0x0E, 0x00, 0x00, 0x04, 0x0E, + 0x00, 0x00, 0x09, 0x84, 0x00, 0x00, 0x04, 0x0F, 0x00, 0x00, 0x04, 0x0F, + 0x00, 0x00, 0x04, 0x36, 0x00, 0x00, 0x04, 0x10, 0x00, 0x00, 0x04, 0x10, + 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x11, + 0x00, 0x00, 0x04, 0x2A, 0x00, 0x00, 0x04, 0x12, 0x00, 0x00, 0x04, 0x12, + 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x04, 0x13, 0x00, 0x00, 0x04, 0x13, + 0x00, 0x00, 0x09, 0x7B, 0x00, 0x00, 0x04, 0x14, 0x00, 0x00, 0x04, 0x14, + 0x00, 0x00, 0x04, 0x2D, 0x00, 0x00, 0x04, 0x15, 0x00, 0x00, 0x04, 0x15, + 0x00, 0x00, 0x00, 0x85, 0x00, 0x00, 0x04, 0x16, 0x00, 0x00, 0x04, 0x16, + 0x00, 0x00, 0x04, 0x2E, 0x00, 0x00, 0x04, 0x17, 0x00, 0x00, 0x04, 0x17, + 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, 0x04, 0x18, 0x00, 0x00, 0x04, 0x18, + 0x00, 0x00, 0x01, 0x38, 0x00, 0x00, 0x04, 0x19, 0x00, 0x00, 0x04, 0x19, + 0x00, 0x00, 0x01, 0x3A, 0x00, 0x00, 0x04, 0x1A, 0x00, 0x00, 0x04, 0x1A, + 0x00, 0x00, 0x04, 0x31, 0x00, 0x00, 0x04, 0x1B, 0x00, 0x00, 0x04, 0x1B, + 0x00, 0x00, 0x04, 0x34, 0x00, 0x00, 0x04, 0x1C, 0x00, 0x00, 0x04, 0x1C, + 0x00, 0x00, 0x01, 0x2B, 0x00, 0x00, 0x04, 0x1D, 0x00, 0x00, 0x04, 0x1D, + 0x00, 0x00, 0x00, 0xBB, 0x00, 0x00, 0x04, 0x1E, 0x00, 0x00, 0x04, 0x1E, + 0x00, 0x00, 0x01, 0x71, 0x00, 0x00, 0x04, 0x1F, 0x00, 0x00, 0x04, 0x22, + 0x00, 0x00, 0x09, 0x80, 0x00, 0x00, 0x04, 0x23, 0x00, 0x00, 0x04, 0x24, + 0x00, 0x00, 0x04, 0x37, 0x00, 0x00, 0x04, 0x25, 0x00, 0x00, 0x04, 0x25, + 0x00, 0x00, 0x09, 0x85, 0x00, 0x00, 0x04, 0x26, 0x00, 0x00, 0x04, 0x26, + 0x00, 0x00, 0x04, 0x39, 0x00, 0x00, 0x04, 0x27, 0x00, 0x00, 0x04, 0x27, + 0x00, 0x00, 0x04, 0x3B, 0x00, 0x00, 0x04, 0x28, 0x00, 0x00, 0x04, 0x2C, + 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x04, 0x2D, 0x00, 0x00, 0x04, 0x2F, + 0x00, 0x00, 0x04, 0x47, 0x00, 0x00, 0x04, 0x30, 0x00, 0x00, 0x04, 0x30, + 0x00, 0x00, 0x02, 0x1C, 0x00, 0x00, 0x04, 0x31, 0x00, 0x00, 0x04, 0x33, + 0x00, 0x00, 0x04, 0xE3, 0x00, 0x00, 0x04, 0x34, 0x00, 0x00, 0x04, 0x34, + 0x00, 0x00, 0x04, 0xE8, 0x00, 0x00, 0x04, 0x35, 0x00, 0x00, 0x04, 0x35, + 0x00, 0x00, 0x02, 0x81, 0x00, 0x00, 0x04, 0x36, 0x00, 0x00, 0x04, 0x36, + 0x00, 0x00, 0x04, 0xE9, 0x00, 0x00, 0x04, 0x37, 0x00, 0x00, 0x04, 0x38, + 0x00, 0x00, 0x04, 0xEB, 0x00, 0x00, 0x04, 0x39, 0x00, 0x00, 0x04, 0x39, + 0x00, 0x00, 0x09, 0xA7, 0x00, 0x00, 0x04, 0x3A, 0x00, 0x00, 0x04, 0x3A, + 0x00, 0x00, 0x04, 0xEE, 0x00, 0x00, 0x04, 0x3B, 0x00, 0x00, 0x04, 0x3B, + 0x00, 0x00, 0x04, 0xF3, 0x00, 0x00, 0x04, 0x3C, 0x00, 0x00, 0x04, 0x3C, + 0x00, 0x00, 0x04, 0xF6, 0x00, 0x00, 0x04, 0x3D, 0x00, 0x00, 0x04, 0x3D, + 0x00, 0x00, 0x04, 0xF8, 0x00, 0x00, 0x04, 0x3E, 0x00, 0x00, 0x04, 0x3E, + 0x00, 0x00, 0x03, 0x46, 0x00, 0x00, 0x04, 0x3F, 0x00, 0x00, 0x04, 0x3F, + 0x00, 0x00, 0x04, 0xFD, 0x00, 0x00, 0x04, 0x40, 0x00, 0x00, 0x04, 0x40, + 0x00, 0x00, 0x03, 0x50, 0x00, 0x00, 0x04, 0x41, 0x00, 0x00, 0x04, 0x41, + 0x00, 0x00, 0x02, 0x54, 0x00, 0x00, 0x04, 0x42, 0x00, 0x00, 0x04, 0x42, + 0x00, 0x00, 0x04, 0xFE, 0x00, 0x00, 0x04, 0x43, 0x00, 0x00, 0x04, 0x43, + 0x00, 0x00, 0x03, 0xF1, 0x00, 0x00, 0x04, 0x44, 0x00, 0x00, 0x04, 0x44, + 0x00, 0x00, 0x04, 0xFF, 0x00, 0x00, 0x04, 0x45, 0x00, 0x00, 0x04, 0x45, + 0x00, 0x00, 0x03, 0xE2, 0x00, 0x00, 0x04, 0x46, 0x00, 0x00, 0x04, 0x46, + 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x04, 0x47, 0x00, 0x00, 0x04, 0x47, + 0x00, 0x00, 0x05, 0x04, 0x00, 0x00, 0x04, 0x48, 0x00, 0x00, 0x04, 0x49, + 0x00, 0x00, 0x05, 0x07, 0x00, 0x00, 0x04, 0x4A, 0x00, 0x00, 0x04, 0x4B, + 0x00, 0x00, 0x05, 0x0A, 0x00, 0x00, 0x04, 0x4C, 0x00, 0x00, 0x04, 0x4C, + 0x00, 0x00, 0x05, 0x09, 0x00, 0x00, 0x04, 0x4D, 0x00, 0x00, 0x04, 0x4F, + 0x00, 0x00, 0x05, 0x10, 0x00, 0x00, 0x04, 0x50, 0x00, 0x00, 0x04, 0x51, + 0x00, 0x00, 0x02, 0x82, 0x00, 0x00, 0x04, 0x52, 0x00, 0x00, 0x04, 0x52, + 0x00, 0x00, 0x02, 0xA1, 0x00, 0x00, 0x04, 0x53, 0x00, 0x00, 0x04, 0x53, + 0x00, 0x00, 0x09, 0xA4, 0x00, 0x00, 0x04, 0x54, 0x00, 0x00, 0x04, 0x54, + 0x00, 0x00, 0x05, 0x15, 0x00, 0x00, 0x04, 0x55, 0x00, 0x00, 0x04, 0x55, + 0x00, 0x00, 0x03, 0x74, 0x00, 0x00, 0x04, 0x56, 0x00, 0x00, 0x04, 0x57, + 0x00, 0x00, 0x02, 0xCB, 0x00, 0x00, 0x04, 0x58, 0x00, 0x00, 0x04, 0x58, + 0x00, 0x00, 0x02, 0xD5, 0x00, 0x00, 0x04, 0x59, 0x00, 0x00, 0x04, 0x5A, + 0x00, 0x00, 0x05, 0x0E, 0x00, 0x00, 0x04, 0x5B, 0x00, 0x00, 0x04, 0x5B, + 0x00, 0x00, 0x02, 0xA0, 0x00, 0x00, 0x04, 0x5C, 0x00, 0x00, 0x04, 0x5C, + 0x00, 0x00, 0x09, 0xA9, 0x00, 0x00, 0x04, 0x5D, 0x00, 0x00, 0x04, 0x5D, + 0x00, 0x00, 0x09, 0xA8, 0x00, 0x00, 0x04, 0x5E, 0x00, 0x00, 0x04, 0x5E, + 0x00, 0x00, 0x03, 0xF2, 0x00, 0x00, 0x04, 0x5F, 0x00, 0x00, 0x04, 0x5F, + 0x00, 0x00, 0x05, 0x03, 0x00, 0x00, 0x04, 0x60, 0x00, 0x00, 0x04, 0x60, + 0x00, 0x00, 0x09, 0x86, 0x00, 0x00, 0x04, 0x61, 0x00, 0x00, 0x04, 0x61, + 0x00, 0x00, 0x09, 0xAA, 0x00, 0x00, 0x04, 0x62, 0x00, 0x00, 0x04, 0x62, + 0x00, 0x00, 0x09, 0x87, 0x00, 0x00, 0x04, 0x63, 0x00, 0x00, 0x04, 0x63, + 0x00, 0x00, 0x05, 0x0D, 0x00, 0x00, 0x04, 0x64, 0x00, 0x00, 0x04, 0x64, + 0x00, 0x00, 0x09, 0x88, 0x00, 0x00, 0x04, 0x65, 0x00, 0x00, 0x04, 0x65, + 0x00, 0x00, 0x09, 0xAB, 0x00, 0x00, 0x04, 0x66, 0x00, 0x00, 0x04, 0x66, + 0x00, 0x00, 0x09, 0x89, 0x00, 0x00, 0x04, 0x67, 0x00, 0x00, 0x04, 0x67, + 0x00, 0x00, 0x09, 0xAC, 0x00, 0x00, 0x04, 0x68, 0x00, 0x00, 0x04, 0x68, + 0x00, 0x00, 0x09, 0x8A, 0x00, 0x00, 0x04, 0x69, 0x00, 0x00, 0x04, 0x69, + 0x00, 0x00, 0x09, 0xAD, 0x00, 0x00, 0x04, 0x6A, 0x00, 0x00, 0x04, 0x6A, + 0x00, 0x00, 0x09, 0x8B, 0x00, 0x00, 0x04, 0x6B, 0x00, 0x00, 0x04, 0x6B, + 0x00, 0x00, 0x09, 0xAE, 0x00, 0x00, 0x04, 0x6C, 0x00, 0x00, 0x04, 0x6C, + 0x00, 0x00, 0x09, 0x8C, 0x00, 0x00, 0x04, 0x6D, 0x00, 0x00, 0x04, 0x6D, + 0x00, 0x00, 0x09, 0xAF, 0x00, 0x00, 0x04, 0x6E, 0x00, 0x00, 0x04, 0x6E, + 0x00, 0x00, 0x09, 0x8D, 0x00, 0x00, 0x04, 0x6F, 0x00, 0x00, 0x04, 0x6F, + 0x00, 0x00, 0x09, 0xB0, 0x00, 0x00, 0x04, 0x70, 0x00, 0x00, 0x04, 0x70, + 0x00, 0x00, 0x09, 0x8E, 0x00, 0x00, 0x04, 0x71, 0x00, 0x00, 0x04, 0x71, + 0x00, 0x00, 0x09, 0xB1, 0x00, 0x00, 0x04, 0x72, 0x00, 0x00, 0x04, 0x72, + 0x00, 0x00, 0x04, 0x35, 0x00, 0x00, 0x04, 0x73, 0x00, 0x00, 0x04, 0x73, + 0x00, 0x00, 0x03, 0x44, 0x00, 0x00, 0x04, 0x74, 0x00, 0x00, 0x04, 0x74, + 0x00, 0x00, 0x04, 0x51, 0x00, 0x00, 0x04, 0x75, 0x00, 0x00, 0x04, 0x75, + 0x00, 0x00, 0x05, 0x1A, 0x00, 0x00, 0x04, 0x76, 0x00, 0x00, 0x04, 0x76, + 0x00, 0x00, 0x09, 0x8F, 0x00, 0x00, 0x04, 0x77, 0x00, 0x00, 0x04, 0x77, + 0x00, 0x00, 0x09, 0xB2, 0x00, 0x00, 0x04, 0x78, 0x00, 0x00, 0x04, 0x78, + 0x00, 0x00, 0x09, 0x90, 0x00, 0x00, 0x04, 0x79, 0x00, 0x00, 0x04, 0x79, + 0x00, 0x00, 0x03, 0x4A, 0x00, 0x00, 0x04, 0x80, 0x00, 0x00, 0x04, 0x80, + 0x00, 0x00, 0x09, 0xA2, 0x00, 0x00, 0x04, 0x81, 0x00, 0x00, 0x04, 0x81, + 0x00, 0x00, 0x09, 0xC7, 0x00, 0x00, 0x04, 0x82, 0x00, 0x00, 0x04, 0x82, + 0x00, 0x00, 0x0A, 0x22, 0x00, 0x00, 0x04, 0x83, 0x00, 0x00, 0x04, 0x87, + 0x00, 0x00, 0x0A, 0x74, 0x00, 0x00, 0x04, 0x88, 0x00, 0x00, 0x04, 0x89, + 0x00, 0x00, 0x0A, 0x72, 0x00, 0x00, 0x04, 0x8A, 0x00, 0x00, 0x04, 0x8A, + 0x00, 0x00, 0x01, 0x3D, 0x00, 0x00, 0x04, 0x8B, 0x00, 0x00, 0x04, 0x8B, + 0x00, 0x00, 0x04, 0xED, 0x00, 0x00, 0x04, 0x8C, 0x00, 0x00, 0x04, 0x8C, + 0x00, 0x00, 0x09, 0xA3, 0x00, 0x00, 0x04, 0x8D, 0x00, 0x00, 0x04, 0x8D, + 0x00, 0x00, 0x05, 0x0C, 0x00, 0x00, 0x04, 0x8E, 0x00, 0x00, 0x04, 0x8E, + 0x00, 0x00, 0x01, 0x7A, 0x00, 0x00, 0x04, 0x8F, 0x00, 0x00, 0x04, 0x8F, + 0x00, 0x00, 0x03, 0x4C, 0x00, 0x00, 0x04, 0x90, 0x00, 0x00, 0x04, 0x90, + 0x00, 0x00, 0x04, 0x2B, 0x00, 0x00, 0x04, 0x91, 0x00, 0x00, 0x04, 0x91, + 0x00, 0x00, 0x04, 0xE6, 0x00, 0x00, 0x04, 0x92, 0x00, 0x00, 0x04, 0x92, + 0x00, 0x00, 0x09, 0x7E, 0x00, 0x00, 0x04, 0x93, 0x00, 0x00, 0x04, 0x93, + 0x00, 0x00, 0x09, 0xA6, 0x00, 0x00, 0x04, 0x94, 0x00, 0x00, 0x04, 0x94, + 0x00, 0x00, 0x04, 0x4A, 0x00, 0x00, 0x04, 0x95, 0x00, 0x00, 0x04, 0x95, + 0x00, 0x00, 0x05, 0x13, 0x00, 0x00, 0x04, 0x96, 0x00, 0x00, 0x04, 0x96, + 0x00, 0x00, 0x04, 0x2F, 0x00, 0x00, 0x04, 0x97, 0x00, 0x00, 0x04, 0x97, + 0x00, 0x00, 0x04, 0xEA, 0x00, 0x00, 0x04, 0x98, 0x00, 0x00, 0x04, 0x98, + 0x00, 0x00, 0x09, 0x91, 0x00, 0x00, 0x04, 0x99, 0x00, 0x00, 0x04, 0x99, + 0x00, 0x00, 0x09, 0xB3, 0x00, 0x00, 0x04, 0x9A, 0x00, 0x00, 0x04, 0x9A, + 0x00, 0x00, 0x01, 0x16, 0x00, 0x00, 0x04, 0x9B, 0x00, 0x00, 0x04, 0x9B, + 0x00, 0x00, 0x04, 0xF0, 0x00, 0x00, 0x04, 0x9C, 0x00, 0x00, 0x04, 0x9C, + 0x00, 0x00, 0x04, 0x32, 0x00, 0x00, 0x04, 0x9D, 0x00, 0x00, 0x04, 0x9D, + 0x00, 0x00, 0x04, 0xF1, 0x00, 0x00, 0x04, 0xA0, 0x00, 0x00, 0x04, 0xA0, + 0x00, 0x00, 0x01, 0x15, 0x00, 0x00, 0x04, 0xA1, 0x00, 0x00, 0x04, 0xA1, + 0x00, 0x00, 0x04, 0xF2, 0x00, 0x00, 0x04, 0xA2, 0x00, 0x00, 0x04, 0xA2, + 0x00, 0x00, 0x00, 0xAB, 0x00, 0x00, 0x04, 0xA3, 0x00, 0x00, 0x04, 0xA3, + 0x00, 0x00, 0x04, 0xF9, 0x00, 0x00, 0x04, 0xA4, 0x00, 0x00, 0x04, 0xA4, + 0x00, 0x00, 0x00, 0xAD, 0x00, 0x00, 0x04, 0xA5, 0x00, 0x00, 0x04, 0xA5, + 0x00, 0x00, 0x04, 0xFA, 0x00, 0x00, 0x04, 0xA6, 0x00, 0x00, 0x04, 0xA6, + 0x00, 0x00, 0x04, 0x4B, 0x00, 0x00, 0x04, 0xA7, 0x00, 0x00, 0x04, 0xA7, + 0x00, 0x00, 0x05, 0x14, 0x00, 0x00, 0x04, 0xA8, 0x00, 0x00, 0x04, 0xA8, + 0x00, 0x00, 0x04, 0x4D, 0x00, 0x00, 0x04, 0xA9, 0x00, 0x00, 0x04, 0xA9, + 0x00, 0x00, 0x05, 0x16, 0x00, 0x00, 0x04, 0xAA, 0x00, 0x00, 0x04, 0xAA, + 0x00, 0x00, 0x09, 0x92, 0x00, 0x00, 0x04, 0xAB, 0x00, 0x00, 0x04, 0xAB, + 0x00, 0x00, 0x09, 0xB4, 0x00, 0x00, 0x04, 0xAC, 0x00, 0x00, 0x04, 0xAC, + 0x00, 0x00, 0x09, 0x93, 0x00, 0x00, 0x04, 0xAD, 0x00, 0x00, 0x04, 0xAD, + 0x00, 0x00, 0x09, 0xB5, 0x00, 0x00, 0x04, 0xAE, 0x00, 0x00, 0x04, 0xAE, + 0x00, 0x00, 0x09, 0x94, 0x00, 0x00, 0x04, 0xAF, 0x00, 0x00, 0x04, 0xAF, + 0x00, 0x00, 0x09, 0xB6, 0x00, 0x00, 0x04, 0xB0, 0x00, 0x00, 0x04, 0xB0, + 0x00, 0x00, 0x09, 0x95, 0x00, 0x00, 0x04, 0xB1, 0x00, 0x00, 0x04, 0xB1, + 0x00, 0x00, 0x09, 0xB7, 0x00, 0x00, 0x04, 0xB2, 0x00, 0x00, 0x04, 0xB2, + 0x00, 0x00, 0x01, 0xD5, 0x00, 0x00, 0x04, 0xB3, 0x00, 0x00, 0x04, 0xB3, + 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x04, 0xB4, 0x00, 0x00, 0x04, 0xB4, + 0x00, 0x00, 0x04, 0x3A, 0x00, 0x00, 0x04, 0xB5, 0x00, 0x00, 0x04, 0xB5, + 0x00, 0x00, 0x05, 0x17, 0x00, 0x00, 0x04, 0xB6, 0x00, 0x00, 0x04, 0xB6, + 0x00, 0x00, 0x04, 0x3C, 0x00, 0x00, 0x04, 0xB7, 0x00, 0x00, 0x04, 0xB7, + 0x00, 0x00, 0x05, 0x05, 0x00, 0x00, 0x04, 0xB8, 0x00, 0x00, 0x04, 0xB8, + 0x00, 0x00, 0x04, 0x3D, 0x00, 0x00, 0x04, 0xB9, 0x00, 0x00, 0x04, 0xB9, + 0x00, 0x00, 0x05, 0x06, 0x00, 0x00, 0x04, 0xBA, 0x00, 0x00, 0x04, 0xBA, + 0x00, 0x00, 0x04, 0x3E, 0x00, 0x00, 0x04, 0xBB, 0x00, 0x00, 0x04, 0xBB, + 0x00, 0x00, 0x02, 0xB0, 0x00, 0x00, 0x04, 0xBC, 0x00, 0x00, 0x04, 0xBC, + 0x00, 0x00, 0x04, 0x4E, 0x00, 0x00, 0x04, 0xBD, 0x00, 0x00, 0x04, 0xBD, + 0x00, 0x00, 0x05, 0x18, 0x00, 0x00, 0x04, 0xBE, 0x00, 0x00, 0x04, 0xBE, + 0x00, 0x00, 0x09, 0x96, 0x00, 0x00, 0x04, 0xBF, 0x00, 0x00, 0x04, 0xBF, + 0x00, 0x00, 0x09, 0xB8, 0x00, 0x00, 0x04, 0xC0, 0x00, 0x00, 0x04, 0xC1, + 0x00, 0x00, 0x09, 0x97, 0x00, 0x00, 0x04, 0xC2, 0x00, 0x00, 0x04, 0xC2, + 0x00, 0x00, 0x09, 0xB9, 0x00, 0x00, 0x04, 0xC3, 0x00, 0x00, 0x04, 0xC3, + 0x00, 0x00, 0x04, 0x33, 0x00, 0x00, 0x04, 0xC4, 0x00, 0x00, 0x04, 0xC4, + 0x00, 0x00, 0x04, 0xEF, 0x00, 0x00, 0x04, 0xC5, 0x00, 0x00, 0x04, 0xC5, + 0x00, 0x00, 0x09, 0x99, 0x00, 0x00, 0x04, 0xC6, 0x00, 0x00, 0x04, 0xC6, + 0x00, 0x00, 0x04, 0xF4, 0x00, 0x00, 0x04, 0xC7, 0x00, 0x00, 0x04, 0xC7, + 0x00, 0x00, 0x00, 0xAA, 0x00, 0x00, 0x04, 0xC8, 0x00, 0x00, 0x04, 0xC8, + 0x00, 0x00, 0x04, 0xFB, 0x00, 0x00, 0x04, 0xC9, 0x00, 0x00, 0x04, 0xC9, + 0x00, 0x00, 0x00, 0xAC, 0x00, 0x00, 0x04, 0xCA, 0x00, 0x00, 0x04, 0xCA, + 0x00, 0x00, 0x04, 0xFC, 0x00, 0x00, 0x04, 0xCB, 0x00, 0x00, 0x04, 0xCB, + 0x00, 0x00, 0x09, 0x9A, 0x00, 0x00, 0x04, 0xCC, 0x00, 0x00, 0x04, 0xCC, + 0x00, 0x00, 0x09, 0xBA, 0x00, 0x00, 0x04, 0xCD, 0x00, 0x00, 0x04, 0xCD, + 0x00, 0x00, 0x01, 0x28, 0x00, 0x00, 0x04, 0xCE, 0x00, 0x00, 0x04, 0xCE, + 0x00, 0x00, 0x04, 0xF7, 0x00, 0x00, 0x04, 0xCF, 0x00, 0x00, 0x04, 0xCF, + 0x00, 0x00, 0x02, 0xFC, 0x00, 0x00, 0x04, 0xD0, 0x00, 0x00, 0x04, 0xD0, + 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x04, 0xD1, 0x00, 0x00, 0x04, 0xD1, + 0x00, 0x00, 0x02, 0x1D, 0x00, 0x00, 0x04, 0xD2, 0x00, 0x00, 0x04, 0xD2, + 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x04, 0xD3, 0x00, 0x00, 0x04, 0xD3, + 0x00, 0x00, 0x02, 0x1E, 0x00, 0x00, 0x04, 0xD4, 0x00, 0x00, 0x04, 0xD4, + 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x04, 0xD5, 0x00, 0x00, 0x04, 0xD5, + 0x00, 0x00, 0x02, 0x22, 0x00, 0x00, 0x04, 0xD6, 0x00, 0x00, 0x04, 0xD6, + 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x04, 0xD7, 0x00, 0x00, 0x04, 0xD7, + 0x00, 0x00, 0x02, 0x84, 0x00, 0x00, 0x04, 0xD8, 0x00, 0x00, 0x04, 0xD8, + 0x00, 0x00, 0x04, 0x4F, 0x00, 0x00, 0x04, 0xD9, 0x00, 0x00, 0x04, 0xD9, + 0x00, 0x00, 0x09, 0xBB, 0x00, 0x00, 0x04, 0xDA, 0x00, 0x00, 0x04, 0xDA, + 0x00, 0x00, 0x09, 0x9B, 0x00, 0x00, 0x04, 0xDB, 0x00, 0x00, 0x04, 0xDB, + 0x00, 0x00, 0x09, 0xBC, 0x00, 0x00, 0x04, 0xDC, 0x00, 0x00, 0x04, 0xDC, + 0x00, 0x00, 0x09, 0x9C, 0x00, 0x00, 0x04, 0xDD, 0x00, 0x00, 0x04, 0xDD, + 0x00, 0x00, 0x09, 0xBD, 0x00, 0x00, 0x04, 0xDE, 0x00, 0x00, 0x04, 0xDE, + 0x00, 0x00, 0x09, 0x9D, 0x00, 0x00, 0x04, 0xDF, 0x00, 0x00, 0x04, 0xDF, + 0x00, 0x00, 0x09, 0xBE, 0x00, 0x00, 0x04, 0xE0, 0x00, 0x00, 0x04, 0xE0, + 0x00, 0x00, 0x04, 0x50, 0x00, 0x00, 0x04, 0xE1, 0x00, 0x00, 0x04, 0xE1, + 0x00, 0x00, 0x05, 0x19, 0x00, 0x00, 0x04, 0xE2, 0x00, 0x00, 0x04, 0xE2, + 0x00, 0x00, 0x01, 0x3B, 0x00, 0x00, 0x04, 0xE3, 0x00, 0x00, 0x04, 0xE3, + 0x00, 0x00, 0x09, 0xBF, 0x00, 0x00, 0x04, 0xE4, 0x00, 0x00, 0x04, 0xE4, + 0x00, 0x00, 0x01, 0x3C, 0x00, 0x00, 0x04, 0xE5, 0x00, 0x00, 0x04, 0xE5, + 0x00, 0x00, 0x09, 0xC0, 0x00, 0x00, 0x04, 0xE6, 0x00, 0x00, 0x04, 0xE6, + 0x00, 0x00, 0x01, 0x72, 0x00, 0x00, 0x04, 0xE7, 0x00, 0x00, 0x04, 0xE7, + 0x00, 0x00, 0x03, 0x47, 0x00, 0x00, 0x04, 0xE8, 0x00, 0x00, 0x04, 0xE8, + 0x00, 0x00, 0x01, 0x74, 0x00, 0x00, 0x04, 0xE9, 0x00, 0x00, 0x04, 0xE9, + 0x00, 0x00, 0x09, 0xC1, 0x00, 0x00, 0x04, 0xEA, 0x00, 0x00, 0x04, 0xEA, + 0x00, 0x00, 0x01, 0x75, 0x00, 0x00, 0x04, 0xEB, 0x00, 0x00, 0x04, 0xEB, + 0x00, 0x00, 0x09, 0xC2, 0x00, 0x00, 0x04, 0xEC, 0x00, 0x00, 0x04, 0xEC, + 0x00, 0x00, 0x09, 0x9E, 0x00, 0x00, 0x04, 0xED, 0x00, 0x00, 0x04, 0xED, + 0x00, 0x00, 0x09, 0xC3, 0x00, 0x00, 0x04, 0xEE, 0x00, 0x00, 0x04, 0xEE, + 0x00, 0x00, 0x03, 0xF7, 0x00, 0x00, 0x04, 0xEF, 0x00, 0x00, 0x04, 0xEF, + 0x00, 0x00, 0x03, 0xF3, 0x00, 0x00, 0x04, 0xF0, 0x00, 0x00, 0x04, 0xF0, + 0x00, 0x00, 0x03, 0xF8, 0x00, 0x00, 0x04, 0xF1, 0x00, 0x00, 0x04, 0xF1, + 0x00, 0x00, 0x03, 0xF4, 0x00, 0x00, 0x04, 0xF2, 0x00, 0x00, 0x04, 0xF2, + 0x00, 0x00, 0x03, 0xF9, 0x00, 0x00, 0x04, 0xF3, 0x00, 0x00, 0x04, 0xF3, + 0x00, 0x00, 0x03, 0xF5, 0x00, 0x00, 0x04, 0xF4, 0x00, 0x00, 0x04, 0xF4, + 0x00, 0x00, 0x09, 0x9F, 0x00, 0x00, 0x04, 0xF5, 0x00, 0x00, 0x04, 0xF5, + 0x00, 0x00, 0x09, 0xC4, 0x00, 0x00, 0x04, 0xF6, 0x00, 0x00, 0x04, 0xF6, + 0x00, 0x00, 0x09, 0x7D, 0x00, 0x00, 0x04, 0xF7, 0x00, 0x00, 0x04, 0xF7, + 0x00, 0x00, 0x09, 0xA5, 0x00, 0x00, 0x04, 0xF8, 0x00, 0x00, 0x04, 0xF8, + 0x00, 0x00, 0x09, 0xA0, 0x00, 0x00, 0x04, 0xF9, 0x00, 0x00, 0x04, 0xF9, + 0x00, 0x00, 0x09, 0xC5, 0x00, 0x00, 0x04, 0xFA, 0x00, 0x00, 0x04, 0xFA, + 0x00, 0x00, 0x04, 0x2C, 0x00, 0x00, 0x04, 0xFB, 0x00, 0x00, 0x04, 0xFB, + 0x00, 0x00, 0x04, 0xE7, 0x00, 0x00, 0x04, 0xFC, 0x00, 0x00, 0x04, 0xFC, + 0x00, 0x00, 0x01, 0xD6, 0x00, 0x00, 0x04, 0xFD, 0x00, 0x00, 0x04, 0xFD, + 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x04, 0xFE, 0x00, 0x00, 0x04, 0xFE, + 0x00, 0x00, 0x09, 0xA1, 0x00, 0x00, 0x04, 0xFF, 0x00, 0x00, 0x04, 0xFF, + 0x00, 0x00, 0x09, 0xC6, 0x00, 0x00, 0x05, 0x2F, 0x00, 0x00, 0x05, 0x2F, + 0x00, 0x00, 0x04, 0xF5, 0x00, 0x00, 0x0E, 0x3F, 0x00, 0x00, 0x0E, 0x3F, + 0x00, 0x00, 0x05, 0x39, 0x00, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x1D, 0x00, + 0x00, 0x00, 0x09, 0x6D, 0x00, 0x00, 0x1D, 0x0D, 0x00, 0x00, 0x1D, 0x0D, + 0x00, 0x00, 0x09, 0x6F, 0x00, 0x00, 0x1D, 0x1B, 0x00, 0x00, 0x1D, 0x1B, + 0x00, 0x00, 0x09, 0x70, 0x00, 0x00, 0x1D, 0x43, 0x00, 0x00, 0x1D, 0x43, + 0x00, 0x00, 0x06, 0x25, 0x00, 0x00, 0x1D, 0x47, 0x00, 0x00, 0x1D, 0x47, + 0x00, 0x00, 0x06, 0x26, 0x00, 0x00, 0x1D, 0x48, 0x00, 0x00, 0x1D, 0x49, + 0x00, 0x00, 0x06, 0x28, 0x00, 0x00, 0x1D, 0x4D, 0x00, 0x00, 0x1D, 0x4D, + 0x00, 0x00, 0x06, 0x2B, 0x00, 0x00, 0x1D, 0x4F, 0x00, 0x00, 0x1D, 0x4F, + 0x00, 0x00, 0x06, 0x2F, 0x00, 0x00, 0x1D, 0x50, 0x00, 0x00, 0x1D, 0x50, + 0x00, 0x00, 0x06, 0x31, 0x00, 0x00, 0x1D, 0x52, 0x00, 0x00, 0x1D, 0x52, + 0x00, 0x00, 0x06, 0x33, 0x00, 0x00, 0x1D, 0x56, 0x00, 0x00, 0x1D, 0x56, + 0x00, 0x00, 0x06, 0x34, 0x00, 0x00, 0x1D, 0x57, 0x00, 0x00, 0x1D, 0x58, + 0x00, 0x00, 0x06, 0x38, 0x00, 0x00, 0x1D, 0x5B, 0x00, 0x00, 0x1D, 0x5B, + 0x00, 0x00, 0x06, 0x3A, 0x00, 0x00, 0x1D, 0x62, 0x00, 0x00, 0x1D, 0x62, + 0x00, 0x00, 0x06, 0x5E, 0x00, 0x00, 0x1D, 0x63, 0x00, 0x00, 0x1D, 0x63, + 0x00, 0x00, 0x06, 0x67, 0x00, 0x00, 0x1D, 0x64, 0x00, 0x00, 0x1D, 0x65, + 0x00, 0x00, 0x06, 0x6A, 0x00, 0x00, 0x1D, 0x9C, 0x00, 0x00, 0x1D, 0x9C, + 0x00, 0x00, 0x06, 0x27, 0x00, 0x00, 0x1D, 0xA0, 0x00, 0x00, 0x1D, 0xA0, + 0x00, 0x00, 0x06, 0x2A, 0x00, 0x00, 0x1D, 0xBB, 0x00, 0x00, 0x1D, 0xBB, + 0x00, 0x00, 0x06, 0x3E, 0x00, 0x00, 0x1D, 0xBF, 0x00, 0x00, 0x1D, 0xBF, + 0x00, 0x00, 0x09, 0xE6, 0x00, 0x00, 0x1D, 0xC0, 0x00, 0x00, 0x1D, 0xC3, + 0x00, 0x00, 0x0A, 0xBB, 0x00, 0x00, 0x1D, 0xC4, 0x00, 0x00, 0x1D, 0xC4, + 0x00, 0x00, 0x0A, 0xB8, 0x00, 0x00, 0x1D, 0xC5, 0x00, 0x00, 0x1D, 0xC9, + 0x00, 0x00, 0x0A, 0xBF, 0x00, 0x00, 0x1D, 0xCA, 0x00, 0x00, 0x1D, 0xCA, + 0x00, 0x00, 0x0A, 0x5C, 0x00, 0x00, 0x1D, 0xCB, 0x00, 0x00, 0x1D, 0xD2, + 0x00, 0x00, 0x0A, 0xC4, 0x00, 0x00, 0x1D, 0xD3, 0x00, 0x00, 0x1D, 0xD6, + 0x00, 0x00, 0x0A, 0x5D, 0x00, 0x00, 0x1D, 0xD7, 0x00, 0x00, 0x1D, 0xD7, + 0x00, 0x00, 0x0A, 0xCC, 0x00, 0x00, 0x1D, 0xD8, 0x00, 0x00, 0x1D, 0xE7, + 0x00, 0x00, 0x0A, 0x61, 0x00, 0x00, 0x1D, 0xE8, 0x00, 0x00, 0x1D, 0xE8, + 0x00, 0x00, 0x0A, 0xCD, 0x00, 0x00, 0x1D, 0xE9, 0x00, 0x00, 0x1D, 0xE9, + 0x00, 0x00, 0x0A, 0x71, 0x00, 0x00, 0x1D, 0xEA, 0x00, 0x00, 0x1D, 0xF5, + 0x00, 0x00, 0x0A, 0xCE, 0x00, 0x00, 0x1D, 0xFC, 0x00, 0x00, 0x1D, 0xFF, + 0x00, 0x00, 0x0A, 0xDA, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x1E, 0x00, + 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x1E, 0x01, 0x00, 0x00, 0x1E, 0x01, + 0x00, 0x00, 0x02, 0x19, 0x00, 0x00, 0x1E, 0x02, 0x00, 0x00, 0x1E, 0x02, + 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x1E, 0x03, 0x00, 0x00, 0x1E, 0x03, + 0x00, 0x00, 0x02, 0x46, 0x00, 0x00, 0x1E, 0x04, 0x00, 0x00, 0x1E, 0x04, + 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x1E, 0x05, 0x00, 0x00, 0x1E, 0x05, + 0x00, 0x00, 0x02, 0x47, 0x00, 0x00, 0x1E, 0x06, 0x00, 0x00, 0x1E, 0x06, + 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x1E, 0x07, 0x00, 0x00, 0x1E, 0x07, + 0x00, 0x00, 0x02, 0x48, 0x00, 0x00, 0x1E, 0x08, 0x00, 0x00, 0x1E, 0x08, + 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x1E, 0x09, 0x00, 0x00, 0x1E, 0x09, + 0x00, 0x00, 0x02, 0x52, 0x00, 0x00, 0x1E, 0x0A, 0x00, 0x00, 0x1E, 0x0A, + 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x1E, 0x0B, 0x00, 0x00, 0x1E, 0x0B, + 0x00, 0x00, 0x02, 0x5C, 0x00, 0x00, 0x1E, 0x0C, 0x00, 0x00, 0x1E, 0x0C, + 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x1E, 0x0D, 0x00, 0x00, 0x1E, 0x0D, + 0x00, 0x00, 0x02, 0x5D, 0x00, 0x00, 0x1E, 0x0E, 0x00, 0x00, 0x1E, 0x0E, + 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x1E, 0x0F, 0x00, 0x00, 0x1E, 0x0F, + 0x00, 0x00, 0x02, 0x5E, 0x00, 0x00, 0x1E, 0x10, 0x00, 0x00, 0x1E, 0x10, + 0x00, 0x00, 0x00, 0x5A, 0x00, 0x00, 0x1E, 0x11, 0x00, 0x00, 0x1E, 0x11, + 0x00, 0x00, 0x02, 0x5F, 0x00, 0x00, 0x1E, 0x12, 0x00, 0x00, 0x1E, 0x12, + 0x00, 0x00, 0x00, 0x5B, 0x00, 0x00, 0x1E, 0x13, 0x00, 0x00, 0x1E, 0x13, + 0x00, 0x00, 0x02, 0x60, 0x00, 0x00, 0x1E, 0x14, 0x00, 0x00, 0x1E, 0x14, + 0x00, 0x00, 0x00, 0x6C, 0x00, 0x00, 0x1E, 0x15, 0x00, 0x00, 0x1E, 0x15, + 0x00, 0x00, 0x02, 0x74, 0x00, 0x00, 0x1E, 0x16, 0x00, 0x00, 0x1E, 0x16, + 0x00, 0x00, 0x00, 0x6D, 0x00, 0x00, 0x1E, 0x17, 0x00, 0x00, 0x1E, 0x17, + 0x00, 0x00, 0x02, 0x75, 0x00, 0x00, 0x1E, 0x18, 0x00, 0x00, 0x1E, 0x18, + 0x00, 0x00, 0x00, 0x6E, 0x00, 0x00, 0x1E, 0x19, 0x00, 0x00, 0x1E, 0x19, + 0x00, 0x00, 0x02, 0x76, 0x00, 0x00, 0x1E, 0x1A, 0x00, 0x00, 0x1E, 0x1A, + 0x00, 0x00, 0x00, 0x6F, 0x00, 0x00, 0x1E, 0x1B, 0x00, 0x00, 0x1E, 0x1B, + 0x00, 0x00, 0x02, 0x77, 0x00, 0x00, 0x1E, 0x1C, 0x00, 0x00, 0x1E, 0x1C, + 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x1E, 0x1D, 0x00, 0x00, 0x1E, 0x1D, + 0x00, 0x00, 0x02, 0x78, 0x00, 0x00, 0x1E, 0x1E, 0x00, 0x00, 0x1E, 0x1E, + 0x00, 0x00, 0x00, 0x8B, 0x00, 0x00, 0x1E, 0x1F, 0x00, 0x00, 0x1E, 0x1F, + 0x00, 0x00, 0x02, 0x90, 0x00, 0x00, 0x1E, 0x20, 0x00, 0x00, 0x1E, 0x20, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x1E, 0x21, 0x00, 0x00, 0x1E, 0x21, + 0x00, 0x00, 0x02, 0x9B, 0x00, 0x00, 0x1E, 0x22, 0x00, 0x00, 0x1E, 0x22, + 0x00, 0x00, 0x00, 0xA5, 0x00, 0x00, 0x1E, 0x23, 0x00, 0x00, 0x1E, 0x23, + 0x00, 0x00, 0x02, 0xAB, 0x00, 0x00, 0x1E, 0x24, 0x00, 0x00, 0x1E, 0x24, + 0x00, 0x00, 0x00, 0xA6, 0x00, 0x00, 0x1E, 0x25, 0x00, 0x00, 0x1E, 0x25, + 0x00, 0x00, 0x02, 0xAC, 0x00, 0x00, 0x1E, 0x26, 0x00, 0x00, 0x1E, 0x26, + 0x00, 0x00, 0x00, 0xA7, 0x00, 0x00, 0x1E, 0x27, 0x00, 0x00, 0x1E, 0x27, + 0x00, 0x00, 0x02, 0xAD, 0x00, 0x00, 0x1E, 0x28, 0x00, 0x00, 0x1E, 0x28, + 0x00, 0x00, 0x00, 0xA2, 0x00, 0x00, 0x1E, 0x29, 0x00, 0x00, 0x1E, 0x29, + 0x00, 0x00, 0x02, 0x9F, 0x00, 0x00, 0x1E, 0x2A, 0x00, 0x00, 0x1E, 0x2A, + 0x00, 0x00, 0x00, 0xA8, 0x00, 0x00, 0x1E, 0x2B, 0x00, 0x00, 0x1E, 0x2B, + 0x00, 0x00, 0x02, 0xAE, 0x00, 0x00, 0x1E, 0x2C, 0x00, 0x00, 0x1E, 0x2C, + 0x00, 0x00, 0x00, 0xCA, 0x00, 0x00, 0x1E, 0x2D, 0x00, 0x00, 0x1E, 0x2D, + 0x00, 0x00, 0x02, 0xB7, 0x00, 0x00, 0x1E, 0x2E, 0x00, 0x00, 0x1E, 0x2E, + 0x00, 0x00, 0x00, 0xC8, 0x00, 0x00, 0x1E, 0x2F, 0x00, 0x00, 0x1E, 0x2F, + 0x00, 0x00, 0x02, 0xB5, 0x00, 0x00, 0x1E, 0x30, 0x00, 0x00, 0x1E, 0x30, + 0x00, 0x00, 0x01, 0x12, 0x00, 0x00, 0x1E, 0x31, 0x00, 0x00, 0x1E, 0x31, + 0x00, 0x00, 0x02, 0xDB, 0x00, 0x00, 0x1E, 0x32, 0x00, 0x00, 0x1E, 0x32, + 0x00, 0x00, 0x01, 0x13, 0x00, 0x00, 0x1E, 0x33, 0x00, 0x00, 0x1E, 0x33, + 0x00, 0x00, 0x02, 0xDC, 0x00, 0x00, 0x1E, 0x34, 0x00, 0x00, 0x1E, 0x34, + 0x00, 0x00, 0x01, 0x14, 0x00, 0x00, 0x1E, 0x35, 0x00, 0x00, 0x1E, 0x35, + 0x00, 0x00, 0x02, 0xDD, 0x00, 0x00, 0x1E, 0x36, 0x00, 0x00, 0x1E, 0x36, + 0x00, 0x00, 0x01, 0x1D, 0x00, 0x00, 0x1E, 0x37, 0x00, 0x00, 0x1E, 0x37, + 0x00, 0x00, 0x02, 0xEB, 0x00, 0x00, 0x1E, 0x38, 0x00, 0x00, 0x1E, 0x38, + 0x00, 0x00, 0x01, 0x1E, 0x00, 0x00, 0x1E, 0x39, 0x00, 0x00, 0x1E, 0x39, + 0x00, 0x00, 0x02, 0xEC, 0x00, 0x00, 0x1E, 0x3A, 0x00, 0x00, 0x1E, 0x3A, + 0x00, 0x00, 0x01, 0x1F, 0x00, 0x00, 0x1E, 0x3B, 0x00, 0x00, 0x1E, 0x3B, + 0x00, 0x00, 0x02, 0xED, 0x00, 0x00, 0x1E, 0x3C, 0x00, 0x00, 0x1E, 0x3C, + 0x00, 0x00, 0x01, 0x20, 0x00, 0x00, 0x1E, 0x3D, 0x00, 0x00, 0x1E, 0x3D, + 0x00, 0x00, 0x02, 0xEE, 0x00, 0x00, 0x1E, 0x3E, 0x00, 0x00, 0x1E, 0x3E, + 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x1E, 0x3F, 0x00, 0x00, 0x1E, 0x3F, + 0x00, 0x00, 0x03, 0x02, 0x00, 0x00, 0x1E, 0x40, 0x00, 0x00, 0x1E, 0x40, + 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x1E, 0x41, 0x00, 0x00, 0x1E, 0x41, + 0x00, 0x00, 0x03, 0x03, 0x00, 0x00, 0x1E, 0x42, 0x00, 0x00, 0x1E, 0x42, + 0x00, 0x00, 0x01, 0x27, 0x00, 0x00, 0x1E, 0x43, 0x00, 0x00, 0x1E, 0x43, + 0x00, 0x00, 0x03, 0x04, 0x00, 0x00, 0x1E, 0x44, 0x00, 0x00, 0x1E, 0x44, + 0x00, 0x00, 0x01, 0x32, 0x00, 0x00, 0x1E, 0x45, 0x00, 0x00, 0x1E, 0x45, + 0x00, 0x00, 0x03, 0x10, 0x00, 0x00, 0x1E, 0x46, 0x00, 0x00, 0x1E, 0x46, + 0x00, 0x00, 0x01, 0x33, 0x00, 0x00, 0x1E, 0x47, 0x00, 0x00, 0x1E, 0x47, + 0x00, 0x00, 0x03, 0x11, 0x00, 0x00, 0x1E, 0x48, 0x00, 0x00, 0x1E, 0x48, + 0x00, 0x00, 0x01, 0x34, 0x00, 0x00, 0x1E, 0x49, 0x00, 0x00, 0x1E, 0x49, + 0x00, 0x00, 0x03, 0x12, 0x00, 0x00, 0x1E, 0x4A, 0x00, 0x00, 0x1E, 0x4A, + 0x00, 0x00, 0x01, 0x35, 0x00, 0x00, 0x1E, 0x4B, 0x00, 0x00, 0x1E, 0x4B, + 0x00, 0x00, 0x03, 0x13, 0x00, 0x00, 0x1E, 0x4C, 0x00, 0x00, 0x1E, 0x4C, + 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x1E, 0x4D, 0x00, 0x00, 0x1E, 0x4D, + 0x00, 0x00, 0x03, 0x2A, 0x00, 0x00, 0x1E, 0x4E, 0x00, 0x00, 0x1E, 0x4E, + 0x00, 0x00, 0x01, 0x56, 0x00, 0x00, 0x1E, 0x4F, 0x00, 0x00, 0x1E, 0x4F, + 0x00, 0x00, 0x03, 0x2B, 0x00, 0x00, 0x1E, 0x50, 0x00, 0x00, 0x1E, 0x50, + 0x00, 0x00, 0x01, 0x57, 0x00, 0x00, 0x1E, 0x51, 0x00, 0x00, 0x1E, 0x51, + 0x00, 0x00, 0x03, 0x2C, 0x00, 0x00, 0x1E, 0x52, 0x00, 0x00, 0x1E, 0x52, + 0x00, 0x00, 0x01, 0x58, 0x00, 0x00, 0x1E, 0x53, 0x00, 0x00, 0x1E, 0x53, + 0x00, 0x00, 0x03, 0x2D, 0x00, 0x00, 0x1E, 0x54, 0x00, 0x00, 0x1E, 0x54, + 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x1E, 0x55, 0x00, 0x00, 0x1E, 0x55, + 0x00, 0x00, 0x03, 0x4E, 0x00, 0x00, 0x1E, 0x56, 0x00, 0x00, 0x1E, 0x56, + 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x1E, 0x57, 0x00, 0x00, 0x1E, 0x57, + 0x00, 0x00, 0x03, 0x4F, 0x00, 0x00, 0x1E, 0x58, 0x00, 0x00, 0x1E, 0x58, + 0x00, 0x00, 0x01, 0x86, 0x00, 0x00, 0x1E, 0x59, 0x00, 0x00, 0x1E, 0x59, + 0x00, 0x00, 0x03, 0x61, 0x00, 0x00, 0x1E, 0x5A, 0x00, 0x00, 0x1E, 0x5A, + 0x00, 0x00, 0x01, 0x87, 0x00, 0x00, 0x1E, 0x5B, 0x00, 0x00, 0x1E, 0x5B, + 0x00, 0x00, 0x03, 0x62, 0x00, 0x00, 0x1E, 0x5C, 0x00, 0x00, 0x1E, 0x5C, + 0x00, 0x00, 0x01, 0x88, 0x00, 0x00, 0x1E, 0x5D, 0x00, 0x00, 0x1E, 0x5D, + 0x00, 0x00, 0x03, 0x63, 0x00, 0x00, 0x1E, 0x5E, 0x00, 0x00, 0x1E, 0x5E, + 0x00, 0x00, 0x01, 0x89, 0x00, 0x00, 0x1E, 0x5F, 0x00, 0x00, 0x1E, 0x5F, + 0x00, 0x00, 0x03, 0x64, 0x00, 0x00, 0x1E, 0x60, 0x00, 0x00, 0x1E, 0x60, + 0x00, 0x00, 0x01, 0x93, 0x00, 0x00, 0x1E, 0x61, 0x00, 0x00, 0x1E, 0x61, + 0x00, 0x00, 0x03, 0x6F, 0x00, 0x00, 0x1E, 0x62, 0x00, 0x00, 0x1E, 0x62, + 0x00, 0x00, 0x01, 0x94, 0x00, 0x00, 0x1E, 0x63, 0x00, 0x00, 0x1E, 0x63, + 0x00, 0x00, 0x03, 0x70, 0x00, 0x00, 0x1E, 0x64, 0x00, 0x00, 0x1E, 0x64, + 0x00, 0x00, 0x01, 0x95, 0x00, 0x00, 0x1E, 0x65, 0x00, 0x00, 0x1E, 0x65, + 0x00, 0x00, 0x03, 0x71, 0x00, 0x00, 0x1E, 0x66, 0x00, 0x00, 0x1E, 0x66, + 0x00, 0x00, 0x01, 0x96, 0x00, 0x00, 0x1E, 0x67, 0x00, 0x00, 0x1E, 0x67, + 0x00, 0x00, 0x03, 0x72, 0x00, 0x00, 0x1E, 0x68, 0x00, 0x00, 0x1E, 0x68, + 0x00, 0x00, 0x01, 0x97, 0x00, 0x00, 0x1E, 0x69, 0x00, 0x00, 0x1E, 0x69, + 0x00, 0x00, 0x03, 0x73, 0x00, 0x00, 0x1E, 0x6A, 0x00, 0x00, 0x1E, 0x6A, + 0x00, 0x00, 0x01, 0x9F, 0x00, 0x00, 0x1E, 0x6B, 0x00, 0x00, 0x1E, 0x6B, + 0x00, 0x00, 0x03, 0x82, 0x00, 0x00, 0x1E, 0x6C, 0x00, 0x00, 0x1E, 0x6C, + 0x00, 0x00, 0x01, 0xA0, 0x00, 0x00, 0x1E, 0x6D, 0x00, 0x00, 0x1E, 0x6D, + 0x00, 0x00, 0x03, 0x83, 0x00, 0x00, 0x1E, 0x6E, 0x00, 0x00, 0x1E, 0x6E, + 0x00, 0x00, 0x01, 0xA1, 0x00, 0x00, 0x1E, 0x6F, 0x00, 0x00, 0x1E, 0x6F, + 0x00, 0x00, 0x03, 0x84, 0x00, 0x00, 0x1E, 0x70, 0x00, 0x00, 0x1E, 0x70, + 0x00, 0x00, 0x01, 0xA2, 0x00, 0x00, 0x1E, 0x71, 0x00, 0x00, 0x1E, 0x71, + 0x00, 0x00, 0x03, 0x85, 0x00, 0x00, 0x1E, 0x72, 0x00, 0x00, 0x1E, 0x72, + 0x00, 0x00, 0x01, 0xBB, 0x00, 0x00, 0x1E, 0x73, 0x00, 0x00, 0x1E, 0x73, + 0x00, 0x00, 0x03, 0xA6, 0x00, 0x00, 0x1E, 0x74, 0x00, 0x00, 0x1E, 0x74, + 0x00, 0x00, 0x01, 0xBC, 0x00, 0x00, 0x1E, 0x75, 0x00, 0x00, 0x1E, 0x75, + 0x00, 0x00, 0x03, 0xA7, 0x00, 0x00, 0x1E, 0x76, 0x00, 0x00, 0x1E, 0x76, + 0x00, 0x00, 0x01, 0xBD, 0x00, 0x00, 0x1E, 0x77, 0x00, 0x00, 0x1E, 0x77, + 0x00, 0x00, 0x03, 0xA8, 0x00, 0x00, 0x1E, 0x78, 0x00, 0x00, 0x1E, 0x78, + 0x00, 0x00, 0x01, 0xBE, 0x00, 0x00, 0x1E, 0x79, 0x00, 0x00, 0x1E, 0x79, + 0x00, 0x00, 0x03, 0xA9, 0x00, 0x00, 0x1E, 0x7A, 0x00, 0x00, 0x1E, 0x7A, + 0x00, 0x00, 0x01, 0xBF, 0x00, 0x00, 0x1E, 0x7B, 0x00, 0x00, 0x1E, 0x7B, + 0x00, 0x00, 0x03, 0xAA, 0x00, 0x00, 0x1E, 0x7C, 0x00, 0x00, 0x1E, 0x7C, + 0x00, 0x00, 0x01, 0xC9, 0x00, 0x00, 0x1E, 0x7D, 0x00, 0x00, 0x1E, 0x7D, + 0x00, 0x00, 0x03, 0xD4, 0x00, 0x00, 0x1E, 0x7E, 0x00, 0x00, 0x1E, 0x7E, + 0x00, 0x00, 0x01, 0xCA, 0x00, 0x00, 0x1E, 0x7F, 0x00, 0x00, 0x1E, 0x7F, + 0x00, 0x00, 0x03, 0xD5, 0x00, 0x00, 0x1E, 0x80, 0x00, 0x00, 0x1E, 0x80, + 0x00, 0x00, 0x01, 0xCD, 0x00, 0x00, 0x1E, 0x81, 0x00, 0x00, 0x1E, 0x81, + 0x00, 0x00, 0x03, 0xDA, 0x00, 0x00, 0x1E, 0x82, 0x00, 0x00, 0x1E, 0x82, + 0x00, 0x00, 0x01, 0xCE, 0x00, 0x00, 0x1E, 0x83, 0x00, 0x00, 0x1E, 0x83, + 0x00, 0x00, 0x03, 0xDB, 0x00, 0x00, 0x1E, 0x84, 0x00, 0x00, 0x1E, 0x84, + 0x00, 0x00, 0x01, 0xCF, 0x00, 0x00, 0x1E, 0x85, 0x00, 0x00, 0x1E, 0x85, + 0x00, 0x00, 0x03, 0xD7, 0x00, 0x00, 0x1E, 0x86, 0x00, 0x00, 0x1E, 0x86, + 0x00, 0x00, 0x01, 0xD0, 0x00, 0x00, 0x1E, 0x87, 0x00, 0x00, 0x1E, 0x87, + 0x00, 0x00, 0x03, 0xDC, 0x00, 0x00, 0x1E, 0x88, 0x00, 0x00, 0x1E, 0x88, + 0x00, 0x00, 0x01, 0xD1, 0x00, 0x00, 0x1E, 0x89, 0x00, 0x00, 0x1E, 0x89, + 0x00, 0x00, 0x03, 0xDD, 0x00, 0x00, 0x1E, 0x8A, 0x00, 0x00, 0x1E, 0x8A, + 0x00, 0x00, 0x01, 0xD3, 0x00, 0x00, 0x1E, 0x8B, 0x00, 0x00, 0x1E, 0x8B, + 0x00, 0x00, 0x03, 0xE0, 0x00, 0x00, 0x1E, 0x8C, 0x00, 0x00, 0x1E, 0x8C, + 0x00, 0x00, 0x01, 0xD4, 0x00, 0x00, 0x1E, 0x8D, 0x00, 0x00, 0x1E, 0x8D, + 0x00, 0x00, 0x03, 0xE1, 0x00, 0x00, 0x1E, 0x8E, 0x00, 0x00, 0x1E, 0x8E, + 0x00, 0x00, 0x01, 0xDE, 0x00, 0x00, 0x1E, 0x8F, 0x00, 0x00, 0x1E, 0x8F, + 0x00, 0x00, 0x03, 0xEB, 0x00, 0x00, 0x1E, 0x90, 0x00, 0x00, 0x1E, 0x90, + 0x00, 0x00, 0x01, 0xF4, 0x00, 0x00, 0x1E, 0x91, 0x00, 0x00, 0x1E, 0x91, + 0x00, 0x00, 0x04, 0x04, 0x00, 0x00, 0x1E, 0x92, 0x00, 0x00, 0x1E, 0x92, + 0x00, 0x00, 0x01, 0xF5, 0x00, 0x00, 0x1E, 0x93, 0x00, 0x00, 0x1E, 0x93, + 0x00, 0x00, 0x04, 0x05, 0x00, 0x00, 0x1E, 0x94, 0x00, 0x00, 0x1E, 0x94, + 0x00, 0x00, 0x01, 0xF6, 0x00, 0x00, 0x1E, 0x95, 0x00, 0x00, 0x1E, 0x95, + 0x00, 0x00, 0x04, 0x06, 0x00, 0x00, 0x1E, 0x96, 0x00, 0x00, 0x1E, 0x96, + 0x00, 0x00, 0x02, 0xAF, 0x00, 0x00, 0x1E, 0x97, 0x00, 0x00, 0x1E, 0x97, + 0x00, 0x00, 0x03, 0x86, 0x00, 0x00, 0x1E, 0x98, 0x00, 0x00, 0x1E, 0x98, + 0x00, 0x00, 0x03, 0xDE, 0x00, 0x00, 0x1E, 0x99, 0x00, 0x00, 0x1E, 0x99, + 0x00, 0x00, 0x03, 0xEC, 0x00, 0x00, 0x1E, 0x9A, 0x00, 0x00, 0x1E, 0x9A, + 0x00, 0x00, 0x02, 0x15, 0x00, 0x00, 0x1E, 0x9B, 0x00, 0x00, 0x1E, 0x9B, + 0x00, 0x00, 0x02, 0x8F, 0x00, 0x00, 0x1E, 0x9D, 0x00, 0x00, 0x1E, 0x9D, + 0x00, 0x00, 0x09, 0x64, 0x00, 0x00, 0x1E, 0x9E, 0x00, 0x00, 0x1E, 0x9E, + 0x00, 0x00, 0x01, 0x9A, 0x00, 0x00, 0x1E, 0x9F, 0x00, 0x00, 0x1E, 0x9F, + 0x00, 0x00, 0x09, 0x65, 0x00, 0x00, 0x1E, 0xA0, 0x00, 0x00, 0x1E, 0xA0, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x1E, 0xA1, 0x00, 0x00, 0x1E, 0xA1, + 0x00, 0x00, 0x02, 0x0E, 0x00, 0x00, 0x1E, 0xA2, 0x00, 0x00, 0x1E, 0xA2, + 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x1E, 0xA3, 0x00, 0x00, 0x1E, 0xA3, + 0x00, 0x00, 0x02, 0x11, 0x00, 0x00, 0x1E, 0xA4, 0x00, 0x00, 0x1E, 0xA4, + 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x1E, 0xA5, 0x00, 0x00, 0x1E, 0xA5, + 0x00, 0x00, 0x02, 0x05, 0x00, 0x00, 0x1E, 0xA6, 0x00, 0x00, 0x1E, 0xA6, + 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x1E, 0xA7, 0x00, 0x00, 0x1E, 0xA7, + 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, 0x1E, 0xA8, 0x00, 0x00, 0x1E, 0xA8, + 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x1E, 0xA9, 0x00, 0x00, 0x1E, 0xA9, + 0x00, 0x00, 0x02, 0x08, 0x00, 0x00, 0x1E, 0xAA, 0x00, 0x00, 0x1E, 0xAA, + 0x00, 0x00, 0x00, 0x1A, 0x00, 0x00, 0x1E, 0xAB, 0x00, 0x00, 0x1E, 0xAB, + 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x1E, 0xAC, 0x00, 0x00, 0x1E, 0xAC, + 0x00, 0x00, 0x00, 0x1B, 0x00, 0x00, 0x1E, 0xAD, 0x00, 0x00, 0x1E, 0xAD, + 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x1E, 0xAE, 0x00, 0x00, 0x1E, 0xAE, + 0x00, 0x00, 0x00, 0x1C, 0x00, 0x00, 0x1E, 0xAF, 0x00, 0x00, 0x1E, 0xAF, + 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, 0x1E, 0xB0, 0x00, 0x00, 0x1E, 0xB0, + 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, 0x1E, 0xB1, 0x00, 0x00, 0x1E, 0xB1, + 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x1E, 0xB2, 0x00, 0x00, 0x1E, 0xB2, + 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x1E, 0xB3, 0x00, 0x00, 0x1E, 0xB3, + 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x1E, 0xB4, 0x00, 0x00, 0x1E, 0xB4, + 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x1E, 0xB5, 0x00, 0x00, 0x1E, 0xB5, + 0x00, 0x00, 0x02, 0x02, 0x00, 0x00, 0x1E, 0xB6, 0x00, 0x00, 0x1E, 0xB6, + 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x1E, 0xB7, 0x00, 0x00, 0x1E, 0xB7, + 0x00, 0x00, 0x01, 0xFF, 0x00, 0x00, 0x1E, 0xB8, 0x00, 0x00, 0x1E, 0xB8, + 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x1E, 0xB9, 0x00, 0x00, 0x1E, 0xB9, + 0x00, 0x00, 0x02, 0x79, 0x00, 0x00, 0x1E, 0xBA, 0x00, 0x00, 0x1E, 0xBA, + 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x1E, 0xBB, 0x00, 0x00, 0x1E, 0xBB, + 0x00, 0x00, 0x02, 0x7A, 0x00, 0x00, 0x1E, 0xBC, 0x00, 0x00, 0x1E, 0xBC, + 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x1E, 0xBD, 0x00, 0x00, 0x1E, 0xBD, + 0x00, 0x00, 0x02, 0x7B, 0x00, 0x00, 0x1E, 0xBE, 0x00, 0x00, 0x1E, 0xBE, + 0x00, 0x00, 0x00, 0x74, 0x00, 0x00, 0x1E, 0xBF, 0x00, 0x00, 0x1E, 0xBF, + 0x00, 0x00, 0x02, 0x7C, 0x00, 0x00, 0x1E, 0xC0, 0x00, 0x00, 0x1E, 0xC0, + 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x1E, 0xC1, 0x00, 0x00, 0x1E, 0xC1, + 0x00, 0x00, 0x02, 0x7D, 0x00, 0x00, 0x1E, 0xC2, 0x00, 0x00, 0x1E, 0xC2, + 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x1E, 0xC3, 0x00, 0x00, 0x1E, 0xC3, + 0x00, 0x00, 0x02, 0x7E, 0x00, 0x00, 0x1E, 0xC4, 0x00, 0x00, 0x1E, 0xC4, + 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x1E, 0xC5, 0x00, 0x00, 0x1E, 0xC5, + 0x00, 0x00, 0x02, 0x7F, 0x00, 0x00, 0x1E, 0xC6, 0x00, 0x00, 0x1E, 0xC6, + 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x1E, 0xC7, 0x00, 0x00, 0x1E, 0xC7, + 0x00, 0x00, 0x02, 0x80, 0x00, 0x00, 0x1E, 0xC8, 0x00, 0x00, 0x1E, 0xC8, + 0x00, 0x00, 0x00, 0xD6, 0x00, 0x00, 0x1E, 0xC9, 0x00, 0x00, 0x1E, 0xC9, + 0x00, 0x00, 0x02, 0xC4, 0x00, 0x00, 0x1E, 0xCA, 0x00, 0x00, 0x1E, 0xCA, + 0x00, 0x00, 0x00, 0xD7, 0x00, 0x00, 0x1E, 0xCB, 0x00, 0x00, 0x1E, 0xCB, + 0x00, 0x00, 0x02, 0xC5, 0x00, 0x00, 0x1E, 0xCC, 0x00, 0x00, 0x1E, 0xCC, + 0x00, 0x00, 0x01, 0x59, 0x00, 0x00, 0x1E, 0xCD, 0x00, 0x00, 0x1E, 0xCD, + 0x00, 0x00, 0x03, 0x2E, 0x00, 0x00, 0x1E, 0xCE, 0x00, 0x00, 0x1E, 0xCE, + 0x00, 0x00, 0x01, 0x5A, 0x00, 0x00, 0x1E, 0xCF, 0x00, 0x00, 0x1E, 0xCF, + 0x00, 0x00, 0x03, 0x2F, 0x00, 0x00, 0x1E, 0xD0, 0x00, 0x00, 0x1E, 0xD0, + 0x00, 0x00, 0x01, 0x5B, 0x00, 0x00, 0x1E, 0xD1, 0x00, 0x00, 0x1E, 0xD1, + 0x00, 0x00, 0x03, 0x30, 0x00, 0x00, 0x1E, 0xD2, 0x00, 0x00, 0x1E, 0xD2, + 0x00, 0x00, 0x01, 0x5C, 0x00, 0x00, 0x1E, 0xD3, 0x00, 0x00, 0x1E, 0xD3, + 0x00, 0x00, 0x03, 0x31, 0x00, 0x00, 0x1E, 0xD4, 0x00, 0x00, 0x1E, 0xD4, + 0x00, 0x00, 0x01, 0x5D, 0x00, 0x00, 0x1E, 0xD5, 0x00, 0x00, 0x1E, 0xD5, + 0x00, 0x00, 0x03, 0x32, 0x00, 0x00, 0x1E, 0xD6, 0x00, 0x00, 0x1E, 0xD6, + 0x00, 0x00, 0x01, 0x5E, 0x00, 0x00, 0x1E, 0xD7, 0x00, 0x00, 0x1E, 0xD7, + 0x00, 0x00, 0x03, 0x33, 0x00, 0x00, 0x1E, 0xD8, 0x00, 0x00, 0x1E, 0xD8, + 0x00, 0x00, 0x01, 0x5F, 0x00, 0x00, 0x1E, 0xD9, 0x00, 0x00, 0x1E, 0xD9, + 0x00, 0x00, 0x03, 0x34, 0x00, 0x00, 0x1E, 0xDA, 0x00, 0x00, 0x1E, 0xDA, + 0x00, 0x00, 0x01, 0x60, 0x00, 0x00, 0x1E, 0xDB, 0x00, 0x00, 0x1E, 0xDB, + 0x00, 0x00, 0x03, 0x35, 0x00, 0x00, 0x1E, 0xDC, 0x00, 0x00, 0x1E, 0xDC, + 0x00, 0x00, 0x01, 0x61, 0x00, 0x00, 0x1E, 0xDD, 0x00, 0x00, 0x1E, 0xDD, + 0x00, 0x00, 0x03, 0x36, 0x00, 0x00, 0x1E, 0xDE, 0x00, 0x00, 0x1E, 0xDE, + 0x00, 0x00, 0x01, 0x62, 0x00, 0x00, 0x1E, 0xDF, 0x00, 0x00, 0x1E, 0xDF, + 0x00, 0x00, 0x03, 0x37, 0x00, 0x00, 0x1E, 0xE0, 0x00, 0x00, 0x1E, 0xE0, + 0x00, 0x00, 0x01, 0x63, 0x00, 0x00, 0x1E, 0xE1, 0x00, 0x00, 0x1E, 0xE1, + 0x00, 0x00, 0x03, 0x38, 0x00, 0x00, 0x1E, 0xE2, 0x00, 0x00, 0x1E, 0xE2, + 0x00, 0x00, 0x01, 0x64, 0x00, 0x00, 0x1E, 0xE3, 0x00, 0x00, 0x1E, 0xE3, + 0x00, 0x00, 0x03, 0x39, 0x00, 0x00, 0x1E, 0xE4, 0x00, 0x00, 0x1E, 0xE4, + 0x00, 0x00, 0x01, 0xC0, 0x00, 0x00, 0x1E, 0xE5, 0x00, 0x00, 0x1E, 0xE5, + 0x00, 0x00, 0x03, 0xAB, 0x00, 0x00, 0x1E, 0xE6, 0x00, 0x00, 0x1E, 0xE6, + 0x00, 0x00, 0x01, 0xC1, 0x00, 0x00, 0x1E, 0xE7, 0x00, 0x00, 0x1E, 0xE7, + 0x00, 0x00, 0x03, 0xAC, 0x00, 0x00, 0x1E, 0xE8, 0x00, 0x00, 0x1E, 0xE8, + 0x00, 0x00, 0x01, 0xC2, 0x00, 0x00, 0x1E, 0xE9, 0x00, 0x00, 0x1E, 0xE9, + 0x00, 0x00, 0x03, 0xAD, 0x00, 0x00, 0x1E, 0xEA, 0x00, 0x00, 0x1E, 0xEA, + 0x00, 0x00, 0x01, 0xC3, 0x00, 0x00, 0x1E, 0xEB, 0x00, 0x00, 0x1E, 0xEB, + 0x00, 0x00, 0x03, 0xAE, 0x00, 0x00, 0x1E, 0xEC, 0x00, 0x00, 0x1E, 0xEC, + 0x00, 0x00, 0x01, 0xC4, 0x00, 0x00, 0x1E, 0xED, 0x00, 0x00, 0x1E, 0xED, + 0x00, 0x00, 0x03, 0xAF, 0x00, 0x00, 0x1E, 0xEE, 0x00, 0x00, 0x1E, 0xEE, + 0x00, 0x00, 0x01, 0xC5, 0x00, 0x00, 0x1E, 0xEF, 0x00, 0x00, 0x1E, 0xEF, + 0x00, 0x00, 0x03, 0xB0, 0x00, 0x00, 0x1E, 0xF0, 0x00, 0x00, 0x1E, 0xF0, + 0x00, 0x00, 0x01, 0xC6, 0x00, 0x00, 0x1E, 0xF1, 0x00, 0x00, 0x1E, 0xF1, + 0x00, 0x00, 0x03, 0xB1, 0x00, 0x00, 0x1E, 0xF2, 0x00, 0x00, 0x1E, 0xF2, + 0x00, 0x00, 0x01, 0xDF, 0x00, 0x00, 0x1E, 0xF3, 0x00, 0x00, 0x1E, 0xF3, + 0x00, 0x00, 0x03, 0xED, 0x00, 0x00, 0x1E, 0xF4, 0x00, 0x00, 0x1E, 0xF4, + 0x00, 0x00, 0x01, 0xE0, 0x00, 0x00, 0x1E, 0xF5, 0x00, 0x00, 0x1E, 0xF5, + 0x00, 0x00, 0x03, 0xEE, 0x00, 0x00, 0x1E, 0xF6, 0x00, 0x00, 0x1E, 0xF6, + 0x00, 0x00, 0x01, 0xE1, 0x00, 0x00, 0x1E, 0xF7, 0x00, 0x00, 0x1E, 0xF7, + 0x00, 0x00, 0x03, 0xEF, 0x00, 0x00, 0x1E, 0xF8, 0x00, 0x00, 0x1E, 0xF8, + 0x00, 0x00, 0x01, 0xE2, 0x00, 0x00, 0x1E, 0xF9, 0x00, 0x00, 0x1E, 0xF9, + 0x00, 0x00, 0x03, 0xF0, 0x00, 0x00, 0x1E, 0xFA, 0x00, 0x00, 0x1E, 0xFA, + 0x00, 0x00, 0x09, 0x31, 0x00, 0x00, 0x1E, 0xFB, 0x00, 0x00, 0x1E, 0xFB, + 0x00, 0x00, 0x09, 0x66, 0x00, 0x00, 0x1E, 0xFC, 0x00, 0x00, 0x1E, 0xFC, + 0x00, 0x00, 0x09, 0x32, 0x00, 0x00, 0x1E, 0xFD, 0x00, 0x00, 0x1E, 0xFD, + 0x00, 0x00, 0x09, 0x67, 0x00, 0x00, 0x1E, 0xFE, 0x00, 0x00, 0x1E, 0xFE, + 0x00, 0x00, 0x09, 0x33, 0x00, 0x00, 0x1E, 0xFF, 0x00, 0x00, 0x1E, 0xFF, + 0x00, 0x00, 0x09, 0x68, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x1F, 0x07, + 0x00, 0x00, 0x04, 0x56, 0x00, 0x00, 0x1F, 0x08, 0x00, 0x00, 0x1F, 0x0F, + 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x1F, 0x10, 0x00, 0x00, 0x1F, 0x15, + 0x00, 0x00, 0x04, 0x78, 0x00, 0x00, 0x1F, 0x18, 0x00, 0x00, 0x1F, 0x1D, + 0x00, 0x00, 0x00, 0x7D, 0x00, 0x00, 0x1F, 0x20, 0x00, 0x00, 0x1F, 0x27, + 0x00, 0x00, 0x04, 0x82, 0x00, 0x00, 0x1F, 0x28, 0x00, 0x00, 0x1F, 0x2F, + 0x00, 0x00, 0x00, 0xB1, 0x00, 0x00, 0x1F, 0x30, 0x00, 0x00, 0x1F, 0x37, + 0x00, 0x00, 0x04, 0x9D, 0x00, 0x00, 0x1F, 0x38, 0x00, 0x00, 0x1F, 0x3F, + 0x00, 0x00, 0x00, 0xDC, 0x00, 0x00, 0x1F, 0x40, 0x00, 0x00, 0x1F, 0x45, + 0x00, 0x00, 0x03, 0x3D, 0x00, 0x00, 0x1F, 0x48, 0x00, 0x00, 0x1F, 0x4D, + 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x1F, 0x50, 0x00, 0x00, 0x1F, 0x57, + 0x00, 0x00, 0x04, 0xB9, 0x00, 0x00, 0x1F, 0x59, 0x00, 0x00, 0x1F, 0x59, + 0x00, 0x00, 0x01, 0xE7, 0x00, 0x00, 0x1F, 0x5B, 0x00, 0x00, 0x1F, 0x5B, + 0x00, 0x00, 0x01, 0xE8, 0x00, 0x00, 0x1F, 0x5D, 0x00, 0x00, 0x1F, 0x5D, + 0x00, 0x00, 0x01, 0xE9, 0x00, 0x00, 0x1F, 0x5F, 0x00, 0x00, 0x1F, 0x5F, + 0x00, 0x00, 0x01, 0xEA, 0x00, 0x00, 0x1F, 0x60, 0x00, 0x00, 0x1F, 0x67, + 0x00, 0x00, 0x04, 0xCC, 0x00, 0x00, 0x1F, 0x68, 0x00, 0x00, 0x1F, 0x6F, + 0x00, 0x00, 0x04, 0x13, 0x00, 0x00, 0x1F, 0x70, 0x00, 0x00, 0x1F, 0x70, + 0x00, 0x00, 0x04, 0x5E, 0x00, 0x00, 0x1F, 0x71, 0x00, 0x00, 0x1F, 0x71, + 0x00, 0x00, 0x09, 0xDB, 0x00, 0x00, 0x1F, 0x72, 0x00, 0x00, 0x1F, 0x72, + 0x00, 0x00, 0x04, 0x7E, 0x00, 0x00, 0x1F, 0x73, 0x00, 0x00, 0x1F, 0x73, + 0x00, 0x00, 0x09, 0xDC, 0x00, 0x00, 0x1F, 0x74, 0x00, 0x00, 0x1F, 0x74, + 0x00, 0x00, 0x04, 0x8A, 0x00, 0x00, 0x1F, 0x75, 0x00, 0x00, 0x1F, 0x75, + 0x00, 0x00, 0x09, 0xDD, 0x00, 0x00, 0x1F, 0x76, 0x00, 0x00, 0x1F, 0x76, + 0x00, 0x00, 0x04, 0xA5, 0x00, 0x00, 0x1F, 0x77, 0x00, 0x00, 0x1F, 0x77, + 0x00, 0x00, 0x09, 0xDE, 0x00, 0x00, 0x1F, 0x78, 0x00, 0x00, 0x1F, 0x78, + 0x00, 0x00, 0x03, 0x43, 0x00, 0x00, 0x1F, 0x79, 0x00, 0x00, 0x1F, 0x79, + 0x00, 0x00, 0x09, 0xE0, 0x00, 0x00, 0x1F, 0x7A, 0x00, 0x00, 0x1F, 0x7A, + 0x00, 0x00, 0x04, 0xC1, 0x00, 0x00, 0x1F, 0x7B, 0x00, 0x00, 0x1F, 0x7B, + 0x00, 0x00, 0x09, 0xE1, 0x00, 0x00, 0x1F, 0x7C, 0x00, 0x00, 0x1F, 0x7C, + 0x00, 0x00, 0x04, 0xD4, 0x00, 0x00, 0x1F, 0x7D, 0x00, 0x00, 0x1F, 0x7D, + 0x00, 0x00, 0x09, 0xE3, 0x00, 0x00, 0x1F, 0x80, 0x00, 0x00, 0x1F, 0x87, + 0x00, 0x00, 0x04, 0x5F, 0x00, 0x00, 0x1F, 0x88, 0x00, 0x00, 0x1F, 0x8F, + 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x1F, 0x90, 0x00, 0x00, 0x1F, 0x97, + 0x00, 0x00, 0x04, 0x8B, 0x00, 0x00, 0x1F, 0x98, 0x00, 0x00, 0x1F, 0x9F, + 0x00, 0x00, 0x00, 0xBC, 0x00, 0x00, 0x1F, 0xA0, 0x00, 0x00, 0x1F, 0xA7, + 0x00, 0x00, 0x04, 0xD5, 0x00, 0x00, 0x1F, 0xA8, 0x00, 0x00, 0x1F, 0xAF, + 0x00, 0x00, 0x04, 0x1C, 0x00, 0x00, 0x1F, 0xB0, 0x00, 0x00, 0x1F, 0xB4, + 0x00, 0x00, 0x04, 0x67, 0x00, 0x00, 0x1F, 0xB6, 0x00, 0x00, 0x1F, 0xB7, + 0x00, 0x00, 0x04, 0x6C, 0x00, 0x00, 0x1F, 0xB8, 0x00, 0x00, 0x1F, 0xBA, + 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x1F, 0xBB, 0x00, 0x00, 0x1F, 0xBB, + 0x00, 0x00, 0x00, 0x2F, 0x00, 0x00, 0x1F, 0xBC, 0x00, 0x00, 0x1F, 0xBC, + 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x1F, 0xBD, 0x00, 0x00, 0x1F, 0xBD, + 0x00, 0x00, 0x0A, 0x7D, 0x00, 0x00, 0x1F, 0xBE, 0x00, 0x00, 0x1F, 0xBE, + 0x00, 0x00, 0x09, 0xE4, 0x00, 0x00, 0x1F, 0xBF, 0x00, 0x00, 0x1F, 0xBF, + 0x00, 0x00, 0x0A, 0x7C, 0x00, 0x00, 0x1F, 0xC0, 0x00, 0x00, 0x1F, 0xC0, + 0x00, 0x00, 0x0A, 0x8A, 0x00, 0x00, 0x1F, 0xC1, 0x00, 0x00, 0x1F, 0xC1, + 0x00, 0x00, 0x0A, 0x87, 0x00, 0x00, 0x1F, 0xC2, 0x00, 0x00, 0x1F, 0xC4, + 0x00, 0x00, 0x04, 0x93, 0x00, 0x00, 0x1F, 0xC6, 0x00, 0x00, 0x1F, 0xC7, + 0x00, 0x00, 0x04, 0x96, 0x00, 0x00, 0x1F, 0xC8, 0x00, 0x00, 0x1F, 0xC9, + 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x1F, 0xCA, 0x00, 0x00, 0x1F, 0xCB, + 0x00, 0x00, 0x00, 0xB9, 0x00, 0x00, 0x1F, 0xCC, 0x00, 0x00, 0x1F, 0xCC, + 0x00, 0x00, 0x00, 0xC4, 0x00, 0x00, 0x1F, 0xCD, 0x00, 0x00, 0x1F, 0xCD, + 0x00, 0x00, 0x0A, 0x7F, 0x00, 0x00, 0x1F, 0xCE, 0x00, 0x00, 0x1F, 0xCE, + 0x00, 0x00, 0x0A, 0x81, 0x00, 0x00, 0x1F, 0xCF, 0x00, 0x00, 0x1F, 0xCF, + 0x00, 0x00, 0x0A, 0x83, 0x00, 0x00, 0x1F, 0xD0, 0x00, 0x00, 0x1F, 0xD2, + 0x00, 0x00, 0x04, 0xA6, 0x00, 0x00, 0x1F, 0xD3, 0x00, 0x00, 0x1F, 0xD3, + 0x00, 0x00, 0x09, 0xDF, 0x00, 0x00, 0x1F, 0xD6, 0x00, 0x00, 0x1F, 0xD7, + 0x00, 0x00, 0x04, 0xA9, 0x00, 0x00, 0x1F, 0xD8, 0x00, 0x00, 0x1F, 0xDB, + 0x00, 0x00, 0x00, 0xE4, 0x00, 0x00, 0x1F, 0xDD, 0x00, 0x00, 0x1F, 0xDD, + 0x00, 0x00, 0x0A, 0x80, 0x00, 0x00, 0x1F, 0xDE, 0x00, 0x00, 0x1F, 0xDE, + 0x00, 0x00, 0x0A, 0x82, 0x00, 0x00, 0x1F, 0xDF, 0x00, 0x00, 0x1F, 0xDF, + 0x00, 0x00, 0x0A, 0x84, 0x00, 0x00, 0x1F, 0xE0, 0x00, 0x00, 0x1F, 0xE2, + 0x00, 0x00, 0x04, 0xC2, 0x00, 0x00, 0x1F, 0xE3, 0x00, 0x00, 0x1F, 0xE3, + 0x00, 0x00, 0x09, 0xE2, 0x00, 0x00, 0x1F, 0xE4, 0x00, 0x00, 0x1F, 0xE5, + 0x00, 0x00, 0x04, 0xAF, 0x00, 0x00, 0x1F, 0xE6, 0x00, 0x00, 0x1F, 0xE7, + 0x00, 0x00, 0x04, 0xC5, 0x00, 0x00, 0x1F, 0xE8, 0x00, 0x00, 0x1F, 0xEB, + 0x00, 0x00, 0x01, 0xEB, 0x00, 0x00, 0x1F, 0xEC, 0x00, 0x00, 0x1F, 0xEC, + 0x00, 0x00, 0x01, 0x7D, 0x00, 0x00, 0x1F, 0xED, 0x00, 0x00, 0x1F, 0xEE, + 0x00, 0x00, 0x0A, 0x85, 0x00, 0x00, 0x1F, 0xEF, 0x00, 0x00, 0x1F, 0xEF, + 0x00, 0x00, 0x0A, 0x88, 0x00, 0x00, 0x1F, 0xF2, 0x00, 0x00, 0x1F, 0xF4, + 0x00, 0x00, 0x04, 0xDD, 0x00, 0x00, 0x1F, 0xF6, 0x00, 0x00, 0x1F, 0xF7, + 0x00, 0x00, 0x04, 0xE0, 0x00, 0x00, 0x1F, 0xF8, 0x00, 0x00, 0x1F, 0xF8, + 0x00, 0x00, 0x01, 0x6E, 0x00, 0x00, 0x1F, 0xF9, 0x00, 0x00, 0x1F, 0xF9, + 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x1F, 0xFA, 0x00, 0x00, 0x1F, 0xFA, + 0x00, 0x00, 0x04, 0x1B, 0x00, 0x00, 0x1F, 0xFB, 0x00, 0x00, 0x1F, 0xFB, + 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x1F, 0xFC, 0x00, 0x00, 0x1F, 0xFC, + 0x00, 0x00, 0x04, 0x24, 0x00, 0x00, 0x1F, 0xFD, 0x00, 0x00, 0x1F, 0xFD, + 0x00, 0x00, 0x0A, 0x89, 0x00, 0x00, 0x1F, 0xFE, 0x00, 0x00, 0x1F, 0xFE, + 0x00, 0x00, 0x0A, 0x7E, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x0B, + 0x00, 0x00, 0x06, 0xF3, 0x00, 0x00, 0x20, 0x10, 0x00, 0x00, 0x20, 0x11, + 0x00, 0x00, 0x0A, 0x1E, 0x00, 0x00, 0x20, 0x12, 0x00, 0x00, 0x20, 0x12, + 0x00, 0x00, 0x05, 0xB3, 0x00, 0x00, 0x20, 0x13, 0x00, 0x00, 0x20, 0x13, + 0x00, 0x00, 0x05, 0xB2, 0x00, 0x00, 0x20, 0x14, 0x00, 0x00, 0x20, 0x15, + 0x00, 0x00, 0x05, 0xB4, 0x00, 0x00, 0x20, 0x16, 0x00, 0x00, 0x20, 0x16, + 0x00, 0x00, 0x0A, 0x1D, 0x00, 0x00, 0x20, 0x17, 0x00, 0x00, 0x20, 0x17, + 0x00, 0x00, 0x0A, 0x20, 0x00, 0x00, 0x20, 0x18, 0x00, 0x00, 0x20, 0x19, + 0x00, 0x00, 0x05, 0xC8, 0x00, 0x00, 0x20, 0x1A, 0x00, 0x00, 0x20, 0x1B, + 0x00, 0x00, 0x05, 0xCF, 0x00, 0x00, 0x20, 0x1C, 0x00, 0x00, 0x20, 0x1E, + 0x00, 0x00, 0x05, 0xCC, 0x00, 0x00, 0x20, 0x1F, 0x00, 0x00, 0x20, 0x1F, + 0x00, 0x00, 0x05, 0xD1, 0x00, 0x00, 0x20, 0x20, 0x00, 0x00, 0x20, 0x21, + 0x00, 0x00, 0x06, 0x06, 0x00, 0x00, 0x20, 0x22, 0x00, 0x00, 0x20, 0x22, + 0x00, 0x00, 0x05, 0xB6, 0x00, 0x00, 0x20, 0x23, 0x00, 0x00, 0x20, 0x23, + 0x00, 0x00, 0x05, 0xB9, 0x00, 0x00, 0x20, 0x24, 0x00, 0x00, 0x20, 0x24, + 0x00, 0x00, 0x0A, 0x12, 0x00, 0x00, 0x20, 0x25, 0x00, 0x00, 0x20, 0x25, + 0x00, 0x00, 0x05, 0xDE, 0x00, 0x00, 0x20, 0x26, 0x00, 0x00, 0x20, 0x26, + 0x00, 0x00, 0x05, 0xDD, 0x00, 0x00, 0x20, 0x27, 0x00, 0x00, 0x20, 0x27, + 0x00, 0x00, 0x0A, 0x11, 0x00, 0x00, 0x20, 0x2F, 0x00, 0x00, 0x20, 0x2F, + 0x00, 0x00, 0x06, 0xF1, 0x00, 0x00, 0x20, 0x30, 0x00, 0x00, 0x20, 0x31, + 0x00, 0x00, 0x06, 0xCF, 0x00, 0x00, 0x20, 0x32, 0x00, 0x00, 0x20, 0x34, + 0x00, 0x00, 0x05, 0xD2, 0x00, 0x00, 0x20, 0x35, 0x00, 0x00, 0x20, 0x37, + 0x00, 0x00, 0x05, 0xD6, 0x00, 0x00, 0x20, 0x38, 0x00, 0x00, 0x20, 0x38, + 0x00, 0x00, 0x0A, 0x0E, 0x00, 0x00, 0x20, 0x39, 0x00, 0x00, 0x20, 0x3A, + 0x00, 0x00, 0x05, 0xE6, 0x00, 0x00, 0x20, 0x3B, 0x00, 0x00, 0x20, 0x3B, + 0x00, 0x00, 0x0A, 0x14, 0x00, 0x00, 0x20, 0x3C, 0x00, 0x00, 0x20, 0x3C, + 0x00, 0x00, 0x05, 0x92, 0x00, 0x00, 0x20, 0x3D, 0x00, 0x00, 0x20, 0x3D, + 0x00, 0x00, 0x05, 0x99, 0x00, 0x00, 0x20, 0x3E, 0x00, 0x00, 0x20, 0x3E, + 0x00, 0x00, 0x0A, 0x13, 0x00, 0x00, 0x20, 0x3F, 0x00, 0x00, 0x20, 0x3F, + 0x00, 0x00, 0x0A, 0x16, 0x00, 0x00, 0x20, 0x40, 0x00, 0x00, 0x20, 0x40, + 0x00, 0x00, 0x0A, 0x10, 0x00, 0x00, 0x20, 0x41, 0x00, 0x00, 0x20, 0x41, + 0x00, 0x00, 0x0A, 0x0F, 0x00, 0x00, 0x20, 0x42, 0x00, 0x00, 0x20, 0x42, + 0x00, 0x00, 0x0A, 0x0D, 0x00, 0x00, 0x20, 0x43, 0x00, 0x00, 0x20, 0x43, + 0x00, 0x00, 0x05, 0xB8, 0x00, 0x00, 0x20, 0x44, 0x00, 0x00, 0x20, 0x44, + 0x00, 0x00, 0x06, 0x87, 0x00, 0x00, 0x20, 0x45, 0x00, 0x00, 0x20, 0x45, + 0x00, 0x00, 0x05, 0x9E, 0x00, 0x00, 0x20, 0x46, 0x00, 0x00, 0x20, 0x46, + 0x00, 0x00, 0x05, 0xA0, 0x00, 0x00, 0x20, 0x47, 0x00, 0x00, 0x20, 0x48, + 0x00, 0x00, 0x05, 0x96, 0x00, 0x00, 0x20, 0x49, 0x00, 0x00, 0x20, 0x49, + 0x00, 0x00, 0x05, 0x94, 0x00, 0x00, 0x20, 0x4A, 0x00, 0x00, 0x20, 0x4A, + 0x00, 0x00, 0x05, 0x90, 0x00, 0x00, 0x20, 0x4B, 0x00, 0x00, 0x20, 0x4B, + 0x00, 0x00, 0x06, 0x1B, 0x00, 0x00, 0x20, 0x4C, 0x00, 0x00, 0x20, 0x4D, + 0x00, 0x00, 0x05, 0xBA, 0x00, 0x00, 0x20, 0x4E, 0x00, 0x00, 0x20, 0x4E, + 0x00, 0x00, 0x0A, 0x17, 0x00, 0x00, 0x20, 0x4F, 0x00, 0x00, 0x20, 0x4F, + 0x00, 0x00, 0x0A, 0x15, 0x00, 0x00, 0x20, 0x50, 0x00, 0x00, 0x20, 0x51, + 0x00, 0x00, 0x0A, 0x18, 0x00, 0x00, 0x20, 0x52, 0x00, 0x00, 0x20, 0x52, + 0x00, 0x00, 0x0A, 0x4E, 0x00, 0x00, 0x20, 0x53, 0x00, 0x00, 0x20, 0x55, + 0x00, 0x00, 0x0A, 0x1A, 0x00, 0x00, 0x20, 0x57, 0x00, 0x00, 0x20, 0x57, + 0x00, 0x00, 0x05, 0xD5, 0x00, 0x00, 0x20, 0x5F, 0x00, 0x00, 0x20, 0x5F, + 0x00, 0x00, 0x06, 0xF2, 0x00, 0x00, 0x20, 0x70, 0x00, 0x00, 0x20, 0x70, + 0x00, 0x00, 0x06, 0x3F, 0x00, 0x00, 0x20, 0x71, 0x00, 0x00, 0x20, 0x71, + 0x00, 0x00, 0x06, 0x2D, 0x00, 0x00, 0x20, 0x74, 0x00, 0x00, 0x20, 0x74, + 0x00, 0x00, 0x06, 0x46, 0x00, 0x00, 0x20, 0x75, 0x00, 0x00, 0x20, 0x76, + 0x00, 0x00, 0x06, 0x48, 0x00, 0x00, 0x20, 0x77, 0x00, 0x00, 0x20, 0x79, + 0x00, 0x00, 0x06, 0x4B, 0x00, 0x00, 0x20, 0x7A, 0x00, 0x00, 0x20, 0x7C, + 0x00, 0x00, 0x06, 0x53, 0x00, 0x00, 0x20, 0x7D, 0x00, 0x00, 0x20, 0x7E, + 0x00, 0x00, 0x06, 0x4F, 0x00, 0x00, 0x20, 0x7F, 0x00, 0x00, 0x20, 0x7F, + 0x00, 0x00, 0x06, 0x32, 0x00, 0x00, 0x20, 0x80, 0x00, 0x00, 0x20, 0x80, + 0x00, 0x00, 0x06, 0x70, 0x00, 0x00, 0x20, 0x81, 0x00, 0x00, 0x20, 0x81, + 0x00, 0x00, 0x06, 0x72, 0x00, 0x00, 0x20, 0x82, 0x00, 0x00, 0x20, 0x83, + 0x00, 0x00, 0x06, 0x74, 0x00, 0x00, 0x20, 0x84, 0x00, 0x00, 0x20, 0x84, + 0x00, 0x00, 0x06, 0x77, 0x00, 0x00, 0x20, 0x85, 0x00, 0x00, 0x20, 0x86, + 0x00, 0x00, 0x06, 0x79, 0x00, 0x00, 0x20, 0x87, 0x00, 0x00, 0x20, 0x89, + 0x00, 0x00, 0x06, 0x7C, 0x00, 0x00, 0x20, 0x8A, 0x00, 0x00, 0x20, 0x8C, + 0x00, 0x00, 0x06, 0x84, 0x00, 0x00, 0x20, 0x8D, 0x00, 0x00, 0x20, 0x8E, + 0x00, 0x00, 0x06, 0x80, 0x00, 0x00, 0x20, 0x90, 0x00, 0x00, 0x20, 0x90, + 0x00, 0x00, 0x06, 0x56, 0x00, 0x00, 0x20, 0x91, 0x00, 0x00, 0x20, 0x91, + 0x00, 0x00, 0x06, 0x5A, 0x00, 0x00, 0x20, 0x92, 0x00, 0x00, 0x20, 0x92, + 0x00, 0x00, 0x06, 0x64, 0x00, 0x00, 0x20, 0x93, 0x00, 0x00, 0x20, 0x93, + 0x00, 0x00, 0x06, 0x6D, 0x00, 0x00, 0x20, 0x94, 0x00, 0x00, 0x20, 0x94, + 0x00, 0x00, 0x09, 0x71, 0x00, 0x00, 0x20, 0x95, 0x00, 0x00, 0x20, 0x95, + 0x00, 0x00, 0x06, 0x5D, 0x00, 0x00, 0x20, 0x96, 0x00, 0x00, 0x20, 0x99, + 0x00, 0x00, 0x06, 0x60, 0x00, 0x00, 0x20, 0x9A, 0x00, 0x00, 0x20, 0x9A, + 0x00, 0x00, 0x06, 0x65, 0x00, 0x00, 0x20, 0x9B, 0x00, 0x00, 0x20, 0x9C, + 0x00, 0x00, 0x06, 0x68, 0x00, 0x00, 0x20, 0xA0, 0x00, 0x00, 0x20, 0xA0, + 0x00, 0x00, 0x0A, 0x4D, 0x00, 0x00, 0x20, 0xA1, 0x00, 0x00, 0x20, 0xA1, + 0x00, 0x00, 0x05, 0x2E, 0x00, 0x00, 0x20, 0xA2, 0x00, 0x00, 0x20, 0xA2, + 0x00, 0x00, 0x05, 0x30, 0x00, 0x00, 0x20, 0xA3, 0x00, 0x00, 0x20, 0xA3, + 0x00, 0x00, 0x05, 0x38, 0x00, 0x00, 0x20, 0xA4, 0x00, 0x00, 0x20, 0xA4, + 0x00, 0x00, 0x05, 0x29, 0x00, 0x00, 0x20, 0xA5, 0x00, 0x00, 0x20, 0xA5, + 0x00, 0x00, 0x05, 0x33, 0x00, 0x00, 0x20, 0xA6, 0x00, 0x00, 0x20, 0xA6, + 0x00, 0x00, 0x05, 0x2C, 0x00, 0x00, 0x20, 0xA7, 0x00, 0x00, 0x20, 0xA7, + 0x00, 0x00, 0x05, 0x25, 0x00, 0x00, 0x20, 0xA8, 0x00, 0x00, 0x20, 0xA8, + 0x00, 0x00, 0x05, 0x36, 0x00, 0x00, 0x20, 0xA9, 0x00, 0x00, 0x20, 0xA9, + 0x00, 0x00, 0x05, 0x28, 0x00, 0x00, 0x20, 0xAA, 0x00, 0x00, 0x20, 0xAA, + 0x00, 0x00, 0x05, 0x34, 0x00, 0x00, 0x20, 0xAB, 0x00, 0x00, 0x20, 0xAB, + 0x00, 0x00, 0x02, 0x65, 0x00, 0x00, 0x20, 0xAC, 0x00, 0x00, 0x20, 0xAC, + 0x00, 0x00, 0x05, 0x22, 0x00, 0x00, 0x20, 0xAD, 0x00, 0x00, 0x20, 0xAD, + 0x00, 0x00, 0x05, 0x27, 0x00, 0x00, 0x20, 0xAE, 0x00, 0x00, 0x20, 0xAF, + 0x00, 0x00, 0x05, 0x31, 0x00, 0x00, 0x20, 0xB1, 0x00, 0x00, 0x20, 0xB1, + 0x00, 0x00, 0x05, 0x26, 0x00, 0x00, 0x20, 0xB2, 0x00, 0x00, 0x20, 0xB2, + 0x00, 0x00, 0x05, 0x2D, 0x00, 0x00, 0x20, 0xB3, 0x00, 0x00, 0x20, 0xB4, + 0x00, 0x00, 0x05, 0x2A, 0x00, 0x00, 0x20, 0xB5, 0x00, 0x00, 0x20, 0xB5, + 0x00, 0x00, 0x05, 0x2F, 0x00, 0x00, 0x20, 0xB8, 0x00, 0x00, 0x20, 0xB8, + 0x00, 0x00, 0x05, 0x24, 0x00, 0x00, 0x20, 0xB9, 0x00, 0x00, 0x20, 0xB9, + 0x00, 0x00, 0x05, 0x23, 0x00, 0x00, 0x20, 0xBA, 0x00, 0x00, 0x20, 0xBA, + 0x00, 0x00, 0x05, 0x20, 0x00, 0x00, 0x20, 0xBC, 0x00, 0x00, 0x20, 0xBC, + 0x00, 0x00, 0x05, 0x35, 0x00, 0x00, 0x20, 0xBD, 0x00, 0x00, 0x20, 0xBD, + 0x00, 0x00, 0x05, 0x21, 0x00, 0x00, 0x20, 0xBE, 0x00, 0x00, 0x20, 0xBE, + 0x00, 0x00, 0x05, 0x37, 0x00, 0x00, 0x20, 0xBF, 0x00, 0x00, 0x20, 0xBF, + 0x00, 0x00, 0x05, 0x3A, 0x00, 0x00, 0x20, 0xDB, 0x00, 0x00, 0x20, 0xDB, + 0x00, 0x00, 0x0A, 0xB9, 0x00, 0x00, 0x20, 0xDC, 0x00, 0x00, 0x20, 0xDC, + 0x00, 0x00, 0x0A, 0xB7, 0x00, 0x00, 0x20, 0xDD, 0x00, 0x00, 0x20, 0xDE, + 0x00, 0x00, 0x07, 0x6B, 0x00, 0x00, 0x20, 0xE8, 0x00, 0x00, 0x20, 0xE8, + 0x00, 0x00, 0x0A, 0xBA, 0x00, 0x00, 0x20, 0xF0, 0x00, 0x00, 0x20, 0xF0, + 0x00, 0x00, 0x0A, 0xDE, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x21, 0x01, + 0x00, 0x00, 0x06, 0xD4, 0x00, 0x00, 0x21, 0x03, 0x00, 0x00, 0x21, 0x03, + 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x21, 0x05, 0x00, 0x00, 0x21, 0x05, + 0x00, 0x00, 0x06, 0xD3, 0x00, 0x00, 0x21, 0x06, 0x00, 0x00, 0x21, 0x06, + 0x00, 0x00, 0x06, 0xD2, 0x00, 0x00, 0x21, 0x09, 0x00, 0x00, 0x21, 0x09, + 0x00, 0x00, 0x07, 0x01, 0x00, 0x00, 0x21, 0x13, 0x00, 0x00, 0x21, 0x13, + 0x00, 0x00, 0x0A, 0x4B, 0x00, 0x00, 0x21, 0x16, 0x00, 0x00, 0x21, 0x16, + 0x00, 0x00, 0x06, 0xFF, 0x00, 0x00, 0x21, 0x17, 0x00, 0x00, 0x21, 0x17, + 0x00, 0x00, 0x06, 0x0E, 0x00, 0x00, 0x21, 0x1E, 0x00, 0x00, 0x21, 0x1E, + 0x00, 0x00, 0x01, 0x8B, 0x00, 0x00, 0x21, 0x1F, 0x00, 0x00, 0x21, 0x1F, + 0x00, 0x00, 0x01, 0x8A, 0x00, 0x00, 0x21, 0x20, 0x00, 0x00, 0x21, 0x21, + 0x00, 0x00, 0x06, 0x10, 0x00, 0x00, 0x21, 0x22, 0x00, 0x00, 0x21, 0x22, + 0x00, 0x00, 0x06, 0x0F, 0x00, 0x00, 0x21, 0x26, 0x00, 0x00, 0x21, 0x26, + 0x00, 0x00, 0x04, 0x10, 0x00, 0x00, 0x21, 0x2A, 0x00, 0x00, 0x21, 0x2B, + 0x00, 0x00, 0x07, 0x02, 0x00, 0x00, 0x21, 0x2E, 0x00, 0x00, 0x21, 0x2E, + 0x00, 0x00, 0x07, 0x05, 0x00, 0x00, 0x21, 0x32, 0x00, 0x00, 0x21, 0x32, + 0x00, 0x00, 0x00, 0x8C, 0x00, 0x00, 0x21, 0x3B, 0x00, 0x00, 0x21, 0x3B, + 0x00, 0x00, 0x06, 0x12, 0x00, 0x00, 0x21, 0x4D, 0x00, 0x00, 0x21, 0x4D, + 0x00, 0x00, 0x06, 0xD1, 0x00, 0x00, 0x21, 0x50, 0x00, 0x00, 0x21, 0x50, + 0x00, 0x00, 0x06, 0xC7, 0x00, 0x00, 0x21, 0x51, 0x00, 0x00, 0x21, 0x52, + 0x00, 0x00, 0x06, 0xCC, 0x00, 0x00, 0x21, 0x53, 0x00, 0x00, 0x21, 0x54, + 0x00, 0x00, 0x06, 0xBD, 0x00, 0x00, 0x21, 0x55, 0x00, 0x00, 0x21, 0x5A, + 0x00, 0x00, 0x06, 0xC1, 0x00, 0x00, 0x21, 0x5B, 0x00, 0x00, 0x21, 0x5E, + 0x00, 0x00, 0x06, 0xC8, 0x00, 0x00, 0x21, 0x5F, 0x00, 0x00, 0x21, 0x5F, + 0x00, 0x00, 0x06, 0xBA, 0x00, 0x00, 0x21, 0x60, 0x00, 0x00, 0x21, 0x7F, + 0x00, 0x00, 0x09, 0xE7, 0x00, 0x00, 0x21, 0x83, 0x00, 0x00, 0x21, 0x83, + 0x00, 0x00, 0x0A, 0x07, 0x00, 0x00, 0x21, 0x84, 0x00, 0x00, 0x21, 0x84, + 0x00, 0x00, 0x09, 0x69, 0x00, 0x00, 0x21, 0x85, 0x00, 0x00, 0x21, 0x86, + 0x00, 0x00, 0x0A, 0x08, 0x00, 0x00, 0x21, 0x89, 0x00, 0x00, 0x21, 0x89, + 0x00, 0x00, 0x06, 0xBC, 0x00, 0x00, 0x21, 0x90, 0x00, 0x00, 0x21, 0x90, + 0x00, 0x00, 0x07, 0x06, 0x00, 0x00, 0x21, 0x91, 0x00, 0x00, 0x21, 0x91, + 0x00, 0x00, 0x07, 0x18, 0x00, 0x00, 0x21, 0x92, 0x00, 0x00, 0x21, 0x92, + 0x00, 0x00, 0x07, 0x0B, 0x00, 0x00, 0x21, 0x93, 0x00, 0x00, 0x21, 0x93, + 0x00, 0x00, 0x07, 0x19, 0x00, 0x00, 0x21, 0x94, 0x00, 0x00, 0x21, 0x94, + 0x00, 0x00, 0x07, 0x14, 0x00, 0x00, 0x21, 0x95, 0x00, 0x00, 0x21, 0x95, + 0x00, 0x00, 0x07, 0x1B, 0x00, 0x00, 0x21, 0x96, 0x00, 0x00, 0x21, 0x99, + 0x00, 0x00, 0x07, 0x10, 0x00, 0x00, 0x21, 0xA9, 0x00, 0x00, 0x21, 0xAA, + 0x00, 0x00, 0x07, 0x1C, 0x00, 0x00, 0x21, 0xB0, 0x00, 0x00, 0x21, 0xB1, + 0x00, 0x00, 0x07, 0x61, 0x00, 0x00, 0x21, 0xB3, 0x00, 0x00, 0x21, 0xB3, + 0x00, 0x00, 0x07, 0x60, 0x00, 0x00, 0x21, 0xB4, 0x00, 0x00, 0x21, 0xB4, + 0x00, 0x00, 0x07, 0x63, 0x00, 0x00, 0x21, 0xB5, 0x00, 0x00, 0x21, 0xB5, + 0x00, 0x00, 0x07, 0x5F, 0x00, 0x00, 0x21, 0xBA, 0x00, 0x00, 0x21, 0xBB, + 0x00, 0x00, 0x07, 0x58, 0x00, 0x00, 0x21, 0xD0, 0x00, 0x00, 0x21, 0xD0, + 0x00, 0x00, 0x07, 0x09, 0x00, 0x00, 0x21, 0xD2, 0x00, 0x00, 0x21, 0xD2, + 0x00, 0x00, 0x07, 0x0E, 0x00, 0x00, 0x21, 0xD4, 0x00, 0x00, 0x21, 0xD4, + 0x00, 0x00, 0x07, 0x16, 0x00, 0x00, 0x21, 0xDE, 0x00, 0x00, 0x21, 0xDF, + 0x00, 0x00, 0x07, 0x66, 0x00, 0x00, 0x21, 0xE4, 0x00, 0x00, 0x21, 0xE5, + 0x00, 0x00, 0x07, 0x64, 0x00, 0x00, 0x21, 0xE7, 0x00, 0x00, 0x21, 0xE7, + 0x00, 0x00, 0x07, 0x4E, 0x00, 0x00, 0x21, 0xEA, 0x00, 0x00, 0x21, 0xEA, + 0x00, 0x00, 0x07, 0x4F, 0x00, 0x00, 0x22, 0x02, 0x00, 0x00, 0x22, 0x02, + 0x00, 0x00, 0x06, 0x1E, 0x00, 0x00, 0x22, 0x05, 0x00, 0x00, 0x22, 0x05, + 0x00, 0x00, 0x06, 0x23, 0x00, 0x00, 0x22, 0x06, 0x00, 0x00, 0x22, 0x06, + 0x00, 0x00, 0x04, 0x09, 0x00, 0x00, 0x22, 0x0F, 0x00, 0x00, 0x22, 0x0F, + 0x00, 0x00, 0x06, 0x20, 0x00, 0x00, 0x22, 0x11, 0x00, 0x00, 0x22, 0x11, + 0x00, 0x00, 0x06, 0x1F, 0x00, 0x00, 0x22, 0x12, 0x00, 0x00, 0x22, 0x12, + 0x00, 0x00, 0x05, 0xF1, 0x00, 0x00, 0x22, 0x1A, 0x00, 0x00, 0x22, 0x1A, + 0x00, 0x00, 0x06, 0x22, 0x00, 0x00, 0x22, 0x1E, 0x00, 0x00, 0x22, 0x1E, + 0x00, 0x00, 0x06, 0x1D, 0x00, 0x00, 0x22, 0x2B, 0x00, 0x00, 0x22, 0x2B, + 0x00, 0x00, 0x06, 0x21, 0x00, 0x00, 0x22, 0x36, 0x00, 0x00, 0x22, 0x36, + 0x00, 0x00, 0x05, 0xE1, 0x00, 0x00, 0x22, 0x48, 0x00, 0x00, 0x22, 0x48, + 0x00, 0x00, 0x05, 0xF5, 0x00, 0x00, 0x22, 0x60, 0x00, 0x00, 0x22, 0x60, + 0x00, 0x00, 0x05, 0xEF, 0x00, 0x00, 0x22, 0x64, 0x00, 0x00, 0x22, 0x65, + 0x00, 0x00, 0x05, 0xEC, 0x00, 0x00, 0x22, 0x95, 0x00, 0x00, 0x22, 0x96, + 0x00, 0x00, 0x07, 0x9E, 0x00, 0x00, 0x22, 0x97, 0x00, 0x00, 0x22, 0x97, + 0x00, 0x00, 0x07, 0xA1, 0x00, 0x00, 0x22, 0x98, 0x00, 0x00, 0x22, 0x98, + 0x00, 0x00, 0x07, 0xA0, 0x00, 0x00, 0x23, 0x03, 0x00, 0x00, 0x23, 0x03, + 0x00, 0x00, 0x07, 0x51, 0x00, 0x00, 0x23, 0x04, 0x00, 0x00, 0x23, 0x04, + 0x00, 0x00, 0x07, 0x53, 0x00, 0x00, 0x23, 0x05, 0x00, 0x00, 0x23, 0x05, + 0x00, 0x00, 0x07, 0x52, 0x00, 0x00, 0x23, 0x18, 0x00, 0x00, 0x23, 0x18, + 0x00, 0x00, 0x07, 0x50, 0x00, 0x00, 0x23, 0x25, 0x00, 0x00, 0x23, 0x25, + 0x00, 0x00, 0x07, 0x55, 0x00, 0x00, 0x23, 0x26, 0x00, 0x00, 0x23, 0x27, + 0x00, 0x00, 0x07, 0x5B, 0x00, 0x00, 0x23, 0x2B, 0x00, 0x00, 0x23, 0x2B, + 0x00, 0x00, 0x07, 0x5A, 0x00, 0x00, 0x23, 0x80, 0x00, 0x00, 0x23, 0x80, + 0x00, 0x00, 0x07, 0x54, 0x00, 0x00, 0x23, 0x87, 0x00, 0x00, 0x23, 0x87, + 0x00, 0x00, 0x07, 0x56, 0x00, 0x00, 0x23, 0x8B, 0x00, 0x00, 0x23, 0x8B, + 0x00, 0x00, 0x07, 0x57, 0x00, 0x00, 0x23, 0xCE, 0x00, 0x00, 0x23, 0xCE, + 0x00, 0x00, 0x07, 0x5E, 0x00, 0x00, 0x23, 0xCF, 0x00, 0x00, 0x23, 0xCF, + 0x00, 0x00, 0x07, 0x5D, 0x00, 0x00, 0x24, 0x23, 0x00, 0x00, 0x24, 0x23, + 0x00, 0x00, 0x0A, 0x4C, 0x00, 0x00, 0x24, 0x60, 0x00, 0x00, 0x24, 0x68, + 0x00, 0x00, 0x07, 0x88, 0x00, 0x00, 0x24, 0xB6, 0x00, 0x00, 0x24, 0xCF, + 0x00, 0x00, 0x07, 0x6D, 0x00, 0x00, 0x24, 0xEA, 0x00, 0x00, 0x24, 0xEA, + 0x00, 0x00, 0x07, 0x87, 0x00, 0x00, 0x25, 0xA0, 0x00, 0x00, 0x25, 0xA2, + 0x00, 0x00, 0x07, 0x3D, 0x00, 0x00, 0x25, 0xAA, 0x00, 0x00, 0x25, 0xAA, + 0x00, 0x00, 0x05, 0xBC, 0x00, 0x00, 0x25, 0xB2, 0x00, 0x00, 0x25, 0xB2, + 0x00, 0x00, 0x07, 0x33, 0x00, 0x00, 0x25, 0xB3, 0x00, 0x00, 0x25, 0xB3, + 0x00, 0x00, 0x07, 0x37, 0x00, 0x00, 0x25, 0xB6, 0x00, 0x00, 0x25, 0xB6, + 0x00, 0x00, 0x07, 0x35, 0x00, 0x00, 0x25, 0xB7, 0x00, 0x00, 0x25, 0xB7, + 0x00, 0x00, 0x07, 0x39, 0x00, 0x00, 0x25, 0xBA, 0x00, 0x00, 0x25, 0xBA, + 0x00, 0x00, 0x07, 0x35, 0x00, 0x00, 0x25, 0xBB, 0x00, 0x00, 0x25, 0xBB, + 0x00, 0x00, 0x07, 0x39, 0x00, 0x00, 0x25, 0xBC, 0x00, 0x00, 0x25, 0xBC, + 0x00, 0x00, 0x07, 0x32, 0x00, 0x00, 0x25, 0xBD, 0x00, 0x00, 0x25, 0xBD, + 0x00, 0x00, 0x07, 0x36, 0x00, 0x00, 0x25, 0xC0, 0x00, 0x00, 0x25, 0xC0, + 0x00, 0x00, 0x07, 0x34, 0x00, 0x00, 0x25, 0xC1, 0x00, 0x00, 0x25, 0xC1, + 0x00, 0x00, 0x07, 0x38, 0x00, 0x00, 0x25, 0xC4, 0x00, 0x00, 0x25, 0xC4, + 0x00, 0x00, 0x07, 0x34, 0x00, 0x00, 0x25, 0xC5, 0x00, 0x00, 0x25, 0xC5, + 0x00, 0x00, 0x07, 0x38, 0x00, 0x00, 0x25, 0xC6, 0x00, 0x00, 0x25, 0xC6, + 0x00, 0x00, 0x07, 0x42, 0x00, 0x00, 0x25, 0xC7, 0x00, 0x00, 0x25, 0xC7, + 0x00, 0x00, 0x07, 0x44, 0x00, 0x00, 0x25, 0xCA, 0x00, 0x00, 0x25, 0xCA, + 0x00, 0x00, 0x06, 0x24, 0x00, 0x00, 0x25, 0xCB, 0x00, 0x00, 0x25, 0xCB, + 0x00, 0x00, 0x07, 0x3C, 0x00, 0x00, 0x25, 0xCF, 0x00, 0x00, 0x25, 0xCF, + 0x00, 0x00, 0x07, 0x3B, 0x00, 0x00, 0x25, 0xE6, 0x00, 0x00, 0x25, 0xE6, + 0x00, 0x00, 0x05, 0xB7, 0x00, 0x00, 0x25, 0xEF, 0x00, 0x00, 0x25, 0xEF, + 0x00, 0x00, 0x07, 0x69, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x26, 0x00, + 0x00, 0x00, 0x07, 0x47, 0x00, 0x00, 0x26, 0x05, 0x00, 0x00, 0x26, 0x06, + 0x00, 0x00, 0x07, 0x4B, 0x00, 0x00, 0x26, 0x3C, 0x00, 0x00, 0x26, 0x3C, + 0x00, 0x00, 0x07, 0x46, 0x00, 0x00, 0x26, 0x61, 0x00, 0x00, 0x26, 0x61, + 0x00, 0x00, 0x07, 0x48, 0x00, 0x00, 0x26, 0x65, 0x00, 0x00, 0x26, 0x65, + 0x00, 0x00, 0x07, 0x49, 0x00, 0x00, 0x26, 0xA0, 0x00, 0x00, 0x26, 0xA0, + 0x00, 0x00, 0x07, 0x3A, 0x00, 0x00, 0x27, 0x13, 0x00, 0x00, 0x27, 0x13, + 0x00, 0x00, 0x07, 0x30, 0x00, 0x00, 0x27, 0x17, 0x00, 0x00, 0x27, 0x17, + 0x00, 0x00, 0x07, 0x31, 0x00, 0x00, 0x27, 0x56, 0x00, 0x00, 0x27, 0x56, + 0x00, 0x00, 0x07, 0x43, 0x00, 0x00, 0x27, 0x64, 0x00, 0x00, 0x27, 0x64, + 0x00, 0x00, 0x07, 0x4A, 0x00, 0x00, 0x27, 0x80, 0x00, 0x00, 0x27, 0x88, + 0x00, 0x00, 0x07, 0x88, 0x00, 0x00, 0x27, 0xEF, 0x00, 0x00, 0x27, 0xEF, + 0x00, 0x00, 0x0A, 0x0C, 0x00, 0x00, 0x27, 0xF5, 0x00, 0x00, 0x27, 0xF5, + 0x00, 0x00, 0x07, 0x07, 0x00, 0x00, 0x27, 0xF6, 0x00, 0x00, 0x27, 0xF6, + 0x00, 0x00, 0x07, 0x0C, 0x00, 0x00, 0x27, 0xF7, 0x00, 0x00, 0x27, 0xF7, + 0x00, 0x00, 0x07, 0x15, 0x00, 0x00, 0x27, 0xF8, 0x00, 0x00, 0x27, 0xF8, + 0x00, 0x00, 0x07, 0x0A, 0x00, 0x00, 0x27, 0xF9, 0x00, 0x00, 0x27, 0xF9, + 0x00, 0x00, 0x07, 0x0F, 0x00, 0x00, 0x27, 0xFA, 0x00, 0x00, 0x27, 0xFA, + 0x00, 0x00, 0x07, 0x17, 0x00, 0x00, 0x29, 0x13, 0x00, 0x00, 0x29, 0x13, + 0x00, 0x00, 0x07, 0x1A, 0x00, 0x00, 0x2A, 0x38, 0x00, 0x00, 0x2A, 0x38, + 0x00, 0x00, 0x07, 0xA2, 0x00, 0x00, 0x2B, 0x06, 0x00, 0x00, 0x2B, 0x06, + 0x00, 0x00, 0x07, 0x4D, 0x00, 0x00, 0x2B, 0x12, 0x00, 0x00, 0x2B, 0x13, + 0x00, 0x00, 0x07, 0x40, 0x00, 0x00, 0x2B, 0x1C, 0x00, 0x00, 0x2B, 0x1C, + 0x00, 0x00, 0x07, 0x6A, 0x00, 0x00, 0x2B, 0x24, 0x00, 0x00, 0x2B, 0x24, + 0x00, 0x00, 0x07, 0x68, 0x00, 0x00, 0x2C, 0x7C, 0x00, 0x00, 0x2C, 0x7C, + 0x00, 0x00, 0x06, 0x5F, 0x00, 0x00, 0x2C, 0x7F, 0x00, 0x00, 0x2C, 0x7F, + 0x00, 0x00, 0x01, 0xFA, 0x00, 0x00, 0x2D, 0xFF, 0x00, 0x00, 0x2D, 0xFF, + 0x00, 0x00, 0x0B, 0x36, 0x00, 0x00, 0x2E, 0x18, 0x00, 0x00, 0x2E, 0x18, + 0x00, 0x00, 0x05, 0x9A, 0x00, 0x00, 0xA6, 0x9F, 0x00, 0x00, 0xA6, 0x9F, + 0x00, 0x00, 0x0A, 0x79, 0x00, 0x00, 0xA7, 0xFF, 0x00, 0x00, 0xA7, 0xFF, + 0x00, 0x00, 0x09, 0x76, 0x00, 0x00, 0xA9, 0x2E, 0x00, 0x00, 0xA9, 0x2E, + 0x00, 0x00, 0x0A, 0x0B, 0x00, 0x00, 0xE0, 0x00, 0x00, 0x00, 0xE0, 0x00, + 0x00, 0x00, 0x07, 0x45, 0x00, 0x00, 0xE0, 0x02, 0x00, 0x00, 0xE0, 0x0B, + 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0xE0, 0x0C, 0x00, 0x00, 0xE0, 0x2B, + 0x00, 0x00, 0x00, 0xEA, 0x00, 0x00, 0xE0, 0x2C, 0x00, 0x00, 0xE0, 0x4A, + 0x00, 0x00, 0x02, 0x23, 0x00, 0x00, 0xE0, 0x4B, 0x00, 0x00, 0xE0, 0x4B, + 0x00, 0x00, 0x02, 0xB8, 0x00, 0x00, 0xE0, 0x4C, 0x00, 0x00, 0xE0, 0x4C, + 0x00, 0x00, 0x02, 0xBF, 0x00, 0x00, 0xE0, 0x4D, 0x00, 0x00, 0xE0, 0x4D, + 0x00, 0x00, 0x02, 0xC6, 0x00, 0x00, 0xE0, 0x4E, 0x00, 0x00, 0xE0, 0x4E, + 0x00, 0x00, 0x02, 0xCA, 0x00, 0x00, 0xE0, 0x4F, 0x00, 0x00, 0xE0, 0x4F, + 0x00, 0x00, 0x02, 0xD0, 0x00, 0x00, 0xE0, 0x50, 0x00, 0x00, 0xE0, 0x5C, + 0x00, 0x00, 0x02, 0xEF, 0x00, 0x00, 0xE0, 0x5D, 0x00, 0x00, 0xE0, 0x5D, + 0x00, 0x00, 0x03, 0x55, 0x00, 0x00, 0xE0, 0x5E, 0x00, 0x00, 0xE0, 0x5E, + 0x00, 0x00, 0x03, 0x5B, 0x00, 0x00, 0xE0, 0x6A, 0x00, 0x00, 0xE0, 0x6A, + 0x00, 0x00, 0x03, 0x77, 0x00, 0x00, 0xE0, 0x6B, 0x00, 0x00, 0xE0, 0x80, + 0x00, 0x00, 0x05, 0x47, 0x00, 0x00, 0xE0, 0x81, 0x00, 0x00, 0xE0, 0x87, + 0x00, 0x00, 0x05, 0xA4, 0x00, 0x00, 0xE0, 0x88, 0x00, 0x00, 0xE0, 0x91, + 0x00, 0x00, 0x05, 0xBD, 0x00, 0x00, 0xE0, 0x92, 0x00, 0x00, 0xE0, 0x92, + 0x00, 0x00, 0x05, 0xE0, 0x00, 0x00, 0xE0, 0x93, 0x00, 0x00, 0xE0, 0x95, + 0x00, 0x00, 0x05, 0x5D, 0x00, 0x00, 0xE0, 0x96, 0x00, 0x00, 0xE0, 0x96, + 0x00, 0x00, 0x05, 0x61, 0x00, 0x00, 0xE0, 0x97, 0x00, 0x00, 0xE0, 0xA3, + 0x00, 0x00, 0x05, 0xF7, 0x00, 0x00, 0xE0, 0xA4, 0x00, 0x00, 0xE0, 0xA4, + 0x00, 0x00, 0x06, 0x0A, 0x00, 0x00, 0xE0, 0xA5, 0x00, 0x00, 0xE0, 0xA6, + 0x00, 0x00, 0x06, 0x18, 0x00, 0x00, 0xE0, 0xA7, 0x00, 0x00, 0xE0, 0xA8, + 0x00, 0x00, 0x06, 0x51, 0x00, 0x00, 0xE0, 0xA9, 0x00, 0x00, 0xE0, 0xAB, + 0x00, 0x00, 0x06, 0x57, 0x00, 0x00, 0xE0, 0xAC, 0x00, 0x00, 0xE0, 0xAD, + 0x00, 0x00, 0x06, 0x5B, 0x00, 0x00, 0xE0, 0xAE, 0x00, 0x00, 0xE0, 0xAE, + 0x00, 0x00, 0x06, 0x66, 0x00, 0x00, 0xE0, 0xAF, 0x00, 0x00, 0xE0, 0xAF, + 0x00, 0x00, 0x06, 0x6C, 0x00, 0x00, 0xE0, 0xB0, 0x00, 0x00, 0xE0, 0xB1, + 0x00, 0x00, 0x06, 0x6E, 0x00, 0x00, 0xE0, 0xB2, 0x00, 0x00, 0xE0, 0xB3, + 0x00, 0x00, 0x06, 0x82, 0x00, 0x00, 0xE0, 0xB4, 0x00, 0x00, 0xE0, 0xB4, + 0x00, 0x00, 0x06, 0x88, 0x00, 0x00, 0xE0, 0xB5, 0x00, 0x00, 0xE0, 0xB5, + 0x00, 0x00, 0x06, 0x8A, 0x00, 0x00, 0xE0, 0xB6, 0x00, 0x00, 0xE0, 0xB7, + 0x00, 0x00, 0x06, 0x8C, 0x00, 0x00, 0xE0, 0xB8, 0x00, 0x00, 0xE0, 0xB8, + 0x00, 0x00, 0x06, 0x8F, 0x00, 0x00, 0xE0, 0xB9, 0x00, 0x00, 0xE0, 0xBA, + 0x00, 0x00, 0x06, 0x91, 0x00, 0x00, 0xE0, 0xBB, 0x00, 0x00, 0xE0, 0xBD, + 0x00, 0x00, 0x06, 0x94, 0x00, 0x00, 0xE0, 0xC8, 0x00, 0x00, 0xE0, 0xCC, + 0x00, 0x00, 0x06, 0x98, 0x00, 0x00, 0xE0, 0xDC, 0x00, 0x00, 0xE0, 0xDC, + 0x00, 0x00, 0x06, 0xA1, 0x00, 0x00, 0xE0, 0xDD, 0x00, 0x00, 0xE0, 0xDD, + 0x00, 0x00, 0x06, 0xA3, 0x00, 0x00, 0xE0, 0xDE, 0x00, 0x00, 0xE0, 0xDF, + 0x00, 0x00, 0x06, 0xA5, 0x00, 0x00, 0xE0, 0xE0, 0x00, 0x00, 0xE0, 0xE0, + 0x00, 0x00, 0x06, 0xA8, 0x00, 0x00, 0xE0, 0xE1, 0x00, 0x00, 0xE0, 0xE2, + 0x00, 0x00, 0x06, 0xAA, 0x00, 0x00, 0xE0, 0xE3, 0x00, 0x00, 0xE0, 0xE5, + 0x00, 0x00, 0x06, 0xAD, 0x00, 0x00, 0xE0, 0xE6, 0x00, 0x00, 0xE0, 0xE6, + 0x00, 0x00, 0x06, 0xE0, 0x00, 0x00, 0xE0, 0xF3, 0x00, 0x00, 0xE0, 0xF5, + 0x00, 0x00, 0x0B, 0x43, 0x00, 0x00, 0xE1, 0x06, 0x00, 0x00, 0xE1, 0x06, + 0x00, 0x00, 0x0A, 0xE4, 0x00, 0x00, 0xE1, 0x09, 0x00, 0x00, 0xE1, 0x09, + 0x00, 0x00, 0x0A, 0xE5, 0x00, 0x00, 0xE1, 0x0A, 0x00, 0x00, 0xE1, 0x0A, + 0x00, 0x00, 0x0B, 0x46, 0x00, 0x00, 0xE1, 0x0C, 0x00, 0x00, 0xE1, 0x0E, + 0x00, 0x00, 0x0A, 0xE6, 0x00, 0x00, 0xE1, 0x0F, 0x00, 0x00, 0xE1, 0x0F, + 0x00, 0x00, 0x0B, 0x47, 0x00, 0x00, 0xE1, 0x11, 0x00, 0x00, 0xE1, 0x13, + 0x00, 0x00, 0x0A, 0xE9, 0x00, 0x00, 0xE1, 0x17, 0x00, 0x00, 0xE1, 0x18, + 0x00, 0x00, 0x0A, 0xEC, 0x00, 0x00, 0xE1, 0x21, 0x00, 0x00, 0xE1, 0x22, + 0x00, 0x00, 0x0A, 0xEE, 0x00, 0x00, 0xE1, 0x24, 0x00, 0x00, 0xE1, 0x24, + 0x00, 0x00, 0x0A, 0xF0, 0x00, 0x00, 0xE1, 0x2A, 0x00, 0x00, 0xE1, 0x2A, + 0x00, 0x00, 0x0A, 0xF1, 0x00, 0x00, 0xE1, 0x2B, 0x00, 0x00, 0xE1, 0x37, + 0x00, 0x00, 0x07, 0x91, 0x00, 0x00, 0xE1, 0x38, 0x00, 0x00, 0xE1, 0x39, + 0x00, 0x00, 0x07, 0xA3, 0x00, 0x00, 0xE1, 0x3A, 0x00, 0x00, 0xE1, 0x3D, + 0x00, 0x00, 0x07, 0xA6, 0x00, 0x00, 0xE1, 0x3E, 0x00, 0x00, 0xE1, 0x56, + 0x00, 0x00, 0x07, 0xC5, 0x00, 0x00, 0xE1, 0x57, 0x00, 0x00, 0xE1, 0x5A, + 0x00, 0x00, 0x07, 0xDF, 0x00, 0x00, 0xE1, 0x5B, 0x00, 0x00, 0xE1, 0x5E, + 0x00, 0x00, 0x07, 0xE4, 0x00, 0x00, 0xE1, 0x63, 0x00, 0x00, 0xE1, 0x63, + 0x00, 0x00, 0x06, 0x35, 0x00, 0x00, 0xE1, 0xC3, 0x00, 0x00, 0xE1, 0xC3, + 0x00, 0x00, 0x05, 0xC7, 0x00, 0x00, 0xE1, 0xD2, 0x00, 0x00, 0xE1, 0xDF, + 0x00, 0x00, 0x07, 0x1E, 0x00, 0x00, 0xE1, 0xE1, 0x00, 0x00, 0xE1, 0xE1, + 0x00, 0x00, 0x0B, 0x48, 0x00, 0x00, 0xE1, 0xE2, 0x00, 0x00, 0xE2, 0xC7, + 0x00, 0x00, 0x08, 0x03, 0x00, 0x00, 0xE2, 0xC8, 0x00, 0x00, 0xE2, 0xD8, + 0x00, 0x00, 0x08, 0xED, 0x00, 0x00, 0xE2, 0xD9, 0x00, 0x00, 0xE2, 0xDC, + 0x00, 0x00, 0x08, 0xE9, 0x00, 0x00, 0xEE, 0x01, 0x00, 0x00, 0xEE, 0x01, + 0x00, 0x00, 0x05, 0xE1, 0x00, 0x00, 0xEE, 0x02, 0x00, 0x00, 0xEE, 0x02, + 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0xEE, 0x03, 0x00, 0x00, 0xEE, 0x03, + 0x00, 0x00, 0x01, 0xEF, 0x00, 0x00, 0xEE, 0x04, 0x00, 0x00, 0xEE, 0x04, + 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0xEE, 0x05, 0x00, 0x00, 0xEE, 0x05, + 0x00, 0x00, 0x03, 0xFA, 0x00, 0x00, 0xEE, 0x06, 0x00, 0x00, 0xEE, 0x06, + 0x00, 0x00, 0x03, 0x87, 0x00, 0x00, 0xEE, 0x07, 0x00, 0x00, 0xEE, 0x07, + 0x00, 0x00, 0x0A, 0xF2, 0x00, 0x00, 0xEE, 0x09, 0x00, 0x00, 0xEE, 0x09, + 0x00, 0x00, 0x07, 0xDE, 0x00, 0x00, 0xEE, 0x0A, 0x00, 0x00, 0xEE, 0x0A, + 0x00, 0x00, 0x00, 0xC6, 0x00, 0x00, 0xEE, 0x0C, 0x00, 0x00, 0xEE, 0x0C, + 0x00, 0x00, 0x01, 0xA4, 0x00, 0x00, 0xEE, 0x0D, 0x00, 0x00, 0xEE, 0x11, + 0x00, 0x00, 0x02, 0x88, 0x00, 0x00, 0xEE, 0x12, 0x00, 0x00, 0xEE, 0x12, + 0x00, 0x00, 0x02, 0x8E, 0x00, 0x00, 0xEE, 0x14, 0x00, 0x00, 0xEE, 0x14, + 0x00, 0x00, 0x02, 0xB3, 0x00, 0x00, 0xEE, 0x17, 0x00, 0x00, 0xEE, 0x17, + 0x00, 0x00, 0x02, 0xDF, 0x00, 0x00, 0xEE, 0x1D, 0x00, 0x00, 0xEE, 0x25, + 0x00, 0x00, 0x03, 0x88, 0x00, 0x00, 0xEE, 0x26, 0x00, 0x00, 0xEE, 0x45, + 0x00, 0x00, 0x03, 0xB2, 0x00, 0x00, 0xEE, 0x47, 0x00, 0x00, 0xEE, 0x47, + 0x00, 0x00, 0x05, 0x60, 0x00, 0x00, 0xEE, 0x48, 0x00, 0x00, 0xEE, 0x71, + 0x00, 0x00, 0x05, 0x62, 0x00, 0x00, 0xEE, 0x72, 0x00, 0x00, 0xEE, 0x72, + 0x00, 0x00, 0x06, 0xDB, 0x00, 0x00, 0xEE, 0x73, 0x00, 0x00, 0xEE, 0x73, + 0x00, 0x00, 0x07, 0xA5, 0x00, 0x00, 0xEE, 0x74, 0x00, 0x00, 0xEE, 0x74, + 0x00, 0x00, 0x07, 0xB1, 0x00, 0x00, 0xEE, 0x75, 0x00, 0x00, 0xEE, 0x75, + 0x00, 0x00, 0x07, 0xE3, 0x00, 0x00, 0xEE, 0x76, 0x00, 0x00, 0xEE, 0x76, + 0x00, 0x00, 0x07, 0xE8, 0x00, 0x00, 0xEE, 0x77, 0x00, 0x00, 0xEE, 0x7B, + 0x00, 0x00, 0x07, 0xEA, 0x00, 0x00, 0xEE, 0x7C, 0x00, 0x00, 0xEE, 0x7C, + 0x00, 0x00, 0x07, 0xE9, 0x00, 0x00, 0xEE, 0x7D, 0x00, 0x00, 0xEE, 0x7E, + 0x00, 0x00, 0x07, 0xEF, 0x00, 0x00, 0xEE, 0x7F, 0x00, 0x00, 0xEE, 0x82, + 0x00, 0x00, 0x07, 0xF2, 0x00, 0x00, 0xEE, 0x83, 0x00, 0x00, 0xEE, 0x83, + 0x00, 0x00, 0x07, 0xF1, 0x00, 0x00, 0xEE, 0x84, 0x00, 0x00, 0xEE, 0x84, + 0x00, 0x00, 0x07, 0xF6, 0x00, 0x00, 0xEE, 0x87, 0x00, 0x00, 0xEE, 0x87, + 0x00, 0x00, 0x0B, 0x49, 0x00, 0x00, 0xEE, 0x88, 0x00, 0x00, 0xEE, 0x8F, + 0x00, 0x00, 0x07, 0xF8, 0x00, 0x00, 0xEE, 0x90, 0x00, 0x00, 0xEE, 0x99, + 0x00, 0x00, 0x0B, 0x4A, 0x00, 0x00, 0xEE, 0x9A, 0x00, 0x00, 0xEE, 0x9A, + 0x00, 0x00, 0x0A, 0xF3, 0x00, 0x00, 0xEE, 0x9B, 0x00, 0x00, 0xEE, 0x9B, + 0x00, 0x00, 0x0B, 0x54, 0x00, 0x00, 0xEE, 0x9C, 0x00, 0x00, 0xEE, 0x9C, + 0x00, 0x00, 0x07, 0xF7, 0x00, 0x00, 0xEE, 0x9D, 0x00, 0x00, 0xEE, 0xA6, + 0x00, 0x00, 0x0B, 0x55, 0x00, 0x00, 0xEE, 0xA7, 0x00, 0x00, 0xEE, 0xD2, + 0x00, 0x00, 0x0A, 0xF4, 0x00, 0x00, 0xEE, 0xD3, 0x00, 0x00, 0xEE, 0xD3, + 0x00, 0x00, 0x0B, 0x42, 0x00, 0x00, 0xEE, 0xD4, 0x00, 0x00, 0xEE, 0xD6, + 0x00, 0x00, 0x0B, 0x5F, 0x00, 0x00, 0xEE, 0xD8, 0x00, 0x00, 0xEE, 0xDE, + 0x00, 0x00, 0x0B, 0x62, 0x00, 0x00, 0xEE, 0xDF, 0x00, 0x00, 0xEE, 0xDF, + 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xEE, 0xE0, 0x00, 0x00, 0xEE, 0xE1, + 0x00, 0x00, 0x0B, 0x6A, 0x00, 0x00, 0xF6, 0xC3, 0x00, 0x00, 0xF6, 0xC3, + 0x00, 0x00, 0x06, 0xE7, 0x00, 0x00, 0xFE, 0xFF, 0x00, 0x00, 0xFE, 0xFF, + 0x00, 0x00, 0x0A, 0x0A, 0x00, 0x01, 0xF1, 0x2F, 0x00, 0x01, 0xF1, 0x2F, + 0x00, 0x00, 0x06, 0x0D, 0x00, 0x01, 0xF1, 0x30, 0x00, 0x01, 0xF1, 0x36, + 0x00, 0x00, 0x07, 0xAA, 0x00, 0x01, 0xF1, 0x37, 0x00, 0x01, 0xF1, 0x49, + 0x00, 0x00, 0x07, 0xB2, 0x00, 0x01, 0xF1, 0x6A, 0x00, 0x01, 0xF1, 0x6A, + 0x00, 0x00, 0x06, 0x14, 0x00, 0x01, 0xF1, 0x6B, 0x00, 0x01, 0xF1, 0x6B, + 0x00, 0x00, 0x06, 0x13, 0x00, 0x01, 0xF8, 0x50, 0x00, 0x01, 0xF8, 0x50, + 0x00, 0x00, 0x07, 0x08, 0x00, 0x01, 0xF8, 0x52, 0x00, 0x01, 0xF8, 0x52, + 0x00, 0x00, 0x07, 0x0D, 0x00, 0x04, 0x15, 0xAE, 0x00, 0x00, 0x02, 0x08, + 0x02, 0x00, 0x00, 0x08, 0x00, 0x08, 0x00, 0x00, 0x00, 0x7E, 0x00, 0xAC, + 0x01, 0x48, 0x01, 0xC3, 0x02, 0x54, 0x02, 0x7B, 0x02, 0x84, 0x02, 0x90, + 0x02, 0xA4, 0x02, 0xEF, 0x02, 0xF7, 0x03, 0x04, 0x03, 0x0A, 0x03, 0x0C, + 0x03, 0x0F, 0x03, 0x13, 0x03, 0x15, 0x03, 0x1B, 0x03, 0x23, 0x03, 0x28, + 0x03, 0x2C, 0x03, 0x38, 0x03, 0x43, 0x03, 0x62, 0x03, 0x6F, 0x03, 0x76, + 0x03, 0x7F, 0x03, 0x8A, 0x03, 0x8C, 0x03, 0xA1, 0x03, 0xD7, 0x03, 0xDD, + 0x03, 0xF6, 0x03, 0xFA, 0x04, 0x79, 0x04, 0x9D, 0x04, 0xFF, 0x05, 0x2F, + 0x0E, 0x3F, 0x1D, 0x00, 0x1D, 0x0D, 0x1D, 0x1B, 0x1D, 0x43, 0x1D, 0x49, + 0x1D, 0x4D, 0x1D, 0x50, 0x1D, 0x52, 0x1D, 0x58, 0x1D, 0x5B, 0x1D, 0x65, + 0x1D, 0x9C, 0x1D, 0xA0, 0x1D, 0xBB, 0x1D, 0xCA, 0x1D, 0xD2, 0x1D, 0xD7, + 0x1D, 0xE7, 0x1D, 0xE9, 0x1D, 0xF5, 0x1D, 0xFF, 0x1E, 0x9B, 0x1E, 0xFF, + 0x1F, 0x07, 0x1F, 0x0F, 0x1F, 0x15, 0x1F, 0x1D, 0x1F, 0x27, 0x1F, 0x2F, + 0x1F, 0x37, 0x1F, 0x3F, 0x1F, 0x45, 0x1F, 0x4D, 0x1F, 0x57, 0x1F, 0x59, + 0x1F, 0x5B, 0x1F, 0x5D, 0x1F, 0x5F, 0x1F, 0x67, 0x1F, 0x6F, 0x1F, 0x7D, + 0x1F, 0x87, 0x1F, 0x8F, 0x1F, 0x97, 0x1F, 0x9F, 0x1F, 0xA7, 0x1F, 0xAF, + 0x1F, 0xB4, 0x1F, 0xC4, 0x1F, 0xD3, 0x1F, 0xD7, 0x1F, 0xDB, 0x1F, 0xEF, + 0x1F, 0xF4, 0x1F, 0xFE, 0x20, 0x0B, 0x20, 0x27, 0x20, 0x55, 0x20, 0x57, + 0x20, 0x5F, 0x20, 0x71, 0x20, 0x8E, 0x20, 0x9C, 0x20, 0xAF, 0x20, 0xB5, + 0x20, 0xBA, 0x20, 0xBF, 0x20, 0xDE, 0x20, 0xE8, 0x20, 0xF0, 0x21, 0x01, + 0x21, 0x03, 0x21, 0x06, 0x21, 0x09, 0x21, 0x13, 0x21, 0x17, 0x21, 0x22, + 0x21, 0x26, 0x21, 0x2B, 0x21, 0x2E, 0x21, 0x32, 0x21, 0x3B, 0x21, 0x4D, + 0x21, 0x5F, 0x21, 0x7F, 0x21, 0x86, 0x21, 0x89, 0x21, 0x95, 0x21, 0x99, + 0x21, 0xAA, 0x21, 0xB1, 0x21, 0xB5, 0x21, 0xBB, 0x21, 0xD0, 0x21, 0xD2, + 0x21, 0xD4, 0x21, 0xDF, 0x21, 0xE5, 0x21, 0xE7, 0x21, 0xEA, 0x22, 0x02, + 0x22, 0x06, 0x22, 0x0F, 0x22, 0x12, 0x22, 0x1A, 0x22, 0x1E, 0x22, 0x2B, + 0x22, 0x36, 0x22, 0x48, 0x22, 0x60, 0x22, 0x65, 0x22, 0x98, 0x23, 0x05, + 0x23, 0x18, 0x23, 0x27, 0x23, 0x2B, 0x23, 0x80, 0x23, 0x87, 0x23, 0x8B, + 0x23, 0xCF, 0x24, 0x23, 0x24, 0x68, 0x24, 0xCF, 0x24, 0xEA, 0x25, 0xA2, + 0x25, 0xAA, 0x25, 0xB3, 0x25, 0xB7, 0x25, 0xBD, 0x25, 0xC1, 0x25, 0xC7, + 0x25, 0xCB, 0x25, 0xCF, 0x25, 0xE6, 0x25, 0xEF, 0x26, 0x00, 0x26, 0x06, + 0x26, 0x3C, 0x26, 0x61, 0x26, 0x65, 0x26, 0xA0, 0x27, 0x13, 0x27, 0x17, + 0x27, 0x56, 0x27, 0x64, 0x27, 0x88, 0x27, 0xEF, 0x27, 0xFA, 0x29, 0x13, + 0x2A, 0x38, 0x2B, 0x06, 0x2B, 0x13, 0x2B, 0x1C, 0x2B, 0x24, 0x2C, 0x7C, + 0x2C, 0x7F, 0x2D, 0xFF, 0x2E, 0x18, 0xA6, 0x9F, 0xA7, 0xFF, 0xA9, 0x2E, + 0xE0, 0x00, 0xE0, 0x0B, 0xE0, 0x2B, 0xE0, 0x4A, 0xE0, 0x4F, 0xE0, 0x5C, + 0xE0, 0x5E, 0xE0, 0x6A, 0xE0, 0x80, 0xE0, 0x87, 0xE0, 0x91, 0xE0, 0x96, + 0xE0, 0xA3, 0xE0, 0xBD, 0xE0, 0xCC, 0xE0, 0xE6, 0xE0, 0xF5, 0xE1, 0x06, + 0xE1, 0x0A, 0xE1, 0x0F, 0xE1, 0x13, 0xE1, 0x18, 0xE1, 0x22, 0xE1, 0x24, + 0xE1, 0x2A, 0xE1, 0x37, 0xE1, 0x3D, 0xE1, 0x56, 0xE1, 0x5A, 0xE1, 0x5E, + 0xE1, 0x63, 0xE1, 0xC3, 0xE1, 0xDF, 0xE1, 0xE1, 0xE2, 0xC7, 0xE2, 0xD8, + 0xE2, 0xDC, 0xEE, 0x07, 0xEE, 0x0A, 0xEE, 0x12, 0xEE, 0x14, 0xEE, 0x17, + 0xEE, 0x25, 0xEE, 0x45, 0xEE, 0x47, 0xEE, 0x71, 0xEE, 0x84, 0xEE, 0x87, + 0xEE, 0x8F, 0xEE, 0x99, 0xEE, 0x9C, 0xEE, 0xA6, 0xEE, 0xD2, 0xEE, 0xD6, + 0xEE, 0xDE, 0xEE, 0xE1, 0xF6, 0xC3, 0xFE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x20, 0x00, 0xA0, 0x00, 0xAE, 0x01, 0x4A, 0x01, 0xC5, + 0x02, 0x56, 0x02, 0x7E, 0x02, 0x86, 0x02, 0x92, 0x02, 0xA6, 0x02, 0xF0, + 0x02, 0xF8, 0x03, 0x06, 0x03, 0x0C, 0x03, 0x0F, 0x03, 0x13, 0x03, 0x15, + 0x03, 0x1B, 0x03, 0x23, 0x03, 0x26, 0x03, 0x2C, 0x03, 0x37, 0x03, 0x42, + 0x03, 0x46, 0x03, 0x63, 0x03, 0x74, 0x03, 0x7A, 0x03, 0x84, 0x03, 0x8C, + 0x03, 0x8E, 0x03, 0xA3, 0x03, 0xDC, 0x03, 0xF0, 0x03, 0xF9, 0x03, 0xFC, + 0x04, 0x80, 0x04, 0xA0, 0x05, 0x2F, 0x0E, 0x3F, 0x1D, 0x00, 0x1D, 0x0D, + 0x1D, 0x1B, 0x1D, 0x43, 0x1D, 0x47, 0x1D, 0x4D, 0x1D, 0x4F, 0x1D, 0x52, + 0x1D, 0x56, 0x1D, 0x5B, 0x1D, 0x62, 0x1D, 0x9C, 0x1D, 0xA0, 0x1D, 0xBB, + 0x1D, 0xBF, 0x1D, 0xCB, 0x1D, 0xD3, 0x1D, 0xD8, 0x1D, 0xE8, 0x1D, 0xEA, + 0x1D, 0xFC, 0x1E, 0x00, 0x1E, 0x9D, 0x1F, 0x00, 0x1F, 0x08, 0x1F, 0x10, + 0x1F, 0x18, 0x1F, 0x20, 0x1F, 0x28, 0x1F, 0x30, 0x1F, 0x38, 0x1F, 0x40, + 0x1F, 0x48, 0x1F, 0x50, 0x1F, 0x59, 0x1F, 0x5B, 0x1F, 0x5D, 0x1F, 0x5F, + 0x1F, 0x60, 0x1F, 0x68, 0x1F, 0x70, 0x1F, 0x80, 0x1F, 0x88, 0x1F, 0x90, + 0x1F, 0x98, 0x1F, 0xA0, 0x1F, 0xA8, 0x1F, 0xB0, 0x1F, 0xB6, 0x1F, 0xC6, + 0x1F, 0xD6, 0x1F, 0xD8, 0x1F, 0xDD, 0x1F, 0xF2, 0x1F, 0xF6, 0x20, 0x00, + 0x20, 0x10, 0x20, 0x2F, 0x20, 0x57, 0x20, 0x5F, 0x20, 0x70, 0x20, 0x74, + 0x20, 0x90, 0x20, 0xA0, 0x20, 0xB1, 0x20, 0xB8, 0x20, 0xBC, 0x20, 0xDB, + 0x20, 0xE8, 0x20, 0xF0, 0x21, 0x00, 0x21, 0x03, 0x21, 0x05, 0x21, 0x09, + 0x21, 0x13, 0x21, 0x16, 0x21, 0x1E, 0x21, 0x26, 0x21, 0x2A, 0x21, 0x2E, + 0x21, 0x32, 0x21, 0x3B, 0x21, 0x4D, 0x21, 0x50, 0x21, 0x60, 0x21, 0x83, + 0x21, 0x89, 0x21, 0x90, 0x21, 0x96, 0x21, 0xA9, 0x21, 0xB0, 0x21, 0xB3, + 0x21, 0xBA, 0x21, 0xD0, 0x21, 0xD2, 0x21, 0xD4, 0x21, 0xDE, 0x21, 0xE4, + 0x21, 0xE7, 0x21, 0xEA, 0x22, 0x02, 0x22, 0x05, 0x22, 0x0F, 0x22, 0x11, + 0x22, 0x1A, 0x22, 0x1E, 0x22, 0x2B, 0x22, 0x36, 0x22, 0x48, 0x22, 0x60, + 0x22, 0x64, 0x22, 0x95, 0x23, 0x03, 0x23, 0x18, 0x23, 0x25, 0x23, 0x2B, + 0x23, 0x80, 0x23, 0x87, 0x23, 0x8B, 0x23, 0xCE, 0x24, 0x23, 0x24, 0x60, + 0x24, 0xB6, 0x24, 0xEA, 0x25, 0xA0, 0x25, 0xAA, 0x25, 0xB2, 0x25, 0xB6, + 0x25, 0xBA, 0x25, 0xC0, 0x25, 0xC4, 0x25, 0xCA, 0x25, 0xCF, 0x25, 0xE6, + 0x25, 0xEF, 0x26, 0x00, 0x26, 0x05, 0x26, 0x3C, 0x26, 0x61, 0x26, 0x65, + 0x26, 0xA0, 0x27, 0x13, 0x27, 0x17, 0x27, 0x56, 0x27, 0x64, 0x27, 0x80, + 0x27, 0xEF, 0x27, 0xF5, 0x29, 0x13, 0x2A, 0x38, 0x2B, 0x06, 0x2B, 0x12, + 0x2B, 0x1C, 0x2B, 0x24, 0x2C, 0x7C, 0x2C, 0x7F, 0x2D, 0xFF, 0x2E, 0x18, + 0xA6, 0x9F, 0xA7, 0xFF, 0xA9, 0x2E, 0xE0, 0x00, 0xE0, 0x02, 0xE0, 0x0C, + 0xE0, 0x2C, 0xE0, 0x4B, 0xE0, 0x50, 0xE0, 0x5D, 0xE0, 0x6A, 0xE0, 0x6B, + 0xE0, 0x81, 0xE0, 0x88, 0xE0, 0x92, 0xE0, 0x97, 0xE0, 0xA4, 0xE0, 0xC8, + 0xE0, 0xDC, 0xE0, 0xF3, 0xE1, 0x06, 0xE1, 0x09, 0xE1, 0x0C, 0xE1, 0x11, + 0xE1, 0x17, 0xE1, 0x21, 0xE1, 0x24, 0xE1, 0x2A, 0xE1, 0x2B, 0xE1, 0x38, + 0xE1, 0x3E, 0xE1, 0x57, 0xE1, 0x5B, 0xE1, 0x63, 0xE1, 0xC3, 0xE1, 0xD2, + 0xE1, 0xE1, 0xE1, 0xE2, 0xE2, 0xC8, 0xE2, 0xD9, 0xEE, 0x01, 0xEE, 0x09, + 0xEE, 0x0C, 0xEE, 0x14, 0xEE, 0x17, 0xEE, 0x1D, 0xEE, 0x26, 0xEE, 0x47, + 0xEE, 0x48, 0xEE, 0x72, 0xEE, 0x87, 0xEE, 0x88, 0xEE, 0x90, 0xEE, 0x9A, + 0xEE, 0x9D, 0xEE, 0xA7, 0xEE, 0xD3, 0xEE, 0xD8, 0xEE, 0xDF, 0xF6, 0xC3, + 0xFE, 0xFF, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x07, 0x43, 0x00, 0x00, 0x00, 0x00, 0x07, 0x82, 0x03, 0xDB, + 0x07, 0x7F, 0x07, 0x7E, 0x07, 0x79, 0x03, 0xCA, 0x00, 0x00, 0x07, 0x6B, + 0x07, 0x61, 0x07, 0x38, 0x07, 0x54, 0x06, 0xEC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFD, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0xF6, 0xFA, + 0xEC, 0x6D, 0xEC, 0x62, 0xEC, 0x55, 0xE8, 0xE2, 0x00, 0x00, 0xE8, 0xDE, + 0x00, 0x00, 0xE8, 0xE1, 0x00, 0x00, 0xE8, 0xDF, 0x00, 0x00, 0xE8, 0x8B, + 0xE8, 0x8A, 0xE8, 0x83, 0x00, 0x00, 0xEC, 0xF9, 0x00, 0x00, 0xEC, 0x89, + 0x00, 0x00, 0xEC, 0xE4, 0xEC, 0xDE, 0x00, 0x00, 0x00, 0x00, 0xE5, 0x56, + 0xE1, 0x1B, 0xE5, 0x68, 0xE1, 0x65, 0xE5, 0x62, 0xE1, 0x89, 0xE5, 0x6D, + 0xE1, 0xA4, 0xE3, 0xFD, 0xE2, 0x20, 0xE5, 0x69, 0xE2, 0x8E, 0xE2, 0x8D, + 0xE2, 0x8C, 0xE2, 0x8B, 0xE5, 0x6C, 0xE4, 0xAB, 0x00, 0x00, 0xE4, 0xDF, + 0xE0, 0xAB, 0xE4, 0xFB, 0xE1, 0x24, 0xE5, 0x35, 0xE4, 0x74, 0xE4, 0xB7, + 0x00, 0x00, 0x00, 0x00, 0xE4, 0xD3, 0xE1, 0x0C, 0x00, 0x00, 0xE4, 0xEB, + 0x00, 0x00, 0xE6, 0xF3, 0x00, 0x00, 0x00, 0x00, 0xE5, 0x7E, 0xE6, 0x93, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xE9, 0xD2, 0xE9, 0xEE, 0xE5, 0xD4, 0xE5, 0xFD, + 0x00, 0x00, 0xE5, 0xF8, 0xE9, 0x38, 0x00, 0x00, 0x00, 0x00, 0xE2, 0xEA, + 0xE5, 0xD8, 0xE5, 0xD7, 0xDF, 0x5A, 0xE4, 0xD7, 0xE5, 0x84, 0x00, 0x00, + 0xE8, 0x87, 0x00, 0x00, 0xE5, 0x33, 0x00, 0x00, 0xE5, 0x7A, 0xE5, 0x73, + 0xE5, 0xB1, 0x00, 0x00, 0xE5, 0x9E, 0xE5, 0x39, 0xE5, 0x3C, 0xE5, 0x42, + 0xE5, 0x88, 0xE5, 0x80, 0xE5, 0x67, 0xE5, 0x65, 0xE4, 0x1C, 0x00, 0x00, + 0xE4, 0x11, 0x00, 0x00, 0xE4, 0x08, 0xE3, 0xFF, 0xE3, 0xF6, 0xE3, 0xAB, + 0xE3, 0xAD, 0xE3, 0x8F, 0xE3, 0x88, 0x00, 0x00, 0x00, 0x00, 0xE4, 0x38, + 0x00, 0x00, 0xE4, 0x2F, 0xE3, 0xD4, 0xE3, 0xCF, 0xE3, 0xCC, 0x00, 0x00, + 0xE6, 0x29, 0xE3, 0x28, 0xE2, 0xB7, 0xE2, 0x9D, 0xE1, 0x9D, 0xE0, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xE1, 0x6C, 0xDF, 0xD1, 0xE1, 0x7A, 0xE1, 0x47, 0xE1, 0x46, 0xE1, 0x0A, + 0xE0, 0xE7, 0xE0, 0xE4, 0xE0, 0x9A, 0xE0, 0x1D, 0xE0, 0x1A, 0xDF, 0xED, + 0xDF, 0xE6, 0xE0, 0x08, 0xE2, 0x1D, 0x00, 0x00, 0xDE, 0x07, 0xDD, 0x6A, + 0xDC, 0x47, 0xDC, 0x2E, 0xDC, 0x4E, 0xDC, 0x44, 0xD9, 0xE3, 0xD5, 0x7B, + 0xDD, 0x37, 0xD7, 0x82, 0x63, 0xDA, 0x61, 0x77, 0x60, 0xDD, 0x27, 0x45, + 0x20, 0x95, 0x20, 0xDE, 0x21, 0xF7, 0x00, 0x00, 0x22, 0x9F, 0x00, 0x00, + 0x23, 0x0D, 0x24, 0xDC, 0x25, 0x23, 0x25, 0x35, 0x00, 0x00, 0x25, 0x60, + 0x00, 0x00, 0x25, 0xD0, 0x00, 0x00, 0x2A, 0x50, 0x29, 0xDE, 0x00, 0x00, + 0x00, 0x00, 0x29, 0xD8, 0x29, 0xD5, 0x29, 0xCD, 0x29, 0xCC, 0x29, 0xC7, + 0x26, 0x66, 0x00, 0x00, 0x26, 0x87, 0x26, 0x88, 0x26, 0x89, 0x24, 0xD2, + 0x24, 0x04, 0x25, 0x4C, 0x29, 0x67, 0x26, 0x21, 0x26, 0x25, 0x26, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x9F, 0x14, 0xC8, 0x15, 0x6B, + 0x15, 0x8C, 0x17, 0x19, 0x17, 0x1A, 0x00, 0x00, 0x1C, 0xC2, 0x19, 0x70, + 0x1C, 0xBA, 0x00, 0x00, 0x1C, 0xB8, 0x1C, 0x4D, 0x00, 0x00, 0x1C, 0x8A, + 0x00, 0x00, 0x10, 0x24, 0x0B, 0x0B, 0x00, 0x01, 0x00, 0x00, 0x02, 0x06, + 0x02, 0xC2, 0x02, 0xDA, 0x04, 0x0E, 0x05, 0x00, 0x06, 0x1E, 0x06, 0x68, + 0x06, 0x74, 0x06, 0x88, 0x06, 0xAC, 0x00, 0x00, 0x07, 0x3C, 0x07, 0x54, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x07, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x07, 0x4A, 0x07, 0x4E, 0x07, 0x58, 0x00, 0x00, 0x07, 0x62, 0x07, 0x88, + 0x07, 0xF0, 0x07, 0xF2, 0x07, 0xFE, 0x08, 0x00, 0x08, 0xFA, 0x09, 0x34, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x09, 0xE6, 0x00, 0x00, 0x09, 0xE8, 0x00, 0x00, 0x09, 0xE8, 0x00, 0x00, + 0x09, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0xEA, 0x00, 0x00, + 0x09, 0xFE, 0x00, 0x00, 0x0A, 0x04, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x02, + 0x0B, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0B, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0B, 0xE6, 0x0C, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x0C, 0x18, 0x00, 0x00, 0x0C, 0x3A, 0x00, 0x00, 0x0C, 0x48, 0x0C, 0x76, + 0x00, 0x00, 0x00, 0x00, 0x0C, 0xBE, 0x0C, 0xC0, 0x0C, 0xF4, 0x0D, 0x0C, + 0x0D, 0x2A, 0x0D, 0x32, 0x0D, 0x36, 0x0D, 0x3C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0D, 0x3A, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x38, + 0x0D, 0x3A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x36, 0x00, 0x00, 0x0D, 0x52, 0x00, 0x00, 0x0D, 0x56, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x5A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x4C, 0x00, 0x00, 0x0D, 0x4C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x40, + 0x0D, 0x46, 0x00, 0x00, 0x0D, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0D, 0x3A, 0x0D, 0x3C, 0x0D, 0x3E, 0x0D, 0x44, + 0x0D, 0x46, 0x0D, 0x4C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x30, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x18, + 0x00, 0x00, 0x0D, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0D, 0x18, 0x00, 0x00, 0x0D, 0x1E, 0x00, 0x00, 0x0D, 0x4E, 0x00, 0x00, + 0x00, 0x00, 0x0D, 0x5E, 0x0D, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x5A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0D, 0x50, 0x0D, 0x5C, 0x0D, 0x5E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x5E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x7C, 0x00, 0x00, 0x00, 0x00, + 0x0D, 0x7C, 0x00, 0x00, 0x0D, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x06, 0xEF, 0x05, 0x91, 0x05, 0xCB, 0x05, 0xAB, 0x05, 0x1B, 0x06, 0xCE, + 0x05, 0x8F, 0x05, 0xCA, 0x05, 0x9B, 0x05, 0x9C, 0x06, 0x09, 0x05, 0xF0, + 0x05, 0xDB, 0x05, 0xB1, 0x05, 0xDC, 0x05, 0xAD, 0x05, 0x3B, 0x05, 0x3C, + 0x05, 0x3D, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, + 0x05, 0x45, 0x05, 0x46, 0x05, 0xDF, 0x05, 0xE2, 0x05, 0xEA, 0x05, 0xEE, + 0x05, 0xEB, 0x05, 0x95, 0x05, 0xA3, 0x00, 0x02, 0x00, 0x41, 0x00, 0x49, + 0x00, 0x54, 0x00, 0x5F, 0x00, 0x89, 0x00, 0x8D, 0x00, 0xA1, 0x00, 0xC5, + 0x01, 0x0A, 0x01, 0x0F, 0x01, 0x19, 0x01, 0x24, 0x01, 0x2C, 0x01, 0x41, + 0x01, 0x77, 0x01, 0x7E, 0x01, 0x80, 0x01, 0x8D, 0x01, 0x9B, 0x01, 0xA8, + 0x01, 0xC8, 0x01, 0xCB, 0x01, 0xD2, 0x01, 0xD8, 0x01, 0xF0, 0x05, 0x9D, + 0x05, 0xB0, 0x05, 0x9F, 0x06, 0x08, 0x06, 0x05, 0x06, 0xD8, 0x01, 0xFB, + 0x02, 0x42, 0x02, 0x4A, 0x02, 0x55, 0x02, 0x66, 0x02, 0x87, 0x02, 0x92, + 0x02, 0x9E, 0x02, 0xB1, 0x02, 0xCF, 0x02, 0xD7, 0x02, 0xE0, 0x02, 0xFE, + 0x03, 0x05, 0x03, 0x16, 0x03, 0x4B, 0x03, 0x51, 0x03, 0x54, 0x03, 0x67, + 0x03, 0x78, 0x03, 0x91, 0x03, 0xD2, 0x03, 0xD6, 0x03, 0xDF, 0x03, 0xE4, + 0x03, 0xFC, 0x05, 0xA1, 0x05, 0xAE, 0x05, 0xA2, 0x05, 0xF6, 0x06, 0xF0, + 0x05, 0x93, 0x05, 0x1C, 0x05, 0x1E, 0x05, 0xAC, 0x05, 0x1D, 0x05, 0xAF, + 0x06, 0x1C, 0x06, 0xDA, 0x06, 0x0C, 0x06, 0x16, 0x05, 0xE8, 0x06, 0x04, + 0x06, 0x0B, 0x06, 0xDE, 0x06, 0x15, 0x05, 0xF4, 0x06, 0x43, 0x06, 0x44, + 0x06, 0xD6, 0x03, 0x95, 0x06, 0x1A, 0x05, 0xE3, 0x06, 0xE5, 0x06, 0x41, + 0x06, 0x17, 0x05, 0xE9, 0x06, 0xBF, 0x06, 0xBB, 0x06, 0xC0, 0x05, 0x98, + 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x04, 0x00, 0x03, 0x00, 0x08, + 0x00, 0x3D, 0x00, 0x4B, 0x00, 0x60, 0x00, 0x61, 0x00, 0x62, 0x00, 0x63, + 0x00, 0xCB, 0x00, 0xCC, 0x00, 0xCD, 0x00, 0xC7, 0x09, 0x1A, 0x01, 0x2D, + 0x01, 0x46, 0x01, 0x47, 0x01, 0x48, 0x01, 0x43, 0x01, 0x42, 0x05, 0xF2, + 0x01, 0x44, 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xAC, 0x01, 0xAD, 0x01, 0xDA, + 0x04, 0x07, 0x03, 0x76, 0x02, 0x10, 0x01, 0xFC, 0x02, 0x04, 0x02, 0x1A, + 0x02, 0x0B, 0x02, 0x16, 0x02, 0x1F, 0x02, 0x4D, 0x02, 0x69, 0x02, 0x6A, + 0x02, 0x6B, 0x02, 0x67, 0x02, 0xBA, 0x02, 0xBB, 0x02, 0xBC, 0x02, 0xB4, + 0x04, 0x53, 0x03, 0x06, 0x03, 0x1B, 0x03, 0x1C, 0x03, 0x1D, 0x03, 0x18, + 0x03, 0x17, 0x05, 0xF3, 0x03, 0x19, 0x03, 0x97, 0x03, 0x98, 0x03, 0x99, + 0x03, 0x92, 0x03, 0xE8, 0x02, 0x49, 0x03, 0xE5, 0x00, 0x0B, 0x02, 0x13, + 0x00, 0x0C, 0x01, 0xFD, 0x00, 0x0D, 0x02, 0x14, 0x00, 0x4C, 0x02, 0x4E, + 0x00, 0x4D, 0x02, 0x4F, 0x00, 0x4E, 0x02, 0x50, 0x00, 0x4F, 0x02, 0x51, + 0x00, 0x56, 0x02, 0x5B, 0x09, 0x18, 0x02, 0x56, 0x00, 0x64, 0x02, 0x6C, + 0x00, 0x65, 0x02, 0x6D, 0x00, 0x66, 0x02, 0x6E, 0x00, 0x67, 0x02, 0x6F, + 0x00, 0x68, 0x02, 0x70, 0x00, 0x90, 0x02, 0x95, 0x00, 0x91, 0x02, 0x96, + 0x00, 0x92, 0x02, 0x97, 0x00, 0x93, 0x02, 0x98, 0x00, 0xA3, 0x02, 0xA9, + 0x00, 0xA9, 0x02, 0xA8, 0x00, 0xCE, 0x02, 0xB6, 0x00, 0xCF, 0x02, 0xBD, + 0x00, 0xD0, 0x02, 0xBE, 0x00, 0xD1, 0x02, 0xC0, 0x00, 0xD2, 0x02, 0xB2, + 0x09, 0x22, 0x02, 0xCD, 0x01, 0x0B, 0x02, 0xD2, 0x01, 0x10, 0x02, 0xD9, + 0x09, 0x50, 0x01, 0x1A, 0x02, 0xE8, 0x01, 0x1B, 0x02, 0xE9, 0x01, 0x1C, + 0x02, 0xEA, 0x09, 0x24, 0x02, 0xE7, 0x01, 0x21, 0x02, 0xE1, 0x01, 0x2E, + 0x03, 0x0C, 0x01, 0x2F, 0x03, 0x0D, 0x01, 0x30, 0x03, 0x0E, 0x01, 0x37, + 0x03, 0x08, 0x01, 0x49, 0x03, 0x1E, 0x01, 0x4A, 0x03, 0x1F, 0x01, 0x4B, + 0x03, 0x20, 0x01, 0x76, 0x03, 0x48, 0x01, 0x81, 0x03, 0x5C, 0x01, 0x82, + 0x03, 0x5D, 0x01, 0x83, 0x03, 0x5E, 0x01, 0x8E, 0x03, 0x6A, 0x01, 0x8F, + 0x03, 0x6B, 0x01, 0x90, 0x03, 0x6C, 0x01, 0x91, 0x03, 0x6D, 0x01, 0x9C, + 0x03, 0x7F, 0x01, 0x9D, 0x03, 0x80, 0x09, 0x27, 0x03, 0x7E, 0x01, 0xAE, + 0x03, 0x93, 0x01, 0xAF, 0x03, 0x9A, 0x01, 0xB0, 0x03, 0x9B, 0x01, 0xB1, + 0x03, 0x9C, 0x01, 0xB2, 0x03, 0x9D, 0x01, 0xB3, 0x03, 0x9E, 0x01, 0xCC, + 0x03, 0xD9, 0x01, 0xDB, 0x03, 0xE9, 0x01, 0xDC, 0x01, 0xF1, 0x04, 0x01, + 0x01, 0xF2, 0x04, 0x02, 0x01, 0xF3, 0x04, 0x03, 0x02, 0x8D, 0x02, 0x43, + 0x00, 0x46, 0x09, 0x16, 0x02, 0x44, 0x09, 0x28, 0x09, 0x5B, 0x00, 0x52, + 0x00, 0x4A, 0x02, 0x4C, 0x00, 0x5C, 0x00, 0x55, 0x09, 0x19, 0x02, 0x59, + 0x09, 0x39, 0x00, 0x7A, 0x09, 0x1D, 0x09, 0x1B, 0x00, 0x8A, 0x05, 0x1F, + 0x00, 0x8F, 0x04, 0x29, 0x02, 0xA4, 0x00, 0xD8, 0x00, 0xC9, 0x01, 0x17, + 0x02, 0xD8, 0x02, 0xE2, 0x09, 0x51, 0x09, 0x2B, 0x01, 0x36, 0x03, 0x0B, + 0x01, 0x73, 0x01, 0x45, 0x03, 0x1A, 0x09, 0x26, 0x09, 0x53, 0x01, 0x7B, + 0x03, 0x4D, 0x09, 0x2A, 0x01, 0x99, 0x03, 0x75, 0x09, 0x1C, 0x09, 0x3D, + 0x03, 0x79, 0x01, 0xA3, 0x09, 0x59, 0x01, 0xA5, 0x01, 0xA9, 0x03, 0x94, + 0x04, 0x25, 0x09, 0x29, 0x01, 0xD9, 0x03, 0xE6, 0x01, 0xF8, 0x03, 0xFD, + 0x09, 0x1E, 0x09, 0x20, 0x09, 0x43, 0x09, 0x44, 0x05, 0x3E, 0x05, 0x42, + 0x09, 0x5A, 0x09, 0x4A, 0x09, 0x6C, 0x09, 0x73, 0x09, 0x74, 0x09, 0x75, + 0x09, 0x72, 0x00, 0x5E, 0x02, 0x63, 0x09, 0x23, 0x01, 0x23, 0x02, 0xD6, + 0x09, 0x25, 0x01, 0x40, 0x03, 0x14, 0x00, 0x0E, 0x02, 0x03, 0x00, 0xD3, + 0x02, 0xC1, 0x01, 0x4C, 0x03, 0x21, 0x01, 0xB4, 0x03, 0x9F, 0x01, 0xB5, + 0x03, 0xA0, 0x01, 0xB6, 0x03, 0xA1, 0x01, 0xB7, 0x03, 0xA2, 0x01, 0xB8, + 0x03, 0xA3, 0x02, 0x85, 0x00, 0x0F, 0x02, 0x0C, 0x00, 0x10, 0x02, 0x0F, + 0x00, 0x3E, 0x02, 0x20, 0x00, 0x8E, 0x02, 0x94, 0x00, 0x94, 0x02, 0x99, + 0x01, 0x11, 0x02, 0xDA, 0x01, 0x4D, 0x03, 0x22, 0x01, 0x4E, 0x03, 0x23, + 0x09, 0x1F, 0x09, 0x41, 0x02, 0xD3, 0x09, 0x17, 0x00, 0x5D, 0x02, 0x61, + 0x00, 0x95, 0x02, 0x9A, 0x00, 0xAE, 0x09, 0x2C, 0x01, 0x31, 0x03, 0x0F, + 0x00, 0x09, 0x02, 0x17, 0x00, 0x3F, 0x02, 0x21, 0x01, 0x65, 0x03, 0x3A, + 0x00, 0x11, 0x02, 0x0A, 0x00, 0x12, 0x02, 0x12, 0x00, 0x69, 0x02, 0x71, + 0x00, 0x6A, 0x02, 0x72, 0x00, 0xD4, 0x02, 0xC2, 0x00, 0xD5, 0x02, 0xC3, + 0x01, 0x4F, 0x03, 0x24, 0x01, 0x50, 0x03, 0x25, 0x01, 0x84, 0x03, 0x5F, + 0x01, 0x85, 0x03, 0x60, 0x01, 0xB9, 0x03, 0xA4, 0x01, 0xBA, 0x03, 0xA5, + 0x01, 0x92, 0x03, 0x6E, 0x01, 0x9E, 0x03, 0x81, 0x09, 0x21, 0x09, 0x4E, + 0x00, 0xA4, 0x02, 0xAA, 0x09, 0x2D, 0x02, 0x5A, 0x09, 0x2E, 0x09, 0x5D, + 0x01, 0xF7, 0x03, 0xFE, 0x00, 0x13, 0x02, 0x0D, 0x00, 0x6B, 0x02, 0x73, + 0x01, 0x51, 0x03, 0x26, 0x01, 0x52, 0x03, 0x27, 0x01, 0x53, 0x03, 0x28, + 0x01, 0x54, 0x03, 0x29, 0x01, 0xDD, 0x03, 0xEA, 0x02, 0xE6, 0x03, 0x09, + 0x03, 0x7B, 0x02, 0xC7, 0x09, 0x5E, 0x09, 0x5F, 0x00, 0x2E, 0x00, 0x51, + 0x02, 0x4B, 0x01, 0x22, 0x01, 0xA6, 0x03, 0x69, 0x03, 0xFF, 0x09, 0x2F, + 0x09, 0x60, 0x00, 0x45, 0x01, 0xC7, 0x09, 0x30, 0x00, 0x79, 0x02, 0x68, + 0x01, 0x0C, 0x02, 0xC9, 0x01, 0x7F, 0x03, 0x53, 0x01, 0x8C, 0x03, 0x56, + 0x01, 0xE3, 0x03, 0xE7, 0x02, 0x1B, 0x09, 0x35, 0x09, 0x36, 0x02, 0x45, + 0x09, 0x55, 0x02, 0x57, 0x02, 0x58, 0x09, 0x3A, 0x09, 0x3E, 0x09, 0x3F, + 0x04, 0x74, 0x04, 0x75, 0x04, 0x77, 0x04, 0x76, 0x02, 0xC8, 0x02, 0x93, + 0x09, 0x47, 0x02, 0x9C, 0x04, 0xE2, 0x09, 0x37, 0x02, 0xA5, 0x02, 0xA2, + 0x02, 0xA3, 0x02, 0xB9, 0x04, 0x99, 0x02, 0xCE, 0x02, 0xE3, 0x02, 0xE5, + 0x02, 0xE4, 0x09, 0x52, 0x03, 0x00, 0x03, 0x01, 0x02, 0xFF, 0x03, 0x0A, + 0x03, 0x07, 0x03, 0x15, 0x03, 0x45, 0x03, 0x49, 0x09, 0x54, 0x09, 0x56, + 0x03, 0x57, 0x09, 0x57, 0x03, 0x58, 0x03, 0x5A, 0x03, 0x59, 0x03, 0x65, + 0x03, 0x66, 0x03, 0x68, 0x09, 0x3B, 0x09, 0x4F, 0x09, 0x3C, 0x03, 0x7D, + 0x03, 0x7A, 0x03, 0x96, 0x09, 0x6A, 0x09, 0x6B, 0x03, 0xD3, 0x03, 0xD8, + 0x03, 0xF6, 0x03, 0xFB, 0x04, 0x00, 0x09, 0x40, 0x09, 0x42, 0x09, 0x48, + 0x09, 0x4D, 0x09, 0x4C, 0x09, 0x38, 0x07, 0x04, 0x09, 0x61, 0x04, 0x73, + 0x02, 0x9D, 0x09, 0x6E, 0x02, 0xD1, 0x02, 0xDE, 0x02, 0xFD, 0x03, 0x52, + 0x09, 0x49, 0x09, 0x4B, 0x02, 0x62, 0x02, 0x64, 0x09, 0x5C, 0x09, 0x58, + 0x03, 0x7C, 0x02, 0x91, 0x09, 0x45, 0x09, 0x62, 0x09, 0x63, 0x09, 0x46, + 0x02, 0xA6, 0x02, 0xA7, 0x06, 0x2C, 0x09, 0x79, 0x06, 0x2E, 0x06, 0x36, + 0x09, 0x7A, 0x09, 0x78, 0x09, 0x77, 0x06, 0x3B, 0x06, 0x3D, 0x05, 0xD9, + 0x05, 0xDA, 0x0B, 0x2D, 0x05, 0xC9, 0x0B, 0x2C, 0x0B, 0x34, 0x0B, 0x33, + 0x0B, 0x2E, 0x0B, 0x2F, 0x0A, 0x27, 0x0A, 0x28, 0x0A, 0x29, 0x0A, 0x26, + 0x06, 0xDC, 0x06, 0xE3, 0x0B, 0x31, 0x0A, 0xDF, 0x0A, 0xE0, 0x0A, 0xE1, + 0x0B, 0x35, 0x0B, 0x32, 0x0B, 0x30, 0x0B, 0x29, 0x0B, 0x2B, 0x0B, 0x2A, + 0x0A, 0x30, 0x0A, 0x2F, 0x0A, 0x42, 0x0A, 0x2A, 0x0A, 0x2D, 0x0A, 0x2C, + 0x06, 0xDF, 0x06, 0xE1, 0x06, 0xE2, 0x06, 0xE6, 0x06, 0xDD, 0x06, 0xD7, + 0x0A, 0x49, 0x0A, 0x48, 0x0A, 0x21, 0x06, 0x30, 0x06, 0x37, 0x06, 0x3C, + 0x0A, 0x4A, 0x0A, 0x43, 0x0A, 0x45, 0x0A, 0x47, 0x0A, 0x46, 0x0A, 0x44, + 0x0A, 0xE2, 0x0A, 0xE3, 0x0A, 0x31, 0x0A, 0x32, 0x05, 0xCD, 0x0A, 0x2B, + 0x0A, 0x2E, 0x0A, 0x3B, 0x0A, 0x3C, 0x0A, 0x3D, 0x0A, 0x3E, 0x0A, 0x3F, + 0x0A, 0x40, 0x0A, 0x41, 0x06, 0xE9, 0x06, 0xE8, 0x0A, 0x8D, 0x06, 0xEC, + 0x06, 0xEB, 0x0A, 0x8F, 0x0A, 0x8C, 0x0A, 0x8B, 0x0A, 0x91, 0x0A, 0x90, + 0x06, 0xEE, 0x0A, 0x95, 0x0A, 0x96, 0x0A, 0x23, 0x0A, 0x24, 0x01, 0x3E, + 0x09, 0xE5, 0x09, 0xD0, 0x09, 0xD1, 0x09, 0xD2, 0x05, 0xE5, 0x01, 0x0D, + 0x06, 0xD9, 0x06, 0xE4, 0x00, 0x22, 0x05, 0xE4, 0x00, 0x7C, 0x00, 0xB0, + 0x00, 0xDA, 0x01, 0xE5, 0x04, 0x12, 0x04, 0x9A, 0x00, 0x21, 0x00, 0x48, + 0x04, 0x08, 0x04, 0x09, 0x00, 0x7B, 0x01, 0xF9, 0x00, 0xAF, 0x04, 0x0A, + 0x00, 0xD9, 0x01, 0x18, 0x00, 0x3C, 0x01, 0x29, 0x01, 0x3F, 0x04, 0x0B, + 0x01, 0x66, 0x04, 0x0C, 0x01, 0x7C, 0x04, 0x0D, 0x01, 0xA7, 0x01, 0xE4, + 0x04, 0x0E, 0x01, 0xD7, 0x04, 0x0F, 0x04, 0x10, 0x00, 0xDB, 0x01, 0xE6, + 0x04, 0x55, 0x04, 0x72, 0x04, 0x81, 0x04, 0x9B, 0x04, 0xB6, 0x04, 0x54, + 0x04, 0x6E, 0x04, 0x6F, 0x04, 0x70, 0x04, 0x71, 0x04, 0x7F, 0x04, 0x80, + 0x04, 0x98, 0x04, 0x99, 0x09, 0xCD, 0x04, 0xAB, 0x09, 0xCE, 0x09, 0xCF, + 0x04, 0xAC, 0x03, 0x3B, 0x04, 0xAD, 0x04, 0xAE, 0x04, 0xB2, 0x04, 0xB3, + 0x04, 0xB4, 0x04, 0xB5, 0x04, 0xC7, 0x03, 0xE3, 0x04, 0xC9, 0x04, 0xCA, + 0x04, 0x9C, 0x04, 0xB7, 0x03, 0x3C, 0x04, 0xB8, 0x04, 0xCB, 0x09, 0xC9, + 0x09, 0xD5, 0x09, 0xD6, 0x04, 0x26, 0x04, 0x27, 0x04, 0x28, 0x04, 0xC8, + 0x09, 0xD7, 0x09, 0xD4, 0x09, 0xC8, 0x09, 0xD3, 0x09, 0xD8, 0x09, 0xD9, + 0x02, 0x53, 0x02, 0xD4, 0x01, 0x6F, 0x09, 0xDA, 0x0A, 0x25, 0x00, 0x53, + 0x01, 0x2A, 0x04, 0xB1, 0x09, 0xCA, 0x09, 0xCB, 0x09, 0xCC, 0x00, 0x86, + 0x00, 0x87, 0x04, 0x52, 0x09, 0x7C, 0x04, 0x4C, 0x01, 0x98, 0x00, 0xE8, + 0x00, 0xE9, 0x01, 0x0E, 0x04, 0x45, 0x04, 0x46, 0x04, 0x3F, 0x09, 0x7F, + 0x01, 0x39, 0x09, 0x84, 0x04, 0x36, 0x00, 0x30, 0x04, 0x2A, 0x00, 0x47, + 0x09, 0x7B, 0x04, 0x2D, 0x00, 0x85, 0x04, 0x2E, 0x04, 0x30, 0x01, 0x38, + 0x01, 0x3A, 0x04, 0x31, 0x04, 0x34, 0x01, 0x2B, 0x00, 0xBB, 0x01, 0x71, + 0x09, 0x80, 0x09, 0x81, 0x09, 0x82, 0x09, 0x83, 0x04, 0x37, 0x04, 0x38, + 0x09, 0x85, 0x04, 0x39, 0x04, 0x3B, 0x04, 0x40, 0x04, 0x41, 0x04, 0x42, + 0x04, 0x43, 0x04, 0x44, 0x04, 0x47, 0x04, 0x48, 0x04, 0x49, 0x02, 0x1C, + 0x04, 0xE3, 0x04, 0xE4, 0x04, 0xE5, 0x04, 0xE8, 0x02, 0x81, 0x04, 0xE9, + 0x04, 0xEB, 0x04, 0xEC, 0x09, 0xA7, 0x04, 0xEE, 0x04, 0xF3, 0x04, 0xF6, + 0x04, 0xF8, 0x03, 0x46, 0x04, 0xFD, 0x03, 0x50, 0x02, 0x54, 0x04, 0xFE, + 0x03, 0xF1, 0x04, 0xFF, 0x03, 0xE2, 0x05, 0x02, 0x05, 0x04, 0x05, 0x07, + 0x05, 0x08, 0x05, 0x0A, 0x05, 0x0B, 0x05, 0x09, 0x05, 0x10, 0x05, 0x11, + 0x05, 0x12, 0x02, 0x82, 0x02, 0x83, 0x02, 0xA1, 0x09, 0xA4, 0x05, 0x15, + 0x03, 0x74, 0x02, 0xCB, 0x02, 0xCC, 0x02, 0xD5, 0x05, 0x0E, 0x05, 0x0F, + 0x02, 0xA0, 0x09, 0xA9, 0x09, 0xA8, 0x03, 0xF2, 0x05, 0x03, 0x09, 0x86, + 0x09, 0xAA, 0x09, 0x87, 0x05, 0x0D, 0x09, 0x88, 0x09, 0xAB, 0x09, 0x89, + 0x09, 0xAC, 0x09, 0x8A, 0x09, 0xAD, 0x09, 0x8B, 0x09, 0xAE, 0x09, 0x8C, + 0x09, 0xAF, 0x09, 0x8D, 0x09, 0xB0, 0x09, 0x8E, 0x09, 0xB1, 0x04, 0x35, + 0x03, 0x44, 0x04, 0x51, 0x05, 0x1A, 0x09, 0x8F, 0x09, 0xB2, 0x09, 0x90, + 0x03, 0x4A, 0x09, 0xA2, 0x09, 0xC7, 0x0A, 0x22, 0x0A, 0x74, 0x0A, 0x75, + 0x0A, 0x76, 0x0A, 0x77, 0x0A, 0x78, 0x0A, 0x72, 0x0A, 0x73, 0x01, 0x3D, + 0x04, 0xED, 0x09, 0xA3, 0x05, 0x0C, 0x01, 0x7A, 0x03, 0x4C, 0x04, 0x2B, + 0x04, 0xE6, 0x09, 0x7E, 0x09, 0xA6, 0x04, 0x4A, 0x05, 0x13, 0x04, 0x2F, + 0x04, 0xEA, 0x09, 0x91, 0x09, 0xB3, 0x01, 0x16, 0x04, 0xF0, 0x04, 0x32, + 0x04, 0xF1, 0x01, 0x15, 0x04, 0xF2, 0x00, 0xAB, 0x04, 0xF9, 0x00, 0xAD, + 0x04, 0xFA, 0x04, 0x4B, 0x05, 0x14, 0x04, 0x4D, 0x05, 0x16, 0x09, 0x92, + 0x09, 0xB4, 0x09, 0x93, 0x09, 0xB5, 0x09, 0x94, 0x09, 0xB6, 0x09, 0x95, + 0x09, 0xB7, 0x01, 0xD5, 0x05, 0x01, 0x04, 0x3A, 0x05, 0x17, 0x04, 0x3C, + 0x05, 0x05, 0x04, 0x3D, 0x05, 0x06, 0x04, 0x3E, 0x02, 0xB0, 0x04, 0x4E, + 0x05, 0x18, 0x09, 0x96, 0x09, 0xB8, 0x09, 0x97, 0x09, 0x98, 0x09, 0xB9, + 0x04, 0x33, 0x04, 0xEF, 0x09, 0x99, 0x04, 0xF4, 0x00, 0xAA, 0x04, 0xFB, + 0x00, 0xAC, 0x04, 0xFC, 0x09, 0x9A, 0x09, 0xBA, 0x01, 0x28, 0x04, 0xF7, + 0x02, 0xFC, 0x00, 0x31, 0x02, 0x1D, 0x00, 0x32, 0x02, 0x1E, 0x00, 0x40, + 0x02, 0x22, 0x00, 0x88, 0x02, 0x84, 0x04, 0x4F, 0x09, 0xBB, 0x09, 0x9B, + 0x09, 0xBC, 0x09, 0x9C, 0x09, 0xBD, 0x09, 0x9D, 0x09, 0xBE, 0x04, 0x50, + 0x05, 0x19, 0x01, 0x3B, 0x09, 0xBF, 0x01, 0x3C, 0x09, 0xC0, 0x01, 0x72, + 0x03, 0x47, 0x01, 0x74, 0x09, 0xC1, 0x01, 0x75, 0x09, 0xC2, 0x09, 0x9E, + 0x09, 0xC3, 0x03, 0xF7, 0x03, 0xF3, 0x03, 0xF8, 0x03, 0xF4, 0x03, 0xF9, + 0x03, 0xF5, 0x09, 0x9F, 0x09, 0xC4, 0x09, 0x7D, 0x09, 0xA5, 0x09, 0xA0, + 0x09, 0xC5, 0x04, 0x2C, 0x04, 0xE7, 0x01, 0xD6, 0x05, 0x00, 0x09, 0xA1, + 0x09, 0xC6, 0x06, 0x26, 0x06, 0x28, 0x06, 0x29, 0x06, 0x2F, 0x06, 0x31, + 0x06, 0x34, 0x06, 0x38, 0x06, 0x39, 0x06, 0x5E, 0x06, 0x67, 0x06, 0x6A, + 0x06, 0x6B, 0x09, 0xE6, 0x0A, 0xBB, 0x0A, 0xBC, 0x0A, 0xBD, 0x0A, 0xBE, + 0x0A, 0xB8, 0x0A, 0xBF, 0x0A, 0xC0, 0x0A, 0xC1, 0x0A, 0xC2, 0x0A, 0xC3, + 0x0A, 0x5C, 0x0A, 0x5D, 0x0A, 0x5E, 0x0A, 0x5F, 0x0A, 0x60, 0x0A, 0xCC, + 0x0A, 0xCD, 0x0A, 0x71, 0x00, 0x14, 0x02, 0x19, 0x00, 0x42, 0x02, 0x46, + 0x00, 0x43, 0x02, 0x47, 0x00, 0x44, 0x02, 0x48, 0x00, 0x50, 0x02, 0x52, + 0x00, 0x57, 0x02, 0x5C, 0x00, 0x58, 0x02, 0x5D, 0x00, 0x59, 0x02, 0x5E, + 0x00, 0x5A, 0x02, 0x5F, 0x00, 0x5B, 0x02, 0x60, 0x00, 0x6C, 0x02, 0x74, + 0x00, 0x6D, 0x02, 0x75, 0x00, 0x6E, 0x02, 0x76, 0x00, 0x6F, 0x02, 0x77, + 0x00, 0x70, 0x02, 0x78, 0x00, 0x8B, 0x02, 0x90, 0x00, 0x96, 0x02, 0x9B, + 0x00, 0xA5, 0x02, 0xAB, 0x00, 0xA6, 0x02, 0xAC, 0x00, 0xA7, 0x02, 0xAD, + 0x00, 0xA2, 0x02, 0x9F, 0x00, 0xA8, 0x02, 0xAE, 0x00, 0xCA, 0x02, 0xB7, + 0x00, 0xC8, 0x02, 0xB5, 0x01, 0x12, 0x02, 0xDB, 0x01, 0x13, 0x02, 0xDC, + 0x01, 0x14, 0x02, 0xDD, 0x01, 0x1D, 0x02, 0xEB, 0x01, 0x1E, 0x02, 0xEC, + 0x01, 0x1F, 0x02, 0xED, 0x01, 0x20, 0x02, 0xEE, 0x01, 0x25, 0x03, 0x02, + 0x01, 0x26, 0x03, 0x03, 0x01, 0x27, 0x03, 0x04, 0x01, 0x32, 0x03, 0x10, + 0x01, 0x33, 0x03, 0x11, 0x01, 0x34, 0x03, 0x12, 0x01, 0x35, 0x03, 0x13, + 0x01, 0x55, 0x03, 0x2A, 0x01, 0x56, 0x03, 0x2B, 0x01, 0x57, 0x03, 0x2C, + 0x01, 0x58, 0x03, 0x2D, 0x01, 0x78, 0x03, 0x4E, 0x01, 0x79, 0x03, 0x4F, + 0x01, 0x86, 0x03, 0x61, 0x01, 0x87, 0x03, 0x62, 0x01, 0x88, 0x03, 0x63, + 0x01, 0x89, 0x03, 0x64, 0x01, 0x93, 0x03, 0x6F, 0x01, 0x94, 0x03, 0x70, + 0x01, 0x95, 0x03, 0x71, 0x01, 0x96, 0x03, 0x72, 0x01, 0x97, 0x03, 0x73, + 0x01, 0x9F, 0x03, 0x82, 0x01, 0xA0, 0x03, 0x83, 0x01, 0xA1, 0x03, 0x84, + 0x01, 0xA2, 0x03, 0x85, 0x01, 0xBB, 0x03, 0xA6, 0x01, 0xBC, 0x03, 0xA7, + 0x01, 0xBD, 0x03, 0xA8, 0x01, 0xBE, 0x03, 0xA9, 0x01, 0xBF, 0x03, 0xAA, + 0x01, 0xC9, 0x03, 0xD4, 0x01, 0xCA, 0x03, 0xD5, 0x01, 0xCD, 0x03, 0xDA, + 0x01, 0xCE, 0x03, 0xDB, 0x01, 0xCF, 0x03, 0xD7, 0x01, 0xD0, 0x03, 0xDC, + 0x01, 0xD1, 0x03, 0xDD, 0x01, 0xD3, 0x03, 0xE0, 0x01, 0xD4, 0x03, 0xE1, + 0x01, 0xDE, 0x03, 0xEB, 0x01, 0xF4, 0x04, 0x04, 0x01, 0xF5, 0x04, 0x05, + 0x01, 0xF6, 0x04, 0x06, 0x02, 0xAF, 0x03, 0x86, 0x03, 0xDE, 0x03, 0xEC, + 0x02, 0x15, 0x02, 0x8F, 0x09, 0x64, 0x01, 0x9A, 0x09, 0x65, 0x00, 0x15, + 0x02, 0x0E, 0x00, 0x16, 0x02, 0x11, 0x00, 0x17, 0x02, 0x05, 0x00, 0x18, + 0x02, 0x07, 0x00, 0x19, 0x02, 0x08, 0x00, 0x1A, 0x02, 0x09, 0x00, 0x1B, + 0x02, 0x06, 0x00, 0x1C, 0x01, 0xFE, 0x00, 0x1D, 0x02, 0x00, 0x00, 0x1E, + 0x02, 0x01, 0x00, 0x1F, 0x02, 0x02, 0x00, 0x20, 0x01, 0xFF, 0x00, 0x71, + 0x02, 0x79, 0x00, 0x72, 0x02, 0x7A, 0x00, 0x73, 0x02, 0x7B, 0x00, 0x74, + 0x02, 0x7C, 0x00, 0x75, 0x02, 0x7D, 0x00, 0x76, 0x02, 0x7E, 0x00, 0x77, + 0x02, 0x7F, 0x00, 0x78, 0x02, 0x80, 0x00, 0xD6, 0x02, 0xC4, 0x00, 0xD7, + 0x02, 0xC5, 0x01, 0x59, 0x03, 0x2E, 0x01, 0x5A, 0x03, 0x2F, 0x01, 0x5B, + 0x03, 0x30, 0x01, 0x5C, 0x03, 0x31, 0x01, 0x5D, 0x03, 0x32, 0x01, 0x5E, + 0x03, 0x33, 0x01, 0x5F, 0x03, 0x34, 0x01, 0x60, 0x03, 0x35, 0x01, 0x61, + 0x03, 0x36, 0x01, 0x62, 0x03, 0x37, 0x01, 0x63, 0x03, 0x38, 0x01, 0x64, + 0x03, 0x39, 0x01, 0xC0, 0x03, 0xAB, 0x01, 0xC1, 0x03, 0xAC, 0x01, 0xC2, + 0x03, 0xAD, 0x01, 0xC3, 0x03, 0xAE, 0x01, 0xC4, 0x03, 0xAF, 0x01, 0xC5, + 0x03, 0xB0, 0x01, 0xC6, 0x03, 0xB1, 0x01, 0xDF, 0x03, 0xED, 0x01, 0xE0, + 0x03, 0xEE, 0x01, 0xE1, 0x03, 0xEF, 0x01, 0xE2, 0x03, 0xF0, 0x09, 0x31, + 0x09, 0x66, 0x09, 0x32, 0x09, 0x67, 0x09, 0x33, 0x09, 0x68, 0x04, 0x5E, + 0x09, 0xDB, 0x04, 0x7E, 0x09, 0xDC, 0x04, 0x8A, 0x09, 0xDD, 0x04, 0xA5, + 0x09, 0xDE, 0x03, 0x43, 0x09, 0xE0, 0x04, 0xC1, 0x09, 0xE1, 0x04, 0xD4, + 0x09, 0xE3, 0x04, 0x6C, 0x04, 0x6D, 0x00, 0x2B, 0x00, 0x2C, 0x00, 0x2D, + 0x00, 0x2F, 0x00, 0x3B, 0x0A, 0x7D, 0x09, 0xE4, 0x0A, 0x7C, 0x0A, 0x8A, + 0x0A, 0x87, 0x04, 0x93, 0x04, 0x94, 0x04, 0x95, 0x04, 0x96, 0x04, 0x97, + 0x00, 0x83, 0x00, 0x84, 0x00, 0xB9, 0x00, 0xBA, 0x00, 0xC4, 0x0A, 0x7F, + 0x0A, 0x81, 0x0A, 0x83, 0x04, 0xA6, 0x04, 0xA7, 0x04, 0xA8, 0x09, 0xDF, + 0x0A, 0x80, 0x0A, 0x82, 0x0A, 0x84, 0x04, 0xC2, 0x04, 0xC3, 0x04, 0xC4, + 0x09, 0xE2, 0x04, 0xAF, 0x04, 0xB0, 0x04, 0xC5, 0x04, 0xC6, 0x01, 0xEB, + 0x01, 0xEC, 0x01, 0xED, 0x01, 0xEE, 0x01, 0x7D, 0x0A, 0x85, 0x0A, 0x86, + 0x0A, 0x88, 0x04, 0xE0, 0x04, 0xE1, 0x01, 0x6E, 0x01, 0x70, 0x04, 0x1B, + 0x04, 0x11, 0x04, 0x24, 0x0A, 0x89, 0x0A, 0x7E, 0x0A, 0x1E, 0x0A, 0x1F, + 0x05, 0xB3, 0x05, 0xB2, 0x05, 0xB4, 0x05, 0xB5, 0x0A, 0x1D, 0x0A, 0x20, + 0x05, 0xC8, 0x05, 0xC9, 0x05, 0xCF, 0x05, 0xD0, 0x05, 0xCC, 0x05, 0xCD, + 0x05, 0xCE, 0x05, 0xD1, 0x06, 0x06, 0x06, 0x07, 0x05, 0xB6, 0x05, 0xB9, + 0x0A, 0x12, 0x05, 0xDE, 0x05, 0xDD, 0x0A, 0x11, 0x06, 0xF1, 0x06, 0xCF, + 0x06, 0xD0, 0x05, 0xD2, 0x05, 0xD3, 0x05, 0xD4, 0x05, 0xD6, 0x05, 0xD7, + 0x05, 0xD8, 0x0A, 0x0E, 0x05, 0xE6, 0x05, 0xE7, 0x0A, 0x14, 0x05, 0x92, + 0x05, 0x99, 0x0A, 0x13, 0x0A, 0x16, 0x0A, 0x10, 0x0A, 0x0F, 0x0A, 0x0D, + 0x05, 0xB8, 0x06, 0x87, 0x05, 0x9E, 0x05, 0xA0, 0x05, 0x96, 0x05, 0x97, + 0x05, 0x94, 0x05, 0x90, 0x06, 0x1B, 0x05, 0xBA, 0x05, 0xBB, 0x0A, 0x17, + 0x0A, 0x15, 0x0A, 0x18, 0x0A, 0x19, 0x0A, 0x4E, 0x0A, 0x1A, 0x0A, 0x1B, + 0x0A, 0x1C, 0x06, 0x3F, 0x06, 0x2D, 0x06, 0x46, 0x06, 0x48, 0x06, 0x49, + 0x06, 0x4B, 0x06, 0x4C, 0x06, 0x4D, 0x06, 0x53, 0x06, 0x54, 0x06, 0x55, + 0x06, 0x4F, 0x06, 0x50, 0x06, 0x32, 0x06, 0x70, 0x06, 0x72, 0x06, 0x74, + 0x06, 0x75, 0x06, 0x77, 0x06, 0x79, 0x06, 0x7A, 0x06, 0x7C, 0x06, 0x7D, + 0x06, 0x7E, 0x06, 0x84, 0x06, 0x85, 0x06, 0x86, 0x06, 0x80, 0x06, 0x81, + 0x06, 0x56, 0x06, 0x5A, 0x06, 0x64, 0x06, 0x6D, 0x09, 0x71, 0x06, 0x5D, + 0x06, 0x60, 0x06, 0x61, 0x06, 0x62, 0x06, 0x63, 0x06, 0x65, 0x06, 0x68, + 0x06, 0x69, 0x0A, 0x4D, 0x05, 0x2E, 0x05, 0x30, 0x05, 0x38, 0x05, 0x29, + 0x05, 0x33, 0x05, 0x2C, 0x05, 0x25, 0x05, 0x36, 0x05, 0x28, 0x05, 0x34, + 0x02, 0x65, 0x05, 0x22, 0x05, 0x27, 0x05, 0x31, 0x05, 0x32, 0x05, 0x26, + 0x05, 0x2D, 0x05, 0x2A, 0x05, 0x2B, 0x05, 0x2F, 0x05, 0x24, 0x05, 0x23, + 0x05, 0x20, 0x05, 0x35, 0x05, 0x21, 0x05, 0x37, 0x05, 0x3A, 0x0A, 0xB9, + 0x0A, 0xB7, 0x07, 0x6B, 0x07, 0x6C, 0x06, 0xD3, 0x06, 0xD2, 0x06, 0xFF, + 0x06, 0x0E, 0x01, 0x8B, 0x01, 0x8A, 0x06, 0x10, 0x06, 0x11, 0x06, 0x0F, + 0x06, 0xC7, 0x06, 0xCC, 0x06, 0xCD, 0x06, 0xBD, 0x06, 0xBE, 0x06, 0xC1, + 0x06, 0xC2, 0x06, 0xC3, 0x06, 0xC4, 0x06, 0xC5, 0x06, 0xC6, 0x06, 0xC8, + 0x06, 0xC9, 0x06, 0xCA, 0x06, 0xCB, 0x06, 0xBA, 0x0A, 0x07, 0x09, 0x69, + 0x0A, 0x08, 0x0A, 0x09, 0x07, 0x06, 0x07, 0x18, 0x07, 0x0B, 0x07, 0x19, + 0x07, 0x14, 0x07, 0x1B, 0x07, 0x60, 0x07, 0x63, 0x07, 0x5F, 0x06, 0x23, + 0x04, 0x09, 0x06, 0x1F, 0x05, 0xF1, 0x07, 0x9E, 0x07, 0x9F, 0x07, 0xA1, + 0x07, 0xA0, 0x07, 0x51, 0x07, 0x53, 0x07, 0x52, 0x07, 0x55, 0x07, 0x5B, + 0x07, 0x5C, 0x07, 0x5E, 0x07, 0x5D, 0x07, 0x33, 0x07, 0x37, 0x07, 0x35, + 0x07, 0x39, 0x07, 0x35, 0x07, 0x39, 0x07, 0x32, 0x07, 0x36, 0x07, 0x34, + 0x07, 0x38, 0x07, 0x34, 0x07, 0x38, 0x07, 0x42, 0x07, 0x44, 0x06, 0x24, + 0x07, 0x3C, 0x07, 0x07, 0x07, 0x0C, 0x07, 0x15, 0x07, 0x0A, 0x07, 0x0F, + 0x07, 0x17, 0x02, 0xB8, 0x02, 0xBF, 0x02, 0xC6, 0x02, 0xCA, 0x02, 0xD0, + 0x03, 0x55, 0x03, 0x5B, 0x05, 0xE0, 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, + 0x05, 0x61, 0x06, 0x0A, 0x06, 0x18, 0x06, 0x19, 0x06, 0x51, 0x06, 0x52, + 0x06, 0x57, 0x06, 0x58, 0x06, 0x59, 0x06, 0x5B, 0x06, 0x5C, 0x06, 0x66, + 0x06, 0x6C, 0x06, 0x6E, 0x06, 0x6F, 0x06, 0x82, 0x06, 0x83, 0x06, 0x88, + 0x06, 0x8A, 0x06, 0x8C, 0x06, 0x8D, 0x06, 0x8F, 0x06, 0x91, 0x06, 0x92, + 0x06, 0x94, 0x06, 0x95, 0x06, 0x96, 0x06, 0xA1, 0x06, 0xA3, 0x06, 0xA5, + 0x06, 0xA6, 0x06, 0xA8, 0x06, 0xAA, 0x06, 0xAB, 0x06, 0xAD, 0x06, 0xAE, + 0x06, 0xAF, 0x06, 0xE0, 0x0A, 0xE5, 0x0B, 0x46, 0x0A, 0xE6, 0x0A, 0xE7, + 0x0A, 0xE8, 0x0B, 0x47, 0x07, 0xA3, 0x07, 0xA4, 0x07, 0xA6, 0x07, 0xA7, + 0x07, 0xA8, 0x07, 0xA9, 0x05, 0xE1, 0x00, 0x0A, 0x01, 0xEF, 0x02, 0x18, + 0x03, 0xFA, 0x03, 0x87, 0x0A, 0xF2, 0x07, 0xDE, 0x00, 0xC6, 0x01, 0xA4, + 0x02, 0x88, 0x02, 0x89, 0x02, 0x8A, 0x02, 0x8B, 0x02, 0x8C, 0x02, 0x8E, + 0x06, 0xDB, 0x07, 0xA5, 0x07, 0xB1, 0x07, 0xE3, 0x07, 0xE8, 0x07, 0xEA, + 0x07, 0xEB, 0x07, 0xEC, 0x07, 0xED, 0x07, 0xEE, 0x07, 0xE9, 0x07, 0xEF, + 0x07, 0xF0, 0x07, 0xF2, 0x07, 0xF3, 0x07, 0xF4, 0x07, 0xF5, 0x07, 0xF1, + 0x07, 0xF6, 0x0A, 0xF3, 0x0B, 0x54, 0x07, 0xF7, 0x0B, 0x42, 0x0B, 0x5F, + 0x0B, 0x60, 0x0B, 0x61, 0x08, 0x00, 0x0B, 0x6A, 0x0B, 0x6B, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x24, 0x00, 0xA0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x6E, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x24, 0x00, 0x62, 0x00, 0xAE, 0x00, 0xAD, 0x00, 0xC9, + 0x00, 0xC7, 0x00, 0x63, 0x01, 0x02, 0x01, 0x03, 0x01, 0x04, 0x01, 0x05, + 0x01, 0x06, 0x01, 0x07, 0x01, 0x08, 0x01, 0x09, 0x01, 0x0A, 0x01, 0x0B, + 0x01, 0x0C, 0x01, 0x0D, 0x01, 0x0E, 0x01, 0x0F, 0x01, 0x10, 0x01, 0x11, + 0x01, 0x12, 0x01, 0x13, 0x01, 0x14, 0x01, 0x15, 0x01, 0x16, 0x01, 0x17, + 0x01, 0x18, 0x01, 0x19, 0x01, 0x1A, 0x01, 0x1B, 0x01, 0x1C, 0x01, 0x1D, + 0x01, 0x1E, 0x01, 0x1F, 0x01, 0x20, 0x01, 0x21, 0x01, 0x22, 0x01, 0x23, + 0x01, 0x24, 0x01, 0x25, 0x01, 0x26, 0x01, 0x27, 0x01, 0x28, 0x01, 0x29, + 0x01, 0x2A, 0x01, 0x2B, 0x01, 0x2C, 0x01, 0x2D, 0x01, 0x2E, 0x01, 0x2F, + 0x01, 0x30, 0x01, 0x31, 0x01, 0x32, 0x01, 0x33, 0x01, 0x34, 0x01, 0x35, + 0x00, 0x90, 0x01, 0x36, 0x01, 0x37, 0x01, 0x38, 0x00, 0x25, 0x01, 0x39, + 0x01, 0x3A, 0x01, 0x3B, 0x01, 0x3C, 0x01, 0x3D, 0x01, 0x3E, 0x01, 0x3F, + 0x00, 0x26, 0x01, 0x40, 0x00, 0x64, 0x00, 0xFD, 0x01, 0x41, 0x01, 0x42, + 0x00, 0xFF, 0x01, 0x43, 0x01, 0x44, 0x01, 0x45, 0x01, 0x46, 0x00, 0x27, + 0x01, 0x47, 0x01, 0x48, 0x01, 0x49, 0x01, 0x4A, 0x01, 0x4B, 0x01, 0x4C, + 0x01, 0x4D, 0x01, 0x4E, 0x01, 0x4F, 0x01, 0x50, 0x00, 0x28, 0x00, 0xCB, + 0x00, 0x65, 0x00, 0xC8, 0x00, 0xCA, 0x01, 0x51, 0x01, 0x52, 0x01, 0x53, + 0x01, 0x54, 0x01, 0x55, 0x01, 0x56, 0x01, 0x57, 0x01, 0x58, 0x01, 0x59, + 0x01, 0x5A, 0x01, 0x5B, 0x01, 0x5C, 0x01, 0x5D, 0x01, 0x5E, 0x01, 0x5F, + 0x01, 0x60, 0x01, 0x61, 0x01, 0x62, 0x01, 0x63, 0x01, 0x64, 0x01, 0x65, + 0x01, 0x66, 0x01, 0x67, 0x01, 0x68, 0x01, 0x69, 0x01, 0x6A, 0x01, 0x6B, + 0x01, 0x6C, 0x01, 0x6D, 0x01, 0x6E, 0x01, 0x6F, 0x01, 0x70, 0x01, 0x71, + 0x01, 0x72, 0x01, 0x73, 0x01, 0x74, 0x01, 0x75, 0x00, 0x29, 0x01, 0x76, + 0x01, 0x77, 0x01, 0x78, 0x00, 0x2A, 0x01, 0x79, 0x01, 0x7A, 0x01, 0x7B, + 0x00, 0xF8, 0x01, 0x7C, 0x01, 0x7D, 0x01, 0x7E, 0x01, 0x7F, 0x01, 0x80, + 0x01, 0x81, 0x01, 0x82, 0x01, 0x83, 0x01, 0x84, 0x01, 0x85, 0x01, 0x86, + 0x01, 0x87, 0x01, 0x88, 0x01, 0x89, 0x01, 0x8A, 0x00, 0x2B, 0x01, 0x8B, + 0x01, 0x8C, 0x01, 0x8D, 0x01, 0x8E, 0x01, 0x8F, 0x01, 0x90, 0x01, 0x91, + 0x01, 0x92, 0x01, 0x93, 0x01, 0x94, 0x01, 0x95, 0x01, 0x96, 0x01, 0x97, + 0x01, 0x98, 0x01, 0x99, 0x01, 0x9A, 0x01, 0x9B, 0x01, 0x9C, 0x01, 0x9D, + 0x01, 0x9E, 0x01, 0x9F, 0x01, 0xA0, 0x01, 0xA1, 0x01, 0xA2, 0x01, 0xA3, + 0x01, 0xA4, 0x01, 0xA5, 0x01, 0xA6, 0x01, 0xA7, 0x01, 0xA8, 0x01, 0xA9, + 0x01, 0xAA, 0x01, 0xAB, 0x01, 0xAC, 0x01, 0xAD, 0x00, 0x2C, 0x01, 0xAE, + 0x00, 0xCE, 0x01, 0xAF, 0x01, 0xB0, 0x01, 0xB1, 0x00, 0xCF, 0x00, 0xCC, + 0x00, 0xCD, 0x01, 0xB2, 0x01, 0xB3, 0x01, 0xB4, 0x01, 0xB5, 0x00, 0xFA, + 0x01, 0xB6, 0x01, 0xB7, 0x01, 0xB8, 0x01, 0xB9, 0x01, 0xBA, 0x01, 0xBB, + 0x01, 0xBC, 0x01, 0xBD, 0x01, 0xBE, 0x01, 0xBF, 0x01, 0xC0, 0x01, 0xC1, + 0x01, 0xC2, 0x01, 0xC3, 0x01, 0xC4, 0x01, 0xC5, 0x01, 0xC6, 0x01, 0xC7, + 0x01, 0xC8, 0x01, 0xC9, 0x01, 0xCA, 0x01, 0xCB, 0x01, 0xCC, 0x01, 0xCD, + 0x01, 0xCE, 0x01, 0xCF, 0x01, 0xD0, 0x01, 0xD1, 0x01, 0xD2, 0x01, 0xD3, + 0x01, 0xD4, 0x01, 0xD5, 0x01, 0xD6, 0x01, 0xD7, 0x01, 0xD8, 0x01, 0xD9, + 0x01, 0xDA, 0x01, 0xDB, 0x01, 0xDC, 0x01, 0xDD, 0x01, 0xDE, 0x01, 0xDF, + 0x01, 0xE0, 0x01, 0xE1, 0x01, 0xE2, 0x01, 0xE3, 0x01, 0xE4, 0x01, 0xE5, + 0x01, 0xE6, 0x01, 0xE7, 0x01, 0xE8, 0x01, 0xE9, 0x01, 0xEA, 0x01, 0xEB, + 0x01, 0xEC, 0x00, 0x2D, 0x01, 0xED, 0x01, 0xEE, 0x01, 0xEF, 0x01, 0xF0, + 0x00, 0x2E, 0x01, 0xF1, 0x01, 0xF2, 0x01, 0xF3, 0x01, 0xF4, 0x01, 0xF5, + 0x01, 0xF6, 0x01, 0xF7, 0x01, 0xF8, 0x01, 0xF9, 0x00, 0x2F, 0x01, 0xFA, + 0x01, 0xFB, 0x01, 0xFC, 0x01, 0xFD, 0x01, 0xFE, 0x01, 0xFF, 0x02, 0x00, + 0x00, 0xE2, 0x02, 0x01, 0x02, 0x02, 0x00, 0x30, 0x02, 0x03, 0x02, 0x04, + 0x02, 0x05, 0x02, 0x06, 0x02, 0x07, 0x02, 0x08, 0x02, 0x09, 0x00, 0x31, + 0x00, 0x66, 0x02, 0x0A, 0x02, 0x0B, 0x02, 0x0C, 0x02, 0x0D, 0x02, 0x0E, + 0x02, 0x0F, 0x02, 0x10, 0x02, 0x11, 0x02, 0x12, 0x02, 0x13, 0x02, 0x14, + 0x02, 0x15, 0x02, 0x16, 0x02, 0x17, 0x02, 0x18, 0x02, 0x19, 0x02, 0x1A, + 0x02, 0x1B, 0x02, 0x1C, 0x00, 0x32, 0x00, 0x67, 0x00, 0xAF, 0x00, 0x91, + 0x02, 0x1D, 0x00, 0xD3, 0x00, 0xD0, 0x00, 0xD1, 0x02, 0x1E, 0x02, 0x1F, + 0x02, 0x20, 0x02, 0x21, 0x02, 0x22, 0x02, 0x23, 0x02, 0x24, 0x02, 0x25, + 0x02, 0x26, 0x02, 0x27, 0x02, 0x28, 0x02, 0x29, 0x02, 0x2A, 0x02, 0x2B, + 0x02, 0x2C, 0x02, 0x2D, 0x02, 0x2E, 0x02, 0x2F, 0x02, 0x30, 0x02, 0x31, + 0x02, 0x32, 0x02, 0x33, 0x02, 0x34, 0x02, 0x35, 0x02, 0x36, 0x02, 0x37, + 0x02, 0x38, 0x02, 0x39, 0x02, 0x3A, 0x02, 0x3B, 0x02, 0x3C, 0x02, 0x3D, + 0x02, 0x3E, 0x02, 0x3F, 0x02, 0x40, 0x02, 0x41, 0x02, 0x42, 0x02, 0x43, + 0x02, 0x44, 0x02, 0x45, 0x02, 0x46, 0x02, 0x47, 0x02, 0x48, 0x02, 0x49, + 0x02, 0x4A, 0x00, 0xB0, 0x00, 0x33, 0x02, 0x4B, 0x02, 0x4C, 0x02, 0x4D, + 0x02, 0x4E, 0x02, 0x4F, 0x02, 0x50, 0x00, 0x34, 0x02, 0x51, 0x00, 0x35, + 0x02, 0x52, 0x02, 0x53, 0x02, 0x54, 0x02, 0x55, 0x02, 0x56, 0x02, 0x57, + 0x02, 0x58, 0x02, 0x59, 0x02, 0x5A, 0x02, 0x5B, 0x02, 0x5C, 0x02, 0x5D, + 0x00, 0x36, 0x02, 0x5E, 0x02, 0x5F, 0x00, 0xFB, 0x00, 0xE4, 0x02, 0x60, + 0x02, 0x61, 0x02, 0x62, 0x02, 0x63, 0x02, 0x64, 0x02, 0x65, 0x02, 0x66, + 0x02, 0x67, 0x02, 0x68, 0x00, 0x37, 0x02, 0x69, 0x02, 0x6A, 0x02, 0x6B, + 0x02, 0x6C, 0x02, 0x6D, 0x02, 0x6E, 0x02, 0x6F, 0x02, 0x70, 0x02, 0x71, + 0x02, 0x72, 0x02, 0x73, 0x02, 0x74, 0x00, 0x38, 0x02, 0x75, 0x00, 0xD6, + 0x00, 0xD4, 0x00, 0xD5, 0x00, 0x68, 0x02, 0x76, 0x02, 0x77, 0x02, 0x78, + 0x02, 0x79, 0x02, 0x7A, 0x02, 0x7B, 0x02, 0x7C, 0x02, 0x7D, 0x02, 0x7E, + 0x02, 0x7F, 0x02, 0x80, 0x02, 0x81, 0x02, 0x82, 0x02, 0x83, 0x02, 0x84, + 0x02, 0x85, 0x02, 0x86, 0x02, 0x87, 0x02, 0x88, 0x02, 0x89, 0x02, 0x8A, + 0x02, 0x8B, 0x02, 0x8C, 0x02, 0x8D, 0x02, 0x8E, 0x02, 0x8F, 0x00, 0x39, + 0x02, 0x90, 0x02, 0x91, 0x00, 0x3A, 0x02, 0x92, 0x02, 0x93, 0x02, 0x94, + 0x02, 0x95, 0x02, 0x96, 0x02, 0x97, 0x00, 0x3B, 0x02, 0x98, 0x02, 0x99, + 0x02, 0x9A, 0x02, 0x9B, 0x02, 0x9C, 0x00, 0x3C, 0x02, 0x9D, 0x00, 0xEB, + 0x02, 0x9E, 0x00, 0xBB, 0x02, 0x9F, 0x02, 0xA0, 0x02, 0xA1, 0x02, 0xA2, + 0x02, 0xA3, 0x02, 0xA4, 0x02, 0xA5, 0x02, 0xA6, 0x02, 0xA7, 0x02, 0xA8, + 0x02, 0xA9, 0x02, 0xAA, 0x02, 0xAB, 0x02, 0xAC, 0x02, 0xAD, 0x02, 0xAE, + 0x02, 0xAF, 0x02, 0xB0, 0x02, 0xB1, 0x00, 0x3D, 0x02, 0xB2, 0x02, 0xB3, + 0x00, 0xE6, 0x02, 0xB4, 0x02, 0xB5, 0x02, 0xB6, 0x02, 0xB7, 0x02, 0xB8, + 0x02, 0xB9, 0x02, 0xBA, 0x00, 0x44, 0x00, 0x69, 0x02, 0xBB, 0x02, 0xBC, + 0x02, 0xBD, 0x02, 0xBE, 0x02, 0xBF, 0x02, 0xC0, 0x02, 0xC1, 0x00, 0x6B, + 0x02, 0xC2, 0x02, 0xC3, 0x02, 0xC4, 0x02, 0xC5, 0x02, 0xC6, 0x02, 0xC7, + 0x00, 0x6C, 0x02, 0xC8, 0x02, 0xC9, 0x02, 0xCA, 0x02, 0xCB, 0x00, 0x6A, + 0x02, 0xCC, 0x02, 0xCD, 0x02, 0xCE, 0x02, 0xCF, 0x02, 0xD0, 0x00, 0x6E, + 0x02, 0xD1, 0x02, 0xD2, 0x02, 0xD3, 0x00, 0x6D, 0x02, 0xD4, 0x02, 0xD5, + 0x02, 0xD6, 0x02, 0xD7, 0x00, 0xA0, 0x02, 0xD8, 0x02, 0xD9, 0x02, 0xDA, + 0x02, 0xDB, 0x02, 0xDC, 0x02, 0xDD, 0x02, 0xDE, 0x02, 0xDF, 0x02, 0xE0, + 0x02, 0xE1, 0x02, 0xE2, 0x02, 0xE3, 0x02, 0xE4, 0x02, 0xE5, 0x02, 0xE6, + 0x02, 0xE7, 0x02, 0xE8, 0x02, 0xE9, 0x02, 0xEA, 0x02, 0xEB, 0x02, 0xEC, + 0x02, 0xED, 0x02, 0xEE, 0x02, 0xEF, 0x02, 0xF0, 0x02, 0xF1, 0x02, 0xF2, + 0x02, 0xF3, 0x02, 0xF4, 0x02, 0xF5, 0x02, 0xF6, 0x02, 0xF7, 0x02, 0xF8, + 0x02, 0xF9, 0x00, 0x45, 0x02, 0xFA, 0x02, 0xFB, 0x02, 0xFC, 0x02, 0xFD, + 0x02, 0xFE, 0x02, 0xFF, 0x00, 0xEE, 0x00, 0x46, 0x03, 0x00, 0x03, 0x01, + 0x00, 0x6F, 0x00, 0xFE, 0x03, 0x02, 0x03, 0x03, 0x01, 0x00, 0x03, 0x04, + 0x03, 0x05, 0x03, 0x06, 0x00, 0x47, 0x01, 0x01, 0x03, 0x07, 0x03, 0x08, + 0x03, 0x09, 0x03, 0x0A, 0x03, 0x0B, 0x03, 0x0C, 0x03, 0x0D, 0x03, 0x0E, + 0x03, 0x0F, 0x03, 0x10, 0x03, 0x11, 0x03, 0x12, 0x03, 0x13, 0x03, 0x14, + 0x03, 0x15, 0x00, 0x48, 0x00, 0x73, 0x03, 0x16, 0x00, 0x71, 0x00, 0x70, + 0x00, 0x72, 0x03, 0x17, 0x03, 0x18, 0x03, 0x19, 0x03, 0x1A, 0x03, 0x1B, + 0x03, 0x1C, 0x03, 0x1D, 0x03, 0x1E, 0x03, 0x1F, 0x03, 0x20, 0x03, 0x21, + 0x03, 0x22, 0x03, 0x23, 0x03, 0x24, 0x03, 0x25, 0x03, 0x26, 0x03, 0x27, + 0x03, 0x28, 0x03, 0x29, 0x03, 0x2A, 0x03, 0x2B, 0x03, 0x2C, 0x03, 0x2D, + 0x03, 0x2E, 0x03, 0x2F, 0x03, 0x30, 0x03, 0x31, 0x00, 0x49, 0x03, 0x32, + 0x03, 0x33, 0x03, 0x34, 0x03, 0x35, 0x03, 0x36, 0x03, 0x37, 0x03, 0x38, + 0x03, 0x39, 0x03, 0x3A, 0x03, 0x3B, 0x00, 0x4A, 0x03, 0x3C, 0x03, 0x3D, + 0x03, 0x3E, 0x00, 0xF9, 0x03, 0x3F, 0x03, 0x40, 0x03, 0x41, 0x03, 0x42, + 0x03, 0x43, 0x03, 0x44, 0x03, 0x45, 0x00, 0x4B, 0x03, 0x46, 0x03, 0x47, + 0x03, 0x48, 0x03, 0x49, 0x03, 0x4A, 0x03, 0x4B, 0x03, 0x4C, 0x03, 0x4D, + 0x03, 0x4E, 0x03, 0x4F, 0x03, 0x50, 0x03, 0x51, 0x03, 0x52, 0x03, 0x53, + 0x03, 0x54, 0x03, 0x55, 0x03, 0x56, 0x03, 0x57, 0x00, 0x4C, 0x00, 0xD7, + 0x03, 0x58, 0x00, 0x77, 0x03, 0x59, 0x03, 0x5A, 0x03, 0x5B, 0x03, 0x5C, + 0x03, 0x5D, 0x00, 0x75, 0x00, 0x74, 0x00, 0x76, 0x03, 0x5E, 0x03, 0x5F, + 0x03, 0x60, 0x03, 0x61, 0x03, 0x62, 0x03, 0x63, 0x03, 0x64, 0x03, 0x65, + 0x03, 0x66, 0x03, 0x67, 0x03, 0x68, 0x03, 0x69, 0x03, 0x6A, 0x03, 0x6B, + 0x03, 0x6C, 0x03, 0x6D, 0x03, 0x6E, 0x03, 0x6F, 0x00, 0x4D, 0x03, 0x70, + 0x03, 0x71, 0x03, 0x72, 0x03, 0x73, 0x03, 0x74, 0x03, 0x75, 0x03, 0x76, + 0x00, 0x4E, 0x03, 0x77, 0x03, 0x78, 0x03, 0x79, 0x03, 0x7A, 0x03, 0x7B, + 0x03, 0x7C, 0x03, 0x7D, 0x03, 0x7E, 0x00, 0x4F, 0x00, 0xE3, 0x03, 0x7F, + 0x03, 0x80, 0x03, 0x81, 0x03, 0x82, 0x03, 0x83, 0x03, 0x84, 0x03, 0x85, + 0x03, 0x86, 0x03, 0x87, 0x03, 0x88, 0x03, 0x89, 0x03, 0x8A, 0x03, 0x8B, + 0x03, 0x8C, 0x03, 0x8D, 0x03, 0x8E, 0x03, 0x8F, 0x03, 0x90, 0x03, 0x91, + 0x03, 0x92, 0x03, 0x93, 0x03, 0x94, 0x03, 0x95, 0x03, 0x96, 0x03, 0x97, + 0x03, 0x98, 0x03, 0x99, 0x03, 0x9A, 0x00, 0x50, 0x03, 0x9B, 0x03, 0x9C, + 0x03, 0x9D, 0x03, 0x9E, 0x03, 0x9F, 0x03, 0xA0, 0x00, 0x51, 0x00, 0x78, + 0x03, 0xA1, 0x03, 0xA2, 0x03, 0xA3, 0x03, 0xA4, 0x03, 0xA5, 0x03, 0xA6, + 0x03, 0xA7, 0x03, 0xA8, 0x03, 0xA9, 0x03, 0xAA, 0x03, 0xAB, 0x03, 0xAC, + 0x03, 0xAD, 0x03, 0xAE, 0x03, 0xAF, 0x00, 0x52, 0x00, 0x7C, 0x00, 0x7D, + 0x00, 0xA1, 0x03, 0xB0, 0x00, 0x7A, 0x00, 0x79, 0x00, 0x7B, 0x03, 0xB1, + 0x03, 0xB2, 0x03, 0xB3, 0x03, 0xB4, 0x03, 0xB5, 0x03, 0xB6, 0x03, 0xB7, + 0x03, 0xB8, 0x03, 0xB9, 0x03, 0xBA, 0x03, 0xBB, 0x03, 0xBC, 0x03, 0xBD, + 0x03, 0xBE, 0x03, 0xBF, 0x03, 0xC0, 0x03, 0xC1, 0x03, 0xC2, 0x03, 0xC3, + 0x03, 0xC4, 0x03, 0xC5, 0x03, 0xC6, 0x03, 0xC7, 0x03, 0xC8, 0x03, 0xC9, + 0x03, 0xCA, 0x03, 0xCB, 0x03, 0xCC, 0x03, 0xCD, 0x03, 0xCE, 0x03, 0xCF, + 0x03, 0xD0, 0x03, 0xD1, 0x03, 0xD2, 0x03, 0xD3, 0x03, 0xD4, 0x03, 0xD5, + 0x03, 0xD6, 0x03, 0xD7, 0x03, 0xD8, 0x03, 0xD9, 0x03, 0xDA, 0x00, 0xB1, + 0x03, 0xDB, 0x03, 0xDC, 0x00, 0x53, 0x03, 0xDD, 0x03, 0xDE, 0x03, 0xDF, + 0x03, 0xE0, 0x03, 0xE1, 0x00, 0x54, 0x03, 0xE2, 0x03, 0xE3, 0x00, 0x55, + 0x03, 0xE4, 0x03, 0xE5, 0x03, 0xE6, 0x03, 0xE7, 0x03, 0xE8, 0x03, 0xE9, + 0x03, 0xEA, 0x03, 0xEB, 0x03, 0xEC, 0x03, 0xED, 0x03, 0xEE, 0x03, 0xEF, + 0x03, 0xF0, 0x03, 0xF1, 0x03, 0xF2, 0x03, 0xF3, 0x03, 0xF4, 0x03, 0xF5, + 0x00, 0x56, 0x03, 0xF6, 0x03, 0xF7, 0x03, 0xF8, 0x03, 0xF9, 0x00, 0xFC, + 0x00, 0xE5, 0x03, 0xFA, 0x03, 0xFB, 0x03, 0xFC, 0x03, 0xFD, 0x03, 0xFE, + 0x03, 0xFF, 0x04, 0x00, 0x04, 0x01, 0x00, 0x89, 0x04, 0x02, 0x00, 0x57, + 0x04, 0x03, 0x04, 0x04, 0x04, 0x05, 0x04, 0x06, 0x04, 0x07, 0x04, 0x08, + 0x04, 0x09, 0x04, 0x0A, 0x04, 0x0B, 0x04, 0x0C, 0x04, 0x0D, 0x04, 0x0E, + 0x04, 0x0F, 0x04, 0x10, 0x04, 0x11, 0x04, 0x12, 0x04, 0x13, 0x04, 0x14, + 0x04, 0x15, 0x04, 0x16, 0x04, 0x17, 0x04, 0x18, 0x04, 0x19, 0x04, 0x1A, + 0x00, 0x58, 0x00, 0x81, 0x04, 0x1B, 0x04, 0x1C, 0x04, 0x1D, 0x04, 0x1E, + 0x00, 0x7F, 0x00, 0x7E, 0x00, 0x80, 0x04, 0x1F, 0x04, 0x20, 0x04, 0x21, + 0x04, 0x22, 0x04, 0x23, 0x04, 0x24, 0x04, 0x25, 0x04, 0x26, 0x04, 0x27, + 0x04, 0x28, 0x04, 0x29, 0x04, 0x2A, 0x04, 0x2B, 0x04, 0x2C, 0x04, 0x2D, + 0x04, 0x2E, 0x04, 0x2F, 0x04, 0x30, 0x04, 0x31, 0x04, 0x32, 0x04, 0x33, + 0x04, 0x34, 0x04, 0x35, 0x04, 0x36, 0x04, 0x37, 0x04, 0x38, 0x04, 0x39, + 0x04, 0x3A, 0x04, 0x3B, 0x04, 0x3C, 0x04, 0x3D, 0x04, 0x3E, 0x04, 0x3F, + 0x04, 0x40, 0x04, 0x41, 0x04, 0x42, 0x04, 0x43, 0x04, 0x44, 0x04, 0x45, + 0x04, 0x46, 0x04, 0x47, 0x04, 0x48, 0x04, 0x49, 0x04, 0x4A, 0x04, 0x4B, + 0x04, 0x4C, 0x04, 0x4D, 0x04, 0x4E, 0x04, 0x4F, 0x04, 0x50, 0x04, 0x51, + 0x04, 0x52, 0x04, 0x53, 0x04, 0x54, 0x04, 0x55, 0x04, 0x56, 0x00, 0x59, + 0x04, 0x57, 0x04, 0x58, 0x04, 0x59, 0x00, 0x5A, 0x04, 0x5A, 0x04, 0x5B, + 0x04, 0x5C, 0x04, 0x5D, 0x04, 0x5E, 0x04, 0x5F, 0x04, 0x60, 0x04, 0x61, + 0x00, 0x5B, 0x04, 0x62, 0x04, 0x63, 0x04, 0x64, 0x04, 0x65, 0x00, 0x5C, + 0x00, 0xBA, 0x04, 0x66, 0x04, 0x67, 0x00, 0xEC, 0x04, 0x68, 0x04, 0x69, + 0x04, 0x6A, 0x04, 0x6B, 0x04, 0x6C, 0x04, 0x6D, 0x04, 0x6E, 0x04, 0x6F, + 0x04, 0x70, 0x04, 0x71, 0x04, 0x72, 0x04, 0x73, 0x04, 0x74, 0x04, 0x75, + 0x04, 0x76, 0x04, 0x77, 0x04, 0x78, 0x04, 0x79, 0x04, 0x7A, 0x00, 0x5D, + 0x04, 0x7B, 0x04, 0x7C, 0x04, 0x7D, 0x04, 0x7E, 0x04, 0x7F, 0x04, 0x80, + 0x00, 0xE7, 0x04, 0x81, 0x04, 0x82, 0x04, 0x83, 0x00, 0xED, 0x04, 0x84, + 0x04, 0x85, 0x04, 0x86, 0x04, 0x87, 0x04, 0x88, 0x04, 0x89, 0x04, 0x8A, + 0x04, 0x8B, 0x04, 0x8C, 0x04, 0x8D, 0x04, 0x8E, 0x04, 0x8F, 0x04, 0x90, + 0x04, 0x91, 0x04, 0x92, 0x04, 0x93, 0x04, 0x94, 0x04, 0x95, 0x04, 0x96, + 0x04, 0x97, 0x04, 0x98, 0x04, 0x99, 0x04, 0x9A, 0x04, 0x9B, 0x04, 0x9C, + 0x04, 0x9D, 0x04, 0x9E, 0x04, 0x9F, 0x04, 0xA0, 0x04, 0xA1, 0x04, 0xA2, + 0x04, 0xA3, 0x04, 0xA4, 0x04, 0xA5, 0x04, 0xA6, 0x04, 0xA7, 0x04, 0xA8, + 0x04, 0xA9, 0x04, 0xAA, 0x04, 0xAB, 0x04, 0xAC, 0x04, 0xAD, 0x04, 0xAE, + 0x04, 0xAF, 0x04, 0xB0, 0x04, 0xB1, 0x04, 0xB2, 0x04, 0xB3, 0x04, 0xB4, + 0x04, 0xB5, 0x04, 0xB6, 0x04, 0xB7, 0x04, 0xB8, 0x04, 0xB9, 0x04, 0xBA, + 0x04, 0xBB, 0x04, 0xBC, 0x04, 0xBD, 0x04, 0xBE, 0x04, 0xBF, 0x04, 0xC0, + 0x04, 0xC1, 0x04, 0xC2, 0x04, 0xC3, 0x04, 0xC4, 0x04, 0xC5, 0x04, 0xC6, + 0x04, 0xC7, 0x04, 0xC8, 0x04, 0xC9, 0x04, 0xCA, 0x04, 0xCB, 0x04, 0xCC, + 0x04, 0xCD, 0x04, 0xCE, 0x00, 0xEA, 0x04, 0xCF, 0x04, 0xD0, 0x04, 0xD1, + 0x04, 0xD2, 0x04, 0xD3, 0x04, 0xD4, 0x04, 0xD5, 0x04, 0xD6, 0x04, 0xD7, + 0x04, 0xD8, 0x04, 0xD9, 0x04, 0xDA, 0x04, 0xDB, 0x04, 0xDC, 0x04, 0xDD, + 0x04, 0xDE, 0x04, 0xDF, 0x04, 0xE0, 0x04, 0xE1, 0x04, 0xE2, 0x04, 0xE3, + 0x04, 0xE4, 0x04, 0xE5, 0x04, 0xE6, 0x04, 0xE7, 0x04, 0xE8, 0x04, 0xE9, + 0x04, 0xEA, 0x04, 0xEB, 0x04, 0xEC, 0x04, 0xED, 0x04, 0xEE, 0x04, 0xEF, + 0x04, 0xF0, 0x04, 0xF1, 0x04, 0xF2, 0x04, 0xF3, 0x04, 0xF4, 0x04, 0xF5, + 0x04, 0xF6, 0x04, 0xF7, 0x04, 0xF8, 0x04, 0xF9, 0x04, 0xFA, 0x04, 0xFB, + 0x04, 0xFC, 0x04, 0xFD, 0x04, 0xFE, 0x04, 0xFF, 0x05, 0x00, 0x05, 0x01, + 0x05, 0x02, 0x05, 0x03, 0x05, 0x04, 0x05, 0x05, 0x05, 0x06, 0x05, 0x07, + 0x05, 0x08, 0x05, 0x09, 0x05, 0x0A, 0x05, 0x0B, 0x05, 0x0C, 0x05, 0x0D, + 0x05, 0x0E, 0x05, 0x0F, 0x05, 0x10, 0x05, 0x11, 0x05, 0x12, 0x05, 0x13, + 0x05, 0x14, 0x05, 0x15, 0x05, 0x16, 0x05, 0x17, 0x05, 0x18, 0x05, 0x19, + 0x05, 0x1A, 0x05, 0x1B, 0x05, 0x1C, 0x05, 0x1D, 0x05, 0x1E, 0x05, 0x1F, + 0x05, 0x20, 0x05, 0x21, 0x05, 0x22, 0x05, 0x23, 0x05, 0x24, 0x05, 0x25, + 0x05, 0x26, 0x05, 0x27, 0x00, 0x9B, 0x05, 0x28, 0x05, 0x29, 0x05, 0x2A, + 0x05, 0x2B, 0x05, 0x2C, 0x05, 0x2D, 0x05, 0x2E, 0x05, 0x2F, 0x05, 0x30, + 0x05, 0x31, 0x05, 0x32, 0x05, 0x33, 0x05, 0x34, 0x05, 0x35, 0x05, 0x36, + 0x05, 0x37, 0x05, 0x38, 0x05, 0x39, 0x05, 0x3A, 0x05, 0x3B, 0x05, 0x3C, + 0x05, 0x3D, 0x05, 0x3E, 0x05, 0x3F, 0x05, 0x40, 0x05, 0x41, 0x05, 0x42, + 0x05, 0x43, 0x05, 0x44, 0x05, 0x45, 0x05, 0x46, 0x05, 0x47, 0x05, 0x48, + 0x05, 0x49, 0x05, 0x4A, 0x05, 0x4B, 0x05, 0x4C, 0x05, 0x4D, 0x05, 0x4E, + 0x05, 0x4F, 0x05, 0x50, 0x05, 0x51, 0x05, 0x52, 0x05, 0x53, 0x05, 0x54, + 0x05, 0x55, 0x05, 0x56, 0x05, 0x57, 0x05, 0x58, 0x05, 0x59, 0x05, 0x5A, + 0x05, 0x5B, 0x05, 0x5C, 0x05, 0x5D, 0x05, 0x5E, 0x05, 0x5F, 0x05, 0x60, + 0x05, 0x61, 0x05, 0x62, 0x05, 0x63, 0x05, 0x64, 0x05, 0x65, 0x05, 0x66, + 0x05, 0x67, 0x05, 0x68, 0x05, 0x69, 0x05, 0x6A, 0x05, 0x6B, 0x05, 0x6C, + 0x05, 0x6D, 0x05, 0x6E, 0x05, 0x6F, 0x05, 0x70, 0x05, 0x71, 0x05, 0x72, + 0x05, 0x73, 0x05, 0x74, 0x05, 0x75, 0x05, 0x76, 0x05, 0x77, 0x05, 0x78, + 0x05, 0x79, 0x05, 0x7A, 0x05, 0x7B, 0x05, 0x7C, 0x05, 0x7D, 0x05, 0x7E, + 0x05, 0x7F, 0x05, 0x80, 0x05, 0x81, 0x05, 0x82, 0x05, 0x83, 0x05, 0x84, + 0x05, 0x85, 0x05, 0x86, 0x05, 0x87, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8A, + 0x05, 0x8B, 0x05, 0x8C, 0x05, 0x8D, 0x05, 0x8E, 0x05, 0x8F, 0x05, 0x90, + 0x05, 0x91, 0x05, 0x92, 0x05, 0x93, 0x05, 0x94, 0x00, 0x07, 0x00, 0x84, + 0x00, 0x96, 0x00, 0x85, 0x00, 0xA6, 0x05, 0x95, 0x05, 0x96, 0x05, 0x97, + 0x05, 0x98, 0x05, 0x99, 0x05, 0x9A, 0x05, 0x9B, 0x05, 0x9C, 0x05, 0x9D, + 0x05, 0x9E, 0x05, 0x9F, 0x05, 0xA0, 0x05, 0xA1, 0x05, 0xA2, 0x05, 0xA3, + 0x05, 0xA4, 0x05, 0xA5, 0x05, 0xA6, 0x05, 0xA7, 0x05, 0xA8, 0x05, 0xA9, + 0x05, 0xAA, 0x05, 0xAB, 0x05, 0xAC, 0x00, 0xF7, 0x05, 0xAD, 0x05, 0xAE, + 0x00, 0x13, 0x00, 0x14, 0x00, 0x15, 0x05, 0xAF, 0x00, 0x16, 0x00, 0x17, + 0x00, 0x18, 0x05, 0xB0, 0x00, 0x19, 0x00, 0x1A, 0x00, 0x1B, 0x00, 0x1C, + 0x05, 0xB1, 0x05, 0xB2, 0x05, 0xB3, 0x05, 0xB4, 0x05, 0xB5, 0x05, 0xB6, + 0x05, 0xB7, 0x05, 0xB8, 0x05, 0xB9, 0x05, 0xBA, 0x05, 0xBB, 0x05, 0xBC, + 0x05, 0xBD, 0x05, 0xBE, 0x05, 0xBF, 0x05, 0xC0, 0x05, 0xC1, 0x05, 0xC2, + 0x05, 0xC3, 0x05, 0xC4, 0x05, 0xC5, 0x05, 0xC6, 0x05, 0xC7, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCA, 0x05, 0xCB, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xCE, + 0x05, 0xCF, 0x05, 0xD0, 0x05, 0xD1, 0x05, 0xD2, 0x05, 0xD3, 0x05, 0xD4, + 0x05, 0xD5, 0x05, 0xD6, 0x05, 0xD7, 0x05, 0xD8, 0x05, 0xD9, 0x05, 0xDA, + 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xDE, 0x05, 0xDF, 0x05, 0xE0, + 0x05, 0xE1, 0x05, 0xE2, 0x05, 0xE3, 0x05, 0xE4, 0x05, 0xE5, 0x05, 0xE6, + 0x05, 0xE7, 0x05, 0xE8, 0x05, 0xE9, 0x05, 0xEA, 0x05, 0xEB, 0x05, 0xEC, + 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF0, 0x05, 0xF1, 0x05, 0xF2, + 0x05, 0xF3, 0x05, 0xF4, 0x05, 0xF5, 0x05, 0xF6, 0x05, 0xF7, 0x05, 0xF8, + 0x00, 0x09, 0x05, 0xF9, 0x00, 0x04, 0x05, 0xFA, 0x00, 0xA3, 0x05, 0xFB, + 0x00, 0x22, 0x05, 0xFC, 0x05, 0xFD, 0x00, 0xA2, 0x05, 0xFE, 0x05, 0xFF, + 0x00, 0x0B, 0x00, 0x0C, 0x00, 0x3E, 0x06, 0x00, 0x00, 0x40, 0x06, 0x01, + 0x00, 0x5E, 0x00, 0x60, 0x00, 0x23, 0x06, 0x02, 0x06, 0x03, 0x06, 0x04, + 0x06, 0x05, 0x06, 0x06, 0x06, 0x07, 0x06, 0x08, 0x00, 0x06, 0x00, 0xBD, + 0x00, 0x12, 0x00, 0x5F, 0x00, 0xE8, 0x00, 0x3F, 0x00, 0x10, 0x00, 0xB2, + 0x06, 0x09, 0x00, 0xB3, 0x06, 0x0A, 0x00, 0x87, 0x06, 0x0B, 0x06, 0x0C, + 0x06, 0x0D, 0x06, 0x0E, 0x06, 0x0F, 0x06, 0x10, 0x06, 0x11, 0x06, 0x12, + 0x06, 0x13, 0x06, 0x14, 0x06, 0x15, 0x06, 0x16, 0x06, 0x17, 0x06, 0x18, + 0x06, 0x19, 0x06, 0x1A, 0x06, 0x1B, 0x00, 0xB6, 0x00, 0xB7, 0x00, 0x0A, + 0x00, 0x05, 0x00, 0xB4, 0x00, 0xB5, 0x00, 0xC5, 0x00, 0xC4, 0x06, 0x1C, + 0x06, 0x1D, 0x06, 0x1E, 0x06, 0x1F, 0x06, 0x20, 0x06, 0x21, 0x06, 0x22, + 0x06, 0x23, 0x06, 0x24, 0x06, 0x25, 0x06, 0x26, 0x00, 0x0F, 0x00, 0x11, + 0x00, 0xAB, 0x06, 0x27, 0x00, 0x1D, 0x06, 0x28, 0x06, 0x29, 0x00, 0x1E, + 0x00, 0xC3, 0x06, 0x2A, 0x06, 0x2B, 0x00, 0xBE, 0x00, 0xBF, 0x00, 0xA9, + 0x00, 0xAA, 0x00, 0x1F, 0x00, 0x21, 0x00, 0x94, 0x00, 0x95, 0x00, 0x20, + 0x00, 0x8F, 0x00, 0x0E, 0x00, 0xEF, 0x00, 0xF0, 0x00, 0xB8, 0x00, 0x93, + 0x00, 0xA7, 0x00, 0x61, 0x06, 0x2C, 0x06, 0x2D, 0x06, 0x2E, 0x06, 0x2F, + 0x06, 0x30, 0x06, 0x31, 0x06, 0x32, 0x06, 0x33, 0x06, 0x34, 0x06, 0x35, + 0x06, 0x36, 0x06, 0x37, 0x06, 0x38, 0x00, 0xA4, 0x00, 0x42, 0x00, 0x82, + 0x00, 0xC2, 0x00, 0x41, 0x00, 0x0D, 0x06, 0x39, 0x00, 0x8A, 0x00, 0x8B, + 0x06, 0x3A, 0x06, 0x3B, 0x00, 0x8C, 0x06, 0x3C, 0x06, 0x3D, 0x06, 0x3E, + 0x06, 0x3F, 0x06, 0x40, 0x00, 0x83, 0x00, 0x9D, 0x00, 0x9E, 0x06, 0x41, + 0x06, 0x42, 0x00, 0x88, 0x06, 0x43, 0x00, 0x86, 0x00, 0x92, 0x00, 0x98, + 0x00, 0x99, 0x00, 0x9A, 0x00, 0x9C, 0x00, 0xA5, 0x06, 0x44, 0x00, 0xB9, + 0x06, 0x45, 0x06, 0x46, 0x06, 0x47, 0x06, 0x48, 0x06, 0x49, 0x06, 0x4A, + 0x06, 0x4B, 0x06, 0x4C, 0x06, 0x4D, 0x06, 0x4E, 0x06, 0x4F, 0x06, 0x50, + 0x06, 0x51, 0x06, 0x52, 0x06, 0x53, 0x06, 0x54, 0x06, 0x55, 0x06, 0x56, + 0x06, 0x57, 0x06, 0x58, 0x06, 0x59, 0x06, 0x5A, 0x06, 0x5B, 0x06, 0x5C, + 0x06, 0x5D, 0x06, 0x5E, 0x06, 0x5F, 0x06, 0x60, 0x06, 0x61, 0x06, 0x62, + 0x06, 0x63, 0x06, 0x64, 0x06, 0x65, 0x06, 0x66, 0x06, 0x67, 0x06, 0x68, + 0x06, 0x69, 0x06, 0x6A, 0x06, 0x6B, 0x06, 0x6C, 0x06, 0x6D, 0x06, 0x6E, + 0x06, 0x6F, 0x06, 0x70, 0x06, 0x71, 0x06, 0x72, 0x06, 0x73, 0x06, 0x74, + 0x06, 0x75, 0x06, 0x76, 0x06, 0x77, 0x06, 0x78, 0x06, 0x79, 0x06, 0x7A, + 0x06, 0x7B, 0x06, 0x7C, 0x06, 0x7D, 0x06, 0x7E, 0x06, 0x7F, 0x06, 0x80, + 0x06, 0x81, 0x06, 0x82, 0x06, 0x83, 0x06, 0x84, 0x06, 0x85, 0x06, 0x86, + 0x06, 0x87, 0x06, 0x88, 0x06, 0x89, 0x06, 0x8A, 0x06, 0x8B, 0x06, 0x8C, + 0x06, 0x8D, 0x06, 0x8E, 0x06, 0x8F, 0x06, 0x90, 0x06, 0x91, 0x06, 0x92, + 0x06, 0x93, 0x06, 0x94, 0x06, 0x95, 0x06, 0x96, 0x06, 0x97, 0x06, 0x98, + 0x06, 0x99, 0x06, 0x9A, 0x06, 0x9B, 0x06, 0x9C, 0x06, 0x9D, 0x06, 0x9E, + 0x06, 0x9F, 0x06, 0xA0, 0x06, 0xA1, 0x06, 0xA2, 0x06, 0xA3, 0x06, 0xA4, + 0x06, 0xA5, 0x06, 0xA6, 0x00, 0xBC, 0x06, 0xA7, 0x06, 0xA8, 0x06, 0xA9, + 0x06, 0xAA, 0x06, 0xAB, 0x06, 0xAC, 0x06, 0xAD, 0x06, 0xAE, 0x06, 0xAF, + 0x06, 0xB0, 0x06, 0xB1, 0x06, 0xB2, 0x06, 0xB3, 0x06, 0xB4, 0x06, 0xB5, + 0x06, 0xB6, 0x06, 0xB7, 0x06, 0xB8, 0x06, 0xB9, 0x06, 0xBA, 0x06, 0xBB, + 0x06, 0xBC, 0x06, 0xBD, 0x06, 0xBE, 0x06, 0xBF, 0x06, 0xC0, 0x06, 0xC1, + 0x06, 0xC2, 0x06, 0xC3, 0x06, 0xC4, 0x06, 0xC5, 0x06, 0xC6, 0x06, 0xC7, + 0x06, 0xC8, 0x06, 0xC9, 0x06, 0xCA, 0x06, 0xCB, 0x06, 0xCC, 0x06, 0xCD, + 0x06, 0xCE, 0x06, 0xCF, 0x06, 0xD0, 0x06, 0xD1, 0x06, 0xD2, 0x06, 0xD3, + 0x06, 0xD4, 0x06, 0xD5, 0x06, 0xD6, 0x06, 0xD7, 0x06, 0xD8, 0x06, 0xD9, + 0x00, 0xF4, 0x06, 0xDA, 0x06, 0xDB, 0x06, 0xDC, 0x00, 0xF5, 0x00, 0xF6, + 0x06, 0xDD, 0x06, 0xDE, 0x06, 0xDF, 0x06, 0xE0, 0x06, 0xE1, 0x06, 0xE2, + 0x06, 0xE3, 0x06, 0xE4, 0x06, 0xE5, 0x06, 0xE6, 0x06, 0xE7, 0x06, 0xE8, + 0x06, 0xE9, 0x00, 0x08, 0x00, 0xC6, 0x06, 0xEA, 0x06, 0xEB, 0x06, 0xEC, + 0x06, 0xED, 0x06, 0xEE, 0x06, 0xEF, 0x00, 0x8D, 0x00, 0xDF, 0x00, 0x43, + 0x06, 0xF0, 0x00, 0x8E, 0x06, 0xF1, 0x00, 0xD8, 0x00, 0xD9, 0x00, 0xDA, + 0x00, 0xDB, 0x06, 0xF2, 0x00, 0xDC, 0x00, 0xDD, 0x00, 0xE1, 0x06, 0xF3, + 0x00, 0xDE, 0x00, 0xE0, 0x06, 0xF4, 0x06, 0xF5, 0x06, 0xF6, 0x06, 0xF7, + 0x06, 0xF8, 0x06, 0xF9, 0x06, 0xFA, 0x06, 0xFB, 0x00, 0x03, 0x06, 0xFC, + 0x06, 0xFD, 0x06, 0xFE, 0x06, 0xFF, 0x07, 0x00, 0x07, 0x01, 0x07, 0x02, + 0x07, 0x03, 0x07, 0x04, 0x07, 0x05, 0x07, 0x06, 0x07, 0x07, 0x07, 0x08, + 0x07, 0x09, 0x07, 0x0A, 0x07, 0x0B, 0x07, 0x0C, 0x07, 0x0D, 0x07, 0x0E, + 0x07, 0x0F, 0x07, 0x10, 0x07, 0x11, 0x07, 0x12, 0x07, 0x13, 0x07, 0x14, + 0x07, 0x15, 0x07, 0x16, 0x07, 0x17, 0x07, 0x18, 0x07, 0x19, 0x07, 0x1A, + 0x07, 0x1B, 0x07, 0x1C, 0x07, 0x1D, 0x07, 0x1E, 0x07, 0x1F, 0x07, 0x20, + 0x07, 0x21, 0x07, 0x22, 0x07, 0x23, 0x07, 0x24, 0x07, 0x25, 0x07, 0x26, + 0x07, 0x27, 0x07, 0x28, 0x07, 0x29, 0x07, 0x2A, 0x07, 0x2B, 0x07, 0x2C, + 0x07, 0x2D, 0x07, 0x2E, 0x07, 0x2F, 0x07, 0x30, 0x07, 0x31, 0x07, 0x32, + 0x07, 0x33, 0x07, 0x34, 0x07, 0x35, 0x07, 0x36, 0x07, 0x37, 0x07, 0x38, + 0x07, 0x39, 0x07, 0x3A, 0x07, 0x3B, 0x07, 0x3C, 0x07, 0x3D, 0x07, 0x3E, + 0x07, 0x3F, 0x07, 0x40, 0x07, 0x41, 0x07, 0x42, 0x07, 0x43, 0x07, 0x44, + 0x07, 0x45, 0x07, 0x46, 0x07, 0x47, 0x07, 0x48, 0x07, 0x49, 0x07, 0x4A, + 0x07, 0x4B, 0x07, 0x4C, 0x07, 0x4D, 0x07, 0x4E, 0x07, 0x4F, 0x07, 0x50, + 0x07, 0x51, 0x07, 0x52, 0x07, 0x53, 0x07, 0x54, 0x07, 0x55, 0x07, 0x56, + 0x07, 0x57, 0x07, 0x58, 0x07, 0x59, 0x07, 0x5A, 0x07, 0x5B, 0x07, 0x5C, + 0x07, 0x5D, 0x07, 0x5E, 0x07, 0x5F, 0x07, 0x60, 0x07, 0x61, 0x07, 0x62, + 0x07, 0x63, 0x07, 0x64, 0x07, 0x65, 0x07, 0x66, 0x07, 0x67, 0x07, 0x68, + 0x07, 0x69, 0x07, 0x6A, 0x07, 0x6B, 0x07, 0x6C, 0x07, 0x6D, 0x07, 0x6E, + 0x07, 0x6F, 0x07, 0x70, 0x07, 0x71, 0x07, 0x72, 0x07, 0x73, 0x07, 0x74, + 0x07, 0x75, 0x07, 0x76, 0x07, 0x77, 0x07, 0x78, 0x07, 0x79, 0x07, 0x7A, + 0x07, 0x7B, 0x07, 0x7C, 0x07, 0x7D, 0x07, 0x7E, 0x07, 0x7F, 0x07, 0x80, + 0x07, 0x81, 0x07, 0x82, 0x07, 0x83, 0x07, 0x84, 0x07, 0x85, 0x07, 0x86, + 0x07, 0x87, 0x07, 0x88, 0x07, 0x89, 0x07, 0x8A, 0x07, 0x8B, 0x07, 0x8C, + 0x07, 0x8D, 0x07, 0x8E, 0x07, 0x8F, 0x07, 0x90, 0x07, 0x91, 0x07, 0x92, + 0x07, 0x93, 0x07, 0x94, 0x07, 0x95, 0x07, 0x96, 0x07, 0x97, 0x07, 0x98, + 0x07, 0x99, 0x07, 0x9A, 0x07, 0x9B, 0x07, 0x9C, 0x07, 0x9D, 0x07, 0x9E, + 0x07, 0x9F, 0x07, 0xA0, 0x07, 0xA1, 0x07, 0xA2, 0x07, 0xA3, 0x07, 0xA4, + 0x07, 0xA5, 0x07, 0xA6, 0x07, 0xA7, 0x07, 0xA8, 0x07, 0xA9, 0x07, 0xAA, + 0x07, 0xAB, 0x07, 0xAC, 0x07, 0xAD, 0x07, 0xAE, 0x07, 0xAF, 0x07, 0xB0, + 0x07, 0xB1, 0x07, 0xB2, 0x07, 0xB3, 0x07, 0xB4, 0x07, 0xB5, 0x07, 0xB6, + 0x07, 0xB7, 0x07, 0xB8, 0x07, 0xB9, 0x07, 0xBA, 0x07, 0xBB, 0x07, 0xBC, + 0x07, 0xBD, 0x07, 0xBE, 0x07, 0xBF, 0x07, 0xC0, 0x07, 0xC1, 0x07, 0xC2, + 0x07, 0xC3, 0x07, 0xC4, 0x07, 0xC5, 0x07, 0xC6, 0x07, 0xC7, 0x07, 0xC8, + 0x07, 0xC9, 0x07, 0xCA, 0x07, 0xCB, 0x07, 0xCC, 0x07, 0xCD, 0x07, 0xCE, + 0x07, 0xCF, 0x07, 0xD0, 0x07, 0xD1, 0x07, 0xD2, 0x07, 0xD3, 0x07, 0xD4, + 0x07, 0xD5, 0x07, 0xD6, 0x07, 0xD7, 0x07, 0xD8, 0x07, 0xD9, 0x07, 0xDA, + 0x07, 0xDB, 0x07, 0xDC, 0x07, 0xDD, 0x07, 0xDE, 0x07, 0xDF, 0x07, 0xE0, + 0x07, 0xE1, 0x07, 0xE2, 0x07, 0xE3, 0x07, 0xE4, 0x07, 0xE5, 0x07, 0xE6, + 0x07, 0xE7, 0x07, 0xE8, 0x07, 0xE9, 0x07, 0xEA, 0x07, 0xEB, 0x07, 0xEC, + 0x07, 0xED, 0x07, 0xEE, 0x07, 0xEF, 0x07, 0xF0, 0x07, 0xF1, 0x07, 0xF2, + 0x07, 0xF3, 0x07, 0xF4, 0x07, 0xF5, 0x07, 0xF6, 0x07, 0xF7, 0x07, 0xF8, + 0x07, 0xF9, 0x07, 0xFA, 0x07, 0xFB, 0x07, 0xFC, 0x07, 0xFD, 0x07, 0xFE, + 0x07, 0xFF, 0x08, 0x00, 0x08, 0x01, 0x08, 0x02, 0x08, 0x03, 0x08, 0x04, + 0x08, 0x05, 0x08, 0x06, 0x08, 0x07, 0x08, 0x08, 0x08, 0x09, 0x08, 0x0A, + 0x08, 0x0B, 0x08, 0x0C, 0x08, 0x0D, 0x08, 0x0E, 0x08, 0x0F, 0x08, 0x10, + 0x08, 0x11, 0x08, 0x12, 0x08, 0x13, 0x08, 0x14, 0x08, 0x15, 0x08, 0x16, + 0x08, 0x17, 0x08, 0x18, 0x08, 0x19, 0x08, 0x1A, 0x08, 0x1B, 0x08, 0x1C, + 0x08, 0x1D, 0x08, 0x1E, 0x08, 0x1F, 0x08, 0x20, 0x08, 0x21, 0x08, 0x22, + 0x08, 0x23, 0x08, 0x24, 0x08, 0x25, 0x08, 0x26, 0x08, 0x27, 0x08, 0x28, + 0x08, 0x29, 0x08, 0x2A, 0x08, 0x2B, 0x08, 0x2C, 0x08, 0x2D, 0x08, 0x2E, + 0x08, 0x2F, 0x08, 0x30, 0x08, 0x31, 0x08, 0x32, 0x08, 0x33, 0x08, 0x34, + 0x08, 0x35, 0x08, 0x36, 0x08, 0x37, 0x08, 0x38, 0x08, 0x39, 0x08, 0x3A, + 0x08, 0x3B, 0x08, 0x3C, 0x08, 0x3D, 0x08, 0x3E, 0x08, 0x3F, 0x08, 0x40, + 0x08, 0x41, 0x08, 0x42, 0x08, 0x43, 0x08, 0x44, 0x08, 0x45, 0x08, 0x46, + 0x08, 0x47, 0x08, 0x48, 0x08, 0x49, 0x08, 0x4A, 0x08, 0x4B, 0x08, 0x4C, + 0x08, 0x4D, 0x08, 0x4E, 0x08, 0x4F, 0x08, 0x50, 0x08, 0x51, 0x08, 0x52, + 0x08, 0x53, 0x08, 0x54, 0x08, 0x55, 0x08, 0x56, 0x08, 0x57, 0x08, 0x58, + 0x08, 0x59, 0x08, 0x5A, 0x08, 0x5B, 0x08, 0x5C, 0x08, 0x5D, 0x08, 0x5E, + 0x08, 0x5F, 0x08, 0x60, 0x08, 0x61, 0x08, 0x62, 0x08, 0x63, 0x08, 0x64, + 0x08, 0x65, 0x08, 0x66, 0x08, 0x67, 0x08, 0x68, 0x08, 0x69, 0x08, 0x6A, + 0x08, 0x6B, 0x08, 0x6C, 0x08, 0x6D, 0x08, 0x6E, 0x08, 0x6F, 0x08, 0x70, + 0x08, 0x71, 0x08, 0x72, 0x08, 0x73, 0x08, 0x74, 0x08, 0x75, 0x08, 0x76, + 0x08, 0x77, 0x08, 0x78, 0x08, 0x79, 0x08, 0x7A, 0x08, 0x7B, 0x08, 0x7C, + 0x08, 0x7D, 0x08, 0x7E, 0x08, 0x7F, 0x08, 0x80, 0x08, 0x81, 0x08, 0x82, + 0x08, 0x83, 0x08, 0x84, 0x08, 0x85, 0x08, 0x86, 0x08, 0x87, 0x08, 0x88, + 0x08, 0x89, 0x08, 0x8A, 0x08, 0x8B, 0x08, 0x8C, 0x08, 0x8D, 0x08, 0x8E, + 0x08, 0x8F, 0x08, 0x90, 0x08, 0x91, 0x08, 0x92, 0x08, 0x93, 0x08, 0x94, + 0x08, 0x95, 0x08, 0x96, 0x08, 0x97, 0x08, 0x98, 0x08, 0x99, 0x08, 0x9A, + 0x08, 0x9B, 0x08, 0x9C, 0x08, 0x9D, 0x08, 0x9E, 0x08, 0x9F, 0x08, 0xA0, + 0x08, 0xA1, 0x08, 0xA2, 0x08, 0xA3, 0x08, 0xA4, 0x08, 0xA5, 0x08, 0xA6, + 0x08, 0xA7, 0x08, 0xA8, 0x08, 0xA9, 0x08, 0xAA, 0x08, 0xAB, 0x08, 0xAC, + 0x08, 0xAD, 0x08, 0xAE, 0x08, 0xAF, 0x08, 0xB0, 0x08, 0xB1, 0x08, 0xB2, + 0x08, 0xB3, 0x08, 0xB4, 0x08, 0xB5, 0x08, 0xB6, 0x08, 0xB7, 0x08, 0xB8, + 0x08, 0xB9, 0x08, 0xBA, 0x08, 0xBB, 0x08, 0xBC, 0x08, 0xBD, 0x08, 0xBE, + 0x08, 0xBF, 0x08, 0xC0, 0x08, 0xC1, 0x08, 0xC2, 0x08, 0xC3, 0x08, 0xC4, + 0x08, 0xC5, 0x08, 0xC6, 0x08, 0xC7, 0x08, 0xC8, 0x08, 0xC9, 0x08, 0xCA, + 0x08, 0xCB, 0x08, 0xCC, 0x08, 0xCD, 0x08, 0xCE, 0x08, 0xCF, 0x08, 0xD0, + 0x08, 0xD1, 0x08, 0xD2, 0x08, 0xD3, 0x08, 0xD4, 0x08, 0xD5, 0x08, 0xD6, + 0x08, 0xD7, 0x08, 0xD8, 0x08, 0xD9, 0x08, 0xDA, 0x08, 0xDB, 0x08, 0xDC, + 0x08, 0xDD, 0x08, 0xDE, 0x08, 0xDF, 0x08, 0xE0, 0x08, 0xE1, 0x08, 0xE2, + 0x08, 0xE3, 0x08, 0xE4, 0x08, 0xE5, 0x08, 0xE6, 0x08, 0xE7, 0x08, 0xE8, + 0x08, 0xE9, 0x08, 0xEA, 0x08, 0xEB, 0x08, 0xEC, 0x08, 0xED, 0x08, 0xEE, + 0x08, 0xEF, 0x08, 0xF0, 0x08, 0xF1, 0x08, 0xF2, 0x08, 0xF3, 0x08, 0xF4, + 0x08, 0xF5, 0x08, 0xF6, 0x08, 0xF7, 0x08, 0xF8, 0x08, 0xF9, 0x08, 0xFA, + 0x08, 0xFB, 0x08, 0xFC, 0x08, 0xFD, 0x08, 0xFE, 0x08, 0xFF, 0x09, 0x00, + 0x09, 0x01, 0x09, 0x02, 0x09, 0x03, 0x09, 0x04, 0x09, 0x05, 0x09, 0x06, + 0x09, 0x07, 0x09, 0x08, 0x09, 0x09, 0x09, 0x0A, 0x09, 0x0B, 0x09, 0x0C, + 0x09, 0x0D, 0x09, 0x0E, 0x09, 0x0F, 0x09, 0x10, 0x09, 0x11, 0x09, 0x12, + 0x09, 0x13, 0x09, 0x14, 0x09, 0x15, 0x09, 0x16, 0x09, 0x17, 0x09, 0x18, + 0x09, 0x19, 0x09, 0x1A, 0x09, 0x1B, 0x09, 0x1C, 0x09, 0x1D, 0x09, 0x1E, + 0x09, 0x1F, 0x09, 0x20, 0x09, 0x21, 0x09, 0x22, 0x09, 0x23, 0x09, 0x24, + 0x09, 0x25, 0x00, 0xE9, 0x09, 0x26, 0x09, 0x27, 0x09, 0x28, 0x09, 0x29, + 0x09, 0x2A, 0x09, 0x2B, 0x09, 0x2C, 0x09, 0x2D, 0x09, 0x2E, 0x09, 0x2F, + 0x09, 0x30, 0x09, 0x31, 0x09, 0x32, 0x09, 0x33, 0x09, 0x34, 0x09, 0x35, + 0x09, 0x36, 0x09, 0x37, 0x09, 0x38, 0x09, 0x39, 0x09, 0x3A, 0x09, 0x3B, + 0x09, 0x3C, 0x09, 0x3D, 0x09, 0x3E, 0x09, 0x3F, 0x09, 0x40, 0x09, 0x41, + 0x09, 0x42, 0x09, 0x43, 0x09, 0x44, 0x09, 0x45, 0x09, 0x46, 0x09, 0x47, + 0x09, 0x48, 0x09, 0x49, 0x09, 0x4A, 0x09, 0x4B, 0x09, 0x4C, 0x09, 0x4D, + 0x09, 0x4E, 0x09, 0x4F, 0x09, 0x50, 0x09, 0x51, 0x09, 0x52, 0x09, 0x53, + 0x09, 0x54, 0x09, 0x55, 0x09, 0x56, 0x09, 0x57, 0x09, 0x58, 0x09, 0x59, + 0x09, 0x5A, 0x09, 0x5B, 0x09, 0x5C, 0x09, 0x5D, 0x09, 0x5E, 0x09, 0x5F, + 0x09, 0x60, 0x09, 0x61, 0x09, 0x62, 0x09, 0x63, 0x09, 0x64, 0x09, 0x65, + 0x09, 0x66, 0x09, 0x67, 0x09, 0x68, 0x09, 0x69, 0x09, 0x6A, 0x09, 0x6B, + 0x09, 0x6C, 0x09, 0x6D, 0x09, 0x6E, 0x09, 0x6F, 0x09, 0x70, 0x09, 0x71, + 0x09, 0x72, 0x09, 0x73, 0x09, 0x74, 0x09, 0x75, 0x09, 0x76, 0x09, 0x77, + 0x09, 0x78, 0x09, 0x79, 0x09, 0x7A, 0x09, 0x7B, 0x09, 0x7C, 0x09, 0x7D, + 0x09, 0x7E, 0x09, 0x7F, 0x09, 0x80, 0x09, 0x81, 0x09, 0x82, 0x09, 0x83, + 0x09, 0x84, 0x09, 0x85, 0x09, 0x86, 0x09, 0x87, 0x09, 0x88, 0x09, 0x89, + 0x09, 0x8A, 0x09, 0x8B, 0x09, 0x8C, 0x09, 0x8D, 0x09, 0x8E, 0x09, 0x8F, + 0x09, 0x90, 0x09, 0x91, 0x09, 0x92, 0x09, 0x93, 0x09, 0x94, 0x09, 0x95, + 0x09, 0x96, 0x09, 0x97, 0x09, 0x98, 0x09, 0x99, 0x09, 0x9A, 0x09, 0x9B, + 0x09, 0x9C, 0x09, 0x9D, 0x09, 0x9E, 0x09, 0x9F, 0x09, 0xA0, 0x09, 0xA1, + 0x09, 0xA2, 0x09, 0xA3, 0x09, 0xA4, 0x09, 0xA5, 0x09, 0xA6, 0x09, 0xA7, + 0x09, 0xA8, 0x09, 0xA9, 0x09, 0xAA, 0x09, 0xAB, 0x09, 0xAC, 0x09, 0xAD, + 0x09, 0xAE, 0x09, 0xAF, 0x09, 0xB0, 0x09, 0xB1, 0x09, 0xB2, 0x09, 0xB3, + 0x09, 0xB4, 0x09, 0xB5, 0x09, 0xB6, 0x09, 0xB7, 0x09, 0xB8, 0x09, 0xB9, + 0x09, 0xBA, 0x09, 0xBB, 0x09, 0xBC, 0x09, 0xBD, 0x09, 0xBE, 0x09, 0xBF, + 0x09, 0xC0, 0x09, 0xC1, 0x09, 0xC2, 0x09, 0xC3, 0x09, 0xC4, 0x09, 0xC5, + 0x09, 0xC6, 0x09, 0xC7, 0x09, 0xC8, 0x09, 0xC9, 0x09, 0xCA, 0x09, 0xCB, + 0x09, 0xCC, 0x09, 0xCD, 0x09, 0xCE, 0x09, 0xCF, 0x09, 0xD0, 0x09, 0xD1, + 0x09, 0xD2, 0x09, 0xD3, 0x09, 0xD4, 0x09, 0xD5, 0x09, 0xD6, 0x09, 0xD7, + 0x09, 0xD8, 0x09, 0xD9, 0x09, 0xDA, 0x09, 0xDB, 0x09, 0xDC, 0x09, 0xDD, + 0x09, 0xDE, 0x09, 0xDF, 0x09, 0xE0, 0x09, 0xE1, 0x09, 0xE2, 0x09, 0xE3, + 0x09, 0xE4, 0x09, 0xE5, 0x09, 0xE6, 0x09, 0xE7, 0x09, 0xE8, 0x09, 0xE9, + 0x09, 0xEA, 0x09, 0xEB, 0x09, 0xEC, 0x09, 0xED, 0x09, 0xEE, 0x09, 0xEF, + 0x09, 0xF0, 0x09, 0xF1, 0x09, 0xF2, 0x09, 0xF3, 0x09, 0xF4, 0x09, 0xF5, + 0x09, 0xF6, 0x09, 0xF7, 0x09, 0xF8, 0x09, 0xF9, 0x09, 0xFA, 0x09, 0xFB, + 0x09, 0xFC, 0x09, 0xFD, 0x09, 0xFE, 0x09, 0xFF, 0x0A, 0x00, 0x0A, 0x01, + 0x0A, 0x02, 0x0A, 0x03, 0x0A, 0x04, 0x0A, 0x05, 0x0A, 0x06, 0x0A, 0x07, + 0x0A, 0x08, 0x0A, 0x09, 0x0A, 0x0A, 0x0A, 0x0B, 0x0A, 0x0C, 0x0A, 0x0D, + 0x0A, 0x0E, 0x0A, 0x0F, 0x0A, 0x10, 0x0A, 0x11, 0x0A, 0x12, 0x0A, 0x13, + 0x0A, 0x14, 0x0A, 0x15, 0x0A, 0x16, 0x0A, 0x17, 0x0A, 0x18, 0x0A, 0x19, + 0x0A, 0x1A, 0x0A, 0x1B, 0x0A, 0x1C, 0x0A, 0x1D, 0x0A, 0x1E, 0x0A, 0x1F, + 0x0A, 0x20, 0x0A, 0x21, 0x0A, 0x22, 0x0A, 0x23, 0x0A, 0x24, 0x0A, 0x25, + 0x0A, 0x26, 0x0A, 0x27, 0x0A, 0x28, 0x0A, 0x29, 0x0A, 0x2A, 0x0A, 0x2B, + 0x0A, 0x2C, 0x0A, 0x2D, 0x0A, 0x2E, 0x0A, 0x2F, 0x0A, 0x30, 0x0A, 0x31, + 0x0A, 0x32, 0x0A, 0x33, 0x0A, 0x34, 0x0A, 0x35, 0x0A, 0x36, 0x0A, 0x37, + 0x0A, 0x38, 0x0A, 0x39, 0x0A, 0x3A, 0x0A, 0x3B, 0x0A, 0x3C, 0x0A, 0x3D, + 0x0A, 0x3E, 0x0A, 0x3F, 0x0A, 0x40, 0x0A, 0x41, 0x0A, 0x42, 0x0A, 0x43, + 0x0A, 0x44, 0x0A, 0x45, 0x0A, 0x46, 0x0A, 0x47, 0x0A, 0x48, 0x0A, 0x49, + 0x0A, 0x4A, 0x0A, 0x4B, 0x0A, 0x4C, 0x0A, 0x4D, 0x0A, 0x4E, 0x0A, 0x4F, + 0x0A, 0x50, 0x0A, 0x51, 0x0A, 0x52, 0x0A, 0x53, 0x0A, 0x54, 0x0A, 0x55, + 0x0A, 0x56, 0x0A, 0x57, 0x0A, 0x58, 0x0A, 0x59, 0x0A, 0x5A, 0x0A, 0x5B, + 0x0A, 0x5C, 0x0A, 0x5D, 0x0A, 0x5E, 0x0A, 0x5F, 0x0A, 0x60, 0x0A, 0x61, + 0x0A, 0x62, 0x0A, 0x63, 0x0A, 0x64, 0x0A, 0x65, 0x0A, 0x66, 0x0A, 0x67, + 0x0A, 0x68, 0x0A, 0x69, 0x0A, 0x6A, 0x0A, 0x6B, 0x0A, 0x6C, 0x0A, 0x6D, + 0x0A, 0x6E, 0x0A, 0x6F, 0x0A, 0x70, 0x0A, 0x71, 0x0A, 0x72, 0x0A, 0x73, + 0x0A, 0x74, 0x0A, 0x75, 0x0A, 0x76, 0x0A, 0x77, 0x0A, 0x78, 0x0A, 0x79, + 0x0A, 0x7A, 0x0A, 0x7B, 0x0A, 0x7C, 0x0A, 0x7D, 0x0A, 0x7E, 0x0A, 0x7F, + 0x0A, 0x80, 0x0A, 0x81, 0x0A, 0x82, 0x0A, 0x83, 0x0A, 0x84, 0x0A, 0x85, + 0x0A, 0x86, 0x0A, 0x87, 0x0A, 0x88, 0x0A, 0x89, 0x0A, 0x8A, 0x0A, 0x8B, + 0x0A, 0x8C, 0x0A, 0x8D, 0x0A, 0x8E, 0x0A, 0x8F, 0x0A, 0x90, 0x0A, 0x91, + 0x0A, 0x92, 0x0A, 0x93, 0x0A, 0x94, 0x0A, 0x95, 0x0A, 0x96, 0x0A, 0x97, + 0x0A, 0x98, 0x0A, 0x99, 0x0A, 0x9A, 0x0A, 0x9B, 0x0A, 0x9C, 0x0A, 0x9D, + 0x0A, 0x9E, 0x0A, 0x9F, 0x0A, 0xA0, 0x0A, 0xA1, 0x0A, 0xA2, 0x0A, 0xA3, + 0x0A, 0xA4, 0x0A, 0xA5, 0x0A, 0xA6, 0x0A, 0xA7, 0x0A, 0xA8, 0x0A, 0xA9, + 0x0A, 0xAA, 0x0A, 0xAB, 0x0A, 0xAC, 0x0A, 0xAD, 0x0A, 0xAE, 0x0A, 0xAF, + 0x0A, 0xB0, 0x0A, 0xB1, 0x0A, 0xB2, 0x0A, 0xB3, 0x0A, 0xB4, 0x0A, 0xB5, + 0x0A, 0xB6, 0x0A, 0xB7, 0x0A, 0xB8, 0x0A, 0xB9, 0x0A, 0xBA, 0x0A, 0xBB, + 0x0A, 0xBC, 0x0A, 0xBD, 0x0A, 0xBE, 0x0A, 0xBF, 0x0A, 0xC0, 0x0A, 0xC1, + 0x0A, 0xC2, 0x0A, 0xC3, 0x0A, 0xC4, 0x0A, 0xC5, 0x0A, 0xC6, 0x0A, 0xC7, + 0x0A, 0xC8, 0x0A, 0xC9, 0x0A, 0xCA, 0x0A, 0xCB, 0x0A, 0xCC, 0x0A, 0xCD, + 0x0A, 0xCE, 0x0A, 0xCF, 0x0A, 0xD0, 0x0A, 0xD1, 0x0A, 0xD2, 0x0A, 0xD3, + 0x0A, 0xD4, 0x0A, 0xD5, 0x0A, 0xD6, 0x0A, 0xD7, 0x0A, 0xD8, 0x0A, 0xD9, + 0x0A, 0xDA, 0x0A, 0xDB, 0x0A, 0xDC, 0x0A, 0xDD, 0x0A, 0xDE, 0x0A, 0xDF, + 0x0A, 0xE0, 0x0A, 0xE1, 0x0A, 0xE2, 0x0A, 0xE3, 0x0A, 0xE4, 0x0A, 0xE5, + 0x0A, 0xE6, 0x0A, 0xE7, 0x0A, 0xE8, 0x0A, 0xE9, 0x0A, 0xEA, 0x0A, 0xEB, + 0x0A, 0xEC, 0x0A, 0xED, 0x0A, 0xEE, 0x0A, 0xEF, 0x0A, 0xF0, 0x0A, 0xF1, + 0x0A, 0xF2, 0x0A, 0xF3, 0x0A, 0xF4, 0x0A, 0xF5, 0x0A, 0xF6, 0x0A, 0xF7, + 0x0A, 0xF8, 0x0A, 0xF9, 0x0A, 0xFA, 0x0A, 0xFB, 0x0A, 0xFC, 0x0A, 0xFD, + 0x0A, 0xFE, 0x0A, 0xFF, 0x0B, 0x00, 0x0B, 0x01, 0x0B, 0x02, 0x0B, 0x03, + 0x0B, 0x04, 0x0B, 0x05, 0x0B, 0x06, 0x0B, 0x07, 0x0B, 0x08, 0x0B, 0x09, + 0x0B, 0x0A, 0x0B, 0x0B, 0x0B, 0x0C, 0x0B, 0x0D, 0x0B, 0x0E, 0x0B, 0x0F, + 0x0B, 0x10, 0x0B, 0x11, 0x0B, 0x12, 0x0B, 0x13, 0x0B, 0x14, 0x0B, 0x15, + 0x0B, 0x16, 0x0B, 0x17, 0x0B, 0x18, 0x0B, 0x19, 0x0B, 0x1A, 0x0B, 0x1B, + 0x0B, 0x1C, 0x0B, 0x1D, 0x0B, 0x1E, 0x0B, 0x1F, 0x0B, 0x20, 0x0B, 0x21, + 0x0B, 0x22, 0x0B, 0x23, 0x0B, 0x24, 0x0B, 0x25, 0x0B, 0x26, 0x0B, 0x27, + 0x0B, 0x28, 0x0B, 0x29, 0x0B, 0x2A, 0x0B, 0x2B, 0x0B, 0x2C, 0x0B, 0x2D, + 0x0B, 0x2E, 0x0B, 0x2F, 0x0B, 0x30, 0x0B, 0x31, 0x0B, 0x32, 0x0B, 0x33, + 0x0B, 0x34, 0x0B, 0x35, 0x0B, 0x36, 0x0B, 0x37, 0x0B, 0x38, 0x0B, 0x39, + 0x0B, 0x3A, 0x0B, 0x3B, 0x0B, 0x3C, 0x0B, 0x3D, 0x0B, 0x3E, 0x0B, 0x3F, + 0x0B, 0x40, 0x0B, 0x41, 0x0B, 0x42, 0x0B, 0x43, 0x0B, 0x44, 0x0B, 0x45, + 0x0B, 0x46, 0x0B, 0x47, 0x0B, 0x48, 0x0B, 0x49, 0x0B, 0x4A, 0x0B, 0x4B, + 0x0B, 0x4C, 0x0B, 0x4D, 0x0B, 0x4E, 0x0B, 0x4F, 0x0B, 0x50, 0x0B, 0x51, + 0x0B, 0x52, 0x0B, 0x53, 0x0B, 0x54, 0x0B, 0x55, 0x0B, 0x56, 0x0B, 0x57, + 0x0B, 0x58, 0x0B, 0x59, 0x0B, 0x5A, 0x0B, 0x5B, 0x0B, 0x5C, 0x0B, 0x5D, + 0x0B, 0x5E, 0x0B, 0x5F, 0x0B, 0x60, 0x0B, 0x61, 0x0B, 0x62, 0x0B, 0x63, + 0x0B, 0x64, 0x0B, 0x65, 0x0B, 0x66, 0x0B, 0x67, 0x0B, 0x68, 0x0B, 0x69, + 0x0B, 0x6A, 0x0B, 0x6B, 0x0B, 0x6C, 0x0B, 0x6D, 0x0B, 0x6E, 0x0B, 0x6F, + 0x0B, 0x70, 0x0B, 0x71, 0x0B, 0x72, 0x0B, 0x73, 0x0B, 0x74, 0x0B, 0x75, + 0x0B, 0x76, 0x0B, 0x77, 0x0B, 0x78, 0x0A, 0x41, 0x72, 0x69, 0x6E, 0x67, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x41, 0x72, 0x69, 0x6E, 0x67, 0x6F, + 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x41, 0x6D, 0x61, 0x63, 0x72, 0x6F, + 0x6E, 0x06, 0x41, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x41, 0x6F, 0x67, + 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x34, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x41, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x36, + 0x05, 0x41, 0x6C, 0x70, 0x68, 0x61, 0x0A, 0x41, 0x6C, 0x70, 0x68, 0x61, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x43, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, + 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x38, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x38, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, + 0x43, 0x06, 0x4C, 0x61, 0x6D, 0x62, 0x64, 0x61, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x45, 0x32, 0x07, 0x41, 0x45, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x34, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x31, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x32, 0x04, 0x42, 0x65, 0x74, + 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x37, 0x0B, 0x43, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x43, 0x64, + 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x41, + 0x06, 0x44, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x31, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x32, 0x05, + 0x44, 0x62, 0x61, 0x72, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, + 0x32, 0x08, 0x44, 0x7A, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x5F, 0x07, 0x45, + 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x45, 0x62, 0x72, 0x65, 0x76, + 0x65, 0x0A, 0x45, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x07, 0x45, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x45, 0x63, 0x61, + 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x32, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x36, 0x05, 0x45, 0x74, 0x75, 0x72, + 0x6E, 0x07, 0x45, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x0C, 0x45, 0x70, + 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x31, 0x45, 0x05, 0x46, 0x74, 0x75, 0x72, 0x6E, 0x04, 0x47, 0x62, 0x61, + 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x33, 0x0B, 0x47, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x47, 0x64, + 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x32, 0x32, 0x06, 0x47, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x30, 0x03, 0x47, 0x2E, 0x31, 0x06, 0x47, 0x62, 0x61, 0x72, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x33, 0x2E, 0x31, + 0x0D, 0x47, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, + 0x2E, 0x31, 0x08, 0x47, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x31, 0x0C, + 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, 0x32, 0x2E, 0x31, 0x08, 0x47, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x46, 0x34, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, + 0x30, 0x2E, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x38, 0x0B, + 0x48, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x41, 0x04, 0x48, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x32, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x41, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x36, + 0x03, 0x45, 0x74, 0x61, 0x08, 0x45, 0x74, 0x61, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x32, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x31, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x39, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x43, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, + 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x43, 0x43, 0x08, 0x49, 0x2E, 0x64, 0x6F, 0x75, 0x62, + 0x6C, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x39, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x43, 0x06, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x49, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x49, 0x62, 0x72, 0x65, 0x76, 0x65, + 0x07, 0x49, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x43, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x38, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x41, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x41, + 0x04, 0x49, 0x6F, 0x74, 0x61, 0x09, 0x49, 0x6F, 0x74, 0x61, 0x47, 0x72, + 0x65, 0x65, 0x6B, 0x09, 0x49, 0x6F, 0x74, 0x61, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x0C, 0x49, 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, + 0x69, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x33, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x33, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x33, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x33, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x44, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x39, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x03, 0x49, 0x2E, 0x31, 0x0B, 0x49, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x39, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x43, 0x2E, 0x31, 0x08, 0x49, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, + 0x31, 0x08, 0x49, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, 0x0D, 0x49, + 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x31, + 0x08, 0x49, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x31, 0x09, 0x49, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x08, 0x49, 0x62, 0x72, 0x65, + 0x76, 0x65, 0x2E, 0x31, 0x09, 0x49, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, + 0x2E, 0x31, 0x0C, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x46, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x38, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x38, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, + 0x38, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x39, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x41, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x33, 0x43, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x33, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, + 0x45, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x46, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x38, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x44, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x44, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, + 0x36, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x2E, + 0x31, 0x0B, 0x4A, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, + 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x37, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x36, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x39, 0x38, 0x05, 0x4B, 0x61, 0x70, 0x70, 0x61, 0x06, + 0x4C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x33, 0x42, 0x06, 0x4C, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x43, 0x44, 0x02, 0x4D, 0x75, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x43, + 0x06, 0x4E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x34, 0x35, 0x06, 0x4E, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x46, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x34, 0x41, 0x05, 0x4E, 0x68, 0x6F, 0x6F, 0x6B, 0x03, 0x45, 0x6E, 0x67, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x36, 0x02, 0x4E, 0x75, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x42, 0x05, 0x4F, 0x68, 0x6F, 0x72, + 0x6E, 0x07, 0x4F, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x4F, 0x62, + 0x72, 0x65, 0x76, 0x65, 0x0D, 0x4F, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, + 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x32, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x33, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x44, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x32, 0x0B, 0x4F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x61, 0x63, 0x75, + 0x74, 0x65, 0x07, 0x4F, 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, 0x0C, 0x4F, + 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x34, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x45, 0x36, 0x04, 0x4F, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x45, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x34, 0x03, 0x52, 0x68, 0x6F, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x43, 0x08, 0x51, 0x5F, 0x72, + 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x06, 0x52, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x06, 0x52, 0x63, 0x61, + 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x35, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x31, 0x46, 0x02, + 0x52, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x43, 0x06, 0x53, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x53, 0x63, 0x69, 0x72, 0x63, 0x75, + 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, + 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x36, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x36, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x41, 0x06, 0x54, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x09, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x31, 0x41, 0x2E, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x43, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x41, 0x43, 0x2E, 0x62, 0x61, 0x73, 0x65, 0x07, + 0x54, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x33, 0x45, 0x03, 0x54, 0x61, 0x75, 0x05, 0x55, 0x68, 0x6F, 0x72, + 0x6E, 0x06, 0x55, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x55, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x55, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, + 0x55, 0x72, 0x69, 0x6E, 0x67, 0x0D, 0x55, 0x68, 0x75, 0x6E, 0x67, 0x61, + 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x55, 0x6F, 0x67, 0x6F, + 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x44, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x31, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x45, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x45, 0x0B, + 0x57, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x06, + 0x57, 0x67, 0x72, 0x61, 0x76, 0x65, 0x06, 0x57, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x09, 0x57, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x38, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x43, 0x03, + 0x43, 0x68, 0x69, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x33, 0x0B, + 0x59, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x38, 0x45, 0x06, 0x59, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x34, 0x45, 0x07, 0x55, 0x70, 0x73, 0x69, 0x6C, + 0x6F, 0x6E, 0x0C, 0x55, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0F, 0x55, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x35, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x35, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x45, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x42, 0x07, + 0x59, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x5A, 0x61, 0x63, 0x75, + 0x74, 0x65, 0x0A, 0x5A, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, + 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x34, 0x04, 0x5A, 0x62, + 0x61, 0x72, 0x04, 0x5A, 0x65, 0x74, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x43, 0x37, 0x46, 0x06, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x42, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x42, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x33, 0x07, 0x61, + 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x07, 0x61, 0x6F, 0x67, 0x6F, 0x6E, + 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x41, 0x0A, 0x61, + 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0B, 0x61, 0x72, + 0x69, 0x6E, 0x67, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x31, 0x05, 0x61, 0x74, 0x75, 0x72, 0x6E, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x33, 0x07, 0x61, 0x65, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x35, 0x03, + 0x61, 0x2E, 0x31, 0x08, 0x61, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, + 0x08, 0x61, 0x62, 0x72, 0x65, 0x76, 0x65, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x41, 0x46, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x42, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, + 0x31, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x33, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x35, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x45, 0x2E, 0x31, 0x0D, 0x61, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x35, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x41, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, + 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x42, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x31, 0x2E, 0x31, 0x0B, + 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x46, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x32, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x31, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, + 0x31, 0x2E, 0x31, 0x08, 0x61, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x33, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x30, 0x33, 0x2E, 0x31, 0x09, 0x61, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x09, 0x61, 0x6F, 0x67, 0x6F, 0x6E, + 0x65, 0x6B, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x41, + 0x2E, 0x31, 0x07, 0x61, 0x72, 0x69, 0x6E, 0x67, 0x2E, 0x31, 0x0C, 0x61, + 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x31, 0x2E, 0x31, 0x08, 0x61, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x31, 0x04, 0x62, 0x62, 0x61, 0x72, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x38, 0x38, 0x0B, 0x63, 0x63, 0x69, 0x72, + 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x63, 0x64, 0x6F, 0x74, + 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x34, 0x31, 0x07, 0x64, 0x72, 0x74, 0x68, 0x6F, + 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x31, 0x06, 0x64, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x33, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x41, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, + 0x36, 0x05, 0x64, 0x79, 0x6F, 0x67, 0x68, 0x04, 0x64, 0x6F, 0x6E, 0x67, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x37, 0x07, 0x65, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x06, 0x65, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0A, + 0x65, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x65, + 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x06, 0x65, 0x63, 0x61, 0x72, 0x6F, + 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x35, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x35, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x31, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x31, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x33, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x44, 0x37, 0x05, 0x65, 0x74, 0x75, 0x72, 0x6E, 0x0C, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x66, 0x5F, 0x62, 0x61, 0x73, 0x65, + 0x03, 0x66, 0x2E, 0x31, 0x03, 0x66, 0x2E, 0x69, 0x05, 0x66, 0x2E, 0x69, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, 0x2E, 0x31, + 0x06, 0x66, 0x65, 0x6E, 0x67, 0x2E, 0x31, 0x05, 0x6C, 0x6F, 0x6E, 0x67, + 0x73, 0x0B, 0x73, 0x6C, 0x6F, 0x6E, 0x67, 0x73, 0x74, 0x72, 0x6F, 0x6B, + 0x65, 0x0E, 0x73, 0x6C, 0x6F, 0x6E, 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, + 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, + 0x04, 0x66, 0x65, 0x6E, 0x67, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, + 0x30, 0x04, 0x67, 0x62, 0x61, 0x72, 0x0B, 0x67, 0x63, 0x69, 0x72, 0x63, + 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x0A, 0x67, 0x64, 0x6F, 0x74, 0x61, + 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, + 0x33, 0x06, 0x67, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x31, + 0x04, 0x67, 0x2E, 0x73, 0x63, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, + 0x30, 0x2E, 0x73, 0x63, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x39, 0x35, 0x05, 0x68, 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x68, + 0x74, 0x75, 0x72, 0x6E, 0x6C, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x0A, 0x68, + 0x74, 0x75, 0x72, 0x6E, 0x68, 0x6F, 0x6F, 0x6B, 0x32, 0x04, 0x68, 0x62, + 0x61, 0x72, 0x0B, 0x68, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, + 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x32, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x32, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x39, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x42, 0x0F, 0x64, + 0x6F, 0x74, 0x6C, 0x65, 0x73, 0x73, 0x69, 0x2E, 0x64, 0x6F, 0x75, 0x62, + 0x6C, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x46, 0x06, 0x69, + 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, + 0x44, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x44, 0x2E, 0x63, 0x63, + 0x6D, 0x70, 0x04, 0x69, 0x62, 0x61, 0x72, 0x07, 0x69, 0x6D, 0x61, 0x63, + 0x72, 0x6F, 0x6E, 0x06, 0x69, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x32, 0x46, 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x07, + 0x69, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x42, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x42, 0x2E, 0x63, 0x63, 0x6D, 0x70, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x37, 0x0B, 0x6A, 0x64, 0x6F, + 0x74, 0x6C, 0x65, 0x73, 0x73, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x39, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x39, + 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, + 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x37, 0x02, 0x69, 0x6A, + 0x04, 0x69, 0x2E, 0x73, 0x63, 0x0F, 0x6A, 0x63, 0x72, 0x6F, 0x73, 0x73, + 0x74, 0x61, 0x69, 0x6C, 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x0A, 0x6A, 0x63, + 0x72, 0x6F, 0x73, 0x73, 0x74, 0x61, 0x69, 0x6C, 0x0B, 0x6A, 0x63, 0x69, + 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x46, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x31, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x33, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x33, 0x35, 0x05, 0x6B, 0x74, 0x75, 0x72, 0x6E, 0x06, 0x6B, + 0x2E, 0x62, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, + 0x41, 0x09, 0x6C, 0x6D, 0x69, 0x64, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x07, + 0x6C, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x36, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x34, 0x04, + 0x6C, 0x64, 0x6F, 0x74, 0x06, 0x6C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x06, 0x6C, 0x63, 0x61, 0x72, + 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x33, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x44, 0x06, 0x6C, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0B, 0x6C, 0x73, 0x6C, 0x61, 0x73, 0x68, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x39, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0E, 0x6C, 0x6D, 0x69, 0x64, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x36, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x09, 0x6C, + 0x64, 0x6F, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0B, 0x6C, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x33, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0B, 0x6C, 0x63, + 0x61, 0x72, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x33, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x32, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x44, 0x2E, 0x73, 0x73, 0x30, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x46, 0x04, 0x6C, 0x2E, + 0x73, 0x63, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x37, 0x31, 0x05, 0x6D, + 0x74, 0x75, 0x72, 0x6E, 0x0C, 0x6D, 0x74, 0x75, 0x72, 0x6E, 0x64, 0x65, + 0x73, 0x63, 0x65, 0x6E, 0x64, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x33, 0x07, 0x6E, 0x72, 0x74, 0x68, 0x6F, 0x6F, + 0x6B, 0x03, 0x65, 0x6E, 0x67, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, + 0x35, 0x08, 0x6E, 0x6C, 0x66, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x39, 0x45, 0x06, 0x6E, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x06, 0x6E, 0x63, + 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x34, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x43, 0x43, 0x04, 0x6E, 0x2E, 0x73, 0x63, 0x05, 0x6F, 0x68, + 0x6F, 0x72, 0x6E, 0x07, 0x6F, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x06, + 0x6F, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0D, 0x6F, 0x68, 0x75, 0x6E, 0x67, + 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x30, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x32, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x44, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x45, 0x33, 0x0B, 0x6F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x61, + 0x63, 0x75, 0x74, 0x65, 0x07, 0x6F, 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, + 0x0C, 0x6F, 0x6D, 0x69, 0x63, 0x72, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x34, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, 0x33, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x34, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x34, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x37, 0x33, 0x04, 0x6F, 0x62, 0x61, 0x72, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x33, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x37, 0x05, 0x6F, 0x65, 0x2E, 0x73, 0x63, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x37, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x37, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x30, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x41, 0x30, 0x07, 0x71, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, + 0x07, 0x72, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x44, 0x05, 0x72, 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x72, + 0x74, 0x75, 0x72, 0x6E, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x0C, 0x72, + 0x66, 0x69, 0x73, 0x68, 0x68, 0x6F, 0x6F, 0x6B, 0x72, 0x65, 0x76, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x37, 0x45, 0x08, 0x72, 0x64, 0x65, 0x73, + 0x63, 0x65, 0x6E, 0x64, 0x06, 0x72, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x06, 0x72, 0x63, 0x61, 0x72, + 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x31, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x35, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x35, 0x46, 0x04, 0x72, 0x2E, 0x73, 0x63, 0x07, 0x72, 0x69, 0x6E, 0x76, + 0x2E, 0x73, 0x63, 0x07, 0x73, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x46, 0x06, 0x73, 0x61, 0x63, 0x75, + 0x74, 0x65, 0x0B, 0x73, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, + 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x39, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x41, 0x38, 0x0C, 0x67, 0x65, 0x72, 0x6D, 0x61, + 0x6E, 0x64, 0x62, 0x6C, 0x73, 0x2E, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x41, 0x42, 0x07, 0x74, 0x72, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x41, 0x38, 0x05, 0x74, 0x74, 0x75, 0x72, 0x6E, 0x04, 0x74, 0x62, + 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x36, 0x33, 0x06, 0x74, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x37, 0x03, 0x74, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x41, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x36, 0x33, 0x2E, 0x31, 0x08, 0x74, 0x63, 0x61, 0x72, 0x6F, 0x6E, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x42, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x36, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x36, 0x46, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x31, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x37, + 0x2E, 0x31, 0x06, 0x75, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x05, 0x75, 0x68, + 0x6F, 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x42, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x38, 0x39, 0x07, 0x75, 0x6D, 0x61, 0x63, + 0x72, 0x6F, 0x6E, 0x06, 0x75, 0x62, 0x72, 0x65, 0x76, 0x65, 0x05, 0x75, + 0x72, 0x69, 0x6E, 0x67, 0x0D, 0x75, 0x68, 0x75, 0x6E, 0x67, 0x61, 0x72, + 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x07, 0x75, 0x6F, 0x67, 0x6F, 0x6E, + 0x65, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x37, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x45, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x31, 0x03, 0x75, + 0x2E, 0x31, 0x08, 0x75, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x38, 0x39, 0x2E, 0x31, 0x08, 0x75, 0x62, + 0x72, 0x65, 0x76, 0x65, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x34, 0x2E, 0x31, 0x0D, 0x75, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, + 0x66, 0x6C, 0x65, 0x78, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x35, + 0x2E, 0x31, 0x0B, 0x75, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x38, 0x2E, 0x31, + 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x2E, 0x31, 0x09, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x44, 0x41, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x44, 0x43, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x44, 0x36, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, + 0x2E, 0x31, 0x08, 0x75, 0x67, 0x72, 0x61, 0x76, 0x65, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x37, 0x2E, 0x31, 0x07, 0x75, 0x68, + 0x6F, 0x72, 0x6E, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, + 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x31, 0x2E, + 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x42, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x44, 0x2E, 0x31, 0x09, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x45, 0x46, 0x2E, 0x31, 0x0F, 0x75, 0x68, 0x75, 0x6E, + 0x67, 0x61, 0x72, 0x75, 0x6D, 0x6C, 0x61, 0x75, 0x74, 0x2E, 0x31, 0x09, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x37, 0x2E, 0x31, 0x09, 0x75, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x42, 0x2E, 0x31, 0x09, 0x75, 0x6F, 0x67, 0x6F, 0x6E, 0x65, + 0x6B, 0x2E, 0x31, 0x07, 0x75, 0x72, 0x69, 0x6E, 0x67, 0x2E, 0x31, 0x08, + 0x75, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x37, 0x39, 0x2E, 0x31, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x35, 0x2E, 0x31, 0x05, 0x76, 0x74, 0x75, 0x72, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x37, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x46, 0x09, 0x77, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x05, 0x77, 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x77, 0x63, 0x69, 0x72, 0x63, + 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x06, 0x77, 0x67, 0x72, 0x61, 0x76, + 0x65, 0x06, 0x77, 0x61, 0x63, 0x75, 0x74, 0x65, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x38, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x35, 0x03, 0x63, 0x68, 0x69, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x34, 0x46, 0x0B, 0x79, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, + 0x66, 0x6C, 0x65, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x39, 0x39, 0x06, 0x79, 0x67, 0x72, 0x61, 0x76, 0x65, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x46, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x35, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x46, 0x33, 0x05, 0x79, 0x74, 0x75, 0x72, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x45, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x32, 0x07, 0x79, 0x6F, + 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x04, 0x79, 0x2E, 0x73, 0x63, 0x04, 0x7A, + 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x30, 0x07, 0x7A, 0x72, 0x74, 0x68, + 0x6F, 0x6F, 0x6B, 0x06, 0x7A, 0x61, 0x63, 0x75, 0x74, 0x65, 0x0A, 0x7A, + 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x35, 0x05, 0x47, 0x61, + 0x6D, 0x6D, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x39, 0x34, 0x05, + 0x54, 0x68, 0x65, 0x74, 0x61, 0x02, 0x58, 0x69, 0x02, 0x50, 0x69, 0x05, + 0x53, 0x69, 0x67, 0x6D, 0x61, 0x03, 0x50, 0x68, 0x69, 0x03, 0x50, 0x73, + 0x69, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x41, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x46, 0x42, 0x0A, 0x4F, 0x6D, 0x65, 0x67, 0x61, 0x74, + 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x38, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x45, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x38, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x45, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x43, 0x08, 0x55, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, + 0x34, 0x06, 0x47, 0x61, 0x6D, 0x6D, 0x61, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x31, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x31, 0x37, 0x05, 0x4B, 0x61, 0x63, 0x79, 0x72, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x37, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x32, 0x05, 0x61, + 0x6C, 0x70, 0x68, 0x61, 0x0A, 0x61, 0x6C, 0x70, 0x68, 0x61, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x38, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x38, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x42, 0x37, 0x04, 0x62, 0x65, 0x74, 0x61, 0x05, 0x67, 0x61, 0x6D, + 0x6D, 0x61, 0x05, 0x64, 0x65, 0x6C, 0x74, 0x61, 0x07, 0x65, 0x70, 0x73, + 0x69, 0x6C, 0x6F, 0x6E, 0x0C, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, + 0x6E, 0x63, 0x6C, 0x6F, 0x73, 0x65, 0x64, 0x08, 0x65, 0x70, 0x73, 0x69, + 0x6C, 0x6F, 0x6E, 0x31, 0x0B, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x31, 0x72, 0x65, 0x76, 0x11, 0x65, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x31, 0x72, 0x65, 0x76, 0x63, 0x6C, 0x6F, 0x73, 0x65, 0x64, 0x0F, 0x65, + 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x31, 0x72, 0x65, 0x76, 0x68, 0x6F, + 0x6F, 0x6B, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x31, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x31, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x32, 0x04, 0x7A, + 0x65, 0x74, 0x61, 0x03, 0x65, 0x74, 0x61, 0x08, 0x65, 0x74, 0x61, 0x74, + 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x39, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x39, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x39, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x43, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x37, + 0x05, 0x74, 0x68, 0x65, 0x74, 0x61, 0x04, 0x69, 0x6F, 0x74, 0x61, 0x11, + 0x69, 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x09, 0x69, 0x6F, 0x74, 0x61, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0C, 0x69, 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x33, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x33, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x37, 0x06, 0x6C, 0x61, 0x6D, + 0x62, 0x64, 0x61, 0x02, 0x78, 0x69, 0x03, 0x72, 0x68, 0x6F, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x33, 0x43, 0x32, 0x05, 0x73, 0x69, 0x67, 0x6D, 0x61, + 0x03, 0x74, 0x61, 0x75, 0x07, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x14, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0F, 0x75, 0x70, + 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x0C, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x74, 0x6F, 0x6E, + 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x35, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x35, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x46, 0x45, 0x37, 0x03, 0x70, 0x68, 0x69, 0x08, 0x70, + 0x68, 0x69, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x03, 0x70, 0x73, 0x69, 0x05, + 0x6F, 0x6D, 0x65, 0x67, 0x61, 0x0A, 0x6F, 0x6D, 0x65, 0x67, 0x61, 0x74, + 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x41, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x34, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x46, 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x37, + 0x06, 0x67, 0x61, 0x6D, 0x6D, 0x61, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x32, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x39, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x41, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x35, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x33, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x33, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x36, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x39, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x41, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x45, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x42, 0x44, 0x04, 0x45, 0x75, 0x72, 0x6F, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x38, + 0x06, 0x70, 0x65, 0x73, 0x65, 0x74, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x42, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x39, 0x04, 0x6C, 0x69, 0x72, 0x61, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x32, 0x0D, 0x63, 0x6F, 0x6C, + 0x6F, 0x6E, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6E, 0x63, 0x79, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x42, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x41, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x41, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x42, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x45, 0x33, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x42, 0x43, 0x0A, 0x7A, 0x65, 0x72, 0x6F, 0x2E, + 0x73, 0x6C, 0x61, 0x73, 0x68, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x07, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x31, 0x09, 0x66, + 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x08, 0x73, 0x69, 0x78, + 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x73, + 0x73, 0x30, 0x31, 0x07, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x74, 0x66, 0x06, + 0x6F, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x06, 0x74, 0x77, 0x6F, 0x2E, 0x74, + 0x66, 0x08, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x74, 0x66, 0x07, 0x66, + 0x6F, 0x75, 0x72, 0x2E, 0x74, 0x66, 0x07, 0x66, 0x69, 0x76, 0x65, 0x2E, + 0x74, 0x66, 0x06, 0x73, 0x69, 0x78, 0x2E, 0x74, 0x66, 0x08, 0x73, 0x65, + 0x76, 0x65, 0x6E, 0x2E, 0x74, 0x66, 0x08, 0x65, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x74, 0x66, 0x07, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x0D, + 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x6C, 0x61, 0x73, + 0x68, 0x0B, 0x6F, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x31, 0x2E, 0x74, 0x66, + 0x0C, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x0B, 0x73, 0x69, 0x78, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x0C, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x08, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x74, 0x66, 0x09, + 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x74, 0x66, 0x08, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x74, 0x66, 0x0D, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x0C, 0x73, 0x65, 0x6D, + 0x69, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x74, 0x66, 0x0C, 0x70, 0x61, + 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x74, 0x66, 0x0D, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x74, 0x66, + 0x0C, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x74, + 0x66, 0x0D, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x74, 0x66, 0x0E, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, + 0x65, 0x66, 0x74, 0x2E, 0x74, 0x66, 0x0F, 0x62, 0x72, 0x61, 0x63, 0x6B, + 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x74, 0x66, 0x11, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x12, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, + 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x11, + 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x2E, 0x74, 0x66, 0x12, 0x62, 0x72, 0x61, 0x63, 0x65, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, + 0x13, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, 0x65, 0x66, 0x74, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x14, 0x62, 0x72, 0x61, + 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x2E, 0x74, 0x66, 0x09, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, + 0x2E, 0x74, 0x66, 0x0E, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x07, 0x6C, 0x65, 0x73, 0x73, 0x2E, + 0x74, 0x66, 0x0A, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x74, + 0x66, 0x0C, 0x6C, 0x65, 0x73, 0x73, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, + 0x74, 0x66, 0x0F, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, + 0x75, 0x61, 0x6C, 0x2E, 0x74, 0x66, 0x08, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x74, 0x66, 0x0B, 0x6E, 0x6F, 0x74, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x74, 0x66, 0x07, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x74, 0x66, 0x08, + 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x74, 0x66, 0x0B, 0x6D, 0x75, 0x6C, + 0x74, 0x69, 0x70, 0x6C, 0x79, 0x2E, 0x74, 0x66, 0x09, 0x64, 0x69, 0x76, + 0x69, 0x64, 0x65, 0x2E, 0x74, 0x66, 0x0C, 0x70, 0x6C, 0x75, 0x73, 0x6D, + 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x74, 0x66, 0x0E, 0x61, 0x70, 0x70, 0x72, + 0x6F, 0x78, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x74, 0x66, 0x0D, 0x61, + 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x2E, 0x74, 0x66, + 0x0B, 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6B, 0x2E, 0x74, 0x66, + 0x0C, 0x6C, 0x65, 0x73, 0x73, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, + 0x66, 0x0F, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x2E, 0x74, 0x66, 0x11, 0x6C, 0x65, 0x73, 0x73, 0x65, 0x71, + 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x14, + 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x0D, 0x65, 0x71, 0x75, + 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x10, 0x6E, + 0x6F, 0x74, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x2E, 0x74, 0x66, 0x0C, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x0D, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x10, 0x6D, 0x75, 0x6C, 0x74, 0x69, + 0x70, 0x6C, 0x79, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x0E, + 0x64, 0x69, 0x76, 0x69, 0x64, 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, + 0x74, 0x66, 0x11, 0x70, 0x6C, 0x75, 0x73, 0x6D, 0x69, 0x6E, 0x75, 0x73, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x13, 0x61, 0x70, 0x70, + 0x72, 0x6F, 0x78, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x12, 0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, + 0x6C, 0x64, 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x74, 0x66, 0x10, + 0x61, 0x73, 0x74, 0x65, 0x72, 0x69, 0x73, 0x6B, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x08, 0x73, 0x70, 0x61, 0x63, 0x65, 0x2E, 0x74, + 0x66, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, 0x30, 0x2E, 0x74, 0x66, + 0x0A, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x38, 0x2E, 0x74, 0x66, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x41, 0x09, 0x65, 0x78, 0x63, 0x6C, + 0x61, 0x6D, 0x64, 0x62, 0x6C, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x34, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x45, 0x31, 0x38, 0x11, 0x62, 0x72, + 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, 0x65, 0x66, 0x74, 0x5F, 0x71, 0x75, + 0x69, 0x6C, 0x6C, 0x12, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x5F, 0x71, 0x75, 0x69, 0x6C, 0x6C, 0x0E, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, + 0x74, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x62, + 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0E, 0x62, 0x72, 0x61, 0x63, 0x65, 0x6C, 0x65, + 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0F, 0x62, 0x72, 0x61, 0x63, + 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, + 0x61, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0A, 0x66, 0x69, 0x67, 0x75, + 0x72, 0x65, 0x64, 0x61, 0x73, 0x68, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x31, 0x35, 0x0A, 0x6F, 0x70, 0x65, 0x6E, 0x62, 0x75, 0x6C, 0x6C, 0x65, + 0x74, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x33, 0x0E, 0x74, 0x72, + 0x69, 0x61, 0x6E, 0x67, 0x6C, 0x65, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x41, 0x41, + 0x0B, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0B, 0x65, 0x6E, 0x64, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0F, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x64, 0x61, 0x73, 0x68, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0B, 0x65, 0x6D, 0x64, 0x61, 0x73, 0x68, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0B, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0F, 0x6F, 0x70, 0x65, 0x6E, 0x62, 0x75, 0x6C, + 0x6C, 0x65, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x34, 0x33, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x13, 0x74, 0x72, + 0x69, 0x61, 0x6E, 0x67, 0x6C, 0x65, 0x62, 0x75, 0x6C, 0x6C, 0x65, 0x74, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, + 0x43, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x34, 0x44, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, + 0x35, 0x41, 0x41, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0D, 0x71, 0x75, 0x6F, + 0x74, 0x65, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x64, 0x10, 0x71, + 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, 0x65, 0x76, 0x65, 0x72, + 0x73, 0x65, 0x64, 0x05, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x0B, 0x64, 0x6F, + 0x75, 0x62, 0x6C, 0x65, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x33, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, + 0x37, 0x08, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x72, 0x65, 0x76, 0x0E, 0x64, + 0x6F, 0x75, 0x62, 0x6C, 0x65, 0x70, 0x72, 0x69, 0x6D, 0x65, 0x72, 0x65, + 0x76, 0x0E, 0x74, 0x72, 0x69, 0x70, 0x6C, 0x65, 0x70, 0x72, 0x69, 0x6D, + 0x65, 0x72, 0x65, 0x76, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x41, 0x0C, 0x74, 0x77, 0x6F, + 0x64, 0x6F, 0x74, 0x6C, 0x65, 0x61, 0x64, 0x65, 0x72, 0x0A, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x32, 0x33, 0x36, 0x09, 0x61, 0x6E, 0x6F, 0x74, 0x65, 0x6C, 0x65, + 0x69, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x45, 0x09, 0x6C, + 0x65, 0x73, 0x73, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x67, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x72, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x6C, 0x65, + 0x73, 0x73, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x11, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x65, 0x71, 0x75, 0x61, + 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0A, 0x65, 0x71, 0x75, 0x61, 0x6C, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0D, 0x6E, 0x6F, 0x74, 0x65, 0x71, 0x75, + 0x61, 0x6C, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x09, 0x70, 0x6C, 0x75, 0x73, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0D, 0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6C, + 0x79, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0B, 0x64, 0x69, 0x76, 0x69, 0x64, + 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0E, 0x70, 0x6C, 0x75, 0x73, 0x6D, + 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x10, 0x61, 0x70, + 0x70, 0x72, 0x6F, 0x78, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x0F, 0x61, 0x73, 0x63, 0x69, 0x69, 0x74, 0x69, 0x6C, 0x64, + 0x65, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0D, 0x61, 0x73, 0x74, 0x65, 0x72, + 0x69, 0x73, 0x6B, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x06, 0x75, 0x31, 0x46, + 0x31, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x31, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x32, 0x30, 0x03, 0x74, 0x65, 0x6C, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x33, 0x42, 0x08, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x31, 0x36, 0x42, 0x08, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x31, 0x36, + 0x41, 0x06, 0x69, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x06, 0x6E, 0x2E, 0x6E, + 0x75, 0x6D, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x42, 0x08, + 0x65, 0x6D, 0x70, 0x74, 0x79, 0x73, 0x65, 0x74, 0x06, 0x61, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x06, 0x62, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x63, + 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x64, 0x2E, 0x73, 0x75, 0x70, 0x73, + 0x06, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x66, 0x2E, 0x73, 0x75, + 0x70, 0x73, 0x06, 0x67, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x68, 0x2E, + 0x73, 0x75, 0x70, 0x73, 0x06, 0x69, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, + 0x6A, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x6B, 0x2E, 0x73, 0x75, 0x70, + 0x73, 0x06, 0x6C, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x6D, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x06, 0x6E, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x6F, + 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x70, 0x2E, 0x73, 0x75, 0x70, 0x73, + 0x06, 0x71, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x72, 0x2E, 0x73, 0x75, + 0x70, 0x73, 0x06, 0x73, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x74, 0x2E, + 0x73, 0x75, 0x70, 0x73, 0x06, 0x75, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, + 0x76, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x77, 0x2E, 0x73, 0x75, 0x70, + 0x73, 0x06, 0x78, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x79, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x06, 0x7A, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x09, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0F, 0x7A, 0x65, 0x72, + 0x6F, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, + 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0D, 0x6F, 0x6E, + 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x08, + 0x74, 0x77, 0x6F, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0A, 0x74, 0x68, 0x72, + 0x65, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0F, 0x74, 0x68, 0x72, 0x65, + 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0E, 0x66, 0x6F, + 0x75, 0x72, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, + 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x08, 0x73, + 0x69, 0x78, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0D, 0x73, 0x69, 0x78, 0x2E, + 0x73, 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, 0x73, 0x65, + 0x76, 0x65, 0x6E, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0A, 0x65, 0x69, 0x67, + 0x68, 0x74, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x09, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0E, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x70, 0x61, 0x72, + 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0F, + 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, + 0x75, 0x70, 0x73, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x6C, + 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x11, 0x62, 0x72, 0x61, + 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x75, + 0x70, 0x73, 0x09, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x73, 0x75, 0x70, 0x73, + 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x0A, + 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x73, 0x75, 0x70, 0x73, 0x06, 0x61, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x62, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x06, 0x63, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x64, 0x2E, 0x73, 0x75, + 0x62, 0x73, 0x06, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x66, 0x2E, + 0x73, 0x75, 0x62, 0x73, 0x06, 0x67, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, + 0x68, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x69, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x06, 0x6A, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x6B, 0x2E, 0x73, + 0x75, 0x62, 0x73, 0x06, 0x6C, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x6D, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x6E, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x06, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x70, 0x2E, 0x73, 0x75, + 0x62, 0x73, 0x06, 0x71, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x72, 0x2E, + 0x73, 0x75, 0x62, 0x73, 0x06, 0x73, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, + 0x74, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x75, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x06, 0x76, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x77, 0x2E, 0x73, + 0x75, 0x62, 0x73, 0x06, 0x78, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x79, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x06, 0x7A, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0F, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x6C, 0x61, + 0x73, 0x68, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0D, + 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x08, 0x74, 0x77, 0x6F, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0A, 0x74, + 0x68, 0x72, 0x65, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0F, 0x74, 0x68, + 0x72, 0x65, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x09, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0E, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x08, 0x73, 0x69, 0x78, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0D, 0x73, 0x69, + 0x78, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, + 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0A, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x09, 0x6E, 0x69, + 0x6E, 0x65, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x0E, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0E, 0x70, + 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x73, 0x75, 0x62, 0x73, 0x10, 0x62, 0x72, 0x61, 0x63, 0x6B, 0x65, + 0x74, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x75, 0x62, 0x73, 0x11, 0x62, + 0x72, 0x61, 0x63, 0x6B, 0x65, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x73, 0x75, 0x62, 0x73, 0x09, 0x70, 0x6C, 0x75, 0x73, 0x2E, 0x73, 0x75, + 0x62, 0x73, 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x73, 0x75, 0x62, + 0x73, 0x0A, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x73, 0x75, 0x62, 0x73, + 0x09, 0x7A, 0x65, 0x72, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0F, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x6C, 0x61, + 0x73, 0x68, 0x08, 0x6F, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0D, + 0x6F, 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x08, 0x74, 0x77, 0x6F, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x74, + 0x68, 0x72, 0x65, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0F, 0x74, 0x68, + 0x72, 0x65, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, + 0x31, 0x09, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0E, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x09, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, + 0x08, 0x73, 0x69, 0x78, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0D, 0x73, 0x69, + 0x78, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, + 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x65, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x09, 0x6E, 0x69, + 0x6E, 0x65, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0E, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x70, + 0x6C, 0x75, 0x73, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x6D, 0x69, 0x6E, + 0x75, 0x73, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0A, 0x65, 0x71, 0x75, 0x61, + 0x6C, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0E, 0x70, 0x61, 0x72, 0x65, 0x6E, + 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x0F, 0x70, 0x61, + 0x72, 0x65, 0x6E, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x64, 0x6E, 0x6F, + 0x6D, 0x0B, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x64, 0x6E, 0x6F, + 0x6D, 0x0A, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, + 0x0F, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x64, 0x6E, 0x6F, 0x6D, 0x2E, + 0x73, 0x73, 0x30, 0x33, 0x0F, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x64, + 0x6E, 0x6F, 0x6D, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x09, 0x7A, 0x65, 0x72, + 0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x7A, 0x65, 0x72, 0x6F, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x08, 0x6F, + 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0D, 0x6F, 0x6E, 0x65, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x08, 0x74, 0x77, + 0x6F, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x74, 0x68, 0x72, 0x65, 0x65, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x66, 0x6F, + 0x75, 0x72, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0E, 0x66, 0x6F, 0x75, 0x72, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x66, + 0x69, 0x76, 0x65, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x08, 0x73, 0x69, 0x78, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0D, 0x73, 0x69, 0x78, 0x2E, 0x6E, 0x75, + 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x0A, 0x73, 0x65, 0x76, 0x65, + 0x6E, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x65, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x09, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x6E, + 0x75, 0x6D, 0x72, 0x0E, 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x6E, 0x75, 0x6D, + 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x09, 0x70, 0x6C, 0x75, 0x73, 0x2E, + 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x6D, 0x69, 0x6E, 0x75, 0x73, 0x2E, 0x6E, + 0x75, 0x6D, 0x72, 0x0A, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x6E, 0x75, + 0x6D, 0x72, 0x0E, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x6C, 0x65, 0x66, 0x74, + 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x70, 0x61, 0x72, 0x65, 0x6E, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0B, 0x70, 0x65, + 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0A, 0x63, 0x6F, + 0x6D, 0x6D, 0x61, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x0F, 0x63, 0x6F, 0x6D, + 0x6D, 0x61, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0F, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x6E, 0x75, 0x6D, 0x72, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x39, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x34, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x37, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x41, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x30, 0x09, 0x6F, 0x6E, 0x65, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x0C, 0x74, 0x68, 0x72, 0x65, 0x65, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0B, 0x66, 0x69, 0x76, 0x65, + 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x0C, 0x73, 0x65, 0x76, 0x65, + 0x6E, 0x65, 0x69, 0x67, 0x68, 0x74, 0x68, 0x73, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x35, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x35, 0x32, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x31, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x34, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x30, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x30, 0x30, 0x0E, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, + 0x73, 0x75, 0x62, 0x6A, 0x65, 0x63, 0x74, 0x05, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x0E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x74, + 0x68, 0x72, 0x65, 0x65, 0x0D, 0x63, 0x79, 0x72, 0x69, 0x6C, 0x6C, 0x69, + 0x63, 0x62, 0x72, 0x65, 0x76, 0x65, 0x0D, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x32, 0x36, 0x09, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, + 0x6D, 0x62, 0x09, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x46, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x30, 0x34, 0x09, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, + 0x6D, 0x62, 0x08, 0x64, 0x6F, 0x74, 0x62, 0x65, 0x6C, 0x6F, 0x77, 0x0D, + 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x62, 0x65, 0x6C, 0x6F, 0x77, 0x63, 0x6D, + 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x30, 0x41, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x32, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x30, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x33, 0x0C, 0x74, 0x68, + 0x69, 0x72, 0x64, 0x65, 0x6D, 0x73, 0x70, 0x61, 0x63, 0x65, 0x0E, 0x71, + 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x65, 0x6D, 0x73, 0x70, 0x61, 0x63, + 0x65, 0x0C, 0x73, 0x69, 0x78, 0x74, 0x68, 0x65, 0x6D, 0x73, 0x70, 0x61, + 0x63, 0x65, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x30, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x30, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x30, 0x41, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x30, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, + 0x31, 0x36, 0x10, 0x64, 0x65, 0x67, 0x72, 0x65, 0x65, 0x63, 0x65, 0x6E, + 0x74, 0x69, 0x67, 0x72, 0x61, 0x64, 0x65, 0x0F, 0x64, 0x65, 0x67, 0x72, + 0x65, 0x65, 0x66, 0x61, 0x72, 0x65, 0x6E, 0x68, 0x65, 0x69, 0x74, 0x0C, + 0x64, 0x65, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x65, 0x6C, 0x76, 0x69, 0x6E, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x32, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x35, 0x43, 0x45, 0x09, 0x65, 0x73, 0x74, 0x69, 0x6D, 0x61, 0x74, + 0x65, 0x64, 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x35, 0x0E, 0x6C, 0x65, 0x66, + 0x74, 0x4C, 0x6F, 0x6E, 0x67, 0x41, 0x72, 0x72, 0x6F, 0x77, 0x32, 0x0C, + 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x38, 0x0A, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x72, 0x69, 0x67, 0x68, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x37, 0x46, 0x36, 0x0F, 0x72, 0x69, 0x67, 0x68, 0x74, 0x4C, 0x6F, 0x6E, + 0x67, 0x41, 0x72, 0x72, 0x6F, 0x77, 0x32, 0x0D, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x64, 0x62, 0x6C, 0x72, 0x69, 0x67, 0x68, 0x74, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x37, 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, + 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x31, 0x39, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, + 0x39, 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x62, 0x6F, 0x74, 0x68, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x37, 0x0C, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x64, 0x62, 0x6C, 0x62, 0x6F, 0x74, 0x68, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x37, 0x46, 0x41, 0x07, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x75, 0x70, + 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x6F, 0x77, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x39, 0x31, 0x33, 0x09, 0x61, 0x72, 0x72, 0x6F, 0x77, + 0x75, 0x70, 0x64, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x41, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x41, 0x41, 0x0E, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x35, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x13, 0x6C, 0x65, 0x66, 0x74, 0x4C, 0x6F, 0x6E, 0x67, 0x41, 0x72, 0x72, + 0x6F, 0x77, 0x32, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x61, 0x72, 0x72, + 0x6F, 0x77, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x38, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x0F, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, + 0x37, 0x46, 0x36, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x14, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x4C, 0x6F, 0x6E, 0x67, 0x41, 0x72, 0x72, 0x6F, 0x77, 0x32, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x12, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, + 0x62, 0x6C, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x39, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x0E, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x62, 0x6F, 0x74, 0x68, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x37, + 0x2E, 0x63, 0x61, 0x73, 0x65, 0x11, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, + 0x62, 0x6C, 0x62, 0x6F, 0x74, 0x68, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x0C, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x46, 0x41, 0x2E, 0x63, 0x61, 0x73, 0x65, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x37, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x38, 0x2E, 0x63, 0x61, + 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x39, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x39, 0x36, 0x2E, + 0x63, 0x61, 0x73, 0x65, 0x0A, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x63, 0x68, + 0x65, 0x63, 0x6B, 0x0C, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x62, 0x61, 0x6C, + 0x6C, 0x6F, 0x74, 0x78, 0x07, 0x74, 0x72, 0x69, 0x61, 0x67, 0x64, 0x6E, + 0x07, 0x74, 0x72, 0x69, 0x61, 0x67, 0x75, 0x70, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x35, 0x43, 0x30, 0x07, 0x74, 0x72, 0x69, 0x61, 0x67, 0x72, 0x74, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x35, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x43, 0x31, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x42, 0x37, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x36, 0x41, 0x30, 0x0B, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x62, + 0x6C, 0x61, 0x63, 0x6B, 0x0B, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x77, + 0x68, 0x69, 0x74, 0x65, 0x09, 0x66, 0x69, 0x6C, 0x6C, 0x65, 0x64, 0x62, + 0x6F, 0x78, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x35, 0x41, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x35, 0x41, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x42, + 0x31, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x42, 0x31, 0x33, 0x0C, 0x64, + 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x62, 0x6C, 0x61, 0x63, 0x6B, 0x0E, + 0x64, 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x62, 0x6C, 0x61, 0x63, 0x6B, + 0x5F, 0x78, 0x0C, 0x64, 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x77, 0x68, + 0x69, 0x74, 0x65, 0x0E, 0x64, 0x69, 0x61, 0x6D, 0x6F, 0x6E, 0x64, 0x77, + 0x68, 0x69, 0x74, 0x65, 0x5F, 0x78, 0x03, 0x73, 0x75, 0x6E, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x36, 0x30, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x36, + 0x36, 0x31, 0x05, 0x68, 0x65, 0x61, 0x72, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x37, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x36, 0x30, 0x35, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x36, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x42, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x45, 0x37, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x45, 0x41, 0x13, 0x70, 0x6C, 0x61, + 0x63, 0x65, 0x6F, 0x66, 0x69, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, + 0x73, 0x69, 0x67, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x30, 0x33, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x30, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x33, 0x30, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x38, 0x30, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x33, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x38, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x41, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x31, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x32, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x32, 0x36, 0x07, 0x75, 0x6E, 0x69, + 0x32, 0x33, 0x32, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x43, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x33, 0x43, 0x45, 0x0E, 0x63, 0x61, 0x72, + 0x72, 0x69, 0x61, 0x67, 0x65, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6E, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x42, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x45, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x45, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x42, 0x32, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x35, 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x42, 0x31, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x41, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x30, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x43, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x45, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x36, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x36, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x34, 0x36, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x34, 0x36, 0x38, 0x12, 0x7A, 0x65, 0x72, 0x6F, + 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, + 0x65, 0x64, 0x10, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, + 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0F, 0x74, 0x68, 0x72, 0x65, + 0x65, 0x2E, 0x31, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, + 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x10, 0x73, 0x69, 0x78, 0x2E, 0x73, 0x73, + 0x30, 0x31, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, 0x6E, + 0x69, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x63, 0x69, 0x72, + 0x63, 0x6C, 0x65, 0x64, 0x0E, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, 0x2E, + 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x10, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x69, 0x6F, 0x6E, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, + 0x12, 0x6E, 0x75, 0x6D, 0x62, 0x65, 0x72, 0x73, 0x69, 0x67, 0x6E, 0x2E, + 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0E, 0x68, 0x79, 0x70, 0x68, + 0x65, 0x6E, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0C, 0x6C, + 0x65, 0x73, 0x73, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0F, + 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x63, 0x69, 0x72, 0x63, + 0x6C, 0x65, 0x64, 0x0D, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0A, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, + 0x70, 0x6C, 0x75, 0x73, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x39, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x32, 0x39, 0x38, 0x0E, 0x63, 0x69, 0x72, + 0x63, 0x6C, 0x65, 0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6C, 0x79, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x41, 0x33, 0x38, 0x0F, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x75, 0x70, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, + 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x6F, 0x77, 0x6E, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x0F, 0x75, 0x6E, 0x69, 0x32, 0x39, 0x31, + 0x33, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x11, 0x61, 0x72, + 0x72, 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x63, 0x69, 0x72, 0x63, + 0x6C, 0x65, 0x64, 0x12, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x72, 0x69, 0x67, + 0x68, 0x74, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, 0x65, 0x64, 0x12, 0x64, + 0x6E, 0x67, 0x62, 0x5F, 0x63, 0x68, 0x65, 0x63, 0x6B, 0x2E, 0x63, 0x69, + 0x72, 0x63, 0x6C, 0x65, 0x64, 0x14, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x62, + 0x61, 0x6C, 0x6C, 0x6F, 0x74, 0x78, 0x2E, 0x63, 0x69, 0x72, 0x63, 0x6C, + 0x65, 0x64, 0x09, 0x41, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x42, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x43, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x44, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x45, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x46, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x47, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x0B, 0x47, 0x2E, 0x31, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x48, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x49, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x4A, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x4B, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x4C, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x4D, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x4E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x4F, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x50, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x51, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x52, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x53, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x54, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x55, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x56, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x09, 0x57, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x09, 0x58, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x09, 0x59, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x09, 0x5A, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x7A, + 0x65, 0x72, 0x6F, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0B, + 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0B, + 0x74, 0x77, 0x6F, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0D, + 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, + 0x64, 0x0C, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x0C, 0x66, 0x69, 0x76, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, + 0x72, 0x65, 0x64, 0x0B, 0x73, 0x69, 0x78, 0x2E, 0x73, 0x71, 0x75, 0x61, + 0x72, 0x65, 0x64, 0x0D, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x2E, 0x73, 0x71, + 0x75, 0x61, 0x72, 0x65, 0x64, 0x0D, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x6E, 0x69, 0x6E, 0x65, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x12, 0x7A, 0x65, 0x72, + 0x6F, 0x2E, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x2E, 0x73, 0x71, 0x75, 0x61, + 0x72, 0x65, 0x64, 0x10, 0x6F, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0F, 0x74, 0x68, 0x72, + 0x65, 0x65, 0x2E, 0x31, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x11, 0x66, 0x6F, 0x75, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x10, 0x73, 0x69, 0x78, 0x2E, 0x73, + 0x73, 0x30, 0x31, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x11, + 0x6E, 0x69, 0x6E, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x31, 0x2E, 0x73, 0x71, + 0x75, 0x61, 0x72, 0x65, 0x64, 0x0E, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x10, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x69, 0x6F, 0x6E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, + 0x64, 0x12, 0x6E, 0x75, 0x6D, 0x62, 0x65, 0x72, 0x73, 0x69, 0x67, 0x6E, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0E, 0x68, 0x79, 0x70, + 0x68, 0x65, 0x6E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, + 0x6C, 0x65, 0x73, 0x73, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x0F, 0x67, 0x72, 0x65, 0x61, 0x74, 0x65, 0x72, 0x2E, 0x73, 0x71, 0x75, + 0x61, 0x72, 0x65, 0x64, 0x0D, 0x65, 0x71, 0x75, 0x61, 0x6C, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x70, 0x6C, 0x75, 0x73, 0x2E, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0D, 0x6D, 0x69, 0x6E, 0x75, + 0x73, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x10, 0x66, 0x72, + 0x61, 0x63, 0x74, 0x69, 0x6F, 0x6E, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x10, 0x6D, 0x75, 0x6C, 0x74, 0x69, 0x70, 0x6C, 0x79, 0x2E, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0E, 0x64, 0x69, 0x76, 0x69, + 0x64, 0x65, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0F, 0x61, + 0x72, 0x72, 0x6F, 0x77, 0x75, 0x70, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, + 0x65, 0x64, 0x11, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x64, 0x6F, 0x77, 0x6E, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x0F, 0x75, 0x6E, 0x69, + 0x32, 0x39, 0x31, 0x33, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, + 0x11, 0x61, 0x72, 0x72, 0x6F, 0x77, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, + 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x12, 0x61, 0x72, 0x72, 0x6F, 0x77, + 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, + 0x64, 0x12, 0x64, 0x6E, 0x67, 0x62, 0x5F, 0x63, 0x68, 0x65, 0x63, 0x6B, + 0x2E, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x64, 0x14, 0x64, 0x6E, 0x67, + 0x62, 0x5F, 0x62, 0x61, 0x6C, 0x6C, 0x6F, 0x74, 0x78, 0x2E, 0x73, 0x71, + 0x75, 0x61, 0x72, 0x65, 0x64, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, + 0x32, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x32, 0x32, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x33, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x33, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x37, 0x2E, 0x73, + 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x2E, + 0x73, 0x73, 0x30, 0x33, 0x11, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x73, 0x73, + 0x30, 0x33, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, + 0x36, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0A, 0x63, 0x6F, 0x6D, 0x6D, 0x61, + 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0E, 0x73, 0x65, 0x6D, 0x69, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0C, 0x75, 0x6E, 0x69, + 0x32, 0x30, 0x34, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x11, 0x71, 0x75, + 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, + 0x73, 0x30, 0x33, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, + 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x0E, 0x71, + 0x75, 0x6F, 0x74, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x73, 0x30, + 0x33, 0x0F, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x73, 0x73, 0x30, 0x33, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, + 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x15, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, 0x65, 0x76, + 0x65, 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x13, 0x71, + 0x75, 0x6F, 0x74, 0x65, 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x62, 0x61, 0x73, + 0x65, 0x2E, 0x73, 0x73, 0x30, 0x33, 0x11, 0x71, 0x75, 0x6F, 0x74, 0x65, + 0x64, 0x62, 0x6C, 0x62, 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x33, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x43, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x41, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, + 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x43, + 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x41, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x43, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x36, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x45, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x45, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x38, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x45, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0F, 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x32, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x49, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0F, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x33, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x33, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x34, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x34, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x4F, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x43, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x45, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x41, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x43, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x36, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x30, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x32, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, + 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x36, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x55, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x32, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x39, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x42, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x35, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x34, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, + 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x57, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x38, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x43, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x41, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x59, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x38, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x46, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x5A, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x32, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x11, 0x47, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, + 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x49, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x32, 0x45, 0x2E, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x11, 0x49, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, + 0x6E, 0x74, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x41, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x37, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x44, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, + 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x41, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x30, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x30, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x63, + 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x42, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x30, 0x44, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, 0x37, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x65, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0F, 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, + 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x32, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x32, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x06, 0x69, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0E, 0x69, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, + 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x32, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x43, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x69, 0x6F, + 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x06, 0x6A, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, + 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x09, 0x6C, 0x64, 0x6F, 0x74, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, + 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x33, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x34, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x34, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x34, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x34, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x44, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x6F, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x42, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x46, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x43, + 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x45, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x34, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x35, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x35, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x35, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x35, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x35, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x37, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x33, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x39, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, + 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x36, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x36, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x41, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x43, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x36, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x37, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x37, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x77, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x44, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x38, 0x42, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x79, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x38, 0x46, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x45, 0x46, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x7A, 0x64, 0x6F, + 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x33, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x42, 0x37, 0x2E, 0x31, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x41, 0x44, + 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x61, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x46, 0x2E, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x37, 0x2E, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x41, 0x31, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x43, 0x42, 0x2E, 0x63, 0x63, 0x6D, 0x70, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x31, 0x46, 0x2E, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x6C, 0x64, 0x6F, 0x74, 0x2E, + 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x33, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x33, 0x39, 0x2E, + 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, + 0x69, 0x31, 0x45, 0x39, 0x37, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x42, 0x2E, 0x31, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x36, 0x44, 0x2E, + 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x75, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x38, 0x2E, 0x31, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x37, 0x33, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, + 0x41, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x44, 0x43, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x44, 0x36, 0x2E, 0x31, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x45, 0x35, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, + 0x31, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x37, 0x42, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x41, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x43, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x45, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x34, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, + 0x41, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x46, 0x30, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x46, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x34, 0x46, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x37, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x42, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x44, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x46, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x35, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, + 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x46, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x34, 0x46, 0x39, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x44, 0x34, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x69, + 0x6F, 0x74, 0x61, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x14, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x19, 0x75, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x32, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x37, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, + 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x33, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x45, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x61, 0x6E, 0x6F, + 0x74, 0x65, 0x6C, 0x65, 0x69, 0x61, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0B, + 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0A, + 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0A, 0x63, + 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x73, 0x65, + 0x6D, 0x69, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0D, 0x65, 0x6C, 0x6C, 0x69, 0x70, 0x73, 0x69, 0x73, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0B, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0D, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6F, 0x6E, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x13, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x63, + 0x65, 0x6E, 0x74, 0x65, 0x72, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x46, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x13, 0x74, 0x77, 0x6F, 0x64, 0x6F, 0x74, 0x65, 0x6E, 0x6C, 0x65, + 0x61, 0x64, 0x65, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0F, 0x63, 0x6F, + 0x6C, 0x6F, 0x6E, 0x2E, 0x63, 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0E, 0x70, 0x65, 0x72, 0x69, 0x6F, 0x64, 0x2E, 0x74, 0x66, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0D, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x2E, 0x74, + 0x66, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0D, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, + 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x73, 0x65, 0x6D, + 0x69, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x12, 0x63, 0x6F, 0x6C, 0x6F, 0x6E, 0x2E, 0x63, 0x61, 0x73, + 0x65, 0x2E, 0x74, 0x66, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x46, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x12, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, + 0x44, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, 0x46, + 0x45, 0x45, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, + 0x30, 0x33, 0x30, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x30, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x33, 0x35, 0x38, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x43, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x42, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x45, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0D, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x0E, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, + 0x6E, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x13, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x2E, 0x74, 0x68, 0x72, 0x65, 0x65, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0F, 0x6A, 0x63, 0x72, 0x6F, 0x73, 0x73, 0x74, 0x61, + 0x69, 0x6C, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x13, 0x73, 0x6C, 0x6F, 0x6E, + 0x67, 0x64, 0x6F, 0x74, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0D, 0x64, 0x6F, 0x74, 0x62, 0x65, 0x6C, 0x6F, 0x77, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x11, 0x6F, 0x6E, 0x65, 0x64, 0x6F, 0x74, + 0x6C, 0x65, 0x61, 0x64, 0x65, 0x72, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x17, + 0x64, 0x69, 0x61, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, + 0x6F, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x12, + 0x64, 0x6F, 0x74, 0x64, 0x62, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x14, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x64, 0x6F, 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x10, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x64, 0x6F, 0x74, + 0x2E, 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x10, 0x63, 0x61, 0x72, + 0x6F, 0x6E, 0x64, 0x6F, 0x74, 0x2E, 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, + 0x69, 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, + 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, 0x64, 0x69, + 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, + 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x19, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, 0x61, 0x76, + 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x1A, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x1A, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, + 0x75, 0x63, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x1A, 0x6D, 0x61, 0x63, 0x72, + 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x63, 0x6F, + 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x1A, 0x6D, + 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x19, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x19, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, + 0x72, 0x65, 0x73, 0x69, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x32, + 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x31, + 0x32, 0x32, 0x2E, 0x31, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x33, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x33, 0x42, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x34, 0x35, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x36, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x38, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x37, 0x2E, 0x73, + 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, 0x2E, + 0x73, 0x73, 0x30, 0x37, 0x11, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x33, 0x43, + 0x2E, 0x73, 0x73, 0x30, 0x32, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, + 0x6E, 0x69, 0x30, 0x31, 0x34, 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, + 0x75, 0x6E, 0x69, 0x30, 0x31, 0x35, 0x37, 0x2E, 0x73, 0x73, 0x30, 0x37, + 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x39, 0x2E, 0x73, 0x73, 0x30, + 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x73, 0x73, + 0x30, 0x37, 0x0E, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, 0x42, 0x2E, 0x31, + 0x2E, 0x73, 0x73, 0x30, 0x37, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, + 0x36, 0x2E, 0x73, 0x73, 0x30, 0x37, 0x13, 0x71, 0x75, 0x6F, 0x74, 0x65, + 0x73, 0x69, 0x6E, 0x67, 0x6C, 0x62, 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, + 0x30, 0x38, 0x11, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x62, + 0x61, 0x73, 0x65, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x11, 0x71, 0x75, 0x6F, + 0x74, 0x65, 0x64, 0x62, 0x6C, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x73, + 0x30, 0x38, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x0E, 0x71, 0x75, + 0x6F, 0x74, 0x65, 0x6C, 0x65, 0x66, 0x74, 0x2E, 0x73, 0x73, 0x30, 0x38, + 0x0F, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2E, + 0x73, 0x73, 0x30, 0x38, 0x12, 0x71, 0x75, 0x6F, 0x74, 0x65, 0x72, 0x65, + 0x76, 0x65, 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x15, + 0x71, 0x75, 0x6F, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x72, 0x65, 0x76, 0x65, + 0x72, 0x73, 0x65, 0x64, 0x2E, 0x73, 0x73, 0x30, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x38, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, + 0x31, 0x06, 0x44, 0x63, 0x72, 0x6F, 0x61, 0x74, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x38, 0x42, 0x08, 0x45, 0x70, 0x73, 0x69, 0x6C, 0x6F, 0x6E, + 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x38, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x42, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x31, + 0x43, 0x02, 0x49, 0x4A, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, 0x37, + 0x04, 0x4C, 0x64, 0x6F, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x43, + 0x41, 0x02, 0x4F, 0x49, 0x04, 0x54, 0x62, 0x61, 0x72, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x31, 0x38, 0x34, 0x08, 0x56, 0x63, 0x75, 0x72, 0x73, 0x69, + 0x76, 0x65, 0x02, 0x59, 0x52, 0x08, 0x6D, 0x63, 0x61, 0x70, 0x74, 0x75, + 0x72, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x46, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x32, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x34, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x31, 0x45, 0x46, 0x45, 0x09, 0x75, 0x6E, 0x69, 0x31, 0x45, + 0x39, 0x45, 0x2E, 0x31, 0x07, 0x61, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x0B, 0x61, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x74, 0x75, 0x72, 0x6E, + 0x09, 0x62, 0x61, 0x62, 0x79, 0x67, 0x61, 0x6D, 0x6D, 0x61, 0x08, 0x63, + 0x73, 0x74, 0x72, 0x65, 0x74, 0x63, 0x68, 0x09, 0x64, 0x65, 0x6C, 0x74, + 0x61, 0x74, 0x75, 0x72, 0x6E, 0x04, 0x65, 0x72, 0x65, 0x76, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x38, 0x36, 0x0A, 0x65, 0x73, 0x68, 0x6C, 0x6F, 0x6F, 0x70, 0x72, 0x65, + 0x76, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x35, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x39, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x45, 0x46, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x39, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x35, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x35, 0x44, + 0x44, 0x08, 0x67, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x39, 0x34, 0x0E, 0x67, 0x6C, 0x6F, 0x74, 0x74, + 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, 0x62, 0x61, 0x72, 0x11, 0x67, 0x6C, + 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, 0x62, 0x61, 0x72, + 0x69, 0x6E, 0x76, 0x11, 0x67, 0x6C, 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, + 0x74, 0x6F, 0x70, 0x62, 0x61, 0x72, 0x72, 0x65, 0x76, 0x0E, 0x67, 0x6C, + 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, 0x69, 0x6E, 0x76, + 0x11, 0x67, 0x6C, 0x6F, 0x74, 0x74, 0x61, 0x6C, 0x73, 0x74, 0x6F, 0x70, + 0x72, 0x65, 0x76, 0x69, 0x6E, 0x76, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x31, 0x44, 0x0B, 0x6A, 0x68, 0x6F, 0x6F, 0x6B, 0x64, 0x62, 0x6C, 0x62, + 0x61, 0x72, 0x0C, 0x6B, 0x67, 0x72, 0x65, 0x65, 0x6E, 0x6C, 0x61, 0x6E, + 0x64, 0x69, 0x63, 0x09, 0x6C, 0x61, 0x6D, 0x62, 0x64, 0x61, 0x62, 0x61, + 0x72, 0x05, 0x6C, 0x79, 0x6F, 0x67, 0x68, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x31, 0x41, 0x33, 0x0B, 0x6F, 0x6D, 0x65, 0x67, 0x61, 0x63, 0x6C, 0x6F, + 0x73, 0x65, 0x64, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x35, 0x34, 0x08, + 0x70, 0x68, 0x69, 0x6C, 0x61, 0x74, 0x69, 0x6E, 0x0B, 0x72, 0x74, 0x75, + 0x72, 0x6E, 0x61, 0x73, 0x63, 0x65, 0x6E, 0x64, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x41, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x41, 0x44, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x31, 0x38, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x41, 0x36, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x32, 0x33, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x33, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x33, 0x39, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x32, 0x39, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x41, 0x42, + 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x41, 0x43, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x39, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x39, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x42, 0x07, 0x75, 0x6E, 0x69, + 0x31, 0x45, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x45, 0x46, 0x46, + 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x34, 0x0C, 0x75, 0x70, 0x73, + 0x69, 0x6C, 0x6F, 0x6E, 0x6C, 0x61, 0x74, 0x69, 0x6E, 0x07, 0x76, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x31, 0x42, + 0x46, 0x04, 0x61, 0x2E, 0x73, 0x63, 0x04, 0x68, 0x2E, 0x73, 0x63, 0x04, + 0x6D, 0x2E, 0x73, 0x63, 0x04, 0x74, 0x2E, 0x73, 0x63, 0x07, 0x75, 0x6E, + 0x69, 0x32, 0x30, 0x39, 0x34, 0x07, 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, + 0x31, 0x04, 0x70, 0x69, 0x70, 0x65, 0x07, 0x70, 0x69, 0x70, 0x65, 0x64, + 0x62, 0x6C, 0x0A, 0x70, 0x69, 0x70, 0x65, 0x64, 0x62, 0x6C, 0x62, 0x61, + 0x72, 0x07, 0x75, 0x6E, 0x69, 0x41, 0x37, 0x46, 0x46, 0x0A, 0x52, 0x74, + 0x75, 0x72, 0x6E, 0x73, 0x75, 0x70, 0x65, 0x72, 0x07, 0x75, 0x6E, 0x69, + 0x30, 0x35, 0x45, 0x35, 0x0A, 0x68, 0x68, 0x6F, 0x6F, 0x6B, 0x73, 0x75, + 0x70, 0x65, 0x72, 0x0A, 0x72, 0x74, 0x75, 0x72, 0x6E, 0x73, 0x75, 0x70, + 0x65, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x39, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x30, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x31, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x32, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x32, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x30, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x32, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x32, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x41, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x42, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x43, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x44, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x46, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x30, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x38, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x39, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x33, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x35, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x35, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x36, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x36, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x37, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x37, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x39, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x41, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x41, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x41, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x42, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x42, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x43, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x44, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x44, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x44, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x35, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x45, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x45, 0x44, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, + 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x46, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x34, 0x38, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, + 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x43, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x33, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, + 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x46, 0x05, 0x6B, + 0x61, 0x70, 0x70, 0x61, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x42, 0x43, + 0x02, 0x6E, 0x75, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x37, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x37, 0x05, 0x62, 0x65, 0x74, 0x61, + 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x44, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x44, 0x36, 0x06, 0x6B, 0x61, 0x70, 0x70, 0x61, 0x31, + 0x04, 0x72, 0x68, 0x6F, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x37, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x45, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x37, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x42, + 0x46, 0x08, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x6F, 0x6E, 0x65, 0x08, 0x72, + 0x6F, 0x6D, 0x61, 0x6E, 0x74, 0x77, 0x6F, 0x0A, 0x72, 0x6F, 0x6D, 0x61, + 0x6E, 0x74, 0x68, 0x72, 0x65, 0x65, 0x09, 0x72, 0x6F, 0x6D, 0x61, 0x6E, + 0x66, 0x6F, 0x75, 0x72, 0x09, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x66, 0x69, + 0x76, 0x65, 0x08, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x73, 0x69, 0x78, 0x0A, + 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x73, 0x65, 0x76, 0x65, 0x6E, 0x0A, 0x72, + 0x6F, 0x6D, 0x61, 0x6E, 0x65, 0x69, 0x67, 0x68, 0x74, 0x09, 0x72, 0x6F, + 0x6D, 0x61, 0x6E, 0x6E, 0x69, 0x6E, 0x65, 0x08, 0x72, 0x6F, 0x6D, 0x61, + 0x6E, 0x74, 0x65, 0x6E, 0x0B, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x65, 0x6C, + 0x65, 0x76, 0x65, 0x6E, 0x0B, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x74, 0x77, + 0x65, 0x6C, 0x76, 0x65, 0x0A, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x66, 0x69, + 0x66, 0x74, 0x79, 0x0C, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x68, 0x75, 0x6E, + 0x64, 0x72, 0x65, 0x64, 0x10, 0x72, 0x6F, 0x6D, 0x61, 0x6E, 0x66, 0x69, + 0x76, 0x65, 0x68, 0x75, 0x6E, 0x64, 0x72, 0x65, 0x64, 0x0D, 0x72, 0x6F, + 0x6D, 0x61, 0x6E, 0x74, 0x68, 0x6F, 0x75, 0x73, 0x61, 0x6E, 0x64, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x32, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x37, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x37, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x31, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x31, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x30, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x41, 0x39, 0x32, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x37, 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x34, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x34, 0x30, 0x09, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x64, 0x6F, + 0x74, 0x0C, 0x6F, 0x6E, 0x65, 0x64, 0x6F, 0x74, 0x6C, 0x65, 0x61, 0x64, + 0x65, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x33, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x33, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x34, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x35, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x32, 0x30, 0x35, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, + 0x35, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x35, 0x35, 0x0E, 0x76, + 0x65, 0x72, 0x74, 0x69, 0x63, 0x61, 0x6C, 0x62, 0x61, 0x72, 0x64, 0x62, + 0x6C, 0x08, 0x68, 0x79, 0x70, 0x68, 0x65, 0x6E, 0x5F, 0x5F, 0x0D, 0x68, + 0x79, 0x70, 0x68, 0x65, 0x6E, 0x6E, 0x6F, 0x62, 0x72, 0x65, 0x61, 0x6B, + 0x0D, 0x75, 0x6E, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, 0x64, + 0x62, 0x6C, 0x0A, 0x67, 0x61, 0x6D, 0x6D, 0x61, 0x73, 0x75, 0x70, 0x65, + 0x72, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x32, 0x0C, 0x6E, 0x75, + 0x6D, 0x65, 0x72, 0x61, 0x6C, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x0F, 0x6E, + 0x75, 0x6D, 0x65, 0x72, 0x61, 0x6C, 0x67, 0x72, 0x65, 0x65, 0x6B, 0x73, + 0x75, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x46, 0x36, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x43, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x43, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x33, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x44, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x38, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x43, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x45, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x31, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x34, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x37, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x42, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x46, 0x45, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x46, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x44, 0x34, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x35, 0x2E, 0x63, + 0x6E, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x39, 0x2E, 0x63, 0x6E, + 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x36, 0x2E, 0x63, 0x6E, 0x0A, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, 0x38, 0x2E, 0x63, 0x6E, 0x0A, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x45, 0x37, 0x2E, 0x63, 0x6E, 0x07, 0x75, 0x6E, + 0x69, 0x46, 0x42, 0x34, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x44, + 0x45, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x39, 0x35, 0x2E, 0x6E, 0x75, + 0x6D, 0x72, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x31, 0x31, 0x33, 0x0C, 0x73, + 0x70, 0x61, 0x63, 0x65, 0x6F, 0x70, 0x65, 0x6E, 0x62, 0x6F, 0x78, 0x07, + 0x75, 0x6E, 0x69, 0x32, 0x30, 0x41, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x32, + 0x30, 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x33, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x36, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x36, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x42, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x45, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x45, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x34, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x44, 0x45, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x37, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x38, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x39, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x38, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x35, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x34, 0x38, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x34, 0x38, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x41, 0x36, 0x39, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x34, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x42, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x45, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x44, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x38, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x30, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x43, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x33, 0x30, 0x41, 0x0D, 0x68, 0x6F, 0x6F, 0x6B, 0x61, 0x62, 0x6F, 0x76, + 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x31, 0x35, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x31, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x32, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x32, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, + 0x37, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x34, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x34, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x34, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x36, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x41, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x43, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, 0x44, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x35, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x35, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x33, 0x36, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x36, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, 0x43, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x34, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x44, + 0x42, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x45, 0x38, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x32, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x36, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x37, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x39, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, 0x44, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x43, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, + 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x44, 0x37, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x45, 0x38, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x45, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, + 0x44, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x45, 0x45, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x45, 0x46, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x30, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, 0x31, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x46, 0x32, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x33, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, 0x34, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x46, 0x35, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x43, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, 0x44, 0x07, 0x75, 0x6E, + 0x69, 0x31, 0x44, 0x46, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x46, + 0x46, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x46, 0x30, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x43, 0x39, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, + 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x42, 0x07, 0x75, 0x6E, + 0x69, 0x30, 0x32, 0x45, 0x41, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x45, + 0x42, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x61, 0x63, + 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x0C, 0x63, + 0x61, 0x72, 0x6F, 0x6E, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, + 0x64, 0x6F, 0x74, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x2E, 0x6C, 0x63, + 0x15, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x6D, 0x61, 0x63, + 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x14, 0x64, + 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, 0x61, 0x76, 0x65, + 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x15, 0x6D, 0x61, 0x63, 0x72, + 0x6F, 0x6E, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x63, 0x6F, + 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x0D, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x61, + 0x63, 0x75, 0x74, 0x65, 0x2E, 0x6C, 0x63, 0x14, 0x64, 0x69, 0x65, 0x72, + 0x65, 0x73, 0x69, 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x6C, 0x63, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, + 0x63, 0x15, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x6D, 0x61, + 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x14, + 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x10, 0x64, 0x6F, 0x74, + 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, + 0x63, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, 0x67, 0x72, + 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x11, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, + 0x62, 0x2E, 0x75, 0x63, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x41, + 0x2E, 0x75, 0x63, 0x09, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x2E, 0x74, 0x6F, + 0x70, 0x0C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x64, 0x62, 0x6C, 0x63, 0x6F, + 0x6D, 0x62, 0x0E, 0x61, 0x63, 0x75, 0x74, 0x65, 0x72, 0x69, 0x67, 0x68, + 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x61, 0x63, 0x75, 0x74, 0x65, 0x73, + 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0E, 0x61, 0x72, 0x63, 0x68, 0x64, + 0x62, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x62, 0x72, + 0x65, 0x76, 0x65, 0x69, 0x6E, 0x76, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x62, + 0x72, 0x65, 0x76, 0x65, 0x69, 0x6E, 0x76, 0x73, 0x75, 0x62, 0x63, 0x6F, + 0x6D, 0x62, 0x0C, 0x62, 0x72, 0x65, 0x76, 0x65, 0x73, 0x75, 0x62, 0x63, + 0x6F, 0x6D, 0x62, 0x10, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x69, 0x6E, + 0x76, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0D, 0x62, 0x72, 0x69, + 0x64, 0x67, 0x65, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x63, + 0x61, 0x6E, 0x64, 0x72, 0x61, 0x62, 0x69, 0x6E, 0x64, 0x75, 0x63, 0x6F, + 0x6D, 0x62, 0x11, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, + 0x78, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x63, 0x6F, 0x6D, + 0x6D, 0x61, 0x73, 0x75, 0x70, 0x72, 0x65, 0x76, 0x63, 0x6F, 0x6D, 0x62, + 0x10, 0x63, 0x6F, 0x6D, 0x6D, 0x61, 0x74, 0x75, 0x72, 0x6E, 0x73, 0x75, + 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x12, 0x64, 0x69, 0x61, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x63, 0x6F, 0x6D, 0x62, + 0x0D, 0x64, 0x6F, 0x74, 0x64, 0x62, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, + 0x6D, 0x62, 0x0D, 0x67, 0x72, 0x61, 0x76, 0x65, 0x6C, 0x65, 0x66, 0x74, + 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x67, 0x72, 0x61, 0x76, 0x65, 0x73, 0x75, + 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x11, 0x68, 0x6F, 0x6F, 0x6B, 0x61, 0x62, + 0x6F, 0x76, 0x65, 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x10, + 0x68, 0x6F, 0x6F, 0x6B, 0x73, 0x75, 0x62, 0x70, 0x61, 0x6C, 0x61, 0x74, + 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x68, 0x6F, 0x6F, 0x6B, 0x73, 0x75, 0x62, + 0x72, 0x65, 0x74, 0x72, 0x6F, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x69, 0x6F, + 0x74, 0x61, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, 0x6C, 0x69, + 0x6E, 0x65, 0x76, 0x65, 0x72, 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x6C, + 0x69, 0x6E, 0x65, 0x76, 0x65, 0x72, 0x74, 0x64, 0x62, 0x6C, 0x63, 0x6F, + 0x6D, 0x62, 0x0F, 0x6C, 0x69, 0x6E, 0x65, 0x76, 0x65, 0x72, 0x74, 0x73, + 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0D, 0x6D, 0x61, 0x63, 0x72, 0x6F, + 0x6E, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0D, 0x6F, 0x76, 0x65, + 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x6F, + 0x76, 0x65, 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, 0x64, 0x62, 0x6C, 0x63, + 0x6F, 0x6D, 0x62, 0x13, 0x72, 0x69, 0x6E, 0x67, 0x6C, 0x65, 0x66, 0x74, + 0x68, 0x61, 0x6C, 0x66, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x14, + 0x72, 0x69, 0x6E, 0x67, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x61, 0x6C, + 0x66, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x72, 0x69, 0x6E, + 0x67, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0E, 0x73, 0x65, 0x61, + 0x67, 0x75, 0x6C, 0x6C, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0C, + 0x74, 0x69, 0x6C, 0x64, 0x65, 0x6D, 0x69, 0x64, 0x63, 0x6F, 0x6D, 0x62, + 0x0C, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, + 0x62, 0x0E, 0x75, 0x6E, 0x64, 0x65, 0x72, 0x73, 0x63, 0x6F, 0x72, 0x65, + 0x63, 0x6F, 0x6D, 0x62, 0x11, 0x75, 0x6E, 0x64, 0x65, 0x72, 0x73, 0x63, + 0x6F, 0x72, 0x65, 0x64, 0x62, 0x6C, 0x63, 0x6F, 0x6D, 0x62, 0x08, 0x78, + 0x73, 0x75, 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x61, 0x63, 0x75, 0x74, + 0x65, 0x64, 0x6F, 0x74, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x0B, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x64, 0x6F, 0x74, 0x2E, 0x6C, 0x63, 0x0B, + 0x63, 0x61, 0x72, 0x6F, 0x6E, 0x64, 0x6F, 0x74, 0x2E, 0x75, 0x63, 0x0C, + 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x6C, 0x63, + 0x0C, 0x72, 0x69, 0x6E, 0x67, 0x61, 0x63, 0x75, 0x74, 0x65, 0x2E, 0x75, + 0x63, 0x14, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, + 0x73, 0x69, 0x73, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x6C, 0x63, 0x14, 0x74, + 0x69, 0x6C, 0x64, 0x65, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, 0x73, + 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x75, 0x63, 0x12, 0x74, 0x69, 0x6C, 0x64, + 0x65, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x63, 0x6F, 0x6D, 0x62, 0x2E, + 0x6C, 0x63, 0x0F, 0x61, 0x63, 0x75, 0x74, 0x65, 0x64, 0x6F, 0x74, 0x63, + 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x11, 0x62, 0x72, 0x65, 0x76, 0x65, + 0x61, 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, + 0x11, 0x62, 0x72, 0x65, 0x76, 0x65, 0x67, 0x72, 0x61, 0x76, 0x65, 0x63, + 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x11, 0x62, 0x72, 0x65, 0x76, 0x65, + 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, + 0x16, 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x61, + 0x63, 0x75, 0x74, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x16, + 0x63, 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x67, 0x72, + 0x61, 0x76, 0x65, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x15, 0x63, + 0x69, 0x72, 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x68, 0x6F, 0x6F, + 0x6B, 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x16, 0x63, 0x69, 0x72, + 0x63, 0x75, 0x6D, 0x66, 0x6C, 0x65, 0x78, 0x74, 0x69, 0x6C, 0x64, 0x65, + 0x63, 0x6F, 0x6D, 0x62, 0x2E, 0x63, 0x6E, 0x13, 0x63, 0x6F, 0x6D, 0x6D, + 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x72, 0x69, 0x67, 0x68, 0x74, + 0x2E, 0x63, 0x6E, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x46, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x44, 0x31, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x44, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x44, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x42, 0x07, 0x75, 0x6E, 0x69, 0x30, + 0x32, 0x43, 0x30, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x31, 0x07, + 0x75, 0x6E, 0x69, 0x30, 0x32, 0x43, 0x45, 0x08, 0x6C, 0x69, 0x6E, 0x65, + 0x76, 0x65, 0x72, 0x74, 0x09, 0x6D, 0x61, 0x63, 0x72, 0x6F, 0x6E, 0x73, + 0x75, 0x62, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x46, 0x07, 0x75, + 0x6E, 0x69, 0x30, 0x32, 0x42, 0x45, 0x07, 0x75, 0x6E, 0x69, 0x30, 0x32, + 0x43, 0x43, 0x07, 0x75, 0x6E, 0x69, 0x32, 0x44, 0x46, 0x46, 0x0C, 0x5F, + 0x70, 0x61, 0x72, 0x74, 0x2E, 0x41, 0x5F, 0x66, 0x72, 0x61, 0x63, 0x0C, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x4F, 0x73, 0x6C, 0x61, 0x73, 0x68, + 0x16, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x72, 0x6F, 0x73, 0x73, + 0x62, 0x61, 0x72, 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x1B, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x72, 0x6F, 0x73, 0x73, 0x62, + 0x61, 0x72, 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x5F, 0x72, + 0x65, 0x78, 0x74, 0x13, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x72, + 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x5F, 0x76, 0x65, 0x72, 0x74, 0x0D, + 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, 0x74, 0x61, 0x69, + 0x6C, 0x0C, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, 0x74, + 0x69, 0x63, 0x13, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, + 0x74, 0x69, 0x63, 0x5F, 0x63, 0x65, 0x6E, 0x74, 0x65, 0x72, 0x11, 0x5F, + 0x70, 0x61, 0x72, 0x74, 0x2E, 0x63, 0x79, 0x72, 0x74, 0x69, 0x63, 0x5F, + 0x68, 0x6F, 0x6F, 0x6B, 0x10, 0x5F, 0x70, 0x61, 0x72, 0x74, 0x2E, 0x66, + 0x69, 0x74, 0x61, 0x63, 0x79, 0x5F, 0x62, 0x61, 0x72, 0x0C, 0x5F, 0x70, + 0x61, 0x72, 0x74, 0x2E, 0x6F, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x0E, 0x70, + 0x65, 0x63, 0x79, 0x72, 0x69, 0x6C, 0x6C, 0x69, 0x63, 0x74, 0x75, 0x72, + 0x6E, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x36, 0x38, 0x2E, 0x63, 0x63, + 0x6D, 0x70, 0x0C, 0x75, 0x6E, 0x69, 0x32, 0x30, 0x37, 0x31, 0x2E, 0x63, + 0x63, 0x6D, 0x70, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x42, 0x32, 0x2E, + 0x63, 0x63, 0x6D, 0x70, 0x0F, 0x61, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x5F, 0x75, 0x6E, 0x69, 0x30, 0x32, 0x44, 0x45, 0x0E, 0x6C, 0x61, 0x72, + 0x67, 0x65, 0x72, 0x69, 0x67, 0x68, 0x74, 0x68, 0x6F, 0x6F, 0x6B, 0x0F, + 0x65, 0x78, 0x63, 0x6C, 0x61, 0x6D, 0x64, 0x6F, 0x77, 0x6E, 0x2E, 0x63, + 0x61, 0x73, 0x65, 0x0C, 0x75, 0x6E, 0x69, 0x30, 0x34, 0x31, 0x46, 0x2E, + 0x74, 0x75, 0x72, 0x6E, 0x0B, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x30, 0x36, + 0x30, 0x33, 0x30, 0x39, 0x14, 0x64, 0x69, 0x65, 0x72, 0x65, 0x73, 0x69, + 0x73, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x5F, 0x6E, 0x61, 0x72, 0x72, 0x6F, + 0x77, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x46, 0x45, 0x2E, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x44, 0x2E, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, + 0x44, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, + 0x46, 0x43, 0x45, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, + 0x69, 0x31, 0x46, 0x44, 0x45, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0D, + 0x75, 0x6E, 0x69, 0x31, 0x46, 0x43, 0x46, 0x2E, 0x74, 0x6F, 0x6E, 0x6F, + 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x44, 0x46, 0x2E, 0x74, 0x6F, + 0x6E, 0x6F, 0x73, 0x0D, 0x75, 0x6E, 0x69, 0x31, 0x46, 0x45, 0x46, 0x2E, + 0x74, 0x6F, 0x6E, 0x6F, 0x73, 0x0A, 0x75, 0x6E, 0x69, 0x31, 0x44, 0x43, + 0x36, 0x2E, 0x6C, 0x63, 0x0D, 0x67, 0x72, 0x61, 0x76, 0x65, 0x5F, 0x63, + 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x0D, 0x61, 0x63, 0x75, 0x74, 0x65, + 0x5F, 0x63, 0x6F, 0x6D, 0x70, 0x61, 0x63, 0x74, 0x08, 0x6F, 0x67, 0x6F, + 0x6E, 0x65, 0x6B, 0x2E, 0x41, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, + 0x2E, 0x4F, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x55, 0x08, + 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x61, 0x08, 0x6F, 0x67, 0x6F, + 0x6E, 0x65, 0x6B, 0x2E, 0x65, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, + 0x2E, 0x6F, 0x08, 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x79, 0x0A, + 0x6F, 0x67, 0x6F, 0x6E, 0x65, 0x6B, 0x2E, 0x75, 0x2E, 0x31, 0x0C, 0x61, + 0x6E, 0x67, 0x6C, 0x65, 0x73, 0x75, 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x0E, + 0x62, 0x61, 0x72, 0x6D, 0x69, 0x64, 0x6C, 0x6F, 0x6E, 0x67, 0x63, 0x6F, + 0x6D, 0x62, 0x08, 0x63, 0x72, 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x0D, + 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, + 0x62, 0x0F, 0x74, 0x61, 0x63, 0x6B, 0x64, 0x6F, 0x77, 0x6E, 0x73, 0x75, + 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x0F, 0x74, 0x61, 0x63, 0x6B, 0x6C, 0x65, + 0x66, 0x74, 0x73, 0x75, 0x62, 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x74, 0x61, + 0x63, 0x6B, 0x72, 0x69, 0x67, 0x68, 0x74, 0x73, 0x75, 0x62, 0x63, 0x6F, + 0x6D, 0x62, 0x0D, 0x74, 0x61, 0x63, 0x6B, 0x75, 0x70, 0x73, 0x75, 0x62, + 0x63, 0x6F, 0x6D, 0x62, 0x10, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x76, 0x65, + 0x72, 0x74, 0x73, 0x75, 0x70, 0x63, 0x6F, 0x6D, 0x62, 0x0B, 0x63, 0x72, + 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x2E, 0x75, 0x63, 0x11, 0x63, 0x72, + 0x6F, 0x73, 0x73, 0x62, 0x61, 0x72, 0x5F, 0x73, 0x68, 0x6F, 0x72, 0x74, + 0x2E, 0x75, 0x63, 0x0A, 0x75, 0x6E, 0x69, 0x30, 0x33, 0x33, 0x37, 0x2E, + 0x6C, 0x63, 0x0D, 0x73, 0x6C, 0x61, 0x73, 0x68, 0x73, 0x68, 0x6F, 0x72, + 0x74, 0x2E, 0x75, 0x63, 0x0E, 0x5F, 0x74, 0x69, 0x6C, 0x64, 0x65, 0x63, + 0x72, 0x6F, 0x73, 0x73, 0x2E, 0x63, 0x6E, 0x14, 0x63, 0x6F, 0x6D, 0x6D, + 0x61, 0x61, 0x63, 0x63, 0x65, 0x6E, 0x74, 0x72, 0x6F, 0x74, 0x61, 0x74, + 0x65, 0x2E, 0x63, 0x6E, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x3A, + 0x00, 0x0A, 0x00, 0x0A, 0x00, 0x50, 0x00, 0x9E, 0x00, 0xAC, 0x00, 0x58, + 0x00, 0x60, 0x00, 0x68, 0x00, 0x70, 0x00, 0x78, 0x00, 0x80, 0x00, 0x94, + 0x00, 0x04, 0x44, 0x46, 0x4C, 0x54, 0x00, 0x72, 0x63, 0x79, 0x72, 0x6C, + 0x00, 0x76, 0x67, 0x72, 0x65, 0x6B, 0x00, 0x76, 0x6C, 0x61, 0x74, 0x6E, + 0x00, 0x7A, 0x00, 0x05, 0x63, 0x70, 0x73, 0x70, 0x00, 0x8A, 0x6B, 0x65, + 0x72, 0x6E, 0x00, 0x96, 0x6B, 0x65, 0x72, 0x6E, 0x00, 0xAE, 0x6D, 0x61, + 0x72, 0x6B, 0x00, 0xA0, 0x6D, 0x6B, 0x6D, 0x6B, 0x00, 0x90, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x01, 0x00, 0xA6, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, + 0x01, 0x24, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xA0, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0xA4, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, + 0x00, 0xA8, 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0xAC, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x01, 0x00, 0xB0, 0x00, 0xB4, 0x00, 0x00, 0x00, 0x62, + 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0x06, 0x00, 0x10, 0x00, 0x01, + 0x00, 0xC4, 0x00, 0x01, 0x00, 0x09, 0x00, 0x10, 0x00, 0x03, 0x00, 0xC6, + 0x00, 0xCE, 0x00, 0xD6, 0x00, 0x00, 0x00, 0x02, 0x00, 0x10, 0x00, 0x03, + 0x01, 0x40, 0x00, 0xE8, 0x02, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, + 0x00, 0x05, 0x00, 0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x01, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x25, 0xBC, + 0x00, 0x05, 0x00, 0x10, 0x00, 0x20, 0x00, 0x01, 0x24, 0x84, 0x31, 0x46, + 0x00, 0x01, 0x24, 0x9C, 0x3D, 0x86, 0x00, 0x01, 0x24, 0x48, 0x2A, 0x8E, + 0x00, 0x01, 0x24, 0x4E, 0x2C, 0x4E, 0x00, 0x01, 0x24, 0x5A, 0x24, 0x48, + 0x00, 0x01, 0x24, 0x62, 0x24, 0x38, 0x00, 0x01, 0x24, 0x42, 0x2E, 0xA8, + 0x00, 0x01, 0x24, 0x48, 0x37, 0xAE, 0x00, 0x01, 0x24, 0xD4, 0x34, 0x38, + 0x00, 0x01, 0x25, 0x02, 0x48, 0xB8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x04, 0x00, 0x01, + 0x24, 0xAC, 0x24, 0x62, 0x00, 0x01, 0x24, 0xDA, 0x24, 0x7E, 0x00, 0x01, + 0x00, 0x02, 0x00, 0x00, 0x7E, 0xF0, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, + 0x76, 0x7A, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x87, 0xDA, 0x00, 0x01, + 0x24, 0x76, 0x00, 0x04, 0x00, 0x00, 0x00, 0x07, 0x24, 0x1A, 0x24, 0x1A, + 0x24, 0x1A, 0x24, 0x1A, 0x24, 0x1A, 0x24, 0x1A, 0x24, 0x1A, 0x00, 0x01, + 0x26, 0x8E, 0x00, 0x04, 0x00, 0x00, 0x00, 0x27, 0x7E, 0xBA, 0x25, 0x90, + 0x25, 0x18, 0x26, 0x12, 0x25, 0xF4, 0x24, 0xF4, 0x24, 0xFA, 0x25, 0x18, + 0x25, 0x7C, 0x25, 0xCC, 0x25, 0xCC, 0x25, 0xCC, 0x25, 0x00, 0x25, 0xBA, + 0x26, 0x48, 0x25, 0x18, 0x25, 0x86, 0x25, 0x06, 0x25, 0x9E, 0x25, 0x0C, + 0x25, 0xDE, 0x25, 0xAC, 0x25, 0xAC, 0x25, 0xAC, 0x7E, 0xBA, 0x7E, 0xBA, + 0x7E, 0xBA, 0x25, 0x18, 0x25, 0x18, 0x25, 0x18, 0x25, 0x18, 0x25, 0x18, + 0x25, 0x18, 0x25, 0xCC, 0x25, 0x12, 0x25, 0xCC, 0x25, 0xCC, 0x25, 0xCC, + 0x25, 0x18, 0x00, 0x01, 0x28, 0xEC, 0x00, 0x04, 0x00, 0x00, 0x00, 0x5F, + 0x27, 0x32, 0x26, 0xA6, 0x27, 0xAE, 0x87, 0x48, 0x87, 0x4E, 0x87, 0x4E, + 0x26, 0x88, 0x26, 0xBE, 0x27, 0x50, 0x27, 0x6E, 0x26, 0x88, 0x26, 0x88, + 0x26, 0x88, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xB8, + 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xB8, 0x28, 0x28, 0x26, 0xFE, 0x87, 0x4E, + 0x27, 0xFA, 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xB8, + 0x26, 0xB8, 0x26, 0xB8, 0x26, 0xAC, 0x27, 0x18, 0x26, 0xB2, 0x26, 0xB2, + 0x26, 0xAC, 0x27, 0x18, 0x27, 0x18, 0x26, 0xE6, 0x26, 0xE6, 0x26, 0xC8, + 0x26, 0x8E, 0x26, 0xB2, 0x27, 0x8C, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, + 0x26, 0xA0, 0x26, 0xD2, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, + 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xB8, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0x94, + 0x28, 0x6A, 0x87, 0x42, 0x87, 0x42, 0x26, 0xDC, 0x26, 0xDC, 0x26, 0xB8, + 0x26, 0xB2, 0x87, 0x4E, 0x26, 0xB2, 0x87, 0x42, 0x26, 0xDC, 0x87, 0x54, + 0x26, 0xF0, 0x26, 0x9A, 0x27, 0xD4, 0x26, 0xA0, 0x26, 0xA0, 0x26, 0xA0, + 0x26, 0xA0, 0x26, 0xA6, 0x26, 0xA6, 0x26, 0xA6, 0x87, 0x4E, 0x87, 0x4E, + 0x26, 0xE6, 0x26, 0xAC, 0x27, 0x18, 0x26, 0xAC, 0x27, 0x18, 0x26, 0xB2, + 0x26, 0xE6, 0x26, 0xE6, 0x26, 0xE6, 0x26, 0xB8, 0x26, 0xB8, 0x00, 0x02, + 0x54, 0x98, 0x00, 0x04, 0x00, 0x00, 0x56, 0x22, 0x59, 0x8C, 0x00, 0x43, + 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x97, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x67, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x67, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFE, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x2E, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x72, 0xFF, 0x4C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xF6, 0xFF, 0xC9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x77, 0xFF, 0x37, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0xFF, 0x2F, 0xFF, 0x5E, 0xFE, 0xF5, 0xFF, 0xDC, 0xFF, 0x53, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0xFF, 0x80, 0xFF, 0xD5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x96, 0xFF, 0x67, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x22, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3E, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x46, 0xFF, 0xBD, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x86, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x8C, 0xFF, 0x8C, 0xFF, 0x20, 0x00, 0x00, 0x00, 0x00, + 0xFE, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x52, + 0x00, 0x00, 0xFF, 0x75, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCF, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1E, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xDE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x53, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0xFF, 0xAF, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x43, 0x00, 0x00, 0xFF, 0x69, + 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCF, 0xFF, 0xD6, 0xFF, 0xB0, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE8, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFE, 0xE9, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC9, 0x00, 0x00, 0xFF, 0x98, + 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA8, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x52, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xF5, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7F, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBC, 0xFF, 0xB5, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE5, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x23, 0x00, 0x00, 0xFE, 0xDE, + 0xFF, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x97, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x31, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAC, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0xFE, 0xDE, + 0xFF, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2D, 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFB, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00, 0xFE, 0xDE, + 0xFF, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x1E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x89, 0x00, 0x00, 0xFF, 0x67, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0xFF, 0xE3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x95, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x84, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBA, 0xFF, 0xAA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x3A, 0x84, 0x00, 0x01, 0x00, 0x01, 0x0A, 0x95, + 0x00, 0x01, 0x00, 0x00, 0x3A, 0x80, 0x00, 0x01, 0x00, 0x01, 0x0B, 0x00, + 0x00, 0x01, 0x00, 0x01, 0x0A, 0x96, 0x00, 0x01, 0x00, 0x00, 0x3A, 0x74, + 0x00, 0x01, 0x00, 0x02, 0x0A, 0x53, 0x0A, 0x55, 0x00, 0x02, 0x00, 0x00, + 0x3A, 0x6C, 0x00, 0x00, 0x3A, 0x72, 0x00, 0x01, 0x00, 0x07, 0x06, 0xE7, + 0x06, 0xED, 0x06, 0xEE, 0x07, 0xF7, 0x09, 0x0D, 0x0A, 0x9B, 0x0A, 0xB3, + 0x00, 0x01, 0x06, 0xE9, 0xFE, 0xE9, 0x00, 0x07, 0x00, 0x00, 0x3A, 0x56, + 0x00, 0x00, 0x3A, 0x5C, 0x00, 0x00, 0x3A, 0x62, 0x00, 0x00, 0x3A, 0x68, + 0x00, 0x00, 0x3A, 0x6E, 0x00, 0x00, 0x3A, 0x74, 0x00, 0x00, 0x3A, 0x7A, + 0x00, 0x02, 0x00, 0x04, 0x06, 0xE8, 0x06, 0xEC, 0x00, 0x00, 0x08, 0xE0, + 0x08, 0xE1, 0x00, 0x05, 0x0A, 0x8B, 0x0A, 0x8F, 0x00, 0x07, 0x0B, 0x4A, + 0x0B, 0x4A, 0x00, 0x0C, 0x00, 0x0D, 0x3A, 0x46, 0x3A, 0x4C, 0x3A, 0x52, + 0x3A, 0x58, 0x3A, 0x5E, 0x3A, 0x82, 0x3A, 0x64, 0x3A, 0x88, 0x3A, 0x6A, + 0x3A, 0x70, 0x3A, 0x70, 0x3A, 0x76, 0x3A, 0x7C, 0x00, 0x01, 0x00, 0x07, + 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x07, 0xF8, 0x08, 0xCB, 0x08, 0xCC, + 0x08, 0xCF, 0x00, 0x01, 0x00, 0x15, 0x06, 0xE8, 0x06, 0xE9, 0x06, 0xEA, + 0x06, 0xEB, 0x06, 0xEC, 0x08, 0xE0, 0x08, 0xE1, 0x0A, 0x8B, 0x0A, 0x8C, + 0x0A, 0x8D, 0x0A, 0x8E, 0x0A, 0x8F, 0x0A, 0x90, 0x0A, 0x91, 0x0A, 0xAB, + 0x0A, 0xB2, 0x0A, 0xB8, 0x0A, 0xDE, 0x0A, 0xF2, 0x0B, 0x4A, 0x0B, 0x54, + 0x00, 0x15, 0x00, 0x00, 0x3A, 0x32, 0x00, 0x00, 0x3A, 0x38, 0x00, 0x00, + 0x3A, 0x8C, 0x00, 0x00, 0x3A, 0x86, 0x00, 0x00, 0x3A, 0x3E, 0x00, 0x00, + 0x3A, 0x92, 0x00, 0x00, 0x3A, 0x44, 0x00, 0x00, 0x3A, 0x92, 0x00, 0x00, + 0x3A, 0x4A, 0x00, 0x00, 0x3A, 0x50, 0x00, 0x00, 0x3A, 0x50, 0x00, 0x00, + 0x3A, 0x56, 0x00, 0x00, 0x3A, 0x5C, 0x00, 0x00, 0x3A, 0x62, 0x00, 0x00, + 0x3A, 0x68, 0x00, 0x00, 0x3A, 0x6E, 0x00, 0x00, 0x3A, 0x86, 0x00, 0x00, + 0x3A, 0x74, 0x00, 0x00, 0x3A, 0x7A, 0x00, 0x00, 0x3A, 0x80, 0x00, 0x00, + 0x3A, 0x86, 0x00, 0x01, 0x06, 0xCE, 0x00, 0x12, 0x00, 0x01, 0x06, 0xCE, + 0xFF, 0xA4, 0x00, 0x01, 0x07, 0x55, 0xFF, 0x5E, 0x00, 0x01, 0x06, 0x91, + 0x00, 0x3D, 0x00, 0x01, 0x06, 0x87, 0x00, 0x3B, 0x00, 0x01, 0x05, 0xBB, + 0xFF, 0xD4, 0x00, 0x01, 0x06, 0x05, 0x00, 0x03, 0x00, 0x02, 0x00, 0x0F, + 0x00, 0x02, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x96, 0x00, 0x08, + 0x00, 0xA1, 0x00, 0xC5, 0x00, 0x94, 0x00, 0xC7, 0x00, 0xE9, 0x00, 0xB9, + 0x01, 0x0A, 0x01, 0x89, 0x00, 0xDC, 0x01, 0x8C, 0x01, 0xA3, 0x01, 0x5C, + 0x01, 0xA5, 0x01, 0xEE, 0x01, 0x74, 0x01, 0xF0, 0x01, 0xFA, 0x01, 0xBE, + 0x03, 0xF7, 0x03, 0xF9, 0x01, 0xC9, 0x04, 0x07, 0x04, 0x52, 0x01, 0xCC, + 0x05, 0x42, 0x05, 0x42, 0x02, 0x18, 0x08, 0xFE, 0x09, 0x04, 0x02, 0x19, + 0x09, 0x16, 0x09, 0x33, 0x02, 0x20, 0x09, 0x7B, 0x09, 0xA3, 0x02, 0x3E, + 0x09, 0xC8, 0x09, 0xCC, 0x02, 0x67, 0x00, 0x02, 0x05, 0xB0, 0xFF, 0x92, + 0x05, 0xEA, 0xFF, 0xE6, 0x00, 0x02, 0x06, 0x47, 0xFF, 0xA0, 0x06, 0x4D, + 0xFF, 0xF4, 0x00, 0x03, 0x05, 0x3B, 0xFF, 0xD8, 0x05, 0x43, 0xFF, 0xD8, + 0x05, 0x47, 0xFF, 0xD8, 0x00, 0x03, 0x06, 0xB6, 0xFF, 0xDE, 0x06, 0xB7, + 0xFF, 0xDE, 0x06, 0xB8, 0xFF, 0xDE, 0x00, 0x03, 0x06, 0xA1, 0xFF, 0xDE, + 0x06, 0xA8, 0x00, 0x00, 0x06, 0xAD, 0xFF, 0xEA, 0x00, 0x04, 0x04, 0x09, + 0xFF, 0xE6, 0x07, 0x33, 0xFF, 0xE6, 0x07, 0x37, 0xFF, 0xE6, 0x07, 0x3A, + 0xFF, 0xE6, 0x00, 0x04, 0x05, 0x41, 0xFF, 0xE8, 0x05, 0x46, 0xFF, 0xEE, + 0x05, 0x91, 0xFF, 0xF8, 0x06, 0xEF, 0xFF, 0xEB, 0x00, 0x05, 0x06, 0x87, + 0xFF, 0x5D, 0x06, 0xA8, 0xFF, 0xBF, 0x06, 0xB6, 0xFF, 0xA3, 0x06, 0xB7, + 0xFF, 0xA3, 0x06, 0xB8, 0xFF, 0xA3, 0x00, 0x07, 0x05, 0xDB, 0xFF, 0xCA, + 0x05, 0xDC, 0xFF, 0xCA, 0x05, 0xDD, 0xFF, 0xCA, 0x07, 0xF8, 0xFF, 0xCA, + 0x08, 0xCB, 0xFF, 0xCA, 0x08, 0xCC, 0xFF, 0xCA, 0x08, 0xCF, 0xFF, 0xCA, + 0x00, 0x0D, 0x05, 0x3C, 0xFF, 0xE1, 0x05, 0x48, 0xFF, 0xE1, 0x05, 0x90, + 0xFF, 0xE9, 0x05, 0xDB, 0xFF, 0xCD, 0x05, 0xDC, 0xFF, 0xCD, 0x05, 0xDD, + 0xFF, 0xCD, 0x06, 0x08, 0xFF, 0xE0, 0x06, 0x09, 0xFF, 0xE0, 0x06, 0x15, + 0xFF, 0xE0, 0x07, 0xF8, 0xFF, 0xCD, 0x08, 0xCB, 0xFF, 0xCD, 0x08, 0xCC, + 0xFF, 0xCD, 0x08, 0xCF, 0xFF, 0xCD, 0x00, 0x11, 0x01, 0x8A, 0x00, 0x0F, + 0x01, 0x8B, 0x00, 0x0F, 0x05, 0x25, 0x00, 0x0F, 0x05, 0x36, 0x00, 0x0F, + 0x05, 0x39, 0x00, 0x0F, 0x05, 0x3A, 0x00, 0x0F, 0x05, 0xAE, 0x00, 0x0F, + 0x05, 0xBB, 0x00, 0x19, 0x06, 0x1B, 0x00, 0x0F, 0x06, 0xFF, 0x00, 0x0F, + 0x07, 0x3D, 0x00, 0x0F, 0x07, 0x3E, 0x00, 0x0F, 0x07, 0x3F, 0x00, 0x0F, + 0x07, 0x40, 0x00, 0x0F, 0x07, 0x41, 0x00, 0x0F, 0x07, 0x5C, 0x00, 0x0F, + 0x0B, 0x48, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x27, 0x04, 0x09, 0x05, 0x22, + 0x05, 0x3C, 0x05, 0x41, 0x05, 0x43, 0x05, 0x44, 0x05, 0x4B, 0x05, 0xAE, + 0x05, 0xB0, 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xE3, 0x05, 0xEB, + 0x06, 0x05, 0x06, 0x1A, 0x06, 0x4B, 0x06, 0x87, 0x06, 0xA1, 0x06, 0xA5, + 0x06, 0xAD, 0x06, 0xB6, 0x06, 0xB7, 0x06, 0xB8, 0x07, 0x33, 0x07, 0x37, + 0x07, 0x3A, 0x07, 0x3D, 0x07, 0x3E, 0x07, 0x3F, 0x07, 0x40, 0x07, 0x41, + 0x07, 0x5C, 0x07, 0xF8, 0x07, 0xFE, 0x08, 0xCB, 0x08, 0xCC, 0x08, 0xCF, + 0x0B, 0x48, 0x00, 0x01, 0x06, 0x05, 0xFF, 0xA3, 0x00, 0x01, 0x05, 0xB0, + 0xFF, 0xAF, 0x00, 0x01, 0x07, 0x55, 0xFF, 0x98, 0x00, 0x01, 0x06, 0x87, + 0xFF, 0xE3, 0x00, 0x01, 0x05, 0x24, 0xFF, 0xAF, 0x00, 0x01, 0x05, 0x24, + 0xFF, 0x98, 0x00, 0x01, 0x05, 0x8F, 0xFF, 0x80, 0x00, 0x01, 0x05, 0x8F, + 0xFF, 0xBB, 0x00, 0x01, 0x05, 0x24, 0xFF, 0xBB, 0x00, 0x02, 0x06, 0x0B, + 0xFF, 0xF5, 0x06, 0x0E, 0xFF, 0xF5, 0x00, 0x02, 0x05, 0xD0, 0xFE, 0xE9, + 0x05, 0xD1, 0xFE, 0x8C, 0x00, 0x02, 0x05, 0x24, 0xFF, 0xBB, 0x07, 0x55, + 0xFF, 0x8C, 0x00, 0x02, 0x05, 0x8F, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0x75, + 0x00, 0x02, 0x05, 0xD0, 0xFE, 0xE9, 0x05, 0xD1, 0xFE, 0xE9, 0x00, 0x03, + 0x06, 0x90, 0xFF, 0xBA, 0x06, 0x91, 0xFF, 0xF5, 0x06, 0x96, 0xFF, 0xF5, + 0x00, 0x06, 0x05, 0xB0, 0xFF, 0xBB, 0x05, 0xC8, 0xFF, 0xBB, 0x05, 0xCC, + 0xFF, 0xBB, 0x07, 0x55, 0xFF, 0x75, 0x07, 0xFB, 0xFF, 0xBB, 0x07, 0xFD, + 0xFF, 0xBB, 0x00, 0x06, 0x03, 0x95, 0xFF, 0xA3, 0x05, 0x8F, 0xFF, 0x75, + 0x05, 0xAB, 0xFF, 0x00, 0x05, 0xEA, 0xFF, 0x3B, 0x05, 0xF6, 0xFF, 0xA3, + 0x06, 0x05, 0xFF, 0xAF, 0x00, 0x07, 0x05, 0xC8, 0xFF, 0x98, 0x05, 0xCC, + 0xFF, 0x98, 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, 0x06, 0x05, + 0xFF, 0xBB, 0x07, 0xFB, 0xFF, 0x98, 0x07, 0xFD, 0xFF, 0x98, 0x00, 0x07, + 0x05, 0xCE, 0xFF, 0xA3, 0x05, 0xCF, 0xFF, 0xA3, 0x06, 0x05, 0xFF, 0xA3, + 0x08, 0x01, 0xFF, 0xA3, 0x08, 0x02, 0xFF, 0xA3, 0x09, 0x0E, 0xFF, 0xA3, + 0x09, 0x0F, 0xFF, 0xA3, 0x00, 0x07, 0x05, 0x41, 0xFF, 0xEC, 0x05, 0x46, + 0xFF, 0xEC, 0x05, 0x4A, 0xFF, 0x80, 0x05, 0x8F, 0xFF, 0xA3, 0x05, 0xAB, + 0xFF, 0x8C, 0x05, 0xEA, 0xFF, 0x46, 0x06, 0x05, 0xFE, 0xBB, 0x00, 0x08, + 0x05, 0x24, 0xFF, 0x69, 0x05, 0x44, 0xFF, 0x69, 0x05, 0xB0, 0xFF, 0x69, + 0x05, 0xC8, 0xFF, 0x3B, 0x05, 0xCC, 0xFF, 0x3B, 0x07, 0x55, 0xFF, 0x5E, + 0x07, 0xFB, 0xFF, 0x3B, 0x07, 0xFD, 0xFF, 0x3B, 0x00, 0x09, 0x05, 0xAD, + 0xFF, 0xAF, 0x05, 0xDB, 0xFF, 0x75, 0x05, 0xDC, 0xFF, 0x75, 0x05, 0xDD, + 0xFF, 0x75, 0x06, 0x05, 0xFF, 0x98, 0x07, 0xF8, 0xFF, 0x75, 0x08, 0xCB, + 0xFF, 0x75, 0x08, 0xCC, 0xFF, 0x75, 0x08, 0xCF, 0xFF, 0x75, 0x00, 0x09, + 0x05, 0xC8, 0xFF, 0x80, 0x05, 0xC9, 0xFF, 0x75, 0x05, 0xCC, 0xFF, 0x80, + 0x05, 0xCD, 0xFF, 0x75, 0x05, 0xD4, 0xFF, 0x75, 0x07, 0xFB, 0xFF, 0x80, + 0x07, 0xFC, 0xFF, 0x75, 0x07, 0xFD, 0xFF, 0x80, 0x07, 0xFE, 0xFF, 0x75, + 0x00, 0x0B, 0x05, 0x24, 0xFF, 0x98, 0x05, 0xC8, 0xFF, 0xA9, 0x05, 0xC9, + 0xFF, 0x8C, 0x05, 0xCC, 0xFF, 0xA9, 0x05, 0xCD, 0xFF, 0x8C, 0x05, 0xD4, + 0xFF, 0x8C, 0x07, 0x55, 0xFF, 0xAF, 0x07, 0xFB, 0xFF, 0xA9, 0x07, 0xFC, + 0xFF, 0x8C, 0x07, 0xFD, 0xFF, 0xA9, 0x07, 0xFE, 0xFF, 0x8C, 0x00, 0x10, + 0x05, 0xB0, 0xFF, 0x80, 0x05, 0xC8, 0xFF, 0x46, 0x05, 0xCA, 0xFF, 0xBB, + 0x05, 0xCB, 0xFF, 0xBB, 0x05, 0xCC, 0xFF, 0x46, 0x05, 0xE4, 0xFF, 0xBB, + 0x06, 0x06, 0xFF, 0xAF, 0x06, 0x07, 0xFF, 0xAF, 0x06, 0x0B, 0xFF, 0xD2, + 0x06, 0x0E, 0xFF, 0xD2, 0x06, 0x0F, 0xFF, 0xAF, 0x06, 0xAE, 0xFF, 0xA3, + 0x07, 0x55, 0xFF, 0x8C, 0x07, 0xFB, 0xFF, 0x46, 0x07, 0xFD, 0xFF, 0x46, + 0x08, 0xCA, 0xFF, 0xBB, 0x00, 0x20, 0x05, 0x24, 0xFF, 0x98, 0x05, 0x2D, + 0xFF, 0xAF, 0x05, 0x2E, 0xFF, 0xAF, 0x05, 0x2F, 0xFF, 0xAF, 0x05, 0x3B, + 0xFF, 0xA3, 0x05, 0x3C, 0xFF, 0x23, 0x05, 0x3F, 0xFF, 0xA3, 0x05, 0x40, + 0xFF, 0x8C, 0x05, 0x41, 0xFF, 0xA3, 0x05, 0x43, 0xFF, 0xA3, 0x05, 0x45, + 0xFF, 0xA3, 0x05, 0x46, 0xFF, 0xA3, 0x05, 0x47, 0xFF, 0xA3, 0x05, 0x48, + 0xFF, 0x23, 0x05, 0x49, 0xFF, 0xA3, 0x05, 0x4A, 0xFF, 0x8C, 0x05, 0x4C, + 0xFF, 0xA3, 0x05, 0xA3, 0xFF, 0xAF, 0x05, 0xB0, 0xFF, 0x5E, 0x05, 0xC8, + 0xFF, 0xAF, 0x05, 0xCC, 0xFF, 0xAF, 0x06, 0x08, 0xFF, 0x75, 0x06, 0x09, + 0xFF, 0x75, 0x06, 0x0C, 0xFF, 0xAF, 0x06, 0x15, 0xFF, 0x75, 0x06, 0x1A, + 0xFF, 0xA3, 0x06, 0x21, 0x00, 0xC5, 0x07, 0x3B, 0xFF, 0xAF, 0x07, 0x3C, + 0xFF, 0xAF, 0x07, 0x55, 0xFF, 0x8C, 0x07, 0xFB, 0xFF, 0xAF, 0x07, 0xFD, + 0xFF, 0xAF, 0x00, 0x01, 0x00, 0x5F, 0x03, 0x95, 0x04, 0x09, 0x05, 0x21, + 0x05, 0x25, 0x05, 0x2E, 0x05, 0x2F, 0x05, 0x3B, 0x05, 0x41, 0x05, 0x43, + 0x05, 0x44, 0x05, 0x46, 0x05, 0x47, 0x05, 0x4B, 0x05, 0x80, 0x05, 0x81, + 0x05, 0x82, 0x05, 0x83, 0x05, 0x86, 0x05, 0x88, 0x05, 0x89, 0x05, 0x8B, + 0x05, 0x8F, 0x05, 0x93, 0x05, 0xA3, 0x05, 0xB0, 0x05, 0xB6, 0x05, 0xB7, + 0x05, 0xB8, 0x05, 0xB9, 0x05, 0xBB, 0x05, 0xC1, 0x05, 0xC2, 0x05, 0xC8, + 0x05, 0xC9, 0x05, 0xCA, 0x05, 0xCB, 0x05, 0xCC, 0x05, 0xCD, 0x05, 0xD4, + 0x05, 0xDB, 0x05, 0xDC, 0x05, 0xDD, 0x05, 0xE3, 0x05, 0xE4, 0x05, 0xEB, + 0x05, 0xEC, 0x05, 0xED, 0x05, 0xEE, 0x05, 0xEF, 0x05, 0xF2, 0x05, 0xF4, + 0x05, 0xF5, 0x05, 0xF9, 0x05, 0xFA, 0x05, 0xFB, 0x05, 0xFC, 0x05, 0xFF, + 0x06, 0x01, 0x06, 0x02, 0x06, 0x04, 0x06, 0x05, 0x06, 0x06, 0x06, 0x07, + 0x06, 0x08, 0x06, 0x09, 0x06, 0x0A, 0x06, 0x0B, 0x06, 0x0C, 0x06, 0x0E, + 0x06, 0x0F, 0x06, 0x15, 0x06, 0x1B, 0x06, 0x94, 0x06, 0xA6, 0x06, 0xCE, + 0x07, 0x09, 0x07, 0x0A, 0x07, 0x21, 0x07, 0x22, 0x07, 0x33, 0x07, 0x37, + 0x07, 0x3A, 0x07, 0x3B, 0x07, 0x3C, 0x07, 0xF8, 0x07, 0xFB, 0x07, 0xFC, + 0x07, 0xFD, 0x07, 0xFE, 0x08, 0xCA, 0x08, 0xCB, 0x08, 0xCC, 0x08, 0xCF, + 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x02, 0x00, 0x4A, 0x00, 0x49, 0x00, 0x53, + 0x00, 0x00, 0x00, 0x5F, 0x00, 0x88, 0x00, 0x0B, 0x00, 0xA1, 0x00, 0xAD, + 0x00, 0x35, 0x00, 0xAF, 0x00, 0xC4, 0x00, 0x42, 0x01, 0x76, 0x01, 0x76, + 0x00, 0x58, 0x01, 0x8D, 0x01, 0x99, 0x00, 0x59, 0x01, 0x9B, 0x01, 0xA2, + 0x00, 0x66, 0x01, 0xA5, 0x01, 0xA7, 0x00, 0x6E, 0x02, 0x4A, 0x02, 0x54, + 0x00, 0x71, 0x02, 0x66, 0x02, 0x85, 0x00, 0x7C, 0x02, 0x9E, 0x02, 0xA1, + 0x00, 0x9C, 0x02, 0xA5, 0x02, 0xA5, 0x00, 0xA0, 0x02, 0xA8, 0x02, 0xB0, + 0x00, 0xA1, 0x03, 0x48, 0x03, 0x48, 0x00, 0xAA, 0x03, 0x67, 0x03, 0x75, + 0x00, 0xAB, 0x03, 0x78, 0x03, 0x79, 0x00, 0xBA, 0x03, 0x7D, 0x03, 0x90, + 0x00, 0xBC, 0x04, 0x30, 0x04, 0x30, 0x00, 0xD0, 0x04, 0x52, 0x04, 0x52, + 0x00, 0xD1, 0x04, 0xEB, 0x04, 0xEB, 0x00, 0xD2, 0x05, 0x18, 0x05, 0x18, + 0x00, 0xD3, 0x05, 0x1B, 0x05, 0x1C, 0x00, 0xD4, 0x05, 0x25, 0x05, 0x25, + 0x00, 0xD6, 0x05, 0x2E, 0x05, 0x2F, 0x00, 0xD7, 0x05, 0x31, 0x05, 0x31, + 0x00, 0xD9, 0x05, 0x36, 0x05, 0x36, 0x00, 0xDA, 0x06, 0x27, 0x06, 0x27, + 0x00, 0xDB, 0x06, 0x29, 0x06, 0x29, 0x00, 0xDC, 0x06, 0x2C, 0x06, 0x2C, + 0x00, 0xDD, 0x06, 0x37, 0x06, 0x38, 0x00, 0xDE, 0x06, 0x58, 0x06, 0x58, + 0x00, 0xE0, 0x06, 0x5A, 0x06, 0x5A, 0x00, 0xE1, 0x06, 0x5D, 0x06, 0x5D, + 0x00, 0xE2, 0x06, 0x68, 0x06, 0x69, 0x00, 0xE3, 0x06, 0xD1, 0x06, 0xD5, + 0x00, 0xE5, 0x07, 0x00, 0x07, 0x00, 0x00, 0xEA, 0x07, 0x6F, 0x07, 0x6F, + 0x00, 0xEB, 0x07, 0x71, 0x07, 0x71, 0x00, 0xEC, 0x07, 0x74, 0x07, 0x74, + 0x00, 0xED, 0x07, 0x7F, 0x07, 0x80, 0x00, 0xEE, 0x07, 0xAC, 0x07, 0xAC, + 0x00, 0xF0, 0x07, 0xAE, 0x07, 0xAE, 0x00, 0xF1, 0x07, 0xB2, 0x07, 0xB2, + 0x00, 0xF2, 0x07, 0xBD, 0x07, 0xBE, 0x00, 0xF3, 0x07, 0xEE, 0x07, 0xEE, + 0x00, 0xF5, 0x07, 0xF4, 0x07, 0xF6, 0x00, 0xF6, 0x08, 0x0B, 0x08, 0x0B, + 0x00, 0xF9, 0x08, 0x0E, 0x08, 0x11, 0x00, 0xFA, 0x08, 0x14, 0x08, 0x16, + 0x00, 0xFE, 0x08, 0x2D, 0x08, 0x32, 0x01, 0x01, 0x08, 0x54, 0x08, 0x54, + 0x01, 0x07, 0x08, 0x57, 0x08, 0x5A, 0x01, 0x08, 0x08, 0x5D, 0x08, 0x5F, + 0x01, 0x0C, 0x08, 0x7A, 0x08, 0x81, 0x01, 0x0F, 0x08, 0xA1, 0x08, 0xA3, + 0x01, 0x17, 0x08, 0xAD, 0x08, 0xAD, 0x01, 0x1A, 0x08, 0xB1, 0x08, 0xB1, + 0x01, 0x1B, 0x08, 0xB9, 0x08, 0xB9, 0x01, 0x1C, 0x08, 0xBB, 0x08, 0xBB, + 0x01, 0x1D, 0x09, 0x04, 0x09, 0x04, 0x01, 0x1E, 0x09, 0x0A, 0x09, 0x0C, + 0x01, 0x1F, 0x09, 0x27, 0x09, 0x27, 0x01, 0x22, 0x09, 0x3E, 0x09, 0x3E, + 0x01, 0x23, 0x09, 0x82, 0x09, 0x83, 0x01, 0x24, 0x09, 0x91, 0x09, 0x93, + 0x01, 0x26, 0x09, 0x9D, 0x09, 0x9D, 0x01, 0x29, 0x09, 0xB3, 0x09, 0xB4, + 0x01, 0x2A, 0x09, 0xB8, 0x09, 0xB8, 0x01, 0x2C, 0x09, 0xBB, 0x09, 0xBC, + 0x01, 0x2D, 0x09, 0xBE, 0x09, 0xBE, 0x01, 0x2F, 0x09, 0xCA, 0x09, 0xCC, + 0x01, 0x30, 0x09, 0xD0, 0x09, 0xD2, 0x01, 0x33, 0x09, 0xF4, 0x09, 0xF4, + 0x01, 0x36, 0x0A, 0x04, 0x0A, 0x04, 0x01, 0x37, 0x01, 0x38, 0x34, 0x54, + 0x34, 0x54, 0x34, 0x54, 0x34, 0x54, 0x34, 0x54, 0x34, 0x54, 0x34, 0x54, + 0x34, 0x54, 0x34, 0x54, 0x33, 0x70, 0x34, 0x54, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x33, 0x76, 0x34, 0x2A, 0x33, 0xA6, 0x33, 0x7C, 0x33, 0x82, + 0x33, 0x88, 0x33, 0x8E, 0x33, 0x94, 0x33, 0x9A, 0x33, 0xA0, 0x33, 0xA6, + 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, 0x35, 0x02, 0x35, 0x02, + 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, + 0x33, 0xAC, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, + 0x34, 0x7E, 0x33, 0xB2, 0x34, 0xFC, 0x34, 0x66, 0x34, 0x6C, 0x33, 0xB8, + 0x34, 0xF0, 0x34, 0x72, 0x34, 0x84, 0x34, 0x78, 0x34, 0x7E, 0x35, 0x02, + 0x33, 0xB2, 0x34, 0xFC, 0x34, 0x66, 0x34, 0x6C, 0x33, 0xB8, 0x34, 0xF0, + 0x34, 0x72, 0x34, 0x84, 0x35, 0x02, 0x34, 0xEA, 0x34, 0x9C, 0x34, 0x9C, + 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x9C, + 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x2A, 0x34, 0x8A, + 0x34, 0x8A, 0x34, 0x8A, 0x34, 0x8A, 0x34, 0x8A, 0x34, 0x8A, 0x34, 0x8A, + 0x34, 0x8A, 0x34, 0x8A, 0x34, 0x8A, 0x34, 0x8A, 0x35, 0x08, 0x35, 0x08, + 0x35, 0x08, 0x35, 0x08, 0x35, 0x08, 0x35, 0x08, 0x35, 0x08, 0x35, 0x08, + 0x35, 0x08, 0x35, 0x08, 0x35, 0x08, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x34, 0x90, 0x35, 0x0E, + 0x35, 0x0E, 0x35, 0x0E, 0x35, 0x0E, 0x33, 0xBE, 0x35, 0x0E, 0x35, 0x0E, + 0x35, 0x0E, 0x35, 0x0E, 0x35, 0x0E, 0x35, 0x0E, 0x35, 0x0E, 0x35, 0x0E, + 0x35, 0x0E, 0x33, 0xC4, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, + 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, + 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0xE4, 0x34, 0x36, + 0x34, 0x36, 0x33, 0xCA, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, + 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x36, 0x34, 0x3C, + 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, + 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x42, 0x34, 0x8A, 0x34, 0x48, + 0x34, 0x96, 0x34, 0x9C, 0x34, 0xA2, 0x33, 0xD0, 0x34, 0x54, 0x34, 0x54, + 0x34, 0x8A, 0x34, 0x5A, 0x34, 0xA8, 0x33, 0xD6, 0x34, 0xAE, 0x34, 0xB4, + 0x33, 0xDC, 0x34, 0xBA, 0x33, 0xE2, 0x34, 0xC0, 0x34, 0xC6, 0x33, 0xE8, + 0x33, 0xEE, 0x33, 0xF4, 0x33, 0xF4, 0x33, 0xFA, 0x34, 0x00, 0x34, 0x06, + 0x34, 0x0C, 0x34, 0xCC, 0x34, 0x12, 0x34, 0xD2, 0x34, 0xD8, 0x34, 0x18, + 0x34, 0xD2, 0x34, 0x1E, 0x34, 0xDE, 0x34, 0x60, 0x34, 0x9C, 0x34, 0x30, + 0x34, 0x36, 0x34, 0x3C, 0x34, 0x54, 0x34, 0x2A, 0x34, 0x2A, 0x34, 0x2A, + 0x34, 0x2A, 0x35, 0x02, 0x35, 0x02, 0x35, 0x02, 0x34, 0x9C, 0x34, 0x9C, + 0x34, 0x9C, 0x34, 0x9C, 0x34, 0x8A, 0x34, 0x8A, 0x35, 0x08, 0x34, 0x24, + 0x34, 0x24, 0x34, 0x24, 0x34, 0x24, 0x35, 0x0E, 0x35, 0x0E, 0x35, 0x0E, + 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x30, 0x34, 0x36, + 0x34, 0x36, 0x34, 0x36, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x3C, 0x34, 0x2A, + 0x34, 0x42, 0x34, 0x90, 0x34, 0x48, 0x34, 0x9C, 0x34, 0x30, 0x34, 0x36, + 0x34, 0x3C, 0x34, 0x8A, 0x34, 0x90, 0x34, 0x54, 0x34, 0x8A, 0x34, 0x42, + 0x34, 0x54, 0x34, 0x8A, 0x34, 0x42, 0x34, 0x48, 0x35, 0x08, 0x34, 0x96, + 0x34, 0x90, 0x34, 0x90, 0x34, 0x48, 0x34, 0x4E, 0x34, 0x54, 0x34, 0x4E, + 0x34, 0xF6, 0x35, 0x08, 0x34, 0xF6, 0x34, 0x54, 0x35, 0x08, 0x00, 0x02, + 0x00, 0x69, 0x00, 0x02, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x5F, 0x00, 0x88, + 0x00, 0x3A, 0x00, 0xC5, 0x00, 0xC5, 0x00, 0x64, 0x00, 0xC7, 0x00, 0xD7, + 0x00, 0x65, 0x00, 0xD9, 0x01, 0x09, 0x00, 0x76, 0x01, 0x41, 0x01, 0x76, + 0x00, 0xA7, 0x01, 0x7E, 0x01, 0x7E, 0x00, 0xDD, 0x01, 0xA8, 0x01, 0xC7, + 0x00, 0xDE, 0x01, 0xD8, 0x01, 0xD8, 0x00, 0xFE, 0x01, 0xDA, 0x01, 0xEF, + 0x00, 0xFF, 0x01, 0xFB, 0x02, 0x1E, 0x01, 0x15, 0x02, 0x23, 0x02, 0x41, + 0x01, 0x39, 0x02, 0x58, 0x02, 0x58, 0x01, 0x58, 0x02, 0x66, 0x02, 0x85, + 0x01, 0x59, 0x02, 0xB1, 0x02, 0xB2, 0x01, 0x79, 0x02, 0xB4, 0x02, 0xC6, + 0x01, 0x7B, 0x02, 0xCB, 0x02, 0xCE, 0x01, 0x8E, 0x02, 0xD0, 0x02, 0xD1, + 0x01, 0x92, 0x03, 0x16, 0x03, 0x47, 0x01, 0x94, 0x03, 0x53, 0x03, 0x53, + 0x01, 0xC6, 0x03, 0x91, 0x03, 0x94, 0x01, 0xC7, 0x03, 0x96, 0x03, 0xD1, + 0x01, 0xCB, 0x03, 0xE4, 0x03, 0xF6, 0x02, 0x07, 0x03, 0xFA, 0x03, 0xFA, + 0x02, 0x1A, 0x04, 0x0A, 0x04, 0x0A, 0x02, 0x1B, 0x04, 0x35, 0x04, 0x35, + 0x02, 0x1C, 0x04, 0x43, 0x04, 0x43, 0x02, 0x1D, 0x04, 0xB5, 0x04, 0xC6, + 0x02, 0x1E, 0x05, 0x0B, 0x05, 0x0B, 0x02, 0x30, 0x05, 0x11, 0x05, 0x11, + 0x02, 0x31, 0x05, 0x18, 0x05, 0x18, 0x02, 0x32, 0x06, 0x16, 0x06, 0x17, + 0x02, 0x33, 0x06, 0x25, 0x06, 0x25, 0x02, 0x35, 0x06, 0x29, 0x06, 0x29, + 0x02, 0x36, 0x06, 0x2D, 0x06, 0x2D, 0x02, 0x37, 0x06, 0x33, 0x06, 0x33, + 0x02, 0x38, 0x06, 0x39, 0x06, 0x39, 0x02, 0x39, 0x06, 0x3D, 0x06, 0x3D, + 0x02, 0x3A, 0x06, 0x56, 0x06, 0x56, 0x02, 0x3B, 0x06, 0x5A, 0x06, 0x5A, + 0x02, 0x3C, 0x06, 0x5E, 0x06, 0x5E, 0x02, 0x3D, 0x06, 0x64, 0x06, 0x64, + 0x02, 0x3E, 0x06, 0x6A, 0x06, 0x6A, 0x02, 0x3F, 0x06, 0x6E, 0x06, 0x6E, + 0x02, 0x40, 0x06, 0xD1, 0x06, 0xD5, 0x02, 0x41, 0x07, 0x03, 0x07, 0x04, + 0x02, 0x46, 0x07, 0x54, 0x07, 0x54, 0x02, 0x48, 0x07, 0x6D, 0x07, 0x6D, + 0x02, 0x49, 0x07, 0x71, 0x07, 0x71, 0x02, 0x4A, 0x07, 0x75, 0x07, 0x75, + 0x02, 0x4B, 0x07, 0x7B, 0x07, 0x7B, 0x02, 0x4C, 0x07, 0x7D, 0x07, 0x7D, + 0x02, 0x4D, 0x07, 0x81, 0x07, 0x81, 0x02, 0x4E, 0x07, 0x85, 0x07, 0x85, + 0x02, 0x4F, 0x07, 0xAA, 0x07, 0xAA, 0x02, 0x50, 0x07, 0xAE, 0x07, 0xAE, + 0x02, 0x51, 0x07, 0xB3, 0x07, 0xB3, 0x02, 0x52, 0x07, 0xB9, 0x07, 0xB9, + 0x02, 0x53, 0x07, 0xBB, 0x07, 0xBB, 0x02, 0x54, 0x07, 0xBF, 0x07, 0xBF, + 0x02, 0x55, 0x07, 0xC3, 0x07, 0xC3, 0x02, 0x56, 0x08, 0x03, 0x08, 0x08, + 0x02, 0x57, 0x08, 0x0E, 0x08, 0x11, 0x02, 0x5D, 0x08, 0x17, 0x08, 0x1A, + 0x02, 0x61, 0x08, 0x22, 0x08, 0x28, 0x02, 0x65, 0x08, 0x33, 0x08, 0x3B, + 0x02, 0x6C, 0x08, 0x42, 0x08, 0x44, 0x02, 0x75, 0x08, 0x48, 0x08, 0x51, + 0x02, 0x78, 0x08, 0x57, 0x08, 0x5A, 0x02, 0x82, 0x08, 0x60, 0x08, 0x64, + 0x02, 0x86, 0x08, 0x6F, 0x08, 0x75, 0x02, 0x8B, 0x08, 0x82, 0x08, 0x8A, + 0x02, 0x92, 0x08, 0x91, 0x08, 0x93, 0x02, 0x9B, 0x08, 0x96, 0x08, 0x9C, + 0x02, 0x9E, 0x08, 0xA4, 0x08, 0xAE, 0x02, 0xA5, 0x08, 0xB3, 0x08, 0xB3, + 0x02, 0xB0, 0x08, 0xB7, 0x08, 0xB9, 0x02, 0xB1, 0x08, 0xBD, 0x08, 0xBD, + 0x02, 0xB4, 0x08, 0xC0, 0x08, 0xC0, 0x02, 0xB5, 0x08, 0xC3, 0x08, 0xC4, + 0x02, 0xB6, 0x08, 0xC7, 0x08, 0xC9, 0x02, 0xB8, 0x08, 0xE9, 0x08, 0xE9, + 0x02, 0xBB, 0x09, 0x22, 0x09, 0x22, 0x02, 0xBC, 0x09, 0x35, 0x09, 0x36, + 0x02, 0xBD, 0x09, 0x3E, 0x09, 0x3E, 0x02, 0xBF, 0x09, 0x6D, 0x09, 0x6D, + 0x02, 0xC0, 0x09, 0x94, 0x09, 0x95, 0x02, 0xC1, 0x09, 0x97, 0x09, 0x97, + 0x02, 0xC3, 0x09, 0xA0, 0x09, 0xA0, 0x02, 0xC4, 0x09, 0xB8, 0x09, 0xB8, + 0x02, 0xC5, 0x09, 0xBB, 0x09, 0xBC, 0x02, 0xC6, 0x09, 0xC1, 0x09, 0xC2, + 0x02, 0xC8, 0x09, 0xC5, 0x09, 0xC5, 0x02, 0xCA, 0x09, 0xE0, 0x09, 0xE2, + 0x02, 0xCB, 0x09, 0xE7, 0x09, 0xE7, 0x02, 0xCE, 0x09, 0xEA, 0x09, 0xEA, + 0x02, 0xCF, 0x09, 0xEC, 0x09, 0xEC, 0x02, 0xD0, 0x09, 0xEF, 0x09, 0xEF, + 0x02, 0xD1, 0x09, 0xF1, 0x09, 0xF1, 0x02, 0xD2, 0x09, 0xF7, 0x09, 0xF7, + 0x02, 0xD3, 0x09, 0xFA, 0x09, 0xFA, 0x02, 0xD4, 0x09, 0xFC, 0x09, 0xFC, + 0x02, 0xD5, 0x09, 0xFF, 0x09, 0xFF, 0x02, 0xD6, 0x0A, 0x01, 0x0A, 0x01, + 0x02, 0xD7, 0x0B, 0x43, 0x0B, 0x43, 0x02, 0xD8, 0x00, 0x02, 0x00, 0x85, + 0x00, 0x02, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x41, 0x00, 0x48, 0x00, 0x3B, + 0x00, 0x54, 0x00, 0x5C, 0x00, 0x43, 0x00, 0x5F, 0x00, 0xAD, 0x00, 0x4C, + 0x00, 0xAF, 0x00, 0xC5, 0x00, 0x9B, 0x00, 0xC7, 0x01, 0x09, 0x00, 0xB2, + 0x01, 0x0F, 0x01, 0x14, 0x00, 0xF5, 0x01, 0x18, 0x01, 0x76, 0x00, 0xFB, + 0x01, 0x7E, 0x01, 0x7E, 0x01, 0x5A, 0x01, 0x80, 0x01, 0x8A, 0x01, 0x5B, + 0x01, 0x8C, 0x01, 0x99, 0x01, 0x66, 0x01, 0x9B, 0x01, 0xA2, 0x01, 0x74, + 0x01, 0xA5, 0x01, 0xD8, 0x01, 0x7C, 0x01, 0xDA, 0x01, 0xF9, 0x01, 0xB0, + 0x01, 0xFB, 0x02, 0x1E, 0x01, 0xD0, 0x02, 0x23, 0x02, 0x48, 0x01, 0xF4, + 0x02, 0x4A, 0x02, 0x54, 0x02, 0x1A, 0x02, 0x58, 0x02, 0x58, 0x02, 0x25, + 0x02, 0x61, 0x02, 0x61, 0x02, 0x26, 0x02, 0x63, 0x02, 0x63, 0x02, 0x27, + 0x02, 0x66, 0x02, 0x85, 0x02, 0x28, 0x02, 0x87, 0x02, 0x8B, 0x02, 0x48, + 0x02, 0x8D, 0x02, 0x90, 0x02, 0x4D, 0x02, 0x92, 0x02, 0xA3, 0x02, 0x51, + 0x02, 0xA5, 0x02, 0xA5, 0x02, 0x63, 0x02, 0xA8, 0x02, 0xB2, 0x02, 0x64, + 0x02, 0xB4, 0x02, 0xC7, 0x02, 0x6F, 0x02, 0xCB, 0x02, 0xCE, 0x02, 0x83, + 0x02, 0xD0, 0x02, 0xD1, 0x02, 0x87, 0x02, 0xD6, 0x02, 0xE4, 0x02, 0x89, + 0x02, 0xE6, 0x02, 0xFC, 0x02, 0x98, 0x02, 0xFE, 0x03, 0x47, 0x02, 0xAF, + 0x03, 0x4B, 0x03, 0x58, 0x02, 0xF9, 0x03, 0x5B, 0x03, 0x64, 0x03, 0x07, + 0x03, 0x67, 0x03, 0x75, 0x03, 0x11, 0x03, 0x78, 0x03, 0x79, 0x03, 0x20, + 0x03, 0x7D, 0x03, 0x94, 0x03, 0x22, 0x03, 0x96, 0x03, 0xE2, 0x03, 0x3A, + 0x03, 0xE4, 0x03, 0xF6, 0x03, 0x87, 0x03, 0xFA, 0x03, 0xFA, 0x03, 0x9A, + 0x03, 0xFC, 0x03, 0xFD, 0x03, 0x9B, 0x04, 0x00, 0x04, 0x06, 0x03, 0x9D, + 0x04, 0x0A, 0x04, 0x0A, 0x03, 0xA4, 0x04, 0x10, 0x04, 0x24, 0x03, 0xA5, + 0x04, 0x34, 0x04, 0x35, 0x03, 0xBA, 0x04, 0x3F, 0x04, 0x3F, 0x03, 0xBC, + 0x04, 0x43, 0x04, 0x43, 0x03, 0xBD, 0x04, 0x47, 0x04, 0x47, 0x03, 0xBE, + 0x04, 0x49, 0x04, 0x49, 0x03, 0xBF, 0x04, 0x4C, 0x04, 0x4C, 0x03, 0xC0, + 0x04, 0x4F, 0x04, 0x4F, 0x03, 0xC1, 0x04, 0x52, 0x04, 0x52, 0x03, 0xC2, + 0x04, 0x54, 0x04, 0x6D, 0x03, 0xC3, 0x04, 0x80, 0x04, 0x97, 0x03, 0xDD, + 0x04, 0xB5, 0x04, 0xC6, 0x03, 0xF5, 0x04, 0xCA, 0x04, 0xE1, 0x04, 0x07, + 0x04, 0xF3, 0x04, 0xFC, 0x04, 0x1F, 0x05, 0x01, 0x05, 0x01, 0x04, 0x29, + 0x05, 0x0B, 0x05, 0x0B, 0x04, 0x2A, 0x05, 0x0E, 0x05, 0x0E, 0x04, 0x2B, + 0x05, 0x11, 0x05, 0x11, 0x04, 0x2C, 0x05, 0x18, 0x05, 0x18, 0x04, 0x2D, + 0x05, 0x1B, 0x05, 0x1C, 0x04, 0x2E, 0x05, 0x25, 0x05, 0x25, 0x04, 0x30, + 0x05, 0x2A, 0x05, 0x2A, 0x04, 0x31, 0x05, 0x2C, 0x05, 0x2D, 0x04, 0x32, + 0x05, 0x31, 0x05, 0x31, 0x04, 0x34, 0x05, 0x38, 0x05, 0x3A, 0x04, 0x35, + 0x06, 0x16, 0x06, 0x17, 0x04, 0x38, 0x06, 0x25, 0x06, 0x3E, 0x04, 0x3A, + 0x06, 0x56, 0x06, 0x5E, 0x04, 0x54, 0x06, 0x60, 0x06, 0x6F, 0x04, 0x5D, + 0x07, 0x01, 0x07, 0x04, 0x04, 0x6D, 0x07, 0x54, 0x07, 0x54, 0x04, 0x71, + 0x07, 0x6D, 0x07, 0x6E, 0x04, 0x72, 0x07, 0x70, 0x07, 0x75, 0x04, 0x74, + 0x07, 0x77, 0x07, 0x7B, 0x04, 0x7A, 0x07, 0x7D, 0x07, 0x86, 0x04, 0x7F, + 0x07, 0xAA, 0x07, 0xAB, 0x04, 0x89, 0x07, 0xAD, 0x07, 0xB3, 0x04, 0x8B, + 0x07, 0xB5, 0x07, 0xB9, 0x04, 0x92, 0x07, 0xBB, 0x07, 0xC4, 0x04, 0x97, + 0x07, 0xE8, 0x07, 0xF6, 0x04, 0xA1, 0x08, 0x03, 0x08, 0x0A, 0x04, 0xB0, + 0x08, 0x0C, 0x08, 0x28, 0x04, 0xB8, 0x08, 0x2A, 0x08, 0x54, 0x04, 0xD5, + 0x08, 0x57, 0x08, 0x64, 0x05, 0x00, 0x08, 0x67, 0x08, 0xAF, 0x05, 0x0E, + 0x08, 0xB2, 0x08, 0xB4, 0x05, 0x57, 0x08, 0xB7, 0x08, 0xB9, 0x05, 0x5A, + 0x08, 0xBD, 0x08, 0xBD, 0x05, 0x5D, 0x08, 0xC0, 0x08, 0xC0, 0x05, 0x5E, + 0x08, 0xC3, 0x08, 0xC4, 0x05, 0x5F, 0x08, 0xC7, 0x08, 0xC9, 0x05, 0x61, + 0x08, 0xE9, 0x08, 0xEA, 0x05, 0x64, 0x08, 0xFE, 0x09, 0x0C, 0x05, 0x66, + 0x09, 0x18, 0x09, 0x18, 0x05, 0x75, 0x09, 0x1A, 0x09, 0x1A, 0x05, 0x76, + 0x09, 0x22, 0x09, 0x25, 0x05, 0x77, 0x09, 0x27, 0x09, 0x27, 0x05, 0x7B, + 0x09, 0x35, 0x09, 0x36, 0x05, 0x7C, 0x09, 0x3E, 0x09, 0x3E, 0x05, 0x7E, + 0x09, 0x47, 0x09, 0x47, 0x05, 0x7F, 0x09, 0x59, 0x09, 0x59, 0x05, 0x80, + 0x09, 0x6D, 0x09, 0x6F, 0x05, 0x81, 0x09, 0x83, 0x09, 0x83, 0x05, 0x84, + 0x09, 0x85, 0x09, 0x85, 0x05, 0x85, 0x09, 0x93, 0x09, 0x95, 0x05, 0x86, + 0x09, 0x97, 0x09, 0x97, 0x05, 0x89, 0x09, 0x99, 0x09, 0x99, 0x05, 0x8A, + 0x09, 0x9B, 0x09, 0x9B, 0x05, 0x8B, 0x09, 0x9E, 0x09, 0x9E, 0x05, 0x8C, + 0x09, 0xA0, 0x09, 0xA2, 0x05, 0x8D, 0x09, 0xB4, 0x09, 0xB4, 0x05, 0x90, + 0x09, 0xB8, 0x09, 0xB8, 0x05, 0x91, 0x09, 0xBB, 0x09, 0xBC, 0x05, 0x92, + 0x09, 0xC1, 0x09, 0xC2, 0x05, 0x94, 0x09, 0xC5, 0x09, 0xC6, 0x05, 0x96, + 0x09, 0xCF, 0x09, 0xD2, 0x05, 0x98, 0x09, 0xD7, 0x09, 0xD7, 0x05, 0x9C, + 0x09, 0xDB, 0x09, 0xDB, 0x05, 0x9D, 0x09, 0xDD, 0x09, 0xDD, 0x05, 0x9E, + 0x09, 0xE0, 0x09, 0xE3, 0x05, 0x9F, 0x09, 0xE7, 0x09, 0xE7, 0x05, 0xA3, + 0x09, 0xEB, 0x09, 0xEB, 0x05, 0xA4, 0x09, 0xF0, 0x09, 0xF0, 0x05, 0xA5, + 0x09, 0xF3, 0x09, 0xF3, 0x05, 0xA6, 0x09, 0xF5, 0x09, 0xF7, 0x05, 0xA7, + 0x09, 0xFB, 0x09, 0xFB, 0x05, 0xAA, 0x0A, 0x00, 0x0A, 0x00, 0x05, 0xAB, + 0x0A, 0x03, 0x0A, 0x04, 0x05, 0xAC, 0x0A, 0x06, 0x0A, 0x06, 0x05, 0xAE, + 0x0B, 0x43, 0x0B, 0x43, 0x05, 0xAF, 0x00, 0x02, 0x00, 0x91, 0x00, 0x02, + 0x00, 0x5C, 0x00, 0x00, 0x00, 0x5F, 0x00, 0xAD, 0x00, 0x5B, 0x00, 0xAF, + 0x01, 0x16, 0x00, 0xAA, 0x01, 0x18, 0x01, 0x7E, 0x01, 0x12, 0x01, 0x80, + 0x01, 0x8A, 0x01, 0x79, 0x01, 0x8C, 0x01, 0x99, 0x01, 0x84, 0x01, 0x9B, + 0x01, 0xD8, 0x01, 0x92, 0x01, 0xDA, 0x01, 0xF9, 0x01, 0xD0, 0x01, 0xFB, + 0x02, 0x48, 0x01, 0xF0, 0x02, 0x4A, 0x02, 0x60, 0x02, 0x3E, 0x02, 0x62, + 0x02, 0x62, 0x02, 0x55, 0x02, 0x64, 0x02, 0x85, 0x02, 0x56, 0x02, 0x87, + 0x02, 0x8B, 0x02, 0x78, 0x02, 0x8D, 0x02, 0x90, 0x02, 0x7D, 0x02, 0x92, + 0x02, 0xA3, 0x02, 0x81, 0x02, 0xA5, 0x02, 0xA5, 0x02, 0x93, 0x02, 0xA8, + 0x02, 0xC7, 0x02, 0x94, 0x02, 0xCB, 0x02, 0xCE, 0x02, 0xB4, 0x02, 0xD0, + 0x02, 0xD1, 0x02, 0xB8, 0x02, 0xD6, 0x02, 0xE4, 0x02, 0xBA, 0x02, 0xE6, + 0x02, 0xFC, 0x02, 0xC9, 0x02, 0xFE, 0x03, 0x47, 0x02, 0xE0, 0x03, 0x4B, + 0x03, 0x58, 0x03, 0x2A, 0x03, 0x5B, 0x03, 0x64, 0x03, 0x38, 0x03, 0x67, + 0x03, 0x75, 0x03, 0x42, 0x03, 0x78, 0x03, 0x79, 0x03, 0x51, 0x03, 0x7D, + 0x03, 0x94, 0x03, 0x53, 0x03, 0x96, 0x03, 0xE2, 0x03, 0x6B, 0x03, 0xE4, + 0x03, 0xFA, 0x03, 0xB8, 0x03, 0xFC, 0x03, 0xFD, 0x03, 0xCF, 0x04, 0x00, + 0x04, 0x06, 0x03, 0xD1, 0x04, 0x08, 0x04, 0x08, 0x03, 0xD8, 0x04, 0x0A, + 0x04, 0x0A, 0x03, 0xD9, 0x04, 0x10, 0x04, 0x24, 0x03, 0xDA, 0x04, 0x26, + 0x04, 0x28, 0x03, 0xEF, 0x04, 0x2B, 0x04, 0x2C, 0x03, 0xF2, 0x04, 0x2E, + 0x04, 0x31, 0x03, 0xF4, 0x04, 0x34, 0x04, 0x37, 0x03, 0xF8, 0x04, 0x39, + 0x04, 0x41, 0x03, 0xFC, 0x04, 0x43, 0x04, 0x43, 0x04, 0x05, 0x04, 0x47, + 0x04, 0x47, 0x04, 0x06, 0x04, 0x49, 0x04, 0x4A, 0x04, 0x07, 0x04, 0x4C, + 0x04, 0x4C, 0x04, 0x09, 0x04, 0x4F, 0x04, 0x52, 0x04, 0x0A, 0x04, 0x54, + 0x04, 0x6D, 0x04, 0x0E, 0x04, 0x71, 0x04, 0x72, 0x04, 0x28, 0x04, 0x74, + 0x04, 0x75, 0x04, 0x2A, 0x04, 0x77, 0x04, 0x7E, 0x04, 0x2C, 0x04, 0x80, + 0x04, 0x97, 0x04, 0x34, 0x04, 0x99, 0x04, 0xAA, 0x04, 0x4C, 0x04, 0xAE, + 0x04, 0xB1, 0x04, 0x5E, 0x04, 0xB5, 0x04, 0xC6, 0x04, 0x62, 0x04, 0xCA, + 0x04, 0xE1, 0x04, 0x74, 0x04, 0xE5, 0x04, 0xE7, 0x04, 0x8C, 0x04, 0xE9, + 0x04, 0xEE, 0x04, 0x8F, 0x04, 0xF0, 0x04, 0xF0, 0x04, 0x95, 0x04, 0xF2, + 0x04, 0xFC, 0x04, 0x96, 0x04, 0xFE, 0x04, 0xFE, 0x04, 0xA1, 0x05, 0x01, + 0x05, 0x01, 0x04, 0xA2, 0x05, 0x04, 0x05, 0x08, 0x04, 0xA3, 0x05, 0x0B, + 0x05, 0x0B, 0x04, 0xA8, 0x05, 0x0E, 0x05, 0x0E, 0x04, 0xA9, 0x05, 0x10, + 0x05, 0x11, 0x04, 0xAA, 0x05, 0x13, 0x05, 0x13, 0x04, 0xAC, 0x05, 0x15, + 0x05, 0x15, 0x04, 0xAD, 0x05, 0x18, 0x05, 0x1C, 0x04, 0xAE, 0x05, 0x2A, + 0x05, 0x2A, 0x04, 0xB3, 0x05, 0x2C, 0x05, 0x2F, 0x04, 0xB4, 0x05, 0x31, + 0x05, 0x31, 0x04, 0xB8, 0x05, 0x38, 0x05, 0x3B, 0x04, 0xB9, 0x05, 0x3D, + 0x05, 0x3F, 0x04, 0xBD, 0x05, 0x47, 0x05, 0x47, 0x04, 0xC0, 0x05, 0x49, + 0x05, 0x49, 0x04, 0xC1, 0x05, 0x4D, 0x05, 0x4D, 0x04, 0xC2, 0x05, 0x4F, + 0x05, 0x50, 0x04, 0xC3, 0x05, 0x57, 0x05, 0x57, 0x04, 0xC5, 0x05, 0x59, + 0x05, 0x59, 0x04, 0xC6, 0x06, 0x16, 0x06, 0x17, 0x04, 0xC7, 0x06, 0x25, + 0x06, 0x40, 0x04, 0xC9, 0x06, 0x43, 0x06, 0x45, 0x04, 0xE5, 0x06, 0x56, + 0x06, 0x5E, 0x04, 0xE8, 0x06, 0x60, 0x06, 0x71, 0x04, 0xF1, 0x06, 0x74, + 0x06, 0x76, 0x05, 0x03, 0x06, 0x88, 0x06, 0x89, 0x05, 0x06, 0x06, 0x8C, + 0x06, 0x8E, 0x05, 0x08, 0x06, 0xA1, 0x06, 0xA2, 0x05, 0x0B, 0x06, 0xA5, + 0x06, 0xA7, 0x05, 0x0D, 0x06, 0xBB, 0x06, 0xBB, 0x05, 0x10, 0x06, 0xBD, + 0x06, 0xBD, 0x05, 0x11, 0x06, 0xC0, 0x06, 0xC0, 0x05, 0x12, 0x06, 0xC2, + 0x06, 0xC3, 0x05, 0x13, 0x06, 0xC9, 0x06, 0xC9, 0x05, 0x15, 0x06, 0xCD, + 0x06, 0xCD, 0x05, 0x16, 0x06, 0xDB, 0x06, 0xDB, 0x05, 0x17, 0x07, 0x00, + 0x07, 0x04, 0x05, 0x18, 0x07, 0x54, 0x07, 0x54, 0x05, 0x1D, 0x07, 0x6D, + 0x07, 0x87, 0x05, 0x1E, 0x07, 0x89, 0x07, 0x8A, 0x05, 0x39, 0x07, 0x91, + 0x07, 0x91, 0x05, 0x3B, 0x07, 0x93, 0x07, 0x93, 0x05, 0x3C, 0x07, 0xAA, + 0x07, 0xC5, 0x05, 0x3D, 0x07, 0xC7, 0x07, 0xC8, 0x05, 0x59, 0x07, 0xCF, + 0x07, 0xCF, 0x05, 0x5B, 0x07, 0xD1, 0x07, 0xD1, 0x05, 0x5C, 0x07, 0xE8, + 0x07, 0xF6, 0x05, 0x5D, 0x08, 0x03, 0x08, 0x64, 0x05, 0x6C, 0x08, 0x67, + 0x08, 0xC9, 0x05, 0xCE, 0x08, 0xDC, 0x08, 0xDC, 0x06, 0x31, 0x08, 0xE8, + 0x08, 0xEA, 0x06, 0x32, 0x08, 0xFE, 0x09, 0x0C, 0x06, 0x35, 0x09, 0x18, + 0x09, 0x18, 0x06, 0x44, 0x09, 0x1A, 0x09, 0x1B, 0x06, 0x45, 0x09, 0x1E, + 0x09, 0x20, 0x06, 0x47, 0x09, 0x24, 0x09, 0x24, 0x06, 0x4A, 0x09, 0x27, + 0x09, 0x27, 0x06, 0x4B, 0x09, 0x35, 0x09, 0x36, 0x06, 0x4C, 0x09, 0x3E, + 0x09, 0x3E, 0x06, 0x4E, 0x09, 0x40, 0x09, 0x41, 0x06, 0x4F, 0x09, 0x43, + 0x09, 0x43, 0x06, 0x51, 0x09, 0x47, 0x09, 0x47, 0x06, 0x52, 0x09, 0x59, + 0x09, 0x59, 0x06, 0x53, 0x09, 0x6D, 0x09, 0x70, 0x06, 0x54, 0x09, 0x7B, + 0x09, 0x7F, 0x06, 0x58, 0x09, 0x81, 0x09, 0x85, 0x06, 0x5D, 0x09, 0x8F, + 0x09, 0x8F, 0x06, 0x62, 0x09, 0x91, 0x09, 0x95, 0x06, 0x63, 0x09, 0x97, + 0x09, 0xA2, 0x06, 0x68, 0x09, 0xA4, 0x09, 0xA9, 0x06, 0x74, 0x09, 0xB2, + 0x09, 0xB5, 0x06, 0x7A, 0x09, 0xB8, 0x09, 0xC6, 0x06, 0x7E, 0x09, 0xCA, + 0x09, 0xCC, 0x06, 0x8D, 0x09, 0xCF, 0x09, 0xD2, 0x06, 0x90, 0x09, 0xD7, + 0x09, 0xD7, 0x06, 0x94, 0x09, 0xDB, 0x09, 0xE3, 0x06, 0x95, 0x09, 0xE7, + 0x09, 0xE7, 0x06, 0x9E, 0x09, 0xEB, 0x09, 0xEB, 0x06, 0x9F, 0x09, 0xF0, + 0x09, 0xF0, 0x06, 0xA0, 0x09, 0xF3, 0x09, 0xF7, 0x06, 0xA1, 0x09, 0xFB, + 0x09, 0xFB, 0x06, 0xA6, 0x0A, 0x00, 0x0A, 0x00, 0x06, 0xA7, 0x0A, 0x03, + 0x0A, 0x06, 0x06, 0xA8, 0x0A, 0xF8, 0x0A, 0xF8, 0x06, 0xAC, 0x0B, 0x43, + 0x0B, 0x43, 0x06, 0xAD, 0x0B, 0x49, 0x0B, 0x49, 0x06, 0xAE, 0x0B, 0x55, + 0x0B, 0x56, 0x06, 0xAF, 0x02, 0xD9, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x29, 0x9C, 0x29, 0xA2, 0x29, 0xA8, 0x29, 0xAE, 0x29, 0xB4, 0x29, 0xBA, + 0x29, 0xC0, 0x29, 0xC6, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x29, 0xA2, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x29, 0x9C, 0x29, 0xA2, + 0x29, 0xA8, 0x29, 0xAE, 0x29, 0xB4, 0x29, 0xBA, 0x29, 0xC0, 0x29, 0xC6, + 0x2B, 0x88, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x29, 0xCC, 0x2B, 0xAC, + 0x29, 0xF6, 0x29, 0xD2, 0x29, 0xD8, 0x29, 0xDE, 0x28, 0xE2, 0x29, 0xE4, + 0x29, 0xEA, 0x29, 0xF0, 0x29, 0xF6, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, + 0x2B, 0xAC, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x29, 0xFC, 0x2C, 0x06, + 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, + 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, + 0x2C, 0x06, 0x2C, 0x06, 0x2A, 0x26, 0x2C, 0x06, 0x2A, 0x02, 0x2C, 0x48, + 0x2A, 0x08, 0x2A, 0x0E, 0x2C, 0x2A, 0x2A, 0x14, 0x2C, 0x30, 0x2A, 0x1A, + 0x2C, 0x06, 0x2C, 0x06, 0x2A, 0x20, 0x2A, 0x26, 0x2C, 0x06, 0x2C, 0x06, + 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, + 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, + 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, + 0x2A, 0x2C, 0x2C, 0x36, 0x2C, 0x24, 0x2A, 0x32, 0x2A, 0x38, 0x2B, 0x88, + 0x2A, 0x3E, 0x2A, 0x44, 0x2B, 0xB8, 0x2B, 0xB8, 0x2A, 0x4A, 0x2A, 0x50, + 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2A, 0x7A, 0x2A, 0x56, + 0x2A, 0x5C, 0x2A, 0x62, 0x2A, 0x68, 0x2A, 0x6E, 0x2A, 0x74, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2A, 0x7A, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2A, 0x80, 0x2B, 0xB2, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2A, 0x86, 0x2B, 0xD6, + 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, + 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, 0x2A, 0x9E, + 0x2B, 0xD6, 0x2A, 0x8C, 0x2A, 0x92, 0x2A, 0x98, 0x2C, 0x3C, 0x2B, 0xD6, + 0x2B, 0xD6, 0x2C, 0x1E, 0x2A, 0x9E, 0x2B, 0xD6, 0x2B, 0x94, 0x2B, 0x94, + 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, + 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, + 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, + 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, + 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, + 0x2A, 0xA4, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0xC4, 0x2B, 0xC4, + 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, + 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, + 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, + 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, + 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2B, 0xE8, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x2C, 0x18, 0x2C, 0x18, 0x2A, 0xAA, 0x2B, 0xBE, 0x2B, 0xBE, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xC4, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, + 0x2A, 0xB0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, + 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, + 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, + 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, + 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2A, 0xB6, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, 0x2A, 0xBC, 0x2B, 0xA6, 0x2B, 0xA6, + 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, + 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, 0x2B, 0xA6, + 0x2A, 0xC2, 0x2B, 0xA6, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xDC, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xEE, + 0x2A, 0xC8, 0x2B, 0xE2, 0x2A, 0xCE, 0x2A, 0xD4, 0x2A, 0xDA, 0x2A, 0xE0, + 0x2A, 0xE6, 0x2A, 0xEC, 0x2A, 0xF2, 0x2A, 0xF8, 0x2A, 0xFE, 0x2B, 0x04, + 0x2B, 0x0A, 0x2B, 0x10, 0x2B, 0x16, 0x2B, 0x1C, 0x2B, 0x22, 0x2B, 0x28, + 0x2B, 0x2E, 0x2B, 0x34, 0x2B, 0x34, 0x2B, 0x88, 0x2B, 0xB2, 0x2B, 0x3A, + 0x2B, 0x40, 0x2B, 0x46, 0x2B, 0x5E, 0x2B, 0x4C, 0x2B, 0x52, 0x2B, 0x58, + 0x2B, 0x5E, 0x2B, 0x64, 0x2B, 0x6A, 0x2B, 0x82, 0x2B, 0x70, 0x2B, 0x76, + 0x2B, 0x7C, 0x2B, 0x82, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0x88, + 0x2B, 0x88, 0x2B, 0x88, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, 0x2B, 0xAC, + 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, 0x2B, 0xB2, 0x2B, 0xB2, + 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0xB2, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0x8E, + 0x2B, 0x8E, 0x2B, 0x8E, 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xD6, 0x2B, 0xB8, + 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0xB8, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, + 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x94, 0x2B, 0x9A, 0x2B, 0x9A, 0x2B, 0x9A, + 0x2B, 0x9A, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x2B, 0xF4, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, + 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA0, 0x2B, 0xA6, 0x2B, 0xA6, + 0x2B, 0xA6, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, 0x2B, 0xC4, + 0x2B, 0xC4, 0x2C, 0x18, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xAC, + 0x2C, 0x06, 0x2B, 0xB2, 0x2B, 0xDC, 0x2B, 0xB8, 0x2B, 0xE8, 0x2B, 0xF4, + 0x2B, 0xEE, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, 0x2B, 0xFA, + 0x2B, 0xBE, 0x2C, 0x06, 0x2B, 0xC4, 0x2B, 0xCA, 0x2B, 0xE8, 0x2B, 0xD0, + 0x2B, 0xD6, 0x2B, 0xD6, 0x2C, 0x06, 0x2B, 0xDC, 0x2B, 0xE2, 0x2B, 0xE8, + 0x2B, 0xE8, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xEE, 0x2B, 0xF4, 0x2B, 0xFA, + 0x2B, 0xFA, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x00, 0x2C, 0x06, 0x2C, 0x0C, + 0x2C, 0x42, 0x2C, 0x18, 0x2C, 0x12, 0x2C, 0x18, 0x28, 0xE8, 0x2C, 0x18, + 0x05, 0xB0, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, + 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, + 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, + 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, + 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, + 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x26, 0x9A, 0x2B, 0x26, + 0x26, 0xA0, 0x26, 0xA6, 0x26, 0xAC, 0x26, 0xB2, 0x26, 0xB8, 0x23, 0x3A, + 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2B, 0x1A, 0x2A, 0x2A, + 0x2A, 0x2A, 0x2A, 0x2A, 0x26, 0x9A, 0x2B, 0x26, 0x26, 0xA0, 0x26, 0xA6, + 0x26, 0xAC, 0x26, 0xB2, 0x26, 0xB8, 0x23, 0x3A, 0x2A, 0x2A, 0x2A, 0x2A, + 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, 0x26, 0xBE, 0x26, 0xC4, + 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x62, 0x26, 0xCA, 0x2B, 0x62, 0x2B, 0x62, + 0x2B, 0x62, 0x2B, 0x62, 0x2B, 0x62, 0x2B, 0x62, 0x2A, 0xD2, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2B, 0x5C, 0x2A, 0x84, 0x26, 0xF4, 0x26, 0x6A, + 0x26, 0xD0, 0x26, 0xD6, 0x26, 0xDC, 0x26, 0xE2, 0x26, 0xE8, 0x26, 0xEE, + 0x26, 0xF4, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x23, 0xD6, + 0x23, 0xD6, 0x23, 0xD6, 0x26, 0xFA, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, 0x2A, 0x9C, + 0x2A, 0x9C, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, + 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0xA2, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x27, 0x00, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, 0x2A, 0x30, + 0x2A, 0x30, 0x27, 0x0C, 0x27, 0x12, 0x27, 0x18, 0x27, 0x1E, 0x27, 0x24, + 0x26, 0x70, 0x27, 0x2A, 0x27, 0x30, 0x27, 0x36, 0x27, 0x06, 0x27, 0x0C, + 0x2A, 0x30, 0x27, 0x12, 0x27, 0x18, 0x27, 0x1E, 0x27, 0x24, 0x26, 0x70, + 0x27, 0x2A, 0x27, 0x30, 0x27, 0x36, 0x2A, 0x30, 0x23, 0xD6, 0x23, 0xD6, + 0x23, 0xD6, 0x27, 0x3C, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, + 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, + 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, 0x2A, 0xC0, 0x23, 0xD6, + 0x23, 0x52, 0x23, 0xD6, 0x27, 0x42, 0x23, 0xD0, 0x23, 0x3A, 0x23, 0x40, + 0x27, 0x48, 0x27, 0x4E, 0x23, 0x46, 0x27, 0x54, 0x23, 0xD6, 0x23, 0xD6, + 0x23, 0x4C, 0x23, 0x52, 0x23, 0xD6, 0x23, 0xD6, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x23, 0x58, 0x27, 0x5A, + 0x27, 0x60, 0x27, 0x66, 0x27, 0x6C, 0x27, 0x72, 0x27, 0x78, 0x27, 0x7E, + 0x2A, 0x90, 0x2A, 0x90, 0x27, 0x84, 0x27, 0x8A, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0xA8, 0x2A, 0xA8, 0x2A, 0xA8, 0x2A, 0xA8, 0x2A, 0xA8, 0x2A, 0xA8, + 0x2A, 0xA8, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, + 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x28, 0x50, 0x2A, 0xAE, 0x2B, 0x5C, + 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, 0x2B, 0x68, + 0x2B, 0x68, 0x2B, 0x68, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, + 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0xDE, + 0x2A, 0xDE, 0x2A, 0xDE, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, + 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0x8A, 0x2A, 0xDE, 0x2A, 0xDE, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x27, 0xAE, 0x26, 0x76, 0x27, 0x90, 0x27, 0x96, 0x27, 0x9C, + 0x27, 0xA2, 0x27, 0xA8, 0x2B, 0x02, 0x2B, 0x02, 0x27, 0xAE, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x27, 0xB4, 0x2B, 0x02, + 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, + 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x27, 0xBA, 0x2A, 0xA8, + 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, + 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, + 0x23, 0x5E, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, + 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x08, + 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, + 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, + 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, + 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, + 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, + 0x2A, 0x36, 0x27, 0xC0, 0x26, 0x94, 0x26, 0x94, 0x26, 0x94, 0x2A, 0x3C, + 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, + 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x56, + 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, + 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, + 0x27, 0xDE, 0x2B, 0x0E, 0x27, 0xC6, 0x27, 0xCC, 0x23, 0xAC, 0x27, 0xD2, + 0x2B, 0x0E, 0x2B, 0x0E, 0x27, 0xD8, 0x27, 0xDE, 0x2B, 0x0E, 0x2A, 0x42, + 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, + 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x42, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x27, 0xE4, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, + 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, + 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, + 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, + 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, + 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0x4E, 0x2A, 0x4E, + 0x2A, 0x4E, 0x27, 0xEA, 0x2A, 0x4E, 0x2A, 0x4E, 0x2A, 0x4E, 0x23, 0xDC, + 0x23, 0xDC, 0x23, 0xDC, 0x23, 0xDC, 0x23, 0xDC, 0x23, 0xDC, 0x23, 0xDC, + 0x23, 0xDC, 0x23, 0xDC, 0x23, 0xDC, 0x23, 0xDC, 0x2A, 0xE4, 0x27, 0xF0, + 0x27, 0xF0, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, + 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, + 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, + 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, + 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, + 0x2A, 0x54, 0x2A, 0x54, 0x2B, 0x2C, 0x2A, 0x5A, 0x23, 0xE2, 0x27, 0xF6, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x27, 0xFC, 0x23, 0xE2, 0x2A, 0x5A, + 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, + 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x2A, 0xF0, 0x28, 0x02, 0x28, 0x02, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x2A, 0xC6, 0x2A, 0xC6, + 0x22, 0x3E, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xE2, 0x23, 0xE2, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x2A, 0x60, + 0x2A, 0x60, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, + 0x23, 0xE2, 0x28, 0x08, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x28, 0x0E, + 0x2A, 0x96, 0x2A, 0x96, 0x2B, 0x80, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, + 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x2A, 0xBA, 0x28, 0x14, 0x2A, 0xBA, + 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, + 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, + 0x2B, 0x80, 0x2B, 0x80, 0x2A, 0xC0, 0x28, 0x1A, 0x28, 0x20, 0x28, 0x26, + 0x23, 0x64, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, + 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x2B, 0x80, 0x2B, 0x86, 0x2B, 0x86, + 0x23, 0x6A, 0x23, 0x6A, 0x2B, 0x86, 0x2B, 0x86, 0x2B, 0x86, 0x2A, 0xC6, + 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x23, 0xE2, + 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, + 0x2A, 0xC6, 0x2A, 0xC6, 0x2A, 0xC6, 0x28, 0x2C, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x2A, 0x66, 0x28, 0x32, 0x2A, 0x66, 0x2A, 0x66, 0x2A, 0x66, 0x2A, 0x66, + 0x28, 0x38, 0x28, 0x38, 0x2A, 0xE4, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, + 0x28, 0x3E, 0x28, 0x3E, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, + 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x2A, 0xCC, 0x2A, 0xCC, 0x28, 0x44, + 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, + 0x2A, 0xCC, 0x2A, 0xCC, 0x2A, 0xCC, 0x26, 0x8E, 0x26, 0x8E, 0x26, 0x8E, + 0x26, 0x8E, 0x26, 0x8E, 0x26, 0x8E, 0x26, 0x8E, 0x26, 0x8E, 0x26, 0x8E, + 0x26, 0x8E, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x28, 0x4A, + 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, + 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, + 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, + 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, + 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x23, 0xD0, 0x23, 0xD0, 0x28, 0x50, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x2A, 0x6C, + 0x2A, 0x6C, 0x2A, 0x6C, 0x2A, 0x6C, 0x2A, 0x72, 0x2A, 0x72, 0x28, 0x56, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, + 0x2B, 0x38, 0x2B, 0x38, 0x2B, 0x38, 0x2B, 0x38, 0x2A, 0x78, 0x2A, 0x78, + 0x2A, 0x78, 0x26, 0x7C, 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, + 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, + 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x78, 0x28, 0x5C, 0x2A, 0x78, + 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, + 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0x7E, 0x2B, 0x02, 0x28, 0x9E, 0x28, 0x62, + 0x28, 0x62, 0x28, 0x6E, 0x28, 0x74, 0x28, 0x7A, 0x28, 0x80, 0x28, 0x86, + 0x28, 0x8C, 0x28, 0x92, 0x28, 0x98, 0x28, 0x68, 0x28, 0x6E, 0x28, 0x74, + 0x28, 0x7A, 0x28, 0x80, 0x28, 0x86, 0x28, 0x8C, 0x28, 0x92, 0x28, 0x98, + 0x28, 0x9E, 0x2B, 0x14, 0x2B, 0x02, 0x29, 0xC4, 0x23, 0xBE, 0x2B, 0x20, + 0x23, 0x70, 0x28, 0xA4, 0x2B, 0x1A, 0x2B, 0x08, 0x2B, 0x4A, 0x2B, 0x4A, + 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, + 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, + 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, + 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, 0x2B, 0x4A, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, + 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, + 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, + 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, 0x2B, 0x50, + 0x23, 0xDC, 0x23, 0xDC, 0x23, 0xDC, 0x2B, 0x02, 0x2B, 0x02, 0x2A, 0xFC, + 0x2A, 0xFC, 0x2A, 0xFC, 0x2A, 0xFC, 0x2A, 0xFC, 0x2B, 0x38, 0x2B, 0x32, + 0x28, 0xAA, 0x26, 0x82, 0x23, 0xC4, 0x2A, 0xB4, 0x23, 0x76, 0x28, 0xB0, + 0x2A, 0x2A, 0x2A, 0x9C, 0x2A, 0x9C, 0x2B, 0x08, 0x28, 0xB6, 0x2B, 0x08, + 0x2B, 0x08, 0x28, 0xBC, 0x28, 0xC2, 0x28, 0xC8, 0x28, 0xCE, 0x23, 0x7C, + 0x28, 0xD4, 0x28, 0xF2, 0x28, 0xDA, 0x28, 0xE0, 0x28, 0xFE, 0x28, 0xE6, + 0x28, 0xEC, 0x28, 0xF2, 0x23, 0x82, 0x28, 0xF8, 0x28, 0xFE, 0x29, 0x04, + 0x29, 0x0A, 0x29, 0x10, 0x23, 0x82, 0x29, 0x16, 0x29, 0x1C, 0x29, 0x22, + 0x29, 0x28, 0x29, 0x2E, 0x29, 0x34, 0x29, 0x3A, 0x23, 0x88, 0x29, 0x40, + 0x29, 0x46, 0x23, 0x8E, 0x29, 0x4C, 0x29, 0x64, 0x29, 0x52, 0x29, 0x58, + 0x29, 0x70, 0x29, 0x5E, 0x29, 0x64, 0x23, 0x94, 0x29, 0x6A, 0x29, 0x70, + 0x29, 0x76, 0x29, 0x7C, 0x29, 0x82, 0x23, 0x94, 0x29, 0x88, 0x29, 0x8E, + 0x29, 0x94, 0x29, 0x9A, 0x29, 0xA0, 0x29, 0xA6, 0x29, 0xAC, 0x23, 0x9A, + 0x29, 0xB2, 0x2A, 0xA8, 0x2A, 0x2A, 0x2B, 0x02, 0x29, 0xB8, 0x23, 0xA0, + 0x29, 0xBE, 0x2A, 0x06, 0x29, 0xE2, 0x29, 0xC4, 0x29, 0xCA, 0x29, 0xE2, + 0x29, 0xE2, 0x29, 0xD0, 0x29, 0xD6, 0x29, 0xEE, 0x29, 0xE2, 0x29, 0xE2, + 0x29, 0xE2, 0x29, 0xDC, 0x23, 0xA6, 0x29, 0xE8, 0x29, 0xE2, 0x29, 0xE2, + 0x29, 0xE2, 0x29, 0xE2, 0x29, 0xE8, 0x29, 0xEE, 0x29, 0xF4, 0x2A, 0x06, + 0x29, 0xFA, 0x2A, 0x0C, 0x2A, 0x00, 0x23, 0xAC, 0x26, 0x88, 0x2A, 0x18, + 0x2A, 0x18, 0x2A, 0x06, 0x2A, 0x0C, 0x2A, 0x24, 0x2A, 0x18, 0x2A, 0x18, + 0x2A, 0x18, 0x2A, 0x12, 0x23, 0xB2, 0x2A, 0x1E, 0x2A, 0x18, 0x2A, 0x18, + 0x2A, 0x18, 0x2A, 0x18, 0x2A, 0x1E, 0x2A, 0x24, 0x2A, 0x9C, 0x2A, 0xA2, + 0x2A, 0xA8, 0x2B, 0x5C, 0x2A, 0xDE, 0x2A, 0xAE, 0x2A, 0xB4, 0x2A, 0xBA, + 0x2B, 0x80, 0x2A, 0xC0, 0x2A, 0xC6, 0x2B, 0x80, 0x23, 0xB8, 0x2A, 0xCC, + 0x26, 0x8E, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, + 0x2A, 0x2A, 0x2B, 0x08, 0x2B, 0x08, 0x2B, 0x62, 0x2B, 0x62, 0x2A, 0x84, + 0x2A, 0x84, 0x2A, 0x84, 0x2A, 0x84, 0x23, 0xD6, 0x2A, 0x9C, 0x2A, 0x30, + 0x2A, 0x30, 0x2A, 0x30, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, 0x23, 0xD6, + 0x2A, 0xA8, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x68, 0x2B, 0x68, 0x2A, 0xDE, + 0x2A, 0xDE, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, 0x2B, 0x02, + 0x2B, 0x02, 0x2B, 0x02, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xAE, 0x2A, 0xB4, + 0x2A, 0xB4, 0x2A, 0xB4, 0x2A, 0xB4, 0x2B, 0x08, 0x2B, 0x08, 0x2A, 0x36, + 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, 0x2A, 0x36, + 0x2A, 0x36, 0x2A, 0x36, 0x26, 0x94, 0x2A, 0x3C, 0x2A, 0x3C, 0x2A, 0x3C, + 0x2B, 0x56, 0x2B, 0x56, 0x2B, 0x0E, 0x2B, 0x0E, 0x2B, 0x0E, 0x2A, 0x42, + 0x2A, 0x42, 0x2A, 0xA2, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, 0x2A, 0x90, + 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, 0x2A, 0x48, + 0x2A, 0x4E, 0x2A, 0x4E, 0x23, 0xDC, 0x2A, 0x54, 0x2A, 0x54, 0x2A, 0x54, + 0x2A, 0x54, 0x2A, 0x5A, 0x2A, 0xF0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x23, 0xE2, 0x2A, 0x60, 0x2A, 0xBA, + 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x86, 0x2B, 0x86, 0x2A, 0xC6, + 0x2A, 0xC6, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x2A, 0x66, 0x2B, 0x80, 0x2B, 0x80, 0x2B, 0x80, + 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x23, 0xB8, 0x2A, 0xCC, + 0x2A, 0xCC, 0x2A, 0xCC, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, + 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2B, 0x5C, 0x2A, 0x6C, + 0x2A, 0x72, 0x2A, 0x72, 0x2A, 0x72, 0x2B, 0x38, 0x2B, 0x38, 0x2A, 0x78, + 0x2A, 0x78, 0x2A, 0x78, 0x2A, 0x7E, 0x2A, 0x7E, 0x2A, 0xE4, 0x2A, 0xE4, + 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x2A, 0xE4, 0x23, 0xE2, 0x23, 0xE2, + 0x2A, 0xC0, 0x2A, 0xC0, 0x2A, 0xC0, 0x26, 0x8E, 0x26, 0x8E, 0x26, 0x8E, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x2A, 0x84, 0x23, 0xD6, 0x2B, 0x1A, + 0x2A, 0x8A, 0x2B, 0x02, 0x2B, 0x20, 0x23, 0xBE, 0x2A, 0x90, 0x2B, 0x2C, + 0x23, 0xD0, 0x2B, 0x32, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, + 0x23, 0xD0, 0x2A, 0x96, 0x23, 0xE2, 0x2A, 0x9C, 0x2A, 0xA2, 0x2A, 0xA8, + 0x2B, 0x5C, 0x2A, 0xDE, 0x2A, 0xAE, 0x2A, 0xB4, 0x2A, 0xBA, 0x2B, 0x80, + 0x2A, 0xC0, 0x2A, 0xC6, 0x2B, 0x80, 0x23, 0xB8, 0x2A, 0xCC, 0x26, 0x8E, + 0x2A, 0xD2, 0x2A, 0xD2, 0x23, 0xD6, 0x2B, 0x5C, 0x2A, 0xD8, 0x2A, 0xDE, + 0x2B, 0x08, 0x2A, 0xE4, 0x2A, 0xEA, 0x2B, 0x2C, 0x2A, 0xF0, 0x2A, 0xF6, + 0x2B, 0x7A, 0x2A, 0xFC, 0x2B, 0x02, 0x2B, 0x08, 0x2B, 0x56, 0x2B, 0x08, + 0x2B, 0x0E, 0x2B, 0x0E, 0x23, 0xD6, 0x2B, 0x14, 0x2B, 0x1A, 0x2B, 0x20, + 0x23, 0xBE, 0x2B, 0x56, 0x2B, 0x26, 0x23, 0xDC, 0x23, 0xC4, 0x2B, 0x2C, + 0x2B, 0x2C, 0x23, 0xD0, 0x23, 0xD0, 0x2B, 0x32, 0x2B, 0x38, 0x2B, 0x3E, + 0x23, 0xCA, 0x23, 0xDC, 0x23, 0xCA, 0x2B, 0x44, 0x2B, 0x4A, 0x23, 0xE2, + 0x23, 0xD0, 0x23, 0xD0, 0x23, 0xD0, 0x2B, 0x50, 0x23, 0xD6, 0x26, 0x94, + 0x2B, 0x56, 0x2B, 0x5C, 0x2B, 0x62, 0x2B, 0x68, 0x2B, 0x6E, 0x2B, 0x74, + 0x2B, 0x7A, 0x2B, 0x80, 0x23, 0xDC, 0x2B, 0x86, 0x23, 0xE2, 0x06, 0xB1, + 0x29, 0xD8, 0x20, 0x60, 0x20, 0x2A, 0x29, 0xCC, 0x29, 0xCC, 0x29, 0xCC, + 0x29, 0xD8, 0x29, 0xD8, 0x29, 0xD8, 0x20, 0x5A, 0x29, 0xCC, 0x29, 0xD8, + 0x29, 0xCC, 0x29, 0xD8, 0x29, 0xD8, 0x29, 0xCC, 0x20, 0x30, 0x20, 0x36, + 0x29, 0xD8, 0x29, 0xD8, 0x29, 0xD8, 0x20, 0x3C, 0x20, 0x42, 0x29, 0xD8, + 0x29, 0xD8, 0x29, 0xCC, 0x20, 0x48, 0x29, 0xD8, 0x20, 0x4E, 0x20, 0x54, + 0x29, 0xCC, 0x29, 0xD8, 0x29, 0xD8, 0x20, 0x66, 0x20, 0x6C, 0x20, 0x72, + 0x20, 0x78, 0x20, 0x7E, 0x20, 0x84, 0x23, 0xDE, 0x26, 0xD8, 0x29, 0xCC, + 0x20, 0x5A, 0x29, 0xD8, 0x29, 0xD8, 0x26, 0xEA, 0x29, 0xD8, 0x29, 0xCC, + 0x20, 0x60, 0x20, 0x66, 0x20, 0x6C, 0x20, 0x72, 0x20, 0x78, 0x20, 0x7E, + 0x20, 0x84, 0x23, 0xDE, 0x26, 0xD8, 0x29, 0xD8, 0x29, 0xD8, 0x20, 0x96, + 0x20, 0x8A, 0x20, 0x90, 0x20, 0x96, 0x29, 0xDE, 0x20, 0x9C, 0x29, 0xDE, + 0x29, 0xDE, 0x20, 0xA2, 0x20, 0xA8, 0x29, 0xDE, 0x29, 0xDE, 0x2D, 0xA4, + 0x2D, 0xA4, 0x2D, 0xA4, 0x21, 0x50, 0x21, 0x50, 0x20, 0xAE, 0x21, 0x50, + 0x21, 0x50, 0x2D, 0xA4, 0x20, 0xB4, 0x2D, 0xA4, 0x2D, 0xAA, 0x20, 0xBA, + 0x20, 0xC0, 0x20, 0xC6, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, 0x2D, 0xAA, + 0x2C, 0x1E, 0x29, 0xF0, 0x29, 0xEA, 0x29, 0xEA, 0x29, 0xEA, 0x21, 0x20, + 0x20, 0xCC, 0x29, 0xEA, 0x20, 0xD2, 0x29, 0xF0, 0x29, 0xEA, 0x29, 0xEA, + 0x20, 0xD8, 0x29, 0xF0, 0x29, 0xF0, 0x29, 0xF0, 0x29, 0xF0, 0x29, 0xF0, + 0x29, 0xEA, 0x29, 0xF0, 0x29, 0xF0, 0x20, 0xDE, 0x20, 0xE4, 0x20, 0xEA, + 0x29, 0xF0, 0x29, 0xF0, 0x29, 0xEA, 0x29, 0xF0, 0x27, 0x6E, 0x29, 0xF0, + 0x21, 0x1A, 0x20, 0xF0, 0x20, 0xF6, 0x20, 0xFC, 0x21, 0x02, 0x21, 0x08, + 0x21, 0x0E, 0x21, 0x14, 0x21, 0x1A, 0x29, 0xF0, 0x29, 0xEA, 0x21, 0x20, + 0x29, 0xEA, 0x21, 0x26, 0x21, 0x26, 0x21, 0x2C, 0x21, 0x32, 0x2B, 0xE8, + 0x2B, 0xE8, 0x2B, 0xE8, 0x21, 0x3E, 0x21, 0x3E, 0x21, 0x38, 0x2B, 0xE8, + 0x21, 0x3E, 0x21, 0x3E, 0x21, 0x44, 0x2D, 0xA4, 0x2D, 0xA4, 0x2D, 0xA4, + 0x21, 0x50, 0x21, 0x50, 0x21, 0x4A, 0x2D, 0xA4, 0x21, 0x50, 0x21, 0x50, + 0x21, 0x56, 0x2A, 0x08, 0x2A, 0x08, 0x21, 0x5C, 0x21, 0x5C, 0x21, 0x62, + 0x2A, 0x08, 0x21, 0x68, 0x2A, 0x08, 0x21, 0x6E, 0x2A, 0x08, 0x2A, 0x08, + 0x2A, 0x08, 0x2A, 0x08, 0x2A, 0x08, 0x26, 0x78, 0x21, 0x7A, 0x21, 0x80, + 0x21, 0x86, 0x21, 0x8C, 0x21, 0x92, 0x21, 0x98, 0x21, 0x9E, 0x21, 0xA4, + 0x21, 0x74, 0x26, 0x78, 0x2A, 0x08, 0x21, 0x7A, 0x21, 0x80, 0x21, 0x86, + 0x21, 0x8C, 0x21, 0x92, 0x21, 0x98, 0x21, 0x9E, 0x21, 0xA4, 0x2A, 0x08, + 0x2D, 0x9E, 0x21, 0xAA, 0x21, 0xF8, 0x2D, 0x9E, 0x25, 0x46, 0x2D, 0x9E, + 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x21, 0xB0, 0x2A, 0x0E, 0x22, 0x70, + 0x2D, 0x9E, 0x21, 0xB6, 0x22, 0x70, 0x22, 0x70, 0x21, 0xBC, 0x2D, 0x9E, + 0x2D, 0x9E, 0x2D, 0xC8, 0x2D, 0x9E, 0x21, 0xF2, 0x21, 0xF8, 0x21, 0xC2, + 0x25, 0xFA, 0x21, 0xC8, 0x21, 0xCE, 0x21, 0xD4, 0x21, 0xDA, 0x21, 0xE0, + 0x21, 0xE6, 0x22, 0x70, 0x2A, 0x0E, 0x21, 0xEC, 0x21, 0xF2, 0x2D, 0x9E, + 0x21, 0xF8, 0x2A, 0x80, 0x22, 0x58, 0x2A, 0x80, 0x2A, 0x80, 0x2A, 0x80, + 0x22, 0x40, 0x22, 0x40, 0x22, 0x40, 0x21, 0xFE, 0x22, 0x46, 0x22, 0x40, + 0x2A, 0x80, 0x22, 0x04, 0x22, 0x40, 0x22, 0x40, 0x22, 0x0A, 0x2A, 0x80, + 0x2A, 0x80, 0x22, 0x10, 0x22, 0x16, 0x22, 0x1C, 0x22, 0x22, 0x22, 0x28, + 0x22, 0x2E, 0x22, 0x34, 0x22, 0x3A, 0x22, 0x40, 0x22, 0x46, 0x22, 0x4C, + 0x22, 0x52, 0x2A, 0x80, 0x22, 0x58, 0x22, 0x64, 0x22, 0x5E, 0x22, 0x64, + 0x22, 0x64, 0x22, 0x64, 0x2B, 0xEE, 0x2B, 0xEE, 0x22, 0x6A, 0x22, 0x6A, + 0x2B, 0xEE, 0x2B, 0xEE, 0x26, 0x78, 0x26, 0xBA, 0x2B, 0xEE, 0x2D, 0x9E, + 0x22, 0x70, 0x2D, 0x9E, 0x2D, 0x9E, 0x2D, 0x9E, 0x2A, 0x0E, 0x2D, 0x9E, + 0x2D, 0x9E, 0x22, 0x76, 0x22, 0x7C, 0x2D, 0x9E, 0x2D, 0xB0, 0x22, 0x82, + 0x22, 0x88, 0x2D, 0xB0, 0x2D, 0xB0, 0x2D, 0xB0, 0x2D, 0xB0, 0x2D, 0xB0, + 0x2B, 0xF4, 0x22, 0x8E, 0x22, 0x94, 0x2B, 0xF4, 0x22, 0x94, 0x22, 0x94, + 0x22, 0x9A, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, 0x2B, 0xF4, + 0x22, 0xB2, 0x22, 0xAC, 0x22, 0xAC, 0x22, 0xA0, 0x22, 0xA6, 0x22, 0xAC, + 0x22, 0xB2, 0x2B, 0xF4, 0x2B, 0xF4, 0x2A, 0x26, 0x23, 0x00, 0x22, 0xD6, + 0x2A, 0x26, 0x2A, 0x26, 0x2A, 0x20, 0x2A, 0x20, 0x2A, 0x20, 0x22, 0xB8, + 0x2A, 0x20, 0x2A, 0x26, 0x2A, 0x20, 0x2A, 0x26, 0x22, 0xB8, 0x2A, 0x20, + 0x22, 0xBE, 0x2A, 0x26, 0x2A, 0x26, 0x22, 0xC4, 0x2A, 0x26, 0x2A, 0x26, + 0x2A, 0x26, 0x2A, 0x26, 0x2A, 0x26, 0x2A, 0x26, 0x2A, 0x26, 0x22, 0xCA, + 0x22, 0xD0, 0x2A, 0x26, 0x2A, 0x26, 0x2A, 0x20, 0x2A, 0x20, 0x2A, 0x20, + 0x2A, 0x26, 0x22, 0xD6, 0x2A, 0x26, 0x2A, 0x20, 0x2A, 0x26, 0x22, 0xFA, + 0x22, 0xDC, 0x22, 0xE2, 0x22, 0xE8, 0x22, 0xEE, 0x22, 0xF4, 0x29, 0x78, + 0x2A, 0x26, 0x2A, 0x26, 0x22, 0xFA, 0x2A, 0x26, 0x23, 0x00, 0x2A, 0x26, + 0x2A, 0x26, 0x23, 0x00, 0x23, 0x06, 0x2C, 0x8A, 0x23, 0x0C, 0x23, 0x12, + 0x23, 0x18, 0x23, 0x1E, 0x2C, 0x8A, 0x23, 0x24, 0x2A, 0x26, 0x2B, 0xFA, + 0x23, 0x2A, 0x2B, 0xFA, 0x23, 0x2A, 0x23, 0x2A, 0x23, 0x30, 0x23, 0x36, + 0x2B, 0xFA, 0x2A, 0x38, 0x2B, 0xFA, 0x23, 0x3C, 0x23, 0x5A, 0x2C, 0x00, + 0x23, 0x42, 0x23, 0x42, 0x2C, 0x00, 0x23, 0x42, 0x2C, 0x00, 0x23, 0x48, + 0x2C, 0x00, 0x2C, 0x00, 0x2C, 0x00, 0x23, 0x48, 0x2C, 0x00, 0x2B, 0xFA, + 0x2C, 0xA2, 0x2C, 0xA2, 0x23, 0x4E, 0x2C, 0xA2, 0x23, 0x54, 0x2C, 0xA2, + 0x2C, 0xA2, 0x2C, 0xA2, 0x23, 0x5A, 0x23, 0x60, 0x2C, 0xA2, 0x2C, 0xA2, + 0x2C, 0xA2, 0x2A, 0x50, 0x2A, 0x50, 0x23, 0x78, 0x23, 0x78, 0x23, 0x78, + 0x23, 0x66, 0x23, 0x7E, 0x23, 0x6C, 0x23, 0x78, 0x2A, 0x50, 0x2A, 0x50, + 0x2A, 0x50, 0x23, 0x78, 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, + 0x23, 0x78, 0x23, 0x72, 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, + 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, 0x23, 0x78, 0x23, 0x78, 0x2A, 0x50, + 0x23, 0x7E, 0x2A, 0x50, 0x23, 0x84, 0x2D, 0x92, 0x23, 0x8A, 0x2D, 0x92, + 0x2A, 0x5C, 0x23, 0x90, 0x23, 0x90, 0x23, 0x90, 0x23, 0x96, 0x23, 0x9C, + 0x2A, 0x5C, 0x2D, 0x98, 0x23, 0xA2, 0x23, 0xA8, 0x2D, 0x98, 0x2D, 0x98, + 0x2D, 0x98, 0x2C, 0xA8, 0x23, 0xD2, 0x23, 0xD2, 0x23, 0xBA, 0x23, 0xD8, + 0x23, 0xAE, 0x23, 0xD2, 0x2C, 0xA8, 0x2C, 0xA8, 0x23, 0xB4, 0x2C, 0xA8, + 0x2C, 0xA8, 0x23, 0xE4, 0x23, 0xBA, 0x23, 0xC0, 0x23, 0xC6, 0x29, 0x5A, + 0x23, 0xCC, 0x23, 0xD2, 0x23, 0xD8, 0x23, 0xDE, 0x23, 0xE4, 0x2C, 0xA8, + 0x2A, 0x74, 0x23, 0xF0, 0x23, 0xEA, 0x23, 0xF0, 0x23, 0xF0, 0x2A, 0x74, + 0x2A, 0x74, 0x2A, 0x74, 0x2A, 0x74, 0x2A, 0x74, 0x2A, 0x8C, 0x2C, 0xFC, + 0x2C, 0xFC, 0x23, 0xF6, 0x2C, 0xFC, 0x2A, 0x8C, 0x23, 0xFC, 0x24, 0x02, + 0x2C, 0xFC, 0x2C, 0xFC, 0x24, 0x08, 0x2C, 0xFC, 0x24, 0x0E, 0x2A, 0x8C, + 0x2A, 0x8C, 0x2C, 0xFC, 0x24, 0x32, 0x2A, 0x8C, 0x24, 0x14, 0x2A, 0x8C, + 0x2A, 0x8C, 0x2C, 0xFC, 0x2A, 0x8C, 0x24, 0x1A, 0x24, 0x20, 0x2A, 0x8C, + 0x2A, 0x8C, 0x2A, 0x8C, 0x2A, 0x8C, 0x2A, 0x8C, 0x2A, 0x8C, 0x24, 0x26, + 0x24, 0x2C, 0x2A, 0x8C, 0x2C, 0xFC, 0x24, 0x32, 0x25, 0x58, 0x24, 0x38, + 0x24, 0x3E, 0x25, 0x58, 0x2C, 0x42, 0x2B, 0x34, 0x2B, 0x34, 0x24, 0x44, + 0x2B, 0x34, 0x2C, 0x42, 0x24, 0x4A, 0x24, 0x50, 0x2B, 0x34, 0x2B, 0x34, + 0x24, 0x56, 0x2B, 0x34, 0x24, 0x5C, 0x2C, 0x42, 0x2C, 0x42, 0x2B, 0x34, + 0x24, 0x62, 0x2C, 0x42, 0x25, 0x6A, 0x2C, 0x42, 0x2C, 0x42, 0x2B, 0x34, + 0x2C, 0x42, 0x24, 0x68, 0x24, 0x6E, 0x2C, 0x42, 0x2C, 0x42, 0x2C, 0x42, + 0x2C, 0x42, 0x2C, 0x42, 0x24, 0x74, 0x2A, 0x98, 0x2A, 0x98, 0x2A, 0x98, + 0x24, 0x7A, 0x24, 0x80, 0x2A, 0x98, 0x2A, 0x98, 0x2D, 0xCE, 0x2D, 0xCE, + 0x2D, 0xCE, 0x2D, 0xCE, 0x24, 0x8C, 0x24, 0x8C, 0x24, 0x86, 0x24, 0x8C, + 0x24, 0x8C, 0x2D, 0xCE, 0x2D, 0xCE, 0x2A, 0xAA, 0x2A, 0xAA, 0x2A, 0xAA, + 0x2C, 0x42, 0x2A, 0xAA, 0x2A, 0xAA, 0x2A, 0xAA, 0x24, 0x92, 0x2A, 0xAA, + 0x2A, 0xAA, 0x2A, 0xAA, 0x2A, 0xAA, 0x2A, 0xAA, 0x2A, 0xAA, 0x2A, 0xAA, + 0x2A, 0xBC, 0x24, 0xBC, 0x2A, 0xBC, 0x2A, 0xB0, 0x2A, 0xB0, 0x2A, 0xB0, + 0x24, 0x98, 0x2A, 0xB0, 0x24, 0x9E, 0x2A, 0xBC, 0x2A, 0xB0, 0x2A, 0xB0, + 0x24, 0xA4, 0x2A, 0xBC, 0x2A, 0xBC, 0x2A, 0xBC, 0x2A, 0xBC, 0x2A, 0xBC, + 0x2A, 0xB0, 0x2A, 0xBC, 0x2A, 0xBC, 0x24, 0xAA, 0x24, 0xB0, 0x24, 0xB6, + 0x2A, 0xBC, 0x2A, 0xBC, 0x2A, 0xB0, 0x2A, 0xBC, 0x2A, 0xB0, 0x24, 0xBC, + 0x2A, 0xB0, 0x2D, 0x26, 0x24, 0xC2, 0x24, 0xC8, 0x24, 0xC2, 0x24, 0xC8, + 0x24, 0xD4, 0x24, 0xC8, 0x24, 0xCE, 0x24, 0xD4, 0x24, 0xDA, 0x2C, 0x60, + 0x2C, 0x60, 0x2C, 0x60, 0x24, 0xE6, 0x24, 0xE6, 0x24, 0xE0, 0x2C, 0x60, + 0x24, 0xE6, 0x24, 0xE6, 0x24, 0xEC, 0x16, 0xD6, 0x16, 0xD6, 0x2D, 0xC8, + 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2C, 0x42, 0x2C, 0x42, 0x2C, 0x42, + 0x2D, 0xC8, 0x25, 0x52, 0x25, 0x52, 0x24, 0xF2, 0x2D, 0xC8, 0x24, 0xF8, + 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x25, 0x1C, 0x2D, 0xE6, 0x24, 0xFE, + 0x25, 0x16, 0x2D, 0xE6, 0x2D, 0xC8, 0x25, 0x1C, 0x2D, 0xE6, 0x25, 0x1C, + 0x25, 0x0A, 0x25, 0x0A, 0x25, 0x0A, 0x25, 0x04, 0x25, 0x0A, 0x2D, 0xE6, + 0x25, 0x1C, 0x25, 0x0A, 0x25, 0x0A, 0x25, 0x10, 0x2D, 0xE6, 0x25, 0x1C, + 0x2D, 0xE6, 0x2D, 0xE6, 0x25, 0x1C, 0x25, 0x16, 0x25, 0x1C, 0x25, 0x22, + 0x25, 0x28, 0x25, 0x2E, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xE6, 0x2D, 0xC8, + 0x25, 0x52, 0x25, 0x52, 0x2D, 0xC8, 0x2D, 0xC8, 0x25, 0x34, 0x2D, 0xE6, + 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, + 0x2D, 0xC8, 0x25, 0x52, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2B, 0x40, + 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x25, 0x3A, 0x25, 0x40, 0x25, 0x46, + 0x25, 0x4C, 0x2D, 0xC8, 0x25, 0x52, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, + 0x2B, 0x40, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xDA, 0x2D, 0xDA, + 0x25, 0x58, 0x25, 0x58, 0x25, 0x5E, 0x25, 0x64, 0x2D, 0xDA, 0x2C, 0x42, + 0x25, 0xFA, 0x2C, 0x42, 0x2C, 0x42, 0x2C, 0x42, 0x2C, 0x42, 0x2D, 0x80, + 0x2B, 0x34, 0x2C, 0x42, 0x2B, 0x34, 0x2B, 0x34, 0x25, 0x6A, 0x2C, 0x42, + 0x2C, 0x42, 0x2C, 0x42, 0x2C, 0x42, 0x25, 0x70, 0x16, 0xDC, 0x16, 0x76, + 0x25, 0xFA, 0x16, 0xDC, 0x16, 0xDC, 0x2A, 0xE0, 0x2A, 0xE0, 0x2A, 0xE0, + 0x27, 0x20, 0x2A, 0xE0, 0x16, 0xDC, 0x2A, 0xE0, 0x16, 0xDC, 0x27, 0x20, + 0x2A, 0xE0, 0x25, 0xF4, 0x16, 0xDC, 0x16, 0xDC, 0x25, 0x76, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x25, 0x7C, 0x25, 0x82, 0x16, 0xDC, 0x16, 0xDC, 0x2A, 0xE0, 0x2A, 0xE0, + 0x2A, 0xE0, 0x16, 0xDC, 0x25, 0x88, 0x16, 0xDC, 0x2A, 0xE0, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0x76, + 0x25, 0xA0, 0x25, 0x8E, 0x25, 0xA0, 0x25, 0x94, 0x25, 0x9A, 0x25, 0xA0, + 0x25, 0xA6, 0x25, 0xA6, 0x2C, 0x42, 0x2C, 0x06, 0x2C, 0x06, 0x2C, 0x06, + 0x25, 0xAC, 0x25, 0xAC, 0x2C, 0x06, 0x25, 0xB2, 0x2C, 0x06, 0x25, 0xB2, + 0x25, 0xB2, 0x25, 0xB8, 0x25, 0xBE, 0x2C, 0x06, 0x2A, 0xF2, 0x2C, 0x06, + 0x2C, 0x0C, 0x2C, 0x0C, 0x2C, 0x0C, 0x25, 0xC4, 0x25, 0xC4, 0x2C, 0x0C, + 0x25, 0xC4, 0x2C, 0x0C, 0x25, 0xCA, 0x2C, 0x0C, 0x2C, 0x0C, 0x2C, 0x0C, + 0x25, 0xCA, 0x2C, 0x0C, 0x25, 0xD0, 0x2C, 0x12, 0x2C, 0x12, 0x25, 0xD6, + 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x2C, 0x12, 0x25, 0xDC, 0x2C, 0x12, + 0x2C, 0x12, 0x2C, 0x12, 0x25, 0xE2, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x2C, 0x18, 0x2C, 0x18, 0x25, 0xE8, 0x2C, 0x18, 0x2C, 0x18, 0x2C, 0x18, + 0x25, 0xEE, 0x16, 0xDC, 0x16, 0x76, 0x25, 0xFA, 0x16, 0xDC, 0x27, 0x4A, + 0x2A, 0xE0, 0x2A, 0xE0, 0x2A, 0xE0, 0x27, 0x20, 0x2A, 0xE0, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x2A, 0xE0, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x2A, 0xE0, 0x25, 0xF4, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x2A, 0xE0, 0x2A, 0xE0, + 0x16, 0xDC, 0x25, 0xFA, 0x16, 0xDC, 0x16, 0xDC, 0x2A, 0xE0, 0x27, 0x4A, + 0x2A, 0xE0, 0x2A, 0xE0, 0x2A, 0xE0, 0x16, 0xDC, 0x2A, 0xE0, 0x16, 0x76, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x2A, 0xE0, 0x16, 0xDC, 0x16, 0xDC, 0x2A, 0xE0, 0x16, 0xDC, 0x2A, 0xE0, + 0x16, 0xDC, 0x25, 0xFA, 0x16, 0xDC, 0x25, 0xF4, 0x27, 0x20, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x25, 0xFA, 0x16, 0xDC, 0x16, 0xDC, 0x2B, 0x04, + 0x2B, 0x04, 0x26, 0x00, 0x2B, 0x04, 0x2B, 0x10, 0x26, 0x06, 0x26, 0x0C, + 0x26, 0x12, 0x26, 0x12, 0x26, 0x12, 0x26, 0x18, 0x2B, 0x10, 0x2B, 0x10, + 0x2D, 0x5C, 0x26, 0x1E, 0x26, 0x24, 0x2D, 0x5C, 0x2B, 0x22, 0x26, 0x42, + 0x2B, 0x22, 0x26, 0x2A, 0x2D, 0x02, 0x2D, 0x02, 0x26, 0x3C, 0x26, 0x30, + 0x2B, 0x22, 0x2D, 0x02, 0x2B, 0x22, 0x2B, 0x22, 0x26, 0x36, 0x2B, 0x22, + 0x2D, 0x02, 0x26, 0x3C, 0x26, 0x42, 0x2B, 0x22, 0x26, 0x48, 0x26, 0x4E, + 0x26, 0x54, 0x29, 0xDE, 0x2B, 0x22, 0x2B, 0x2E, 0x2B, 0x2E, 0x2B, 0x2E, + 0x26, 0x60, 0x26, 0x5A, 0x26, 0x60, 0x26, 0x60, 0x2B, 0x2E, 0x2B, 0x2E, + 0x2C, 0x7E, 0x2A, 0x26, 0x26, 0xA2, 0x26, 0x66, 0x26, 0x66, 0x26, 0x72, + 0x26, 0x78, 0x26, 0x7E, 0x26, 0x84, 0x26, 0x8A, 0x26, 0x90, 0x26, 0x96, + 0x26, 0x9C, 0x26, 0x6C, 0x26, 0x72, 0x26, 0x78, 0x26, 0x7E, 0x26, 0x84, + 0x26, 0x8A, 0x26, 0x90, 0x26, 0x96, 0x26, 0x9C, 0x26, 0xA2, 0x26, 0xBA, + 0x26, 0xA8, 0x26, 0xAE, 0x2C, 0x7E, 0x27, 0x68, 0x26, 0xB4, 0x26, 0xB4, + 0x2C, 0x9C, 0x26, 0xBA, 0x2C, 0xB4, 0x2A, 0x26, 0x2D, 0xEC, 0x29, 0xDE, + 0x2D, 0xEC, 0x26, 0xC0, 0x2C, 0xBA, 0x2C, 0xBA, 0x2C, 0xBA, 0x26, 0xC6, + 0x26, 0xCC, 0x26, 0xD2, 0x26, 0xD2, 0x26, 0xD8, 0x26, 0xDE, 0x27, 0x86, + 0x2C, 0x7E, 0x26, 0xE4, 0x26, 0xEA, 0x27, 0x7A, 0x26, 0xF0, 0x2C, 0xA2, + 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, + 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, + 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, + 0x2D, 0x74, 0x26, 0xF6, 0x26, 0xFC, 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x74, + 0x2D, 0x74, 0x2D, 0x74, 0x2D, 0x7A, 0x2D, 0x7A, 0x2D, 0x7A, 0x27, 0x02, + 0x27, 0x02, 0x2D, 0x7A, 0x2D, 0x7A, 0x2D, 0x7A, 0x2D, 0x7A, 0x2D, 0x7A, + 0x2D, 0x7A, 0x2D, 0x7A, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, + 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, + 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, + 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x80, + 0x2D, 0x80, 0x2D, 0x80, 0x2D, 0x86, 0x2D, 0x86, 0x2D, 0x86, 0x27, 0x08, + 0x2D, 0x86, 0x2D, 0x86, 0x2D, 0x86, 0x2D, 0x86, 0x2D, 0x86, 0x2D, 0x86, + 0x2D, 0x86, 0x2D, 0x86, 0x2D, 0x86, 0x27, 0x0E, 0x27, 0x14, 0x2D, 0x86, + 0x2D, 0x86, 0x2D, 0x86, 0x27, 0x1A, 0x27, 0x1A, 0x27, 0x1A, 0x27, 0x1A, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0x76, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x2A, 0xE0, 0x27, 0x20, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, 0x2D, 0x8C, + 0x2C, 0xF0, 0x2C, 0xF0, 0x2C, 0xF0, 0x27, 0x26, 0x27, 0x26, 0x2D, 0x08, + 0x27, 0x2C, 0x2C, 0xF6, 0x2A, 0x8C, 0x2A, 0x8C, 0x27, 0x32, 0x27, 0x38, + 0x27, 0x38, 0x27, 0x38, 0x2C, 0x72, 0x2C, 0x72, 0x2C, 0x6C, 0x2C, 0x6C, + 0x2C, 0x6C, 0x2C, 0x6C, 0x2C, 0x6C, 0x2D, 0x0E, 0x2D, 0x5C, 0x2D, 0x20, + 0x2D, 0x20, 0x2D, 0x20, 0x27, 0x3E, 0x27, 0x3E, 0x27, 0x44, 0x27, 0x4A, + 0x27, 0x50, 0x27, 0x56, 0x2C, 0xF0, 0x2C, 0x42, 0x2D, 0x14, 0x2C, 0x4E, + 0x2B, 0x22, 0x2C, 0x00, 0x27, 0x5C, 0x29, 0xD8, 0x27, 0x62, 0x2B, 0xE8, + 0x2D, 0xA4, 0x2D, 0xA4, 0x2C, 0xA2, 0x27, 0x68, 0x29, 0xDE, 0x29, 0xDE, + 0x27, 0x74, 0x27, 0x6E, 0x27, 0x6E, 0x2C, 0x9C, 0x27, 0x74, 0x27, 0x7A, + 0x27, 0x86, 0x27, 0x8C, 0x27, 0x80, 0x27, 0x86, 0x27, 0x8C, 0x27, 0x92, + 0x27, 0x98, 0x27, 0x9E, 0x27, 0xA4, 0x27, 0xAA, 0x27, 0xB0, 0x27, 0xB6, + 0x27, 0xBC, 0x27, 0xE0, 0x27, 0xC2, 0x27, 0xC8, 0x27, 0xCE, 0x27, 0xD4, + 0x27, 0xD4, 0x27, 0xDA, 0x28, 0x04, 0x27, 0xE0, 0x27, 0xE6, 0x27, 0xEC, + 0x27, 0xF2, 0x27, 0xF8, 0x27, 0xFE, 0x28, 0x04, 0x28, 0x0A, 0x28, 0x10, + 0x28, 0x16, 0x28, 0x1C, 0x28, 0x22, 0x28, 0x28, 0x28, 0x28, 0x28, 0x2E, + 0x28, 0x34, 0x28, 0x34, 0x28, 0x3A, 0x28, 0x40, 0x28, 0x46, 0x28, 0x4C, + 0x28, 0x52, 0x28, 0x58, 0x28, 0x76, 0x28, 0x5E, 0x28, 0x64, 0x28, 0x6A, + 0x28, 0x6A, 0x28, 0x70, 0x28, 0x9A, 0x28, 0x76, 0x28, 0x7C, 0x28, 0x82, + 0x28, 0x88, 0x28, 0x8E, 0x28, 0x94, 0x28, 0x9A, 0x28, 0xA0, 0x28, 0xA6, + 0x28, 0xAC, 0x28, 0xB2, 0x28, 0xB8, 0x28, 0xBE, 0x28, 0xBE, 0x28, 0xC4, + 0x28, 0xCA, 0x28, 0xCA, 0x28, 0xD0, 0x28, 0xD0, 0x28, 0xD6, 0x28, 0xDC, + 0x28, 0xDC, 0x28, 0xE2, 0x28, 0xE2, 0x28, 0xF4, 0x28, 0xFA, 0x28, 0xFA, + 0x28, 0xE8, 0x28, 0xEE, 0x28, 0xFA, 0x28, 0xF4, 0x28, 0xFA, 0x28, 0xFA, + 0x29, 0x00, 0x29, 0x06, 0x29, 0x0C, 0x29, 0x12, 0x2B, 0xEE, 0x29, 0xD8, + 0x2A, 0x26, 0x29, 0x18, 0x29, 0x1E, 0x29, 0x48, 0x29, 0xC0, 0x29, 0x24, + 0x29, 0x60, 0x29, 0x2A, 0x29, 0x30, 0x29, 0x60, 0x29, 0x60, 0x29, 0x36, + 0x29, 0x3C, 0x29, 0x42, 0x29, 0x48, 0x29, 0x60, 0x29, 0x60, 0x29, 0x4E, + 0x29, 0x60, 0x29, 0x54, 0x29, 0x66, 0x29, 0x5A, 0x29, 0x60, 0x29, 0x60, + 0x29, 0x60, 0x29, 0x60, 0x29, 0x60, 0x29, 0x60, 0x29, 0x60, 0x29, 0x8A, + 0x29, 0x60, 0x29, 0x60, 0x29, 0x66, 0x29, 0x66, 0x29, 0x6C, 0x29, 0x72, + 0x29, 0x78, 0x29, 0x7E, 0x29, 0x84, 0x29, 0x8A, 0x29, 0xBA, 0x29, 0xC0, + 0x29, 0xC0, 0x29, 0x90, 0x29, 0x96, 0x29, 0x9C, 0x29, 0xA2, 0x29, 0xC0, + 0x29, 0xC0, 0x29, 0xA2, 0x29, 0xC0, 0x29, 0xA8, 0x29, 0xC6, 0x29, 0xAE, + 0x29, 0xC0, 0x29, 0xC0, 0x29, 0xC0, 0x29, 0xC0, 0x29, 0xC0, 0x29, 0xC0, + 0x29, 0xC0, 0x29, 0xB4, 0x29, 0xBA, 0x29, 0xC0, 0x29, 0xC6, 0x2B, 0xE8, + 0x2D, 0xA4, 0x2B, 0xEE, 0x2D, 0x9E, 0x2B, 0xF4, 0x2B, 0xFA, 0x2C, 0x00, + 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2C, 0x42, 0x2C, 0x06, 0x2C, 0x0C, + 0x2C, 0x12, 0x2C, 0x18, 0x29, 0xCC, 0x29, 0xCC, 0x29, 0xD2, 0x29, 0xD8, + 0x29, 0xD2, 0x29, 0xD8, 0x2B, 0x7C, 0x29, 0xDE, 0x2A, 0x7A, 0x29, 0xE4, + 0x2D, 0xAA, 0x29, 0xEA, 0x2B, 0x4C, 0x2B, 0x4C, 0x29, 0xF0, 0x29, 0xF6, + 0x29, 0xFC, 0x2A, 0x02, 0x2A, 0x02, 0x2A, 0x08, 0x2B, 0x52, 0x2D, 0x9E, + 0x2B, 0x52, 0x2D, 0x9E, 0x2B, 0xEE, 0x2D, 0x9E, 0x2A, 0x0E, 0x2A, 0x14, + 0x2D, 0xB0, 0x2A, 0x1A, 0x2B, 0xF4, 0x2A, 0x20, 0x2B, 0x70, 0x2A, 0x26, + 0x2B, 0x70, 0x2A, 0x26, 0x2A, 0x26, 0x2A, 0x26, 0x2A, 0x2C, 0x2A, 0x32, + 0x2B, 0xFA, 0x2A, 0x38, 0x2C, 0x00, 0x2A, 0x3E, 0x2C, 0x00, 0x2A, 0x3E, + 0x2A, 0x44, 0x2C, 0xA2, 0x2A, 0x4A, 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, + 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, 0x2A, 0x50, 0x2D, 0x92, + 0x2A, 0x56, 0x2A, 0x56, 0x2A, 0x5C, 0x2A, 0x62, 0x2A, 0x62, 0x2A, 0x68, + 0x2A, 0x68, 0x2C, 0xA8, 0x2A, 0x6E, 0x2A, 0x74, 0x2A, 0x7A, 0x2B, 0x8E, + 0x2A, 0x80, 0x2B, 0x8E, 0x2A, 0x80, 0x2C, 0xFC, 0x2C, 0xFC, 0x2A, 0x86, + 0x2A, 0x8C, 0x2A, 0x86, 0x2A, 0x8C, 0x2A, 0x92, 0x2A, 0x98, 0x2A, 0x9E, + 0x2A, 0xA4, 0x2A, 0xAA, 0x2A, 0xB0, 0x2A, 0xB6, 0x2A, 0xB6, 0x2A, 0xBC, + 0x2A, 0xC2, 0x2A, 0xC8, 0x2A, 0xCE, 0x2A, 0xCE, 0x2D, 0xC8, 0x2A, 0xD4, + 0x2A, 0xD4, 0x2D, 0xE6, 0x2A, 0xD4, 0x2A, 0xD4, 0x2D, 0xC8, 0x2D, 0xC8, + 0x2D, 0xC8, 0x2B, 0x40, 0x2A, 0xDA, 0x2D, 0xDA, 0x2B, 0x3A, 0x2C, 0x42, + 0x2A, 0xE0, 0x16, 0x70, 0x16, 0xDC, 0x16, 0x70, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x2A, 0xE6, 0x2A, 0xEC, 0x2C, 0x06, 0x2A, 0xF2, 0x2C, 0x0C, + 0x2C, 0x0C, 0x2A, 0xF8, 0x2C, 0x0C, 0x2A, 0xF8, 0x2A, 0xFE, 0x2A, 0xFE, + 0x2C, 0x12, 0x16, 0x70, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x2B, 0x04, 0x2B, 0x0A, + 0x2B, 0x0A, 0x2B, 0x10, 0x2B, 0x16, 0x2B, 0x16, 0x2B, 0x1C, 0x2B, 0x1C, + 0x2B, 0x22, 0x2B, 0x28, 0x2B, 0x2E, 0x2B, 0x34, 0x2B, 0x34, 0x2B, 0x3A, + 0x2C, 0x42, 0x2B, 0x3A, 0x2C, 0x42, 0x2D, 0xE6, 0x2B, 0xE2, 0x2D, 0xC8, + 0x2D, 0xC8, 0x2B, 0x40, 0x2B, 0x46, 0x2B, 0x46, 0x2C, 0x18, 0x16, 0x70, + 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x16, 0xDC, 0x2B, 0x4C, 0x2B, 0x52, 0x2B, 0x58, 0x2B, 0x5E, + 0x2B, 0x64, 0x2B, 0x6A, 0x2B, 0x70, 0x2B, 0x76, 0x2B, 0x7C, 0x2B, 0x82, + 0x2B, 0x88, 0x2B, 0x8E, 0x2B, 0x94, 0x2B, 0x9A, 0x2B, 0xA0, 0x2B, 0xA6, + 0x16, 0x70, 0x2B, 0xAC, 0x2B, 0xB2, 0x2B, 0xB8, 0x2B, 0xBE, 0x2B, 0xC4, + 0x16, 0x70, 0x2B, 0xCA, 0x2D, 0x86, 0x2D, 0x86, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x2B, 0xD0, 0x2B, 0xD6, 0x2B, 0xDC, 0x2B, 0xE2, 0x2B, 0xE8, + 0x2D, 0xA4, 0x2B, 0xEE, 0x2D, 0x9E, 0x2B, 0xF4, 0x2B, 0xFA, 0x2C, 0x00, + 0x2D, 0xC8, 0x2D, 0xC8, 0x2D, 0xC8, 0x2C, 0x42, 0x2C, 0x06, 0x2C, 0x0C, + 0x2C, 0x12, 0x2C, 0x18, 0x2C, 0x1E, 0x2C, 0x1E, 0x2C, 0x24, 0x2C, 0x2A, + 0x2C, 0x30, 0x2C, 0x36, 0x2C, 0x3C, 0x2C, 0xA2, 0x2C, 0x42, 0x2C, 0x48, + 0x2D, 0x26, 0x2C, 0x4E, 0x2C, 0x54, 0x2C, 0x5A, 0x2C, 0x60, 0x2C, 0x66, + 0x2D, 0xC2, 0x2C, 0x6C, 0x2C, 0x72, 0x2D, 0x0E, 0x2C, 0x7E, 0x2C, 0x78, + 0x2C, 0x7E, 0x2C, 0x7E, 0x2C, 0x84, 0x2C, 0x8A, 0x2D, 0xA4, 0x2C, 0xA2, + 0x2C, 0x90, 0x2D, 0x98, 0x2C, 0x96, 0x2C, 0x9C, 0x2D, 0xA4, 0x2C, 0xA2, + 0x2C, 0xA8, 0x2C, 0xA8, 0x2D, 0x9E, 0x2C, 0xAE, 0x2C, 0xB4, 0x2C, 0xBA, + 0x2C, 0xC0, 0x2C, 0xC6, 0x2C, 0xCC, 0x2C, 0xD2, 0x2C, 0xD8, 0x2C, 0xDE, + 0x2D, 0x98, 0x2C, 0xE4, 0x2C, 0xEA, 0x2C, 0xF0, 0x2C, 0xF0, 0x2C, 0xF6, + 0x2C, 0xF6, 0x2C, 0xFC, 0x2D, 0x02, 0x2D, 0x08, 0x2D, 0xCE, 0x2D, 0x0E, + 0x2D, 0x14, 0x2D, 0x1A, 0x2D, 0x20, 0x2D, 0x26, 0x2D, 0x2C, 0x2D, 0x32, + 0x2D, 0x38, 0x2D, 0x3E, 0x2D, 0x44, 0x16, 0xDC, 0x16, 0x76, 0x2D, 0x4A, + 0x2D, 0x50, 0x2D, 0x56, 0x2D, 0x5C, 0x2D, 0x62, 0x2D, 0xA4, 0x2D, 0x62, + 0x2D, 0x80, 0x2D, 0x68, 0x2D, 0xCE, 0x2D, 0x68, 0x2D, 0x6E, 0x2D, 0x74, + 0x2D, 0x7A, 0x2D, 0x80, 0x2D, 0x86, 0x2D, 0x86, 0x16, 0xDC, 0x16, 0xDC, + 0x16, 0xDC, 0x2D, 0x8C, 0x2D, 0x9E, 0x2D, 0x92, 0x2D, 0x98, 0x2D, 0x9E, + 0x2D, 0xA4, 0x2D, 0xAA, 0x2D, 0xB0, 0x2D, 0xB6, 0x2D, 0xBC, 0x2D, 0xC2, + 0x2D, 0xC8, 0x2D, 0xCE, 0x2D, 0xD4, 0x2D, 0xDA, 0x2D, 0xE0, 0x2D, 0xE6, + 0x2D, 0xEC, 0x2D, 0xF2, 0x2D, 0xF8, 0x00, 0x02, 0x00, 0x41, 0x01, 0x8A, + 0x01, 0x8B, 0x00, 0x00, 0x03, 0x95, 0x03, 0x95, 0x00, 0x02, 0x04, 0x09, + 0x04, 0x09, 0x00, 0x03, 0x05, 0x1B, 0x05, 0x1C, 0x00, 0x04, 0x05, 0x25, + 0x05, 0x25, 0x00, 0x06, 0x05, 0x2D, 0x05, 0x2F, 0x00, 0x07, 0x05, 0x32, + 0x05, 0x32, 0x00, 0x0A, 0x05, 0x36, 0x05, 0x36, 0x00, 0x0B, 0x05, 0x39, + 0x05, 0x3D, 0x00, 0x0C, 0x05, 0x3F, 0x05, 0x40, 0x00, 0x11, 0x05, 0x44, + 0x05, 0x4C, 0x00, 0x13, 0x05, 0x68, 0x05, 0x68, 0x00, 0x1C, 0x05, 0x6A, + 0x05, 0x6A, 0x00, 0x1D, 0x05, 0x6C, 0x05, 0x6C, 0x00, 0x1E, 0x05, 0x6F, + 0x05, 0x6F, 0x00, 0x1F, 0x05, 0x80, 0x05, 0x8B, 0x00, 0x20, 0x05, 0x95, + 0x05, 0x95, 0x00, 0x2C, 0x05, 0x98, 0x05, 0x9D, 0x00, 0x2D, 0x05, 0x9F, + 0x05, 0x9F, 0x00, 0x33, 0x05, 0xA1, 0x05, 0xA4, 0x00, 0x34, 0x05, 0xA6, + 0x05, 0xA6, 0x00, 0x38, 0x05, 0xA8, 0x05, 0xA8, 0x00, 0x39, 0x05, 0xAD, + 0x05, 0xAE, 0x00, 0x3A, 0x05, 0xB0, 0x05, 0xB1, 0x00, 0x3C, 0x05, 0xB6, + 0x05, 0xBB, 0x00, 0x3E, 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x44, 0x05, 0xC1, + 0x05, 0xC2, 0x00, 0x45, 0x05, 0xC8, 0x05, 0xCF, 0x00, 0x47, 0x05, 0xD4, + 0x05, 0xD4, 0x00, 0x4F, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x50, 0x05, 0xDF, + 0x05, 0xDF, 0x00, 0x53, 0x05, 0xE2, 0x05, 0xE4, 0x00, 0x54, 0x05, 0xE6, + 0x05, 0xE9, 0x00, 0x57, 0x05, 0xEC, 0x05, 0xF6, 0x00, 0x5B, 0x05, 0xF9, + 0x06, 0x03, 0x00, 0x66, 0x06, 0x06, 0x06, 0x0C, 0x00, 0x71, 0x06, 0x0E, + 0x06, 0x0F, 0x00, 0x78, 0x06, 0x15, 0x06, 0x15, 0x00, 0x7A, 0x06, 0x1A, + 0x06, 0x1B, 0x00, 0x7B, 0x06, 0x3F, 0x06, 0x4E, 0x00, 0x7D, 0x06, 0x53, + 0x06, 0x54, 0x00, 0x8D, 0x06, 0x70, 0x06, 0x81, 0x00, 0x8F, 0x06, 0x84, + 0x06, 0x89, 0x00, 0xA1, 0x06, 0x8C, 0x06, 0x8C, 0x00, 0xA7, 0x06, 0x8F, + 0x06, 0x90, 0x00, 0xA8, 0x06, 0x93, 0x06, 0x94, 0x00, 0xAA, 0x06, 0x96, + 0x06, 0x97, 0x00, 0xAC, 0x06, 0x9D, 0x06, 0x9F, 0x00, 0xAE, 0x06, 0xA3, + 0x06, 0xA4, 0x00, 0xB1, 0x06, 0xAE, 0x06, 0xAE, 0x00, 0xB3, 0x06, 0xB6, + 0x06, 0xB8, 0x00, 0xB4, 0x07, 0x06, 0x07, 0x0A, 0x00, 0xB7, 0x07, 0x1E, + 0x07, 0x22, 0x00, 0xBC, 0x07, 0x33, 0x07, 0x33, 0x00, 0xC1, 0x07, 0x37, + 0x07, 0x37, 0x00, 0xC2, 0x07, 0x3A, 0x07, 0x41, 0x00, 0xC3, 0x07, 0x5C, + 0x07, 0x5C, 0x00, 0xCB, 0x07, 0xF8, 0x07, 0xFE, 0x00, 0xCC, 0x08, 0x01, + 0x08, 0x02, 0x00, 0xD3, 0x08, 0xCA, 0x08, 0xCF, 0x00, 0xD5, 0x08, 0xD1, + 0x08, 0xD3, 0x00, 0xDB, 0x09, 0x0E, 0x09, 0x15, 0x00, 0xDE, 0x0A, 0x15, + 0x0A, 0x15, 0x00, 0xE6, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0xE7, 0x0B, 0x48, + 0x0B, 0x48, 0x00, 0xE9, 0x00, 0x02, 0x00, 0x91, 0x01, 0x8A, 0x01, 0x8B, + 0x00, 0x1B, 0x03, 0x95, 0x03, 0x95, 0x00, 0x2F, 0x04, 0x09, 0x04, 0x09, + 0x00, 0x08, 0x05, 0x1B, 0x05, 0x1B, 0x00, 0x2B, 0x05, 0x1C, 0x05, 0x1C, + 0x00, 0x10, 0x05, 0x25, 0x05, 0x25, 0x00, 0x35, 0x05, 0x2D, 0x05, 0x2D, + 0x00, 0x2E, 0x05, 0x2E, 0x05, 0x2F, 0x00, 0x1D, 0x05, 0x32, 0x05, 0x32, + 0x00, 0x10, 0x05, 0x36, 0x05, 0x36, 0x00, 0x36, 0x05, 0x39, 0x05, 0x3A, + 0x00, 0x1C, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x19, 0x05, 0x3C, 0x05, 0x3C, + 0x00, 0x04, 0x05, 0x3D, 0x05, 0x3D, 0x00, 0x40, 0x05, 0x3F, 0x05, 0x3F, + 0x00, 0x17, 0x05, 0x40, 0x05, 0x40, 0x00, 0x1F, 0x05, 0x44, 0x05, 0x44, + 0x00, 0x37, 0x05, 0x45, 0x05, 0x45, 0x00, 0x17, 0x05, 0x46, 0x05, 0x47, + 0x00, 0x19, 0x05, 0x48, 0x05, 0x48, 0x00, 0x33, 0x05, 0x49, 0x05, 0x49, + 0x00, 0x17, 0x05, 0x4A, 0x05, 0x4A, 0x00, 0x1F, 0x05, 0x4B, 0x05, 0x4B, + 0x00, 0x3C, 0x05, 0x4C, 0x05, 0x4C, 0x00, 0x31, 0x05, 0x68, 0x05, 0x68, + 0x00, 0x09, 0x05, 0x6A, 0x05, 0x6A, 0x00, 0x09, 0x05, 0x6C, 0x05, 0x6C, + 0x00, 0x09, 0x05, 0x80, 0x05, 0x83, 0x00, 0x01, 0x05, 0x86, 0x05, 0x86, + 0x00, 0x03, 0x05, 0x88, 0x05, 0x89, 0x00, 0x01, 0x05, 0x8B, 0x05, 0x8B, + 0x00, 0x03, 0x05, 0x95, 0x05, 0x95, 0x00, 0x18, 0x05, 0x98, 0x05, 0x98, + 0x00, 0x24, 0x05, 0x99, 0x05, 0x99, 0x00, 0x18, 0x05, 0x9A, 0x05, 0x9A, + 0x00, 0x24, 0x05, 0x9B, 0x05, 0x9B, 0x00, 0x12, 0x05, 0x9C, 0x05, 0x9C, + 0x00, 0x13, 0x05, 0x9D, 0x05, 0x9D, 0x00, 0x12, 0x05, 0x9F, 0x05, 0x9F, + 0x00, 0x13, 0x05, 0xA1, 0x05, 0xA1, 0x00, 0x12, 0x05, 0xA2, 0x05, 0xA2, + 0x00, 0x13, 0x05, 0xA3, 0x05, 0xA3, 0x00, 0x0D, 0x05, 0xA4, 0x05, 0xA4, + 0x00, 0x09, 0x05, 0xA6, 0x05, 0xA6, 0x00, 0x09, 0x05, 0xA8, 0x05, 0xA8, + 0x00, 0x09, 0x05, 0xAD, 0x05, 0xAD, 0x00, 0x3F, 0x05, 0xAE, 0x05, 0xAE, + 0x00, 0x04, 0x05, 0xB0, 0x05, 0xB0, 0x00, 0x08, 0x05, 0xB6, 0x05, 0xB9, + 0x00, 0x03, 0x05, 0xBA, 0x05, 0xBA, 0x00, 0x2A, 0x05, 0xBB, 0x05, 0xBB, + 0x00, 0x03, 0x05, 0xC1, 0x05, 0xC2, 0x00, 0x03, 0x05, 0xC8, 0x05, 0xC8, + 0x00, 0x0E, 0x05, 0xC9, 0x05, 0xC9, 0x00, 0x0B, 0x05, 0xCA, 0x05, 0xCB, + 0x00, 0x0C, 0x05, 0xCC, 0x05, 0xCC, 0x00, 0x0E, 0x05, 0xCD, 0x05, 0xCD, + 0x00, 0x0B, 0x05, 0xCE, 0x05, 0xCF, 0x00, 0x0A, 0x05, 0xD4, 0x05, 0xD4, + 0x00, 0x0B, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x07, 0x05, 0xDF, 0x05, 0xDF, + 0x00, 0x05, 0x05, 0xE2, 0x05, 0xE2, 0x00, 0x05, 0x05, 0xE4, 0x05, 0xE4, + 0x00, 0x0C, 0x05, 0xE6, 0x05, 0xE6, 0x00, 0x22, 0x05, 0xE7, 0x05, 0xE7, + 0x00, 0x23, 0x05, 0xE8, 0x05, 0xE8, 0x00, 0x22, 0x05, 0xE9, 0x05, 0xE9, + 0x00, 0x23, 0x05, 0xEC, 0x05, 0xEF, 0x00, 0x01, 0x05, 0xF2, 0x05, 0xF2, + 0x00, 0x03, 0x05, 0xF4, 0x05, 0xF5, 0x00, 0x01, 0x05, 0xF9, 0x05, 0xFC, + 0x00, 0x01, 0x05, 0xFF, 0x05, 0xFF, 0x00, 0x03, 0x06, 0x01, 0x06, 0x02, + 0x00, 0x01, 0x06, 0x06, 0x06, 0x07, 0x00, 0x16, 0x06, 0x08, 0x06, 0x09, + 0x00, 0x11, 0x06, 0x0A, 0x06, 0x0A, 0x00, 0x03, 0x06, 0x0B, 0x06, 0x0B, + 0x00, 0x28, 0x06, 0x0C, 0x06, 0x0C, 0x00, 0x0D, 0x06, 0x0E, 0x06, 0x0E, + 0x00, 0x28, 0x06, 0x0F, 0x06, 0x0F, 0x00, 0x16, 0x06, 0x15, 0x06, 0x15, + 0x00, 0x11, 0x06, 0x1A, 0x06, 0x1A, 0x00, 0x04, 0x06, 0x1B, 0x06, 0x1B, + 0x00, 0x34, 0x06, 0x3F, 0x06, 0x40, 0x00, 0x06, 0x06, 0x41, 0x06, 0x42, + 0x00, 0x27, 0x06, 0x43, 0x06, 0x43, 0x00, 0x42, 0x06, 0x44, 0x06, 0x45, + 0x00, 0x06, 0x06, 0x46, 0x06, 0x47, 0x00, 0x21, 0x06, 0x48, 0x06, 0x49, + 0x00, 0x06, 0x06, 0x4A, 0x06, 0x4A, 0x00, 0x3E, 0x06, 0x4B, 0x06, 0x4B, + 0x00, 0x3A, 0x06, 0x4C, 0x06, 0x4D, 0x00, 0x06, 0x06, 0x4E, 0x06, 0x4E, + 0x00, 0x32, 0x06, 0x53, 0x06, 0x54, 0x00, 0x25, 0x06, 0x70, 0x06, 0x75, + 0x00, 0x02, 0x06, 0x76, 0x06, 0x76, 0x00, 0x1E, 0x06, 0x77, 0x06, 0x78, + 0x00, 0x02, 0x06, 0x79, 0x06, 0x79, 0x00, 0x1E, 0x06, 0x7A, 0x06, 0x7A, + 0x00, 0x02, 0x06, 0x7B, 0x06, 0x7B, 0x00, 0x3D, 0x06, 0x7C, 0x06, 0x7C, + 0x00, 0x39, 0x06, 0x7D, 0x06, 0x81, 0x00, 0x02, 0x06, 0x84, 0x06, 0x86, + 0x00, 0x02, 0x06, 0x87, 0x06, 0x87, 0x00, 0x2D, 0x06, 0x88, 0x06, 0x89, + 0x00, 0x1A, 0x06, 0x8C, 0x06, 0x8C, 0x00, 0x41, 0x06, 0x8F, 0x06, 0x90, + 0x00, 0x20, 0x06, 0x93, 0x06, 0x93, 0x00, 0x3B, 0x06, 0x94, 0x06, 0x94, + 0x00, 0x38, 0x06, 0x96, 0x06, 0x96, 0x00, 0x1A, 0x06, 0x97, 0x06, 0x97, + 0x00, 0x30, 0x06, 0x9D, 0x06, 0x9F, 0x00, 0x14, 0x06, 0xA3, 0x06, 0xA4, + 0x00, 0x26, 0x06, 0xAE, 0x06, 0xAE, 0x00, 0x2C, 0x06, 0xB6, 0x06, 0xB8, + 0x00, 0x15, 0x07, 0x09, 0x07, 0x0A, 0x00, 0x01, 0x07, 0x21, 0x07, 0x22, + 0x00, 0x01, 0x07, 0x33, 0x07, 0x33, 0x00, 0x08, 0x07, 0x37, 0x07, 0x37, + 0x00, 0x08, 0x07, 0x3A, 0x07, 0x3A, 0x00, 0x08, 0x07, 0x3B, 0x07, 0x3C, + 0x00, 0x0D, 0x07, 0x3D, 0x07, 0x41, 0x00, 0x04, 0x07, 0x5C, 0x07, 0x5C, + 0x00, 0x04, 0x07, 0xF8, 0x07, 0xF8, 0x00, 0x07, 0x07, 0xF9, 0x07, 0xFA, + 0x00, 0x05, 0x07, 0xFB, 0x07, 0xFB, 0x00, 0x0E, 0x07, 0xFC, 0x07, 0xFC, + 0x00, 0x0B, 0x07, 0xFD, 0x07, 0xFD, 0x00, 0x0E, 0x07, 0xFE, 0x07, 0xFE, + 0x00, 0x0B, 0x08, 0x01, 0x08, 0x02, 0x00, 0x0A, 0x08, 0xCA, 0x08, 0xCA, + 0x00, 0x0C, 0x08, 0xCB, 0x08, 0xCC, 0x00, 0x07, 0x08, 0xCD, 0x08, 0xCE, + 0x00, 0x05, 0x08, 0xCF, 0x08, 0xCF, 0x00, 0x07, 0x08, 0xD1, 0x08, 0xD1, + 0x00, 0x18, 0x08, 0xD3, 0x08, 0xD3, 0x00, 0x05, 0x09, 0x0E, 0x09, 0x0F, + 0x00, 0x0A, 0x09, 0x10, 0x09, 0x10, 0x00, 0x0F, 0x09, 0x11, 0x09, 0x11, + 0x00, 0x29, 0x09, 0x12, 0x09, 0x12, 0x00, 0x0F, 0x09, 0x13, 0x09, 0x13, + 0x00, 0x29, 0x09, 0x14, 0x09, 0x15, 0x00, 0x0F, 0x0A, 0x15, 0x0A, 0x15, + 0x00, 0x05, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x03, 0x0B, 0x48, 0x0B, 0x48, + 0x00, 0x04, 0x00, 0x02, 0x00, 0x98, 0x01, 0x8A, 0x01, 0x8B, 0x00, 0x03, + 0x02, 0x65, 0x02, 0x65, 0x00, 0x0F, 0x03, 0x95, 0x03, 0x95, 0x00, 0x34, + 0x04, 0x09, 0x04, 0x09, 0x00, 0x0B, 0x05, 0x1B, 0x05, 0x1B, 0x00, 0x2D, + 0x05, 0x1C, 0x05, 0x1C, 0x00, 0x0F, 0x05, 0x25, 0x05, 0x25, 0x00, 0x03, + 0x05, 0x2D, 0x05, 0x2F, 0x00, 0x07, 0x05, 0x36, 0x05, 0x36, 0x00, 0x03, + 0x05, 0x39, 0x05, 0x3A, 0x00, 0x03, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x15, + 0x05, 0x3C, 0x05, 0x3C, 0x00, 0x20, 0x05, 0x3D, 0x05, 0x3D, 0x00, 0x40, + 0x05, 0x3F, 0x05, 0x3F, 0x00, 0x28, 0x05, 0x40, 0x05, 0x40, 0x00, 0x18, + 0x05, 0x43, 0x05, 0x43, 0x00, 0x15, 0x05, 0x44, 0x05, 0x44, 0x00, 0x37, + 0x05, 0x45, 0x05, 0x45, 0x00, 0x2E, 0x05, 0x47, 0x05, 0x47, 0x00, 0x15, + 0x05, 0x48, 0x05, 0x48, 0x00, 0x20, 0x05, 0x49, 0x05, 0x49, 0x00, 0x28, + 0x05, 0x4A, 0x05, 0x4A, 0x00, 0x18, 0x05, 0x4B, 0x05, 0x4B, 0x00, 0x3C, + 0x05, 0x4C, 0x05, 0x4C, 0x00, 0x1F, 0x05, 0x6F, 0x05, 0x6F, 0x00, 0x01, + 0x05, 0x80, 0x05, 0x83, 0x00, 0x02, 0x05, 0x84, 0x05, 0x85, 0x00, 0x01, + 0x05, 0x86, 0x05, 0x86, 0x00, 0x05, 0x05, 0x87, 0x05, 0x87, 0x00, 0x01, + 0x05, 0x88, 0x05, 0x89, 0x00, 0x02, 0x05, 0x8A, 0x05, 0x8A, 0x00, 0x01, + 0x05, 0x8B, 0x05, 0x8B, 0x00, 0x05, 0x05, 0x90, 0x05, 0x90, 0x00, 0x31, + 0x05, 0x95, 0x05, 0x95, 0x00, 0x14, 0x05, 0x98, 0x05, 0x98, 0x00, 0x1E, + 0x05, 0x99, 0x05, 0x99, 0x00, 0x14, 0x05, 0x9A, 0x05, 0x9A, 0x00, 0x1E, + 0x05, 0x9C, 0x05, 0x9C, 0x00, 0x11, 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x11, + 0x05, 0xA2, 0x05, 0xA2, 0x00, 0x11, 0x05, 0xA3, 0x05, 0xA3, 0x00, 0x07, + 0x05, 0xAD, 0x05, 0xAD, 0x00, 0x3F, 0x05, 0xAE, 0x05, 0xAE, 0x00, 0x03, + 0x05, 0xB0, 0x05, 0xB0, 0x00, 0x2B, 0x05, 0xB1, 0x05, 0xB1, 0x00, 0x01, + 0x05, 0xB6, 0x05, 0xBA, 0x00, 0x05, 0x05, 0xBB, 0x05, 0xBB, 0x00, 0x2C, + 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x01, 0x05, 0xC1, 0x05, 0xC2, 0x00, 0x05, + 0x05, 0xC8, 0x05, 0xC8, 0x00, 0x0E, 0x05, 0xC9, 0x05, 0xC9, 0x00, 0x0C, + 0x05, 0xCA, 0x05, 0xCB, 0x00, 0x0D, 0x05, 0xCC, 0x05, 0xCC, 0x00, 0x0E, + 0x05, 0xCD, 0x05, 0xCD, 0x00, 0x0C, 0x05, 0xCE, 0x05, 0xCF, 0x00, 0x0A, + 0x05, 0xD4, 0x05, 0xD4, 0x00, 0x0C, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x08, + 0x05, 0xDF, 0x05, 0xE2, 0x00, 0x06, 0x05, 0xE3, 0x05, 0xE3, 0x00, 0x01, + 0x05, 0xE4, 0x05, 0xE4, 0x00, 0x0D, 0x05, 0xE6, 0x05, 0xE6, 0x00, 0x1C, + 0x05, 0xE7, 0x05, 0xE7, 0x00, 0x1D, 0x05, 0xE8, 0x05, 0xE8, 0x00, 0x1C, + 0x05, 0xE9, 0x05, 0xE9, 0x00, 0x1D, 0x05, 0xEC, 0x05, 0xEF, 0x00, 0x02, + 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x01, 0x05, 0xF2, 0x05, 0xF2, 0x00, 0x05, + 0x05, 0xF3, 0x05, 0xF3, 0x00, 0x01, 0x05, 0xF4, 0x05, 0xF5, 0x00, 0x02, + 0x05, 0xF6, 0x05, 0xF6, 0x00, 0x01, 0x05, 0xF9, 0x05, 0xFC, 0x00, 0x02, + 0x05, 0xFD, 0x05, 0xFE, 0x00, 0x01, 0x05, 0xFF, 0x05, 0xFF, 0x00, 0x05, + 0x06, 0x00, 0x06, 0x00, 0x00, 0x01, 0x06, 0x01, 0x06, 0x02, 0x00, 0x02, + 0x06, 0x03, 0x06, 0x04, 0x00, 0x01, 0x06, 0x06, 0x06, 0x07, 0x00, 0x13, + 0x06, 0x08, 0x06, 0x09, 0x00, 0x10, 0x06, 0x0A, 0x06, 0x0A, 0x00, 0x05, + 0x06, 0x0B, 0x06, 0x0B, 0x00, 0x24, 0x06, 0x0C, 0x06, 0x0C, 0x00, 0x07, + 0x06, 0x0E, 0x06, 0x0E, 0x00, 0x24, 0x06, 0x0F, 0x06, 0x0F, 0x00, 0x13, + 0x06, 0x15, 0x06, 0x15, 0x00, 0x10, 0x06, 0x1A, 0x06, 0x1A, 0x00, 0x1F, + 0x06, 0x1B, 0x06, 0x1B, 0x00, 0x03, 0x06, 0x21, 0x06, 0x21, 0x00, 0x33, + 0x06, 0x3F, 0x06, 0x40, 0x00, 0x09, 0x06, 0x41, 0x06, 0x42, 0x00, 0x23, + 0x06, 0x43, 0x06, 0x43, 0x00, 0x41, 0x06, 0x44, 0x06, 0x45, 0x00, 0x2A, + 0x06, 0x46, 0x06, 0x47, 0x00, 0x1B, 0x06, 0x48, 0x06, 0x49, 0x00, 0x09, + 0x06, 0x4A, 0x06, 0x4A, 0x00, 0x3E, 0x06, 0x4B, 0x06, 0x4B, 0x00, 0x3A, + 0x06, 0x4C, 0x06, 0x4D, 0x00, 0x09, 0x06, 0x4E, 0x06, 0x4E, 0x00, 0x35, + 0x06, 0x50, 0x06, 0x50, 0x00, 0x17, 0x06, 0x52, 0x06, 0x52, 0x00, 0x17, + 0x06, 0x70, 0x06, 0x75, 0x00, 0x04, 0x06, 0x77, 0x06, 0x78, 0x00, 0x1A, + 0x06, 0x7A, 0x06, 0x7A, 0x00, 0x04, 0x06, 0x7B, 0x06, 0x7B, 0x00, 0x3D, + 0x06, 0x7C, 0x06, 0x7C, 0x00, 0x39, 0x06, 0x7D, 0x06, 0x81, 0x00, 0x04, + 0x06, 0x84, 0x06, 0x86, 0x00, 0x04, 0x06, 0x87, 0x06, 0x87, 0x00, 0x32, + 0x06, 0x88, 0x06, 0x89, 0x00, 0x16, 0x06, 0x8A, 0x06, 0x8B, 0x00, 0x21, + 0x06, 0x8D, 0x06, 0x8E, 0x00, 0x29, 0x06, 0x8F, 0x06, 0x90, 0x00, 0x19, + 0x06, 0x92, 0x06, 0x92, 0x00, 0x16, 0x06, 0x93, 0x06, 0x93, 0x00, 0x3B, + 0x06, 0x94, 0x06, 0x94, 0x00, 0x38, 0x06, 0x95, 0x06, 0x95, 0x00, 0x2F, + 0x06, 0x9D, 0x06, 0x9F, 0x00, 0x12, 0x06, 0xA3, 0x06, 0xA4, 0x00, 0x22, + 0x06, 0xAE, 0x06, 0xAE, 0x00, 0x30, 0x06, 0xFF, 0x06, 0xFF, 0x00, 0x03, + 0x07, 0x0B, 0x07, 0x0D, 0x00, 0x01, 0x07, 0x0E, 0x07, 0x0F, 0x00, 0x02, + 0x07, 0x33, 0x07, 0x33, 0x00, 0x0B, 0x07, 0x37, 0x07, 0x37, 0x00, 0x0B, + 0x07, 0x3A, 0x07, 0x3A, 0x00, 0x0B, 0x07, 0x3B, 0x07, 0x3C, 0x00, 0x07, + 0x07, 0x3D, 0x07, 0x41, 0x00, 0x03, 0x07, 0x55, 0x07, 0x55, 0x00, 0x36, + 0x07, 0x5C, 0x07, 0x5C, 0x00, 0x03, 0x07, 0xF8, 0x07, 0xF8, 0x00, 0x08, + 0x07, 0xF9, 0x07, 0xFA, 0x00, 0x06, 0x07, 0xFB, 0x07, 0xFB, 0x00, 0x0E, + 0x07, 0xFC, 0x07, 0xFC, 0x00, 0x0C, 0x07, 0xFD, 0x07, 0xFD, 0x00, 0x0E, + 0x07, 0xFE, 0x07, 0xFE, 0x00, 0x0C, 0x08, 0x01, 0x08, 0x02, 0x00, 0x0A, + 0x08, 0xCA, 0x08, 0xCA, 0x00, 0x0D, 0x08, 0xCB, 0x08, 0xCC, 0x00, 0x08, + 0x08, 0xCD, 0x08, 0xCE, 0x00, 0x06, 0x08, 0xCF, 0x08, 0xCF, 0x00, 0x08, + 0x08, 0xD1, 0x08, 0xD1, 0x00, 0x14, 0x08, 0xD2, 0x08, 0xD2, 0x00, 0x01, + 0x08, 0xD3, 0x08, 0xD3, 0x00, 0x06, 0x08, 0xD5, 0x08, 0xD5, 0x00, 0x06, + 0x09, 0x0E, 0x09, 0x0F, 0x00, 0x0A, 0x09, 0x10, 0x09, 0x10, 0x00, 0x25, + 0x09, 0x11, 0x09, 0x11, 0x00, 0x27, 0x09, 0x12, 0x09, 0x12, 0x00, 0x25, + 0x09, 0x13, 0x09, 0x13, 0x00, 0x27, 0x09, 0x14, 0x09, 0x15, 0x00, 0x26, + 0x0A, 0x15, 0x0A, 0x15, 0x00, 0x06, 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x05, + 0x0B, 0x48, 0x0B, 0x48, 0x00, 0x03, 0x00, 0x01, 0xFD, 0x8D, 0x06, 0x94, + 0x00, 0x01, 0x01, 0x1A, 0x00, 0x00, 0x00, 0x01, 0x01, 0xB7, 0x00, 0x00, + 0x00, 0x01, 0xFD, 0x9A, 0x07, 0x1A, 0x00, 0x01, 0xFD, 0x94, 0x07, 0xE2, + 0x00, 0x01, 0x01, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0xEE, 0x00, 0x00, + 0x00, 0x01, 0xFD, 0x89, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, + 0x00, 0x01, 0x00, 0xD7, 0x00, 0x00, 0x00, 0x01, 0xFD, 0x7F, 0x00, 0x00, + 0x00, 0x01, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x01, 0x00, 0xC0, 0x05, 0xE4, + 0x00, 0x01, 0x01, 0x76, 0x05, 0xE4, 0x00, 0x01, 0x02, 0x29, 0x05, 0xE4, + 0x00, 0x01, 0x01, 0xA9, 0x05, 0x9D, 0x00, 0x01, 0x01, 0xED, 0x05, 0xD2, + 0x00, 0x01, 0x00, 0xEF, 0x05, 0xD6, 0x00, 0x01, 0x00, 0xEE, 0x05, 0xE8, + 0x00, 0x01, 0x01, 0x9D, 0x05, 0xE4, 0x00, 0x01, 0x01, 0x9C, 0x05, 0xE4, + 0x00, 0x01, 0x01, 0x9C, 0x05, 0xCE, 0x00, 0x01, 0x02, 0x47, 0x05, 0xD6, + 0x00, 0x01, 0x02, 0x47, 0x05, 0xDF, 0x00, 0x01, 0x00, 0xC0, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x76, 0x04, 0x2E, 0x00, 0x01, 0x01, 0xED, 0x04, 0x2E, + 0x00, 0x01, 0x00, 0xEF, 0x04, 0x2E, 0x00, 0x01, 0x00, 0xEE, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x9D, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x9C, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x3D, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x13, 0x04, 0x2E, + 0x00, 0x01, 0x00, 0x95, 0x04, 0x2E, 0x00, 0x01, 0xFD, 0xAE, 0x05, 0x18, + 0x00, 0x01, 0xFD, 0xA9, 0x05, 0x18, 0x00, 0x01, 0x01, 0x3D, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x9B, 0x04, 0x2E, 0x00, 0x01, 0x01, 0xA9, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x29, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x47, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0xD4, 0x05, 0xD3, 0x00, 0x01, 0x02, 0x53, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xB8, 0x00, 0x00, 0x00, 0x01, 0x03, 0xCD, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xD7, 0x00, 0x00, 0x00, 0x01, 0x04, 0xEC, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xE4, 0x00, 0x00, 0x00, 0x01, 0x04, 0xF2, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xBB, 0x00, 0x00, 0x00, 0x01, 0x03, 0x8D, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x22, 0x00, 0x00, 0x00, 0x01, 0x02, 0x32, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x5E, 0x00, 0x00, 0x00, 0x01, 0x03, 0xA6, 0x04, 0x2E, + 0x00, 0x01, 0x05, 0x69, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFB, 0x04, 0x2E, + 0x00, 0x01, 0x06, 0x3F, 0x00, 0x00, 0x00, 0x01, 0x01, 0x89, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x3D, 0x03, 0x6C, 0x00, 0x01, 0x01, 0x89, 0xFE, 0xBC, + 0x00, 0x01, 0x01, 0x3D, 0xFE, 0xBC, 0x00, 0x01, 0x05, 0x04, 0xFF, 0xFD, + 0x00, 0x01, 0x01, 0x8D, 0x03, 0x8F, 0x00, 0x01, 0x05, 0x21, 0xFF, 0xFA, + 0x00, 0x01, 0x05, 0x0C, 0xFF, 0xFA, 0x00, 0x01, 0x06, 0x6D, 0xFF, 0xFF, + 0x00, 0x01, 0x05, 0x85, 0xFF, 0xFF, 0x00, 0x01, 0x03, 0xAD, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x7C, 0xFF, 0xFF, 0x00, 0x01, 0x03, 0xA4, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x3F, 0x00, 0x00, 0x00, 0x01, 0x02, 0x84, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x08, 0x00, 0x00, 0x00, 0x01, 0x01, 0xAE, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x65, 0x00, 0x00, 0x00, 0x01, 0x02, 0x7E, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xEF, 0x00, 0x00, 0x00, 0x01, 0x02, 0xD4, 0xFF, 0xFF, + 0x00, 0x01, 0x02, 0xFA, 0xFF, 0xFF, 0x00, 0x01, 0x06, 0xD4, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x88, 0x00, 0x00, 0x00, 0x01, 0x03, 0x51, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x66, 0x00, 0x00, 0x00, 0x01, 0x02, 0xDD, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x35, 0x00, 0x00, 0x00, 0x01, 0x02, 0x07, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xEC, 0x00, 0x00, 0x00, 0x01, 0x02, 0x83, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x60, 0x00, 0x00, 0x00, 0x01, 0x03, 0x71, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x89, 0x00, 0x00, 0x00, 0x01, 0x02, 0x45, 0x00, 0xD2, + 0x00, 0x01, 0x01, 0x8D, 0x03, 0x6C, 0x00, 0x01, 0x00, 0xBC, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x6E, 0x03, 0x6C, 0x00, 0x01, 0x01, 0x8D, 0xFE, 0xBC, + 0x00, 0x01, 0x00, 0xBC, 0xFE, 0xBC, 0x00, 0x01, 0x01, 0x6E, 0xFE, 0xBC, + 0x00, 0x01, 0x05, 0x95, 0x00, 0x00, 0x00, 0x01, 0x05, 0x92, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x91, 0x00, 0x00, 0x00, 0x01, 0x05, 0x89, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x04, 0x00, 0x00, 0x00, 0x01, 0x05, 0xCD, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x6C, 0x00, 0x00, 0x00, 0x01, 0x02, 0x14, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x47, 0x00, 0x00, 0x00, 0x01, 0x00, 0xFE, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x45, 0x00, 0x00, 0x00, 0x01, 0x00, 0xE8, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x7E, 0x00, 0x00, 0x00, 0x01, 0x05, 0x81, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x55, 0x00, 0x00, 0x00, 0x01, 0x06, 0x6A, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x62, 0x00, 0x00, 0x00, 0x01, 0x06, 0x71, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xE1, 0x00, 0x00, 0x00, 0x01, 0x05, 0xF1, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x51, 0x05, 0xD2, 0x00, 0x01, 0x05, 0xA0, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xB5, 0x00, 0x00, 0x00, 0x01, 0x06, 0xBF, 0x00, 0x00, + 0x00, 0x01, 0x06, 0xCC, 0x00, 0x00, 0x00, 0x01, 0x06, 0xDA, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xA3, 0x00, 0x00, 0x00, 0x01, 0x05, 0x75, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xBE, 0x00, 0x00, 0x00, 0x01, 0x02, 0xA3, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xC1, 0x00, 0x00, 0x00, 0x01, 0x03, 0xD6, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xDD, 0x00, 0x00, 0x00, 0x01, 0x03, 0x5D, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xA5, 0x00, 0x00, 0x00, 0x01, 0x02, 0x77, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x21, 0x00, 0x00, 0x00, 0x01, 0x05, 0x55, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x4D, 0x00, 0x00, 0x00, 0x01, 0x04, 0xCC, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xDB, 0x00, 0x00, 0x00, 0x01, 0x03, 0xF0, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xF6, 0x00, 0x00, 0x00, 0x01, 0x06, 0x79, 0x02, 0xE8, + 0x00, 0x01, 0x06, 0x8D, 0x02, 0xE8, 0x00, 0x01, 0x07, 0x98, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xAC, 0x02, 0xE8, 0x00, 0x01, 0x07, 0xA5, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xB3, 0x02, 0xE8, 0x00, 0x01, 0x06, 0x4D, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xB5, 0x00, 0x00, 0x00, 0x01, 0x05, 0x33, 0x01, 0xFF, + 0x00, 0x01, 0x04, 0xDA, 0x00, 0x00, 0x00, 0x01, 0x05, 0xF9, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x00, 0x00, 0x00, 0x00, 0x01, 0x04, 0x9A, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x7D, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x29, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x5D, 0x00, 0x00, 0x00, 0x01, 0x04, 0x5C, 0x01, 0x9C, + 0x00, 0x01, 0x02, 0x91, 0x00, 0x00, 0x00, 0x01, 0x01, 0xBC, 0x04, 0x2E, + 0x00, 0x01, 0x06, 0x33, 0x02, 0x14, 0x00, 0x01, 0x03, 0x1B, 0x02, 0x8F, + 0x00, 0x01, 0x03, 0x75, 0x04, 0x33, 0x00, 0x01, 0x02, 0x9B, 0x03, 0x6C, + 0x00, 0x01, 0x02, 0xBF, 0x04, 0x1E, 0x00, 0x01, 0x01, 0x1A, 0x03, 0x6C, + 0x00, 0x01, 0x02, 0xDC, 0x04, 0x92, 0x00, 0x01, 0x02, 0xC9, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0xE3, 0x03, 0x6C, 0x00, 0x01, 0x02, 0x9B, 0xFE, 0xBC, + 0x00, 0x01, 0x02, 0xBF, 0xFF, 0x6E, 0x00, 0x01, 0x01, 0x1A, 0xFE, 0xBC, + 0x00, 0x01, 0x02, 0xDC, 0xFF, 0xE2, 0x00, 0x01, 0x02, 0xC9, 0xFE, 0xBC, + 0x00, 0x01, 0x01, 0xE3, 0xFE, 0xBC, 0x00, 0x01, 0x02, 0xD0, 0x03, 0x84, + 0x00, 0x01, 0x06, 0x77, 0x00, 0x00, 0x00, 0x01, 0x06, 0x66, 0x01, 0x26, + 0x00, 0x01, 0x02, 0x9B, 0x03, 0x92, 0x00, 0x01, 0x04, 0x37, 0x02, 0xB2, + 0x00, 0x01, 0x08, 0x35, 0x00, 0x00, 0x00, 0x01, 0x07, 0x7D, 0x00, 0x00, + 0x00, 0x01, 0x08, 0x3A, 0x02, 0xE8, 0x00, 0x01, 0x08, 0x39, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xDF, 0x01, 0xFF, 0x00, 0x01, 0x05, 0xFF, 0x00, 0x00, + 0x00, 0x01, 0x08, 0x2C, 0x00, 0x00, 0x00, 0x01, 0x07, 0x7A, 0x00, 0x00, + 0x00, 0x01, 0x08, 0x31, 0x02, 0xE8, 0x00, 0x01, 0x08, 0x30, 0x02, 0xE8, + 0x00, 0x01, 0x07, 0xD6, 0x01, 0xFF, 0x00, 0x01, 0x05, 0xF6, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x5B, 0x00, 0x00, 0x00, 0x01, 0x05, 0x28, 0x01, 0xFF, + 0x00, 0x01, 0x03, 0xD0, 0x00, 0x00, 0x00, 0x01, 0x04, 0x19, 0x01, 0x35, + 0x00, 0x01, 0x04, 0x10, 0x00, 0x00, 0x00, 0x01, 0x02, 0x90, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x6C, 0x00, 0x00, 0x00, 0x01, 0x05, 0xAD, 0x02, 0xE8, + 0x00, 0x01, 0x02, 0xB9, 0x00, 0x00, 0x00, 0x01, 0x02, 0x5B, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x32, 0x00, 0x00, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x12, 0x00, 0x00, 0x00, 0x01, 0x03, 0x1B, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x3D, 0x00, 0x00, 0x00, 0x01, 0x05, 0x4B, 0x01, 0x35, + 0x00, 0x01, 0x03, 0x23, 0x00, 0x09, 0x00, 0x01, 0x05, 0x39, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x44, 0x02, 0x14, 0x00, 0x01, 0x04, 0x10, 0x01, 0x9C, + 0x00, 0x01, 0x06, 0xDD, 0x00, 0x00, 0x00, 0x01, 0x01, 0x6E, 0x00, 0x00, + 0x00, 0x01, 0x06, 0xCD, 0x00, 0x00, 0x00, 0x01, 0x05, 0x56, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x53, 0x00, 0x00, 0x00, 0x01, 0x03, 0xB1, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x40, 0x00, 0x00, 0x00, 0x01, 0x03, 0xCF, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x4D, 0x00, 0x00, 0x00, 0x01, 0x04, 0x36, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x80, 0x00, 0x00, 0x00, 0x01, 0x01, 0x49, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xB7, 0x00, 0x00, 0x00, 0x01, 0x02, 0xDE, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xB6, 0x00, 0x00, 0x00, 0x01, 0x03, 0xCA, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x01, 0x03, 0xD1, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x41, 0x00, 0x00, 0x00, 0x01, 0x02, 0xA0, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xBE, 0x00, 0x00, 0x00, 0x01, 0x03, 0x9F, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xC6, 0x00, 0x00, 0x00, 0x01, 0x04, 0xD0, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xE5, 0x00, 0x00, 0x00, 0x01, 0x04, 0xDD, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xEB, 0x00, 0x00, 0x00, 0x01, 0x03, 0xB4, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x86, 0x00, 0x00, 0x00, 0x01, 0x02, 0x19, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x04, 0x00, 0x00, 0x00, 0x01, 0x04, 0x17, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xE9, 0x00, 0x00, 0x00, 0x01, 0x04, 0x14, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x29, 0x00, 0x00, 0x00, 0x01, 0x05, 0x33, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x48, 0x00, 0x00, 0x00, 0x01, 0x05, 0x4E, 0x00, 0x00, + 0x00, 0x01, 0x04, 0xBF, 0x00, 0x00, 0x00, 0x01, 0x04, 0xCE, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x4E, 0x00, 0x00, 0x00, 0x01, 0x02, 0x33, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x5F, 0x00, 0x00, 0x00, 0x01, 0x03, 0x6D, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xED, 0x00, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x0A, 0x00, 0x00, 0x00, 0x01, 0x04, 0x1F, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x18, 0x00, 0x00, 0x00, 0x01, 0x04, 0x26, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x96, 0x00, 0x00, 0x00, 0x01, 0x03, 0xA6, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xBA, 0x00, 0x00, 0x00, 0x01, 0x02, 0xC0, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xE3, 0x00, 0x00, 0x00, 0x01, 0x04, 0xED, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x02, 0x00, 0x00, 0x00, 0x01, 0x04, 0xFA, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x09, 0x00, 0x00, 0x00, 0x01, 0x03, 0xA3, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xC6, 0x00, 0x00, 0x00, 0x01, 0x02, 0x98, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xE4, 0x00, 0x00, 0x00, 0x01, 0x04, 0x6B, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x8A, 0x00, 0x00, 0x00, 0x01, 0x05, 0x11, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x42, 0x00, 0x00, 0x00, 0x01, 0x04, 0x2B, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x4F, 0x00, 0x00, 0x00, 0x01, 0x02, 0x78, 0x00, 0x00, + 0x00, 0x01, 0x06, 0xB4, 0x00, 0x00, 0x00, 0x01, 0x01, 0x3D, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x33, 0x00, 0x00, 0x00, 0x01, 0x02, 0x27, 0x00, 0x00, + 0x00, 0x01, 0x00, 0xAF, 0xFE, 0x40, 0x00, 0x01, 0x01, 0x2D, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x75, 0xFE, 0x8C, 0x00, 0x01, 0x01, 0x5B, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xA1, 0x00, 0x00, 0x00, 0x01, 0x01, 0x8E, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x66, 0x00, 0x00, 0x00, 0x01, 0x00, 0xE9, 0xFE, 0x5F, + 0x00, 0x01, 0x03, 0xC8, 0xFE, 0x5F, 0x00, 0x01, 0x01, 0x74, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x79, 0xFE, 0xE5, 0x00, 0x01, 0x02, 0x9C, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x93, 0x00, 0x00, 0x00, 0x01, 0x03, 0x24, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x24, 0x00, 0x00, 0x00, 0x01, 0x03, 0xA9, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xC7, 0x00, 0x00, 0x00, 0x01, 0x03, 0xD4, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xE8, 0x00, 0x00, 0x00, 0x01, 0x04, 0xF3, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x07, 0x00, 0x00, 0x00, 0x01, 0x05, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x0E, 0x00, 0x00, 0x00, 0x01, 0x04, 0x7F, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x8E, 0x00, 0x00, 0x00, 0x01, 0x02, 0xFE, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x0A, 0x00, 0x00, 0x00, 0x01, 0x02, 0x62, 0x00, 0x00, + 0x00, 0x01, 0x06, 0x23, 0x00, 0x00, 0x00, 0x01, 0x01, 0x39, 0x00, 0x00, + 0x00, 0x01, 0x01, 0xB7, 0x02, 0x8F, 0x00, 0x01, 0x01, 0xD6, 0x02, 0x8F, + 0x00, 0x01, 0x01, 0x78, 0x03, 0x6C, 0x00, 0x01, 0x01, 0xA1, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x92, 0x03, 0x6C, 0x00, 0x01, 0x00, 0xF9, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x92, 0x02, 0x85, 0x00, 0x01, 0x00, 0xBD, 0x03, 0x6C, + 0x00, 0x01, 0x00, 0x9A, 0x02, 0x89, 0x00, 0x01, 0x01, 0x85, 0x03, 0x6C, + 0x00, 0x01, 0x02, 0x4E, 0x03, 0x6C, 0x00, 0x01, 0x01, 0x94, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x8F, 0x03, 0x6C, 0x00, 0x01, 0x00, 0xBC, 0x02, 0x89, + 0x00, 0x01, 0x02, 0x78, 0x02, 0x89, 0x00, 0x01, 0x01, 0x6D, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x26, 0x03, 0x6C, 0x00, 0x01, 0x01, 0x9D, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x82, 0x03, 0x6C, 0x00, 0x01, 0x02, 0x25, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x76, 0x03, 0x6C, 0x00, 0x01, 0x02, 0x50, 0x03, 0x6C, + 0x00, 0x01, 0x01, 0x78, 0xFE, 0xBC, 0x00, 0x01, 0x01, 0xA1, 0xFE, 0xBC, + 0x00, 0x01, 0x01, 0x92, 0xFE, 0xBC, 0x00, 0x01, 0x00, 0xF9, 0xFE, 0xBC, + 0x00, 0x01, 0x01, 0x92, 0xFD, 0xD5, 0x00, 0x01, 0x00, 0xBD, 0xFE, 0xBC, + 0x00, 0x01, 0x01, 0x85, 0xFE, 0xBC, 0x00, 0x01, 0x02, 0x4E, 0xFE, 0xBC, + 0x00, 0x01, 0x01, 0x94, 0xFE, 0xBC, 0x00, 0x01, 0x01, 0x8F, 0xFE, 0xBC, + 0x00, 0x01, 0x00, 0xBC, 0xFD, 0xD9, 0x00, 0x01, 0x02, 0x78, 0xFD, 0xD9, + 0x00, 0x01, 0x01, 0x6D, 0xFE, 0xBC, 0x00, 0x01, 0x01, 0x26, 0xFE, 0xBC, + 0x00, 0x01, 0x01, 0x9D, 0xFE, 0xBC, 0x00, 0x01, 0x01, 0x82, 0xFE, 0xBC, + 0x00, 0x01, 0x02, 0x25, 0xFE, 0xBC, 0x00, 0x01, 0x01, 0x76, 0xFE, 0xBC, + 0x00, 0x01, 0x02, 0x50, 0xFE, 0xBC, 0x00, 0x01, 0x04, 0x77, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x14, 0x02, 0xB2, 0x00, 0x01, 0x05, 0x94, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x3F, 0x00, 0x00, 0x00, 0x01, 0x05, 0x96, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xA7, 0x00, 0x00, 0x00, 0x01, 0x05, 0xB4, 0x00, 0x00, + 0x00, 0x01, 0x05, 0xA8, 0x00, 0x00, 0x00, 0x01, 0x05, 0x8F, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x90, 0x00, 0x00, 0x00, 0x01, 0x05, 0x8E, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x8C, 0x00, 0x00, 0x00, 0x01, 0x05, 0x1D, 0x00, 0x00, + 0x00, 0x01, 0x04, 0x37, 0x00, 0x00, 0x00, 0x01, 0x05, 0x71, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x8B, 0x00, 0x00, 0x00, 0x01, 0x05, 0x9F, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x86, 0x00, 0x00, 0x00, 0x01, 0x05, 0x87, 0x00, 0x00, + 0x00, 0x01, 0x05, 0x85, 0x00, 0x00, 0x00, 0x01, 0x02, 0xBB, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x01, 0x02, 0xD9, 0x00, 0x00, + 0x00, 0x01, 0x03, 0xE5, 0x00, 0x00, 0x00, 0x01, 0x02, 0x7F, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x1E, 0x00, 0x00, 0x00, 0x01, 0x02, 0x70, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x39, 0x00, 0x00, 0x00, 0x01, 0x01, 0x3E, 0x00, 0x00, + 0x00, 0x01, 0x00, 0xFE, 0xFE, 0x30, 0x00, 0x01, 0x00, 0xE7, 0xFE, 0x5F, + 0x00, 0x01, 0x02, 0x25, 0x00, 0x00, 0x00, 0x01, 0x03, 0x25, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x01, 0x02, 0x05, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x7D, 0x00, 0x00, 0x00, 0x01, 0x02, 0xE5, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x83, 0x00, 0x00, 0x00, 0x01, 0x01, 0xA7, 0xFE, 0x34, + 0x00, 0x01, 0x02, 0xF9, 0x00, 0x00, 0x00, 0x01, 0x02, 0xFA, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xAD, 0x00, 0x00, 0x00, 0x01, 0x02, 0x97, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x8A, 0x00, 0x00, 0x00, 0x01, 0x02, 0x34, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x27, 0x00, 0x00, 0x00, 0x01, 0x02, 0x46, 0x00, 0x00, + 0x00, 0x01, 0x01, 0x92, 0x00, 0x00, 0x00, 0x01, 0x02, 0xAA, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x51, 0x00, 0x00, 0x00, 0x01, 0x02, 0xE6, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x49, 0x00, 0x00, 0x00, 0x01, 0x02, 0x67, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x4D, 0xFE, 0x51, 0x00, 0x01, 0x01, 0x79, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x4B, 0x00, 0x00, 0x00, 0x01, 0x03, 0x03, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x82, 0x00, 0x00, 0x00, 0x01, 0x02, 0xAC, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xF7, 0x00, 0x00, 0x00, 0x01, 0x02, 0xE1, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xC5, 0x00, 0x00, 0x00, 0x01, 0x02, 0xE2, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x5D, 0x00, 0x00, 0x00, 0x01, 0x04, 0xCF, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x1A, 0x00, 0x00, 0x00, 0x01, 0x02, 0x52, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x4F, 0x00, 0x00, 0x00, 0x01, 0x02, 0x41, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x29, 0x00, 0x00, 0x00, 0x01, 0x02, 0xAF, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x50, 0x00, 0x00, 0x00, 0x01, 0x02, 0x63, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x84, 0x00, 0x00, 0x00, 0x01, 0x00, 0xDE, 0x00, 0x00, + 0x00, 0x01, 0x02, 0x1D, 0x00, 0x00, 0x00, 0x01, 0x02, 0x11, 0x00, 0x00, + 0x00, 0x01, 0x00, 0xE7, 0x00, 0x00, 0x00, 0x01, 0x03, 0x72, 0x00, 0x00, + 0x00, 0x01, 0x02, 0xBC, 0x07, 0x77, 0x00, 0x01, 0x02, 0xBB, 0x07, 0x85, + 0x00, 0x01, 0x02, 0xBB, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xBB, 0x08, 0xAF, + 0x00, 0x01, 0x02, 0xBB, 0x08, 0xAD, 0x00, 0x01, 0x02, 0xBB, 0x08, 0xD5, + 0x00, 0x01, 0x02, 0xBC, 0x07, 0x72, 0x00, 0x01, 0x02, 0xBB, 0x08, 0x9C, + 0x00, 0x01, 0x02, 0xBB, 0x07, 0x41, 0x00, 0x01, 0x02, 0xBB, 0x07, 0x83, + 0x00, 0x01, 0x02, 0xDE, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xE2, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xB6, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xCA, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xC3, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xD1, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x2B, 0x07, 0x41, 0x00, 0x01, 0x05, 0x2B, 0x07, 0x89, + 0x00, 0x01, 0x05, 0x2B, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x7B, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0x9A, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xB7, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xFC, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xD3, 0x00, 0x00, + 0x00, 0x01, 0x03, 0x8B, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x4F, 0x07, 0x89, + 0x00, 0x01, 0x02, 0x4F, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x7D, 0x07, 0x41, + 0x00, 0x01, 0x02, 0x7D, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x7D, 0x07, 0x85, + 0x00, 0x01, 0x02, 0x7D, 0x07, 0x77, 0x00, 0x01, 0x02, 0x7D, 0x08, 0xAF, + 0x00, 0x01, 0x02, 0x7D, 0x08, 0xAD, 0x00, 0x01, 0x03, 0xB1, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xC6, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xD0, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0xE5, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xDD, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0xEB, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xB4, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x86, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x7D, 0x07, 0x83, + 0x00, 0x01, 0x02, 0x6F, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x6E, 0x07, 0x8C, + 0x00, 0x01, 0x03, 0x73, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xFA, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xFA, 0x07, 0x89, 0x00, 0x01, 0x02, 0xFA, 0x07, 0x41, + 0x00, 0x01, 0x02, 0xFB, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xFC, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xFC, 0x07, 0x41, 0x00, 0x01, 0x02, 0xE0, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xE0, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xE0, 0x07, 0x83, + 0x00, 0x01, 0x03, 0x04, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x17, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x14, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x29, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x33, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x48, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x40, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x4E, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0xBF, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xCE, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0xFA, 0x05, 0xD2, 0x00, 0x01, 0x00, 0xFF, 0x07, 0x77, + 0x00, 0x01, 0x00, 0xFE, 0x07, 0x8C, 0x00, 0x01, 0x00, 0xFE, 0x07, 0x85, + 0x00, 0x01, 0x02, 0x33, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x52, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x66, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x5F, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x6D, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xDD, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xED, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x35, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x07, 0x05, 0xD2, 0x00, 0x01, 0x00, 0xFE, 0x07, 0x83, + 0x00, 0x01, 0x01, 0x83, 0x07, 0x77, 0x00, 0x01, 0x01, 0x83, 0x07, 0x8C, + 0x00, 0x01, 0x01, 0x83, 0x07, 0x85, 0x00, 0x01, 0x02, 0xEC, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x00, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x0A, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x1F, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x18, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x26, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x96, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xA6, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x83, 0x07, 0x89, + 0x00, 0x01, 0x01, 0x83, 0x07, 0x41, 0x00, 0x01, 0x02, 0xBA, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xC0, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x83, 0x07, 0x83, + 0x00, 0x01, 0x03, 0x6F, 0x07, 0x89, 0x00, 0x01, 0x03, 0x6F, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xAD, 0x07, 0x89, 0x00, 0x01, 0x00, 0xFE, 0x07, 0x89, + 0x00, 0x01, 0x01, 0x41, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x45, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x84, 0x07, 0x89, 0x00, 0x01, 0x03, 0x83, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xE6, 0x07, 0x77, 0x00, 0x01, 0x02, 0xE6, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xE6, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xEA, 0x07, 0x41, + 0x00, 0x01, 0x02, 0xEA, 0x07, 0x83, 0x00, 0x01, 0x02, 0xEA, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xEA, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x03, 0x07, 0x41, + 0x00, 0x01, 0x03, 0x03, 0x07, 0x85, 0x00, 0x01, 0x03, 0x03, 0x07, 0x8C, + 0x00, 0x01, 0x03, 0x03, 0x08, 0xAF, 0x00, 0x01, 0x03, 0x03, 0x08, 0xAD, + 0x00, 0x01, 0x03, 0x03, 0x07, 0x77, 0x00, 0x01, 0x03, 0xCF, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xE3, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xED, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x02, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xFA, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xA3, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x03, 0x07, 0x83, + 0x00, 0x01, 0x05, 0xC6, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x76, 0x07, 0x89, + 0x00, 0x01, 0x02, 0x75, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x78, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xB2, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xDC, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x8A, 0x07, 0x89, 0x00, 0x01, 0x02, 0x8A, 0x07, 0x85, + 0x00, 0x01, 0x02, 0x8A, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x8C, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x83, 0x07, 0x89, 0x00, 0x01, 0x02, 0x83, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0x82, 0x07, 0x89, 0x00, 0x01, 0x02, 0x82, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xA1, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x84, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xD9, 0x07, 0x83, 0x00, 0x01, 0x02, 0xD9, 0x07, 0x41, + 0x00, 0x01, 0x02, 0xD9, 0x07, 0x85, 0x00, 0x01, 0x02, 0xD9, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xD9, 0x07, 0x77, 0x00, 0x01, 0x02, 0xE4, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xB8, 0x07, 0x77, 0x00, 0x01, 0x03, 0xE5, 0x07, 0x89, + 0x00, 0x01, 0x03, 0xE5, 0x07, 0x83, 0x00, 0x01, 0x03, 0xE5, 0x07, 0x8C, + 0x00, 0x01, 0x02, 0xAF, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xAF, 0x07, 0x83, + 0x00, 0x01, 0x02, 0xAB, 0x07, 0x8C, 0x00, 0x01, 0x02, 0xAB, 0x07, 0x77, + 0x00, 0x01, 0x02, 0xAB, 0x07, 0x83, 0x00, 0x01, 0x04, 0x6A, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x89, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x10, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xAB, 0x07, 0x89, 0x00, 0x01, 0x02, 0xAB, 0x07, 0x41, + 0x00, 0x01, 0x03, 0x41, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x2A, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x80, 0x07, 0x8C, 0x00, 0x01, 0x02, 0x80, 0x07, 0x89, + 0x00, 0x01, 0x02, 0x1F, 0x07, 0x31, 0x00, 0x01, 0x02, 0x20, 0x05, 0xCE, + 0x00, 0x01, 0x02, 0x1F, 0x06, 0xF8, 0x00, 0x01, 0x02, 0x1F, 0x07, 0x0A, + 0x00, 0x01, 0x02, 0x1F, 0x07, 0x09, 0x00, 0x01, 0x02, 0x1F, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x1F, 0x05, 0xE1, 0x00, 0x01, 0x02, 0x1F, 0x05, 0x9D, + 0x00, 0x01, 0x02, 0x20, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x58, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x1F, 0x05, 0xDF, 0x00, 0x01, 0x03, 0x71, 0x05, 0x9D, + 0x00, 0x01, 0x03, 0x71, 0x05, 0xE4, 0x00, 0x01, 0x02, 0x46, 0x07, 0x31, + 0x00, 0x01, 0x02, 0x47, 0x05, 0xCE, 0x00, 0x01, 0x02, 0x46, 0x06, 0xF8, + 0x00, 0x01, 0x02, 0x46, 0x07, 0x0A, 0x00, 0x01, 0x02, 0x46, 0x07, 0x09, + 0x00, 0x01, 0x02, 0x46, 0x05, 0xDF, 0x00, 0x01, 0x02, 0x46, 0x05, 0xE1, + 0x00, 0x01, 0x02, 0x46, 0x05, 0x9D, 0x00, 0x01, 0x02, 0x46, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x96, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xA9, 0x06, 0xB7, + 0x00, 0x01, 0x02, 0x45, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x45, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x05, 0x06, 0xB7, 0x00, 0x01, 0x02, 0x39, 0x05, 0x9D, + 0x00, 0x01, 0x02, 0x39, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x39, 0x05, 0xE1, + 0x00, 0x01, 0x02, 0x3A, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x39, 0x07, 0x0A, + 0x00, 0x01, 0x02, 0x39, 0x07, 0x09, 0x00, 0x01, 0x02, 0x39, 0x05, 0xDF, + 0x00, 0x01, 0x01, 0x88, 0x05, 0xE0, 0x00, 0x01, 0x01, 0x33, 0x05, 0xE0, + 0x00, 0x01, 0x01, 0x7E, 0x05, 0xE0, 0x00, 0x01, 0x01, 0x32, 0x07, 0x9A, + 0x00, 0x01, 0x01, 0x88, 0x07, 0x9A, 0x00, 0x01, 0x02, 0x40, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x40, 0x05, 0xE4, 0x00, 0x01, 0x02, 0x40, 0x05, 0x9D, + 0x00, 0x01, 0x00, 0xE7, 0x07, 0x8C, 0x00, 0x01, 0x00, 0xE8, 0x07, 0x83, + 0x00, 0x01, 0x01, 0xD1, 0x04, 0x2E, 0x00, 0x01, 0x00, 0xE8, 0x05, 0x9D, + 0x00, 0x01, 0x00, 0xE8, 0x05, 0xE4, 0x00, 0x01, 0x00, 0xE8, 0x05, 0xE1, + 0x00, 0x01, 0x00, 0xE8, 0x05, 0xDF, 0x00, 0x01, 0x00, 0xE8, 0x05, 0xE8, + 0x00, 0x01, 0x01, 0x2D, 0x04, 0x2E, 0x00, 0x01, 0x01, 0xF1, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xF1, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x3C, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x1C, 0x05, 0xD2, 0x00, 0x01, 0x01, 0x62, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x4F, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x21, 0x05, 0xD2, + 0x00, 0x01, 0x00, 0xE8, 0x07, 0x89, 0x00, 0x01, 0x03, 0x71, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x73, 0x05, 0xE4, 0x00, 0x01, 0x03, 0x72, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x46, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x66, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x47, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x47, 0x07, 0x0A, + 0x00, 0x01, 0x02, 0x47, 0x07, 0x09, 0x00, 0x01, 0x02, 0x48, 0x05, 0xCC, + 0x00, 0x01, 0x02, 0x8E, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x8C, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x8B, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x8C, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x57, 0x04, 0x2E, 0x00, 0x01, 0x01, 0xE3, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x8C, 0x05, 0xE4, 0x00, 0x01, 0x01, 0x8C, 0x05, 0xE1, + 0x00, 0x01, 0x01, 0x8C, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x04, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x04, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x02, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x42, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x30, 0x07, 0x03, + 0x00, 0x01, 0x01, 0x31, 0x06, 0xFA, 0x00, 0x01, 0x00, 0xE8, 0x07, 0x03, + 0x00, 0x01, 0x00, 0xE8, 0x06, 0xFA, 0x00, 0x01, 0x02, 0x47, 0x05, 0xE1, + 0x00, 0x01, 0x02, 0x47, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x26, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0x25, 0x05, 0xDF, 0x00, 0x01, 0x03, 0x24, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x25, 0x05, 0xE4, 0x00, 0x01, 0x03, 0x25, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x1A, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x1A, 0x05, 0xDF, + 0x00, 0x01, 0x02, 0x23, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x21, 0x05, 0xE8, + 0x00, 0x01, 0x02, 0x22, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x21, 0x05, 0x9D, + 0x00, 0x01, 0x02, 0x21, 0x05, 0xDF, 0x00, 0x01, 0x03, 0x17, 0x05, 0xD0, + 0x00, 0x01, 0x02, 0x7B, 0x07, 0x41, 0x00, 0x01, 0x02, 0x7B, 0x07, 0x83, + 0x00, 0x01, 0x02, 0x05, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x05, 0x05, 0xE4, + 0x00, 0x01, 0x03, 0xA9, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xC7, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xD4, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xE9, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0xF3, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x08, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x00, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x0E, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x7F, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x8E, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xFE, 0x05, 0xD2, 0x00, 0x01, 0x03, 0xF6, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x98, 0x07, 0x83, 0x00, 0x01, 0x03, 0xD5, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x98, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x4A, 0x05, 0xD2, + 0x00, 0x01, 0x00, 0xFD, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x81, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xC5, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x51, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xC5, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x0A, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xE1, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xC6, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x49, 0x05, 0xE4, 0x00, 0x01, 0x02, 0x49, 0x05, 0x9D, + 0x00, 0x01, 0x01, 0xFC, 0x04, 0x2E, 0x00, 0x01, 0x00, 0xE7, 0x05, 0xDF, + 0x00, 0x01, 0x00, 0xE7, 0x05, 0xE4, 0x00, 0x01, 0x00, 0xE7, 0x05, 0x9D, + 0x00, 0x01, 0x02, 0x71, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x47, 0x05, 0x9D, + 0x00, 0x01, 0x03, 0x32, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x4E, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0xE3, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x76, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x3C, 0x04, 0x2E, 0x00, 0x01, 0x02, 0xDB, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x93, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x13, 0x04, 0x2E, + 0x00, 0x01, 0x04, 0x36, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x45, 0x05, 0x00, + 0x00, 0x01, 0x02, 0xF9, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xAA, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x52, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x85, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x73, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x8F, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x95, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x91, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0xB8, 0x05, 0xDB, 0x00, 0x01, 0x01, 0xD6, 0x05, 0xDB, + 0x00, 0x01, 0x01, 0x7A, 0x05, 0xBA, 0x00, 0x01, 0x01, 0xE9, 0x06, 0x33, + 0x00, 0x01, 0x01, 0x8D, 0x05, 0xBA, 0x00, 0x01, 0x01, 0x4A, 0x06, 0x33, + 0x00, 0x01, 0x01, 0x85, 0x05, 0xBA, 0x00, 0x01, 0x01, 0x22, 0x06, 0xA8, + 0x00, 0x01, 0x00, 0xBB, 0x06, 0x9D, 0x00, 0x01, 0x00, 0xBC, 0x06, 0xB9, + 0x00, 0x01, 0x00, 0xBD, 0x06, 0xB9, 0x00, 0x01, 0x00, 0xBC, 0x06, 0x9D, + 0x00, 0x01, 0x02, 0x4E, 0x05, 0xBA, 0x00, 0x01, 0x01, 0x8F, 0x05, 0xBA, + 0x00, 0x01, 0x01, 0xB0, 0x05, 0xBA, 0x00, 0x01, 0x01, 0x9A, 0x05, 0xBA, + 0x00, 0x01, 0x01, 0x27, 0x05, 0xBA, 0x00, 0x01, 0x01, 0x6D, 0x05, 0xBA, + 0x00, 0x01, 0x00, 0xED, 0x06, 0x54, 0x00, 0x01, 0x01, 0x94, 0x05, 0xBA, + 0x00, 0x01, 0x01, 0x82, 0x05, 0xBA, 0x00, 0x01, 0x02, 0x26, 0x05, 0xBA, + 0x00, 0x01, 0x01, 0x76, 0x05, 0xBA, 0x00, 0x01, 0x01, 0x7B, 0x05, 0xBA, + 0x00, 0x01, 0x01, 0x6E, 0x05, 0xBA, 0x00, 0x01, 0x01, 0xBA, 0x06, 0x9D, + 0x00, 0x01, 0x01, 0x9A, 0x06, 0x9D, 0x00, 0x01, 0x01, 0xAE, 0x06, 0x9D, + 0x00, 0x01, 0x01, 0x7A, 0x01, 0x0A, 0x00, 0x01, 0x01, 0xE9, 0x01, 0x83, + 0x00, 0x01, 0x01, 0x8D, 0x01, 0x0A, 0x00, 0x01, 0x01, 0x4A, 0x01, 0x83, + 0x00, 0x01, 0x01, 0x85, 0x01, 0x0A, 0x00, 0x01, 0x01, 0x22, 0x01, 0xF8, + 0x00, 0x01, 0x00, 0xBB, 0x01, 0xED, 0x00, 0x01, 0x00, 0xBC, 0x02, 0x09, + 0x00, 0x01, 0x00, 0xBC, 0x01, 0xED, 0x00, 0x01, 0x02, 0x4E, 0x01, 0x0A, + 0x00, 0x01, 0x01, 0x8F, 0x01, 0x0A, 0x00, 0x01, 0x01, 0xB0, 0x01, 0x0A, + 0x00, 0x01, 0x01, 0x9A, 0x01, 0x0A, 0x00, 0x01, 0x01, 0x27, 0x01, 0x0A, + 0x00, 0x01, 0x01, 0x6D, 0x01, 0x0A, 0x00, 0x01, 0x00, 0xED, 0x01, 0xA4, + 0x00, 0x01, 0x01, 0x94, 0x01, 0x0A, 0x00, 0x01, 0x01, 0x82, 0x01, 0x0A, + 0x00, 0x01, 0x02, 0x26, 0x01, 0x0A, 0x00, 0x01, 0x01, 0x76, 0x01, 0x0A, + 0x00, 0x01, 0x01, 0x7B, 0x01, 0x0A, 0x00, 0x01, 0x01, 0x6E, 0x01, 0x0A, + 0x00, 0x01, 0x01, 0xBA, 0x01, 0xED, 0x00, 0x01, 0x01, 0x9A, 0x01, 0xED, + 0x00, 0x01, 0x01, 0xAE, 0x01, 0xED, 0x00, 0x01, 0x01, 0x8D, 0x03, 0x31, + 0x00, 0x01, 0x01, 0x6F, 0x03, 0x31, 0x00, 0x01, 0x01, 0x84, 0x03, 0x31, + 0x00, 0x01, 0x01, 0x8D, 0x05, 0xD2, 0x00, 0x01, 0x04, 0xEA, 0x03, 0x31, + 0x00, 0x01, 0x05, 0x08, 0x03, 0x31, 0x00, 0x01, 0x01, 0x6F, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x84, 0x05, 0xD2, 0x00, 0x01, 0x07, 0x03, 0x03, 0x31, + 0x00, 0x01, 0x03, 0x1C, 0x05, 0xE9, 0x00, 0x01, 0x06, 0x6E, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0xE7, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x16, 0x05, 0x00, + 0x00, 0x01, 0x05, 0x95, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x5D, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0xAF, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x98, 0x05, 0xD2, + 0x00, 0x01, 0x06, 0xBE, 0x05, 0xD2, 0x00, 0x01, 0x05, 0xA7, 0x05, 0xD2, + 0x00, 0x01, 0x04, 0x62, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x8E, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x8D, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x9B, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x90, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x8F, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x8C, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x6B, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x7D, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x09, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x8B, 0x05, 0xD2, 0x00, 0x01, 0x05, 0xA8, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x93, 0x05, 0xD2, 0x00, 0x01, 0x06, 0xCD, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x71, 0x05, 0xD2, 0x00, 0x01, 0x04, 0x3A, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x85, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x92, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x87, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x8A, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x81, 0x05, 0xD2, 0x00, 0x01, 0x05, 0x86, 0x05, 0xD2, + 0x00, 0x01, 0x05, 0x83, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xBB, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xBB, 0x07, 0x7A, 0x00, 0x01, 0x02, 0xBB, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x7B, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x4F, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0x7D, 0x07, 0x89, 0x00, 0x01, 0x02, 0x7D, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x6F, 0x07, 0x7A, 0x00, 0x01, 0x02, 0xFA, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0xE0, 0x07, 0x7A, 0x00, 0x01, 0x02, 0xE0, 0x05, 0xD2, + 0x00, 0x01, 0x00, 0xFE, 0x07, 0x41, 0x00, 0x01, 0x03, 0x84, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0xE6, 0x07, 0x7A, 0x00, 0x01, 0x03, 0x03, 0x07, 0x89, + 0x00, 0x01, 0x03, 0x03, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x76, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0x8A, 0x07, 0x7A, 0x00, 0x01, 0x02, 0x8A, 0x07, 0x41, + 0x00, 0x01, 0x02, 0x83, 0x07, 0x7A, 0x00, 0x01, 0x02, 0x82, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0xD9, 0x07, 0x7A, 0x00, 0x01, 0x02, 0xD9, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xE5, 0x07, 0x7A, 0x00, 0x01, 0x03, 0xE5, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xAF, 0x07, 0x7A, 0x00, 0x01, 0x02, 0xAB, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0x80, 0x07, 0x7A, 0x00, 0x01, 0x02, 0x80, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xFC, 0x07, 0x7A, 0x00, 0x01, 0x01, 0x83, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x1F, 0x05, 0xD6, 0x00, 0x01, 0x02, 0x1F, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0xAA, 0x06, 0xA5, 0x00, 0x01, 0x02, 0xAA, 0x04, 0xFD, + 0x00, 0x01, 0x02, 0x45, 0x05, 0xD6, 0x00, 0x01, 0x02, 0x06, 0x06, 0xA5, + 0x00, 0x01, 0x02, 0x06, 0x04, 0xFD, 0x00, 0x01, 0x02, 0x39, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x39, 0x05, 0xD6, 0x00, 0x01, 0x02, 0x39, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x88, 0x07, 0x88, 0x00, 0x01, 0x02, 0x40, 0x05, 0xD6, + 0x00, 0x01, 0x00, 0xE8, 0x07, 0x7A, 0x00, 0x01, 0x00, 0xE8, 0x05, 0xD6, + 0x00, 0x01, 0x03, 0x73, 0x05, 0xD6, 0x00, 0x01, 0x02, 0x47, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x8C, 0x05, 0xD6, 0x00, 0x01, 0x01, 0x8C, 0x05, 0xD6, + 0x00, 0x01, 0x01, 0x8C, 0x05, 0x9D, 0x00, 0x01, 0x02, 0x04, 0x05, 0xD6, + 0x00, 0x01, 0x01, 0x31, 0x06, 0xF1, 0x00, 0x01, 0x02, 0x25, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x25, 0x05, 0xD6, 0x00, 0x01, 0x03, 0x25, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x1A, 0x05, 0xD6, 0x00, 0x01, 0x02, 0x21, 0x05, 0xD6, + 0x00, 0x01, 0x02, 0x21, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x05, 0x05, 0xD6, + 0x00, 0x01, 0x02, 0x05, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x46, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x46, 0x05, 0xD6, 0x00, 0x01, 0x00, 0xE8, 0x07, 0x41, + 0x00, 0x01, 0x00, 0xE8, 0x06, 0xF1, 0x00, 0x01, 0x02, 0x7D, 0x07, 0x7A, + 0x00, 0x01, 0x00, 0xFE, 0x07, 0x7A, 0x00, 0x01, 0x02, 0xE1, 0x07, 0x7A, + 0x00, 0x01, 0x03, 0xD5, 0x07, 0x7A, 0x00, 0x01, 0x02, 0x74, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0xEA, 0x07, 0x7A, 0x00, 0x01, 0x03, 0x03, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0xC5, 0x07, 0x7A, 0x00, 0x01, 0x02, 0x7B, 0x07, 0x7A, + 0x00, 0x01, 0x02, 0xAE, 0x07, 0x7A, 0x00, 0x01, 0x03, 0x51, 0x07, 0x7A, + 0x00, 0x01, 0x01, 0x83, 0x07, 0x7A, 0x00, 0x01, 0x02, 0x5C, 0x05, 0xD6, + 0x00, 0x01, 0x03, 0x32, 0x05, 0xD6, 0x00, 0x01, 0x01, 0xEF, 0x05, 0xD6, + 0x00, 0x01, 0x02, 0x4E, 0x05, 0xD6, 0x00, 0x01, 0x02, 0x13, 0x05, 0xD6, + 0x00, 0x01, 0x02, 0x3F, 0x05, 0xD6, 0x00, 0x01, 0x02, 0xDB, 0x05, 0xD6, + 0x00, 0x01, 0x02, 0x98, 0x07, 0x7A, 0x00, 0x01, 0x00, 0xE7, 0x05, 0xD6, + 0x00, 0x01, 0x01, 0x2F, 0x05, 0xD6, 0x00, 0x01, 0x01, 0x89, 0x05, 0xD6, + 0x00, 0x01, 0x03, 0x11, 0x05, 0xD6, 0x00, 0x01, 0x01, 0xF1, 0x05, 0xD6, + 0x00, 0x01, 0x01, 0x33, 0x07, 0x88, 0x00, 0x01, 0x02, 0xFA, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xAD, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xE6, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x8A, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x83, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x8C, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x04, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x31, 0x05, 0x49, 0x00, 0x01, 0x00, 0xE8, 0x05, 0x49, + 0x00, 0x01, 0x02, 0x96, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x6E, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x9B, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x9B, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xA3, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xBA, 0x03, 0xBF, + 0x00, 0x01, 0x02, 0x46, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x6A, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x73, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x73, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x61, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x40, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0x42, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x4B, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x03, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x63, 0x07, 0x89, + 0x00, 0x01, 0x02, 0x63, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x98, 0x07, 0x89, + 0x00, 0x01, 0x02, 0x76, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x7B, 0x07, 0x89, + 0x00, 0x01, 0x02, 0xC6, 0x07, 0x89, 0x00, 0x01, 0x02, 0x74, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x82, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xAB, 0x05, 0xD2, + 0x00, 0x01, 0x03, 0xD5, 0x07, 0x89, 0x00, 0x01, 0x03, 0x58, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0xAE, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xE1, 0x07, 0x83, + 0x00, 0x01, 0x03, 0xD5, 0x07, 0x83, 0x00, 0x01, 0x02, 0x74, 0x07, 0x83, + 0x00, 0x01, 0x02, 0xC5, 0x07, 0x83, 0x00, 0x01, 0x02, 0xAE, 0x07, 0x83, + 0x00, 0x01, 0x03, 0x51, 0x07, 0x83, 0x00, 0x01, 0x02, 0xE8, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0xE0, 0x05, 0xE4, 0x00, 0x01, 0x01, 0xE0, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x4E, 0x05, 0xE4, 0x00, 0x01, 0x02, 0x1F, 0x05, 0xE4, + 0x00, 0x01, 0x02, 0x21, 0x05, 0xE4, 0x00, 0x01, 0x01, 0xEF, 0x04, 0x2E, + 0x00, 0x01, 0x01, 0xE6, 0x04, 0x2E, 0x00, 0x01, 0x03, 0x6C, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x32, 0x05, 0xE4, 0x00, 0x01, 0x02, 0x3F, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x5C, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x5C, 0x05, 0xDF, + 0x00, 0x01, 0x03, 0x32, 0x05, 0xDF, 0x00, 0x01, 0x01, 0xEF, 0x05, 0xDF, + 0x00, 0x01, 0x02, 0x4E, 0x05, 0x9D, 0x00, 0x01, 0x02, 0x4E, 0x05, 0xDF, + 0x00, 0x01, 0x02, 0x13, 0x05, 0xDF, 0x00, 0x01, 0x02, 0x3F, 0x05, 0xDF, + 0x00, 0x01, 0x02, 0xDB, 0x05, 0xDF, 0x00, 0x01, 0x02, 0x1A, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0xD3, 0x05, 0xD2, 0x00, 0x01, 0x02, 0x14, 0x04, 0x2E, + 0x00, 0x01, 0x03, 0x4F, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x49, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x07, 0x04, 0x2E, 0x00, 0x01, 0x02, 0x52, 0x04, 0x2E, + 0x00, 0x01, 0x00, 0xE7, 0x04, 0x2E, 0x00, 0x01, 0x03, 0x29, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0xB7, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xAF, 0x05, 0xD2, + 0x00, 0x01, 0x00, 0xFE, 0x05, 0xD2, 0x00, 0x01, 0x02, 0xFC, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x4F, 0x05, 0xD2, 0x00, 0x01, 0x03, 0x84, 0x05, 0xD2, + 0x00, 0x01, 0x00, 0xDE, 0x05, 0xE8, 0x00, 0x01, 0x02, 0x1D, 0x04, 0x2E, + 0x00, 0x01, 0x02, 0x11, 0x04, 0x2E, 0x00, 0x01, 0x00, 0xE8, 0x05, 0xD2, + 0x00, 0x01, 0x02, 0x45, 0x04, 0x2E, 0x00, 0x01, 0x01, 0xFD, 0x04, 0xFD, + 0x00, 0x01, 0x03, 0x73, 0x04, 0x2E, 0x00, 0x01, 0x01, 0x9D, 0x05, 0xE1, + 0x00, 0x01, 0x00, 0xE8, 0x04, 0x2E, 0x00, 0x01, 0x02, 0xCC, 0x05, 0xD2, + 0x00, 0x01, 0x01, 0x76, 0x05, 0xF4, 0x00, 0x01, 0x00, 0xC0, 0x05, 0xF4, + 0x00, 0x01, 0xBA, 0xD8, 0x00, 0x04, 0x00, 0x00, 0x04, 0x2F, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x7A, 0xA2, 0x79, 0x38, 0x79, 0x38, 0x79, 0x38, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x58, + 0x79, 0x58, 0x79, 0xDC, 0x79, 0x80, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0xC9, 0x00, 0x7D, 0x5E, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xDA, 0x79, 0x3E, 0x79, 0x3E, + 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, 0x79, 0x3E, + 0x79, 0x3E, 0x79, 0x3E, 0x7A, 0x28, 0x82, 0xC0, 0x7A, 0x28, 0x83, 0x26, + 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x81, 0x38, 0x7F, 0xC0, 0x83, 0x8C, + 0x7A, 0xBC, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xBC, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0xDC, + 0x9D, 0x2C, 0x81, 0x9A, 0x79, 0xDC, 0x83, 0xF6, 0x7B, 0x60, 0x7C, 0x38, + 0x7C, 0x72, 0x79, 0xDC, 0x79, 0xDC, 0x7C, 0xAC, 0x79, 0x44, 0x79, 0xDC, + 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, + 0x79, 0x26, 0x79, 0x76, 0x79, 0x76, 0x79, 0x76, 0x79, 0x76, 0x79, 0x76, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x80, 0x1E, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x7A, 0xA2, 0x79, 0x80, 0x79, 0x80, + 0x7A, 0xA2, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x82, 0x5E, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x7A, 0xA2, 0xC3, 0x56, 0xA8, 0xC0, 0x7A, 0xA2, 0x79, 0x4E, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x98, + 0x79, 0x98, 0x82, 0x5E, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x82, 0x5E, 0x79, 0x32, 0x79, 0x32, 0x79, 0x32, 0x79, 0x32, 0x79, 0x6C, + 0x79, 0x32, 0x80, 0x1E, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x80, 0x1E, 0x80, 0x1E, 0x79, 0x80, 0x7B, 0x96, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, 0x79, 0x2C, 0x86, 0xF2, + 0x7E, 0x58, 0x7A, 0xBC, 0x7A, 0xBC, 0x79, 0x58, 0x7A, 0xBC, 0x7A, 0xBC, + 0x7B, 0xCC, 0x86, 0xF2, 0x7E, 0x58, 0x7A, 0xBC, 0x7A, 0xBC, 0x7D, 0x20, + 0x87, 0x80, 0x7C, 0xE6, 0x87, 0x80, 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x7A, 0xBC, 0x79, 0x2C, 0x7A, 0xBC, + 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, 0x7B, 0x2E, 0x7A, 0xBC, 0x7A, 0xBC, + 0x7A, 0xBC, 0x7A, 0xBC, 0x79, 0x6C, 0x7A, 0xA2, 0x91, 0xAA, 0x7A, 0xA2, + 0x7A, 0xA2, 0x79, 0x58, 0x7C, 0x02, 0x79, 0xA6, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x08, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x80, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x58, 0x80, 0x1E, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x7A, 0xBC, + 0x79, 0x98, 0x78, 0xFC, 0x78, 0xFC, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0xB8, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x32, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x32, 0x7A, 0x00, 0x7A, 0x00, + 0x7A, 0x00, 0x79, 0x6C, 0x79, 0x6C, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, + 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, + 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x08, 0x68, 0x79, 0x32, 0x80, 0x7C, + 0x79, 0x32, 0x7A, 0x54, 0x79, 0x62, 0x7A, 0xA2, 0x7D, 0xAC, 0x79, 0x62, + 0x80, 0xDA, 0x79, 0xDC, 0x79, 0xDC, 0x7E, 0xB2, 0x79, 0x3E, 0x79, 0x3E, + 0x7A, 0xA2, 0x79, 0x62, 0x7A, 0xA2, 0x79, 0xEE, 0x79, 0x62, 0x7A, 0xA2, + 0x79, 0x6C, 0x79, 0x6C, 0x7A, 0xA2, 0x79, 0x98, 0x7A, 0xA2, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x62, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x08, 0x68, 0x79, 0x58, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x7A, 0x12, 0x7A, 0x00, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x98, 0x79, 0x98, 0x7A, 0x00, + 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x08, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x58, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x58, 0x79, 0x58, 0x79, 0x6C, 0x79, 0x58, + 0x79, 0x6C, 0x79, 0x58, 0x7A, 0x00, 0x79, 0x6C, 0x79, 0x58, 0x79, 0x6C, + 0x7B, 0x00, 0x79, 0x98, 0x79, 0x08, 0x79, 0x80, 0x79, 0x6C, 0x79, 0x58, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x08, 0x79, 0x02, 0x79, 0x02, 0x7A, 0xBC, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x02, 0x79, 0x02, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x6C, 0x79, 0x02, 0x79, 0x98, 0x79, 0x08, 0x79, 0x98, 0x79, 0x98, + 0x7E, 0x02, 0xAB, 0x0A, 0x79, 0x0E, 0x79, 0x58, 0x79, 0x98, 0x7A, 0x3E, + 0x8C, 0xAA, 0x79, 0x20, 0x79, 0x20, 0x79, 0x20, 0x7A, 0x88, 0x7A, 0x88, + 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x79, 0x1A, 0x79, 0x14, 0x79, 0x1A, + 0x79, 0x62, 0x79, 0x20, 0x79, 0x20, 0x79, 0x20, 0x7A, 0x3E, 0x7F, 0x0C, + 0x7A, 0x88, 0x79, 0x6C, 0x7A, 0x88, 0x81, 0xFC, 0x95, 0xA8, 0x7A, 0x88, + 0x7A, 0x88, 0x7A, 0x88, 0x7F, 0x66, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, + 0x7A, 0x88, 0xD6, 0x28, 0x7A, 0x6E, 0x7A, 0x6E, 0x79, 0x62, 0x7A, 0x6E, + 0x7A, 0x6E, 0x7A, 0x6E, 0x7A, 0x6E, 0x7A, 0x6E, 0x7A, 0x3E, 0x79, 0x8A, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, 0x79, 0xCA, + 0x79, 0xCA, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, 0x7A, 0x88, + 0x7A, 0x88, 0x79, 0x62, 0x79, 0x62, 0x7A, 0x3E, 0x7A, 0x3E, 0x7A, 0x3E, + 0x7A, 0x3E, 0x7A, 0x3E, 0x7A, 0x3E, 0x79, 0x3E, 0x7A, 0x28, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x6C, 0x7A, 0x00, 0x79, 0x58, 0x79, 0x58, + 0xA4, 0xA4, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, 0x08, 0x68, + 0x08, 0x68, 0x79, 0x62, 0x79, 0x62, 0x79, 0x38, 0x7A, 0xA2, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x3E, 0x7A, 0x28, 0x7A, 0x28, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x62, 0x79, 0x62, + 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0x62, 0x79, 0xDC, + 0x79, 0xDC, 0x79, 0x26, 0x79, 0x26, 0x79, 0x26, 0x79, 0x76, 0x79, 0x76, + 0x79, 0xEE, 0x79, 0xEE, 0x79, 0xEE, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x32, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x7A, 0xBC, 0x79, 0x2C, + 0x79, 0x2C, 0x7A, 0xBC, 0x7A, 0xBC, 0x7A, 0xBC, 0x79, 0x58, 0x7A, 0xA2, + 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x6C, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x98, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x58, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x79, 0x80, 0x7A, 0xBC, + 0x79, 0x32, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x58, 0x79, 0x58, 0x79, 0x58, + 0x79, 0x62, 0x79, 0x76, 0x7A, 0xA2, 0x79, 0x62, 0x79, 0x98, 0x79, 0x6C, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x80, 0x79, 0x80, + 0x79, 0x80, 0x79, 0x80, 0x7A, 0x88, 0x7A, 0xBC, 0x79, 0x3E, 0x7A, 0x28, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x6C, 0x7A, 0x00, 0x79, 0x58, + 0x79, 0x58, 0x79, 0x62, 0x9A, 0x02, 0x82, 0x5E, 0x7A, 0x00, 0x08, 0x68, + 0x79, 0x6C, 0x79, 0x58, 0x08, 0x68, 0x79, 0x6C, 0x7A, 0x00, 0x79, 0xDC, + 0x79, 0xDC, 0x79, 0xDC, 0x79, 0xDC, 0x79, 0x3E, 0x7A, 0xA2, 0x79, 0xDC, + 0x79, 0x76, 0x7A, 0xA2, 0x79, 0x98, 0x08, 0x68, 0x08, 0x68, 0x79, 0xDC, + 0x79, 0xEE, 0xB0, 0x02, 0x7A, 0xA2, 0x79, 0x76, 0x79, 0x62, 0x79, 0x76, + 0x79, 0x76, 0x79, 0x98, 0x7A, 0x00, 0x7A, 0x00, 0x7A, 0x00, 0x79, 0x6C, + 0x79, 0x6C, 0x79, 0x98, 0x08, 0x68, 0x79, 0x98, 0x7A, 0x00, 0x79, 0x6C, + 0x79, 0x98, 0x79, 0x98, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x98, 0x79, 0x98, + 0x79, 0x98, 0x79, 0x6C, 0x79, 0x6C, 0x79, 0x98, 0x79, 0x38, 0x79, 0x3E, + 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, + 0x79, 0x76, 0x79, 0x76, 0x7A, 0xA2, 0x7A, 0xA2, 0x7A, 0xA2, 0x79, 0x80, + 0x7A, 0x3E, 0x7A, 0xA2, 0x00, 0x01, 0x05, 0xEA, 0xFF, 0xE6, 0x00, 0x01, + 0xB6, 0x9A, 0x00, 0x04, 0x00, 0x00, 0x04, 0x68, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x7C, 0x8E, + 0x86, 0x18, 0x7D, 0x34, 0x80, 0x36, 0x7D, 0x34, 0x08, 0xE0, 0x08, 0xE0, + 0x86, 0xD4, 0x88, 0x64, 0x7C, 0xB6, 0x7C, 0x0E, 0x7C, 0x2C, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7D, 0xEC, 0x7D, 0xEC, + 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, 0x7D, 0xEC, + 0x7D, 0xEC, 0x7D, 0xEC, 0x80, 0xC2, 0x7F, 0xA0, 0x80, 0xC2, 0x7E, 0x02, + 0x80, 0xE8, 0x80, 0xE8, 0x80, 0xE8, 0x80, 0xE8, 0x82, 0x04, 0x7E, 0x1C, + 0x7C, 0x26, 0x7C, 0x26, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xEC, 0x08, 0xEC, + 0x08, 0xEC, 0x08, 0xE6, 0x86, 0xD4, 0x83, 0x00, 0x86, 0xD4, 0x86, 0xD4, + 0x83, 0x94, 0x99, 0x62, 0x8B, 0x8C, 0x96, 0x34, 0x86, 0xD4, 0x86, 0xD4, + 0x8F, 0x22, 0x8F, 0x22, 0x86, 0xD4, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x80, 0x7A, + 0x82, 0x7C, 0x82, 0x3E, 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, + 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, 0x80, 0x18, 0x80, 0x18, 0x80, 0x18, + 0x80, 0x18, 0x80, 0x18, 0x83, 0xE6, 0x8A, 0x90, 0x83, 0xE6, 0x83, 0xE6, + 0x83, 0xE6, 0x83, 0xE6, 0x88, 0xCE, 0x83, 0xE6, 0x88, 0xCE, 0x88, 0xCE, + 0x88, 0xCE, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, + 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, + 0x83, 0xE6, 0x83, 0xE6, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, + 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, 0x7C, 0x84, + 0x7C, 0x84, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x97, 0x3A, 0xC7, 0x00, 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, 0x85, 0xBA, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7D, 0x18, 0x7D, 0x18, 0x7D, 0x18, 0x7D, 0x18, + 0x7C, 0x98, 0x7D, 0x18, 0x7C, 0x98, 0x81, 0x12, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7E, 0x6A, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x82, 0xBE, + 0x81, 0x40, 0x87, 0x32, 0x7C, 0x0E, 0x7C, 0x26, 0x08, 0xE0, 0x7C, 0x26, + 0x7C, 0x26, 0x7C, 0x3E, 0x81, 0x40, 0x81, 0xCE, 0x7C, 0x26, 0x7C, 0x26, + 0x7C, 0x26, 0x8C, 0x12, 0x7C, 0x26, 0x7C, 0x0E, 0x7C, 0x26, 0x7C, 0x26, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x7C, 0x26, 0x82, 0xBE, 0x7C, 0x26, + 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0xC4, 0x7C, 0x26, 0x7C, 0x26, + 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0xAC, + 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0x98, 0x7C, 0xAC, 0x7C, 0x48, 0x08, 0xE0, + 0x7C, 0xD2, 0x7C, 0x0E, 0x7C, 0x0E, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x7C, 0x98, 0x7C, 0x98, 0x88, 0x64, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x87, 0x98, 0x08, 0xE0, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0x26, 0x7C, 0xA2, 0x87, 0xFE, 0x87, 0xFE, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7D, 0x18, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x90, 0xBA, + 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x32, + 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, + 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x7D, 0x42, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x08, 0xE0, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7C, 0xE0, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x50, 0x7D, 0xD6, 0x7E, 0x50, 0x7E, 0x50, 0x7D, 0x0A, 0x7D, 0x0A, + 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, + 0x7E, 0x50, 0x7E, 0x50, 0x7D, 0x18, 0x80, 0x9C, 0x7E, 0x50, 0x7E, 0x50, + 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, + 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, + 0x7D, 0x18, 0x7E, 0x50, 0x7E, 0x50, 0x7C, 0x8E, 0x86, 0x18, 0x7C, 0x8E, + 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, 0x7C, 0x8E, + 0x7C, 0x8E, 0xA5, 0x3A, 0x8C, 0x9C, 0x7D, 0x78, 0x08, 0xE6, 0x98, 0x4C, + 0x08, 0xE6, 0xAE, 0xC8, 0x80, 0x7A, 0x86, 0xD4, 0x86, 0xD4, 0x7B, 0xF6, + 0x7F, 0xBE, 0x7D, 0xEC, 0x7D, 0xEC, 0x08, 0xE6, 0x83, 0xE6, 0x7F, 0xDC, + 0x7B, 0xF6, 0x7C, 0x98, 0x7C, 0x98, 0x7B, 0xF6, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x08, 0xE6, 0x08, 0xE6, 0x7C, 0xA2, 0x80, 0x7A, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, + 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7C, 0x52, 0x7D, 0x54, 0x7C, 0x02, + 0x7B, 0xFC, 0x7C, 0xA2, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, + 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, 0x7B, 0xFC, + 0x7B, 0xFC, 0x83, 0x4A, 0x7D, 0x66, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, + 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, + 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x7D, 0x26, 0x80, 0x58, 0x7C, 0x5C, + 0x08, 0xE0, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x8B, 0x0E, + 0x7C, 0x32, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, + 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x7C, 0x02, 0x81, 0x9C, 0x7C, 0x32, + 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x98, 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0xAC, + 0x7C, 0x98, 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0xAC, 0x7C, 0x98, 0x08, 0xE0, + 0x08, 0xE0, 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0x32, + 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0x98, 0x7F, 0xFA, 0x7C, 0xA2, 0x8E, 0x64, + 0x7E, 0x6A, 0x7C, 0x98, 0x08, 0xE0, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x26, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x98, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7E, 0x50, 0x7C, 0xA2, 0x7C, 0x08, 0x7C, 0x08, 0x7C, 0x0E, + 0x7C, 0xA2, 0x7C, 0x14, 0x7C, 0x66, 0x7C, 0x14, 0x7C, 0x14, 0x7C, 0x38, + 0x7C, 0x38, 0x9E, 0x7C, 0x92, 0xE6, 0x7C, 0x1A, 0x7C, 0x1A, 0x93, 0xD0, + 0x7C, 0x38, 0x7C, 0x38, 0x7C, 0x38, 0x7C, 0x38, 0x7C, 0x98, 0x7C, 0x38, + 0x7C, 0x38, 0x7C, 0x38, 0x7C, 0x7A, 0x7E, 0x36, 0x7C, 0x7A, 0x7E, 0x36, + 0x7D, 0x9C, 0x7D, 0x9C, 0x7E, 0x36, 0x7D, 0x8A, 0x7D, 0x8A, 0x7D, 0x8A, + 0x7D, 0xAE, 0x7D, 0xAE, 0x8F, 0xE8, 0x7C, 0x70, 0x7C, 0xEE, 0x7C, 0x70, + 0x7C, 0xEE, 0x9A, 0x9C, 0x85, 0x06, 0x7C, 0x38, 0x85, 0x60, 0xAB, 0x2E, + 0x7C, 0x38, 0x08, 0xDA, 0x08, 0xDA, 0x08, 0xDA, 0x08, 0xDA, 0x86, 0x76, + 0x7D, 0x78, 0x7D, 0x78, 0x7D, 0x78, 0x7D, 0xEC, 0x80, 0xC2, 0x7C, 0xAC, + 0x7C, 0x98, 0x7C, 0x32, 0x08, 0xE0, 0x08, 0xE0, 0x7D, 0x8A, 0x7D, 0xAE, + 0x7D, 0xAE, 0x7C, 0x7A, 0x7E, 0x36, 0x7C, 0x7A, 0x7D, 0xC0, 0x7D, 0x9C, + 0x7D, 0x9C, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x7D, 0xD6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x7D, 0x34, 0x7D, 0xEC, + 0x80, 0xC2, 0x80, 0xC2, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, + 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xE6, 0x08, 0xEC, 0x86, 0xD4, 0x86, 0xD4, + 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, 0x7C, 0x20, + 0x7C, 0x20, 0x7C, 0x20, 0x80, 0x7A, 0x7C, 0xFC, 0x7C, 0xFC, 0x7C, 0xFC, + 0x80, 0x18, 0x80, 0x18, 0x83, 0xE6, 0x83, 0xE6, 0x83, 0xE6, 0x7C, 0x84, + 0x7C, 0x84, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7D, 0x18, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0x26, 0x82, 0xBE, 0x82, 0xBE, 0x7C, 0x26, 0x7C, 0x26, 0x7C, 0x26, + 0x08, 0xE0, 0x7C, 0xAC, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0x98, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x32, 0x7C, 0x32, 0x7C, 0x32, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE0, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x50, + 0x7D, 0x0A, 0x7D, 0x0A, 0x7D, 0x0A, 0x7E, 0x50, 0x7E, 0x50, 0x7E, 0x50, + 0x7C, 0x8E, 0x7C, 0x8E, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7E, 0x6A, 0x7C, 0x26, 0x7D, 0x18, 0x08, 0xE0, 0x08, 0xE0, + 0x08, 0xE0, 0x08, 0xE6, 0x80, 0x18, 0x08, 0xE6, 0x7C, 0xA2, 0x7C, 0x98, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x98, 0x7C, 0x98, 0x7D, 0x26, 0x7E, 0x6A, + 0x7E, 0x6A, 0x7D, 0x26, 0x7D, 0x26, 0x7E, 0x6A, 0x7E, 0x6A, 0x7D, 0x8A, + 0x7D, 0x8A, 0x7D, 0xAE, 0x7D, 0xAE, 0x7D, 0x8A, 0x7D, 0xAE, 0x7C, 0x26, + 0x7D, 0xEC, 0x80, 0xC2, 0x7C, 0xAC, 0x7C, 0x98, 0x7C, 0x32, 0x08, 0xE0, + 0x08, 0xE0, 0x7D, 0x9C, 0x7D, 0x9C, 0x7C, 0x2C, 0x7C, 0x2C, 0x08, 0xE6, + 0x86, 0x76, 0x8A, 0x1E, 0x7C, 0xA2, 0x7C, 0x32, 0x7C, 0xAC, 0x7D, 0xD6, + 0x7C, 0x98, 0x08, 0xE0, 0x7D, 0xD6, 0x7C, 0x98, 0x7C, 0x32, 0x86, 0xD4, + 0x86, 0xD4, 0x86, 0xD4, 0x86, 0xD4, 0x7D, 0xEC, 0x08, 0xEC, 0x08, 0xE6, + 0x86, 0xD4, 0x80, 0x18, 0x7C, 0xA2, 0x08, 0xE6, 0x7D, 0xD6, 0x7D, 0xD6, + 0x80, 0x7A, 0x08, 0xE6, 0x86, 0xD4, 0x83, 0xE6, 0x81, 0x6E, 0x80, 0x18, + 0x08, 0xE6, 0x80, 0x18, 0x80, 0x18, 0x7C, 0xA2, 0x7C, 0x32, 0x7C, 0x32, + 0x7C, 0x32, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0xAC, 0x7C, 0xA2, 0x7D, 0xD6, + 0x7E, 0x50, 0x7C, 0xA2, 0x7C, 0x32, 0x7E, 0x50, 0x7E, 0x50, 0x7C, 0x98, + 0x7C, 0xA2, 0x7C, 0xA2, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0xA2, 0x7C, 0xA2, + 0x7C, 0xA2, 0x7C, 0x98, 0x7C, 0x98, 0x7C, 0xA2, 0x7D, 0x34, 0x7D, 0xEC, + 0x7E, 0x50, 0x7C, 0xAC, 0x80, 0x7A, 0x80, 0x7A, 0x80, 0x18, 0x80, 0x18, + 0x7D, 0xAE, 0x7C, 0x38, 0x7C, 0x38, 0x7E, 0x6A, 0x00, 0x01, 0x05, 0x8F, + 0xFF, 0xAF, 0x00, 0x01, 0x05, 0xEA, 0xFF, 0xC6, 0x00, 0x01, 0x06, 0x05, + 0xFF, 0xAF, 0x00, 0x03, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, + 0x05, 0xDD, 0xFF, 0x3B, 0x00, 0x02, 0xCC, 0xDE, 0x00, 0x04, 0x00, 0x00, + 0xDC, 0x10, 0xD0, 0x4E, 0x00, 0x7D, 0x00, 0x6A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCF, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2E, 0xFF, 0x16, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, + 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0xFF, 0xC9, 0x00, 0x00, 0xFF, 0xDE, + 0xFF, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, + 0xFF, 0xB0, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0xFF, 0xF8, 0xFF, 0xC7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x59, 0xFF, 0x45, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBC, 0xFF, 0xB5, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xEF, + 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x45, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x8C, 0xFF, 0x98, 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9B, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x29, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x18, + 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB6, 0xFF, 0x75, 0x00, 0x00, + 0xFF, 0xF8, 0xFF, 0xAF, 0xFF, 0x33, 0xFF, 0x3D, 0xFF, 0xBB, 0x00, 0x02, + 0xFF, 0x98, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3E, + 0xFF, 0xC7, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0xFF, 0x77, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0x2F, 0xFF, 0x5E, 0x00, 0x00, + 0xFF, 0x69, 0x00, 0x00, 0xFE, 0xF5, 0xFF, 0xDC, 0x00, 0x00, 0xFF, 0x53, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0xFF, 0x80, 0xFF, 0xD5, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x96, 0xFF, 0x67, 0xFF, 0x6F, + 0xFF, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x3E, 0xFF, 0xD5, 0x00, 0x00, 0xFF, 0x68, 0xFF, 0xF6, 0x00, 0x00, + 0xFF, 0x46, 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0xFF, 0xE4, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3D, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x17, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, + 0xFF, 0xE6, 0xFF, 0xBB, 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2E, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD5, 0x00, 0x2D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xE8, + 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, + 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0xFF, 0xB6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xA9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x1A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, 0xFF, 0xEA, 0x00, 0x0A, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x23, 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, + 0xFF, 0xB9, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x5E, 0xFF, 0xAF, 0xFF, 0x8C, 0xFF, 0xA8, 0x00, 0x23, 0x00, 0x22, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0xFF, 0xEA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0xFF, 0xAB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x0A, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0B, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, + 0x00, 0x25, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF0, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xBB, 0xFF, 0xD9, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0xFF, 0x83, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0xFF, 0x75, + 0xFF, 0x80, 0xFF, 0xA4, 0x00, 0x24, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAB, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x31, 0xFF, 0x7D, 0xFF, 0x9B, 0xFF, 0x33, 0x00, 0x00, 0xFF, 0x34, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xAF, 0xFF, 0x75, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0xFF, 0x68, 0xFF, 0xCB, 0xFF, 0x3B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xAF, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9B, 0xFF, 0xA6, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x23, 0xFF, 0x33, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, + 0xFE, 0x86, 0x00, 0x00, 0xFF, 0x46, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x7D, 0xFF, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x1F, 0xFF, 0x5D, + 0xFF, 0xAF, 0xFF, 0x3D, 0xFF, 0xA8, 0xFF, 0x2F, 0xFF, 0x45, 0x00, 0x00, + 0xFF, 0x3F, 0x00, 0x00, 0xFF, 0x37, 0xFE, 0xF5, 0x00, 0x07, 0x00, 0x00, + 0xFF, 0x6B, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xD7, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x58, + 0x00, 0x00, 0x00, 0x00, 0xFE, 0xF5, 0xFF, 0x67, 0xFF, 0xBB, 0xFF, 0x45, + 0x00, 0x00, 0x00, 0xBA, 0xFF, 0xAF, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x0C, 0xFF, 0x3D, 0xFF, 0x46, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x1F, + 0xFF, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0x86, 0xFF, 0x75, 0xFF, 0x2E, 0x00, 0x00, + 0xFE, 0xF5, 0xFF, 0x98, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0x5D, 0xFF, 0x5F, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA8, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x2F, 0x00, 0x00, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x45, 0x00, 0x00, 0xFE, 0xF5, 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, + 0xFF, 0x6F, 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFE, 0xAF, 0xFF, 0x2E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0xFE, 0xB9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x28, 0x00, 0x00, + 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x67, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFE, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0xFF, 0x69, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x68, 0xFF, 0x67, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9C, 0x00, 0x00, 0xFF, 0xD2, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCB, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, + 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0xFF, 0xAA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x38, 0x00, 0x06, 0xFF, 0xBB, 0xFF, 0xD5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0xAE, 0xFF, 0xAA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x0D, 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xAF, 0xFF, 0x2E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x52, 0xFE, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0xFF, 0x9B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x25, 0x00, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x97, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0xFF, 0x8E, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEE, + 0xFF, 0xA3, 0x00, 0x00, 0xFF, 0x98, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0xFF, 0xB5, 0x00, 0x00, 0xFF, 0x4E, + 0xFF, 0xDE, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x4A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC6, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x10, 0xFF, 0x3D, + 0xFF, 0x5F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE7, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x97, + 0xFF, 0x46, 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0xFF, 0x52, 0x00, 0x00, + 0x00, 0x00, 0xFE, 0xF5, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0xFF, 0x9A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x4F, + 0xFF, 0xA3, 0xFF, 0x5B, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xBA, + 0x00, 0x00, 0x00, 0x00, 0xFE, 0xC6, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x3D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xC2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xAE, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0xB5, 0xFF, 0xDD, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, + 0x00, 0x10, 0x00, 0x00, 0xFF, 0xCB, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0xCB, 0x00, 0x00, 0xFF, 0x8C, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, 0xFF, 0xBB, 0xFF, 0x80, 0x00, 0x00, + 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE4, 0xFF, 0x7B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0xFF, 0xBE, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, 0x00, 0x00, + 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, + 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x0E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x1F, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x95, 0xFF, 0xD2, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x12, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x95, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0xFF, 0xF5, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0xFF, 0x75, 0xFF, 0x8C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x95, 0xFF, 0xCF, + 0xFF, 0xD8, 0xFF, 0x77, 0x00, 0x00, 0xFF, 0x93, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x28, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x9E, 0x00, 0x00, 0xFF, 0x80, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x23, 0x00, 0x00, 0xFF, 0xD8, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x23, 0xFF, 0x77, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x95, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0x24, 0x00, 0x00, + 0xFF, 0x8C, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xCF, 0xFF, 0xCF, + 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x75, 0xFF, 0xC1, 0xFF, 0xB4, 0xFF, 0x3E, 0x00, 0x00, 0xFF, 0x7D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xB9, 0xFF, 0xA3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x94, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xB9, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0xAE, 0xFF, 0xB4, 0xFF, 0x3B, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x18, 0xFF, 0x3E, 0xFF, 0x3B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x75, 0xFF, 0x1E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0xFE, 0xB7, 0x00, 0x00, 0xFF, 0x8C, 0x00, 0x00, 0xFF, 0xEB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2B, 0xFF, 0xCA, + 0xFF, 0xC1, 0xFF, 0xBD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8F, 0xFF, 0x92, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, 0xFF, 0xF3, + 0x00, 0x00, 0xFF, 0x63, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, + 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0xFE, 0xDE, 0xFF, 0x63, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7B, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0xA9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x44, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0xA5, 0x00, 0xAE, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x7C, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xAE, 0x00, 0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x68, 0x00, 0xA5, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, + 0x00, 0x00, 0xFF, 0xC9, 0x00, 0x00, 0xFF, 0x76, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDC, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x18, 0xFF, 0xBD, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB6, 0xFF, 0x75, 0x00, 0x00, 0xFF, 0xF8, 0xFF, 0xAF, + 0xFF, 0x33, 0xFF, 0x3D, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0xFF, 0xF6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3E, 0xFF, 0xC7, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x75, 0xFF, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, + 0x00, 0x00, 0xFF, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x23, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, 0xFF, 0xE0, + 0xFF, 0xF3, 0xFF, 0x46, 0x00, 0x00, 0xFF, 0xDD, 0xFF, 0xBB, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x0C, 0xFF, 0x46, 0xFF, 0x75, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE1, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA1, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFE, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCD, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCD, 0xFF, 0xCB, 0xFF, 0xCB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE6, 0x00, 0x00, 0xFF, 0xCB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, + 0x00, 0x00, 0xFF, 0xC5, 0x00, 0x00, 0xFF, 0xEC, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xCD, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xA3, 0xFF, 0x30, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x30, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, 0xFF, 0xC6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x91, 0x00, 0x00, 0xFF, 0x6F, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0xFF, 0x91, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0xFF, 0xCF, 0xFF, 0x8C, 0xFE, 0xE8, + 0x00, 0x1E, 0xFF, 0x8C, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, + 0xFF, 0x68, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB3, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCD, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xAF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9B, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, + 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xA2, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFE, 0xD2, 0xFF, 0x52, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBA, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x22, 0x00, 0x1F, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x12, 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x12, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x3D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xB0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCF, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x2E, 0xFF, 0x16, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDD, + 0x00, 0x00, 0xFF, 0x75, 0x00, 0x00, 0xFF, 0xC9, 0x00, 0x00, 0xFF, 0xDE, + 0xFF, 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xDF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFA, 0xFF, 0x53, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0C, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0xFF, 0xED, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9D, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC2, 0xFF, 0xA6, 0xFF, 0xA6, 0x00, 0x00, 0xFF, 0xAA, 0x00, 0x00, + 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA9, 0x00, 0x00, 0xFF, 0xA9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x9D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x26, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCA, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD8, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCB, 0xFF, 0xDF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDC, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x97, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, + 0xFF, 0xDA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBC, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x46, 0xFE, 0xF5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0xFF, 0xBB, 0xFF, 0x8C, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2B, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x75, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x2B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x5A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC6, 0x00, 0x00, + 0xFF, 0xF5, 0xFF, 0x6F, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x6F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x7F, 0xFF, 0xDB, 0x00, 0x00, 0xFF, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x9F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x59, 0xFF, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3B, 0x00, 0x00, 0x00, 0x0F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x51, + 0x00, 0x00, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3B, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xA5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x45, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x74, 0x00, 0x05, 0x00, 0xE9, 0x00, 0x5D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBE, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x5D, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x0F, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF6, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFD, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xDE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xFC, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0x46, 0x00, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, 0x00, 0x1F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xB1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x5E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCC, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xCE, 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xE1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8C, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD0, 0xFF, 0xF3, + 0x00, 0x00, 0xFF, 0x63, 0x00, 0x00, 0xFF, 0xD9, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xED, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC4, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, + 0xFF, 0xEE, 0x00, 0x00, 0xFF, 0xE6, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0xFF, 0xF0, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2E, 0xFF, 0xF0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xAF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xD4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0E, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x0C, 0x00, 0x08, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEA, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x69, 0xFF, 0x69, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xA3, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xBB, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xF3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0xFF, 0x98, + 0x00, 0x00, 0xFF, 0x23, 0x00, 0x00, 0xFF, 0xA3, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8A, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x3B, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xDE, 0x00, 0x00, 0xFF, 0xE0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xCE, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x8F, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xAA, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xB9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF0, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xF2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xF5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD4, 0x00, 0x1C, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xD0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE9, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE2, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xFF, 0xE4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xD6, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xFF, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xFF, 0xC8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xEB, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x09, 0x95, 0xFF, 0x46, 0x00, 0x01, 0x05, 0x0A, 0xFF, 0x3D, + 0x00, 0x01, 0x05, 0x46, 0xFF, 0xFC, 0x00, 0x01, 0x04, 0xE3, 0xFF, 0xD8, + 0x00, 0x01, 0x02, 0xC2, 0x00, 0x53, 0x00, 0x01, 0x02, 0xC2, 0x00, 0xB0, + 0x00, 0x01, 0x02, 0xD3, 0x00, 0x1A, 0x00, 0x01, 0x05, 0xE3, 0xFF, 0xBB, + 0x00, 0x01, 0x01, 0x09, 0x00, 0x9F, 0x00, 0x01, 0x02, 0xB5, 0x00, 0x5C, + 0x00, 0x01, 0x02, 0xC2, 0x00, 0xCA, 0x00, 0x01, 0x02, 0xB5, 0x00, 0x88, + 0x00, 0x02, 0x03, 0x92, 0xFF, 0x50, 0x05, 0xE3, 0xFF, 0x5E, 0x00, 0x02, + 0x02, 0xBC, 0x00, 0x99, 0x02, 0xC1, 0x00, 0xA5, 0x00, 0x02, 0x03, 0x7B, + 0xFF, 0xE1, 0x03, 0x7C, 0xFF, 0x9B, 0x00, 0x02, 0x04, 0x2E, 0xFF, 0x98, + 0x04, 0x42, 0xFF, 0xBB, 0x00, 0x02, 0x01, 0xA5, 0xFF, 0x69, 0x01, 0xA6, + 0xFF, 0x69, 0x00, 0x02, 0x04, 0x38, 0xFF, 0x98, 0x05, 0xF6, 0xFF, 0xBB, + 0x00, 0x02, 0x00, 0xC9, 0x00, 0x38, 0x09, 0x18, 0x00, 0x38, 0x00, 0x03, + 0x06, 0x3A, 0x00, 0x0E, 0x06, 0x3C, 0x00, 0x08, 0x06, 0x3D, 0x00, 0x0E, + 0x00, 0x03, 0x01, 0xA5, 0xFF, 0x5E, 0x01, 0xA6, 0xFF, 0x5E, 0x09, 0x95, + 0xFF, 0x46, 0x00, 0x04, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xED, 0x00, 0x04, + 0x02, 0xEE, 0x00, 0x00, 0x06, 0x05, 0x00, 0x03, 0x00, 0x04, 0x01, 0xA5, + 0xFF, 0x5E, 0x01, 0xA6, 0xFF, 0x5E, 0x02, 0xC2, 0x00, 0x22, 0x09, 0x95, + 0xFF, 0x46, 0x00, 0x04, 0x04, 0x0F, 0xFF, 0x42, 0x04, 0x3B, 0xFF, 0xBE, + 0x04, 0x42, 0xFF, 0xC7, 0x09, 0x27, 0xFF, 0x84, 0x00, 0x04, 0x03, 0x92, + 0xFF, 0x50, 0x04, 0x05, 0xFF, 0xB7, 0x04, 0x06, 0xFF, 0xB7, 0x05, 0xE3, + 0xFF, 0x5E, 0x00, 0x04, 0x02, 0x0B, 0xFF, 0xA8, 0x02, 0x13, 0xFF, 0x6A, + 0x02, 0x1A, 0xFF, 0x7A, 0x02, 0xBB, 0xFF, 0xC1, 0x00, 0x04, 0x02, 0xC2, + 0x00, 0x04, 0x03, 0x87, 0xFF, 0xF3, 0x05, 0xEA, 0xFF, 0xB8, 0x06, 0x04, + 0xFF, 0xC3, 0x00, 0x05, 0x02, 0xC2, 0x00, 0x04, 0x03, 0x87, 0xFF, 0xF3, + 0x05, 0xEA, 0xFF, 0xB8, 0x06, 0x77, 0xFF, 0xC7, 0x06, 0x78, 0xFF, 0xC7, + 0x00, 0x05, 0x01, 0xDE, 0xFF, 0x34, 0x01, 0xE0, 0xFF, 0x34, 0x01, 0xE1, + 0xFF, 0x34, 0x01, 0xE2, 0xFF, 0x34, 0x07, 0xFE, 0xFF, 0x78, 0x00, 0x05, + 0x00, 0xC9, 0x00, 0x45, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xED, 0x00, 0x04, + 0x02, 0xEE, 0x00, 0x00, 0x09, 0x18, 0x00, 0x45, 0x00, 0x06, 0x03, 0x92, + 0xFF, 0x50, 0x04, 0x05, 0xFF, 0xB7, 0x04, 0x06, 0xFF, 0xB7, 0x05, 0xE3, + 0xFF, 0x5E, 0x06, 0x77, 0xFF, 0xA1, 0x06, 0x78, 0xFF, 0xA1, 0x00, 0x06, + 0x00, 0x25, 0x00, 0x89, 0x00, 0x35, 0x00, 0x2F, 0x00, 0x36, 0x00, 0x6F, + 0x00, 0x38, 0x00, 0x6E, 0x00, 0x39, 0xFF, 0xE9, 0x00, 0x3A, 0xFF, 0xDC, + 0x00, 0x06, 0x01, 0x9C, 0xFF, 0xAB, 0x01, 0x9D, 0xFF, 0xAB, 0x04, 0x0F, + 0xFF, 0x7B, 0x04, 0x2E, 0xFF, 0x3E, 0x04, 0x30, 0xFF, 0xAB, 0x04, 0x42, + 0xFF, 0x71, 0x00, 0x06, 0x00, 0xC9, 0x00, 0x45, 0x02, 0xB7, 0x00, 0x00, + 0x02, 0xED, 0x00, 0x04, 0x02, 0xEE, 0x00, 0x00, 0x06, 0x05, 0x00, 0x03, + 0x09, 0x18, 0x00, 0x45, 0x00, 0x07, 0x02, 0xB6, 0x00, 0x47, 0x02, 0xC3, + 0x00, 0x47, 0x02, 0xED, 0x00, 0x00, 0x05, 0x1D, 0x00, 0x2C, 0x05, 0x1F, + 0x00, 0x03, 0x05, 0x28, 0x00, 0x2C, 0x06, 0x05, 0x00, 0x00, 0x00, 0x09, + 0x02, 0xB4, 0x00, 0x9F, 0x02, 0xB5, 0x00, 0x9F, 0x02, 0xB6, 0x00, 0x9F, + 0x02, 0xBD, 0x00, 0x9F, 0x02, 0xBE, 0x00, 0x9F, 0x02, 0xC3, 0x00, 0x9F, + 0x02, 0xCC, 0x00, 0x9F, 0x08, 0x61, 0x00, 0x9F, 0x08, 0x62, 0x00, 0x9F, + 0x00, 0x0B, 0x02, 0xC2, 0x00, 0x04, 0x03, 0x87, 0xFF, 0xF3, 0x05, 0xDB, + 0xFF, 0x80, 0x05, 0xDC, 0xFF, 0x80, 0x05, 0xDD, 0xFF, 0x80, 0x05, 0xEA, + 0xFF, 0xB8, 0x06, 0x04, 0xFF, 0xC3, 0x07, 0xF8, 0xFF, 0x80, 0x08, 0xCB, + 0xFF, 0x80, 0x08, 0xCC, 0xFF, 0x80, 0x08, 0xCF, 0xFF, 0x80, 0x00, 0x0C, + 0x02, 0xB4, 0x00, 0x4F, 0x02, 0xB5, 0x00, 0x4F, 0x02, 0xBD, 0x00, 0x4F, + 0x02, 0xBE, 0x00, 0x4F, 0x02, 0xCC, 0x00, 0x4F, 0x02, 0xED, 0x00, 0x00, + 0x05, 0x1D, 0x00, 0x2C, 0x05, 0x1F, 0x00, 0x03, 0x05, 0x28, 0x00, 0x2C, + 0x06, 0x05, 0x00, 0x00, 0x08, 0x61, 0x00, 0x4F, 0x08, 0x62, 0x00, 0x4F, + 0x00, 0x0D, 0x02, 0xDE, 0xFF, 0x5D, 0x03, 0xDF, 0xFF, 0x5D, 0x03, 0xE0, + 0xFF, 0x5D, 0x03, 0xE1, 0xFF, 0x5D, 0x03, 0xE2, 0xFF, 0x5D, 0x04, 0xE9, + 0xFF, 0x5D, 0x04, 0xEA, 0xFF, 0x5D, 0x05, 0x00, 0xFF, 0x5D, 0x05, 0x01, + 0xFF, 0x5D, 0x05, 0xE3, 0xFF, 0x5E, 0x08, 0x8F, 0xFF, 0x5D, 0x08, 0x90, + 0xFF, 0x5D, 0x09, 0xC6, 0xFF, 0x5D, 0x00, 0x0D, 0x00, 0x8A, 0x00, 0x1A, + 0x01, 0x36, 0x00, 0x1A, 0x02, 0xC7, 0x00, 0x1A, 0x02, 0xC8, 0x00, 0x1A, + 0x02, 0xCF, 0x00, 0x1A, 0x02, 0xD2, 0x00, 0x1A, 0x02, 0xD3, 0x00, 0x1A, + 0x02, 0xD4, 0x00, 0x1A, 0x02, 0xD5, 0x00, 0x1A, 0x03, 0x0A, 0x00, 0x1A, + 0x06, 0x21, 0x00, 0x1A, 0x08, 0x65, 0x00, 0x1A, 0x09, 0x3B, 0x00, 0x1A, + 0x00, 0x0D, 0x02, 0xB4, 0x00, 0x4F, 0x02, 0xB5, 0x00, 0x4F, 0x02, 0xBD, + 0x00, 0x4F, 0x02, 0xBE, 0x00, 0x4F, 0x02, 0xC3, 0x00, 0x4F, 0x02, 0xCC, + 0x00, 0x4F, 0x02, 0xED, 0x00, 0x00, 0x05, 0x1D, 0x00, 0x2C, 0x05, 0x1F, + 0x00, 0x03, 0x05, 0x28, 0x00, 0x2C, 0x06, 0x05, 0x00, 0x00, 0x08, 0x61, + 0x00, 0x4F, 0x08, 0x62, 0x00, 0x4F, 0x00, 0x0D, 0x00, 0x8A, 0x00, 0xB6, + 0x01, 0x36, 0x00, 0xB6, 0x02, 0xC7, 0x00, 0xB6, 0x02, 0xC8, 0x00, 0xB6, + 0x02, 0xCF, 0x00, 0xB6, 0x02, 0xD2, 0x00, 0xB6, 0x02, 0xD3, 0x00, 0xB6, + 0x02, 0xD4, 0x00, 0xB6, 0x02, 0xD5, 0x00, 0xB6, 0x03, 0x0A, 0x00, 0xB6, + 0x06, 0x21, 0x00, 0xB6, 0x08, 0x65, 0x00, 0xB6, 0x09, 0x3B, 0x00, 0xB6, + 0x00, 0x0E, 0x02, 0xDE, 0xFF, 0x5D, 0x03, 0x92, 0xFF, 0x50, 0x03, 0xDF, + 0xFF, 0x5D, 0x03, 0xE0, 0xFF, 0x5D, 0x03, 0xE1, 0xFF, 0x5D, 0x03, 0xE2, + 0xFF, 0x5D, 0x04, 0xE9, 0xFF, 0x5D, 0x04, 0xEA, 0xFF, 0x5D, 0x05, 0x00, + 0xFF, 0x5D, 0x05, 0x01, 0xFF, 0x5D, 0x05, 0xE3, 0xFF, 0x5E, 0x08, 0x8F, + 0xFF, 0x5D, 0x08, 0x90, 0xFF, 0x5D, 0x09, 0xC6, 0xFF, 0x5D, 0x00, 0x0E, + 0x03, 0xFC, 0xFF, 0xB7, 0x03, 0xFD, 0xFF, 0xB7, 0x03, 0xFE, 0xFF, 0xB7, + 0x03, 0xFF, 0xFF, 0xB7, 0x04, 0x00, 0xFF, 0xB7, 0x04, 0x01, 0xFF, 0xB7, + 0x04, 0x02, 0xFF, 0xB7, 0x04, 0x03, 0xFF, 0xB7, 0x04, 0x04, 0xFF, 0xB7, + 0x04, 0x05, 0xFF, 0xB7, 0x04, 0x06, 0xFF, 0xB7, 0x05, 0xE3, 0xFF, 0x5E, + 0x08, 0x94, 0xFF, 0xB7, 0x08, 0x95, 0xFF, 0xB7, 0x00, 0x0E, 0x02, 0xDE, + 0xFF, 0x52, 0x03, 0x92, 0xFF, 0x50, 0x03, 0xDF, 0xFF, 0x52, 0x03, 0xE0, + 0xFF, 0x52, 0x03, 0xE1, 0xFF, 0x52, 0x03, 0xE2, 0xFF, 0x52, 0x04, 0xE9, + 0xFF, 0x52, 0x04, 0xEA, 0xFF, 0x52, 0x05, 0x00, 0xFF, 0x52, 0x05, 0x01, + 0xFF, 0x52, 0x05, 0xE3, 0xFF, 0x5E, 0x08, 0x8F, 0xFF, 0x52, 0x08, 0x90, + 0xFF, 0x52, 0x09, 0xC6, 0xFF, 0x52, 0x00, 0x0E, 0x00, 0x8A, 0x00, 0x59, + 0x01, 0x09, 0x00, 0x9F, 0x01, 0x36, 0x00, 0x59, 0x02, 0xC7, 0x00, 0x59, + 0x02, 0xC8, 0x00, 0x59, 0x02, 0xCF, 0x00, 0x59, 0x02, 0xD2, 0x00, 0x59, + 0x02, 0xD3, 0x00, 0x59, 0x02, 0xD4, 0x00, 0x59, 0x02, 0xD5, 0x00, 0x59, + 0x03, 0x0A, 0x00, 0x59, 0x06, 0x21, 0x00, 0x59, 0x08, 0x65, 0x00, 0x59, + 0x09, 0x3B, 0x00, 0x59, 0x00, 0x0F, 0x02, 0xB4, 0x00, 0x4F, 0x02, 0xB5, + 0x00, 0x4F, 0x02, 0xB6, 0x00, 0x4F, 0x02, 0xBD, 0x00, 0x4F, 0x02, 0xBE, + 0x00, 0x4F, 0x02, 0xC2, 0x01, 0x13, 0x02, 0xC3, 0x00, 0x4F, 0x02, 0xCC, + 0x00, 0x4F, 0x02, 0xED, 0x00, 0x00, 0x05, 0x1D, 0x00, 0x2C, 0x05, 0x1F, + 0x00, 0x03, 0x05, 0x28, 0x00, 0x2C, 0x06, 0x05, 0x00, 0x00, 0x08, 0x61, + 0x00, 0x4F, 0x08, 0x62, 0x00, 0x4F, 0x00, 0x13, 0x00, 0x8A, 0x00, 0x0B, + 0x00, 0xC9, 0x00, 0x45, 0x01, 0x36, 0x00, 0x0B, 0x02, 0xB7, 0x00, 0x00, + 0x02, 0xC7, 0x00, 0x0B, 0x02, 0xC8, 0x00, 0x0B, 0x02, 0xCF, 0x00, 0x0B, + 0x02, 0xD2, 0x00, 0x0B, 0x02, 0xD3, 0x00, 0x0B, 0x02, 0xD4, 0x00, 0x0B, + 0x02, 0xD5, 0x00, 0x0B, 0x02, 0xED, 0x00, 0x04, 0x02, 0xEE, 0x00, 0x00, + 0x03, 0x0A, 0x00, 0x0B, 0x06, 0x05, 0x00, 0x03, 0x06, 0x21, 0x00, 0x0B, + 0x08, 0x65, 0x00, 0x0B, 0x09, 0x18, 0x00, 0x45, 0x09, 0x3B, 0x00, 0x0B, + 0x00, 0x15, 0x05, 0x6F, 0xFF, 0xBE, 0x05, 0x84, 0xFF, 0xBE, 0x05, 0x85, + 0xFF, 0xBE, 0x05, 0x87, 0xFF, 0xBE, 0x05, 0x8A, 0xFF, 0xBE, 0x05, 0xB1, + 0xFF, 0xBE, 0x05, 0xBD, 0xFF, 0xBE, 0x05, 0xE3, 0xFF, 0xBE, 0x05, 0xF0, + 0xFF, 0xBE, 0x05, 0xF1, 0xFF, 0xBE, 0x05, 0xF3, 0xFF, 0xBE, 0x05, 0xF6, + 0xFF, 0xBE, 0x05, 0xFD, 0xFF, 0xBE, 0x05, 0xFE, 0xFF, 0xBE, 0x06, 0x00, + 0xFF, 0xBE, 0x06, 0x03, 0xFF, 0xBE, 0x06, 0x04, 0xFF, 0xBE, 0x07, 0x0B, + 0xFF, 0xBE, 0x07, 0x0C, 0xFF, 0xBE, 0x07, 0x0D, 0xFF, 0xBE, 0x08, 0xD2, + 0xFF, 0xBE, 0x00, 0x15, 0x02, 0xB1, 0x00, 0x3B, 0x02, 0xB2, 0x00, 0x3B, + 0x02, 0xB3, 0x00, 0x3B, 0x02, 0xB7, 0x00, 0x3B, 0x02, 0xB8, 0x00, 0x3B, + 0x02, 0xBA, 0x00, 0x3B, 0x02, 0xBB, 0x00, 0x3B, 0x02, 0xBC, 0x00, 0x3B, + 0x02, 0xBF, 0x00, 0x3B, 0x02, 0xC0, 0x00, 0x3B, 0x02, 0xC1, 0x00, 0x3B, + 0x02, 0xC4, 0x00, 0x3B, 0x02, 0xC5, 0x00, 0x3B, 0x02, 0xC6, 0x00, 0x3B, + 0x02, 0xCB, 0x00, 0x3B, 0x02, 0xCD, 0x00, 0x3B, 0x05, 0x0B, 0x00, 0x3B, + 0x08, 0x60, 0x00, 0x3B, 0x08, 0x63, 0x00, 0x3B, 0x08, 0x64, 0x00, 0x3B, + 0x08, 0x9C, 0x00, 0x3B, 0x00, 0x16, 0x01, 0x09, 0x00, 0x9F, 0x02, 0xB1, + 0x00, 0x59, 0x02, 0xB2, 0x00, 0x59, 0x02, 0xB3, 0x00, 0x59, 0x02, 0xB7, + 0x00, 0x59, 0x02, 0xB8, 0x00, 0x59, 0x02, 0xBA, 0x00, 0x59, 0x02, 0xBB, + 0x00, 0x59, 0x02, 0xBC, 0x00, 0x59, 0x02, 0xBF, 0x00, 0x59, 0x02, 0xC0, + 0x00, 0x59, 0x02, 0xC1, 0x00, 0x59, 0x02, 0xC4, 0x00, 0x59, 0x02, 0xC5, + 0x00, 0x59, 0x02, 0xC6, 0x00, 0x59, 0x02, 0xCB, 0x00, 0x59, 0x02, 0xCD, + 0x00, 0x59, 0x05, 0x0B, 0x00, 0x59, 0x08, 0x60, 0x00, 0x59, 0x08, 0x63, + 0x00, 0x59, 0x08, 0x64, 0x00, 0x59, 0x08, 0x9C, 0x00, 0x59, 0x00, 0x16, + 0x04, 0x38, 0xFF, 0x98, 0x05, 0x6F, 0xFF, 0x3A, 0x05, 0x84, 0xFF, 0x3A, + 0x05, 0x85, 0xFF, 0x3A, 0x05, 0x87, 0xFF, 0x3A, 0x05, 0x8A, 0xFF, 0x3A, + 0x05, 0xB1, 0xFF, 0x3A, 0x05, 0xBD, 0xFF, 0x3A, 0x05, 0xE3, 0xFF, 0x3A, + 0x05, 0xF0, 0xFF, 0x3A, 0x05, 0xF1, 0xFF, 0x3A, 0x05, 0xF3, 0xFF, 0x3A, + 0x05, 0xF6, 0xFF, 0x3A, 0x05, 0xFD, 0xFF, 0x3A, 0x05, 0xFE, 0xFF, 0x3A, + 0x06, 0x00, 0xFF, 0x3A, 0x06, 0x03, 0xFF, 0x3A, 0x06, 0x04, 0xFF, 0x3A, + 0x07, 0x0B, 0xFF, 0x3A, 0x07, 0x0C, 0xFF, 0x3A, 0x07, 0x0D, 0xFF, 0x3A, + 0x08, 0xD2, 0xFF, 0x3A, 0x00, 0x16, 0x01, 0xC8, 0xFF, 0x92, 0x01, 0xC9, + 0xFF, 0x92, 0x01, 0xCA, 0xFF, 0x92, 0x01, 0xCB, 0xFF, 0x89, 0x01, 0xCC, + 0xFF, 0x89, 0x01, 0xCD, 0xFF, 0x89, 0x01, 0xCE, 0xFF, 0x89, 0x01, 0xCF, + 0xFF, 0x89, 0x01, 0xD0, 0xFF, 0x89, 0x01, 0xD1, 0xFF, 0x89, 0x04, 0x29, + 0xFF, 0x92, 0x04, 0x37, 0xFF, 0x92, 0x04, 0x51, 0xFF, 0x92, 0x08, 0x3C, + 0xFF, 0x92, 0x08, 0x3D, 0xFF, 0x89, 0x08, 0x3E, 0xFF, 0x89, 0x08, 0x3F, + 0xFF, 0x89, 0x09, 0x8F, 0xFF, 0x92, 0x09, 0xEB, 0xFF, 0x92, 0x09, 0xEC, + 0xFF, 0x92, 0x09, 0xED, 0xFF, 0x92, 0x09, 0xEE, 0xFF, 0x92, 0x00, 0x16, + 0x01, 0x9C, 0xFF, 0xAB, 0x01, 0x9D, 0xFF, 0xAB, 0x01, 0xD2, 0xFF, 0xB6, + 0x01, 0xD3, 0xFF, 0xB6, 0x01, 0xD4, 0xFF, 0xB6, 0x01, 0xD5, 0xFF, 0xB6, + 0x01, 0xD6, 0xFF, 0xB6, 0x01, 0xD7, 0xFF, 0xB6, 0x04, 0x0F, 0xFF, 0x7B, + 0x04, 0x2E, 0xFF, 0xB6, 0x04, 0x30, 0xFF, 0xAB, 0x04, 0x42, 0xFF, 0x71, + 0x08, 0x40, 0xFF, 0xB6, 0x08, 0x41, 0xFF, 0xB6, 0x08, 0xB0, 0xFF, 0xB6, + 0x09, 0x85, 0xFF, 0xB6, 0x09, 0x98, 0xFF, 0xB6, 0x09, 0x9C, 0xFF, 0xB6, + 0x09, 0xA1, 0xFF, 0xB6, 0x09, 0xF0, 0xFF, 0xB6, 0x09, 0xF1, 0xFF, 0xB6, + 0x09, 0xF2, 0xFF, 0xB6, 0x00, 0x17, 0x01, 0xD8, 0xFF, 0x34, 0x01, 0xD9, + 0xFF, 0x34, 0x01, 0xDA, 0xFF, 0x34, 0x01, 0xDB, 0xFF, 0x34, 0x01, 0xDC, + 0xFF, 0x34, 0x01, 0xDD, 0xFF, 0x34, 0x01, 0xDE, 0xFF, 0x34, 0x01, 0xDF, + 0xFF, 0x34, 0x01, 0xE0, 0xFF, 0x34, 0x01, 0xE1, 0xFF, 0x34, 0x01, 0xE2, + 0xFF, 0x34, 0x01, 0xE3, 0xFF, 0x34, 0x01, 0xE4, 0xFF, 0x34, 0x01, 0xE5, + 0xFF, 0x34, 0x01, 0xE6, 0xFF, 0x34, 0x01, 0xEB, 0xFF, 0x34, 0x01, 0xEC, + 0xFF, 0x34, 0x01, 0xEF, 0xFF, 0x34, 0x08, 0x42, 0xFF, 0x34, 0x08, 0x43, + 0xFF, 0x34, 0x08, 0x44, 0xFF, 0x34, 0x09, 0x94, 0xFF, 0x34, 0x09, 0x95, + 0xFF, 0x34, 0x00, 0x17, 0x01, 0x15, 0xFF, 0x69, 0x01, 0x9B, 0xFF, 0x69, + 0x01, 0x9C, 0xFF, 0x69, 0x01, 0x9D, 0xFF, 0x69, 0x01, 0x9E, 0xFF, 0x69, + 0x01, 0x9F, 0xFF, 0x69, 0x01, 0xA0, 0xFF, 0x69, 0x01, 0xA1, 0xFF, 0x69, + 0x01, 0xA2, 0xFF, 0x69, 0x01, 0xA3, 0xFF, 0x69, 0x01, 0xA5, 0xFF, 0x69, + 0x01, 0xA6, 0xFF, 0x69, 0x01, 0xA7, 0xFF, 0x69, 0x04, 0x3A, 0xFF, 0x69, + 0x04, 0x3F, 0xFF, 0x69, 0x04, 0x42, 0xFF, 0x69, 0x04, 0x52, 0xFF, 0x69, + 0x07, 0x55, 0xFF, 0x69, 0x08, 0x31, 0xFF, 0x69, 0x08, 0x32, 0xFF, 0x69, + 0x09, 0x27, 0xFF, 0x69, 0x09, 0x83, 0xFF, 0x69, 0x09, 0x93, 0xFF, 0x69, + 0x00, 0x17, 0x01, 0x15, 0xFF, 0xC4, 0x01, 0x9B, 0xFF, 0xC4, 0x01, 0x9C, + 0xFF, 0xC4, 0x01, 0x9D, 0xFF, 0xC4, 0x01, 0x9E, 0xFF, 0xC4, 0x01, 0x9F, + 0xFF, 0xC4, 0x01, 0xA0, 0xFF, 0xC4, 0x01, 0xA1, 0xFF, 0xC4, 0x01, 0xA2, + 0xFF, 0xC4, 0x01, 0xA3, 0xFF, 0xC4, 0x01, 0xA5, 0xFF, 0xC4, 0x01, 0xA6, + 0xFF, 0xC4, 0x01, 0xA7, 0xFF, 0xC4, 0x04, 0x3A, 0xFF, 0xC4, 0x04, 0x3F, + 0xFF, 0xC4, 0x04, 0x42, 0xFF, 0xC4, 0x04, 0x52, 0xFF, 0xC4, 0x07, 0x55, + 0xFF, 0xC4, 0x08, 0x31, 0xFF, 0xC4, 0x08, 0x32, 0xFF, 0xC4, 0x09, 0x27, + 0xFF, 0xC4, 0x09, 0x83, 0xFF, 0xC4, 0x09, 0x93, 0xFF, 0xC4, 0x00, 0x17, + 0x05, 0x6F, 0xFF, 0x7B, 0x05, 0x84, 0xFF, 0x7B, 0x05, 0x85, 0xFF, 0x7B, + 0x05, 0x87, 0xFF, 0x7B, 0x05, 0x8A, 0xFF, 0x7B, 0x05, 0xB1, 0xFF, 0x7B, + 0x05, 0xBD, 0xFF, 0x7B, 0x05, 0xE3, 0xFF, 0x7B, 0x05, 0xF0, 0xFF, 0x7B, + 0x05, 0xF1, 0xFF, 0x7B, 0x05, 0xF3, 0xFF, 0x7B, 0x05, 0xF6, 0xFF, 0x7B, + 0x05, 0xFD, 0xFF, 0x7B, 0x05, 0xFE, 0xFF, 0x7B, 0x06, 0x00, 0xFF, 0x7B, + 0x06, 0x03, 0xFF, 0x7B, 0x06, 0x04, 0xFF, 0x7B, 0x06, 0x77, 0xFF, 0x42, + 0x06, 0x78, 0xFF, 0x42, 0x07, 0x0B, 0xFF, 0x7B, 0x07, 0x0C, 0xFF, 0x7B, + 0x07, 0x0D, 0xFF, 0x7B, 0x08, 0xD2, 0xFF, 0x7B, 0x00, 0x18, 0x01, 0xD8, + 0xFF, 0x34, 0x01, 0xD9, 0xFF, 0x34, 0x01, 0xDA, 0xFF, 0x34, 0x01, 0xDB, + 0xFF, 0x34, 0x01, 0xDC, 0xFF, 0x34, 0x01, 0xDD, 0xFF, 0x34, 0x01, 0xDE, + 0xFF, 0x34, 0x01, 0xDF, 0xFF, 0x34, 0x01, 0xE0, 0xFF, 0x34, 0x01, 0xE1, + 0xFF, 0x34, 0x01, 0xE2, 0xFF, 0x34, 0x01, 0xE3, 0xFF, 0x34, 0x01, 0xE4, + 0xFF, 0x34, 0x01, 0xE5, 0xFF, 0x34, 0x01, 0xE6, 0xFF, 0x34, 0x01, 0xEB, + 0xFF, 0x34, 0x01, 0xEC, 0xFF, 0x34, 0x01, 0xEF, 0xFF, 0x34, 0x07, 0xFE, + 0xFF, 0x78, 0x08, 0x42, 0xFF, 0x34, 0x08, 0x43, 0xFF, 0x34, 0x08, 0x44, + 0xFF, 0x34, 0x09, 0x94, 0xFF, 0x34, 0x09, 0x95, 0xFF, 0x34, 0x00, 0x18, + 0x03, 0x92, 0xFF, 0x50, 0x04, 0x05, 0xFF, 0xB7, 0x04, 0x06, 0xFF, 0xB7, + 0x05, 0x6F, 0xFF, 0xAE, 0x05, 0x84, 0xFF, 0xAE, 0x05, 0x85, 0xFF, 0xAE, + 0x05, 0x87, 0xFF, 0xAE, 0x05, 0x8A, 0xFF, 0xAE, 0x05, 0xB1, 0xFF, 0xAE, + 0x05, 0xBD, 0xFF, 0xAE, 0x05, 0xE3, 0xFF, 0xAE, 0x05, 0xF0, 0xFF, 0xAE, + 0x05, 0xF1, 0xFF, 0xAE, 0x05, 0xF3, 0xFF, 0xAE, 0x05, 0xF6, 0xFF, 0xAE, + 0x05, 0xFD, 0xFF, 0xAE, 0x05, 0xFE, 0xFF, 0xAE, 0x06, 0x00, 0xFF, 0xAE, + 0x06, 0x03, 0xFF, 0xAE, 0x06, 0x04, 0xFF, 0xAE, 0x07, 0x0B, 0xFF, 0xAE, + 0x07, 0x0C, 0xFF, 0xAE, 0x07, 0x0D, 0xFF, 0xAE, 0x08, 0xD2, 0xFF, 0xAE, + 0x00, 0x18, 0x01, 0x15, 0xFF, 0x5E, 0x01, 0x9B, 0xFF, 0x5E, 0x01, 0x9C, + 0xFF, 0x5E, 0x01, 0x9D, 0xFF, 0x5E, 0x01, 0x9E, 0xFF, 0x5E, 0x01, 0x9F, + 0xFF, 0x5E, 0x01, 0xA0, 0xFF, 0x5E, 0x01, 0xA1, 0xFF, 0x5E, 0x01, 0xA2, + 0xFF, 0x5E, 0x01, 0xA3, 0xFF, 0x5E, 0x01, 0xA5, 0xFF, 0x5E, 0x01, 0xA6, + 0xFF, 0x5E, 0x01, 0xA7, 0xFF, 0x5E, 0x04, 0x0F, 0xFF, 0x7B, 0x04, 0x30, + 0xFF, 0xAB, 0x04, 0x3A, 0xFF, 0x5E, 0x04, 0x3F, 0xFF, 0x5E, 0x04, 0x42, + 0xFF, 0x5E, 0x04, 0x52, 0xFF, 0x5E, 0x08, 0x31, 0xFF, 0x5E, 0x08, 0x32, + 0xFF, 0x5E, 0x09, 0x27, 0xFF, 0x5E, 0x09, 0x83, 0xFF, 0x5E, 0x09, 0x93, + 0xFF, 0x5E, 0x00, 0x18, 0x01, 0x15, 0xFF, 0x5E, 0x01, 0x9B, 0xFF, 0x5E, + 0x01, 0x9C, 0xFF, 0x5E, 0x01, 0x9D, 0xFF, 0x5E, 0x01, 0x9E, 0xFF, 0x5E, + 0x01, 0x9F, 0xFF, 0x5E, 0x01, 0xA0, 0xFF, 0x5E, 0x01, 0xA1, 0xFF, 0x5E, + 0x01, 0xA2, 0xFF, 0x5E, 0x01, 0xA3, 0xFF, 0x5E, 0x01, 0xA5, 0xFF, 0x5E, + 0x01, 0xA6, 0xFF, 0x5E, 0x01, 0xA7, 0xFF, 0x5E, 0x04, 0x3A, 0xFF, 0x5E, + 0x04, 0x3F, 0xFF, 0x5E, 0x04, 0x42, 0xFF, 0x5E, 0x04, 0x52, 0xFF, 0x5E, + 0x07, 0x55, 0xFF, 0x5E, 0x08, 0x31, 0xFF, 0x5E, 0x08, 0x32, 0xFF, 0x5E, + 0x09, 0x27, 0xFF, 0x5E, 0x09, 0x83, 0xFF, 0x5E, 0x09, 0x93, 0xFF, 0x5E, + 0x09, 0x95, 0xFF, 0x46, 0x00, 0x19, 0x01, 0xDE, 0xFF, 0x34, 0x01, 0xE0, + 0xFF, 0x34, 0x01, 0xE1, 0xFF, 0x34, 0x01, 0xE2, 0xFF, 0x34, 0x05, 0x6F, + 0xFF, 0x9A, 0x05, 0x84, 0xFF, 0x9A, 0x05, 0x85, 0xFF, 0x9A, 0x05, 0x87, + 0xFF, 0x9A, 0x05, 0x8A, 0xFF, 0x9A, 0x05, 0xB1, 0xFF, 0x9A, 0x05, 0xBD, + 0xFF, 0x9A, 0x05, 0xE3, 0xFF, 0x9A, 0x05, 0xF0, 0xFF, 0x9A, 0x05, 0xF1, + 0xFF, 0x9A, 0x05, 0xF3, 0xFF, 0x9A, 0x05, 0xFD, 0xFF, 0x9A, 0x05, 0xFE, + 0xFF, 0x9A, 0x06, 0x00, 0xFF, 0x9A, 0x06, 0x03, 0xFF, 0x9A, 0x06, 0x04, + 0xFF, 0x9A, 0x07, 0x0B, 0xFF, 0x9A, 0x07, 0x0C, 0xFF, 0x9A, 0x07, 0x0D, + 0xFF, 0x9A, 0x07, 0xFE, 0xFF, 0x78, 0x08, 0xD2, 0xFF, 0x9A, 0x00, 0x19, + 0x01, 0xDE, 0xFF, 0x34, 0x01, 0xE0, 0xFF, 0x34, 0x01, 0xE1, 0xFF, 0x34, + 0x01, 0xE2, 0xFF, 0x34, 0x05, 0x6F, 0xFF, 0xB1, 0x05, 0x84, 0xFF, 0xB1, + 0x05, 0x85, 0xFF, 0xB1, 0x05, 0x87, 0xFF, 0xB1, 0x05, 0x8A, 0xFF, 0xB1, + 0x05, 0xB1, 0xFF, 0xB1, 0x05, 0xBD, 0xFF, 0xB1, 0x05, 0xE3, 0xFF, 0xB1, + 0x05, 0xF0, 0xFF, 0xB1, 0x05, 0xF1, 0xFF, 0xB1, 0x05, 0xF3, 0xFF, 0xB1, + 0x05, 0xFD, 0xFF, 0xB1, 0x05, 0xFE, 0xFF, 0xB1, 0x06, 0x00, 0xFF, 0xB1, + 0x06, 0x03, 0xFF, 0xB1, 0x06, 0x04, 0xFF, 0xB1, 0x07, 0x0B, 0xFF, 0xB1, + 0x07, 0x0C, 0xFF, 0xB1, 0x07, 0x0D, 0xFF, 0xB1, 0x07, 0xFE, 0xFF, 0x78, + 0x08, 0xD2, 0xFF, 0xB1, 0x00, 0x1A, 0x01, 0xDE, 0xFF, 0x34, 0x01, 0xE0, + 0xFF, 0x34, 0x01, 0xE1, 0xFF, 0x34, 0x01, 0xE2, 0xFF, 0x34, 0x05, 0x6F, + 0xFF, 0xB5, 0x05, 0x84, 0xFF, 0xB5, 0x05, 0x85, 0xFF, 0xB5, 0x05, 0x87, + 0xFF, 0xB5, 0x05, 0x8A, 0xFF, 0xB5, 0x05, 0xB1, 0xFF, 0xB5, 0x05, 0xBD, + 0xFF, 0xB5, 0x05, 0xE3, 0xFF, 0xB5, 0x05, 0xF0, 0xFF, 0xB5, 0x05, 0xF1, + 0xFF, 0xB5, 0x05, 0xF3, 0xFF, 0xB5, 0x05, 0xF6, 0xFF, 0xB5, 0x05, 0xFD, + 0xFF, 0xB5, 0x05, 0xFE, 0xFF, 0xB5, 0x06, 0x00, 0xFF, 0xB5, 0x06, 0x03, + 0xFF, 0xB5, 0x06, 0x04, 0xFF, 0xB5, 0x07, 0x0B, 0xFF, 0xB5, 0x07, 0x0C, + 0xFF, 0xB5, 0x07, 0x0D, 0xFF, 0xB5, 0x07, 0xFE, 0xFF, 0x78, 0x08, 0xD2, + 0xFF, 0xB5, 0x00, 0x1B, 0x02, 0xDE, 0xFF, 0x5D, 0x03, 0x92, 0xFF, 0x50, + 0x03, 0xDF, 0xFF, 0x5D, 0x03, 0xE0, 0xFF, 0x5D, 0x03, 0xE1, 0xFF, 0x5D, + 0x03, 0xE2, 0xFF, 0x5D, 0x03, 0xFC, 0xFF, 0xB7, 0x03, 0xFD, 0xFF, 0xB7, + 0x03, 0xFE, 0xFF, 0xB7, 0x03, 0xFF, 0xFF, 0xB7, 0x04, 0x00, 0xFF, 0xB7, + 0x04, 0x01, 0xFF, 0xB7, 0x04, 0x02, 0xFF, 0xB7, 0x04, 0x03, 0xFF, 0xB7, + 0x04, 0x04, 0xFF, 0xB7, 0x04, 0x05, 0xFF, 0xB7, 0x04, 0x06, 0xFF, 0xB7, + 0x04, 0xE9, 0xFF, 0x5D, 0x04, 0xEA, 0xFF, 0x5D, 0x05, 0x00, 0xFF, 0x5D, + 0x05, 0x01, 0xFF, 0x5D, 0x05, 0xE3, 0xFF, 0x5E, 0x08, 0x8F, 0xFF, 0x5D, + 0x08, 0x90, 0xFF, 0x5D, 0x08, 0x94, 0xFF, 0xB7, 0x08, 0x95, 0xFF, 0xB7, + 0x09, 0xC6, 0xFF, 0x5D, 0x00, 0x01, 0x06, 0x05, 0x00, 0x80, 0x00, 0x01, + 0x04, 0x0F, 0xFF, 0xA3, 0x00, 0x01, 0x04, 0x0F, 0xFF, 0x52, 0x00, 0x01, + 0x02, 0xC2, 0x00, 0x5D, 0x00, 0x01, 0x02, 0xC2, 0x00, 0x51, 0x00, 0x01, + 0x04, 0x0F, 0xFF, 0xBB, 0x00, 0x01, 0x04, 0x0F, 0xFF, 0x46, 0x00, 0x01, + 0x06, 0x05, 0xFF, 0x98, 0x00, 0x01, 0x02, 0xC2, 0x00, 0x68, 0x00, 0x01, + 0x02, 0xC2, 0x00, 0x45, 0x00, 0x01, 0x04, 0xAB, 0xFF, 0x75, 0x00, 0x01, + 0x04, 0x42, 0xFF, 0x69, 0x00, 0x02, 0x02, 0xB6, 0x00, 0x51, 0x02, 0xC2, + 0x00, 0x51, 0x00, 0x02, 0x00, 0xC9, 0x00, 0x45, 0x09, 0x18, 0x00, 0x45, + 0x00, 0x02, 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, 0x00, 0x02, + 0x04, 0x0F, 0xFF, 0xA3, 0x06, 0x05, 0x00, 0x8B, 0x00, 0x02, 0x04, 0x7F, + 0xFF, 0x98, 0x04, 0x98, 0xFF, 0x98, 0x00, 0x02, 0x04, 0x0F, 0xFF, 0x80, + 0x04, 0x42, 0xFF, 0x75, 0x00, 0x02, 0x04, 0x2D, 0xFF, 0x98, 0x04, 0xE8, + 0xFF, 0x8C, 0x00, 0x02, 0x05, 0xE3, 0xFF, 0xBB, 0x05, 0xEA, 0xFF, 0x80, + 0x00, 0x02, 0x01, 0xA5, 0xFF, 0xAF, 0x01, 0xA6, 0xFF, 0xAF, 0x00, 0x02, + 0x01, 0xD9, 0xFF, 0x98, 0x04, 0x29, 0xFF, 0xBB, 0x00, 0x02, 0x01, 0xD9, + 0xFF, 0x98, 0x02, 0xD1, 0xFF, 0xA3, 0x00, 0x02, 0x05, 0xEA, 0xFF, 0x52, + 0x06, 0x04, 0xFF, 0x75, 0x00, 0x03, 0x00, 0xC9, 0x00, 0x45, 0x02, 0xE2, + 0x00, 0x51, 0x09, 0x18, 0x00, 0x45, 0x00, 0x03, 0x02, 0xB6, 0x00, 0x51, + 0x02, 0xC2, 0x00, 0x51, 0x02, 0xC3, 0x00, 0x51, 0x00, 0x03, 0x00, 0xC9, + 0x00, 0x45, 0x09, 0x18, 0x00, 0x45, 0x09, 0x1A, 0x00, 0x45, 0x00, 0x03, + 0x01, 0x9D, 0xFF, 0x69, 0x01, 0xA5, 0xFF, 0x69, 0x01, 0xA6, 0xFF, 0x69, + 0x00, 0x03, 0x04, 0x0F, 0xFF, 0x46, 0x04, 0x2E, 0xFF, 0x98, 0x04, 0x42, + 0xFF, 0x75, 0x00, 0x03, 0x02, 0xC2, 0x00, 0x5D, 0x05, 0x8F, 0xFF, 0x98, + 0x05, 0xEA, 0xFF, 0x69, 0x00, 0x03, 0x01, 0xA5, 0xFF, 0x80, 0x01, 0xA6, + 0xFF, 0x80, 0x05, 0x8F, 0xFF, 0xBB, 0x00, 0x03, 0x02, 0xBD, 0x00, 0x51, + 0x02, 0xC3, 0x00, 0x45, 0x06, 0x05, 0xFF, 0xE3, 0x00, 0x03, 0x05, 0xEA, + 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0xBB, 0x00, 0x03, + 0x05, 0xDC, 0xFF, 0xBB, 0x05, 0xDD, 0xFF, 0x52, 0x06, 0x05, 0xFF, 0xBB, + 0x00, 0x04, 0x05, 0xC8, 0xFF, 0x75, 0x05, 0xCC, 0xFF, 0x75, 0x07, 0xFB, + 0xFF, 0x75, 0x07, 0xFD, 0xFF, 0x75, 0x00, 0x04, 0x04, 0x0D, 0xFF, 0xBB, + 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0xAF, + 0x00, 0x04, 0x05, 0xC8, 0xFF, 0x80, 0x05, 0xCC, 0xFF, 0x80, 0x07, 0xFB, + 0xFF, 0x80, 0x07, 0xFD, 0xFF, 0x80, 0x00, 0x04, 0x04, 0x0F, 0xFF, 0xAF, + 0x04, 0xAD, 0xFF, 0x75, 0x04, 0xB4, 0xFF, 0x3B, 0x09, 0x27, 0xFF, 0x8C, + 0x00, 0x04, 0x01, 0xDE, 0xFF, 0xBB, 0x01, 0xE0, 0xFF, 0xBB, 0x01, 0xE1, + 0xFF, 0xBB, 0x01, 0xE2, 0xFF, 0xBB, 0x00, 0x04, 0x04, 0x0F, 0xFF, 0x2F, + 0x04, 0x3B, 0xFF, 0x80, 0x04, 0x42, 0xFF, 0x98, 0x04, 0xFE, 0xFF, 0x98, + 0x00, 0x04, 0x01, 0xA5, 0xFF, 0xAF, 0x01, 0xA6, 0xFF, 0xAF, 0x04, 0x0F, + 0xFF, 0x80, 0x04, 0x42, 0xFF, 0x98, 0x00, 0x05, 0x04, 0x2D, 0xFF, 0xAF, + 0x04, 0x98, 0xFF, 0x75, 0x04, 0xAC, 0xFF, 0x75, 0x04, 0xE8, 0xFF, 0x8C, + 0x05, 0x12, 0xFF, 0xBB, 0x00, 0x05, 0x04, 0x0F, 0xFF, 0xAF, 0x04, 0xAD, + 0xFF, 0x75, 0x04, 0xB4, 0xFF, 0x3B, 0x05, 0x24, 0xFF, 0x98, 0x09, 0x27, + 0xFF, 0x8C, 0x00, 0x05, 0x02, 0xC2, 0x00, 0x5D, 0x05, 0xE3, 0xFF, 0xA3, + 0x05, 0xEA, 0xFF, 0x75, 0x06, 0x04, 0xFF, 0x98, 0x06, 0x1D, 0xFF, 0xBB, + 0x00, 0x06, 0x05, 0xD0, 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, + 0xFF, 0x75, 0x05, 0xF6, 0xFF, 0xBB, 0x06, 0x09, 0xFF, 0xAF, 0x06, 0x15, + 0xFF, 0xA3, 0x00, 0x06, 0x05, 0xD0, 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, + 0x05, 0xD4, 0xFF, 0x75, 0x06, 0x08, 0xFF, 0xBB, 0x06, 0x09, 0xFF, 0xBB, + 0x06, 0x15, 0xFF, 0xAF, 0x00, 0x06, 0x04, 0x2D, 0xFF, 0xAF, 0x04, 0x98, + 0xFF, 0x75, 0x04, 0xAC, 0xFF, 0x75, 0x04, 0xAE, 0xFF, 0x80, 0x04, 0xE8, + 0xFF, 0x8C, 0x05, 0x12, 0xFF, 0xBB, 0x00, 0x06, 0x01, 0x9D, 0xFF, 0x80, + 0x01, 0xA5, 0xFF, 0x80, 0x01, 0xA6, 0xFF, 0x80, 0x05, 0xDD, 0xFF, 0x69, + 0x05, 0xEA, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0x5E, 0x00, 0x06, 0x01, 0x9D, + 0xFF, 0x69, 0x01, 0xA5, 0xFF, 0x69, 0x01, 0xA6, 0xFF, 0x69, 0x05, 0xEA, + 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0xBB, 0x00, 0x23, + 0x00, 0x8A, 0x00, 0x59, 0x01, 0x09, 0x00, 0x9F, 0x01, 0x36, 0x00, 0x59, + 0x02, 0xB1, 0x00, 0x59, 0x02, 0xB2, 0x00, 0x59, 0x02, 0xB3, 0x00, 0x59, + 0x02, 0xB7, 0x00, 0x59, 0x02, 0xB8, 0x00, 0x59, 0x02, 0xBA, 0x00, 0x59, + 0x02, 0xBB, 0x00, 0x59, 0x02, 0xBC, 0x00, 0x59, 0x02, 0xBF, 0x00, 0x59, + 0x02, 0xC0, 0x00, 0x59, 0x02, 0xC1, 0x00, 0x59, 0x02, 0xC4, 0x00, 0x59, + 0x02, 0xC5, 0x00, 0x59, 0x02, 0xC6, 0x00, 0x59, 0x02, 0xC7, 0x00, 0x59, + 0x02, 0xC8, 0x00, 0x59, 0x02, 0xCB, 0x00, 0x59, 0x02, 0xCD, 0x00, 0x59, + 0x02, 0xCF, 0x00, 0x59, 0x02, 0xD2, 0x00, 0x59, 0x02, 0xD3, 0x00, 0x59, + 0x02, 0xD4, 0x00, 0x59, 0x02, 0xD5, 0x00, 0x59, 0x03, 0x0A, 0x00, 0x59, + 0x05, 0x0B, 0x00, 0x59, 0x06, 0x21, 0x00, 0x59, 0x08, 0x60, 0x00, 0x59, + 0x08, 0x63, 0x00, 0x59, 0x08, 0x64, 0x00, 0x59, 0x08, 0x65, 0x00, 0x59, + 0x08, 0x9C, 0x00, 0x59, 0x09, 0x3B, 0x00, 0x59, 0x00, 0x23, 0x02, 0xB1, + 0x00, 0x00, 0x02, 0xB2, 0x00, 0x00, 0x02, 0xB3, 0x00, 0x00, 0x02, 0xB4, + 0x00, 0x4F, 0x02, 0xB5, 0x00, 0x4F, 0x02, 0xB6, 0x00, 0x4F, 0x02, 0xB7, + 0x00, 0x00, 0x02, 0xB8, 0x00, 0x00, 0x02, 0xBA, 0x00, 0x00, 0x02, 0xBB, + 0x00, 0x00, 0x02, 0xBC, 0x00, 0x00, 0x02, 0xBD, 0x00, 0x4F, 0x02, 0xBE, + 0x00, 0x4F, 0x02, 0xBF, 0x00, 0x00, 0x02, 0xC0, 0x00, 0x00, 0x02, 0xC1, + 0x00, 0x00, 0x02, 0xC3, 0x00, 0x4F, 0x02, 0xC4, 0x00, 0x00, 0x02, 0xC5, + 0x00, 0x00, 0x02, 0xC6, 0x00, 0x00, 0x02, 0xCB, 0x00, 0x00, 0x02, 0xCC, + 0x00, 0x4F, 0x02, 0xCD, 0x00, 0x00, 0x02, 0xED, 0x00, 0x00, 0x05, 0x0B, + 0x00, 0x00, 0x05, 0x1D, 0x00, 0x2C, 0x05, 0x1F, 0x00, 0x03, 0x05, 0x28, + 0x00, 0x2C, 0x06, 0x05, 0x00, 0x00, 0x08, 0x60, 0x00, 0x00, 0x08, 0x61, + 0x00, 0x4F, 0x08, 0x62, 0x00, 0x4F, 0x08, 0x63, 0x00, 0x00, 0x08, 0x64, + 0x00, 0x00, 0x08, 0x9C, 0x00, 0x00, 0x00, 0x07, 0x05, 0xD0, 0xFF, 0xA3, + 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, 0xFF, 0x75, 0x05, 0xF6, 0xFF, 0xA3, + 0x06, 0x08, 0xFF, 0xA3, 0x06, 0x09, 0xFF, 0xA3, 0x06, 0x15, 0xFF, 0xA3, + 0x00, 0x07, 0x02, 0xC2, 0x00, 0x5D, 0x04, 0x3B, 0xFF, 0xBB, 0x04, 0xFE, + 0xFF, 0x80, 0x05, 0x2B, 0xFF, 0xBB, 0x05, 0xE6, 0xFF, 0x98, 0x05, 0xE8, + 0xFF, 0x98, 0x05, 0xEA, 0xFF, 0x98, 0x00, 0x07, 0x05, 0xCE, 0xFF, 0x98, + 0x05, 0xCF, 0xFF, 0x98, 0x06, 0x05, 0xFF, 0xAF, 0x08, 0x01, 0xFF, 0x98, + 0x08, 0x02, 0xFF, 0x98, 0x09, 0x0E, 0xFF, 0x98, 0x09, 0x0F, 0xFF, 0x98, + 0x00, 0x07, 0x04, 0xAB, 0xFF, 0x75, 0x05, 0xCE, 0xFF, 0x69, 0x05, 0xCF, + 0xFF, 0x69, 0x08, 0x01, 0xFF, 0x69, 0x08, 0x02, 0xFF, 0x69, 0x09, 0x0E, + 0xFF, 0x69, 0x09, 0x0F, 0xFF, 0x69, 0x00, 0x07, 0x02, 0xC2, 0x00, 0x5D, + 0x04, 0x3B, 0xFF, 0xBB, 0x04, 0xFE, 0xFF, 0x80, 0x05, 0x2B, 0xFF, 0xBB, + 0x05, 0xE3, 0xFF, 0xA3, 0x05, 0xEA, 0xFF, 0x8C, 0x06, 0x04, 0xFF, 0x98, + 0x00, 0x08, 0x05, 0xDB, 0xFF, 0xA3, 0x05, 0xDC, 0xFF, 0xAF, 0x05, 0xDD, + 0xFF, 0xA3, 0x06, 0x05, 0xFF, 0xBB, 0x07, 0xF8, 0xFF, 0xA3, 0x08, 0xCB, + 0xFF, 0xA3, 0x08, 0xCC, 0xFF, 0xA3, 0x08, 0xCF, 0xFF, 0xA3, 0x00, 0x08, + 0x04, 0x0F, 0xFF, 0xAF, 0x04, 0x6F, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x75, + 0x04, 0xB4, 0xFF, 0x3B, 0x05, 0x24, 0xFF, 0x98, 0x05, 0x3C, 0xFF, 0x8C, + 0x05, 0x48, 0xFF, 0x8C, 0x09, 0x27, 0xFF, 0x8C, 0x00, 0x08, 0x02, 0x0B, + 0xFF, 0xAF, 0x03, 0x18, 0xFF, 0xA3, 0x05, 0x8F, 0xFF, 0x98, 0x05, 0xA3, + 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x69, 0x06, 0x04, + 0xFF, 0x80, 0x06, 0x05, 0xFF, 0x5E, 0x00, 0x09, 0x05, 0xDB, 0xFF, 0x69, + 0x05, 0xDC, 0xFF, 0x69, 0x05, 0xDD, 0xFF, 0x69, 0x05, 0xEA, 0xFF, 0xBB, + 0x06, 0x05, 0xFF, 0x5E, 0x07, 0xF8, 0xFF, 0x69, 0x08, 0xCB, 0xFF, 0x69, + 0x08, 0xCC, 0xFF, 0x69, 0x08, 0xCF, 0xFF, 0x69, 0x00, 0x09, 0x05, 0xB1, + 0xFF, 0x98, 0x05, 0xD0, 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, + 0xFF, 0x75, 0x05, 0xE3, 0xFF, 0x80, 0x05, 0xF6, 0xFF, 0xAF, 0x06, 0x04, + 0xFE, 0xF5, 0x06, 0x09, 0xFF, 0xAF, 0x06, 0x15, 0xFF, 0xA3, 0x00, 0x0A, + 0x05, 0xB1, 0xFF, 0x98, 0x05, 0xD0, 0xFF, 0xA3, 0x05, 0xD1, 0xFF, 0xA3, + 0x05, 0xD4, 0xFF, 0x75, 0x05, 0xE3, 0xFF, 0x80, 0x05, 0xF6, 0xFF, 0xAF, + 0x06, 0x04, 0xFE, 0xF5, 0x06, 0x08, 0xFF, 0xA3, 0x06, 0x09, 0xFF, 0xA3, + 0x06, 0x15, 0xFF, 0xA3, 0x00, 0x0B, 0x02, 0xB4, 0x00, 0x45, 0x02, 0xB5, + 0x00, 0x45, 0x02, 0xB6, 0x00, 0x45, 0x02, 0xBD, 0x00, 0x45, 0x02, 0xBE, + 0x00, 0x45, 0x02, 0xC2, 0x00, 0x68, 0x02, 0xC3, 0x00, 0x45, 0x02, 0xCC, + 0x00, 0x45, 0x06, 0x05, 0xFF, 0xE3, 0x08, 0x61, 0x00, 0x45, 0x08, 0x62, + 0x00, 0x45, 0x00, 0x0B, 0x00, 0x55, 0x00, 0x45, 0x00, 0x5E, 0x00, 0x97, + 0x00, 0x79, 0x00, 0x97, 0x00, 0xAA, 0x00, 0x97, 0x00, 0xAE, 0x00, 0x97, + 0x01, 0x38, 0x00, 0x97, 0x01, 0x3D, 0x00, 0x97, 0x01, 0x3E, 0x00, 0x97, + 0x01, 0x8B, 0x00, 0x97, 0x02, 0xD1, 0xFF, 0x8C, 0x06, 0xFF, 0x00, 0x97, + 0x00, 0x0B, 0x01, 0x0C, 0xFF, 0x0C, 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x53, + 0xFF, 0x8C, 0x05, 0x8F, 0xFF, 0x80, 0x05, 0xDD, 0xFF, 0x3B, 0x05, 0xE3, + 0xFF, 0x98, 0x05, 0xE5, 0xFF, 0x80, 0x05, 0xEA, 0xFF, 0x2F, 0x05, 0xF2, + 0xFF, 0xA3, 0x06, 0x04, 0xFF, 0x98, 0x06, 0x1D, 0xFF, 0xBB, 0x00, 0x0C, + 0x01, 0x9D, 0xFF, 0x80, 0x01, 0xA5, 0xFF, 0x80, 0x01, 0xA6, 0xFF, 0x80, + 0x05, 0xDB, 0xFF, 0x69, 0x05, 0xDC, 0xFF, 0x69, 0x05, 0xDD, 0xFF, 0x69, + 0x05, 0xEA, 0xFF, 0xBB, 0x06, 0x05, 0xFF, 0x5E, 0x07, 0xF8, 0xFF, 0x69, + 0x08, 0xCB, 0xFF, 0x69, 0x08, 0xCC, 0xFF, 0x69, 0x08, 0xCF, 0xFF, 0x69, + 0x00, 0x0D, 0x00, 0x55, 0x00, 0x45, 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, + 0x00, 0x97, 0x00, 0xAA, 0x00, 0x97, 0x00, 0xAE, 0x00, 0x97, 0x01, 0x36, + 0x00, 0x97, 0x01, 0x38, 0x00, 0x97, 0x01, 0x3D, 0x00, 0x97, 0x01, 0x3E, + 0x00, 0x97, 0x01, 0x8B, 0x00, 0x97, 0x02, 0xD1, 0xFF, 0x8C, 0x02, 0xD2, + 0x00, 0x45, 0x06, 0xFF, 0x00, 0x97, 0x00, 0x0E, 0x05, 0xB1, 0xFF, 0x98, + 0x05, 0xC9, 0xFF, 0xBB, 0x05, 0xCD, 0xFF, 0xBB, 0x05, 0xD0, 0xFF, 0xA3, + 0x05, 0xD1, 0xFF, 0xA3, 0x05, 0xD4, 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0x80, + 0x05, 0xF6, 0xFF, 0xAF, 0x06, 0x04, 0xFE, 0xF5, 0x06, 0x08, 0xFF, 0xBB, + 0x06, 0x09, 0xFF, 0xBB, 0x06, 0x15, 0xFF, 0xBB, 0x07, 0xFC, 0xFF, 0xBB, + 0x07, 0xFE, 0xFF, 0xBB, 0x00, 0x0F, 0x02, 0x0B, 0xFF, 0xAF, 0x03, 0x18, + 0xFF, 0xA3, 0x05, 0x8F, 0xFF, 0x98, 0x05, 0xA3, 0xFF, 0xBB, 0x05, 0xDB, + 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, 0x05, 0xDD, 0xFF, 0xBB, 0x05, 0xE3, + 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x69, 0x06, 0x04, 0xFF, 0x80, 0x06, 0x05, + 0xFF, 0x5E, 0x07, 0xF8, 0xFF, 0xBB, 0x08, 0xCB, 0xFF, 0xBB, 0x08, 0xCC, + 0xFF, 0xBB, 0x08, 0xCF, 0xFF, 0xBB, 0x00, 0x10, 0x02, 0x0B, 0xFF, 0xAF, + 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x18, 0xFF, 0xA3, 0x05, 0x8F, 0xFF, 0x98, + 0x05, 0xA3, 0xFF, 0xBB, 0x05, 0xDB, 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, + 0x05, 0xDD, 0xFF, 0xBB, 0x05, 0xE3, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x69, + 0x06, 0x04, 0xFF, 0x80, 0x06, 0x05, 0xFF, 0x5E, 0x07, 0xF8, 0xFF, 0xBB, + 0x08, 0xCB, 0xFF, 0xBB, 0x08, 0xCC, 0xFF, 0xBB, 0x08, 0xCF, 0xFF, 0xBB, + 0x00, 0x10, 0x00, 0x55, 0x00, 0x45, 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, + 0x00, 0x97, 0x00, 0xAA, 0x00, 0x97, 0x00, 0xAE, 0x00, 0x97, 0x01, 0x36, + 0x00, 0x97, 0x01, 0x38, 0x00, 0x97, 0x01, 0x3D, 0x00, 0x97, 0x01, 0x3E, + 0x00, 0x97, 0x01, 0x8B, 0x00, 0x97, 0x02, 0xBA, 0x00, 0x45, 0x02, 0xBC, + 0x00, 0x45, 0x02, 0xC1, 0x00, 0x45, 0x02, 0xD1, 0xFF, 0x8C, 0x02, 0xD2, + 0x00, 0x45, 0x06, 0xFF, 0x00, 0x97, 0x00, 0x12, 0x02, 0x0B, 0xFF, 0xAF, + 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, + 0x03, 0x18, 0xFF, 0x98, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, + 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, + 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, + 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, + 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x00, 0x12, 0x04, 0x0F, + 0xFF, 0xA3, 0x04, 0x9A, 0xFF, 0xBB, 0x04, 0x9C, 0xFF, 0xBB, 0x04, 0x9F, + 0xFF, 0xBB, 0x04, 0xA0, 0xFF, 0xBB, 0x04, 0xA1, 0xFF, 0xBB, 0x04, 0xA2, + 0xFF, 0xBB, 0x04, 0xA3, 0xFF, 0xBB, 0x04, 0xA4, 0xFF, 0xBB, 0x04, 0xA6, + 0xFF, 0xBB, 0x04, 0xA7, 0xFF, 0xBB, 0x04, 0xA8, 0xFF, 0xBB, 0x04, 0xA9, + 0xFF, 0xBB, 0x04, 0xAA, 0xFF, 0xBB, 0x06, 0x05, 0x00, 0x8B, 0x08, 0xC2, + 0xFF, 0xBB, 0x08, 0xC5, 0xFF, 0xBB, 0x08, 0xC6, 0xFF, 0xBB, 0x00, 0x14, + 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, + 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, + 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, + 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, + 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, + 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, + 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x00, 0x15, 0x01, 0x0C, + 0xFF, 0x0C, 0x02, 0x4C, 0xFF, 0x8C, 0x02, 0x57, 0xFF, 0x8C, 0x02, 0x5A, + 0xFF, 0x8C, 0x02, 0x61, 0xFF, 0x8C, 0x02, 0x64, 0xFF, 0x8C, 0x02, 0x68, + 0xFF, 0x8C, 0x02, 0x85, 0xFF, 0x8C, 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x1E, + 0xFF, 0x8C, 0x03, 0x53, 0xFF, 0x8C, 0x04, 0x54, 0xFF, 0x8C, 0x05, 0x8F, + 0xFF, 0x80, 0x05, 0xDD, 0xFF, 0x3B, 0x05, 0xE3, 0xFF, 0x98, 0x05, 0xE5, + 0xFF, 0x80, 0x05, 0xEA, 0xFF, 0x2F, 0x05, 0xF2, 0xFF, 0xA3, 0x06, 0x04, + 0xFF, 0x98, 0x06, 0x1D, 0xFF, 0xBB, 0x09, 0x3E, 0xFF, 0x8C, 0x00, 0x32, + 0x02, 0xA6, 0xFF, 0xE9, 0x02, 0xA7, 0xFF, 0xE9, 0x02, 0xB9, 0xFF, 0xE9, + 0x02, 0xC9, 0xFF, 0xE9, 0x02, 0xCA, 0xFF, 0xE9, 0x02, 0xE5, 0xFF, 0xE9, + 0x02, 0xF0, 0xFF, 0xE9, 0x02, 0xF1, 0xFF, 0xE9, 0x02, 0xF2, 0xFF, 0xE9, + 0x02, 0xF3, 0xFF, 0xE9, 0x03, 0x59, 0xFF, 0xE9, 0x03, 0x78, 0xFF, 0xE9, + 0x03, 0x79, 0xFF, 0xE9, 0x03, 0x7A, 0xFF, 0xE9, 0x03, 0x7B, 0xFF, 0xE9, + 0x03, 0x7C, 0xFF, 0xE9, 0x03, 0x7D, 0xFF, 0xE9, 0x03, 0x7E, 0xFF, 0xE9, + 0x03, 0x7F, 0xFF, 0xE9, 0x03, 0x80, 0xFF, 0xE9, 0x03, 0x81, 0xFF, 0xE9, + 0x03, 0x82, 0xFF, 0xE9, 0x03, 0x83, 0xFF, 0xE9, 0x03, 0x84, 0xFF, 0xE9, + 0x03, 0x85, 0xFF, 0xE9, 0x03, 0x86, 0xFF, 0xE9, 0x04, 0xAD, 0xFF, 0xE9, + 0x04, 0xB4, 0xFF, 0xE9, 0x04, 0xE7, 0xFF, 0xE9, 0x04, 0xF2, 0xFF, 0xE9, + 0x04, 0xFE, 0xFF, 0xE9, 0x05, 0x0A, 0xFF, 0xE9, 0x05, 0x0C, 0xFF, 0xE9, + 0x05, 0x0D, 0xFF, 0xE9, 0x05, 0x17, 0xFF, 0xE9, 0x05, 0x18, 0xFF, 0xE9, + 0x05, 0x19, 0xFF, 0xE9, 0x07, 0xF5, 0xFF, 0xE9, 0x08, 0x66, 0xFF, 0xE9, + 0x08, 0x7F, 0xFF, 0xE9, 0x08, 0x80, 0xFF, 0xE9, 0x08, 0x81, 0xFF, 0xE9, + 0x09, 0x0B, 0xFF, 0xE9, 0x09, 0x40, 0xFF, 0xE9, 0x09, 0x41, 0xFF, 0xE9, + 0x09, 0x59, 0xFF, 0xE9, 0x09, 0x5C, 0xFF, 0xE9, 0x09, 0x70, 0xFF, 0xE9, + 0x09, 0xA6, 0xFF, 0xE9, 0x09, 0xB5, 0xFF, 0xE9, 0x00, 0x16, 0x01, 0x15, + 0xFF, 0x8C, 0x01, 0x9B, 0xFF, 0x8C, 0x01, 0x9C, 0xFF, 0x8C, 0x01, 0x9D, + 0xFF, 0x8C, 0x01, 0x9E, 0xFF, 0x8C, 0x01, 0x9F, 0xFF, 0x8C, 0x01, 0xA0, + 0xFF, 0x8C, 0x01, 0xA1, 0xFF, 0x8C, 0x01, 0xA2, 0xFF, 0x8C, 0x01, 0xA3, + 0xFF, 0x8C, 0x01, 0xA5, 0xFF, 0x8C, 0x01, 0xA6, 0xFF, 0x8C, 0x01, 0xA7, + 0xFF, 0x8C, 0x04, 0x3A, 0xFF, 0x8C, 0x04, 0x3F, 0xFF, 0x8C, 0x04, 0x42, + 0xFF, 0x8C, 0x04, 0x52, 0xFF, 0x8C, 0x08, 0x31, 0xFF, 0x8C, 0x08, 0x32, + 0xFF, 0x8C, 0x09, 0x27, 0xFF, 0x8C, 0x09, 0x83, 0xFF, 0x8C, 0x09, 0x93, + 0xFF, 0x8C, 0x00, 0x16, 0x01, 0x15, 0xFF, 0x98, 0x01, 0x9B, 0xFF, 0x98, + 0x01, 0x9C, 0xFF, 0x98, 0x01, 0x9D, 0xFF, 0x98, 0x01, 0x9E, 0xFF, 0x98, + 0x01, 0x9F, 0xFF, 0x98, 0x01, 0xA0, 0xFF, 0x98, 0x01, 0xA1, 0xFF, 0x98, + 0x01, 0xA2, 0xFF, 0x98, 0x01, 0xA3, 0xFF, 0x98, 0x01, 0xA5, 0xFF, 0x98, + 0x01, 0xA6, 0xFF, 0x98, 0x01, 0xA7, 0xFF, 0x98, 0x04, 0x3A, 0xFF, 0x98, + 0x04, 0x3F, 0xFF, 0x98, 0x04, 0x42, 0xFF, 0x98, 0x04, 0x52, 0xFF, 0x98, + 0x08, 0x31, 0xFF, 0x98, 0x08, 0x32, 0xFF, 0x98, 0x09, 0x27, 0xFF, 0x98, + 0x09, 0x83, 0xFF, 0x98, 0x09, 0x93, 0xFF, 0x98, 0x00, 0x17, 0x01, 0x15, + 0xFF, 0xA3, 0x01, 0x9B, 0xFF, 0xA3, 0x01, 0x9C, 0xFF, 0xA3, 0x01, 0x9D, + 0xFF, 0xA3, 0x01, 0x9E, 0xFF, 0xA3, 0x01, 0x9F, 0xFF, 0xA3, 0x01, 0xA0, + 0xFF, 0xA3, 0x01, 0xA1, 0xFF, 0xA3, 0x01, 0xA2, 0xFF, 0xA3, 0x01, 0xA3, + 0xFF, 0xA3, 0x01, 0xA5, 0xFF, 0xA3, 0x01, 0xA6, 0xFF, 0xA3, 0x01, 0xA7, + 0xFF, 0xA3, 0x04, 0x3A, 0xFF, 0xA3, 0x04, 0x3F, 0xFF, 0xA3, 0x04, 0x42, + 0xFF, 0xA3, 0x04, 0x52, 0xFF, 0xA3, 0x07, 0x55, 0xFF, 0xA3, 0x08, 0x31, + 0xFF, 0xA3, 0x08, 0x32, 0xFF, 0xA3, 0x09, 0x27, 0xFF, 0xA3, 0x09, 0x83, + 0xFF, 0xA3, 0x09, 0x93, 0xFF, 0xA3, 0x00, 0x17, 0x01, 0x15, 0xFF, 0xAF, + 0x01, 0x9B, 0xFF, 0xAF, 0x01, 0x9C, 0xFF, 0xAF, 0x01, 0x9D, 0xFF, 0xAF, + 0x01, 0x9E, 0xFF, 0xAF, 0x01, 0x9F, 0xFF, 0xAF, 0x01, 0xA0, 0xFF, 0xAF, + 0x01, 0xA1, 0xFF, 0xAF, 0x01, 0xA2, 0xFF, 0xAF, 0x01, 0xA3, 0xFF, 0xAF, + 0x01, 0xA5, 0xFF, 0xAF, 0x01, 0xA6, 0xFF, 0xAF, 0x01, 0xA7, 0xFF, 0xAF, + 0x04, 0x3A, 0xFF, 0xAF, 0x04, 0x3F, 0xFF, 0xAF, 0x04, 0x42, 0xFF, 0xAF, + 0x04, 0x52, 0xFF, 0xAF, 0x07, 0x55, 0xFF, 0xAF, 0x08, 0x31, 0xFF, 0xAF, + 0x08, 0x32, 0xFF, 0xAF, 0x09, 0x27, 0xFF, 0xAF, 0x09, 0x83, 0xFF, 0xAF, + 0x09, 0x93, 0xFF, 0xAF, 0x00, 0x17, 0x01, 0xD8, 0xFF, 0xBB, 0x01, 0xD9, + 0xFF, 0xBB, 0x01, 0xDA, 0xFF, 0xBB, 0x01, 0xDB, 0xFF, 0xBB, 0x01, 0xDC, + 0xFF, 0xBB, 0x01, 0xDD, 0xFF, 0xBB, 0x01, 0xDE, 0xFF, 0xBB, 0x01, 0xDF, + 0xFF, 0xBB, 0x01, 0xE0, 0xFF, 0xBB, 0x01, 0xE1, 0xFF, 0xBB, 0x01, 0xE2, + 0xFF, 0xBB, 0x01, 0xE3, 0xFF, 0xBB, 0x01, 0xE4, 0xFF, 0xBB, 0x01, 0xE5, + 0xFF, 0xBB, 0x01, 0xE6, 0xFF, 0xBB, 0x01, 0xEB, 0xFF, 0xBB, 0x01, 0xEC, + 0xFF, 0xBB, 0x01, 0xEF, 0xFF, 0xBB, 0x08, 0x42, 0xFF, 0xBB, 0x08, 0x43, + 0xFF, 0xBB, 0x08, 0x44, 0xFF, 0xBB, 0x09, 0x94, 0xFF, 0xBB, 0x09, 0x95, + 0xFF, 0xBB, 0x00, 0x17, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, + 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, + 0x03, 0x93, 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, 0xFF, 0x98, + 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xFD, 0xFF, 0xAF, 0x03, 0xFF, 0xFF, 0xAF, + 0x04, 0x00, 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, + 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, + 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, + 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, + 0x00, 0x19, 0x00, 0x55, 0x00, 0x45, 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, + 0x00, 0x97, 0x00, 0x8A, 0x00, 0x45, 0x00, 0xAA, 0x00, 0x97, 0x00, 0xAE, + 0x00, 0x97, 0x01, 0x36, 0x00, 0x45, 0x01, 0x38, 0x00, 0x97, 0x01, 0x3D, + 0x00, 0x97, 0x01, 0x3E, 0x00, 0x97, 0x01, 0x8B, 0x00, 0x97, 0x02, 0xC2, + 0x00, 0x74, 0x02, 0xC7, 0x00, 0x45, 0x02, 0xC8, 0x00, 0x45, 0x02, 0xCF, + 0x00, 0x45, 0x02, 0xD1, 0xFF, 0x8C, 0x02, 0xD2, 0x00, 0x45, 0x02, 0xD3, + 0x00, 0x45, 0x02, 0xD4, 0x00, 0x45, 0x02, 0xD5, 0x00, 0x45, 0x03, 0x0A, + 0x00, 0x45, 0x06, 0x21, 0x00, 0x45, 0x06, 0xFF, 0x00, 0x97, 0x08, 0x65, + 0x00, 0x45, 0x09, 0x3B, 0x00, 0x45, 0x00, 0x19, 0x01, 0x15, 0xFF, 0x98, + 0x01, 0x9B, 0xFF, 0x98, 0x01, 0x9C, 0xFF, 0x98, 0x01, 0x9D, 0xFF, 0x98, + 0x01, 0x9E, 0xFF, 0x98, 0x01, 0x9F, 0xFF, 0x98, 0x01, 0xA0, 0xFF, 0x98, + 0x01, 0xA1, 0xFF, 0x98, 0x01, 0xA2, 0xFF, 0x98, 0x01, 0xA3, 0xFF, 0x98, + 0x01, 0xA5, 0xFF, 0x98, 0x01, 0xA6, 0xFF, 0x98, 0x01, 0xA7, 0xFF, 0x98, + 0x01, 0xD9, 0xFF, 0x98, 0x04, 0x29, 0xFF, 0xBB, 0x04, 0x3A, 0xFF, 0x98, + 0x04, 0x3F, 0xFF, 0x98, 0x04, 0x42, 0xFF, 0x98, 0x04, 0x52, 0xFF, 0x98, + 0x07, 0x55, 0xFF, 0x98, 0x08, 0x31, 0xFF, 0x98, 0x08, 0x32, 0xFF, 0x98, + 0x09, 0x27, 0xFF, 0x98, 0x09, 0x83, 0xFF, 0x98, 0x09, 0x93, 0xFF, 0x98, + 0x00, 0x19, 0x01, 0x15, 0xFF, 0x98, 0x01, 0x9B, 0xFF, 0x98, 0x01, 0x9C, + 0xFF, 0x98, 0x01, 0x9D, 0xFF, 0x98, 0x01, 0x9E, 0xFF, 0x98, 0x01, 0x9F, + 0xFF, 0x98, 0x01, 0xA0, 0xFF, 0x98, 0x01, 0xA1, 0xFF, 0x98, 0x01, 0xA2, + 0xFF, 0x98, 0x01, 0xA3, 0xFF, 0x98, 0x01, 0xA5, 0xFF, 0x98, 0x01, 0xA6, + 0xFF, 0x98, 0x01, 0xA7, 0xFF, 0x98, 0x01, 0xD9, 0xFF, 0x98, 0x02, 0xD1, + 0xFF, 0xA3, 0x04, 0x3A, 0xFF, 0x98, 0x04, 0x3F, 0xFF, 0x98, 0x04, 0x42, + 0xFF, 0x98, 0x04, 0x52, 0xFF, 0x98, 0x07, 0x55, 0xFF, 0x98, 0x08, 0x31, + 0xFF, 0x98, 0x08, 0x32, 0xFF, 0x98, 0x09, 0x27, 0xFF, 0x98, 0x09, 0x83, + 0xFF, 0x98, 0x09, 0x93, 0xFF, 0x98, 0x00, 0x1A, 0x01, 0x15, 0xFF, 0xA3, + 0x01, 0x9B, 0xFF, 0xA3, 0x01, 0x9C, 0xFF, 0xA3, 0x01, 0x9D, 0xFF, 0xA3, + 0x01, 0x9E, 0xFF, 0xA3, 0x01, 0x9F, 0xFF, 0xA3, 0x01, 0xA0, 0xFF, 0xA3, + 0x01, 0xA1, 0xFF, 0xA3, 0x01, 0xA2, 0xFF, 0xA3, 0x01, 0xA3, 0xFF, 0xA3, + 0x01, 0xA5, 0xFF, 0xA3, 0x01, 0xA6, 0xFF, 0xA3, 0x01, 0xA7, 0xFF, 0xA3, + 0x04, 0x3A, 0xFF, 0xA3, 0x04, 0x3F, 0xFF, 0xA3, 0x04, 0x42, 0xFF, 0xA3, + 0x04, 0x52, 0xFF, 0xA3, 0x05, 0xEA, 0xFF, 0xAF, 0x06, 0x04, 0xFF, 0xBB, + 0x06, 0x05, 0xFF, 0xBB, 0x07, 0x55, 0xFF, 0xA3, 0x08, 0x31, 0xFF, 0xA3, + 0x08, 0x32, 0xFF, 0xA3, 0x09, 0x27, 0xFF, 0xA3, 0x09, 0x83, 0xFF, 0xA3, + 0x09, 0x93, 0xFF, 0xA3, 0x00, 0x1B, 0x01, 0x0C, 0xFF, 0x0C, 0x02, 0x4C, + 0xFF, 0x8C, 0x02, 0x57, 0xFF, 0x8C, 0x02, 0x5A, 0xFF, 0x8C, 0x02, 0x61, + 0xFF, 0x8C, 0x02, 0x64, 0xFF, 0x8C, 0x02, 0x68, 0xFF, 0x8C, 0x02, 0x85, + 0xFF, 0x8C, 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x1E, 0xFF, 0x8C, 0x03, 0x53, + 0xFF, 0x8C, 0x04, 0x54, 0xFF, 0x8C, 0x05, 0x8F, 0xFF, 0x80, 0x05, 0xDB, + 0xFF, 0xBB, 0x05, 0xDC, 0xFF, 0xBB, 0x05, 0xDD, 0xFF, 0xBB, 0x05, 0xE3, + 0xFF, 0x98, 0x05, 0xE5, 0xFF, 0x80, 0x05, 0xEA, 0xFF, 0x2F, 0x05, 0xF2, + 0xFF, 0xA3, 0x06, 0x04, 0xFF, 0x98, 0x06, 0x1D, 0xFF, 0xBB, 0x07, 0xF8, + 0xFF, 0xBB, 0x08, 0xCB, 0xFF, 0xBB, 0x08, 0xCC, 0xFF, 0xBB, 0x08, 0xCF, + 0xFF, 0xBB, 0x09, 0x3E, 0xFF, 0x8C, 0x00, 0x38, 0x02, 0xA6, 0x00, 0x45, + 0x02, 0xA7, 0x00, 0x45, 0x02, 0xB7, 0x00, 0x00, 0x02, 0xB9, 0x00, 0x45, + 0x02, 0xC9, 0x00, 0x45, 0x02, 0xCA, 0x00, 0x45, 0x02, 0xE5, 0x00, 0x45, + 0x02, 0xED, 0x00, 0x04, 0x02, 0xEE, 0x00, 0x00, 0x02, 0xF0, 0x00, 0x45, + 0x02, 0xF1, 0x00, 0x45, 0x02, 0xF2, 0x00, 0x45, 0x02, 0xF3, 0x00, 0x45, + 0x03, 0x59, 0x00, 0x45, 0x03, 0x78, 0x00, 0x45, 0x03, 0x79, 0x00, 0x45, + 0x03, 0x7A, 0x00, 0x45, 0x03, 0x7B, 0x00, 0x45, 0x03, 0x7C, 0x00, 0x45, + 0x03, 0x7D, 0x00, 0x45, 0x03, 0x7E, 0x00, 0x45, 0x03, 0x7F, 0x00, 0x45, + 0x03, 0x80, 0x00, 0x45, 0x03, 0x81, 0x00, 0x45, 0x03, 0x82, 0x00, 0x45, + 0x03, 0x83, 0x00, 0x45, 0x03, 0x84, 0x00, 0x45, 0x03, 0x85, 0x00, 0x45, + 0x03, 0x86, 0x00, 0x45, 0x04, 0xAD, 0x00, 0x45, 0x04, 0xB4, 0x00, 0x45, + 0x04, 0xE7, 0x00, 0x45, 0x04, 0xF2, 0x00, 0x45, 0x04, 0xFE, 0x00, 0x45, + 0x05, 0x0A, 0x00, 0x45, 0x05, 0x0C, 0x00, 0x45, 0x05, 0x0D, 0x00, 0x45, + 0x05, 0x17, 0x00, 0x45, 0x05, 0x18, 0x00, 0x45, 0x05, 0x19, 0x00, 0x45, + 0x05, 0x90, 0x00, 0x45, 0x06, 0x05, 0x00, 0x03, 0x07, 0xF5, 0x00, 0x45, + 0x08, 0x66, 0x00, 0x45, 0x08, 0x7F, 0x00, 0x45, 0x08, 0x80, 0x00, 0x45, + 0x08, 0x81, 0x00, 0x45, 0x09, 0x0B, 0x00, 0x45, 0x09, 0x1A, 0x00, 0x45, + 0x09, 0x40, 0x00, 0x45, 0x09, 0x41, 0x00, 0x45, 0x09, 0x59, 0x00, 0x45, + 0x09, 0x5C, 0x00, 0x45, 0x09, 0x70, 0x00, 0x45, 0x09, 0xA6, 0x00, 0x45, + 0x09, 0xB5, 0x00, 0x45, 0x00, 0x1C, 0x01, 0x0A, 0xFF, 0x0C, 0x01, 0x0B, + 0xFF, 0x0C, 0x01, 0x0C, 0xFF, 0x0C, 0x01, 0x0D, 0xFF, 0x0C, 0x01, 0x0E, + 0xFF, 0x0C, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, + 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, + 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, + 0xFF, 0xBB, 0x03, 0xFD, 0xFF, 0xAF, 0x03, 0xFF, 0xFF, 0xAF, 0x04, 0x00, + 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, + 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, + 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, + 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x00, 0x1F, + 0x01, 0x0A, 0xFF, 0xAF, 0x01, 0x0B, 0xFF, 0xAF, 0x01, 0x0C, 0xFF, 0xAF, + 0x01, 0x0D, 0xFF, 0xAF, 0x01, 0x0E, 0xFF, 0xAF, 0x02, 0x4C, 0xFF, 0x8C, + 0x02, 0x57, 0xFF, 0x8C, 0x02, 0x5A, 0xFF, 0x8C, 0x02, 0x61, 0xFF, 0x8C, + 0x02, 0x64, 0xFF, 0x8C, 0x02, 0x68, 0xFF, 0x8C, 0x02, 0x85, 0xFF, 0x8C, + 0x02, 0xC2, 0x00, 0x5D, 0x03, 0x1E, 0xFF, 0x8C, 0x03, 0x53, 0xFF, 0x8C, + 0x04, 0x54, 0xFF, 0x8C, 0x05, 0x8F, 0xFF, 0x80, 0x05, 0xDB, 0xFF, 0xAF, + 0x05, 0xDC, 0xFF, 0xAF, 0x05, 0xDD, 0xFF, 0xAF, 0x05, 0xE3, 0xFF, 0x98, + 0x05, 0xE5, 0xFF, 0x80, 0x05, 0xEA, 0xFF, 0x2F, 0x05, 0xF2, 0xFF, 0xA3, + 0x06, 0x04, 0xFF, 0x98, 0x06, 0x1D, 0xFF, 0xBB, 0x07, 0xF8, 0xFF, 0xAF, + 0x08, 0xCB, 0xFF, 0xAF, 0x08, 0xCC, 0xFF, 0xAF, 0x08, 0xCF, 0xFF, 0xAF, + 0x09, 0x3E, 0xFF, 0x8C, 0x00, 0x1F, 0x04, 0xAB, 0xFF, 0x75, 0x05, 0x6F, + 0xFF, 0xBB, 0x05, 0x84, 0xFF, 0xBB, 0x05, 0x85, 0xFF, 0xBB, 0x05, 0x87, + 0xFF, 0xBB, 0x05, 0x8A, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0xBB, 0x05, 0xB1, + 0xFF, 0xBB, 0x05, 0xBD, 0xFF, 0xBB, 0x05, 0xDB, 0xFF, 0x69, 0x05, 0xDC, + 0xFF, 0x69, 0x05, 0xDD, 0xFF, 0x69, 0x05, 0xE3, 0xFF, 0xBB, 0x05, 0xF0, + 0xFF, 0xBB, 0x05, 0xF1, 0xFF, 0xBB, 0x05, 0xF3, 0xFF, 0xBB, 0x05, 0xF6, + 0xFF, 0xBB, 0x05, 0xFD, 0xFF, 0xBB, 0x05, 0xFE, 0xFF, 0xBB, 0x06, 0x00, + 0xFF, 0xBB, 0x06, 0x03, 0xFF, 0xBB, 0x06, 0x04, 0xFF, 0xBB, 0x06, 0xAE, + 0x00, 0x5D, 0x07, 0x0B, 0xFF, 0xBB, 0x07, 0x0C, 0xFF, 0xBB, 0x07, 0x0D, + 0xFF, 0xBB, 0x07, 0xF8, 0xFF, 0x69, 0x08, 0xCB, 0xFF, 0x69, 0x08, 0xCC, + 0xFF, 0x69, 0x08, 0xCF, 0xFF, 0x69, 0x08, 0xD2, 0xFF, 0xBB, 0x00, 0x21, + 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, + 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, + 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, + 0x03, 0xFC, 0xFF, 0xBB, 0x03, 0xFD, 0xFF, 0xBB, 0x03, 0xFE, 0xFF, 0xBB, + 0x03, 0xFF, 0xFF, 0xBB, 0x04, 0x00, 0xFF, 0xBB, 0x04, 0x01, 0xFF, 0xBB, + 0x04, 0x02, 0xFF, 0xBB, 0x04, 0x03, 0xFF, 0xBB, 0x04, 0x04, 0xFF, 0xBB, + 0x04, 0x05, 0xFF, 0xBB, 0x04, 0x06, 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, + 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, + 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, + 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, + 0x06, 0x05, 0xFF, 0x8C, 0x08, 0x94, 0xFF, 0xBB, 0x08, 0x95, 0xFF, 0xBB, + 0x00, 0x22, 0x00, 0x55, 0x00, 0x45, 0x00, 0x5E, 0x00, 0x97, 0x00, 0x79, + 0x00, 0x97, 0x00, 0xAA, 0x00, 0x97, 0x00, 0xAE, 0x00, 0x97, 0x01, 0x38, + 0x00, 0x97, 0x01, 0x3D, 0x00, 0x97, 0x01, 0x3E, 0x00, 0x97, 0x01, 0x8B, + 0x00, 0x97, 0x02, 0xB1, 0x00, 0x45, 0x02, 0xB2, 0x00, 0x45, 0x02, 0xB3, + 0x00, 0x45, 0x02, 0xB7, 0x00, 0x45, 0x02, 0xB8, 0x00, 0x45, 0x02, 0xBA, + 0x00, 0x45, 0x02, 0xBB, 0x00, 0x45, 0x02, 0xBC, 0x00, 0x45, 0x02, 0xBF, + 0x00, 0x45, 0x02, 0xC0, 0x00, 0x45, 0x02, 0xC1, 0x00, 0x45, 0x02, 0xC2, + 0x00, 0x5D, 0x02, 0xC3, 0x00, 0x51, 0x02, 0xC4, 0x00, 0x45, 0x02, 0xC5, + 0x00, 0x45, 0x02, 0xC6, 0x00, 0x45, 0x02, 0xCB, 0x00, 0x45, 0x02, 0xCD, + 0x00, 0x45, 0x02, 0xD1, 0xFF, 0x8C, 0x05, 0x0B, 0x00, 0x45, 0x06, 0xFF, + 0x00, 0x97, 0x08, 0x60, 0x00, 0x45, 0x08, 0x63, 0x00, 0x45, 0x08, 0x64, + 0x00, 0x45, 0x08, 0x9C, 0x00, 0x45, 0x00, 0x27, 0x02, 0x0B, 0xFF, 0xAF, + 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, + 0x03, 0x18, 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, + 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xFD, 0xFF, 0xAF, + 0x03, 0xFF, 0xFF, 0xAF, 0x04, 0x00, 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x5E, + 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, + 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, + 0x05, 0xDB, 0xFF, 0x52, 0x05, 0xDC, 0xFF, 0x52, 0x05, 0xDD, 0xFF, 0x52, + 0x05, 0xDF, 0xFF, 0xAF, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xE1, 0xFF, 0xAF, + 0x05, 0xE2, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x75, + 0x07, 0xF8, 0xFF, 0x52, 0x07, 0xF9, 0xFF, 0xAF, 0x07, 0xFA, 0xFF, 0xAF, + 0x08, 0xCB, 0xFF, 0x52, 0x08, 0xCC, 0xFF, 0x52, 0x08, 0xCD, 0xFF, 0xAF, + 0x08, 0xCE, 0xFF, 0xAF, 0x08, 0xCF, 0xFF, 0x52, 0x08, 0xD3, 0xFF, 0xAF, + 0x08, 0xD5, 0xFF, 0xAF, 0x0A, 0x15, 0xFF, 0xAF, 0x00, 0x4A, 0x00, 0x02, + 0xFF, 0xE6, 0x00, 0x03, 0xFF, 0xE6, 0x00, 0x04, 0xFF, 0xE6, 0x00, 0x05, + 0xFF, 0xE6, 0x00, 0x06, 0xFF, 0xE6, 0x00, 0x07, 0xFF, 0xE6, 0x00, 0x08, + 0xFF, 0xE6, 0x00, 0x09, 0xFF, 0xE6, 0x00, 0x0A, 0xFF, 0xE6, 0x00, 0x0B, + 0xFF, 0xE6, 0x00, 0x0C, 0xFF, 0xE6, 0x00, 0x0D, 0xFF, 0xE6, 0x00, 0x0E, + 0xFF, 0xE6, 0x00, 0x0F, 0xFF, 0xE6, 0x00, 0x10, 0xFF, 0xE6, 0x00, 0x11, + 0xFF, 0xE6, 0x00, 0x12, 0xFF, 0xE6, 0x00, 0x13, 0xFF, 0xE6, 0x00, 0x14, + 0xFF, 0xE6, 0x00, 0x15, 0xFF, 0xE6, 0x00, 0x16, 0xFF, 0xE6, 0x00, 0x17, + 0xFF, 0xE6, 0x00, 0x18, 0xFF, 0xE6, 0x00, 0x19, 0xFF, 0xE6, 0x00, 0x1A, + 0xFF, 0xE6, 0x00, 0x1B, 0xFF, 0xE6, 0x00, 0x1C, 0xFF, 0xE6, 0x00, 0x1D, + 0xFF, 0xE6, 0x00, 0x1E, 0xFF, 0xE6, 0x00, 0x1F, 0xFF, 0xE6, 0x00, 0x20, + 0xFF, 0xE6, 0x00, 0x21, 0xFF, 0xE6, 0x00, 0x22, 0xFF, 0xE6, 0x00, 0x23, + 0xFF, 0xE6, 0x00, 0x24, 0xFF, 0xE6, 0x00, 0x25, 0xFF, 0xE6, 0x00, 0x26, + 0xFF, 0xE6, 0x00, 0x27, 0xFF, 0xE6, 0x00, 0x28, 0xFF, 0xE6, 0x00, 0x29, + 0xFF, 0xE6, 0x00, 0x2A, 0xFF, 0xE6, 0x00, 0x2B, 0xFF, 0xE6, 0x00, 0x2C, + 0xFF, 0xE6, 0x00, 0x2D, 0xFF, 0xE6, 0x00, 0x2E, 0xFF, 0xE6, 0x00, 0x2F, + 0xFF, 0xE6, 0x00, 0x30, 0xFF, 0xE6, 0x00, 0x31, 0xFF, 0xE6, 0x00, 0x32, + 0xFF, 0xE6, 0x00, 0x33, 0xFF, 0xE6, 0x00, 0x34, 0xFF, 0xE6, 0x00, 0x35, + 0xFF, 0xE6, 0x00, 0x36, 0xFF, 0xE6, 0x00, 0x37, 0xFF, 0xE6, 0x00, 0x38, + 0xFF, 0xE6, 0x00, 0x39, 0xFF, 0xE6, 0x00, 0x3A, 0xFF, 0xE6, 0x00, 0x3B, + 0xFF, 0xE6, 0x00, 0x3C, 0xFF, 0xE6, 0x00, 0x3D, 0xFF, 0xE6, 0x00, 0x3E, + 0xFF, 0xE6, 0x00, 0x3F, 0xFF, 0xE6, 0x00, 0x40, 0xFF, 0xE6, 0x03, 0xD3, + 0xFF, 0xE6, 0x03, 0xF6, 0xFF, 0xE6, 0x08, 0x03, 0xFF, 0xE6, 0x08, 0x04, + 0xFF, 0xE6, 0x08, 0x05, 0xFF, 0xE6, 0x08, 0x06, 0xFF, 0xE6, 0x08, 0x07, + 0xFF, 0xE6, 0x08, 0x08, 0xFF, 0xE6, 0x09, 0x6D, 0xFF, 0xE6, 0x09, 0x89, + 0xFF, 0xE6, 0x09, 0xAC, 0xFF, 0xE6, 0x00, 0x2F, 0x01, 0xFB, 0x00, 0x00, + 0x01, 0xFC, 0x00, 0x00, 0x01, 0xFD, 0x00, 0x00, 0x01, 0xFE, 0x00, 0x00, + 0x01, 0xFF, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, + 0x02, 0x02, 0x00, 0x00, 0x02, 0x03, 0x00, 0x00, 0x02, 0x04, 0x00, 0x00, + 0x02, 0x05, 0x00, 0x00, 0x02, 0x06, 0x00, 0x00, 0x02, 0x07, 0x00, 0x00, + 0x02, 0x08, 0x00, 0x00, 0x02, 0x09, 0x00, 0x00, 0x02, 0x0A, 0x00, 0x00, + 0x02, 0x0B, 0x00, 0x00, 0x02, 0x0C, 0x00, 0x00, 0x02, 0x0D, 0x00, 0x00, + 0x02, 0x0E, 0x00, 0x00, 0x02, 0x0F, 0x00, 0x00, 0x02, 0x10, 0x00, 0x00, + 0x02, 0x11, 0x00, 0x00, 0x02, 0x12, 0x00, 0x00, 0x02, 0x13, 0x00, 0x00, + 0x02, 0x14, 0x00, 0x00, 0x02, 0x15, 0x00, 0x00, 0x02, 0x16, 0x00, 0x00, + 0x02, 0x17, 0x00, 0x00, 0x02, 0x18, 0x00, 0x00, 0x02, 0x19, 0x00, 0x00, + 0x02, 0x1A, 0x00, 0x00, 0x02, 0x1C, 0x00, 0x00, 0x02, 0x1D, 0x00, 0x00, + 0x02, 0x1E, 0x00, 0x00, 0x02, 0x1F, 0x00, 0x00, 0x02, 0x20, 0x00, 0x00, + 0x02, 0x21, 0x00, 0x00, 0x02, 0x22, 0x00, 0x00, 0x05, 0x05, 0x00, 0x00, + 0x05, 0x06, 0x00, 0x00, 0x08, 0x4C, 0x00, 0x00, 0x08, 0x4D, 0x00, 0x00, + 0x08, 0x4E, 0x00, 0x00, 0x08, 0x4F, 0x00, 0x00, 0x08, 0x50, 0x00, 0x00, + 0x08, 0x51, 0x00, 0x00, 0x00, 0x31, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, + 0xFF, 0xAF, 0x02, 0x67, 0xFF, 0x98, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, + 0xFF, 0x98, 0x03, 0x93, 0xFF, 0xAF, 0x03, 0x95, 0xFF, 0x2F, 0x03, 0xD7, + 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xFC, 0xFF, 0xAF, 0x03, 0xFD, + 0xFF, 0xAF, 0x03, 0xFE, 0xFF, 0xAF, 0x03, 0xFF, 0xFF, 0xAF, 0x04, 0x00, + 0xFF, 0xAF, 0x04, 0x01, 0xFF, 0xAF, 0x04, 0x02, 0xFF, 0xAF, 0x04, 0x03, + 0xFF, 0xAF, 0x04, 0x04, 0xFF, 0xAF, 0x04, 0x05, 0xFF, 0xAF, 0x04, 0x06, + 0xFF, 0xAF, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, + 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x8F, + 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDB, 0xFF, 0x52, 0x05, 0xDC, + 0xFF, 0x52, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xDF, 0xFF, 0xAF, 0x05, 0xE0, + 0xFF, 0xAF, 0x05, 0xE1, 0xFF, 0xAF, 0x05, 0xE2, 0xFF, 0xAF, 0x05, 0xEA, + 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x07, 0xF8, 0xFF, 0x52, 0x07, 0xF9, + 0xFF, 0xAF, 0x07, 0xFA, 0xFF, 0xAF, 0x08, 0x94, 0xFF, 0xAF, 0x08, 0x95, + 0xFF, 0xAF, 0x08, 0xCB, 0xFF, 0x52, 0x08, 0xCC, 0xFF, 0x52, 0x08, 0xCD, + 0xFF, 0xAF, 0x08, 0xCE, 0xFF, 0xAF, 0x08, 0xCF, 0xFF, 0x52, 0x08, 0xD3, + 0xFF, 0xAF, 0x08, 0xD5, 0xFF, 0xAF, 0x0A, 0x15, 0xFF, 0xAF, 0x00, 0x34, + 0x01, 0xC8, 0xFF, 0xAF, 0x01, 0xC9, 0xFF, 0xAF, 0x01, 0xCA, 0xFF, 0xAF, + 0x01, 0xD2, 0xFF, 0xA3, 0x01, 0xD3, 0xFF, 0xA3, 0x01, 0xD4, 0xFF, 0xA3, + 0x01, 0xD5, 0xFF, 0xA3, 0x01, 0xD6, 0xFF, 0xA3, 0x01, 0xD7, 0xFF, 0xA3, + 0x01, 0xD8, 0xFF, 0x98, 0x01, 0xD9, 0xFF, 0x98, 0x01, 0xDA, 0xFF, 0x98, + 0x01, 0xDB, 0xFF, 0x98, 0x01, 0xDC, 0xFF, 0x98, 0x01, 0xDD, 0xFF, 0x98, + 0x01, 0xDE, 0xFF, 0x98, 0x01, 0xDF, 0xFF, 0x98, 0x01, 0xE0, 0xFF, 0x98, + 0x01, 0xE1, 0xFF, 0x98, 0x01, 0xE2, 0xFF, 0x98, 0x01, 0xE3, 0xFF, 0x98, + 0x01, 0xE4, 0xFF, 0x98, 0x01, 0xE5, 0xFF, 0x98, 0x01, 0xE6, 0xFF, 0x98, + 0x01, 0xEB, 0xFF, 0x98, 0x01, 0xEC, 0xFF, 0x98, 0x01, 0xEF, 0xFF, 0x98, + 0x04, 0x29, 0xFF, 0xAF, 0x04, 0x2E, 0xFF, 0xA3, 0x04, 0x37, 0xFF, 0xAF, + 0x04, 0x51, 0xFF, 0xAF, 0x08, 0x3C, 0xFF, 0xAF, 0x08, 0x40, 0xFF, 0xA3, + 0x08, 0x41, 0xFF, 0xA3, 0x08, 0x42, 0xFF, 0x98, 0x08, 0x43, 0xFF, 0x98, + 0x08, 0x44, 0xFF, 0x98, 0x08, 0xB0, 0xFF, 0xA3, 0x09, 0x85, 0xFF, 0xA3, + 0x09, 0x8F, 0xFF, 0xAF, 0x09, 0x94, 0xFF, 0x98, 0x09, 0x95, 0xFF, 0x98, + 0x09, 0x98, 0xFF, 0xA3, 0x09, 0x9C, 0xFF, 0xA3, 0x09, 0xA1, 0xFF, 0xA3, + 0x09, 0xEB, 0xFF, 0xAF, 0x09, 0xEC, 0xFF, 0xAF, 0x09, 0xED, 0xFF, 0xAF, + 0x09, 0xEE, 0xFF, 0xAF, 0x09, 0xF0, 0xFF, 0xA3, 0x09, 0xF1, 0xFF, 0xA3, + 0x09, 0xF2, 0xFF, 0xA3, 0x00, 0x36, 0x02, 0xA6, 0x00, 0x00, 0x02, 0xA7, + 0x00, 0x00, 0x02, 0xB9, 0x00, 0x00, 0x02, 0xBD, 0x00, 0x51, 0x02, 0xC3, + 0x00, 0x45, 0x02, 0xC9, 0x00, 0x00, 0x02, 0xCA, 0x00, 0x00, 0x02, 0xE5, + 0x00, 0x00, 0x02, 0xF0, 0x00, 0x00, 0x02, 0xF1, 0x00, 0x00, 0x02, 0xF2, + 0x00, 0x00, 0x02, 0xF3, 0x00, 0x00, 0x03, 0x59, 0x00, 0x00, 0x03, 0x78, + 0x00, 0x00, 0x03, 0x79, 0x00, 0x00, 0x03, 0x7A, 0x00, 0x00, 0x03, 0x7B, + 0x00, 0x00, 0x03, 0x7C, 0x00, 0x00, 0x03, 0x7D, 0x00, 0x00, 0x03, 0x7E, + 0x00, 0x00, 0x03, 0x7F, 0x00, 0x00, 0x03, 0x80, 0x00, 0x00, 0x03, 0x81, + 0x00, 0x00, 0x03, 0x82, 0x00, 0x00, 0x03, 0x83, 0x00, 0x00, 0x03, 0x84, + 0x00, 0x00, 0x03, 0x85, 0x00, 0x00, 0x03, 0x86, 0x00, 0x00, 0x04, 0xAD, + 0x00, 0x00, 0x04, 0xB4, 0x00, 0x00, 0x04, 0xE7, 0x00, 0x00, 0x04, 0xF2, + 0x00, 0x00, 0x04, 0xFE, 0x00, 0x00, 0x05, 0x0A, 0x00, 0x00, 0x05, 0x0C, + 0x00, 0x00, 0x05, 0x0D, 0x00, 0x00, 0x05, 0x17, 0x00, 0x00, 0x05, 0x18, + 0x00, 0x00, 0x05, 0x19, 0x00, 0x00, 0x05, 0x90, 0x00, 0x00, 0x06, 0x05, + 0xFF, 0xE3, 0x07, 0xF5, 0x00, 0x00, 0x08, 0x66, 0x00, 0x00, 0x08, 0x7F, + 0x00, 0x00, 0x08, 0x80, 0x00, 0x00, 0x08, 0x81, 0x00, 0x00, 0x09, 0x0B, + 0x00, 0x00, 0x09, 0x40, 0x00, 0x00, 0x09, 0x41, 0x00, 0x00, 0x09, 0x59, + 0x00, 0x00, 0x09, 0x5C, 0x00, 0x00, 0x09, 0x70, 0x00, 0x00, 0x09, 0xA6, + 0x00, 0x00, 0x09, 0xB5, 0x00, 0x00, 0x00, 0x54, 0x00, 0x02, 0xFF, 0x80, + 0x00, 0x03, 0xFF, 0x80, 0x00, 0x04, 0xFF, 0x80, 0x00, 0x05, 0xFF, 0x80, + 0x00, 0x06, 0xFF, 0x80, 0x00, 0x07, 0xFF, 0x80, 0x00, 0x08, 0xFF, 0x80, + 0x00, 0x09, 0xFF, 0x80, 0x00, 0x0A, 0xFF, 0x80, 0x00, 0x0B, 0xFF, 0x80, + 0x00, 0x0C, 0xFF, 0x80, 0x00, 0x0D, 0xFF, 0x80, 0x00, 0x0E, 0xFF, 0x80, + 0x00, 0x0F, 0xFF, 0x80, 0x00, 0x10, 0xFF, 0x80, 0x00, 0x11, 0xFF, 0x80, + 0x00, 0x12, 0xFF, 0x80, 0x00, 0x13, 0xFF, 0x80, 0x00, 0x14, 0xFF, 0x80, + 0x00, 0x15, 0xFF, 0x80, 0x00, 0x16, 0xFF, 0x80, 0x00, 0x17, 0xFF, 0x80, + 0x00, 0x18, 0xFF, 0x80, 0x00, 0x19, 0xFF, 0x80, 0x00, 0x1A, 0xFF, 0x80, + 0x00, 0x1B, 0xFF, 0x80, 0x00, 0x1C, 0xFF, 0x80, 0x00, 0x1D, 0xFF, 0x80, + 0x00, 0x1E, 0xFF, 0x80, 0x00, 0x1F, 0xFF, 0x80, 0x00, 0x20, 0xFF, 0x80, + 0x00, 0x21, 0xFF, 0x80, 0x00, 0x22, 0xFF, 0x80, 0x00, 0x23, 0xFF, 0x80, + 0x00, 0x24, 0xFF, 0x80, 0x00, 0x25, 0xFF, 0x80, 0x00, 0x26, 0xFF, 0x80, + 0x00, 0x27, 0xFF, 0x80, 0x00, 0x28, 0xFF, 0x80, 0x00, 0x29, 0xFF, 0x80, + 0x00, 0x2A, 0xFF, 0x80, 0x00, 0x2B, 0xFF, 0x80, 0x00, 0x2C, 0xFF, 0x80, + 0x00, 0x2D, 0xFF, 0x80, 0x00, 0x2E, 0xFF, 0x80, 0x00, 0x2F, 0xFF, 0x80, + 0x00, 0x30, 0xFF, 0x80, 0x00, 0x31, 0xFF, 0x80, 0x00, 0x32, 0xFF, 0x80, + 0x00, 0x33, 0xFF, 0x80, 0x00, 0x34, 0xFF, 0x80, 0x00, 0x35, 0xFF, 0x80, + 0x00, 0x36, 0xFF, 0x80, 0x00, 0x37, 0xFF, 0x80, 0x00, 0x38, 0xFF, 0x80, + 0x00, 0x39, 0xFF, 0x80, 0x00, 0x3A, 0xFF, 0x80, 0x00, 0x3B, 0xFF, 0x80, + 0x00, 0x3C, 0xFF, 0x80, 0x00, 0x3D, 0xFF, 0x80, 0x00, 0x3E, 0xFF, 0x80, + 0x00, 0x3F, 0xFF, 0x80, 0x00, 0x40, 0xFF, 0x80, 0x03, 0x92, 0xFF, 0x50, + 0x03, 0xD3, 0xFF, 0x80, 0x03, 0xF6, 0xFF, 0x80, 0x04, 0x05, 0xFF, 0xB7, + 0x04, 0x06, 0xFF, 0xB7, 0x04, 0x09, 0xFF, 0x80, 0x05, 0xE3, 0xFF, 0x5E, + 0x06, 0x77, 0xFF, 0x84, 0x06, 0x78, 0xFF, 0x84, 0x07, 0x33, 0xFF, 0x80, + 0x07, 0x37, 0xFF, 0x80, 0x07, 0x3A, 0xFF, 0x80, 0x08, 0x03, 0xFF, 0x80, + 0x08, 0x04, 0xFF, 0x80, 0x08, 0x05, 0xFF, 0x80, 0x08, 0x06, 0xFF, 0x80, + 0x08, 0x07, 0xFF, 0x80, 0x08, 0x08, 0xFF, 0x80, 0x09, 0x6D, 0xFF, 0x80, + 0x09, 0x89, 0xFF, 0x80, 0x09, 0xAC, 0xFF, 0x80, 0x00, 0x3A, 0x01, 0x15, + 0xFF, 0x75, 0x01, 0x9B, 0xFF, 0x75, 0x01, 0x9C, 0xFF, 0x75, 0x01, 0x9D, + 0xFF, 0x75, 0x01, 0x9E, 0xFF, 0x75, 0x01, 0x9F, 0xFF, 0x75, 0x01, 0xA0, + 0xFF, 0x75, 0x01, 0xA1, 0xFF, 0x75, 0x01, 0xA2, 0xFF, 0x75, 0x01, 0xA3, + 0xFF, 0x75, 0x01, 0xA5, 0xFF, 0x75, 0x01, 0xA6, 0xFF, 0x75, 0x01, 0xA7, + 0xFF, 0x75, 0x01, 0xC8, 0xFF, 0xBB, 0x01, 0xC9, 0xFF, 0xBB, 0x01, 0xCA, + 0xFF, 0xBB, 0x01, 0xD8, 0xFF, 0x75, 0x01, 0xD9, 0xFF, 0x75, 0x01, 0xDA, + 0xFF, 0x75, 0x01, 0xDB, 0xFF, 0x75, 0x01, 0xDC, 0xFF, 0x75, 0x01, 0xDD, + 0xFF, 0x75, 0x01, 0xDE, 0xFF, 0x75, 0x01, 0xDF, 0xFF, 0x75, 0x01, 0xE0, + 0xFF, 0x75, 0x01, 0xE1, 0xFF, 0x75, 0x01, 0xE2, 0xFF, 0x75, 0x01, 0xE3, + 0xFF, 0x75, 0x01, 0xE4, 0xFF, 0x75, 0x01, 0xE5, 0xFF, 0x75, 0x01, 0xE6, + 0xFF, 0x75, 0x01, 0xEB, 0xFF, 0x75, 0x01, 0xEC, 0xFF, 0x75, 0x01, 0xEF, + 0xFF, 0x75, 0x04, 0x0F, 0xFF, 0x75, 0x04, 0x29, 0xFF, 0xBB, 0x04, 0x37, + 0xFF, 0xBB, 0x04, 0x3A, 0xFF, 0x75, 0x04, 0x3F, 0xFF, 0x75, 0x04, 0x42, + 0xFF, 0x75, 0x04, 0x51, 0xFF, 0xBB, 0x04, 0x52, 0xFF, 0x75, 0x08, 0x31, + 0xFF, 0x75, 0x08, 0x32, 0xFF, 0x75, 0x08, 0x3C, 0xFF, 0xBB, 0x08, 0x42, + 0xFF, 0x75, 0x08, 0x43, 0xFF, 0x75, 0x08, 0x44, 0xFF, 0x75, 0x09, 0x27, + 0xFF, 0x75, 0x09, 0x83, 0xFF, 0x75, 0x09, 0x8F, 0xFF, 0xBB, 0x09, 0x93, + 0xFF, 0x75, 0x09, 0x94, 0xFF, 0x75, 0x09, 0x95, 0xFF, 0x75, 0x09, 0xEB, + 0xFF, 0xBB, 0x09, 0xEC, 0xFF, 0xBB, 0x09, 0xED, 0xFF, 0xBB, 0x09, 0xEE, + 0xFF, 0xBB, 0x00, 0x3B, 0x01, 0x15, 0xFF, 0xAF, 0x01, 0x9B, 0xFF, 0xAF, + 0x01, 0x9C, 0xFF, 0xAF, 0x01, 0x9D, 0xFF, 0xAF, 0x01, 0x9E, 0xFF, 0xAF, + 0x01, 0x9F, 0xFF, 0xAF, 0x01, 0xA0, 0xFF, 0xAF, 0x01, 0xA1, 0xFF, 0xAF, + 0x01, 0xA2, 0xFF, 0xAF, 0x01, 0xA3, 0xFF, 0xAF, 0x01, 0xA5, 0xFF, 0xAF, + 0x01, 0xA6, 0xFF, 0xAF, 0x01, 0xA7, 0xFF, 0xAF, 0x03, 0xD2, 0xFF, 0x98, + 0x03, 0xD4, 0xFF, 0x98, 0x03, 0xD5, 0xFF, 0x98, 0x03, 0xE3, 0xFF, 0x98, + 0x03, 0xE4, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0x98, 0x03, 0xE6, 0xFF, 0x98, + 0x03, 0xE7, 0xFF, 0x98, 0x03, 0xE8, 0xFF, 0x98, 0x03, 0xE9, 0xFF, 0x98, + 0x03, 0xEA, 0xFF, 0x98, 0x03, 0xEB, 0xFF, 0x98, 0x03, 0xEC, 0xFF, 0x98, + 0x03, 0xED, 0xFF, 0x98, 0x03, 0xEE, 0xFF, 0x98, 0x03, 0xEF, 0xFF, 0x98, + 0x03, 0xF0, 0xFF, 0x98, 0x03, 0xF1, 0xFF, 0x98, 0x03, 0xF2, 0xFF, 0x98, + 0x03, 0xF3, 0xFF, 0x98, 0x03, 0xF4, 0xFF, 0x98, 0x03, 0xF5, 0xFF, 0x98, + 0x03, 0xFA, 0xFF, 0x98, 0x03, 0xFB, 0xFF, 0x98, 0x04, 0x0F, 0xFF, 0xAF, + 0x04, 0x3A, 0xFF, 0xAF, 0x04, 0x3F, 0xFF, 0xAF, 0x04, 0x42, 0xFF, 0xAF, + 0x04, 0x52, 0xFF, 0xAF, 0x04, 0xAD, 0xFF, 0x75, 0x04, 0xB4, 0xFF, 0x3B, + 0x04, 0xE2, 0xFF, 0x98, 0x05, 0x1A, 0xFF, 0x98, 0x08, 0x31, 0xFF, 0xAF, + 0x08, 0x32, 0xFF, 0xAF, 0x08, 0x8B, 0xFF, 0x98, 0x08, 0x91, 0xFF, 0x98, + 0x08, 0x92, 0xFF, 0x98, 0x08, 0x93, 0xFF, 0x98, 0x09, 0x27, 0xFF, 0xAF, + 0x09, 0x83, 0xFF, 0xAF, 0x09, 0x93, 0xFF, 0xAF, 0x09, 0xB2, 0xFF, 0x98, + 0x09, 0xB6, 0xFF, 0x98, 0x09, 0xB7, 0xFF, 0x98, 0x09, 0xCF, 0xFF, 0x98, + 0x00, 0x5D, 0x02, 0xA5, 0xFF, 0xA1, 0x02, 0xDE, 0xFF, 0x5D, 0x03, 0x00, + 0xFF, 0xA1, 0x03, 0x01, 0xFF, 0xA1, 0x03, 0x91, 0xFF, 0xA1, 0x03, 0x92, + 0xFF, 0xA1, 0x03, 0x93, 0xFF, 0xA1, 0x03, 0x94, 0xFF, 0xA1, 0x03, 0x95, + 0xFF, 0xA1, 0x03, 0x96, 0xFF, 0xA1, 0x03, 0x97, 0xFF, 0xA1, 0x03, 0x98, + 0xFF, 0xA1, 0x03, 0x99, 0xFF, 0xA1, 0x03, 0x9A, 0xFF, 0xA1, 0x03, 0x9B, + 0xFF, 0xA1, 0x03, 0x9C, 0xFF, 0xA1, 0x03, 0x9D, 0xFF, 0xA1, 0x03, 0x9E, + 0xFF, 0xA1, 0x03, 0x9F, 0xFF, 0xA1, 0x03, 0xA0, 0xFF, 0xA1, 0x03, 0xA1, + 0xFF, 0xA1, 0x03, 0xA2, 0xFF, 0xA1, 0x03, 0xA3, 0xFF, 0xA1, 0x03, 0xA4, + 0xFF, 0xA1, 0x03, 0xA5, 0xFF, 0xA1, 0x03, 0xA6, 0xFF, 0xA1, 0x03, 0xA7, + 0xFF, 0xA1, 0x03, 0xA8, 0xFF, 0xA1, 0x03, 0xA9, 0xFF, 0xA1, 0x03, 0xAA, + 0xFF, 0xA1, 0x03, 0xAB, 0xFF, 0xA1, 0x03, 0xAC, 0xFF, 0xA1, 0x03, 0xAD, + 0xFF, 0xA1, 0x03, 0xAE, 0xFF, 0xA1, 0x03, 0xAF, 0xFF, 0xA1, 0x03, 0xB0, + 0xFF, 0xA1, 0x03, 0xB1, 0xFF, 0xA1, 0x03, 0xDF, 0xFF, 0x5D, 0x03, 0xE0, + 0xFF, 0x5D, 0x03, 0xE1, 0xFF, 0x5D, 0x03, 0xE2, 0xFF, 0x5D, 0x03, 0xFC, + 0xFF, 0xB7, 0x03, 0xFD, 0xFF, 0xB7, 0x03, 0xFE, 0xFF, 0xB7, 0x03, 0xFF, + 0xFF, 0xB7, 0x04, 0x00, 0xFF, 0xB7, 0x04, 0x01, 0xFF, 0xB7, 0x04, 0x02, + 0xFF, 0xB7, 0x04, 0x03, 0xFF, 0xB7, 0x04, 0x04, 0xFF, 0xB7, 0x04, 0x05, + 0xFF, 0xB7, 0x04, 0x06, 0xFF, 0xB7, 0x04, 0xE9, 0xFF, 0x5D, 0x04, 0xEA, + 0xFF, 0x5D, 0x05, 0x00, 0xFF, 0x5D, 0x05, 0x01, 0xFF, 0x5D, 0x05, 0x03, + 0xFF, 0xA1, 0x05, 0x6F, 0xFF, 0xAE, 0x05, 0x84, 0xFF, 0xAE, 0x05, 0x85, + 0xFF, 0xAE, 0x05, 0x87, 0xFF, 0xAE, 0x05, 0x8A, 0xFF, 0xAE, 0x05, 0xB1, + 0xFF, 0xAE, 0x05, 0xBD, 0xFF, 0xAE, 0x05, 0xE3, 0xFF, 0xAE, 0x05, 0xF0, + 0xFF, 0xAE, 0x05, 0xF1, 0xFF, 0xAE, 0x05, 0xF3, 0xFF, 0xAE, 0x05, 0xF6, + 0xFF, 0xAE, 0x05, 0xFD, 0xFF, 0xAE, 0x05, 0xFE, 0xFF, 0xAE, 0x06, 0x00, + 0xFF, 0xAE, 0x06, 0x03, 0xFF, 0xAE, 0x06, 0x04, 0xFF, 0xAE, 0x07, 0x0B, + 0xFF, 0xAE, 0x07, 0x0C, 0xFF, 0xAE, 0x07, 0x0D, 0xFF, 0xAE, 0x08, 0x82, + 0xFF, 0xA1, 0x08, 0x83, 0xFF, 0xA1, 0x08, 0x84, 0xFF, 0xA1, 0x08, 0x85, + 0xFF, 0xA1, 0x08, 0x86, 0xFF, 0xA1, 0x08, 0x87, 0xFF, 0xA1, 0x08, 0x88, + 0xFF, 0xA1, 0x08, 0x89, 0xFF, 0xA1, 0x08, 0x8A, 0xFF, 0xA1, 0x08, 0x8F, + 0xFF, 0x5D, 0x08, 0x90, 0xFF, 0x5D, 0x08, 0x94, 0xFF, 0xB7, 0x08, 0x95, + 0xFF, 0xB7, 0x08, 0xD2, 0xFF, 0xAE, 0x09, 0xC6, 0xFF, 0x5D, 0x0B, 0x42, + 0xFF, 0xA1, 0x00, 0x41, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, + 0x02, 0x67, 0xFF, 0x98, 0x02, 0xA5, 0xFF, 0xBB, 0x03, 0x00, 0xFF, 0xBB, + 0x03, 0x01, 0xFF, 0xBB, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, + 0x03, 0x91, 0xFF, 0xBB, 0x03, 0x92, 0xFF, 0xBB, 0x03, 0x93, 0xFF, 0xBB, + 0x03, 0x94, 0xFF, 0xBB, 0x03, 0x95, 0xFF, 0xBB, 0x03, 0x96, 0xFF, 0xBB, + 0x03, 0x97, 0xFF, 0xBB, 0x03, 0x98, 0xFF, 0xBB, 0x03, 0x99, 0xFF, 0xBB, + 0x03, 0x9A, 0xFF, 0xBB, 0x03, 0x9B, 0xFF, 0xBB, 0x03, 0x9C, 0xFF, 0xBB, + 0x03, 0x9D, 0xFF, 0xBB, 0x03, 0x9E, 0xFF, 0xBB, 0x03, 0x9F, 0xFF, 0xBB, + 0x03, 0xA0, 0xFF, 0xBB, 0x03, 0xA1, 0xFF, 0xBB, 0x03, 0xA2, 0xFF, 0xBB, + 0x03, 0xA3, 0xFF, 0xBB, 0x03, 0xA4, 0xFF, 0xBB, 0x03, 0xA5, 0xFF, 0xBB, + 0x03, 0xA6, 0xFF, 0xBB, 0x03, 0xA7, 0xFF, 0xBB, 0x03, 0xA8, 0xFF, 0xBB, + 0x03, 0xA9, 0xFF, 0xBB, 0x03, 0xAA, 0xFF, 0xBB, 0x03, 0xAB, 0xFF, 0xBB, + 0x03, 0xAC, 0xFF, 0xBB, 0x03, 0xAD, 0xFF, 0xBB, 0x03, 0xAE, 0xFF, 0xBB, + 0x03, 0xAF, 0xFF, 0xBB, 0x03, 0xB0, 0xFF, 0xBB, 0x03, 0xB1, 0xFF, 0xBB, + 0x03, 0xD7, 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, + 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, + 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x03, 0xFF, 0xBB, 0x05, 0x8F, 0xFF, 0xBB, + 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, + 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, 0xFF, 0x8C, 0x08, 0x82, 0xFF, 0xBB, + 0x08, 0x83, 0xFF, 0xBB, 0x08, 0x84, 0xFF, 0xBB, 0x08, 0x85, 0xFF, 0xBB, + 0x08, 0x86, 0xFF, 0xBB, 0x08, 0x87, 0xFF, 0xBB, 0x08, 0x88, 0xFF, 0xBB, + 0x08, 0x89, 0xFF, 0xBB, 0x08, 0x8A, 0xFF, 0xBB, 0x0B, 0x42, 0xFF, 0xBB, + 0x00, 0x44, 0x00, 0x8A, 0x00, 0x51, 0x01, 0x15, 0x00, 0x45, 0x01, 0x36, + 0x00, 0x51, 0x01, 0x9B, 0x00, 0x45, 0x01, 0x9C, 0x00, 0x45, 0x01, 0x9D, + 0x00, 0x45, 0x01, 0x9E, 0x00, 0x45, 0x01, 0x9F, 0x00, 0x45, 0x01, 0xA0, + 0x00, 0x45, 0x01, 0xA1, 0x00, 0x45, 0x01, 0xA2, 0x00, 0x45, 0x01, 0xA3, + 0x00, 0x45, 0x01, 0xA5, 0x00, 0x45, 0x01, 0xA6, 0x00, 0x45, 0x01, 0xA7, + 0x00, 0x45, 0x02, 0xA8, 0x00, 0x51, 0x02, 0xB1, 0x00, 0x45, 0x02, 0xB2, + 0x00, 0x45, 0x02, 0xB3, 0x00, 0x45, 0x02, 0xB4, 0x00, 0x51, 0x02, 0xB5, + 0x00, 0x51, 0x02, 0xB6, 0x00, 0x51, 0x02, 0xB7, 0x00, 0x45, 0x02, 0xB8, + 0x00, 0x45, 0x02, 0xBA, 0x00, 0x45, 0x02, 0xBB, 0x00, 0x45, 0x02, 0xBC, + 0x00, 0x51, 0x02, 0xBD, 0x00, 0x51, 0x02, 0xBE, 0x00, 0x51, 0x02, 0xBF, + 0x00, 0x45, 0x02, 0xC0, 0x00, 0x45, 0x02, 0xC1, 0x00, 0x45, 0x02, 0xC2, + 0x00, 0x51, 0x02, 0xC3, 0x00, 0x51, 0x02, 0xC4, 0x00, 0x45, 0x02, 0xC5, + 0x00, 0x45, 0x02, 0xC6, 0x00, 0x45, 0x02, 0xC7, 0x00, 0x51, 0x02, 0xC8, + 0x00, 0x51, 0x02, 0xCB, 0x00, 0x45, 0x02, 0xCC, 0x00, 0x51, 0x02, 0xCD, + 0x00, 0x45, 0x02, 0xCF, 0x00, 0x51, 0x02, 0xD2, 0x00, 0x51, 0x02, 0xD3, + 0x00, 0x51, 0x02, 0xD4, 0x00, 0x51, 0x02, 0xD5, 0x00, 0x51, 0x03, 0x0A, + 0x00, 0x51, 0x04, 0x3A, 0x00, 0x45, 0x04, 0x3F, 0x00, 0x45, 0x04, 0x42, + 0x00, 0x45, 0x04, 0x52, 0x00, 0x45, 0x05, 0x0B, 0x00, 0x45, 0x06, 0x21, + 0x00, 0x51, 0x07, 0x55, 0x00, 0x45, 0x08, 0x31, 0x00, 0x45, 0x08, 0x32, + 0x00, 0x45, 0x08, 0x60, 0x00, 0x45, 0x08, 0x61, 0x00, 0x51, 0x08, 0x62, + 0x00, 0x51, 0x08, 0x63, 0x00, 0x45, 0x08, 0x64, 0x00, 0x45, 0x08, 0x65, + 0x00, 0x51, 0x08, 0x9C, 0x00, 0x45, 0x09, 0x27, 0x00, 0x45, 0x09, 0x3B, + 0x00, 0x51, 0x09, 0x83, 0x00, 0x45, 0x09, 0x93, 0x00, 0x45, 0x00, 0x45, + 0x02, 0xA6, 0xFF, 0xBB, 0x02, 0xA7, 0xFF, 0xBB, 0x02, 0xB9, 0xFF, 0xBB, + 0x02, 0xC9, 0xFF, 0xBB, 0x02, 0xCA, 0xFF, 0xBB, 0x02, 0xE5, 0xFF, 0xBB, + 0x02, 0xF0, 0xFF, 0xBB, 0x02, 0xF1, 0xFF, 0xBB, 0x02, 0xF2, 0xFF, 0xBB, + 0x02, 0xF3, 0xFF, 0xBB, 0x03, 0x59, 0xFF, 0xBB, 0x03, 0x78, 0xFF, 0xBB, + 0x03, 0x79, 0xFF, 0xBB, 0x03, 0x7A, 0xFF, 0xBB, 0x03, 0x7B, 0xFF, 0xBB, + 0x03, 0x7C, 0xFF, 0xBB, 0x03, 0x7D, 0xFF, 0xBB, 0x03, 0x7E, 0xFF, 0xBB, + 0x03, 0x7F, 0xFF, 0xBB, 0x03, 0x80, 0xFF, 0xBB, 0x03, 0x81, 0xFF, 0xBB, + 0x03, 0x82, 0xFF, 0xBB, 0x03, 0x83, 0xFF, 0xBB, 0x03, 0x84, 0xFF, 0xBB, + 0x03, 0x85, 0xFF, 0xBB, 0x03, 0x86, 0xFF, 0xBB, 0x04, 0x6F, 0xFF, 0x98, + 0x04, 0xAD, 0xFF, 0xBB, 0x04, 0xB4, 0xFF, 0x75, 0x04, 0xE7, 0xFF, 0xBB, + 0x04, 0xF2, 0xFF, 0xBB, 0x04, 0xFE, 0xFF, 0xBB, 0x05, 0x0A, 0xFF, 0xBB, + 0x05, 0x0C, 0xFF, 0xBB, 0x05, 0x0D, 0xFF, 0xBB, 0x05, 0x17, 0xFF, 0xBB, + 0x05, 0x18, 0xFF, 0xBB, 0x05, 0x19, 0xFF, 0xBB, 0x05, 0x86, 0xFF, 0xBB, + 0x05, 0x8B, 0xFF, 0xBB, 0x05, 0x90, 0xFF, 0xBB, 0x05, 0xB6, 0xFF, 0xBB, + 0x05, 0xB7, 0xFF, 0xBB, 0x05, 0xB8, 0xFF, 0xBB, 0x05, 0xB9, 0xFF, 0xBB, + 0x05, 0xBA, 0xFF, 0xBB, 0x05, 0xC1, 0xFF, 0xBB, 0x05, 0xC2, 0xFF, 0xBB, + 0x05, 0xE6, 0xFF, 0xBB, 0x05, 0xE8, 0xFF, 0xBB, 0x05, 0xEA, 0xFF, 0x80, + 0x05, 0xF2, 0xFF, 0xBB, 0x05, 0xFF, 0xFF, 0xBB, 0x06, 0x0A, 0xFF, 0xBB, + 0x07, 0xF5, 0xFF, 0xBB, 0x08, 0x66, 0xFF, 0xBB, 0x08, 0x7F, 0xFF, 0xBB, + 0x08, 0x80, 0xFF, 0xBB, 0x08, 0x81, 0xFF, 0xBB, 0x09, 0x0B, 0xFF, 0xBB, + 0x09, 0x40, 0xFF, 0xBB, 0x09, 0x41, 0xFF, 0xBB, 0x09, 0x59, 0xFF, 0xBB, + 0x09, 0x5C, 0xFF, 0xBB, 0x09, 0x70, 0xFF, 0xBB, 0x09, 0xA6, 0xFF, 0xBB, + 0x09, 0xB5, 0xFF, 0xBB, 0x0A, 0x2F, 0xFF, 0xBB, 0x0A, 0x30, 0xFF, 0xBB, + 0x00, 0x4E, 0x02, 0x0B, 0xFF, 0xAF, 0x02, 0x1A, 0xFF, 0xAF, 0x02, 0x67, + 0xFF, 0x98, 0x02, 0xA5, 0xFF, 0xBB, 0x03, 0x00, 0xFF, 0xBB, 0x03, 0x01, + 0xFF, 0xBB, 0x03, 0x17, 0xFF, 0x98, 0x03, 0x18, 0xFF, 0x98, 0x03, 0x91, + 0xFF, 0xBB, 0x03, 0x92, 0xFF, 0xBB, 0x03, 0x93, 0xFF, 0xBB, 0x03, 0x94, + 0xFF, 0xBB, 0x03, 0x95, 0xFF, 0xBB, 0x03, 0x96, 0xFF, 0xBB, 0x03, 0x97, + 0xFF, 0xBB, 0x03, 0x98, 0xFF, 0xBB, 0x03, 0x99, 0xFF, 0xBB, 0x03, 0x9A, + 0xFF, 0xBB, 0x03, 0x9B, 0xFF, 0xBB, 0x03, 0x9C, 0xFF, 0xBB, 0x03, 0x9D, + 0xFF, 0xBB, 0x03, 0x9E, 0xFF, 0xBB, 0x03, 0x9F, 0xFF, 0xBB, 0x03, 0xA0, + 0xFF, 0xBB, 0x03, 0xA1, 0xFF, 0xBB, 0x03, 0xA2, 0xFF, 0xBB, 0x03, 0xA3, + 0xFF, 0xBB, 0x03, 0xA4, 0xFF, 0xBB, 0x03, 0xA5, 0xFF, 0xBB, 0x03, 0xA6, + 0xFF, 0xBB, 0x03, 0xA7, 0xFF, 0xBB, 0x03, 0xA8, 0xFF, 0xBB, 0x03, 0xA9, + 0xFF, 0xBB, 0x03, 0xAA, 0xFF, 0xBB, 0x03, 0xAB, 0xFF, 0xBB, 0x03, 0xAC, + 0xFF, 0xBB, 0x03, 0xAD, 0xFF, 0xBB, 0x03, 0xAE, 0xFF, 0xBB, 0x03, 0xAF, + 0xFF, 0xBB, 0x03, 0xB0, 0xFF, 0xBB, 0x03, 0xB1, 0xFF, 0xBB, 0x03, 0xD7, + 0xFF, 0x98, 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xFC, 0xFF, 0xBB, 0x03, 0xFD, + 0xFF, 0xBB, 0x03, 0xFE, 0xFF, 0xBB, 0x03, 0xFF, 0xFF, 0xBB, 0x04, 0x00, + 0xFF, 0xBB, 0x04, 0x01, 0xFF, 0xBB, 0x04, 0x02, 0xFF, 0xBB, 0x04, 0x03, + 0xFF, 0xBB, 0x04, 0x04, 0xFF, 0xBB, 0x04, 0x05, 0xFF, 0xBB, 0x04, 0x06, + 0xFF, 0xBB, 0x04, 0x98, 0xFF, 0x5E, 0x04, 0xAC, 0xFF, 0x8C, 0x04, 0xAD, + 0xFF, 0x2F, 0x04, 0xAE, 0xFE, 0xF5, 0x04, 0xB4, 0xFF, 0x2F, 0x05, 0x03, + 0xFF, 0xBB, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x98, 0x05, 0xDD, + 0xFF, 0x52, 0x05, 0xE0, 0xFF, 0xAF, 0x05, 0xEA, 0xFF, 0x5E, 0x06, 0x05, + 0xFF, 0x8C, 0x08, 0x82, 0xFF, 0xBB, 0x08, 0x83, 0xFF, 0xBB, 0x08, 0x84, + 0xFF, 0xBB, 0x08, 0x85, 0xFF, 0xBB, 0x08, 0x86, 0xFF, 0xBB, 0x08, 0x87, + 0xFF, 0xBB, 0x08, 0x88, 0xFF, 0xBB, 0x08, 0x89, 0xFF, 0xBB, 0x08, 0x8A, + 0xFF, 0xBB, 0x08, 0x94, 0xFF, 0xBB, 0x08, 0x95, 0xFF, 0xBB, 0x0B, 0x42, + 0xFF, 0xBB, 0x00, 0x66, 0x01, 0x15, 0xFF, 0x5E, 0x01, 0x9B, 0xFF, 0x5E, + 0x01, 0x9C, 0xFF, 0x5E, 0x01, 0x9D, 0xFF, 0x5E, 0x01, 0x9E, 0xFF, 0x5E, + 0x01, 0x9F, 0xFF, 0x5E, 0x01, 0xA0, 0xFF, 0x5E, 0x01, 0xA1, 0xFF, 0x5E, + 0x01, 0xA2, 0xFF, 0x5E, 0x01, 0xA3, 0xFF, 0x5E, 0x01, 0xA5, 0xFF, 0x5E, + 0x01, 0xA6, 0xFF, 0x5E, 0x01, 0xA7, 0xFF, 0x5E, 0x01, 0xC8, 0xFF, 0x69, + 0x01, 0xC9, 0xFF, 0x69, 0x01, 0xCA, 0xFF, 0x69, 0x01, 0xCB, 0xFF, 0x69, + 0x01, 0xCC, 0xFF, 0x69, 0x01, 0xCD, 0xFF, 0x69, 0x01, 0xCE, 0xFF, 0x69, + 0x01, 0xCF, 0xFF, 0x69, 0x01, 0xD0, 0xFF, 0x69, 0x01, 0xD1, 0xFF, 0x69, + 0x01, 0xD2, 0xFF, 0x8C, 0x01, 0xD3, 0xFF, 0x8C, 0x01, 0xD4, 0xFF, 0x8C, + 0x01, 0xD5, 0xFF, 0x8C, 0x01, 0xD6, 0xFF, 0x8C, 0x01, 0xD7, 0xFF, 0x8C, + 0x01, 0xD8, 0xFF, 0x46, 0x01, 0xD9, 0xFF, 0x46, 0x01, 0xDA, 0xFF, 0x46, + 0x01, 0xDB, 0xFF, 0x46, 0x01, 0xDC, 0xFF, 0x46, 0x01, 0xDD, 0xFF, 0x46, + 0x01, 0xDE, 0xFF, 0x46, 0x01, 0xDF, 0xFF, 0x46, 0x01, 0xE0, 0xFF, 0x46, + 0x01, 0xE1, 0xFF, 0x46, 0x01, 0xE2, 0xFF, 0x46, 0x01, 0xE3, 0xFF, 0x46, + 0x01, 0xE4, 0xFF, 0x46, 0x01, 0xE5, 0xFF, 0x46, 0x01, 0xE6, 0xFF, 0x46, + 0x01, 0xEB, 0xFF, 0x46, 0x01, 0xEC, 0xFF, 0x46, 0x01, 0xEF, 0xFF, 0x46, + 0x01, 0xF0, 0xFF, 0x80, 0x01, 0xF1, 0xFF, 0x80, 0x01, 0xF2, 0xFF, 0x80, + 0x01, 0xF3, 0xFF, 0x80, 0x01, 0xF4, 0xFF, 0x80, 0x01, 0xF5, 0xFF, 0x80, + 0x01, 0xF6, 0xFF, 0x80, 0x01, 0xF7, 0xFF, 0x80, 0x01, 0xF8, 0xFF, 0x80, + 0x01, 0xF9, 0xFF, 0x80, 0x01, 0xFA, 0xFF, 0x80, 0x04, 0x0F, 0xFF, 0x46, + 0x04, 0x29, 0xFF, 0x69, 0x04, 0x2D, 0xFF, 0xBB, 0x04, 0x2E, 0xFF, 0x98, + 0x04, 0x34, 0xFF, 0xBB, 0x04, 0x37, 0xFF, 0x69, 0x04, 0x3A, 0xFF, 0x5E, + 0x04, 0x3F, 0xFF, 0x5E, 0x04, 0x42, 0xFF, 0x69, 0x04, 0x45, 0xFF, 0xBB, + 0x04, 0x51, 0xFF, 0x69, 0x04, 0x52, 0xFF, 0x5E, 0x04, 0x7F, 0xFF, 0x69, + 0x08, 0x31, 0xFF, 0x5E, 0x08, 0x32, 0xFF, 0x5E, 0x08, 0x3C, 0xFF, 0x69, + 0x08, 0x3D, 0xFF, 0x69, 0x08, 0x3E, 0xFF, 0x69, 0x08, 0x3F, 0xFF, 0x69, + 0x08, 0x40, 0xFF, 0x8C, 0x08, 0x41, 0xFF, 0x8C, 0x08, 0x42, 0xFF, 0x46, + 0x08, 0x43, 0xFF, 0x46, 0x08, 0x44, 0xFF, 0x46, 0x08, 0x45, 0xFF, 0x80, + 0x08, 0x46, 0xFF, 0x80, 0x08, 0xB0, 0xFF, 0x8C, 0x09, 0x27, 0xFF, 0x5E, + 0x09, 0x83, 0xFF, 0x5E, 0x09, 0x85, 0xFF, 0x8C, 0x09, 0x8F, 0xFF, 0x69, + 0x09, 0x93, 0xFF, 0x5E, 0x09, 0x94, 0xFF, 0x46, 0x09, 0x95, 0xFF, 0x46, + 0x09, 0x98, 0xFF, 0x8C, 0x09, 0x9C, 0xFF, 0x8C, 0x09, 0xA1, 0xFF, 0x8C, + 0x09, 0xEB, 0xFF, 0x69, 0x09, 0xEC, 0xFF, 0x69, 0x09, 0xED, 0xFF, 0x69, + 0x09, 0xEE, 0xFF, 0x69, 0x09, 0xF0, 0xFF, 0x8C, 0x09, 0xF1, 0xFF, 0x8C, + 0x09, 0xF2, 0xFF, 0x8C, 0x00, 0x91, 0x02, 0x1B, 0xFF, 0xD4, 0x02, 0xFE, + 0xFF, 0xD4, 0x02, 0xFF, 0xFF, 0xD4, 0x03, 0x02, 0xFF, 0xD4, 0x03, 0x03, + 0xFF, 0xD4, 0x03, 0x04, 0xFF, 0xD4, 0x03, 0x05, 0xFF, 0xD4, 0x03, 0x06, + 0xFF, 0xD4, 0x03, 0x07, 0xFF, 0xD4, 0x03, 0x08, 0xFF, 0xD4, 0x03, 0x09, + 0xFF, 0xD4, 0x03, 0x0B, 0xFF, 0xD4, 0x03, 0x0C, 0xFF, 0xD4, 0x03, 0x0D, + 0xFF, 0xD4, 0x03, 0x0E, 0xFF, 0xD4, 0x03, 0x0F, 0xFF, 0xD4, 0x03, 0x10, + 0xFF, 0xD4, 0x03, 0x11, 0xFF, 0xD4, 0x03, 0x12, 0xFF, 0xD4, 0x03, 0x13, + 0xFF, 0xD4, 0x03, 0x14, 0xFF, 0xD4, 0x03, 0x4B, 0xFF, 0xD4, 0x03, 0x4C, + 0xFF, 0xD4, 0x03, 0x4E, 0xFF, 0xD4, 0x03, 0x4F, 0xFF, 0xD4, 0x03, 0x50, + 0xFF, 0xD4, 0x03, 0x53, 0xFF, 0xD4, 0x03, 0x54, 0xFF, 0xD4, 0x03, 0x55, + 0xFF, 0xD4, 0x03, 0x56, 0xFF, 0xD4, 0x03, 0x5A, 0xFF, 0xD4, 0x03, 0x5B, + 0xFF, 0xD4, 0x03, 0x5C, 0xFF, 0xD4, 0x03, 0x5D, 0xFF, 0xD4, 0x03, 0x5E, + 0xFF, 0xD4, 0x03, 0x5F, 0xFF, 0xD4, 0x03, 0x60, 0xFF, 0xD4, 0x03, 0x61, + 0xFF, 0xD4, 0x03, 0x62, 0xFF, 0xD4, 0x03, 0x63, 0xFF, 0xD4, 0x03, 0x64, + 0xFF, 0xD4, 0x03, 0xB2, 0xFF, 0xD4, 0x04, 0x6E, 0xFF, 0xD4, 0x04, 0x80, + 0xFF, 0xD4, 0x04, 0x81, 0xFF, 0xD4, 0x04, 0x82, 0xFF, 0xD4, 0x04, 0x83, + 0xFF, 0xD4, 0x04, 0x84, 0xFF, 0xD4, 0x04, 0x85, 0xFF, 0xD4, 0x04, 0x86, + 0xFF, 0xD4, 0x04, 0x87, 0xFF, 0xD4, 0x04, 0x88, 0xFF, 0xD4, 0x04, 0x89, + 0xFF, 0xD4, 0x04, 0x8A, 0xFF, 0xD4, 0x04, 0x8B, 0xFF, 0xD4, 0x04, 0x8C, + 0xFF, 0xD4, 0x04, 0x8D, 0xFF, 0xD4, 0x04, 0x8E, 0xFF, 0xD4, 0x04, 0x8F, + 0xFF, 0xD4, 0x04, 0x90, 0xFF, 0xD4, 0x04, 0x91, 0xFF, 0xD4, 0x04, 0x92, + 0xFF, 0xD4, 0x04, 0x93, 0xFF, 0xD4, 0x04, 0x94, 0xFF, 0xD4, 0x04, 0x95, + 0xFF, 0xD4, 0x04, 0x96, 0xFF, 0xD4, 0x04, 0x97, 0xFF, 0xD4, 0x04, 0xAE, + 0xFF, 0xD4, 0x04, 0xAF, 0xFF, 0xD4, 0x04, 0xB0, 0xFF, 0xD4, 0x04, 0xB1, + 0xFF, 0xD4, 0x04, 0xB5, 0xFF, 0xD4, 0x04, 0xB6, 0xFF, 0xD4, 0x04, 0xB7, + 0xFF, 0xD4, 0x04, 0xB8, 0xFF, 0xD4, 0x04, 0xB9, 0xFF, 0xD4, 0x04, 0xBA, + 0xFF, 0xD4, 0x04, 0xBB, 0xFF, 0xD4, 0x04, 0xBC, 0xFF, 0xD4, 0x04, 0xBD, + 0xFF, 0xD4, 0x04, 0xBE, 0xFF, 0xD4, 0x04, 0xBF, 0xFF, 0xD4, 0x04, 0xC0, + 0xFF, 0xD4, 0x04, 0xC1, 0xFF, 0xD4, 0x04, 0xC2, 0xFF, 0xD4, 0x04, 0xC3, + 0xFF, 0xD4, 0x04, 0xC4, 0xFF, 0xD4, 0x04, 0xC5, 0xFF, 0xD4, 0x04, 0xC6, + 0xFF, 0xD4, 0x04, 0xE4, 0xFF, 0xD4, 0x04, 0xE5, 0xFF, 0xD4, 0x04, 0xE6, + 0xFF, 0xD4, 0x04, 0xEC, 0xFF, 0xD4, 0x04, 0xED, 0xFF, 0xD4, 0x04, 0xEE, + 0xFF, 0xD4, 0x04, 0xEF, 0xFF, 0xD4, 0x04, 0xF0, 0xFF, 0xD4, 0x04, 0xF1, + 0xFF, 0xD4, 0x04, 0xF6, 0xFF, 0xD4, 0x04, 0xF7, 0xFF, 0xD4, 0x04, 0xF8, + 0xFF, 0xD4, 0x04, 0xF9, 0xFF, 0xD4, 0x04, 0xFA, 0xFF, 0xD4, 0x04, 0xFB, + 0xFF, 0xD4, 0x04, 0xFC, 0xFF, 0xD4, 0x04, 0xFD, 0xFF, 0xD4, 0x05, 0x02, + 0xFF, 0xD4, 0x05, 0x07, 0xFF, 0xD4, 0x05, 0x08, 0xFF, 0xD4, 0x05, 0x09, + 0xFF, 0xD4, 0x05, 0x0F, 0xFF, 0xD4, 0x05, 0x11, 0xFF, 0xD4, 0x05, 0x13, + 0xFF, 0xD4, 0x05, 0x14, 0xFF, 0xD4, 0x07, 0xF2, 0xFF, 0xD4, 0x07, 0xF3, + 0xFF, 0xD4, 0x08, 0x6B, 0xFF, 0xD4, 0x08, 0x6C, 0xFF, 0xD4, 0x08, 0x6D, + 0xFF, 0xD4, 0x08, 0x6E, 0xFF, 0xD4, 0x08, 0x76, 0xFF, 0xD4, 0x08, 0x77, + 0xFF, 0xD4, 0x08, 0x78, 0xFF, 0xD4, 0x08, 0x79, 0xFF, 0xD4, 0x08, 0xBC, + 0xFF, 0xD4, 0x08, 0xC0, 0xFF, 0xD4, 0x08, 0xC3, 0xFF, 0xD4, 0x08, 0xC4, + 0xFF, 0xD4, 0x08, 0xC7, 0xFF, 0xD4, 0x08, 0xC9, 0xFF, 0xD4, 0x09, 0x08, + 0xFF, 0xD4, 0x09, 0x09, 0xFF, 0xD4, 0x09, 0x50, 0xFF, 0xD4, 0x09, 0x6E, + 0xFF, 0xD4, 0x09, 0xA4, 0xFF, 0xD4, 0x09, 0xA5, 0xFF, 0xD4, 0x09, 0xA7, + 0xFF, 0xD4, 0x09, 0xA8, 0xFF, 0xD4, 0x09, 0xA9, 0xFF, 0xD4, 0x09, 0xAB, + 0xFF, 0xD4, 0x09, 0xBF, 0xFF, 0xD4, 0x09, 0xC0, 0xFF, 0xD4, 0x09, 0xC5, + 0xFF, 0xD4, 0x09, 0xD3, 0xFF, 0xD4, 0x09, 0xD4, 0xFF, 0xD4, 0x00, 0x75, + 0x01, 0x15, 0xFF, 0x8C, 0x01, 0x9B, 0xFF, 0x8C, 0x01, 0x9C, 0xFF, 0x8C, + 0x01, 0x9D, 0xFF, 0x8C, 0x01, 0x9E, 0xFF, 0x8C, 0x01, 0x9F, 0xFF, 0x8C, + 0x01, 0xA0, 0xFF, 0x8C, 0x01, 0xA1, 0xFF, 0x8C, 0x01, 0xA2, 0xFF, 0x8C, + 0x01, 0xA3, 0xFF, 0x8C, 0x01, 0xA5, 0xFF, 0x8C, 0x01, 0xA6, 0xFF, 0x8C, + 0x01, 0xA7, 0xFF, 0x8C, 0x01, 0xC8, 0xFF, 0x80, 0x01, 0xC9, 0xFF, 0x80, + 0x01, 0xCA, 0xFF, 0x80, 0x01, 0xCB, 0xFF, 0xAF, 0x01, 0xCC, 0xFF, 0xAF, + 0x01, 0xCD, 0xFF, 0xAF, 0x01, 0xCE, 0xFF, 0xAF, 0x01, 0xCF, 0xFF, 0xAF, + 0x01, 0xD0, 0xFF, 0xAF, 0x01, 0xD1, 0xFF, 0xAF, 0x01, 0xD8, 0xFF, 0x69, + 0x01, 0xD9, 0xFF, 0x69, 0x01, 0xDA, 0xFF, 0x69, 0x01, 0xDB, 0xFF, 0x69, + 0x01, 0xDC, 0xFF, 0x69, 0x01, 0xDD, 0xFF, 0x69, 0x01, 0xDE, 0xFF, 0x69, + 0x01, 0xDF, 0xFF, 0x69, 0x01, 0xE0, 0xFF, 0x69, 0x01, 0xE1, 0xFF, 0x69, + 0x01, 0xE2, 0xFF, 0x69, 0x01, 0xE3, 0xFF, 0x69, 0x01, 0xE4, 0xFF, 0x69, + 0x01, 0xE5, 0xFF, 0x69, 0x01, 0xE6, 0xFF, 0x69, 0x01, 0xEB, 0xFF, 0x69, + 0x01, 0xEC, 0xFF, 0x69, 0x01, 0xEF, 0xFF, 0x69, 0x03, 0xD2, 0xFF, 0xBB, + 0x03, 0xD4, 0xFF, 0xBB, 0x03, 0xD5, 0xFF, 0xBB, 0x03, 0xD6, 0xFF, 0xBB, + 0x03, 0xD7, 0xFF, 0xBB, 0x03, 0xD9, 0xFF, 0xBB, 0x03, 0xDA, 0xFF, 0xBB, + 0x03, 0xDB, 0xFF, 0xBB, 0x03, 0xDC, 0xFF, 0xBB, 0x03, 0xDD, 0xFF, 0xBB, + 0x03, 0xDE, 0xFF, 0xBB, 0x03, 0xE3, 0xFF, 0xBB, 0x03, 0xE4, 0xFF, 0xBB, + 0x03, 0xE5, 0xFF, 0xBB, 0x03, 0xE6, 0xFF, 0xBB, 0x03, 0xE7, 0xFF, 0xBB, + 0x03, 0xE8, 0xFF, 0xBB, 0x03, 0xE9, 0xFF, 0xBB, 0x03, 0xEA, 0xFF, 0xBB, + 0x03, 0xEB, 0xFF, 0xBB, 0x03, 0xEC, 0xFF, 0xBB, 0x03, 0xED, 0xFF, 0xBB, + 0x03, 0xEE, 0xFF, 0xBB, 0x03, 0xEF, 0xFF, 0xBB, 0x03, 0xF0, 0xFF, 0xBB, + 0x03, 0xF1, 0xFF, 0xBB, 0x03, 0xF2, 0xFF, 0xBB, 0x03, 0xF3, 0xFF, 0xBB, + 0x03, 0xF4, 0xFF, 0xBB, 0x03, 0xF5, 0xFF, 0xBB, 0x03, 0xFA, 0xFF, 0xBB, + 0x03, 0xFB, 0xFF, 0xBB, 0x04, 0x0F, 0xFF, 0x69, 0x04, 0x29, 0xFF, 0x80, + 0x04, 0x37, 0xFF, 0x80, 0x04, 0x3A, 0xFF, 0x8C, 0x04, 0x3F, 0xFF, 0x8C, + 0x04, 0x42, 0xFF, 0x8C, 0x04, 0x51, 0xFF, 0x80, 0x04, 0x52, 0xFF, 0x8C, + 0x04, 0xE2, 0xFF, 0xBB, 0x05, 0x1A, 0xFF, 0xBB, 0x06, 0x16, 0xFF, 0xAF, + 0x06, 0x17, 0xFF, 0xAF, 0x06, 0x18, 0xFF, 0xAF, 0x06, 0x19, 0xFF, 0xAF, + 0x08, 0x31, 0xFF, 0x8C, 0x08, 0x32, 0xFF, 0x8C, 0x08, 0x3C, 0xFF, 0x80, + 0x08, 0x3D, 0xFF, 0xAF, 0x08, 0x3E, 0xFF, 0xAF, 0x08, 0x3F, 0xFF, 0xAF, + 0x08, 0x42, 0xFF, 0x69, 0x08, 0x43, 0xFF, 0x69, 0x08, 0x44, 0xFF, 0x69, + 0x08, 0x8B, 0xFF, 0xBB, 0x08, 0x8C, 0xFF, 0xBB, 0x08, 0x8D, 0xFF, 0xBB, + 0x08, 0x8E, 0xFF, 0xBB, 0x08, 0x91, 0xFF, 0xBB, 0x08, 0x92, 0xFF, 0xBB, + 0x08, 0x93, 0xFF, 0xBB, 0x09, 0x27, 0xFF, 0x8C, 0x09, 0x83, 0xFF, 0x8C, + 0x09, 0x8F, 0xFF, 0x80, 0x09, 0x93, 0xFF, 0x8C, 0x09, 0x94, 0xFF, 0x69, + 0x09, 0x95, 0xFF, 0x69, 0x09, 0xB2, 0xFF, 0xBB, 0x09, 0xB6, 0xFF, 0xBB, + 0x09, 0xB7, 0xFF, 0xBB, 0x09, 0xCF, 0xFF, 0xBB, 0x09, 0xEB, 0xFF, 0x80, + 0x09, 0xEC, 0xFF, 0x80, 0x09, 0xED, 0xFF, 0x80, 0x09, 0xEE, 0xFF, 0x80, + 0x00, 0x92, 0x02, 0x1B, 0x00, 0x03, 0x02, 0xFE, 0x00, 0x03, 0x02, 0xFF, + 0x00, 0x03, 0x03, 0x02, 0x00, 0x03, 0x03, 0x03, 0x00, 0x03, 0x03, 0x04, + 0x00, 0x03, 0x03, 0x05, 0x00, 0x03, 0x03, 0x06, 0x00, 0x03, 0x03, 0x07, + 0x00, 0x03, 0x03, 0x08, 0x00, 0x03, 0x03, 0x09, 0x00, 0x03, 0x03, 0x0B, + 0x00, 0x03, 0x03, 0x0C, 0x00, 0x03, 0x03, 0x0D, 0x00, 0x03, 0x03, 0x0E, + 0x00, 0x03, 0x03, 0x0F, 0x00, 0x03, 0x03, 0x10, 0x00, 0x03, 0x03, 0x11, + 0x00, 0x03, 0x03, 0x12, 0x00, 0x03, 0x03, 0x13, 0x00, 0x03, 0x03, 0x14, + 0x00, 0x03, 0x03, 0x4B, 0x00, 0x03, 0x03, 0x4C, 0x00, 0x03, 0x03, 0x4E, + 0x00, 0x03, 0x03, 0x4F, 0x00, 0x03, 0x03, 0x50, 0x00, 0x03, 0x03, 0x53, + 0x00, 0x03, 0x03, 0x54, 0x00, 0x03, 0x03, 0x55, 0x00, 0x03, 0x03, 0x56, + 0x00, 0x03, 0x03, 0x5A, 0x00, 0x03, 0x03, 0x5B, 0x00, 0x03, 0x03, 0x5C, + 0x00, 0x03, 0x03, 0x5D, 0x00, 0x03, 0x03, 0x5E, 0x00, 0x03, 0x03, 0x5F, + 0x00, 0x03, 0x03, 0x60, 0x00, 0x03, 0x03, 0x61, 0x00, 0x03, 0x03, 0x62, + 0x00, 0x03, 0x03, 0x63, 0x00, 0x03, 0x03, 0x64, 0x00, 0x03, 0x03, 0xB2, + 0x00, 0x03, 0x04, 0x6E, 0x00, 0x03, 0x04, 0x80, 0x00, 0x03, 0x04, 0x81, + 0x00, 0x03, 0x04, 0x82, 0x00, 0x03, 0x04, 0x83, 0x00, 0x03, 0x04, 0x84, + 0x00, 0x03, 0x04, 0x85, 0x00, 0x03, 0x04, 0x86, 0x00, 0x03, 0x04, 0x87, + 0x00, 0x03, 0x04, 0x88, 0x00, 0x03, 0x04, 0x89, 0x00, 0x03, 0x04, 0x8A, + 0x00, 0x03, 0x04, 0x8B, 0x00, 0x03, 0x04, 0x8C, 0x00, 0x03, 0x04, 0x8D, + 0x00, 0x03, 0x04, 0x8E, 0x00, 0x03, 0x04, 0x8F, 0x00, 0x03, 0x04, 0x90, + 0x00, 0x03, 0x04, 0x91, 0x00, 0x03, 0x04, 0x92, 0x00, 0x03, 0x04, 0x93, + 0x00, 0x03, 0x04, 0x94, 0x00, 0x03, 0x04, 0x95, 0x00, 0x03, 0x04, 0x96, + 0x00, 0x03, 0x04, 0x97, 0x00, 0x03, 0x04, 0xAE, 0x00, 0x03, 0x04, 0xAF, + 0x00, 0x03, 0x04, 0xB0, 0x00, 0x03, 0x04, 0xB1, 0x00, 0x03, 0x04, 0xB5, + 0x00, 0x03, 0x04, 0xB6, 0x00, 0x03, 0x04, 0xB7, 0x00, 0x03, 0x04, 0xB8, + 0x00, 0x03, 0x04, 0xB9, 0x00, 0x03, 0x04, 0xBA, 0x00, 0x03, 0x04, 0xBB, + 0x00, 0x03, 0x04, 0xBC, 0x00, 0x03, 0x04, 0xBD, 0x00, 0x03, 0x04, 0xBE, + 0x00, 0x03, 0x04, 0xBF, 0x00, 0x03, 0x04, 0xC0, 0x00, 0x03, 0x04, 0xC1, + 0x00, 0x03, 0x04, 0xC2, 0x00, 0x03, 0x04, 0xC3, 0x00, 0x03, 0x04, 0xC4, + 0x00, 0x03, 0x04, 0xC5, 0x00, 0x03, 0x04, 0xC6, 0x00, 0x03, 0x04, 0xE4, + 0x00, 0x03, 0x04, 0xE5, 0x00, 0x03, 0x04, 0xE6, 0x00, 0x03, 0x04, 0xEC, + 0x00, 0x03, 0x04, 0xED, 0x00, 0x03, 0x04, 0xEE, 0x00, 0x03, 0x04, 0xEF, + 0x00, 0x03, 0x04, 0xF0, 0x00, 0x03, 0x04, 0xF1, 0x00, 0x03, 0x04, 0xF6, + 0x00, 0x03, 0x04, 0xF7, 0x00, 0x03, 0x04, 0xF8, 0x00, 0x03, 0x04, 0xF9, + 0x00, 0x03, 0x04, 0xFA, 0x00, 0x03, 0x04, 0xFB, 0x00, 0x03, 0x04, 0xFC, + 0x00, 0x03, 0x04, 0xFD, 0x00, 0x03, 0x05, 0x02, 0x00, 0x03, 0x05, 0x07, + 0x00, 0x03, 0x05, 0x08, 0x00, 0x03, 0x05, 0x09, 0x00, 0x03, 0x05, 0x0F, + 0x00, 0x03, 0x05, 0x11, 0x00, 0x03, 0x05, 0x13, 0x00, 0x03, 0x05, 0x14, + 0x00, 0x03, 0x05, 0xBB, 0x00, 0x03, 0x07, 0xF2, 0x00, 0x03, 0x07, 0xF3, + 0x00, 0x03, 0x08, 0x6B, 0x00, 0x03, 0x08, 0x6C, 0x00, 0x03, 0x08, 0x6D, + 0x00, 0x03, 0x08, 0x6E, 0x00, 0x03, 0x08, 0x76, 0x00, 0x03, 0x08, 0x77, + 0x00, 0x03, 0x08, 0x78, 0x00, 0x03, 0x08, 0x79, 0x00, 0x03, 0x08, 0xBC, + 0x00, 0x03, 0x08, 0xC0, 0x00, 0x03, 0x08, 0xC3, 0x00, 0x03, 0x08, 0xC4, + 0x00, 0x03, 0x08, 0xC7, 0x00, 0x03, 0x08, 0xC9, 0x00, 0x03, 0x09, 0x08, + 0x00, 0x03, 0x09, 0x09, 0x00, 0x03, 0x09, 0x50, 0x00, 0x03, 0x09, 0x6E, + 0x00, 0x03, 0x09, 0xA4, 0x00, 0x03, 0x09, 0xA5, 0x00, 0x03, 0x09, 0xA7, + 0x00, 0x03, 0x09, 0xA8, 0x00, 0x03, 0x09, 0xA9, 0x00, 0x03, 0x09, 0xAB, + 0x00, 0x03, 0x09, 0xBF, 0x00, 0x03, 0x09, 0xC0, 0x00, 0x03, 0x09, 0xC5, + 0x00, 0x03, 0x09, 0xD3, 0x00, 0x03, 0x09, 0xD4, 0x00, 0x03, 0x00, 0xA7, + 0x02, 0x1B, 0x00, 0x0C, 0x02, 0xB1, 0x00, 0x38, 0x02, 0xB2, 0x00, 0x38, + 0x02, 0xB3, 0x00, 0x38, 0x02, 0xB7, 0x00, 0x38, 0x02, 0xB8, 0x00, 0x38, + 0x02, 0xBA, 0x00, 0x38, 0x02, 0xBB, 0x00, 0x38, 0x02, 0xBC, 0x00, 0x38, + 0x02, 0xBF, 0x00, 0x38, 0x02, 0xC0, 0x00, 0x38, 0x02, 0xC1, 0x00, 0x38, + 0x02, 0xC4, 0x00, 0x38, 0x02, 0xC5, 0x00, 0x38, 0x02, 0xC6, 0x00, 0x38, + 0x02, 0xCB, 0x00, 0x38, 0x02, 0xCD, 0x00, 0x38, 0x02, 0xFE, 0x00, 0x0C, + 0x02, 0xFF, 0x00, 0x0C, 0x03, 0x02, 0x00, 0x0C, 0x03, 0x03, 0x00, 0x0C, + 0x03, 0x04, 0x00, 0x0C, 0x03, 0x05, 0x00, 0x0C, 0x03, 0x06, 0x00, 0x0C, + 0x03, 0x07, 0x00, 0x0C, 0x03, 0x08, 0x00, 0x0C, 0x03, 0x09, 0x00, 0x0C, + 0x03, 0x0B, 0x00, 0x0C, 0x03, 0x0C, 0x00, 0x0C, 0x03, 0x0D, 0x00, 0x0C, + 0x03, 0x0E, 0x00, 0x0C, 0x03, 0x0F, 0x00, 0x0C, 0x03, 0x10, 0x00, 0x0C, + 0x03, 0x11, 0x00, 0x0C, 0x03, 0x12, 0x00, 0x0C, 0x03, 0x13, 0x00, 0x0C, + 0x03, 0x14, 0x00, 0x0C, 0x03, 0x4B, 0x00, 0x0C, 0x03, 0x4C, 0x00, 0x0C, + 0x03, 0x4E, 0x00, 0x0C, 0x03, 0x4F, 0x00, 0x0C, 0x03, 0x50, 0x00, 0x0C, + 0x03, 0x53, 0x00, 0x0C, 0x03, 0x54, 0x00, 0x0C, 0x03, 0x55, 0x00, 0x0C, + 0x03, 0x56, 0x00, 0x0C, 0x03, 0x5A, 0x00, 0x0C, 0x03, 0x5B, 0x00, 0x0C, + 0x03, 0x5C, 0x00, 0x0C, 0x03, 0x5D, 0x00, 0x0C, 0x03, 0x5E, 0x00, 0x0C, + 0x03, 0x5F, 0x00, 0x0C, 0x03, 0x60, 0x00, 0x0C, 0x03, 0x61, 0x00, 0x0C, + 0x03, 0x62, 0x00, 0x0C, 0x03, 0x63, 0x00, 0x0C, 0x03, 0x64, 0x00, 0x0C, + 0x03, 0xB2, 0x00, 0x0C, 0x04, 0x6E, 0x00, 0x0C, 0x04, 0x80, 0x00, 0x0C, + 0x04, 0x81, 0x00, 0x0C, 0x04, 0x82, 0x00, 0x0C, 0x04, 0x83, 0x00, 0x0C, + 0x04, 0x84, 0x00, 0x0C, 0x04, 0x85, 0x00, 0x0C, 0x04, 0x86, 0x00, 0x0C, + 0x04, 0x87, 0x00, 0x0C, 0x04, 0x88, 0x00, 0x0C, 0x04, 0x89, 0x00, 0x0C, + 0x04, 0x8A, 0x00, 0x0C, 0x04, 0x8B, 0x00, 0x0C, 0x04, 0x8C, 0x00, 0x0C, + 0x04, 0x8D, 0x00, 0x0C, 0x04, 0x8E, 0x00, 0x0C, 0x04, 0x8F, 0x00, 0x0C, + 0x04, 0x90, 0x00, 0x0C, 0x04, 0x91, 0x00, 0x0C, 0x04, 0x92, 0x00, 0x0C, + 0x04, 0x93, 0x00, 0x0C, 0x04, 0x94, 0x00, 0x0C, 0x04, 0x95, 0x00, 0x0C, + 0x04, 0x96, 0x00, 0x0C, 0x04, 0x97, 0x00, 0x0C, 0x04, 0xAE, 0x00, 0x0C, + 0x04, 0xAF, 0x00, 0x0C, 0x04, 0xB0, 0x00, 0x0C, 0x04, 0xB1, 0x00, 0x0C, + 0x04, 0xB5, 0x00, 0x0C, 0x04, 0xB6, 0x00, 0x0C, 0x04, 0xB7, 0x00, 0x0C, + 0x04, 0xB8, 0x00, 0x0C, 0x04, 0xB9, 0x00, 0x0C, 0x04, 0xBA, 0x00, 0x0C, + 0x04, 0xBB, 0x00, 0x0C, 0x04, 0xBC, 0x00, 0x0C, 0x04, 0xBD, 0x00, 0x0C, + 0x04, 0xBE, 0x00, 0x0C, 0x04, 0xBF, 0x00, 0x0C, 0x04, 0xC0, 0x00, 0x0C, + 0x04, 0xC1, 0x00, 0x0C, 0x04, 0xC2, 0x00, 0x0C, 0x04, 0xC3, 0x00, 0x0C, + 0x04, 0xC4, 0x00, 0x0C, 0x04, 0xC5, 0x00, 0x0C, 0x04, 0xC6, 0x00, 0x0C, + 0x04, 0xE4, 0x00, 0x0C, 0x04, 0xE5, 0x00, 0x0C, 0x04, 0xE6, 0x00, 0x0C, + 0x04, 0xEC, 0x00, 0x0C, 0x04, 0xED, 0x00, 0x0C, 0x04, 0xEE, 0x00, 0x0C, + 0x04, 0xEF, 0x00, 0x0C, 0x04, 0xF0, 0x00, 0x0C, 0x04, 0xF1, 0x00, 0x0C, + 0x04, 0xF6, 0x00, 0x0C, 0x04, 0xF7, 0x00, 0x0C, 0x04, 0xF8, 0x00, 0x0C, + 0x04, 0xF9, 0x00, 0x0C, 0x04, 0xFA, 0x00, 0x0C, 0x04, 0xFB, 0x00, 0x0C, + 0x04, 0xFC, 0x00, 0x0C, 0x04, 0xFD, 0x00, 0x0C, 0x05, 0x02, 0x00, 0x0C, + 0x05, 0x07, 0x00, 0x0C, 0x05, 0x08, 0x00, 0x0C, 0x05, 0x09, 0x00, 0x0C, + 0x05, 0x0B, 0x00, 0x38, 0x05, 0x0F, 0x00, 0x0C, 0x05, 0x11, 0x00, 0x0C, + 0x05, 0x13, 0x00, 0x0C, 0x05, 0x14, 0x00, 0x0C, 0x05, 0xBB, 0x00, 0x0C, + 0x07, 0xF2, 0x00, 0x0C, 0x07, 0xF3, 0x00, 0x0C, 0x08, 0x60, 0x00, 0x38, + 0x08, 0x63, 0x00, 0x38, 0x08, 0x64, 0x00, 0x38, 0x08, 0x6B, 0x00, 0x0C, + 0x08, 0x6C, 0x00, 0x0C, 0x08, 0x6D, 0x00, 0x0C, 0x08, 0x6E, 0x00, 0x0C, + 0x08, 0x76, 0x00, 0x0C, 0x08, 0x77, 0x00, 0x0C, 0x08, 0x78, 0x00, 0x0C, + 0x08, 0x79, 0x00, 0x0C, 0x08, 0x9C, 0x00, 0x38, 0x08, 0xBC, 0x00, 0x0C, + 0x08, 0xC0, 0x00, 0x0C, 0x08, 0xC3, 0x00, 0x0C, 0x08, 0xC4, 0x00, 0x0C, + 0x08, 0xC7, 0x00, 0x0C, 0x08, 0xC9, 0x00, 0x0C, 0x09, 0x08, 0x00, 0x0C, + 0x09, 0x09, 0x00, 0x0C, 0x09, 0x50, 0x00, 0x0C, 0x09, 0x6E, 0x00, 0x0C, + 0x09, 0xA4, 0x00, 0x0C, 0x09, 0xA5, 0x00, 0x0C, 0x09, 0xA7, 0x00, 0x0C, + 0x09, 0xA8, 0x00, 0x0C, 0x09, 0xA9, 0x00, 0x0C, 0x09, 0xAB, 0x00, 0x0C, + 0x09, 0xBF, 0x00, 0x0C, 0x09, 0xC0, 0x00, 0x0C, 0x09, 0xC5, 0x00, 0x0C, + 0x09, 0xD3, 0x00, 0x0C, 0x09, 0xD4, 0x00, 0x0C, 0x00, 0x96, 0x00, 0x02, + 0xFF, 0xAF, 0x00, 0x03, 0xFF, 0xAF, 0x00, 0x04, 0xFF, 0xAF, 0x00, 0x05, + 0xFF, 0xAF, 0x00, 0x06, 0xFF, 0xAF, 0x00, 0x07, 0xFF, 0xAF, 0x00, 0x08, + 0xFF, 0xAF, 0x00, 0x09, 0xFF, 0xAF, 0x00, 0x0A, 0xFF, 0xAF, 0x00, 0x0B, + 0xFF, 0xAF, 0x00, 0x0C, 0xFF, 0xAF, 0x00, 0x0D, 0xFF, 0xAF, 0x00, 0x0E, + 0xFF, 0xAF, 0x00, 0x0F, 0xFF, 0xAF, 0x00, 0x10, 0xFF, 0xAF, 0x00, 0x11, + 0xFF, 0xAF, 0x00, 0x12, 0xFF, 0xAF, 0x00, 0x13, 0xFF, 0xAF, 0x00, 0x14, + 0xFF, 0xAF, 0x00, 0x15, 0xFF, 0xAF, 0x00, 0x16, 0xFF, 0xAF, 0x00, 0x17, + 0xFF, 0xAF, 0x00, 0x18, 0xFF, 0xAF, 0x00, 0x19, 0xFF, 0xAF, 0x00, 0x1A, + 0xFF, 0xAF, 0x00, 0x1B, 0xFF, 0xAF, 0x00, 0x1C, 0xFF, 0xAF, 0x00, 0x1D, + 0xFF, 0xAF, 0x00, 0x1E, 0xFF, 0xAF, 0x00, 0x1F, 0xFF, 0xAF, 0x00, 0x20, + 0xFF, 0xAF, 0x00, 0x21, 0xFF, 0xAF, 0x00, 0x22, 0xFF, 0xAF, 0x00, 0x23, + 0xFF, 0xAF, 0x00, 0x24, 0xFF, 0xAF, 0x00, 0x25, 0xFF, 0xAF, 0x00, 0x26, + 0xFF, 0xAF, 0x00, 0x27, 0xFF, 0xAF, 0x00, 0x28, 0xFF, 0xAF, 0x00, 0x29, + 0xFF, 0xAF, 0x00, 0x2A, 0xFF, 0xAF, 0x00, 0x2B, 0xFF, 0xAF, 0x00, 0x2C, + 0xFF, 0xAF, 0x00, 0x2D, 0xFF, 0xAF, 0x00, 0x2E, 0xFF, 0xAF, 0x00, 0x2F, + 0xFF, 0xAF, 0x00, 0x30, 0xFF, 0xAF, 0x00, 0x31, 0xFF, 0xAF, 0x00, 0x32, + 0xFF, 0xAF, 0x00, 0x33, 0xFF, 0xAF, 0x00, 0x34, 0xFF, 0xAF, 0x00, 0x35, + 0xFF, 0xAF, 0x00, 0x36, 0xFF, 0xAF, 0x00, 0x37, 0xFF, 0xAF, 0x00, 0x38, + 0xFF, 0xAF, 0x00, 0x39, 0xFF, 0xAF, 0x00, 0x3A, 0xFF, 0xAF, 0x00, 0x3B, + 0xFF, 0xAF, 0x00, 0x3C, 0xFF, 0xAF, 0x00, 0x3D, 0xFF, 0xAF, 0x00, 0x3E, + 0xFF, 0xAF, 0x00, 0x3F, 0xFF, 0xAF, 0x00, 0x40, 0xFF, 0xAF, 0x01, 0x0A, + 0xFF, 0xAF, 0x01, 0x0B, 0xFF, 0xAF, 0x01, 0x0C, 0xFF, 0xAF, 0x01, 0x0D, + 0xFF, 0xAF, 0x01, 0x0E, 0xFF, 0xAF, 0x01, 0x15, 0xFF, 0x8C, 0x01, 0x9B, + 0xFF, 0x8C, 0x01, 0x9C, 0xFF, 0x8C, 0x01, 0x9D, 0xFF, 0x8C, 0x01, 0x9E, + 0xFF, 0x8C, 0x01, 0x9F, 0xFF, 0x8C, 0x01, 0xA0, 0xFF, 0x8C, 0x01, 0xA1, + 0xFF, 0x8C, 0x01, 0xA2, 0xFF, 0x8C, 0x01, 0xA3, 0xFF, 0x8C, 0x01, 0xA5, + 0xFF, 0x8C, 0x01, 0xA6, 0xFF, 0x8C, 0x01, 0xA7, 0xFF, 0x8C, 0x01, 0xC8, + 0xFF, 0x98, 0x01, 0xC9, 0xFF, 0x98, 0x01, 0xCA, 0xFF, 0x98, 0x01, 0xF0, + 0xFF, 0xAF, 0x01, 0xF1, 0xFF, 0xAF, 0x01, 0xF2, 0xFF, 0xAF, 0x01, 0xF3, + 0xFF, 0xAF, 0x01, 0xF4, 0xFF, 0xAF, 0x01, 0xF5, 0xFF, 0xAF, 0x01, 0xF6, + 0xFF, 0xAF, 0x01, 0xF7, 0xFF, 0xAF, 0x01, 0xF8, 0xFF, 0xAF, 0x01, 0xF9, + 0xFF, 0xAF, 0x01, 0xFA, 0xFF, 0xAF, 0x03, 0xD3, 0xFF, 0xAF, 0x03, 0xF6, + 0xFF, 0xAF, 0x04, 0x09, 0xFF, 0xAF, 0x04, 0x0F, 0xFF, 0x8C, 0x04, 0x29, + 0xFF, 0x98, 0x04, 0x37, 0xFF, 0x98, 0x04, 0x3A, 0xFF, 0x8C, 0x04, 0x3F, + 0xFF, 0x8C, 0x04, 0x42, 0xFF, 0x8C, 0x04, 0x51, 0xFF, 0x98, 0x04, 0x52, + 0xFF, 0x8C, 0x05, 0xB0, 0xFF, 0x98, 0x05, 0xC8, 0xFF, 0x8C, 0x05, 0xCC, + 0xFF, 0x8C, 0x05, 0xCE, 0xFF, 0x00, 0x05, 0xCF, 0xFF, 0x00, 0x05, 0xDB, + 0xFF, 0x2F, 0x05, 0xDC, 0xFF, 0x2F, 0x05, 0xDD, 0xFF, 0x2F, 0x07, 0x33, + 0xFF, 0xAF, 0x07, 0x37, 0xFF, 0xAF, 0x07, 0x3A, 0xFF, 0xAF, 0x07, 0x55, + 0xFF, 0x8C, 0x07, 0xF8, 0xFF, 0x2F, 0x07, 0xFB, 0xFF, 0x8C, 0x07, 0xFD, + 0xFF, 0x8C, 0x08, 0x01, 0xFF, 0x00, 0x08, 0x02, 0xFF, 0x00, 0x08, 0x03, + 0xFF, 0xAF, 0x08, 0x04, 0xFF, 0xAF, 0x08, 0x05, 0xFF, 0xAF, 0x08, 0x06, + 0xFF, 0xAF, 0x08, 0x07, 0xFF, 0xAF, 0x08, 0x08, 0xFF, 0xAF, 0x08, 0x31, + 0xFF, 0x8C, 0x08, 0x32, 0xFF, 0x8C, 0x08, 0x3C, 0xFF, 0x98, 0x08, 0x45, + 0xFF, 0xAF, 0x08, 0x46, 0xFF, 0xAF, 0x08, 0xCB, 0xFF, 0x2F, 0x08, 0xCC, + 0xFF, 0x2F, 0x08, 0xCF, 0xFF, 0x2F, 0x09, 0x0E, 0xFF, 0x00, 0x09, 0x0F, + 0xFF, 0x00, 0x09, 0x27, 0xFF, 0x8C, 0x09, 0x6D, 0xFF, 0xAF, 0x09, 0x83, + 0xFF, 0x8C, 0x09, 0x89, 0xFF, 0xAF, 0x09, 0x8F, 0xFF, 0x98, 0x09, 0x93, + 0xFF, 0x8C, 0x09, 0xAC, 0xFF, 0xAF, 0x09, 0xEB, 0xFF, 0x98, 0x09, 0xEC, + 0xFF, 0x98, 0x09, 0xED, 0xFF, 0x98, 0x09, 0xEE, 0xFF, 0x98, 0x00, 0xE6, + 0x02, 0x0B, 0xFF, 0xA8, 0x02, 0x13, 0xFF, 0x6A, 0x02, 0x1A, 0xFF, 0x7A, + 0x02, 0x23, 0xFF, 0x49, 0x02, 0x24, 0xFF, 0x49, 0x02, 0x25, 0xFF, 0x49, + 0x02, 0x26, 0xFF, 0x49, 0x02, 0x27, 0xFF, 0x49, 0x02, 0x28, 0xFF, 0x49, + 0x02, 0x29, 0xFF, 0x49, 0x02, 0x2A, 0xFF, 0x49, 0x02, 0x2B, 0xFF, 0x49, + 0x02, 0x2C, 0xFF, 0x49, 0x02, 0x2D, 0xFF, 0x49, 0x02, 0x2E, 0xFF, 0x49, + 0x02, 0x2F, 0xFF, 0x49, 0x02, 0x30, 0xFF, 0x49, 0x02, 0x31, 0xFF, 0x49, + 0x02, 0x32, 0xFF, 0x49, 0x02, 0x33, 0xFF, 0x49, 0x02, 0x34, 0xFF, 0x49, + 0x02, 0x35, 0xFF, 0x49, 0x02, 0x36, 0xFF, 0x49, 0x02, 0x37, 0xFF, 0x49, + 0x02, 0x38, 0xFF, 0x49, 0x02, 0x39, 0xFF, 0x49, 0x02, 0x3A, 0xFF, 0x49, + 0x02, 0x3B, 0xFF, 0x49, 0x02, 0x3C, 0xFF, 0x49, 0x02, 0x3D, 0xFF, 0x49, + 0x02, 0x3E, 0xFF, 0x49, 0x02, 0x3F, 0xFF, 0x49, 0x02, 0x40, 0xFF, 0x49, + 0x02, 0x41, 0xFF, 0x49, 0x02, 0x4A, 0xFF, 0x49, 0x02, 0x4B, 0xFF, 0x49, + 0x02, 0x4C, 0xFF, 0x49, 0x02, 0x4D, 0xFF, 0x49, 0x02, 0x4E, 0xFF, 0x49, + 0x02, 0x4F, 0xFF, 0x49, 0x02, 0x50, 0xFF, 0x49, 0x02, 0x51, 0xFF, 0x49, + 0x02, 0x52, 0xFF, 0x49, 0x02, 0x53, 0xFF, 0x49, 0x02, 0x54, 0xFF, 0x49, + 0x02, 0x55, 0xFF, 0x49, 0x02, 0x56, 0xFF, 0x49, 0x02, 0x57, 0xFF, 0x49, + 0x02, 0x58, 0xFF, 0x49, 0x02, 0x59, 0xFF, 0x49, 0x02, 0x5A, 0xFF, 0x49, + 0x02, 0x5B, 0xFF, 0x49, 0x02, 0x5C, 0xFF, 0x49, 0x02, 0x5D, 0xFF, 0x49, + 0x02, 0x5E, 0xFF, 0x49, 0x02, 0x5F, 0xFF, 0x49, 0x02, 0x60, 0xFF, 0x49, + 0x02, 0x61, 0xFF, 0x49, 0x02, 0x62, 0xFF, 0x49, 0x02, 0x63, 0xFF, 0x49, + 0x02, 0x64, 0xFF, 0x49, 0x02, 0x65, 0xFF, 0x49, 0x02, 0x66, 0xFF, 0x49, + 0x02, 0x67, 0xFF, 0x49, 0x02, 0x68, 0xFF, 0x49, 0x02, 0x69, 0xFF, 0x49, + 0x02, 0x6A, 0xFF, 0x49, 0x02, 0x6B, 0xFF, 0x49, 0x02, 0x6C, 0xFF, 0x49, + 0x02, 0x6D, 0xFF, 0x49, 0x02, 0x6E, 0xFF, 0x49, 0x02, 0x6F, 0xFF, 0x49, + 0x02, 0x70, 0xFF, 0x49, 0x02, 0x71, 0xFF, 0x49, 0x02, 0x72, 0xFF, 0x49, + 0x02, 0x73, 0xFF, 0x49, 0x02, 0x74, 0xFF, 0x49, 0x02, 0x75, 0xFF, 0x49, + 0x02, 0x76, 0xFF, 0x49, 0x02, 0x77, 0xFF, 0x49, 0x02, 0x78, 0xFF, 0x49, + 0x02, 0x79, 0xFF, 0x49, 0x02, 0x7A, 0xFF, 0x49, 0x02, 0x7B, 0xFF, 0x49, + 0x02, 0x7C, 0xFF, 0x49, 0x02, 0x7D, 0xFF, 0x49, 0x02, 0x7E, 0xFF, 0x49, + 0x02, 0x7F, 0xFF, 0x49, 0x02, 0x80, 0xFF, 0x49, 0x02, 0x81, 0xFF, 0x49, + 0x02, 0x82, 0xFF, 0x49, 0x02, 0x83, 0xFF, 0x49, 0x02, 0x84, 0xFF, 0x49, + 0x02, 0x85, 0xFF, 0x49, 0x02, 0x92, 0xFF, 0x49, 0x02, 0x93, 0xFF, 0x49, + 0x02, 0x94, 0xFF, 0x49, 0x02, 0x95, 0xFF, 0x49, 0x02, 0x96, 0xFF, 0x49, + 0x02, 0x97, 0xFF, 0x49, 0x02, 0x98, 0xFF, 0x49, 0x02, 0x99, 0xFF, 0x49, + 0x02, 0x9A, 0xFF, 0x49, 0x02, 0x9B, 0xFF, 0x49, 0x02, 0xBB, 0xFF, 0xC1, + 0x03, 0x16, 0xFF, 0x49, 0x03, 0x17, 0xFF, 0x49, 0x03, 0x18, 0xFF, 0x49, + 0x03, 0x19, 0xFF, 0x49, 0x03, 0x1A, 0xFF, 0x49, 0x03, 0x1B, 0xFF, 0x49, + 0x03, 0x1C, 0xFF, 0x49, 0x03, 0x1D, 0xFF, 0x49, 0x03, 0x1E, 0xFF, 0x49, + 0x03, 0x1F, 0xFF, 0x49, 0x03, 0x20, 0xFF, 0x49, 0x03, 0x21, 0xFF, 0x49, + 0x03, 0x22, 0xFF, 0x49, 0x03, 0x23, 0xFF, 0x49, 0x03, 0x24, 0xFF, 0x49, + 0x03, 0x25, 0xFF, 0x49, 0x03, 0x26, 0xFF, 0x49, 0x03, 0x27, 0xFF, 0x49, + 0x03, 0x28, 0xFF, 0x49, 0x03, 0x29, 0xFF, 0x49, 0x03, 0x2A, 0xFF, 0x49, + 0x03, 0x2B, 0xFF, 0x49, 0x03, 0x2C, 0xFF, 0x49, 0x03, 0x2D, 0xFF, 0x49, + 0x03, 0x2E, 0xFF, 0x49, 0x03, 0x2F, 0xFF, 0x49, 0x03, 0x30, 0xFF, 0x49, + 0x03, 0x31, 0xFF, 0x49, 0x03, 0x32, 0xFF, 0x49, 0x03, 0x33, 0xFF, 0x49, + 0x03, 0x34, 0xFF, 0x49, 0x03, 0x35, 0xFF, 0x49, 0x03, 0x36, 0xFF, 0x49, + 0x03, 0x37, 0xFF, 0x49, 0x03, 0x38, 0xFF, 0x49, 0x03, 0x39, 0xFF, 0x49, + 0x03, 0x3A, 0xFF, 0x49, 0x03, 0x3B, 0xFF, 0x49, 0x03, 0x3C, 0xFF, 0x49, + 0x03, 0x3D, 0xFF, 0x49, 0x03, 0x3E, 0xFF, 0x49, 0x03, 0x3F, 0xFF, 0x49, + 0x03, 0x40, 0xFF, 0x49, 0x03, 0x41, 0xFF, 0x49, 0x03, 0x42, 0xFF, 0x49, + 0x03, 0x43, 0xFF, 0x49, 0x03, 0x44, 0xFF, 0x49, 0x03, 0x45, 0xFF, 0x49, + 0x03, 0x46, 0xFF, 0x49, 0x03, 0x47, 0xFF, 0x49, 0x03, 0x48, 0xFF, 0x49, + 0x03, 0x49, 0xFF, 0x49, 0x03, 0x4A, 0xFF, 0x49, 0x03, 0x51, 0xFF, 0x49, + 0x03, 0x52, 0xFF, 0x49, 0x04, 0x53, 0xFF, 0x49, 0x04, 0x54, 0xFF, 0x49, + 0x04, 0x55, 0xFF, 0x49, 0x04, 0x56, 0xFF, 0x49, 0x04, 0x57, 0xFF, 0x49, + 0x04, 0x58, 0xFF, 0x49, 0x04, 0x59, 0xFF, 0x49, 0x04, 0x5A, 0xFF, 0x49, + 0x04, 0x5B, 0xFF, 0x49, 0x04, 0x5C, 0xFF, 0x49, 0x04, 0x5D, 0xFF, 0x49, + 0x04, 0x5E, 0xFF, 0x49, 0x04, 0x5F, 0xFF, 0x49, 0x04, 0x60, 0xFF, 0x49, + 0x04, 0x61, 0xFF, 0x49, 0x04, 0x62, 0xFF, 0x49, 0x04, 0x63, 0xFF, 0x49, + 0x04, 0x64, 0xFF, 0x49, 0x04, 0x65, 0xFF, 0x49, 0x04, 0x66, 0xFF, 0x49, + 0x04, 0x67, 0xFF, 0x49, 0x04, 0x68, 0xFF, 0x49, 0x04, 0x69, 0xFF, 0x49, + 0x04, 0x6A, 0xFF, 0x49, 0x04, 0x6B, 0xFF, 0x49, 0x04, 0x6C, 0xFF, 0x49, + 0x04, 0x6D, 0xFF, 0x49, 0x04, 0xB3, 0xFF, 0x49, 0x04, 0xC7, 0xFF, 0x49, + 0x04, 0xC8, 0xFF, 0x49, 0x04, 0xEB, 0xFF, 0x49, 0x04, 0xFF, 0xFF, 0x49, + 0x05, 0x10, 0xFF, 0x49, 0x05, 0x15, 0xFF, 0x49, 0x05, 0x16, 0xFF, 0x49, + 0x05, 0x1C, 0xFF, 0x49, 0x08, 0x54, 0xFF, 0x49, 0x08, 0x55, 0xFF, 0x49, + 0x08, 0x56, 0xFF, 0x49, 0x08, 0x57, 0xFF, 0x49, 0x08, 0x58, 0xFF, 0x49, + 0x08, 0x59, 0xFF, 0x49, 0x08, 0x5A, 0xFF, 0x49, 0x08, 0x5C, 0xFF, 0x49, + 0x08, 0x6F, 0xFF, 0x49, 0x08, 0x70, 0xFF, 0x49, 0x08, 0x71, 0xFF, 0x49, + 0x08, 0x72, 0xFF, 0x49, 0x08, 0x73, 0xFF, 0x49, 0x08, 0x74, 0xFF, 0x49, + 0x08, 0x75, 0xFF, 0x49, 0x08, 0x96, 0xFF, 0x49, 0x08, 0x97, 0xFF, 0x49, + 0x08, 0x98, 0xFF, 0x49, 0x08, 0x99, 0xFF, 0x49, 0x08, 0x9A, 0xFF, 0x49, + 0x08, 0x9B, 0xFF, 0x49, 0x08, 0xB9, 0xFF, 0x49, 0x08, 0xBD, 0xFF, 0x49, + 0x08, 0xBE, 0xFF, 0x49, 0x09, 0x3E, 0xFF, 0x49, 0x09, 0x3F, 0xFF, 0x49, + 0x09, 0xB4, 0xFF, 0x49, 0x09, 0xBB, 0xFF, 0x49, 0x09, 0xBC, 0xFF, 0x49, + 0x09, 0xC1, 0xFF, 0x49, 0x09, 0xC2, 0xFF, 0x49, 0x09, 0xC3, 0xFF, 0x49, + 0x09, 0xC7, 0xFF, 0x49, 0x09, 0xDB, 0xFF, 0x49, 0x00, 0xE6, 0x00, 0x49, + 0xFF, 0xAF, 0x00, 0x4A, 0xFF, 0xAF, 0x00, 0x4B, 0xFF, 0xAF, 0x00, 0x4C, + 0xFF, 0xAF, 0x00, 0x4D, 0xFF, 0xAF, 0x00, 0x4E, 0xFF, 0xAF, 0x00, 0x4F, + 0xFF, 0xAF, 0x00, 0x50, 0xFF, 0xAF, 0x00, 0x51, 0xFF, 0xAF, 0x00, 0x52, + 0xFF, 0xAF, 0x00, 0x53, 0xFF, 0xAF, 0x00, 0x8A, 0x00, 0xC5, 0x00, 0x8D, + 0xFF, 0xAF, 0x00, 0x8E, 0xFF, 0xAF, 0x00, 0x8F, 0xFF, 0xAF, 0x00, 0x90, + 0xFF, 0xAF, 0x00, 0x91, 0xFF, 0xAF, 0x00, 0x92, 0xFF, 0xAF, 0x00, 0x93, + 0xFF, 0xAF, 0x00, 0x94, 0xFF, 0xAF, 0x00, 0x95, 0xFF, 0xAF, 0x00, 0x96, + 0xFF, 0xAF, 0x00, 0x97, 0xFF, 0xAF, 0x01, 0x15, 0xFF, 0x8C, 0x01, 0x36, + 0x00, 0xC5, 0x01, 0x41, 0xFF, 0xAF, 0x01, 0x42, 0xFF, 0xAF, 0x01, 0x43, + 0xFF, 0xAF, 0x01, 0x44, 0xFF, 0xAF, 0x01, 0x45, 0xFF, 0xAF, 0x01, 0x46, + 0xFF, 0xAF, 0x01, 0x47, 0xFF, 0xAF, 0x01, 0x48, 0xFF, 0xAF, 0x01, 0x49, + 0xFF, 0xAF, 0x01, 0x4A, 0xFF, 0xAF, 0x01, 0x4B, 0xFF, 0xAF, 0x01, 0x4C, + 0xFF, 0xAF, 0x01, 0x4D, 0xFF, 0xAF, 0x01, 0x4E, 0xFF, 0xAF, 0x01, 0x4F, + 0xFF, 0xAF, 0x01, 0x50, 0xFF, 0xAF, 0x01, 0x51, 0xFF, 0xAF, 0x01, 0x52, + 0xFF, 0xAF, 0x01, 0x53, 0xFF, 0xAF, 0x01, 0x54, 0xFF, 0xAF, 0x01, 0x55, + 0xFF, 0xAF, 0x01, 0x56, 0xFF, 0xAF, 0x01, 0x57, 0xFF, 0xAF, 0x01, 0x58, + 0xFF, 0xAF, 0x01, 0x59, 0xFF, 0xAF, 0x01, 0x5A, 0xFF, 0xAF, 0x01, 0x5B, + 0xFF, 0xAF, 0x01, 0x5C, 0xFF, 0xAF, 0x01, 0x5D, 0xFF, 0xAF, 0x01, 0x5E, + 0xFF, 0xAF, 0x01, 0x5F, 0xFF, 0xAF, 0x01, 0x60, 0xFF, 0xAF, 0x01, 0x61, + 0xFF, 0xAF, 0x01, 0x62, 0xFF, 0xAF, 0x01, 0x63, 0xFF, 0xAF, 0x01, 0x64, + 0xFF, 0xAF, 0x01, 0x65, 0xFF, 0xAF, 0x01, 0x66, 0xFF, 0xAF, 0x01, 0x67, + 0xFF, 0xAF, 0x01, 0x68, 0xFF, 0xAF, 0x01, 0x69, 0xFF, 0xAF, 0x01, 0x6A, + 0xFF, 0xAF, 0x01, 0x6B, 0xFF, 0xAF, 0x01, 0x6C, 0xFF, 0xAF, 0x01, 0x6D, + 0xFF, 0xAF, 0x01, 0x6E, 0xFF, 0xAF, 0x01, 0x6F, 0xFF, 0xAF, 0x01, 0x70, + 0xFF, 0xAF, 0x01, 0x71, 0xFF, 0xAF, 0x01, 0x72, 0xFF, 0xAF, 0x01, 0x73, + 0xFF, 0xAF, 0x01, 0x74, 0xFF, 0xAF, 0x01, 0x75, 0xFF, 0xAF, 0x01, 0x76, + 0xFF, 0xAF, 0x01, 0x7E, 0xFF, 0xAF, 0x01, 0x7F, 0xFF, 0xAF, 0x01, 0x9B, + 0xFF, 0x8C, 0x01, 0x9C, 0xFF, 0x8C, 0x01, 0x9D, 0xFF, 0x8C, 0x01, 0x9E, + 0xFF, 0x8C, 0x01, 0x9F, 0xFF, 0x8C, 0x01, 0xA0, 0xFF, 0x8C, 0x01, 0xA1, + 0xFF, 0x8C, 0x01, 0xA2, 0xFF, 0x8C, 0x01, 0xA3, 0xFF, 0x8C, 0x01, 0xA5, + 0xFF, 0x8C, 0x01, 0xA6, 0xFF, 0x8C, 0x01, 0xA7, 0xFF, 0x8C, 0x01, 0xA8, + 0xFF, 0xAF, 0x01, 0xA9, 0xFF, 0xAF, 0x01, 0xAA, 0xFF, 0xAF, 0x01, 0xAB, + 0xFF, 0xAF, 0x01, 0xAC, 0xFF, 0xAF, 0x01, 0xAD, 0xFF, 0xAF, 0x01, 0xAE, + 0xFF, 0xAF, 0x01, 0xAF, 0xFF, 0xAF, 0x01, 0xB0, 0xFF, 0xAF, 0x01, 0xB1, + 0xFF, 0xAF, 0x01, 0xB2, 0xFF, 0xAF, 0x01, 0xB3, 0xFF, 0xAF, 0x01, 0xB4, + 0xFF, 0xAF, 0x01, 0xB5, 0xFF, 0xAF, 0x01, 0xB6, 0xFF, 0xAF, 0x01, 0xB7, + 0xFF, 0xAF, 0x01, 0xB8, 0xFF, 0xAF, 0x01, 0xB9, 0xFF, 0xAF, 0x01, 0xBA, + 0xFF, 0xAF, 0x01, 0xBB, 0xFF, 0xAF, 0x01, 0xBC, 0xFF, 0xAF, 0x01, 0xBD, + 0xFF, 0xAF, 0x01, 0xBE, 0xFF, 0xAF, 0x01, 0xBF, 0xFF, 0xAF, 0x01, 0xC0, + 0xFF, 0xAF, 0x01, 0xC1, 0xFF, 0xAF, 0x01, 0xC2, 0xFF, 0xAF, 0x01, 0xC3, + 0xFF, 0xAF, 0x01, 0xC4, 0xFF, 0xAF, 0x01, 0xC5, 0xFF, 0xAF, 0x01, 0xC6, + 0xFF, 0xAF, 0x01, 0xC7, 0xFF, 0xAF, 0x01, 0xC8, 0xFF, 0x5E, 0x01, 0xC9, + 0xFF, 0x5E, 0x01, 0xCA, 0xFF, 0x5E, 0x02, 0xC7, 0x00, 0xC5, 0x02, 0xC8, + 0x00, 0xC5, 0x02, 0xCF, 0x00, 0xC5, 0x02, 0xD2, 0x00, 0xC5, 0x02, 0xD3, + 0x00, 0xC5, 0x02, 0xD4, 0x00, 0xC5, 0x02, 0xD5, 0x00, 0xC5, 0x03, 0x0A, + 0x00, 0xC5, 0x03, 0xD2, 0xFF, 0x5E, 0x03, 0xD4, 0xFF, 0x5E, 0x03, 0xD5, + 0xFF, 0x5E, 0x03, 0xE3, 0xFF, 0x5E, 0x03, 0xE4, 0xFF, 0x5E, 0x03, 0xE5, + 0xFF, 0x5E, 0x03, 0xE6, 0xFF, 0x5E, 0x03, 0xE7, 0xFF, 0x5E, 0x03, 0xE8, + 0xFF, 0x5E, 0x03, 0xE9, 0xFF, 0x5E, 0x03, 0xEA, 0xFF, 0x5E, 0x03, 0xEB, + 0xFF, 0x5E, 0x03, 0xEC, 0xFF, 0x5E, 0x03, 0xED, 0xFF, 0x5E, 0x03, 0xEE, + 0xFF, 0x5E, 0x03, 0xEF, 0xFF, 0x5E, 0x03, 0xF0, 0xFF, 0x5E, 0x03, 0xF1, + 0xFF, 0x5E, 0x03, 0xF2, 0xFF, 0x5E, 0x03, 0xF3, 0xFF, 0x5E, 0x03, 0xF4, + 0xFF, 0x5E, 0x03, 0xF5, 0xFF, 0x5E, 0x03, 0xFA, 0xFF, 0x5E, 0x03, 0xFB, + 0xFF, 0x5E, 0x04, 0x0A, 0xFF, 0xAF, 0x04, 0x0E, 0xFF, 0xAF, 0x04, 0x0F, + 0xFF, 0x3B, 0x04, 0x29, 0xFF, 0x5E, 0x04, 0x2D, 0x00, 0x74, 0x04, 0x30, + 0xFF, 0xA3, 0x04, 0x34, 0x00, 0x74, 0x04, 0x35, 0xFF, 0xAF, 0x04, 0x37, + 0xFF, 0x5E, 0x04, 0x38, 0xFF, 0xAF, 0x04, 0x3A, 0xFF, 0x8C, 0x04, 0x3B, + 0xFF, 0x23, 0x04, 0x3F, 0xFF, 0x8C, 0x04, 0x42, 0xFF, 0x98, 0x04, 0x45, + 0x00, 0x74, 0x04, 0x47, 0xFF, 0xAF, 0x04, 0x4C, 0xFF, 0xAF, 0x04, 0x51, + 0xFF, 0x5E, 0x04, 0x52, 0xFF, 0x8C, 0x04, 0x6F, 0xFF, 0x8C, 0x04, 0xE2, + 0xFF, 0x5E, 0x04, 0xE3, 0xFF, 0xA3, 0x05, 0x1A, 0xFF, 0x5E, 0x07, 0xE8, + 0xFF, 0xAF, 0x08, 0x0B, 0xFF, 0xAF, 0x08, 0x13, 0xFF, 0xAF, 0x08, 0x22, + 0xFF, 0xAF, 0x08, 0x23, 0xFF, 0xAF, 0x08, 0x24, 0xFF, 0xAF, 0x08, 0x25, + 0xFF, 0xAF, 0x08, 0x26, 0xFF, 0xAF, 0x08, 0x27, 0xFF, 0xAF, 0x08, 0x28, + 0xFF, 0xAF, 0x08, 0x31, 0xFF, 0x8C, 0x08, 0x32, 0xFF, 0x8C, 0x08, 0x33, + 0xFF, 0xAF, 0x08, 0x34, 0xFF, 0xAF, 0x08, 0x35, 0xFF, 0xAF, 0x08, 0x36, + 0xFF, 0xAF, 0x08, 0x37, 0xFF, 0xAF, 0x08, 0x38, 0xFF, 0xAF, 0x08, 0x39, + 0xFF, 0xAF, 0x08, 0x3A, 0xFF, 0xAF, 0x08, 0x3B, 0xFF, 0xAF, 0x08, 0x3C, + 0xFF, 0x5E, 0x08, 0x65, 0x00, 0xC5, 0x08, 0x8B, 0xFF, 0x5E, 0x08, 0x91, + 0xFF, 0x5E, 0x08, 0x92, 0xFF, 0x5E, 0x08, 0x93, 0xFF, 0x5E, 0x08, 0xAF, + 0xFF, 0xAF, 0x08, 0xB3, 0xFF, 0xAF, 0x08, 0xFE, 0xFF, 0xAF, 0x09, 0x27, + 0xFF, 0x8C, 0x09, 0x3B, 0x00, 0xC5, 0x09, 0x82, 0xFF, 0xAF, 0x09, 0x83, + 0xFF, 0x8C, 0x09, 0x8F, 0xFF, 0x5E, 0x09, 0x90, 0xFF, 0xAF, 0x09, 0x92, + 0xFF, 0xAF, 0x09, 0x93, 0xFF, 0x8C, 0x09, 0x9B, 0xFF, 0xAF, 0x09, 0xB2, + 0xFF, 0x5E, 0x09, 0xB6, 0xFF, 0x5E, 0x09, 0xB7, 0xFF, 0x5E, 0x09, 0xCF, + 0xFF, 0x5E, 0x09, 0xEB, 0xFF, 0x5E, 0x09, 0xEC, 0xFF, 0x5E, 0x09, 0xED, + 0xFF, 0x5E, 0x09, 0xEE, 0xFF, 0x5E, 0x00, 0xE8, 0x02, 0x1B, 0xFF, 0xBB, + 0x02, 0xA5, 0xFF, 0x8C, 0x02, 0xFE, 0xFF, 0xBB, 0x02, 0xFF, 0xFF, 0xBB, + 0x03, 0x00, 0xFF, 0x8C, 0x03, 0x01, 0xFF, 0x8C, 0x03, 0x02, 0xFF, 0xBB, + 0x03, 0x03, 0xFF, 0xBB, 0x03, 0x04, 0xFF, 0xBB, 0x03, 0x05, 0xFF, 0xBB, + 0x03, 0x06, 0xFF, 0xBB, 0x03, 0x07, 0xFF, 0xBB, 0x03, 0x08, 0xFF, 0xBB, + 0x03, 0x09, 0xFF, 0xBB, 0x03, 0x0B, 0xFF, 0xBB, 0x03, 0x0C, 0xFF, 0xBB, + 0x03, 0x0D, 0xFF, 0xBB, 0x03, 0x0E, 0xFF, 0xBB, 0x03, 0x0F, 0xFF, 0xBB, + 0x03, 0x10, 0xFF, 0xBB, 0x03, 0x11, 0xFF, 0xBB, 0x03, 0x12, 0xFF, 0xBB, + 0x03, 0x13, 0xFF, 0xBB, 0x03, 0x14, 0xFF, 0xBB, 0x03, 0x4B, 0xFF, 0xBB, + 0x03, 0x4C, 0xFF, 0xBB, 0x03, 0x4E, 0xFF, 0xBB, 0x03, 0x4F, 0xFF, 0xBB, + 0x03, 0x50, 0xFF, 0xBB, 0x03, 0x53, 0xFF, 0xBB, 0x03, 0x54, 0xFF, 0xBB, + 0x03, 0x55, 0xFF, 0xBB, 0x03, 0x56, 0xFF, 0xBB, 0x03, 0x5A, 0xFF, 0xBB, + 0x03, 0x5B, 0xFF, 0xBB, 0x03, 0x5C, 0xFF, 0xBB, 0x03, 0x5D, 0xFF, 0xBB, + 0x03, 0x5E, 0xFF, 0xBB, 0x03, 0x5F, 0xFF, 0xBB, 0x03, 0x60, 0xFF, 0xBB, + 0x03, 0x61, 0xFF, 0xBB, 0x03, 0x62, 0xFF, 0xBB, 0x03, 0x63, 0xFF, 0xBB, + 0x03, 0x64, 0xFF, 0xBB, 0x03, 0x91, 0xFF, 0x8C, 0x03, 0x92, 0xFF, 0x8C, + 0x03, 0x93, 0xFF, 0x8C, 0x03, 0x94, 0xFF, 0x8C, 0x03, 0x95, 0xFF, 0x8C, + 0x03, 0x96, 0xFF, 0x8C, 0x03, 0x97, 0xFF, 0x8C, 0x03, 0x98, 0xFF, 0x8C, + 0x03, 0x99, 0xFF, 0x8C, 0x03, 0x9A, 0xFF, 0x8C, 0x03, 0x9B, 0xFF, 0x8C, + 0x03, 0x9C, 0xFF, 0x8C, 0x03, 0x9D, 0xFF, 0x8C, 0x03, 0x9E, 0xFF, 0x8C, + 0x03, 0x9F, 0xFF, 0x8C, 0x03, 0xA0, 0xFF, 0x8C, 0x03, 0xA1, 0xFF, 0x8C, + 0x03, 0xA2, 0xFF, 0x8C, 0x03, 0xA3, 0xFF, 0x8C, 0x03, 0xA4, 0xFF, 0x8C, + 0x03, 0xA5, 0xFF, 0x8C, 0x03, 0xA6, 0xFF, 0x8C, 0x03, 0xA7, 0xFF, 0x8C, + 0x03, 0xA8, 0xFF, 0x8C, 0x03, 0xA9, 0xFF, 0x8C, 0x03, 0xAA, 0xFF, 0x8C, + 0x03, 0xAB, 0xFF, 0x8C, 0x03, 0xAC, 0xFF, 0x8C, 0x03, 0xAD, 0xFF, 0x8C, + 0x03, 0xAE, 0xFF, 0x8C, 0x03, 0xAF, 0xFF, 0x8C, 0x03, 0xB0, 0xFF, 0x8C, + 0x03, 0xB1, 0xFF, 0x8C, 0x03, 0xB2, 0xFF, 0xBB, 0x04, 0x6E, 0xFF, 0xBB, + 0x04, 0x80, 0xFF, 0xBB, 0x04, 0x81, 0xFF, 0xBB, 0x04, 0x82, 0xFF, 0xBB, + 0x04, 0x83, 0xFF, 0xBB, 0x04, 0x84, 0xFF, 0xBB, 0x04, 0x85, 0xFF, 0xBB, + 0x04, 0x86, 0xFF, 0xBB, 0x04, 0x87, 0xFF, 0xBB, 0x04, 0x88, 0xFF, 0xBB, + 0x04, 0x89, 0xFF, 0xBB, 0x04, 0x8A, 0xFF, 0xBB, 0x04, 0x8B, 0xFF, 0xBB, + 0x04, 0x8C, 0xFF, 0xBB, 0x04, 0x8D, 0xFF, 0xBB, 0x04, 0x8E, 0xFF, 0xBB, + 0x04, 0x8F, 0xFF, 0xBB, 0x04, 0x90, 0xFF, 0xBB, 0x04, 0x91, 0xFF, 0xBB, + 0x04, 0x92, 0xFF, 0xBB, 0x04, 0x93, 0xFF, 0xBB, 0x04, 0x94, 0xFF, 0xBB, + 0x04, 0x95, 0xFF, 0xBB, 0x04, 0x96, 0xFF, 0xBB, 0x04, 0x97, 0xFF, 0xBB, + 0x04, 0xAC, 0xFF, 0xBB, 0x04, 0xAE, 0xFF, 0xBB, 0x04, 0xAF, 0xFF, 0xBB, + 0x04, 0xB0, 0xFF, 0xBB, 0x04, 0xB1, 0xFF, 0xBB, 0x04, 0xB5, 0xFF, 0xBB, + 0x04, 0xB6, 0xFF, 0xBB, 0x04, 0xB7, 0xFF, 0xBB, 0x04, 0xB8, 0xFF, 0xBB, + 0x04, 0xB9, 0xFF, 0xBB, 0x04, 0xBA, 0xFF, 0xBB, 0x04, 0xBB, 0xFF, 0xBB, + 0x04, 0xBC, 0xFF, 0xBB, 0x04, 0xBD, 0xFF, 0xBB, 0x04, 0xBE, 0xFF, 0xBB, + 0x04, 0xBF, 0xFF, 0xBB, 0x04, 0xC0, 0xFF, 0xBB, 0x04, 0xC1, 0xFF, 0xBB, + 0x04, 0xC2, 0xFF, 0xBB, 0x04, 0xC3, 0xFF, 0xBB, 0x04, 0xC4, 0xFF, 0xBB, + 0x04, 0xC5, 0xFF, 0xBB, 0x04, 0xC6, 0xFF, 0xBB, 0x04, 0xE3, 0xFF, 0xBB, + 0x04, 0xE4, 0xFF, 0xBB, 0x04, 0xE5, 0xFF, 0xBB, 0x04, 0xE6, 0xFF, 0xBB, + 0x04, 0xEC, 0xFF, 0xBB, 0x04, 0xED, 0xFF, 0xBB, 0x04, 0xEE, 0xFF, 0xBB, + 0x04, 0xEF, 0xFF, 0xBB, 0x04, 0xF0, 0xFF, 0xBB, 0x04, 0xF1, 0xFF, 0xBB, + 0x04, 0xF6, 0xFF, 0xBB, 0x04, 0xF7, 0xFF, 0xBB, 0x04, 0xF8, 0xFF, 0xBB, + 0x04, 0xF9, 0xFF, 0xBB, 0x04, 0xFA, 0xFF, 0xBB, 0x04, 0xFB, 0xFF, 0xBB, + 0x04, 0xFC, 0xFF, 0xBB, 0x04, 0xFD, 0xFF, 0xBB, 0x05, 0x02, 0xFF, 0xBB, + 0x05, 0x03, 0xFF, 0x8C, 0x05, 0x07, 0xFF, 0xBB, 0x05, 0x08, 0xFF, 0xBB, + 0x05, 0x09, 0xFF, 0xBB, 0x05, 0x0F, 0xFF, 0xBB, 0x05, 0x11, 0xFF, 0xBB, + 0x05, 0x13, 0xFF, 0xBB, 0x05, 0x14, 0xFF, 0xBB, 0x05, 0x3B, 0xFF, 0xBB, + 0x05, 0x40, 0xFF, 0x75, 0x05, 0x43, 0xFF, 0xBB, 0x05, 0x47, 0xFF, 0xBB, + 0x05, 0x4A, 0xFF, 0x75, 0x05, 0x8F, 0xFF, 0xBB, 0x05, 0xAD, 0xFF, 0x75, + 0x05, 0xBB, 0xFF, 0xBB, 0x05, 0xCE, 0xFF, 0x0C, 0x05, 0xCF, 0xFF, 0x0C, + 0x05, 0xDB, 0xFF, 0x3B, 0x05, 0xDC, 0xFF, 0x3B, 0x05, 0xDD, 0xFF, 0x3B, + 0x05, 0xDF, 0xFF, 0x80, 0x05, 0xE0, 0xFF, 0x80, 0x05, 0xE1, 0xFF, 0x80, + 0x05, 0xE2, 0xFF, 0x80, 0x05, 0xE6, 0xFF, 0x9E, 0x05, 0xE7, 0xFF, 0xD8, + 0x05, 0xE8, 0xFF, 0x9E, 0x05, 0xE9, 0xFF, 0xD8, 0x05, 0xEA, 0xFF, 0x46, + 0x06, 0x05, 0xFF, 0x2F, 0x07, 0xF2, 0xFF, 0xBB, 0x07, 0xF3, 0xFF, 0xBB, + 0x07, 0xF8, 0xFF, 0x3B, 0x07, 0xF9, 0xFF, 0x80, 0x07, 0xFA, 0xFF, 0x80, + 0x08, 0x01, 0xFF, 0x0C, 0x08, 0x02, 0xFF, 0x0C, 0x08, 0x6B, 0xFF, 0xBB, + 0x08, 0x6C, 0xFF, 0xBB, 0x08, 0x6D, 0xFF, 0xBB, 0x08, 0x6E, 0xFF, 0xBB, + 0x08, 0x76, 0xFF, 0xBB, 0x08, 0x77, 0xFF, 0xBB, 0x08, 0x78, 0xFF, 0xBB, + 0x08, 0x79, 0xFF, 0xBB, 0x08, 0x82, 0xFF, 0x8C, 0x08, 0x83, 0xFF, 0x8C, + 0x08, 0x84, 0xFF, 0x8C, 0x08, 0x85, 0xFF, 0x8C, 0x08, 0x86, 0xFF, 0x8C, + 0x08, 0x87, 0xFF, 0x8C, 0x08, 0x88, 0xFF, 0x8C, 0x08, 0x89, 0xFF, 0x8C, + 0x08, 0x8A, 0xFF, 0x8C, 0x08, 0xBC, 0xFF, 0xBB, 0x08, 0xC0, 0xFF, 0xBB, + 0x08, 0xC3, 0xFF, 0xBB, 0x08, 0xC4, 0xFF, 0xBB, 0x08, 0xC7, 0xFF, 0xBB, + 0x08, 0xC9, 0xFF, 0xBB, 0x08, 0xCB, 0xFF, 0x3B, 0x08, 0xCC, 0xFF, 0x3B, + 0x08, 0xCD, 0xFF, 0x80, 0x08, 0xCE, 0xFF, 0x80, 0x08, 0xCF, 0xFF, 0x3B, + 0x08, 0xD3, 0xFF, 0x80, 0x08, 0xD5, 0xFF, 0x80, 0x09, 0x08, 0xFF, 0xBB, + 0x09, 0x09, 0xFF, 0xBB, 0x09, 0x0E, 0xFF, 0x0C, 0x09, 0x0F, 0xFF, 0x0C, + 0x09, 0x50, 0xFF, 0xBB, 0x09, 0x6E, 0xFF, 0xBB, 0x09, 0xA4, 0xFF, 0xBB, + 0x09, 0xA5, 0xFF, 0xBB, 0x09, 0xA7, 0xFF, 0xBB, 0x09, 0xA8, 0xFF, 0xBB, + 0x09, 0xA9, 0xFF, 0xBB, 0x09, 0xAB, 0xFF, 0xBB, 0x09, 0xBF, 0xFF, 0xBB, + 0x09, 0xC0, 0xFF, 0xBB, 0x09, 0xC5, 0xFF, 0xBB, 0x09, 0xD3, 0xFF, 0xBB, + 0x09, 0xD4, 0xFF, 0xBB, 0x0A, 0x15, 0xFF, 0x80, 0x0B, 0x42, 0xFF, 0x8C, + 0x00, 0x02, 0x00, 0xB2, 0x00, 0x02, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x52, + 0x00, 0x52, 0x00, 0x3B, 0x00, 0x54, 0x00, 0x5C, 0x00, 0x3C, 0x00, 0x7A, + 0x00, 0x7A, 0x00, 0x45, 0x00, 0x89, 0x00, 0x8C, 0x00, 0x46, 0x00, 0xA1, + 0x00, 0xC6, 0x00, 0x4A, 0x00, 0xC9, 0x00, 0xCC, 0x00, 0x70, 0x00, 0xD1, + 0x00, 0xD3, 0x00, 0x74, 0x00, 0xD6, 0x00, 0xDA, 0x00, 0x77, 0x00, 0xDC, + 0x00, 0xE3, 0x00, 0x7C, 0x00, 0xE6, 0x00, 0xE8, 0x00, 0x84, 0x00, 0xEA, + 0x00, 0xEA, 0x00, 0x87, 0x01, 0x09, 0x01, 0x09, 0x00, 0x88, 0x01, 0x0F, + 0x01, 0x44, 0x00, 0x89, 0x01, 0x46, 0x01, 0x75, 0x00, 0xBF, 0x01, 0x7E, + 0x01, 0x7E, 0x00, 0xEF, 0x01, 0x9B, 0x01, 0xA7, 0x00, 0xF0, 0x01, 0xCB, + 0x01, 0xD4, 0x00, 0xFD, 0x01, 0xD6, 0x01, 0xEF, 0x01, 0x07, 0x01, 0xFB, + 0x02, 0x1A, 0x01, 0x21, 0x02, 0x1C, 0x02, 0x1E, 0x01, 0x41, 0x02, 0x23, + 0x02, 0x56, 0x01, 0x44, 0x02, 0x58, 0x02, 0x59, 0x01, 0x78, 0x02, 0x5B, + 0x02, 0x60, 0x01, 0x7A, 0x02, 0x66, 0x02, 0x85, 0x01, 0x80, 0x02, 0x87, + 0x02, 0x89, 0x01, 0xA0, 0x02, 0x8B, 0x02, 0x8C, 0x01, 0xA3, 0x02, 0x90, + 0x02, 0x91, 0x01, 0xA5, 0x02, 0x9E, 0x02, 0xA5, 0x01, 0xA7, 0x02, 0xA8, + 0x02, 0xCD, 0x01, 0xAF, 0x02, 0xCF, 0x02, 0xD6, 0x01, 0xD5, 0x02, 0xDE, + 0x02, 0xDE, 0x01, 0xDD, 0x02, 0xE0, 0x02, 0xE3, 0x01, 0xDE, 0x02, 0xE5, + 0x02, 0xF3, 0x01, 0xE2, 0x02, 0xF5, 0x02, 0xFC, 0x01, 0xF1, 0x02, 0xFE, + 0x03, 0x00, 0x01, 0xF9, 0x03, 0x02, 0x03, 0x05, 0x01, 0xFC, 0x03, 0x09, + 0x03, 0x0A, 0x02, 0x00, 0x03, 0x0C, 0x03, 0x14, 0x02, 0x02, 0x03, 0x16, + 0x03, 0x19, 0x02, 0x0B, 0x03, 0x1B, 0x03, 0x48, 0x02, 0x0F, 0x03, 0x4A, + 0x03, 0x50, 0x02, 0x3D, 0x03, 0x52, 0x03, 0x52, 0x02, 0x44, 0x03, 0x54, + 0x03, 0x57, 0x02, 0x45, 0x03, 0x59, 0x03, 0x64, 0x02, 0x49, 0x03, 0x78, + 0x03, 0x79, 0x02, 0x55, 0x03, 0x7B, 0x03, 0x7B, 0x02, 0x57, 0x03, 0x7D, + 0x03, 0x93, 0x02, 0x58, 0x03, 0x95, 0x03, 0xAE, 0x02, 0x6F, 0x03, 0xB0, + 0x03, 0xB2, 0x02, 0x89, 0x03, 0xD3, 0x03, 0xD3, 0x02, 0x8C, 0x03, 0xE6, + 0x03, 0xE7, 0x02, 0x8D, 0x03, 0xF6, 0x03, 0xF6, 0x02, 0x8F, 0x04, 0x08, + 0x04, 0x08, 0x02, 0x90, 0x04, 0x0A, 0x04, 0x0A, 0x02, 0x91, 0x04, 0x0C, + 0x04, 0x0F, 0x02, 0x92, 0x04, 0x2B, 0x04, 0x2C, 0x02, 0x96, 0x04, 0x2E, + 0x04, 0x2E, 0x02, 0x98, 0x04, 0x31, 0x04, 0x32, 0x02, 0x99, 0x04, 0x34, + 0x04, 0x38, 0x02, 0x9B, 0x04, 0x3B, 0x04, 0x3B, 0x02, 0xA0, 0x04, 0x3E, + 0x04, 0x40, 0x02, 0xA1, 0x04, 0x42, 0x04, 0x47, 0x02, 0xA4, 0x04, 0x4B, + 0x04, 0x4B, 0x02, 0xAA, 0x04, 0x52, 0x04, 0x53, 0x02, 0xAB, 0x04, 0x73, + 0x04, 0x73, 0x02, 0xAD, 0x04, 0xAB, 0x04, 0xAB, 0x02, 0xAE, 0x04, 0xAD, + 0x04, 0xB1, 0x02, 0xAF, 0x04, 0xB3, 0x04, 0xC8, 0x02, 0xB4, 0x04, 0xE5, + 0x04, 0xE8, 0x02, 0xCA, 0x04, 0xEB, 0x04, 0xED, 0x02, 0xCE, 0x04, 0xEF, + 0x04, 0xEF, 0x02, 0xD1, 0x04, 0xF3, 0x04, 0xFF, 0x02, 0xD2, 0x05, 0x02, + 0x05, 0x12, 0x02, 0xDF, 0x05, 0x14, 0x05, 0x15, 0x02, 0xF0, 0x05, 0x17, + 0x05, 0x18, 0x02, 0xF2, 0x05, 0x1C, 0x05, 0x1D, 0x02, 0xF4, 0x05, 0x1F, + 0x05, 0x1F, 0x02, 0xF6, 0x05, 0x22, 0x05, 0x22, 0x02, 0xF7, 0x05, 0x25, + 0x05, 0x25, 0x02, 0xF8, 0x05, 0x32, 0x05, 0x32, 0x02, 0xF9, 0x05, 0x3C, + 0x05, 0x3C, 0x02, 0xFA, 0x05, 0x41, 0x05, 0x41, 0x02, 0xFB, 0x05, 0x68, + 0x05, 0x68, 0x02, 0xFC, 0x05, 0x6A, 0x05, 0x6A, 0x02, 0xFD, 0x05, 0x6C, + 0x05, 0x6C, 0x02, 0xFE, 0x05, 0x6F, 0x05, 0x6F, 0x02, 0xFF, 0x05, 0x84, + 0x05, 0x85, 0x03, 0x00, 0x05, 0x87, 0x05, 0x87, 0x03, 0x02, 0x05, 0x8A, + 0x05, 0x8A, 0x03, 0x03, 0x05, 0x9B, 0x05, 0x9B, 0x03, 0x04, 0x05, 0x9D, + 0x05, 0x9D, 0x03, 0x05, 0x05, 0xA1, 0x05, 0xA1, 0x03, 0x06, 0x05, 0xA3, + 0x05, 0xA4, 0x03, 0x07, 0x05, 0xA6, 0x05, 0xA6, 0x03, 0x09, 0x05, 0xA8, + 0x05, 0xA8, 0x03, 0x0A, 0x05, 0xAE, 0x05, 0xAE, 0x03, 0x0B, 0x05, 0xB0, + 0x05, 0xB1, 0x03, 0x0C, 0x05, 0xBA, 0x05, 0xBA, 0x03, 0x0E, 0x05, 0xBD, + 0x05, 0xBD, 0x03, 0x0F, 0x05, 0xE3, 0x05, 0xE3, 0x03, 0x10, 0x05, 0xEB, + 0x05, 0xEB, 0x03, 0x11, 0x05, 0xF0, 0x05, 0xF1, 0x03, 0x12, 0x05, 0xF3, + 0x05, 0xF3, 0x03, 0x14, 0x05, 0xF6, 0x05, 0xF6, 0x03, 0x15, 0x05, 0xFD, + 0x05, 0xFE, 0x03, 0x16, 0x06, 0x00, 0x06, 0x00, 0x03, 0x18, 0x06, 0x03, + 0x06, 0x03, 0x03, 0x19, 0x06, 0x05, 0x06, 0x07, 0x03, 0x1A, 0x06, 0x0C, + 0x06, 0x0C, 0x03, 0x1D, 0x06, 0x0F, 0x06, 0x0F, 0x03, 0x1E, 0x06, 0x16, + 0x06, 0x1A, 0x03, 0x1F, 0x06, 0x36, 0x06, 0x36, 0x03, 0x24, 0x06, 0x56, + 0x06, 0x75, 0x03, 0x25, 0x06, 0x77, 0x06, 0x78, 0x03, 0x45, 0x06, 0x7A, + 0x06, 0x7A, 0x03, 0x47, 0x06, 0x7D, 0x06, 0x81, 0x03, 0x48, 0x06, 0x84, + 0x06, 0x86, 0x03, 0x4D, 0x07, 0x06, 0x07, 0x08, 0x03, 0x50, 0x07, 0x1E, + 0x07, 0x20, 0x03, 0x53, 0x07, 0x3B, 0x07, 0x41, 0x03, 0x56, 0x07, 0x5C, + 0x07, 0x5C, 0x03, 0x5D, 0x07, 0xEA, 0x07, 0xEC, 0x03, 0x5E, 0x07, 0xF0, + 0x07, 0xF3, 0x03, 0x61, 0x07, 0xF5, 0x07, 0xF6, 0x03, 0x65, 0x07, 0xFE, + 0x07, 0xFE, 0x03, 0x67, 0x08, 0x03, 0x08, 0x08, 0x03, 0x68, 0x08, 0x0C, + 0x08, 0x0D, 0x03, 0x6E, 0x08, 0x12, 0x08, 0x12, 0x03, 0x70, 0x08, 0x14, + 0x08, 0x16, 0x03, 0x71, 0x08, 0x19, 0x08, 0x28, 0x03, 0x74, 0x08, 0x31, + 0x08, 0x32, 0x03, 0x84, 0x08, 0x3D, 0x08, 0x44, 0x03, 0x86, 0x08, 0x4C, + 0x08, 0x5B, 0x03, 0x8E, 0x08, 0x5D, 0x08, 0x66, 0x03, 0x9E, 0x08, 0x68, + 0x08, 0x79, 0x03, 0xA8, 0x08, 0x7F, 0x08, 0x8A, 0x03, 0xBA, 0x08, 0x96, + 0x08, 0x9D, 0x03, 0xC6, 0x08, 0x9F, 0x08, 0xA3, 0x03, 0xCE, 0x08, 0xAF, + 0x08, 0xB0, 0x03, 0xD3, 0x08, 0xB2, 0x08, 0xB3, 0x03, 0xD5, 0x08, 0xB9, + 0x08, 0xB9, 0x03, 0xD7, 0x08, 0xBC, 0x08, 0xC0, 0x03, 0xD8, 0x08, 0xC3, + 0x08, 0xC4, 0x03, 0xDD, 0x08, 0xC7, 0x08, 0xC7, 0x03, 0xDF, 0x08, 0xC9, + 0x08, 0xC9, 0x03, 0xE0, 0x08, 0xD2, 0x08, 0xD2, 0x03, 0xE1, 0x08, 0xE9, + 0x08, 0xE9, 0x03, 0xE2, 0x09, 0x00, 0x09, 0x02, 0x03, 0xE3, 0x09, 0x06, + 0x09, 0x09, 0x03, 0xE6, 0x09, 0x0B, 0x09, 0x0C, 0x03, 0xEA, 0x09, 0x1A, + 0x09, 0x1A, 0x03, 0xEC, 0x09, 0x27, 0x09, 0x27, 0x03, 0xED, 0x09, 0x3E, + 0x09, 0x3E, 0x03, 0xEE, 0x09, 0x43, 0x09, 0x43, 0x03, 0xEF, 0x09, 0x51, + 0x09, 0x52, 0x03, 0xF0, 0x09, 0x59, 0x09, 0x59, 0x03, 0xF2, 0x09, 0x6D, + 0x09, 0x6E, 0x03, 0xF3, 0x09, 0x70, 0x09, 0x70, 0x03, 0xF5, 0x09, 0x7B, + 0x09, 0x80, 0x03, 0xF6, 0x09, 0x83, 0x09, 0x83, 0x03, 0xFC, 0x09, 0x85, + 0x09, 0x87, 0x03, 0xFD, 0x09, 0x89, 0x09, 0x8A, 0x04, 0x00, 0x09, 0x93, + 0x09, 0x95, 0x04, 0x02, 0x09, 0x97, 0x09, 0x98, 0x04, 0x05, 0x09, 0x9B, + 0x09, 0x9C, 0x04, 0x07, 0x09, 0xA1, 0x09, 0xA1, 0x04, 0x09, 0x09, 0xA3, + 0x09, 0xA8, 0x04, 0x0A, 0x09, 0xAB, 0x09, 0xAC, 0x04, 0x10, 0x09, 0xB4, + 0x09, 0xB5, 0x04, 0x12, 0x09, 0xBA, 0x09, 0xBC, 0x04, 0x14, 0x09, 0xBF, + 0x09, 0xC5, 0x04, 0x17, 0x09, 0xC7, 0x09, 0xC9, 0x04, 0x1E, 0x09, 0xE7, + 0x09, 0xE9, 0x04, 0x21, 0x09, 0xEC, 0x09, 0xF2, 0x04, 0x24, 0x09, 0xF6, + 0x09, 0xF6, 0x04, 0x2B, 0x0B, 0x42, 0x0B, 0x42, 0x04, 0x2C, 0x0B, 0x48, + 0x0B, 0x49, 0x04, 0x2D, 0x00, 0x02, 0x00, 0xB7, 0x00, 0x02, 0x00, 0x3C, + 0x00, 0x00, 0x00, 0x49, 0x00, 0x5E, 0x00, 0x3B, 0x00, 0x89, 0x00, 0x8B, + 0x00, 0x51, 0x00, 0xAB, 0x00, 0xAE, 0x00, 0x54, 0x00, 0xC9, 0x00, 0xC9, + 0x00, 0x58, 0x00, 0xD3, 0x00, 0xD4, 0x00, 0x59, 0x01, 0x0A, 0x01, 0x23, + 0x00, 0x5B, 0x01, 0x40, 0x01, 0x44, 0x00, 0x75, 0x01, 0x46, 0x01, 0x75, + 0x00, 0x7A, 0x01, 0x77, 0x01, 0x7E, 0x00, 0xAA, 0x01, 0x9B, 0x01, 0xA8, + 0x00, 0xB2, 0x01, 0xAA, 0x01, 0xC1, 0x00, 0xC0, 0x01, 0xC7, 0x01, 0xD4, + 0x00, 0xD8, 0x01, 0xD6, 0x02, 0x1A, 0x00, 0xE6, 0x02, 0x1C, 0x02, 0x1E, + 0x01, 0x2B, 0x02, 0x23, 0x02, 0x2C, 0x01, 0x2E, 0x02, 0x2E, 0x02, 0x2F, + 0x01, 0x38, 0x02, 0x31, 0x02, 0x54, 0x01, 0x3A, 0x02, 0x56, 0x02, 0x56, + 0x01, 0x5E, 0x02, 0x58, 0x02, 0x58, 0x01, 0x5F, 0x02, 0x61, 0x02, 0x64, + 0x01, 0x60, 0x02, 0x66, 0x02, 0x85, 0x01, 0x64, 0x02, 0x87, 0x02, 0x89, + 0x01, 0x84, 0x02, 0x8B, 0x02, 0x8C, 0x01, 0x87, 0x02, 0x90, 0x02, 0x91, + 0x01, 0x89, 0x02, 0x93, 0x02, 0x93, 0x01, 0x8B, 0x02, 0x9E, 0x02, 0xA4, + 0x01, 0x8C, 0x02, 0xA8, 0x02, 0xC0, 0x01, 0x93, 0x02, 0xC2, 0x02, 0xCD, + 0x01, 0xAC, 0x02, 0xCF, 0x02, 0xD7, 0x01, 0xB8, 0x02, 0xD9, 0x02, 0xDF, + 0x01, 0xC1, 0x02, 0xE1, 0x02, 0xE1, 0x01, 0xC8, 0x02, 0xE5, 0x02, 0xE5, + 0x01, 0xC9, 0x02, 0xE7, 0x02, 0xE8, 0x01, 0xCA, 0x02, 0xEC, 0x02, 0xEC, + 0x01, 0xCC, 0x02, 0xF0, 0x02, 0xF3, 0x01, 0xCD, 0x02, 0xFE, 0x03, 0x00, + 0x01, 0xD1, 0x03, 0x02, 0x03, 0x06, 0x01, 0xD4, 0x03, 0x09, 0x03, 0x0A, + 0x01, 0xD9, 0x03, 0x0C, 0x03, 0x14, 0x01, 0xDB, 0x03, 0x16, 0x03, 0x19, + 0x01, 0xE4, 0x03, 0x1B, 0x03, 0x48, 0x01, 0xE8, 0x03, 0x4A, 0x03, 0x50, + 0x02, 0x16, 0x03, 0x52, 0x03, 0x52, 0x02, 0x1D, 0x03, 0x54, 0x03, 0x57, + 0x02, 0x1E, 0x03, 0x59, 0x03, 0x64, 0x02, 0x22, 0x03, 0x76, 0x03, 0x76, + 0x02, 0x2E, 0x03, 0x78, 0x03, 0x79, 0x02, 0x2F, 0x03, 0x7B, 0x03, 0x7B, + 0x02, 0x31, 0x03, 0x7D, 0x03, 0x93, 0x02, 0x32, 0x03, 0x95, 0x03, 0xAE, + 0x02, 0x49, 0x03, 0xB0, 0x03, 0xB2, 0x02, 0x63, 0x03, 0xD2, 0x03, 0xD7, + 0x02, 0x66, 0x03, 0xD9, 0x03, 0xDE, 0x02, 0x6C, 0x03, 0xE4, 0x03, 0xF6, + 0x02, 0x72, 0x03, 0xFA, 0x03, 0xFF, 0x02, 0x85, 0x04, 0x01, 0x04, 0x0A, + 0x02, 0x8B, 0x04, 0x0D, 0x04, 0x0F, 0x02, 0x95, 0x04, 0x29, 0x04, 0x29, + 0x02, 0x98, 0x04, 0x2B, 0x04, 0x2E, 0x02, 0x99, 0x04, 0x31, 0x04, 0x32, + 0x02, 0x9D, 0x04, 0x35, 0x04, 0x35, 0x02, 0x9F, 0x04, 0x37, 0x04, 0x39, + 0x02, 0xA0, 0x04, 0x3E, 0x04, 0x3F, 0x02, 0xA3, 0x04, 0x41, 0x04, 0x42, + 0x02, 0xA5, 0x04, 0x44, 0x04, 0x48, 0x02, 0xA7, 0x04, 0x4B, 0x04, 0x4B, + 0x02, 0xAC, 0x04, 0x51, 0x04, 0x6D, 0x02, 0xAD, 0x04, 0x6F, 0x04, 0x70, + 0x02, 0xCA, 0x04, 0x72, 0x04, 0x7F, 0x02, 0xCC, 0x04, 0x98, 0x04, 0x98, + 0x02, 0xDA, 0x04, 0x9A, 0x04, 0x9A, 0x02, 0xDB, 0x04, 0x9C, 0x04, 0x9C, + 0x02, 0xDC, 0x04, 0x9F, 0x04, 0xA4, 0x02, 0xDD, 0x04, 0xA6, 0x04, 0xB1, + 0x02, 0xE3, 0x04, 0xB3, 0x04, 0xE2, 0x02, 0xEF, 0x04, 0xE5, 0x04, 0xE7, + 0x03, 0x1F, 0x04, 0xEB, 0x04, 0xFF, 0x03, 0x22, 0x05, 0x02, 0x05, 0x07, + 0x03, 0x37, 0x05, 0x0B, 0x05, 0x0D, 0x03, 0x3D, 0x05, 0x10, 0x05, 0x12, + 0x03, 0x40, 0x05, 0x15, 0x05, 0x15, 0x03, 0x43, 0x05, 0x18, 0x05, 0x18, + 0x03, 0x44, 0x05, 0x1A, 0x05, 0x1A, 0x03, 0x45, 0x05, 0x1C, 0x05, 0x1D, + 0x03, 0x46, 0x05, 0x1F, 0x05, 0x1F, 0x03, 0x48, 0x05, 0x28, 0x05, 0x28, + 0x03, 0x49, 0x05, 0x32, 0x05, 0x32, 0x03, 0x4A, 0x05, 0x3B, 0x05, 0x3B, + 0x03, 0x4B, 0x05, 0x44, 0x05, 0x44, 0x03, 0x4C, 0x05, 0x46, 0x05, 0x47, + 0x03, 0x4D, 0x05, 0x86, 0x05, 0x86, 0x03, 0x4F, 0x05, 0x8B, 0x05, 0x8B, + 0x03, 0x50, 0x05, 0x8F, 0x05, 0x8F, 0x03, 0x51, 0x05, 0x93, 0x05, 0x93, + 0x03, 0x52, 0x05, 0x98, 0x05, 0x98, 0x03, 0x53, 0x05, 0x9A, 0x05, 0x9A, + 0x03, 0x54, 0x05, 0xB0, 0x05, 0xB0, 0x03, 0x55, 0x05, 0xB6, 0x05, 0xBB, + 0x03, 0x56, 0x05, 0xC1, 0x05, 0xC2, 0x03, 0x5C, 0x05, 0xC8, 0x05, 0xC9, + 0x03, 0x5E, 0x05, 0xCC, 0x05, 0xCF, 0x03, 0x60, 0x05, 0xD4, 0x05, 0xD4, + 0x03, 0x64, 0x05, 0xDB, 0x05, 0xDD, 0x03, 0x65, 0x05, 0xDF, 0x05, 0xDF, + 0x03, 0x68, 0x05, 0xE2, 0x05, 0xE3, 0x03, 0x69, 0x05, 0xE6, 0x05, 0xE9, + 0x03, 0x6B, 0x05, 0xEB, 0x05, 0xEB, 0x03, 0x6F, 0x05, 0xF2, 0x05, 0xF2, + 0x03, 0x70, 0x05, 0xFF, 0x05, 0xFF, 0x03, 0x71, 0x06, 0x04, 0x06, 0x05, + 0x03, 0x72, 0x06, 0x0A, 0x06, 0x0A, 0x03, 0x74, 0x06, 0x16, 0x06, 0x19, + 0x03, 0x75, 0x06, 0x1D, 0x06, 0x1D, 0x03, 0x79, 0x07, 0x33, 0x07, 0x33, + 0x03, 0x7A, 0x07, 0x37, 0x07, 0x37, 0x03, 0x7B, 0x07, 0x3A, 0x07, 0x3A, + 0x03, 0x7C, 0x07, 0xEA, 0x07, 0xEB, 0x03, 0x7D, 0x07, 0xEF, 0x07, 0xEF, + 0x03, 0x7F, 0x07, 0xF2, 0x07, 0xF3, 0x03, 0x80, 0x07, 0xF5, 0x07, 0xF6, + 0x03, 0x82, 0x07, 0xF8, 0x07, 0xFE, 0x03, 0x84, 0x08, 0x01, 0x08, 0x08, + 0x03, 0x8B, 0x08, 0x0B, 0x08, 0x0D, 0x03, 0x93, 0x08, 0x12, 0x08, 0x12, + 0x03, 0x96, 0x08, 0x1B, 0x08, 0x1D, 0x03, 0x97, 0x08, 0x22, 0x08, 0x29, + 0x03, 0x9A, 0x08, 0x31, 0x08, 0x39, 0x03, 0xA2, 0x08, 0x3B, 0x08, 0x46, + 0x03, 0xAB, 0x08, 0x4C, 0x08, 0x54, 0x03, 0xB7, 0x08, 0x57, 0x08, 0x5B, + 0x03, 0xC0, 0x08, 0x5D, 0x08, 0x67, 0x03, 0xC5, 0x08, 0x6B, 0x08, 0x79, + 0x03, 0xD0, 0x08, 0x7F, 0x08, 0x8E, 0x03, 0xDF, 0x08, 0x91, 0x08, 0x9D, + 0x03, 0xEF, 0x08, 0xA1, 0x08, 0xA3, 0x03, 0xFC, 0x08, 0xAF, 0x08, 0xB0, + 0x03, 0xFF, 0x08, 0xB3, 0x08, 0xB3, 0x04, 0x01, 0x08, 0xB9, 0x08, 0xB9, + 0x04, 0x02, 0x08, 0xBC, 0x08, 0xC0, 0x04, 0x03, 0x08, 0xC2, 0x08, 0xC7, + 0x04, 0x08, 0x08, 0xC9, 0x08, 0xC9, 0x04, 0x0E, 0x08, 0xCB, 0x08, 0xCF, + 0x04, 0x0F, 0x08, 0xD3, 0x08, 0xD3, 0x04, 0x14, 0x08, 0xE9, 0x08, 0xE9, + 0x04, 0x15, 0x09, 0x00, 0x09, 0x01, 0x04, 0x16, 0x09, 0x05, 0x09, 0x05, + 0x04, 0x18, 0x09, 0x08, 0x09, 0x09, 0x04, 0x19, 0x09, 0x0B, 0x09, 0x0C, + 0x04, 0x1B, 0x09, 0x0E, 0x09, 0x0F, 0x04, 0x1D, 0x09, 0x17, 0x09, 0x17, + 0x04, 0x1F, 0x09, 0x19, 0x09, 0x1A, 0x04, 0x20, 0x09, 0x24, 0x09, 0x24, + 0x04, 0x22, 0x09, 0x27, 0x09, 0x27, 0x04, 0x23, 0x09, 0x3E, 0x09, 0x3E, + 0x04, 0x24, 0x09, 0x43, 0x09, 0x43, 0x04, 0x25, 0x09, 0x50, 0x09, 0x52, + 0x04, 0x26, 0x09, 0x59, 0x09, 0x59, 0x04, 0x29, 0x09, 0x6D, 0x09, 0x6E, + 0x04, 0x2A, 0x09, 0x70, 0x09, 0x70, 0x04, 0x2C, 0x09, 0x7B, 0x09, 0x7F, + 0x04, 0x2D, 0x09, 0x81, 0x09, 0x83, 0x04, 0x32, 0x09, 0x85, 0x09, 0x85, + 0x04, 0x35, 0x09, 0x87, 0x09, 0x8A, 0x04, 0x36, 0x09, 0x8F, 0x09, 0x8F, + 0x04, 0x3A, 0x09, 0x92, 0x09, 0x95, 0x04, 0x3B, 0x09, 0x98, 0x09, 0x98, + 0x04, 0x3F, 0x09, 0x9B, 0x09, 0x9C, 0x04, 0x40, 0x09, 0xA1, 0x09, 0xA1, + 0x04, 0x42, 0x09, 0xA3, 0x09, 0xA9, 0x04, 0x43, 0x09, 0xAB, 0x09, 0xAC, + 0x04, 0x4A, 0x09, 0xB2, 0x09, 0xB2, 0x04, 0x4C, 0x09, 0xB4, 0x09, 0xB7, + 0x04, 0x4D, 0x09, 0xBA, 0x09, 0xBC, 0x04, 0x51, 0x09, 0xBF, 0x09, 0xC5, + 0x04, 0x54, 0x09, 0xC7, 0x09, 0xC9, 0x04, 0x5B, 0x09, 0xCF, 0x09, 0xCF, + 0x04, 0x5E, 0x09, 0xD4, 0x09, 0xD4, 0x04, 0x5F, 0x09, 0xEA, 0x09, 0xEB, + 0x04, 0x60, 0x09, 0xEF, 0x09, 0xF0, 0x04, 0x62, 0x0A, 0x15, 0x0A, 0x15, + 0x04, 0x64, 0x0A, 0x2F, 0x0A, 0x30, 0x04, 0x65, 0x0B, 0x42, 0x0B, 0x42, + 0x04, 0x67, 0x01, 0x6A, 0x00, 0x41, 0x00, 0x47, 0x00, 0x42, 0x00, 0x47, + 0x00, 0x43, 0x00, 0x47, 0x00, 0x44, 0x00, 0x47, 0x00, 0x45, 0x00, 0x47, + 0x00, 0x46, 0x00, 0x47, 0x00, 0x47, 0x00, 0x47, 0x00, 0x48, 0x00, 0x47, + 0x00, 0x54, 0x00, 0x47, 0x00, 0x55, 0x00, 0x47, 0x00, 0x56, 0x00, 0x47, + 0x00, 0x57, 0x00, 0x47, 0x00, 0x58, 0x00, 0x47, 0x00, 0x59, 0x00, 0x47, + 0x00, 0x5A, 0x00, 0x47, 0x00, 0x5B, 0x00, 0x47, 0x00, 0x5C, 0x00, 0x47, + 0x00, 0x5D, 0x00, 0x47, 0x00, 0x5E, 0x00, 0x47, 0x00, 0x5F, 0x00, 0x47, + 0x00, 0x60, 0x00, 0x47, 0x00, 0x61, 0x00, 0x47, 0x00, 0x62, 0x00, 0x47, + 0x00, 0x63, 0x00, 0x47, 0x00, 0x64, 0x00, 0x47, 0x00, 0x65, 0x00, 0x47, + 0x00, 0x66, 0x00, 0x47, 0x00, 0x67, 0x00, 0x47, 0x00, 0x68, 0x00, 0x47, + 0x00, 0x69, 0x00, 0x47, 0x00, 0x6A, 0x00, 0x47, 0x00, 0x6B, 0x00, 0x47, + 0x00, 0x6C, 0x00, 0x47, 0x00, 0x6D, 0x00, 0x47, 0x00, 0x6E, 0x00, 0x47, + 0x00, 0x6F, 0x00, 0x47, 0x00, 0x70, 0x00, 0x47, 0x00, 0x71, 0x00, 0x47, + 0x00, 0x72, 0x00, 0x47, 0x00, 0x73, 0x00, 0x47, 0x00, 0x74, 0x00, 0x47, + 0x00, 0x75, 0x00, 0x47, 0x00, 0x76, 0x00, 0x47, 0x00, 0x77, 0x00, 0x47, + 0x00, 0x78, 0x00, 0x47, 0x00, 0x79, 0x00, 0x47, 0x00, 0x7B, 0x00, 0x47, + 0x00, 0x84, 0x00, 0x47, 0x00, 0x85, 0x00, 0x47, 0x00, 0x86, 0x00, 0x47, + 0x00, 0x87, 0x00, 0x47, 0x00, 0x88, 0x00, 0x47, 0x00, 0x89, 0x00, 0x47, + 0x00, 0x8B, 0x00, 0x47, 0x00, 0xA1, 0x00, 0x47, 0x00, 0xA2, 0x00, 0x47, + 0x00, 0xA3, 0x00, 0x47, 0x00, 0xA4, 0x00, 0x47, 0x00, 0xA5, 0x00, 0x47, + 0x00, 0xA6, 0x00, 0x47, 0x00, 0xA7, 0x00, 0x47, 0x00, 0xA8, 0x00, 0x47, + 0x00, 0xA9, 0x00, 0x47, 0x00, 0xAA, 0x00, 0x47, 0x00, 0xAB, 0x00, 0x47, + 0x00, 0xAC, 0x00, 0x47, 0x00, 0xAD, 0x00, 0x47, 0x00, 0xAE, 0x00, 0x47, + 0x00, 0xAF, 0x00, 0x47, 0x00, 0xB0, 0x00, 0x47, 0x00, 0xB1, 0x00, 0x47, + 0x00, 0xB2, 0x00, 0x47, 0x00, 0xB3, 0x00, 0x47, 0x00, 0xB4, 0x00, 0x47, + 0x00, 0xB5, 0x00, 0x47, 0x00, 0xB6, 0x00, 0x47, 0x00, 0xB7, 0x00, 0x47, + 0x00, 0xB8, 0x00, 0x47, 0x00, 0xB9, 0x00, 0x47, 0x00, 0xBA, 0x00, 0x47, + 0x00, 0xBB, 0x00, 0x47, 0x00, 0xBC, 0x00, 0x47, 0x00, 0xBD, 0x00, 0x47, + 0x00, 0xBE, 0x00, 0x47, 0x00, 0xBF, 0x00, 0x47, 0x00, 0xC0, 0x00, 0x47, + 0x00, 0xC1, 0x00, 0x47, 0x00, 0xC2, 0x00, 0x47, 0x00, 0xC3, 0x00, 0x47, + 0x00, 0xC4, 0x00, 0x47, 0x00, 0xC5, 0x00, 0x47, 0x00, 0xC6, 0x00, 0x47, + 0x00, 0xCA, 0x00, 0x47, 0x00, 0xCB, 0x00, 0x47, 0x00, 0xCC, 0x00, 0x47, + 0x00, 0xD1, 0x00, 0x47, 0x00, 0xD2, 0x00, 0x47, 0x00, 0xD3, 0x00, 0x47, + 0x00, 0xD6, 0x00, 0x47, 0x00, 0xD7, 0x00, 0x47, 0x00, 0xD8, 0x00, 0x47, + 0x00, 0xD9, 0x00, 0x47, 0x00, 0xE8, 0x00, 0x47, 0x00, 0xEA, 0x00, 0x47, + 0x01, 0x0F, 0x00, 0x47, 0x01, 0x10, 0x00, 0x47, 0x01, 0x11, 0x00, 0x47, + 0x01, 0x12, 0x00, 0x47, 0x01, 0x13, 0x00, 0x47, 0x01, 0x14, 0x00, 0x47, + 0x01, 0x16, 0x00, 0x47, 0x01, 0x17, 0x00, 0x47, 0x01, 0x18, 0x00, 0x47, + 0x01, 0x19, 0x00, 0x47, 0x01, 0x1A, 0x00, 0x47, 0x01, 0x1B, 0x00, 0x47, + 0x01, 0x1C, 0x00, 0x47, 0x01, 0x1D, 0x00, 0x47, 0x01, 0x1E, 0x00, 0x47, + 0x01, 0x1F, 0x00, 0x47, 0x01, 0x20, 0x00, 0x47, 0x01, 0x21, 0x00, 0x47, + 0x01, 0x22, 0x00, 0x47, 0x01, 0x23, 0x00, 0x47, 0x01, 0x24, 0x00, 0x47, + 0x01, 0x25, 0x00, 0x47, 0x01, 0x26, 0x00, 0x47, 0x01, 0x27, 0x00, 0x47, + 0x01, 0x28, 0x00, 0x47, 0x01, 0x29, 0x00, 0x47, 0x01, 0x2A, 0x00, 0x47, + 0x01, 0x2B, 0x00, 0x47, 0x01, 0x2C, 0x00, 0x47, 0x01, 0x2D, 0x00, 0x47, + 0x01, 0x2E, 0x00, 0x47, 0x01, 0x2F, 0x00, 0x47, 0x01, 0x30, 0x00, 0x47, + 0x01, 0x31, 0x00, 0x47, 0x01, 0x32, 0x00, 0x47, 0x01, 0x33, 0x00, 0x47, + 0x01, 0x34, 0x00, 0x47, 0x01, 0x35, 0x00, 0x47, 0x01, 0x37, 0x00, 0x47, + 0x01, 0x38, 0x00, 0x47, 0x01, 0x39, 0x00, 0x47, 0x01, 0x3A, 0x00, 0x47, + 0x01, 0x3B, 0x00, 0x47, 0x01, 0x3C, 0x00, 0x47, 0x01, 0x3D, 0x00, 0x47, + 0x01, 0x3E, 0x00, 0x47, 0x01, 0x3F, 0x00, 0x47, 0x01, 0x40, 0x00, 0x47, + 0x01, 0x77, 0x00, 0x47, 0x01, 0x78, 0x00, 0x47, 0x01, 0x79, 0x00, 0x47, + 0x01, 0x7A, 0x00, 0x47, 0x01, 0x7B, 0x00, 0x47, 0x01, 0x7C, 0x00, 0x47, + 0x01, 0x7D, 0x00, 0x47, 0x01, 0x80, 0x00, 0x47, 0x01, 0x81, 0x00, 0x47, + 0x01, 0x82, 0x00, 0x47, 0x01, 0x83, 0x00, 0x47, 0x01, 0x84, 0x00, 0x47, + 0x01, 0x85, 0x00, 0x47, 0x01, 0x86, 0x00, 0x47, 0x01, 0x87, 0x00, 0x47, + 0x01, 0x88, 0x00, 0x47, 0x01, 0x89, 0x00, 0x47, 0x01, 0x8A, 0x00, 0x47, + 0x01, 0x8B, 0x00, 0x47, 0x01, 0x8C, 0x00, 0x47, 0x01, 0x9A, 0x00, 0x47, + 0x02, 0x42, 0x00, 0x47, 0x02, 0x44, 0x00, 0x47, 0x02, 0x45, 0x00, 0x47, + 0x02, 0x46, 0x00, 0x47, 0x02, 0x47, 0x00, 0x47, 0x02, 0x48, 0x00, 0x47, + 0x02, 0x49, 0x00, 0x47, 0x02, 0x88, 0x00, 0x47, 0x02, 0x8A, 0x00, 0x47, + 0x02, 0x8B, 0x00, 0x47, 0x02, 0x8C, 0x00, 0x47, 0x02, 0x8D, 0x00, 0x47, + 0x02, 0x8F, 0x00, 0x47, 0x02, 0x9E, 0x00, 0x47, 0x02, 0x9F, 0x00, 0x47, + 0x02, 0xA0, 0x00, 0x47, 0x02, 0xA1, 0x00, 0x47, 0x02, 0xA2, 0x00, 0x47, + 0x02, 0xA3, 0x00, 0x47, 0x02, 0xA4, 0x00, 0x47, 0x02, 0xA9, 0x00, 0x47, + 0x02, 0xAA, 0x00, 0x47, 0x02, 0xAB, 0x00, 0x47, 0x02, 0xAC, 0x00, 0x47, + 0x02, 0xAD, 0x00, 0x47, 0x02, 0xAE, 0x00, 0x47, 0x02, 0xAF, 0x00, 0x47, + 0x02, 0xB0, 0x00, 0x47, 0x02, 0xD6, 0x00, 0x47, 0x02, 0xD7, 0x00, 0x47, + 0x02, 0xD9, 0x00, 0x47, 0x02, 0xDA, 0x00, 0x47, 0x02, 0xDB, 0x00, 0x47, + 0x02, 0xDC, 0x00, 0x47, 0x02, 0xDD, 0x00, 0x47, 0x02, 0xDF, 0x00, 0x47, + 0x02, 0xE0, 0x00, 0x47, 0x02, 0xE1, 0x00, 0x47, 0x02, 0xE2, 0x00, 0x47, + 0x02, 0xE3, 0x00, 0x47, 0x02, 0xE4, 0x00, 0x47, 0x02, 0xE6, 0x00, 0x47, + 0x02, 0xE7, 0x00, 0x47, 0x02, 0xE8, 0x00, 0x47, 0x02, 0xE9, 0x00, 0x47, + 0x02, 0xEA, 0x00, 0x47, 0x02, 0xEB, 0x00, 0x47, 0x02, 0xEC, 0x00, 0x47, + 0x02, 0xED, 0x00, 0x47, 0x02, 0xEE, 0x00, 0x47, 0x02, 0xEF, 0x00, 0x47, + 0x02, 0xF4, 0x00, 0x47, 0x02, 0xF5, 0x00, 0x47, 0x02, 0xF6, 0x00, 0x47, + 0x02, 0xF7, 0x00, 0x47, 0x02, 0xF8, 0x00, 0x47, 0x02, 0xF9, 0x00, 0x47, + 0x02, 0xFA, 0x00, 0x47, 0x02, 0xFB, 0x00, 0x47, 0x02, 0xFC, 0x00, 0x47, + 0x03, 0x4D, 0x00, 0x47, 0x03, 0x76, 0x00, 0x47, 0x03, 0x77, 0x00, 0x47, + 0x03, 0x87, 0x00, 0x47, 0x03, 0x88, 0x00, 0x47, 0x03, 0x89, 0x00, 0x47, + 0x03, 0x8A, 0x00, 0x47, 0x03, 0x8B, 0x00, 0x47, 0x03, 0x8C, 0x00, 0x47, + 0x03, 0x8D, 0x00, 0x47, 0x03, 0x8E, 0x00, 0x47, 0x03, 0x8F, 0x00, 0x47, + 0x03, 0x90, 0x00, 0x47, 0x04, 0x07, 0x00, 0x47, 0x04, 0x08, 0x00, 0x47, + 0x04, 0x0C, 0x00, 0x47, 0x04, 0x2A, 0x00, 0x47, 0x04, 0x2B, 0x00, 0x47, + 0x04, 0x31, 0x00, 0x47, 0x04, 0x32, 0x00, 0x47, 0x04, 0x33, 0x00, 0x47, + 0x04, 0x36, 0x00, 0x47, 0x04, 0x39, 0x00, 0x47, 0x04, 0x3E, 0x00, 0x47, + 0x04, 0x40, 0x00, 0x47, 0x04, 0x41, 0x00, 0x47, 0x04, 0x43, 0x00, 0x47, + 0x04, 0x44, 0x00, 0x47, 0x04, 0x46, 0x00, 0x47, 0x04, 0x48, 0x00, 0x47, + 0x04, 0x4A, 0x00, 0x47, 0x04, 0x4B, 0x00, 0x47, 0x05, 0x25, 0x00, 0x47, + 0x05, 0x36, 0x00, 0x47, 0x05, 0x39, 0x00, 0x47, 0x05, 0x3A, 0x00, 0x47, + 0x05, 0xAE, 0x00, 0x47, 0x06, 0x1B, 0x00, 0x47, 0x06, 0xFF, 0x00, 0x47, + 0x07, 0x3D, 0x00, 0x47, 0x07, 0x3E, 0x00, 0x47, 0x07, 0x3F, 0x00, 0x47, + 0x07, 0x40, 0x00, 0x47, 0x07, 0x41, 0x00, 0x47, 0x07, 0x5C, 0x00, 0x47, + 0x07, 0xEA, 0x00, 0x47, 0x07, 0xEB, 0x00, 0x47, 0x07, 0xEC, 0x00, 0x47, + 0x07, 0xED, 0x00, 0x47, 0x07, 0xEF, 0x00, 0x47, 0x07, 0xF0, 0x00, 0x47, + 0x07, 0xF1, 0x00, 0x47, 0x07, 0xF6, 0x00, 0x47, 0x08, 0x09, 0x00, 0x47, + 0x08, 0x0A, 0x00, 0x47, 0x08, 0x0C, 0x00, 0x47, 0x08, 0x0D, 0x00, 0x47, + 0x08, 0x0E, 0x00, 0x47, 0x08, 0x0F, 0x00, 0x47, 0x08, 0x10, 0x00, 0x47, + 0x08, 0x11, 0x00, 0x47, 0x08, 0x12, 0x00, 0x47, 0x08, 0x14, 0x00, 0x47, + 0x08, 0x15, 0x00, 0x47, 0x08, 0x16, 0x00, 0x47, 0x08, 0x19, 0x00, 0x47, + 0x08, 0x1A, 0x00, 0x47, 0x08, 0x1B, 0x00, 0x47, 0x08, 0x1C, 0x00, 0x47, + 0x08, 0x1D, 0x00, 0x47, 0x08, 0x1E, 0x00, 0x47, 0x08, 0x1F, 0x00, 0x47, + 0x08, 0x20, 0x00, 0x47, 0x08, 0x21, 0x00, 0x47, 0x08, 0x29, 0x00, 0x47, + 0x08, 0x2A, 0x00, 0x47, 0x08, 0x2B, 0x00, 0x47, 0x08, 0x2C, 0x00, 0x47, + 0x08, 0x52, 0x00, 0x47, 0x08, 0x53, 0x00, 0x47, 0x08, 0x5D, 0x00, 0x47, + 0x08, 0x5E, 0x00, 0x47, 0x08, 0x5F, 0x00, 0x47, 0x08, 0x67, 0x00, 0x47, + 0x08, 0x68, 0x00, 0x47, 0x08, 0x69, 0x00, 0x47, 0x08, 0x6A, 0x00, 0x47, + 0x08, 0x9D, 0x00, 0x47, 0x08, 0x9E, 0x00, 0x47, 0x08, 0x9F, 0x00, 0x47, + 0x08, 0xA0, 0x00, 0x47, 0x08, 0xA1, 0x00, 0x47, 0x08, 0xA2, 0x00, 0x47, + 0x08, 0xA3, 0x00, 0x47, 0x08, 0xAD, 0x00, 0x47, 0x08, 0xB2, 0x00, 0x47, + 0x08, 0xEA, 0x00, 0x47, 0x09, 0x00, 0x00, 0x47, 0x09, 0x01, 0x00, 0x47, + 0x09, 0x02, 0x00, 0x47, 0x09, 0x03, 0x00, 0x47, 0x09, 0x05, 0x00, 0x47, + 0x09, 0x06, 0x00, 0x47, 0x09, 0x07, 0x00, 0x47, 0x09, 0x0C, 0x00, 0x47, + 0x09, 0x34, 0x00, 0x47, 0x09, 0x45, 0x00, 0x47, 0x09, 0x52, 0x00, 0x47, + 0x09, 0x7B, 0x00, 0x47, 0x09, 0x7C, 0x00, 0x47, 0x09, 0x7F, 0x00, 0x47, + 0x09, 0x80, 0x00, 0x47, 0x09, 0x81, 0x00, 0x47, 0x09, 0x86, 0x00, 0x47, + 0x09, 0x88, 0x00, 0x47, 0x09, 0x8A, 0x00, 0x47, 0x09, 0x8C, 0x00, 0x47, + 0x09, 0x8D, 0x00, 0x47, 0x09, 0x97, 0x00, 0x47, 0x09, 0xC8, 0x00, 0x47, + 0x09, 0xC9, 0x00, 0x47, 0x09, 0xE7, 0x00, 0x47, 0x09, 0xE8, 0x00, 0x47, + 0x09, 0xE9, 0x00, 0x47, 0x09, 0xEA, 0x00, 0x47, 0x09, 0xEF, 0x00, 0x47, + 0x09, 0xF6, 0x00, 0x47, 0x0B, 0x48, 0x00, 0x47, 0x0B, 0x49, 0x00, 0x47, + 0x01, 0x9B, 0x00, 0x41, 0x00, 0x45, 0x00, 0x42, 0x00, 0x45, 0x00, 0x43, + 0x00, 0x45, 0x00, 0x44, 0x00, 0x45, 0x00, 0x45, 0x00, 0x45, 0x00, 0x46, + 0x00, 0x45, 0x00, 0x47, 0x00, 0x45, 0x00, 0x48, 0x00, 0x45, 0x00, 0x54, + 0x00, 0x45, 0x00, 0x55, 0x00, 0x45, 0x00, 0x56, 0x00, 0x45, 0x00, 0x57, + 0x00, 0x45, 0x00, 0x58, 0x00, 0x45, 0x00, 0x59, 0x00, 0x45, 0x00, 0x5A, + 0x00, 0x45, 0x00, 0x5B, 0x00, 0x45, 0x00, 0x5C, 0x00, 0x45, 0x00, 0x5D, + 0x00, 0x45, 0x00, 0x5E, 0x00, 0x45, 0x00, 0x5F, 0x00, 0x45, 0x00, 0x60, + 0x00, 0x45, 0x00, 0x61, 0x00, 0x45, 0x00, 0x62, 0x00, 0x45, 0x00, 0x63, + 0x00, 0x45, 0x00, 0x64, 0x00, 0x45, 0x00, 0x65, 0x00, 0x45, 0x00, 0x66, + 0x00, 0x45, 0x00, 0x67, 0x00, 0x45, 0x00, 0x68, 0x00, 0x45, 0x00, 0x69, + 0x00, 0x45, 0x00, 0x6A, 0x00, 0x45, 0x00, 0x6B, 0x00, 0x45, 0x00, 0x6C, + 0x00, 0x45, 0x00, 0x6D, 0x00, 0x45, 0x00, 0x6E, 0x00, 0x45, 0x00, 0x6F, + 0x00, 0x45, 0x00, 0x70, 0x00, 0x45, 0x00, 0x71, 0x00, 0x45, 0x00, 0x72, + 0x00, 0x45, 0x00, 0x73, 0x00, 0x45, 0x00, 0x74, 0x00, 0x45, 0x00, 0x75, + 0x00, 0x45, 0x00, 0x76, 0x00, 0x45, 0x00, 0x77, 0x00, 0x45, 0x00, 0x78, + 0x00, 0x45, 0x00, 0x79, 0x00, 0x45, 0x00, 0x7B, 0x00, 0x45, 0x00, 0x84, + 0x00, 0x45, 0x00, 0x85, 0x00, 0x45, 0x00, 0x86, 0x00, 0x45, 0x00, 0x87, + 0x00, 0x45, 0x00, 0x88, 0x00, 0x45, 0x00, 0x89, 0x00, 0x45, 0x00, 0x8B, + 0x00, 0x45, 0x00, 0xA1, 0x00, 0x45, 0x00, 0xA2, 0x00, 0x45, 0x00, 0xA3, + 0x00, 0x45, 0x00, 0xA4, 0x00, 0x45, 0x00, 0xA5, 0x00, 0x45, 0x00, 0xA6, + 0x00, 0x45, 0x00, 0xA7, 0x00, 0x45, 0x00, 0xA8, 0x00, 0x45, 0x00, 0xA9, + 0x00, 0x45, 0x00, 0xAA, 0x00, 0x45, 0x00, 0xAB, 0x00, 0x45, 0x00, 0xAC, + 0x00, 0x45, 0x00, 0xAD, 0x00, 0x45, 0x00, 0xAE, 0x00, 0x45, 0x00, 0xAF, + 0x00, 0x45, 0x00, 0xB0, 0x00, 0x45, 0x00, 0xB1, 0x00, 0x45, 0x00, 0xB2, + 0x00, 0x45, 0x00, 0xB3, 0x00, 0x45, 0x00, 0xB4, 0x00, 0x45, 0x00, 0xB5, + 0x00, 0x45, 0x00, 0xB6, 0x00, 0x45, 0x00, 0xB7, 0x00, 0x45, 0x00, 0xB8, + 0x00, 0x45, 0x00, 0xB9, 0x00, 0x45, 0x00, 0xBA, 0x00, 0x45, 0x00, 0xBB, + 0x00, 0x45, 0x00, 0xBC, 0x00, 0x45, 0x00, 0xBD, 0x00, 0x45, 0x00, 0xBE, + 0x00, 0x45, 0x00, 0xBF, 0x00, 0x45, 0x00, 0xC0, 0x00, 0x45, 0x00, 0xC1, + 0x00, 0x45, 0x00, 0xC2, 0x00, 0x45, 0x00, 0xC3, 0x00, 0x45, 0x00, 0xC4, + 0x00, 0x45, 0x00, 0xC5, 0x00, 0x45, 0x00, 0xC6, 0x00, 0x45, 0x00, 0xCA, + 0x00, 0x45, 0x00, 0xCB, 0x00, 0x45, 0x00, 0xCC, 0x00, 0x45, 0x00, 0xD1, + 0x00, 0x45, 0x00, 0xD2, 0x00, 0x45, 0x00, 0xD3, 0x00, 0x45, 0x00, 0xD6, + 0x00, 0x45, 0x00, 0xD7, 0x00, 0x45, 0x00, 0xD8, 0x00, 0x45, 0x00, 0xD9, + 0x00, 0x45, 0x00, 0xE8, 0x00, 0x45, 0x00, 0xEA, 0x00, 0x45, 0x01, 0x0F, + 0x00, 0x45, 0x01, 0x10, 0x00, 0x45, 0x01, 0x11, 0x00, 0x45, 0x01, 0x12, + 0x00, 0x45, 0x01, 0x13, 0x00, 0x45, 0x01, 0x14, 0x00, 0x45, 0x01, 0x16, + 0x00, 0x45, 0x01, 0x17, 0x00, 0x45, 0x01, 0x18, 0x00, 0x45, 0x01, 0x19, + 0x00, 0x45, 0x01, 0x1A, 0x00, 0x45, 0x01, 0x1B, 0x00, 0x45, 0x01, 0x1C, + 0x00, 0x45, 0x01, 0x1D, 0x00, 0x45, 0x01, 0x1E, 0x00, 0x45, 0x01, 0x1F, + 0x00, 0x45, 0x01, 0x20, 0x00, 0x45, 0x01, 0x21, 0x00, 0x45, 0x01, 0x22, + 0x00, 0x45, 0x01, 0x23, 0x00, 0x45, 0x01, 0x24, 0x00, 0x45, 0x01, 0x25, + 0x00, 0x45, 0x01, 0x26, 0x00, 0x45, 0x01, 0x27, 0x00, 0x45, 0x01, 0x28, + 0x00, 0x45, 0x01, 0x29, 0x00, 0x45, 0x01, 0x2A, 0x00, 0x45, 0x01, 0x2B, + 0x00, 0x45, 0x01, 0x2C, 0x00, 0x45, 0x01, 0x2D, 0x00, 0x45, 0x01, 0x2E, + 0x00, 0x45, 0x01, 0x2F, 0x00, 0x45, 0x01, 0x30, 0x00, 0x45, 0x01, 0x31, + 0x00, 0x45, 0x01, 0x32, 0x00, 0x45, 0x01, 0x33, 0x00, 0x45, 0x01, 0x34, + 0x00, 0x45, 0x01, 0x35, 0x00, 0x45, 0x01, 0x37, 0x00, 0x45, 0x01, 0x38, + 0x00, 0x45, 0x01, 0x39, 0x00, 0x45, 0x01, 0x3A, 0x00, 0x45, 0x01, 0x3B, + 0x00, 0x45, 0x01, 0x3C, 0x00, 0x45, 0x01, 0x3D, 0x00, 0x45, 0x01, 0x3E, + 0x00, 0x45, 0x01, 0x3F, 0x00, 0x45, 0x01, 0x40, 0x00, 0x45, 0x01, 0x77, + 0x00, 0x45, 0x01, 0x78, 0x00, 0x45, 0x01, 0x79, 0x00, 0x45, 0x01, 0x7A, + 0x00, 0x45, 0x01, 0x7B, 0x00, 0x45, 0x01, 0x7C, 0x00, 0x45, 0x01, 0x7D, + 0x00, 0x45, 0x01, 0x80, 0x00, 0x45, 0x01, 0x81, 0x00, 0x45, 0x01, 0x82, + 0x00, 0x45, 0x01, 0x83, 0x00, 0x45, 0x01, 0x84, 0x00, 0x45, 0x01, 0x85, + 0x00, 0x45, 0x01, 0x86, 0x00, 0x45, 0x01, 0x87, 0x00, 0x45, 0x01, 0x88, + 0x00, 0x45, 0x01, 0x89, 0x00, 0x45, 0x01, 0x8A, 0x00, 0x45, 0x01, 0x8B, + 0x00, 0x45, 0x01, 0x8C, 0x00, 0x45, 0x01, 0x9A, 0x00, 0x45, 0x02, 0x42, + 0x00, 0x45, 0x02, 0x44, 0x00, 0x45, 0x02, 0x45, 0x00, 0x45, 0x02, 0x46, + 0x00, 0x45, 0x02, 0x47, 0x00, 0x45, 0x02, 0x48, 0x00, 0x45, 0x02, 0x49, + 0x00, 0x45, 0x02, 0x88, 0x00, 0x45, 0x02, 0x8A, 0x00, 0x45, 0x02, 0x8B, + 0x00, 0x45, 0x02, 0x8C, 0x00, 0x45, 0x02, 0x8D, 0x00, 0x45, 0x02, 0x8F, + 0x00, 0x45, 0x02, 0x9E, 0x00, 0x45, 0x02, 0x9F, 0x00, 0x45, 0x02, 0xA0, + 0x00, 0x45, 0x02, 0xA1, 0x00, 0x45, 0x02, 0xA2, 0x00, 0x45, 0x02, 0xA3, + 0x00, 0x45, 0x02, 0xA4, 0x00, 0x45, 0x02, 0xA5, 0x00, 0x45, 0x02, 0xA8, + 0x00, 0x45, 0x02, 0xA9, 0x00, 0x45, 0x02, 0xAA, 0x00, 0x45, 0x02, 0xAB, + 0x00, 0x45, 0x02, 0xAC, 0x00, 0x45, 0x02, 0xAD, 0x00, 0x45, 0x02, 0xAE, + 0x00, 0x45, 0x02, 0xAF, 0x00, 0x45, 0x02, 0xB0, 0x00, 0x45, 0x02, 0xC2, + 0x00, 0x45, 0x02, 0xD6, 0x00, 0x45, 0x02, 0xD7, 0x00, 0x45, 0x02, 0xD9, + 0x00, 0x45, 0x02, 0xDA, 0x00, 0x45, 0x02, 0xDB, 0x00, 0x45, 0x02, 0xDC, + 0x00, 0x45, 0x02, 0xDD, 0x00, 0x45, 0x02, 0xDF, 0x00, 0x45, 0x02, 0xE0, + 0x00, 0x45, 0x02, 0xE1, 0x00, 0x45, 0x02, 0xE3, 0x00, 0x45, 0x02, 0xE4, + 0x00, 0x45, 0x02, 0xE6, 0x00, 0x45, 0x02, 0xE7, 0x00, 0x45, 0x02, 0xE8, + 0x00, 0x45, 0x02, 0xE9, 0x00, 0x45, 0x02, 0xEA, 0x00, 0x45, 0x02, 0xEB, + 0x00, 0x45, 0x02, 0xEC, 0x00, 0x45, 0x02, 0xED, 0x00, 0x45, 0x02, 0xEE, + 0x00, 0x45, 0x02, 0xEF, 0x00, 0x45, 0x02, 0xF4, 0x00, 0x45, 0x02, 0xF5, + 0x00, 0x45, 0x02, 0xF6, 0x00, 0x45, 0x02, 0xF7, 0x00, 0x45, 0x02, 0xF8, + 0x00, 0x45, 0x02, 0xF9, 0x00, 0x45, 0x02, 0xFA, 0x00, 0x45, 0x02, 0xFB, + 0x00, 0x45, 0x02, 0xFC, 0x00, 0x45, 0x03, 0x00, 0x00, 0x45, 0x03, 0x01, + 0x00, 0x45, 0x03, 0x4D, 0x00, 0x45, 0x03, 0x76, 0x00, 0x45, 0x03, 0x77, + 0x00, 0x45, 0x03, 0x87, 0x00, 0x45, 0x03, 0x88, 0x00, 0x45, 0x03, 0x89, + 0x00, 0x45, 0x03, 0x8A, 0x00, 0x45, 0x03, 0x8B, 0x00, 0x45, 0x03, 0x8C, + 0x00, 0x45, 0x03, 0x8D, 0x00, 0x45, 0x03, 0x8E, 0x00, 0x45, 0x03, 0x8F, + 0x00, 0x45, 0x03, 0x90, 0x00, 0x45, 0x03, 0x91, 0x00, 0x45, 0x03, 0x92, + 0x00, 0x45, 0x03, 0x93, 0x00, 0x45, 0x03, 0x94, 0x00, 0x45, 0x03, 0x95, + 0x00, 0x45, 0x03, 0x96, 0x00, 0x45, 0x03, 0x97, 0x00, 0x45, 0x03, 0x98, + 0x00, 0x45, 0x03, 0x99, 0x00, 0x45, 0x03, 0x9A, 0x00, 0x45, 0x03, 0x9B, + 0x00, 0x45, 0x03, 0x9C, 0x00, 0x45, 0x03, 0x9D, 0x00, 0x45, 0x03, 0x9E, + 0x00, 0x45, 0x03, 0x9F, 0x00, 0x45, 0x03, 0xA0, 0x00, 0x45, 0x03, 0xA1, + 0x00, 0x45, 0x03, 0xA2, 0x00, 0x45, 0x03, 0xA3, 0x00, 0x45, 0x03, 0xA4, + 0x00, 0x45, 0x03, 0xA5, 0x00, 0x45, 0x03, 0xA6, 0x00, 0x45, 0x03, 0xA7, + 0x00, 0x45, 0x03, 0xA8, 0x00, 0x45, 0x03, 0xA9, 0x00, 0x45, 0x03, 0xAA, + 0x00, 0x45, 0x03, 0xAB, 0x00, 0x45, 0x03, 0xAC, 0x00, 0x45, 0x03, 0xAD, + 0x00, 0x45, 0x03, 0xAE, 0x00, 0x45, 0x03, 0xAF, 0x00, 0x45, 0x03, 0xB0, + 0x00, 0x45, 0x03, 0xB1, 0x00, 0x45, 0x04, 0x07, 0x00, 0x45, 0x04, 0x08, + 0x00, 0x45, 0x04, 0x0C, 0x00, 0x45, 0x04, 0x2A, 0x00, 0x45, 0x04, 0x2B, + 0x00, 0x45, 0x04, 0x31, 0x00, 0x45, 0x04, 0x32, 0x00, 0x45, 0x04, 0x33, + 0x00, 0x45, 0x04, 0x36, 0x00, 0x45, 0x04, 0x39, 0x00, 0x45, 0x04, 0x3E, + 0x00, 0x45, 0x04, 0x40, 0x00, 0x45, 0x04, 0x41, 0x00, 0x45, 0x04, 0x43, + 0x00, 0x45, 0x04, 0x44, 0x00, 0x45, 0x04, 0x46, 0x00, 0x45, 0x04, 0x48, + 0x00, 0x45, 0x04, 0x4A, 0x00, 0x45, 0x04, 0x4B, 0x00, 0x45, 0x05, 0x03, + 0x00, 0x45, 0x05, 0x25, 0x00, 0x45, 0x05, 0x36, 0x00, 0x45, 0x05, 0x39, + 0x00, 0x45, 0x05, 0x3A, 0x00, 0x45, 0x05, 0xAE, 0x00, 0x45, 0x06, 0x1B, + 0x00, 0x45, 0x06, 0xFF, 0x00, 0x45, 0x07, 0x3D, 0x00, 0x45, 0x07, 0x3E, + 0x00, 0x45, 0x07, 0x3F, 0x00, 0x45, 0x07, 0x40, 0x00, 0x45, 0x07, 0x41, + 0x00, 0x45, 0x07, 0x5C, 0x00, 0x45, 0x07, 0xEA, 0x00, 0x45, 0x07, 0xEB, + 0x00, 0x45, 0x07, 0xEC, 0x00, 0x45, 0x07, 0xED, 0x00, 0x45, 0x07, 0xEF, + 0x00, 0x45, 0x07, 0xF0, 0x00, 0x45, 0x07, 0xF1, 0x00, 0x45, 0x07, 0xF6, + 0x00, 0x45, 0x08, 0x09, 0x00, 0x45, 0x08, 0x0A, 0x00, 0x45, 0x08, 0x0C, + 0x00, 0x45, 0x08, 0x0D, 0x00, 0x45, 0x08, 0x0E, 0x00, 0x45, 0x08, 0x0F, + 0x00, 0x45, 0x08, 0x10, 0x00, 0x45, 0x08, 0x11, 0x00, 0x45, 0x08, 0x12, + 0x00, 0x45, 0x08, 0x14, 0x00, 0x45, 0x08, 0x15, 0x00, 0x45, 0x08, 0x16, + 0x00, 0x45, 0x08, 0x19, 0x00, 0x45, 0x08, 0x1A, 0x00, 0x45, 0x08, 0x1B, + 0x00, 0x45, 0x08, 0x1C, 0x00, 0x45, 0x08, 0x1D, 0x00, 0x45, 0x08, 0x1E, + 0x00, 0x45, 0x08, 0x1F, 0x00, 0x45, 0x08, 0x20, 0x00, 0x45, 0x08, 0x21, + 0x00, 0x45, 0x08, 0x29, 0x00, 0x45, 0x08, 0x2A, 0x00, 0x45, 0x08, 0x2B, + 0x00, 0x45, 0x08, 0x2C, 0x00, 0x45, 0x08, 0x52, 0x00, 0x45, 0x08, 0x53, + 0x00, 0x45, 0x08, 0x5D, 0x00, 0x45, 0x08, 0x5E, 0x00, 0x45, 0x08, 0x5F, + 0x00, 0x45, 0x08, 0x67, 0x00, 0x45, 0x08, 0x68, 0x00, 0x45, 0x08, 0x69, + 0x00, 0x45, 0x08, 0x6A, 0x00, 0x45, 0x08, 0x82, 0x00, 0x45, 0x08, 0x83, + 0x00, 0x45, 0x08, 0x84, 0x00, 0x45, 0x08, 0x85, 0x00, 0x45, 0x08, 0x86, + 0x00, 0x45, 0x08, 0x87, 0x00, 0x45, 0x08, 0x88, 0x00, 0x45, 0x08, 0x89, + 0x00, 0x45, 0x08, 0x8A, 0x00, 0x45, 0x08, 0x9D, 0x00, 0x45, 0x08, 0x9E, + 0x00, 0x45, 0x08, 0x9F, 0x00, 0x45, 0x08, 0xA0, 0x00, 0x45, 0x08, 0xA1, + 0x00, 0x45, 0x08, 0xA2, 0x00, 0x45, 0x08, 0xA3, 0x00, 0x45, 0x08, 0xAD, + 0x00, 0x45, 0x08, 0xB2, 0x00, 0x45, 0x08, 0xEA, 0x00, 0x45, 0x09, 0x00, + 0x00, 0x45, 0x09, 0x01, 0x00, 0x45, 0x09, 0x02, 0x00, 0x45, 0x09, 0x03, + 0x00, 0x45, 0x09, 0x05, 0x00, 0x45, 0x09, 0x06, 0x00, 0x45, 0x09, 0x07, + 0x00, 0x45, 0x09, 0x0C, 0x00, 0x45, 0x09, 0x1A, 0x00, 0x45, 0x09, 0x34, + 0x00, 0x45, 0x09, 0x45, 0x00, 0x45, 0x09, 0x52, 0x00, 0x45, 0x09, 0x7B, + 0x00, 0x45, 0x09, 0x7C, 0x00, 0x45, 0x09, 0x7F, 0x00, 0x45, 0x09, 0x80, + 0x00, 0x45, 0x09, 0x81, 0x00, 0x45, 0x09, 0x86, 0x00, 0x45, 0x09, 0x88, + 0x00, 0x45, 0x09, 0x8A, 0x00, 0x45, 0x09, 0x8C, 0x00, 0x45, 0x09, 0x8D, + 0x00, 0x45, 0x09, 0x97, 0x00, 0x45, 0x09, 0xC8, 0x00, 0x45, 0x09, 0xC9, + 0x00, 0x45, 0x09, 0xE7, 0x00, 0x45, 0x09, 0xE8, 0x00, 0x45, 0x09, 0xE9, + 0x00, 0x45, 0x09, 0xEA, 0x00, 0x45, 0x09, 0xEF, 0x00, 0x45, 0x09, 0xF6, + 0x00, 0x45, 0x0B, 0x42, 0x00, 0x45, 0x0B, 0x48, 0x00, 0x45, 0x0B, 0x49, + 0x00, 0x45, 0x01, 0xAE, 0x00, 0x41, 0x00, 0x51, 0x00, 0x42, 0x00, 0x51, + 0x00, 0x43, 0x00, 0x51, 0x00, 0x44, 0x00, 0x51, 0x00, 0x45, 0x00, 0x51, + 0x00, 0x46, 0x00, 0x51, 0x00, 0x47, 0x00, 0x51, 0x00, 0x48, 0x00, 0x51, + 0x00, 0x54, 0x00, 0x51, 0x00, 0x55, 0x00, 0x51, 0x00, 0x56, 0x00, 0x51, + 0x00, 0x57, 0x00, 0x51, 0x00, 0x58, 0x00, 0x51, 0x00, 0x59, 0x00, 0x51, + 0x00, 0x5A, 0x00, 0x51, 0x00, 0x5B, 0x00, 0x51, 0x00, 0x5C, 0x00, 0x51, + 0x00, 0x5D, 0x00, 0x51, 0x00, 0x5E, 0x00, 0x51, 0x00, 0x5F, 0x00, 0x51, + 0x00, 0x60, 0x00, 0x51, 0x00, 0x61, 0x00, 0x51, 0x00, 0x62, 0x00, 0x51, + 0x00, 0x63, 0x00, 0x51, 0x00, 0x64, 0x00, 0x51, 0x00, 0x65, 0x00, 0x51, + 0x00, 0x66, 0x00, 0x51, 0x00, 0x67, 0x00, 0x51, 0x00, 0x68, 0x00, 0x51, + 0x00, 0x69, 0x00, 0x51, 0x00, 0x6A, 0x00, 0x51, 0x00, 0x6B, 0x00, 0x51, + 0x00, 0x6C, 0x00, 0x51, 0x00, 0x6D, 0x00, 0x51, 0x00, 0x6E, 0x00, 0x51, + 0x00, 0x6F, 0x00, 0x51, 0x00, 0x70, 0x00, 0x51, 0x00, 0x71, 0x00, 0x51, + 0x00, 0x72, 0x00, 0x51, 0x00, 0x73, 0x00, 0x51, 0x00, 0x74, 0x00, 0x51, + 0x00, 0x75, 0x00, 0x51, 0x00, 0x76, 0x00, 0x51, 0x00, 0x77, 0x00, 0x51, + 0x00, 0x78, 0x00, 0x51, 0x00, 0x79, 0x00, 0x51, 0x00, 0x7B, 0x00, 0x51, + 0x00, 0x84, 0x00, 0x51, 0x00, 0x85, 0x00, 0x51, 0x00, 0x86, 0x00, 0x51, + 0x00, 0x87, 0x00, 0x51, 0x00, 0x88, 0x00, 0x51, 0x00, 0x89, 0x00, 0x51, + 0x00, 0x8A, 0x00, 0x45, 0x00, 0x8B, 0x00, 0x51, 0x00, 0xA1, 0x00, 0x51, + 0x00, 0xA2, 0x00, 0x51, 0x00, 0xA3, 0x00, 0x51, 0x00, 0xA4, 0x00, 0x51, + 0x00, 0xA5, 0x00, 0x51, 0x00, 0xA6, 0x00, 0x51, 0x00, 0xA7, 0x00, 0x51, + 0x00, 0xA8, 0x00, 0x51, 0x00, 0xA9, 0x00, 0x51, 0x00, 0xAA, 0x00, 0x51, + 0x00, 0xAB, 0x00, 0x51, 0x00, 0xAC, 0x00, 0x51, 0x00, 0xAD, 0x00, 0x51, + 0x00, 0xAE, 0x00, 0x51, 0x00, 0xAF, 0x00, 0x51, 0x00, 0xB0, 0x00, 0x51, + 0x00, 0xB1, 0x00, 0x51, 0x00, 0xB2, 0x00, 0x51, 0x00, 0xB3, 0x00, 0x51, + 0x00, 0xB4, 0x00, 0x51, 0x00, 0xB5, 0x00, 0x51, 0x00, 0xB6, 0x00, 0x51, + 0x00, 0xB7, 0x00, 0x51, 0x00, 0xB8, 0x00, 0x51, 0x00, 0xB9, 0x00, 0x51, + 0x00, 0xBA, 0x00, 0x51, 0x00, 0xBB, 0x00, 0x51, 0x00, 0xBC, 0x00, 0x51, + 0x00, 0xBD, 0x00, 0x51, 0x00, 0xBE, 0x00, 0x51, 0x00, 0xBF, 0x00, 0x51, + 0x00, 0xC0, 0x00, 0x51, 0x00, 0xC1, 0x00, 0x51, 0x00, 0xC2, 0x00, 0x51, + 0x00, 0xC3, 0x00, 0x51, 0x00, 0xC4, 0x00, 0x51, 0x00, 0xC5, 0x00, 0x51, + 0x00, 0xC6, 0x00, 0x51, 0x00, 0xCA, 0x00, 0x51, 0x00, 0xCB, 0x00, 0x51, + 0x00, 0xCC, 0x00, 0x51, 0x00, 0xD1, 0x00, 0x51, 0x00, 0xD2, 0x00, 0x51, + 0x00, 0xD3, 0x00, 0x51, 0x00, 0xD6, 0x00, 0x51, 0x00, 0xD7, 0x00, 0x51, + 0x00, 0xD8, 0x00, 0x51, 0x00, 0xD9, 0x00, 0x51, 0x00, 0xE8, 0x00, 0x51, + 0x00, 0xEA, 0x00, 0x51, 0x01, 0x0F, 0x00, 0x51, 0x01, 0x10, 0x00, 0x51, + 0x01, 0x11, 0x00, 0x51, 0x01, 0x12, 0x00, 0x51, 0x01, 0x13, 0x00, 0x51, + 0x01, 0x14, 0x00, 0x51, 0x01, 0x15, 0x00, 0x5D, 0x01, 0x16, 0x00, 0x51, + 0x01, 0x17, 0x00, 0x51, 0x01, 0x18, 0x00, 0x51, 0x01, 0x19, 0x00, 0x51, + 0x01, 0x1A, 0x00, 0x51, 0x01, 0x1B, 0x00, 0x51, 0x01, 0x1C, 0x00, 0x51, + 0x01, 0x1D, 0x00, 0x51, 0x01, 0x1E, 0x00, 0x51, 0x01, 0x1F, 0x00, 0x51, + 0x01, 0x20, 0x00, 0x51, 0x01, 0x21, 0x00, 0x51, 0x01, 0x22, 0x00, 0x51, + 0x01, 0x23, 0x00, 0x51, 0x01, 0x24, 0x00, 0x51, 0x01, 0x25, 0x00, 0x51, + 0x01, 0x26, 0x00, 0x51, 0x01, 0x27, 0x00, 0x51, 0x01, 0x28, 0x00, 0x51, + 0x01, 0x29, 0x00, 0x51, 0x01, 0x2A, 0x00, 0x51, 0x01, 0x2B, 0x00, 0x51, + 0x01, 0x2C, 0x00, 0x51, 0x01, 0x2D, 0x00, 0x51, 0x01, 0x2E, 0x00, 0x51, + 0x01, 0x2F, 0x00, 0x51, 0x01, 0x30, 0x00, 0x51, 0x01, 0x31, 0x00, 0x51, + 0x01, 0x32, 0x00, 0x51, 0x01, 0x33, 0x00, 0x51, 0x01, 0x34, 0x00, 0x51, + 0x01, 0x35, 0x00, 0x51, 0x01, 0x36, 0x00, 0x45, 0x01, 0x37, 0x00, 0x51, + 0x01, 0x38, 0x00, 0x51, 0x01, 0x39, 0x00, 0x51, 0x01, 0x3A, 0x00, 0x51, + 0x01, 0x3B, 0x00, 0x51, 0x01, 0x3C, 0x00, 0x51, 0x01, 0x3D, 0x00, 0x51, + 0x01, 0x3E, 0x00, 0x51, 0x01, 0x3F, 0x00, 0x51, 0x01, 0x40, 0x00, 0x51, + 0x01, 0x77, 0x00, 0x51, 0x01, 0x78, 0x00, 0x51, 0x01, 0x79, 0x00, 0x51, + 0x01, 0x7A, 0x00, 0x51, 0x01, 0x7B, 0x00, 0x51, 0x01, 0x7C, 0x00, 0x51, + 0x01, 0x7D, 0x00, 0x51, 0x01, 0x80, 0x00, 0x51, 0x01, 0x81, 0x00, 0x51, + 0x01, 0x82, 0x00, 0x51, 0x01, 0x83, 0x00, 0x51, 0x01, 0x84, 0x00, 0x51, + 0x01, 0x85, 0x00, 0x51, 0x01, 0x86, 0x00, 0x51, 0x01, 0x87, 0x00, 0x51, + 0x01, 0x88, 0x00, 0x51, 0x01, 0x89, 0x00, 0x51, 0x01, 0x8A, 0x00, 0x51, + 0x01, 0x8B, 0x00, 0x51, 0x01, 0x8C, 0x00, 0x51, 0x01, 0x9A, 0x00, 0x51, + 0x01, 0x9B, 0x00, 0x5D, 0x01, 0x9C, 0x00, 0x5D, 0x01, 0x9D, 0x00, 0x5D, + 0x01, 0x9E, 0x00, 0x5D, 0x01, 0x9F, 0x00, 0x5D, 0x01, 0xA0, 0x00, 0x5D, + 0x01, 0xA1, 0x00, 0x5D, 0x01, 0xA2, 0x00, 0x5D, 0x01, 0xA3, 0x00, 0x5D, + 0x01, 0xA5, 0x00, 0x5D, 0x01, 0xA6, 0x00, 0x5D, 0x01, 0xA7, 0x00, 0x5D, + 0x02, 0x42, 0x00, 0x51, 0x02, 0x44, 0x00, 0x51, 0x02, 0x45, 0x00, 0x51, + 0x02, 0x46, 0x00, 0x51, 0x02, 0x47, 0x00, 0x51, 0x02, 0x48, 0x00, 0x51, + 0x02, 0x49, 0x00, 0x51, 0x02, 0x88, 0x00, 0x51, 0x02, 0x8A, 0x00, 0x51, + 0x02, 0x8B, 0x00, 0x51, 0x02, 0x8C, 0x00, 0x51, 0x02, 0x8D, 0x00, 0x51, + 0x02, 0x8F, 0x00, 0x51, 0x02, 0x9E, 0x00, 0x51, 0x02, 0x9F, 0x00, 0x51, + 0x02, 0xA0, 0x00, 0x51, 0x02, 0xA1, 0x00, 0x51, 0x02, 0xA2, 0x00, 0x51, + 0x02, 0xA3, 0x00, 0x51, 0x02, 0xA4, 0x00, 0x51, 0x02, 0xA8, 0x00, 0x51, + 0x02, 0xA9, 0x00, 0x51, 0x02, 0xAA, 0x00, 0x51, 0x02, 0xAB, 0x00, 0x51, + 0x02, 0xAC, 0x00, 0x51, 0x02, 0xAD, 0x00, 0x51, 0x02, 0xAE, 0x00, 0x51, + 0x02, 0xAF, 0x00, 0x51, 0x02, 0xB0, 0x00, 0x51, 0x02, 0xB1, 0x00, 0x45, + 0x02, 0xB2, 0x00, 0x45, 0x02, 0xB3, 0x00, 0x45, 0x02, 0xB4, 0x00, 0x45, + 0x02, 0xB5, 0x00, 0x51, 0x02, 0xB6, 0x00, 0x45, 0x02, 0xB7, 0x00, 0x45, + 0x02, 0xB8, 0x00, 0x45, 0x02, 0xBA, 0x00, 0x45, 0x02, 0xBB, 0x00, 0x45, + 0x02, 0xBC, 0x00, 0x45, 0x02, 0xBD, 0x00, 0x51, 0x02, 0xBE, 0x00, 0x45, + 0x02, 0xBF, 0x00, 0x45, 0x02, 0xC0, 0x00, 0x45, 0x02, 0xC1, 0x00, 0x45, + 0x02, 0xC2, 0x00, 0x68, 0x02, 0xC3, 0x00, 0x45, 0x02, 0xC4, 0x00, 0x45, + 0x02, 0xC5, 0x00, 0x45, 0x02, 0xC6, 0x00, 0x45, 0x02, 0xC7, 0x00, 0x45, + 0x02, 0xC8, 0x00, 0x45, 0x02, 0xCB, 0x00, 0x45, 0x02, 0xCC, 0x00, 0x45, + 0x02, 0xCD, 0x00, 0x45, 0x02, 0xCF, 0x00, 0x45, 0x02, 0xD2, 0x00, 0x45, + 0x02, 0xD3, 0x00, 0x45, 0x02, 0xD4, 0x00, 0x45, 0x02, 0xD5, 0x00, 0x45, + 0x02, 0xD6, 0x00, 0x51, 0x02, 0xD7, 0x00, 0x51, 0x02, 0xD9, 0x00, 0x51, + 0x02, 0xDA, 0x00, 0x51, 0x02, 0xDB, 0x00, 0x51, 0x02, 0xDC, 0x00, 0x51, + 0x02, 0xDD, 0x00, 0x51, 0x02, 0xDF, 0x00, 0x51, 0x02, 0xE0, 0x00, 0x51, + 0x02, 0xE1, 0x00, 0x51, 0x02, 0xE2, 0x00, 0x51, 0x02, 0xE3, 0x00, 0x51, + 0x02, 0xE4, 0x00, 0x51, 0x02, 0xE6, 0x00, 0x51, 0x02, 0xE7, 0x00, 0x51, + 0x02, 0xE8, 0x00, 0x51, 0x02, 0xE9, 0x00, 0x51, 0x02, 0xEA, 0x00, 0x51, + 0x02, 0xEB, 0x00, 0x51, 0x02, 0xEC, 0x00, 0x51, 0x02, 0xED, 0x00, 0x51, + 0x02, 0xEE, 0x00, 0x51, 0x02, 0xEF, 0x00, 0x51, 0x02, 0xF4, 0x00, 0x51, + 0x02, 0xF5, 0x00, 0x51, 0x02, 0xF6, 0x00, 0x51, 0x02, 0xF7, 0x00, 0x51, + 0x02, 0xF8, 0x00, 0x51, 0x02, 0xF9, 0x00, 0x51, 0x02, 0xFA, 0x00, 0x51, + 0x02, 0xFB, 0x00, 0x51, 0x02, 0xFC, 0x00, 0x51, 0x03, 0x0A, 0x00, 0x45, + 0x03, 0x4D, 0x00, 0x51, 0x03, 0x76, 0x00, 0x51, 0x03, 0x77, 0x00, 0x51, + 0x03, 0x87, 0x00, 0x51, 0x03, 0x88, 0x00, 0x51, 0x03, 0x89, 0x00, 0x51, + 0x03, 0x8A, 0x00, 0x51, 0x03, 0x8B, 0x00, 0x51, 0x03, 0x8C, 0x00, 0x51, + 0x03, 0x8D, 0x00, 0x51, 0x03, 0x8E, 0x00, 0x51, 0x03, 0x8F, 0x00, 0x51, + 0x03, 0x90, 0x00, 0x51, 0x04, 0x07, 0x00, 0x51, 0x04, 0x08, 0x00, 0x51, + 0x04, 0x0C, 0x00, 0x51, 0x04, 0x2A, 0x00, 0x51, 0x04, 0x2B, 0x00, 0x51, + 0x04, 0x31, 0x00, 0x51, 0x04, 0x32, 0x00, 0x51, 0x04, 0x33, 0x00, 0x51, + 0x04, 0x36, 0x00, 0x51, 0x04, 0x39, 0x00, 0x51, 0x04, 0x3A, 0x00, 0x5D, + 0x04, 0x3E, 0x00, 0x51, 0x04, 0x3F, 0x00, 0x5D, 0x04, 0x40, 0x00, 0x51, + 0x04, 0x41, 0x00, 0x51, 0x04, 0x42, 0x00, 0x5D, 0x04, 0x43, 0x00, 0x51, + 0x04, 0x44, 0x00, 0x51, 0x04, 0x46, 0x00, 0x51, 0x04, 0x48, 0x00, 0x51, + 0x04, 0x4A, 0x00, 0x51, 0x04, 0x4B, 0x00, 0x51, 0x04, 0x52, 0x00, 0x5D, + 0x05, 0x0B, 0x00, 0x45, 0x05, 0x25, 0x00, 0x51, 0x05, 0x36, 0x00, 0x51, + 0x05, 0x39, 0x00, 0x51, 0x05, 0x3A, 0x00, 0x51, 0x05, 0xAE, 0x00, 0x51, + 0x06, 0x1B, 0x00, 0x51, 0x06, 0x21, 0x00, 0x45, 0x06, 0xFF, 0x00, 0x51, + 0x07, 0x3D, 0x00, 0x51, 0x07, 0x3E, 0x00, 0x51, 0x07, 0x3F, 0x00, 0x51, + 0x07, 0x40, 0x00, 0x51, 0x07, 0x41, 0x00, 0x51, 0x07, 0x55, 0x00, 0x5D, + 0x07, 0x5C, 0x00, 0x51, 0x07, 0xEA, 0x00, 0x51, 0x07, 0xEB, 0x00, 0x51, + 0x07, 0xEC, 0x00, 0x51, 0x07, 0xED, 0x00, 0x51, 0x07, 0xEF, 0x00, 0x51, + 0x07, 0xF0, 0x00, 0x51, 0x07, 0xF1, 0x00, 0x51, 0x07, 0xF6, 0x00, 0x51, + 0x08, 0x09, 0x00, 0x51, 0x08, 0x0A, 0x00, 0x51, 0x08, 0x0C, 0x00, 0x51, + 0x08, 0x0D, 0x00, 0x51, 0x08, 0x0E, 0x00, 0x51, 0x08, 0x0F, 0x00, 0x51, + 0x08, 0x10, 0x00, 0x51, 0x08, 0x11, 0x00, 0x51, 0x08, 0x12, 0x00, 0x51, + 0x08, 0x14, 0x00, 0x51, 0x08, 0x15, 0x00, 0x51, 0x08, 0x16, 0x00, 0x51, + 0x08, 0x19, 0x00, 0x51, 0x08, 0x1A, 0x00, 0x51, 0x08, 0x1B, 0x00, 0x51, + 0x08, 0x1C, 0x00, 0x51, 0x08, 0x1D, 0x00, 0x51, 0x08, 0x1E, 0x00, 0x51, + 0x08, 0x1F, 0x00, 0x51, 0x08, 0x20, 0x00, 0x51, 0x08, 0x21, 0x00, 0x51, + 0x08, 0x29, 0x00, 0x51, 0x08, 0x2A, 0x00, 0x51, 0x08, 0x2B, 0x00, 0x51, + 0x08, 0x2C, 0x00, 0x51, 0x08, 0x31, 0x00, 0x5D, 0x08, 0x32, 0x00, 0x5D, + 0x08, 0x52, 0x00, 0x51, 0x08, 0x53, 0x00, 0x51, 0x08, 0x5D, 0x00, 0x51, + 0x08, 0x5E, 0x00, 0x51, 0x08, 0x5F, 0x00, 0x51, 0x08, 0x60, 0x00, 0x45, + 0x08, 0x61, 0x00, 0x45, 0x08, 0x62, 0x00, 0x45, 0x08, 0x63, 0x00, 0x45, + 0x08, 0x64, 0x00, 0x45, 0x08, 0x65, 0x00, 0x45, 0x08, 0x67, 0x00, 0x51, + 0x08, 0x68, 0x00, 0x51, 0x08, 0x69, 0x00, 0x51, 0x08, 0x6A, 0x00, 0x51, + 0x08, 0x9C, 0x00, 0x45, 0x08, 0x9D, 0x00, 0x51, 0x08, 0x9E, 0x00, 0x51, + 0x08, 0x9F, 0x00, 0x51, 0x08, 0xA0, 0x00, 0x51, 0x08, 0xA1, 0x00, 0x51, + 0x08, 0xA2, 0x00, 0x51, 0x08, 0xA3, 0x00, 0x51, 0x08, 0xAD, 0x00, 0x51, + 0x08, 0xB2, 0x00, 0x51, 0x08, 0xEA, 0x00, 0x51, 0x09, 0x00, 0x00, 0x51, + 0x09, 0x01, 0x00, 0x51, 0x09, 0x02, 0x00, 0x51, 0x09, 0x03, 0x00, 0x51, + 0x09, 0x05, 0x00, 0x51, 0x09, 0x06, 0x00, 0x51, 0x09, 0x07, 0x00, 0x51, + 0x09, 0x0C, 0x00, 0x51, 0x09, 0x27, 0x00, 0x5D, 0x09, 0x34, 0x00, 0x51, + 0x09, 0x3B, 0x00, 0x45, 0x09, 0x45, 0x00, 0x51, 0x09, 0x52, 0x00, 0x51, + 0x09, 0x7B, 0x00, 0x51, 0x09, 0x7C, 0x00, 0x51, 0x09, 0x7F, 0x00, 0x51, + 0x09, 0x80, 0x00, 0x51, 0x09, 0x81, 0x00, 0x51, 0x09, 0x83, 0x00, 0x5D, + 0x09, 0x86, 0x00, 0x51, 0x09, 0x88, 0x00, 0x51, 0x09, 0x8A, 0x00, 0x51, + 0x09, 0x8C, 0x00, 0x51, 0x09, 0x8D, 0x00, 0x51, 0x09, 0x93, 0x00, 0x5D, + 0x09, 0x97, 0x00, 0x51, 0x09, 0xC8, 0x00, 0x51, 0x09, 0xC9, 0x00, 0x51, + 0x09, 0xE7, 0x00, 0x51, 0x09, 0xE8, 0x00, 0x51, 0x09, 0xE9, 0x00, 0x51, + 0x09, 0xEA, 0x00, 0x51, 0x09, 0xEF, 0x00, 0x51, 0x09, 0xF6, 0x00, 0x51, + 0x0B, 0x48, 0x00, 0x51, 0x0B, 0x49, 0x00, 0x51, 0x02, 0x07, 0x00, 0x41, + 0x00, 0x0F, 0x00, 0x42, 0x00, 0x0F, 0x00, 0x43, 0x00, 0x0F, 0x00, 0x44, + 0x00, 0x0F, 0x00, 0x45, 0x00, 0x0F, 0x00, 0x46, 0x00, 0x0F, 0x00, 0x47, + 0x00, 0x0F, 0x00, 0x48, 0x00, 0x0F, 0x00, 0x54, 0x00, 0x0F, 0x00, 0x55, + 0x00, 0x0F, 0x00, 0x56, 0x00, 0x0F, 0x00, 0x57, 0x00, 0x0F, 0x00, 0x58, + 0x00, 0x0F, 0x00, 0x59, 0x00, 0x0F, 0x00, 0x5A, 0x00, 0x0F, 0x00, 0x5B, + 0x00, 0x0F, 0x00, 0x5C, 0x00, 0x0F, 0x00, 0x5D, 0x00, 0x0F, 0x00, 0x5E, + 0x00, 0x0F, 0x00, 0x5F, 0x00, 0x0F, 0x00, 0x60, 0x00, 0x0F, 0x00, 0x61, + 0x00, 0x0F, 0x00, 0x62, 0x00, 0x0F, 0x00, 0x63, 0x00, 0x0F, 0x00, 0x64, + 0x00, 0x0F, 0x00, 0x65, 0x00, 0x0F, 0x00, 0x66, 0x00, 0x0F, 0x00, 0x67, + 0x00, 0x0F, 0x00, 0x68, 0x00, 0x0F, 0x00, 0x69, 0x00, 0x0F, 0x00, 0x6A, + 0x00, 0x0F, 0x00, 0x6B, 0x00, 0x0F, 0x00, 0x6C, 0x00, 0x0F, 0x00, 0x6D, + 0x00, 0x0F, 0x00, 0x6E, 0x00, 0x0F, 0x00, 0x6F, 0x00, 0x0F, 0x00, 0x70, + 0x00, 0x0F, 0x00, 0x71, 0x00, 0x0F, 0x00, 0x72, 0x00, 0x0F, 0x00, 0x73, + 0x00, 0x0F, 0x00, 0x74, 0x00, 0x0F, 0x00, 0x75, 0x00, 0x0F, 0x00, 0x76, + 0x00, 0x0F, 0x00, 0x77, 0x00, 0x0F, 0x00, 0x78, 0x00, 0x0F, 0x00, 0x79, + 0x00, 0x0F, 0x00, 0x7B, 0x00, 0x0F, 0x00, 0x84, 0x00, 0x0F, 0x00, 0x85, + 0x00, 0x0F, 0x00, 0x86, 0x00, 0x0F, 0x00, 0x87, 0x00, 0x0F, 0x00, 0x88, + 0x00, 0x0F, 0x00, 0x89, 0x00, 0x0F, 0x00, 0x8B, 0x00, 0x0F, 0x00, 0xA1, + 0x00, 0x0F, 0x00, 0xA2, 0x00, 0x0F, 0x00, 0xA3, 0x00, 0x0F, 0x00, 0xA4, + 0x00, 0x0F, 0x00, 0xA5, 0x00, 0x0F, 0x00, 0xA6, 0x00, 0x0F, 0x00, 0xA7, + 0x00, 0x0F, 0x00, 0xA8, 0x00, 0x0F, 0x00, 0xA9, 0x00, 0x0F, 0x00, 0xAA, + 0x00, 0x0F, 0x00, 0xAB, 0x00, 0x0F, 0x00, 0xAC, 0x00, 0x0F, 0x00, 0xAD, + 0x00, 0x0F, 0x00, 0xAE, 0x00, 0x0F, 0x00, 0xAF, 0x00, 0x0F, 0x00, 0xB0, + 0x00, 0x0F, 0x00, 0xB1, 0x00, 0x0F, 0x00, 0xB2, 0x00, 0x0F, 0x00, 0xB3, + 0x00, 0x0F, 0x00, 0xB4, 0x00, 0x0F, 0x00, 0xB5, 0x00, 0x0F, 0x00, 0xB6, + 0x00, 0x0F, 0x00, 0xB7, 0x00, 0x0F, 0x00, 0xB8, 0x00, 0x0F, 0x00, 0xB9, + 0x00, 0x0F, 0x00, 0xBA, 0x00, 0x0F, 0x00, 0xBB, 0x00, 0x0F, 0x00, 0xBC, + 0x00, 0x0F, 0x00, 0xBD, 0x00, 0x0F, 0x00, 0xBE, 0x00, 0x0F, 0x00, 0xBF, + 0x00, 0x0F, 0x00, 0xC0, 0x00, 0x0F, 0x00, 0xC1, 0x00, 0x0F, 0x00, 0xC2, + 0x00, 0x0F, 0x00, 0xC3, 0x00, 0x0F, 0x00, 0xC4, 0x00, 0x0F, 0x00, 0xC5, + 0x00, 0x0F, 0x00, 0xC6, 0x00, 0x0F, 0x00, 0xCA, 0x00, 0x0F, 0x00, 0xCB, + 0x00, 0x0F, 0x00, 0xCC, 0x00, 0x0F, 0x00, 0xD1, 0x00, 0x0F, 0x00, 0xD2, + 0x00, 0x0F, 0x00, 0xD3, 0x00, 0x0F, 0x00, 0xD6, 0x00, 0x0F, 0x00, 0xD7, + 0x00, 0x0F, 0x00, 0xD8, 0x00, 0x0F, 0x00, 0xD9, 0x00, 0x0F, 0x00, 0xE8, + 0x00, 0x0F, 0x00, 0xEA, 0x00, 0x0F, 0x01, 0x0F, 0x00, 0x0F, 0x01, 0x10, + 0x00, 0x0F, 0x01, 0x11, 0x00, 0x0F, 0x01, 0x12, 0x00, 0x0F, 0x01, 0x13, + 0x00, 0x0F, 0x01, 0x14, 0x00, 0x0F, 0x01, 0x16, 0x00, 0x0F, 0x01, 0x17, + 0x00, 0x0F, 0x01, 0x18, 0x00, 0x0F, 0x01, 0x19, 0x00, 0x0F, 0x01, 0x1A, + 0x00, 0x0F, 0x01, 0x1B, 0x00, 0x0F, 0x01, 0x1C, 0x00, 0x0F, 0x01, 0x1D, + 0x00, 0x0F, 0x01, 0x1E, 0x00, 0x0F, 0x01, 0x1F, 0x00, 0x0F, 0x01, 0x20, + 0x00, 0x0F, 0x01, 0x21, 0x00, 0x0F, 0x01, 0x22, 0x00, 0x0F, 0x01, 0x23, + 0x00, 0x0F, 0x01, 0x24, 0x00, 0x0F, 0x01, 0x25, 0x00, 0x0F, 0x01, 0x26, + 0x00, 0x0F, 0x01, 0x27, 0x00, 0x0F, 0x01, 0x28, 0x00, 0x0F, 0x01, 0x29, + 0x00, 0x0F, 0x01, 0x2A, 0x00, 0x0F, 0x01, 0x2B, 0x00, 0x0F, 0x01, 0x2C, + 0x00, 0x0F, 0x01, 0x2D, 0x00, 0x0F, 0x01, 0x2E, 0x00, 0x0F, 0x01, 0x2F, + 0x00, 0x0F, 0x01, 0x30, 0x00, 0x0F, 0x01, 0x31, 0x00, 0x0F, 0x01, 0x32, + 0x00, 0x0F, 0x01, 0x33, 0x00, 0x0F, 0x01, 0x34, 0x00, 0x0F, 0x01, 0x35, + 0x00, 0x0F, 0x01, 0x37, 0x00, 0x0F, 0x01, 0x38, 0x00, 0x0F, 0x01, 0x39, + 0x00, 0x0F, 0x01, 0x3A, 0x00, 0x0F, 0x01, 0x3B, 0x00, 0x0F, 0x01, 0x3C, + 0x00, 0x0F, 0x01, 0x3D, 0x00, 0x0F, 0x01, 0x3E, 0x00, 0x0F, 0x01, 0x3F, + 0x00, 0x0F, 0x01, 0x40, 0x00, 0x0F, 0x01, 0x77, 0x00, 0x0F, 0x01, 0x78, + 0x00, 0x0F, 0x01, 0x79, 0x00, 0x0F, 0x01, 0x7A, 0x00, 0x0F, 0x01, 0x7B, + 0x00, 0x0F, 0x01, 0x7C, 0x00, 0x0F, 0x01, 0x7D, 0x00, 0x0F, 0x01, 0x80, + 0x00, 0x0F, 0x01, 0x81, 0x00, 0x0F, 0x01, 0x82, 0x00, 0x0F, 0x01, 0x83, + 0x00, 0x0F, 0x01, 0x84, 0x00, 0x0F, 0x01, 0x85, 0x00, 0x0F, 0x01, 0x86, + 0x00, 0x0F, 0x01, 0x87, 0x00, 0x0F, 0x01, 0x88, 0x00, 0x0F, 0x01, 0x89, + 0x00, 0x0F, 0x01, 0x8C, 0x00, 0x0F, 0x01, 0x9A, 0x00, 0x0F, 0x02, 0x1B, + 0x00, 0x19, 0x02, 0x42, 0x00, 0x0F, 0x02, 0x44, 0x00, 0x0F, 0x02, 0x45, + 0x00, 0x0F, 0x02, 0x46, 0x00, 0x0F, 0x02, 0x47, 0x00, 0x0F, 0x02, 0x48, + 0x00, 0x0F, 0x02, 0x49, 0x00, 0x0F, 0x02, 0x88, 0x00, 0x0F, 0x02, 0x8A, + 0x00, 0x0F, 0x02, 0x8B, 0x00, 0x0F, 0x02, 0x8C, 0x00, 0x0F, 0x02, 0x8D, + 0x00, 0x0F, 0x02, 0x8F, 0x00, 0x0F, 0x02, 0x9E, 0x00, 0x0F, 0x02, 0x9F, + 0x00, 0x0F, 0x02, 0xA0, 0x00, 0x0F, 0x02, 0xA1, 0x00, 0x0F, 0x02, 0xA2, + 0x00, 0x0F, 0x02, 0xA3, 0x00, 0x0F, 0x02, 0xA4, 0x00, 0x0F, 0x02, 0xA8, + 0x00, 0x0F, 0x02, 0xA9, 0x00, 0x0F, 0x02, 0xAA, 0x00, 0x0F, 0x02, 0xAB, + 0x00, 0x0F, 0x02, 0xAC, 0x00, 0x0F, 0x02, 0xAD, 0x00, 0x0F, 0x02, 0xAE, + 0x00, 0x0F, 0x02, 0xAF, 0x00, 0x0F, 0x02, 0xB0, 0x00, 0x0F, 0x02, 0xB1, + 0x00, 0x0D, 0x02, 0xB2, 0x00, 0x0D, 0x02, 0xB3, 0x00, 0x0D, 0x02, 0xB7, + 0x00, 0x0D, 0x02, 0xB8, 0x00, 0x0D, 0x02, 0xBA, 0x00, 0x0D, 0x02, 0xBB, + 0x00, 0x0D, 0x02, 0xBC, 0x00, 0x0D, 0x02, 0xBF, 0x00, 0x0D, 0x02, 0xC0, + 0x00, 0x0D, 0x02, 0xC1, 0x00, 0x0D, 0x02, 0xC4, 0x00, 0x0D, 0x02, 0xC5, + 0x00, 0x0D, 0x02, 0xC6, 0x00, 0x0D, 0x02, 0xCB, 0x00, 0x0D, 0x02, 0xCD, + 0x00, 0x0D, 0x02, 0xD6, 0x00, 0x0F, 0x02, 0xD7, 0x00, 0x0F, 0x02, 0xD9, + 0x00, 0x0F, 0x02, 0xDA, 0x00, 0x0F, 0x02, 0xDB, 0x00, 0x0F, 0x02, 0xDC, + 0x00, 0x0F, 0x02, 0xDD, 0x00, 0x0F, 0x02, 0xDF, 0x00, 0x0F, 0x02, 0xE0, + 0x00, 0x0F, 0x02, 0xE1, 0x00, 0x0F, 0x02, 0xE2, 0x00, 0x0F, 0x02, 0xE3, + 0x00, 0x0F, 0x02, 0xE4, 0x00, 0x0F, 0x02, 0xE6, 0x00, 0x0F, 0x02, 0xE7, + 0x00, 0x0F, 0x02, 0xE8, 0x00, 0x0F, 0x02, 0xE9, 0x00, 0x0F, 0x02, 0xEA, + 0x00, 0x0F, 0x02, 0xEB, 0x00, 0x0F, 0x02, 0xEC, 0x00, 0x0F, 0x02, 0xED, + 0x00, 0x0F, 0x02, 0xEE, 0x00, 0x0F, 0x02, 0xEF, 0x00, 0x0F, 0x02, 0xF4, + 0x00, 0x0F, 0x02, 0xF5, 0x00, 0x0F, 0x02, 0xF6, 0x00, 0x0F, 0x02, 0xF7, + 0x00, 0x0F, 0x02, 0xF8, 0x00, 0x0F, 0x02, 0xF9, 0x00, 0x0F, 0x02, 0xFA, + 0x00, 0x0F, 0x02, 0xFB, 0x00, 0x0F, 0x02, 0xFC, 0x00, 0x0F, 0x02, 0xFE, + 0x00, 0x19, 0x02, 0xFF, 0x00, 0x19, 0x03, 0x02, 0x00, 0x19, 0x03, 0x03, + 0x00, 0x19, 0x03, 0x04, 0x00, 0x19, 0x03, 0x05, 0x00, 0x19, 0x03, 0x06, + 0x00, 0x19, 0x03, 0x07, 0x00, 0x19, 0x03, 0x08, 0x00, 0x19, 0x03, 0x09, + 0x00, 0x19, 0x03, 0x0B, 0x00, 0x19, 0x03, 0x0C, 0x00, 0x19, 0x03, 0x0D, + 0x00, 0x19, 0x03, 0x0E, 0x00, 0x19, 0x03, 0x0F, 0x00, 0x19, 0x03, 0x10, + 0x00, 0x19, 0x03, 0x11, 0x00, 0x19, 0x03, 0x12, 0x00, 0x19, 0x03, 0x13, + 0x00, 0x19, 0x03, 0x14, 0x00, 0x19, 0x03, 0x4B, 0x00, 0x19, 0x03, 0x4C, + 0x00, 0x19, 0x03, 0x4D, 0x00, 0x0F, 0x03, 0x4E, 0x00, 0x19, 0x03, 0x4F, + 0x00, 0x19, 0x03, 0x50, 0x00, 0x19, 0x03, 0x53, 0x00, 0x19, 0x03, 0x54, + 0x00, 0x19, 0x03, 0x55, 0x00, 0x19, 0x03, 0x56, 0x00, 0x19, 0x03, 0x5A, + 0x00, 0x19, 0x03, 0x5B, 0x00, 0x19, 0x03, 0x5C, 0x00, 0x19, 0x03, 0x5D, + 0x00, 0x19, 0x03, 0x5E, 0x00, 0x19, 0x03, 0x5F, 0x00, 0x19, 0x03, 0x60, + 0x00, 0x19, 0x03, 0x61, 0x00, 0x19, 0x03, 0x62, 0x00, 0x19, 0x03, 0x63, + 0x00, 0x19, 0x03, 0x64, 0x00, 0x19, 0x03, 0x76, 0x00, 0x0F, 0x03, 0x77, + 0x00, 0x0F, 0x03, 0x87, 0x00, 0x0F, 0x03, 0x88, 0x00, 0x0F, 0x03, 0x89, + 0x00, 0x0F, 0x03, 0x8A, 0x00, 0x0F, 0x03, 0x8B, 0x00, 0x0F, 0x03, 0x8C, + 0x00, 0x0F, 0x03, 0x8D, 0x00, 0x0F, 0x03, 0x8E, 0x00, 0x0F, 0x03, 0x8F, + 0x00, 0x0F, 0x03, 0x90, 0x00, 0x0F, 0x03, 0xB2, 0x00, 0x19, 0x04, 0x07, + 0x00, 0x0F, 0x04, 0x08, 0x00, 0x0F, 0x04, 0x0C, 0x00, 0x0F, 0x04, 0x2A, + 0x00, 0x0F, 0x04, 0x2B, 0x00, 0x0F, 0x04, 0x31, 0x00, 0x0F, 0x04, 0x32, + 0x00, 0x0F, 0x04, 0x33, 0x00, 0x0F, 0x04, 0x36, 0x00, 0x0F, 0x04, 0x39, + 0x00, 0x0F, 0x04, 0x3E, 0x00, 0x0F, 0x04, 0x40, 0x00, 0x0F, 0x04, 0x41, + 0x00, 0x0F, 0x04, 0x43, 0x00, 0x0F, 0x04, 0x44, 0x00, 0x0F, 0x04, 0x46, + 0x00, 0x0F, 0x04, 0x48, 0x00, 0x0F, 0x04, 0x4A, 0x00, 0x0F, 0x04, 0x4B, + 0x00, 0x0F, 0x04, 0x6E, 0x00, 0x19, 0x04, 0x80, 0x00, 0x19, 0x04, 0x81, + 0x00, 0x19, 0x04, 0x82, 0x00, 0x19, 0x04, 0x83, 0x00, 0x19, 0x04, 0x84, + 0x00, 0x19, 0x04, 0x85, 0x00, 0x19, 0x04, 0x86, 0x00, 0x19, 0x04, 0x87, + 0x00, 0x19, 0x04, 0x88, 0x00, 0x19, 0x04, 0x89, 0x00, 0x19, 0x04, 0x8A, + 0x00, 0x19, 0x04, 0x8B, 0x00, 0x19, 0x04, 0x8C, 0x00, 0x19, 0x04, 0x8D, + 0x00, 0x19, 0x04, 0x8E, 0x00, 0x19, 0x04, 0x8F, 0x00, 0x19, 0x04, 0x90, + 0x00, 0x19, 0x04, 0x91, 0x00, 0x19, 0x04, 0x92, 0x00, 0x19, 0x04, 0x93, + 0x00, 0x19, 0x04, 0x94, 0x00, 0x19, 0x04, 0x95, 0x00, 0x19, 0x04, 0x96, + 0x00, 0x19, 0x04, 0x97, 0x00, 0x19, 0x04, 0xAE, 0x00, 0x19, 0x04, 0xAF, + 0x00, 0x19, 0x04, 0xB0, 0x00, 0x19, 0x04, 0xB1, 0x00, 0x19, 0x04, 0xB5, + 0x00, 0x19, 0x04, 0xB6, 0x00, 0x19, 0x04, 0xB7, 0x00, 0x19, 0x04, 0xB8, + 0x00, 0x19, 0x04, 0xB9, 0x00, 0x19, 0x04, 0xBA, 0x00, 0x19, 0x04, 0xBB, + 0x00, 0x19, 0x04, 0xBC, 0x00, 0x19, 0x04, 0xBD, 0x00, 0x19, 0x04, 0xBE, + 0x00, 0x19, 0x04, 0xBF, 0x00, 0x19, 0x04, 0xC0, 0x00, 0x19, 0x04, 0xC1, + 0x00, 0x19, 0x04, 0xC2, 0x00, 0x19, 0x04, 0xC3, 0x00, 0x19, 0x04, 0xC4, + 0x00, 0x19, 0x04, 0xC5, 0x00, 0x19, 0x04, 0xC6, 0x00, 0x19, 0x04, 0xE4, + 0x00, 0x19, 0x04, 0xE5, 0x00, 0x19, 0x04, 0xE6, 0x00, 0x19, 0x04, 0xE8, + 0x00, 0x50, 0x04, 0xEC, 0x00, 0x19, 0x04, 0xED, 0x00, 0x19, 0x04, 0xEE, + 0x00, 0x19, 0x04, 0xEF, 0x00, 0x19, 0x04, 0xF0, 0x00, 0x19, 0x04, 0xF1, + 0x00, 0x19, 0x04, 0xF3, 0x00, 0x50, 0x04, 0xF4, 0x00, 0x50, 0x04, 0xF5, + 0x00, 0x50, 0x04, 0xF6, 0x00, 0x19, 0x04, 0xF7, 0x00, 0x19, 0x04, 0xF8, + 0x00, 0x19, 0x04, 0xF9, 0x00, 0x19, 0x04, 0xFA, 0x00, 0x19, 0x04, 0xFB, + 0x00, 0x19, 0x04, 0xFC, 0x00, 0x19, 0x04, 0xFD, 0x00, 0x19, 0x05, 0x02, + 0x00, 0x19, 0x05, 0x04, 0xFF, 0xB4, 0x05, 0x07, 0x00, 0x19, 0x05, 0x08, + 0x00, 0x19, 0x05, 0x09, 0x00, 0x19, 0x05, 0x0B, 0x00, 0x0D, 0x05, 0x0E, + 0x00, 0x50, 0x05, 0x0F, 0x00, 0x19, 0x05, 0x11, 0x00, 0x19, 0x05, 0x13, + 0x00, 0x19, 0x05, 0x14, 0x00, 0x19, 0x07, 0xEA, 0x00, 0x0F, 0x07, 0xEB, + 0x00, 0x0F, 0x07, 0xEC, 0x00, 0x0F, 0x07, 0xED, 0x00, 0x0F, 0x07, 0xEF, + 0x00, 0x0F, 0x07, 0xF0, 0x00, 0x0F, 0x07, 0xF1, 0x00, 0x0F, 0x07, 0xF2, + 0x00, 0x19, 0x07, 0xF3, 0x00, 0x19, 0x07, 0xF6, 0x00, 0x0F, 0x08, 0x09, + 0x00, 0x0F, 0x08, 0x0A, 0x00, 0x0F, 0x08, 0x0C, 0x00, 0x0F, 0x08, 0x0D, + 0x00, 0x0F, 0x08, 0x0E, 0x00, 0x0F, 0x08, 0x0F, 0x00, 0x0F, 0x08, 0x10, + 0x00, 0x0F, 0x08, 0x11, 0x00, 0x0F, 0x08, 0x12, 0x00, 0x0F, 0x08, 0x14, + 0x00, 0x0F, 0x08, 0x15, 0x00, 0x0F, 0x08, 0x16, 0x00, 0x0F, 0x08, 0x19, + 0x00, 0x0F, 0x08, 0x1A, 0x00, 0x0F, 0x08, 0x1B, 0x00, 0x0F, 0x08, 0x1C, + 0x00, 0x0F, 0x08, 0x1D, 0x00, 0x0F, 0x08, 0x1E, 0x00, 0x0F, 0x08, 0x1F, + 0x00, 0x0F, 0x08, 0x20, 0x00, 0x0F, 0x08, 0x21, 0x00, 0x0F, 0x08, 0x29, + 0x00, 0x0F, 0x08, 0x2A, 0x00, 0x0F, 0x08, 0x2B, 0x00, 0x0F, 0x08, 0x2C, + 0x00, 0x0F, 0x08, 0x52, 0x00, 0x0F, 0x08, 0x53, 0x00, 0x0F, 0x08, 0x5D, + 0x00, 0x0F, 0x08, 0x5E, 0x00, 0x0F, 0x08, 0x5F, 0x00, 0x0F, 0x08, 0x60, + 0x00, 0x0D, 0x08, 0x63, 0x00, 0x0D, 0x08, 0x64, 0x00, 0x0D, 0x08, 0x67, + 0x00, 0x0F, 0x08, 0x68, 0x00, 0x0F, 0x08, 0x69, 0x00, 0x0F, 0x08, 0x6A, + 0x00, 0x0F, 0x08, 0x6B, 0x00, 0x19, 0x08, 0x6C, 0x00, 0x19, 0x08, 0x6D, + 0x00, 0x19, 0x08, 0x6E, 0x00, 0x19, 0x08, 0x76, 0x00, 0x19, 0x08, 0x77, + 0x00, 0x19, 0x08, 0x78, 0x00, 0x19, 0x08, 0x79, 0x00, 0x19, 0x08, 0x9C, + 0x00, 0x0D, 0x08, 0x9D, 0x00, 0x0F, 0x08, 0x9E, 0x00, 0x0F, 0x08, 0x9F, + 0x00, 0x0F, 0x08, 0xA0, 0x00, 0x0F, 0x08, 0xA1, 0x00, 0x0F, 0x08, 0xA2, + 0x00, 0x0F, 0x08, 0xA3, 0x00, 0x0F, 0x08, 0xAD, 0x00, 0x0F, 0x08, 0xB2, + 0x00, 0x0F, 0x08, 0xBC, 0x00, 0x19, 0x08, 0xC0, 0x00, 0x19, 0x08, 0xC3, + 0x00, 0x19, 0x08, 0xC4, 0x00, 0x19, 0x08, 0xC7, 0x00, 0x19, 0x08, 0xC9, + 0x00, 0x19, 0x08, 0xEA, 0x00, 0x0F, 0x09, 0x00, 0x00, 0x0F, 0x09, 0x01, + 0x00, 0x0F, 0x09, 0x02, 0x00, 0x0F, 0x09, 0x03, 0x00, 0x0F, 0x09, 0x05, + 0x00, 0x0F, 0x09, 0x06, 0x00, 0x0F, 0x09, 0x07, 0x00, 0x0F, 0x09, 0x08, + 0x00, 0x19, 0x09, 0x09, 0x00, 0x19, 0x09, 0x0C, 0x00, 0x0F, 0x09, 0x34, + 0x00, 0x0F, 0x09, 0x45, 0x00, 0x0F, 0x09, 0x50, 0x00, 0x19, 0x09, 0x52, + 0x00, 0x0F, 0x09, 0x6E, 0x00, 0x19, 0x09, 0x7B, 0x00, 0x0F, 0x09, 0x7C, + 0x00, 0x0F, 0x09, 0x7F, 0x00, 0x0F, 0x09, 0x80, 0x00, 0x0F, 0x09, 0x81, + 0x00, 0x0F, 0x09, 0x86, 0x00, 0x0F, 0x09, 0x88, 0x00, 0x0F, 0x09, 0x8A, + 0x00, 0x0F, 0x09, 0x8C, 0x00, 0x0F, 0x09, 0x8D, 0x00, 0x0F, 0x09, 0x97, + 0x00, 0x0F, 0x09, 0xA4, 0x00, 0x19, 0x09, 0xA5, 0x00, 0x19, 0x09, 0xA7, + 0x00, 0x19, 0x09, 0xA8, 0x00, 0x19, 0x09, 0xA9, 0x00, 0x19, 0x09, 0xAB, + 0x00, 0x19, 0x09, 0xBF, 0x00, 0x19, 0x09, 0xC0, 0x00, 0x19, 0x09, 0xC5, + 0x00, 0x19, 0x09, 0xC8, 0x00, 0x0F, 0x09, 0xC9, 0x00, 0x0F, 0x09, 0xD3, + 0x00, 0x19, 0x09, 0xD4, 0x00, 0x19, 0x09, 0xE7, 0x00, 0x0F, 0x09, 0xE8, + 0x00, 0x0F, 0x09, 0xE9, 0x00, 0x0F, 0x09, 0xEA, 0x00, 0x0F, 0x09, 0xEF, + 0x00, 0x0F, 0x09, 0xF6, 0x00, 0x0F, 0x0B, 0x49, 0x00, 0x0F, 0x00, 0x02, + 0x00, 0x92, 0x00, 0x02, 0x00, 0x97, 0x00, 0x00, 0x00, 0xA1, 0x00, 0xC8, + 0x00, 0x96, 0x00, 0xCA, 0x00, 0xEA, 0x00, 0xBE, 0x01, 0x0A, 0x01, 0xD4, + 0x00, 0xDF, 0x01, 0xD6, 0x02, 0x55, 0x01, 0xAA, 0x02, 0x57, 0x02, 0x57, + 0x02, 0x2A, 0x02, 0x59, 0x02, 0x59, 0x02, 0x2B, 0x02, 0x5B, 0x02, 0x63, + 0x02, 0x2C, 0x02, 0x66, 0x02, 0x85, 0x02, 0x35, 0x02, 0x87, 0x02, 0x89, + 0x02, 0x55, 0x02, 0x8B, 0x02, 0x8D, 0x02, 0x58, 0x02, 0x8F, 0x02, 0x9B, + 0x02, 0x5B, 0x02, 0x9E, 0x02, 0xCD, 0x02, 0x68, 0x02, 0xCF, 0x02, 0xD7, + 0x02, 0x98, 0x02, 0xD9, 0x02, 0xF3, 0x02, 0xA1, 0x02, 0xF5, 0x02, 0xFC, + 0x02, 0xBC, 0x02, 0xFE, 0x03, 0x07, 0x02, 0xC4, 0x03, 0x09, 0x03, 0x0A, + 0x02, 0xCE, 0x03, 0x0C, 0x03, 0x14, 0x02, 0xD0, 0x03, 0x16, 0x03, 0x48, + 0x02, 0xD9, 0x03, 0x4A, 0x03, 0x64, 0x03, 0x0C, 0x03, 0x67, 0x03, 0xB2, + 0x03, 0x27, 0x03, 0xD2, 0x03, 0xD7, 0x03, 0x73, 0x03, 0xD9, 0x03, 0xF6, + 0x03, 0x79, 0x03, 0xFA, 0x04, 0x06, 0x03, 0x97, 0x04, 0x08, 0x04, 0x0C, + 0x03, 0xA4, 0x04, 0x0E, 0x04, 0x0E, 0x03, 0xA9, 0x04, 0x29, 0x04, 0x2E, + 0x03, 0xAA, 0x04, 0x30, 0x04, 0x39, 0x03, 0xB0, 0x04, 0x3B, 0x04, 0x3B, + 0x03, 0xBA, 0x04, 0x3E, 0x04, 0x48, 0x03, 0xBB, 0x04, 0x4B, 0x04, 0x4C, + 0x03, 0xC6, 0x04, 0x50, 0x04, 0x71, 0x03, 0xC8, 0x04, 0x73, 0x04, 0x73, + 0x03, 0xEA, 0x04, 0x9A, 0x04, 0x9A, 0x03, 0xEB, 0x04, 0x9C, 0x04, 0x9C, + 0x03, 0xEC, 0x04, 0x9F, 0x04, 0xA4, 0x03, 0xED, 0x04, 0xA6, 0x04, 0xB1, + 0x03, 0xF3, 0x04, 0xB3, 0x04, 0xE2, 0x03, 0xFF, 0x04, 0xE4, 0x05, 0x12, + 0x04, 0x2F, 0x05, 0x14, 0x05, 0x18, 0x04, 0x5E, 0x05, 0x1A, 0x05, 0x1C, + 0x04, 0x63, 0x05, 0x25, 0x05, 0x25, 0x04, 0x66, 0x05, 0x2D, 0x05, 0x2F, + 0x04, 0x67, 0x05, 0x32, 0x05, 0x32, 0x04, 0x6A, 0x05, 0x36, 0x05, 0x36, + 0x04, 0x6B, 0x05, 0x39, 0x05, 0x3C, 0x04, 0x6C, 0x05, 0x3F, 0x05, 0x40, + 0x04, 0x70, 0x05, 0x44, 0x05, 0x47, 0x04, 0x72, 0x05, 0x49, 0x05, 0x4C, + 0x04, 0x76, 0x05, 0x68, 0x05, 0x68, 0x04, 0x7A, 0x05, 0x6A, 0x05, 0x6A, + 0x04, 0x7B, 0x05, 0x6C, 0x05, 0x6C, 0x04, 0x7C, 0x05, 0x6F, 0x05, 0x6F, + 0x04, 0x7D, 0x05, 0x80, 0x05, 0x8B, 0x04, 0x7E, 0x05, 0x95, 0x05, 0x95, + 0x04, 0x8A, 0x05, 0x98, 0x05, 0x9D, 0x04, 0x8B, 0x05, 0x9F, 0x05, 0x9F, + 0x04, 0x91, 0x05, 0xA1, 0x05, 0xA4, 0x04, 0x92, 0x05, 0xA6, 0x05, 0xA6, + 0x04, 0x96, 0x05, 0xA8, 0x05, 0xA8, 0x04, 0x97, 0x05, 0xAD, 0x05, 0xAE, + 0x04, 0x98, 0x05, 0xB0, 0x05, 0xB1, 0x04, 0x9A, 0x05, 0xB6, 0x05, 0xBB, + 0x04, 0x9C, 0x05, 0xBD, 0x05, 0xBD, 0x04, 0xA2, 0x05, 0xC1, 0x05, 0xC2, + 0x04, 0xA3, 0x05, 0xC8, 0x05, 0xCF, 0x04, 0xA5, 0x05, 0xD4, 0x05, 0xD4, + 0x04, 0xAD, 0x05, 0xDB, 0x05, 0xDD, 0x04, 0xAE, 0x05, 0xDF, 0x05, 0xDF, + 0x04, 0xB1, 0x05, 0xE2, 0x05, 0xE4, 0x04, 0xB2, 0x05, 0xE6, 0x05, 0xE9, + 0x04, 0xB5, 0x05, 0xEC, 0x05, 0xF6, 0x04, 0xB9, 0x05, 0xF9, 0x06, 0x03, + 0x04, 0xC4, 0x06, 0x06, 0x06, 0x0C, 0x04, 0xCF, 0x06, 0x0E, 0x06, 0x0F, + 0x04, 0xD6, 0x06, 0x15, 0x06, 0x1B, 0x04, 0xD8, 0x06, 0x26, 0x06, 0x2B, + 0x04, 0xDF, 0x06, 0x2D, 0x06, 0x30, 0x04, 0xE5, 0x06, 0x33, 0x06, 0x3E, + 0x04, 0xE9, 0x06, 0x41, 0x06, 0x42, 0x04, 0xF5, 0x06, 0x4B, 0x06, 0x4B, + 0x04, 0xF7, 0x06, 0x4F, 0x06, 0x4F, 0x04, 0xF8, 0x06, 0x51, 0x06, 0x51, + 0x04, 0xF9, 0x06, 0x53, 0x06, 0x7A, 0x04, 0xFA, 0x06, 0x7D, 0x06, 0x81, + 0x05, 0x22, 0x06, 0x84, 0x06, 0x86, 0x05, 0x27, 0x06, 0xAE, 0x06, 0xAE, + 0x05, 0x2A, 0x07, 0x06, 0x07, 0x0A, 0x05, 0x2B, 0x07, 0x1E, 0x07, 0x22, + 0x05, 0x30, 0x07, 0x33, 0x07, 0x33, 0x05, 0x35, 0x07, 0x37, 0x07, 0x37, + 0x05, 0x36, 0x07, 0x3A, 0x07, 0x41, 0x05, 0x37, 0x07, 0x55, 0x07, 0x56, + 0x05, 0x3F, 0x07, 0x5C, 0x07, 0x5C, 0x05, 0x41, 0x07, 0xE8, 0x07, 0xE8, + 0x05, 0x42, 0x07, 0xEA, 0x07, 0xF6, 0x05, 0x43, 0x07, 0xF8, 0x07, 0xFE, + 0x05, 0x50, 0x08, 0x01, 0x08, 0x46, 0x05, 0x57, 0x08, 0x4C, 0x08, 0x9D, + 0x05, 0x9D, 0x08, 0x9F, 0x08, 0xA3, 0x05, 0xEF, 0x08, 0xAD, 0x08, 0xB0, + 0x05, 0xF4, 0x08, 0xB2, 0x08, 0xB3, 0x05, 0xF8, 0x08, 0xB9, 0x08, 0xB9, + 0x05, 0xFA, 0x08, 0xBC, 0x08, 0xC0, 0x05, 0xFB, 0x08, 0xC2, 0x08, 0xC7, + 0x06, 0x00, 0x08, 0xC9, 0x08, 0xCF, 0x06, 0x06, 0x08, 0xD1, 0x08, 0xD3, + 0x06, 0x0D, 0x08, 0xE9, 0x08, 0xEA, 0x06, 0x10, 0x08, 0xFE, 0x08, 0xFE, + 0x06, 0x12, 0x09, 0x00, 0x09, 0x0C, 0x06, 0x13, 0x09, 0x0E, 0x09, 0x15, + 0x06, 0x20, 0x09, 0x1A, 0x09, 0x1A, 0x06, 0x28, 0x09, 0x1E, 0x09, 0x1E, + 0x06, 0x29, 0x09, 0x27, 0x09, 0x27, 0x06, 0x2A, 0x09, 0x34, 0x09, 0x34, + 0x06, 0x2B, 0x09, 0x3E, 0x09, 0x3E, 0x06, 0x2C, 0x09, 0x43, 0x09, 0x43, + 0x06, 0x2D, 0x09, 0x45, 0x09, 0x45, 0x06, 0x2E, 0x09, 0x50, 0x09, 0x52, + 0x06, 0x2F, 0x09, 0x59, 0x09, 0x59, 0x06, 0x32, 0x09, 0x5C, 0x09, 0x5C, + 0x06, 0x33, 0x09, 0x6D, 0x09, 0x6E, 0x06, 0x34, 0x09, 0x70, 0x09, 0x70, + 0x06, 0x36, 0x09, 0x7B, 0x09, 0x83, 0x06, 0x37, 0x09, 0x85, 0x09, 0x8A, + 0x06, 0x40, 0x09, 0x8D, 0x09, 0x8D, 0x06, 0x46, 0x09, 0x8F, 0x09, 0x8F, + 0x06, 0x47, 0x09, 0x91, 0x09, 0x95, 0x06, 0x48, 0x09, 0x97, 0x09, 0x98, + 0x06, 0x4D, 0x09, 0x9B, 0x09, 0x9C, 0x06, 0x4F, 0x09, 0xA1, 0x09, 0xA1, + 0x06, 0x51, 0x09, 0xA3, 0x09, 0xA9, 0x06, 0x52, 0x09, 0xAB, 0x09, 0xAC, + 0x06, 0x59, 0x09, 0xB2, 0x09, 0xB2, 0x06, 0x5B, 0x09, 0xB4, 0x09, 0xB8, + 0x06, 0x5C, 0x09, 0xBA, 0x09, 0xBC, 0x06, 0x61, 0x09, 0xBF, 0x09, 0xC9, + 0x06, 0x64, 0x09, 0xCF, 0x09, 0xCF, 0x06, 0x6F, 0x09, 0xD4, 0x09, 0xD4, + 0x06, 0x70, 0x09, 0xE7, 0x09, 0xF2, 0x06, 0x71, 0x09, 0xF6, 0x09, 0xF6, + 0x06, 0x7D, 0x0A, 0x15, 0x0A, 0x15, 0x06, 0x7E, 0x0A, 0x2F, 0x0A, 0x30, + 0x06, 0x7F, 0x0B, 0x42, 0x0B, 0x42, 0x06, 0x81, 0x0B, 0x48, 0x0B, 0x49, + 0x06, 0x82, 0x00, 0x02, 0x01, 0xF5, 0x00, 0x02, 0x00, 0x40, 0x00, 0x05, + 0x00, 0x41, 0x00, 0x48, 0x00, 0x01, 0x00, 0x49, 0x00, 0x53, 0x00, 0x04, + 0x00, 0x54, 0x00, 0x79, 0x00, 0x01, 0x00, 0x7B, 0x00, 0x7B, 0x00, 0x01, + 0x00, 0x84, 0x00, 0x89, 0x00, 0x01, 0x00, 0x8A, 0x00, 0x8A, 0x00, 0x1C, + 0x00, 0x8B, 0x00, 0x8B, 0x00, 0x01, 0x00, 0x8D, 0x00, 0x97, 0x00, 0x04, + 0x00, 0xA1, 0x00, 0xC6, 0x00, 0x01, 0x00, 0xC7, 0x00, 0xC8, 0x00, 0x17, + 0x00, 0xCA, 0x00, 0xCC, 0x00, 0x01, 0x00, 0xCD, 0x00, 0xD0, 0x00, 0x17, + 0x00, 0xD1, 0x00, 0xD3, 0x00, 0x01, 0x00, 0xD4, 0x00, 0xD5, 0x00, 0x17, + 0x00, 0xD6, 0x00, 0xD9, 0x00, 0x01, 0x00, 0xDB, 0x00, 0xDB, 0x00, 0x17, + 0x00, 0xE4, 0x00, 0xE5, 0x00, 0x17, 0x00, 0xE8, 0x00, 0xE8, 0x00, 0x01, + 0x00, 0xE9, 0x00, 0xE9, 0x00, 0x17, 0x00, 0xEA, 0x00, 0xEA, 0x00, 0x01, + 0x01, 0x0A, 0x01, 0x0E, 0x00, 0x2A, 0x01, 0x0F, 0x01, 0x14, 0x00, 0x01, + 0x01, 0x15, 0x01, 0x15, 0x00, 0x0F, 0x01, 0x16, 0x01, 0x35, 0x00, 0x01, + 0x01, 0x36, 0x01, 0x36, 0x00, 0x1C, 0x01, 0x37, 0x01, 0x40, 0x00, 0x01, + 0x01, 0x41, 0x01, 0x76, 0x00, 0x04, 0x01, 0x77, 0x01, 0x7D, 0x00, 0x01, + 0x01, 0x7E, 0x01, 0x7F, 0x00, 0x04, 0x01, 0x80, 0x01, 0x89, 0x00, 0x01, + 0x01, 0x8A, 0x01, 0x8B, 0x00, 0x15, 0x01, 0x8C, 0x01, 0x8C, 0x00, 0x01, + 0x01, 0x8D, 0x01, 0x99, 0x00, 0x13, 0x01, 0x9A, 0x01, 0x9A, 0x00, 0x01, + 0x01, 0x9B, 0x01, 0xA3, 0x00, 0x0F, 0x01, 0xA5, 0x01, 0xA7, 0x00, 0x0F, + 0x01, 0xA8, 0x01, 0xC7, 0x00, 0x09, 0x01, 0xC8, 0x01, 0xCA, 0x00, 0x1D, + 0x01, 0xCB, 0x01, 0xD1, 0x00, 0x22, 0x01, 0xD2, 0x01, 0xD7, 0x00, 0x14, + 0x01, 0xD8, 0x01, 0xE6, 0x00, 0x0E, 0x01, 0xEB, 0x01, 0xEC, 0x00, 0x0E, + 0x01, 0xEF, 0x01, 0xEF, 0x00, 0x0E, 0x01, 0xF0, 0x01, 0xFA, 0x00, 0x1A, + 0x01, 0xFB, 0x02, 0x1A, 0x00, 0x07, 0x02, 0x1B, 0x02, 0x1B, 0x00, 0x03, + 0x02, 0x1C, 0x02, 0x22, 0x00, 0x07, 0x02, 0x23, 0x02, 0x41, 0x00, 0x02, + 0x02, 0x42, 0x02, 0x42, 0x00, 0x01, 0x02, 0x44, 0x02, 0x49, 0x00, 0x01, + 0x02, 0x4A, 0x02, 0x64, 0x00, 0x02, 0x02, 0x65, 0x02, 0x65, 0x00, 0x33, + 0x02, 0x66, 0x02, 0x85, 0x00, 0x02, 0x02, 0x87, 0x02, 0x87, 0x00, 0x2C, + 0x02, 0x88, 0x02, 0x88, 0x00, 0x01, 0x02, 0x89, 0x02, 0x89, 0x00, 0x2C, + 0x02, 0x8A, 0x02, 0x8D, 0x00, 0x01, 0x02, 0x8F, 0x02, 0x8F, 0x00, 0x01, + 0x02, 0x90, 0x02, 0x91, 0x00, 0x2C, 0x02, 0x92, 0x02, 0x9B, 0x00, 0x02, + 0x02, 0x9E, 0x02, 0xA4, 0x00, 0x01, 0x02, 0xA5, 0x02, 0xA5, 0x00, 0x08, + 0x02, 0xA6, 0x02, 0xA7, 0x00, 0x06, 0x02, 0xA8, 0x02, 0xB0, 0x00, 0x01, + 0x02, 0xB1, 0x02, 0xB3, 0x00, 0x11, 0x02, 0xB4, 0x02, 0xB6, 0x00, 0x23, + 0x02, 0xB7, 0x02, 0xB8, 0x00, 0x11, 0x02, 0xB9, 0x02, 0xB9, 0x00, 0x06, + 0x02, 0xBA, 0x02, 0xBC, 0x00, 0x11, 0x02, 0xBD, 0x02, 0xBE, 0x00, 0x23, + 0x02, 0xBF, 0x02, 0xC1, 0x00, 0x11, 0x02, 0xC2, 0x02, 0xC2, 0x00, 0x5B, + 0x02, 0xC3, 0x02, 0xC3, 0x00, 0x23, 0x02, 0xC4, 0x02, 0xC6, 0x00, 0x11, + 0x02, 0xC7, 0x02, 0xC8, 0x00, 0x1C, 0x02, 0xC9, 0x02, 0xCA, 0x00, 0x06, + 0x02, 0xCB, 0x02, 0xCB, 0x00, 0x11, 0x02, 0xCC, 0x02, 0xCC, 0x00, 0x23, + 0x02, 0xCD, 0x02, 0xCD, 0x00, 0x11, 0x02, 0xCF, 0x02, 0xCF, 0x00, 0x1C, + 0x02, 0xD2, 0x02, 0xD5, 0x00, 0x1C, 0x02, 0xD6, 0x02, 0xD7, 0x00, 0x01, + 0x02, 0xD9, 0x02, 0xDD, 0x00, 0x01, 0x02, 0xDE, 0x02, 0xDE, 0x00, 0x1F, + 0x02, 0xDF, 0x02, 0xE4, 0x00, 0x01, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x06, + 0x02, 0xE6, 0x02, 0xEF, 0x00, 0x01, 0x02, 0xF0, 0x02, 0xF3, 0x00, 0x06, + 0x02, 0xF4, 0x02, 0xFC, 0x00, 0x01, 0x02, 0xFE, 0x02, 0xFF, 0x00, 0x03, + 0x03, 0x00, 0x03, 0x01, 0x00, 0x08, 0x03, 0x02, 0x03, 0x09, 0x00, 0x03, + 0x03, 0x0A, 0x03, 0x0A, 0x00, 0x1C, 0x03, 0x0B, 0x03, 0x14, 0x00, 0x03, + 0x03, 0x16, 0x03, 0x4A, 0x00, 0x02, 0x03, 0x4B, 0x03, 0x4C, 0x00, 0x03, + 0x03, 0x4D, 0x03, 0x4D, 0x00, 0x01, 0x03, 0x4E, 0x03, 0x50, 0x00, 0x03, + 0x03, 0x51, 0x03, 0x52, 0x00, 0x02, 0x03, 0x53, 0x03, 0x56, 0x00, 0x03, + 0x03, 0x59, 0x03, 0x59, 0x00, 0x06, 0x03, 0x5A, 0x03, 0x64, 0x00, 0x03, + 0x03, 0x67, 0x03, 0x75, 0x00, 0x0C, 0x03, 0x76, 0x03, 0x77, 0x00, 0x01, + 0x03, 0x78, 0x03, 0x86, 0x00, 0x06, 0x03, 0x87, 0x03, 0x90, 0x00, 0x01, + 0x03, 0x91, 0x03, 0x94, 0x00, 0x08, 0x03, 0x95, 0x03, 0x95, 0x00, 0x5E, + 0x03, 0x96, 0x03, 0xB1, 0x00, 0x08, 0x03, 0xB2, 0x03, 0xB2, 0x00, 0x03, + 0x03, 0xD2, 0x03, 0xD2, 0x00, 0x0A, 0x03, 0xD3, 0x03, 0xD3, 0x00, 0x05, + 0x03, 0xD4, 0x03, 0xD5, 0x00, 0x0A, 0x03, 0xD6, 0x03, 0xD7, 0x00, 0x21, + 0x03, 0xD9, 0x03, 0xDE, 0x00, 0x21, 0x03, 0xDF, 0x03, 0xE2, 0x00, 0x1F, + 0x03, 0xE3, 0x03, 0xF5, 0x00, 0x0A, 0x03, 0xF6, 0x03, 0xF6, 0x00, 0x05, + 0x03, 0xFA, 0x03, 0xFB, 0x00, 0x0A, 0x03, 0xFC, 0x04, 0x06, 0x00, 0x1B, + 0x04, 0x07, 0x04, 0x08, 0x00, 0x01, 0x04, 0x09, 0x04, 0x09, 0x00, 0x29, + 0x04, 0x0A, 0x04, 0x0A, 0x00, 0x04, 0x04, 0x0C, 0x04, 0x0C, 0x00, 0x01, + 0x04, 0x0E, 0x04, 0x0E, 0x00, 0x04, 0x04, 0x10, 0x04, 0x10, 0x00, 0x4C, + 0x04, 0x29, 0x04, 0x29, 0x00, 0x1D, 0x04, 0x2A, 0x04, 0x2B, 0x00, 0x01, + 0x04, 0x2D, 0x04, 0x2D, 0x00, 0x34, 0x04, 0x2E, 0x04, 0x2E, 0x00, 0x14, + 0x04, 0x30, 0x04, 0x30, 0x00, 0x4D, 0x04, 0x31, 0x04, 0x33, 0x00, 0x01, + 0x04, 0x34, 0x04, 0x34, 0x00, 0x34, 0x04, 0x35, 0x04, 0x35, 0x00, 0x04, + 0x04, 0x36, 0x04, 0x36, 0x00, 0x01, 0x04, 0x37, 0x04, 0x37, 0x00, 0x1D, + 0x04, 0x38, 0x04, 0x38, 0x00, 0x04, 0x04, 0x39, 0x04, 0x39, 0x00, 0x01, + 0x04, 0x3A, 0x04, 0x3A, 0x00, 0x0F, 0x04, 0x3E, 0x04, 0x3E, 0x00, 0x01, + 0x04, 0x3F, 0x04, 0x3F, 0x00, 0x0F, 0x04, 0x40, 0x04, 0x41, 0x00, 0x01, + 0x04, 0x42, 0x04, 0x42, 0x00, 0x0F, 0x04, 0x43, 0x04, 0x44, 0x00, 0x01, + 0x04, 0x45, 0x04, 0x45, 0x00, 0x34, 0x04, 0x46, 0x04, 0x46, 0x00, 0x01, + 0x04, 0x47, 0x04, 0x47, 0x00, 0x04, 0x04, 0x48, 0x04, 0x48, 0x00, 0x01, + 0x04, 0x4A, 0x04, 0x4B, 0x00, 0x01, 0x04, 0x4C, 0x04, 0x4C, 0x00, 0x04, + 0x04, 0x51, 0x04, 0x51, 0x00, 0x1D, 0x04, 0x52, 0x04, 0x52, 0x00, 0x0F, + 0x04, 0x53, 0x04, 0x6D, 0x00, 0x02, 0x04, 0x6E, 0x04, 0x6E, 0x00, 0x03, + 0x04, 0x6F, 0x04, 0x6F, 0x00, 0x59, 0x04, 0x70, 0x04, 0x70, 0x00, 0x3C, + 0x04, 0x71, 0x04, 0x71, 0x00, 0x0C, 0x04, 0x72, 0x04, 0x72, 0x00, 0x1E, + 0x04, 0x73, 0x04, 0x73, 0x00, 0x0C, 0x04, 0x74, 0x04, 0x7E, 0x00, 0x1E, + 0x04, 0x7F, 0x04, 0x7F, 0x00, 0x69, 0x04, 0x80, 0x04, 0x97, 0x00, 0x03, + 0x04, 0x9A, 0x04, 0x9A, 0x00, 0x16, 0x04, 0x9C, 0x04, 0x9C, 0x00, 0x16, + 0x04, 0x9F, 0x04, 0xA4, 0x00, 0x16, 0x04, 0xA6, 0x04, 0xAA, 0x00, 0x16, + 0x04, 0xAB, 0x04, 0xAB, 0x00, 0x43, 0x04, 0xAD, 0x04, 0xAD, 0x00, 0x06, + 0x04, 0xAE, 0x04, 0xB1, 0x00, 0x03, 0x04, 0xB2, 0x04, 0xB2, 0x00, 0x3C, + 0x04, 0xB3, 0x04, 0xB3, 0x00, 0x02, 0x04, 0xB4, 0x04, 0xB4, 0x00, 0x06, + 0x04, 0xB5, 0x04, 0xC6, 0x00, 0x03, 0x04, 0xC7, 0x04, 0xC8, 0x00, 0x02, + 0x04, 0xC9, 0x04, 0xC9, 0x00, 0x60, 0x04, 0xCA, 0x04, 0xE1, 0x00, 0x0D, + 0x04, 0xE2, 0x04, 0xE2, 0x00, 0x0A, 0x04, 0xE3, 0x04, 0xE3, 0x00, 0x4F, + 0x04, 0xE4, 0x04, 0xE6, 0x00, 0x03, 0x04, 0xE7, 0x04, 0xE7, 0x00, 0x06, + 0x04, 0xE8, 0x04, 0xE8, 0x00, 0x2B, 0x04, 0xE9, 0x04, 0xEA, 0x00, 0x1F, + 0x04, 0xEB, 0x04, 0xEB, 0x00, 0x02, 0x04, 0xEC, 0x04, 0xF1, 0x00, 0x03, + 0x04, 0xF2, 0x04, 0xF2, 0x00, 0x06, 0x04, 0xF3, 0x04, 0xF5, 0x00, 0x2B, + 0x04, 0xF6, 0x04, 0xFD, 0x00, 0x03, 0x04, 0xFE, 0x04, 0xFE, 0x00, 0x06, + 0x04, 0xFF, 0x04, 0xFF, 0x00, 0x02, 0x05, 0x00, 0x05, 0x01, 0x00, 0x1F, + 0x05, 0x02, 0x05, 0x02, 0x00, 0x03, 0x05, 0x03, 0x05, 0x03, 0x00, 0x08, + 0x05, 0x04, 0x05, 0x04, 0x00, 0x51, 0x05, 0x05, 0x05, 0x06, 0x00, 0x07, + 0x05, 0x07, 0x05, 0x09, 0x00, 0x03, 0x05, 0x0A, 0x05, 0x0A, 0x00, 0x06, + 0x05, 0x0B, 0x05, 0x0B, 0x00, 0x11, 0x05, 0x0C, 0x05, 0x0D, 0x00, 0x06, + 0x05, 0x0E, 0x05, 0x0E, 0x00, 0x2B, 0x05, 0x0F, 0x05, 0x0F, 0x00, 0x03, + 0x05, 0x10, 0x05, 0x10, 0x00, 0x02, 0x05, 0x11, 0x05, 0x11, 0x00, 0x03, + 0x05, 0x12, 0x05, 0x12, 0x00, 0x0C, 0x05, 0x13, 0x05, 0x14, 0x00, 0x03, + 0x05, 0x15, 0x05, 0x16, 0x00, 0x02, 0x05, 0x17, 0x05, 0x19, 0x00, 0x06, + 0x05, 0x1A, 0x05, 0x1A, 0x00, 0x0A, 0x05, 0x1B, 0x05, 0x1B, 0x00, 0x52, + 0x05, 0x1C, 0x05, 0x1C, 0x00, 0x33, 0x05, 0x25, 0x05, 0x25, 0x00, 0x15, + 0x05, 0x2D, 0x05, 0x2F, 0x00, 0x24, 0x05, 0x36, 0x05, 0x36, 0x00, 0x15, + 0x05, 0x39, 0x05, 0x3A, 0x00, 0x15, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x3A, + 0x05, 0x3C, 0x05, 0x3C, 0x00, 0x46, 0x05, 0x3F, 0x05, 0x3F, 0x00, 0x49, + 0x05, 0x40, 0x05, 0x40, 0x00, 0x3D, 0x05, 0x43, 0x05, 0x43, 0x00, 0x3A, + 0x05, 0x44, 0x05, 0x44, 0x00, 0x62, 0x05, 0x45, 0x05, 0x45, 0x00, 0x53, + 0x05, 0x47, 0x05, 0x47, 0x00, 0x3A, 0x05, 0x48, 0x05, 0x48, 0x00, 0x46, + 0x05, 0x49, 0x05, 0x49, 0x00, 0x49, 0x05, 0x4A, 0x05, 0x4A, 0x00, 0x3D, + 0x05, 0x4B, 0x05, 0x4B, 0x00, 0x64, 0x05, 0x4C, 0x05, 0x4C, 0x00, 0x45, + 0x05, 0x69, 0x05, 0x69, 0x00, 0x26, 0x05, 0x6B, 0x05, 0x6B, 0x00, 0x26, + 0x05, 0x6D, 0x05, 0x6D, 0x00, 0x26, 0x05, 0x6F, 0x05, 0x6F, 0x00, 0x10, + 0x05, 0x80, 0x05, 0x83, 0x00, 0x12, 0x05, 0x84, 0x05, 0x85, 0x00, 0x10, + 0x05, 0x86, 0x05, 0x86, 0x00, 0x19, 0x05, 0x87, 0x05, 0x87, 0x00, 0x10, + 0x05, 0x88, 0x05, 0x89, 0x00, 0x12, 0x05, 0x8A, 0x05, 0x8A, 0x00, 0x10, + 0x05, 0x8B, 0x05, 0x8B, 0x00, 0x19, 0x05, 0x90, 0x05, 0x90, 0x00, 0x56, + 0x05, 0x95, 0x05, 0x95, 0x00, 0x39, 0x05, 0x98, 0x05, 0x98, 0x00, 0x42, + 0x05, 0x99, 0x05, 0x99, 0x00, 0x39, 0x05, 0x9A, 0x05, 0x9A, 0x00, 0x42, + 0x05, 0x9B, 0x05, 0x9B, 0x00, 0x36, 0x05, 0x9C, 0x05, 0x9C, 0x00, 0x37, + 0x05, 0x9D, 0x05, 0x9D, 0x00, 0x36, 0x05, 0x9F, 0x05, 0x9F, 0x00, 0x37, + 0x05, 0xA1, 0x05, 0xA1, 0x00, 0x36, 0x05, 0xA2, 0x05, 0xA2, 0x00, 0x37, + 0x05, 0xA3, 0x05, 0xA3, 0x00, 0x24, 0x05, 0xA5, 0x05, 0xA5, 0x00, 0x26, + 0x05, 0xA7, 0x05, 0xA7, 0x00, 0x26, 0x05, 0xA9, 0x05, 0xA9, 0x00, 0x26, + 0x05, 0xAD, 0x05, 0xAD, 0x00, 0x65, 0x05, 0xAE, 0x05, 0xAE, 0x00, 0x15, + 0x05, 0xB0, 0x05, 0xB0, 0x00, 0x4E, 0x05, 0xB1, 0x05, 0xB1, 0x00, 0x10, + 0x05, 0xB6, 0x05, 0xBA, 0x00, 0x19, 0x05, 0xBB, 0x05, 0xBB, 0x00, 0x50, + 0x05, 0xBD, 0x05, 0xBD, 0x00, 0x10, 0x05, 0xC1, 0x05, 0xC2, 0x00, 0x19, + 0x05, 0xC8, 0x05, 0xC8, 0x00, 0x32, 0x05, 0xC9, 0x05, 0xC9, 0x00, 0x2D, + 0x05, 0xCA, 0x05, 0xCB, 0x00, 0x2E, 0x05, 0xCC, 0x05, 0xCC, 0x00, 0x32, + 0x05, 0xCD, 0x05, 0xCD, 0x00, 0x2D, 0x05, 0xCE, 0x05, 0xCF, 0x00, 0x28, + 0x05, 0xD4, 0x05, 0xD4, 0x00, 0x2D, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x25, + 0x05, 0xDF, 0x05, 0xE2, 0x00, 0x20, 0x05, 0xE3, 0x05, 0xE3, 0x00, 0x10, + 0x05, 0xE4, 0x05, 0xE4, 0x00, 0x2E, 0x05, 0xE6, 0x05, 0xE6, 0x00, 0x40, + 0x05, 0xE7, 0x05, 0xE7, 0x00, 0x41, 0x05, 0xE8, 0x05, 0xE8, 0x00, 0x40, + 0x05, 0xE9, 0x05, 0xE9, 0x00, 0x41, 0x05, 0xEC, 0x05, 0xEF, 0x00, 0x12, + 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x10, 0x05, 0xF2, 0x05, 0xF2, 0x00, 0x19, + 0x05, 0xF3, 0x05, 0xF3, 0x00, 0x10, 0x05, 0xF4, 0x05, 0xF5, 0x00, 0x12, + 0x05, 0xF6, 0x05, 0xF6, 0x00, 0x10, 0x05, 0xF9, 0x05, 0xFC, 0x00, 0x12, + 0x05, 0xFD, 0x05, 0xFE, 0x00, 0x10, 0x05, 0xFF, 0x05, 0xFF, 0x00, 0x19, + 0x06, 0x00, 0x06, 0x00, 0x00, 0x10, 0x06, 0x01, 0x06, 0x02, 0x00, 0x12, + 0x06, 0x03, 0x06, 0x04, 0x00, 0x10, 0x06, 0x06, 0x06, 0x07, 0x00, 0x38, + 0x06, 0x08, 0x06, 0x09, 0x00, 0x35, 0x06, 0x0A, 0x06, 0x0A, 0x00, 0x19, + 0x06, 0x0B, 0x06, 0x0B, 0x00, 0x47, 0x06, 0x0C, 0x06, 0x0C, 0x00, 0x24, + 0x06, 0x0E, 0x06, 0x0E, 0x00, 0x47, 0x06, 0x0F, 0x06, 0x0F, 0x00, 0x38, + 0x06, 0x15, 0x06, 0x15, 0x00, 0x35, 0x06, 0x16, 0x06, 0x19, 0x00, 0x30, + 0x06, 0x1A, 0x06, 0x1A, 0x00, 0x45, 0x06, 0x1B, 0x06, 0x1B, 0x00, 0x15, + 0x06, 0x21, 0x06, 0x21, 0x00, 0x5C, 0x06, 0x26, 0x06, 0x26, 0x00, 0x2F, + 0x06, 0x27, 0x06, 0x29, 0x00, 0x27, 0x06, 0x2A, 0x06, 0x2A, 0x00, 0x57, + 0x06, 0x2B, 0x06, 0x2B, 0x00, 0x27, 0x06, 0x2C, 0x06, 0x2C, 0x00, 0x2F, + 0x06, 0x2D, 0x06, 0x2D, 0x00, 0x5A, 0x06, 0x2E, 0x06, 0x2E, 0x00, 0x5D, + 0x06, 0x2F, 0x06, 0x30, 0x00, 0x2F, 0x06, 0x31, 0x06, 0x32, 0x00, 0x31, + 0x06, 0x33, 0x06, 0x33, 0x00, 0x27, 0x06, 0x34, 0x06, 0x34, 0x00, 0x31, + 0x06, 0x35, 0x06, 0x35, 0x00, 0x27, 0x06, 0x36, 0x06, 0x36, 0x00, 0x31, + 0x06, 0x37, 0x06, 0x37, 0x00, 0x61, 0x06, 0x38, 0x06, 0x38, 0x00, 0x66, + 0x06, 0x3A, 0x06, 0x3A, 0x00, 0x4A, 0x06, 0x3B, 0x06, 0x3B, 0x00, 0x67, + 0x06, 0x3C, 0x06, 0x3C, 0x00, 0x68, 0x06, 0x3D, 0x06, 0x3D, 0x00, 0x4A, + 0x06, 0x46, 0x06, 0x47, 0x00, 0x3F, 0x06, 0x50, 0x06, 0x50, 0x00, 0x3B, + 0x06, 0x52, 0x06, 0x52, 0x00, 0x3B, 0x06, 0x53, 0x06, 0x54, 0x00, 0x44, + 0x06, 0x55, 0x06, 0x55, 0x00, 0x55, 0x06, 0x57, 0x06, 0x6F, 0x00, 0x0B, + 0x06, 0x70, 0x06, 0x75, 0x00, 0x18, 0x06, 0x77, 0x06, 0x78, 0x00, 0x3E, + 0x06, 0x7A, 0x06, 0x7A, 0x00, 0x18, 0x06, 0x7C, 0x06, 0x7C, 0x00, 0x63, + 0x06, 0x7D, 0x06, 0x81, 0x00, 0x18, 0x06, 0x84, 0x06, 0x86, 0x00, 0x18, + 0x06, 0x87, 0x06, 0x87, 0x00, 0x58, 0x06, 0xAE, 0x06, 0xAE, 0x00, 0x54, + 0x06, 0xFF, 0x06, 0xFF, 0x00, 0x15, 0x07, 0x0B, 0x07, 0x0D, 0x00, 0x10, + 0x07, 0x0E, 0x07, 0x0F, 0x00, 0x12, 0x07, 0x33, 0x07, 0x33, 0x00, 0x29, + 0x07, 0x37, 0x07, 0x37, 0x00, 0x29, 0x07, 0x3A, 0x07, 0x3A, 0x00, 0x29, + 0x07, 0x3B, 0x07, 0x3C, 0x00, 0x24, 0x07, 0x3D, 0x07, 0x41, 0x00, 0x15, + 0x07, 0x55, 0x07, 0x55, 0x00, 0x5F, 0x07, 0x5C, 0x07, 0x5C, 0x00, 0x15, + 0x07, 0xE8, 0x07, 0xE8, 0x00, 0x04, 0x07, 0xEA, 0x07, 0xED, 0x00, 0x01, + 0x07, 0xEE, 0x07, 0xEE, 0x00, 0x13, 0x07, 0xEF, 0x07, 0xF1, 0x00, 0x01, + 0x07, 0xF2, 0x07, 0xF3, 0x00, 0x03, 0x07, 0xF4, 0x07, 0xF4, 0x00, 0x0C, + 0x07, 0xF5, 0x07, 0xF5, 0x00, 0x06, 0x07, 0xF6, 0x07, 0xF6, 0x00, 0x01, + 0x07, 0xF8, 0x07, 0xF8, 0x00, 0x25, 0x07, 0xF9, 0x07, 0xFA, 0x00, 0x20, + 0x07, 0xFB, 0x07, 0xFB, 0x00, 0x32, 0x07, 0xFC, 0x07, 0xFC, 0x00, 0x2D, + 0x07, 0xFD, 0x07, 0xFD, 0x00, 0x32, 0x07, 0xFE, 0x07, 0xFE, 0x00, 0x2D, + 0x08, 0x01, 0x08, 0x02, 0x00, 0x28, 0x08, 0x03, 0x08, 0x08, 0x00, 0x05, + 0x08, 0x09, 0x08, 0x0A, 0x00, 0x01, 0x08, 0x0B, 0x08, 0x0B, 0x00, 0x04, + 0x08, 0x0C, 0x08, 0x12, 0x00, 0x01, 0x08, 0x13, 0x08, 0x13, 0x00, 0x04, + 0x08, 0x14, 0x08, 0x16, 0x00, 0x01, 0x08, 0x17, 0x08, 0x18, 0x00, 0x17, + 0x08, 0x19, 0x08, 0x21, 0x00, 0x01, 0x08, 0x22, 0x08, 0x28, 0x00, 0x04, + 0x08, 0x29, 0x08, 0x2C, 0x00, 0x01, 0x08, 0x2D, 0x08, 0x30, 0x00, 0x13, + 0x08, 0x31, 0x08, 0x32, 0x00, 0x0F, 0x08, 0x33, 0x08, 0x3B, 0x00, 0x09, + 0x08, 0x3C, 0x08, 0x3C, 0x00, 0x1D, 0x08, 0x3D, 0x08, 0x3F, 0x00, 0x22, + 0x08, 0x40, 0x08, 0x41, 0x00, 0x14, 0x08, 0x42, 0x08, 0x44, 0x00, 0x0E, + 0x08, 0x45, 0x08, 0x46, 0x00, 0x1A, 0x08, 0x4C, 0x08, 0x51, 0x00, 0x07, + 0x08, 0x52, 0x08, 0x53, 0x00, 0x01, 0x08, 0x54, 0x08, 0x5A, 0x00, 0x02, + 0x08, 0x5B, 0x08, 0x5B, 0x00, 0x2C, 0x08, 0x5C, 0x08, 0x5C, 0x00, 0x02, + 0x08, 0x5D, 0x08, 0x5F, 0x00, 0x01, 0x08, 0x60, 0x08, 0x60, 0x00, 0x11, + 0x08, 0x61, 0x08, 0x62, 0x00, 0x23, 0x08, 0x63, 0x08, 0x64, 0x00, 0x11, + 0x08, 0x65, 0x08, 0x65, 0x00, 0x1C, 0x08, 0x66, 0x08, 0x66, 0x00, 0x06, + 0x08, 0x67, 0x08, 0x6A, 0x00, 0x01, 0x08, 0x6B, 0x08, 0x6E, 0x00, 0x03, + 0x08, 0x6F, 0x08, 0x75, 0x00, 0x02, 0x08, 0x76, 0x08, 0x79, 0x00, 0x03, + 0x08, 0x7A, 0x08, 0x7E, 0x00, 0x0C, 0x08, 0x7F, 0x08, 0x81, 0x00, 0x06, + 0x08, 0x82, 0x08, 0x8A, 0x00, 0x08, 0x08, 0x8B, 0x08, 0x8B, 0x00, 0x0A, + 0x08, 0x8C, 0x08, 0x8E, 0x00, 0x21, 0x08, 0x8F, 0x08, 0x90, 0x00, 0x1F, + 0x08, 0x91, 0x08, 0x93, 0x00, 0x0A, 0x08, 0x94, 0x08, 0x95, 0x00, 0x1B, + 0x08, 0x96, 0x08, 0x9B, 0x00, 0x02, 0x08, 0x9C, 0x08, 0x9C, 0x00, 0x11, + 0x08, 0x9D, 0x08, 0xA3, 0x00, 0x01, 0x08, 0xAD, 0x08, 0xAD, 0x00, 0x01, + 0x08, 0xAE, 0x08, 0xAE, 0x00, 0x17, 0x08, 0xAF, 0x08, 0xAF, 0x00, 0x04, + 0x08, 0xB0, 0x08, 0xB0, 0x00, 0x14, 0x08, 0xB2, 0x08, 0xB2, 0x00, 0x01, + 0x08, 0xB3, 0x08, 0xB3, 0x00, 0x04, 0x08, 0xB9, 0x08, 0xB9, 0x00, 0x02, + 0x08, 0xBC, 0x08, 0xBC, 0x00, 0x03, 0x08, 0xBD, 0x08, 0xBE, 0x00, 0x02, + 0x08, 0xC0, 0x08, 0xC0, 0x00, 0x03, 0x08, 0xC2, 0x08, 0xC2, 0x00, 0x16, + 0x08, 0xC3, 0x08, 0xC4, 0x00, 0x03, 0x08, 0xC5, 0x08, 0xC6, 0x00, 0x16, + 0x08, 0xC7, 0x08, 0xC7, 0x00, 0x03, 0x08, 0xC9, 0x08, 0xC9, 0x00, 0x03, + 0x08, 0xCA, 0x08, 0xCA, 0x00, 0x2E, 0x08, 0xCB, 0x08, 0xCC, 0x00, 0x25, + 0x08, 0xCD, 0x08, 0xCE, 0x00, 0x20, 0x08, 0xCF, 0x08, 0xCF, 0x00, 0x25, + 0x08, 0xD1, 0x08, 0xD1, 0x00, 0x39, 0x08, 0xD2, 0x08, 0xD2, 0x00, 0x10, + 0x08, 0xD3, 0x08, 0xD3, 0x00, 0x20, 0x08, 0xD5, 0x08, 0xD5, 0x00, 0x20, + 0x08, 0xEA, 0x08, 0xEA, 0x00, 0x01, 0x08, 0xFE, 0x08, 0xFE, 0x00, 0x04, + 0x09, 0x00, 0x09, 0x03, 0x00, 0x01, 0x09, 0x04, 0x09, 0x04, 0x00, 0x13, + 0x09, 0x05, 0x09, 0x07, 0x00, 0x01, 0x09, 0x08, 0x09, 0x09, 0x00, 0x03, + 0x09, 0x0A, 0x09, 0x0A, 0x00, 0x0C, 0x09, 0x0B, 0x09, 0x0B, 0x00, 0x06, + 0x09, 0x0C, 0x09, 0x0C, 0x00, 0x01, 0x09, 0x0E, 0x09, 0x0F, 0x00, 0x28, + 0x09, 0x11, 0x09, 0x11, 0x00, 0x48, 0x09, 0x13, 0x09, 0x13, 0x00, 0x48, + 0x09, 0x1A, 0x09, 0x1A, 0x00, 0x4B, 0x09, 0x27, 0x09, 0x27, 0x00, 0x0F, + 0x09, 0x34, 0x09, 0x34, 0x00, 0x01, 0x09, 0x3B, 0x09, 0x3B, 0x00, 0x1C, + 0x09, 0x3E, 0x09, 0x3F, 0x00, 0x02, 0x09, 0x40, 0x09, 0x41, 0x00, 0x06, + 0x09, 0x45, 0x09, 0x45, 0x00, 0x01, 0x09, 0x50, 0x09, 0x50, 0x00, 0x03, + 0x09, 0x51, 0x09, 0x51, 0x00, 0x43, 0x09, 0x52, 0x09, 0x52, 0x00, 0x01, + 0x09, 0x59, 0x09, 0x59, 0x00, 0x06, 0x09, 0x5C, 0x09, 0x5C, 0x00, 0x06, + 0x09, 0x6D, 0x09, 0x6D, 0x00, 0x05, 0x09, 0x6E, 0x09, 0x6E, 0x00, 0x03, + 0x09, 0x70, 0x09, 0x70, 0x00, 0x06, 0x09, 0x7B, 0x09, 0x7C, 0x00, 0x01, + 0x09, 0x7F, 0x09, 0x81, 0x00, 0x01, 0x09, 0x82, 0x09, 0x82, 0x00, 0x04, + 0x09, 0x83, 0x09, 0x83, 0x00, 0x0F, 0x09, 0x85, 0x09, 0x85, 0x00, 0x14, + 0x09, 0x86, 0x09, 0x86, 0x00, 0x01, 0x09, 0x88, 0x09, 0x88, 0x00, 0x01, + 0x09, 0x89, 0x09, 0x89, 0x00, 0x05, 0x09, 0x8A, 0x09, 0x8A, 0x00, 0x01, + 0x09, 0x8C, 0x09, 0x8D, 0x00, 0x01, 0x09, 0x8F, 0x09, 0x8F, 0x00, 0x1D, + 0x09, 0x90, 0x09, 0x90, 0x00, 0x04, 0x09, 0x92, 0x09, 0x92, 0x00, 0x04, + 0x09, 0x93, 0x09, 0x93, 0x00, 0x0F, 0x09, 0x94, 0x09, 0x95, 0x00, 0x0E, + 0x09, 0x97, 0x09, 0x97, 0x00, 0x01, 0x09, 0x98, 0x09, 0x98, 0x00, 0x14, + 0x09, 0x9B, 0x09, 0x9B, 0x00, 0x04, 0x09, 0x9C, 0x09, 0x9C, 0x00, 0x14, + 0x09, 0xA1, 0x09, 0xA1, 0x00, 0x14, 0x09, 0xA4, 0x09, 0xA5, 0x00, 0x03, + 0x09, 0xA6, 0x09, 0xA6, 0x00, 0x06, 0x09, 0xA7, 0x09, 0xA9, 0x00, 0x03, + 0x09, 0xAB, 0x09, 0xAB, 0x00, 0x03, 0x09, 0xAC, 0x09, 0xAC, 0x00, 0x05, + 0x09, 0xB2, 0x09, 0xB2, 0x00, 0x0A, 0x09, 0xB4, 0x09, 0xB4, 0x00, 0x02, + 0x09, 0xB5, 0x09, 0xB5, 0x00, 0x06, 0x09, 0xB6, 0x09, 0xB7, 0x00, 0x0A, + 0x09, 0xBB, 0x09, 0xBC, 0x00, 0x02, 0x09, 0xBF, 0x09, 0xC0, 0x00, 0x03, + 0x09, 0xC1, 0x09, 0xC3, 0x00, 0x02, 0x09, 0xC5, 0x09, 0xC5, 0x00, 0x03, + 0x09, 0xC6, 0x09, 0xC6, 0x00, 0x1F, 0x09, 0xC7, 0x09, 0xC7, 0x00, 0x02, + 0x09, 0xC8, 0x09, 0xC9, 0x00, 0x01, 0x09, 0xCF, 0x09, 0xCF, 0x00, 0x0A, + 0x09, 0xD3, 0x09, 0xD4, 0x00, 0x03, 0x09, 0xDB, 0x09, 0xDB, 0x00, 0x02, + 0x09, 0xE7, 0x09, 0xEA, 0x00, 0x01, 0x09, 0xEB, 0x09, 0xEE, 0x00, 0x1D, + 0x09, 0xEF, 0x09, 0xEF, 0x00, 0x01, 0x09, 0xF0, 0x09, 0xF2, 0x00, 0x14, + 0x09, 0xF6, 0x09, 0xF6, 0x00, 0x01, 0x0A, 0x15, 0x0A, 0x15, 0x00, 0x20, + 0x0A, 0x2F, 0x0A, 0x30, 0x00, 0x19, 0x0B, 0x42, 0x0B, 0x42, 0x00, 0x08, + 0x0B, 0x48, 0x0B, 0x48, 0x00, 0x15, 0x0B, 0x49, 0x0B, 0x49, 0x00, 0x01, + 0x00, 0x02, 0x02, 0x20, 0x00, 0x02, 0x00, 0x3C, 0x00, 0x05, 0x00, 0x3D, + 0x00, 0x40, 0x00, 0x07, 0x00, 0x41, 0x00, 0x48, 0x00, 0x15, 0x00, 0x49, + 0x00, 0x51, 0x00, 0x1E, 0x00, 0x52, 0x00, 0x52, 0x00, 0x04, 0x00, 0x53, + 0x00, 0x53, 0x00, 0x1E, 0x00, 0x54, 0x00, 0x5C, 0x00, 0x04, 0x00, 0x5D, + 0x00, 0x5E, 0x00, 0x16, 0x00, 0x5F, 0x00, 0x79, 0x00, 0x07, 0x00, 0x7B, + 0x00, 0x88, 0x00, 0x07, 0x00, 0x89, 0x00, 0x8B, 0x00, 0x34, 0x00, 0x8D, + 0x00, 0x96, 0x00, 0x22, 0x00, 0x97, 0x00, 0x97, 0x00, 0x17, 0x00, 0xAB, + 0x00, 0xAC, 0x00, 0x06, 0x00, 0xAD, 0x00, 0xAD, 0x00, 0x0D, 0x00, 0xAE, + 0x00, 0xAE, 0x00, 0x03, 0x00, 0xC7, 0x00, 0xC8, 0x00, 0x1D, 0x00, 0xCD, + 0x00, 0xD0, 0x00, 0x1D, 0x00, 0xD4, 0x00, 0xD5, 0x00, 0x1D, 0x00, 0xDB, + 0x00, 0xDB, 0x00, 0x1D, 0x00, 0xE4, 0x00, 0xE5, 0x00, 0x1D, 0x00, 0xE9, + 0x00, 0xE9, 0x00, 0x1D, 0x01, 0x0A, 0x01, 0x0E, 0x00, 0x08, 0x01, 0x0F, + 0x01, 0x18, 0x00, 0x18, 0x01, 0x19, 0x01, 0x22, 0x00, 0x1F, 0x01, 0x23, + 0x01, 0x23, 0x00, 0x09, 0x01, 0x40, 0x01, 0x40, 0x00, 0x09, 0x01, 0x41, + 0x01, 0x44, 0x00, 0x04, 0x01, 0x45, 0x01, 0x45, 0x00, 0x5C, 0x01, 0x46, + 0x01, 0x75, 0x00, 0x04, 0x01, 0x76, 0x01, 0x76, 0x00, 0x07, 0x01, 0x77, + 0x01, 0x7D, 0x00, 0x2B, 0x01, 0x7E, 0x01, 0x7E, 0x00, 0x04, 0x01, 0x7F, + 0x01, 0x7F, 0x00, 0x25, 0x01, 0x80, 0x01, 0x89, 0x00, 0x17, 0x01, 0x8A, + 0x01, 0x8B, 0x00, 0x49, 0x01, 0x8C, 0x01, 0x8C, 0x00, 0x17, 0x01, 0x8D, + 0x01, 0x98, 0x00, 0x14, 0x01, 0x99, 0x01, 0x99, 0x00, 0x15, 0x01, 0x9A, + 0x01, 0x9A, 0x00, 0x14, 0x01, 0x9B, 0x01, 0xA7, 0x00, 0x0D, 0x01, 0xA8, + 0x01, 0xA8, 0x00, 0x08, 0x01, 0xA9, 0x01, 0xA9, 0x00, 0x5D, 0x01, 0xAA, + 0x01, 0xC1, 0x00, 0x08, 0x01, 0xC2, 0x01, 0xC6, 0x00, 0x31, 0x01, 0xC7, + 0x01, 0xC7, 0x00, 0x08, 0x01, 0xC8, 0x01, 0xCA, 0x00, 0x2A, 0x01, 0xCB, + 0x01, 0xD1, 0x00, 0x28, 0x01, 0xD2, 0x01, 0xD4, 0x00, 0x1C, 0x01, 0xD6, + 0x01, 0xD7, 0x00, 0x1C, 0x01, 0xD8, 0x01, 0xEF, 0x00, 0x0C, 0x01, 0xF0, + 0x01, 0xFA, 0x00, 0x23, 0x01, 0xFB, 0x02, 0x1A, 0x00, 0x02, 0x02, 0x1B, + 0x02, 0x1B, 0x00, 0x2D, 0x02, 0x1C, 0x02, 0x1E, 0x00, 0x02, 0x02, 0x1F, + 0x02, 0x22, 0x00, 0x2D, 0x02, 0x23, 0x02, 0x2C, 0x00, 0x03, 0x02, 0x2E, + 0x02, 0x2F, 0x00, 0x03, 0x02, 0x31, 0x02, 0x41, 0x00, 0x03, 0x02, 0x42, + 0x02, 0x54, 0x00, 0x01, 0x02, 0x57, 0x02, 0x57, 0x00, 0x25, 0x02, 0x5B, + 0x02, 0x5B, 0x00, 0x61, 0x02, 0x61, 0x02, 0x63, 0x00, 0x16, 0x02, 0x66, + 0x02, 0x85, 0x00, 0x01, 0x02, 0x87, 0x02, 0x89, 0x00, 0x24, 0x02, 0x8B, + 0x02, 0x8B, 0x00, 0x24, 0x02, 0x8C, 0x02, 0x8C, 0x00, 0x02, 0x02, 0x8D, + 0x02, 0x8D, 0x00, 0x47, 0x02, 0x8F, 0x02, 0x8F, 0x00, 0x47, 0x02, 0x90, + 0x02, 0x90, 0x00, 0x24, 0x02, 0x91, 0x02, 0x91, 0x00, 0x02, 0x02, 0x92, + 0x02, 0x92, 0x00, 0x21, 0x02, 0x93, 0x02, 0x93, 0x00, 0x24, 0x02, 0x94, + 0x02, 0x9B, 0x00, 0x21, 0x02, 0x9E, 0x02, 0xA3, 0x00, 0x02, 0x02, 0xA4, + 0x02, 0xA4, 0x00, 0x03, 0x02, 0xA5, 0x02, 0xA6, 0x00, 0x21, 0x02, 0xA7, + 0x02, 0xA7, 0x00, 0x25, 0x02, 0xA8, 0x02, 0xB0, 0x00, 0x02, 0x02, 0xB1, + 0x02, 0xB3, 0x00, 0x09, 0x02, 0xB4, 0x02, 0xB6, 0x00, 0x2C, 0x02, 0xB7, + 0x02, 0xB8, 0x00, 0x09, 0x02, 0xB9, 0x02, 0xB9, 0x00, 0x06, 0x02, 0xBA, + 0x02, 0xBC, 0x00, 0x09, 0x02, 0xBD, 0x02, 0xBE, 0x00, 0x2C, 0x02, 0xBF, + 0x02, 0xC2, 0x00, 0x09, 0x02, 0xC3, 0x02, 0xC3, 0x00, 0x2C, 0x02, 0xC4, + 0x02, 0xC7, 0x00, 0x09, 0x02, 0xC8, 0x02, 0xCA, 0x00, 0x06, 0x02, 0xCB, + 0x02, 0xCB, 0x00, 0x09, 0x02, 0xCC, 0x02, 0xCC, 0x00, 0x2C, 0x02, 0xCD, + 0x02, 0xCD, 0x00, 0x09, 0x02, 0xCF, 0x02, 0xD6, 0x00, 0x09, 0x02, 0xD7, + 0x02, 0xD7, 0x00, 0x1A, 0x02, 0xD9, 0x02, 0xDD, 0x00, 0x1A, 0x02, 0xDE, + 0x02, 0xDE, 0x00, 0x02, 0x02, 0xDF, 0x02, 0xDF, 0x00, 0x1A, 0x02, 0xE4, + 0x02, 0xE4, 0x00, 0x25, 0x02, 0xE5, 0x02, 0xE5, 0x00, 0x06, 0x02, 0xE6, + 0x02, 0xE6, 0x00, 0x25, 0x02, 0xEF, 0x02, 0xEF, 0x00, 0x36, 0x02, 0xF0, + 0x02, 0xF3, 0x00, 0x06, 0x02, 0xFE, 0x02, 0xFF, 0x00, 0x02, 0x03, 0x00, + 0x03, 0x00, 0x00, 0x03, 0x03, 0x01, 0x03, 0x01, 0x00, 0x21, 0x03, 0x02, + 0x03, 0x06, 0x00, 0x02, 0x03, 0x07, 0x03, 0x07, 0x00, 0x25, 0x03, 0x09, + 0x03, 0x09, 0x00, 0x06, 0x03, 0x0A, 0x03, 0x0A, 0x00, 0x02, 0x03, 0x0C, + 0x03, 0x13, 0x00, 0x02, 0x03, 0x14, 0x03, 0x14, 0x00, 0x09, 0x03, 0x16, + 0x03, 0x19, 0x00, 0x01, 0x03, 0x1A, 0x03, 0x1A, 0x00, 0x6C, 0x03, 0x1B, + 0x03, 0x48, 0x00, 0x01, 0x03, 0x4A, 0x03, 0x4A, 0x00, 0x24, 0x03, 0x4B, + 0x03, 0x50, 0x00, 0x01, 0x03, 0x51, 0x03, 0x51, 0x00, 0x21, 0x03, 0x52, + 0x03, 0x52, 0x00, 0x24, 0x03, 0x53, 0x03, 0x53, 0x00, 0x25, 0x03, 0x54, + 0x03, 0x56, 0x00, 0x0A, 0x03, 0x57, 0x03, 0x57, 0x00, 0x02, 0x03, 0x58, + 0x03, 0x58, 0x00, 0x25, 0x03, 0x59, 0x03, 0x59, 0x00, 0x02, 0x03, 0x5A, + 0x03, 0x64, 0x00, 0x0A, 0x03, 0x67, 0x03, 0x75, 0x00, 0x10, 0x03, 0x76, + 0x03, 0x77, 0x00, 0x15, 0x03, 0x78, 0x03, 0x79, 0x00, 0x06, 0x03, 0x7A, + 0x03, 0x7A, 0x00, 0x25, 0x03, 0x7B, 0x03, 0x7B, 0x00, 0x06, 0x03, 0x7C, + 0x03, 0x7C, 0x00, 0x2D, 0x03, 0x7D, 0x03, 0x90, 0x00, 0x06, 0x03, 0x91, + 0x03, 0x93, 0x00, 0x03, 0x03, 0x94, 0x03, 0x94, 0x00, 0x5A, 0x03, 0x95, + 0x03, 0x95, 0x00, 0x6A, 0x03, 0x96, 0x03, 0xAE, 0x00, 0x03, 0x03, 0xAF, + 0x03, 0xAF, 0x00, 0x5A, 0x03, 0xB0, 0x03, 0xB2, 0x00, 0x03, 0x03, 0xD2, + 0x03, 0xD2, 0x00, 0x0B, 0x03, 0xD3, 0x03, 0xD3, 0x00, 0x05, 0x03, 0xD4, + 0x03, 0xD5, 0x00, 0x0B, 0x03, 0xD6, 0x03, 0xD7, 0x00, 0x27, 0x03, 0xD9, + 0x03, 0xDE, 0x00, 0x27, 0x03, 0xDF, 0x03, 0xE2, 0x00, 0x26, 0x03, 0xE3, + 0x03, 0xE3, 0x00, 0x25, 0x03, 0xE4, 0x03, 0xE5, 0x00, 0x0B, 0x03, 0xE6, + 0x03, 0xE6, 0x00, 0x24, 0x03, 0xE7, 0x03, 0xF5, 0x00, 0x0B, 0x03, 0xF6, + 0x03, 0xF6, 0x00, 0x24, 0x03, 0xFA, 0x03, 0xFB, 0x00, 0x0B, 0x03, 0xFC, + 0x03, 0xFF, 0x00, 0x16, 0x04, 0x00, 0x04, 0x00, 0x00, 0x25, 0x04, 0x01, + 0x04, 0x06, 0x00, 0x16, 0x04, 0x08, 0x04, 0x08, 0x00, 0x0D, 0x04, 0x09, + 0x04, 0x09, 0x00, 0x30, 0x04, 0x0A, 0x04, 0x0A, 0x00, 0x04, 0x04, 0x0B, + 0x04, 0x0B, 0x00, 0x07, 0x04, 0x0E, 0x04, 0x0E, 0x00, 0x04, 0x04, 0x29, + 0x04, 0x29, 0x00, 0x2A, 0x04, 0x2A, 0x04, 0x2A, 0x00, 0x15, 0x04, 0x2B, + 0x04, 0x2C, 0x00, 0x0D, 0x04, 0x2D, 0x04, 0x2D, 0x00, 0x3F, 0x04, 0x2E, + 0x04, 0x2E, 0x00, 0x1C, 0x04, 0x30, 0x04, 0x30, 0x00, 0x3E, 0x04, 0x31, + 0x04, 0x32, 0x00, 0x18, 0x04, 0x33, 0x04, 0x33, 0x00, 0x15, 0x04, 0x35, + 0x04, 0x35, 0x00, 0x04, 0x04, 0x37, 0x04, 0x37, 0x00, 0x0C, 0x04, 0x38, + 0x04, 0x38, 0x00, 0x04, 0x04, 0x39, 0x04, 0x39, 0x00, 0x3F, 0x04, 0x3E, + 0x04, 0x3F, 0x00, 0x02, 0x04, 0x41, 0x04, 0x41, 0x00, 0x3F, 0x04, 0x42, + 0x04, 0x42, 0x00, 0x01, 0x04, 0x44, 0x04, 0x46, 0x00, 0x01, 0x04, 0x47, + 0x04, 0x47, 0x00, 0x04, 0x04, 0x48, 0x04, 0x48, 0x00, 0x5E, 0x04, 0x4B, + 0x04, 0x4B, 0x00, 0x01, 0x04, 0x4C, 0x04, 0x4C, 0x00, 0x5F, 0x04, 0x50, + 0x04, 0x50, 0x00, 0x3E, 0x04, 0x51, 0x04, 0x51, 0x00, 0x2A, 0x04, 0x52, + 0x04, 0x53, 0x00, 0x01, 0x04, 0x54, 0x04, 0x6D, 0x00, 0x0F, 0x04, 0x6E, + 0x04, 0x6E, 0x00, 0x15, 0x04, 0x6F, 0x04, 0x6F, 0x00, 0x67, 0x04, 0x70, + 0x04, 0x70, 0x00, 0x62, 0x04, 0x71, 0x04, 0x71, 0x00, 0x10, 0x04, 0x73, + 0x04, 0x73, 0x00, 0x01, 0x04, 0x9A, 0x04, 0x9A, 0x00, 0x1B, 0x04, 0x9C, + 0x04, 0x9C, 0x00, 0x1B, 0x04, 0x9F, 0x04, 0xA4, 0x00, 0x1B, 0x04, 0xA6, + 0x04, 0xAA, 0x00, 0x1B, 0x04, 0xAB, 0x04, 0xAB, 0x00, 0x05, 0x04, 0xAC, + 0x04, 0xAC, 0x00, 0x7B, 0x04, 0xAD, 0x04, 0xAD, 0x00, 0x06, 0x04, 0xAE, + 0x04, 0xB1, 0x00, 0x01, 0x04, 0xB3, 0x04, 0xB4, 0x00, 0x0A, 0x04, 0xB5, + 0x04, 0xC6, 0x00, 0x03, 0x04, 0xC7, 0x04, 0xC8, 0x00, 0x01, 0x04, 0xC9, + 0x04, 0xC9, 0x00, 0x6F, 0x04, 0xCA, 0x04, 0xE1, 0x00, 0x11, 0x04, 0xE2, + 0x04, 0xE2, 0x00, 0x0B, 0x04, 0xE4, 0x04, 0xE4, 0x00, 0x10, 0x04, 0xE5, + 0x04, 0xE7, 0x00, 0x0A, 0x04, 0xE8, 0x04, 0xE8, 0x00, 0x36, 0x04, 0xE9, + 0x04, 0xEA, 0x00, 0x26, 0x04, 0xEB, 0x04, 0xEC, 0x00, 0x02, 0x04, 0xED, + 0x04, 0xED, 0x00, 0x06, 0x04, 0xEE, 0x04, 0xEE, 0x00, 0x1A, 0x04, 0xEF, + 0x04, 0xEF, 0x00, 0x02, 0x04, 0xF0, 0x04, 0xF2, 0x00, 0x1A, 0x04, 0xF3, + 0x04, 0xF3, 0x00, 0x02, 0x04, 0xF4, 0x04, 0xF5, 0x00, 0x06, 0x04, 0xF6, + 0x04, 0xF6, 0x00, 0x02, 0x04, 0xF7, 0x04, 0xF7, 0x00, 0x06, 0x04, 0xF8, + 0x04, 0xF8, 0x00, 0x02, 0x04, 0xF9, 0x04, 0xF9, 0x00, 0x06, 0x04, 0xFA, + 0x04, 0xFA, 0x00, 0x0A, 0x04, 0xFB, 0x04, 0xFB, 0x00, 0x02, 0x04, 0xFC, + 0x04, 0xFC, 0x00, 0x06, 0x04, 0xFD, 0x04, 0xFD, 0x00, 0x02, 0x04, 0xFE, + 0x04, 0xFE, 0x00, 0x0A, 0x04, 0xFF, 0x04, 0xFF, 0x00, 0x01, 0x05, 0x00, + 0x05, 0x01, 0x00, 0x26, 0x05, 0x02, 0x05, 0x02, 0x00, 0x36, 0x05, 0x03, + 0x05, 0x03, 0x00, 0x03, 0x05, 0x04, 0x05, 0x04, 0x00, 0x02, 0x05, 0x05, + 0x05, 0x05, 0x00, 0x06, 0x05, 0x06, 0x05, 0x07, 0x00, 0x02, 0x05, 0x08, + 0x05, 0x08, 0x00, 0x36, 0x05, 0x09, 0x05, 0x0A, 0x00, 0x37, 0x05, 0x0B, + 0x05, 0x0B, 0x00, 0x09, 0x05, 0x0C, 0x05, 0x0D, 0x00, 0x01, 0x05, 0x0E, + 0x05, 0x0F, 0x00, 0x37, 0x05, 0x10, 0x05, 0x11, 0x00, 0x01, 0x05, 0x12, + 0x05, 0x12, 0x00, 0x02, 0x05, 0x14, 0x05, 0x14, 0x00, 0x37, 0x05, 0x15, + 0x05, 0x15, 0x00, 0x01, 0x05, 0x16, 0x05, 0x16, 0x00, 0x2D, 0x05, 0x17, + 0x05, 0x17, 0x00, 0x36, 0x05, 0x18, 0x05, 0x18, 0x00, 0x01, 0x05, 0x1A, + 0x05, 0x1A, 0x00, 0x0B, 0x05, 0x1B, 0x05, 0x1B, 0x00, 0x63, 0x05, 0x1C, + 0x05, 0x1C, 0x00, 0x40, 0x05, 0x25, 0x05, 0x25, 0x00, 0x6E, 0x05, 0x2D, + 0x05, 0x2D, 0x00, 0x68, 0x05, 0x2E, 0x05, 0x2F, 0x00, 0x4D, 0x05, 0x32, + 0x05, 0x32, 0x00, 0x40, 0x05, 0x36, 0x05, 0x36, 0x00, 0x71, 0x05, 0x39, + 0x05, 0x3A, 0x00, 0x4B, 0x05, 0x3B, 0x05, 0x3B, 0x00, 0x48, 0x05, 0x3C, + 0x05, 0x3C, 0x00, 0x29, 0x05, 0x3F, 0x05, 0x3F, 0x00, 0x45, 0x05, 0x40, + 0x05, 0x40, 0x00, 0x50, 0x05, 0x44, 0x05, 0x44, 0x00, 0x73, 0x05, 0x45, + 0x05, 0x45, 0x00, 0x45, 0x05, 0x46, 0x05, 0x47, 0x00, 0x48, 0x05, 0x49, + 0x05, 0x49, 0x00, 0x45, 0x05, 0x4A, 0x05, 0x4A, 0x00, 0x50, 0x05, 0x4B, + 0x05, 0x4B, 0x00, 0x75, 0x05, 0x4C, 0x05, 0x4C, 0x00, 0x6B, 0x05, 0x68, + 0x05, 0x68, 0x00, 0x32, 0x05, 0x6A, 0x05, 0x6A, 0x00, 0x32, 0x05, 0x6C, + 0x05, 0x6C, 0x00, 0x32, 0x05, 0x6F, 0x05, 0x6F, 0x00, 0x12, 0x05, 0x80, + 0x05, 0x83, 0x00, 0x13, 0x05, 0x84, 0x05, 0x85, 0x00, 0x12, 0x05, 0x86, + 0x05, 0x86, 0x00, 0x20, 0x05, 0x87, 0x05, 0x87, 0x00, 0x12, 0x05, 0x88, + 0x05, 0x89, 0x00, 0x13, 0x05, 0x8A, 0x05, 0x8A, 0x00, 0x12, 0x05, 0x8B, + 0x05, 0x8B, 0x00, 0x20, 0x05, 0x95, 0x05, 0x95, 0x00, 0x46, 0x05, 0x98, + 0x05, 0x98, 0x00, 0x55, 0x05, 0x99, 0x05, 0x99, 0x00, 0x46, 0x05, 0x9A, + 0x05, 0x9A, 0x00, 0x55, 0x05, 0x9B, 0x05, 0x9B, 0x00, 0x42, 0x05, 0x9C, + 0x05, 0x9C, 0x00, 0x43, 0x05, 0x9D, 0x05, 0x9D, 0x00, 0x42, 0x05, 0x9F, + 0x05, 0x9F, 0x00, 0x43, 0x05, 0xA1, 0x05, 0xA1, 0x00, 0x42, 0x05, 0xA2, + 0x05, 0xA2, 0x00, 0x43, 0x05, 0xA3, 0x05, 0xA3, 0x00, 0x3A, 0x05, 0xA4, + 0x05, 0xA4, 0x00, 0x32, 0x05, 0xA6, 0x05, 0xA6, 0x00, 0x32, 0x05, 0xA8, + 0x05, 0xA8, 0x00, 0x32, 0x05, 0xAD, 0x05, 0xAD, 0x00, 0x76, 0x05, 0xAE, + 0x05, 0xAE, 0x00, 0x29, 0x05, 0xB0, 0x05, 0xB0, 0x00, 0x30, 0x05, 0xB1, + 0x05, 0xB1, 0x00, 0x12, 0x05, 0xB6, 0x05, 0xB9, 0x00, 0x20, 0x05, 0xBA, + 0x05, 0xBA, 0x00, 0x60, 0x05, 0xBB, 0x05, 0xBB, 0x00, 0x20, 0x05, 0xBD, + 0x05, 0xBD, 0x00, 0x12, 0x05, 0xC1, 0x05, 0xC2, 0x00, 0x20, 0x05, 0xC8, + 0x05, 0xC8, 0x00, 0x3C, 0x05, 0xC9, 0x05, 0xC9, 0x00, 0x38, 0x05, 0xCA, + 0x05, 0xCB, 0x00, 0x39, 0x05, 0xCC, 0x05, 0xCC, 0x00, 0x3C, 0x05, 0xCD, + 0x05, 0xCD, 0x00, 0x38, 0x05, 0xCE, 0x05, 0xCF, 0x00, 0x33, 0x05, 0xD4, + 0x05, 0xD4, 0x00, 0x38, 0x05, 0xDB, 0x05, 0xDD, 0x00, 0x2F, 0x05, 0xDF, + 0x05, 0xDF, 0x00, 0x2E, 0x05, 0xE2, 0x05, 0xE2, 0x00, 0x2E, 0x05, 0xE3, + 0x05, 0xE3, 0x00, 0x12, 0x05, 0xE4, 0x05, 0xE4, 0x00, 0x39, 0x05, 0xE6, + 0x05, 0xE6, 0x00, 0x52, 0x05, 0xE7, 0x05, 0xE7, 0x00, 0x53, 0x05, 0xE8, + 0x05, 0xE8, 0x00, 0x52, 0x05, 0xE9, 0x05, 0xE9, 0x00, 0x53, 0x05, 0xEC, + 0x05, 0xEF, 0x00, 0x13, 0x05, 0xF0, 0x05, 0xF1, 0x00, 0x12, 0x05, 0xF2, + 0x05, 0xF2, 0x00, 0x20, 0x05, 0xF3, 0x05, 0xF3, 0x00, 0x12, 0x05, 0xF4, + 0x05, 0xF5, 0x00, 0x13, 0x05, 0xF6, 0x05, 0xF6, 0x00, 0x12, 0x05, 0xF9, + 0x05, 0xFC, 0x00, 0x13, 0x05, 0xFD, 0x05, 0xFE, 0x00, 0x12, 0x05, 0xFF, + 0x05, 0xFF, 0x00, 0x20, 0x06, 0x00, 0x06, 0x00, 0x00, 0x12, 0x06, 0x01, + 0x06, 0x02, 0x00, 0x13, 0x06, 0x03, 0x06, 0x03, 0x00, 0x12, 0x06, 0x06, + 0x06, 0x07, 0x00, 0x44, 0x06, 0x08, 0x06, 0x09, 0x00, 0x41, 0x06, 0x0A, + 0x06, 0x0A, 0x00, 0x20, 0x06, 0x0B, 0x06, 0x0B, 0x00, 0x58, 0x06, 0x0C, + 0x06, 0x0C, 0x00, 0x3A, 0x06, 0x0E, 0x06, 0x0E, 0x00, 0x58, 0x06, 0x0F, + 0x06, 0x0F, 0x00, 0x44, 0x06, 0x15, 0x06, 0x15, 0x00, 0x41, 0x06, 0x16, + 0x06, 0x19, 0x00, 0x3B, 0x06, 0x1A, 0x06, 0x1A, 0x00, 0x29, 0x06, 0x1B, + 0x06, 0x1B, 0x00, 0x6D, 0x06, 0x26, 0x06, 0x27, 0x00, 0x35, 0x06, 0x28, + 0x06, 0x28, 0x00, 0x4E, 0x06, 0x29, 0x06, 0x29, 0x00, 0x35, 0x06, 0x2A, + 0x06, 0x2A, 0x00, 0x66, 0x06, 0x2B, 0x06, 0x2B, 0x00, 0x51, 0x06, 0x2D, + 0x06, 0x2E, 0x00, 0x54, 0x06, 0x2F, 0x06, 0x2F, 0x00, 0x69, 0x06, 0x30, + 0x06, 0x30, 0x00, 0x4E, 0x06, 0x33, 0x06, 0x34, 0x00, 0x35, 0x06, 0x35, + 0x06, 0x35, 0x00, 0x51, 0x06, 0x36, 0x06, 0x36, 0x00, 0x70, 0x06, 0x37, + 0x06, 0x37, 0x00, 0x72, 0x06, 0x38, 0x06, 0x38, 0x00, 0x77, 0x06, 0x39, + 0x06, 0x39, 0x00, 0x78, 0x06, 0x3A, 0x06, 0x3A, 0x00, 0x5B, 0x06, 0x3B, + 0x06, 0x3B, 0x00, 0x79, 0x06, 0x3C, 0x06, 0x3C, 0x00, 0x7A, 0x06, 0x3D, + 0x06, 0x3D, 0x00, 0x5B, 0x06, 0x3E, 0x06, 0x3E, 0x00, 0x7C, 0x06, 0x41, + 0x06, 0x42, 0x00, 0x57, 0x06, 0x4B, 0x06, 0x4B, 0x00, 0x74, 0x06, 0x4F, + 0x06, 0x4F, 0x00, 0x4C, 0x06, 0x51, 0x06, 0x51, 0x00, 0x4C, 0x06, 0x53, + 0x06, 0x54, 0x00, 0x56, 0x06, 0x55, 0x06, 0x55, 0x00, 0x65, 0x06, 0x56, + 0x06, 0x6F, 0x00, 0x0E, 0x06, 0x70, 0x06, 0x75, 0x00, 0x19, 0x06, 0x76, + 0x06, 0x76, 0x00, 0x4F, 0x06, 0x77, 0x06, 0x78, 0x00, 0x19, 0x06, 0x79, + 0x06, 0x79, 0x00, 0x4F, 0x06, 0x7A, 0x06, 0x7A, 0x00, 0x19, 0x06, 0x7D, + 0x06, 0x81, 0x00, 0x19, 0x06, 0x84, 0x06, 0x86, 0x00, 0x19, 0x06, 0xAE, + 0x06, 0xAE, 0x00, 0x64, 0x07, 0x06, 0x07, 0x08, 0x00, 0x12, 0x07, 0x09, + 0x07, 0x0A, 0x00, 0x13, 0x07, 0x1E, 0x07, 0x20, 0x00, 0x12, 0x07, 0x21, + 0x07, 0x22, 0x00, 0x13, 0x07, 0x33, 0x07, 0x33, 0x00, 0x30, 0x07, 0x37, + 0x07, 0x37, 0x00, 0x30, 0x07, 0x3A, 0x07, 0x3A, 0x00, 0x30, 0x07, 0x3B, + 0x07, 0x3C, 0x00, 0x3A, 0x07, 0x3D, 0x07, 0x41, 0x00, 0x29, 0x07, 0x55, + 0x07, 0x56, 0x00, 0x4A, 0x07, 0x5C, 0x07, 0x5C, 0x00, 0x29, 0x07, 0xE8, + 0x07, 0xE8, 0x00, 0x22, 0x07, 0xEA, 0x07, 0xEA, 0x00, 0x18, 0x07, 0xEB, + 0x07, 0xEB, 0x00, 0x1F, 0x07, 0xED, 0x07, 0xED, 0x00, 0x17, 0x07, 0xEE, + 0x07, 0xEE, 0x00, 0x14, 0x07, 0xEF, 0x07, 0xEF, 0x00, 0x1A, 0x07, 0xF2, + 0x07, 0xF2, 0x00, 0x02, 0x07, 0xF3, 0x07, 0xF3, 0x00, 0x0A, 0x07, 0xF4, + 0x07, 0xF4, 0x00, 0x10, 0x07, 0xF5, 0x07, 0xF6, 0x00, 0x06, 0x07, 0xF8, + 0x07, 0xF8, 0x00, 0x2F, 0x07, 0xF9, 0x07, 0xFA, 0x00, 0x2E, 0x07, 0xFB, + 0x07, 0xFB, 0x00, 0x3C, 0x07, 0xFC, 0x07, 0xFC, 0x00, 0x38, 0x07, 0xFD, + 0x07, 0xFD, 0x00, 0x3C, 0x07, 0xFE, 0x07, 0xFE, 0x00, 0x38, 0x08, 0x01, + 0x08, 0x02, 0x00, 0x33, 0x08, 0x03, 0x08, 0x08, 0x00, 0x05, 0x08, 0x09, + 0x08, 0x0A, 0x00, 0x15, 0x08, 0x0B, 0x08, 0x0B, 0x00, 0x1E, 0x08, 0x0C, + 0x08, 0x0D, 0x00, 0x04, 0x08, 0x0E, 0x08, 0x11, 0x00, 0x07, 0x08, 0x12, + 0x08, 0x12, 0x00, 0x34, 0x08, 0x13, 0x08, 0x13, 0x00, 0x22, 0x08, 0x17, + 0x08, 0x18, 0x00, 0x1D, 0x08, 0x1B, 0x08, 0x1B, 0x00, 0x18, 0x08, 0x1C, + 0x08, 0x1D, 0x00, 0x1F, 0x08, 0x22, 0x08, 0x28, 0x00, 0x04, 0x08, 0x29, + 0x08, 0x29, 0x00, 0x2B, 0x08, 0x2A, 0x08, 0x2C, 0x00, 0x17, 0x08, 0x2D, + 0x08, 0x30, 0x00, 0x14, 0x08, 0x31, 0x08, 0x32, 0x00, 0x0D, 0x08, 0x33, + 0x08, 0x39, 0x00, 0x08, 0x08, 0x3A, 0x08, 0x3A, 0x00, 0x31, 0x08, 0x3B, + 0x08, 0x3B, 0x00, 0x08, 0x08, 0x3C, 0x08, 0x3C, 0x00, 0x2A, 0x08, 0x3D, + 0x08, 0x3F, 0x00, 0x28, 0x08, 0x40, 0x08, 0x41, 0x00, 0x1C, 0x08, 0x42, + 0x08, 0x44, 0x00, 0x0C, 0x08, 0x45, 0x08, 0x46, 0x00, 0x23, 0x08, 0x4C, + 0x08, 0x51, 0x00, 0x02, 0x08, 0x52, 0x08, 0x54, 0x00, 0x01, 0x08, 0x57, + 0x08, 0x5A, 0x00, 0x01, 0x08, 0x5B, 0x08, 0x5B, 0x00, 0x24, 0x08, 0x5C, + 0x08, 0x5C, 0x00, 0x21, 0x08, 0x5D, 0x08, 0x5F, 0x00, 0x02, 0x08, 0x60, + 0x08, 0x60, 0x00, 0x09, 0x08, 0x61, 0x08, 0x62, 0x00, 0x2C, 0x08, 0x63, + 0x08, 0x65, 0x00, 0x09, 0x08, 0x66, 0x08, 0x66, 0x00, 0x06, 0x08, 0x67, + 0x08, 0x67, 0x00, 0x1A, 0x08, 0x6B, 0x08, 0x6E, 0x00, 0x02, 0x08, 0x6F, + 0x08, 0x76, 0x00, 0x01, 0x08, 0x77, 0x08, 0x79, 0x00, 0x0A, 0x08, 0x7A, + 0x08, 0x7E, 0x00, 0x10, 0x08, 0x7F, 0x08, 0x81, 0x00, 0x06, 0x08, 0x82, + 0x08, 0x8A, 0x00, 0x03, 0x08, 0x8B, 0x08, 0x8B, 0x00, 0x0B, 0x08, 0x8C, + 0x08, 0x8E, 0x00, 0x27, 0x08, 0x8F, 0x08, 0x90, 0x00, 0x26, 0x08, 0x91, + 0x08, 0x93, 0x00, 0x0B, 0x08, 0x94, 0x08, 0x95, 0x00, 0x16, 0x08, 0x96, + 0x08, 0x9B, 0x00, 0x03, 0x08, 0x9C, 0x08, 0x9C, 0x00, 0x09, 0x08, 0x9D, + 0x08, 0x9D, 0x00, 0x24, 0x08, 0xA1, 0x08, 0xA3, 0x00, 0x06, 0x08, 0xAD, + 0x08, 0xAD, 0x00, 0x07, 0x08, 0xAE, 0x08, 0xAE, 0x00, 0x1D, 0x08, 0xAF, + 0x08, 0xAF, 0x00, 0x04, 0x08, 0xB0, 0x08, 0xB0, 0x00, 0x1C, 0x08, 0xB3, + 0x08, 0xB3, 0x00, 0x04, 0x08, 0xB9, 0x08, 0xB9, 0x00, 0x01, 0x08, 0xBC, + 0x08, 0xBC, 0x00, 0x02, 0x08, 0xBD, 0x08, 0xBE, 0x00, 0x01, 0x08, 0xBF, + 0x08, 0xC0, 0x00, 0x02, 0x08, 0xC2, 0x08, 0xC2, 0x00, 0x1B, 0x08, 0xC3, + 0x08, 0xC4, 0x00, 0x03, 0x08, 0xC5, 0x08, 0xC6, 0x00, 0x1B, 0x08, 0xC7, + 0x08, 0xC7, 0x00, 0x03, 0x08, 0xC9, 0x08, 0xC9, 0x00, 0x03, 0x08, 0xCA, + 0x08, 0xCA, 0x00, 0x39, 0x08, 0xCB, 0x08, 0xCC, 0x00, 0x2F, 0x08, 0xCD, + 0x08, 0xCE, 0x00, 0x2E, 0x08, 0xCF, 0x08, 0xCF, 0x00, 0x2F, 0x08, 0xD1, + 0x08, 0xD1, 0x00, 0x46, 0x08, 0xD2, 0x08, 0xD2, 0x00, 0x12, 0x08, 0xD3, + 0x08, 0xD3, 0x00, 0x2E, 0x08, 0xE9, 0x08, 0xE9, 0x00, 0x09, 0x08, 0xEA, + 0x08, 0xEA, 0x00, 0x47, 0x08, 0xFE, 0x08, 0xFE, 0x00, 0x22, 0x09, 0x00, + 0x09, 0x00, 0x00, 0x18, 0x09, 0x01, 0x09, 0x01, 0x00, 0x1F, 0x09, 0x03, + 0x09, 0x03, 0x00, 0x17, 0x09, 0x04, 0x09, 0x04, 0x00, 0x14, 0x09, 0x05, + 0x09, 0x05, 0x00, 0x1A, 0x09, 0x08, 0x09, 0x08, 0x00, 0x02, 0x09, 0x09, + 0x09, 0x09, 0x00, 0x0A, 0x09, 0x0A, 0x09, 0x0A, 0x00, 0x10, 0x09, 0x0B, + 0x09, 0x0C, 0x00, 0x06, 0x09, 0x0E, 0x09, 0x0F, 0x00, 0x33, 0x09, 0x10, + 0x09, 0x10, 0x00, 0x3D, 0x09, 0x11, 0x09, 0x11, 0x00, 0x59, 0x09, 0x12, + 0x09, 0x12, 0x00, 0x3D, 0x09, 0x13, 0x09, 0x13, 0x00, 0x59, 0x09, 0x14, + 0x09, 0x15, 0x00, 0x3D, 0x09, 0x1A, 0x09, 0x1A, 0x00, 0x04, 0x09, 0x1E, + 0x09, 0x1E, 0x00, 0x15, 0x09, 0x27, 0x09, 0x27, 0x00, 0x0D, 0x09, 0x34, + 0x09, 0x34, 0x00, 0x14, 0x09, 0x3E, 0x09, 0x3E, 0x00, 0x01, 0x09, 0x43, + 0x09, 0x43, 0x00, 0x0A, 0x09, 0x45, 0x09, 0x45, 0x00, 0x10, 0x09, 0x50, + 0x09, 0x50, 0x00, 0x1A, 0x09, 0x51, 0x09, 0x51, 0x00, 0x05, 0x09, 0x52, + 0x09, 0x52, 0x00, 0x02, 0x09, 0x59, 0x09, 0x59, 0x00, 0x06, 0x09, 0x5C, + 0x09, 0x5C, 0x00, 0x10, 0x09, 0x6D, 0x09, 0x6D, 0x00, 0x05, 0x09, 0x6E, + 0x09, 0x6E, 0x00, 0x02, 0x09, 0x70, 0x09, 0x70, 0x00, 0x0A, 0x09, 0x7B, + 0x09, 0x7E, 0x00, 0x0D, 0x09, 0x7F, 0x09, 0x7F, 0x00, 0x18, 0x09, 0x81, + 0x09, 0x81, 0x00, 0x2B, 0x09, 0x82, 0x09, 0x82, 0x00, 0x1E, 0x09, 0x83, + 0x09, 0x83, 0x00, 0x0D, 0x09, 0x85, 0x09, 0x85, 0x00, 0x1C, 0x09, 0x87, + 0x09, 0x87, 0x00, 0x01, 0x09, 0x88, 0x09, 0x88, 0x00, 0x1E, 0x09, 0x89, + 0x09, 0x8A, 0x00, 0x05, 0x09, 0x8D, 0x09, 0x8D, 0x00, 0x15, 0x09, 0x8F, + 0x09, 0x8F, 0x00, 0x2A, 0x09, 0x91, 0x09, 0x91, 0x00, 0x3E, 0x09, 0x92, + 0x09, 0x92, 0x00, 0x1E, 0x09, 0x93, 0x09, 0x93, 0x00, 0x0D, 0x09, 0x94, + 0x09, 0x95, 0x00, 0x0C, 0x09, 0x98, 0x09, 0x98, 0x00, 0x1C, 0x09, 0x9B, + 0x09, 0x9B, 0x00, 0x04, 0x09, 0x9C, 0x09, 0x9C, 0x00, 0x1C, 0x09, 0xA1, + 0x09, 0xA1, 0x00, 0x1C, 0x09, 0xA3, 0x09, 0xA3, 0x00, 0x01, 0x09, 0xA4, + 0x09, 0xA6, 0x00, 0x0A, 0x09, 0xA7, 0x09, 0xA8, 0x00, 0x02, 0x09, 0xA9, + 0x09, 0xA9, 0x00, 0x1A, 0x09, 0xAB, 0x09, 0xAB, 0x00, 0x01, 0x09, 0xAC, + 0x09, 0xAC, 0x00, 0x05, 0x09, 0xB2, 0x09, 0xB2, 0x00, 0x0B, 0x09, 0xB4, + 0x09, 0xB4, 0x00, 0x01, 0x09, 0xB5, 0x09, 0xB5, 0x00, 0x0A, 0x09, 0xB6, + 0x09, 0xB7, 0x00, 0x0B, 0x09, 0xB8, 0x09, 0xB8, 0x00, 0x2D, 0x09, 0xBA, + 0x09, 0xBA, 0x00, 0x02, 0x09, 0xBB, 0x09, 0xBC, 0x00, 0x01, 0x09, 0xBF, + 0x09, 0xC0, 0x00, 0x02, 0x09, 0xC1, 0x09, 0xC3, 0x00, 0x01, 0x09, 0xC4, + 0x09, 0xC5, 0x00, 0x02, 0x09, 0xC6, 0x09, 0xC6, 0x00, 0x26, 0x09, 0xC7, + 0x09, 0xC7, 0x00, 0x01, 0x09, 0xC8, 0x09, 0xC8, 0x00, 0x34, 0x09, 0xC9, + 0x09, 0xC9, 0x00, 0x18, 0x09, 0xCF, 0x09, 0xCF, 0x00, 0x0B, 0x09, 0xD4, + 0x09, 0xD4, 0x00, 0x1A, 0x09, 0xEA, 0x09, 0xEB, 0x00, 0x2A, 0x09, 0xEF, + 0x09, 0xF0, 0x00, 0x1C, 0x0A, 0x15, 0x0A, 0x15, 0x00, 0x2E, 0x0A, 0x2F, + 0x0A, 0x30, 0x00, 0x20, 0x0B, 0x42, 0x0B, 0x42, 0x00, 0x03, 0x0B, 0x48, + 0x0B, 0x48, 0x00, 0x29, 0x00, 0x0A, 0x01, 0x48, 0xFE, 0x60, 0x03, 0xF8, + 0x07, 0x40, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x15, 0x00, 0x21, + 0x00, 0x27, 0x00, 0x31, 0x00, 0x35, 0x00, 0x3B, 0x00, 0x47, 0x00, 0x00, + 0x41, 0x21, 0x11, 0x21, 0x01, 0x15, 0x21, 0x35, 0x23, 0x37, 0x35, 0x21, + 0x15, 0x33, 0x03, 0x11, 0x21, 0x11, 0x07, 0x23, 0x35, 0x33, 0x01, 0x11, + 0x21, 0x11, 0x23, 0x15, 0x33, 0x35, 0x33, 0x15, 0x23, 0x35, 0x27, 0x15, + 0x21, 0x35, 0x23, 0x15, 0x25, 0x15, 0x33, 0x35, 0x33, 0x35, 0x21, 0x15, + 0x33, 0x15, 0x11, 0x23, 0x35, 0x33, 0x27, 0x15, 0x21, 0x35, 0x23, 0x35, + 0x27, 0x15, 0x21, 0x35, 0x23, 0x35, 0x33, 0x35, 0x21, 0x15, 0x33, 0x15, + 0x03, 0xF8, 0xFD, 0x50, 0x02, 0xB0, 0xFE, 0x08, 0x01, 0x40, 0xD7, 0xD7, + 0xFE, 0xC0, 0xD8, 0xD8, 0x01, 0x40, 0x40, 0xC0, 0xC0, 0xFF, 0x00, 0x01, + 0x40, 0xC0, 0x40, 0x40, 0xC0, 0x40, 0x01, 0x40, 0x40, 0xFF, 0x00, 0xC0, + 0x80, 0xFE, 0xC0, 0x80, 0x40, 0x40, 0x80, 0x01, 0x40, 0x80, 0xC0, 0x01, + 0x40, 0x90, 0x90, 0xFE, 0xC0, 0x70, 0xFE, 0x60, 0x08, 0xE0, 0xF8, 0x00, + 0x40, 0x40, 0x7F, 0x41, 0x40, 0x01, 0x80, 0xFF, 0x00, 0x01, 0x00, 0xC0, + 0x80, 0x01, 0xC0, 0xFF, 0x00, 0x01, 0x00, 0x80, 0x40, 0x80, 0xC0, 0x80, + 0x40, 0xE0, 0xA0, 0x80, 0x40, 0xA0, 0x40, 0x40, 0x60, 0x01, 0x20, 0x60, + 0x40, 0xE0, 0x40, 0xA0, 0x80, 0x40, 0x40, 0x60, 0x40, 0x40, 0x60, 0x00, + 0x02, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x05, 0xD2, 0x00, 0x0D, 0x00, + 0x11, 0x00, 0x00, 0x73, 0x01, 0x21, 0x01, 0x23, 0x01, 0x26, 0x02, 0x27, + 0x33, 0x06, 0x02, 0x07, 0x01, 0x13, 0x35, 0x21, 0x15, 0x18, 0x02, 0x1B, + 0x01, 0x0E, 0x02, 0x1A, 0xF3, 0xFE, 0xE1, 0x23, 0x51, 0x39, 0x3B, 0x38, + 0x51, 0x23, 0xFE, 0xDC, 0x3A, 0x02, 0xF1, 0x05, 0xD2, 0xFA, 0x2E, 0x03, + 0x46, 0x69, 0x01, 0x03, 0xBD, 0xBE, 0xFE, 0xFD, 0x68, 0xFC, 0xBA, 0x01, + 0x84, 0xBD, 0xBD, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, + 0x88, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, + 0x75, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, + 0x73, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, + 0xCF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, + 0x89, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, + 0x45, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, + 0x89, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, + 0xFB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, + 0x89, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, + 0x1E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, + 0xFC, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF2, 0x01, + 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x08, + 0xED, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1C, 0x01, + 0x7E, 0x00, 0x0C, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x5A, 0x05, 0x69, 0x07, + 0xFC, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, 0x0A, 0xF2, 0x01, + 0x7E, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x57, 0x03, 0xA4, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x41, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x12, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x87, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x1F, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0xFE, 0x5A, 0x05, 0x69, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x57, 0x03, 0xA4, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x89, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x1E, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x08, 0x64, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE7, 0x00, 0x6E, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x08, 0x64, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE6, 0x01, 0xCD, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x89, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, 0x92, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x8D, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x01, 0x1F, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x89, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCD, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0xE2, 0x05, 0x5B, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x36, 0x01, 0x84, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x18, 0xFE, 0x43, 0x05, 0x5B, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCD, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x89, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xA8, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x08, 0xAE, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x01, 0x1F, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x08, 0xAE, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, 0x01, 0x1F, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x08, 0xAE, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, 0x01, 0x1F, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x08, 0x98, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, 0x01, 0x1F, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0xFE, 0x43, 0x05, 0x5B, 0x07, 0x89, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x01, 0x1E, 0x01, 0xA4, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0xCD, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x08, 0xAD, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x21, 0x01, 0x20, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x08, 0xAD, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x22, 0x01, 0x20, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x08, 0xAE, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x4A, 0x01, 0x20, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x08, 0x98, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x23, 0x01, 0x1F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0xFE, + 0x43, 0x05, 0x5B, 0x07, 0x87, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x27, 0x0A, 0x8F, 0x01, 0x1F, 0x01, 0xA4, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0xCD, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x05, + 0xD2, 0x06, 0x06, 0x00, 0x02, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xF3, 0xED, 0xEE, 0xFF, 0xFF, 0x00, 0x3B, 0x00, 0x00, 0x05, + 0x7E, 0x05, 0xE2, 0x04, 0x26, 0x00, 0x02, 0x23, 0x00, 0x00, 0x06, 0x0A, + 0x7D, 0x31, 0xF3, 0xFF, 0xFF, 0x00, 0x3E, 0x00, 0x00, 0x05, 0x81, 0x05, + 0xD5, 0x04, 0x26, 0x00, 0x02, 0x26, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0x20, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x55, 0x05, 0xD5, 0x04, + 0x27, 0x00, 0x02, 0x00, 0xFA, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xEA, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x6A, 0x05, 0xD5, 0x04, + 0x27, 0x00, 0x02, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xEA, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x62, 0x05, 0xD5, 0x04, + 0x27, 0x00, 0x02, 0x01, 0x07, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xEA, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x71, 0x05, 0xD5, 0x04, + 0x27, 0x00, 0x02, 0x01, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xEA, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, 0xE1, 0x07, 0x09, 0x04, + 0x27, 0x00, 0x02, 0x00, 0x86, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0x3A, + 0xEF, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, 0xF1, 0x06, 0xFF, 0x04, + 0x27, 0x00, 0x02, 0x00, 0x96, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x3A, + 0xE4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x87, 0x06, + 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x1F, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x41, 0x06, + 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x12, 0x01, + 0xA4, 0xFF, 0xFF, 0xFF, 0xF3, 0x00, 0x00, 0x05, 0x5B, 0x05, 0xE6, 0x06, + 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x88, 0xCB, 0x01, 0x00, + 0x03, 0x00, 0x18, 0xFF, 0x42, 0x05, 0x5B, 0x06, 0x8E, 0x00, 0x03, 0x00, + 0x11, 0x00, 0x15, 0x00, 0x00, 0x41, 0x01, 0x23, 0x09, 0x02, 0x21, 0x01, + 0x23, 0x01, 0x26, 0x02, 0x27, 0x33, 0x06, 0x02, 0x07, 0x01, 0x13, 0x35, + 0x21, 0x15, 0x04, 0x60, 0xFD, 0x7A, 0x96, 0x02, 0x86, 0xFC, 0x4E, 0x02, + 0x1B, 0x01, 0x0E, 0x02, 0x1A, 0xF3, 0xFE, 0xE1, 0x23, 0x51, 0x39, 0x3B, + 0x38, 0x51, 0x23, 0xFE, 0xDC, 0x3A, 0x02, 0xF1, 0x06, 0x8E, 0xF8, 0xB4, + 0x07, 0x4C, 0xF9, 0x72, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x46, 0x69, 0x01, + 0x03, 0xBD, 0xBE, 0xFE, 0xFD, 0x68, 0xFC, 0xBA, 0x01, 0x84, 0xBD, 0xBD, + 0xFF, 0xFF, 0x00, 0x3E, 0x00, 0x00, 0x05, 0x81, 0x05, 0xD2, 0x04, 0x26, + 0x00, 0x02, 0x26, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x13, 0xEE, 0xFF, 0xFF, + 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x02, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x87, + 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x1F, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0x88, + 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x75, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x3B, 0xFE, 0x18, 0x05, 0x7E, 0x05, 0xE2, + 0x04, 0x26, 0x00, 0x02, 0x23, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0x31, 0xF3, 0xFF, 0xFF, 0x00, 0x3E, + 0xFE, 0x18, 0x05, 0x81, 0x05, 0xD5, 0x04, 0x26, 0x00, 0x02, 0x26, 0x00, + 0x00, 0x27, 0x09, 0xE4, 0x01, 0xFE, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, + 0x20, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x06, 0x55, 0x05, 0xD5, + 0x04, 0x27, 0x00, 0x02, 0x00, 0xFA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, + 0x02, 0xD2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xEA, 0xE6, 0xFF, 0xFF, + 0x00, 0x3A, 0xFE, 0x18, 0x06, 0x6A, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, + 0x01, 0x0F, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0xE7, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, + 0x06, 0x62, 0x05, 0xD5, 0x04, 0x27, 0x00, 0x02, 0x01, 0x07, 0x00, 0x00, + 0x00, 0x26, 0x0A, 0x81, 0xEA, 0xE6, 0x00, 0x07, 0x09, 0xE4, 0x02, 0xDF, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x06, 0x71, 0x05, 0xD5, + 0x04, 0x27, 0x00, 0x02, 0x01, 0x16, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, + 0x02, 0xED, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xEA, 0xE6, 0xFF, 0xFF, + 0x00, 0x3A, 0xFE, 0x18, 0x05, 0xE1, 0x07, 0x09, 0x04, 0x27, 0x00, 0x02, + 0x00, 0x86, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x83, 0x3A, 0xEF, 0x00, 0x07, + 0x09, 0xE4, 0x02, 0x5E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, + 0x05, 0xF1, 0x06, 0xFF, 0x04, 0x27, 0x00, 0x02, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x27, 0x09, 0xE4, 0x02, 0x6D, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, + 0x3A, 0xE4, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x18, 0x05, 0x5B, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x09, 0xE4, 0x01, 0xD8, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x05, 0xD2, + 0x00, 0x0D, 0x00, 0x00, 0x73, 0x01, 0x21, 0x01, 0x23, 0x01, 0x26, 0x02, + 0x27, 0x33, 0x06, 0x02, 0x07, 0x01, 0x18, 0x02, 0x1B, 0x01, 0x0E, 0x02, + 0x1A, 0xF3, 0xFE, 0xE1, 0x23, 0x51, 0x39, 0x3B, 0x38, 0x51, 0x23, 0xFE, + 0xDC, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x46, 0x69, 0x01, 0x03, 0xBD, 0xBE, + 0xFE, 0xFD, 0x68, 0xFC, 0xBA, 0x00, 0x02, 0x00, 0x18, 0x00, 0x00, 0x07, + 0x96, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x73, 0x01, 0x21, + 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x23, + 0x01, 0x13, 0x35, 0x21, 0x15, 0x18, 0x02, 0x9A, 0x04, 0xE3, 0xFD, 0x04, + 0x02, 0xC4, 0xFD, 0x3C, 0x02, 0xFD, 0xFC, 0x28, 0x7E, 0xFD, 0xC4, 0x66, + 0x02, 0xB7, 0x05, 0xD2, 0xC3, 0xFE, 0x3F, 0xC1, 0xFE, 0x36, 0xC3, 0x05, + 0x1A, 0xFA, 0xE6, 0x01, 0x9D, 0xB7, 0xB7, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x07, 0x96, 0x07, 0x41, 0x06, 0x26, 0x00, 0x3D, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0x03, 0x82, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x07, 0x96, 0x07, 0x89, 0x06, 0x26, 0x00, 0x3D, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x04, 0x6B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x07, 0x96, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x3D, 0x00, 0x00, 0x00, + 0x03, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xD8, 0x05, 0xD2, 0x00, 0x13, 0x00, + 0x1D, 0x00, 0x27, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x25, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x8E, 0x02, 0x2C, 0x9B, + 0xD7, 0x71, 0x3E, 0x71, 0x4C, 0x55, 0x8C, 0x55, 0x74, 0xE8, 0xB0, 0xFE, + 0xA0, 0x01, 0x50, 0x9A, 0x9F, 0x48, 0x88, 0x61, 0xFE, 0xA8, 0x01, 0x47, + 0x52, 0x79, 0x41, 0x8B, 0x80, 0xFE, 0xB8, 0x05, 0xD2, 0x62, 0xB0, 0x75, + 0x58, 0x80, 0x54, 0x17, 0x04, 0x0B, 0x56, 0x98, 0x6C, 0x7B, 0xBC, 0x68, + 0xBD, 0x78, 0x6D, 0x4B, 0x6F, 0x3E, 0xB5, 0x38, 0x67, 0x46, 0x66, 0x7B, + 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xD8, 0x07, 0x89, 0x06, 0x26, + 0x00, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x8D, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x04, 0xD8, 0x05, 0xD2, 0x06, 0x26, + 0x00, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x94, 0xF9, 0x62, + 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x92, 0x04, 0xD8, 0x05, 0xD2, 0x06, 0x26, + 0x00, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xD9, 0xF9, 0x92, + 0xFF, 0xFF, 0x00, 0x05, 0x00, 0x00, 0x04, 0xF7, 0x05, 0xD2, 0x06, 0x26, + 0x00, 0x41, 0x1F, 0x00, 0x00, 0x07, 0x0B, 0x39, 0xFF, 0xDD, 0xFE, 0xC3, + 0x00, 0x04, 0x00, 0x2B, 0x00, 0x00, 0x06, 0x14, 0x05, 0xD2, 0x00, 0x0B, + 0x00, 0x1F, 0x00, 0x29, 0x00, 0x33, 0x00, 0x00, 0x53, 0x35, 0x34, 0x36, + 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x15, 0x13, 0x11, 0x21, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x2B, + 0x97, 0x97, 0x71, 0x5C, 0x3C, 0x36, 0xCE, 0x02, 0x2C, 0x9B, 0xD7, 0x71, + 0x3E, 0x71, 0x4C, 0x55, 0x8C, 0x55, 0x74, 0xE8, 0xB0, 0xFE, 0xA0, 0x01, + 0x50, 0x9A, 0x9F, 0x48, 0x88, 0x61, 0xFE, 0xA8, 0x01, 0x47, 0x52, 0x79, + 0x41, 0x8B, 0x80, 0xFE, 0xB8, 0x04, 0x20, 0x97, 0x8B, 0x90, 0xC1, 0x31, + 0x36, 0x8A, 0xFB, 0xE0, 0x05, 0xD2, 0x62, 0xB0, 0x75, 0x58, 0x80, 0x54, + 0x17, 0x04, 0x0B, 0x56, 0x98, 0x6C, 0x7B, 0xBC, 0x68, 0xBD, 0x78, 0x6D, + 0x4B, 0x6F, 0x3E, 0xB5, 0x38, 0x67, 0x46, 0x66, 0x7B, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0xD8, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x41, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xD8, 0x05, 0xD2, 0x06, + 0x06, 0x00, 0x41, 0x00, 0x00, 0x00, 0x01, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0x7B, 0x05, 0xE9, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, + 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, 0x03, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, + 0x33, 0x0E, 0x03, 0x03, 0x0A, 0xCB, 0xFE, 0xC9, 0xB0, 0xAF, 0x01, 0x38, + 0xCB, 0x79, 0xD2, 0xA6, 0x6C, 0x14, 0xE3, 0x10, 0x48, 0x67, 0x83, 0x4A, + 0x8F, 0xD2, 0x73, 0x73, 0xD2, 0x8F, 0x4A, 0x82, 0x68, 0x48, 0x11, 0xE2, + 0x13, 0x6C, 0xA5, 0xD3, 0x17, 0xBF, 0x01, 0x5A, 0xE6, 0xE8, 0x01, 0x5A, + 0xBF, 0x47, 0x88, 0xBE, 0x77, 0x4B, 0x74, 0x51, 0x28, 0x8B, 0xFE, 0xAC, + 0xAB, 0xFD, 0x8B, 0x29, 0x4F, 0x74, 0x4B, 0x75, 0xBE, 0x88, 0x48, 0x00, + 0x02, 0x00, 0x58, 0xFF, 0xE9, 0x06, 0x56, 0x06, 0x8F, 0x00, 0x0F, 0x00, + 0x35, 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, + 0x22, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x01, 0x22, 0x24, 0x02, 0x35, + 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, 0x03, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, + 0x33, 0x0E, 0x03, 0x04, 0xAA, 0x9B, 0x98, 0x28, 0x3B, 0x16, 0x11, 0x3D, + 0x14, 0x40, 0x39, 0xFD, 0x8F, 0xCB, 0xFE, 0xC9, 0xB0, 0xAF, 0x01, 0x38, + 0xCB, 0x79, 0xD2, 0xA6, 0x6C, 0x14, 0xE3, 0x10, 0x48, 0x67, 0x83, 0x4A, + 0x8F, 0xD2, 0x73, 0x73, 0xD2, 0x8F, 0x4A, 0x82, 0x68, 0x48, 0x11, 0xE2, + 0x13, 0x6C, 0xA5, 0xD3, 0x03, 0xE5, 0x01, 0x99, 0x87, 0x8A, 0x02, 0x01, + 0xB0, 0x01, 0x2F, 0x33, 0xFE, 0x6A, 0xFC, 0x04, 0xBF, 0x01, 0x5A, 0xE6, + 0xE8, 0x01, 0x5A, 0xBF, 0x47, 0x88, 0xBE, 0x77, 0x4B, 0x74, 0x51, 0x28, + 0x8B, 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, 0x29, 0x4F, 0x74, 0x4B, 0x75, 0xBE, + 0x88, 0x48, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x5D, 0x05, 0x7B, 0x05, 0xE9, + 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0xE0, + 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x07, 0x89, + 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x3B, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x07, 0x89, + 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x5F, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x07, 0x89, + 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x0D, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x07, 0x89, + 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x5F, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x5D, 0x05, 0x7B, 0x07, 0x89, + 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x95, 0x01, 0xE0, + 0xFF, 0xFF, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x3B, 0x01, 0xA4, 0x00, 0x02, + 0x00, 0x58, 0xFF, 0x42, 0x05, 0x7B, 0x06, 0x8E, 0x00, 0x03, 0x00, 0x29, + 0x00, 0x00, 0x45, 0x01, 0x33, 0x01, 0x25, 0x22, 0x24, 0x02, 0x35, 0x34, + 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, 0x03, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x33, + 0x0E, 0x03, 0x01, 0x47, 0x02, 0x85, 0xAD, 0xFD, 0x7B, 0x01, 0x16, 0xCB, + 0xFE, 0xC9, 0xB0, 0xAF, 0x01, 0x38, 0xCB, 0x79, 0xD2, 0xA6, 0x6C, 0x14, + 0xE3, 0x10, 0x48, 0x67, 0x83, 0x4A, 0x8F, 0xD2, 0x73, 0x73, 0xD2, 0x8F, + 0x4A, 0x82, 0x68, 0x48, 0x11, 0xE2, 0x13, 0x6C, 0xA5, 0xD3, 0xBE, 0x07, + 0x4C, 0xF8, 0xB4, 0xA7, 0xBF, 0x01, 0x5A, 0xE6, 0xE8, 0x01, 0x5A, 0xBF, + 0x47, 0x88, 0xBE, 0x77, 0x4B, 0x74, 0x51, 0x28, 0x8B, 0xFE, 0xAC, 0xAB, + 0xFD, 0x8B, 0x29, 0x4F, 0x74, 0x4B, 0x75, 0xBE, 0x88, 0x48, 0x00, 0x01, + 0x00, 0x53, 0xFF, 0xE9, 0x05, 0x76, 0x05, 0xE9, 0x00, 0x25, 0x00, 0x00, + 0x41, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x23, 0x22, 0x2E, 0x02, + 0x27, 0x33, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x03, 0x02, 0xC4, 0xCB, 0x01, + 0x37, 0xB0, 0xAF, 0xFE, 0xC9, 0xCC, 0x79, 0xD2, 0xA5, 0x6D, 0x14, 0xE3, + 0x10, 0x48, 0x68, 0x82, 0x4B, 0x8E, 0xD2, 0x73, 0x73, 0xD1, 0x8F, 0x4B, + 0x82, 0x67, 0x49, 0x10, 0xE3, 0x13, 0x6C, 0xA6, 0xD2, 0x05, 0xE9, 0xBF, + 0xFE, 0xA6, 0xE6, 0xE7, 0xFE, 0xA5, 0xBF, 0x47, 0x88, 0xBE, 0x77, 0x4B, + 0x74, 0x51, 0x28, 0x8B, 0xFE, 0xAC, 0xAB, 0xFE, 0x8A, 0x29, 0x4F, 0x74, + 0x4B, 0x75, 0xBE, 0x88, 0x48, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0x7B, 0x05, 0xE9, 0x06, 0x06, 0x00, 0x49, 0x00, 0x00, 0x00, 0x02, 0x00, + 0x8E, 0x00, 0x00, 0x05, 0x41, 0x05, 0xD2, 0x00, 0x15, 0x00, 0x19, 0x00, + 0x00, 0x61, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x21, 0x35, 0x21, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x01, + 0x11, 0x23, 0x11, 0x02, 0x71, 0xFE, 0x90, 0x01, 0x63, 0xAC, 0xE2, 0x70, + 0x6F, 0xDC, 0xA6, 0xFE, 0x89, 0x01, 0x86, 0xDB, 0x01, 0x3C, 0xAA, 0xAB, + 0xFE, 0xBF, 0xFE, 0x19, 0xE0, 0xC3, 0x82, 0xF8, 0xAE, 0xAD, 0xF5, 0x82, + 0xC3, 0xB3, 0xFE, 0xB3, 0xE7, 0xE8, 0xFE, 0xB1, 0xB4, 0x05, 0xD2, 0xFA, + 0x2E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x2B, 0x00, 0x00, 0x06, 0x7D, 0x05, + 0xD2, 0x00, 0x0B, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x53, 0x35, 0x34, + 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x15, 0x01, 0x21, 0x35, + 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, + 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x01, 0x11, 0x23, 0x11, 0x2B, + 0x97, 0x97, 0x71, 0x5C, 0x3C, 0x36, 0x02, 0xB1, 0xFE, 0x90, 0x01, 0x63, + 0xAC, 0xE2, 0x70, 0x6F, 0xDC, 0xA6, 0xFE, 0x89, 0x01, 0x86, 0xDB, 0x01, + 0x3C, 0xAA, 0xAB, 0xFE, 0xBE, 0xFE, 0x1A, 0xE0, 0x04, 0x20, 0x97, 0x8B, + 0x90, 0xC1, 0x31, 0x36, 0x8A, 0xFB, 0xE0, 0xC3, 0x82, 0xF8, 0xAE, 0xAD, + 0xF5, 0x82, 0xC3, 0xB3, 0xFE, 0xB3, 0xE7, 0xE8, 0xFE, 0xB1, 0xB4, 0x05, + 0xD2, 0xFA, 0x2E, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, + 0x41, 0x07, 0x89, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8E, 0x00, 0xB2, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, + 0x41, 0x07, 0x89, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x05, + 0x41, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x75, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x92, 0x05, + 0x41, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0x00, 0xBA, 0xF9, 0x92, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x17, 0x05, + 0x41, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE7, 0x01, 0x61, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x3A, 0x05, + 0x41, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8D, 0x00, 0xC7, 0xF9, 0x71, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x05, + 0x88, 0x05, 0xD2, 0x04, 0x26, 0x00, 0x54, 0x47, 0x00, 0x00, 0x06, 0x0B, + 0x69, 0xE4, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x09, 0x44, 0x05, + 0xD2, 0x04, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x07, 0x03, 0xFC, 0x05, + 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x09, 0x44, 0x05, + 0xE4, 0x04, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, 0x27, 0x03, 0xFC, 0x05, + 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x06, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x05, 0xD2, 0x00, 0x0B, 0x00, + 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, + 0x15, 0x8E, 0x03, 0xDC, 0xFD, 0x04, 0x02, 0xC4, 0xFD, 0x3C, 0x02, 0xFE, + 0x05, 0xD2, 0xC3, 0xFE, 0x47, 0xC1, 0xFE, 0x2E, 0xC3, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x07, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xBD, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xE0, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x88, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x36, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x41, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xD4, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x87, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xE0, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x8E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0xFE, 0x5A, 0x04, 0x79, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x96, 0x02, 0xB5, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xE0, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, 0x54, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x8D, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, 0xE0, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0xFE, 0x5E, 0x04, 0x6C, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x69, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x08, 0xC3, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x54, 0x00, 0xD4, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x08, 0xC3, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xB8, 0x00, 0xD4, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x8E, 0xFE, 0x3A, 0x04, 0x6C, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xE1, 0xF9, 0x71, 0xFF, 0xFF, 0x00, + 0x8E, 0xFE, 0x57, 0x04, 0x6C, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0x91, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, + 0x8E, 0xFE, 0x5E, 0x04, 0x6C, 0x07, 0x87, 0x06, 0x26, 0x00, 0x5F, 0x00, + 0x00, 0x00, 0x27, 0x0A, 0x95, 0x01, 0x69, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x00, 0xE0, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x04, + 0x6C, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x8F, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x91, 0x01, 0x69, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0x6C, 0x07, 0x73, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEC, 0x00, 0x90, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0x6C, 0x08, 0xAE, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x24, 0x00, 0xE1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0x6C, 0x08, 0xAE, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x25, 0x00, 0xE1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0x6C, 0x08, 0xAE, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x26, 0x00, 0xE1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0x6C, 0x08, 0x98, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x27, 0x00, 0xE1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x04, + 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x27, 0x0A, + 0x8D, 0x00, 0xE0, 0x01, 0xA4, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x8F, 0xF9, + 0x62, 0x00, 0x02, 0x00, 0x8E, 0xFF, 0x42, 0x04, 0x6C, 0x06, 0x8E, 0x00, + 0x03, 0x00, 0x0F, 0x00, 0x00, 0x45, 0x01, 0x33, 0x01, 0x25, 0x11, 0x21, + 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x01, 0x2B, 0x02, + 0x1C, 0xA4, 0xFD, 0xE6, 0xFE, 0xBD, 0x03, 0xDC, 0xFD, 0x04, 0x02, 0xC4, + 0xFD, 0x3C, 0x02, 0xFE, 0xBE, 0x07, 0x4C, 0xF8, 0xB4, 0xBE, 0x05, 0xD2, + 0xC3, 0xFE, 0x47, 0xC1, 0xFE, 0x2E, 0xC3, 0x00, 0x01, 0x00, 0x51, 0x00, + 0x00, 0x04, 0x2E, 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x11, 0x21, + 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x04, 0x2E, 0xFC, + 0x25, 0x02, 0xFC, 0xFD, 0x3C, 0x02, 0xC4, 0xFD, 0x02, 0x05, 0xD2, 0xFA, + 0x2E, 0xC3, 0x01, 0xB9, 0xC1, 0x01, 0xD2, 0xC3, 0xFF, 0xFF, 0x00, 0x8E, + 0x00, 0x00, 0x04, 0x6C, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x5F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, 0x75, 0x05, 0xD2, 0x04, 0x27, + 0x00, 0x5F, 0x01, 0x09, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, 0xA0, 0x05, 0xE2, 0x04, 0x27, + 0x00, 0x5F, 0x01, 0x35, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xEA, 0xF3, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, 0xB5, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0x5F, 0x01, 0x49, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xEA, 0xE6, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0xBF, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0x5F, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xEA, 0xE6, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0xD4, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0x5F, 0x02, 0x68, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xEA, 0xE6, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0xCC, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0x5F, 0x02, 0x61, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xEA, 0xE6, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0xDA, 0x05, 0xD5, 0x04, 0x27, + 0x00, 0x5F, 0x02, 0x6F, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xEA, 0xE6, + 0xFF, 0xFF, 0xFF, 0xD1, 0x00, 0x00, 0x05, 0xA3, 0x05, 0xE6, 0x04, 0x27, + 0x00, 0x5F, 0x01, 0x37, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFF, 0xA9, + 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, 0x75, 0x05, 0xD2, + 0x04, 0x27, 0x00, 0x5F, 0x01, 0x09, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, + 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x05, 0xD2, + 0x06, 0x06, 0x00, 0x5F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, + 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE9, 0x01, 0x07, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, + 0x04, 0x6C, 0x07, 0x88, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0x00, 0x36, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, + 0x04, 0x6C, 0x07, 0x87, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8F, 0x00, 0xE0, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, + 0x04, 0x4F, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, + 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x8E, 0x03, 0xC1, 0xFD, 0x1F, 0x02, + 0xA6, 0xFD, 0x5A, 0x05, 0xD2, 0xC3, 0xFE, 0x3A, 0xC1, 0xFD, 0x78, 0x00, + 0x02, 0xFF, 0xB9, 0xFE, 0x5B, 0x04, 0x4F, 0x05, 0xD2, 0x00, 0x0F, 0x00, + 0x19, 0x00, 0x00, 0x43, 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x13, 0x11, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x15, 0x21, 0x11, 0x47, 0x11, 0x3E, 0x13, 0x40, 0x33, 0xE0, + 0x9D, 0x99, 0x27, 0x42, 0xBF, 0x03, 0xC1, 0xFD, 0x1F, 0x02, 0xA6, 0xFD, + 0x5A, 0xFE, 0x5E, 0xB9, 0x01, 0x2E, 0x33, 0x01, 0x07, 0xFE, 0xEE, 0x86, + 0x8B, 0x02, 0x01, 0xA3, 0x05, 0xD2, 0xC3, 0xFE, 0x3A, 0xC1, 0xFD, 0x78, + 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x4F, 0x07, 0x89, 0x06, 0x26, + 0x00, 0x89, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x80, 0x01, 0xA4, + 0x00, 0x01, 0x00, 0x3F, 0x00, 0x00, 0x03, 0xFF, 0x05, 0xD2, 0x00, 0x09, + 0x00, 0x00, 0x41, 0x11, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x11, + 0x03, 0xFF, 0xFC, 0x40, 0x02, 0xE0, 0xFD, 0x5B, 0x02, 0xA5, 0x05, 0xD2, + 0xFA, 0x2E, 0xC3, 0x01, 0xC6, 0xC1, 0x02, 0x88, 0x00, 0x01, 0x00, 0x58, + 0xFF, 0xE9, 0x05, 0x83, 0x05, 0xE9, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, + 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, + 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x17, 0x21, 0x35, 0x21, 0x15, 0x14, 0x02, 0x04, 0x03, + 0x08, 0xCB, 0xFE, 0xCB, 0xB0, 0xB1, 0x01, 0x36, 0xC5, 0x7A, 0xD5, 0xA7, + 0x6E, 0x11, 0xE3, 0x11, 0x47, 0x68, 0x83, 0x4C, 0x8A, 0xD0, 0x75, 0x75, + 0xD2, 0x8B, 0x76, 0xBB, 0x6C, 0x3F, 0xFE, 0x52, 0x02, 0x4B, 0xA6, 0xFE, + 0xE1, 0x17, 0xC1, 0x01, 0x5A, 0xE4, 0xE8, 0x01, 0x5A, 0xBF, 0x49, 0x88, + 0xB9, 0x71, 0x44, 0x70, 0x50, 0x2B, 0x8B, 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, + 0x64, 0xB4, 0x78, 0x05, 0xB9, 0xAA, 0xB4, 0xFE, 0xEB, 0x9D, 0xFF, 0xFF, + 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xD2, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x8D, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3A, 0x02, 0xB5, 0xFE, 0xBF, 0x00, 0x02, + 0x00, 0x58, 0xFF, 0xE9, 0x06, 0x54, 0x06, 0x8E, 0x00, 0x0F, 0x00, 0x37, + 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x22, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x01, 0x22, 0x24, 0x02, 0x35, 0x34, + 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, 0x03, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x17, + 0x21, 0x35, 0x21, 0x15, 0x14, 0x02, 0x04, 0x04, 0xA8, 0x9B, 0x98, 0x28, + 0x3B, 0x16, 0x10, 0x3E, 0x14, 0x40, 0x39, 0xFD, 0x8F, 0xCB, 0xFE, 0xCB, + 0xB0, 0xB1, 0x01, 0x36, 0xC5, 0x7A, 0xD5, 0xA7, 0x6E, 0x11, 0xE3, 0x11, + 0x47, 0x68, 0x83, 0x4C, 0x8A, 0xD0, 0x75, 0x75, 0xD2, 0x8B, 0x76, 0xBB, + 0x6C, 0x3F, 0xFE, 0x52, 0x02, 0x4B, 0xA6, 0xFE, 0xE1, 0x03, 0xEE, 0x01, + 0x8F, 0x87, 0x8A, 0x02, 0x01, 0xB0, 0x01, 0x2F, 0x33, 0xFE, 0x74, 0xFB, + 0xFB, 0xC1, 0x01, 0x5A, 0xE4, 0xE8, 0x01, 0x5A, 0xBF, 0x49, 0x88, 0xB9, + 0x71, 0x44, 0x70, 0x50, 0x2B, 0x8B, 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, 0x64, + 0xB4, 0x78, 0x05, 0xB9, 0xAA, 0xB4, 0xFE, 0xEB, 0x9D, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x83, 0x07, 0x89, 0x06, 0x26, 0x00, 0x8D, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x5D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x83, 0x07, 0x87, 0x06, 0x26, 0x00, 0x8D, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x5E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x83, 0x07, 0x89, 0x06, 0x26, 0x00, 0x8D, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x0C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFE, 0x17, 0x05, 0x83, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x8D, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0xF7, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x83, 0x07, 0x89, 0x06, 0x26, 0x00, 0x8D, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x5D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x83, 0x07, 0x89, 0x06, 0x26, 0x00, 0x8D, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x3A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x83, 0x07, 0x41, 0x06, 0x26, 0x00, 0x8D, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x51, 0x01, 0xA4, 0x00, 0x02, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x84, 0x05, 0xE9, 0x00, 0x25, 0x00, 0x2C, 0x00, + 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, + 0x02, 0x17, 0x23, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x33, 0x15, 0x14, 0x0E, 0x02, 0x25, + 0x03, 0x11, 0x21, 0x35, 0x21, 0x11, 0x02, 0xFB, 0xC3, 0xFE, 0xD0, 0xB0, + 0xB1, 0x01, 0x36, 0xC5, 0x7A, 0xD5, 0xA7, 0x6E, 0x11, 0xE3, 0x11, 0x47, + 0x68, 0x83, 0x4C, 0x8A, 0xD0, 0x75, 0x75, 0xD2, 0x8B, 0x78, 0xBC, 0x6D, + 0x63, 0x45, 0x87, 0xC6, 0x01, 0x64, 0x22, 0xFE, 0x79, 0x02, 0x4D, 0x17, + 0xC1, 0x01, 0x5A, 0xE4, 0xE8, 0x01, 0x5A, 0xBF, 0x49, 0x88, 0xB9, 0x71, + 0x44, 0x70, 0x50, 0x2B, 0x8B, 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, 0x65, 0xBC, + 0x81, 0x72, 0x64, 0xB7, 0x8E, 0x53, 0x17, 0x01, 0x32, 0x01, 0x0E, 0xB9, + 0xFD, 0x07, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xD2, 0x05, 0xE9, + 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3A, 0x02, 0xB5, + 0xFE, 0xBF, 0x00, 0x03, 0x00, 0x58, 0xFF, 0xE9, 0x06, 0x54, 0x06, 0x8E, + 0x00, 0x0F, 0x00, 0x35, 0x00, 0x3C, 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x15, 0x22, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, + 0x01, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, + 0x17, 0x23, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x33, 0x15, 0x14, 0x0E, 0x02, 0x25, 0x03, + 0x11, 0x21, 0x35, 0x21, 0x11, 0x04, 0xA8, 0x9B, 0x98, 0x28, 0x3B, 0x16, + 0x10, 0x3E, 0x14, 0x40, 0x39, 0xFD, 0x82, 0xC3, 0xFE, 0xD0, 0xB0, 0xB1, + 0x01, 0x36, 0xC5, 0x7A, 0xD5, 0xA7, 0x6E, 0x11, 0xE3, 0x11, 0x47, 0x68, + 0x83, 0x4C, 0x8A, 0xD0, 0x75, 0x75, 0xD2, 0x8B, 0x78, 0xBC, 0x6D, 0x63, + 0x45, 0x87, 0xC6, 0x01, 0x64, 0x22, 0xFE, 0x79, 0x02, 0x4D, 0x03, 0xEE, + 0x01, 0x8F, 0x87, 0x8A, 0x02, 0x01, 0xB0, 0x01, 0x2F, 0x33, 0xFE, 0x74, + 0xFB, 0xFB, 0xC1, 0x01, 0x5A, 0xE4, 0xE8, 0x01, 0x5A, 0xBF, 0x49, 0x88, + 0xB9, 0x71, 0x44, 0x70, 0x50, 0x2B, 0x8B, 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, + 0x65, 0xBC, 0x81, 0x72, 0x64, 0xB7, 0x8E, 0x53, 0x17, 0x01, 0x32, 0x01, + 0x0E, 0xB9, 0xFD, 0x07, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x84, + 0x07, 0x89, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0x01, 0x5E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x84, + 0x07, 0x87, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, + 0x01, 0x5F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x84, + 0x07, 0x89, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x02, 0x0D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x17, 0x05, 0x84, + 0x05, 0xE9, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, + 0x01, 0xF8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x84, + 0x07, 0x89, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, + 0x01, 0x5E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x84, + 0x07, 0x89, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, + 0x02, 0x3B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x84, + 0x07, 0x41, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, + 0x01, 0x53, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, + 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x8E, 0xE0, 0x02, 0xE4, 0xE0, 0xE0, + 0xFD, 0x1C, 0x05, 0xD2, 0xFD, 0x89, 0x02, 0x77, 0xFA, 0x2E, 0x02, 0x98, + 0xFD, 0x68, 0xFF, 0xFF, 0x00, 0x89, 0xFE, 0x5E, 0x05, 0x32, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x95, 0xE3, 0x00, + 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x43, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x43, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xF1, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x05, 0x32, 0x05, 0xD2, 0x06, 0x26, + 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xF2, 0xF9, 0x62, + 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x07, 0x88, 0x06, 0x26, + 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x99, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x36, 0x05, 0x32, 0x05, 0xD2, 0x06, 0x26, + 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x44, 0xF9, 0x75, + 0x00, 0x02, 0x00, 0x3A, 0x00, 0x00, 0x05, 0xD0, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x33, 0x11, + 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x05, 0xD0, 0xFA, 0x6A, + 0x78, 0xE0, 0x02, 0xE4, 0xE0, 0xE0, 0xFD, 0x1C, 0x04, 0xA9, 0xA0, 0xA0, + 0xFB, 0x57, 0x05, 0xD2, 0xFD, 0x89, 0x02, 0x77, 0xFA, 0x2E, 0x02, 0x98, + 0xFD, 0x68, 0x00, 0x02, 0x00, 0x8E, 0xFE, 0x5B, 0x05, 0x32, 0x05, 0xD2, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x35, 0x16, 0x32, 0x33, 0x32, + 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x11, + 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x03, 0x7C, + 0x11, 0x3E, 0x14, 0x40, 0x33, 0xE0, 0x9E, 0x98, 0x28, 0x41, 0xFC, 0xFB, + 0xE0, 0x02, 0xE4, 0xE0, 0xE0, 0xFD, 0x1C, 0xFE, 0x5E, 0xB9, 0x01, 0x2E, + 0x33, 0x01, 0x07, 0xFE, 0xEE, 0x86, 0x8B, 0x02, 0x01, 0xA3, 0x05, 0xD2, + 0xFD, 0x89, 0x02, 0x77, 0xFA, 0x2E, 0x02, 0x98, 0xFD, 0x68, 0xFF, 0xFF, + 0x00, 0x8E, 0xFE, 0xC0, 0x05, 0xC1, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xA1, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x04, 0x6A, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x8E, 0xFE, 0xC0, 0x05, 0xF2, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xA1, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x8E, 0x00, 0x00, 0x07, 0x7E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x0F, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x27, 0x01, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x07, 0x7E, 0xFD, 0x82, 0xA7, 0xFC, + 0x35, 0xE0, 0x02, 0xE4, 0xE0, 0xE0, 0xFD, 0x1C, 0x05, 0xD2, 0xBE, 0xBE, + 0xFA, 0x2E, 0x05, 0xD2, 0xFD, 0x89, 0x02, 0x77, 0xFA, 0x2E, 0x02, 0x98, + 0xFD, 0x68, 0x00, 0x01, 0x00, 0x8E, 0xFF, 0xEB, 0x08, 0x01, 0x05, 0xD2, + 0x00, 0x1D, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x35, 0x21, 0x11, + 0x23, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x06, 0x2B, + 0x8F, 0xD5, 0x75, 0xFD, 0x1C, 0xE0, 0xE0, 0x02, 0xE4, 0xE0, 0x39, 0x70, + 0x50, 0x51, 0x72, 0x3B, 0xD8, 0x75, 0xD3, 0x15, 0x6C, 0xC8, 0x8A, 0xEC, + 0xFD, 0x6B, 0x05, 0xD2, 0xFD, 0x86, 0x02, 0x7A, 0xFB, 0xDF, 0x55, 0x76, + 0x3D, 0x3D, 0x76, 0x55, 0x02, 0x7A, 0xFD, 0x7E, 0x8A, 0xC8, 0x6C, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x05, 0xD2, 0x06, 0x06, 0x00, + 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x3B, 0x05, + 0xD2, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x09, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x66, 0x05, + 0xE2, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x35, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x7D, 0xEA, 0xF3, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x7B, 0x05, + 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x49, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x7E, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x85, 0x05, + 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x53, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x7F, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x9A, 0x05, + 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x68, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x92, 0x05, + 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x61, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x81, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0xA0, 0x05, + 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x6F, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x11, 0x07, + 0x09, 0x04, 0x27, 0x00, 0xA1, 0x01, 0xDF, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x83, 0x3A, 0xEF, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x20, 0x06, + 0xFF, 0x04, 0x27, 0x00, 0xA1, 0x01, 0xEF, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x84, 0x3A, 0xE4, 0xFF, 0xFF, 0xFF, 0xD1, 0x00, 0x00, 0x06, 0x69, 0x05, + 0xE6, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x37, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x88, 0xFF, 0xA9, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, + 0x3B, 0x05, 0xD2, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x09, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, + 0x32, 0x05, 0xD2, 0x06, 0x06, 0x00, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x3A, 0xFE, 0x18, 0x06, 0x66, 0x05, 0xE2, 0x04, 0x27, 0x00, 0xA1, 0x01, + 0x35, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0x31, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x7D, 0xEA, 0xF3, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x06, + 0x7B, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x01, 0x49, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x03, 0x45, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xEA, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, 0x85, 0x05, 0xD5, 0x04, + 0x27, 0x00, 0xA1, 0x02, 0x53, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, + 0x50, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFE, 0x18, 0x07, 0x9A, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, + 0x68, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, 0x64, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, + 0x92, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xA1, 0x02, 0x61, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x04, 0x5D, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xEA, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, 0xA0, 0x05, 0xD5, 0x04, + 0x27, 0x00, 0xA1, 0x02, 0x6F, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, + 0x6B, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFE, 0x18, 0x07, 0x11, 0x07, 0x09, 0x04, 0x27, 0x00, 0xA1, 0x01, + 0xDF, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, 0xDB, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x83, 0x3A, 0xEF, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, + 0x20, 0x06, 0xFF, 0x04, 0x27, 0x00, 0xA1, 0x01, 0xEF, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x03, 0xEB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x3A, + 0xE4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x18, 0x05, 0x32, 0x05, 0xD2, 0x06, + 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x09, 0xE4, 0x01, 0xFC, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x01, 0x6E, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x6E, 0xE0, 0x05, 0xD2, + 0xFA, 0x2E, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x03, 0x6A, + 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, + 0x01, 0xFC, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xA6, 0x00, 0x00, 0x02, 0x57, + 0x07, 0x88, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, + 0xFE, 0xB8, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0x9F, 0x00, 0x00, 0x02, 0x50, + 0x08, 0xC3, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE4, + 0xFE, 0xB1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x10, 0x00, 0x00, 0x02, 0x8D, + 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, 0x50, 0x00, 0x00, 0x06, 0x0B, 0x39, + 0xE8, 0x1B, 0xFF, 0xFF, 0xFF, 0xCC, 0xFE, 0x57, 0x02, 0x32, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFF, 0x12, + 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xE0, 0x00, 0x00, 0x01, 0x6E, 0x07, 0x89, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0xFF, 0x88, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x02, 0x1B, 0x07, 0x89, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, 0x3E, + 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xB0, 0x00, 0x00, 0x02, 0x4D, 0x07, 0x89, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0x61, + 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xCC, 0x00, 0x00, 0x02, 0x32, 0x07, 0x73, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFF, 0x12, + 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xE6, 0x00, 0x00, 0x02, 0x17, 0x07, 0x41, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x55, + 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xCD, 0x00, 0x00, 0x02, 0x2F, 0x07, 0x87, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0x62, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x07, 0xFE, 0x5A, 0x01, 0x7C, 0x05, 0xD2, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x96, 0xB7, 0x00, + 0xFF, 0xFF, 0x00, 0x78, 0x00, 0x00, 0x01, 0x85, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x10, 0x01, 0xA4, + 0xFF, 0xFF, 0xFF, 0xB0, 0x00, 0x00, 0x02, 0x4D, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, 0x61, 0x01, 0xA4, + 0xFF, 0xFF, 0xFF, 0x2D, 0x00, 0x00, 0x01, 0xF4, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0xFE, 0xD5, 0x01, 0xA4, + 0xFF, 0xFF, 0xFF, 0xCA, 0x00, 0x00, 0x02, 0x32, 0x07, 0x8D, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0xFF, 0x62, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x54, 0x00, 0x00, 0x01, 0xA1, 0x07, 0x89, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0xFF, 0xEB, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x78, 0xFE, 0x43, 0x01, 0x85, 0x05, 0xD2, 0x06, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x10, 0xF9, 0x62, + 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xFE, 0x01, 0xEE, 0x05, 0xD2, 0x06, 0x06, + 0x02, 0xEF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x01, 0x6E, + 0x05, 0xD2, 0x06, 0x06, 0x00, 0xC5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x02, 0x77, 0x05, 0xD2, 0x04, 0x27, 0x00, 0xC5, 0x01, 0x09, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0xFF, 0xA6, + 0x00, 0x00, 0x02, 0x57, 0x07, 0x88, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xB8, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x02, 0xA3, 0x05, 0xE2, 0x04, 0x27, 0x00, 0xC5, 0x01, 0x35, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xEA, 0xF3, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x02, 0xB7, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xC5, 0x01, 0x49, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x03, 0xC1, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xC5, 0x02, 0x53, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x03, 0xD6, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xC5, 0x02, 0x68, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x03, 0xCF, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xC5, 0x02, 0x61, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x03, 0xDD, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xC5, 0x02, 0x6F, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x03, 0x4D, 0x07, 0x09, 0x04, 0x27, 0x00, 0xC5, 0x01, 0xDF, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0x3A, 0xEF, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x03, 0x5D, 0x06, 0xFF, 0x04, 0x27, 0x00, 0xC5, 0x01, 0xEF, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x3A, 0xE4, 0xFF, 0xFF, 0xFF, 0xCD, + 0x00, 0x00, 0x02, 0x2F, 0x07, 0x87, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0x62, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xE6, + 0x00, 0x00, 0x02, 0x17, 0x07, 0x41, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x55, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xD1, + 0x00, 0x00, 0x02, 0xA5, 0x05, 0xE6, 0x04, 0x27, 0x00, 0xC5, 0x01, 0x37, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFF, 0xA9, 0x00, 0x01, 0xFF, 0xFF, + 0x00, 0x3A, 0x00, 0x00, 0x02, 0x77, 0x05, 0xD2, 0x04, 0x27, 0x00, 0xC5, + 0x01, 0x09, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x01, 0x6E, 0x05, 0xD2, 0x06, 0x06, 0x00, 0xC5, + 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xA6, 0x00, 0x00, 0x02, 0x57, 0x07, 0x88, + 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xB8, + 0x01, 0xA4, 0x00, 0x01, 0x00, 0x4D, 0x00, 0x00, 0x02, 0xB9, 0x05, 0xD2, + 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, + 0x23, 0x11, 0x33, 0x15, 0x4D, 0xC6, 0xC6, 0x02, 0x6C, 0xC6, 0xC6, 0xBF, + 0x04, 0x54, 0xBF, 0xBF, 0xFB, 0xAC, 0xBF, 0xFF, 0xFF, 0x00, 0x2B, 0x00, + 0x00, 0x02, 0xDB, 0x07, 0x88, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8B, 0xFF, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x24, 0x00, + 0x00, 0x02, 0xD5, 0x08, 0xC3, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xE4, 0xFF, 0x36, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x44, 0x00, + 0x00, 0x02, 0xC2, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, + 0x06, 0x0B, 0x39, 0x1C, 0x1B, 0xFF, 0xFF, 0x00, 0x4D, 0xFE, 0x57, 0x02, + 0xB9, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEC, 0xFF, 0x97, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE9, 0x00, 0x0D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x00, 0xC3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x34, 0x00, 0x00, 0x02, + 0xD2, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8D, 0xFF, 0xE6, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x73, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEC, 0xFF, 0x97, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x41, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0xFF, 0xDA, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x87, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0xFF, 0xE7, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0xFE, 0x5A, 0x02, + 0xC6, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x96, 0x01, 0x02, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x00, 0x95, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x34, 0x00, 0x00, 0x02, + 0xD2, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8E, 0xFF, 0xE6, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xB2, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEA, 0xFF, 0x5A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x8D, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0xF8, 0xFF, 0xE6, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x89, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x91, 0x00, 0x70, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0xFE, 0x43, 0x02, + 0xB9, 0x05, 0xD2, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x00, 0x95, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, + 0x21, 0x05, 0xE2, 0x04, 0x27, 0x00, 0xEA, 0x01, 0x69, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x7D, 0xEA, 0xF3, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, + 0x36, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x01, 0x7D, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x7E, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, + 0x40, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, 0x87, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x7F, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, + 0x55, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, 0x9C, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, + 0x4D, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, 0x95, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x81, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x05, + 0x5B, 0x05, 0xD5, 0x04, 0x27, 0x00, 0xEA, 0x02, 0xA3, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, + 0xCC, 0x07, 0x09, 0x04, 0x27, 0x00, 0xEA, 0x02, 0x13, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x83, 0x3A, 0xEF, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, + 0xDB, 0x06, 0xFF, 0x04, 0x27, 0x00, 0xEA, 0x02, 0x23, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x84, 0x3A, 0xE4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x87, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0xFF, 0xE7, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, + 0xB9, 0x07, 0x41, 0x06, 0x26, 0x00, 0xEA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0xFF, 0xDA, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0x9D, 0x00, 0x00, 0x03, + 0xF0, 0x05, 0xE6, 0x04, 0x27, 0x00, 0xEA, 0x01, 0x37, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x88, 0xFF, 0x75, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x3A, 0x00, + 0x00, 0x03, 0xF6, 0x05, 0xD2, 0x04, 0x27, 0x00, 0xEA, 0x01, 0x3D, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x4D, 0x00, + 0x00, 0x02, 0xB9, 0x05, 0xD2, 0x06, 0x06, 0x00, 0xEA, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x2B, 0x00, 0x00, 0x02, 0xDB, 0x07, 0x88, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFF, 0x3C, 0x01, 0xA4, 0x00, + 0x01, 0x00, 0x4A, 0xFF, 0xEB, 0x03, 0xDF, 0x05, 0xD2, 0x00, 0x11, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x02, 0x13, 0xCD, 0xFC, 0xDB, + 0x82, 0x6B, 0x6C, 0x81, 0xE0, 0xFD, 0x15, 0xEC, 0xDA, 0x56, 0x57, 0x7F, + 0x84, 0x84, 0x7F, 0x04, 0x22, 0xFB, 0xDE, 0xDA, 0xEB, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xEB, 0x04, 0xBE, 0x07, 0x89, 0x06, 0x26, 0x01, 0x0A, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0xD2, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xEB, 0x04, 0xAE, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x0A, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x39, 0x02, 0x08, 0x00, 0x8B, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xEB, 0x03, 0xDF, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x0A, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x03, 0xDF, 0x05, 0xD2, 0x06, + 0x06, 0x01, 0x0A, 0x00, 0x00, 0x00, 0x03, 0x00, 0x8E, 0x00, 0x00, 0x05, + 0x2A, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x41, + 0x11, 0x3E, 0x02, 0x37, 0x01, 0x21, 0x01, 0x27, 0x01, 0x11, 0x33, 0x11, + 0x03, 0x17, 0x11, 0x21, 0x01, 0x37, 0x01, 0x01, 0x2B, 0x33, 0x66, 0x69, + 0x36, 0x01, 0xA6, 0x01, 0x1C, 0xFD, 0x86, 0x0E, 0xFD, 0xF1, 0xE0, 0x01, + 0x01, 0x02, 0xB6, 0xFE, 0x00, 0x89, 0x02, 0x7D, 0x01, 0x86, 0x01, 0x0F, + 0x3F, 0x78, 0x77, 0x3C, 0x01, 0xD3, 0xFD, 0x49, 0x01, 0xFC, 0xE4, 0x05, + 0xD2, 0xFE, 0x1E, 0xFE, 0xAF, 0x6C, 0xFD, 0xCD, 0x02, 0xDE, 0xAD, 0xFC, + 0x75, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x17, 0x05, 0x2A, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0xAA, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x2A, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x0F, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x2A, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xEC, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x05, 0x2A, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xBF, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x92, 0x05, 0x2A, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x04, 0xF9, + 0x92, 0x00, 0x02, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x7B, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x10, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x11, 0x33, + 0x11, 0x33, 0x01, 0x21, 0x01, 0x01, 0x21, 0x01, 0x23, 0x11, 0x02, 0x4D, + 0xFD, 0xED, 0x01, 0xA5, 0xE0, 0xBE, 0x01, 0xDC, 0x01, 0x0A, 0xFD, 0xD6, + 0x02, 0x42, 0xFE, 0xF7, 0xFE, 0x11, 0xC4, 0x05, 0xD2, 0xC2, 0xC2, 0xFA, + 0x2E, 0x05, 0xD2, 0xFD, 0x88, 0x02, 0x78, 0xFD, 0x2E, 0xFD, 0x00, 0x02, + 0x94, 0xFD, 0x6C, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0xC0, 0x05, 0x7A, 0x05, + 0xD2, 0x04, 0x26, 0x04, 0x31, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x04, + 0x22, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x5E, 0x05, + 0xEB, 0x00, 0x13, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x33, 0x01, 0x36, + 0x36, 0x16, 0x17, 0x07, 0x26, 0x06, 0x07, 0x01, 0x01, 0x21, 0x01, 0x07, + 0x11, 0x8E, 0xDE, 0x13, 0x02, 0x2E, 0x41, 0x92, 0x98, 0x46, 0x51, 0x34, + 0x61, 0x36, 0xFE, 0x6F, 0x02, 0x6D, 0xFE, 0xF4, 0xFE, 0x13, 0xB9, 0x05, + 0xD2, 0xFD, 0x3B, 0x02, 0x62, 0x45, 0x37, 0x14, 0x2E, 0xA2, 0x1F, 0x14, + 0x39, 0xFE, 0x54, 0xFC, 0xD3, 0x02, 0x91, 0xCE, 0xFE, 0x3D, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x05, 0x2A, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x0F, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x28, 0x05, 0xD2, + 0x00, 0x05, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x15, 0x8E, 0xE0, + 0x02, 0xBA, 0x05, 0xD2, 0xFA, 0xF1, 0xC3, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x00, 0x3E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0x17, 0x04, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE7, 0x01, 0x4D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0x28, 0x06, 0x1A, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x28, 0x01, 0xBF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0x43, 0x04, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x62, 0xF9, 0x62, 0xFF, 0xFF, 0xFF, 0xE5, 0xFE, + 0x43, 0x04, 0x28, 0x07, 0x41, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, + 0x27, 0x0A, 0x8C, 0x01, 0x62, 0xF9, 0x62, 0x00, 0x07, 0x06, 0xEB, 0xFF, + 0x55, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x92, 0x04, 0x28, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0xA7, 0xF9, 0x92, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x3A, 0x04, 0x28, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, + 0xB4, 0xF9, 0x71, 0xFF, 0xFF, 0x00, 0x17, 0x00, 0x00, 0x04, 0x6B, 0x05, + 0xD2, 0x04, 0x26, 0x01, 0x19, 0x43, 0x00, 0x00, 0x06, 0x0B, 0x6B, 0x17, + 0xE5, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x04, 0x6F, 0x05, 0xD2, 0x04, + 0x26, 0x01, 0x19, 0x47, 0x00, 0x00, 0x06, 0x0B, 0x69, 0xE4, 0x00, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x5E, 0x05, 0xD0, 0x05, 0xE5, 0x04, 0x26, 0x01, + 0x19, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x04, 0x61, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x04, 0x5B, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8E, 0x00, + 0x00, 0x06, 0x7A, 0x05, 0xD2, 0x00, 0x2D, 0x00, 0x00, 0x73, 0x11, 0x21, + 0x01, 0x1E, 0x03, 0x17, 0x23, 0x3E, 0x03, 0x37, 0x01, 0x21, 0x11, 0x23, + 0x11, 0x34, 0x3E, 0x02, 0x35, 0x33, 0x0E, 0x03, 0x07, 0x01, 0x23, 0x01, + 0x2E, 0x03, 0x27, 0x33, 0x1E, 0x03, 0x15, 0x11, 0x8E, 0x01, 0x3E, 0x01, + 0x4C, 0x0E, 0x25, 0x28, 0x23, 0x0B, 0x34, 0x0B, 0x23, 0x27, 0x25, 0x0D, + 0x01, 0x47, 0x01, 0x3F, 0xDC, 0x02, 0x03, 0x04, 0x1B, 0x18, 0x30, 0x2C, + 0x26, 0x0F, 0xFE, 0xC8, 0xB9, 0xFE, 0xC5, 0x0F, 0x26, 0x2E, 0x31, 0x1A, + 0x22, 0x01, 0x03, 0x03, 0x02, 0x05, 0xD2, 0xFC, 0x9B, 0x25, 0x6E, 0x7A, + 0x70, 0x26, 0x26, 0x6F, 0x7A, 0x6F, 0x25, 0x03, 0x65, 0xFA, 0x2E, 0x03, + 0x2A, 0x30, 0x79, 0x85, 0x87, 0x3F, 0x49, 0x92, 0x85, 0x6E, 0x26, 0xFC, + 0xD6, 0x03, 0x2A, 0x26, 0x6D, 0x85, 0x92, 0x4A, 0x3E, 0x86, 0x85, 0x7A, + 0x31, 0xFC, 0xD6, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x06, 0x7A, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, + 0xC3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x06, 0x7A, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, + 0x95, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x06, 0x7A, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, + 0x96, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0xC0, 0x07, 0x38, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x24, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x05, + 0x42, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x06, 0x7A, 0x05, + 0xD2, 0x06, 0x06, 0x01, 0x24, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x06, 0x7A, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x24, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x06, 0x7A, 0x05, 0xD2, 0x06, 0x06, 0x01, + 0x24, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x05, + 0xD2, 0x00, 0x1B, 0x00, 0x00, 0x73, 0x11, 0x33, 0x01, 0x1E, 0x02, 0x17, + 0x07, 0x2E, 0x02, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, 0x02, 0x27, + 0x37, 0x1E, 0x02, 0x15, 0x11, 0x8E, 0xFA, 0x02, 0x37, 0x16, 0x41, 0x49, + 0x22, 0x18, 0x04, 0x06, 0x02, 0xE0, 0xFB, 0xFE, 0x04, 0x1B, 0x4D, 0x63, + 0x3C, 0x21, 0x06, 0x06, 0x03, 0x05, 0xD2, 0xFC, 0x7E, 0x22, 0x6F, 0x83, + 0x42, 0x27, 0x40, 0x9C, 0x8D, 0x28, 0x03, 0x6E, 0xFA, 0x2E, 0x03, 0x22, + 0x2C, 0x80, 0xAB, 0x68, 0x22, 0x71, 0xBB, 0x8B, 0x28, 0xFC, 0xDC, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x73, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xF9, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x89, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x26, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x17, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0xE4, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x89, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x49, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x89, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x70, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x89, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xF8, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xF8, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x92, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x3D, 0xF9, 0x92, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x3A, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x4A, 0xF9, 0x71, 0x00, + 0x02, 0xFF, 0xB9, 0xFE, 0x5B, 0x05, 0x3D, 0x05, 0xD2, 0x00, 0x0F, 0x00, + 0x2B, 0x00, 0x00, 0x43, 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x13, 0x11, 0x33, 0x01, 0x1E, + 0x02, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, + 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, 0x47, 0x11, 0x3E, 0x13, 0x40, + 0x33, 0xE0, 0x9D, 0x99, 0x27, 0x42, 0xBF, 0xFA, 0x02, 0x37, 0x16, 0x41, + 0x49, 0x22, 0x18, 0x04, 0x06, 0x02, 0xE0, 0xFB, 0xFE, 0x04, 0x1B, 0x4D, + 0x63, 0x3C, 0x21, 0x06, 0x06, 0x03, 0xFE, 0x5E, 0xB9, 0x01, 0x2E, 0x33, + 0x01, 0x07, 0xFE, 0xEE, 0x86, 0x8B, 0x02, 0x01, 0xA3, 0x05, 0xD2, 0xFC, + 0x7E, 0x22, 0x6F, 0x83, 0x42, 0x27, 0x40, 0x9C, 0x8D, 0x28, 0x03, 0x6E, + 0xFA, 0x2E, 0x03, 0x22, 0x2C, 0x80, 0xAB, 0x68, 0x22, 0x71, 0xBB, 0x8B, + 0x28, 0xFC, 0xDC, 0x00, 0x02, 0x00, 0x8E, 0xFE, 0x5B, 0x05, 0x3F, 0x05, + 0xD2, 0x00, 0x0F, 0x00, 0x2B, 0x00, 0x00, 0x41, 0x35, 0x16, 0x32, 0x33, + 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, + 0x11, 0x33, 0x01, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x33, + 0x11, 0x23, 0x01, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, 0x03, + 0x8A, 0x11, 0x3E, 0x13, 0x40, 0x33, 0xE0, 0x9D, 0x99, 0x27, 0x42, 0xFC, + 0xEE, 0xFA, 0x02, 0x37, 0x16, 0x41, 0x49, 0x22, 0x18, 0x04, 0x06, 0x02, + 0xE0, 0xFB, 0xFE, 0x04, 0x1B, 0x4D, 0x63, 0x3C, 0x21, 0x06, 0x06, 0x03, + 0xFE, 0x5E, 0xB9, 0x01, 0x2E, 0x33, 0x01, 0x07, 0xFE, 0xEE, 0x86, 0x8B, + 0x02, 0x01, 0xA3, 0x05, 0xD2, 0xFC, 0x7E, 0x22, 0x6F, 0x83, 0x42, 0x27, + 0x40, 0x9C, 0x8D, 0x28, 0x03, 0x6E, 0xFA, 0x2E, 0x03, 0x22, 0x2C, 0x80, + 0xAB, 0x68, 0x22, 0x71, 0xBB, 0x8B, 0x28, 0xFC, 0xDC, 0x00, 0x01, 0x00, + 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x05, 0xD2, 0x00, 0x1B, 0x00, 0x00, 0x61, + 0x23, 0x11, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x07, 0x01, 0x23, + 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x37, 0x01, + 0x33, 0x05, 0x3D, 0xE0, 0x02, 0x07, 0x05, 0x21, 0x3C, 0x62, 0x4D, 0x1C, + 0xFE, 0x05, 0xFC, 0xE1, 0x03, 0x05, 0x05, 0x18, 0x23, 0x48, 0x42, 0x15, + 0x02, 0x37, 0xFA, 0x03, 0x24, 0x28, 0x8B, 0xBB, 0x71, 0x22, 0x68, 0xAB, + 0x80, 0x2C, 0xFC, 0xDE, 0x05, 0xD2, 0xFC, 0x92, 0x28, 0x8D, 0x9C, 0x40, + 0x27, 0x42, 0x83, 0x6F, 0x22, 0x03, 0x82, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x05, 0x3D, 0x07, 0x89, 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE9, 0x01, 0x74, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x05, 0x3D, 0x07, 0x87, 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8F, 0x01, 0x4D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x05, 0x3D, 0x07, 0x41, 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0x01, 0x41, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x05, 0x3D, 0x07, 0x88, 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8B, 0x00, 0xA3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0xC0, 0x06, 0x05, 0x07, 0x87, 0x06, 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, + 0x27, 0x0A, 0x8F, 0x01, 0x4D, 0x01, 0xA4, 0x00, 0x07, 0x0B, 0x3C, 0x04, + 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x05, + 0xD2, 0x06, 0x06, 0x01, 0x38, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x2C, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x5E, 0x07, 0x3A, 0x05, 0xE5, 0x04, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x05, 0xCB, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x05, 0xC5, 0x00, 0x00, 0x00, 0x02, 0x00, 0x58, 0xFF, + 0xE9, 0x05, 0xAD, 0x05, 0xE9, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x45, + 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, + 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x03, 0xC5, 0xFE, 0xCB, + 0xB1, 0xB1, 0x01, 0x35, 0xC5, 0xC5, 0x01, 0x34, 0xB1, 0xB1, 0xFE, 0xCC, + 0xC5, 0x80, 0xD0, 0x7A, 0x7A, 0xD0, 0x80, 0x80, 0xD0, 0x7B, 0x7B, 0xD0, + 0x17, 0xC0, 0x01, 0x59, 0xE6, 0xE8, 0x01, 0x59, 0xC0, 0xC0, 0xFE, 0xA7, + 0xE8, 0xE6, 0xFE, 0xA7, 0xC0, 0xCC, 0x82, 0xFC, 0xB5, 0xB6, 0xFD, 0x82, + 0x82, 0xFD, 0xB6, 0xB5, 0xFC, 0x82, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, + 0x05, 0xAD, 0x07, 0x88, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0x00, 0xBC, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, + 0x05, 0xAD, 0x07, 0x73, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEC, 0x01, 0x16, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xC5, + 0x05, 0xAD, 0x06, 0x0D, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x38, 0x00, 0x72, 0x00, 0x00, 0x00, 0x03, 0x00, 0x58, 0xFF, 0xE9, + 0x05, 0xAD, 0x06, 0xBB, 0x00, 0x12, 0x00, 0x22, 0x00, 0x32, 0x00, 0x00, + 0x41, 0x35, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x35, 0x33, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x2E, 0x02, 0x03, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, + 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x03, 0x03, 0x39, 0x51, 0x57, 0x80, 0x6A, 0x15, 0xCA, 0x60, 0x5A, + 0x2D, 0x4E, 0x64, 0x99, 0x78, 0xC5, 0xFE, 0xCB, 0xB1, 0xB1, 0x01, 0x35, + 0xC5, 0xC5, 0x01, 0x34, 0xB1, 0xB1, 0xFE, 0xCC, 0xC5, 0x80, 0xD0, 0x7A, + 0x7A, 0xD0, 0x80, 0x80, 0xD0, 0x7B, 0x7B, 0xD0, 0x05, 0x4A, 0x9F, 0x07, + 0x09, 0x07, 0x15, 0xD4, 0xD4, 0x5A, 0x58, 0x06, 0x09, 0x06, 0xFA, 0x9F, + 0xC0, 0x01, 0x59, 0xE6, 0xE8, 0x01, 0x59, 0xC0, 0xC0, 0xFE, 0xA7, 0xE8, + 0xE6, 0xFE, 0xA7, 0xC0, 0xCC, 0x82, 0xFC, 0xB5, 0xB6, 0xFD, 0x82, 0x82, + 0xFD, 0xB6, 0xB5, 0xFC, 0x82, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE9, 0x01, 0x8D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x02, 0x42, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8D, 0x01, 0x66, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x07, 0x41, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0x01, 0x5A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x07, 0x87, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x01, 0x66, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xD7, 0x01, 0x6B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8E, 0x01, 0x66, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x5A, 0x05, + 0xAD, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x58, 0x02, 0x76, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x5A, 0x05, + 0xAD, 0x07, 0x41, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x27, 0x0B, + 0x58, 0x02, 0x76, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x5A, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, 0xDA, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x8D, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x01, 0x66, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0x64, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE7, 0x00, 0xB6, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0x64, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1F, 0x01, 0x17, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x14, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0x64, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE6, 0x02, 0x15, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0xC3, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xEA, 0x01, 0x17, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0xA7, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1D, 0x01, 0x19, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0xC3, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x54, 0x01, 0x5A, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0xC3, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xB8, 0x01, 0x5A, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x43, 0x05, 0xAD, 0x05, 0xE9, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x15, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xEF, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0xAE, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x01, 0x67, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0xAE, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, 0x01, 0x67, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0xAE, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, 0x01, 0x67, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x08, 0x98, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, 0x01, 0x67, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x43, 0x05, 0xAD, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x01, 0x66, 0x01, + 0xA4, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x15, 0xF9, 0x62, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x42, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x8D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xEF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x73, 0x06, 0x26, 0x01, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEC, 0x01, 0x16, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x58, 0xFE, 0x43, 0x05, 0xAD, 0x06, 0xBB, 0x06, 0x26, 0x01, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x15, 0xF9, 0x62, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xC5, 0x05, 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, 0x41, 0x00, + 0x00, 0x00, 0x27, 0x0B, 0x38, 0x00, 0x72, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x02, 0x42, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, + 0xAD, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x41, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x3A, 0xFF, 0xE9, 0x06, 0x4D, 0x05, 0xE9, 0x04, 0x27, 0x01, 0x41, 0x00, + 0xA0, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, + 0x3A, 0xFF, 0xE9, 0x06, 0x79, 0x05, 0xE9, 0x04, 0x27, 0x01, 0x41, 0x00, + 0xCC, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xEA, 0xF3, 0xFF, 0xFF, 0x00, + 0x3A, 0xFF, 0xE9, 0x06, 0x8D, 0x05, 0xE9, 0x04, 0x27, 0x01, 0x41, 0x00, + 0xE0, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFF, 0xE9, 0x07, 0x98, 0x05, 0xE9, 0x04, 0x27, 0x01, 0x41, 0x01, + 0xEB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7F, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFF, 0xE9, 0x07, 0xAC, 0x05, 0xE9, 0x04, 0x27, 0x01, 0x41, 0x01, + 0xFF, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFF, 0xE9, 0x07, 0xA5, 0x05, 0xE9, 0x04, 0x27, 0x01, 0x41, 0x01, + 0xF8, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFF, 0xE9, 0x07, 0xB3, 0x05, 0xE9, 0x04, 0x27, 0x01, 0x41, 0x02, + 0x06, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0xFF, + 0x03, 0xFF, 0xE9, 0x05, 0xAD, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x41, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFE, 0xDB, 0x00, 0x01, 0x00, 0x03, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x05, 0xE9, 0x00, 0x03, 0x00, 0x13, 0x00, + 0x23, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x24, 0x02, 0x35, + 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x27, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x04, 0xF2, 0xFC, 0x14, 0x01, 0xFD, 0xC5, 0xFE, 0xCB, + 0xB1, 0xB1, 0x01, 0x35, 0xC5, 0xC5, 0x01, 0x34, 0xB1, 0xB1, 0xFE, 0xCC, + 0xC5, 0x80, 0xD0, 0x7A, 0x7A, 0xD0, 0x80, 0x80, 0xD0, 0x7B, 0x7B, 0xD0, + 0x03, 0x3F, 0xAD, 0xAD, 0xFC, 0xAA, 0xC0, 0x01, 0x59, 0xE6, 0xE8, 0x01, + 0x59, 0xC0, 0xC0, 0xFE, 0xA7, 0xE8, 0xE6, 0xFE, 0xA7, 0xC0, 0xCC, 0x82, + 0xFC, 0xB5, 0xB6, 0xFD, 0x82, 0x82, 0xFD, 0xB6, 0xB5, 0xFC, 0x82, 0xFF, + 0xFF, 0x00, 0x3A, 0xFF, 0xE9, 0x06, 0x4D, 0x05, 0xE9, 0x04, 0x27, 0x01, + 0x41, 0x00, 0xA0, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, + 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x05, 0xE9, 0x06, 0x06, 0x01, + 0x41, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, + 0x88, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, + 0xBC, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x05, + 0xE9, 0x06, 0x06, 0x01, 0x6F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, + 0xE9, 0x05, 0xAD, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x6F, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x88, 0x06, 0x26, 0x01, + 0x6F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0xBC, 0x01, 0xA4, 0x00, + 0x02, 0x00, 0x58, 0x00, 0x00, 0x07, 0xB5, 0x05, 0xD2, 0x00, 0x15, 0x00, + 0x21, 0x00, 0x00, 0x61, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, + 0x21, 0x15, 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x21, + 0x15, 0x23, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, + 0x15, 0x03, 0x1E, 0xDE, 0xFE, 0xC2, 0xAA, 0xA9, 0x01, 0x3A, 0xD7, 0x01, + 0x36, 0xFE, 0xD6, 0xA0, 0xDA, 0x70, 0x70, 0xDF, 0xA6, 0x01, 0x19, 0x6B, + 0x03, 0xDC, 0xFD, 0x04, 0x02, 0xC4, 0xFD, 0x3C, 0x02, 0xFE, 0xB6, 0x01, + 0x4F, 0xE6, 0xE5, 0x01, 0x4E, 0xB4, 0xC3, 0x82, 0xF6, 0xAC, 0xAD, 0xF8, + 0x83, 0xC3, 0x05, 0xD2, 0xC3, 0xFE, 0x47, 0xC1, 0xFE, 0x2E, 0xC3, 0x00, + 0x01, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xB9, 0x05, 0xD2, 0x00, 0x17, 0x00, + 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, + 0x11, 0x8E, 0x02, 0x24, 0xA3, 0xE8, 0x7C, 0x7F, 0xEB, 0xA2, 0xFE, 0x61, + 0x01, 0x97, 0x63, 0x8A, 0x49, 0x49, 0x8A, 0x64, 0xFE, 0xCA, 0x05, 0xD2, + 0x74, 0xD3, 0x8E, 0x8D, 0xD3, 0x75, 0xC1, 0x44, 0x7D, 0x53, 0x55, 0x7B, + 0x44, 0xFA, 0xEF, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xB9, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x77, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, + 0xB5, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xB9, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x77, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x87, 0x01, 0xA4, 0x00, 0x02, 0x00, 0x90, 0x00, 0x00, 0x04, 0xBB, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x01, 0x07, 0x01, 0x01, + 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x35, + 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x03, + 0x10, 0x01, 0x41, 0x85, 0xFE, 0xBE, 0xFE, 0x06, 0x02, 0x24, 0xA3, 0xE8, + 0x7C, 0x7F, 0xEA, 0xA3, 0xFE, 0x61, 0x01, 0x97, 0x63, 0x8A, 0x49, 0x49, + 0x8A, 0x64, 0xFE, 0xCA, 0x03, 0xC4, 0xFE, 0x10, 0x55, 0x01, 0xEF, 0xFC, + 0x92, 0x05, 0xD2, 0x74, 0xD3, 0x8E, 0x8D, 0xD3, 0x75, 0xC1, 0x44, 0x7D, + 0x53, 0x55, 0x7B, 0x44, 0xFA, 0xEF, 0x00, 0x02, 0x00, 0x2C, 0x00, 0x00, + 0x05, 0xF5, 0x05, 0xD2, 0x00, 0x0B, 0x00, 0x23, 0x00, 0x00, 0x53, 0x35, + 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x15, 0x13, 0x11, + 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x35, 0x21, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x2C, 0x97, + 0x97, 0x71, 0x5D, 0x3C, 0x36, 0xCE, 0x02, 0x24, 0xA3, 0xE8, 0x7C, 0x7F, + 0xEB, 0xA2, 0xFE, 0x61, 0x01, 0x97, 0x63, 0x8A, 0x49, 0x49, 0x8A, 0x64, + 0xFE, 0xCA, 0x04, 0x20, 0x97, 0x8B, 0x90, 0xC1, 0x31, 0x36, 0x8A, 0xFB, + 0xE0, 0x05, 0xD2, 0x74, 0xD3, 0x8E, 0x8D, 0xD3, 0x75, 0xC1, 0x44, 0x7D, + 0x53, 0x55, 0x7B, 0x44, 0xFA, 0xEF, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, + 0x04, 0xB9, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x77, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x3A, 0x00, 0x00, 0x06, 0x1F, 0x05, 0xD5, 0x04, 0x27, 0x01, 0x77, + 0x01, 0x67, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xEA, 0xE6, 0x00, 0x03, + 0x00, 0x58, 0xFF, 0x79, 0x05, 0xAD, 0x05, 0xE9, 0x00, 0x07, 0x00, 0x17, + 0x00, 0x27, 0x00, 0x00, 0x41, 0x33, 0x17, 0x17, 0x13, 0x23, 0x27, 0x27, + 0x07, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, + 0x15, 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0xAC, 0xDB, 0x9C, + 0x45, 0xFA, 0xE2, 0xA4, 0x3B, 0x9E, 0xC5, 0xFE, 0xCB, 0xB1, 0xB1, 0x01, + 0x35, 0xC5, 0xC5, 0x01, 0x34, 0xB1, 0xB1, 0xFE, 0xCC, 0xC5, 0x80, 0xD0, + 0x7A, 0x7A, 0xD0, 0x80, 0x80, 0xD0, 0x7B, 0x7B, 0xD0, 0x01, 0xE1, 0xCC, + 0x57, 0xFE, 0xBB, 0xD8, 0x4D, 0xB5, 0xC0, 0x01, 0x59, 0xE6, 0xE8, 0x01, + 0x59, 0xC0, 0xC0, 0xFE, 0xA7, 0xE8, 0xE6, 0xFE, 0xA7, 0xC0, 0xCC, 0x82, + 0xFC, 0xB5, 0xB6, 0xFD, 0x82, 0x82, 0xFD, 0xB6, 0xB5, 0xFC, 0x82, 0x00, + 0x03, 0x00, 0x58, 0xFE, 0x5B, 0x06, 0x51, 0x05, 0xE9, 0x00, 0x16, 0x00, + 0x26, 0x00, 0x36, 0x00, 0x00, 0x41, 0x11, 0x23, 0x35, 0x23, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x33, 0x35, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x22, 0x26, 0x35, + 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, + 0x05, 0x7A, 0xD5, 0x05, 0x37, 0xF1, 0x9A, 0x8C, 0xEC, 0xAE, 0x60, 0x60, + 0xAE, 0xEC, 0x8C, 0x99, 0xF2, 0x37, 0x05, 0xFE, 0x4C, 0x89, 0xC4, 0x68, + 0x68, 0xC3, 0x89, 0x84, 0xC7, 0x70, 0x6F, 0xC7, 0x03, 0x6B, 0x98, 0x9B, + 0xD5, 0x35, 0x40, 0x13, 0x3E, 0x11, 0x16, 0x3C, 0x05, 0xD2, 0xFA, 0x2E, + 0xE6, 0x75, 0x88, 0x72, 0xCF, 0x01, 0x19, 0xA7, 0xA6, 0x01, 0x18, 0xCE, + 0x73, 0x87, 0x71, 0xE1, 0xFA, 0xE2, 0x8E, 0xFF, 0xA8, 0xAB, 0xFE, 0x8D, + 0x8F, 0xFF, 0xA8, 0xAA, 0xFF, 0x8C, 0xFD, 0xA7, 0x8B, 0x86, 0x94, 0x91, + 0x33, 0x2E, 0x01, 0xB1, 0x01, 0x02, 0x00, 0x02, 0x00, 0x8E, 0x00, 0x00, + 0x04, 0xE3, 0x05, 0xD2, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x73, 0x11, + 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x35, 0x21, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x21, 0x01, + 0x33, 0x01, 0x8E, 0x02, 0x30, 0xA3, 0xE8, 0x7C, 0x82, 0xEE, 0xA3, 0xFE, + 0x5D, 0x01, 0xA3, 0x63, 0x8A, 0x48, 0x49, 0x8A, 0x64, 0xFE, 0xBE, 0x02, + 0x79, 0xFE, 0x9D, 0xF6, 0x01, 0x69, 0x05, 0xD2, 0x72, 0xD2, 0x8D, 0x8D, + 0xD0, 0x71, 0xBF, 0x42, 0x79, 0x54, 0x54, 0x7A, 0x42, 0xFA, 0xEF, 0x02, + 0xA0, 0xFD, 0x60, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xE3, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, + 0xCA, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x17, 0x04, 0xE3, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, + 0x95, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xE3, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, + 0xED, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xE3, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, + 0x61, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xE3, 0x07, + 0x8D, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, + 0xEE, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xE3, 0x07, + 0x89, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x9C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x04, 0xE3, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0xA9, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x43, 0x04, 0xE3, 0x07, + 0x41, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x01, + 0xA9, 0xF9, 0x62, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xE1, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x92, 0x04, 0xE3, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x80, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xEE, 0xF9, 0x92, 0x00, + 0x03, 0x00, 0x90, 0xFE, 0x9C, 0x04, 0xE5, 0x07, 0x15, 0x00, 0x05, 0x00, + 0x1D, 0x00, 0x21, 0x00, 0x00, 0x41, 0x01, 0x27, 0x01, 0x25, 0x37, 0x01, + 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x35, + 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x21, + 0x01, 0x33, 0x01, 0x03, 0xBD, 0xFD, 0xE7, 0x73, 0x02, 0x04, 0xFE, 0xC3, + 0x25, 0xFE, 0x73, 0x02, 0x30, 0xA2, 0xE8, 0x7C, 0x82, 0xEE, 0xA3, 0xFE, + 0x5D, 0x01, 0xA3, 0x63, 0x8A, 0x48, 0x48, 0x8B, 0x63, 0xFE, 0xBD, 0x02, + 0x79, 0xFE, 0x9D, 0xF6, 0x01, 0x6A, 0x06, 0x98, 0xF8, 0x04, 0x16, 0x07, + 0x9E, 0x59, 0x6C, 0xF8, 0xEB, 0x05, 0xD2, 0x72, 0xD2, 0x8D, 0x8D, 0xD0, + 0x71, 0xBF, 0x42, 0x79, 0x54, 0x54, 0x7A, 0x42, 0xFA, 0xEF, 0x02, 0xA0, + 0xFD, 0x60, 0x00, 0x03, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x45, 0x05, 0xD2, + 0x00, 0x18, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x53, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x21, 0x35, 0x21, 0x3E, 0x02, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x23, 0x21, 0x01, 0x33, 0x01, + 0x21, 0x23, 0x01, 0x33, 0x8E, 0x02, 0x0A, 0xB3, 0xE3, 0x6C, 0x52, 0x98, + 0x6B, 0x3B, 0xFE, 0x24, 0x01, 0x5B, 0x72, 0x87, 0x3C, 0x33, 0x7F, 0x74, + 0xFE, 0xD4, 0xDE, 0x03, 0xD1, 0xFE, 0x23, 0xDF, 0x01, 0xE4, 0xFE, 0x17, + 0xD5, 0x01, 0xE3, 0xCF, 0x05, 0xD2, 0x7A, 0xD0, 0x82, 0x75, 0xB0, 0x75, + 0x1F, 0x13, 0xC3, 0x01, 0x42, 0x76, 0x4E, 0x44, 0x7C, 0x4F, 0xFA, 0xED, + 0x02, 0x94, 0xFD, 0x6C, 0x02, 0x94, 0x00, 0x03, 0xFF, 0xFF, 0x00, 0x00, + 0x04, 0xFA, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, + 0x41, 0x21, 0x35, 0x21, 0x03, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x21, 0x11, 0x21, 0x01, 0x33, 0x01, 0x01, 0x24, 0xFE, 0xDB, + 0x01, 0x25, 0x7F, 0x02, 0x30, 0xA3, 0xE8, 0x7B, 0x81, 0xEE, 0xA4, 0xFE, + 0x5E, 0x01, 0xA3, 0x63, 0x89, 0x49, 0x49, 0x8A, 0x64, 0xFE, 0xBE, 0x02, + 0x79, 0xFE, 0x9C, 0xF6, 0x01, 0x6A, 0x02, 0x3C, 0xB8, 0xFD, 0x0C, 0x05, + 0xD2, 0x72, 0xD2, 0x8D, 0x8D, 0xD0, 0x71, 0xBF, 0x42, 0x79, 0x54, 0x54, + 0x7A, 0x42, 0xFA, 0xEF, 0x02, 0xA0, 0xFD, 0x60, 0x00, 0x01, 0x00, 0x52, + 0xFF, 0xE8, 0x04, 0xBB, 0x05, 0xE9, 0x00, 0x32, 0x00, 0x00, 0x45, 0x22, + 0x24, 0x26, 0x27, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x17, 0x17, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x02, 0x8F, + 0xB0, 0xFF, 0x00, 0x8B, 0x02, 0xDF, 0x02, 0x56, 0x9D, 0x69, 0x64, 0x95, + 0x54, 0x3D, 0x7D, 0x63, 0xA6, 0xD8, 0xCF, 0x86, 0xEF, 0x9E, 0x9F, 0xEB, + 0x84, 0x04, 0xD8, 0x09, 0xAB, 0x8A, 0x59, 0x8A, 0x4D, 0x40, 0x7D, 0x5D, + 0x9C, 0x67, 0xA2, 0x70, 0x3B, 0x88, 0xFA, 0x18, 0x77, 0xDC, 0x99, 0x5E, + 0x86, 0x45, 0x3A, 0x6C, 0x48, 0x3B, 0x55, 0x3E, 0x18, 0x28, 0x35, 0xC1, + 0x9A, 0x83, 0xC3, 0x6C, 0x70, 0xCD, 0x8C, 0x7B, 0x8B, 0x3A, 0x67, 0x42, + 0x3A, 0x51, 0x3B, 0x16, 0x27, 0x18, 0x49, 0x64, 0x84, 0x55, 0x84, 0xC7, + 0x6F, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xC3, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xE6, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFE, 0x5E, 0x04, 0xBB, 0x05, 0xE9, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x6F, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xE6, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFE, 0x17, 0x04, 0xBB, 0x05, 0xE9, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x88, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x95, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFE, 0x43, 0x04, 0xBB, 0x05, 0xE9, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x9C, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x07, 0xE5, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x20, 0x01, 0x49, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x08, 0xA6, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x19, 0x00, 0xD5, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFE, 0x43, 0x04, 0xBB, 0x07, 0x89, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x01, 0x9C, 0xF9, + 0x62, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x95, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x05, 0xE9, 0x06, 0x06, 0x01, 0x8D, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x05, 0xE9, 0x00, + 0x32, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, + 0x37, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x07, 0x0E, + 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, 0x0E, + 0x02, 0x02, 0x7E, 0xAA, 0xFA, 0x88, 0x3B, 0x70, 0xA1, 0x68, 0x9C, 0x5D, + 0x7D, 0x40, 0x4E, 0x88, 0x5A, 0x8A, 0xAB, 0x09, 0xD8, 0x04, 0x84, 0xEB, + 0x9F, 0x9E, 0xEF, 0x85, 0xCE, 0xD8, 0xA6, 0x62, 0x7F, 0x3C, 0x54, 0x95, + 0x64, 0x6A, 0x9B, 0x57, 0x01, 0xE0, 0x02, 0x8C, 0xFF, 0x18, 0x6F, 0xC7, + 0x84, 0x55, 0x84, 0x64, 0x49, 0x18, 0x27, 0x16, 0x3B, 0x51, 0x3A, 0x42, + 0x67, 0x3A, 0x8B, 0x7B, 0x8C, 0xCD, 0x70, 0x6C, 0xC3, 0x83, 0x9A, 0xC1, + 0x35, 0x28, 0x18, 0x3E, 0x55, 0x3B, 0x48, 0x6C, 0x3A, 0x45, 0x86, 0x5E, + 0x99, 0xDC, 0x77, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x0A, 0x05, + 0xD2, 0x00, 0x22, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x33, 0x21, 0x15, + 0x01, 0x27, 0x36, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x01, 0x17, 0x21, + 0x22, 0x06, 0x15, 0x11, 0x8E, 0xD9, 0xCE, 0x02, 0x53, 0xFE, 0x90, 0x0F, + 0x9A, 0xE7, 0x80, 0x80, 0xE8, 0x9A, 0xE9, 0xE9, 0x88, 0x9A, 0x9A, 0x88, + 0xBD, 0x01, 0x85, 0x16, 0xFE, 0x4F, 0x60, 0x66, 0x04, 0x38, 0xC8, 0xD2, + 0xBA, 0xFE, 0x20, 0x29, 0x02, 0x67, 0xBF, 0x83, 0x84, 0xC7, 0x6F, 0xBC, + 0x86, 0x79, 0x79, 0x87, 0x9F, 0x02, 0x06, 0x4D, 0x65, 0x60, 0xFB, 0xB2, + 0x00, 0x01, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x05, 0xD2, 0x00, 0x07, + 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x3A, 0x04, + 0x8F, 0xFE, 0x29, 0xE0, 0x05, 0x0F, 0xC3, 0xC3, 0xFA, 0xF1, 0x05, 0x0F, + 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x5E, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x69, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x07, 0x89, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xE5, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x17, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x80, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x07, 0x89, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x94, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x43, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x94, 0xF9, 0x62, + 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x92, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xD9, 0xF9, 0x92, + 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x3A, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xE6, 0xF9, 0x71, + 0x00, 0x02, 0x00, 0x3C, 0x00, 0x00, 0x04, 0xE2, 0x05, 0xD2, 0x00, 0x0B, + 0x00, 0x13, 0x00, 0x00, 0x53, 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, + 0x22, 0x06, 0x15, 0x15, 0x37, 0x35, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, + 0x3C, 0x96, 0x97, 0x71, 0x5C, 0x3C, 0x36, 0xCE, 0x03, 0x08, 0xFE, 0x2F, + 0xDF, 0x04, 0x20, 0x97, 0x8B, 0x90, 0xC1, 0x31, 0x36, 0x8A, 0xEF, 0xC3, + 0xC3, 0xFA, 0xF1, 0x05, 0x0F, 0x00, 0x01, 0x01, 0xBE, 0x00, 0x00, 0x04, + 0xC5, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x21, + 0x11, 0x23, 0x11, 0x01, 0xBE, 0x03, 0x07, 0xFE, 0x30, 0xE0, 0x05, 0x0F, + 0xC3, 0xC3, 0xFA, 0xF1, 0x05, 0x0F, 0x00, 0x02, 0x00, 0x3A, 0xFE, 0x5B, + 0x04, 0xC9, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, + 0x06, 0x06, 0x01, 0x35, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x03, 0x46, + 0x99, 0x9B, 0xE0, 0x35, 0x40, 0x13, 0x3E, 0x11, 0x17, 0x44, 0xFC, 0xCC, + 0x04, 0x8F, 0xFE, 0x29, 0xE0, 0xFE, 0x5B, 0x8B, 0x86, 0x01, 0x38, 0xFE, + 0xCD, 0x34, 0x2D, 0x01, 0xB3, 0x01, 0x02, 0x06, 0xB4, 0xC3, 0xC3, 0xFA, + 0xF1, 0x05, 0x0F, 0x00, 0x02, 0x00, 0x3A, 0xFF, 0x2F, 0x04, 0xC9, 0x06, + 0xA3, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x57, 0x01, 0x33, 0x01, 0x01, + 0x35, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0xBB, 0x02, 0xFA, 0x95, 0xFD, + 0x06, 0xFE, 0xEA, 0x04, 0x8F, 0xFE, 0x29, 0xE0, 0xD1, 0x07, 0x74, 0xF8, + 0x8C, 0x05, 0xE0, 0xC3, 0xC3, 0xFA, 0xF1, 0x05, 0x0F, 0xFF, 0xFF, 0x00, + 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x9B, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x05, 0xD2, 0x00, + 0x15, 0x00, 0x00, 0x45, 0x22, 0x24, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, + 0x04, 0x02, 0xD9, 0xB3, 0xFE, 0xF6, 0x93, 0xDE, 0x5A, 0xA6, 0x72, 0x72, + 0xA6, 0x59, 0xDE, 0x92, 0xFE, 0xF6, 0x18, 0x8A, 0xF1, 0x9C, 0x03, 0xD3, + 0xFC, 0x3F, 0x66, 0x9E, 0x5B, 0x5B, 0x9E, 0x66, 0x03, 0xC1, 0xFC, 0x2D, + 0x9C, 0xF1, 0x8A, 0x00, 0x02, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0xDA, 0x06, + 0xBB, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x00, 0x41, 0x35, 0x33, 0x32, 0x35, + 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x01, 0x22, 0x24, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x06, 0x04, 0x04, 0x4B, 0xB0, 0x15, 0xCA, 0x60, 0x5A, 0xFD, + 0xB9, 0xB3, 0xFE, 0xF6, 0x93, 0xDE, 0x5A, 0xA6, 0x72, 0x72, 0xA6, 0x59, + 0xDE, 0x92, 0xFE, 0xF6, 0x05, 0x34, 0x9E, 0x15, 0xD4, 0xD4, 0x5A, 0x59, + 0xFA, 0xB4, 0x8A, 0xF1, 0x9C, 0x03, 0xD3, 0xFC, 0x3F, 0x66, 0x9E, 0x5B, + 0x5B, 0x9E, 0x66, 0x03, 0xC1, 0xFC, 0x2D, 0x9C, 0xF1, 0x8A, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x63, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x19, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x88, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x92, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x73, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xEC, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x41, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0x30, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x87, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0xFC, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF2, 0x01, 0x9C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x01, 0x41, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFE, 0x5A, 0x05, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x59, 0x01, 0xF5, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x01, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0x64, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE7, 0x00, 0x8C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xC3, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE4, 0x00, 0x8C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xB3, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xEB, 0x00, 0x8C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xC3, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE8, 0x00, 0x8B, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, 0xB0, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x8D, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x01, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFE, 0x44, 0x05, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x92, 0xF9, 0x62, 0xFF, 0xFF, + 0x00, 0x89, 0xFE, 0x57, 0x05, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xED, 0xF9, 0x6D, 0xFF, 0xFF, + 0x00, 0x89, 0xFE, 0x3A, 0x05, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x3D, 0xF9, 0x71, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xC3, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xEA, 0x00, 0xED, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xA7, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE9, 0x01, 0x30, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFE, 0x43, 0x05, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xEB, 0xF9, 0x62, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xC5, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0xDA, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0x19, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0xDA, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, 0x63, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0xDA, 0x07, 0x89, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0xC5, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFF, 0xE8, 0x05, 0xDA, 0x07, 0x73, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0xEC, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x89, 0xFE, 0x43, 0x05, 0xDA, 0x06, 0xBB, 0x06, 0x26, 0x01, 0xA9, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xEB, 0xF9, 0x62, 0x00, 0x02, + 0xFF, 0xE2, 0xFF, 0xE8, 0x05, 0xEA, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x19, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x24, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x06, 0x04, 0x05, 0xEA, 0xF9, 0xF8, 0x03, 0x02, 0xB3, 0xFE, + 0xF6, 0x93, 0xDE, 0x5A, 0xA6, 0x72, 0x73, 0xA5, 0x59, 0xDE, 0x92, 0xFE, + 0xF6, 0x03, 0x5B, 0x8A, 0x8A, 0xFC, 0x8D, 0x8A, 0xF1, 0x9C, 0x03, 0xD3, + 0xFC, 0x3F, 0x66, 0x9E, 0x5B, 0x5B, 0x9E, 0x66, 0x03, 0xC1, 0xFC, 0x2D, + 0x9C, 0xF1, 0x8A, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x05, 0x57, 0x05, + 0xD2, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x01, 0x33, 0x01, 0x16, 0x12, 0x17, + 0x23, 0x36, 0x12, 0x37, 0x01, 0x33, 0x01, 0x02, 0x35, 0xFD, 0xE3, 0xF0, + 0x01, 0x26, 0x20, 0x54, 0x3A, 0x3B, 0x37, 0x55, 0x1E, 0x01, 0x1E, 0xEE, + 0xFD, 0xEB, 0x05, 0xD2, 0xFC, 0xBA, 0x5E, 0xFE, 0xF1, 0xBB, 0xBC, 0x01, + 0x0E, 0x5E, 0x03, 0x46, 0xFA, 0x2E, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, + 0x05, 0x57, 0x07, 0x73, 0x06, 0x26, 0x01, 0xC8, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEC, 0x00, 0xCB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x43, + 0x05, 0x57, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xC8, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0xCA, 0xF9, 0x62, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, + 0x07, 0xB1, 0x05, 0xD2, 0x00, 0x25, 0x00, 0x00, 0x61, 0x01, 0x33, 0x13, + 0x1E, 0x02, 0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x13, 0x1E, 0x02, + 0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x01, 0x21, 0x03, 0x26, 0x26, + 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0x01, 0xAC, 0xFE, 0x6C, 0xE9, 0xDA, + 0x14, 0x23, 0x21, 0x0E, 0x22, 0x10, 0x22, 0x25, 0x14, 0xE0, 0xF5, 0xDF, + 0x14, 0x26, 0x22, 0x10, 0x25, 0x10, 0x21, 0x25, 0x13, 0xD9, 0xEA, 0xFE, + 0x6B, 0xFE, 0xFF, 0xF2, 0x1A, 0x2D, 0x18, 0x34, 0x18, 0x2B, 0x1B, 0xF2, + 0x05, 0xD2, 0xFC, 0xA0, 0x4F, 0xA0, 0xA1, 0x51, 0x51, 0xA1, 0xA0, 0x4F, + 0x03, 0x60, 0xFC, 0xA0, 0x4F, 0xA0, 0xA1, 0x51, 0x51, 0xA1, 0xA0, 0x4F, + 0x03, 0x60, 0xFA, 0x2E, 0x03, 0x89, 0x62, 0xD6, 0x78, 0x76, 0xD5, 0x65, + 0xFC, 0x77, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xB1, 0x07, 0x89, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x02, 0x48, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xB1, 0x07, 0x89, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x02, 0x6F, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xB1, 0x07, 0x89, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x03, 0x24, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xB1, 0x07, 0x88, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x01, 0x9E, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xB1, 0x07, 0x89, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0xF6, + 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x43, 0x07, 0xB1, 0x05, 0xD2, + 0x06, 0x26, 0x01, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x02, 0xF7, + 0xF9, 0x62, 0x00, 0x01, 0x00, 0x1C, 0x00, 0x00, 0x05, 0x42, 0x05, 0xD2, + 0x00, 0x1F, 0x00, 0x00, 0x73, 0x01, 0x15, 0x01, 0x21, 0x13, 0x1E, 0x02, + 0x17, 0x23, 0x3E, 0x02, 0x37, 0x13, 0x33, 0x01, 0x35, 0x01, 0x21, 0x03, + 0x2E, 0x02, 0x27, 0x33, 0x0E, 0x02, 0x07, 0x03, 0x1C, 0x02, 0x50, 0xFD, + 0xD5, 0x01, 0x02, 0xC8, 0x24, 0x3F, 0x3C, 0x1F, 0x2F, 0x20, 0x3C, 0x40, + 0x24, 0xCD, 0xFB, 0xFD, 0xD9, 0x02, 0x47, 0xFE, 0xFE, 0xF6, 0x21, 0x3A, + 0x37, 0x1D, 0x2A, 0x1C, 0x39, 0x3B, 0x22, 0xF9, 0x03, 0x4C, 0xA6, 0x03, + 0x2C, 0xFE, 0xD6, 0x35, 0x62, 0x61, 0x33, 0x33, 0x61, 0x62, 0x35, 0x01, + 0x2A, 0xFC, 0xDF, 0xA2, 0xFC, 0xAD, 0x01, 0x68, 0x30, 0x58, 0x58, 0x2F, + 0x2F, 0x57, 0x58, 0x31, 0xFE, 0x98, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, + 0x05, 0x42, 0x07, 0x89, 0x06, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0xC1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, + 0x05, 0x42, 0x07, 0x88, 0x06, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0x00, 0x69, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x1C, 0xFE, 0xC0, + 0x05, 0x9F, 0x05, 0xD2, 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3D, 0x04, 0x47, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1C, 0xFE, 0x5B, + 0x05, 0xAB, 0x05, 0xD2, 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3F, 0x03, 0xB9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, + 0x05, 0x42, 0x05, 0xD2, 0x06, 0x06, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x00, + 0x61, 0x11, 0x01, 0x21, 0x01, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, + 0x01, 0x21, 0x01, 0x11, 0x02, 0x3D, 0xFD, 0xDB, 0x01, 0x02, 0x01, 0x1B, + 0x2B, 0x4C, 0x27, 0x4A, 0x26, 0x4C, 0x2A, 0x01, 0x17, 0x01, 0x01, 0xFD, + 0xDE, 0x02, 0x53, 0x03, 0x7F, 0xFE, 0x28, 0x46, 0x8A, 0x4D, 0x4D, 0x8B, + 0x45, 0x01, 0xD8, 0xFC, 0x81, 0xFD, 0xAD, 0x00, 0x02, 0x00, 0x21, 0x00, + 0x00, 0x05, 0xA0, 0x05, 0xE7, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, + 0x35, 0x33, 0x15, 0x01, 0x33, 0x01, 0x01, 0x3E, 0x02, 0x17, 0x07, 0x26, + 0x06, 0x07, 0x01, 0x11, 0x23, 0x11, 0x02, 0xA4, 0x24, 0xFD, 0x59, 0xF8, + 0x01, 0x9D, 0x01, 0x3E, 0x35, 0x8C, 0x9E, 0x4D, 0x36, 0x3B, 0x5D, 0x29, + 0xFE, 0x7C, 0xDE, 0x03, 0x09, 0x22, 0x22, 0x02, 0xC9, 0xFD, 0x4B, 0x02, + 0x15, 0x58, 0x57, 0x06, 0x22, 0xAF, 0x16, 0x1C, 0x41, 0xFD, 0x8B, 0xFD, + 0xA6, 0x02, 0x5A, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x89, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, + 0xEA, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x89, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x01, + 0x0E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x88, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, + 0x64, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x41, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, + 0x02, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x89, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0xBC, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x89, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x01, + 0x35, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x43, 0x05, 0x3D, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0xBE, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x89, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, + 0x97, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, + 0x73, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, + 0xBE, 0x01, 0xA4, 0x00, 0x02, 0xFF, 0xF3, 0x00, 0x00, 0x05, 0x5B, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, + 0x11, 0x01, 0x21, 0x01, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x01, + 0x21, 0x01, 0x11, 0x05, 0x5B, 0xFA, 0x98, 0x02, 0x4A, 0xFD, 0xDB, 0x01, + 0x02, 0x01, 0x1B, 0x2B, 0x4C, 0x27, 0x4A, 0x26, 0x4C, 0x2A, 0x01, 0x17, + 0x01, 0x01, 0xFD, 0xDE, 0x04, 0x9F, 0x85, 0x85, 0xFB, 0x61, 0x02, 0x53, + 0x03, 0x7F, 0xFE, 0x28, 0x46, 0x8A, 0x4D, 0x4D, 0x8B, 0x45, 0x01, 0xD8, + 0xFC, 0x81, 0xFD, 0xAD, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, + 0x05, 0xD2, 0x06, 0x06, 0x01, 0xD8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x06, 0xBD, 0x05, 0xD2, 0x04, 0x27, 0x01, 0xD8, 0x01, 0x7F, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x18, + 0x00, 0x00, 0x05, 0x3D, 0x07, 0x88, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x64, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x06, 0xFD, 0x05, 0xD5, 0x04, 0x27, 0x01, 0xD8, 0x01, 0xBF, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x08, 0x1C, 0x05, 0xD5, 0x04, 0x27, 0x01, 0xD8, 0x02, 0xDE, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x08, 0x22, 0x05, 0xD5, 0x04, 0x27, 0x01, 0xD8, 0x02, 0xE5, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, + 0x00, 0x00, 0x07, 0xA2, 0x06, 0xFF, 0x04, 0x27, 0x01, 0xD8, 0x02, 0x65, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x3A, 0xE4, 0xFF, 0xFF, 0x00, 0x18, + 0x00, 0x00, 0x05, 0x3D, 0x07, 0x87, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0x01, 0x0E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, + 0x00, 0x00, 0x05, 0x3D, 0x07, 0x41, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0x01, 0x02, 0x01, 0xA4, 0xFF, 0xFF, 0xFE, 0xBA, + 0x00, 0x00, 0x05, 0xD3, 0x05, 0xE6, 0x04, 0x27, 0x01, 0xD8, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, 0xFE, 0x92, 0x00, 0x01, 0xFF, 0xFF, + 0x00, 0x3A, 0x00, 0x00, 0x06, 0xBD, 0x05, 0xD2, 0x04, 0x27, 0x01, 0xD8, + 0x01, 0x7F, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, + 0x00, 0x18, 0xFE, 0x5A, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xD8, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x96, 0x01, 0x64, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x48, 0x00, 0x00, 0x04, 0xB9, 0x05, 0xD2, 0x00, 0x17, 0x00, 0x00, + 0x73, 0x35, 0x01, 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x21, 0x35, + 0x21, 0x15, 0x01, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x21, 0x15, + 0x48, 0x02, 0xCE, 0x32, 0x6C, 0x37, 0x1A, 0x59, 0xB2, 0x59, 0xFD, 0xBC, + 0x04, 0x55, 0xFD, 0x40, 0x36, 0x71, 0x3B, 0x1A, 0x58, 0xB0, 0x58, 0x02, + 0x63, 0xAE, 0x03, 0xAB, 0x41, 0x83, 0x41, 0x4D, 0x01, 0x01, 0xC3, 0xAE, + 0xFC, 0x66, 0x46, 0x8B, 0x45, 0x4D, 0x01, 0x01, 0xC3, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x04, 0xB9, 0x07, 0x89, 0x06, 0x26, 0x01, 0xF0, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xC0, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x04, 0xB9, 0x07, 0x89, 0x06, 0x26, 0x01, 0xF0, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x92, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x04, 0xB9, 0x07, 0x89, 0x06, 0x26, 0x01, 0xF0, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xE3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0x00, 0x00, 0x04, 0xB9, 0x07, 0x89, 0x06, 0x26, 0x01, 0xF0, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xE3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x48, 0xFE, 0x43, 0x04, 0xB9, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xF0, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x91, 0xF9, 0x62, 0xFF, 0xFF, 0x00, + 0x48, 0xFE, 0x92, 0x04, 0xB9, 0x05, 0xD2, 0x06, 0x26, 0x01, 0xF0, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0xD6, 0xF9, 0x92, 0x00, 0x02, 0x00, + 0x48, 0xFE, 0x5B, 0x04, 0xB9, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x27, 0x00, + 0x00, 0x41, 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x01, 0x35, 0x01, 0x36, 0x36, 0x37, 0x17, + 0x06, 0x06, 0x23, 0x21, 0x35, 0x21, 0x15, 0x01, 0x06, 0x06, 0x07, 0x27, + 0x36, 0x36, 0x33, 0x21, 0x15, 0x03, 0x04, 0x11, 0x3E, 0x13, 0x40, 0x33, + 0xE0, 0x9D, 0x99, 0x27, 0x41, 0xFD, 0x2D, 0x02, 0xCE, 0x32, 0x6C, 0x37, + 0x1A, 0x59, 0xB2, 0x59, 0xFD, 0xBC, 0x04, 0x55, 0xFD, 0x40, 0x36, 0x71, + 0x3B, 0x1A, 0x58, 0xB0, 0x58, 0x02, 0x63, 0xFE, 0x5E, 0xB9, 0x01, 0x2E, + 0x33, 0x89, 0x94, 0x86, 0x8B, 0x02, 0x01, 0xA3, 0xAE, 0x03, 0xAB, 0x41, + 0x83, 0x41, 0x4D, 0x01, 0x01, 0xC3, 0xAE, 0xFC, 0x66, 0x46, 0x8B, 0x45, + 0x4D, 0x01, 0x01, 0xC3, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x04, 0xB9, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x68, + 0x00, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x48, 0x00, 0x00, 0x04, 0xB9, + 0x05, 0xD2, 0x06, 0x06, 0x01, 0xF0, 0x00, 0x00, 0x00, 0x01, 0x00, 0x47, + 0xFE, 0x5A, 0x04, 0x89, 0x05, 0xD2, 0x00, 0x1D, 0x00, 0x00, 0x41, 0x22, + 0x2E, 0x04, 0x23, 0x23, 0x35, 0x01, 0x21, 0x35, 0x21, 0x15, 0x01, 0x1E, + 0x05, 0x33, 0x32, 0x36, 0x36, 0x37, 0x15, 0x06, 0x06, 0x04, 0x03, 0x52, + 0x81, 0x6D, 0x67, 0x70, 0x86, 0x56, 0xC3, 0x03, 0x12, 0xFC, 0xE8, 0x04, + 0x28, 0xFC, 0xE7, 0x5E, 0x92, 0x73, 0x62, 0x5A, 0x60, 0x37, 0x19, 0x27, + 0x27, 0x16, 0x1E, 0x44, 0xFE, 0x5A, 0x3D, 0x60, 0x6C, 0x60, 0x3D, 0x9F, + 0x04, 0x70, 0xC3, 0xA1, 0xFB, 0x86, 0x06, 0x41, 0x5F, 0x67, 0x5A, 0x39, + 0x01, 0x02, 0x01, 0xBB, 0x03, 0x03, 0x00, 0x02, 0x00, 0x4C, 0xFF, 0xEE, + 0x03, 0xD0, 0x04, 0x41, 0x00, 0x27, 0x00, 0x39, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x3E, 0x02, 0x35, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x35, 0x0E, 0x03, 0x07, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, + 0x01, 0xBE, 0x6A, 0xA7, 0x61, 0x47, 0x77, 0x97, 0x50, 0x63, 0x75, 0x34, + 0x32, 0x60, 0x44, 0x44, 0x67, 0x3E, 0x07, 0xCF, 0x0D, 0x76, 0xC1, 0x7D, + 0x5A, 0x9B, 0x73, 0x3F, 0xD1, 0x05, 0x16, 0x4F, 0x7D, 0x2E, 0x5C, 0x7B, + 0x3D, 0x0B, 0x36, 0x49, 0x51, 0x27, 0x3A, 0x65, 0x3D, 0x32, 0x5B, 0x12, + 0x49, 0x90, 0x6A, 0x5C, 0x75, 0x44, 0x24, 0x09, 0x0C, 0x0F, 0x22, 0x26, + 0x08, 0x36, 0x51, 0x2E, 0x2D, 0x4B, 0x2E, 0x0B, 0x65, 0x93, 0x51, 0x2E, + 0x5B, 0x87, 0x59, 0xFD, 0x28, 0x96, 0x2A, 0x4E, 0x30, 0xAB, 0x44, 0x6F, + 0x41, 0x80, 0x09, 0x10, 0x0E, 0x0D, 0x05, 0x08, 0x25, 0x43, 0x37, 0x2F, + 0x42, 0x23, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE4, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x5F, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE3, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0x83, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x07, 0x09, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x21, 0x00, 0x84, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFE, 0x43, 0x03, 0xD0, 0x05, 0xE3, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x00, 0x83, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x31, 0xF9, 0x62, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x07, 0x09, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x22, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x07, 0x09, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x4A, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x06, 0xF4, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x23, 0x00, 0x83, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE4, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0x82, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE4, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0x82, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x04, 0x06, 0x07, 0x09, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFE, 0x43, 0x03, 0xD0, 0x05, 0xE4, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0x82, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0x31, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, + 0x03, 0xD0, 0x07, 0x09, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x25, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, + 0x03, 0xD0, 0x07, 0x09, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x26, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, + 0x03, 0xD0, 0x06, 0xF4, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x27, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, + 0x03, 0xD0, 0x05, 0xE4, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEA, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, + 0x05, 0xE4, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, + 0xD9, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x06, 0xC0, + 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xD2, 0x00, + 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE5, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x31, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4C, 0xFE, 0x43, 0x03, 0xD0, 0x04, 0x41, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x31, 0xF9, 0x62, + 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x06, 0xC0, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE6, 0x01, 0x32, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE4, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xAA, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE4, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x0C, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xE9, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, 0x83, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0x9D, 0x06, 0x26, + 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEB, 0x77, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFE, 0x5C, 0x03, 0xDE, 0x04, 0x41, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5A, 0x02, 0x19, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x06, 0x5F, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0xAB, 0x01, 0x8B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x06, 0x5F, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x90, 0x00, 0xE2, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x07, 0x5A, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x1B, 0x00, 0xE2, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4C, 0xFE, 0x5C, 0x03, 0xDE, 0x06, 0x5F, 0x06, 0x26, 0x01, 0xFB, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x90, 0x00, 0xE2, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x5A, 0x02, 0x19, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFD, 0xE2, + 0x03, 0xD0, 0x04, 0x41, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x36, 0x00, 0xE7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, + 0x03, 0xD0, 0x05, 0xCE, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEC, 0x33, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x01, + 0x04, 0x40, 0x00, 0x27, 0x00, 0x39, 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x0E, 0x02, 0x07, 0x0E, 0x02, 0x15, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x2E, 0x02, + 0x35, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x17, 0x22, 0x06, 0x06, 0x15, + 0x15, 0x3E, 0x03, 0x37, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x02, 0x90, + 0x6A, 0xA6, 0x61, 0x46, 0x77, 0x96, 0x51, 0x63, 0x76, 0x33, 0x32, 0x60, + 0x43, 0x46, 0x66, 0x3E, 0x06, 0xD0, 0x0C, 0x78, 0xC1, 0x7C, 0x5B, 0x9B, + 0x72, 0x40, 0xD1, 0x06, 0x16, 0x4F, 0x7D, 0x2E, 0x5C, 0x7B, 0x3D, 0x0B, + 0x35, 0x4A, 0x51, 0x26, 0x3B, 0x64, 0x3E, 0x32, 0x5B, 0x04, 0x40, 0x49, + 0x8F, 0x6B, 0x5C, 0x75, 0x44, 0x23, 0x0A, 0x0C, 0x0F, 0x21, 0x27, 0x08, + 0x36, 0x51, 0x2E, 0x2C, 0x4C, 0x2E, 0x0C, 0x64, 0x93, 0x51, 0x2E, 0x5A, + 0x87, 0x5A, 0x02, 0xD8, 0x97, 0x2B, 0x4E, 0x30, 0xAB, 0x44, 0x6F, 0x41, + 0x80, 0x09, 0x10, 0x0E, 0x0D, 0x05, 0x09, 0x24, 0x43, 0x36, 0x30, 0x42, + 0x23, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x04, 0x41, 0x06, + 0x06, 0x01, 0xFB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, + 0xD0, 0x05, 0xE3, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x00, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, + 0xD0, 0x05, 0xE4, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x8B, 0xD9, 0x00, 0x00, 0x01, 0x00, 0x4C, 0xFF, 0xE8, 0x06, 0xCE, 0x04, + 0x44, 0x00, 0x54, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, + 0x02, 0x33, 0x21, 0x07, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, + 0x23, 0x22, 0x26, 0x26, 0x27, 0x13, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, + 0x15, 0x15, 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x03, 0x23, 0x0E, 0x03, 0x01, + 0xD4, 0x79, 0xB0, 0x5F, 0x4A, 0x86, 0xB8, 0x6F, 0x04, 0x15, 0x5A, 0x03, + 0x45, 0x81, 0x59, 0x59, 0x81, 0x47, 0x48, 0x87, 0x5F, 0x43, 0x69, 0x47, + 0x10, 0xCC, 0x15, 0x81, 0xC4, 0x78, 0x70, 0xB3, 0x7E, 0x1F, 0x06, 0x26, + 0x7C, 0xA6, 0x66, 0x6C, 0xB5, 0x85, 0x48, 0xFB, 0x6A, 0x57, 0x7E, 0x43, + 0x6E, 0x5C, 0x5C, 0x7A, 0x3D, 0x32, 0x60, 0x44, 0x44, 0x67, 0x3E, 0x07, + 0xCF, 0x0C, 0x76, 0xC0, 0x7B, 0x73, 0xA9, 0x5F, 0x06, 0x15, 0x1C, 0x16, + 0x4F, 0x6D, 0x84, 0x11, 0x4F, 0x91, 0x62, 0x54, 0x7C, 0x52, 0x29, 0x33, + 0x63, 0x94, 0x52, 0x51, 0x91, 0x60, 0x60, 0x67, 0x9A, 0x55, 0x29, 0x4B, + 0x32, 0x08, 0x64, 0x97, 0x55, 0x4B, 0x89, 0x5A, 0x02, 0x06, 0x5A, 0x85, + 0x49, 0x4C, 0x91, 0xCD, 0x80, 0x3F, 0x26, 0x4C, 0x36, 0x4D, 0x4C, 0x43, + 0x6F, 0x41, 0x01, 0x51, 0x36, 0x51, 0x2E, 0x2D, 0x4B, 0x2E, 0x0B, 0x63, + 0x93, 0x53, 0x4F, 0x95, 0x6A, 0xFD, 0xF6, 0x40, 0x5E, 0x3D, 0x1F, 0xFF, + 0xFF, 0x00, 0x4C, 0xFF, 0xE8, 0x06, 0xCE, 0x05, 0x9D, 0x06, 0x26, 0x02, + 0x1F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x01, 0xC8, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4C, 0xFF, 0xE8, 0x06, 0xCE, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x1F, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x02, 0xB0, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4C, 0xFF, 0xE8, 0x06, 0xCE, 0x04, 0x44, 0x06, 0x06, 0x02, + 0x1F, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x04, + 0x41, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x15, 0x88, + 0xD0, 0x73, 0x74, 0xD0, 0x87, 0x4D, 0x7D, 0x5E, 0x1E, 0x05, 0xD2, 0xD2, + 0x05, 0x20, 0x5E, 0x7B, 0x20, 0x5B, 0x84, 0x48, 0x48, 0x84, 0x5B, 0x57, + 0x82, 0x47, 0x47, 0x82, 0x15, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, + 0x50, 0x35, 0x9F, 0xFB, 0xD2, 0xA3, 0x37, 0x53, 0x2E, 0xB7, 0x5D, 0xA8, + 0x70, 0x71, 0xA6, 0x5D, 0x58, 0xA6, 0x76, 0x75, 0xA7, 0x59, 0xFF, 0xFF, + 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x86, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE3, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xA9, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x07, 0x09, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x21, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4A, 0xFE, 0x43, 0x04, 0x32, 0x05, 0xE3, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x00, 0xA9, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x01, 0x5B, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, + 0x04, 0x32, 0x07, 0x09, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x22, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, + 0x04, 0x32, 0x07, 0x09, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x4A, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, + 0x04, 0x32, 0x06, 0xF4, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x23, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, + 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8E, 0x00, 0xA9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, + 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8D, 0x00, 0xA9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, + 0x04, 0x32, 0x07, 0x09, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x24, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x43, + 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x27, + 0x0A, 0x8D, 0x00, 0xA9, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x5B, + 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x07, 0x09, + 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, 0x00, 0xAA, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x07, 0x09, + 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, 0x00, 0xAA, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x06, 0xF4, + 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, 0x00, 0xAA, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE4, + 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEA, 0x1D, 0x00, + 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, + 0x02, 0x23, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xFF, 0x00, 0xFF, 0xFF, + 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x06, 0xC0, 0x06, 0x26, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE5, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x57, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFE, 0x43, 0x04, 0x32, 0x04, 0x41, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x5B, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x06, 0xC0, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xE6, 0x01, 0x58, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE9, 0x00, 0xD0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x91, 0x01, 0x32, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xE9, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xF8, 0x00, 0xA9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x05, 0x9D, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0x00, 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFE, 0x5C, 0x04, 0x40, 0x04, 0x41, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x5A, 0x02, 0x7B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x06, 0x5F, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0xAB, 0x01, 0xB1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x06, 0x5F, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x90, 0x01, 0x09, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x07, 0x5A, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x1B, 0x01, 0x09, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFD, 0xE2, 0x04, 0x32, 0x04, 0x41, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x36, 0x01, 0x11, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xCE, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, + 0x00, 0x06, 0x06, 0xEC, 0x59, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFF, 0xEB, + 0x04, 0x65, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x11, 0x33, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x02, 0x9A, 0x4C, 0x7C, 0x5E, 0x20, 0x06, 0xD1, 0xD6, 0x04, 0x1F, 0x5C, + 0x7C, 0x4C, 0x89, 0xCE, 0x74, 0x73, 0xCF, 0xB5, 0x57, 0x81, 0x47, 0x47, + 0x81, 0x57, 0x5C, 0x84, 0x47, 0x47, 0x85, 0x15, 0x2E, 0x53, 0x38, 0xA4, + 0x05, 0xD2, 0xFD, 0xBD, 0x35, 0x50, 0x2D, 0x8A, 0xF9, 0xA7, 0xA7, 0xFA, + 0x8B, 0xB7, 0x59, 0xA7, 0x75, 0x76, 0xA5, 0x59, 0x5D, 0xA6, 0x71, 0x70, + 0xA8, 0x5D, 0xFF, 0xFF, 0xFF, 0xEB, 0xFF, 0xEB, 0x04, 0x65, 0x05, 0xD2, + 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x72, + 0x02, 0x0E, 0x00, 0x03, 0x00, 0x7D, 0xFF, 0xEB, 0x04, 0x65, 0x05, 0xD2, + 0x00, 0x03, 0x00, 0x1A, 0x00, 0x2A, 0x00, 0x00, 0x53, 0x27, 0x21, 0x15, + 0x01, 0x22, 0x26, 0x26, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x11, 0x33, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0xEB, 0x6E, 0x03, 0x44, 0xFE, 0xD9, 0x4C, 0x7C, 0x5E, 0x20, + 0x06, 0xD1, 0xD6, 0x04, 0x1F, 0x5C, 0x7C, 0x4C, 0x89, 0xCE, 0x74, 0x73, + 0xCF, 0xB5, 0x57, 0x81, 0x47, 0x47, 0x81, 0x57, 0x5C, 0x84, 0x47, 0x47, + 0x85, 0x05, 0x1F, 0xB3, 0xB3, 0xFA, 0xCC, 0x2E, 0x53, 0x38, 0xA4, 0x05, + 0xD2, 0xFD, 0xBD, 0x35, 0x50, 0x2D, 0x8A, 0xF9, 0xA7, 0xA7, 0xFA, 0x8B, + 0xB7, 0x59, 0xA7, 0x75, 0x76, 0xA5, 0x59, 0x5D, 0xA6, 0x71, 0x70, 0xA8, + 0x5D, 0x00, 0x03, 0x00, 0x7D, 0xFF, 0xEB, 0x04, 0x64, 0x05, 0xD5, 0x00, + 0x16, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, + 0x23, 0x15, 0x23, 0x11, 0x33, 0x15, 0x37, 0x3E, 0x02, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x11, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, 0x22, 0x06, 0x15, + 0x11, 0x02, 0x98, 0x4C, 0x7B, 0x5F, 0x20, 0x06, 0xCF, 0xD4, 0x05, 0x1E, + 0x5C, 0x7C, 0x4C, 0x89, 0xCF, 0x74, 0x73, 0xCF, 0xB5, 0x58, 0x81, 0x48, + 0x48, 0x81, 0x58, 0x5C, 0x84, 0x48, 0x48, 0x85, 0xFE, 0x6B, 0x9F, 0x99, + 0x27, 0x3B, 0x17, 0x11, 0x3E, 0x13, 0x41, 0x38, 0x15, 0x2E, 0x53, 0x37, + 0xA3, 0x04, 0x2E, 0xA3, 0x01, 0x34, 0x50, 0x2D, 0x8A, 0xF8, 0xA6, 0xA6, + 0xF9, 0x8B, 0xB6, 0x59, 0xA7, 0x75, 0x75, 0xA6, 0x58, 0x5C, 0xA7, 0x70, + 0x70, 0xA8, 0x5D, 0x02, 0xB5, 0x01, 0x6F, 0x86, 0x8A, 0x01, 0x01, 0xB1, + 0x01, 0x2E, 0x34, 0xFE, 0x95, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEB, 0x04, + 0x65, 0x06, 0xB4, 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0xBB, 0x00, 0xCF, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x04, + 0x65, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x82, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x92, 0x04, + 0x65, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x42, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0x00, 0xC7, 0xF9, 0x92, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5E, 0x04, + 0x66, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x27, 0x23, 0x11, 0x23, 0x11, 0x33, 0x11, 0x33, 0x3E, 0x02, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, + 0x9A, 0x4C, 0x7A, 0x5D, 0x20, 0x04, 0xD6, 0xD6, 0x05, 0x1E, 0x5C, 0x7C, + 0x4C, 0x89, 0xCF, 0x74, 0x74, 0xCE, 0xB6, 0x58, 0x80, 0x47, 0x47, 0x80, + 0x58, 0x5B, 0x85, 0x47, 0x48, 0x84, 0x15, 0x2E, 0x53, 0x37, 0xFD, 0xBB, + 0x07, 0x74, 0xFD, 0xBD, 0x35, 0x50, 0x2D, 0x8A, 0xF9, 0xA7, 0xA7, 0xFA, + 0x8B, 0xB7, 0x59, 0xA7, 0x75, 0x76, 0xA5, 0x59, 0x5D, 0xA6, 0x71, 0x70, + 0xA8, 0x5D, 0x00, 0x01, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x04, 0x44, + 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, + 0x02, 0x45, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, 0x98, 0x5D, 0x9F, 0x7A, 0x4D, + 0x0C, 0xD1, 0x09, 0x29, 0x40, 0x55, 0x36, 0x5D, 0x83, 0x44, 0x44, 0x83, + 0x5D, 0x36, 0x54, 0x3E, 0x2A, 0x0A, 0xD3, 0x0B, 0x4E, 0x7A, 0xA0, 0x18, + 0x8D, 0xFB, 0xA4, 0xA5, 0xFD, 0x8E, 0x37, 0x63, 0x89, 0x52, 0x0B, 0x2C, + 0x4A, 0x35, 0x1E, 0x5F, 0xAA, 0x70, 0x6E, 0xA9, 0x5E, 0x1D, 0x36, 0x4B, + 0x2D, 0x0B, 0x52, 0x88, 0x65, 0x38, 0x00, 0x02, 0x00, 0x4A, 0xFE, 0x5E, + 0x04, 0x15, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x29, 0x00, 0x00, 0x53, 0x01, + 0x33, 0x01, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x8C, 0x02, + 0xC3, 0x93, 0xFD, 0x3F, 0x01, 0x24, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, 0x98, + 0x5D, 0x9F, 0x7A, 0x4D, 0x0C, 0xD1, 0x09, 0x29, 0x40, 0x55, 0x36, 0x5D, + 0x83, 0x44, 0x44, 0x83, 0x5D, 0x36, 0x54, 0x3E, 0x2A, 0x0A, 0xD3, 0x0B, + 0x4E, 0x7A, 0xA0, 0xFE, 0x5E, 0x07, 0x74, 0xF8, 0x8C, 0x01, 0x8A, 0x8D, + 0xFB, 0xA4, 0xA5, 0xFD, 0x8E, 0x37, 0x63, 0x89, 0x52, 0x0B, 0x2C, 0x4A, + 0x35, 0x1E, 0x5F, 0xAA, 0x70, 0x6E, 0xA9, 0x5E, 0x1D, 0x36, 0x4B, 0x2D, + 0x0B, 0x52, 0x88, 0x65, 0x38, 0x00, 0x02, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0xD2, 0x04, 0xF9, 0x00, 0x0F, 0x00, 0x35, 0x00, 0x00, 0x41, 0x03, 0x26, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x17, + 0x13, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x03, 0x5E, 0x1A, + 0x12, 0x92, 0x9A, 0x26, 0x39, 0x15, 0x12, 0x40, 0x14, 0x3A, 0x31, 0x05, + 0x0E, 0xFE, 0x31, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, 0x98, 0x5D, 0x9F, 0x7A, + 0x4D, 0x0C, 0xD1, 0x09, 0x29, 0x40, 0x55, 0x36, 0x5D, 0x83, 0x44, 0x44, + 0x83, 0x5D, 0x36, 0x54, 0x3E, 0x2A, 0x0A, 0xD3, 0x0B, 0x4E, 0x7A, 0xA0, + 0x02, 0xCA, 0x01, 0x13, 0x8F, 0x8D, 0x01, 0x01, 0xB1, 0x01, 0x01, 0x32, + 0x36, 0xFE, 0xEF, 0xFD, 0x19, 0x8D, 0xFB, 0xA4, 0xA5, 0xFD, 0x8E, 0x37, + 0x63, 0x89, 0x52, 0x0B, 0x2C, 0x4A, 0x35, 0x1E, 0x5F, 0xAA, 0x70, 0x6E, + 0xA9, 0x5E, 0x1D, 0x36, 0x4B, 0x2D, 0x0B, 0x52, 0x88, 0x65, 0x38, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x5E, 0x04, 0x15, 0x04, 0x44, 0x06, 0x26, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x2B, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x85, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xA8, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x05, 0xE5, 0x06, 0x26, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x57, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xA8, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x5E, 0x04, 0x15, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x95, 0x01, 0x2B, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x01, 0x85, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x15, 0x04, 0x44, 0x06, 0x06, 0x02, 0x4A, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x04, 0x44, 0x06, 0x06, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x05, + 0xD2, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x11, 0x33, 0x11, + 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x16, 0x89, + 0xD0, 0x73, 0x74, 0xCF, 0x88, 0x4D, 0x7B, 0x5D, 0x1E, 0x05, 0xD5, 0xD1, + 0x06, 0x1F, 0x5F, 0x7B, 0x20, 0x5B, 0x84, 0x47, 0x47, 0x84, 0x5B, 0x58, + 0x81, 0x47, 0x47, 0x82, 0x15, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, + 0x50, 0x35, 0x02, 0x43, 0xFA, 0x2E, 0xA4, 0x38, 0x53, 0x2E, 0xB7, 0x5D, + 0xA8, 0x70, 0x71, 0xA6, 0x5D, 0x59, 0xA5, 0x76, 0x75, 0xA7, 0x59, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0xC4, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0x01, 0xA4, 0x02, 0x0E, 0x00, + 0x03, 0x00, 0x4A, 0xFE, 0x5B, 0x05, 0x07, 0x05, 0xD2, 0x00, 0x0F, 0x00, + 0x26, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, 0x01, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x11, + 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, + 0x8F, 0x99, 0x99, 0xD3, 0x35, 0x40, 0x14, 0x3E, 0x10, 0x16, 0x3B, 0xFD, + 0x60, 0x89, 0xD0, 0x73, 0x74, 0xCF, 0x88, 0x4D, 0x7B, 0x5D, 0x1E, 0x05, + 0xD5, 0xD1, 0x06, 0x1F, 0x5F, 0x7B, 0x20, 0x5B, 0x84, 0x47, 0x47, 0x84, + 0x5B, 0x58, 0x81, 0x47, 0x47, 0x82, 0xFE, 0x5B, 0x8B, 0x86, 0x01, 0x4B, + 0xFE, 0xB8, 0x33, 0x2E, 0x01, 0xB1, 0x01, 0x02, 0x01, 0x90, 0x8B, 0xFA, + 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, 0x50, 0x35, 0x02, 0x43, 0xFA, 0x2E, 0xA4, + 0x38, 0x53, 0x2E, 0xB7, 0x5D, 0xA8, 0x70, 0x71, 0xA6, 0x5D, 0x59, 0xA5, + 0x76, 0x75, 0xA7, 0x59, 0x00, 0x03, 0x00, 0x4A, 0xFF, 0xEB, 0x05, 0x0D, + 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x41, 0x11, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, 0x22, 0x06, + 0x15, 0x11, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x03, 0x5D, 0x9F, 0x98, 0x28, 0x3B, 0x16, 0x10, + 0x3E, 0x14, 0x40, 0x39, 0xFD, 0xE3, 0x88, 0xD0, 0x73, 0x74, 0xD0, 0x87, + 0x4D, 0x7D, 0x5E, 0x1E, 0x05, 0xD2, 0xD2, 0x05, 0x20, 0x5E, 0x7B, 0x20, + 0x5B, 0x84, 0x48, 0x48, 0x84, 0x5B, 0x57, 0x82, 0x47, 0x47, 0x82, 0x03, + 0x56, 0x01, 0x6F, 0x86, 0x8A, 0x01, 0x01, 0xB1, 0x01, 0x2E, 0x34, 0xFE, + 0x95, 0xFC, 0x95, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, 0x50, 0x35, + 0x9F, 0xFB, 0xD2, 0xA3, 0x37, 0x53, 0x2E, 0xB7, 0x5D, 0xA8, 0x70, 0x71, + 0xA6, 0x5D, 0x58, 0xA6, 0x76, 0x75, 0xA7, 0x59, 0x00, 0x03, 0x00, 0x4A, + 0xFF, 0xEB, 0x04, 0x32, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x2A, + 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0xC4, 0xFD, 0x2A, + 0x03, 0x44, 0xFD, 0xE4, 0x89, 0xD0, 0x73, 0x74, 0xCF, 0x88, 0x4D, 0x7B, + 0x5D, 0x1E, 0x05, 0xD5, 0xD1, 0x06, 0x1F, 0x5F, 0x7B, 0x20, 0x5B, 0x84, + 0x47, 0x47, 0x84, 0x5B, 0x58, 0x81, 0x47, 0x47, 0x82, 0x05, 0x1F, 0xB3, + 0xFA, 0x19, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, 0x50, 0x35, 0x02, + 0x43, 0xFA, 0x2E, 0xA4, 0x38, 0x53, 0x2E, 0xB7, 0x5D, 0xA8, 0x70, 0x71, + 0xA6, 0x5D, 0x59, 0xA5, 0x76, 0x75, 0xA7, 0x59, 0x00, 0x03, 0x00, 0x4A, + 0xFE, 0x5E, 0x05, 0xEB, 0x05, 0xD2, 0x00, 0x1F, 0x00, 0x36, 0x00, 0x46, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, 0x06, 0x07, 0x01, + 0x27, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, + 0x11, 0x33, 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x04, 0xAF, 0x7A, 0x95, 0x45, 0xD5, 0x4D, 0x34, 0x30, 0x3C, 0x33, 0x2E, + 0x22, 0x3F, 0x3D, 0x21, 0xFE, 0xE5, 0x78, 0xF8, 0x47, 0xB4, 0x58, 0x89, + 0xAD, 0xA9, 0xFC, 0xD4, 0x89, 0xD0, 0x73, 0x74, 0xCF, 0x88, 0x4D, 0x7B, + 0x5D, 0x1E, 0x05, 0xD5, 0xD1, 0x06, 0x1F, 0x5F, 0x7B, 0x20, 0x5B, 0x84, + 0x47, 0x47, 0x84, 0x5B, 0x58, 0x81, 0x47, 0x47, 0x82, 0xFE, 0x5E, 0x5D, + 0x98, 0x56, 0x01, 0x41, 0xFE, 0x9E, 0x43, 0x46, 0x3B, 0x2E, 0x2A, 0x39, + 0x06, 0x05, 0x10, 0x26, 0x1C, 0xFE, 0xF5, 0x86, 0xEA, 0x43, 0x4C, 0x98, + 0x7B, 0x78, 0x8F, 0x01, 0x8D, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, + 0x50, 0x35, 0x02, 0x43, 0xFA, 0x2E, 0xA4, 0x38, 0x53, 0x2E, 0xB7, 0x5D, + 0xA8, 0x70, 0x71, 0xA6, 0x5D, 0x59, 0xA5, 0x76, 0x75, 0xA7, 0x59, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x05, 0x7E, 0x06, 0x1A, 0x04, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x28, 0x04, 0x19, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x06, 0xB4, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x17, 0x00, 0xCF, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x43, 0x04, 0x32, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x52, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x92, 0x04, 0x32, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x97, 0xF9, 0x92, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x17, 0x04, 0x32, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x3D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x3A, 0x04, 0x32, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xA4, 0xF9, 0x71, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x08, 0x5A, 0x05, 0xD2, 0x04, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x03, 0xFC, 0x04, 0xAF, 0x00, 0x00, 0x00, + 0x03, 0x00, 0x4A, 0xFF, 0xEB, 0x07, 0xF4, 0x05, 0xD2, 0x00, 0x0B, 0x00, + 0x22, 0x00, 0x32, 0x00, 0x00, 0x61, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, + 0x15, 0x01, 0x15, 0x21, 0x15, 0x05, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x11, 0x33, 0x11, 0x23, 0x35, + 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, 0xB0, 0x02, 0x3A, 0xFC, + 0xF2, 0x04, 0x10, 0xFD, 0xD0, 0x02, 0x38, 0xFA, 0x22, 0x89, 0xD0, 0x73, + 0x74, 0xCF, 0x88, 0x4D, 0x7B, 0x5D, 0x1E, 0x05, 0xD5, 0xD1, 0x06, 0x1F, + 0x5F, 0x7B, 0x20, 0x5B, 0x84, 0x47, 0x47, 0x84, 0x5B, 0x58, 0x81, 0x47, + 0x47, 0x82, 0x97, 0x02, 0xDD, 0x05, 0xB5, 0xA0, 0xFD, 0x2C, 0x05, 0xB5, + 0x15, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, 0x50, 0x35, 0x02, 0x43, + 0xFA, 0x2E, 0xA4, 0x38, 0x53, 0x2E, 0xB7, 0x5D, 0xA8, 0x70, 0x71, 0xA6, + 0x5D, 0x59, 0xA5, 0x76, 0x75, 0xA7, 0x59, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xEB, 0x08, 0x5A, 0x05, 0xE4, 0x04, 0x26, 0x02, 0x55, 0x00, 0x00, 0x00, + 0x27, 0x03, 0xFC, 0x04, 0xAF, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x05, + 0x17, 0x00, 0x00, 0x00, 0x03, 0x00, 0x4A, 0xFE, 0x4E, 0x07, 0x81, 0x05, + 0xD2, 0x00, 0x22, 0x00, 0x39, 0x00, 0x49, 0x00, 0x00, 0x45, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x01, + 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x25, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, 0x3B, 0x0C, 0x57, + 0x81, 0x49, 0x5E, 0x8F, 0x51, 0x50, 0x9B, 0x72, 0x77, 0x01, 0x63, 0xFD, + 0xA4, 0x03, 0x71, 0xFE, 0x67, 0x8E, 0xD0, 0x72, 0x8A, 0xF2, 0x9C, 0x88, + 0xDE, 0x8F, 0x11, 0xFE, 0xB3, 0x89, 0xD0, 0x73, 0x74, 0xCF, 0x88, 0x4D, + 0x7B, 0x5D, 0x1E, 0x05, 0xD5, 0xD1, 0x06, 0x1F, 0x5F, 0x7B, 0x20, 0x5B, + 0x84, 0x47, 0x47, 0x84, 0x5B, 0x58, 0x81, 0x47, 0x47, 0x82, 0x50, 0x36, + 0x4C, 0x28, 0x42, 0x7A, 0x52, 0x54, 0x7B, 0x43, 0xB0, 0x01, 0x95, 0x03, + 0xC0, 0xA1, 0xFE, 0x37, 0x04, 0x09, 0x76, 0xBD, 0x76, 0x83, 0xCA, 0x73, + 0x57, 0xA0, 0x6B, 0x3B, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, 0x50, + 0x35, 0x02, 0x43, 0xFA, 0x2E, 0xA4, 0x38, 0x53, 0x2E, 0xB7, 0x5D, 0xA8, + 0x70, 0x71, 0xA6, 0x5D, 0x59, 0xA5, 0x76, 0x75, 0xA7, 0x59, 0xFF, 0xFF, + 0x00, 0x4A, 0xFE, 0x6C, 0x04, 0xC4, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x55, + 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0x01, 0xA4, 0x02, 0x0E, 0x00, 0x07, + 0x06, 0x05, 0x00, 0x77, 0xFF, 0x24, 0x00, 0x01, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x29, 0x04, 0x44, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x15, 0x21, 0x35, + 0x21, 0x07, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x02, 0x47, + 0x9E, 0xE5, 0x7A, 0x7E, 0xE0, 0x92, 0x6D, 0xB5, 0x84, 0x49, 0xFC, 0x86, + 0x03, 0x0B, 0x60, 0x45, 0x80, 0x59, 0x58, 0x81, 0x47, 0x48, 0x87, 0x5F, + 0x44, 0x68, 0x47, 0x10, 0xCC, 0x15, 0x82, 0xC3, 0x18, 0x8E, 0xFB, 0xA3, + 0xA3, 0xFD, 0x90, 0x4C, 0x91, 0xCD, 0x80, 0x3F, 0xA1, 0x32, 0x64, 0x93, + 0x51, 0x51, 0x91, 0x60, 0x60, 0x67, 0x9A, 0x55, 0x29, 0x4B, 0x32, 0x0B, + 0x62, 0x96, 0x55, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x05, + 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xF3, + 0x00, 0x00, 0x02, 0x00, 0x4A, 0xFE, 0x5E, 0x04, 0x29, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x2B, 0x00, 0x00, 0x53, 0x01, 0x33, 0x01, 0x01, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x15, 0x21, + 0x35, 0x21, 0x07, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x88, + 0x02, 0xDB, 0x8A, 0xFD, 0x26, 0x01, 0x34, 0x9E, 0xE5, 0x7A, 0x7E, 0xE0, + 0x92, 0x6D, 0xB5, 0x84, 0x49, 0xFC, 0x86, 0x03, 0x0B, 0x60, 0x45, 0x80, + 0x59, 0x58, 0x81, 0x47, 0x48, 0x87, 0x5F, 0x44, 0x68, 0x47, 0x10, 0xCC, + 0x15, 0x82, 0xC3, 0xFE, 0x5E, 0x07, 0x74, 0xF8, 0x8C, 0x01, 0x8A, 0x8E, + 0xFB, 0xA3, 0xA3, 0xFD, 0x90, 0x4C, 0x91, 0xCD, 0x80, 0x3F, 0xA1, 0x32, + 0x64, 0x93, 0x51, 0x51, 0x91, 0x60, 0x60, 0x67, 0x9A, 0x55, 0x29, 0x4B, + 0x32, 0x0B, 0x62, 0x96, 0x55, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE9, 0x00, 0xC4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x01, 0x79, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8D, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0x9D, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0x00, 0x91, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xE3, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x00, 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xE5, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5A, 0x04, + 0x29, 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x5B, 0x01, 0xE7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8E, 0x00, 0x9C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x06, 0x06, + 0xEA, 0x10, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x05, + 0xE9, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0x00, + 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5E, 0x04, 0x29, 0x04, + 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, + 0x25, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x07, + 0x1F, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x54, 0x00, + 0x91, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x07, + 0x1F, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xB8, 0x00, + 0x91, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x3A, 0x04, 0x29, 0x04, + 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, + 0x9E, 0xF9, 0x71, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x57, 0x04, 0x29, 0x04, + 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, + 0x4D, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5E, 0x04, 0x29, 0x05, + 0xE3, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x95, 0x01, + 0x25, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0x9D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x43, 0x04, 0x29, 0x04, 0x44, 0x06, 0x26, 0x02, + 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x4C, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x66, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x26, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x05, 0xCE, 0x06, 0x26, 0x02, + 0x66, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x4D, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x07, 0x09, 0x06, 0x26, 0x02, 0x66, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x24, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x07, 0x09, 0x06, 0x26, 0x02, 0x66, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x25, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x07, 0x09, 0x06, 0x26, 0x02, 0x66, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x26, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x06, 0xF4, 0x06, 0x26, 0x02, 0x66, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x27, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFE, 0x43, 0x04, 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, + 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0x9C, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x4C, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x04, 0x44, 0x06, 0x06, 0x02, 0x66, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, + 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xC4, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, 0x66, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xF3, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x29, 0x05, 0xE3, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8F, 0x00, 0x9D, 0x00, 0x00, 0x00, 0x01, 0x00, 0x46, 0xFF, + 0xEA, 0x04, 0x25, 0x04, 0x46, 0x00, 0x27, 0x00, 0x00, 0x41, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x21, + 0x15, 0x21, 0x37, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x02, + 0x27, 0x9F, 0xE4, 0x7B, 0x7E, 0xE0, 0x93, 0x6C, 0xB5, 0x85, 0x48, 0x03, + 0x7A, 0xFC, 0xF5, 0x5F, 0x45, 0x81, 0x59, 0x58, 0x81, 0x47, 0x48, 0x87, + 0x5F, 0x44, 0x69, 0x46, 0x10, 0xCC, 0x15, 0x82, 0xC3, 0x04, 0x46, 0x8E, + 0xFB, 0xA3, 0xA3, 0xFD, 0x90, 0x4C, 0x91, 0xCC, 0x81, 0x3E, 0xA1, 0x32, + 0x62, 0x94, 0x51, 0x51, 0x92, 0x5F, 0x60, 0x68, 0x99, 0x55, 0x29, 0x4B, + 0x33, 0x0B, 0x63, 0x96, 0x55, 0x00, 0x01, 0x00, 0xC9, 0x00, 0x00, 0x02, + 0x87, 0x05, 0xE2, 0x00, 0x10, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, + 0xC9, 0x4B, 0x8B, 0x5D, 0x2E, 0x4E, 0x0F, 0x0B, 0x0C, 0x3C, 0x17, 0x44, + 0x3B, 0x04, 0xCF, 0x58, 0x7B, 0x40, 0x05, 0x02, 0xAF, 0x01, 0x02, 0x3D, + 0x44, 0xFB, 0x52, 0x00, 0x02, 0x00, 0x11, 0x00, 0x00, 0x02, 0x91, 0x05, + 0xE2, 0x00, 0x03, 0x00, 0x14, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, + 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x02, 0x87, 0xFD, 0x8A, 0xC2, 0x4C, 0x8A, 0x5D, + 0x2F, 0x4E, 0x0E, 0x0B, 0x0C, 0x3C, 0x17, 0x44, 0x3B, 0x04, 0x2E, 0xB0, + 0xB0, 0xFB, 0xD2, 0x04, 0xCF, 0x58, 0x7B, 0x40, 0x05, 0x02, 0xAF, 0x01, + 0x02, 0x3D, 0x44, 0xFB, 0x52, 0x00, 0x02, 0x00, 0x7D, 0x00, 0x00, 0x02, + 0x3B, 0x05, 0xE2, 0x00, 0x03, 0x00, 0x14, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x03, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x02, 0x31, 0xFE, 0xAA, 0x5E, 0x4C, + 0x8A, 0x5D, 0x2F, 0x4E, 0x0E, 0x0B, 0x0B, 0x3C, 0x17, 0x45, 0x3B, 0x04, + 0x2E, 0xB0, 0xB0, 0xFB, 0xD2, 0x04, 0xCF, 0x58, 0x7B, 0x40, 0x05, 0x02, + 0xAF, 0x01, 0x02, 0x3D, 0x44, 0xFB, 0x52, 0x00, 0x02, 0x00, 0x11, 0x00, + 0x00, 0x03, 0x59, 0x05, 0xE2, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x73, + 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x22, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x01, 0x35, 0x21, 0x15, 0xD3, 0x4B, 0x8B, 0x5D, + 0x16, 0x2A, 0x15, 0x05, 0x0B, 0x18, 0x0C, 0x44, 0x3B, 0xFE, 0x69, 0x03, + 0x48, 0x04, 0xCF, 0x58, 0x7B, 0x40, 0x02, 0x01, 0xB1, 0x01, 0x3D, 0x44, + 0xFB, 0x52, 0x03, 0x7E, 0xB0, 0xB0, 0x00, 0x02, 0x00, 0x7D, 0x00, 0x00, + 0x03, 0x0F, 0x05, 0xE2, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x73, 0x11, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x22, 0x23, 0x22, + 0x06, 0x15, 0x11, 0x03, 0x35, 0x21, 0x15, 0x7D, 0x4C, 0x8A, 0x5D, 0x17, + 0x2A, 0x14, 0x04, 0x0C, 0x18, 0x0B, 0x45, 0x3B, 0x71, 0x02, 0x2E, 0x04, + 0xCF, 0x58, 0x7B, 0x40, 0x02, 0x01, 0xB1, 0x01, 0x3D, 0x44, 0xFB, 0x52, + 0x03, 0x7E, 0xB0, 0xB0, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, 0x3B, + 0x07, 0x97, 0x06, 0x26, 0x02, 0x88, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x00, 0x44, 0x01, 0xB2, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5B, 0x05, 0xBC, + 0x05, 0xE2, 0x04, 0x26, 0x02, 0x88, 0x00, 0x00, 0x00, 0x07, 0x03, 0x08, + 0x01, 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, 0x3B, + 0x05, 0xE2, 0x04, 0x06, 0x02, 0x86, 0xB5, 0x00, 0xFF, 0xFF, 0x00, 0x26, + 0x00, 0x00, 0x02, 0x87, 0x05, 0xE2, 0x06, 0x26, 0x02, 0x86, 0x00, 0x00, + 0x00, 0x06, 0x0B, 0x6A, 0x26, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, + 0x02, 0x3B, 0x07, 0x97, 0x04, 0x26, 0x02, 0x86, 0xB5, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x00, 0x44, 0x01, 0xB2, 0xFF, 0xFF, 0x00, 0x11, 0x00, 0x00, + 0x02, 0x91, 0x07, 0x97, 0x06, 0x26, 0x02, 0x87, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x00, 0x9A, 0x01, 0xB2, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0x5B, + 0x06, 0x10, 0x05, 0xE2, 0x04, 0x26, 0x02, 0x87, 0x00, 0x00, 0x00, 0x07, + 0x03, 0x08, 0x02, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4A, 0xFE, 0x4E, + 0x04, 0x32, 0x04, 0x41, 0x00, 0x25, 0x00, 0x35, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x35, 0x35, 0x23, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x11, 0x14, 0x06, 0x06, 0x03, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x02, 0x4C, 0x82, 0xC3, 0x79, 0x12, 0xCD, 0x0F, 0x45, 0x69, + 0x45, 0x80, 0x94, 0x05, 0x21, 0x5C, 0x7B, 0x4D, 0x88, 0xCF, 0x74, 0x74, + 0xD0, 0x87, 0x4D, 0x7C, 0x5F, 0x20, 0x04, 0xD1, 0x82, 0xDD, 0x91, 0x5B, + 0x84, 0x48, 0x48, 0x84, 0x5B, 0x57, 0x82, 0x47, 0x47, 0x82, 0xFE, 0x4E, + 0x4A, 0x8B, 0x5F, 0x14, 0x2F, 0x46, 0x26, 0x86, 0x80, 0xAD, 0x37, 0x52, + 0x2C, 0x88, 0xF5, 0xA4, 0xA5, 0xF8, 0x8A, 0x2D, 0x53, 0x39, 0xA6, 0xFB, + 0xD9, 0x9D, 0xC2, 0x5A, 0x02, 0x60, 0x5A, 0xA5, 0x6F, 0x6F, 0xA5, 0x5C, + 0x58, 0xA4, 0x74, 0x75, 0xA3, 0x56, 0x00, 0x03, 0x00, 0x4A, 0xFE, 0x4E, + 0x05, 0x0D, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x35, 0x00, 0x45, 0x00, 0x00, + 0x41, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x01, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x35, 0x35, 0x23, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, + 0x11, 0x14, 0x06, 0x06, 0x03, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x5D, 0x9F, 0x99, + 0x27, 0x3B, 0x16, 0x10, 0x3E, 0x14, 0x40, 0x39, 0xFE, 0x1A, 0x82, 0xC3, + 0x79, 0x12, 0xCD, 0x0F, 0x45, 0x69, 0x45, 0x80, 0x94, 0x05, 0x21, 0x5C, + 0x7B, 0x4D, 0x88, 0xCF, 0x74, 0x74, 0xD0, 0x87, 0x4D, 0x7C, 0x5F, 0x20, + 0x04, 0xD1, 0x82, 0xDD, 0x91, 0x5B, 0x84, 0x48, 0x48, 0x84, 0x5B, 0x57, + 0x82, 0x47, 0x47, 0x82, 0x03, 0x56, 0x01, 0x6F, 0x86, 0x8A, 0x01, 0x01, + 0xB1, 0x01, 0x2E, 0x34, 0xFE, 0x95, 0xFA, 0xF8, 0x4A, 0x8B, 0x5F, 0x14, + 0x2F, 0x46, 0x26, 0x86, 0x80, 0xAD, 0x37, 0x52, 0x2C, 0x88, 0xF5, 0xA4, + 0xA5, 0xF8, 0x8A, 0x2D, 0x53, 0x39, 0xA6, 0xFB, 0xD9, 0x9D, 0xC2, 0x5A, + 0x02, 0x60, 0x5A, 0xA5, 0x6F, 0x6F, 0xA5, 0x5C, 0x58, 0xA4, 0x74, 0x75, + 0xA3, 0x56, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x05, 0x09, 0x04, 0x41, + 0x04, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x39, 0x02, 0x64, + 0xFF, 0x4C, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x05, 0xE4, + 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xA3, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x05, 0xE3, + 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xA4, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x05, 0xE5, + 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x52, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x06, 0x6F, + 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x6D, 0x01, 0x5C, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x05, 0xE4, + 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xA3, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x05, 0xE4, + 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x80, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x05, 0x9D, + 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x98, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x37, 0xFF, 0xEF, 0x04, 0x09, 0x04, 0x3E, + 0x00, 0x24, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x17, 0x21, 0x35, 0x21, + 0x15, 0x14, 0x06, 0x06, 0x02, 0x33, 0x96, 0xE6, 0x80, 0x84, 0xE5, 0x90, + 0x78, 0xC7, 0x83, 0x0F, 0xD4, 0x0E, 0x44, 0x66, 0x41, 0x5A, 0x87, 0x4A, + 0x4A, 0x87, 0x5C, 0x75, 0x92, 0x31, 0xFE, 0xE0, 0x01, 0xBB, 0x7A, 0xD4, + 0x11, 0x8A, 0xF8, 0xA5, 0xAA, 0xF8, 0x86, 0x5C, 0xA6, 0x6F, 0x38, 0x53, + 0x2D, 0x59, 0xA4, 0x71, 0x71, 0xA4, 0x59, 0x84, 0x6B, 0x04, 0xA2, 0x87, + 0x85, 0xCA, 0x71, 0x00, 0x02, 0x00, 0x37, 0xFF, 0xEF, 0x04, 0xB6, 0x04, + 0xEC, 0x00, 0x10, 0x00, 0x35, 0x00, 0x00, 0x41, 0x03, 0x26, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x15, 0x22, 0x26, 0x23, 0x22, 0x06, 0x17, 0x17, + 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x17, 0x21, 0x35, 0x21, 0x15, 0x14, 0x06, 0x06, + 0x03, 0x60, 0x19, 0x0B, 0x34, 0x7E, 0x63, 0x23, 0x2B, 0x17, 0x11, 0x2E, + 0x0F, 0x41, 0x32, 0x08, 0x04, 0xFE, 0x32, 0x96, 0xE6, 0x80, 0x84, 0xE5, + 0x90, 0x78, 0xC7, 0x83, 0x0F, 0xD4, 0x0E, 0x44, 0x66, 0x41, 0x5A, 0x87, + 0x4A, 0x4A, 0x87, 0x5C, 0x75, 0x92, 0x31, 0xFE, 0xE0, 0x01, 0xBB, 0x7A, + 0xD4, 0x02, 0xCD, 0x01, 0x03, 0x59, 0x80, 0x43, 0x02, 0x01, 0xB0, 0x01, + 0x3C, 0x49, 0xE8, 0xFD, 0x22, 0x8A, 0xF8, 0xA5, 0xAA, 0xF8, 0x86, 0x5C, + 0xA6, 0x6F, 0x38, 0x53, 0x2D, 0x59, 0xA4, 0x71, 0x71, 0xA4, 0x59, 0x84, + 0x6B, 0x04, 0xA2, 0x87, 0x85, 0xCA, 0x71, 0x00, 0x01, 0x00, 0x7D, 0x00, + 0x00, 0x04, 0x10, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x11, 0x33, 0x11, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x01, 0x53, 0xD6, 0xD5, + 0x2F, 0x32, 0xBA, 0x83, 0x6E, 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, 0x74, + 0x43, 0x02, 0x6C, 0xFD, 0x94, 0x05, 0xD2, 0xFD, 0x53, 0x90, 0x8C, 0x5F, + 0xBA, 0x8B, 0xFD, 0x63, 0x02, 0x83, 0x7E, 0x83, 0x3C, 0x7C, 0xFF, 0xFF, + 0x00, 0x73, 0xFE, 0x5E, 0x04, 0x10, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x95, 0xCD, 0x00, 0xFF, 0xFF, 0xFF, 0xEA, + 0x00, 0x00, 0x04, 0x10, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x71, 0x02, 0x0E, 0x00, 0x03, 0xFF, 0xEA, + 0xFE, 0x5B, 0x04, 0x10, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x2A, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, + 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x01, 0x11, 0x23, 0x11, 0x33, 0x11, + 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x01, 0x35, 0x21, 0x15, 0x02, 0xDF, 0x28, + 0x3D, 0x17, 0x11, 0x3E, 0x14, 0x40, 0x35, 0xD5, 0x99, 0xFD, 0xDC, 0xD6, + 0xD5, 0x2F, 0x32, 0xBA, 0x83, 0x6E, 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, + 0x74, 0x43, 0xFE, 0x97, 0x02, 0xA6, 0xFE, 0x5B, 0x02, 0x01, 0xB1, 0x01, + 0x2E, 0x33, 0x91, 0x94, 0x86, 0x8B, 0x04, 0x11, 0xFD, 0x94, 0x05, 0xD2, + 0xFD, 0x53, 0x90, 0x8C, 0x5F, 0xBA, 0x8B, 0xFD, 0x63, 0x02, 0x83, 0x7E, + 0x83, 0x3C, 0x7C, 0x01, 0xDD, 0x9D, 0x9D, 0x00, 0x02, 0x00, 0x7D, 0x00, + 0x00, 0x04, 0x10, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x00, 0x53, + 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, 0x22, + 0x06, 0x15, 0x11, 0x15, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x7D, 0x9F, 0x99, 0x27, 0x3B, 0x17, 0x11, 0x3E, 0x13, 0x41, + 0x38, 0xD6, 0xD0, 0x01, 0x2B, 0x32, 0xBA, 0x83, 0x6E, 0xAD, 0x63, 0xD5, + 0x7A, 0x6F, 0x48, 0x74, 0x43, 0x03, 0x56, 0x01, 0x6F, 0x86, 0x8A, 0x01, + 0x01, 0xB1, 0x01, 0x2E, 0x34, 0xFE, 0x95, 0xEA, 0xFD, 0x94, 0x04, 0x2E, + 0xFE, 0xF7, 0x90, 0x8C, 0x5F, 0xBA, 0x8B, 0xFD, 0x63, 0x02, 0x83, 0x7E, + 0x83, 0x3C, 0x7C, 0x00, 0x03, 0x00, 0x7D, 0xFE, 0x5B, 0x04, 0x10, 0x05, + 0xD5, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x27, 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, + 0x06, 0x01, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, + 0x23, 0x22, 0x06, 0x15, 0x11, 0x15, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x02, 0xDF, 0x28, 0x3D, 0x17, 0x11, 0x3E, 0x14, + 0x40, 0x35, 0xD5, 0x99, 0xFD, 0x06, 0x9F, 0x99, 0x27, 0x3B, 0x17, 0x11, + 0x3E, 0x13, 0x41, 0x38, 0xD6, 0xD0, 0x01, 0x2B, 0x32, 0xBA, 0x83, 0x6E, + 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, 0x74, 0x43, 0xFE, 0x5B, 0x02, 0x01, + 0xB1, 0x01, 0x2E, 0x33, 0x91, 0x94, 0x86, 0x8B, 0x04, 0xFB, 0x01, 0x6F, + 0x86, 0x8A, 0x01, 0x01, 0xB1, 0x01, 0x2E, 0x34, 0xFE, 0x95, 0xEA, 0xFD, + 0x94, 0x04, 0x2E, 0xFE, 0xF7, 0x90, 0x8C, 0x5F, 0xBA, 0x8B, 0xFD, 0x63, + 0x02, 0x83, 0x7E, 0x83, 0x3C, 0x7C, 0x00, 0x01, 0x00, 0x7D, 0xFF, 0xEB, + 0x06, 0xF9, 0x05, 0xD2, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, + 0x33, 0x11, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x12, 0x11, 0x35, 0x33, 0x15, 0x10, 0x02, + 0x06, 0x04, 0xD8, 0x74, 0xB3, 0x66, 0x82, 0x70, 0x48, 0x78, 0x46, 0xD6, + 0xD5, 0x06, 0x24, 0x9F, 0x7E, 0x6E, 0xB1, 0x69, 0x3E, 0x5B, 0x2A, 0x59, + 0x91, 0x56, 0xD5, 0x87, 0xF5, 0x15, 0x65, 0xCC, 0x9C, 0xCC, 0x7E, 0x84, + 0x3C, 0x7B, 0x60, 0xFD, 0x91, 0x05, 0xD2, 0xFD, 0xAA, 0x55, 0x70, 0x5F, + 0xBB, 0x8A, 0xE5, 0x72, 0x76, 0x2A, 0xA1, 0x01, 0x64, 0x01, 0x24, 0x5F, + 0x5F, 0xFE, 0x9F, 0xFE, 0x49, 0xCC, 0x00, 0x01, 0x00, 0x7D, 0xFE, 0x5C, + 0x04, 0x10, 0x04, 0x2E, 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, + 0x23, 0x11, 0x33, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x03, 0x3B, 0xD5, 0xD5, 0x30, + 0x33, 0xB9, 0x84, 0x6D, 0xAD, 0x64, 0xD6, 0x7B, 0x6D, 0x49, 0x73, 0x44, + 0x01, 0xC2, 0x02, 0x6C, 0xFA, 0x2E, 0x02, 0xAD, 0x8F, 0x8D, 0x5E, 0xBC, + 0x89, 0x02, 0x9E, 0xFD, 0x7D, 0x7E, 0x83, 0x3C, 0x7C, 0x00, 0x01, 0x00, + 0x11, 0xFE, 0x5E, 0x04, 0x84, 0x04, 0x31, 0x00, 0x25, 0x00, 0x00, 0x41, + 0x11, 0x33, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x22, 0x23, 0x35, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, + 0x15, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, + 0x03, 0xAF, 0x2F, 0x33, 0xB9, 0x83, 0x6E, 0xAD, 0x63, 0x4A, 0x50, 0x0A, + 0x1A, 0x18, 0x0A, 0x18, 0x39, 0x1D, 0x4C, 0x79, 0x55, 0x2D, 0x7B, 0x6E, + 0x48, 0x74, 0x43, 0xD6, 0xFE, 0x5E, 0x02, 0xAB, 0x90, 0x8C, 0x5E, 0xBC, + 0x89, 0x01, 0x6F, 0x4B, 0x37, 0x01, 0xAF, 0x01, 0x01, 0x25, 0x49, 0x6E, + 0x4A, 0xFE, 0xA0, 0x7E, 0x83, 0x3C, 0x7C, 0x60, 0x02, 0x6C, 0xFA, 0x30, + 0x00, 0x01, 0x00, 0x11, 0xFE, 0x5B, 0x05, 0x5B, 0x04, 0x31, 0x00, 0x32, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x11, 0x33, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x22, 0x23, 0x35, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x33, + 0x15, 0x0E, 0x02, 0x04, 0xD6, 0x90, 0x97, 0x2F, 0x33, 0xB9, 0x83, 0x6E, + 0xAD, 0x63, 0x4A, 0x50, 0x0A, 0x1A, 0x18, 0x0A, 0x18, 0x39, 0x1D, 0x4C, + 0x79, 0x55, 0x2D, 0x7B, 0x6E, 0x48, 0x74, 0x43, 0xD6, 0x34, 0x3E, 0x13, + 0x42, 0x10, 0x0F, 0x2A, 0x32, 0xFE, 0x5B, 0x88, 0x80, 0x01, 0xA6, 0x90, + 0x8C, 0x5E, 0xBC, 0x89, 0x01, 0x6F, 0x4B, 0x37, 0x01, 0xAF, 0x01, 0x01, + 0x25, 0x49, 0x6E, 0x4A, 0xFE, 0xA0, 0x7E, 0x83, 0x3C, 0x7C, 0x60, 0x02, + 0x6C, 0xFB, 0x3D, 0x32, 0x2D, 0x01, 0xAF, 0x01, 0x01, 0x01, 0xFF, 0xFF, + 0xFF, 0xEA, 0x00, 0x00, 0x04, 0x10, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x71, 0x02, 0x0E, 0xFF, 0xFF, + 0xFF, 0x99, 0x00, 0x00, 0x04, 0x10, 0x07, 0x89, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0x4A, 0x01, 0xA4, 0xFF, 0xFF, + 0xFF, 0x99, 0x00, 0x00, 0x04, 0x10, 0x07, 0x89, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, 0x4A, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x61, 0x00, 0x00, 0x04, 0x10, 0x07, 0x89, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0xFF, 0xF9, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x43, 0x04, 0x10, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x59, 0xF9, 0x62, 0xFF, 0xFF, + 0xFF, 0x8F, 0x00, 0x00, 0x04, 0x10, 0x07, 0x88, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xA1, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x36, 0x04, 0x10, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xAB, 0xF9, 0x75, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0x92, 0x04, 0x10, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x9E, 0xF9, 0x92, 0xFF, 0xFF, + 0x00, 0x7D, 0x00, 0x00, 0x04, 0x10, 0x05, 0xD2, 0x06, 0x06, 0x02, 0x9E, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x61, 0x00, 0x00, 0x01, 0x6F, 0x05, 0xE5, + 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xFA, 0x00, + 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x01, 0x53, 0x04, 0x2E, 0x00, 0x03, + 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x7D, 0xD6, 0x04, 0x2E, 0xFB, 0xD2, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x03, 0x22, 0x04, 0x2E, 0x04, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x02, 0xB2, 0x01, 0xD0, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0x90, 0x00, 0x00, 0x02, 0x40, 0x05, 0xE4, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xA1, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0x89, 0x00, 0x00, 0x02, 0x3A, 0x07, 0x1F, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE4, 0xFE, 0x9B, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xB6, 0x00, 0x00, 0x02, 0x1B, 0x05, 0xCE, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFE, 0xFC, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xB6, 0xFE, 0x57, 0x02, 0x1C, 0x05, 0xE5, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xFA, 0x00, 0x00, 0x07, + 0x06, 0xEC, 0xFE, 0xFC, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0xB6, 0xFE, 0x57, + 0x02, 0x1C, 0x04, 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEC, 0xFE, 0xFC, 0xF9, 0x6D, 0xFF, 0xFF, 0xFF, 0x96, 0x00, 0x00, + 0x02, 0x3B, 0x05, 0xE5, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, + 0x0A, 0x8C, 0xFA, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x1C, 0xFF, 0x6A, + 0xFF, 0xFF, 0xFF, 0xCA, 0x00, 0x00, 0x01, 0x53, 0x05, 0xE4, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0xFF, 0x72, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, 0x05, 0x05, 0xE4, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x06, 0xE8, 0x28, 0x00, 0xFF, 0xFF, + 0xFF, 0x9A, 0x00, 0x00, 0x02, 0x37, 0x05, 0xE4, 0x06, 0x26, 0x02, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0x4B, 0x00, 0x00, 0xFF, 0xFF, + 0xFF, 0xD0, 0x00, 0x00, 0x02, 0x01, 0x05, 0x9D, 0x06, 0x26, 0x02, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x3F, 0x00, 0x00, 0xFF, 0xFF, + 0xFF, 0xB7, 0x00, 0x00, 0x02, 0x19, 0x05, 0xE3, 0x06, 0x26, 0x02, 0xB2, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0x4C, 0x00, 0x00, 0xFF, 0xFF, + 0xFF, 0xEC, 0xFE, 0x5A, 0x01, 0x60, 0x04, 0x2E, 0x06, 0x26, 0x02, 0xB2, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x96, 0x9C, 0x00, 0xFF, 0xFF, 0xFF, 0xEC, + 0xFE, 0x5A, 0x01, 0x6F, 0x05, 0xE5, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, + 0x00, 0x26, 0x0A, 0x96, 0x9C, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xFA, 0x00, + 0xFF, 0xFF, 0xFF, 0x9A, 0x00, 0x00, 0x02, 0x37, 0x05, 0xE4, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, 0x4B, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0x17, 0x00, 0x00, 0x01, 0xDE, 0x05, 0xE4, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0xFE, 0xBF, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xB4, 0x00, 0x00, 0x02, 0x1C, 0x05, 0xE9, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, 0xFF, 0x4B, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x3E, 0x00, 0x00, 0x01, 0x8B, 0x05, 0xE4, 0x06, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x91, 0xD5, 0x00, 0xFF, 0xFF, + 0x00, 0x61, 0xFE, 0x43, 0x01, 0x6F, 0x05, 0xE5, 0x06, 0x26, 0x02, 0xB2, + 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xFA, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0xFF, 0xFA, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x62, 0xFE, 0x43, 0x01, 0x6F, + 0x04, 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0xFF, 0xFA, 0xF9, 0x62, 0x00, 0x01, 0xFF, 0xC9, 0xFE, 0x5E, 0x01, 0x53, + 0x04, 0x2E, 0x00, 0x0C, 0x00, 0x00, 0x53, 0x33, 0x11, 0x14, 0x06, 0x06, + 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x7D, 0xD6, 0x49, 0x8C, 0x67, + 0x4E, 0x37, 0x42, 0x3B, 0x04, 0x2E, 0xFB, 0x5E, 0x5B, 0x89, 0x4A, 0xB4, + 0x46, 0x4A, 0xFF, 0xFF, 0xFF, 0x94, 0xFE, 0x5E, 0x02, 0x3A, 0x04, 0x2E, + 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x1B, + 0xFF, 0xA6, 0xFF, 0xFF, 0xFF, 0x94, 0xFE, 0x5E, 0x02, 0x3A, 0x05, 0xE5, + 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0xFF, 0x1B, + 0xFF, 0xA6, 0x00, 0x06, 0x0A, 0x8C, 0xFA, 0x00, 0xFF, 0xFF, 0xFF, 0x94, + 0xFE, 0x5E, 0x02, 0x3A, 0x04, 0x2E, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x1B, 0xFF, 0xA6, 0xFF, 0xFF, 0x00, 0x61, + 0x00, 0x00, 0x01, 0x6F, 0x05, 0xE5, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x8C, 0xFA, 0x00, 0xFF, 0xFF, 0xFF, 0x90, 0x00, 0x00, + 0x02, 0x40, 0x05, 0xE4, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0xFE, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x61, 0xFE, 0x5E, + 0x03, 0x3F, 0x05, 0xE5, 0x04, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, + 0x0A, 0x8C, 0xFA, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x01, 0xD0, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCA, 0x00, 0x00, 0x00, 0x01, 0x00, 0x31, + 0x00, 0x00, 0x02, 0x29, 0x04, 0x2E, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, + 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x31, 0x92, + 0x92, 0x01, 0xF8, 0x91, 0x91, 0xAF, 0x02, 0xD0, 0xAF, 0xAF, 0xFD, 0x30, + 0xAF, 0xFF, 0xFF, 0xFF, 0xC9, 0xFE, 0x5E, 0x01, 0x6F, 0x05, 0xE5, 0x06, + 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xFA, 0x00, 0x00, + 0x02, 0xFF, 0xE2, 0xFE, 0x5A, 0x03, 0x43, 0x04, 0x2E, 0x00, 0x1B, 0x00, + 0x1F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x21, 0x15, 0x21, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x13, 0x11, 0x33, 0x11, 0x01, 0x1B, + 0x64, 0x8C, 0x49, 0x52, 0x8E, 0x5A, 0x02, 0x27, 0xFD, 0xE1, 0x31, 0x40, + 0x39, 0x2C, 0x3D, 0x32, 0xD4, 0x26, 0x4F, 0x78, 0x18, 0xD5, 0xFE, 0x5A, + 0x46, 0x7A, 0x4C, 0x54, 0x7A, 0x43, 0xB1, 0x38, 0x2D, 0x2A, 0x36, 0x5B, + 0x2E, 0x01, 0x6C, 0xFE, 0xB6, 0x41, 0x7A, 0x60, 0x37, 0x01, 0xA6, 0x04, + 0x2E, 0xFB, 0xD2, 0xFF, 0xFF, 0xFF, 0xE2, 0xFE, 0x5A, 0x03, 0x43, 0x05, + 0xE5, 0x06, 0x26, 0x02, 0xD0, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x02, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x9A, 0xFE, 0x5E, 0x02, 0x37, 0x05, + 0xE4, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, + 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x9A, 0xFE, 0x5E, 0x02, 0x37, 0x05, + 0xE4, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, + 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xC9, 0xFE, 0x5E, 0x01, 0x6F, 0x05, + 0xE5, 0x06, 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xFA, + 0x00, 0xFF, 0xFF, 0xFF, 0xC9, 0xFE, 0x5E, 0x01, 0x6F, 0x05, 0xE5, 0x06, + 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xFA, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x03, 0x3F, 0x05, 0xE5, 0x04, 0x26, 0x02, + 0xE0, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x01, 0xD0, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0xCA, 0x00, 0x00, 0x00, 0x03, 0x00, 0x7D, 0x00, + 0x00, 0x04, 0x3E, 0x05, 0xD2, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, + 0x00, 0x41, 0x35, 0x33, 0x01, 0x21, 0x01, 0x23, 0x01, 0x11, 0x33, 0x11, + 0x21, 0x01, 0x37, 0x01, 0x01, 0x42, 0x17, 0x01, 0xC1, 0x01, 0x06, 0xFE, + 0x09, 0x22, 0xFE, 0x76, 0xD6, 0x01, 0xE5, 0xFE, 0x73, 0x92, 0x02, 0x01, + 0x01, 0x68, 0xFE, 0x01, 0xC8, 0xFD, 0xFB, 0xFD, 0xD7, 0x05, 0xD2, 0xFA, + 0x2E, 0x01, 0xF9, 0x95, 0xFD, 0x72, 0x00, 0x04, 0x00, 0x7D, 0x00, 0x00, + 0x04, 0x3E, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x16, 0x00, 0x1A, 0x00, 0x1E, + 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, + 0x22, 0x23, 0x22, 0x06, 0x15, 0x11, 0x03, 0x35, 0x33, 0x01, 0x21, 0x01, + 0x23, 0x01, 0x11, 0x33, 0x11, 0x21, 0x01, 0x37, 0x01, 0x7D, 0x9F, 0x99, + 0x27, 0x3B, 0x17, 0x11, 0x3E, 0x13, 0x41, 0x38, 0x11, 0x17, 0x01, 0xC1, + 0x01, 0x06, 0xFE, 0x09, 0x22, 0xFE, 0x76, 0xD6, 0x01, 0xE5, 0xFE, 0x73, + 0x92, 0x02, 0x01, 0x03, 0x56, 0x01, 0x6F, 0x86, 0x8A, 0x01, 0x01, 0xB1, + 0x01, 0x2E, 0x34, 0xFE, 0x95, 0xFE, 0x12, 0xFE, 0x01, 0xC8, 0xFD, 0xFB, + 0xFD, 0xD7, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xF9, 0x95, 0xFD, 0x72, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x17, 0x04, 0x3E, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0xD7, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x31, 0x00, 0x00, 0xFF, + 0xFF, 0xFF, 0x99, 0x00, 0x00, 0x04, 0x3E, 0x07, 0x89, 0x06, 0x26, 0x02, + 0xD7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0xFF, 0x4B, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x3E, 0x07, 0x89, 0x06, 0x26, 0x02, + 0xD7, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, 0x28, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x04, 0x3E, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0xD7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x46, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x92, 0x04, 0x3E, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0xD7, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x8B, 0xF9, 0x92, 0x00, + 0x03, 0xFF, 0xFF, 0xFE, 0x5C, 0x03, 0xC0, 0x04, 0x2E, 0x00, 0x06, 0x00, + 0x0A, 0x00, 0x0E, 0x00, 0x00, 0x41, 0x15, 0x23, 0x01, 0x21, 0x01, 0x33, + 0x01, 0x11, 0x23, 0x11, 0x21, 0x01, 0x07, 0x01, 0x02, 0xFB, 0x17, 0xFE, + 0x40, 0xFE, 0xFA, 0x01, 0xF6, 0x23, 0x01, 0x89, 0xD5, 0xFE, 0x1A, 0x01, + 0x8E, 0x93, 0xFD, 0xFF, 0x02, 0xC6, 0xFE, 0xFE, 0x38, 0x02, 0x05, 0x02, + 0x29, 0xFA, 0x2E, 0x05, 0xD2, 0xFE, 0x07, 0x95, 0x02, 0x8E, 0x00, 0x03, + 0x00, 0x7D, 0x00, 0x00, 0x04, 0x3E, 0x04, 0x2E, 0x00, 0x06, 0x00, 0x0A, + 0x00, 0x0E, 0x00, 0x00, 0x41, 0x35, 0x33, 0x01, 0x21, 0x01, 0x23, 0x01, + 0x11, 0x33, 0x11, 0x21, 0x01, 0x37, 0x01, 0x01, 0x42, 0x17, 0x01, 0xC1, + 0x01, 0x06, 0xFE, 0x09, 0x22, 0xFE, 0x76, 0xD6, 0x01, 0xE5, 0xFE, 0x73, + 0x92, 0x02, 0x01, 0x01, 0x68, 0xFE, 0x01, 0xC8, 0xFD, 0xFB, 0xFD, 0xD7, + 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xF9, 0x95, 0xFD, 0x72, 0x00, 0x01, 0x00, + 0x7D, 0x00, 0x00, 0x01, 0x53, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x41, + 0x11, 0x23, 0x11, 0x01, 0x53, 0xD6, 0x05, 0xD2, 0xFA, 0x2E, 0x05, 0xD2, + 0xFF, 0xFF, 0xFF, 0xDA, 0x00, 0x00, 0x01, 0xF4, 0x05, 0xD2, 0x06, 0x26, + 0x02, 0xE0, 0x00, 0x00, 0x00, 0x06, 0x0B, 0x6A, 0xDA, 0x00, 0xFF, 0xFF, + 0xFF, 0x94, 0x00, 0x00, 0x02, 0x3A, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x1B, 0x00, 0x17, 0xFF, 0xFF, + 0xFF, 0xA7, 0x00, 0x00, 0x02, 0x30, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x6C, 0xFF, 0x7F, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x7D, 0xFE, 0x5B, 0x02, 0x2A, 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, 0x03, 0x11, 0x23, 0x11, 0x01, 0xB1, + 0x99, 0x9B, 0xD6, 0x34, 0x41, 0x13, 0x3E, 0x11, 0x17, 0x3B, 0x85, 0xD6, + 0xFE, 0x5B, 0x8B, 0x86, 0x94, 0x91, 0x33, 0x2E, 0x01, 0xB1, 0x01, 0x02, + 0x07, 0x77, 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x02, 0xFF, 0xFF, 0x00, 0x00, + 0x03, 0x52, 0x05, 0xD2, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x41, 0x21, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, + 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x21, 0x03, 0x11, 0x23, 0x11, 0x03, 0x52, 0xFD, 0xE3, 0x57, 0x8C, + 0x53, 0x4B, 0x8C, 0x60, 0x49, 0x6F, 0x4C, 0x27, 0xBD, 0x36, 0x39, 0x1D, + 0x2F, 0x1B, 0x3F, 0x32, 0x02, 0x13, 0xD7, 0xD7, 0x02, 0x40, 0x42, 0x7A, + 0x53, 0x4E, 0x7D, 0x49, 0x2F, 0x58, 0x76, 0x46, 0xFE, 0xA0, 0x01, 0x83, + 0x30, 0x44, 0x1B, 0x2F, 0x1C, 0x27, 0x39, 0x02, 0xE1, 0xFA, 0x2E, 0x05, + 0xD2, 0x00, 0x02, 0xFF, 0x8C, 0xFE, 0x5E, 0x03, 0x0E, 0x05, 0xD2, 0x00, + 0x1F, 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, 0x06, + 0x06, 0x07, 0x01, 0x27, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x01, 0x11, 0x23, 0x11, 0x01, 0xD1, 0x7A, 0x95, 0x45, 0xD6, 0x4C, + 0x34, 0x30, 0x3D, 0x34, 0x2E, 0x22, 0x3E, 0x3D, 0x22, 0xFE, 0xE6, 0x79, + 0xF9, 0x46, 0xB4, 0x58, 0x89, 0xAE, 0xA9, 0xFE, 0xEE, 0xD6, 0xFE, 0x5E, + 0x5D, 0x98, 0x56, 0x01, 0x41, 0xFE, 0x9E, 0x43, 0x46, 0x3B, 0x2E, 0x2A, + 0x39, 0x06, 0x05, 0x10, 0x26, 0x1C, 0xFE, 0xF5, 0x86, 0xEA, 0x43, 0x4C, + 0x98, 0x7B, 0x78, 0x8F, 0x07, 0x74, 0xFA, 0x2E, 0x05, 0xD2, 0xFF, 0xFF, + 0x00, 0x7D, 0x00, 0x00, 0x02, 0xE2, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xE0, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x01, 0x5A, 0x02, 0x6C, 0xFF, 0xFF, + 0x00, 0x7D, 0x00, 0x00, 0x02, 0x05, 0x07, 0x89, 0x06, 0x26, 0x02, 0xE0, + 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, 0x28, 0x01, 0xA4, 0xFF, 0xFF, + 0x00, 0x2A, 0xFE, 0x17, 0x01, 0x53, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, + 0x00, 0x00, 0x00, 0x06, 0x06, 0xE7, 0xE5, 0x00, 0xFF, 0xFF, 0x00, 0x7D, + 0x00, 0x00, 0x02, 0x9F, 0x06, 0x1A, 0x04, 0x26, 0x02, 0xE0, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x28, 0x01, 0x3B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x61, + 0xFE, 0x43, 0x01, 0x6E, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0xFF, 0xF9, 0xF9, 0x62, 0xFF, 0xFF, 0xFF, 0xCF, + 0xFE, 0x43, 0x02, 0x00, 0x07, 0x41, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, + 0x00, 0x27, 0x0A, 0x8C, 0xFF, 0xF9, 0xF9, 0x62, 0x00, 0x07, 0x06, 0xEB, + 0xFF, 0x3F, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xCF, 0xFE, 0x92, 0x02, 0x00, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, + 0xFF, 0x3E, 0xF9, 0x92, 0xFF, 0xFF, 0xFF, 0x9A, 0xFE, 0x3A, 0x02, 0x37, + 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0xFF, 0x4B, 0xF9, 0x71, 0x00, 0x01, 0x00, 0x7D, 0xFF, 0xFE, 0x01, 0xEE, + 0x05, 0xD2, 0x00, 0x0F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0xA0, + 0x9A, 0x89, 0xD6, 0x29, 0x3A, 0x0C, 0x1A, 0x09, 0x09, 0x11, 0x29, 0x02, + 0x7A, 0x88, 0x04, 0xD2, 0xFB, 0x48, 0x3F, 0x2D, 0x01, 0x01, 0xAD, 0x02, + 0x03, 0xFF, 0xFF, 0x00, 0x11, 0xFF, 0xFE, 0x02, 0x2B, 0x05, 0xD2, 0x04, + 0x26, 0x02, 0xEF, 0x34, 0x00, 0x00, 0x06, 0x0B, 0x6A, 0x11, 0x04, 0xFF, + 0xFF, 0x00, 0x11, 0xFF, 0xFE, 0x02, 0xB7, 0x05, 0xD2, 0x04, 0x26, 0x02, + 0xEF, 0x7A, 0x00, 0x00, 0x06, 0x0B, 0x61, 0x98, 0x1B, 0xFF, 0xFF, 0x00, + 0x11, 0xFF, 0xFE, 0x02, 0x9A, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xEF, 0x67, + 0x00, 0x00, 0x06, 0x0B, 0x6C, 0xE9, 0x04, 0x00, 0x02, 0x00, 0x11, 0xFF, + 0xFE, 0x03, 0x29, 0x05, 0xD2, 0x00, 0x1A, 0x00, 0x2A, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x15, 0x23, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x21, 0x15, 0x03, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x74, 0x74, 0x9E, 0x51, 0x47, + 0x7B, 0x4D, 0x57, 0x69, 0x30, 0x5A, 0x39, 0x3A, 0x2B, 0x39, 0x3F, 0x32, + 0x01, 0xD9, 0x51, 0x99, 0x89, 0xD5, 0x29, 0x3B, 0x0C, 0x1A, 0x09, 0x09, + 0x11, 0x29, 0x02, 0x4A, 0x48, 0x80, 0x51, 0x50, 0x7D, 0x48, 0x57, 0x93, + 0x5A, 0x30, 0x53, 0x2E, 0x46, 0x3C, 0x2B, 0x29, 0x44, 0xAD, 0xFD, 0xB4, + 0x7A, 0x88, 0x04, 0xD2, 0xFB, 0x48, 0x3F, 0x2D, 0x01, 0x01, 0xAD, 0x02, + 0x03, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xFE, 0x02, 0xE2, 0x05, 0xD2, 0x04, + 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x01, 0x5A, 0x02, + 0x6C, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xFE, 0x02, 0x05, 0x07, 0x89, 0x06, + 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x00, 0x28, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x6A, 0xFE, 0x17, 0x01, 0xEE, 0x05, 0xD2, 0x06, + 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x06, 0x06, 0xE7, 0x25, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFF, 0xFE, 0x02, 0xA1, 0x06, 0x1A, 0x04, 0x26, 0x02, + 0xEF, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x28, 0x01, 0x3D, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x01, 0xEE, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0xEF, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x39, 0xF9, 0x62, 0xFF, + 0xFF, 0xFF, 0xCF, 0xFE, 0x43, 0x02, 0x00, 0x07, 0x41, 0x06, 0x26, 0x02, + 0xEF, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x00, 0x39, 0xF9, 0x62, 0x00, + 0x07, 0x06, 0xEB, 0xFF, 0x3F, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x0F, 0xFE, + 0x92, 0x02, 0x40, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0xFF, 0x7E, 0xF9, 0x92, 0xFF, 0xFF, 0xFF, 0xDA, 0xFE, + 0x3A, 0x02, 0x77, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8D, 0xFF, 0x8B, 0xF9, 0x71, 0xFF, 0xFF, 0x00, 0x7D, 0x00, + 0x00, 0x01, 0x53, 0x05, 0xD2, 0x06, 0x06, 0x02, 0xE0, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x7D, 0x00, 0x00, 0x03, 0x6B, 0x04, 0x2E, 0x00, 0x05, 0x00, + 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x15, 0x7D, 0xD6, 0x02, 0x18, 0x04, + 0x2E, 0xFC, 0x8F, 0xBD, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x06, 0x67, + 0x04, 0x42, 0x00, 0x29, 0x00, 0x00, 0x73, 0x11, 0x33, 0x17, 0x23, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x17, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x7D, 0xCE, + 0x02, 0x13, 0x1C, 0x65, 0x84, 0x49, 0x7A, 0xAA, 0x15, 0x20, 0x16, 0x65, + 0x92, 0x58, 0x63, 0xA0, 0x5E, 0xD5, 0x7E, 0x56, 0x46, 0x66, 0x37, 0xD2, + 0x75, 0x5A, 0x3D, 0x6A, 0x40, 0x04, 0x2E, 0xE7, 0x53, 0x70, 0x38, 0x8F, + 0x6E, 0x4B, 0x72, 0x40, 0x55, 0xAA, 0x7F, 0xFD, 0x3C, 0x02, 0xB1, 0x71, + 0x65, 0x3B, 0x68, 0x43, 0xFD, 0x5F, 0x02, 0xC0, 0x5A, 0x6D, 0x39, 0x71, + 0x53, 0xFD, 0x76, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5B, 0x06, 0x67, 0x04, + 0x42, 0x00, 0x0F, 0x00, 0x39, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x35, + 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x01, + 0x11, 0x33, 0x17, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x23, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x11, 0x05, 0x36, 0x28, 0x3D, 0x17, 0x11, 0x3E, 0x14, 0x40, + 0x35, 0xD5, 0x99, 0xFA, 0xAF, 0xCE, 0x02, 0x13, 0x1C, 0x65, 0x84, 0x49, + 0x7A, 0xAA, 0x15, 0x20, 0x16, 0x65, 0x92, 0x58, 0x63, 0xA0, 0x5E, 0xD5, + 0x7E, 0x56, 0x46, 0x66, 0x37, 0xD2, 0x75, 0x59, 0x3D, 0x6B, 0x40, 0xFE, + 0x5B, 0x02, 0x01, 0xB1, 0x01, 0x2E, 0x33, 0x91, 0x94, 0x86, 0x8B, 0x01, + 0xA5, 0x04, 0x2E, 0xE7, 0x53, 0x70, 0x38, 0x8F, 0x6E, 0x4B, 0x72, 0x40, + 0x55, 0xAA, 0x7F, 0xFD, 0x3C, 0x02, 0xB1, 0x71, 0x65, 0x3B, 0x68, 0x43, + 0xFD, 0x5F, 0x02, 0xC0, 0x5A, 0x6D, 0x39, 0x71, 0x53, 0xFD, 0x76, 0x00, + 0x01, 0x00, 0x7D, 0xFF, 0xEC, 0x06, 0x67, 0x04, 0x2E, 0x00, 0x29, 0x00, + 0x00, 0x41, 0x11, 0x23, 0x27, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x27, + 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x11, 0x06, 0x67, 0xCE, 0x01, 0x13, 0x1C, 0x66, + 0x84, 0x49, 0x7A, 0xA9, 0x16, 0x20, 0x16, 0x65, 0x91, 0x59, 0x62, 0xA0, + 0x5F, 0xD6, 0x7E, 0x55, 0x47, 0x65, 0x37, 0xD2, 0x75, 0x59, 0x3F, 0x69, + 0x41, 0x04, 0x2E, 0xFB, 0xD2, 0xE7, 0x53, 0x70, 0x38, 0x8F, 0x6E, 0x4B, + 0x72, 0x40, 0x55, 0xAA, 0x7F, 0x02, 0xC4, 0xFD, 0x4F, 0x71, 0x65, 0x3B, + 0x68, 0x43, 0x02, 0xA1, 0xFD, 0x40, 0x5A, 0x6D, 0x39, 0x71, 0x53, 0x02, + 0x8A, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5E, 0x06, 0x67, 0x04, 0x2E, 0x00, + 0x03, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x13, 0x11, 0x23, + 0x27, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x27, 0x33, 0x0E, 0x02, 0x23, + 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x11, 0x05, 0x96, 0xCF, 0x02, 0xCE, 0x01, 0x13, 0x1C, 0x66, 0x84, 0x49, + 0x7A, 0xA9, 0x16, 0x20, 0x16, 0x65, 0x91, 0x59, 0x62, 0xA0, 0x5F, 0xD6, + 0x7E, 0x55, 0x47, 0x65, 0x37, 0xD2, 0x75, 0x59, 0x3F, 0x69, 0x41, 0xFE, + 0x5E, 0x01, 0xA2, 0xFE, 0x5E, 0x05, 0xD0, 0xFB, 0xD2, 0xE7, 0x53, 0x70, + 0x38, 0x8F, 0x6E, 0x4B, 0x72, 0x40, 0x55, 0xAA, 0x7F, 0x02, 0xC4, 0xFD, + 0x4F, 0x71, 0x65, 0x3B, 0x68, 0x43, 0x02, 0xA1, 0xFD, 0x40, 0x5A, 0x6D, + 0x39, 0x71, 0x53, 0x02, 0x8A, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x06, + 0x67, 0x05, 0xE4, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x02, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x06, + 0x67, 0x05, 0xE5, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x02, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x06, + 0x67, 0x04, 0x42, 0x06, 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x02, 0x84, 0xF9, 0x62, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0x10, 0x04, 0x41, 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, + 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x01, 0x53, 0xD6, 0xD0, 0x01, 0x2B, + 0x32, 0xBA, 0x83, 0x6E, 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, 0x74, 0x43, + 0x02, 0x6C, 0xFD, 0x94, 0x04, 0x2E, 0xFE, 0xF7, 0x90, 0x8C, 0x5F, 0xBA, + 0x8B, 0xFD, 0x63, 0x02, 0x83, 0x7E, 0x83, 0x3C, 0x7C, 0xFF, 0xFF, 0x00, + 0x7D, 0x00, 0x00, 0x04, 0x10, 0x05, 0xCE, 0x06, 0x26, 0x03, 0x05, 0x00, + 0x00, 0x00, 0x06, 0x06, 0xEC, 0x5A, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFE, + 0x5B, 0x04, 0xE7, 0x04, 0x41, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, + 0x15, 0x06, 0x06, 0x01, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x04, 0x6E, 0x98, 0x9B, 0xD5, 0x35, 0x40, 0x14, 0x3D, 0x11, + 0x16, 0x3B, 0xFC, 0xBD, 0xD6, 0xD0, 0x01, 0x2B, 0x32, 0xBA, 0x83, 0x6E, + 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, 0x74, 0x43, 0xFE, 0x5B, 0x8B, 0x86, + 0x94, 0x91, 0x33, 0x2E, 0x01, 0xB1, 0x01, 0x02, 0x04, 0x11, 0xFD, 0x94, + 0x04, 0x2E, 0xFE, 0xF7, 0x90, 0x8C, 0x5F, 0xBA, 0x8B, 0xFD, 0x63, 0x02, + 0x83, 0x7E, 0x83, 0x3C, 0x7C, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5B, 0x04, + 0x10, 0x04, 0x41, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x00, 0x41, 0x35, 0x32, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x01, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x02, 0x63, 0x13, 0x40, 0x11, 0x41, 0x33, 0xD5, 0x9B, 0x99, 0x27, 0x3C, + 0xFE, 0xDA, 0xD6, 0xD0, 0x01, 0x2B, 0x32, 0xBA, 0x83, 0x6E, 0xAD, 0x63, + 0xD5, 0x7A, 0x6F, 0x48, 0x74, 0x43, 0xFE, 0x5E, 0xB8, 0x01, 0x2F, 0x33, + 0x89, 0x94, 0x86, 0x8B, 0x02, 0x04, 0x0F, 0xFD, 0x94, 0x04, 0x2E, 0xFE, + 0xF7, 0x90, 0x8C, 0x5F, 0xBA, 0x8B, 0xFD, 0x63, 0x02, 0x83, 0x7E, 0x83, + 0x3C, 0x7C, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5E, 0x05, 0xCB, 0x04, 0x41, + 0x00, 0x1F, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x26, + 0x06, 0x06, 0x07, 0x01, 0x27, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x01, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x04, 0x8E, 0x79, 0x96, 0x44, 0xD5, 0x4D, 0x33, 0x31, 0x3C, 0x33, + 0x2E, 0x22, 0x3F, 0x3D, 0x21, 0xFE, 0xE5, 0x78, 0xF8, 0x47, 0xB3, 0x59, + 0x88, 0xAE, 0xA9, 0xFC, 0x31, 0xD6, 0xD0, 0x01, 0x2B, 0x32, 0xBA, 0x83, + 0x6E, 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, 0x74, 0x43, 0xFE, 0x5E, 0x5D, + 0x98, 0x56, 0x01, 0x41, 0xFE, 0x9E, 0x43, 0x46, 0x3B, 0x2E, 0x2A, 0x39, + 0x06, 0x05, 0x10, 0x26, 0x1C, 0xFE, 0xF5, 0x86, 0xEA, 0x43, 0x4C, 0x98, + 0x7B, 0x78, 0x8F, 0x04, 0x0E, 0xFD, 0x94, 0x04, 0x2E, 0xFE, 0xF7, 0x90, + 0x8C, 0x5F, 0xBA, 0x8B, 0xFD, 0x63, 0x02, 0x83, 0x7E, 0x83, 0x3C, 0x7C, + 0x00, 0x02, 0xFF, 0xA6, 0xFE, 0x5B, 0x04, 0x10, 0x04, 0x41, 0x00, 0x0F, + 0x00, 0x26, 0x00, 0x00, 0x53, 0x22, 0x26, 0x27, 0x35, 0x16, 0x32, 0x33, + 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x13, 0x11, 0x23, 0x11, + 0x33, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, + 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x21, 0x27, 0x3D, 0x17, 0x11, + 0x3E, 0x13, 0x40, 0x35, 0xD6, 0x99, 0x99, 0xD6, 0xD0, 0x01, 0x2B, 0x32, + 0xBA, 0x83, 0x6E, 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, 0x74, 0x43, 0xFE, + 0x5B, 0x02, 0x01, 0xB1, 0x01, 0x2E, 0x33, 0x91, 0x94, 0x86, 0x8B, 0x04, + 0x11, 0xFD, 0x94, 0x04, 0x2E, 0xFE, 0xF7, 0x90, 0x8C, 0x5F, 0xBA, 0x8B, + 0xFD, 0x63, 0x02, 0x83, 0x7E, 0x83, 0x3C, 0x7C, 0xFF, 0xFF, 0x00, 0x7D, + 0xFE, 0x5E, 0x04, 0x10, 0x04, 0x41, 0x06, 0x06, 0x04, 0x80, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x86, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x17, 0x04, 0x10, 0x04, 0x41, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x44, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xA9, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xD1, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x10, 0x05, 0xE5, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x58, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x04, 0x10, 0x04, 0x41, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x59, 0xF9, 0x62, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x92, 0x04, 0x10, 0x04, 0x41, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x9E, 0xF9, 0x92, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x3A, 0x04, 0x10, 0x04, 0x41, 0x06, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAB, 0xF9, 0x71, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x05, 0xFC, 0x05, 0xE5, 0x04, 0x26, + 0x03, 0x05, 0x00, 0x00, 0x00, 0x27, 0x02, 0xC7, 0x04, 0x8D, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x04, 0x87, 0x00, 0x00, 0x00, 0x01, 0x00, 0x7D, + 0x00, 0x00, 0x04, 0x4F, 0x04, 0x2E, 0x00, 0x18, 0x00, 0x00, 0x73, 0x11, + 0x33, 0x01, 0x16, 0x16, 0x17, 0x23, 0x34, 0x26, 0x34, 0x35, 0x11, 0x33, + 0x11, 0x23, 0x01, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x15, 0x11, 0x7D, + 0xF9, 0x01, 0x76, 0x3B, 0x5D, 0x2B, 0x31, 0x01, 0xD2, 0xF5, 0xFE, 0x89, + 0x3C, 0x5D, 0x2D, 0x31, 0x01, 0x01, 0x04, 0x2E, 0xFD, 0xC6, 0x59, 0x9D, + 0x4E, 0x34, 0x6B, 0x6E, 0x37, 0x02, 0x3A, 0xFB, 0xD2, 0x02, 0x3A, 0x5B, + 0x9C, 0x4D, 0x4E, 0xA1, 0x55, 0xFD, 0xC6, 0x00, 0x02, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x44, 0x04, 0x44, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x47, 0x98, 0xE6, 0x7F, + 0x7F, 0xE6, 0x98, 0x99, 0xE5, 0x7F, 0x7F, 0xE5, 0x99, 0x5D, 0x83, 0x45, + 0x45, 0x83, 0x5D, 0x5C, 0x84, 0x45, 0x45, 0x83, 0x18, 0x8D, 0xFB, 0xA4, + 0xA6, 0xFC, 0x8E, 0x8E, 0xFC, 0xA6, 0xA4, 0xFB, 0x8D, 0xB7, 0x5E, 0xA9, + 0x6E, 0x70, 0xA9, 0x5F, 0x5E, 0xA9, 0x71, 0x6F, 0xA8, 0x5E, 0xFF, 0xFF, + 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x16, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xCE, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, + 0x00, 0x06, 0x06, 0xEC, 0x5A, 0x00, 0xFF, 0xFF, 0x00, 0x38, 0xFF, 0xD1, + 0x04, 0x55, 0x04, 0x5C, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, + 0x0B, 0x41, 0x00, 0x00, 0x00, 0x03, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x5C, + 0x05, 0x20, 0x00, 0x10, 0x00, 0x20, 0x00, 0x30, 0x00, 0x00, 0x41, 0x35, + 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x22, 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x46, + 0x2F, 0x3C, 0x39, 0x50, 0x42, 0x25, 0xBB, 0x5F, 0x60, 0x55, 0xAC, 0x55, + 0x98, 0xE6, 0x7F, 0x7F, 0xE6, 0x98, 0x99, 0xE5, 0x7F, 0x7F, 0xE5, 0x99, + 0x5D, 0x83, 0x45, 0x45, 0x83, 0x5D, 0x5C, 0x84, 0x45, 0x45, 0x83, 0x03, + 0xBC, 0x88, 0x06, 0x06, 0x05, 0x22, 0xCB, 0xBF, 0x53, 0x52, 0xFC, 0x2C, + 0x8D, 0xFB, 0xA4, 0xA6, 0xFC, 0x8E, 0x8E, 0xFC, 0xA6, 0xA4, 0xFB, 0x8D, + 0xB7, 0x5E, 0xA9, 0x6E, 0x70, 0xA9, 0x5F, 0x5E, 0xA9, 0x71, 0x6F, 0xA8, + 0x5E, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xD1, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x87, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAA, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0x9D, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x9E, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE3, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xAA, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, 0xAF, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xAA, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x59, 0x04, 0x44, 0x04, 0x44, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5C, 0x01, 0xE6, 0xFF, + 0xFF, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x59, 0x04, 0x44, 0x05, 0x9D, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x27, 0x0B, 0x5C, 0x01, 0xE6, 0xFF, + 0xFF, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x16, 0x00, + 0x00, 0x00, 0x06, 0x06, 0xEA, 0x1E, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x44, 0x05, 0xE9, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF8, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x44, 0x06, 0xC0, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xE7, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x44, 0x06, 0xC0, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0B, + 0x1F, 0x5B, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, + 0xE5, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x58, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x06, + 0xC0, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE6, 0x01, + 0x59, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x07, + 0x1F, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xEA, 0x5B, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x07, 0x03, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0B, 0x1D, 0x5D, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x07, 0x1F, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x54, 0x00, 0x9E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x07, 0x1F, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xB8, 0x00, 0x9E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x43, 0x04, 0x44, 0x04, 0x44, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x59, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x33, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x07, 0x09, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x24, 0x00, 0xAB, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x07, 0x09, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x25, 0x00, 0xAB, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x07, 0x09, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x26, 0x00, 0xAB, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x06, 0xF4, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x27, 0x00, 0xAB, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x43, 0x04, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x03, + 0x16, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0xAA, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8C, 0x01, 0x59, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x5C, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x1A, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE8, 0x01, 0x87, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x5C, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x1A, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xE9, 0x00, 0xD1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x5C, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x1A, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x91, 0x01, 0x33, 0x00, 0x00, 0x00, 0x04, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x5C, 0x05, 0xC8, 0x00, 0x10, 0x00, 0x20, 0x00, 0x30, 0x00, + 0x48, 0x00, 0x00, 0x41, 0x35, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x06, 0x23, 0x22, 0x22, 0x03, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x13, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, + 0x06, 0x02, 0x46, 0x2F, 0x3C, 0x39, 0x50, 0x42, 0x25, 0xBB, 0x5F, 0x60, + 0x55, 0xAC, 0x55, 0x98, 0xE6, 0x7F, 0x7F, 0xE6, 0x98, 0x99, 0xE5, 0x7F, + 0x7F, 0xE5, 0x99, 0x5D, 0x83, 0x45, 0x45, 0x83, 0x5D, 0x5C, 0x84, 0x45, + 0x45, 0x83, 0xDC, 0x25, 0x44, 0x3C, 0x31, 0x13, 0x1A, 0x19, 0x02, 0x7F, + 0x03, 0x51, 0x4F, 0x26, 0x41, 0x37, 0x32, 0x18, 0x1A, 0x19, 0x04, 0x7C, + 0x03, 0x56, 0x03, 0xBC, 0x88, 0x06, 0x06, 0x05, 0x22, 0xCB, 0xBF, 0x53, + 0x52, 0xFC, 0x2C, 0x8D, 0xFB, 0xA4, 0xA6, 0xFC, 0x8E, 0x8E, 0xFC, 0xA6, + 0xA4, 0xFB, 0x8D, 0xB7, 0x5E, 0xA9, 0x6E, 0x70, 0xA9, 0x5F, 0x5E, 0xA9, + 0x71, 0x6F, 0xA8, 0x5E, 0x04, 0x52, 0x19, 0x21, 0x19, 0x31, 0x1E, 0x5E, + 0x75, 0x1A, 0x22, 0x19, 0x27, 0x2A, 0x61, 0x72, 0xFF, 0xFF, 0x00, 0x4A, + 0xFE, 0x43, 0x04, 0x5C, 0x05, 0x20, 0x06, 0x26, 0x03, 0x1A, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x59, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x38, + 0xFF, 0xD1, 0x04, 0x55, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, + 0x00, 0x26, 0x0B, 0x41, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x87, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x04, 0x44, + 0x06, 0x06, 0x03, 0x16, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0xF3, 0x01, 0x64, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xEF, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7D, 0x01, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xEF, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7E, 0x01, 0x67, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xEF, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7F, 0x00, 0xDD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xEF, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x80, 0x00, 0xB5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xEF, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x81, 0x00, 0xDE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xEF, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x82, 0x00, 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x88, 0x01, 0x74, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x44, 0x04, 0x44, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, + 0x0B, 0x40, 0x03, 0x00, 0x00, 0x03, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, + 0x04, 0x44, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0xC5, + 0xFD, 0x04, 0x01, 0x7E, 0x98, 0xE6, 0x7F, 0x7F, 0xE6, 0x98, 0x99, 0xE5, + 0x7F, 0x7F, 0xE5, 0x99, 0x5D, 0x83, 0x45, 0x45, 0x83, 0x5D, 0x5C, 0x84, + 0x45, 0x45, 0x83, 0x02, 0x61, 0x94, 0x94, 0xFD, 0x87, 0x8D, 0xFB, 0xA4, + 0xA6, 0xFC, 0x8E, 0x8E, 0xFC, 0xA6, 0xA4, 0xFB, 0x8D, 0xB7, 0x5E, 0xA9, + 0x6E, 0x70, 0xA9, 0x5F, 0x5E, 0xA9, 0x71, 0x6F, 0xA8, 0x5E, 0xFF, 0xFF, + 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x04, 0x44, 0x06, 0x06, 0x03, 0x16, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x07, 0x52, 0x04, 0x44, 0x04, 0x26, + 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x02, 0x66, 0x03, 0x2A, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x4A, 0x00, 0x00, 0x06, 0x1B, 0x04, 0x2E, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x61, 0x22, + 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x15, 0x21, 0x22, + 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x21, 0x15, 0x33, 0x35, + 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x01, 0x35, + 0x21, 0x15, 0x02, 0x3E, 0x99, 0xE1, 0x7A, 0x79, 0xDF, 0x99, 0x01, 0x5B, + 0xFE, 0xA4, 0x57, 0x7F, 0x44, 0x45, 0x81, 0x58, 0x01, 0x58, 0x0A, 0x02, + 0x7B, 0xFC, 0xF9, 0xCE, 0x42, 0x02, 0x24, 0xFD, 0xDC, 0x02, 0x7B, 0x88, + 0xEF, 0x99, 0x0E, 0x99, 0xEF, 0x88, 0xB3, 0x5B, 0x9D, 0x64, 0x0F, 0x64, + 0x9E, 0x5B, 0xB3, 0xB3, 0xB3, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xC8, 0xAE, + 0xAE, 0x01, 0xB3, 0xB3, 0xB3, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5C, 0x08, + 0x96, 0x04, 0x44, 0x04, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x03, + 0xE4, 0x04, 0x67, 0x00, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5E, 0x04, + 0x65, 0x04, 0x41, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x53, 0x11, 0x33, + 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x7D, + 0xD1, 0x06, 0x1F, 0x5E, 0x7D, 0x4C, 0x89, 0xCE, 0x74, 0x73, 0xCF, 0x89, + 0x4C, 0x7A, 0x5D, 0x20, 0x04, 0x01, 0x1B, 0x57, 0x81, 0x47, 0x47, 0x81, + 0x57, 0x5C, 0x84, 0x47, 0x47, 0x85, 0xFE, 0x5E, 0x05, 0xD0, 0x9F, 0x35, + 0x50, 0x2D, 0x8A, 0xF9, 0xA7, 0xA7, 0xFA, 0x8B, 0x2E, 0x53, 0x37, 0xFD, + 0xBB, 0x02, 0x44, 0x59, 0xA7, 0x75, 0x76, 0xA5, 0x59, 0x5D, 0xA6, 0x71, + 0x70, 0xA8, 0x5D, 0x00, 0x03, 0x00, 0x7F, 0xFE, 0x5E, 0x04, 0x68, 0x04, + 0x41, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x2A, 0x00, 0x00, 0x41, 0x01, 0x07, + 0x01, 0x01, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x02, 0xFC, 0x01, 0x64, 0x71, 0xFE, 0x9C, 0xFD, 0xF4, + 0xD1, 0x06, 0x1F, 0x5E, 0x7D, 0x4C, 0x89, 0xCE, 0x75, 0x74, 0xCE, 0x8A, + 0x4C, 0x7A, 0x5D, 0x20, 0x04, 0x01, 0x1B, 0x57, 0x81, 0x47, 0x47, 0x80, + 0x58, 0x5B, 0x85, 0x47, 0x47, 0x85, 0x01, 0x9E, 0xFE, 0x6A, 0x66, 0x01, + 0x95, 0xFD, 0x27, 0x05, 0xD0, 0x9F, 0x35, 0x50, 0x2D, 0x8A, 0xF9, 0xA7, + 0xA7, 0xFA, 0x8B, 0x2E, 0x53, 0x37, 0xFD, 0xBB, 0x02, 0x44, 0x59, 0xA7, + 0x75, 0x76, 0xA5, 0x59, 0x5D, 0xA6, 0x71, 0x70, 0xA8, 0x5D, 0x00, 0x03, + 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x26, + 0x00, 0x36, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x15, 0x26, 0x22, 0x23, 0x22, 0x06, 0x15, 0x11, 0x03, 0x11, 0x33, 0x15, + 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x7D, 0x9F, + 0x99, 0x27, 0x3B, 0x17, 0x11, 0x3E, 0x13, 0x41, 0x38, 0xD6, 0xD1, 0x06, + 0x1F, 0x5E, 0x7D, 0x4C, 0x89, 0xCE, 0x74, 0x73, 0xCF, 0x89, 0x4C, 0x7A, + 0x5D, 0x20, 0x04, 0x01, 0x1B, 0x57, 0x81, 0x47, 0x47, 0x81, 0x57, 0x5C, + 0x84, 0x47, 0x47, 0x85, 0x03, 0x56, 0x01, 0x6F, 0x86, 0x8A, 0x01, 0x01, + 0xB1, 0x01, 0x2E, 0x34, 0xFE, 0x95, 0xFB, 0x08, 0x05, 0xD0, 0x9F, 0x35, + 0x50, 0x2D, 0x8A, 0xF9, 0xA7, 0xA7, 0xFA, 0x8B, 0x2E, 0x53, 0x37, 0xFD, + 0xBB, 0x02, 0x44, 0x59, 0xA7, 0x75, 0x76, 0xA5, 0x59, 0x5D, 0xA6, 0x71, + 0x70, 0xA8, 0x5D, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, + 0xCB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x05, + 0xE5, 0x06, 0x26, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x04, + 0x41, 0x06, 0x06, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x02, 0x00, 0x4A, 0xFE, + 0x5E, 0x04, 0x32, 0x04, 0x41, 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x41, + 0x23, 0x11, 0x23, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, 0x01, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x04, 0x32, 0xD5, 0x05, 0x20, 0x5D, 0x79, 0x4C, 0x89, 0xD0, 0x73, + 0x74, 0xCF, 0x88, 0x4D, 0x7D, 0x5E, 0x1E, 0x06, 0xD1, 0xFE, 0x10, 0x5B, + 0x84, 0x47, 0x47, 0x84, 0x5B, 0x58, 0x81, 0x47, 0x47, 0x82, 0xFE, 0x5E, + 0x02, 0x45, 0x37, 0x53, 0x2E, 0x8B, 0xFA, 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, + 0x50, 0x35, 0x9F, 0xFC, 0x74, 0x5D, 0xA8, 0x70, 0x71, 0xA6, 0x5D, 0x59, + 0xA5, 0x76, 0x75, 0xA7, 0x59, 0x00, 0x03, 0x00, 0x4A, 0xFE, 0x5E, 0x05, + 0x0B, 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x41, + 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, 0x22, + 0x06, 0x15, 0x11, 0x13, 0x23, 0x11, 0x23, 0x0E, 0x02, 0x23, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, + 0x33, 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x03, 0x5B, 0x9F, 0x99, 0x27, 0x3B, 0x16, + 0x10, 0x3E, 0x13, 0x41, 0x39, 0x02, 0xD5, 0x05, 0x20, 0x5D, 0x79, 0x4C, + 0x89, 0xD0, 0x73, 0x74, 0xCF, 0x88, 0x4D, 0x7D, 0x5E, 0x1E, 0x06, 0xD1, + 0xFE, 0x10, 0x5B, 0x84, 0x47, 0x47, 0x84, 0x5B, 0x58, 0x81, 0x47, 0x47, + 0x82, 0x03, 0x56, 0x01, 0x6F, 0x86, 0x8A, 0x01, 0x01, 0xB1, 0x01, 0x2E, + 0x34, 0xFE, 0x95, 0xFB, 0x08, 0x02, 0x45, 0x37, 0x53, 0x2E, 0x8B, 0xFA, + 0xA7, 0xA7, 0xF9, 0x8A, 0x2D, 0x50, 0x35, 0x9F, 0xFC, 0x74, 0x5D, 0xA8, + 0x70, 0x71, 0xA6, 0x5D, 0x59, 0xA5, 0x76, 0x75, 0xA7, 0x59, 0x00, 0x03, + 0x00, 0x4A, 0xFE, 0x5B, 0x05, 0x09, 0x04, 0x41, 0x00, 0x0F, 0x00, 0x26, + 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, 0x01, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, 0x35, 0x33, + 0x11, 0x23, 0x35, 0x23, 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, 0x90, + 0x98, 0x99, 0xD3, 0x35, 0x40, 0x14, 0x3E, 0x10, 0x16, 0x3B, 0xFD, 0x5D, + 0x88, 0xD0, 0x73, 0x74, 0xD0, 0x87, 0x4D, 0x7D, 0x5E, 0x1E, 0x05, 0xD2, + 0xD2, 0x05, 0x20, 0x5E, 0x7B, 0x20, 0x5B, 0x84, 0x48, 0x48, 0x84, 0x5B, + 0x57, 0x82, 0x47, 0x47, 0x82, 0xFE, 0x5B, 0x8B, 0x86, 0x01, 0x4B, 0xFE, + 0xB8, 0x33, 0x2E, 0x01, 0xB1, 0x01, 0x02, 0x01, 0x90, 0x8B, 0xFA, 0xA7, + 0xA7, 0xF9, 0x8A, 0x2D, 0x50, 0x35, 0x9F, 0xFB, 0xD2, 0xA3, 0x37, 0x53, + 0x2E, 0xB7, 0x5D, 0xA8, 0x70, 0x71, 0xA6, 0x5D, 0x58, 0xA6, 0x76, 0x75, + 0xA7, 0x59, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x02, 0xA6, 0x04, 0x3B, + 0x00, 0x13, 0x00, 0x00, 0x73, 0x11, 0x33, 0x15, 0x33, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, + 0x7D, 0xCD, 0x06, 0x1D, 0x84, 0x64, 0x17, 0x2C, 0x0E, 0x0C, 0x40, 0x25, + 0x3E, 0x68, 0x3C, 0x04, 0x2E, 0xAD, 0x58, 0x62, 0x03, 0x02, 0xC7, 0x02, + 0x08, 0x39, 0x70, 0x54, 0xFD, 0x84, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5B, + 0x02, 0xA6, 0x04, 0x3B, 0x00, 0x0F, 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, + 0x06, 0x06, 0x01, 0x11, 0x33, 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x01, 0xB1, + 0x99, 0x9B, 0xD6, 0x34, 0x41, 0x13, 0x3E, 0x11, 0x17, 0x3B, 0xFE, 0xA5, + 0xCD, 0x06, 0x1D, 0x84, 0x64, 0x17, 0x2C, 0x0E, 0x0C, 0x40, 0x25, 0x3E, + 0x68, 0x3C, 0xFE, 0x5B, 0x8B, 0x86, 0x94, 0x91, 0x33, 0x2E, 0x01, 0xB1, + 0x01, 0x02, 0x01, 0xA5, 0x04, 0x2E, 0xAD, 0x58, 0x62, 0x03, 0x02, 0xC7, + 0x02, 0x08, 0x39, 0x70, 0x54, 0xFD, 0x84, 0xFF, 0xFF, 0xFF, 0x96, 0x00, + 0x00, 0x02, 0xA6, 0x04, 0x3B, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x61, 0xFF, 0x1C, 0xFF, 0x2E, 0x00, 0x01, 0x00, 0x27, 0xFF, + 0xF2, 0x02, 0x4F, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x35, 0x23, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x11, 0x02, 0x4F, 0xCD, 0x05, 0x1E, 0x84, 0x64, + 0x17, 0x2B, 0x0E, 0x0C, 0x3F, 0x25, 0x40, 0x66, 0x3D, 0x04, 0x2E, 0xFB, + 0xD2, 0xAD, 0x58, 0x63, 0x04, 0x01, 0xC8, 0x02, 0x08, 0x39, 0x71, 0x53, + 0x02, 0x7C, 0x00, 0x02, 0x00, 0x27, 0xFE, 0x5B, 0x03, 0x24, 0x04, 0x2E, + 0x00, 0x10, 0x00, 0x24, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x35, 0x33, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x33, 0x15, 0x0E, 0x02, 0x03, 0x11, + 0x23, 0x35, 0x23, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x02, 0xA1, 0x91, 0x90, 0xCD, 0x34, + 0x3F, 0x13, 0x41, 0x10, 0x0F, 0x29, 0x31, 0x6C, 0xCD, 0x05, 0x1E, 0x84, + 0x64, 0x17, 0x2B, 0x0E, 0x0C, 0x3F, 0x25, 0x40, 0x66, 0x3D, 0xFE, 0x5B, + 0x88, 0x80, 0x9D, 0x95, 0x32, 0x2D, 0x01, 0xAF, 0x01, 0x01, 0x01, 0x05, + 0xD3, 0xFB, 0xD2, 0xAD, 0x58, 0x63, 0x04, 0x01, 0xC8, 0x02, 0x08, 0x39, + 0x71, 0x53, 0x02, 0x7C, 0x00, 0x01, 0x00, 0x27, 0x00, 0x00, 0x02, 0x40, + 0x04, 0x39, 0x00, 0x12, 0x00, 0x00, 0x61, 0x23, 0x11, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x35, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x02, 0x40, 0xD6, 0x39, 0x60, 0x3C, 0x25, 0x38, 0x11, 0x08, 0x25, 0x34, + 0x1D, 0x6D, 0xBB, 0x73, 0x02, 0xA2, 0x56, 0x5B, 0x24, 0x02, 0x02, 0xC0, + 0x01, 0x03, 0x02, 0x4F, 0xB1, 0x93, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, + 0x02, 0x96, 0x04, 0x39, 0x00, 0x12, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x11, 0x7D, 0x73, 0xBC, 0x6C, 0x1D, 0x33, 0x26, 0x08, 0x11, + 0x38, 0x25, 0x3B, 0x61, 0x39, 0x02, 0xA6, 0x93, 0xB1, 0x4F, 0x02, 0x03, + 0x01, 0xC0, 0x02, 0x02, 0x24, 0x5B, 0x56, 0xFD, 0x5E, 0x00, 0x02, 0x00, + 0x7D, 0xFE, 0x5E, 0x02, 0xA6, 0x04, 0x3B, 0x00, 0x03, 0x00, 0x17, 0x00, + 0x00, 0x53, 0x11, 0x33, 0x11, 0x03, 0x11, 0x33, 0x15, 0x33, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x11, 0x7D, 0xD4, 0xD4, 0xCD, 0x06, 0x1D, 0x84, 0x64, 0x17, 0x2C, 0x0E, + 0x0C, 0x40, 0x25, 0x3E, 0x68, 0x3C, 0xFE, 0x5E, 0x01, 0xA2, 0xFE, 0x5E, + 0x01, 0xA2, 0x04, 0x2E, 0xAD, 0x58, 0x62, 0x03, 0x02, 0xC7, 0x02, 0x08, + 0x39, 0x70, 0x54, 0xFD, 0x84, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, + 0xA9, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x00, 0xCC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x2A, 0xFE, 0x17, 0x02, + 0xA6, 0x04, 0x3B, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x06, 0x06, + 0xE7, 0xE5, 0x00, 0xFF, 0xFF, 0x00, 0x3E, 0x00, 0x00, 0x02, 0xDB, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8E, 0xEF, + 0x00, 0xFF, 0xFF, 0xFF, 0xBB, 0x00, 0x00, 0x02, 0xA6, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0xFF, 0x63, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x02, 0xC0, 0x05, 0xE9, 0x06, + 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF8, 0xF0, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, 0xA6, 0x05, 0xE5, 0x06, 0x26, 0x03, + 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x9E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x61, 0xFE, 0x43, 0x02, 0xA6, 0x04, 0x3B, 0x06, 0x26, 0x03, + 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0xFF, 0xF9, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x61, 0xFE, 0x43, 0x02, 0xA6, 0x05, 0x9D, 0x06, 0x26, 0x03, + 0x54, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0xFF, 0xF9, 0xF9, 0x62, 0x00, + 0x06, 0x06, 0xEB, 0xE4, 0x00, 0xFF, 0xFF, 0xFF, 0xCF, 0xFE, 0x92, 0x02, + 0xA6, 0x04, 0x3B, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0xFF, 0x3F, 0xF9, 0x92, 0x00, 0x02, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0x38, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, 0x21, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x23, 0x11, 0x21, 0x01, 0x33, 0x01, 0x7D, 0x01, 0xE3, + 0xCC, 0xDC, 0xE0, 0xCF, 0xFE, 0x9C, 0x01, 0x4F, 0x7E, 0x73, 0x70, 0x7B, + 0xFC, 0x01, 0xFB, 0xFE, 0xCE, 0xE8, 0x01, 0x39, 0x04, 0x2E, 0xB8, 0xA4, + 0x9F, 0xB2, 0xA8, 0x52, 0x56, 0x57, 0x54, 0xFC, 0x84, 0x01, 0xE0, 0xFE, + 0x20, 0x00, 0x02, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x38, 0x04, 0x2E, 0x00, + 0x13, 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x03, 0x01, 0x33, 0x01, 0x7D, 0xD1, 0xFC, 0x7B, 0x70, 0x73, 0x7E, + 0xFE, 0xB1, 0x01, 0x64, 0xCF, 0xE0, 0xDC, 0xCC, 0x49, 0x01, 0x32, 0xEF, + 0xFE, 0xC7, 0x04, 0x2E, 0xFC, 0x84, 0x54, 0x56, 0x57, 0x52, 0xA7, 0xB1, + 0xA0, 0xA3, 0xB8, 0x02, 0x4E, 0x01, 0xE0, 0xFE, 0x20, 0x00, 0x01, 0x00, + 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x04, 0x43, 0x00, 0x2B, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, + 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x02, 0x07, 0x79, 0xC1, 0x77, + 0x0B, 0xD1, 0x0C, 0x76, 0x66, 0x66, 0x76, 0x51, 0x48, 0xB2, 0x96, 0x9A, + 0x67, 0xBA, 0x7A, 0x77, 0xB6, 0x6B, 0x08, 0xC9, 0x05, 0x70, 0x5F, 0x5B, + 0x6E, 0x52, 0x4B, 0xB4, 0x9B, 0x92, 0x6F, 0xC4, 0x18, 0x4C, 0x96, 0x6F, + 0x09, 0x56, 0x5A, 0x53, 0x3F, 0x36, 0x42, 0x10, 0x27, 0x22, 0x98, 0x76, + 0x5F, 0x90, 0x51, 0x51, 0x94, 0x66, 0x09, 0x49, 0x62, 0x53, 0x3E, 0x36, + 0x43, 0x11, 0x28, 0x22, 0x90, 0x74, 0x65, 0x94, 0x50, 0x00, 0x02, 0x00, + 0x4B, 0xFE, 0x5B, 0x03, 0xB8, 0x04, 0x43, 0x00, 0x11, 0x00, 0x3D, 0x00, + 0x00, 0x41, 0x22, 0x26, 0x35, 0x11, 0x37, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x32, 0x36, 0x33, 0x15, 0x0E, 0x02, 0x13, 0x22, 0x26, 0x26, 0x27, 0x37, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x01, 0x71, 0x90, 0x96, 0xC6, 0x3A, 0x3F, 0x0D, 0x2B, 0x2A, + 0x0A, 0x0F, 0x2A, 0x32, 0x7C, 0x79, 0xC1, 0x77, 0x0B, 0xD1, 0x0C, 0x76, + 0x66, 0x66, 0x76, 0x51, 0x48, 0xB2, 0x96, 0x9A, 0x67, 0xBA, 0x7A, 0x77, + 0xB6, 0x6B, 0x08, 0xC9, 0x05, 0x70, 0x5F, 0x5B, 0x6E, 0x52, 0x4B, 0xB4, + 0x9B, 0x92, 0x6F, 0xC4, 0xFE, 0x5B, 0x88, 0x80, 0x01, 0xD6, 0x01, 0xFE, + 0x31, 0x32, 0x2D, 0x01, 0xAF, 0x01, 0x01, 0x01, 0x01, 0x8D, 0x4C, 0x96, + 0x6F, 0x09, 0x56, 0x5A, 0x53, 0x3F, 0x36, 0x42, 0x10, 0x27, 0x22, 0x98, + 0x76, 0x5F, 0x90, 0x51, 0x51, 0x94, 0x66, 0x09, 0x49, 0x62, 0x53, 0x3E, + 0x36, 0x43, 0x11, 0x28, 0x22, 0x90, 0x74, 0x65, 0x94, 0x50, 0x00, 0x02, + 0x00, 0x4B, 0xFE, 0x5E, 0x03, 0xB8, 0x04, 0x43, 0x00, 0x11, 0x00, 0x3D, + 0x00, 0x00, 0x53, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x27, 0x03, 0x05, 0x22, 0x26, 0x26, 0x27, 0x37, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0xFD, 0x5C, 0x78, 0x4F, 0x3B, 0x1E, 0x2F, 0x4F, 0x1B, 0x4A, + 0x25, 0x7B, 0x46, 0x47, 0x6E, 0x5A, 0x2A, 0xCC, 0x01, 0x96, 0x79, 0xC1, + 0x77, 0x0B, 0xD1, 0x0C, 0x76, 0x66, 0x66, 0x76, 0x51, 0x48, 0xB2, 0x96, + 0x9A, 0x67, 0xBA, 0x7A, 0x77, 0xB6, 0x6B, 0x08, 0xC9, 0x05, 0x70, 0x5F, + 0x5B, 0x6E, 0x52, 0x4B, 0xB4, 0x9B, 0x92, 0x6F, 0xC4, 0x01, 0x12, 0xA7, + 0xD0, 0x70, 0x29, 0x31, 0x18, 0x82, 0x24, 0x47, 0x3F, 0x6F, 0x48, 0x01, + 0x65, 0xD1, 0x4C, 0x96, 0x6F, 0x09, 0x56, 0x5A, 0x53, 0x3F, 0x36, 0x42, + 0x10, 0x27, 0x22, 0x98, 0x76, 0x5F, 0x90, 0x51, 0x51, 0x94, 0x66, 0x09, + 0x49, 0x62, 0x53, 0x3E, 0x36, 0x43, 0x11, 0x28, 0x22, 0x90, 0x74, 0x65, + 0x94, 0x50, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x44, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0x67, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFE, 0x5E, 0x03, 0xB8, 0x04, 0x43, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x00, 0xED, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0x67, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFE, 0x17, 0x03, 0xB8, 0x04, 0x43, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x01, 0x02, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x05, 0xE5, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x16, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFE, 0x43, 0x03, 0xB8, 0x04, 0x43, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x16, + 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x07, 0x44, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x18, 0x01, 0x5D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x07, 0x02, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x19, 0x00, 0x55, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFE, 0x43, 0x03, 0xB8, 0x05, 0xE5, + 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x01, 0x16, + 0xF9, 0x62, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x16, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x04, 0x43, 0x06, 0x06, 0x03, 0x67, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x49, 0xFF, 0xEA, 0x03, 0xB5, 0x04, 0x41, + 0x00, 0x2A, 0x00, 0x00, 0x53, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, + 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x60, 0x0B, + 0xE1, 0xB3, 0x7B, 0xB9, 0x68, 0x9A, 0x96, 0xB2, 0x47, 0x52, 0x77, 0x65, + 0x66, 0x76, 0x0B, 0xD2, 0x0A, 0x77, 0xC1, 0x7A, 0x7E, 0xC3, 0x6F, 0x91, + 0x9B, 0xB4, 0x4C, 0x53, 0x70, 0x5B, 0x5F, 0x6F, 0x06, 0x02, 0xF6, 0x99, + 0xB2, 0x50, 0x8F, 0x5F, 0x76, 0x9B, 0x21, 0x28, 0x0F, 0x40, 0x36, 0x3F, + 0x4D, 0x54, 0x55, 0x07, 0x6F, 0x95, 0x4C, 0x50, 0x93, 0x64, 0x6F, 0x94, + 0x23, 0x27, 0x12, 0x43, 0x36, 0x3E, 0x4D, 0x5C, 0x4A, 0x00, 0x01, 0x00, + 0x8E, 0x00, 0x00, 0x04, 0x83, 0x05, 0xE6, 0x00, 0x2B, 0x00, 0x00, 0x73, + 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, + 0x15, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x8E, 0x74, 0xCD, 0x87, 0x83, + 0xD2, 0x7C, 0x7E, 0x68, 0x90, 0xB2, 0x70, 0xCA, 0x86, 0xAD, 0xA0, 0x70, + 0x84, 0x93, 0x7D, 0x7E, 0x58, 0x42, 0x62, 0x35, 0x81, 0x70, 0x6C, 0x8B, + 0x04, 0x50, 0x7E, 0xB6, 0x62, 0x5C, 0xAF, 0x7B, 0x7B, 0xAB, 0x23, 0x0E, + 0x0D, 0xC7, 0x9B, 0x79, 0xB9, 0x68, 0xBD, 0x81, 0x66, 0x6A, 0x87, 0xBC, + 0x44, 0x6D, 0x3E, 0x61, 0x86, 0x7F, 0x66, 0xFB, 0xBE, 0x00, 0x01, 0x00, + 0x8E, 0xFF, 0xEC, 0x04, 0x9E, 0x05, 0xE6, 0x00, 0x33, 0x00, 0x00, 0x41, + 0x11, 0x23, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x0E, + 0x02, 0x15, 0x14, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x2E, 0x03, 0x35, + 0x34, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x01, 0x63, 0xD5, + 0xEC, 0xB7, 0x6A, 0xBE, 0x77, 0x26, 0x32, 0x26, 0x43, 0x63, 0x62, 0x44, + 0x63, 0xB8, 0x81, 0x60, 0xA4, 0x2B, 0x46, 0x21, 0x69, 0x56, 0x60, 0x71, + 0x44, 0x65, 0x65, 0x44, 0x29, 0x36, 0x29, 0x78, 0x57, 0x62, 0x6C, 0x04, + 0x22, 0xFB, 0xDE, 0x04, 0x22, 0xE1, 0xE3, 0x4F, 0xA1, 0x7C, 0x48, 0x5F, + 0x46, 0x43, 0x2B, 0x32, 0x4B, 0x47, 0x58, 0x79, 0x59, 0x64, 0x93, 0x4E, + 0x2D, 0x1D, 0xB0, 0x12, 0x2C, 0x4D, 0x49, 0x39, 0x53, 0x48, 0x50, 0x6B, + 0x4E, 0x3C, 0x4C, 0x3F, 0x4C, 0x3B, 0x60, 0x5F, 0x7C, 0x00, 0x02, 0x00, + 0x11, 0xFF, 0xFD, 0x02, 0x7B, 0x05, 0x49, 0x00, 0x03, 0x00, 0x13, 0x00, + 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x02, 0x74, 0xFD, + 0x9D, 0xB5, 0xD5, 0x32, 0x40, 0x16, 0x3A, 0x15, 0x09, 0x1D, 0x4A, 0x23, + 0x96, 0x95, 0x04, 0x2E, 0xB0, 0xB0, 0x01, 0x1B, 0xFB, 0xD4, 0x3D, 0x32, + 0x02, 0x01, 0xAF, 0x03, 0x02, 0x84, 0x82, 0x00, 0x03, 0x00, 0x11, 0xFE, + 0x5B, 0x02, 0x86, 0x05, 0x49, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x23, 0x00, + 0x00, 0x53, 0x35, 0x32, 0x16, 0x33, 0x32, 0x36, 0x27, 0x27, 0x33, 0x17, + 0x16, 0x06, 0x23, 0x22, 0x26, 0x01, 0x15, 0x21, 0x35, 0x13, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x35, 0xCE, 0x11, 0x42, 0x14, 0x47, 0x39, 0x04, 0x04, 0xCE, 0x04, 0x07, + 0x9E, 0xA1, 0x27, 0x3B, 0x01, 0x8F, 0xFD, 0x9D, 0xB5, 0xD5, 0x32, 0x40, + 0x16, 0x3A, 0x15, 0x09, 0x1D, 0x4A, 0x23, 0x96, 0x95, 0xFE, 0x5E, 0xB0, + 0x01, 0x37, 0x3A, 0x97, 0x99, 0x89, 0x98, 0x02, 0x05, 0xD1, 0xB0, 0xB0, + 0x01, 0x1B, 0xFB, 0xD4, 0x3D, 0x32, 0x02, 0x01, 0xAF, 0x03, 0x02, 0x84, + 0x82, 0x00, 0x02, 0x00, 0x11, 0xFE, 0x5A, 0x02, 0x62, 0x05, 0x49, 0x00, + 0x0F, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x35, 0x21, + 0x15, 0x01, 0xDE, 0x8F, 0xA1, 0xD5, 0x3A, 0x42, 0x16, 0x2F, 0x15, 0x09, + 0x1C, 0x46, 0xFE, 0x11, 0x02, 0x4C, 0xFE, 0x5A, 0x90, 0x7F, 0x05, 0xE0, + 0xFA, 0x43, 0x44, 0x3C, 0x01, 0x01, 0xAE, 0x03, 0x03, 0x05, 0x24, 0xB0, + 0xB0, 0x00, 0x03, 0xFF, 0xBD, 0xFF, 0xED, 0x03, 0x3E, 0x05, 0x49, 0x00, + 0x1F, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, + 0x26, 0x06, 0x06, 0x07, 0x01, 0x27, 0x37, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x01, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x02, + 0x01, 0x79, 0x96, 0x44, 0xD5, 0x4D, 0x34, 0x30, 0x3C, 0x33, 0x2E, 0x22, + 0x3F, 0x3D, 0x21, 0xFE, 0xE5, 0x78, 0xF8, 0x47, 0xB3, 0x58, 0x89, 0xAE, + 0xA9, 0xFE, 0x19, 0xD5, 0xFE, 0x8E, 0x02, 0x4C, 0x13, 0x5E, 0x97, 0x57, + 0x01, 0x41, 0xFE, 0x9D, 0x43, 0x46, 0x3B, 0x2E, 0x2A, 0x39, 0x06, 0x05, + 0x10, 0x25, 0x1D, 0xFE, 0xF5, 0x87, 0xE9, 0x43, 0x4C, 0x98, 0x7B, 0x78, + 0x8F, 0x01, 0xA2, 0x03, 0xBA, 0xFC, 0x46, 0x01, 0xEF, 0xB0, 0xB0, 0x00, + 0x02, 0x00, 0x11, 0xFF, 0xE8, 0x06, 0x2B, 0x05, 0x49, 0x00, 0x3E, 0x00, + 0x42, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x17, 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x01, 0x35, 0x21, 0x15, 0x04, 0x61, 0x9B, 0xE6, 0x7E, + 0x7E, 0xE5, 0x98, 0x7E, 0xC7, 0x7D, 0x0C, 0xD3, 0x0B, 0x40, 0x67, 0x47, + 0x5B, 0x84, 0x46, 0x46, 0x85, 0x5D, 0x40, 0x70, 0x45, 0x31, 0x3A, 0x55, + 0x93, 0x54, 0x37, 0x8C, 0xA2, 0x5B, 0x5B, 0x92, 0x55, 0xD5, 0x4C, 0x2F, + 0x3D, 0x99, 0x44, 0x4A, 0x9B, 0xA8, 0x5B, 0x90, 0x8B, 0x76, 0xC7, 0xFB, + 0x33, 0x02, 0x4C, 0x18, 0x8E, 0xFB, 0xA3, 0xA5, 0xFC, 0x8F, 0x62, 0xAD, + 0x71, 0x3A, 0x5B, 0x34, 0x5D, 0xA8, 0x73, 0x76, 0xAA, 0x5B, 0x25, 0x4A, + 0x34, 0x25, 0x2A, 0x5E, 0x5A, 0x3C, 0x67, 0x3F, 0x44, 0x8E, 0x6D, 0x04, + 0x18, 0xFB, 0xF0, 0x51, 0x3F, 0x54, 0x43, 0x47, 0x6E, 0x40, 0x88, 0x69, + 0x64, 0x9D, 0x5B, 0x03, 0x96, 0xB0, 0xB0, 0x00, 0x02, 0x00, 0x2E, 0xFE, + 0xE5, 0x02, 0x98, 0x04, 0x31, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x73, + 0x35, 0x21, 0x15, 0x03, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x35, 0x02, 0x63, 0xB5, 0xD5, + 0x33, 0x3F, 0x16, 0x39, 0x16, 0x09, 0x1C, 0x4C, 0x22, 0x96, 0x95, 0xAF, + 0xAF, 0xFE, 0xE5, 0x04, 0x2C, 0x3D, 0x32, 0x02, 0x01, 0xAF, 0x03, 0x02, + 0x84, 0x82, 0x00, 0x03, 0x00, 0x11, 0xFF, 0xFD, 0x02, 0x7B, 0x05, 0x49, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x17, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x01, 0x15, 0x21, 0x35, 0x13, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x02, 0x74, 0xFD, 0x9D, + 0x02, 0x63, 0xFD, 0x9D, 0xB5, 0xD5, 0x32, 0x40, 0x16, 0x3A, 0x15, 0x09, + 0x1D, 0x4A, 0x23, 0x96, 0x95, 0x02, 0xDE, 0xA0, 0xA0, 0x01, 0x50, 0xB0, + 0xB0, 0x01, 0x1B, 0xFB, 0xD4, 0x3D, 0x32, 0x02, 0x01, 0xAF, 0x03, 0x02, + 0x84, 0x82, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0x5E, 0x02, 0x9F, 0x05, 0x49, + 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x00, 0x93, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x11, 0xFF, 0xFD, 0x02, 0xDA, 0x06, 0x2A, + 0x04, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x28, 0x01, 0x76, + 0x00, 0x10, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0x17, 0x02, 0x7B, 0x05, 0x49, + 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE7, 0x00, 0x90, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x11, 0xFF, 0xFD, 0x02, 0x7B, 0x07, 0x00, + 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0x42, + 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0x43, 0x02, 0x7B, 0x05, 0x49, + 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x00, 0xA4, + 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0x92, 0x02, 0xAB, 0x05, 0x49, + 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0xE9, + 0xF9, 0x92, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0x3A, 0x02, 0xE2, 0x05, 0x49, + 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0xFF, 0xF6, + 0xF9, 0x71, 0xFF, 0xFF, 0xFF, 0xD8, 0xFF, 0xFD, 0x02, 0x89, 0x06, 0xFF, + 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xEA, + 0x01, 0x1B, 0x00, 0x02, 0x00, 0x7D, 0xFF, 0xFD, 0x02, 0x32, 0x05, 0x49, + 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x03, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x02, 0x2B, 0xFE, 0xC0, 0x6E, 0xD6, 0x32, 0x40, 0x16, 0x3A, + 0x14, 0x09, 0x1C, 0x4B, 0x23, 0x96, 0x95, 0x04, 0x2E, 0xB0, 0xB0, 0x01, + 0x1B, 0xFB, 0xD4, 0x3D, 0x32, 0x02, 0x01, 0xAF, 0x03, 0x02, 0x84, 0x82, + 0x00, 0x03, 0x00, 0x7D, 0xFE, 0x5B, 0x02, 0x3E, 0x05, 0x49, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x53, 0x35, 0x32, 0x16, 0x33, 0x32, + 0x36, 0x27, 0x27, 0x33, 0x17, 0x16, 0x06, 0x23, 0x22, 0x26, 0x01, 0x15, + 0x21, 0x35, 0x03, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x86, 0x10, 0x43, 0x13, 0x47, 0x39, + 0x04, 0x04, 0xCE, 0x04, 0x08, 0x9E, 0xA2, 0x27, 0x3B, 0x01, 0x8F, 0xFE, + 0xC0, 0x6E, 0xD6, 0x32, 0x40, 0x16, 0x3A, 0x14, 0x09, 0x1C, 0x4B, 0x23, + 0x96, 0x95, 0xFE, 0x5E, 0xB0, 0x01, 0x37, 0x3A, 0x97, 0x99, 0x89, 0x98, + 0x02, 0x05, 0xD1, 0xB0, 0xB0, 0x01, 0x1B, 0xFB, 0xD4, 0x3D, 0x32, 0x02, + 0x01, 0xAF, 0x03, 0x02, 0x84, 0x82, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, + 0x02, 0x56, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x95, 0x00, 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xFD, + 0x02, 0x92, 0x06, 0x2A, 0x04, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x28, 0x01, 0x2D, 0x00, 0x10, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x17, + 0x02, 0x32, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xE7, 0x47, 0x00, 0xFF, 0xFF, 0x00, 0x61, 0xFF, 0xFD, 0x02, 0x32, + 0x07, 0x00, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0xFF, 0xFA, 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x02, 0x32, + 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x00, 0x5B, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x31, 0xFE, 0x92, 0x02, 0x62, + 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, + 0xFF, 0xA1, 0xF9, 0x92, 0xFF, 0xFF, 0xFF, 0xFC, 0xFE, 0x3A, 0x02, 0x99, + 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0xFF, 0xAD, 0xF9, 0x71, 0xFF, 0xFF, 0xFF, 0x90, 0xFF, 0xFD, 0x02, 0x40, + 0x06, 0xFF, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, + 0xFE, 0xA1, 0x01, 0x1B, 0x00, 0x01, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, + 0x04, 0x2E, 0x00, 0x16, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, + 0x23, 0x11, 0x33, 0x06, 0x06, 0x01, 0xFB, 0x6D, 0xAD, 0x64, 0xD6, 0x7B, + 0x6D, 0x48, 0x74, 0x44, 0xD5, 0xD0, 0x2B, 0x33, 0xBA, 0x13, 0x5E, 0xBC, + 0x89, 0x02, 0x9E, 0xFD, 0x7D, 0x7E, 0x83, 0x3C, 0x7C, 0x60, 0x02, 0x6C, + 0xFB, 0xD2, 0x01, 0x09, 0x90, 0x8C, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, + 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, + 0x05, 0xCE, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, + 0x5A, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0xC1, 0x05, 0x20, + 0x00, 0x0A, 0x00, 0x21, 0x00, 0x00, 0x41, 0x35, 0x33, 0x32, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x06, 0x23, 0x01, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x23, + 0x11, 0x33, 0x06, 0x06, 0x03, 0xA5, 0x42, 0x21, 0xB9, 0x5F, 0x5A, 0xFD, + 0xF3, 0x6D, 0xAD, 0x64, 0xD6, 0x7B, 0x6D, 0x48, 0x74, 0x44, 0xD5, 0xD0, + 0x2B, 0x33, 0xBA, 0x03, 0xA1, 0x8D, 0x21, 0xD1, 0xCC, 0x5A, 0x59, 0xFC, + 0x4C, 0x5E, 0xBC, 0x89, 0x02, 0x9E, 0xFD, 0x7D, 0x7E, 0x83, 0x3C, 0x7C, + 0x60, 0x02, 0x6C, 0xFB, 0xD2, 0x01, 0x09, 0x90, 0x8C, 0x00, 0x01, 0x00, + 0x7D, 0xFE, 0x5E, 0x04, 0x97, 0x04, 0x2E, 0x00, 0x25, 0x00, 0x00, 0x53, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x33, 0x15, 0x23, 0x22, 0x26, 0x35, 0x35, + 0x33, 0x14, 0x0E, 0x02, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x33, 0x11, 0x7D, + 0xD5, 0x41, 0x6F, 0x48, 0x48, 0x6C, 0x3D, 0xD5, 0x2E, 0x38, 0x21, 0x3D, + 0x8D, 0x8B, 0x2C, 0x39, 0x59, 0x65, 0x2C, 0x2C, 0x66, 0x59, 0x38, 0x2A, + 0xFE, 0x5E, 0x05, 0xD0, 0xFD, 0x8E, 0x60, 0x7B, 0x3B, 0x3B, 0x7B, 0x60, + 0x02, 0x72, 0xFC, 0xE1, 0x34, 0x2A, 0xB1, 0x86, 0x7F, 0x65, 0x6F, 0x90, + 0x52, 0x22, 0x22, 0x52, 0x90, 0x6F, 0xFC, 0xF4, 0x00, 0x02, 0x00, 0x11, + 0xFF, 0xED, 0x05, 0x13, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x23, 0x03, + 0x33, 0x06, 0x06, 0x05, 0x13, 0xFA, 0xFE, 0x02, 0x37, 0x6E, 0xAD, 0x63, + 0xD5, 0x7B, 0x6D, 0x49, 0x73, 0x44, 0xD6, 0xD0, 0x01, 0x2B, 0x33, 0xBA, + 0x02, 0x9D, 0x9A, 0x9A, 0xFD, 0x50, 0x5E, 0xBC, 0x89, 0x02, 0x9E, 0xFD, + 0x7D, 0x7E, 0x83, 0x3C, 0x7C, 0x60, 0x02, 0x6C, 0xFB, 0xD2, 0x01, 0x09, + 0x90, 0x8C, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xD1, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x86, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, 0xAA, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0x9D, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, 0x9E, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0xE3, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xAA, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x06, 0x5F, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x90, 0x01, 0x0A, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, 0xAF, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5A, 0x04, 0x1E, 0x04, 0x2E, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x96, 0x02, 0x59, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xAA, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x06, 0xC0, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE7, 0xFA, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x07, 0x1F, 0x06, 0x26, + 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE4, 0xFA, 0x00, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x07, 0x0F, 0x06, 0x26, 0x03, 0x91, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0xEB, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x7D, + 0xFF, 0xED, 0x04, 0x10, 0x07, 0x1F, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0xE8, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xED, + 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEA, 0x1E, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, + 0x05, 0xE9, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF8, + 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x44, 0x04, 0x10, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, + 0x00, 0x09, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x57, 0x04, 0x10, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, + 0x00, 0x64, 0xF9, 0x6D, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x3A, 0x04, 0x10, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, + 0x00, 0xB4, 0xF9, 0x71, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, + 0x07, 0x1F, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xEA, + 0x5A, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x07, 0x03, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xE9, 0x00, 0x9E, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x04, 0x10, 0x04, 0x2E, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x62, + 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x33, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0xC1, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x94, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x86, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0xC1, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x94, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, 0xD1, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0xC1, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0x94, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, 0x33, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0xC1, 0x05, 0xCE, + 0x06, 0x26, 0x03, 0x94, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x5A, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x04, 0xC1, 0x05, 0x20, 0x06, 0x26, + 0x03, 0x94, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x62, 0xF9, 0x62, + 0x00, 0x01, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x04, 0x2E, 0x00, 0x15, + 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, + 0x02, 0x47, 0x8E, 0xCD, 0x6F, 0xD6, 0x38, 0x6D, 0x4F, 0x4F, 0x6C, 0x39, + 0xD5, 0x6E, 0xCD, 0x14, 0x68, 0xC2, 0x86, 0x02, 0x92, 0xFD, 0x7A, 0x53, + 0x72, 0x3C, 0x3C, 0x72, 0x53, 0x02, 0x86, 0xFD, 0x6E, 0x86, 0xC2, 0x68, + 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, + 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0x86, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x11, 0xFF, 0xEC, 0x05, 0x13, 0x04, 0x2E, 0x00, 0x03, + 0x00, 0x19, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x26, 0x26, + 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x05, 0x13, 0xFA, 0xFE, 0x02, 0x82, + 0x8E, 0xCD, 0x6E, 0xD5, 0x39, 0x6D, 0x4E, 0x4F, 0x6C, 0x39, 0xD5, 0x6E, + 0xCD, 0x02, 0x9D, 0x9A, 0x9A, 0xFD, 0x4F, 0x68, 0xC2, 0x86, 0x02, 0x92, + 0xFD, 0x7A, 0x53, 0x72, 0x3C, 0x3C, 0x72, 0x53, 0x02, 0x86, 0xFD, 0x6E, + 0x86, 0xC2, 0x68, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, + 0xE3, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0x00, + 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8E, 0x00, + 0xA9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, + 0xA9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x3A, 0x04, 0x10, 0x04, + 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8D, 0x00, + 0xAB, 0xF9, 0x71, 0xFF, 0xFF, 0x00, 0x75, 0xFF, 0xEC, 0x04, 0x10, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEA, 0x1E, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x07, 0x1F, 0x06, 0x26, 0x03, + 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xE4, 0xFA, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFE, 0x44, 0x04, 0x10, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x00, 0xF9, 0x62, 0xFF, 0xFF, 0x00, + 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x07, 0x0F, 0x06, 0x26, 0x03, 0xB2, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0xEB, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, + 0xEC, 0x04, 0x10, 0x07, 0x1F, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0xE8, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, + 0x10, 0x06, 0xC0, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0xE7, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x43, 0x04, 0x10, 0x04, + 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, + 0x59, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, 0x00, + 0xD1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, 0x01, + 0x33, 0x00, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0xC1, 0x05, + 0x20, 0x00, 0x0A, 0x00, 0x20, 0x00, 0x00, 0x41, 0x35, 0x33, 0x32, 0x35, + 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x01, 0x22, 0x26, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x06, 0x06, 0x03, 0xA5, 0x42, 0x21, 0xB9, 0x5F, 0x5A, 0xFE, + 0x3F, 0x8E, 0xCD, 0x6F, 0xD6, 0x38, 0x6D, 0x4F, 0x4F, 0x6C, 0x39, 0xD5, + 0x6E, 0xCD, 0x03, 0xA1, 0x8D, 0x21, 0xD1, 0xCC, 0x5A, 0x59, 0xFC, 0x4B, + 0x68, 0xC2, 0x86, 0x02, 0x92, 0xFD, 0x7A, 0x53, 0x72, 0x3C, 0x3C, 0x72, + 0x53, 0x02, 0x86, 0xFD, 0x6E, 0x86, 0xC2, 0x68, 0xFF, 0xFF, 0x00, 0x7D, + 0xFF, 0xEC, 0x04, 0xC1, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE8, 0x01, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, + 0xFE, 0x43, 0x04, 0xC1, 0x05, 0x20, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x59, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, + 0xFF, 0xEC, 0x04, 0xC1, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE9, 0x00, 0xD1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, + 0xFF, 0xEC, 0x04, 0xC1, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x91, 0x01, 0x33, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, + 0xFF, 0xEC, 0x04, 0xC1, 0x05, 0xCE, 0x06, 0x26, 0x03, 0xC3, 0x00, 0x00, + 0x00, 0x06, 0x06, 0xEC, 0x5A, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xD7, 0x00, 0xAF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xE9, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0xF8, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0x9D, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEB, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x07, 0x03, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0xE9, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5A, + 0x04, 0x10, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x5E, 0x01, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x06, 0x5F, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x90, 0x01, 0x0A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xCE, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEC, 0x5A, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, + 0x07, 0x1F, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xEA, + 0x5A, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x57, 0x04, 0x10, 0x04, 0x2E, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x00, 0x5A, + 0xF9, 0x6D, 0x00, 0x01, 0x00, 0x1D, 0x00, 0x00, 0x04, 0x2E, 0x04, 0x2E, + 0x00, 0x0D, 0x00, 0x00, 0x61, 0x01, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, + 0x36, 0x36, 0x37, 0x13, 0x33, 0x01, 0x01, 0xB4, 0xFE, 0x69, 0xE4, 0xD5, + 0x1F, 0x35, 0x1A, 0x36, 0x1A, 0x34, 0x1E, 0xD2, 0xE2, 0xFE, 0x69, 0x04, + 0x2E, 0xFD, 0xB0, 0x57, 0xAE, 0x56, 0x56, 0xAE, 0x57, 0x02, 0x50, 0xFB, + 0xD2, 0x00, 0x01, 0x00, 0x1D, 0x00, 0x00, 0x04, 0x2E, 0x04, 0x2E, 0x00, + 0x0D, 0x00, 0x00, 0x41, 0x01, 0x23, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, + 0x06, 0x07, 0x03, 0x23, 0x01, 0x02, 0x97, 0x01, 0x97, 0xE4, 0xD5, 0x1E, + 0x35, 0x1B, 0x36, 0x1A, 0x34, 0x1E, 0xD2, 0xE2, 0x01, 0x97, 0x04, 0x2E, + 0xFB, 0xD2, 0x02, 0x50, 0x57, 0xAE, 0x56, 0x56, 0xAE, 0x57, 0xFD, 0xB0, + 0x04, 0x2E, 0xFF, 0xFF, 0x00, 0x1D, 0x00, 0x00, 0x04, 0x2E, 0x05, 0xCE, + 0x06, 0x26, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x39, 0x00, + 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x43, 0x04, 0x2E, 0x04, 0x2E, 0x06, 0x26, + 0x03, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x38, 0xF9, 0x62, + 0x00, 0x01, 0x00, 0x1F, 0x00, 0x00, 0x06, 0x2B, 0x04, 0x2E, 0x00, 0x23, + 0x00, 0x00, 0x61, 0x01, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, + 0x37, 0x13, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, + 0x33, 0x01, 0x23, 0x03, 0x2E, 0x02, 0x27, 0x33, 0x0E, 0x02, 0x07, 0x03, + 0x01, 0x68, 0xFE, 0xB7, 0xE0, 0x7A, 0x1D, 0x39, 0x1D, 0x1E, 0x1D, 0x3B, + 0x1E, 0x7B, 0xCD, 0x79, 0x1E, 0x3A, 0x1D, 0x1F, 0x1D, 0x39, 0x1E, 0x7B, + 0xE1, 0xFE, 0xB7, 0xDD, 0x86, 0x14, 0x25, 0x25, 0x13, 0x2F, 0x13, 0x25, + 0x26, 0x14, 0x89, 0x04, 0x2E, 0xFE, 0x49, 0x6C, 0xEC, 0x7A, 0x78, 0xED, + 0x6D, 0x01, 0xB7, 0xFE, 0x49, 0x6D, 0xEC, 0x79, 0x79, 0xEC, 0x6D, 0x01, + 0xB7, 0xFB, 0xD2, 0x01, 0xD1, 0x45, 0x91, 0x94, 0x48, 0x47, 0x95, 0x91, + 0x45, 0xFE, 0x2F, 0xFF, 0xFF, 0x00, 0x1F, 0x00, 0x00, 0x06, 0x2B, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, + 0xDE, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1F, 0x00, 0x00, 0x06, 0x2B, 0x04, + 0x2E, 0x00, 0x23, 0x00, 0x00, 0x41, 0x01, 0x23, 0x03, 0x26, 0x26, 0x27, + 0x33, 0x06, 0x06, 0x07, 0x03, 0x23, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, + 0x06, 0x07, 0x03, 0x23, 0x01, 0x33, 0x13, 0x1E, 0x02, 0x17, 0x23, 0x3E, + 0x02, 0x37, 0x13, 0x04, 0xE2, 0x01, 0x49, 0xE0, 0x79, 0x1E, 0x39, 0x1C, + 0x1D, 0x1C, 0x3B, 0x1F, 0x7B, 0xCD, 0x79, 0x1E, 0x3A, 0x1D, 0x1F, 0x1C, + 0x39, 0x1F, 0x7A, 0xE2, 0x01, 0x4A, 0xDC, 0x86, 0x15, 0x25, 0x25, 0x13, + 0x30, 0x13, 0x26, 0x26, 0x14, 0x88, 0x04, 0x2E, 0xFB, 0xD2, 0x01, 0xB7, + 0x6C, 0xEC, 0x7A, 0x79, 0xEC, 0x6D, 0xFE, 0x49, 0x01, 0xB7, 0x6D, 0xEC, + 0x79, 0x79, 0xEC, 0x6D, 0xFE, 0x49, 0x04, 0x2E, 0xFE, 0x2F, 0x44, 0x93, + 0x94, 0x48, 0x48, 0x94, 0x93, 0x44, 0x01, 0xD1, 0xFF, 0xFF, 0x00, 0x1F, + 0x00, 0x00, 0x06, 0x2B, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8D, 0x01, 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1F, + 0x00, 0x00, 0x06, 0x2B, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE9, 0x01, 0xAF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1F, + 0x00, 0x00, 0x06, 0x2B, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xE8, 0x02, 0x65, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1F, + 0x00, 0x00, 0x06, 0x2B, 0x05, 0xE5, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x37, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1F, + 0xFE, 0x43, 0x06, 0x2B, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x02, 0x37, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x1F, + 0x00, 0x00, 0x06, 0x2B, 0x06, 0x5F, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x90, 0x01, 0xE8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1F, + 0x00, 0x00, 0x04, 0x16, 0x04, 0x2E, 0x00, 0x1B, 0x00, 0x00, 0x73, 0x01, + 0x07, 0x01, 0x33, 0x17, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x37, + 0x33, 0x01, 0x37, 0x01, 0x23, 0x27, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, + 0x07, 0x07, 0x1F, 0x01, 0xB5, 0x02, 0xFE, 0x65, 0xF2, 0x7F, 0x2C, 0x4F, + 0x28, 0x5A, 0x29, 0x4E, 0x2D, 0x81, 0xEE, 0xFE, 0x61, 0x01, 0x01, 0xB0, + 0xF2, 0x94, 0x2C, 0x4D, 0x28, 0x58, 0x28, 0x4D, 0x2C, 0x96, 0x02, 0x69, + 0x8C, 0x02, 0x51, 0xC0, 0x44, 0x83, 0x41, 0x41, 0x83, 0x44, 0xC0, 0xFD, + 0xAE, 0x8B, 0xFD, 0x99, 0xDB, 0x43, 0x7E, 0x3F, 0x3F, 0x7E, 0x43, 0xDB, + 0xFF, 0xFF, 0x00, 0x1F, 0x00, 0x00, 0x04, 0x16, 0x05, 0xE5, 0x06, 0x26, + 0x03, 0xDF, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0x2C, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x1F, 0x00, 0x00, 0x04, 0x16, 0x05, 0xE4, 0x06, 0x26, + 0x03, 0xDF, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xD4, 0x00, 0xFF, 0xFF, + 0x00, 0x1F, 0x00, 0x00, 0x04, 0x16, 0x04, 0x2E, 0x06, 0x06, 0x03, 0xDF, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x11, 0xFE, 0x5E, 0x04, 0x6C, 0x04, 0x30, + 0x00, 0x10, 0x00, 0x21, 0x00, 0x00, 0x53, 0x01, 0x33, 0x01, 0x1E, 0x02, + 0x33, 0x33, 0x15, 0x23, 0x22, 0x26, 0x26, 0x27, 0x03, 0x01, 0x13, 0x01, + 0x2E, 0x02, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x17, 0x13, 0x01, + 0x33, 0x01, 0x28, 0x01, 0xDC, 0x5E, 0x01, 0x3C, 0x1D, 0x22, 0x2D, 0x2D, + 0x35, 0x35, 0x50, 0x6D, 0x59, 0x32, 0xBE, 0xFE, 0xD4, 0xFF, 0xFE, 0xE4, + 0x1F, 0x22, 0x2A, 0x2E, 0x3E, 0x3E, 0x50, 0x6E, 0x58, 0x31, 0xA2, 0x01, + 0x14, 0xDF, 0xFE, 0x40, 0xFE, 0x5E, 0x03, 0x75, 0xFD, 0xB1, 0x38, 0x30, + 0x0A, 0xB4, 0x1C, 0x59, 0x5C, 0x01, 0x66, 0xFD, 0xC9, 0x02, 0x9B, 0x02, + 0x0E, 0x3A, 0x30, 0x0A, 0xB5, 0x1D, 0x5A, 0x5C, 0xFE, 0xCB, 0x02, 0x06, + 0xFC, 0xCB, 0x00, 0x01, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, 0x04, 0x2E, + 0x00, 0x1A, 0x00, 0x00, 0x53, 0x37, 0x17, 0x16, 0x36, 0x36, 0x37, 0x37, + 0x01, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x33, + 0x01, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x85, 0x0C, 0x5E, 0x27, 0x3A, 0x2D, + 0x11, 0x2B, 0xFE, 0x64, 0xE4, 0xD5, 0x20, 0x35, 0x1A, 0x3C, 0x1A, 0x37, + 0x1F, 0xD4, 0xE1, 0xFE, 0x1F, 0x1E, 0x5B, 0x79, 0x4C, 0x25, 0x47, 0xFE, + 0x62, 0xB2, 0x02, 0x03, 0x17, 0x39, 0x31, 0x75, 0x04, 0x29, 0xFD, 0xB0, + 0x57, 0xAE, 0x56, 0x56, 0xAE, 0x57, 0x02, 0x50, 0xFB, 0x20, 0x50, 0x6B, + 0x37, 0x04, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xDB, 0x00, + 0x00, 0x02, 0x00, 0x1D, 0xFE, 0x5C, 0x05, 0x42, 0x05, 0xD5, 0x00, 0x11, + 0x00, 0x2C, 0x00, 0x00, 0x41, 0x37, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, + 0x15, 0x26, 0x22, 0x23, 0x22, 0x06, 0x06, 0x07, 0x07, 0x01, 0x37, 0x17, + 0x16, 0x36, 0x36, 0x37, 0x37, 0x01, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, + 0x36, 0x36, 0x37, 0x13, 0x33, 0x01, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x03, + 0x4D, 0x39, 0x1E, 0x45, 0x74, 0x65, 0x27, 0x41, 0x18, 0x11, 0x3E, 0x13, + 0x28, 0x2E, 0x1C, 0x0F, 0x33, 0xFC, 0x59, 0x0C, 0x5E, 0x27, 0x3A, 0x2D, + 0x11, 0x2B, 0xFE, 0x64, 0xE4, 0xD5, 0x20, 0x35, 0x1A, 0x3C, 0x1A, 0x37, + 0x1F, 0xD4, 0xE1, 0xFE, 0x1F, 0x1E, 0x5B, 0x79, 0x4C, 0x25, 0x47, 0x04, + 0x2E, 0x97, 0x55, 0x79, 0x42, 0x01, 0x01, 0xB0, 0x01, 0x18, 0x32, 0x26, + 0x86, 0xFA, 0x34, 0xB2, 0x02, 0x03, 0x17, 0x39, 0x31, 0x75, 0x04, 0x29, + 0xFD, 0xB0, 0x57, 0xAE, 0x56, 0x56, 0xAE, 0x57, 0x02, 0x50, 0xFB, 0x20, + 0x50, 0x6B, 0x37, 0x04, 0x00, 0x02, 0x00, 0x1E, 0xFE, 0x5C, 0x04, 0x30, + 0x04, 0x2E, 0x00, 0x03, 0x00, 0x1E, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x13, 0x37, 0x17, 0x16, 0x36, 0x36, 0x37, 0x37, 0x01, 0x33, 0x13, 0x16, + 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x33, 0x01, 0x0E, 0x02, 0x23, + 0x22, 0x26, 0x04, 0x26, 0xFC, 0x00, 0x60, 0x0C, 0x5E, 0x27, 0x3B, 0x2C, + 0x11, 0x2B, 0xFE, 0x64, 0xE5, 0xD5, 0x1F, 0x35, 0x1B, 0x3C, 0x1A, 0x36, + 0x1F, 0xD4, 0xE2, 0xFE, 0x1F, 0x1F, 0x5A, 0x79, 0x4C, 0x26, 0x46, 0x03, + 0x11, 0x8D, 0x8D, 0xFB, 0x51, 0xB2, 0x02, 0x03, 0x17, 0x39, 0x31, 0x75, + 0x04, 0x29, 0xFD, 0xB0, 0x57, 0xAE, 0x56, 0x56, 0xAE, 0x57, 0x02, 0x50, + 0xFB, 0x20, 0x50, 0x6B, 0x37, 0x04, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, + 0x04, 0x2E, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xE8, 0x01, 0x61, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, + 0x04, 0x2E, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8D, 0x00, 0x84, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, + 0x04, 0x2E, 0x05, 0x9D, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEB, 0x79, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, + 0x05, 0xE5, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x01, 0x33, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, + 0x06, 0x5F, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x90, + 0x00, 0xE4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, + 0x05, 0xE4, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE9, + 0x00, 0xAC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x43, 0x04, 0x2E, + 0x04, 0x2E, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, + 0x02, 0x5D, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, + 0x05, 0xE4, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x91, + 0x01, 0x0E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, + 0x05, 0xCE, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, + 0x35, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, 0x04, 0x2E, + 0x06, 0x06, 0x03, 0xE4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, + 0x04, 0x2E, 0x05, 0xE3, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8F, 0x00, 0x85, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, + 0x04, 0x2E, 0x05, 0x9D, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEB, 0x79, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, + 0x05, 0xE4, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, + 0xDB, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, 0x05, 0xE4, + 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, 0x8A, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x1D, 0x00, 0x00, 0x04, 0x2E, 0x05, 0xD2, + 0x00, 0x1A, 0x00, 0x00, 0x41, 0x07, 0x27, 0x26, 0x06, 0x06, 0x07, 0x07, + 0x01, 0x23, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0x23, + 0x01, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x03, 0xC6, 0x0B, 0x5F, 0x26, 0x3B, + 0x2C, 0x11, 0x2B, 0x01, 0x9B, 0xE4, 0xD5, 0x1E, 0x36, 0x1B, 0x3C, 0x1A, + 0x37, 0x1E, 0xD5, 0xE1, 0x01, 0xE1, 0x1F, 0x5A, 0x7A, 0x4B, 0x25, 0x47, + 0x05, 0xCC, 0xB2, 0x02, 0x03, 0x17, 0x39, 0x32, 0x74, 0xFB, 0xD7, 0x02, + 0x50, 0x57, 0xAE, 0x56, 0x56, 0xAE, 0x57, 0xFD, 0xB0, 0x04, 0xE0, 0x50, + 0x6B, 0x37, 0x04, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x04, 0xDF, 0x07, + 0x41, 0x06, 0x26, 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0xD3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x04, 0xDF, 0x07, + 0x88, 0x06, 0x26, 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, + 0x35, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x04, 0xDF, 0x07, + 0x89, 0x06, 0x26, 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x06, 0xD7, 0x00, + 0xE4, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, 0x04, + 0x2E, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x5D, 0x01, + 0x7F, 0x00, 0x00, 0x00, 0x03, 0x00, 0x1D, 0x00, 0x00, 0x04, 0x4D, 0x04, + 0x2E, 0x00, 0x03, 0x00, 0x08, 0x00, 0x0D, 0x00, 0x00, 0x61, 0x11, 0x33, + 0x11, 0x03, 0x01, 0x33, 0x01, 0x07, 0x23, 0x27, 0x01, 0x33, 0x01, 0x01, + 0xC8, 0xD2, 0xCE, 0xFE, 0x51, 0xF2, 0x01, 0x60, 0x1D, 0x3A, 0x1F, 0x01, + 0x62, 0xF2, 0xFE, 0x4B, 0x02, 0x01, 0xFD, 0xFF, 0x01, 0x6B, 0x02, 0xC3, + 0xFD, 0x9A, 0x5D, 0x60, 0x02, 0x63, 0xFD, 0x3D, 0x00, 0x01, 0x00, 0x65, + 0x00, 0x00, 0x03, 0xAB, 0x04, 0x2E, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, + 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x21, 0x15, 0x65, 0x02, + 0x39, 0xFD, 0xCB, 0x03, 0x3A, 0xFD, 0xD1, 0x02, 0x37, 0x98, 0x02, 0xDB, + 0x05, 0xB6, 0xA1, 0xFD, 0x2E, 0x05, 0xB6, 0xFF, 0xFF, 0x00, 0x65, 0x00, + 0x00, 0x03, 0xAB, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x39, 0x00, 0xAE, 0xFF, 0x41, 0x00, 0x01, 0x00, 0x65, 0xFF, + 0x28, 0x04, 0x10, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x00, 0x45, 0x35, 0x34, + 0x26, 0x23, 0x21, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, + 0x21, 0x32, 0x16, 0x15, 0x15, 0x03, 0x54, 0x36, 0x52, 0xFD, 0x99, 0x02, + 0x39, 0xFD, 0xCB, 0x03, 0x3A, 0xFD, 0xD1, 0x01, 0x63, 0x95, 0xA4, 0xD8, + 0x2F, 0x47, 0x62, 0x98, 0x02, 0xDB, 0x05, 0xB6, 0xA1, 0xFD, 0x2E, 0x05, + 0xB0, 0x8D, 0x51, 0x00, 0x02, 0x00, 0x65, 0xFE, 0x5E, 0x04, 0xB0, 0x04, + 0x2E, 0x00, 0x09, 0x00, 0x23, 0x00, 0x00, 0x73, 0x35, 0x01, 0x35, 0x21, + 0x35, 0x21, 0x15, 0x01, 0x15, 0x01, 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, + 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x17, 0x1E, 0x02, 0x33, 0x32, + 0x36, 0x37, 0x17, 0x06, 0x06, 0x65, 0x02, 0x39, 0xFD, 0xCB, 0x03, 0x3A, + 0xFD, 0xD1, 0x02, 0x7D, 0x3E, 0x6F, 0x6A, 0x3B, 0x2D, 0x40, 0x4C, 0x41, + 0x83, 0x8F, 0x61, 0x82, 0x69, 0x3C, 0x2F, 0x3D, 0x30, 0x1D, 0x1C, 0x33, + 0x1E, 0x51, 0x2C, 0x63, 0x98, 0x02, 0xDB, 0x05, 0xB6, 0xA1, 0xFD, 0x2E, + 0xBB, 0xFE, 0x5E, 0x34, 0x75, 0x61, 0x43, 0x41, 0x14, 0xB6, 0x28, 0x67, + 0x5F, 0x4C, 0x4F, 0x1C, 0x0F, 0x10, 0x9D, 0x19, 0x1C, 0x00, 0x02, 0x00, + 0x65, 0xFE, 0x5B, 0x04, 0x82, 0x04, 0x2E, 0x00, 0x0F, 0x00, 0x1B, 0x00, + 0x00, 0x41, 0x22, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x32, 0x37, 0x15, 0x06, 0x06, 0x01, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, + 0x15, 0x01, 0x15, 0x21, 0x15, 0x04, 0x09, 0x98, 0x9B, 0xD5, 0x35, 0x40, + 0x14, 0x3D, 0x11, 0x16, 0x3C, 0xFC, 0x35, 0x02, 0x39, 0xFD, 0xCB, 0x03, + 0x3A, 0xFD, 0xD1, 0x02, 0x37, 0xFE, 0x5B, 0x8B, 0x86, 0x94, 0x91, 0x33, + 0x2E, 0x01, 0xB1, 0x01, 0x02, 0x01, 0xA5, 0x98, 0x02, 0xDB, 0x05, 0xB6, + 0xA1, 0xFD, 0x2E, 0x05, 0xB6, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, + 0xAB, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x01, 0x44, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, + 0xAB, 0x05, 0xE5, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x16, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, + 0xAB, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8E, 0x00, 0x68, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, + 0xAB, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8D, 0x00, 0x68, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0xFE, 0x43, 0x03, + 0xAB, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8C, 0x01, 0x17, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x65, 0xFE, 0x92, 0x03, + 0xAB, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEB, 0x00, 0x5C, 0xF9, 0x92, 0x00, 0x02, 0x00, 0x85, 0x00, 0x00, 0x04, + 0x6D, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x53, 0x33, 0x11, + 0x23, 0x13, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, + 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x85, + 0xE0, 0xE0, 0x69, 0x01, 0x81, 0xA5, 0xE4, 0x75, 0x75, 0xE4, 0xA5, 0xFE, + 0x7F, 0x01, 0x81, 0x63, 0x85, 0x44, 0x44, 0x85, 0x63, 0xFE, 0x7F, 0x05, + 0xD2, 0xFA, 0x2E, 0x04, 0xA9, 0x75, 0xC6, 0x7A, 0x7A, 0xC5, 0x75, 0xBA, + 0x3C, 0x6F, 0x4B, 0x4D, 0x72, 0x40, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, + 0x04, 0x2E, 0x05, 0xD2, 0x00, 0x05, 0x00, 0x00, 0x41, 0x15, 0x21, 0x11, + 0x23, 0x11, 0x04, 0x2E, 0xFD, 0x40, 0xE0, 0x05, 0xD2, 0xC3, 0xFA, 0xF1, + 0x05, 0xD2, 0x00, 0x02, 0x00, 0x18, 0x00, 0x00, 0x05, 0x48, 0x05, 0xD2, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x25, 0x21, + 0x01, 0x23, 0x18, 0x02, 0x1A, 0xFE, 0x02, 0x18, 0xFB, 0xFE, 0x02, 0xD6, + 0xFE, 0x9A, 0x0C, 0x05, 0xD2, 0xFA, 0x2E, 0xBF, 0x04, 0x06, 0x00, 0x03, + 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x05, 0xE9, 0x00, 0x03, 0x00, 0x13, + 0x00, 0x23, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x24, 0x02, + 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x04, 0x2B, 0xFD, 0xAF, 0x01, 0x29, 0xC5, 0xFE, + 0xCB, 0xB1, 0xB1, 0x01, 0x35, 0xC5, 0xC5, 0x01, 0x34, 0xB1, 0xB1, 0xFE, + 0xCC, 0xC5, 0x80, 0xD0, 0x7A, 0x7A, 0xD0, 0x80, 0x80, 0xD0, 0x7B, 0x7B, + 0xD0, 0x03, 0x40, 0xAE, 0xAE, 0xFC, 0xA9, 0xC0, 0x01, 0x59, 0xE6, 0xE8, + 0x01, 0x59, 0xC0, 0xC0, 0xFE, 0xA7, 0xE8, 0xE6, 0xFE, 0xA7, 0xC0, 0xCC, + 0x82, 0xFC, 0xB5, 0xB6, 0xFD, 0x82, 0x82, 0xFD, 0xB6, 0xB5, 0xFC, 0x82, + 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x04, 0xA9, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x21, 0x15, 0x01, 0x35, + 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x56, 0x04, 0x53, 0xFC, 0x01, 0x03, + 0xAB, 0xFC, 0x0A, 0x04, 0x41, 0xC3, 0xC3, 0x02, 0x96, 0xC0, 0xC0, 0x02, + 0x79, 0xC3, 0xC3, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x05, + 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, + 0x11, 0x05, 0x32, 0xE0, 0xFD, 0x1C, 0xE0, 0x05, 0xD2, 0xFA, 0x2E, 0x05, + 0x0F, 0xFA, 0xF1, 0x05, 0xD2, 0x00, 0x01, 0x00, 0x51, 0x00, 0x00, 0x04, + 0xD9, 0x05, 0xD2, 0x00, 0x25, 0x00, 0x00, 0x73, 0x35, 0x01, 0x3E, 0x02, + 0x37, 0x15, 0x2E, 0x02, 0x27, 0x01, 0x35, 0x21, 0x15, 0x21, 0x22, 0x26, + 0x27, 0x27, 0x1E, 0x02, 0x17, 0x01, 0x15, 0x01, 0x0E, 0x02, 0x07, 0x37, + 0x36, 0x36, 0x33, 0x21, 0x15, 0x51, 0x01, 0xCB, 0x1C, 0x3F, 0x3E, 0x1A, + 0x1A, 0x3D, 0x3F, 0x1D, 0xFE, 0x57, 0x04, 0x5B, 0xFD, 0xC5, 0x4C, 0x93, + 0x47, 0x04, 0x21, 0x45, 0x46, 0x23, 0x01, 0x46, 0xFE, 0xBB, 0x28, 0x52, + 0x4F, 0x23, 0x04, 0x4F, 0x9F, 0x54, 0x02, 0x46, 0xA9, 0x01, 0xDD, 0x1E, + 0x3E, 0x3A, 0x19, 0x6E, 0x19, 0x39, 0x3D, 0x1D, 0x01, 0xB4, 0xAB, 0xC3, + 0x01, 0x01, 0x2D, 0x20, 0x3F, 0x44, 0x24, 0xFE, 0xAF, 0x4F, 0xFE, 0xAB, + 0x2A, 0x51, 0x4D, 0x22, 0x29, 0x01, 0x01, 0xC3, 0x00, 0x03, 0x00, 0x58, + 0xFF, 0xBD, 0x06, 0x88, 0x06, 0x15, 0x00, 0x11, 0x00, 0x23, 0x00, 0x27, + 0x00, 0x00, 0x65, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x33, + 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x23, 0x27, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x13, 0x11, 0x33, 0x11, 0x03, 0x22, 0xD1, 0xFE, 0xBE, 0xB7, + 0xB7, 0x01, 0x42, 0xD1, 0x9C, 0xD2, 0x01, 0x41, 0xB7, 0xB7, 0xFE, 0xBF, + 0xD2, 0x9C, 0x9C, 0x97, 0xDD, 0x77, 0x77, 0xDD, 0x97, 0x9C, 0x97, 0xDC, + 0x78, 0x78, 0xDC, 0x77, 0xDC, 0x3D, 0xAF, 0x01, 0x34, 0xC9, 0xC9, 0x01, + 0x35, 0xAE, 0xAE, 0xFE, 0xCB, 0xC9, 0xC9, 0xFE, 0xCC, 0xAF, 0xC4, 0x77, + 0xDC, 0x95, 0x96, 0xDB, 0x77, 0x77, 0xDB, 0x96, 0x95, 0xDC, 0x77, 0xFE, + 0xBC, 0x06, 0x58, 0xF9, 0xA8, 0x00, 0x02, 0x00, 0x8E, 0x00, 0x00, 0x06, + 0x53, 0x05, 0xD2, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x41, 0x33, 0x11, + 0x14, 0x0E, 0x02, 0x23, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x16, 0x33, 0x33, 0x32, 0x36, 0x36, 0x35, 0x01, 0x33, 0x11, + 0x23, 0x05, 0x79, 0xDA, 0x5A, 0xAB, 0xF5, 0x9C, 0x98, 0x9C, 0xF5, 0xAC, + 0x5A, 0xDA, 0x5A, 0xC3, 0x9E, 0x9B, 0x9F, 0xC3, 0x59, 0xFD, 0x8C, 0xD8, + 0xD8, 0x05, 0xD2, 0xFE, 0x74, 0xA8, 0xFE, 0xA8, 0x55, 0x55, 0xA8, 0xFE, + 0xA8, 0x01, 0x8C, 0xFE, 0x81, 0xB0, 0xDB, 0x64, 0x64, 0xDB, 0xB0, 0x01, + 0x7F, 0xFA, 0x2E, 0x00, 0x01, 0x00, 0x58, 0x00, 0x00, 0x05, 0xA3, 0x05, + 0xE6, 0x00, 0x29, 0x00, 0x00, 0x73, 0x35, 0x21, 0x35, 0x2E, 0x02, 0x35, + 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, + 0x15, 0x21, 0x15, 0x21, 0x11, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x17, 0x11, 0x5C, 0x01, 0x61, 0x73, + 0xA0, 0x52, 0x63, 0xB5, 0xF8, 0x95, 0x96, 0xF8, 0xB5, 0x63, 0x52, 0x9F, + 0x74, 0x01, 0x61, 0xFD, 0xDA, 0x9D, 0xAD, 0x71, 0xCB, 0x89, 0x89, 0xCC, + 0x70, 0xAC, 0x9D, 0xBF, 0x30, 0x2E, 0xA7, 0xE5, 0x88, 0x98, 0xFE, 0xB9, + 0x66, 0x66, 0xB9, 0xFE, 0x98, 0x89, 0xE4, 0xA7, 0x2E, 0x30, 0xBF, 0x01, + 0x49, 0x29, 0xFC, 0xBF, 0x9A, 0xDC, 0x77, 0x77, 0xDD, 0x99, 0xBE, 0xFC, + 0x2A, 0xFE, 0xB7, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x4E, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xAB, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x4E, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xAB, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x7A, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xD7, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x7D, 0xEA, 0xF3, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x8E, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xEB, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x7E, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x99, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x01, 0xF5, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x7F, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0xAD, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x0A, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x80, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0xA6, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x03, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x81, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0xB4, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x11, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x24, 0x07, + 0x09, 0x04, 0x27, 0x04, 0x10, 0x01, 0x81, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x83, 0x3A, 0xEF, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x07, 0x34, 0x06, + 0xFF, 0x04, 0x27, 0x04, 0x10, 0x01, 0x91, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x84, 0x3A, 0xE4, 0xFF, 0xFF, 0xFF, 0xC2, 0x00, 0x00, 0x06, 0x6D, 0x05, + 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xC9, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x88, 0xFF, 0x9A, 0x00, 0x01, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x06, + 0x7A, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x00, 0xD7, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x02, 0xF1, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0xEA, + 0xF3, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x06, 0x8E, 0x05, 0xE6, 0x04, + 0x27, 0x04, 0x10, 0x00, 0xEB, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, + 0x05, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7E, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFE, 0x18, 0x07, 0x99, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x01, + 0xF5, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x7F, 0xEA, 0xE6, 0x00, 0x07, 0x09, + 0xE4, 0x04, 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, + 0xAD, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, 0x0A, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x04, 0x24, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x80, 0xEA, + 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, 0xA6, 0x05, 0xE6, 0x04, + 0x27, 0x04, 0x10, 0x02, 0x03, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, + 0x1D, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x81, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, + 0x3A, 0xFE, 0x18, 0x07, 0xB4, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x10, 0x02, + 0x11, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x04, 0x2B, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x82, 0xEA, 0xE6, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, + 0x24, 0x07, 0x09, 0x04, 0x27, 0x04, 0x10, 0x01, 0x81, 0x00, 0x00, 0x00, + 0x27, 0x09, 0xE4, 0x03, 0x9B, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x83, 0x3A, + 0xEF, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0x18, 0x07, 0x34, 0x06, 0xFF, 0x04, + 0x27, 0x04, 0x10, 0x01, 0x91, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x03, + 0xAB, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, 0x3A, 0xE4, 0xFF, 0xFF, 0x00, + 0x58, 0xFE, 0x18, 0x05, 0xA3, 0x05, 0xE6, 0x06, 0x26, 0x04, 0x10, 0x00, + 0x00, 0x00, 0x07, 0x09, 0xE4, 0x02, 0x1A, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x5A, 0xFF, 0xEC, 0x05, 0x9C, 0x05, 0xD2, 0x00, 0x28, 0x00, 0x00, 0x53, + 0x36, 0x12, 0x37, 0x35, 0x21, 0x35, 0x21, 0x15, 0x0E, 0x02, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x35, + 0x21, 0x15, 0x21, 0x15, 0x16, 0x12, 0x15, 0x14, 0x02, 0x04, 0x23, 0x22, + 0x26, 0x26, 0x02, 0x5A, 0x01, 0xA1, 0x8C, 0xFE, 0xD2, 0x02, 0x26, 0x5B, + 0x96, 0x59, 0x74, 0xCD, 0x84, 0x85, 0xCC, 0x73, 0x59, 0x95, 0x5A, 0x02, + 0x25, 0xFE, 0xD2, 0x8B, 0xA3, 0xAD, 0xFE, 0xD0, 0xC4, 0x93, 0xF6, 0xB4, + 0x64, 0x02, 0xB9, 0xCC, 0x01, 0x28, 0x5A, 0x0C, 0xBF, 0xF2, 0x26, 0x9E, + 0xDA, 0x82, 0x92, 0xED, 0x8A, 0x8A, 0xED, 0x92, 0x82, 0xDA, 0x9E, 0x26, + 0xF2, 0xBF, 0x0C, 0x58, 0xFE, 0xD6, 0xCC, 0xD2, 0xFE, 0xBC, 0xB7, 0x69, + 0xBF, 0x01, 0x07, 0x00, 0x01, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xF6, 0x05, + 0xE6, 0x00, 0x20, 0x00, 0x00, 0x61, 0x11, 0x01, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x13, 0x13, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x01, 0x11, 0x02, 0x29, 0xFE, 0xCC, 0x10, 0x30, 0x22, 0x0D, 0x21, 0x07, + 0x24, 0x22, 0x3F, 0x26, 0x51, 0x7D, 0x32, 0xD7, 0xD9, 0x2B, 0x6F, 0x64, + 0x24, 0x42, 0x21, 0x26, 0x05, 0x20, 0x0F, 0x21, 0x2F, 0x10, 0xFE, 0xC9, + 0x02, 0x26, 0x02, 0xAD, 0x25, 0x20, 0x05, 0x03, 0xB9, 0x0F, 0x0E, 0x57, + 0x7B, 0xFE, 0x06, 0x01, 0xF7, 0x69, 0x6C, 0x0D, 0x0D, 0xBC, 0x03, 0x05, + 0x21, 0x24, 0xFD, 0x54, 0xFD, 0xD9, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, + 0x06, 0x54, 0x05, 0xE6, 0x04, 0x27, 0x04, 0x26, 0x01, 0x5E, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0xF3, 0x9D, 0xEE, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, + 0x04, 0xF6, 0x07, 0x88, 0x06, 0x26, 0x04, 0x26, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8B, 0x00, 0x51, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x0B, 0xFE, 0x46, + 0x05, 0x1B, 0x05, 0xD2, 0x00, 0x24, 0x00, 0x00, 0x53, 0x33, 0x01, 0x1E, + 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x03, + 0x37, 0x01, 0x33, 0x01, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x27, 0x0B, 0xF7, 0x01, 0xE5, 0x42, 0x61, 0x35, + 0x49, 0x86, 0x5D, 0x8B, 0xA2, 0x10, 0x21, 0x33, 0x45, 0x2D, 0x01, 0xE8, + 0xF7, 0xFD, 0x9A, 0x22, 0x33, 0x1C, 0x2B, 0x24, 0x24, 0x2C, 0x1A, 0x32, + 0x23, 0x05, 0xD2, 0xFB, 0x94, 0x95, 0xD0, 0x8D, 0x31, 0x4F, 0x71, 0x3D, + 0x85, 0x7A, 0x1D, 0x41, 0x54, 0x72, 0x98, 0x65, 0x04, 0x6C, 0xFA, 0xAA, + 0x4D, 0x73, 0x54, 0x1F, 0x22, 0x2D, 0x2E, 0x21, 0x20, 0x51, 0x73, 0x4F, + 0x00, 0x02, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xAA, 0x05, 0xD2, 0x00, 0x0E, + 0x00, 0x17, 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x21, 0x8E, 0x03, 0x94, 0xFD, 0x4A, 0x01, 0x51, 0x98, + 0xDD, 0x78, 0x78, 0xDD, 0x98, 0xFE, 0xAF, 0x01, 0x42, 0x8B, 0x97, 0x97, + 0x8B, 0xFE, 0xBE, 0x05, 0xD2, 0xC0, 0xFE, 0x55, 0x67, 0xBE, 0x84, 0x89, + 0xC8, 0x6D, 0xBC, 0x86, 0x7B, 0x73, 0x7E, 0x00, 0x02, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0x2E, 0x07, 0x0F, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x41, + 0x11, 0x33, 0x11, 0x37, 0x15, 0x21, 0x11, 0x23, 0x11, 0x03, 0x56, 0xD7, + 0x01, 0xFD, 0x40, 0xE0, 0x05, 0x10, 0x01, 0xFF, 0xFE, 0x01, 0xC2, 0xC3, + 0xFA, 0xF1, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x16, 0xFE, 0x5B, 0x04, 0x75, + 0x05, 0xD2, 0x04, 0x26, 0x09, 0x7B, 0x47, 0x00, 0x00, 0x26, 0x0B, 0x68, + 0xE4, 0x00, 0x00, 0x06, 0x0B, 0x3F, 0x5F, 0x00, 0x00, 0x02, 0x00, 0x3A, + 0xFE, 0xC0, 0x06, 0x1E, 0x05, 0xD2, 0x00, 0x10, 0x00, 0x18, 0x00, 0x00, + 0x53, 0x11, 0x33, 0x3E, 0x03, 0x37, 0x13, 0x21, 0x11, 0x33, 0x11, 0x23, + 0x11, 0x21, 0x11, 0x13, 0x21, 0x11, 0x21, 0x03, 0x06, 0x02, 0x06, 0x3A, + 0x78, 0x25, 0x41, 0x36, 0x29, 0x0D, 0x32, 0x03, 0xC3, 0xA5, 0xD7, 0xFB, + 0xC9, 0xA1, 0x02, 0xE8, 0xFD, 0xEB, 0x24, 0x0D, 0x2F, 0x45, 0xFE, 0xC0, + 0x02, 0x03, 0x20, 0x63, 0x9A, 0xE1, 0x9C, 0x02, 0x75, 0xFA, 0xF1, 0xFD, + 0xFD, 0x01, 0x40, 0xFE, 0xC0, 0x02, 0x03, 0x04, 0x4C, 0xFE, 0x4E, 0x9D, + 0xFE, 0xFB, 0xC0, 0x00, 0x02, 0x00, 0x1C, 0x00, 0x00, 0x07, 0x8C, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x09, + 0x02, 0x33, 0x01, 0x21, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x21, 0x01, + 0x04, 0x45, 0xE0, 0xFC, 0xB7, 0x01, 0xD5, 0xFE, 0x57, 0xFF, 0x01, 0x6E, + 0x02, 0x45, 0x01, 0x6A, 0xFF, 0xFE, 0x59, 0x01, 0xD0, 0xFB, 0xFE, 0x81, + 0xFD, 0x87, 0xFE, 0x7D, 0x05, 0xD2, 0xFA, 0x2E, 0x05, 0xD2, 0xFA, 0x2E, + 0x02, 0xFF, 0x02, 0xD3, 0xFD, 0x72, 0x02, 0x8E, 0xFD, 0x2C, 0xFD, 0x02, + 0x02, 0x85, 0xFD, 0x7B, 0xFF, 0xFF, 0x00, 0x1C, 0xFE, 0xC0, 0x07, 0xDE, + 0x05, 0xD2, 0x04, 0x26, 0x04, 0x2E, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, + 0x06, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5E, 0xFF, 0xE9, 0x04, 0x8A, + 0x05, 0xE9, 0x06, 0x06, 0x05, 0x3F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8E, + 0x00, 0x00, 0x05, 0x2A, 0x05, 0xD2, 0x00, 0x0C, 0x00, 0x00, 0x73, 0x11, + 0x33, 0x11, 0x33, 0x01, 0x21, 0x01, 0x01, 0x21, 0x01, 0x23, 0x11, 0x8E, + 0xE0, 0xBD, 0x01, 0xDD, 0x01, 0x0A, 0xFD, 0xD5, 0x02, 0x43, 0xFE, 0xF7, + 0xFE, 0x11, 0xC4, 0x05, 0xD2, 0xFD, 0x88, 0x02, 0x78, 0xFD, 0x2E, 0xFD, + 0x00, 0x02, 0x94, 0xFD, 0x6C, 0x00, 0x02, 0x00, 0x8E, 0x00, 0x00, 0x05, + 0x22, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x41, 0x33, 0x11, + 0x23, 0x01, 0x11, 0x33, 0x11, 0x21, 0x01, 0x21, 0x01, 0x01, 0x23, 0x01, + 0x21, 0x11, 0x01, 0xDB, 0xA4, 0xA4, 0xFE, 0xB3, 0xDD, 0x01, 0x4F, 0x01, + 0x46, 0x01, 0x04, 0xFE, 0x7A, 0x01, 0xA4, 0xFF, 0xFE, 0xA7, 0xFE, 0xA1, + 0x04, 0x42, 0xFD, 0x4A, 0xFE, 0x74, 0x05, 0xD2, 0xFD, 0x74, 0x02, 0x8C, + 0xFD, 0x23, 0xFD, 0x0B, 0x02, 0x73, 0xFD, 0x8D, 0x00, 0x02, 0x00, 0x8E, + 0xFE, 0xC5, 0x04, 0xF6, 0x05, 0xD2, 0x00, 0x11, 0x00, 0x1B, 0x00, 0x00, + 0x41, 0x35, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x06, 0x06, 0x23, 0x27, + 0x32, 0x36, 0x35, 0x26, 0x26, 0x23, 0x01, 0x11, 0x33, 0x11, 0x33, 0x01, + 0x21, 0x01, 0x23, 0x11, 0x01, 0xB6, 0xD4, 0xBD, 0x01, 0x10, 0x93, 0x7B, + 0xE5, 0xA0, 0x02, 0x8B, 0x9C, 0x01, 0xD1, 0xB3, 0xFE, 0x04, 0xDC, 0x96, + 0x01, 0xE6, 0x01, 0x10, 0xFD, 0x69, 0xF5, 0x02, 0x8B, 0xB4, 0x8C, 0xFE, + 0xFD, 0xB5, 0xB0, 0xFE, 0x88, 0xB9, 0xCC, 0xB1, 0xBC, 0xD4, 0xFD, 0x75, + 0x05, 0xD2, 0xFD, 0x80, 0x02, 0x80, 0xFC, 0xB9, 0xFD, 0x75, 0x00, 0x01, + 0x00, 0x3A, 0x00, 0x00, 0x05, 0x34, 0x05, 0xD2, 0x00, 0x12, 0x00, 0x00, + 0x73, 0x35, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x21, 0x11, 0x23, 0x11, + 0x21, 0x03, 0x0E, 0x03, 0x23, 0x3A, 0x28, 0x47, 0x54, 0x2D, 0x0D, 0x4C, + 0x03, 0xB1, 0xDF, 0xFD, 0xFA, 0x3E, 0x0C, 0x38, 0x60, 0x95, 0x69, 0xC3, + 0x3B, 0xA1, 0x9A, 0x03, 0x99, 0xFA, 0x2E, 0x05, 0x0F, 0xFD, 0x0D, 0x90, + 0xCD, 0x82, 0x3D, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x05, + 0xE9, 0x06, 0x06, 0x01, 0x6F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0xC0, 0x05, 0x0B, 0x05, 0xD2, 0x06, 0x26, 0x0B, 0x49, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3E, 0x01, 0xE1, 0x00, 0x00, 0x00, 0x01, 0x00, 0x18, 0x00, + 0x00, 0x04, 0xDF, 0x05, 0xD2, 0x00, 0x18, 0x00, 0x00, 0x73, 0x35, 0x33, + 0x32, 0x36, 0x37, 0x37, 0x01, 0x33, 0x13, 0x1E, 0x02, 0x17, 0x23, 0x36, + 0x12, 0x37, 0x13, 0x33, 0x01, 0x0E, 0x02, 0x23, 0xEA, 0x6C, 0x49, 0x52, + 0x14, 0x1C, 0xFD, 0xF7, 0xF9, 0xBC, 0x2D, 0x4D, 0x46, 0x23, 0x44, 0x31, + 0x66, 0x3E, 0xAA, 0xF4, 0xFD, 0xF8, 0x22, 0x58, 0x8E, 0x71, 0xC4, 0x2E, + 0x35, 0x47, 0x04, 0x64, 0xFE, 0x59, 0x65, 0xBC, 0xB3, 0x5C, 0x86, 0x01, + 0x10, 0x9A, 0x01, 0xA7, 0xFB, 0x30, 0x4E, 0x75, 0x3F, 0x00, 0x03, 0x00, + 0x58, 0xFF, 0xBB, 0x06, 0x33, 0x06, 0x17, 0x00, 0x11, 0x00, 0x23, 0x00, + 0x27, 0x00, 0x00, 0x65, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, + 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x23, 0x27, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x13, 0x11, 0x33, 0x11, 0x02, 0xF9, 0xCF, 0xFE, 0xD2, + 0xA4, 0xA4, 0x01, 0x2E, 0xCF, 0x99, 0xD0, 0x01, 0x2D, 0xA4, 0xA4, 0xFE, + 0xD3, 0xD0, 0x91, 0x89, 0x96, 0xCE, 0x6B, 0x6B, 0xCE, 0x96, 0x89, 0x95, + 0xCF, 0x6A, 0x6A, 0xCF, 0x6C, 0xDB, 0x69, 0x9D, 0x01, 0x1F, 0xC4, 0xC5, + 0x01, 0x1E, 0x9D, 0x9D, 0xFE, 0xE2, 0xC5, 0xC4, 0xFE, 0xE1, 0x9D, 0xC7, + 0x66, 0xC5, 0x8E, 0x8E, 0xC5, 0x66, 0x66, 0xC4, 0x8F, 0x8E, 0xC5, 0x66, + 0xFE, 0x8B, 0x06, 0x5C, 0xF9, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0xC0, + 0x05, 0x9A, 0x05, 0xD2, 0x04, 0x26, 0x0B, 0x49, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3D, 0x04, 0x43, 0x00, 0x00, 0x00, 0x03, 0x00, 0x3A, 0xFE, 0xC0, + 0x07, 0x18, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x11, 0x00, 0x00, + 0x53, 0x35, 0x21, 0x15, 0x01, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, + 0x03, 0x11, 0x23, 0x35, 0x21, 0x03, 0x3A, 0x04, 0x78, 0x01, 0xD6, 0xFB, + 0x84, 0xDF, 0x02, 0xBD, 0xE0, 0x48, 0x4E, 0x01, 0x26, 0x05, 0x05, 0x10, + 0xC2, 0xC2, 0xFA, 0xF0, 0x05, 0xD2, 0xFA, 0xF1, 0x05, 0x0F, 0xF8, 0xEE, + 0x01, 0x40, 0xC1, 0xFD, 0xFF, 0x00, 0x02, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0xDE, 0x05, 0xD2, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, + 0x06, 0x06, 0x13, 0x11, 0x33, 0x11, 0x02, 0x7B, 0x9D, 0xE5, 0x7C, 0xE0, + 0xAE, 0x91, 0x78, 0xD0, 0x58, 0x60, 0xDA, 0xFC, 0xE0, 0x02, 0x24, 0x65, + 0xD5, 0xA8, 0x01, 0xCC, 0xFE, 0x3C, 0x9C, 0x8F, 0x4E, 0x3F, 0xCF, 0x39, + 0x44, 0xFD, 0xDC, 0x05, 0xD2, 0xFA, 0x2E, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0xC0, 0x05, 0x6E, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3D, 0x04, 0x16, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, + 0x00, 0x04, 0xDE, 0x05, 0xD2, 0x06, 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3B, 0x01, 0xD8, 0xFF, 0xA4, 0x00, 0x02, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0xEF, 0x05, 0xD2, 0x00, 0x10, 0x00, 0x14, 0x00, 0x00, 0x41, + 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x35, 0x36, 0x36, 0x03, 0x11, 0x23, 0x11, 0x02, 0xF1, 0x9E, 0xE5, + 0x7B, 0xE0, 0xAD, 0x91, 0x78, 0xD1, 0x57, 0x60, 0xD9, 0xFC, 0xE0, 0x03, + 0xAE, 0x65, 0xD4, 0xA9, 0xFE, 0x34, 0x01, 0xC4, 0x9C, 0x8F, 0x4E, 0x3F, + 0xCF, 0x39, 0x44, 0x02, 0x24, 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x3A, 0x00, 0x00, 0x06, 0x69, 0x05, 0xD2, 0x00, 0x11, 0x00, 0x15, 0x00, + 0x19, 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x36, 0x36, 0x03, 0x11, 0x23, + 0x11, 0x05, 0x35, 0x21, 0x15, 0x04, 0x71, 0x9E, 0xE1, 0x79, 0xE0, 0x4C, + 0x8C, 0x61, 0x77, 0xCD, 0x58, 0x5F, 0xD6, 0xF8, 0xE0, 0xFE, 0x29, 0x04, + 0xC7, 0x03, 0x91, 0x65, 0xD5, 0xA9, 0xFE, 0x52, 0x01, 0xA7, 0x68, 0x83, + 0x3F, 0x4D, 0x40, 0xCF, 0x39, 0x45, 0x01, 0xA5, 0xFA, 0xCA, 0x05, 0x36, + 0x27, 0xC3, 0xC3, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x06, 0xFB, 0x05, + 0xD2, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, + 0x21, 0x11, 0x33, 0x11, 0x21, 0x8E, 0xE0, 0x01, 0xE7, 0xDF, 0x01, 0xE7, + 0xE0, 0xF9, 0x93, 0x05, 0xD2, 0xFA, 0xF1, 0x05, 0x0F, 0xFA, 0xF1, 0x05, + 0x0F, 0xFA, 0x2E, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0xC0, 0x07, 0x8A, 0x05, + 0xD2, 0x04, 0x26, 0x04, 0x40, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x06, + 0x33, 0x00, 0x00, 0x00, 0x02, 0x00, 0x3A, 0x00, 0x00, 0x06, 0x15, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x13, + 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, + 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x3A, 0x01, + 0xE6, 0x5B, 0x01, 0x96, 0xA0, 0xE7, 0x7D, 0x7B, 0xE4, 0x9F, 0xFD, 0xC8, + 0xE0, 0x01, 0x49, 0x8C, 0xA3, 0x4A, 0x88, 0x5D, 0xFE, 0x73, 0x05, 0x10, + 0xC2, 0xC2, 0xFE, 0x87, 0x6E, 0xCC, 0x8B, 0x8F, 0xD1, 0x72, 0x05, 0xD2, + 0xFA, 0xEE, 0x95, 0x7E, 0x51, 0x75, 0x3F, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x06, 0x3D, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x44, 0x00, 0x00, 0x00, + 0x07, 0x00, 0xC5, 0x04, 0xCF, 0x00, 0x00, 0x00, 0x01, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0xC4, 0x05, 0xD2, 0x00, 0x16, 0x00, 0x00, 0x41, 0x21, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x21, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x01, 0x2A, 0x01, 0x95, + 0xA1, 0xE7, 0x7D, 0x7B, 0xE4, 0x9F, 0xFD, 0xC8, 0xE0, 0x01, 0x49, 0x8C, + 0xA3, 0x4A, 0x88, 0x5D, 0xFE, 0x73, 0x03, 0x97, 0x6E, 0xCC, 0x8B, 0x8F, + 0xD1, 0x72, 0x05, 0xD2, 0xFA, 0xEE, 0x95, 0x7E, 0x51, 0x75, 0x3F, 0x00, + 0x02, 0x00, 0x3A, 0x00, 0x00, 0x08, 0x6B, 0x05, 0xD2, 0x00, 0x10, 0x00, + 0x27, 0x00, 0x00, 0x73, 0x35, 0x33, 0x32, 0x36, 0x36, 0x37, 0x13, 0x21, + 0x15, 0x21, 0x03, 0x0E, 0x03, 0x23, 0x01, 0x21, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x21, 0x3A, 0x28, 0x47, 0x54, 0x2D, 0x0D, 0x4C, + 0x02, 0xD2, 0xFD, 0xF9, 0x3F, 0x0B, 0x38, 0x60, 0x94, 0x69, 0x04, 0x63, + 0x01, 0x95, 0xA1, 0xE7, 0x7C, 0x7A, 0xE5, 0x9E, 0xFD, 0xC8, 0xE0, 0x01, + 0x49, 0x8B, 0xA4, 0x4A, 0x88, 0x5D, 0xFE, 0x73, 0xC2, 0x3B, 0xA0, 0x99, + 0x03, 0x9C, 0xC2, 0xFD, 0x0A, 0x8F, 0xCC, 0x82, 0x3D, 0x03, 0x97, 0x6E, + 0xCC, 0x8B, 0x8F, 0xD1, 0x72, 0x05, 0xD2, 0xFA, 0xEE, 0x95, 0x7E, 0x51, + 0x75, 0x3F, 0x00, 0x02, 0x00, 0x8E, 0x00, 0x00, 0x08, 0x87, 0x05, 0xD2, + 0x00, 0x07, 0x00, 0x1E, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x15, + 0x21, 0x11, 0x01, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x21, 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x21, 0x8E, 0xDE, 0x03, 0x4D, 0xFC, 0xB3, 0x03, 0x82, 0x01, 0x95, 0xA1, + 0xE7, 0x7C, 0x7A, 0xE5, 0x9E, 0xFD, 0xC8, 0xE0, 0x01, 0x49, 0x8C, 0xA3, + 0x4A, 0x88, 0x5D, 0xFE, 0x73, 0x05, 0xD2, 0xFD, 0xC2, 0xBD, 0xFD, 0x29, + 0x03, 0x97, 0x6E, 0xCC, 0x8B, 0x8F, 0xD1, 0x72, 0x05, 0xD2, 0xFA, 0xEE, + 0x95, 0x7E, 0x51, 0x75, 0x3F, 0x00, 0x02, 0x00, 0x53, 0xFF, 0xE9, 0x05, + 0x76, 0x05, 0xE9, 0x00, 0x25, 0x00, 0x29, 0x00, 0x00, 0x45, 0x22, 0x2E, + 0x02, 0x27, 0x33, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x03, 0x33, 0x32, 0x04, + 0x12, 0x15, 0x14, 0x02, 0x04, 0x01, 0x35, 0x21, 0x15, 0x02, 0xC4, 0x7A, + 0xD3, 0xA5, 0x6C, 0x13, 0xE3, 0x11, 0x48, 0x67, 0x82, 0x4C, 0x8F, 0xD1, + 0x72, 0x72, 0xD1, 0x8F, 0x4C, 0x83, 0x67, 0x48, 0x10, 0xE3, 0x14, 0x6D, + 0xA5, 0xD2, 0x79, 0xCC, 0x01, 0x37, 0xAF, 0xB0, 0xFE, 0xC9, 0xFE, 0xAA, + 0x02, 0x90, 0x17, 0x49, 0x87, 0xBE, 0x75, 0x4C, 0x74, 0x4F, 0x29, 0x8B, + 0xFD, 0xAC, 0xAD, 0xFE, 0x8B, 0x29, 0x50, 0x74, 0x4C, 0x77, 0xBE, 0x88, + 0x47, 0xBF, 0xFE, 0xA6, 0xE8, 0xE6, 0xFE, 0xA6, 0xBF, 0x02, 0xAF, 0xBF, + 0xBF, 0x00, 0x04, 0x00, 0x8E, 0xFF, 0xE9, 0x07, 0xBC, 0x05, 0xE9, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x13, 0x11, 0x23, 0x11, 0x01, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, + 0x24, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x02, 0xAF, 0xFE, 0x53, 0x6C, 0xE0, 0x04, 0x84, 0xC5, 0xFE, 0xCB, + 0xB1, 0xB1, 0x01, 0x35, 0xC5, 0xC6, 0x01, 0x33, 0xB1, 0xB1, 0xFE, 0xCD, + 0xC6, 0x80, 0xD0, 0x7A, 0x7A, 0xD0, 0x80, 0x80, 0xD0, 0x7B, 0x7B, 0xD0, + 0x03, 0x4B, 0xB9, 0xB9, 0x02, 0x87, 0xFA, 0x2E, 0x05, 0xD2, 0xFA, 0x17, + 0xC0, 0x01, 0x59, 0xE6, 0xE8, 0x01, 0x59, 0xC0, 0xC0, 0xFE, 0xA7, 0xE8, + 0xE6, 0xFE, 0xA7, 0xC0, 0xCC, 0x82, 0xFC, 0xB5, 0xB6, 0xFD, 0x82, 0x82, + 0xFD, 0xB6, 0xB5, 0xFC, 0x82, 0x00, 0x02, 0x00, 0x3C, 0x00, 0x00, 0x04, + 0x91, 0x05, 0xD2, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x61, 0x23, 0x11, + 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x21, 0x15, 0x21, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x01, 0x23, 0x01, + 0x33, 0x04, 0x91, 0xDF, 0xFE, 0xBD, 0x62, 0x8B, 0x49, 0x48, 0x8A, 0x63, + 0x01, 0xA3, 0xFE, 0x5D, 0xA3, 0xEE, 0x82, 0x7C, 0xE8, 0xA2, 0x02, 0x30, + 0xFC, 0xA8, 0xFD, 0x01, 0x6A, 0xF6, 0x05, 0x11, 0x42, 0x7A, 0x54, 0x54, + 0x79, 0x42, 0xBF, 0x71, 0xD0, 0x8D, 0x8D, 0xD2, 0x72, 0xFA, 0x2E, 0x02, + 0xA0, 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0xA0, 0x04, 0xC8, 0x05, 0xD2, 0x04, + 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x47, 0x00, 0xC3, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0xA0, 0x08, 0x69, 0x05, 0xD2, 0x04, + 0x26, 0x04, 0x0C, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x47, 0x04, 0x63, 0x00, + 0x00, 0x00, 0x02, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x05, 0xE9, 0x00, + 0x25, 0x00, 0x29, 0x00, 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, + 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, 0x03, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x33, 0x0E, + 0x03, 0x01, 0x35, 0x21, 0x15, 0x03, 0x0A, 0xCB, 0xFE, 0xC9, 0xB0, 0xAF, + 0x01, 0x38, 0xCB, 0x79, 0xD2, 0xA6, 0x6C, 0x14, 0xE3, 0x10, 0x48, 0x67, + 0x83, 0x4B, 0x8F, 0xD2, 0x72, 0x72, 0xD2, 0x8F, 0x4B, 0x82, 0x68, 0x48, + 0x11, 0xE2, 0x13, 0x6C, 0xA5, 0xD3, 0xFD, 0x81, 0x02, 0x90, 0x17, 0xBF, + 0x01, 0x5A, 0xE6, 0xE8, 0x01, 0x5A, 0xBF, 0x47, 0x88, 0xBE, 0x77, 0x4C, + 0x74, 0x50, 0x29, 0x8B, 0xFE, 0xAD, 0xAC, 0xFD, 0x8B, 0x29, 0x4F, 0x74, + 0x4C, 0x75, 0xBE, 0x88, 0x48, 0x02, 0xAF, 0xBF, 0xBF, 0x00, 0x01, 0x00, + 0x58, 0xFF, 0xE8, 0x07, 0xA5, 0x05, 0xE9, 0x00, 0x42, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x02, 0x06, 0x06, 0x04, 0x23, 0x22, 0x24, 0x02, + 0x35, 0x34, 0x12, 0x24, 0x33, 0x15, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x24, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x0E, 0x02, 0x06, 0x6F, 0x59, 0xB0, 0x9C, 0x38, 0x69, 0x9C, + 0x56, 0x82, 0xE6, 0x96, 0x97, 0xE6, 0x82, 0x73, 0xC5, 0xFF, 0xFE, 0xE4, + 0x8E, 0xE9, 0xFE, 0xA9, 0xBB, 0xAF, 0x01, 0x35, 0xC7, 0x80, 0xD0, 0x7B, + 0x7F, 0xF1, 0xAB, 0x9C, 0x01, 0x15, 0xD6, 0x7A, 0x48, 0x81, 0x56, 0x57, + 0x80, 0x47, 0x54, 0x99, 0x69, 0x33, 0x7E, 0x56, 0x35, 0x71, 0x45, 0x46, + 0x2A, 0x64, 0x6F, 0x18, 0x22, 0x42, 0x30, 0x48, 0xC9, 0xF4, 0x87, 0xA7, + 0xFA, 0x89, 0x87, 0xF0, 0x9D, 0x9E, 0xFE, 0xFD, 0xC7, 0x87, 0x46, 0xBC, + 0x01, 0x58, 0xEB, 0xE5, 0x01, 0x5A, 0xC2, 0xCC, 0x82, 0xFD, 0xB6, 0xB2, + 0xFC, 0x85, 0x5E, 0xA8, 0xE0, 0x83, 0x65, 0x93, 0x50, 0x55, 0x9B, 0x6A, + 0x71, 0xD5, 0xAA, 0x32, 0x27, 0x19, 0x16, 0x1D, 0xB5, 0x13, 0x1E, 0x0F, + 0x00, 0x02, 0x00, 0x11, 0xFF, 0xE9, 0x06, 0x6B, 0x05, 0xE9, 0x00, 0x28, + 0x00, 0x35, 0x00, 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x36, + 0x36, 0x33, 0x32, 0x04, 0x12, 0x15, 0x15, 0x21, 0x35, 0x21, 0x07, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x3E, 0x02, 0x37, 0x33, 0x0E, 0x03, 0x01, 0x33, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x33, 0x15, 0x23, 0x22, 0x26, 0x35, 0x03, 0xED, 0xC7, 0xFE, 0xCB, + 0xB1, 0x64, 0xB7, 0xFA, 0x96, 0xC7, 0x01, 0x1E, 0x9B, 0xFB, 0x71, 0x03, + 0xF2, 0x3D, 0x62, 0xBC, 0x88, 0x88, 0xCF, 0x74, 0x75, 0xD1, 0x89, 0x4D, + 0x82, 0x68, 0x48, 0x10, 0xE4, 0x12, 0x6E, 0xA7, 0xD5, 0xFB, 0xAB, 0xCD, + 0x0F, 0x2B, 0x2A, 0x52, 0x60, 0x8C, 0x97, 0x17, 0xC1, 0x01, 0x5A, 0xE6, + 0xAB, 0x01, 0x19, 0xCC, 0x6F, 0xBF, 0xFE, 0xB2, 0xD9, 0x77, 0xBA, 0x3B, + 0x98, 0xF0, 0x8A, 0x8B, 0xFE, 0xAA, 0xAC, 0xFF, 0x8A, 0x2B, 0x50, 0x70, + 0x44, 0x70, 0xBA, 0x87, 0x4A, 0x04, 0x38, 0x71, 0x2E, 0x2D, 0x0F, 0xBA, + 0x93, 0x89, 0x00, 0x01, 0x00, 0x5F, 0xFF, 0xE9, 0x05, 0x89, 0x05, 0xE9, + 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x24, 0x02, 0x35, 0x35, 0x21, 0x15, + 0x21, 0x37, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x03, 0x33, 0x32, 0x04, + 0x12, 0x15, 0x14, 0x02, 0x06, 0x06, 0x02, 0xDE, 0xC6, 0xFE, 0xE2, 0x9B, + 0x04, 0x8E, 0xFC, 0x0E, 0x3D, 0x62, 0xBC, 0x88, 0x89, 0xCE, 0x74, 0x75, + 0xD1, 0x89, 0x4D, 0x82, 0x68, 0x48, 0x10, 0xE4, 0x13, 0x6D, 0xA7, 0xD5, + 0x79, 0xC7, 0x01, 0x35, 0xB1, 0x64, 0xB7, 0xFA, 0x17, 0xBF, 0x01, 0x4E, + 0xD9, 0x77, 0xBA, 0x3B, 0x98, 0xF0, 0x8A, 0x8B, 0xFE, 0xAA, 0xAD, 0xFE, + 0x8A, 0x2B, 0x50, 0x70, 0x44, 0x71, 0xB9, 0x87, 0x4A, 0xC1, 0xFE, 0xA6, + 0xE6, 0xAB, 0xFE, 0xE7, 0xCC, 0x6F, 0xFF, 0xFF, 0x00, 0x5E, 0xFF, 0xE9, + 0x04, 0x80, 0x05, 0xD2, 0x06, 0x06, 0x05, 0x49, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x18, 0x00, 0x00, 0x05, 0x7A, 0x05, 0xD6, 0x00, 0x0F, 0x00, 0x00, + 0x41, 0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x07, 0x01, 0x21, + 0x01, 0x33, 0x01, 0x33, 0x03, 0xFE, 0x34, 0x8C, 0x81, 0x3B, 0x1A, 0x3A, + 0x2F, 0x19, 0xFE, 0x5F, 0xFE, 0xF5, 0xFD, 0xE6, 0xF0, 0x01, 0xAF, 0x06, + 0x04, 0x9A, 0x9B, 0xA1, 0xC8, 0x49, 0x45, 0xFB, 0x80, 0x05, 0xD2, 0xFB, + 0x1B, 0xFF, 0xFF, 0x00, 0x3A, 0xFF, 0xA0, 0x06, 0x4C, 0x05, 0xD2, 0x04, + 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x47, 0x02, 0x47, 0x00, + 0x00, 0x00, 0x03, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x39, 0x06, 0x2B, 0x00, + 0x03, 0x00, 0x1E, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x01, 0x27, 0x01, 0x01, + 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x33, + 0x2E, 0x02, 0x27, 0x37, 0x16, 0x04, 0x12, 0x12, 0x15, 0x14, 0x02, 0x06, + 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x03, 0xAB, 0xFD, 0x91, 0x28, 0x02, 0x6F, 0xFE, 0xBE, + 0x99, 0xE2, 0x7C, 0x76, 0xCC, 0x7E, 0x50, 0x79, 0x55, 0x1A, 0x10, 0x25, + 0x8F, 0xE1, 0x9F, 0x3D, 0x88, 0x01, 0x05, 0xD4, 0x7D, 0x7D, 0xE2, 0x97, + 0x61, 0x84, 0x45, 0x3E, 0x83, 0x69, 0x62, 0x83, 0x41, 0x3D, 0x83, 0x05, + 0x84, 0xFE, 0xCD, 0x77, 0x01, 0x32, 0xF9, 0xEE, 0x01, 0x89, 0xF2, 0x9C, + 0x9C, 0xEF, 0x89, 0x35, 0x4E, 0x29, 0x5E, 0xCE, 0xC2, 0x4D, 0x88, 0x38, + 0xBD, 0xFE, 0xFC, 0xFE, 0xBA, 0xC2, 0xB4, 0xFE, 0xFD, 0x8A, 0xB3, 0x01, + 0x5C, 0x9F, 0x64, 0x5C, 0xAC, 0x70, 0x64, 0xA6, 0x64, 0x61, 0xA4, 0x64, + 0x00, 0x01, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, 0x04, 0x43, 0x00, 0x2D, + 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x1E, 0x02, 0x17, 0x33, 0x17, 0x13, 0x23, 0x03, 0x2E, 0x03, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x13, + 0x33, 0x03, 0x07, 0x23, 0x0E, 0x03, 0x02, 0x3E, 0x95, 0xE2, 0x7D, 0x7E, + 0xE3, 0x97, 0x57, 0x8A, 0x69, 0x4E, 0x19, 0x3F, 0x1E, 0xA2, 0xC6, 0x93, + 0x17, 0x3D, 0x51, 0x69, 0x43, 0x5B, 0x85, 0x46, 0x46, 0x82, 0x5B, 0x44, + 0x6E, 0x54, 0x3C, 0x14, 0x82, 0xC5, 0x93, 0x1E, 0x3D, 0x1D, 0x4E, 0x6A, + 0x89, 0x18, 0x8F, 0xFB, 0xA2, 0xA4, 0xFC, 0x8F, 0x32, 0x5C, 0x7F, 0x4D, + 0xC6, 0xFD, 0xDD, 0x02, 0x1A, 0x55, 0x89, 0x60, 0x34, 0x5C, 0xA8, 0x73, + 0x71, 0xA8, 0x5C, 0x36, 0x63, 0x88, 0x53, 0x02, 0x1A, 0xFD, 0xE6, 0xCC, + 0x4D, 0x80, 0x5F, 0x34, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xE4, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, + 0x01, 0x67, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, + 0x01, 0x8E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, + 0x01, 0x6A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7F, + 0x00, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, + 0x00, 0xB8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x81, + 0x00, 0xE1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x82, + 0x00, 0xC2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x07, 0x1A, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x83, + 0x01, 0x20, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x07, 0x1A, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x84, + 0x01, 0x18, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, + 0x05, 0xE4, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, + 0x01, 0x77, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, + 0x01, 0x5E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0x8E, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, 0x05, 0xEF, 0x06, 0x26, + 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x5E, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x7E, 0x01, 0x6A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFE, 0x18, 0x04, 0xF2, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, + 0x00, 0x27, 0x09, 0xE4, 0x01, 0x5E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7F, + 0x00, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, + 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, + 0x01, 0x5E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x80, 0x00, 0xB8, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, 0x05, 0xEF, 0x06, 0x26, + 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x5E, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x81, 0x00, 0xE1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFE, 0x18, 0x04, 0xF2, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, + 0x00, 0x27, 0x09, 0xE4, 0x01, 0x5E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x82, + 0x00, 0xC2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, + 0x07, 0x1A, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, + 0x01, 0x5E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x83, 0x01, 0x20, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, 0x07, 0x1A, 0x06, 0x26, + 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x5E, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x84, 0x01, 0x18, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xE8, 0x04, 0xF2, 0x05, 0xE3, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0x00, 0xAD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFF, 0xE8, 0x04, 0xF2, 0x05, 0x9D, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, + 0x00, 0x07, 0x06, 0xEB, 0x00, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, + 0xFE, 0x18, 0x04, 0xF2, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, + 0x00, 0x27, 0x09, 0xE4, 0x01, 0x5E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x88, + 0x01, 0x77, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, + 0x04, 0x43, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x07, 0x09, 0xE4, + 0x01, 0x5E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, + 0x05, 0xE4, 0x06, 0x26, 0x04, 0x54, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, + 0x01, 0x5E, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x67, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0xF2, 0x05, 0xCE, 0x06, 0x26, + 0x04, 0x54, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, 0x5D, 0x00, 0xFF, 0xFF, + 0x00, 0x4A, 0xFE, 0x18, 0x04, 0xF2, 0x05, 0xCE, 0x06, 0x26, 0x04, 0x54, + 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x01, 0x5E, 0x00, 0x00, 0x00, 0x06, + 0x06, 0xEC, 0x5D, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x4A, + 0x05, 0xE6, 0x00, 0x1C, 0x00, 0x35, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x35, 0x1E, + 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x37, 0x11, + 0x01, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x14, 0x16, + 0x16, 0x7D, 0x75, 0xD0, 0x87, 0x86, 0xCC, 0x72, 0x53, 0x96, 0x66, 0x71, + 0xB3, 0x68, 0x76, 0xCE, 0x85, 0x53, 0x87, 0x61, 0x1C, 0x26, 0x01, 0x0F, + 0x57, 0x7E, 0x44, 0x86, 0x74, 0x86, 0x4F, 0x4C, 0x6D, 0x3C, 0x83, 0x6F, + 0x73, 0x87, 0x3F, 0x79, 0xFE, 0x5E, 0x05, 0xD5, 0x86, 0xC3, 0x6A, 0x67, + 0xB5, 0x76, 0x63, 0x8C, 0x54, 0x10, 0x3B, 0x0D, 0x60, 0xA8, 0x7C, 0x83, + 0xCA, 0x71, 0x33, 0x68, 0x50, 0x12, 0xFD, 0x74, 0x02, 0x4F, 0x40, 0x76, + 0x51, 0x77, 0x8C, 0xB3, 0x37, 0x66, 0x45, 0x64, 0x73, 0x79, 0x68, 0xFD, + 0x63, 0x47, 0x71, 0x40, 0x00, 0x02, 0x00, 0x1D, 0xFE, 0x5E, 0x04, 0x2E, + 0x04, 0x2E, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, 0x45, 0x01, 0x33, 0x13, + 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x33, 0x01, 0x03, 0x11, + 0x33, 0x11, 0x01, 0xC1, 0xFE, 0x5C, 0xE4, 0xD5, 0x1F, 0x35, 0x1A, 0x36, + 0x1A, 0x34, 0x1E, 0xD2, 0xE2, 0xFE, 0x5C, 0xCF, 0xD5, 0x24, 0x04, 0x52, + 0xFD, 0xB0, 0x57, 0xAE, 0x56, 0x56, 0xAE, 0x57, 0x02, 0x50, 0xFB, 0xAE, + 0xFE, 0x82, 0x01, 0xA9, 0xFE, 0x57, 0x00, 0x02, 0x00, 0x4A, 0xFF, 0xE8, + 0x04, 0x3E, 0x05, 0xD2, 0x00, 0x26, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x15, 0x2E, 0x03, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x33, 0x15, 0x21, 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, + 0x02, 0x17, 0x1E, 0x03, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x02, 0x45, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, 0x97, 0x54, 0x86, 0x5E, 0x31, + 0x62, 0xC3, 0x91, 0xF4, 0xFE, 0xE6, 0x3F, 0x53, 0x29, 0x2F, 0x50, 0x65, + 0x36, 0x41, 0x83, 0x6D, 0x43, 0x7F, 0xE3, 0x98, 0x5A, 0x82, 0x46, 0x46, + 0x82, 0x5A, 0x59, 0x83, 0x47, 0x47, 0x82, 0x18, 0x82, 0xEE, 0xA3, 0xA3, + 0xE6, 0x7A, 0x5D, 0x11, 0x32, 0x46, 0x5D, 0x3B, 0x53, 0x7A, 0x43, 0xB6, + 0x19, 0x31, 0x25, 0x27, 0x33, 0x24, 0x1B, 0x10, 0x12, 0x4A, 0x7A, 0xB3, + 0x7C, 0xA5, 0xF1, 0x81, 0xB8, 0x4F, 0x9C, 0x6F, 0x71, 0x9E, 0x55, 0x54, + 0x9F, 0x71, 0x70, 0x9B, 0x4F, 0x00, 0x02, 0x00, 0x4B, 0xFF, 0xE9, 0x03, + 0xBA, 0x04, 0x44, 0x00, 0x1B, 0x00, 0x35, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x03, + 0x22, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, + 0x01, 0xFF, 0x7B, 0xC6, 0x73, 0x3C, 0x71, 0xA1, 0x65, 0x82, 0x7A, 0x44, + 0x67, 0x39, 0x7A, 0x68, 0x46, 0x61, 0x37, 0x08, 0xD0, 0x0A, 0x74, 0xC0, + 0x72, 0x67, 0x9F, 0x6C, 0x36, 0x6B, 0xBE, 0x7B, 0x79, 0xB5, 0x6A, 0x0A, + 0xCB, 0x08, 0x6E, 0x60, 0x5F, 0x73, 0x6C, 0x6F, 0x70, 0x17, 0x4C, 0x8E, + 0x64, 0x46, 0x6A, 0x48, 0x23, 0x6C, 0x25, 0x47, 0x34, 0x4B, 0x58, 0x29, + 0x4F, 0x3A, 0x0A, 0x6D, 0x97, 0x4E, 0x02, 0x1A, 0x21, 0x40, 0x61, 0x40, + 0x60, 0x8F, 0x50, 0x4F, 0x90, 0x64, 0x0B, 0x4B, 0x59, 0x55, 0x41, 0x3B, + 0x52, 0x74, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, 0x03, 0xBA, 0x05, 0xE4, + 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x24, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x4B, 0xFF, 0xE9, 0x03, 0xE1, 0x04, 0x44, + 0x00, 0x1A, 0x00, 0x36, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x3E, 0x02, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x03, 0x22, 0x2E, 0x02, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x23, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x01, 0xFE, + 0x7B, 0xC5, 0x73, 0x3C, 0x71, 0xA1, 0x65, 0x5A, 0x52, 0x67, 0x7D, 0x79, + 0x68, 0x59, 0x77, 0x3B, 0xD3, 0x70, 0xD7, 0x90, 0x67, 0x9F, 0x6C, 0x36, + 0x6B, 0xBD, 0x7B, 0x70, 0xB0, 0x7B, 0x41, 0xD3, 0x3C, 0x75, 0x57, 0x5E, + 0x73, 0x6C, 0x6F, 0x48, 0x17, 0x4C, 0x8E, 0x64, 0x46, 0x6A, 0x48, 0x23, + 0x6C, 0x53, 0x4D, 0x4B, 0x58, 0x51, 0xAD, 0x89, 0xB7, 0xFB, 0x7F, 0x02, + 0x1A, 0x21, 0x40, 0x61, 0x40, 0x60, 0x8F, 0x50, 0x46, 0x8B, 0xD0, 0x89, + 0x83, 0xAA, 0x53, 0x55, 0x41, 0x3B, 0x52, 0x74, 0xFF, 0xFF, 0x00, 0x4B, + 0xFF, 0xE9, 0x03, 0xBA, 0x04, 0x44, 0x06, 0x06, 0x04, 0x71, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x49, 0xFF, 0xE9, 0x03, 0xB7, 0x04, 0x44, 0x00, 0x1B, + 0x00, 0x35, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x03, 0x23, 0x35, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x02, 0x04, 0x7D, 0xC0, 0x74, 0x0A, + 0xD0, 0x07, 0x37, 0x62, 0x46, 0x69, 0x79, 0x39, 0x66, 0x45, 0x7B, 0x83, + 0x65, 0xA1, 0x71, 0x3B, 0x72, 0xC6, 0x86, 0x77, 0x71, 0x6F, 0x6C, 0x73, + 0x5F, 0x60, 0x6E, 0x08, 0xCB, 0x0A, 0x6A, 0xB5, 0x79, 0x7B, 0xBE, 0x6B, + 0x37, 0x6B, 0x9F, 0x17, 0x4E, 0x97, 0x6D, 0x0A, 0x3A, 0x4F, 0x29, 0x58, + 0x4B, 0x34, 0x47, 0x25, 0x6C, 0x23, 0x48, 0x6A, 0x46, 0x64, 0x8E, 0x4C, + 0x02, 0x1A, 0x74, 0x52, 0x3B, 0x41, 0x55, 0x59, 0x4B, 0x0B, 0x64, 0x90, + 0x4F, 0x50, 0x8F, 0x60, 0x40, 0x61, 0x40, 0x21, 0x00, 0x02, 0x00, 0x4A, + 0xFF, 0xE9, 0x03, 0xE0, 0x04, 0x44, 0x00, 0x1A, 0x00, 0x36, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, + 0x06, 0x06, 0x03, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x23, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x0E, 0x02, 0x02, 0x2D, 0x9B, 0xD8, 0x70, 0xD3, 0x3B, 0x77, + 0x59, 0x69, 0x78, 0x7D, 0x67, 0x52, 0x5A, 0x65, 0xA1, 0x71, 0x3C, 0x73, + 0xC5, 0x87, 0x4E, 0x48, 0x6F, 0x6C, 0x72, 0x5E, 0x57, 0x76, 0x3C, 0xD3, + 0x41, 0x7B, 0xB0, 0x70, 0x7B, 0xBD, 0x6B, 0x36, 0x6C, 0x9E, 0x17, 0x7F, + 0xFB, 0xB7, 0x89, 0xAD, 0x51, 0x58, 0x4B, 0x4D, 0x53, 0x6C, 0x23, 0x48, + 0x6A, 0x46, 0x64, 0x8E, 0x4C, 0x02, 0x1A, 0x74, 0x52, 0x3B, 0x41, 0x55, + 0x53, 0xAA, 0x83, 0x89, 0xD0, 0x8B, 0x46, 0x50, 0x8F, 0x60, 0x40, 0x61, + 0x40, 0x21, 0x00, 0x03, 0x00, 0x49, 0xFF, 0xE9, 0x05, 0x70, 0x04, 0x44, + 0x00, 0x11, 0x00, 0x2D, 0x00, 0x47, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x27, 0x07, 0x27, 0x25, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, + 0x06, 0x01, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x03, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x0E, 0x02, 0x04, 0xE4, 0x46, 0x5D, 0x3C, 0x14, 0xB6, 0x08, 0x01, + 0x3E, 0x12, 0x24, 0x34, 0x27, 0x12, 0x28, 0x12, 0x22, 0x23, 0x45, 0xFC, + 0xFC, 0x7D, 0xC0, 0x74, 0x0A, 0xD0, 0x07, 0x37, 0x62, 0x46, 0x69, 0x79, + 0x39, 0x66, 0x45, 0x7B, 0x83, 0x65, 0xA1, 0x71, 0x3B, 0x72, 0xC6, 0x86, + 0x77, 0x71, 0x6F, 0x6C, 0x73, 0x5F, 0x60, 0x6E, 0x08, 0xCB, 0x0A, 0x6A, + 0xB5, 0x79, 0x7B, 0xBE, 0x6B, 0x37, 0x6B, 0x9F, 0x01, 0x9D, 0x33, 0x73, + 0x5E, 0x56, 0xA1, 0x8D, 0x79, 0x8C, 0x3A, 0x08, 0x06, 0x8B, 0x10, 0x10, + 0xFE, 0x4C, 0x4E, 0x97, 0x6D, 0x0A, 0x3A, 0x4F, 0x29, 0x58, 0x4B, 0x34, + 0x47, 0x25, 0x6C, 0x23, 0x48, 0x6A, 0x46, 0x64, 0x8E, 0x4C, 0x02, 0x1A, + 0x74, 0x52, 0x3B, 0x41, 0x55, 0x59, 0x4B, 0x0B, 0x64, 0x90, 0x4F, 0x50, + 0x8F, 0x60, 0x40, 0x61, 0x40, 0x21, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, + 0x03, 0xBA, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7D, 0x01, 0x4C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, + 0x03, 0xBA, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7E, 0x01, 0x27, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, + 0x03, 0xBA, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7F, 0x00, 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, + 0x03, 0xBA, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x80, 0x00, 0x75, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, + 0x03, 0xBA, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x81, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, + 0x03, 0xBA, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x82, 0x00, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFF, 0xE9, + 0x03, 0xBA, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x71, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x88, 0x01, 0x34, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4A, 0xFE, 0xE1, + 0x03, 0xAE, 0x05, 0xD2, 0x00, 0x2B, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x37, + 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x02, 0x22, 0x23, 0x21, 0x35, 0x21, 0x15, + 0x01, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x32, 0x16, 0x15, + 0x15, 0x02, 0xEC, 0x15, 0x33, 0x2D, 0x51, 0x94, 0xD5, 0x73, 0x4A, 0x8D, + 0x64, 0x85, 0x26, 0x4F, 0x4F, 0x24, 0x02, 0x26, 0x52, 0x53, 0x53, 0x27, + 0xFE, 0xC9, 0x03, 0x24, 0xFE, 0x97, 0x5F, 0x7B, 0x3C, 0x4A, 0x88, 0x5C, + 0x36, 0x96, 0x97, 0xFE, 0xE1, 0xBD, 0x26, 0x2B, 0x11, 0x5F, 0xB1, 0x7C, + 0x62, 0xA4, 0xB7, 0x7D, 0xA4, 0x2F, 0x59, 0x55, 0x28, 0x4D, 0x02, 0x02, + 0x02, 0xB6, 0x9F, 0xFE, 0x3C, 0x77, 0x9A, 0x7A, 0x48, 0x53, 0x66, 0x30, + 0x7C, 0x8D, 0xC9, 0x00, 0x01, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x10, 0x04, + 0x41, 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x01, 0x53, 0xD6, 0xD0, 0x01, 0x2B, 0x32, 0xBA, + 0x83, 0x6E, 0xAD, 0x63, 0xD5, 0x7A, 0x6F, 0x48, 0x74, 0x43, 0x02, 0x6C, + 0xFD, 0x94, 0x04, 0x2E, 0xFE, 0xF7, 0x90, 0x8C, 0x5F, 0xBA, 0x8B, 0xFB, + 0xC1, 0x04, 0x25, 0x7E, 0x83, 0x3C, 0x7C, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF3, 0x01, 0x70, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7D, 0x01, 0x97, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7E, 0x01, 0x73, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x7F, 0x00, 0xE9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x80, 0x00, 0xC1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x81, 0x00, 0xEA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x82, 0x00, 0xCB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x07, 0x1A, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x83, 0x01, 0x2A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x07, 0x1A, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x84, 0x01, 0x21, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5E, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x88, 0x01, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x18, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, 0x97, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x18, 0x04, 0x10, 0x05, 0xEF, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, + 0x07, 0x0A, 0x7E, 0x01, 0x73, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x18, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x00, 0xE9, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x18, 0x04, 0x10, 0x05, 0xEF, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, + 0x07, 0x0A, 0x80, 0x00, 0xC1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x18, 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, 0x07, 0x0A, 0x81, 0x00, 0xEA, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x18, 0x04, 0x10, 0x05, 0xEF, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, + 0x07, 0x0A, 0x82, 0x00, 0xCB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x18, 0x04, 0x10, 0x07, 0x1A, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, 0x07, 0x0A, 0x83, 0x01, 0x2A, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x18, 0x04, 0x10, 0x07, 0x1A, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, + 0x07, 0x0A, 0x84, 0x01, 0x21, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x18, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, + 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, 0x07, 0x0A, 0x88, 0x01, 0x80, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x18, 0x04, 0x10, 0x04, 0x41, 0x06, + 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x06, 0x09, 0xE4, 0x05, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x18, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x04, + 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x05, 0x00, 0x00, 0x07, 0x0A, + 0xF3, 0x01, 0x70, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, + 0x10, 0x05, 0xCE, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x06, 0x06, + 0xEC, 0x66, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x18, 0x04, 0x10, 0x05, + 0xCE, 0x06, 0x26, 0x04, 0x80, 0x00, 0x00, 0x00, 0x26, 0x09, 0xE4, 0x05, + 0x00, 0x00, 0x06, 0x06, 0xEC, 0x66, 0x00, 0x00, 0x03, 0x00, 0x58, 0xFF, + 0xE8, 0x04, 0x6F, 0x05, 0xEA, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x23, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x02, 0x35, 0x35, 0x34, 0x12, 0x36, 0x33, 0x32, + 0x16, 0x12, 0x15, 0x15, 0x14, 0x02, 0x06, 0x27, 0x32, 0x12, 0x35, 0x35, + 0x34, 0x02, 0x23, 0x22, 0x02, 0x15, 0x15, 0x14, 0x12, 0x03, 0x35, 0x21, + 0x15, 0x02, 0x63, 0xA0, 0xEB, 0x80, 0x80, 0xEB, 0xA0, 0xA1, 0xEB, 0x80, + 0x80, 0xEB, 0xA1, 0x92, 0xA4, 0xA4, 0x92, 0x91, 0xA4, 0xA4, 0xD7, 0x02, + 0xD5, 0x18, 0xB2, 0x01, 0x47, 0xDF, 0x52, 0xE0, 0x01, 0x46, 0xB2, 0xB2, + 0xFE, 0xBA, 0xE0, 0x52, 0xDF, 0xFE, 0xB9, 0xB2, 0xB8, 0x01, 0x07, 0xF6, + 0x98, 0xF6, 0x01, 0x07, 0xFE, 0xF9, 0xF6, 0x98, 0xF6, 0xFE, 0xF9, 0x01, + 0xF2, 0xAE, 0xAE, 0x00, 0x01, 0x00, 0x7D, 0xFF, 0xFE, 0x01, 0xEE, 0x04, + 0x2E, 0x00, 0x0F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0xA0, 0x9A, + 0x89, 0xD6, 0x29, 0x3A, 0x0C, 0x1A, 0x09, 0x09, 0x11, 0x29, 0x02, 0x7A, + 0x88, 0x03, 0x2E, 0xFC, 0xEC, 0x3F, 0x2D, 0x01, 0x01, 0xAD, 0x02, 0x03, + 0xFF, 0xFF, 0xFF, 0xA7, 0xFF, 0xFE, 0x02, 0x28, 0x07, 0x1A, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x4B, 0xFE, 0xCB, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xFE, 0x01, 0xEE, 0x05, 0xE4, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x05, 0x00, 0xFF, 0xFF, + 0xFF, 0x8F, 0xFF, 0xFE, 0x02, 0x40, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x99, + 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0xFE, 0xA1, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x7C, 0xFF, 0xFE, 0x01, 0xEE, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x99, + 0x00, 0x00, 0x00, 0x06, 0x0A, 0x7D, 0x2C, 0x00, 0xFF, 0xFF, 0x00, 0x58, + 0xFF, 0xFE, 0x01, 0xEE, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x7E, 0x08, 0x00, 0xFF, 0xFF, 0xFF, 0xCE, 0xFF, 0xFE, + 0x01, 0xEE, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7F, 0xFF, 0x7E, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xA6, 0xFF, 0xFE, + 0x01, 0xEE, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x80, 0xFF, 0x56, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xCF, 0xFF, 0xFE, + 0x02, 0x22, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x81, 0xFF, 0x7F, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xB0, 0xFF, 0xFE, + 0x02, 0x09, 0x05, 0xEF, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x82, 0xFF, 0x60, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xBE, 0xFF, 0xFE, + 0x02, 0x19, 0x07, 0x1A, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x83, 0xBE, 0x00, 0xFF, 0xFF, 0xFF, 0xB6, 0xFF, 0xFE, 0x02, 0x10, + 0x07, 0x1A, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x84, + 0xB6, 0x00, 0xFF, 0xFF, 0x00, 0x3D, 0xFF, 0xFE, 0x01, 0xEE, 0x05, 0xE4, + 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x88, 0x15, 0x00, + 0xFF, 0xFF, 0xFF, 0xB6, 0xFF, 0xFE, 0x02, 0x18, 0x05, 0xE3, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8F, 0xFF, 0x4B, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xCF, 0xFF, 0xFE, 0x02, 0x00, 0x05, 0x9D, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x3E, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0x3C, 0xFF, 0xFE, 0x02, 0x94, 0x06, 0x84, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x85, 0xFE, 0x4E, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0xB5, 0xFF, 0xFE, 0x02, 0x1B, 0x05, 0xCE, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0xFE, 0xFB, 0x00, 0x00, + 0xFF, 0xFF, 0xFF, 0x88, 0xFF, 0xFE, 0x02, 0x39, 0x06, 0xEE, 0x06, 0x26, + 0x04, 0x99, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x87, 0xFF, 0x0B, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x1D, 0xFF, 0xFB, 0x04, 0xB3, 0x05, 0xD7, 0x00, 0x26, + 0x00, 0x00, 0x73, 0x01, 0x27, 0x2E, 0x02, 0x07, 0x07, 0x27, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x01, 0x1E, 0x02, 0x37, 0x37, 0x17, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, + 0x06, 0x07, 0x03, 0x1D, 0x01, 0x9D, 0x2F, 0x12, 0x2D, 0x3A, 0x27, 0x5B, + 0x0C, 0x1E, 0x49, 0x24, 0x4A, 0x79, 0x5C, 0x1E, 0x01, 0x6E, 0x13, 0x2C, + 0x39, 0x26, 0x4F, 0x0C, 0x1B, 0x40, 0x21, 0x4A, 0x78, 0x59, 0x1E, 0x85, + 0x1F, 0x37, 0x1A, 0x3C, 0x1A, 0x35, 0x20, 0xD5, 0x04, 0x2A, 0x7A, 0x31, + 0x39, 0x16, 0x03, 0x01, 0xB2, 0x02, 0x03, 0x35, 0x6B, 0x51, 0xFC, 0x49, + 0x31, 0x39, 0x17, 0x02, 0x01, 0xB1, 0x02, 0x03, 0x35, 0x6B, 0x51, 0x01, + 0x64, 0x57, 0xAD, 0x57, 0x56, 0xAE, 0x57, 0xFD, 0xB0, 0x00, 0x01, 0x00, + 0x4F, 0xFE, 0xE1, 0x03, 0xDA, 0x05, 0xD2, 0x00, 0x33, 0x00, 0x00, 0x41, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x22, 0x24, 0x35, 0x34, 0x3E, 0x03, + 0x37, 0x17, 0x2E, 0x03, 0x35, 0x34, 0x36, 0x36, 0x37, 0x15, 0x05, 0x35, + 0x21, 0x15, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x21, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x32, 0x16, 0x15, 0x15, 0x03, + 0x18, 0x15, 0x32, 0x2D, 0x66, 0xE7, 0xFE, 0xF8, 0x2A, 0x4B, 0x65, 0x77, + 0x41, 0x05, 0x44, 0x7A, 0x5E, 0x35, 0x56, 0x98, 0x64, 0xFE, 0xB0, 0x03, + 0x27, 0x8D, 0xDE, 0xEB, 0x96, 0x91, 0xE9, 0xFF, 0x00, 0xA5, 0xB2, 0xA4, + 0x99, 0x4F, 0x96, 0x97, 0xFE, 0xE1, 0xBE, 0x26, 0x2B, 0x10, 0xD3, 0xB6, + 0x49, 0x75, 0x5B, 0x40, 0x26, 0x05, 0x19, 0x04, 0x26, 0x46, 0x67, 0x46, + 0x59, 0x7E, 0x46, 0x06, 0x0D, 0x04, 0xAF, 0xA6, 0x08, 0x0D, 0x71, 0x7C, + 0x63, 0x74, 0xB5, 0x82, 0x7A, 0x74, 0x7B, 0x7D, 0x8C, 0xC9, 0x00, 0x03, + 0x00, 0x2E, 0xFF, 0xFE, 0x04, 0xC9, 0x04, 0x2E, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x25, 0x11, 0x33, 0x11, + 0x01, 0x35, 0x21, 0x15, 0x04, 0x59, 0x93, 0x8D, 0xD3, 0x2E, 0x3B, 0x10, + 0x19, 0x0D, 0x08, 0x13, 0x2E, 0xFC, 0x69, 0xD3, 0xFE, 0x80, 0x04, 0x9B, + 0x02, 0x81, 0x81, 0x02, 0xFC, 0xFD, 0x1E, 0x3B, 0x32, 0x01, 0x01, 0xAC, + 0x02, 0x03, 0x02, 0x03, 0xFC, 0xFC, 0x04, 0x03, 0x79, 0xB5, 0xB5, 0x00, + 0x02, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x04, 0x41, 0x00, 0x13, 0x00, + 0x23, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x7D, 0x7D, 0xE0, 0x97, 0x98, 0xE0, 0x7C, 0x74, 0xCF, + 0x88, 0x4E, 0x7B, 0x5A, 0x20, 0x04, 0x01, 0x1B, 0x5A, 0x81, 0x44, 0x43, + 0x7F, 0x5A, 0x5B, 0x86, 0x49, 0x48, 0x84, 0xFE, 0x5E, 0x03, 0xAF, 0xB0, + 0xFC, 0x88, 0x86, 0xF9, 0xAC, 0xA6, 0xFA, 0x8B, 0x2F, 0x53, 0x36, 0xFD, + 0xBB, 0x02, 0x44, 0x5C, 0xA8, 0x71, 0x71, 0xA7, 0x5C, 0x5C, 0xA7, 0x71, + 0x70, 0xA8, 0x5D, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x05, + 0xEF, 0x06, 0x26, 0x04, 0xAE, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x01, + 0xB6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x05, + 0xEF, 0x06, 0x26, 0x04, 0xAE, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x01, + 0x92, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xC7, 0xFE, 0x5E, 0x04, 0x65, 0x04, + 0x41, 0x06, 0x26, 0x04, 0xAE, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, + 0x4E, 0xFC, 0x5D, 0x00, 0x01, 0x00, 0x4A, 0xFE, 0xE1, 0x04, 0x14, 0x04, + 0x44, 0x00, 0x26, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x23, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, + 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x15, 0x03, 0x16, 0x4D, 0x46, 0x3E, 0x98, 0xE4, + 0x7F, 0x7F, 0xE4, 0x98, 0x5D, 0x9F, 0x7A, 0x4D, 0x0C, 0xD1, 0x09, 0x29, + 0x40, 0x55, 0x36, 0x5D, 0x83, 0x44, 0x44, 0x83, 0x5D, 0x45, 0x65, 0x96, + 0x53, 0xFE, 0xE1, 0xA0, 0x3E, 0x41, 0x81, 0xEF, 0xA4, 0xA5, 0xFD, 0x8E, + 0x37, 0x63, 0x89, 0x52, 0x0B, 0x2C, 0x4A, 0x35, 0x1E, 0x5F, 0xAA, 0x70, + 0x6E, 0x9F, 0x54, 0x44, 0x83, 0x5E, 0xAD, 0x00, 0x01, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0xAE, 0x04, 0x2E, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x15, 0x21, 0x07, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x35, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x02, 0x47, + 0x98, 0xE6, 0x7F, 0x7F, 0xE5, 0x98, 0x02, 0x68, 0xFE, 0x5B, 0xC3, 0x5D, + 0x82, 0x45, 0x45, 0x83, 0x5D, 0x5D, 0x83, 0x45, 0x45, 0x83, 0x5D, 0x69, + 0xB9, 0x8B, 0x4F, 0x7F, 0xE4, 0x18, 0x8C, 0xF7, 0xA2, 0xA3, 0xF4, 0x8A, + 0xAF, 0x08, 0x5A, 0xA2, 0x6E, 0x6C, 0xA6, 0x5C, 0x5D, 0xA5, 0x6C, 0x6E, + 0xA2, 0x5A, 0x56, 0x38, 0x73, 0xB0, 0x78, 0x98, 0xF0, 0x8A, 0x00, 0x01, + 0x00, 0x11, 0xFF, 0xFD, 0x03, 0xBC, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x35, 0x11, 0x21, 0x35, 0x21, 0x15, 0x21, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x02, 0xA8, 0x96, 0x95, + 0xFE, 0x94, 0x03, 0xAB, 0xFE, 0x96, 0x32, 0x40, 0x18, 0x34, 0x19, 0x08, + 0x21, 0x45, 0x03, 0x84, 0x82, 0x02, 0x74, 0xB7, 0xB7, 0xFD, 0xA6, 0x3D, + 0x32, 0x02, 0x01, 0xAF, 0x03, 0x02, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x04, 0x2E, 0x06, 0x06, 0x03, 0xB2, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x06, 0x84, 0x06, 0x26, 0x03, 0xB2, + 0x00, 0x00, 0x00, 0x06, 0x06, 0xE4, 0xAC, 0x00, 0xFF, 0xFF, 0x00, 0x7D, + 0xFF, 0xEC, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, + 0x00, 0x06, 0x0A, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0xF3, 0x01, 0x64, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7D, 0x01, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7E, 0x01, 0x67, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x7F, 0x00, 0xDD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x80, 0x00, 0xB5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x81, 0x00, 0xDE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xEF, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x82, 0x00, 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x07, 0x1A, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x83, 0x01, 0x1E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x07, 0x1A, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x84, 0x01, 0x15, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x88, 0x01, 0x74, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0xE3, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8F, 0x00, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x05, 0x9D, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, + 0x06, 0xEB, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, + 0x04, 0x10, 0x06, 0x84, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, + 0x0A, 0x85, 0xAD, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, + 0x05, 0xCE, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x06, 0xEC, + 0x5A, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x06, 0xEE, + 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x87, 0x00, 0x6A, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x4A, 0xFE, 0x5E, 0x05, 0x7B, 0x04, 0x45, + 0x00, 0x2D, 0x00, 0x00, 0x41, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x02, 0x04, 0x23, 0x23, 0x22, 0x24, 0x02, 0x35, 0x34, + 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x11, 0x02, 0x74, 0x49, 0x8F, 0x6B, 0x86, 0xCB, 0x73, 0xA2, 0xFE, 0xDD, + 0xC3, 0x3D, 0xBF, 0xFE, 0xEA, 0x97, 0x6C, 0xC8, 0x8A, 0x0F, 0x52, 0x6E, + 0x38, 0x61, 0xB6, 0x80, 0x3D, 0x87, 0xC2, 0x69, 0x38, 0x64, 0x43, 0x2B, + 0x38, 0x19, 0xFE, 0x5E, 0x04, 0x74, 0x75, 0xA6, 0x58, 0x8A, 0xF0, 0x98, + 0xB5, 0xFE, 0xF9, 0x8F, 0x8D, 0x01, 0x01, 0xAF, 0x93, 0xF0, 0x94, 0x07, + 0xB6, 0x04, 0x5D, 0x9C, 0x64, 0x84, 0xB0, 0x58, 0x5C, 0xB7, 0x86, 0x64, + 0x99, 0x57, 0x28, 0x49, 0x33, 0xFB, 0x75, 0x00, 0x03, 0x00, 0x4A, 0xFE, + 0x5E, 0x05, 0x17, 0x05, 0xD3, 0x00, 0x11, 0x00, 0x23, 0x00, 0x27, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x13, 0x11, 0x33, 0x11, 0x02, 0x47, 0x98, 0xE6, 0x7F, 0x7F, 0xE6, + 0x98, 0xD3, 0x99, 0xE5, 0x7F, 0x7F, 0xE5, 0x99, 0xD3, 0xD3, 0x5D, 0x83, + 0x45, 0x45, 0x83, 0x5D, 0xD3, 0x5C, 0x84, 0x45, 0x45, 0x83, 0x5D, 0xD3, + 0x18, 0x8D, 0xFB, 0xA4, 0xA6, 0xFC, 0x8E, 0x8E, 0xFC, 0xA6, 0xA4, 0xFB, + 0x8D, 0xB7, 0x5E, 0xA9, 0x6E, 0x71, 0xA8, 0x5F, 0x5F, 0xA8, 0x71, 0x6E, + 0xA9, 0x5E, 0xFD, 0xBF, 0x07, 0x75, 0xF8, 0x8B, 0x00, 0x02, 0x00, 0x7D, + 0xFE, 0x5E, 0x05, 0xAC, 0x05, 0x49, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, + 0x45, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x23, + 0x03, 0x11, 0x33, 0x11, 0x02, 0xAA, 0xAD, 0xFA, 0x86, 0xD5, 0x4F, 0x9A, + 0x6F, 0xD5, 0x70, 0x99, 0x4F, 0xD5, 0x85, 0xFA, 0xAE, 0xD5, 0xD5, 0x14, + 0x85, 0xFA, 0xAF, 0x02, 0x14, 0xFD, 0xF1, 0x7A, 0xAA, 0x57, 0x57, 0xAA, + 0x7A, 0x02, 0x0F, 0xFD, 0xEC, 0xAF, 0xFA, 0x85, 0xFE, 0x72, 0x06, 0xEB, + 0xF9, 0x15, 0x00, 0x01, 0x00, 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x04, 0x2E, + 0x00, 0x31, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x37, 0x33, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, + 0x33, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, + 0x33, 0x0E, 0x02, 0x01, 0xED, 0x77, 0xBE, 0x6E, 0x4D, 0x70, 0x34, 0xE7, + 0x3F, 0x77, 0x4B, 0x70, 0x6A, 0x63, 0x64, 0xCF, 0x5C, 0x65, 0x6C, 0x72, + 0x4C, 0x76, 0x3F, 0xE6, 0x35, 0x70, 0x4D, 0x6E, 0xC0, 0x7A, 0x66, 0x88, + 0x4C, 0x12, 0x26, 0x10, 0x50, 0x87, 0x10, 0x6E, 0xDC, 0xA4, 0x90, 0xE8, + 0xA9, 0x2F, 0x45, 0xAA, 0xD5, 0x85, 0x9A, 0xA7, 0x98, 0x91, 0xEA, 0xEA, + 0x91, 0x98, 0xA6, 0x9A, 0x88, 0xD5, 0xA9, 0x44, 0x2F, 0xA8, 0xE8, 0x91, + 0xA5, 0xDC, 0x6D, 0x4A, 0x81, 0x52, 0x54, 0x81, 0x48, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x02, 0x46, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x7D, 0x02, 0x6E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x02, 0x49, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x01, 0xBF, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x80, 0x01, 0x97, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x81, 0x01, 0xC0, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x82, 0x01, 0xA2, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x07, 0x1A, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x83, 0x02, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x07, 0x1A, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x84, 0x01, 0xF7, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xF0, 0x06, 0x07, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x88, 0x02, 0x56, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x7D, 0x02, 0x6E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x06, + 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, + 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x7E, 0x02, 0x49, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x05, 0xEF, 0x06, + 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x7F, 0x01, 0xBF, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x80, 0x01, 0x97, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x06, + 0x07, 0x05, 0xEF, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, + 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x81, 0x01, 0xC0, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x05, 0xEF, 0x06, + 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x82, 0x01, 0xA2, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x07, 0x1A, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x83, 0x02, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x06, + 0x07, 0x07, 0x1A, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, + 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x84, 0x01, 0xF7, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x05, 0xE4, 0x06, + 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x45, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x88, 0x02, 0x56, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x09, 0xE4, 0x02, 0x45, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4A, 0xFE, 0x18, 0x06, 0x07, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xCA, 0x00, + 0x00, 0x00, 0x27, 0x09, 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0xF3, 0x02, 0x46, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xF0, 0x06, + 0x07, 0x05, 0xCE, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xEC, 0x01, 0x3C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x18, 0x06, + 0x07, 0x05, 0xCE, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x09, + 0xE4, 0x02, 0x45, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEC, 0x01, 0x3C, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x37, 0xFE, 0x46, 0x04, 0x8B, 0x04, 0x5E, 0x00, + 0x1F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x34, 0x36, 0x36, 0x37, 0x01, + 0x33, 0x01, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x27, 0x01, 0x33, 0x01, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x02, 0x5F, + 0x8B, 0xA4, 0x01, 0x0F, 0x1B, 0x11, 0x02, 0x3C, 0xE5, 0xFE, 0x02, 0x38, + 0x45, 0x2B, 0x24, 0x24, 0x2B, 0x3D, 0x3B, 0xFE, 0x01, 0xE4, 0x02, 0x39, + 0x15, 0x17, 0x08, 0x9D, 0xFE, 0x46, 0x81, 0x7B, 0x1B, 0x40, 0x44, 0x22, + 0x04, 0x5B, 0xFC, 0x0F, 0x71, 0x86, 0x32, 0x20, 0x29, 0x29, 0x20, 0x32, + 0x88, 0x75, 0x03, 0xEB, 0xFB, 0xA8, 0x28, 0x49, 0x3C, 0x18, 0x7A, 0x81, + 0x00, 0x02, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x3F, 0x05, 0xD2, 0x00, 0x24, + 0x00, 0x34, 0x00, 0x00, 0x45, 0x22, 0x26, 0x02, 0x35, 0x35, 0x34, 0x3E, + 0x03, 0x37, 0x3E, 0x02, 0x35, 0x33, 0x14, 0x06, 0x06, 0x07, 0x0E, 0x02, + 0x07, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x02, 0x48, 0x94, 0xE7, 0x83, 0x28, 0x57, 0x90, + 0xCF, 0x8B, 0x40, 0x43, 0x19, 0xB9, 0x3E, 0x91, 0x7A, 0x94, 0xB4, 0x5D, + 0x14, 0x02, 0x21, 0x6E, 0x93, 0x57, 0x85, 0xC8, 0x71, 0x7F, 0xE2, 0x94, + 0x5A, 0x81, 0x45, 0x45, 0x7F, 0x59, 0x5A, 0x88, 0x4C, 0x4A, 0x87, 0x18, + 0x89, 0x01, 0x02, 0xB3, 0x24, 0x9F, 0xF8, 0xB9, 0x7D, 0x46, 0x09, 0x05, + 0x16, 0x2C, 0x25, 0x5A, 0x78, 0x42, 0x09, 0x0B, 0x4E, 0xA2, 0x8C, 0x43, + 0x65, 0x3B, 0x85, 0xE9, 0x96, 0x9F, 0xF8, 0x8E, 0xB4, 0x58, 0xA1, 0x6E, + 0x6E, 0x9F, 0x56, 0x58, 0xA0, 0x6D, 0x6C, 0xA0, 0x59, 0x00, 0x03, 0x00, + 0x7D, 0x00, 0x00, 0x04, 0x05, 0x04, 0x2E, 0x00, 0x10, 0x00, 0x19, 0x00, + 0x22, 0x00, 0x00, 0x73, 0x11, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, + 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x23, 0x7D, 0x01, 0xC4, 0xBC, 0xDD, 0x6C, 0x62, 0x47, 0x70, 0x42, 0x59, + 0xAA, 0x7A, 0xFE, 0xBF, 0x01, 0x3E, 0x52, 0x5A, 0x5A, 0x52, 0xFE, 0xC2, + 0x01, 0x01, 0x5C, 0x65, 0x69, 0x5F, 0xFA, 0x04, 0x2E, 0x93, 0x8A, 0x5D, + 0x70, 0x12, 0x08, 0x41, 0x6F, 0x4E, 0x5A, 0x88, 0x4A, 0xB5, 0x48, 0x41, + 0x49, 0x4F, 0x9C, 0x48, 0x41, 0x3D, 0x43, 0x00, 0x01, 0x00, 0x7D, 0x00, + 0x00, 0x03, 0x46, 0x04, 0x2E, 0x00, 0x05, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x11, 0x23, 0x11, 0x03, 0x46, 0xFE, 0x0D, 0xD6, 0x04, 0x2E, 0xBD, 0xFC, + 0x8F, 0x04, 0x2E, 0x00, 0x02, 0x00, 0x7D, 0x00, 0x00, 0x03, 0x46, 0x05, + 0x4B, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x31, + 0x15, 0x21, 0x11, 0x23, 0x11, 0x02, 0x77, 0xCF, 0xFE, 0x0D, 0xD6, 0x04, + 0x2E, 0x01, 0x1D, 0xFE, 0xE3, 0xBD, 0xFC, 0x8F, 0x04, 0x2E, 0xFF, 0xFF, + 0xFF, 0xE7, 0xFE, 0x5B, 0x03, 0x46, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xE5, + 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0xFF, 0x6E, 0xFF, 0x41, 0x00, 0x06, + 0x0B, 0x3F, 0xFD, 0x00, 0x00, 0x02, 0x00, 0x1A, 0xFE, 0xBE, 0x04, 0xCE, + 0x04, 0x2E, 0x00, 0x10, 0x00, 0x17, 0x00, 0x00, 0x53, 0x11, 0x33, 0x3E, + 0x03, 0x37, 0x13, 0x21, 0x11, 0x33, 0x11, 0x23, 0x11, 0x21, 0x11, 0x13, + 0x21, 0x11, 0x21, 0x07, 0x06, 0x06, 0x1A, 0x5B, 0x22, 0x32, 0x22, 0x18, + 0x09, 0x23, 0x02, 0xF4, 0xAB, 0xD1, 0xFC, 0xF1, 0x6E, 0x01, 0xF7, 0xFE, + 0x98, 0x14, 0x0E, 0x35, 0xFE, 0xBE, 0x01, 0xFF, 0x20, 0x52, 0x6F, 0x97, + 0x66, 0x01, 0x93, 0xFC, 0x8F, 0xFE, 0x01, 0x01, 0x42, 0xFE, 0xBE, 0x01, + 0xFF, 0x02, 0xB5, 0xD7, 0xA4, 0xEF, 0x00, 0x01, 0x00, 0x1F, 0x00, 0x00, + 0x06, 0x44, 0x04, 0x2E, 0x00, 0x15, 0x00, 0x00, 0x73, 0x01, 0x01, 0x33, + 0x01, 0x33, 0x11, 0x33, 0x11, 0x33, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, + 0x23, 0x11, 0x23, 0x11, 0x23, 0x01, 0x1F, 0x01, 0xB3, 0xFE, 0x52, 0xFA, + 0x01, 0x5E, 0x4C, 0xD5, 0x4B, 0x01, 0x5C, 0xFB, 0xFE, 0x54, 0x01, 0xB1, + 0xFF, 0xFE, 0xA1, 0x49, 0xD5, 0x49, 0xFE, 0x9F, 0x02, 0x21, 0x02, 0x0D, + 0xFE, 0x44, 0x01, 0xBC, 0xFE, 0x44, 0x01, 0xBC, 0xFD, 0xF3, 0xFD, 0xDF, + 0x01, 0xB8, 0xFE, 0x48, 0x01, 0xB8, 0xFE, 0x48, 0xFF, 0xFF, 0x00, 0x1F, + 0xFE, 0xC0, 0x06, 0x93, 0x04, 0x2E, 0x04, 0x26, 0x04, 0xE9, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x3D, 0x05, 0x3C, 0x00, 0x00, 0x00, 0x01, 0x00, 0x47, + 0xFF, 0xF1, 0x03, 0x97, 0x04, 0x42, 0x00, 0x2D, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, + 0x15, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0xEE, 0x7F, 0xBE, 0x69, + 0x01, 0xD2, 0x03, 0x75, 0x5B, 0x5E, 0x75, 0x7C, 0x6B, 0x51, 0x51, 0x5B, + 0x71, 0x64, 0x52, 0x52, 0x71, 0x02, 0xCB, 0x02, 0x68, 0xB5, 0x72, 0x73, + 0xAD, 0x61, 0x74, 0x60, 0x79, 0x82, 0x6D, 0xC0, 0x0F, 0x56, 0x95, 0x5E, + 0x47, 0x55, 0x57, 0x44, 0x48, 0x59, 0x95, 0x53, 0x45, 0x42, 0x51, 0x50, + 0x46, 0x5E, 0x8F, 0x51, 0x4F, 0x88, 0x53, 0x5B, 0x7D, 0x12, 0x04, 0x0F, + 0x8C, 0x64, 0x5A, 0x8F, 0x51, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0x1F, 0x04, 0x2E, 0x00, 0x0B, 0x00, 0x00, 0x61, 0x23, 0x11, 0x23, 0x01, + 0x23, 0x11, 0x33, 0x11, 0x33, 0x01, 0x33, 0x04, 0x1F, 0xD5, 0x04, 0xFD, + 0xFD, 0xC6, 0xD4, 0x05, 0x02, 0x01, 0xC8, 0x02, 0xE5, 0xFD, 0x1B, 0x04, + 0x2E, 0xFD, 0x1B, 0x02, 0xE5, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, 0x04, + 0xDF, 0x05, 0xE3, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, 0x27, 0x0A, + 0x8F, 0x00, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x02, 0xE9, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x3E, 0x04, 0x2E, 0x00, + 0x0C, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x33, 0x01, 0x21, 0x01, 0x01, + 0x21, 0x01, 0x23, 0x11, 0x7D, 0xD6, 0x67, 0x01, 0x78, 0x01, 0x07, 0xFE, + 0x4F, 0x01, 0xB6, 0xFE, 0xF9, 0xFE, 0xAB, 0x8F, 0x04, 0x2E, 0xFE, 0x3E, + 0x01, 0xC2, 0xFD, 0xF8, 0xFD, 0xDA, 0x01, 0xAF, 0xFE, 0x51, 0x00, 0x02, + 0x00, 0x7D, 0xFE, 0xE6, 0x04, 0x4A, 0x04, 0x2E, 0x00, 0x14, 0x00, 0x1E, + 0x00, 0x00, 0x41, 0x35, 0x21, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, + 0x07, 0x27, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x01, 0x11, 0x33, + 0x11, 0x33, 0x01, 0x21, 0x01, 0x23, 0x11, 0x01, 0x00, 0x01, 0x3E, 0x78, + 0xC1, 0x8A, 0x49, 0x5D, 0xA7, 0x6F, 0x52, 0x4B, 0x6F, 0x3D, 0x57, 0x9B, + 0x66, 0xFE, 0x59, 0xD6, 0x67, 0x01, 0x78, 0x01, 0x07, 0xFD, 0xEE, 0xD4, + 0x01, 0xAF, 0xB1, 0x3D, 0x74, 0x9F, 0x62, 0x6F, 0xAA, 0x80, 0x2F, 0xAD, + 0x1E, 0x50, 0x6A, 0x44, 0x52, 0x72, 0x3C, 0xFE, 0x51, 0x04, 0x2E, 0xFE, + 0x3E, 0x01, 0xC2, 0xFD, 0x81, 0xFE, 0x51, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0xC0, 0x04, 0x81, 0x04, 0x2E, 0x04, 0x26, 0x04, 0xEE, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3D, 0x03, 0x29, 0x00, 0x00, 0x00, 0x02, 0x00, 0x7D, 0x00, + 0x00, 0x04, 0x9B, 0x04, 0x2E, 0x00, 0x0C, 0x00, 0x10, 0x00, 0x00, 0x73, + 0x11, 0x33, 0x11, 0x21, 0x01, 0x33, 0x01, 0x01, 0x23, 0x01, 0x21, 0x11, + 0x13, 0x33, 0x11, 0x23, 0x7D, 0xD6, 0x01, 0x28, 0x01, 0x24, 0xF7, 0xFE, + 0xA6, 0x01, 0x5F, 0xF8, 0xFE, 0xF7, 0xFE, 0xB9, 0x63, 0x9F, 0x9F, 0x04, + 0x2E, 0xFE, 0x3D, 0x01, 0xC3, 0xFD, 0xF8, 0xFD, 0xDA, 0x01, 0xB1, 0xFE, + 0x4F, 0x03, 0x34, 0xFD, 0xB2, 0x00, 0x02, 0x00, 0x11, 0x00, 0x00, 0x05, + 0x02, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x10, 0x00, 0x00, 0x53, 0x35, 0x21, + 0x15, 0x03, 0x11, 0x33, 0x11, 0x33, 0x01, 0x21, 0x01, 0x01, 0x21, 0x01, + 0x23, 0x11, 0x11, 0x01, 0x95, 0x65, 0xD6, 0x67, 0x01, 0x78, 0x01, 0x07, + 0xFE, 0x4F, 0x01, 0xB6, 0xFE, 0xF9, 0xFE, 0xAA, 0x8E, 0x03, 0x80, 0xAE, + 0xAE, 0xFC, 0x80, 0x04, 0x2E, 0xFE, 0x3E, 0x01, 0xC2, 0xFD, 0xF8, 0xFD, + 0xDA, 0x01, 0xAF, 0xFE, 0x51, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x04, + 0x11, 0x04, 0x2E, 0x00, 0x12, 0x00, 0x00, 0x73, 0x35, 0x33, 0x32, 0x3E, + 0x02, 0x37, 0x13, 0x21, 0x11, 0x23, 0x11, 0x21, 0x03, 0x0E, 0x02, 0x23, + 0x11, 0x29, 0x30, 0x3F, 0x27, 0x15, 0x06, 0x13, 0x03, 0x13, 0xD5, 0xFE, + 0x8E, 0x11, 0x09, 0x47, 0x92, 0x79, 0xBB, 0x20, 0x55, 0xA0, 0x80, 0x01, + 0xDE, 0xFB, 0xD2, 0x03, 0x73, 0xFE, 0xA2, 0xB9, 0xEC, 0x70, 0xFF, 0xFF, + 0x00, 0x11, 0xFE, 0xC0, 0x04, 0xD2, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xF3, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x02, 0xDC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x11, 0xFE, 0xC0, 0x04, 0xA1, 0x04, 0x2E, 0x04, 0x26, 0x04, 0xF3, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x4A, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x7D, 0x00, 0x00, 0x05, 0x8A, 0x04, 0x2E, 0x06, 0x06, 0x09, 0x6F, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, 0x06, 0x4A, 0x04, 0x2E, + 0x06, 0x26, 0x09, 0x6F, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x04, 0x54, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x1A, 0x04, 0x2E, + 0x06, 0x06, 0x09, 0x6E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, + 0x04, 0xA9, 0x04, 0x2E, 0x04, 0x26, 0x09, 0x6E, 0x00, 0x00, 0x00, 0x07, + 0x0B, 0x3D, 0x03, 0x52, 0x00, 0x00, 0x00, 0x04, 0x00, 0x7D, 0x00, 0x00, + 0x05, 0x50, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x05, 0x15, 0x21, 0x35, 0x13, 0x11, + 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x03, 0xC6, 0x01, 0x8A, 0xFE, 0x29, + 0xFD, 0xA3, 0x37, 0xD6, 0x03, 0x9D, 0xD5, 0x03, 0x80, 0xAE, 0xAE, 0xFB, + 0xBD, 0xBD, 0x01, 0xA9, 0xFB, 0xD2, 0x04, 0x2E, 0xFB, 0xD2, 0x04, 0x2E, + 0x00, 0x04, 0x00, 0x7D, 0xFE, 0x5B, 0x04, 0x1A, 0x04, 0x2E, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, + 0x35, 0x16, 0x32, 0x33, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, + 0x03, 0x15, 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, + 0x02, 0xE8, 0x27, 0x3D, 0x17, 0x11, 0x3E, 0x14, 0x40, 0x35, 0xD5, 0x99, + 0x08, 0xFD, 0xA3, 0x37, 0xD6, 0x03, 0x9D, 0xD5, 0xFE, 0x5B, 0x02, 0x01, + 0xB1, 0x01, 0x2E, 0x33, 0x91, 0x94, 0x86, 0x8B, 0x04, 0x2A, 0xBD, 0xBD, + 0x01, 0xA9, 0xFB, 0xD2, 0x04, 0x2E, 0xFB, 0xD2, 0x04, 0x2E, 0xFF, 0xFF, + 0x00, 0x7D, 0xFE, 0xC0, 0x04, 0xDA, 0x04, 0x2E, 0x06, 0x26, 0x09, 0x6E, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3C, 0x02, 0xE5, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x7D, 0x00, 0x00, 0x04, 0x14, 0x04, 0x2E, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x04, 0x14, 0xD6, 0xFE, + 0x15, 0xD6, 0x04, 0x2E, 0xFB, 0xD2, 0x03, 0x71, 0xFC, 0x8F, 0x04, 0x2E, + 0xFF, 0xFF, 0x00, 0x11, 0x00, 0x00, 0x03, 0xBC, 0x04, 0x2E, 0x06, 0x06, + 0x09, 0x70, 0x00, 0x00, 0x00, 0x03, 0x00, 0x4A, 0xFE, 0x5E, 0x05, 0x37, + 0x05, 0xD2, 0x00, 0x11, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x11, + 0x33, 0x11, 0x02, 0x56, 0x98, 0xED, 0x87, 0x87, 0xED, 0x98, 0xD5, 0x99, + 0xEC, 0x87, 0x87, 0xEC, 0x99, 0xD5, 0xD5, 0x5E, 0x8B, 0x4E, 0x4E, 0x8B, + 0x5E, 0xD5, 0x5D, 0x8C, 0x4E, 0x4E, 0x8B, 0x5E, 0xD5, 0x18, 0x8D, 0xFB, + 0xA4, 0xA6, 0xFC, 0x8E, 0x8E, 0xFC, 0xA6, 0xA4, 0xFB, 0x8D, 0xB2, 0x60, + 0xAB, 0x6F, 0x71, 0xAD, 0x62, 0x62, 0xAD, 0x71, 0x6F, 0xAB, 0x60, 0xFD, + 0xC4, 0x07, 0x74, 0xF8, 0x8C, 0x00, 0x01, 0x00, 0x1F, 0xFE, 0x5A, 0x03, + 0xE1, 0x04, 0x2E, 0x00, 0x20, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x37, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x03, 0x03, + 0x23, 0x01, 0x01, 0x33, 0x13, 0x13, 0x33, 0x01, 0x13, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x02, 0x93, 0x1F, 0x3D, 0x1E, 0x03, 0x18, 0x37, 0x1A, + 0x41, 0x4B, 0x12, 0x2C, 0x28, 0xAA, 0xF7, 0xEB, 0x01, 0x59, 0xFE, 0xAB, + 0xEA, 0xF4, 0xF6, 0xEA, 0xFE, 0xA7, 0xD4, 0x2E, 0x38, 0x1A, 0x4F, 0x93, + 0xFE, 0x5A, 0x02, 0x01, 0xB5, 0x01, 0x02, 0x42, 0x44, 0x1F, 0x3E, 0x54, + 0x3C, 0x01, 0x06, 0xFE, 0x78, 0x02, 0x17, 0x02, 0x17, 0xFE, 0x66, 0x01, + 0x9A, 0xFD, 0xE9, 0xFE, 0xB6, 0x47, 0x72, 0x62, 0x30, 0x5A, 0x85, 0x49, + 0xFF, 0xFF, 0x00, 0x1F, 0xFE, 0xC0, 0x04, 0x70, 0x04, 0x2E, 0x04, 0x26, + 0x03, 0xDF, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x18, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, 0x04, 0xA3, 0x04, 0x2E, 0x04, 0x26, + 0x0B, 0x42, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x4C, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, 0x04, 0x14, 0x04, 0x2E, 0x06, 0x26, + 0x0B, 0x42, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3E, 0x01, 0x5D, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x7D, 0x00, 0x00, 0x03, 0xFE, 0x04, 0x2E, 0x00, 0x10, + 0x00, 0x14, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x0E, 0x02, 0x13, 0x11, 0x33, 0x11, + 0x02, 0x3E, 0xD1, 0xF0, 0xD6, 0x81, 0x6A, 0x63, 0xA8, 0x58, 0x33, 0x70, + 0x7B, 0xA6, 0xD5, 0x01, 0x3F, 0xCD, 0xCF, 0x01, 0x53, 0xFE, 0xAF, 0x76, + 0x6B, 0x25, 0x1F, 0xBD, 0x13, 0x20, 0x11, 0xFE, 0xC1, 0x04, 0x2E, 0xFB, + 0xD2, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, 0x04, 0x8E, 0x04, 0x2E, 0x04, + 0x26, 0x05, 0x04, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x03, 0x37, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x03, 0xFE, 0x04, 0x2E, 0x06, + 0x26, 0x05, 0x04, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3B, 0x01, 0x6A, 0xFE, + 0xB7, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x05, 0xFB, 0x04, 0x2E, 0x00, + 0x0B, 0x00, 0x00, 0x53, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x21, 0x7D, 0xD6, 0x01, 0x80, 0xD2, 0x01, 0x81, 0xD5, 0xFA, + 0x82, 0x04, 0x2E, 0xFC, 0x8F, 0x03, 0x71, 0xFC, 0x8F, 0x03, 0x71, 0xFB, + 0xD2, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, 0x06, 0x8B, 0x04, 0x2E, 0x04, + 0x26, 0x05, 0x07, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x05, 0x33, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x02, 0x04, 0x2E, 0x00, + 0x15, 0x00, 0x00, 0x41, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x21, 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x21, 0x01, 0x21, 0x01, 0x45, 0x7E, 0xB9, 0x65, 0x66, 0xB8, 0x7E, 0xFE, + 0x17, 0xD6, 0x01, 0x0D, 0x5F, 0x71, 0x71, 0x5F, 0xFE, 0xC1, 0x02, 0xC6, + 0x59, 0x9E, 0x69, 0x69, 0xA2, 0x5B, 0x04, 0x2E, 0xFC, 0x8C, 0x5D, 0x4E, + 0x4D, 0x5B, 0x00, 0x02, 0x00, 0x11, 0x00, 0x00, 0x04, 0xC6, 0x04, 0x2E, + 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x17, 0x21, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, + 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x11, 0x01, 0x89, 0x4B, + 0x01, 0x45, 0x7E, 0xB8, 0x66, 0x66, 0xB8, 0x7E, 0xFE, 0x17, 0xD6, 0x01, + 0x0D, 0x5F, 0x71, 0x71, 0x5F, 0xFE, 0xC1, 0x03, 0x80, 0xAE, 0xAE, 0xBA, + 0x59, 0x9E, 0x69, 0x69, 0xA2, 0x5B, 0x04, 0x2E, 0xFC, 0x8C, 0x5D, 0x4E, + 0x4D, 0x5B, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x05, 0x39, 0x04, 0x2E, + 0x04, 0x26, 0x05, 0x09, 0x00, 0x00, 0x00, 0x07, 0x02, 0xB2, 0x03, 0xE7, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, 0x04, 0x7D, 0x05, 0x49, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x1D, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, + 0x25, 0x11, 0x33, 0x11, 0x03, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x21, 0x11, 0x03, 0x1E, 0xFD, 0xC9, 0xD4, 0x30, 0x01, 0x45, 0x7E, + 0xB9, 0x65, 0x65, 0xB9, 0x7E, 0xFE, 0x17, 0xD6, 0x01, 0x0D, 0x60, 0x70, + 0x70, 0x60, 0xFE, 0xC1, 0x03, 0x89, 0xA5, 0xA5, 0xA5, 0x01, 0x1B, 0xFE, + 0xE5, 0xFE, 0x98, 0x59, 0x9E, 0x69, 0x69, 0xA2, 0x5B, 0x04, 0x2E, 0xFC, + 0x8C, 0x5D, 0x4E, 0x4D, 0x5B, 0x00, 0x03, 0x00, 0x11, 0x00, 0x00, 0x04, + 0x7D, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1D, 0x00, 0x00, 0x53, + 0x35, 0x21, 0x15, 0x25, 0x11, 0x33, 0x11, 0x03, 0x21, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x21, 0x11, 0x03, 0x1E, 0xFD, 0xC9, 0xD4, 0x30, + 0x01, 0x45, 0x7E, 0xB9, 0x65, 0x65, 0xB9, 0x7E, 0xFE, 0x17, 0xD6, 0x01, + 0x0D, 0x60, 0x70, 0x70, 0x60, 0xFE, 0xC1, 0x03, 0x89, 0xA5, 0xA5, 0xA5, + 0x01, 0xA4, 0xFE, 0x5C, 0xFE, 0x98, 0x59, 0x9E, 0x69, 0x69, 0xA2, 0x5B, + 0x04, 0x2E, 0xFC, 0x8C, 0x5D, 0x4E, 0x4D, 0x5B, 0xFF, 0xFF, 0x00, 0x2E, + 0x00, 0x00, 0x06, 0xF3, 0x04, 0x2E, 0x04, 0x26, 0x04, 0xF3, 0x1D, 0x00, + 0x00, 0x07, 0x05, 0x09, 0x02, 0xF1, 0x00, 0x00, 0x00, 0x04, 0x00, 0x7D, + 0x00, 0x00, 0x06, 0xC5, 0x04, 0x2E, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19, + 0x00, 0x1D, 0x00, 0x00, 0x61, 0x35, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x21, 0x11, + 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x03, 0x11, 0x33, 0x11, 0x03, 0xD7, + 0x01, 0x59, 0x5E, 0x65, 0x65, 0x5E, 0xFE, 0xA2, 0x01, 0x64, 0xB9, 0xD6, + 0xD6, 0xB9, 0xFB, 0x47, 0xD6, 0x37, 0x02, 0x5B, 0x35, 0xD5, 0xBA, 0x4A, + 0x46, 0x44, 0x48, 0xB9, 0xAD, 0x97, 0x9A, 0xB1, 0x04, 0x2E, 0xFB, 0xD2, + 0x01, 0xCB, 0xBD, 0xBD, 0xFE, 0x35, 0x04, 0x2E, 0xFB, 0xD2, 0x00, 0x02, + 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x0F, 0x04, 0x44, 0x00, 0x25, 0x00, 0x29, + 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x27, + 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x13, 0x21, + 0x35, 0x21, 0x02, 0x14, 0x5D, 0xA0, 0x7A, 0x4E, 0x0B, 0xD2, 0x0A, 0x2A, + 0x3E, 0x55, 0x36, 0x5E, 0x83, 0x44, 0x44, 0x83, 0x5E, 0x35, 0x56, 0x41, + 0x29, 0x09, 0xD1, 0x0D, 0x4D, 0x7A, 0x9F, 0x5D, 0x98, 0xE4, 0x7F, 0x7F, + 0xE4, 0xAF, 0xFE, 0x21, 0x01, 0xDF, 0x18, 0x38, 0x65, 0x88, 0x52, 0x0B, + 0x2D, 0x4C, 0x36, 0x1C, 0x5E, 0xA9, 0x6E, 0x70, 0xAA, 0x5F, 0x1E, 0x35, + 0x4A, 0x2C, 0x0B, 0x52, 0x89, 0x63, 0x37, 0x8E, 0xFD, 0xA5, 0xA4, 0xFB, + 0x8D, 0x01, 0xDD, 0xA7, 0x00, 0x04, 0x00, 0x7D, 0xFF, 0xE8, 0x06, 0x33, + 0x04, 0x44, 0x00, 0x03, 0x00, 0x07, 0x00, 0x17, 0x00, 0x27, 0x00, 0x00, + 0x73, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x01, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x7D, 0xD4, 0x36, 0x01, 0x76, 0x01, 0xA5, 0x98, + 0xE6, 0x7F, 0x7F, 0xE6, 0x98, 0x99, 0xE5, 0x7F, 0x7F, 0xE5, 0x99, 0x5D, + 0x83, 0x45, 0x45, 0x83, 0x5D, 0x5C, 0x84, 0x45, 0x45, 0x83, 0x04, 0x2E, + 0xFB, 0xD2, 0x01, 0xB9, 0xBC, 0xBC, 0xFE, 0x2F, 0x8D, 0xFB, 0xA4, 0xA6, + 0xFC, 0x8E, 0x8E, 0xFC, 0xA6, 0xA4, 0xFB, 0x8D, 0xB7, 0x5E, 0xA9, 0x6E, + 0x70, 0xA9, 0x5F, 0x5E, 0xA9, 0x71, 0x6F, 0xA8, 0x5E, 0x00, 0x02, 0x00, + 0x19, 0x00, 0x00, 0x03, 0xD4, 0x04, 0x2E, 0x00, 0x13, 0x00, 0x17, 0x00, + 0x00, 0x61, 0x23, 0x11, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x21, + 0x15, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x21, 0x01, 0x23, 0x01, + 0x33, 0x03, 0xD4, 0xD0, 0xFC, 0x7A, 0x72, 0x74, 0x7D, 0x01, 0x50, 0xFE, + 0x9C, 0xCF, 0xE0, 0xDC, 0xCC, 0x01, 0xE2, 0xFD, 0x35, 0xF0, 0x01, 0x39, + 0xE9, 0x03, 0x7C, 0x54, 0x57, 0x56, 0x52, 0xA8, 0xB2, 0x9F, 0xA4, 0xB8, + 0xFB, 0xD2, 0x01, 0xE0, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0xB9, 0x03, 0xF1, + 0x04, 0x2E, 0x00, 0x1B, 0x00, 0x21, 0x00, 0x00, 0x41, 0x35, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x23, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x01, 0x15, 0x21, 0x11, 0x23, 0x11, 0x01, 0xC9, 0x4C, 0x53, 0x7A, 0x42, + 0x38, 0x69, 0x49, 0x49, 0x68, 0x38, 0x49, 0x47, 0x96, 0x77, 0x72, 0xB7, + 0x6C, 0x7B, 0xD3, 0x86, 0x01, 0x29, 0xFE, 0x0D, 0xD6, 0xFE, 0xB9, 0xB8, + 0x46, 0x7F, 0x59, 0x56, 0x7B, 0x41, 0x41, 0x79, 0x55, 0x76, 0xD0, 0x82, + 0x7A, 0xCF, 0x82, 0x86, 0xD5, 0x7B, 0x05, 0x75, 0xBD, 0xFC, 0x8F, 0x04, + 0x2E, 0x00, 0x02, 0x00, 0x7D, 0xFE, 0xC3, 0x06, 0xF8, 0x04, 0x2E, 0x00, + 0x13, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x27, 0x36, 0x36, 0x37, 0x34, 0x26, + 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x04, 0x16, 0x15, 0x14, 0x0E, 0x02, + 0x01, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x04, 0xC9, 0x11, 0xBD, + 0xB0, 0x01, 0x56, 0xAC, 0x81, 0xF1, 0xF1, 0xB5, 0x01, 0x0D, 0x93, 0x46, + 0x8C, 0xD2, 0xFE, 0xC0, 0xD6, 0xFE, 0x15, 0xD6, 0xFE, 0xC3, 0xB7, 0x09, + 0x8B, 0x8C, 0x60, 0x80, 0x41, 0xBB, 0x72, 0xD4, 0x94, 0x68, 0xA9, 0x7C, + 0x47, 0x05, 0x66, 0xFB, 0xD2, 0x03, 0x71, 0xFC, 0x8F, 0x04, 0x2E, 0x00, + 0x02, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x04, 0x44, 0x00, 0x25, 0x00, + 0x29, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x01, + 0x35, 0x21, 0x15, 0x02, 0x45, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, 0x98, 0x5D, + 0x9F, 0x7A, 0x4D, 0x0C, 0xD0, 0x09, 0x29, 0x41, 0x55, 0x36, 0x5D, 0x84, + 0x44, 0x44, 0x83, 0x5E, 0x36, 0x55, 0x3E, 0x29, 0x0B, 0xD2, 0x0B, 0x4E, + 0x7A, 0xA0, 0xFE, 0x5B, 0x01, 0xE0, 0x18, 0x8D, 0xFB, 0xA4, 0xA5, 0xFD, + 0x8E, 0x37, 0x63, 0x89, 0x52, 0x0B, 0x2C, 0x4A, 0x35, 0x1E, 0x5F, 0xAA, + 0x70, 0x6E, 0xA9, 0x5E, 0x1C, 0x36, 0x4C, 0x2D, 0x0B, 0x52, 0x88, 0x65, + 0x38, 0x01, 0xDD, 0xA7, 0xA7, 0x00, 0x01, 0x00, 0x4A, 0xFF, 0xE8, 0x06, + 0x11, 0x04, 0x44, 0x00, 0x3E, 0x00, 0x00, 0x45, 0x22, 0x24, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x15, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x04, 0x02, 0xAC, 0xC3, + 0xFE, 0xEF, 0x8E, 0x80, 0xE8, 0x99, 0x5E, 0x85, 0x46, 0x55, 0xB2, 0x8A, + 0x71, 0xBE, 0x8E, 0x4E, 0x32, 0x5A, 0x3E, 0x3E, 0x5A, 0x31, 0x45, 0x7B, + 0x52, 0x24, 0x6B, 0x2E, 0x44, 0x5E, 0x35, 0x40, 0x40, 0x93, 0x4C, 0x6D, + 0xC9, 0x54, 0x79, 0x9A, 0x6A, 0xBB, 0x7A, 0x7A, 0xBC, 0x69, 0x7A, 0xD3, + 0xFE, 0xF6, 0x18, 0x8A, 0xFB, 0xA8, 0xA6, 0xFB, 0x8E, 0xB8, 0x5F, 0xA9, + 0x6F, 0x74, 0xA8, 0x5B, 0x33, 0x62, 0x92, 0x5E, 0x49, 0x6A, 0x3B, 0x3A, + 0x6B, 0x4A, 0x59, 0x8F, 0x69, 0x23, 0x10, 0x0C, 0x19, 0x18, 0x9F, 0x1E, + 0x1C, 0x31, 0x38, 0x49, 0xEF, 0x97, 0x7D, 0xBF, 0x6B, 0x6B, 0xBD, 0x7C, + 0x89, 0xD5, 0x93, 0x4C, 0x00, 0x03, 0x00, 0x11, 0xFE, 0xC0, 0x05, 0x2F, + 0x04, 0x2E, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x11, 0x00, 0x00, 0x41, 0x15, + 0x21, 0x35, 0x13, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x03, 0x11, + 0x23, 0x35, 0x21, 0x03, 0x02, 0xDB, 0xFD, 0x36, 0xF8, 0xD6, 0x01, 0xEB, + 0xD6, 0x48, 0x4E, 0x01, 0x25, 0x04, 0x04, 0x2E, 0xBA, 0xBA, 0xFB, 0xD2, + 0x04, 0x2E, 0xFC, 0x8F, 0x03, 0x71, 0xFB, 0xD2, 0xFE, 0xC0, 0x01, 0x40, + 0xC1, 0xFD, 0xFF, 0x00, 0x02, 0x00, 0x11, 0xFF, 0xE8, 0x05, 0x5B, 0x04, + 0x44, 0x00, 0x07, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x33, + 0x14, 0x16, 0x33, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x1E, 0x02, 0x15, 0x15, 0x21, 0x35, 0x21, 0x07, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x8C, 0xBD, 0xBE, 0xB2, 0x5B, 0x6E, + 0x01, 0xEE, 0x9F, 0xE4, 0x7B, 0x7E, 0xE0, 0x93, 0x6C, 0xB5, 0x85, 0x48, + 0xFC, 0x86, 0x03, 0x0B, 0x5F, 0x45, 0x81, 0x59, 0x58, 0x81, 0x47, 0x48, + 0x87, 0x5F, 0x44, 0x69, 0x46, 0x10, 0xCC, 0x15, 0x82, 0xC3, 0x01, 0xDC, + 0xBE, 0xB8, 0x6F, 0x68, 0xFD, 0x6D, 0x8E, 0xFB, 0xA3, 0xA3, 0xFD, 0x90, + 0x4C, 0x91, 0xCD, 0x80, 0x3F, 0xA1, 0x32, 0x64, 0x93, 0x51, 0x51, 0x91, + 0x60, 0x60, 0x67, 0x9A, 0x55, 0x29, 0x4B, 0x32, 0x0B, 0x62, 0x96, 0x55, + 0xFF, 0xFF, 0x00, 0x5E, 0xFE, 0x45, 0x04, 0x80, 0x04, 0x2E, 0x06, 0x07, + 0x05, 0x49, 0x00, 0x00, 0xFE, 0x5C, 0x00, 0x01, 0x00, 0x1D, 0x00, 0x00, + 0x04, 0x7F, 0x04, 0x2E, 0x00, 0x0E, 0x00, 0x00, 0x61, 0x01, 0x33, 0x01, + 0x33, 0x13, 0x36, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x07, 0x01, 0x01, + 0xAF, 0xFE, 0x6E, 0xE4, 0x01, 0x20, 0x05, 0xD5, 0x25, 0x90, 0x6F, 0x60, + 0x5A, 0x44, 0x19, 0xFE, 0xCA, 0x04, 0x2E, 0xFC, 0xCF, 0x02, 0x60, 0x6B, + 0x66, 0xB6, 0x40, 0xFC, 0xC8, 0x00, 0x02, 0x00, 0x52, 0xFF, 0x25, 0x04, + 0xBB, 0x06, 0xAD, 0x00, 0x03, 0x00, 0x36, 0x00, 0x00, 0x45, 0x11, 0x33, + 0x11, 0x27, 0x22, 0x24, 0x26, 0x27, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x17, 0x1E, 0x03, 0x15, 0x14, 0x06, + 0x06, 0x02, 0x38, 0x9F, 0x48, 0xB0, 0xFF, 0x00, 0x8B, 0x02, 0xDF, 0x02, + 0x56, 0x9D, 0x69, 0x64, 0x95, 0x54, 0x3D, 0x7D, 0x63, 0xA6, 0xD8, 0xCF, + 0x86, 0xEF, 0x9E, 0x9F, 0xEB, 0x84, 0x04, 0xD8, 0x09, 0xAB, 0x8A, 0x59, + 0x8A, 0x4D, 0x40, 0x7D, 0x5D, 0x9C, 0x67, 0xA2, 0x70, 0x3B, 0x88, 0xFA, + 0xDB, 0x07, 0x88, 0xF8, 0x78, 0xC3, 0x77, 0xDC, 0x99, 0x5E, 0x86, 0x45, + 0x3A, 0x6C, 0x48, 0x3B, 0x55, 0x3E, 0x18, 0x28, 0x35, 0xC1, 0x9A, 0x83, + 0xC3, 0x6C, 0x70, 0xCD, 0x8C, 0x7B, 0x8B, 0x3A, 0x67, 0x42, 0x3A, 0x51, + 0x3B, 0x16, 0x27, 0x18, 0x49, 0x64, 0x84, 0x55, 0x84, 0xC7, 0x6F, 0x00, + 0x02, 0x00, 0x4A, 0x00, 0x00, 0x04, 0x15, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x29, 0x00, 0x00, 0x61, 0x11, 0x33, 0x11, 0x27, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, + 0x17, 0x0E, 0x03, 0x01, 0xFF, 0x86, 0x40, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, + 0x98, 0x5D, 0x9F, 0x7A, 0x4D, 0x0C, 0xD1, 0x09, 0x29, 0x40, 0x55, 0x36, + 0x5D, 0x83, 0x44, 0x44, 0x83, 0x5D, 0x36, 0x54, 0x3E, 0x2A, 0x0A, 0xD3, + 0x0B, 0x4E, 0x7A, 0xA0, 0x05, 0xD2, 0xFA, 0x2E, 0xBB, 0x8D, 0xFB, 0xA4, + 0xA5, 0xFC, 0x8E, 0x37, 0x63, 0x88, 0x53, 0x0B, 0x2D, 0x49, 0x35, 0x1E, + 0x5F, 0xA9, 0x70, 0x6F, 0xA8, 0x5F, 0x1D, 0x36, 0x4B, 0x2E, 0x0B, 0x52, + 0x89, 0x65, 0x37, 0x00, 0x05, 0x00, 0x07, 0x00, 0x00, 0x04, 0x3F, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, + 0x00, 0x53, 0x01, 0x07, 0x09, 0x02, 0x33, 0x01, 0x37, 0x11, 0x23, 0x11, + 0x05, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0xF6, 0x01, 0x65, 0xA2, + 0xFE, 0x4E, 0x01, 0xE3, 0x01, 0x66, 0xEF, 0xFE, 0x4D, 0x04, 0xDD, 0x02, + 0x19, 0xFC, 0xA4, 0x03, 0x5C, 0xFC, 0xA4, 0x05, 0xD2, 0xFC, 0xDB, 0x5B, + 0x03, 0x80, 0xFC, 0xDD, 0x03, 0x23, 0xFC, 0x80, 0xBD, 0xFC, 0xF1, 0x03, + 0x0F, 0x21, 0x93, 0x93, 0xFE, 0xE0, 0x93, 0x93, 0x00, 0x03, 0x00, 0x51, + 0x00, 0x00, 0x04, 0x75, 0x05, 0xE7, 0x00, 0x1B, 0x00, 0x27, 0x00, 0x2B, + 0x00, 0x00, 0x77, 0x35, 0x32, 0x36, 0x27, 0x03, 0x26, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x17, + 0x13, 0x16, 0x0E, 0x03, 0x07, 0x35, 0x21, 0x32, 0x36, 0x35, 0x35, 0x33, + 0x15, 0x14, 0x06, 0x23, 0x01, 0x35, 0x21, 0x15, 0x51, 0x52, 0x59, 0x04, + 0x1D, 0x06, 0x75, 0xD8, 0x8D, 0x82, 0xC8, 0x76, 0x04, 0xD0, 0x04, 0x81, + 0x6E, 0x52, 0x76, 0x3B, 0x03, 0x19, 0x03, 0x2B, 0x4C, 0x63, 0x6C, 0x35, + 0x03, 0x0D, 0x29, 0x22, 0xCC, 0x89, 0x8C, 0xFC, 0xF1, 0x03, 0x08, 0x8E, + 0x32, 0x58, 0x62, 0x02, 0x93, 0x8E, 0xD5, 0x77, 0x71, 0xCA, 0x87, 0x07, + 0x7D, 0x8C, 0x42, 0x7B, 0x55, 0xFD, 0x77, 0x45, 0x5D, 0x37, 0x1C, 0x09, + 0x8E, 0xC0, 0x23, 0x28, 0x3D, 0x32, 0x8A, 0x8C, 0x02, 0x8F, 0xAD, 0xAD, + 0x00, 0x01, 0x00, 0x15, 0xFE, 0x5E, 0x03, 0x09, 0x06, 0x14, 0x00, 0x23, + 0x00, 0x00, 0x41, 0x15, 0x23, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, + 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x23, 0x35, 0x33, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x15, 0x02, 0xB2, 0xD0, 0xB0, 0xA1, 0x21, 0x3A, 0x21, 0x0E, 0x10, + 0x43, 0x0E, 0x3F, 0x45, 0xB2, 0xB2, 0xBD, 0x98, 0x2C, 0x61, 0x1F, 0x27, + 0x11, 0x29, 0x1D, 0x52, 0x57, 0x04, 0x3A, 0xAB, 0xFC, 0x38, 0xB0, 0xB9, + 0x05, 0x09, 0xB6, 0x05, 0x05, 0x5D, 0x52, 0x03, 0xC8, 0xAB, 0x68, 0xB4, + 0xBE, 0x0E, 0x0B, 0xB4, 0x05, 0x05, 0x57, 0x58, 0x68, 0x00, 0x04, 0x00, + 0x4F, 0xFF, 0xEC, 0x04, 0x51, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x10, 0x00, + 0x14, 0x00, 0x18, 0x00, 0x00, 0x41, 0x11, 0x07, 0x11, 0x01, 0x33, 0x14, + 0x02, 0x04, 0x23, 0x22, 0x26, 0x27, 0x37, 0x32, 0x36, 0x36, 0x03, 0x15, + 0x01, 0x35, 0x05, 0x15, 0x01, 0x35, 0x01, 0xF5, 0xDD, 0x02, 0x59, 0xE0, + 0x99, 0xFE, 0xEE, 0xB6, 0x3C, 0x76, 0x26, 0xD8, 0x6F, 0xAE, 0x65, 0x60, + 0xFD, 0x3D, 0x02, 0xC3, 0xFD, 0x3D, 0x05, 0xD2, 0xFA, 0x2E, 0x09, 0x05, + 0xDB, 0xFC, 0xC8, 0xE5, 0xFE, 0xCF, 0x98, 0x06, 0x05, 0xB9, 0x5E, 0xD7, + 0x03, 0x7A, 0xC0, 0xFE, 0xDE, 0xC0, 0x31, 0xBE, 0xFE, 0xDF, 0xBF, 0x00, + 0x02, 0x00, 0x3B, 0x00, 0x00, 0x05, 0x39, 0x05, 0xD2, 0x00, 0x17, 0x00, + 0x1B, 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x21, 0x11, 0x23, 0x11, 0x21, 0x32, 0x16, 0x16, 0x07, + 0x16, 0x06, 0x06, 0x07, 0x15, 0x21, 0x35, 0x03, 0x3B, 0xFD, 0x00, 0x02, + 0xFD, 0x64, 0x81, 0x3F, 0x3F, 0x80, 0x62, 0xFE, 0xC2, 0xDE, 0x02, 0x1C, + 0xA9, 0xE3, 0x72, 0x01, 0x01, 0x73, 0xE3, 0x9F, 0xFC, 0xF7, 0x02, 0x49, + 0xBD, 0x42, 0x76, 0x4D, 0x4B, 0x79, 0x45, 0xFA, 0xEC, 0x05, 0xD2, 0x7B, + 0xCD, 0x7E, 0x80, 0xCD, 0x76, 0x89, 0xAB, 0xAB, 0x00, 0x03, 0x00, 0x20, + 0xFF, 0xEC, 0x04, 0xD2, 0x05, 0xE6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x27, + 0x00, 0x00, 0x41, 0x07, 0x21, 0x37, 0x01, 0x07, 0x21, 0x37, 0x01, 0x07, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x24, 0x02, 0x35, 0x34, + 0x12, 0x24, 0x33, 0x32, 0x16, 0x04, 0x21, 0x46, 0xFC, 0x45, 0x36, 0x03, + 0x48, 0x45, 0xFC, 0xC7, 0x36, 0x04, 0x7C, 0x54, 0x2A, 0x60, 0x6F, 0x40, + 0x74, 0xB6, 0x69, 0x69, 0xB6, 0x74, 0x41, 0x6F, 0x5D, 0x26, 0x56, 0x4D, + 0xCC, 0x70, 0xB6, 0xFE, 0xE7, 0xA0, 0xA0, 0x01, 0x19, 0xB6, 0x74, 0xC9, + 0x03, 0xC7, 0x95, 0x95, 0xFE, 0xD9, 0x97, 0x97, 0x02, 0xB2, 0xB6, 0x23, + 0x39, 0x23, 0x7E, 0xFB, 0xBA, 0xBA, 0xFA, 0x7D, 0x22, 0x37, 0x1E, 0xB5, + 0x46, 0x47, 0xB8, 0x01, 0x57, 0xED, 0xED, 0x01, 0x58, 0xB9, 0x4C, 0x00, + 0x03, 0x00, 0x28, 0x00, 0x00, 0x04, 0x14, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x1C, 0x00, 0x20, 0x00, 0x00, 0x41, 0x07, 0x21, 0x37, 0x01, 0x01, 0x27, + 0x21, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x37, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x01, 0x15, 0x13, 0x07, + 0x25, 0x37, 0x04, 0x14, 0x34, 0xFC, 0x48, 0x33, 0x01, 0xEA, 0xFD, 0xF7, + 0x03, 0x01, 0x04, 0x61, 0x87, 0x46, 0x92, 0x9C, 0xFE, 0xEB, 0x35, 0xE0, + 0xB4, 0xEA, 0x72, 0x5F, 0xCF, 0xA8, 0x07, 0x01, 0xDC, 0xC8, 0x34, 0xFD, + 0x07, 0x34, 0x04, 0x6C, 0xB4, 0xB4, 0xFB, 0x94, 0x02, 0x79, 0x8D, 0x3C, + 0x72, 0x53, 0x7B, 0x8F, 0xC1, 0x74, 0xCB, 0x84, 0x77, 0xC2, 0x77, 0x09, + 0x02, 0xFD, 0xB8, 0x0C, 0x05, 0xD2, 0xB5, 0x04, 0xB1, 0x00, 0x03, 0x00, + 0x44, 0x00, 0x00, 0x04, 0xC3, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x0B, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x21, 0x15, 0x21, 0x35, 0x01, + 0x15, 0x21, 0x35, 0x02, 0xF2, 0xDD, 0x02, 0xAE, 0xFB, 0x81, 0x04, 0x7F, + 0xFB, 0x81, 0x04, 0x9D, 0xFB, 0x63, 0x04, 0x9D, 0xBE, 0xBE, 0x01, 0x35, + 0xBE, 0xBE, 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0xFD, 0x07, 0x0C, 0x05, 0xD2, + 0x04, 0x26, 0x01, 0x77, 0x00, 0x00, 0x00, 0x07, 0x03, 0x78, 0x04, 0x91, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x33, 0x00, 0x00, 0x05, 0x23, 0x05, 0xD2, + 0x00, 0x15, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x73, 0x11, 0x21, 0x20, + 0x12, 0x11, 0x10, 0x02, 0x21, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x23, 0x11, 0x01, 0x35, 0x21, 0x15, 0x01, 0x35, + 0x21, 0x15, 0xC3, 0x01, 0xCD, 0x01, 0x0F, 0xFA, 0xF9, 0xFE, 0xEF, 0xFE, + 0xDA, 0x01, 0x2D, 0x71, 0x80, 0x35, 0x35, 0x80, 0x73, 0xF1, 0xFE, 0x90, + 0x04, 0xF0, 0xFB, 0x10, 0x04, 0xF0, 0x05, 0xD2, 0xFE, 0xFA, 0xFE, 0xE1, + 0xFE, 0xE3, 0xFE, 0xFA, 0xBB, 0x45, 0x9F, 0x84, 0x85, 0x9D, 0x45, 0xFA, + 0xEC, 0x02, 0xD3, 0x92, 0x92, 0x01, 0x22, 0x92, 0x92, 0x00, 0x04, 0x00, + 0x21, 0x00, 0x00, 0x05, 0x9D, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x0E, 0x00, 0x12, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x11, 0x23, + 0x11, 0x21, 0x01, 0x07, 0x07, 0x11, 0x33, 0x01, 0x13, 0x01, 0x37, 0x01, + 0x05, 0x7B, 0xFA, 0xA6, 0x01, 0xBF, 0xDE, 0x04, 0x9B, 0xFD, 0x23, 0x1B, + 0xE7, 0x35, 0x02, 0x88, 0x0B, 0xFD, 0xF8, 0x89, 0x02, 0x8A, 0x03, 0x7B, + 0xC1, 0xC1, 0x02, 0x57, 0xFA, 0x2E, 0x05, 0xD2, 0xFC, 0xEE, 0x23, 0xFE, + 0x01, 0x6E, 0x02, 0xC5, 0xFA, 0x2E, 0x02, 0xB8, 0x9C, 0xFC, 0xAC, 0x00, + 0x03, 0x00, 0x20, 0x00, 0x00, 0x07, 0x89, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x17, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, + 0x35, 0x13, 0x01, 0x33, 0x01, 0x33, 0x01, 0x33, 0x01, 0x33, 0x01, 0x23, + 0x01, 0x23, 0x01, 0x23, 0x01, 0x07, 0x7F, 0xF8, 0xAB, 0x07, 0x55, 0xF8, + 0xAB, 0xCD, 0x01, 0x2B, 0x0E, 0x01, 0x31, 0xE6, 0x01, 0x30, 0x10, 0x01, + 0x29, 0xD9, 0xFE, 0x6C, 0xE5, 0xFE, 0xCB, 0x0C, 0xFE, 0xC9, 0xE6, 0xFE, + 0x6E, 0x03, 0xF5, 0xA0, 0xA0, 0xFE, 0xB7, 0xA0, 0xA0, 0x03, 0x26, 0xFB, + 0x7A, 0x04, 0x86, 0xFB, 0x79, 0x04, 0x87, 0xFA, 0x2E, 0x04, 0x5F, 0xFB, + 0xA1, 0x05, 0xD2, 0x00, 0x04, 0x00, 0x51, 0x00, 0x00, 0x04, 0x75, 0x05, + 0xE7, 0x00, 0x1B, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x00, 0x77, + 0x35, 0x32, 0x36, 0x27, 0x03, 0x26, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x17, 0x13, 0x16, 0x0E, + 0x03, 0x07, 0x35, 0x21, 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x06, + 0x23, 0x01, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x51, 0x52, 0x59, + 0x04, 0x1D, 0x06, 0x75, 0xD8, 0x8D, 0x82, 0xC8, 0x76, 0x04, 0xD0, 0x04, + 0x81, 0x6E, 0x52, 0x76, 0x3B, 0x03, 0x19, 0x03, 0x2B, 0x4C, 0x63, 0x6C, + 0x35, 0x03, 0x0D, 0x29, 0x22, 0xCC, 0x89, 0x8C, 0xFC, 0xF1, 0x03, 0x0A, + 0xFC, 0xF6, 0x03, 0x0A, 0x8E, 0x32, 0x58, 0x62, 0x02, 0x93, 0x8E, 0xD5, + 0x77, 0x71, 0xCA, 0x87, 0x07, 0x7D, 0x8C, 0x42, 0x7B, 0x55, 0xFD, 0x77, + 0x45, 0x5D, 0x37, 0x1C, 0x09, 0x8E, 0xC0, 0x23, 0x28, 0x3D, 0x32, 0x8A, + 0x8C, 0x01, 0xEA, 0x91, 0x91, 0x01, 0x14, 0x91, 0x91, 0x00, 0x03, 0x00, + 0x18, 0x00, 0x00, 0x05, 0x5B, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x15, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x01, + 0x01, 0x21, 0x01, 0x23, 0x01, 0x26, 0x02, 0x27, 0x33, 0x06, 0x02, 0x07, + 0x01, 0x37, 0x05, 0x03, 0xFA, 0xFD, 0x05, 0x03, 0xFA, 0xDE, 0x02, 0x1B, + 0x01, 0x0E, 0x02, 0x1A, 0xF3, 0xFE, 0xE1, 0x23, 0x51, 0x39, 0x3B, 0x38, + 0x51, 0x23, 0xFE, 0xDC, 0x02, 0xC8, 0x91, 0x91, 0xFE, 0xB8, 0x92, 0x92, + 0xFE, 0x80, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x46, 0x69, 0x01, 0x03, 0xBD, + 0xBE, 0xFE, 0xFD, 0x68, 0xFC, 0xBA, 0x00, 0x04, 0x00, 0x6E, 0xFF, 0xEC, + 0x04, 0xB8, 0x05, 0xE6, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x34, + 0x00, 0x00, 0x41, 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x01, 0x21, 0x35, 0x21, 0x11, 0x21, 0x35, 0x21, 0x01, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x33, 0x0E, 0x02, 0x02, 0x99, 0x3E, 0x57, 0x36, 0x18, 0x01, 0xEA, + 0x04, 0x5F, 0xC8, 0xA2, 0x8D, 0xC6, 0x68, 0x3D, 0x37, 0xC0, 0x24, 0x33, + 0x6F, 0x01, 0xB1, 0xFB, 0xB6, 0x04, 0x4A, 0xFB, 0xB6, 0x04, 0x4A, 0xFD, + 0xDB, 0xDD, 0xF8, 0x43, 0x39, 0xCE, 0x35, 0x2F, 0x7C, 0x73, 0x6E, 0x8C, + 0x01, 0xE9, 0x02, 0x75, 0xD7, 0x05, 0x28, 0x1D, 0x35, 0x46, 0x27, 0x6B, + 0xAC, 0x66, 0x50, 0x9A, 0x6F, 0x43, 0x7B, 0x2E, 0x38, 0x29, 0x55, 0x30, + 0x49, 0x58, 0xFE, 0x0C, 0xAF, 0xFE, 0x20, 0xAD, 0xFD, 0x3C, 0xB7, 0xA8, + 0x44, 0x82, 0x27, 0x24, 0x2D, 0x5F, 0x35, 0x4E, 0x58, 0x59, 0x65, 0x83, + 0xAA, 0x52, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x05, 0xDF, 0x05, 0xD2, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x23, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x01, 0x15, 0x21, 0x35, 0x13, 0x11, 0x33, 0x01, 0x1E, 0x02, 0x17, 0x07, + 0x2E, 0x02, 0x35, 0x11, 0x33, 0x11, 0x23, 0x01, 0x2E, 0x02, 0x27, 0x37, + 0x1E, 0x02, 0x15, 0x11, 0x05, 0xDF, 0xFA, 0x34, 0x05, 0xCC, 0xFA, 0x34, + 0x8F, 0xF9, 0x02, 0x38, 0x16, 0x41, 0x49, 0x22, 0x18, 0x04, 0x06, 0x03, + 0xE0, 0xFB, 0xFE, 0x05, 0x1C, 0x4D, 0x62, 0x3C, 0x21, 0x05, 0x06, 0x03, + 0x03, 0xB2, 0x92, 0x92, 0xFE, 0xC6, 0x92, 0x92, 0xFD, 0x88, 0x05, 0xD2, + 0xFC, 0x7E, 0x22, 0x6F, 0x83, 0x42, 0x27, 0x40, 0x9C, 0x8D, 0x28, 0x03, + 0x6E, 0xFA, 0x2E, 0x03, 0x22, 0x2C, 0x80, 0xAB, 0x68, 0x22, 0x71, 0xBB, + 0x8B, 0x28, 0xFC, 0xDC, 0x00, 0x02, 0x00, 0x58, 0xFF, 0x3C, 0x05, 0x83, + 0x06, 0x96, 0x00, 0x03, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x11, 0x33, 0x11, + 0x27, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, + 0x17, 0x23, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x17, 0x21, 0x35, 0x21, 0x15, 0x14, 0x02, + 0x04, 0x02, 0xB4, 0x9E, 0x4A, 0xCB, 0xFE, 0xCB, 0xB0, 0xB1, 0x01, 0x36, + 0xC5, 0x7A, 0xD5, 0xA7, 0x6E, 0x11, 0xE3, 0x11, 0x47, 0x68, 0x83, 0x4C, + 0x8A, 0xD0, 0x75, 0x75, 0xD2, 0x8B, 0x76, 0xBB, 0x6C, 0x3F, 0xFE, 0x52, + 0x02, 0x4B, 0xA6, 0xFE, 0xE1, 0xC4, 0x07, 0x5A, 0xF8, 0xA6, 0xAD, 0xC1, + 0x01, 0x5A, 0xE4, 0xE8, 0x01, 0x5A, 0xBF, 0x49, 0x88, 0xB9, 0x71, 0x44, + 0x70, 0x50, 0x2B, 0x8B, 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, 0x64, 0xB4, 0x78, + 0x05, 0xB9, 0xAA, 0xB4, 0xFE, 0xEB, 0x9D, 0x00, 0x03, 0x00, 0x58, 0xFF, + 0x42, 0x05, 0x7B, 0x06, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x2D, 0x00, + 0x00, 0x41, 0x01, 0x23, 0x01, 0x23, 0x01, 0x07, 0x01, 0x03, 0x22, 0x24, + 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, + 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, + 0x02, 0x37, 0x33, 0x0E, 0x03, 0x04, 0xC3, 0xFD, 0xC0, 0x60, 0x02, 0x3D, + 0xA3, 0xFD, 0xC0, 0x60, 0x02, 0x3D, 0x50, 0xCB, 0xFE, 0xC9, 0xB0, 0xAF, + 0x01, 0x38, 0xCB, 0x79, 0xD2, 0xA6, 0x6C, 0x14, 0xE3, 0x10, 0x48, 0x67, + 0x83, 0x4A, 0x8F, 0xD2, 0x73, 0x73, 0xD2, 0x8F, 0x4A, 0x82, 0x68, 0x48, + 0x11, 0xE2, 0x13, 0x6C, 0xA5, 0xD3, 0x06, 0x8C, 0xF8, 0xBA, 0x07, 0x46, + 0xF8, 0xBA, 0x04, 0x07, 0x46, 0xF9, 0x61, 0xBF, 0x01, 0x5A, 0xE6, 0xE8, + 0x01, 0x5A, 0xBF, 0x47, 0x88, 0xBE, 0x77, 0x4B, 0x74, 0x51, 0x28, 0x8B, + 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, 0x29, 0x4F, 0x74, 0x4B, 0x75, 0xBE, 0x88, + 0x48, 0x00, 0x02, 0x00, 0x58, 0xFF, 0x25, 0x05, 0x7B, 0x06, 0xAD, 0x00, + 0x03, 0x00, 0x29, 0x00, 0x00, 0x45, 0x11, 0x33, 0x11, 0x27, 0x22, 0x24, + 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, + 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, + 0x02, 0x37, 0x33, 0x0E, 0x03, 0x02, 0xB3, 0x9F, 0x48, 0xCB, 0xFE, 0xC9, + 0xB0, 0xAF, 0x01, 0x38, 0xCB, 0x79, 0xD2, 0xA6, 0x6C, 0x14, 0xE3, 0x10, + 0x48, 0x67, 0x83, 0x4A, 0x8F, 0xD2, 0x73, 0x73, 0xD2, 0x8F, 0x4A, 0x82, + 0x68, 0x48, 0x11, 0xE2, 0x13, 0x6C, 0xA5, 0xD3, 0xDB, 0x07, 0x88, 0xF8, + 0x78, 0xC4, 0xBF, 0x01, 0x5A, 0xE6, 0xE8, 0x01, 0x5A, 0xBF, 0x47, 0x88, + 0xBE, 0x77, 0x4B, 0x74, 0x51, 0x28, 0x8B, 0xFE, 0xAC, 0xAB, 0xFD, 0x8B, + 0x29, 0x4F, 0x74, 0x4B, 0x75, 0xBE, 0x88, 0x48, 0x00, 0x02, 0x00, 0x58, + 0xFF, 0xEC, 0x05, 0x51, 0x05, 0xE6, 0x00, 0x14, 0x00, 0x3A, 0x00, 0x00, + 0x41, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x11, 0x23, 0x11, + 0x33, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x37, 0x07, 0x2E, 0x03, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, + 0x37, 0x17, 0x0E, 0x03, 0x23, 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, + 0x33, 0x32, 0x1E, 0x02, 0x04, 0xF0, 0x46, 0x0C, 0x31, 0x24, 0x54, 0x75, + 0x3F, 0x02, 0xCA, 0xCA, 0x0B, 0x10, 0x52, 0x71, 0x3E, 0x2C, 0x50, 0x7A, + 0xDB, 0x10, 0x49, 0x69, 0x7E, 0x46, 0x7E, 0xCA, 0x75, 0x75, 0xCA, 0x7E, + 0x45, 0x7E, 0x68, 0x49, 0x11, 0xDC, 0x17, 0x6F, 0xA2, 0xC9, 0x70, 0xBF, + 0xFE, 0xD3, 0xAC, 0xAC, 0x01, 0x2D, 0xBF, 0x71, 0xC8, 0xA2, 0x6F, 0x03, + 0x3A, 0xBB, 0x08, 0x10, 0x58, 0x87, 0x46, 0xFE, 0xF7, 0x02, 0xE8, 0xB4, + 0x37, 0x59, 0x35, 0x18, 0xB6, 0x0D, 0x48, 0x6E, 0x4B, 0x27, 0x7F, 0xFA, + 0xBA, 0xBA, 0xF9, 0x7E, 0x25, 0x4B, 0x6E, 0x48, 0x0D, 0x73, 0xB4, 0x7C, + 0x41, 0xB8, 0x01, 0x57, 0xED, 0xED, 0x01, 0x58, 0xB9, 0x41, 0x7D, 0xB5, + 0x00, 0x03, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x15, 0x01, 0x35, 0x05, 0x15, + 0x01, 0x35, 0x03, 0x35, 0x21, 0x15, 0x21, 0x11, 0x23, 0x11, 0x03, 0xE6, + 0xFD, 0x3A, 0x02, 0xC6, 0xFD, 0x3A, 0xE6, 0x04, 0x8F, 0xFE, 0x29, 0xE0, + 0x04, 0x33, 0x9B, 0xFE, 0xEA, 0x94, 0x14, 0x9A, 0xFE, 0xE8, 0x94, 0x03, + 0x2B, 0xC3, 0xC3, 0xFA, 0xF1, 0x05, 0x0F, 0x00, 0x03, 0x00, 0x4A, 0xFE, + 0x5E, 0x0A, 0xA1, 0x06, 0x8C, 0x00, 0x40, 0x00, 0x54, 0x00, 0x64, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x03, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, + 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, 0x15, + 0x14, 0x02, 0x06, 0x23, 0x22, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x0E, 0x02, 0x01, + 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x11, 0x01, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, + 0x85, 0x8C, 0xAF, 0x50, 0x87, 0x54, 0x5E, 0x87, 0x6B, 0x67, 0x7B, 0x53, + 0x72, 0x9E, 0x52, 0x35, 0x7D, 0xD4, 0x9E, 0x3F, 0xAE, 0xD3, 0x76, 0x2E, + 0x7F, 0xDC, 0xC0, 0x52, 0xC6, 0x01, 0x20, 0xBA, 0x5B, 0x89, 0xFE, 0xB1, + 0x76, 0xA5, 0x75, 0x5D, 0x5A, 0x38, 0x2F, 0x43, 0x40, 0x32, 0x36, 0x3F, + 0xE5, 0x25, 0x53, 0x84, 0x04, 0xD6, 0x7C, 0xE1, 0x97, 0x97, 0xE0, 0x7D, + 0x75, 0xCE, 0x89, 0x4E, 0x7B, 0x5A, 0x1F, 0x05, 0x01, 0x1C, 0x5B, 0x80, + 0x44, 0x43, 0x80, 0x5B, 0x5A, 0x86, 0x49, 0x48, 0x85, 0x14, 0x97, 0x82, + 0x57, 0x7E, 0x45, 0x4C, 0x70, 0x71, 0x4B, 0x96, 0xFF, 0x9D, 0x1C, 0x7C, + 0xCF, 0x97, 0x53, 0x10, 0x28, 0x24, 0xAE, 0x25, 0x2E, 0x14, 0x70, 0xCC, + 0xFE, 0xEF, 0xA2, 0x1B, 0xD9, 0xFE, 0xAD, 0xC1, 0x4F, 0x74, 0x74, 0x4F, + 0x3C, 0x32, 0x31, 0x3A, 0x45, 0x39, 0x05, 0x75, 0xFA, 0xD3, 0x3E, 0x82, + 0x6F, 0x44, 0xFE, 0x72, 0x03, 0xAF, 0xB0, 0xFC, 0x88, 0x86, 0xF9, 0xAC, + 0xA6, 0xFA, 0x8B, 0x2F, 0x53, 0x36, 0xFD, 0xBB, 0x02, 0x44, 0x5D, 0xA7, + 0x72, 0x71, 0xA6, 0x5C, 0x5C, 0xA7, 0x71, 0x71, 0xA7, 0x5D, 0x00, 0x02, + 0x00, 0x7D, 0xFF, 0x82, 0x06, 0x46, 0x05, 0x00, 0x00, 0x03, 0x00, 0x2D, + 0x00, 0x00, 0x41, 0x01, 0x23, 0x01, 0x13, 0x11, 0x23, 0x11, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x17, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x04, 0x83, + 0xFD, 0xC9, 0xBD, 0x02, 0x39, 0x04, 0xD5, 0x69, 0x58, 0x3B, 0x68, 0x41, + 0xD5, 0xD3, 0x0B, 0x15, 0x54, 0x77, 0x47, 0x69, 0x91, 0x25, 0x0A, 0x15, + 0x5C, 0x85, 0x4F, 0x5E, 0x9C, 0x5C, 0xD7, 0x3E, 0x5C, 0x2E, 0x69, 0x71, + 0x05, 0x00, 0xFA, 0x82, 0x05, 0x7E, 0xFD, 0xBC, 0xFD, 0x44, 0x02, 0xD2, + 0x75, 0x65, 0x3F, 0x76, 0x53, 0xFD, 0x5C, 0x04, 0x5E, 0xAC, 0x2E, 0x55, + 0x37, 0x6D, 0x51, 0x2F, 0x57, 0x38, 0x56, 0xB5, 0x8F, 0xFD, 0x2E, 0x02, + 0xD6, 0x51, 0x5D, 0x28, 0x84, 0x00, 0x02, 0x00, 0x93, 0x00, 0x00, 0x06, + 0x02, 0x04, 0x5E, 0x00, 0x0D, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x21, 0x16, + 0x16, 0x15, 0x11, 0x23, 0x11, 0x26, 0x26, 0x23, 0x21, 0x11, 0x23, 0x21, + 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, + 0x23, 0x93, 0x02, 0x77, 0xBC, 0xB5, 0xDA, 0x01, 0x4B, 0x57, 0xFE, 0x6F, + 0xDA, 0x01, 0x87, 0xDA, 0x01, 0x92, 0x54, 0x4C, 0xDC, 0xB5, 0xBB, 0x04, + 0x5E, 0x01, 0xB6, 0xB2, 0xFE, 0x77, 0x01, 0x89, 0x5A, 0x55, 0xFC, 0x5C, + 0x02, 0xF0, 0xFD, 0xCA, 0x53, 0x5B, 0x02, 0xE9, 0xFD, 0x17, 0xB1, 0xB7, + 0x00, 0x02, 0x00, 0x7B, 0x00, 0x00, 0x05, 0x3B, 0x04, 0x5E, 0x00, 0x15, + 0x00, 0x19, 0x00, 0x00, 0x61, 0x23, 0x27, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x17, 0x15, 0x23, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x04, + 0x12, 0x15, 0x01, 0x11, 0x23, 0x11, 0x05, 0x3B, 0xD7, 0x01, 0x64, 0xB1, + 0x74, 0x71, 0xB1, 0x67, 0x01, 0xD7, 0x9C, 0x01, 0x13, 0xB0, 0xB5, 0x01, + 0x12, 0x9A, 0xFE, 0x0E, 0xDC, 0xB3, 0xA9, 0xE3, 0x74, 0x75, 0xE3, 0xA8, + 0xB3, 0xB2, 0xDD, 0x01, 0x3D, 0xAB, 0xAB, 0xFE, 0xC3, 0xDD, 0x03, 0xAC, + 0xFB, 0xA2, 0x04, 0x5E, 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0xE8, 0x08, 0x84, + 0x05, 0xD2, 0x04, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x03, 0x67, + 0x04, 0xCC, 0x00, 0x00, 0x00, 0x05, 0x00, 0x7E, 0x00, 0x00, 0x05, 0x39, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x25, 0x00, 0x29, + 0x00, 0x00, 0x41, 0x23, 0x11, 0x33, 0x01, 0x23, 0x11, 0x33, 0x01, 0x35, + 0x21, 0x15, 0x25, 0x26, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, + 0x04, 0x12, 0x15, 0x23, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, + 0x1E, 0x02, 0x33, 0x21, 0x37, 0x33, 0x07, 0x03, 0xC2, 0xA3, 0xA3, 0xFE, + 0xD4, 0xA4, 0xA4, 0xFD, 0xEA, 0x04, 0xAC, 0xFD, 0xB4, 0xBB, 0xFE, 0xEE, + 0x95, 0x99, 0x01, 0x11, 0xB1, 0xB5, 0x01, 0x11, 0x9A, 0xD8, 0x64, 0xAF, + 0x75, 0x6F, 0xAF, 0x66, 0x01, 0x01, 0x62, 0xC3, 0x91, 0xFE, 0x3D, 0x06, + 0x27, 0x04, 0x02, 0xA1, 0x03, 0x31, 0xFC, 0xCF, 0x03, 0x31, 0xFA, 0x2E, + 0xBB, 0xBB, 0x38, 0x01, 0xA9, 0x01, 0x26, 0xB8, 0xC0, 0x01, 0x18, 0x99, + 0x9E, 0xFE, 0xDA, 0xCC, 0x9F, 0xCE, 0x63, 0x63, 0xC9, 0x9D, 0x91, 0xDF, + 0x7D, 0x12, 0x12, 0xFF, 0xFF, 0xFF, 0xFB, 0x00, 0x00, 0x04, 0x8A, 0x05, + 0xD2, 0x04, 0x26, 0x00, 0x89, 0x3B, 0x00, 0x00, 0x07, 0x0B, 0x39, 0xFF, + 0xD3, 0xFE, 0x62, 0x00, 0x04, 0x00, 0x8E, 0xFF, 0x2B, 0x04, 0xD8, 0x06, + 0xA7, 0x00, 0x03, 0x00, 0x17, 0x00, 0x21, 0x00, 0x2B, 0x00, 0x00, 0x45, + 0x11, 0x33, 0x11, 0x25, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x02, 0x35, 0x9B, 0xFD, 0xBE, 0x02, + 0x2C, 0x9B, 0xD7, 0x71, 0x3E, 0x71, 0x4C, 0x55, 0x8C, 0x55, 0x74, 0xE8, + 0xB0, 0xFE, 0xA0, 0x01, 0x50, 0x9A, 0x9F, 0x48, 0x88, 0x61, 0xFE, 0xA8, + 0x01, 0x47, 0x52, 0x79, 0x41, 0x8B, 0x80, 0xFE, 0xB8, 0xD5, 0x07, 0x7C, + 0xF8, 0x84, 0xD5, 0x05, 0xD2, 0x62, 0xB0, 0x75, 0x58, 0x80, 0x54, 0x17, + 0x04, 0x0B, 0x56, 0x98, 0x6C, 0x7B, 0xBC, 0x68, 0xBD, 0x78, 0x6D, 0x4B, + 0x6F, 0x3E, 0xB5, 0x38, 0x67, 0x46, 0x66, 0x7B, 0x00, 0x07, 0x00, 0x8E, + 0xFF, 0x46, 0x04, 0xD8, 0x06, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x23, 0x00, 0x2D, 0x00, 0x37, 0x00, 0x00, 0x41, 0x11, + 0x33, 0x11, 0x33, 0x11, 0x33, 0x11, 0x01, 0x11, 0x33, 0x11, 0x33, 0x11, + 0x33, 0x11, 0x25, 0x11, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x21, 0x01, 0x71, 0x97, 0x94, 0x99, 0xFE, 0x3C, + 0x97, 0x94, 0x99, 0xFD, 0x59, 0x02, 0x2C, 0x9B, 0xD7, 0x71, 0x3E, 0x71, + 0x4C, 0x55, 0x8C, 0x55, 0x74, 0xE8, 0xB0, 0xFE, 0xA0, 0x01, 0x50, 0x9A, + 0x9F, 0x48, 0x88, 0x61, 0xFE, 0xA8, 0x01, 0x47, 0x52, 0x79, 0x41, 0x8B, + 0x80, 0xFE, 0xB8, 0x05, 0x86, 0x01, 0x06, 0xFE, 0xFA, 0x01, 0x06, 0xFE, + 0xFA, 0xF9, 0xC0, 0x01, 0x06, 0xFE, 0xFA, 0x01, 0x06, 0xFE, 0xFA, 0xBA, + 0x05, 0xD2, 0x62, 0xB0, 0x75, 0x58, 0x80, 0x54, 0x17, 0x04, 0x0B, 0x56, + 0x98, 0x6C, 0x7B, 0xBC, 0x68, 0xBD, 0x78, 0x6D, 0x4B, 0x6F, 0x3E, 0xB5, + 0x38, 0x67, 0x46, 0x66, 0x7B, 0x00, 0x02, 0x00, 0x58, 0xFF, 0xE9, 0x04, + 0xB2, 0x05, 0xE9, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, + 0x02, 0x35, 0x34, 0x12, 0x36, 0x33, 0x32, 0x16, 0x12, 0x15, 0x14, 0x02, + 0x06, 0x27, 0x32, 0x36, 0x12, 0x35, 0x34, 0x02, 0x26, 0x23, 0x22, 0x06, + 0x02, 0x15, 0x14, 0x12, 0x16, 0x02, 0x85, 0xAD, 0xF9, 0x87, 0x87, 0xFA, + 0xAC, 0xAD, 0xFA, 0x86, 0x86, 0xFA, 0xAD, 0x6B, 0x9A, 0x53, 0x53, 0x9A, + 0x6B, 0x6B, 0x9A, 0x53, 0x53, 0x9A, 0x17, 0xBB, 0x01, 0x57, 0xED, 0xEE, + 0x01, 0x58, 0xBB, 0xBB, 0xFE, 0xA8, 0xEE, 0xED, 0xFE, 0xA8, 0xBA, 0xBE, + 0x8B, 0x01, 0x02, 0xB4, 0xB5, 0x01, 0x03, 0x8B, 0x8B, 0xFE, 0xFD, 0xB5, + 0xB4, 0xFE, 0xFE, 0x8B, 0x00, 0x01, 0x00, 0x38, 0x00, 0x00, 0x02, 0x7E, + 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x23, 0x05, + 0x35, 0x25, 0x02, 0x7E, 0xD9, 0x03, 0xFE, 0x96, 0x01, 0x69, 0x05, 0xD2, + 0xFA, 0x2E, 0x04, 0xFA, 0xF2, 0xD8, 0xF2, 0x00, 0x01, 0x00, 0x61, 0x00, + 0x00, 0x04, 0x4C, 0x05, 0xE9, 0x00, 0x1F, 0x00, 0x00, 0x73, 0x35, 0x01, + 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x23, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, + 0x01, 0x15, 0x21, 0x15, 0x61, 0x02, 0x11, 0x53, 0x70, 0x38, 0x45, 0x7C, + 0x56, 0x5B, 0x82, 0x46, 0xD1, 0x7D, 0xE2, 0x96, 0x90, 0xDC, 0x7D, 0x46, + 0x92, 0x73, 0xFE, 0x9C, 0x02, 0xBB, 0xAD, 0x01, 0xE9, 0x4E, 0x7B, 0x78, + 0x48, 0x53, 0x79, 0x41, 0x4D, 0x8C, 0x60, 0x95, 0xE3, 0x7E, 0x72, 0xCA, + 0x84, 0x5F, 0xA7, 0xAD, 0x6B, 0xFE, 0xB8, 0x05, 0xBE, 0xFF, 0xFF, 0x00, + 0x61, 0x00, 0x00, 0x04, 0x4C, 0x05, 0xE9, 0x06, 0x26, 0x05, 0x3D, 0x00, + 0x00, 0x00, 0x07, 0x0B, 0x68, 0x00, 0xDD, 0xFF, 0x83, 0x00, 0x01, 0x00, + 0x5E, 0xFF, 0xE9, 0x04, 0x8A, 0x05, 0xE9, 0x00, 0x34, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x27, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, + 0x06, 0x02, 0x76, 0xA2, 0xF0, 0x85, 0x01, 0xDE, 0x01, 0x4C, 0x8B, 0x5F, + 0x5C, 0x8E, 0x50, 0x54, 0x98, 0x67, 0x7D, 0x7D, 0x59, 0x86, 0x4A, 0x44, + 0x7C, 0x54, 0x54, 0x7F, 0x48, 0x01, 0xD6, 0x01, 0x80, 0xE1, 0x92, 0x8E, + 0xDD, 0x7E, 0x92, 0x7C, 0x63, 0x8E, 0x4D, 0x8A, 0xF0, 0x17, 0x7C, 0xD9, + 0x8B, 0x5C, 0x83, 0x45, 0x3F, 0x76, 0x4E, 0x4A, 0x6F, 0x3E, 0xB7, 0x38, + 0x67, 0x45, 0x4C, 0x6E, 0x3C, 0x40, 0x76, 0x53, 0x84, 0xCB, 0x73, 0x6C, + 0xBB, 0x78, 0x77, 0xAD, 0x21, 0x05, 0x0F, 0x63, 0x93, 0x59, 0x81, 0xC7, + 0x71, 0x00, 0x02, 0x00, 0x43, 0x00, 0x00, 0x04, 0xD5, 0x05, 0xD2, 0x00, + 0x09, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x35, 0x01, 0x33, 0x15, 0x23, 0x01, + 0x15, 0x21, 0x15, 0x01, 0x11, 0x37, 0x11, 0x33, 0x11, 0x43, 0x02, 0xAB, + 0x8B, 0x51, 0xFE, 0x07, 0x03, 0xA6, 0xFE, 0x56, 0x01, 0xD4, 0x01, 0x4E, + 0xB4, 0x03, 0xD0, 0xF1, 0xFD, 0x2E, 0x05, 0xBC, 0xFE, 0xB2, 0x01, 0x84, + 0x53, 0x03, 0xFB, 0xFA, 0x2E, 0x00, 0x01, 0x00, 0x53, 0xFF, 0xEB, 0x04, + 0x5D, 0x05, 0xD2, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, + 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, 0x03, 0x33, 0x36, 0x36, + 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x02, 0x5A, 0x93, 0xE6, + 0x88, 0x06, 0xD9, 0x07, 0x51, 0x84, 0x52, 0x59, 0x87, 0x4C, 0x4A, 0x85, + 0x57, 0x68, 0x9E, 0x21, 0xD2, 0x39, 0x03, 0x6C, 0xFD, 0x59, 0x24, 0x03, + 0x3E, 0xA2, 0x61, 0x66, 0xAD, 0x7F, 0x46, 0x82, 0xE8, 0x15, 0x75, 0xCB, + 0x82, 0x4B, 0x77, 0x44, 0x53, 0x90, 0x5D, 0x5E, 0x91, 0x53, 0x53, 0x4D, + 0x07, 0x03, 0x42, 0xBF, 0xFE, 0x4E, 0x40, 0x42, 0x4A, 0x88, 0xB8, 0x6E, + 0x95, 0xE7, 0x84, 0x00, 0x02, 0x00, 0x3A, 0xFF, 0xEB, 0x04, 0xA2, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x2A, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, + 0x22, 0x26, 0x26, 0x27, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, + 0x03, 0x33, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, + 0x01, 0x59, 0xFE, 0xE1, 0x02, 0x64, 0x92, 0xE7, 0x88, 0x06, 0xDA, 0x06, + 0x51, 0x84, 0x53, 0x59, 0x87, 0x4C, 0x4B, 0x84, 0x57, 0x69, 0x9D, 0x22, + 0xD1, 0x38, 0x03, 0x6C, 0xFD, 0x5A, 0x24, 0x03, 0x3D, 0xA3, 0x61, 0x66, + 0xAC, 0x80, 0x46, 0x82, 0xE8, 0x05, 0xD2, 0xBF, 0xBF, 0xFA, 0x19, 0x75, + 0xCB, 0x82, 0x4B, 0x77, 0x44, 0x53, 0x90, 0x5D, 0x5E, 0x91, 0x53, 0x53, + 0x4D, 0x07, 0x03, 0x42, 0xBF, 0xFE, 0x4E, 0x40, 0x42, 0x4A, 0x88, 0xB8, + 0x6E, 0x95, 0xE7, 0x84, 0x00, 0x02, 0x00, 0x58, 0xFF, 0xE9, 0x04, 0x7B, + 0x05, 0xE9, 0x00, 0x22, 0x00, 0x33, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x02, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x02, 0x76, + 0x7A, 0xC8, 0x8F, 0x4D, 0x47, 0x8D, 0xD2, 0x8C, 0x87, 0xCF, 0x7F, 0x0E, + 0xD7, 0x15, 0x86, 0x6C, 0x77, 0x9E, 0x4E, 0x04, 0x23, 0x70, 0x8E, 0x4F, + 0x88, 0xD6, 0x7D, 0x84, 0xE8, 0x9A, 0x55, 0x89, 0x50, 0x4E, 0x86, 0x55, + 0x40, 0x6E, 0x54, 0x2F, 0x50, 0x89, 0x17, 0x5A, 0xB3, 0x01, 0x0B, 0xB2, + 0xBD, 0x01, 0x2F, 0xD7, 0x73, 0x68, 0xB7, 0x78, 0x63, 0x77, 0x87, 0xF2, + 0xA0, 0x3B, 0x54, 0x2D, 0x80, 0xDF, 0x8F, 0x93, 0xE4, 0x81, 0xBC, 0x54, + 0x90, 0x58, 0x57, 0x8D, 0x53, 0x31, 0x56, 0x71, 0x41, 0x56, 0x8F, 0x55, + 0x00, 0x01, 0x00, 0x3A, 0x00, 0x00, 0x04, 0x12, 0x05, 0xD2, 0x00, 0x07, + 0x00, 0x00, 0x73, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0xA0, 0x02, + 0x8F, 0xFD, 0x0B, 0x03, 0xD8, 0xFD, 0x76, 0x05, 0x0E, 0x03, 0xC1, 0xC7, + 0xFA, 0xF5, 0x00, 0x03, 0x00, 0x58, 0xFF, 0xE9, 0x04, 0x77, 0x05, 0xE9, + 0x00, 0x1F, 0x00, 0x2F, 0x00, 0x3F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, + 0x67, 0x9B, 0xEE, 0x86, 0x55, 0x94, 0x5D, 0x7A, 0x97, 0x7B, 0xD6, 0x89, + 0x89, 0xD6, 0x7A, 0x97, 0x78, 0x5D, 0x93, 0x56, 0x87, 0xEE, 0x9B, 0x5C, + 0x88, 0x4C, 0x4E, 0x8A, 0x58, 0x59, 0x89, 0x4F, 0x4C, 0x89, 0x5C, 0x4C, + 0x74, 0x41, 0x40, 0x74, 0x4D, 0x4D, 0x74, 0x41, 0x41, 0x75, 0x17, 0x6C, + 0xBE, 0x7A, 0x63, 0xA3, 0x69, 0x0D, 0x01, 0x16, 0xB6, 0x83, 0x73, 0xB6, + 0x67, 0x67, 0xB5, 0x74, 0x82, 0xB7, 0x16, 0x01, 0x0D, 0x6A, 0xA2, 0x63, + 0x7A, 0xBE, 0x6C, 0xB6, 0x3E, 0x72, 0x4B, 0x4E, 0x79, 0x45, 0x45, 0x79, + 0x4E, 0x4B, 0x72, 0x3E, 0x02, 0xBA, 0x3B, 0x6C, 0x47, 0x47, 0x69, 0x3B, + 0x3B, 0x69, 0x47, 0x47, 0x6B, 0x3C, 0x00, 0x02, 0x00, 0x58, 0xFF, 0xE9, + 0x04, 0x7B, 0x05, 0xEA, 0x00, 0x22, 0x00, 0x33, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x23, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x17, 0x32, + 0x16, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x06, 0x03, 0x32, 0x3E, 0x02, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x02, 0x46, 0x87, 0xD0, 0x80, 0x0F, 0xD8, 0x14, 0x89, 0x6C, 0x77, 0x9D, + 0x50, 0x04, 0x24, 0x6F, 0x8B, 0x50, 0x87, 0xD8, 0x7C, 0x83, 0xEA, 0x98, + 0x7B, 0xC6, 0x8F, 0x4E, 0x48, 0x8E, 0xD3, 0x7A, 0x40, 0x6F, 0x53, 0x30, + 0x50, 0x88, 0x55, 0x54, 0x89, 0x51, 0x4F, 0x86, 0x17, 0x67, 0xB9, 0x78, + 0x63, 0x78, 0x87, 0xF3, 0xA0, 0x3A, 0x53, 0x2B, 0x7F, 0xDF, 0x8D, 0x94, + 0xE3, 0x80, 0x01, 0x5A, 0xB2, 0xFE, 0xF4, 0xB2, 0xBD, 0xFE, 0xD1, 0xD8, + 0x72, 0x02, 0xD7, 0x30, 0x55, 0x70, 0x41, 0x57, 0x8C, 0x54, 0x53, 0x8E, + 0x58, 0x57, 0x8C, 0x51, 0x00, 0x03, 0x00, 0x58, 0xFF, 0xE9, 0x04, 0xB2, + 0x05, 0xE9, 0x00, 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x65, 0x27, + 0x01, 0x17, 0x01, 0x22, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x33, 0x32, + 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x27, 0x32, 0x36, 0x12, 0x35, 0x34, + 0x02, 0x26, 0x23, 0x22, 0x06, 0x02, 0x15, 0x14, 0x12, 0x16, 0x01, 0xB6, + 0x87, 0x02, 0x25, 0x87, 0xFE, 0xAA, 0xAD, 0xF9, 0x87, 0x87, 0xFA, 0xAC, + 0xAD, 0xFA, 0x86, 0x86, 0xFA, 0xAD, 0x6B, 0x9A, 0x53, 0x53, 0x9A, 0x6B, + 0x6B, 0x9A, 0x53, 0x53, 0x9A, 0x9E, 0x43, 0x04, 0x53, 0x42, 0xFA, 0xF7, + 0xBB, 0x01, 0x57, 0xED, 0xEE, 0x01, 0x58, 0xBB, 0xBB, 0xFE, 0xA8, 0xEE, + 0xED, 0xFE, 0xA8, 0xBA, 0xBE, 0x8B, 0x01, 0x02, 0xB4, 0xB5, 0x01, 0x03, + 0x8B, 0x8B, 0xFE, 0xFD, 0xB5, 0xB4, 0xFE, 0xFE, 0x8B, 0x00, 0x01, 0x00, + 0x6F, 0x00, 0x00, 0x02, 0x79, 0x05, 0xD2, 0x00, 0x0E, 0x00, 0x00, 0x61, + 0x11, 0x17, 0x0E, 0x02, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, + 0x11, 0x01, 0xA0, 0x14, 0x29, 0x5A, 0x73, 0x4F, 0x1E, 0x57, 0x7D, 0x4D, + 0x0D, 0xBE, 0x04, 0x6E, 0x14, 0x08, 0x0E, 0x08, 0xB3, 0x32, 0x65, 0x4C, + 0xFA, 0x2E, 0x00, 0x01, 0x00, 0x5E, 0xFF, 0xE9, 0x04, 0x80, 0x05, 0xD2, + 0x00, 0x22, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x33, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x01, + 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x35, 0x36, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x02, 0x75, 0x9E, 0xF1, 0x86, 0x02, 0xDD, 0x02, 0x4D, 0x8C, + 0x5C, 0x5B, 0x8A, 0x4E, 0x53, 0x9D, 0x70, 0xB3, 0x01, 0x8F, 0xFD, 0x96, + 0x03, 0x82, 0xFE, 0x1C, 0xB4, 0xF8, 0x7F, 0x85, 0xEC, 0x17, 0x7C, 0xD9, + 0x8B, 0x5A, 0x83, 0x47, 0x47, 0x82, 0x57, 0x57, 0x7F, 0x46, 0xA1, 0x01, + 0x8D, 0x04, 0xBF, 0xB6, 0xFE, 0x22, 0x2D, 0x0E, 0x69, 0xCA, 0x85, 0x8B, + 0xD5, 0x78, 0x00, 0x02, 0x00, 0x43, 0x00, 0x00, 0x04, 0xD5, 0x05, 0xD2, + 0x00, 0x07, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x35, 0x01, 0x33, 0x01, 0x15, + 0x21, 0x15, 0x01, 0x11, 0x35, 0x11, 0x33, 0x11, 0x43, 0x02, 0x9D, 0xE5, + 0xFD, 0x6E, 0x03, 0xA2, 0xFE, 0x57, 0xD3, 0x01, 0x4E, 0xB4, 0x03, 0xD0, + 0xFC, 0x3D, 0x05, 0xBC, 0xFE, 0xB2, 0x01, 0x84, 0x53, 0x01, 0xCB, 0xFC, + 0x5E, 0x00, 0x02, 0x00, 0x58, 0xFF, 0xE9, 0x04, 0x55, 0x05, 0xD2, 0x00, + 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x37, 0x01, 0x33, 0x01, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x59, 0x96, 0xE7, 0x84, + 0x6C, 0x76, 0x01, 0x51, 0xF4, 0xFE, 0x07, 0x1B, 0x14, 0x45, 0x6D, 0x4F, + 0x8A, 0xD3, 0x78, 0x82, 0xE5, 0x98, 0x55, 0x86, 0x4E, 0x4E, 0x86, 0x55, + 0x54, 0x87, 0x4D, 0x4D, 0x87, 0x17, 0x81, 0xE4, 0x96, 0x71, 0xF4, 0xA8, + 0x01, 0xE1, 0xFD, 0x42, 0x27, 0x4E, 0x33, 0x79, 0xD7, 0x8F, 0x92, 0xE2, + 0x80, 0xBC, 0x52, 0x8E, 0x58, 0x58, 0x8B, 0x51, 0x51, 0x8B, 0x58, 0x58, + 0x8E, 0x52, 0x00, 0x02, 0x00, 0x58, 0x00, 0x00, 0x04, 0x55, 0x05, 0xE9, + 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x07, 0x01, 0x23, 0x01, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x17, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x02, 0x54, 0x96, 0xE7, + 0x84, 0x6C, 0x76, 0xFE, 0xAF, 0xF4, 0x01, 0xF9, 0x1B, 0x14, 0x45, 0x6C, + 0x50, 0x89, 0xD4, 0x78, 0x82, 0xE6, 0x97, 0x54, 0x87, 0x4E, 0x4E, 0x87, + 0x54, 0x54, 0x87, 0x4D, 0x4D, 0x86, 0x05, 0xE9, 0x81, 0xE4, 0x96, 0x71, + 0xF4, 0xA8, 0xFE, 0x1F, 0x02, 0xBE, 0x27, 0x4E, 0x33, 0x79, 0xD8, 0x8E, + 0x93, 0xE1, 0x80, 0xBC, 0x52, 0x8D, 0x59, 0x57, 0x8C, 0x51, 0x51, 0x8C, + 0x57, 0x58, 0x8E, 0x52, 0x00, 0x02, 0x00, 0x6E, 0xFF, 0xE9, 0x04, 0xBB, + 0x05, 0xE9, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x02, + 0x35, 0x34, 0x12, 0x36, 0x33, 0x32, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, + 0x27, 0x32, 0x36, 0x12, 0x35, 0x34, 0x02, 0x26, 0x23, 0x22, 0x06, 0x02, + 0x15, 0x14, 0x12, 0x16, 0x02, 0x95, 0xAD, 0xF6, 0x84, 0x84, 0xF6, 0xAD, + 0xAC, 0xF7, 0x83, 0x83, 0xF6, 0xAD, 0x6B, 0x97, 0x4F, 0x4F, 0x97, 0x6B, + 0x6B, 0x97, 0x50, 0x50, 0x97, 0x17, 0xBB, 0x01, 0x57, 0xED, 0xEE, 0x01, + 0x58, 0xBB, 0xBB, 0xFE, 0xA8, 0xEE, 0xED, 0xFE, 0xA8, 0xBA, 0xBE, 0x8A, + 0x01, 0x02, 0xB5, 0xB6, 0x01, 0x03, 0x8A, 0x8A, 0xFE, 0xFD, 0xB6, 0xB5, + 0xFE, 0xFE, 0x8A, 0x00, 0x02, 0x00, 0xD2, 0x00, 0x00, 0x04, 0x81, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x21, 0x15, 0x01, + 0x11, 0x23, 0x11, 0x23, 0x05, 0x35, 0x25, 0xD2, 0x03, 0xAF, 0xFE, 0xAC, + 0xDA, 0x03, 0xFE, 0x97, 0x01, 0x68, 0xBD, 0xBD, 0x05, 0xD2, 0xFA, 0x2E, + 0x04, 0xFA, 0xF2, 0xD8, 0xF2, 0xFF, 0xFF, 0x00, 0xA0, 0x00, 0x00, 0x04, + 0x8B, 0x05, 0xE9, 0x04, 0x06, 0x05, 0x3D, 0x40, 0x00, 0xFF, 0xFF, 0x00, + 0x79, 0xFF, 0xE9, 0x04, 0xA5, 0x05, 0xE9, 0x04, 0x06, 0x05, 0x3F, 0x1B, + 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0x00, 0x00, 0x04, 0xDD, 0x05, 0xD2, 0x04, + 0x06, 0x05, 0x40, 0x08, 0x00, 0xFF, 0xFF, 0x00, 0x8D, 0xFF, 0xEB, 0x04, + 0x97, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x41, 0x3A, 0x00, 0xFF, 0xFF, 0x00, + 0x83, 0xFF, 0xE9, 0x04, 0xA6, 0x05, 0xE9, 0x04, 0x06, 0x05, 0x43, 0x2B, + 0x00, 0xFF, 0xFF, 0x00, 0xA9, 0x00, 0x00, 0x04, 0x81, 0x05, 0xD2, 0x04, + 0x06, 0x05, 0x44, 0x6F, 0x00, 0xFF, 0xFF, 0x00, 0x85, 0xFF, 0xE9, 0x04, + 0xA4, 0x05, 0xE9, 0x04, 0x06, 0x05, 0x45, 0x2D, 0x00, 0xFF, 0xFF, 0x00, + 0x83, 0xFF, 0xE9, 0x04, 0xA6, 0x05, 0xEA, 0x04, 0x06, 0x05, 0x46, 0x2B, + 0x00, 0x00, 0x03, 0x00, 0x6E, 0xFF, 0xE9, 0x04, 0xBB, 0x05, 0xE9, 0x00, + 0x03, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x65, 0x27, 0x01, 0x17, 0x01, + 0x22, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x33, 0x32, 0x16, 0x12, 0x15, + 0x14, 0x02, 0x06, 0x27, 0x32, 0x36, 0x12, 0x35, 0x34, 0x02, 0x26, 0x23, + 0x22, 0x06, 0x02, 0x15, 0x14, 0x12, 0x16, 0x01, 0xC6, 0x88, 0x02, 0x25, + 0x88, 0xFE, 0xAA, 0xAD, 0xF6, 0x84, 0x84, 0xF6, 0xAD, 0xAC, 0xF7, 0x83, + 0x83, 0xF6, 0xAD, 0x6B, 0x97, 0x4F, 0x4F, 0x97, 0x6B, 0x6B, 0x97, 0x50, + 0x50, 0x97, 0x9E, 0x43, 0x04, 0x53, 0x42, 0xFA, 0xF7, 0xBB, 0x01, 0x57, + 0xED, 0xEE, 0x01, 0x58, 0xBB, 0xBB, 0xFE, 0xA8, 0xEE, 0xED, 0xFE, 0xA8, + 0xBA, 0xBE, 0x8A, 0x01, 0x02, 0xB5, 0xB6, 0x01, 0x03, 0x8A, 0x8A, 0xFE, + 0xFD, 0xB6, 0xB5, 0xFE, 0xFE, 0x8A, 0x00, 0x02, 0x00, 0xD2, 0x00, 0x00, + 0x04, 0x81, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x73, 0x35, + 0x21, 0x15, 0x21, 0x11, 0x17, 0x0E, 0x02, 0x23, 0x35, 0x33, 0x32, 0x36, + 0x36, 0x37, 0x33, 0x11, 0xD2, 0x03, 0xAF, 0xFD, 0xCB, 0x14, 0x29, 0x5A, + 0x73, 0x4F, 0x1E, 0x57, 0x7D, 0x4D, 0x0D, 0xBE, 0xBD, 0xBD, 0x04, 0x6E, + 0x14, 0x08, 0x0E, 0x08, 0xB3, 0x32, 0x65, 0x4C, 0xFA, 0x2E, 0xFF, 0xFF, + 0x00, 0x7C, 0xFF, 0xE9, 0x04, 0x9F, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x49, + 0x1E, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0x00, 0x00, 0x04, 0xDD, 0x05, 0xD2, + 0x04, 0x06, 0x05, 0x4A, 0x08, 0x00, 0xFF, 0xFF, 0x00, 0x96, 0xFF, 0xE9, + 0x04, 0x93, 0x05, 0xD2, 0x04, 0x06, 0x05, 0x4B, 0x3E, 0x00, 0xFF, 0xFF, + 0x00, 0x96, 0x00, 0x00, 0x04, 0x93, 0x05, 0xE9, 0x04, 0x06, 0x05, 0x4C, + 0x3E, 0x00, 0xFF, 0xFF, 0x00, 0x6C, 0xFE, 0xCB, 0x01, 0x9D, 0x00, 0xDA, + 0x04, 0x07, 0x05, 0xC9, 0x00, 0x0C, 0xFB, 0x08, 0xFF, 0xFF, 0x00, 0x89, + 0xFF, 0xEF, 0x01, 0xA5, 0x01, 0x0A, 0x04, 0x06, 0x05, 0xDC, 0x1C, 0x00, + 0xFF, 0xFF, 0x00, 0x89, 0xFF, 0xEF, 0x01, 0xA5, 0x04, 0x05, 0x04, 0x26, + 0x05, 0xDC, 0x1C, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x1C, 0x02, 0xFB, + 0xFF, 0xFF, 0x00, 0x89, 0x00, 0xD3, 0x01, 0xA5, 0x04, 0xE9, 0x04, 0x27, + 0x05, 0xDC, 0x00, 0x1C, 0x00, 0xE4, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x1C, + 0x03, 0xDF, 0xFF, 0xFF, 0x00, 0x6C, 0xFE, 0xCB, 0x01, 0xB9, 0x04, 0x05, + 0x04, 0x27, 0x05, 0xC9, 0x00, 0x0C, 0xFB, 0x08, 0x00, 0x07, 0x05, 0xDC, + 0x00, 0x31, 0x02, 0xFB, 0xFF, 0xFF, 0x01, 0x0C, 0xFE, 0xDD, 0x02, 0xCD, + 0x06, 0x21, 0x04, 0x06, 0x05, 0x9B, 0x74, 0x00, 0xFF, 0xFF, 0x00, 0x53, + 0xFE, 0xDD, 0x02, 0x14, 0x06, 0x21, 0x04, 0x06, 0x05, 0x9C, 0x17, 0x00, + 0x00, 0x03, 0x00, 0x5F, 0xFE, 0xDD, 0x02, 0xCE, 0x06, 0x21, 0x00, 0x13, + 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x35, + 0x34, 0x3E, 0x02, 0x33, 0x15, 0x22, 0x06, 0x15, 0x11, 0x14, 0x0E, 0x02, + 0x01, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x23, 0x35, 0x32, 0x1E, + 0x02, 0x15, 0x11, 0x14, 0x16, 0x33, 0x01, 0x35, 0x33, 0x15, 0x5F, 0x79, + 0x5E, 0x30, 0x64, 0x9A, 0x6A, 0x7C, 0x56, 0x22, 0x59, 0xA1, 0x01, 0xEE, + 0x6A, 0x9A, 0x64, 0x30, 0x5E, 0x79, 0x81, 0xA1, 0x59, 0x22, 0x56, 0x7C, + 0xFD, 0x91, 0xC9, 0x02, 0x66, 0x80, 0x65, 0x75, 0xD6, 0x6E, 0x98, 0x5C, + 0x29, 0xAD, 0x6D, 0x7B, 0xFE, 0xF2, 0x38, 0x65, 0x4E, 0x2D, 0xFC, 0x77, + 0x29, 0x5C, 0x98, 0x6F, 0xD4, 0x75, 0x67, 0x80, 0x2E, 0x4F, 0x66, 0x37, + 0xFE, 0xF4, 0x7B, 0x6D, 0x02, 0x8D, 0xCF, 0xCF, 0x00, 0x03, 0x00, 0x53, + 0xFE, 0xDD, 0x02, 0xC1, 0x06, 0x21, 0x00, 0x13, 0x00, 0x27, 0x00, 0x2B, + 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, 0x35, 0x11, 0x34, 0x26, 0x23, 0x35, + 0x32, 0x1E, 0x02, 0x15, 0x15, 0x14, 0x16, 0x33, 0x01, 0x35, 0x32, 0x36, + 0x35, 0x11, 0x34, 0x3E, 0x02, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x14, + 0x0E, 0x02, 0x01, 0x07, 0x35, 0x17, 0x02, 0xC1, 0x81, 0xA1, 0x59, 0x22, + 0x56, 0x7B, 0x69, 0x9A, 0x64, 0x2F, 0x60, 0x78, 0xFD, 0x92, 0x7B, 0x56, + 0x22, 0x59, 0xA1, 0x81, 0x78, 0x60, 0x2F, 0x64, 0x9A, 0x02, 0x05, 0xC9, + 0xC9, 0x02, 0x66, 0x2D, 0x4E, 0x65, 0x38, 0x01, 0x0E, 0x7B, 0x6D, 0xAD, + 0x29, 0x5C, 0x98, 0x6E, 0xD6, 0x75, 0x65, 0xFB, 0xF7, 0xAE, 0x6D, 0x7B, + 0x01, 0x0C, 0x37, 0x66, 0x4F, 0x2E, 0x80, 0x01, 0x66, 0x75, 0xD4, 0x6F, + 0x98, 0x5C, 0x29, 0x03, 0x3C, 0x01, 0xCF, 0x01, 0xFF, 0xFF, 0x01, 0x30, + 0xFE, 0xDD, 0x02, 0xCD, 0x06, 0x21, 0x04, 0x07, 0x05, 0x9D, 0x00, 0x8D, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x53, 0xFE, 0xDD, 0x01, 0xF0, 0x06, 0x21, + 0x04, 0x06, 0x05, 0x9F, 0xFE, 0x00, 0xFF, 0xFF, 0x01, 0x0C, 0xFF, 0x47, + 0x02, 0xCD, 0x06, 0x8B, 0x04, 0x06, 0x05, 0x9B, 0x74, 0x6A, 0xFF, 0xFF, + 0x00, 0x53, 0xFF, 0x47, 0x02, 0x14, 0x06, 0x8B, 0x04, 0x06, 0x05, 0x9C, + 0x17, 0x6A, 0xFF, 0xFF, 0x00, 0x5F, 0xFF, 0x47, 0x02, 0xCE, 0x06, 0x8B, + 0x06, 0x06, 0x05, 0x64, 0x00, 0x6A, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0x47, + 0x02, 0xC1, 0x06, 0x8B, 0x06, 0x06, 0x05, 0x65, 0x00, 0x6A, 0xFF, 0xFF, + 0x01, 0x30, 0xFF, 0x47, 0x02, 0xCD, 0x06, 0x8B, 0x04, 0x07, 0x05, 0x9D, + 0x00, 0x8D, 0x00, 0x6A, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0x47, 0x01, 0xF0, + 0x06, 0x8B, 0x04, 0x06, 0x05, 0x9F, 0xFE, 0x6A, 0xFF, 0xFF, 0x01, 0x4A, + 0x02, 0x02, 0x03, 0xDF, 0x02, 0xBC, 0x04, 0x07, 0x05, 0xB1, 0x00, 0xD1, + 0x00, 0x00, 0xFF, 0xFF, 0x01, 0x4A, 0x02, 0x8B, 0x03, 0xDF, 0x03, 0x46, + 0x04, 0x07, 0x05, 0xB1, 0x00, 0xD1, 0x00, 0x8A, 0xFF, 0xFF, 0x00, 0xB2, + 0x00, 0x25, 0x04, 0x77, 0x04, 0x70, 0x04, 0x06, 0x05, 0xEA, 0x18, 0x00, + 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0x25, 0x04, 0x77, 0x04, 0x70, 0x04, 0x06, + 0x05, 0xEB, 0xEB, 0x00, 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0x41, 0x04, 0x77, + 0x04, 0x82, 0x04, 0x06, 0x05, 0xEC, 0x02, 0x00, 0xFF, 0xFF, 0x00, 0xB2, + 0x00, 0x41, 0x04, 0x77, 0x04, 0x82, 0x04, 0x06, 0x05, 0xED, 0x02, 0x00, + 0xFF, 0xFF, 0x00, 0xC4, 0x01, 0x0C, 0x04, 0x66, 0x03, 0x88, 0x04, 0x06, + 0x05, 0xEE, 0x02, 0x00, 0xFF, 0xFF, 0x00, 0xC4, 0x00, 0x26, 0x04, 0x66, + 0x04, 0x6F, 0x04, 0x06, 0x05, 0xEF, 0x02, 0x00, 0xFF, 0xFF, 0x00, 0xAA, + 0x00, 0x57, 0x04, 0x7F, 0x04, 0x2D, 0x04, 0x06, 0x05, 0xF0, 0x01, 0x00, + 0xFF, 0xFF, 0x00, 0xB6, 0x01, 0xE9, 0x04, 0x73, 0x02, 0xAC, 0x04, 0x06, + 0x05, 0xF1, 0x01, 0x00, 0xFF, 0xFF, 0x00, 0xB0, 0x00, 0x64, 0x04, 0x7A, + 0x04, 0x30, 0x04, 0x06, 0x05, 0xF2, 0x01, 0x00, 0xFF, 0xFF, 0x00, 0xB6, + 0x00, 0x39, 0x04, 0x73, 0x04, 0x5C, 0x04, 0x06, 0x05, 0xF3, 0x01, 0x00, + 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0x41, 0x04, 0x77, 0x04, 0x69, 0x04, 0x06, + 0x05, 0xF4, 0x02, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0xA5, 0x04, 0x9C, + 0x03, 0xF0, 0x04, 0x06, 0x05, 0xF5, 0x01, 0x00, 0xFF, 0xFF, 0x00, 0x8C, + 0x01, 0x88, 0x04, 0x9D, 0x03, 0x19, 0x04, 0x06, 0x05, 0xF6, 0x01, 0x00, + 0xFF, 0xFF, 0x01, 0x02, 0x02, 0x8C, 0x04, 0x27, 0x05, 0xD2, 0x04, 0x07, + 0x06, 0x09, 0x00, 0x97, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0xC4, + 0x04, 0x77, 0x05, 0x0F, 0x04, 0x07, 0x05, 0xEA, 0x00, 0x18, 0x00, 0x9F, + 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0xC4, 0x04, 0x77, 0x05, 0x0F, 0x04, 0x07, + 0x05, 0xEB, 0xFF, 0xEB, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0xC9, + 0x04, 0x77, 0x05, 0x09, 0x04, 0x07, 0x05, 0xEC, 0x00, 0x02, 0x00, 0x88, + 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0xC9, 0x04, 0x77, 0x05, 0x09, 0x04, 0x07, + 0x05, 0xED, 0x00, 0x02, 0x00, 0x88, 0xFF, 0xFF, 0x00, 0xC4, 0x01, 0xAB, + 0x04, 0x66, 0x04, 0x27, 0x04, 0x07, 0x05, 0xEE, 0x00, 0x02, 0x00, 0x9F, + 0xFF, 0xFF, 0x00, 0xC4, 0x00, 0xC5, 0x04, 0x66, 0x05, 0x0D, 0x04, 0x07, + 0x05, 0xEF, 0x00, 0x02, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xAA, 0x00, 0xF6, + 0x04, 0x7F, 0x04, 0xCC, 0x04, 0x07, 0x05, 0xF0, 0x00, 0x01, 0x00, 0x9F, + 0xFF, 0xFF, 0x00, 0xB6, 0x02, 0x88, 0x04, 0x73, 0x03, 0x4A, 0x04, 0x07, + 0x05, 0xF1, 0x00, 0x01, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xB0, 0x01, 0x03, + 0x04, 0x7A, 0x04, 0xCF, 0x04, 0x07, 0x05, 0xF2, 0x00, 0x01, 0x00, 0x9F, + 0xFF, 0xFF, 0x00, 0xB6, 0x00, 0xD8, 0x04, 0x73, 0x04, 0xFA, 0x04, 0x07, + 0x05, 0xF3, 0x00, 0x01, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xB2, 0x00, 0xD5, + 0x04, 0x77, 0x04, 0xFD, 0x04, 0x07, 0x05, 0xF4, 0x00, 0x02, 0x00, 0x94, + 0xFF, 0xFF, 0x00, 0x8E, 0x01, 0x44, 0x04, 0x9C, 0x04, 0x8F, 0x04, 0x07, + 0x05, 0xF5, 0x00, 0x01, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x8C, 0x02, 0x21, + 0x04, 0x9D, 0x03, 0xB2, 0x04, 0x07, 0x05, 0xF6, 0x00, 0x01, 0x00, 0x99, + 0xFF, 0xFF, 0x00, 0xB7, 0x00, 0xFE, 0x04, 0x72, 0x04, 0xD4, 0x04, 0x06, + 0x06, 0x0A, 0x0E, 0x00, 0x00, 0x01, 0x00, 0x4A, 0xFF, 0xEB, 0x05, 0x05, + 0x05, 0xE1, 0x00, 0x40, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x37, 0x37, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x17, 0x01, 0x23, 0x01, 0x2E, 0x02, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, + 0x05, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x35, + 0x33, 0x14, 0x06, 0x06, 0x07, 0x07, 0x06, 0x06, 0x02, 0x2C, 0x92, 0xD8, + 0x78, 0x3D, 0x85, 0x6B, 0xFB, 0x25, 0x34, 0x1C, 0x5E, 0x4C, 0x32, 0x4F, + 0x2E, 0x28, 0x57, 0x45, 0x02, 0xB3, 0xF4, 0xFD, 0xC4, 0x5F, 0x79, 0x3A, + 0x5F, 0xAA, 0x70, 0x70, 0xA5, 0x5C, 0x2D, 0x58, 0x41, 0xFE, 0xD5, 0x51, + 0x4A, 0x47, 0x7C, 0x4C, 0x56, 0x9E, 0x7D, 0x49, 0xC3, 0x30, 0x58, 0x3D, + 0x2F, 0x48, 0xD5, 0x15, 0x6C, 0xBB, 0x79, 0x51, 0x80, 0x80, 0x4E, 0xB3, + 0x1B, 0x3A, 0x40, 0x22, 0x40, 0x5A, 0x2C, 0x4D, 0x34, 0x2D, 0x57, 0x6F, + 0x54, 0xFC, 0xC6, 0x02, 0xA0, 0x73, 0x9F, 0x87, 0x4B, 0x67, 0x9E, 0x58, + 0x54, 0x93, 0x5E, 0x40, 0x74, 0x69, 0x30, 0xDD, 0x3C, 0x69, 0x40, 0x41, + 0x6C, 0x40, 0x51, 0x8E, 0xBA, 0x6A, 0x6E, 0xBB, 0x94, 0x36, 0x2E, 0x48, + 0x4F, 0x00, 0x01, 0x00, 0x3A, 0xFE, 0x5E, 0x03, 0x1D, 0x04, 0x2E, 0x00, + 0x05, 0x00, 0x00, 0x41, 0x13, 0x21, 0x35, 0x21, 0x03, 0x01, 0xC6, 0x85, + 0xFD, 0xEF, 0x02, 0xE3, 0x99, 0xFE, 0x5E, 0x05, 0x12, 0xBE, 0xFA, 0x30, + 0x00, 0x02, 0x00, 0x6D, 0xFF, 0xEF, 0x01, 0x89, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x00, 0x53, 0x03, 0x33, 0x03, 0x03, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x98, 0x11, 0xE8, 0x11, + 0x63, 0x3B, 0x53, 0x53, 0x3B, 0x3C, 0x52, 0x52, 0x01, 0xAB, 0x04, 0x27, + 0xFB, 0xD9, 0xFE, 0x44, 0x52, 0x3B, 0x3C, 0x52, 0x52, 0x3C, 0x3B, 0x52, + 0xFF, 0xFF, 0x00, 0x6D, 0xFF, 0xEF, 0x03, 0x80, 0x05, 0xD2, 0x04, 0x26, + 0x05, 0x91, 0x00, 0x00, 0x00, 0x07, 0x05, 0x91, 0x01, 0xF7, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x6D, 0xFE, 0x6A, 0x01, 0x91, 0x04, 0x46, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x00, 0x53, 0x13, 0x33, 0x13, 0x03, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x87, 0x12, 0xCD, 0x11, + 0x78, 0x3D, 0x55, 0x55, 0x3D, 0x3C, 0x56, 0x56, 0xFE, 0x6A, 0x04, 0x1A, + 0xFB, 0xE6, 0x04, 0xBA, 0x54, 0x3C, 0x3D, 0x55, 0x55, 0x3D, 0x3C, 0x54, + 0xFF, 0xFF, 0x00, 0x6D, 0xFF, 0xEF, 0x05, 0xE6, 0x05, 0xE9, 0x04, 0x26, + 0x05, 0x91, 0x00, 0x00, 0x00, 0x07, 0x05, 0x95, 0x01, 0xF7, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x44, 0xFF, 0xEF, 0x03, 0xEF, 0x05, 0xE9, 0x00, 0x21, + 0x00, 0x2D, 0x00, 0x00, 0x41, 0x35, 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x02, 0x15, 0x15, + 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x01, 0x9C, 0x38, 0x67, 0x46, 0x4F, 0x48, 0x3D, 0x6E, 0x4B, 0x4E, 0x77, + 0x40, 0x01, 0xD8, 0x01, 0x7A, 0xD7, 0x8D, 0x88, 0xCF, 0x75, 0x6C, 0x66, + 0x40, 0x50, 0x23, 0x66, 0x3B, 0x53, 0x53, 0x3B, 0x3C, 0x52, 0x52, 0x01, + 0xA6, 0x53, 0x71, 0x7D, 0x52, 0x2E, 0x36, 0x79, 0x43, 0x42, 0x5F, 0x35, + 0x40, 0x77, 0x56, 0x8A, 0xCC, 0x71, 0x64, 0xB2, 0x73, 0x71, 0xB5, 0x44, + 0x2B, 0x46, 0x55, 0x45, 0x45, 0xFE, 0x49, 0x52, 0x3B, 0x3C, 0x52, 0x52, + 0x3C, 0x3B, 0x52, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEF, 0x08, 0x38, 0x05, + 0xE9, 0x04, 0x26, 0x05, 0x95, 0x00, 0x00, 0x00, 0x07, 0x05, 0x95, 0x04, + 0x4A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, 0xEF, 0x05, 0xD3, 0x05, + 0xE9, 0x04, 0x26, 0x05, 0x95, 0x00, 0x00, 0x00, 0x07, 0x05, 0x91, 0x04, + 0x4A, 0x00, 0x00, 0x00, 0x02, 0x00, 0x5B, 0xFE, 0x45, 0x04, 0x06, 0x04, + 0x3F, 0x00, 0x21, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x15, 0x14, 0x06, 0x06, + 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, + 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, + 0x02, 0x35, 0x35, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x02, 0xAD, 0x37, 0x68, 0x46, 0x4F, 0x48, 0x3D, 0x70, + 0x4A, 0x4F, 0x75, 0x41, 0x01, 0xD8, 0x01, 0x7A, 0xD7, 0x8D, 0x88, 0xCF, + 0x75, 0x6C, 0x65, 0x41, 0x4F, 0x24, 0x65, 0x3C, 0x52, 0x52, 0x3C, 0x3B, + 0x53, 0x53, 0x02, 0x88, 0x53, 0x70, 0x7E, 0x52, 0x2F, 0x34, 0x7A, 0x43, + 0x42, 0x60, 0x34, 0x3F, 0x78, 0x56, 0x8A, 0xCC, 0x71, 0x64, 0xB1, 0x74, + 0x71, 0xB5, 0x44, 0x2C, 0x45, 0x55, 0x44, 0x46, 0x01, 0xB7, 0x52, 0x3C, + 0x3B, 0x52, 0x52, 0x3B, 0x3C, 0x52, 0x00, 0x03, 0x00, 0x44, 0xFF, 0xEF, + 0x03, 0xBF, 0x05, 0xE6, 0x00, 0x21, 0x00, 0x25, 0x00, 0x31, 0x00, 0x00, + 0x41, 0x35, 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x07, 0x0E, 0x02, 0x15, 0x15, 0x23, 0x03, 0x33, 0x03, + 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x01, 0x94, 0x1E, 0x4D, 0x47, 0x55, 0x4C, 0x41, 0x68, 0x3B, 0x37, 0x66, + 0x45, 0x05, 0xD8, 0x05, 0x79, 0xC8, 0x7A, 0x85, 0xC8, 0x6E, 0x82, 0x62, + 0x4C, 0x47, 0x14, 0x9F, 0x23, 0xBB, 0x12, 0x33, 0x3B, 0x53, 0x53, 0x3B, + 0x3B, 0x52, 0x52, 0x01, 0xAB, 0x0B, 0x4F, 0x8F, 0x7B, 0x30, 0x39, 0x81, + 0x5D, 0x48, 0x61, 0x32, 0x2E, 0x62, 0x4E, 0x82, 0xB4, 0x5D, 0x67, 0xB5, + 0x74, 0x84, 0xC3, 0x3E, 0x30, 0x4A, 0x59, 0x48, 0x0B, 0x02, 0x85, 0xFD, + 0x7B, 0xFE, 0x44, 0x53, 0x3B, 0x3B, 0x52, 0x52, 0x3B, 0x3B, 0x53, 0x00, + 0x03, 0x00, 0x5B, 0xFE, 0x6F, 0x03, 0xD6, 0x04, 0x66, 0x00, 0x21, 0x00, + 0x25, 0x00, 0x31, 0x00, 0x00, 0x41, 0x15, 0x14, 0x06, 0x06, 0x07, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, 0x0E, + 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x02, 0x35, + 0x35, 0x33, 0x13, 0x23, 0x13, 0x13, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x02, 0x86, 0x1E, 0x4C, 0x48, 0x55, 0x4C, + 0x41, 0x69, 0x3A, 0x37, 0x66, 0x45, 0x05, 0xD8, 0x04, 0x7A, 0xC7, 0x7B, + 0x84, 0xC8, 0x6F, 0x82, 0x62, 0x4D, 0x46, 0x14, 0x9F, 0x23, 0xBB, 0x12, + 0x33, 0x3C, 0x52, 0x52, 0x3B, 0x3B, 0x53, 0x53, 0x02, 0xAB, 0x0B, 0x4F, + 0x8F, 0x7B, 0x31, 0x38, 0x82, 0x5D, 0x47, 0x62, 0x32, 0x2F, 0x62, 0x4D, + 0x81, 0xB4, 0x5E, 0x68, 0xB4, 0x74, 0x84, 0xC3, 0x3E, 0x30, 0x4A, 0x5B, + 0x47, 0x0B, 0xFD, 0x7A, 0x02, 0x86, 0x01, 0xBB, 0x52, 0x3B, 0x3B, 0x53, + 0x53, 0x3B, 0x3B, 0x52, 0x00, 0x01, 0x00, 0x99, 0xFE, 0xDD, 0x02, 0x5A, + 0x06, 0x21, 0x00, 0x10, 0x00, 0x00, 0x53, 0x34, 0x12, 0x12, 0x37, 0x33, + 0x06, 0x02, 0x02, 0x15, 0x14, 0x12, 0x12, 0x17, 0x23, 0x26, 0x02, 0x99, + 0x3E, 0x6E, 0x47, 0xCE, 0x47, 0x69, 0x39, 0x32, 0x67, 0x50, 0xCE, 0x77, + 0x7C, 0x02, 0x53, 0xAA, 0x01, 0x69, 0x01, 0x46, 0x75, 0x93, 0xFE, 0xB2, + 0xFE, 0xAE, 0x9B, 0x8A, 0xFE, 0xE9, 0xFE, 0xD5, 0xAA, 0xCB, 0x01, 0xC4, + 0x00, 0x01, 0x00, 0x3B, 0xFE, 0xDD, 0x01, 0xFD, 0x06, 0x21, 0x00, 0x10, + 0x00, 0x00, 0x53, 0x36, 0x12, 0x12, 0x35, 0x34, 0x02, 0x02, 0x27, 0x33, + 0x16, 0x12, 0x12, 0x15, 0x14, 0x02, 0x07, 0x3B, 0x51, 0x66, 0x33, 0x39, + 0x69, 0x48, 0xCE, 0x48, 0x6D, 0x3F, 0x7C, 0x78, 0xFE, 0xDD, 0xAB, 0x01, + 0x2B, 0x01, 0x16, 0x8A, 0x9B, 0x01, 0x52, 0x01, 0x4E, 0x93, 0x75, 0xFE, + 0xBA, 0xFE, 0x97, 0xAA, 0xE8, 0xFE, 0x3C, 0xCA, 0x00, 0x01, 0x00, 0xA3, + 0xFE, 0xDD, 0x02, 0x41, 0x06, 0x21, 0x00, 0x07, 0x00, 0x00, 0x53, 0x11, + 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0xA3, 0x01, 0x9E, 0xCA, 0xCA, 0xFE, + 0xDD, 0x07, 0x44, 0xAF, 0xFA, 0x1B, 0xB0, 0x00, 0x02, 0x00, 0xA3, 0xFE, + 0xDD, 0x02, 0x41, 0x06, 0x21, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x03, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x02, + 0x41, 0xFE, 0xCC, 0x6A, 0x01, 0x9E, 0xCA, 0xCA, 0x02, 0xD5, 0xAC, 0xAC, + 0xFC, 0x08, 0x07, 0x44, 0xAF, 0xFA, 0x1B, 0xB0, 0x00, 0x01, 0x00, 0x55, + 0xFE, 0xDD, 0x01, 0xF2, 0x06, 0x21, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, + 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x55, 0xC9, 0xC9, 0x01, 0x9D, 0xFE, + 0xDD, 0xB0, 0x05, 0xE5, 0xAF, 0xF8, 0xBC, 0x00, 0x02, 0x00, 0x55, 0xFE, + 0xDD, 0x01, 0xF2, 0x06, 0x21, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x11, 0x35, 0x33, 0x11, 0x23, 0x35, 0x21, 0x11, 0x01, + 0x89, 0xFE, 0xCC, 0xC9, 0xC9, 0x01, 0x9D, 0x02, 0xD5, 0xAC, 0xAC, 0xFC, + 0x08, 0xB0, 0x05, 0xE5, 0xAF, 0xF8, 0xBC, 0x00, 0x03, 0x00, 0x79, 0xFE, + 0xDD, 0x02, 0xF6, 0x06, 0x21, 0x00, 0x13, 0x00, 0x27, 0x00, 0x2B, 0x00, + 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x15, + 0x22, 0x06, 0x15, 0x11, 0x14, 0x0E, 0x02, 0x01, 0x22, 0x2E, 0x02, 0x35, + 0x35, 0x34, 0x26, 0x23, 0x35, 0x32, 0x1E, 0x02, 0x15, 0x11, 0x14, 0x16, + 0x33, 0x01, 0x35, 0x33, 0x15, 0x79, 0x7B, 0x60, 0x32, 0x66, 0x9E, 0x6C, + 0x7E, 0x57, 0x23, 0x5B, 0xA6, 0x01, 0xF9, 0x6C, 0x9E, 0x66, 0x32, 0x60, + 0x7B, 0x84, 0xA6, 0x5B, 0x23, 0x57, 0x7E, 0xFD, 0x83, 0xCF, 0x02, 0x66, + 0x80, 0x65, 0x75, 0xD6, 0x6E, 0x98, 0x5C, 0x29, 0xAD, 0x6D, 0x7B, 0xFE, + 0xF2, 0x38, 0x65, 0x4E, 0x2D, 0xFC, 0x77, 0x29, 0x5C, 0x98, 0x6F, 0xD4, + 0x75, 0x67, 0x80, 0x2E, 0x4F, 0x66, 0x37, 0xFE, 0xF4, 0x7B, 0x6D, 0x02, + 0x8D, 0xCF, 0xCF, 0x00, 0x03, 0x00, 0x55, 0xFE, 0xDD, 0x02, 0xD2, 0x06, + 0x21, 0x00, 0x13, 0x00, 0x27, 0x00, 0x2B, 0x00, 0x00, 0x41, 0x22, 0x2E, + 0x02, 0x35, 0x11, 0x34, 0x26, 0x23, 0x35, 0x32, 0x1E, 0x02, 0x15, 0x15, + 0x14, 0x16, 0x33, 0x01, 0x35, 0x32, 0x36, 0x35, 0x11, 0x34, 0x3E, 0x02, + 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x14, 0x0E, 0x02, 0x01, 0x07, 0x35, + 0x17, 0x02, 0xD2, 0x84, 0xA7, 0x5B, 0x22, 0x57, 0x7E, 0x6C, 0x9D, 0x67, + 0x31, 0x61, 0x7B, 0xFD, 0x83, 0x7E, 0x57, 0x22, 0x5B, 0xA7, 0x84, 0x7B, + 0x61, 0x31, 0x67, 0x9D, 0x02, 0x11, 0xD0, 0xD0, 0x02, 0x66, 0x2D, 0x4E, + 0x65, 0x38, 0x01, 0x0E, 0x7B, 0x6D, 0xAD, 0x29, 0x5C, 0x98, 0x6E, 0xD6, + 0x75, 0x65, 0xFB, 0xF7, 0xAE, 0x6D, 0x7B, 0x01, 0x0C, 0x37, 0x66, 0x4F, + 0x2E, 0x80, 0x01, 0x66, 0x75, 0xD4, 0x6F, 0x98, 0x5C, 0x29, 0x03, 0x3C, + 0x01, 0xCF, 0x01, 0x00, 0x02, 0x00, 0x58, 0xFE, 0x65, 0x07, 0x88, 0x05, + 0xB8, 0x00, 0x49, 0x00, 0x59, 0x00, 0x00, 0x41, 0x22, 0x24, 0x26, 0x02, + 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, 0x14, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x27, 0x23, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x35, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x02, 0x26, + 0x24, 0x23, 0x22, 0x04, 0x06, 0x02, 0x15, 0x14, 0x12, 0x16, 0x04, 0x33, + 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x03, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x04, + 0x09, 0xD6, 0xFE, 0xA4, 0xF9, 0x86, 0x86, 0xF9, 0x01, 0x59, 0xD4, 0xCC, + 0x01, 0x4B, 0xED, 0x80, 0x30, 0x63, 0x95, 0x65, 0x57, 0x71, 0x3C, 0x07, + 0x03, 0x1A, 0x90, 0x76, 0x85, 0xC0, 0x66, 0x75, 0xC5, 0x78, 0x64, 0x87, + 0x1D, 0x03, 0xB0, 0x3B, 0x39, 0x42, 0x58, 0x2C, 0x60, 0xB8, 0xFE, 0xFA, + 0xA6, 0xAC, 0xFE, 0xEC, 0xC1, 0x66, 0x66, 0xC3, 0x01, 0x15, 0xAF, 0x5C, + 0x9D, 0x7C, 0x28, 0x3D, 0x2B, 0x8F, 0xB8, 0x91, 0x54, 0x71, 0x39, 0x3A, + 0x70, 0x53, 0x52, 0x74, 0x3D, 0x3B, 0x73, 0xFE, 0x65, 0x86, 0xF6, 0x01, + 0x5A, 0xD3, 0xD2, 0x01, 0x58, 0xF9, 0x87, 0x81, 0xEE, 0xFE, 0xBB, 0xC4, + 0x7B, 0xC9, 0x92, 0x4E, 0x36, 0x52, 0x28, 0x45, 0x66, 0x86, 0xE2, 0x88, + 0x92, 0xDC, 0x7B, 0x4C, 0x2E, 0x63, 0xFD, 0x6D, 0x43, 0x47, 0x55, 0xA5, + 0x7A, 0xA3, 0x01, 0x08, 0xBC, 0x65, 0x6A, 0xC6, 0xFE, 0xE7, 0xAF, 0xB0, + 0xFE, 0xE7, 0xC4, 0x69, 0x1C, 0x25, 0x0F, 0xA7, 0x12, 0x2B, 0x1F, 0x02, + 0x6C, 0x4A, 0x90, 0x67, 0x69, 0x8B, 0x46, 0x4B, 0x8C, 0x63, 0x63, 0x90, + 0x4E, 0xFF, 0xFF, 0x00, 0x99, 0xFF, 0x47, 0x02, 0x5A, 0x06, 0x8B, 0x06, + 0x06, 0x05, 0x9B, 0x00, 0x6A, 0xFF, 0xFF, 0x00, 0x3B, 0xFF, 0x47, 0x01, + 0xFD, 0x06, 0x8B, 0x06, 0x06, 0x05, 0x9C, 0x00, 0x6A, 0xFF, 0xFF, 0x00, + 0xA3, 0xFF, 0x47, 0x02, 0x41, 0x06, 0x8B, 0x06, 0x06, 0x05, 0x9D, 0x00, + 0x6A, 0xFF, 0xFF, 0x00, 0x55, 0xFF, 0x47, 0x01, 0xF2, 0x06, 0x8B, 0x06, + 0x06, 0x05, 0x9F, 0x00, 0x6A, 0xFF, 0xFF, 0x00, 0x79, 0xFF, 0x47, 0x02, + 0xF6, 0x06, 0x8B, 0x06, 0x06, 0x05, 0xA1, 0x00, 0x6A, 0xFF, 0xFF, 0x00, + 0x55, 0xFF, 0x47, 0x02, 0xD2, 0x06, 0x8B, 0x06, 0x06, 0x05, 0xA2, 0x00, + 0x6A, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0x40, 0x07, 0x88, 0x06, 0x92, 0x06, + 0x07, 0x05, 0xA3, 0x00, 0x00, 0x00, 0xDA, 0x00, 0x04, 0x00, 0x07, 0x00, + 0x00, 0x04, 0xE2, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, + 0x0F, 0x00, 0x00, 0x61, 0x13, 0x33, 0x03, 0x01, 0x37, 0x21, 0x07, 0x01, + 0x13, 0x33, 0x03, 0x03, 0x37, 0x21, 0x07, 0x02, 0xAA, 0xF6, 0xAC, 0xF5, + 0xFC, 0xB0, 0x1D, 0x04, 0x68, 0x1C, 0xFC, 0x30, 0xF4, 0xAC, 0xF4, 0xED, + 0x1D, 0x04, 0x66, 0x1B, 0x05, 0xD2, 0xFA, 0x2E, 0x01, 0x90, 0xAC, 0xAC, + 0xFE, 0x70, 0x05, 0xD2, 0xFA, 0x2E, 0x03, 0x94, 0xAE, 0xAE, 0x00, 0x06, + 0x00, 0x66, 0xFF, 0xEC, 0x05, 0x52, 0x04, 0xE9, 0x00, 0x13, 0x00, 0x23, + 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x33, 0x00, 0x00, 0x45, 0x22, + 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, + 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x01, 0x27, 0x37, 0x17, 0x03, 0x27, + 0x37, 0x17, 0x05, 0x27, 0x37, 0x17, 0x03, 0x27, 0x37, 0x17, 0x02, 0xD8, + 0x7D, 0xD9, 0xA5, 0x5D, 0x5D, 0xA5, 0xD9, 0x7D, 0x7B, 0xDA, 0xA6, 0x5E, + 0x5E, 0xA6, 0xDA, 0x7B, 0x77, 0xC2, 0x73, 0x73, 0xC2, 0x77, 0x77, 0xC5, + 0x74, 0x74, 0xC4, 0x02, 0x25, 0x7C, 0xCA, 0x7F, 0x7F, 0xCA, 0x7C, 0xCD, + 0xFB, 0x90, 0x7C, 0xCA, 0x7F, 0x7F, 0xCA, 0x7C, 0xCD, 0x14, 0x5F, 0xAB, + 0xE5, 0x85, 0x85, 0xE4, 0xAA, 0x5F, 0x5F, 0xAA, 0xE4, 0x85, 0x85, 0xE5, + 0xAB, 0x5F, 0xA9, 0x7C, 0xD1, 0x7E, 0x80, 0xD0, 0x7B, 0x7B, 0xD0, 0x80, + 0x7E, 0xD1, 0x7C, 0x03, 0x06, 0x80, 0xCE, 0x80, 0xFB, 0x86, 0xCE, 0x7E, + 0xCC, 0x80, 0x80, 0xCC, 0x7E, 0x02, 0xDE, 0xCE, 0x80, 0xCE, 0x00, 0x01, + 0x00, 0x11, 0xFF, 0x20, 0x02, 0xB1, 0x06, 0x18, 0x00, 0x03, 0x00, 0x00, + 0x41, 0x01, 0x23, 0x01, 0x02, 0xB1, 0xFE, 0x20, 0xC0, 0x01, 0xE0, 0x06, + 0x18, 0xF9, 0x08, 0x06, 0xF8, 0x00, 0x01, 0x00, 0xE7, 0xFE, 0x20, 0x01, + 0xA8, 0x07, 0xB2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, + 0xA8, 0xC1, 0x07, 0xB2, 0xF6, 0x6E, 0x09, 0x92, 0x00, 0x02, 0x00, 0xB0, + 0xFE, 0xE8, 0x01, 0x75, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x53, 0x33, 0x11, 0x23, 0x13, 0x11, 0x23, 0x11, 0xB0, 0xC5, 0xC5, 0xC5, + 0xC5, 0x01, 0x96, 0xFD, 0x52, 0x06, 0xEA, 0xFD, 0x55, 0x02, 0xAB, 0x00, + 0x01, 0x00, 0x11, 0xFF, 0x20, 0x02, 0xB1, 0x06, 0x18, 0x00, 0x03, 0x00, + 0x00, 0x45, 0x01, 0x33, 0x01, 0x01, 0xF1, 0xFE, 0x20, 0xC0, 0x01, 0xE0, + 0xE0, 0x06, 0xF8, 0xF9, 0x08, 0x00, 0x01, 0x00, 0x79, 0x02, 0x02, 0x03, + 0x0D, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x03, + 0x0D, 0xFD, 0x6C, 0x02, 0xBC, 0xBA, 0xBA, 0x00, 0x01, 0x00, 0x00, 0x02, + 0x02, 0x04, 0x00, 0x02, 0xBC, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x04, 0x00, 0xFC, 0x00, 0x02, 0xBC, 0xBA, 0xBA, 0x00, 0x01, 0x00, + 0x55, 0x02, 0x3C, 0x04, 0xD4, 0x02, 0xF6, 0x00, 0x03, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x04, 0xD4, 0xFB, 0x81, 0x02, 0xF6, 0xBA, 0xBA, 0x00, + 0x01, 0x00, 0x00, 0x02, 0x02, 0x08, 0x00, 0x02, 0xBC, 0x00, 0x03, 0x00, + 0x00, 0x41, 0x15, 0x21, 0x35, 0x08, 0x00, 0xF8, 0x00, 0x02, 0xBC, 0xBA, + 0xBA, 0xFF, 0xFF, 0x00, 0x00, 0x02, 0x02, 0x08, 0x00, 0x02, 0xBC, 0x06, + 0x06, 0x05, 0xB4, 0x00, 0x00, 0x00, 0x01, 0x00, 0xB4, 0x01, 0x03, 0x03, + 0x34, 0x03, 0x83, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, + 0xF4, 0x58, 0x92, 0x56, 0x56, 0x92, 0x58, 0x59, 0x91, 0x56, 0x56, 0x91, + 0x01, 0x03, 0x56, 0x92, 0x58, 0x59, 0x91, 0x56, 0x56, 0x91, 0x59, 0x58, + 0x92, 0x56, 0x00, 0x02, 0x00, 0xB4, 0x01, 0x12, 0x03, 0x34, 0x03, 0x92, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0xF4, + 0x58, 0x92, 0x56, 0x56, 0x92, 0x58, 0x59, 0x91, 0x56, 0x56, 0x91, 0x59, + 0x4B, 0x6A, 0x6A, 0x4A, 0x4B, 0x6A, 0x6A, 0x01, 0x12, 0x56, 0x92, 0x58, + 0x58, 0x91, 0x57, 0x57, 0x91, 0x58, 0x58, 0x92, 0x56, 0x8B, 0x6A, 0x4B, + 0x4B, 0x69, 0x69, 0x4B, 0x4B, 0x6A, 0x00, 0x01, 0x00, 0xE2, 0x01, 0xF4, + 0x03, 0x07, 0x02, 0xAF, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x03, 0x07, 0xFD, 0xDB, 0x02, 0xAF, 0xBB, 0xBB, 0x00, 0x01, 0x01, 0x27, + 0x01, 0x0C, 0x03, 0x41, 0x03, 0x98, 0x00, 0x02, 0x00, 0x00, 0x41, 0x11, + 0x01, 0x01, 0x27, 0x02, 0x1A, 0x01, 0x0C, 0x02, 0x8C, 0xFE, 0xBA, 0x00, + 0x02, 0x00, 0x7B, 0x00, 0xA8, 0x04, 0x11, 0x03, 0xFA, 0x00, 0x0E, 0x00, + 0x12, 0x00, 0x00, 0x65, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x21, 0x15, 0x21, 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x11, 0x02, 0x40, + 0x8B, 0xCC, 0x6E, 0x6E, 0xCC, 0x8B, 0x01, 0xA7, 0xFE, 0xAC, 0x01, 0x54, + 0xA0, 0xCA, 0xA8, 0x65, 0xBF, 0x86, 0x86, 0xBE, 0x64, 0xA0, 0xFD, 0xEF, + 0xA1, 0x03, 0x52, 0xFC, 0xAE, 0x00, 0x02, 0x00, 0x88, 0x00, 0xA8, 0x04, + 0x1E, 0x03, 0xFA, 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x65, 0x21, 0x35, + 0x21, 0x11, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x21, 0x23, 0x11, 0x33, 0x02, 0x59, 0xFE, 0x59, 0x01, 0x54, 0xFE, 0xAC, + 0x01, 0xA7, 0x8C, 0xCB, 0x6E, 0x6E, 0xCA, 0xFE, 0x6C, 0xCA, 0xCA, 0xA8, + 0xA1, 0x02, 0x11, 0xA0, 0x64, 0xBE, 0x86, 0x86, 0xBF, 0x65, 0x03, 0x52, + 0x00, 0x01, 0x00, 0xE4, 0x01, 0x2E, 0x03, 0x2A, 0x03, 0x74, 0x00, 0x03, + 0x00, 0x00, 0x53, 0x21, 0x11, 0x21, 0xE4, 0x02, 0x46, 0xFD, 0xBA, 0x03, + 0x74, 0xFD, 0xBA, 0xFF, 0xFF, 0x00, 0x79, 0x02, 0x8B, 0x03, 0x0D, 0x03, + 0x46, 0x06, 0x07, 0x05, 0xB1, 0x00, 0x00, 0x00, 0x8A, 0xFF, 0xFF, 0x00, + 0x00, 0x02, 0x8B, 0x04, 0x00, 0x03, 0x46, 0x06, 0x07, 0x05, 0xB2, 0x00, + 0x00, 0x00, 0x8A, 0xFF, 0xFF, 0x00, 0x55, 0x02, 0xAF, 0x04, 0xD4, 0x03, + 0x69, 0x06, 0x06, 0x05, 0xB3, 0x00, 0x73, 0xFF, 0xFF, 0x00, 0x00, 0x02, + 0x8B, 0x08, 0x00, 0x03, 0x46, 0x06, 0x07, 0x05, 0xB4, 0x00, 0x00, 0x00, + 0x8A, 0xFF, 0xFF, 0x00, 0xB4, 0x01, 0xA9, 0x03, 0x34, 0x04, 0x29, 0x06, + 0x07, 0x05, 0xB6, 0x00, 0x00, 0x00, 0xA6, 0xFF, 0xFF, 0x00, 0xB4, 0x01, + 0xA9, 0x03, 0x34, 0x04, 0x29, 0x06, 0x07, 0x05, 0xB7, 0x00, 0x00, 0x00, + 0x97, 0xFF, 0xFF, 0x00, 0xE2, 0x02, 0x8C, 0x03, 0x07, 0x03, 0x46, 0x06, + 0x07, 0x05, 0xB8, 0x00, 0x00, 0x00, 0x97, 0xFF, 0xFF, 0x01, 0x27, 0x01, + 0xA3, 0x03, 0x41, 0x04, 0x2F, 0x06, 0x07, 0x05, 0xB9, 0x00, 0x00, 0x00, + 0x97, 0xFF, 0xFF, 0x00, 0x7B, 0x01, 0x40, 0x04, 0x11, 0x04, 0x92, 0x06, + 0x07, 0x05, 0xBA, 0x00, 0x00, 0x00, 0x98, 0xFF, 0xFF, 0x00, 0x88, 0x01, + 0x40, 0x04, 0x1E, 0x04, 0x92, 0x06, 0x07, 0x05, 0xBB, 0x00, 0x00, 0x00, + 0x98, 0xFF, 0xFF, 0x00, 0xE4, 0x01, 0xC6, 0x03, 0x2A, 0x04, 0x0C, 0x06, + 0x07, 0x05, 0xBC, 0x00, 0x00, 0x00, 0x98, 0x00, 0x01, 0x00, 0x60, 0x03, + 0xC3, 0x01, 0x91, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, + 0x03, 0x60, 0x98, 0x99, 0x54, 0x03, 0xC3, 0x02, 0x0F, 0xFD, 0xF1, 0x00, + 0x01, 0x00, 0x60, 0x03, 0xC3, 0x01, 0x91, 0x05, 0xD2, 0x00, 0x03, 0x00, + 0x00, 0x53, 0x13, 0x33, 0x03, 0x60, 0x54, 0xDD, 0x98, 0x03, 0xC3, 0x02, + 0x0F, 0xFD, 0xF1, 0x00, 0x01, 0x00, 0xAF, 0x03, 0xB8, 0x01, 0x7D, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x00, 0x53, 0x03, 0x33, 0x03, 0xC6, 0x17, 0xCE, + 0x17, 0x03, 0xB8, 0x02, 0x1A, 0xFD, 0xE6, 0xFF, 0xFF, 0x00, 0xAF, 0x03, + 0xB8, 0x02, 0xDA, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xCA, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xCA, 0x01, 0x5C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x60, 0x03, + 0xC3, 0x02, 0xF5, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xC8, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xC8, 0x01, 0x65, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x60, 0x03, + 0xC3, 0x02, 0xF1, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xC9, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xC9, 0x01, 0x60, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x3E, 0xFE, + 0xCB, 0x02, 0xCF, 0x00, 0xDA, 0x04, 0x27, 0x05, 0xC9, 0xFF, 0xDE, 0xFB, + 0x08, 0x00, 0x07, 0x05, 0xC9, 0x01, 0x3E, 0xFB, 0x08, 0xFF, 0xFF, 0x00, + 0x3E, 0xFE, 0xCB, 0x01, 0x6F, 0x00, 0xDA, 0x04, 0x07, 0x05, 0xC9, 0xFF, + 0xDE, 0xFB, 0x08, 0x00, 0x01, 0x00, 0x30, 0x03, 0xC3, 0x01, 0x61, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x00, 0x41, 0x23, 0x03, 0x33, 0x01, 0x61, 0x99, + 0x98, 0xDD, 0x03, 0xC3, 0x02, 0x0F, 0xFF, 0xFF, 0x00, 0x30, 0x03, 0xC3, + 0x02, 0xC1, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xD0, 0x00, 0x00, 0x00, 0x07, + 0x05, 0xD0, 0x01, 0x60, 0x00, 0x00, 0x00, 0x01, 0x00, 0x54, 0x03, 0xAD, + 0x01, 0x67, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, + 0x54, 0x35, 0xDE, 0x7C, 0x03, 0xAD, 0x02, 0x25, 0xFD, 0xDB, 0xFF, 0xFF, + 0x00, 0x54, 0x03, 0xAD, 0x03, 0x20, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xD2, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xD2, 0x01, 0xB9, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x54, 0x03, 0xAD, 0x04, 0xD9, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xD2, + 0x00, 0x00, 0x00, 0x27, 0x05, 0xD2, 0x01, 0xB9, 0x00, 0x00, 0x00, 0x07, + 0x05, 0xD2, 0x03, 0x72, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x54, 0x03, 0xAD, + 0x06, 0x92, 0x05, 0xD2, 0x04, 0x26, 0x05, 0xD2, 0x00, 0x00, 0x00, 0x27, + 0x05, 0xD2, 0x01, 0xB9, 0x00, 0x00, 0x00, 0x27, 0x05, 0xD2, 0x03, 0x72, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xD2, 0x05, 0x2B, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x54, 0x03, 0xAD, 0x01, 0x67, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, + 0x41, 0x23, 0x03, 0x33, 0x01, 0x67, 0x98, 0x7B, 0xDD, 0x03, 0xAD, 0x02, + 0x25, 0xFF, 0xFF, 0x00, 0x54, 0x03, 0xAD, 0x03, 0x20, 0x05, 0xD2, 0x04, + 0x26, 0x05, 0xD6, 0x00, 0x00, 0x00, 0x07, 0x05, 0xD6, 0x01, 0xB9, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x54, 0x03, 0xAD, 0x04, 0xD9, 0x05, 0xD2, 0x04, + 0x26, 0x05, 0xD6, 0x00, 0x00, 0x00, 0x27, 0x05, 0xD6, 0x01, 0xB9, 0x00, + 0x00, 0x00, 0x07, 0x05, 0xD6, 0x03, 0x72, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x6D, 0x03, 0x89, 0x01, 0x57, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x53, + 0x03, 0x33, 0x03, 0xAA, 0x3D, 0xEA, 0x3D, 0x03, 0x89, 0x02, 0x49, 0xFD, + 0xB7, 0xFF, 0xFF, 0x00, 0x6D, 0x03, 0x89, 0x03, 0x19, 0x05, 0xD2, 0x04, + 0x26, 0x05, 0xD9, 0x00, 0x00, 0x00, 0x07, 0x05, 0xD9, 0x01, 0xC2, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x45, 0xFE, 0xCB, 0x01, 0x76, 0x00, 0xDA, 0x04, + 0x07, 0x05, 0xC9, 0xFF, 0xE5, 0xFB, 0x08, 0x00, 0x01, 0x00, 0x6D, 0xFF, + 0xEF, 0x01, 0x88, 0x01, 0x0A, 0x00, 0x0B, 0x00, 0x00, 0x57, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFB, 0x3B, 0x53, + 0x53, 0x3B, 0x3B, 0x52, 0x52, 0x11, 0x53, 0x3B, 0x3B, 0x52, 0x52, 0x3B, + 0x3B, 0x53, 0xFF, 0xFF, 0x00, 0x6D, 0xFF, 0xEF, 0x05, 0x73, 0x01, 0x0A, + 0x04, 0x26, 0x05, 0xDC, 0x00, 0x00, 0x00, 0x27, 0x05, 0xDC, 0x01, 0xF5, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x03, 0xEA, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x6D, 0xFF, 0xEF, 0x03, 0x7E, 0x01, 0x0A, 0x04, 0x26, 0x05, 0xDC, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x01, 0xF5, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x6D, 0xFF, 0xEF, 0x01, 0x88, 0x04, 0x05, 0x06, 0x26, 0x05, 0xDC, + 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x00, 0x02, 0xFB, 0xFF, 0xFF, + 0x00, 0x6D, 0x00, 0xDE, 0x01, 0x88, 0x04, 0xF4, 0x06, 0x27, 0x05, 0xDC, + 0x00, 0x00, 0x00, 0xEF, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x00, 0x03, 0xE9, + 0xFF, 0xFF, 0x00, 0x6D, 0x00, 0xDE, 0x01, 0x88, 0x04, 0xF4, 0x06, 0x27, + 0x05, 0xDC, 0x00, 0x00, 0x00, 0xEF, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x00, + 0x03, 0xE9, 0xFF, 0xFF, 0x00, 0x45, 0xFE, 0xCB, 0x01, 0x92, 0x04, 0x05, + 0x04, 0x27, 0x05, 0xC9, 0xFF, 0xE5, 0xFB, 0x08, 0x00, 0x07, 0x05, 0xDC, + 0x00, 0x0A, 0x02, 0xFB, 0xFF, 0xFF, 0x00, 0x6D, 0x02, 0x37, 0x01, 0x88, + 0x03, 0x52, 0x06, 0x07, 0x05, 0xDC, 0x00, 0x00, 0x02, 0x47, 0xFF, 0xFF, + 0x00, 0x6D, 0x03, 0x23, 0x01, 0x88, 0x04, 0x3E, 0x06, 0x07, 0x05, 0xDC, + 0x00, 0x00, 0x03, 0x34, 0xFF, 0xFF, 0x00, 0x45, 0xFE, 0xCB, 0x01, 0x92, + 0x04, 0x05, 0x04, 0x27, 0x05, 0xC9, 0xFF, 0xE5, 0xFB, 0x08, 0x00, 0x07, + 0x05, 0xDC, 0x00, 0x0A, 0x02, 0xFB, 0x00, 0x01, 0x00, 0x44, 0x00, 0x90, + 0x02, 0xAD, 0x04, 0x0E, 0x00, 0x05, 0x00, 0x00, 0x65, 0x01, 0x01, 0x33, + 0x01, 0x01, 0x01, 0xBC, 0xFE, 0x88, 0x01, 0x78, 0xF1, 0xFE, 0x8F, 0x01, + 0x71, 0x90, 0x01, 0xBF, 0x01, 0xBF, 0xFE, 0x41, 0xFE, 0x41, 0x00, 0x01, + 0x00, 0x30, 0x00, 0x90, 0x02, 0x99, 0x04, 0x0E, 0x00, 0x05, 0x00, 0x00, + 0x77, 0x01, 0x01, 0x33, 0x01, 0x01, 0x30, 0x01, 0x72, 0xFE, 0x8E, 0xF1, + 0x01, 0x78, 0xFE, 0x88, 0x90, 0x01, 0xBF, 0x01, 0xBF, 0xFE, 0x41, 0xFE, + 0x41, 0xFF, 0xFF, 0x00, 0x44, 0x00, 0x90, 0x04, 0x58, 0x04, 0x0E, 0x04, + 0x26, 0x05, 0xE6, 0x00, 0x00, 0x00, 0x07, 0x05, 0xE6, 0x01, 0xAB, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x30, 0x00, 0x90, 0x04, 0x44, 0x04, 0x0E, 0x04, + 0x26, 0x05, 0xE7, 0x00, 0x00, 0x00, 0x07, 0x05, 0xE7, 0x01, 0xAB, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x9A, 0x00, 0x25, 0x04, 0x5F, 0x04, 0x70, 0x00, + 0x09, 0x00, 0x00, 0x53, 0x35, 0x01, 0x15, 0x01, 0x37, 0x15, 0x27, 0x01, + 0x15, 0x9A, 0x03, 0xC5, 0xFD, 0x36, 0x07, 0x07, 0x02, 0xCA, 0x01, 0xFA, + 0xA0, 0x01, 0xD6, 0xDE, 0xFE, 0xBB, 0x0D, 0x1F, 0x0C, 0xFE, 0xBA, 0xDC, + 0x00, 0x01, 0x00, 0xC7, 0x00, 0x25, 0x04, 0x8C, 0x04, 0x70, 0x00, 0x09, + 0x00, 0x00, 0x41, 0x01, 0x35, 0x01, 0x07, 0x35, 0x17, 0x01, 0x35, 0x01, + 0x04, 0x8C, 0xFC, 0x3B, 0x02, 0xCB, 0x08, 0x08, 0xFD, 0x35, 0x03, 0xC5, + 0x01, 0xFA, 0xFE, 0x2B, 0xDC, 0x01, 0x46, 0x0C, 0x1F, 0x0D, 0x01, 0x45, + 0xDE, 0xFE, 0x2A, 0x00, 0x02, 0x00, 0xB1, 0x00, 0x41, 0x04, 0x76, 0x04, + 0x82, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x00, 0x65, 0x21, 0x35, 0x21, 0x01, + 0x35, 0x01, 0x15, 0x05, 0x37, 0x15, 0x27, 0x05, 0x15, 0x04, 0x76, 0xFC, + 0x3B, 0x03, 0xC5, 0xFC, 0x3B, 0x03, 0xC5, 0xFD, 0x6A, 0x07, 0x07, 0x02, + 0x96, 0x41, 0xBD, 0x01, 0xA5, 0xA0, 0x01, 0x3F, 0xC5, 0xC6, 0x0D, 0x20, + 0x0D, 0xC7, 0xC4, 0x00, 0x02, 0x00, 0xB1, 0x00, 0x41, 0x04, 0x76, 0x04, + 0x82, 0x00, 0x03, 0x00, 0x0D, 0x00, 0x00, 0x77, 0x35, 0x21, 0x15, 0x11, + 0x01, 0x35, 0x25, 0x07, 0x35, 0x17, 0x25, 0x35, 0x01, 0xB1, 0x03, 0xC5, + 0xFC, 0x3B, 0x02, 0x96, 0x07, 0x07, 0xFD, 0x6A, 0x03, 0xC5, 0x41, 0xBD, + 0xBD, 0x02, 0x62, 0xFE, 0xC3, 0xC4, 0xC7, 0x0D, 0x20, 0x0D, 0xC6, 0xC5, + 0xFE, 0xC1, 0x00, 0x02, 0x00, 0xC2, 0x01, 0x0C, 0x04, 0x63, 0x03, 0x88, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x35, + 0x21, 0x15, 0xC2, 0x03, 0xA1, 0xFC, 0x5F, 0x03, 0xA1, 0x02, 0xCB, 0xBD, + 0xBD, 0xFE, 0x41, 0xBE, 0xBE, 0x00, 0x03, 0x00, 0xC2, 0x00, 0x26, 0x04, + 0x63, 0x04, 0x6F, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x65, + 0x01, 0x33, 0x01, 0x01, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x01, + 0x5A, 0x01, 0xB6, 0xBB, 0xFE, 0x4A, 0xFE, 0xAD, 0x03, 0xA1, 0xFC, 0x5F, + 0x03, 0xA1, 0x26, 0x04, 0x49, 0xFB, 0xB7, 0x02, 0xA5, 0xBD, 0xBD, 0xFE, + 0x41, 0xBE, 0xBE, 0x00, 0x02, 0x00, 0xA8, 0x00, 0x57, 0x04, 0x7E, 0x04, + 0x2D, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x65, 0x11, 0x33, 0x11, 0x01, + 0x35, 0x21, 0x15, 0x02, 0x33, 0xC1, 0xFD, 0xB4, 0x03, 0xD6, 0x57, 0x03, + 0xD6, 0xFC, 0x2A, 0x01, 0x8F, 0xB9, 0xB9, 0x00, 0x01, 0x00, 0xB5, 0x01, + 0xE9, 0x04, 0x72, 0x02, 0xAC, 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x04, 0x72, 0xFC, 0x43, 0x02, 0xAC, 0xC3, 0xC3, 0x00, 0x02, 0x00, + 0xAE, 0x00, 0x64, 0x04, 0x79, 0x04, 0x30, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x65, 0x01, 0x37, 0x01, 0x05, 0x27, 0x01, 0x17, 0x03, 0xF2, 0xFC, + 0xBC, 0x88, 0x03, 0x43, 0xFC, 0xBD, 0x88, 0x03, 0x44, 0x87, 0x64, 0x03, + 0x43, 0x89, 0xFC, 0xBB, 0x87, 0x87, 0x03, 0x45, 0x89, 0x00, 0x03, 0x00, + 0xB5, 0x00, 0x39, 0x04, 0x72, 0x04, 0x5C, 0x00, 0x03, 0x00, 0x0F, 0x00, + 0x1B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x03, 0x06, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x04, 0x72, 0xFC, 0x43, 0x01, + 0xDD, 0x3C, 0x54, 0x55, 0x3B, 0x3C, 0x53, 0x54, 0x3B, 0x3B, 0x55, 0x55, + 0x3B, 0x3C, 0x53, 0x53, 0x02, 0xA9, 0xBE, 0xBE, 0xFD, 0x90, 0x55, 0x3C, + 0x3A, 0x54, 0x54, 0x3A, 0x3C, 0x55, 0x03, 0x04, 0x01, 0x54, 0x3D, 0x3B, + 0x54, 0x54, 0x3B, 0x3D, 0x54, 0x00, 0x03, 0x00, 0xB1, 0x00, 0x41, 0x04, + 0x76, 0x04, 0x69, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x77, + 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x01, 0x11, 0x33, 0x11, 0xB1, + 0x03, 0xC5, 0xFC, 0x3B, 0x03, 0xC5, 0xFD, 0xBD, 0xC1, 0x41, 0xBD, 0xBD, + 0x02, 0x52, 0xBA, 0xBA, 0xFE, 0xE4, 0x02, 0xF2, 0xFD, 0x0E, 0x00, 0x02, + 0x00, 0x8D, 0x00, 0xA5, 0x04, 0x9B, 0x03, 0xF0, 0x00, 0x1B, 0x00, 0x37, + 0x00, 0x00, 0x53, 0x26, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x27, 0x33, 0x16, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x17, 0x03, 0x26, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x27, 0x33, 0x16, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x17, 0x8E, 0x01, + 0x51, 0x88, 0x50, 0x4B, 0x78, 0x4F, 0x33, 0x40, 0x26, 0x3D, 0x45, 0x02, + 0xB8, 0x02, 0x53, 0x89, 0x51, 0x48, 0x7A, 0x50, 0x33, 0x3D, 0x26, 0x3A, + 0x49, 0x02, 0xB7, 0x01, 0x52, 0x87, 0x50, 0x4B, 0x77, 0x50, 0x34, 0x3F, + 0x26, 0x3D, 0x45, 0x02, 0xB8, 0x02, 0x53, 0x89, 0x51, 0x48, 0x7A, 0x51, + 0x32, 0x3E, 0x25, 0x3A, 0x49, 0x02, 0x02, 0x8C, 0x7E, 0x9D, 0x49, 0x3F, + 0x41, 0x2B, 0x26, 0x58, 0x55, 0x7D, 0x9D, 0x4B, 0x3C, 0x45, 0x2B, 0x23, + 0x4E, 0x5C, 0xFE, 0x3F, 0x7E, 0x9C, 0x48, 0x3E, 0x42, 0x2B, 0x25, 0x58, + 0x55, 0x7C, 0x9E, 0x4B, 0x3C, 0x44, 0x2C, 0x22, 0x4E, 0x5A, 0x00, 0x01, + 0x00, 0x8B, 0x01, 0x88, 0x04, 0x9B, 0x03, 0x19, 0x00, 0x1B, 0x00, 0x00, + 0x53, 0x26, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x27, 0x33, 0x16, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x17, 0x8E, 0x03, 0x51, 0x89, 0x51, 0x49, 0x7B, 0x50, + 0x32, 0x3F, 0x26, 0x3B, 0x47, 0x02, 0xB8, 0x02, 0x52, 0x88, 0x51, 0x4A, + 0x7D, 0x4E, 0x33, 0x3D, 0x26, 0x38, 0x49, 0x01, 0x01, 0xAE, 0x7E, 0xA1, + 0x4C, 0x3E, 0x46, 0x2B, 0x27, 0x58, 0x57, 0x7D, 0xA1, 0x4C, 0x3E, 0x45, + 0x2C, 0x26, 0x52, 0x5D, 0xFF, 0xFF, 0x00, 0x9A, 0x00, 0xC4, 0x04, 0x5F, + 0x05, 0x0F, 0x06, 0x07, 0x05, 0xEA, 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, + 0x00, 0xC7, 0x00, 0xC4, 0x04, 0x8C, 0x05, 0x0F, 0x06, 0x07, 0x05, 0xEB, + 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xB1, 0x00, 0xC9, 0x04, 0x76, + 0x05, 0x09, 0x06, 0x07, 0x05, 0xEC, 0x00, 0x00, 0x00, 0x88, 0xFF, 0xFF, + 0x00, 0xB1, 0x00, 0xC9, 0x04, 0x76, 0x05, 0x09, 0x06, 0x07, 0x05, 0xED, + 0x00, 0x00, 0x00, 0x88, 0xFF, 0xFF, 0x00, 0xC2, 0x01, 0xAB, 0x04, 0x63, + 0x04, 0x27, 0x06, 0x07, 0x05, 0xEE, 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, + 0x00, 0xC2, 0x00, 0xC5, 0x04, 0x63, 0x05, 0x0D, 0x06, 0x07, 0x05, 0xEF, + 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xA8, 0x00, 0xF6, 0x04, 0x7E, + 0x04, 0xCC, 0x06, 0x07, 0x05, 0xF0, 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, + 0x00, 0xB5, 0x02, 0x88, 0x04, 0x72, 0x03, 0x4A, 0x06, 0x07, 0x05, 0xF1, + 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xAE, 0x01, 0x03, 0x04, 0x79, + 0x04, 0xCF, 0x06, 0x07, 0x05, 0xF2, 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, + 0x00, 0xB5, 0x00, 0xD8, 0x04, 0x72, 0x04, 0xFA, 0x06, 0x07, 0x05, 0xF3, + 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0xB1, 0x00, 0xD5, 0x04, 0x76, + 0x04, 0xFD, 0x06, 0x07, 0x05, 0xF4, 0x00, 0x00, 0x00, 0x94, 0xFF, 0xFF, + 0x00, 0x8D, 0x01, 0x44, 0x04, 0x9B, 0x04, 0x8F, 0x06, 0x07, 0x05, 0xF5, + 0x00, 0x00, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x8B, 0x02, 0x21, 0x04, 0x9B, + 0x03, 0xB2, 0x06, 0x07, 0x05, 0xF6, 0x00, 0x00, 0x00, 0x99, 0x00, 0x01, + 0x00, 0xD3, 0x01, 0x39, 0x04, 0x2E, 0x02, 0xF5, 0x00, 0x05, 0x00, 0x00, + 0x41, 0x11, 0x21, 0x35, 0x21, 0x11, 0x03, 0x6D, 0xFD, 0x66, 0x03, 0x5B, + 0x01, 0x39, 0x01, 0x04, 0xB8, 0xFE, 0x44, 0x00, 0x01, 0x00, 0x00, 0xFF, + 0x48, 0x03, 0xB1, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x61, 0x15, 0x21, + 0x35, 0x03, 0xB1, 0xFC, 0x4F, 0xB8, 0xB8, 0x00, 0x02, 0x00, 0x6B, 0x01, + 0x86, 0x03, 0x96, 0x05, 0xD2, 0x00, 0x05, 0x00, 0x09, 0x00, 0x00, 0x41, + 0x03, 0x11, 0x33, 0x11, 0x03, 0x01, 0x35, 0x21, 0x15, 0x01, 0xBD, 0x26, + 0xD3, 0x26, 0xFE, 0x27, 0x03, 0x2B, 0x01, 0x86, 0x01, 0x9D, 0x02, 0xAF, + 0xFD, 0x51, 0xFE, 0x63, 0x02, 0x6C, 0xAE, 0xAE, 0x00, 0x03, 0x00, 0x6B, + 0x00, 0x00, 0x03, 0x96, 0x05, 0xD2, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0D, + 0x00, 0x00, 0x61, 0x03, 0x11, 0x33, 0x11, 0x03, 0x01, 0x35, 0x21, 0x15, + 0x01, 0x35, 0x21, 0x15, 0x01, 0xBD, 0x26, 0xD3, 0x26, 0xFE, 0x27, 0x03, + 0x2B, 0xFC, 0xD5, 0x03, 0x2B, 0x01, 0x9D, 0x04, 0x35, 0xFB, 0xCB, 0xFE, + 0x63, 0x02, 0x5D, 0xAD, 0xAD, 0x01, 0x9E, 0xAD, 0xAD, 0x00, 0x02, 0x00, + 0x37, 0x03, 0x2E, 0x03, 0x68, 0x05, 0xA7, 0x00, 0x03, 0x00, 0x0B, 0x00, + 0x00, 0x41, 0x33, 0x15, 0x23, 0x01, 0x01, 0x33, 0x01, 0x23, 0x03, 0x33, + 0x03, 0x01, 0xB5, 0x34, 0x34, 0xFE, 0x82, 0x01, 0x2E, 0xD5, 0x01, 0x2E, + 0xC0, 0xE0, 0x0F, 0xDF, 0x05, 0x48, 0x4C, 0xFE, 0x32, 0x02, 0x79, 0xFD, + 0x87, 0x01, 0xEB, 0xFE, 0x15, 0x00, 0x01, 0x00, 0x6B, 0x02, 0x8C, 0x03, + 0x90, 0x05, 0xD2, 0x00, 0x11, 0x00, 0x00, 0x41, 0x13, 0x05, 0x27, 0x25, + 0x25, 0x37, 0x05, 0x03, 0x33, 0x03, 0x25, 0x17, 0x05, 0x05, 0x07, 0x25, + 0x13, 0x01, 0xAF, 0x0E, 0xFE, 0xFD, 0x4F, 0x01, 0x12, 0xFE, 0xEE, 0x4F, + 0x01, 0x03, 0x0E, 0x9D, 0x0E, 0x01, 0x03, 0x4F, 0xFE, 0xEE, 0x01, 0x12, + 0x4F, 0xFE, 0xFD, 0x0E, 0x02, 0x8C, 0x01, 0x34, 0xA8, 0x8A, 0x8C, 0x8C, + 0x8C, 0xA8, 0x01, 0x34, 0xFE, 0xCC, 0xA8, 0x8C, 0x8C, 0x8C, 0x8A, 0xA8, + 0xFE, 0xCC, 0x00, 0x01, 0x00, 0xA8, 0x00, 0xFE, 0x04, 0x64, 0x04, 0xD4, + 0x00, 0x17, 0x00, 0x00, 0x65, 0x13, 0x17, 0x05, 0x27, 0x25, 0x15, 0x25, + 0x37, 0x05, 0x07, 0x03, 0x33, 0x03, 0x27, 0x25, 0x17, 0x05, 0x35, 0x05, + 0x07, 0x25, 0x37, 0x13, 0x02, 0x2B, 0x0D, 0x3A, 0xFE, 0x92, 0x5C, 0x01, + 0x80, 0xFE, 0x80, 0x5C, 0x01, 0x6E, 0x3A, 0x0D, 0xB8, 0x0D, 0x3B, 0x01, + 0x6E, 0x5B, 0xFE, 0x80, 0x01, 0x80, 0x5B, 0xFE, 0x92, 0x3B, 0x0D, 0xFE, + 0x01, 0xB1, 0x22, 0xEA, 0x9E, 0xCB, 0x45, 0xCB, 0x9F, 0xEB, 0x23, 0x01, + 0xB1, 0xFE, 0x4F, 0x23, 0xEB, 0x9F, 0xCB, 0x45, 0xCB, 0x9E, 0xEA, 0x22, + 0xFE, 0x4F, 0x00, 0x04, 0x00, 0x4A, 0x01, 0x5A, 0x04, 0xD5, 0x05, 0xE6, + 0x00, 0x13, 0x00, 0x23, 0x00, 0x27, 0x00, 0x3D, 0x00, 0x00, 0x41, 0x22, + 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, + 0x0E, 0x02, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x37, 0x27, 0x33, 0x17, 0x21, 0x11, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x11, 0x02, 0x8F, 0x78, 0xD3, + 0x9F, 0x5B, 0x5B, 0x9F, 0xD3, 0x78, 0x79, 0xD3, 0xA0, 0x5A, 0x5A, 0xA0, + 0xD3, 0x79, 0x7A, 0xC6, 0x76, 0x76, 0xC6, 0x7A, 0x78, 0xC7, 0x76, 0x76, + 0xC7, 0xE0, 0x7B, 0x90, 0x80, 0xFE, 0x2D, 0xF4, 0x3C, 0x5D, 0x35, 0x37, + 0x60, 0x3F, 0x97, 0x8D, 0x25, 0x2F, 0x2F, 0x24, 0x59, 0x01, 0x5A, 0x5B, + 0xA0, 0xD3, 0x78, 0x78, 0xD3, 0xA0, 0x5B, 0x5B, 0xA0, 0xD3, 0x78, 0x78, + 0xD3, 0xA0, 0x5B, 0x91, 0x75, 0xC7, 0x79, 0x79, 0xC6, 0x76, 0x76, 0xC6, + 0x79, 0x79, 0xC6, 0x76, 0xAC, 0xF5, 0xF5, 0x02, 0x18, 0x2C, 0x52, 0x39, + 0x38, 0x51, 0x2C, 0x6C, 0x27, 0x22, 0x22, 0x25, 0xFE, 0x58, 0x00, 0x03, + 0x00, 0x91, 0xFF, 0xE9, 0x06, 0x91, 0x05, 0xE9, 0x00, 0x1F, 0x00, 0x33, + 0x00, 0x47, 0x00, 0x00, 0x41, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x01, + 0x22, 0x24, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, + 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, + 0x34, 0x2E, 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x01, + 0xEF, 0x73, 0xC2, 0x75, 0x67, 0xAD, 0x71, 0x0D, 0xBC, 0x0E, 0x7B, 0x4D, + 0x43, 0x70, 0x43, 0x43, 0x70, 0x43, 0x4E, 0x6D, 0x0E, 0xBC, 0x0D, 0x6B, + 0xA6, 0x67, 0x75, 0xC2, 0x73, 0x01, 0xA2, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, + 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, + 0xFE, 0xEA, 0x9F, 0x78, 0xD1, 0x9F, 0x59, 0x59, 0x9F, 0xD1, 0x78, 0x77, + 0xD1, 0x9F, 0x5A, 0x5A, 0x9F, 0xD1, 0x02, 0xE8, 0x76, 0xC1, 0x73, 0x59, + 0x97, 0x60, 0x44, 0x58, 0x42, 0x70, 0x44, 0x43, 0x6F, 0x42, 0x57, 0x45, + 0x60, 0x99, 0x58, 0x73, 0xC1, 0xFD, 0x76, 0x77, 0xD4, 0x01, 0x16, 0x9F, + 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, + 0xEA, 0xD4, 0x77, 0xBF, 0x59, 0x9F, 0xD1, 0x78, 0x78, 0xD1, 0x9F, 0x59, + 0x59, 0x9F, 0xD1, 0x78, 0x78, 0xD1, 0x9F, 0x59, 0x00, 0x03, 0x00, 0x91, + 0xFF, 0xE9, 0x06, 0x91, 0x05, 0xE9, 0x00, 0x1F, 0x00, 0x33, 0x00, 0x47, + 0x00, 0x00, 0x41, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x33, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x01, 0x22, 0x24, + 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, + 0x15, 0x14, 0x02, 0x06, 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, + 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x05, 0x35, 0x73, + 0xC1, 0x75, 0x66, 0xA8, 0x6C, 0x0D, 0xBC, 0x0F, 0x6D, 0x4F, 0x44, 0x6E, + 0x42, 0x42, 0x6E, 0x44, 0x4F, 0x7A, 0x0D, 0xBC, 0x0D, 0x71, 0xAE, 0x66, + 0x75, 0xC1, 0x73, 0xFE, 0x5C, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0x77, 0xD4, + 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, + 0x9F, 0x78, 0xD1, 0x9F, 0x59, 0x59, 0x9F, 0xD1, 0x78, 0x77, 0xD1, 0x9F, + 0x5A, 0x5A, 0x9F, 0xD1, 0x02, 0xE8, 0x75, 0xC1, 0x73, 0x58, 0x99, 0x60, + 0x44, 0x58, 0x42, 0x6F, 0x43, 0x44, 0x70, 0x42, 0x57, 0x45, 0x60, 0x97, + 0x59, 0x73, 0xC1, 0xFC, 0x8B, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, + 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, 0xEA, 0xD4, + 0x77, 0xBF, 0x59, 0x9F, 0xD1, 0x78, 0x78, 0xD1, 0x9F, 0x59, 0x59, 0x9F, + 0xD1, 0x78, 0x78, 0xD1, 0x9F, 0x59, 0x00, 0x03, 0x00, 0x91, 0xFF, 0xE9, + 0x06, 0x91, 0x05, 0xE9, 0x00, 0x13, 0x00, 0x27, 0x00, 0x3B, 0x00, 0x00, + 0x41, 0x11, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x23, 0x35, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x11, 0x13, 0x22, 0x24, 0x26, + 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, + 0x14, 0x02, 0x06, 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, + 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x02, 0x87, 0x01, 0x47, + 0x8C, 0xA1, 0xA3, 0x8D, 0xDC, 0xCE, 0x43, 0x4A, 0x49, 0x44, 0x84, 0x58, + 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, + 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x78, 0xD1, 0x9F, 0x59, + 0x59, 0x9F, 0xD1, 0x78, 0x77, 0xD1, 0x9F, 0x5A, 0x5A, 0x9F, 0xD1, 0x01, + 0x5D, 0x03, 0x09, 0x8E, 0x78, 0x77, 0x8E, 0x91, 0x3E, 0x36, 0x35, 0x3E, + 0xFD, 0x8A, 0xFE, 0x8C, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, + 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, + 0xBF, 0x59, 0x9F, 0xD1, 0x78, 0x78, 0xD1, 0x9F, 0x59, 0x59, 0x9F, 0xD1, + 0x78, 0x78, 0xD1, 0x9F, 0x59, 0x00, 0x05, 0x00, 0x3B, 0x03, 0xBA, 0x04, + 0x7F, 0x05, 0xD2, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x12, 0x00, + 0x16, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x21, 0x11, + 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x01, 0x35, + 0x21, 0x15, 0x03, 0x47, 0xE7, 0x68, 0x9B, 0x9C, 0x67, 0xE5, 0xFE, 0xC7, + 0x6A, 0x01, 0x62, 0x6B, 0xFC, 0x5E, 0x6B, 0xFE, 0xF3, 0x01, 0xAF, 0x03, + 0xBA, 0x02, 0x18, 0xFE, 0x82, 0x01, 0x7E, 0xFD, 0xE8, 0x02, 0x18, 0xFD, + 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x01, 0xE8, 0xFE, 0x18, 0x01, 0xBD, 0x5B, + 0x5B, 0x00, 0x04, 0x00, 0x3B, 0x03, 0xB6, 0x04, 0x6B, 0x05, 0xD6, 0x00, + 0x27, 0x00, 0x2B, 0x00, 0x32, 0x00, 0x36, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, + 0x26, 0x26, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x17, 0x16, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x37, 0x11, 0x33, 0x11, 0x33, 0x03, 0x33, 0x13, 0x13, 0x33, 0x03, + 0x33, 0x11, 0x33, 0x11, 0x01, 0x0A, 0x62, 0x6D, 0x65, 0x31, 0x3A, 0x36, + 0x36, 0x26, 0x2F, 0x3C, 0x4E, 0x4F, 0x02, 0x01, 0x69, 0x61, 0x5E, 0x66, + 0x65, 0x2A, 0x35, 0x35, 0x2F, 0x01, 0x01, 0x23, 0x27, 0x3B, 0x52, 0x58, + 0x6F, 0xC6, 0x6A, 0x95, 0xE5, 0x67, 0x9A, 0x9B, 0x68, 0xE5, 0x95, 0x69, + 0x03, 0xB6, 0x58, 0x51, 0x27, 0x26, 0x21, 0x20, 0x1C, 0x22, 0x08, 0x09, + 0x0D, 0x51, 0x3C, 0x45, 0x55, 0x53, 0x52, 0x28, 0x22, 0x20, 0x1D, 0x1A, + 0x1F, 0x07, 0x09, 0x0E, 0x53, 0x41, 0x49, 0x54, 0x04, 0x02, 0x18, 0xFD, + 0xE8, 0x02, 0x18, 0xFE, 0x82, 0x01, 0x7E, 0xFD, 0xE8, 0x02, 0x18, 0xFD, + 0xE8, 0x00, 0x05, 0x00, 0x3B, 0x03, 0xBA, 0x05, 0x46, 0x05, 0xD2, 0x00, + 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x19, 0x00, 0x00, 0x41, + 0x11, 0x21, 0x15, 0x23, 0x11, 0x33, 0x15, 0x21, 0x11, 0x33, 0x11, 0x01, + 0x35, 0x21, 0x15, 0x17, 0x35, 0x33, 0x15, 0x17, 0x11, 0x33, 0x11, 0x33, + 0x15, 0x02, 0x48, 0x01, 0x53, 0xE9, 0xE9, 0xFD, 0x42, 0x6B, 0xFE, 0xF3, + 0x01, 0xAF, 0xA2, 0xE0, 0x8C, 0x6A, 0xE4, 0x03, 0xBA, 0x02, 0x18, 0x5B, + 0xFE, 0x9E, 0x5B, 0x01, 0xE8, 0xFE, 0x18, 0x01, 0xBD, 0x5B, 0x5B, 0xD9, + 0x5A, 0x5A, 0xE4, 0x02, 0x18, 0xFE, 0x43, 0x5B, 0x00, 0x05, 0x00, 0x47, + 0x03, 0xBA, 0x05, 0x99, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x10, 0x00, 0x14, + 0x00, 0x18, 0x00, 0x1C, 0x00, 0x00, 0x53, 0x11, 0x21, 0x15, 0x23, 0x15, + 0x33, 0x15, 0x23, 0x15, 0x33, 0x13, 0x33, 0x13, 0x23, 0x03, 0x03, 0x37, + 0x35, 0x21, 0x15, 0x17, 0x01, 0x33, 0x01, 0x21, 0x01, 0x33, 0x01, 0x47, + 0x01, 0x3F, 0xD6, 0xB9, 0xB9, 0xD1, 0xDD, 0x62, 0xD9, 0x68, 0xA3, 0xA0, + 0x07, 0x01, 0x34, 0x7F, 0x01, 0x75, 0x75, 0xFE, 0x8C, 0x01, 0x06, 0xFE, + 0x8A, 0x77, 0x01, 0x74, 0x03, 0xBA, 0x02, 0x18, 0x5B, 0x95, 0x5A, 0xCE, + 0x02, 0x18, 0xFD, 0xE8, 0x01, 0x9C, 0xFE, 0x64, 0x78, 0x53, 0x53, 0x78, + 0x02, 0x18, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x00, 0x05, 0x00, 0x47, + 0x03, 0xBA, 0x04, 0x8F, 0x05, 0xD2, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, + 0x00, 0x12, 0x00, 0x27, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x13, 0x33, + 0x03, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, 0x33, 0x11, 0x33, 0x11, 0x33, + 0x11, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x23, + 0x35, 0x33, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x01, 0x46, + 0xE7, 0x67, 0x9C, 0x9B, 0x67, 0xE4, 0xFE, 0xC7, 0x69, 0x01, 0x63, 0x6B, + 0x5C, 0x6B, 0x3B, 0x9B, 0x38, 0x47, 0x46, 0x39, 0x9E, 0x9E, 0x64, 0x86, + 0x3E, 0x69, 0x43, 0x03, 0xBA, 0x02, 0x18, 0xFE, 0x82, 0x01, 0x7E, 0xFD, + 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x02, 0x18, 0xFD, + 0xE8, 0x5B, 0x48, 0x3A, 0x5D, 0x3B, 0x48, 0x5B, 0x01, 0x7C, 0x62, 0x5B, + 0x41, 0x65, 0x38, 0x00, 0x04, 0x00, 0x47, 0x03, 0xB6, 0x04, 0xAE, 0x05, + 0xD4, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x28, 0x00, 0x00, 0x41, + 0x03, 0x33, 0x13, 0x13, 0x33, 0x03, 0x21, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x05, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x33, 0x06, 0x06, 0x01, 0x46, 0xE7, 0x67, 0x9C, 0x9B, 0x67, 0xE4, + 0xFE, 0xC7, 0x69, 0x01, 0x63, 0x6B, 0x01, 0x49, 0x7A, 0x87, 0x80, 0x7C, + 0x6C, 0x77, 0x09, 0x69, 0x0A, 0x41, 0x38, 0x47, 0x4A, 0x4B, 0x4B, 0x34, + 0x3E, 0x0C, 0x67, 0x0B, 0x70, 0x03, 0xBA, 0x02, 0x18, 0xFE, 0x82, 0x01, + 0x7E, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x02, 0x18, 0xFD, 0xE8, 0x04, + 0x88, 0x87, 0x88, 0x87, 0x64, 0x5D, 0x33, 0x33, 0x58, 0x59, 0x59, 0x5C, + 0x2F, 0x32, 0x5C, 0x62, 0x00, 0x02, 0x00, 0x66, 0x03, 0x31, 0x03, 0x12, + 0x05, 0xDD, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x01, 0xBE, 0x5F, 0x9C, 0x5D, 0x5D, 0x9C, 0x5E, + 0x5E, 0x9B, 0x5C, 0x5C, 0x9B, 0x5E, 0x31, 0x50, 0x2F, 0x2F, 0x50, 0x31, + 0x31, 0x51, 0x2F, 0x2F, 0x51, 0x03, 0x31, 0x5C, 0x9C, 0x5D, 0x5F, 0x9C, + 0x5C, 0x5C, 0x9C, 0x5F, 0x5E, 0x9B, 0x5C, 0xA5, 0x2F, 0x51, 0x30, 0x32, + 0x50, 0x30, 0x30, 0x50, 0x31, 0x31, 0x51, 0x2F, 0x00, 0x02, 0x00, 0x3A, + 0x02, 0x81, 0x03, 0x1B, 0x05, 0xEA, 0x00, 0x23, 0x00, 0x32, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x3E, 0x02, 0x35, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, + 0x1E, 0x02, 0x15, 0x11, 0x23, 0x35, 0x23, 0x06, 0x06, 0x27, 0x32, 0x36, + 0x36, 0x35, 0x35, 0x0E, 0x02, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, + 0x60, 0x53, 0x86, 0x4D, 0x60, 0x99, 0x56, 0x4E, 0x5D, 0x2A, 0x55, 0x4C, + 0x4E, 0x5F, 0x08, 0xB7, 0x0A, 0x60, 0x9D, 0x67, 0x4D, 0x7E, 0x5E, 0x33, + 0xBA, 0x05, 0x1C, 0x76, 0x3D, 0x45, 0x5E, 0x2F, 0x0C, 0x3E, 0x52, 0x29, + 0x43, 0x63, 0x54, 0x02, 0x81, 0x39, 0x71, 0x54, 0x60, 0x68, 0x2F, 0x09, + 0x09, 0x0C, 0x1B, 0x1D, 0x06, 0x3A, 0x49, 0x47, 0x35, 0x09, 0x51, 0x76, + 0x41, 0x25, 0x49, 0x6A, 0x45, 0xFD, 0xC2, 0x77, 0x36, 0x4F, 0x90, 0x32, + 0x52, 0x31, 0x60, 0x09, 0x0F, 0x0D, 0x06, 0x0A, 0x37, 0x3B, 0x34, 0x3A, + 0x00, 0x02, 0x00, 0x38, 0x02, 0x7D, 0x03, 0x75, 0x05, 0xEC, 0x00, 0x0F, + 0x00, 0x1F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x01, 0xD6, 0x7C, 0xBA, 0x68, 0x68, 0xBA, 0x7C, 0x7D, 0xBA, 0x68, 0x68, + 0xBA, 0x7D, 0x46, 0x64, 0x34, 0x34, 0x64, 0x46, 0x45, 0x63, 0x36, 0x35, + 0x64, 0x02, 0x7D, 0x6E, 0xC6, 0x82, 0x84, 0xC5, 0x70, 0x70, 0xC5, 0x84, + 0x82, 0xC6, 0x6E, 0x9F, 0x46, 0x7D, 0x54, 0x55, 0x7F, 0x46, 0x46, 0x7F, + 0x55, 0x54, 0x7E, 0x45, 0x00, 0x02, 0x00, 0x3C, 0x02, 0xE8, 0x01, 0x00, + 0x07, 0x21, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x11, 0x33, 0x11, + 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x45, 0xB1, 0x58, 0x28, 0x3A, 0x3A, 0x28, 0x28, 0x3A, 0x3A, 0x02, 0xE8, + 0x03, 0x18, 0xFC, 0xE8, 0x03, 0x78, 0x3A, 0x27, 0x27, 0x39, 0x39, 0x27, + 0x29, 0x38, 0x00, 0x01, 0x00, 0x44, 0x02, 0xE8, 0x02, 0xD2, 0x06, 0x08, + 0x00, 0x14, 0x00, 0x00, 0x53, 0x11, 0x23, 0x11, 0x33, 0x15, 0x33, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, + 0x06, 0xF2, 0xAE, 0xA7, 0x07, 0x1A, 0x75, 0x51, 0x71, 0x8F, 0xAF, 0x51, + 0x43, 0x44, 0x59, 0x04, 0xCF, 0xFE, 0x19, 0x03, 0x18, 0x81, 0x3F, 0x4A, + 0x93, 0x80, 0xFD, 0xF3, 0x01, 0xEF, 0x4A, 0x54, 0x58, 0x00, 0x02, 0x00, + 0x44, 0x00, 0x00, 0x04, 0x08, 0x05, 0xD2, 0x00, 0x0C, 0x00, 0x10, 0x00, + 0x00, 0x41, 0x21, 0x11, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x21, 0x03, 0x11, 0x33, 0x11, 0x03, 0xFD, 0xFE, 0x8C, 0x54, 0xA0, + 0xDE, 0x73, 0x73, 0xDE, 0xA0, 0x01, 0xC8, 0xC0, 0xCB, 0x05, 0x19, 0xFD, + 0x0F, 0x7A, 0xD5, 0x87, 0x86, 0xD3, 0x7B, 0xFA, 0x2E, 0x05, 0xD2, 0xFA, + 0x2E, 0x00, 0x02, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x51, 0x05, 0xD2, 0x00, + 0x0C, 0x00, 0x10, 0x00, 0x00, 0x53, 0x35, 0x21, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x23, 0x11, 0x03, 0x23, 0x11, 0x33, 0x99, 0x01, + 0xC8, 0xA1, 0xDD, 0x72, 0x72, 0xDD, 0xA1, 0x54, 0xB4, 0xCB, 0xCB, 0x05, + 0x19, 0xB9, 0x7B, 0xD3, 0x86, 0x87, 0xD5, 0x7A, 0x02, 0xF1, 0xFA, 0xE7, + 0x05, 0xD2, 0x00, 0x02, 0x00, 0x58, 0xFE, 0xD2, 0x04, 0x03, 0x05, 0xE7, + 0x00, 0x3E, 0x00, 0x50, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x37, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, 0x25, 0x2E, + 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x37, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x17, 0x05, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, + 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x13, 0x16, 0x36, 0x36, 0x37, 0x36, + 0x26, 0x26, 0x27, 0x25, 0x26, 0x06, 0x06, 0x07, 0x06, 0x16, 0x16, 0x17, + 0x02, 0x1F, 0x7D, 0xB7, 0x67, 0x04, 0xC8, 0x05, 0x6D, 0x65, 0x59, 0x6A, + 0x2E, 0x46, 0x25, 0xFE, 0xEC, 0x44, 0x63, 0x36, 0x34, 0x5F, 0x3E, 0x01, + 0x3A, 0x43, 0xD2, 0xAF, 0xB4, 0xCE, 0x09, 0xC6, 0x06, 0x61, 0x5D, 0x55, + 0x62, 0x2F, 0x49, 0x26, 0x01, 0x13, 0x44, 0x61, 0x35, 0x37, 0x5F, 0x3C, + 0x01, 0x2B, 0x39, 0x1D, 0x64, 0xB5, 0x02, 0x1D, 0x52, 0x3F, 0x01, 0x01, + 0x1C, 0x3B, 0x2E, 0xFE, 0xF2, 0x1E, 0x4D, 0x3A, 0x02, 0x01, 0x1D, 0x3D, + 0x2F, 0xFE, 0xD2, 0x56, 0xA0, 0x6E, 0x09, 0x58, 0x5E, 0x4A, 0x49, 0x31, + 0x45, 0x31, 0x11, 0x92, 0x23, 0x63, 0x77, 0x3F, 0x3E, 0x71, 0x4A, 0x06, + 0x02, 0x34, 0x75, 0x54, 0x98, 0xAF, 0xBD, 0xA6, 0x0A, 0x56, 0x60, 0x4F, + 0x44, 0x30, 0x46, 0x32, 0x13, 0x93, 0x23, 0x62, 0x73, 0x3E, 0x3F, 0x70, + 0x49, 0x08, 0x02, 0x21, 0x50, 0x5B, 0x34, 0x62, 0x93, 0x50, 0x02, 0xA2, + 0x10, 0x17, 0x49, 0x3B, 0x26, 0x43, 0x3B, 0x17, 0x8F, 0x10, 0x18, 0x4A, + 0x3B, 0x27, 0x45, 0x3C, 0x19, 0x00, 0x03, 0x00, 0x4B, 0x00, 0xD8, 0x07, + 0x1B, 0x04, 0x1A, 0x00, 0x2A, 0x00, 0x3E, 0x00, 0x52, 0x00, 0x00, 0x41, + 0x36, 0x16, 0x16, 0x17, 0x16, 0x16, 0x17, 0x36, 0x36, 0x37, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x27, 0x26, 0x26, 0x27, 0x06, 0x06, 0x07, 0x0E, 0x02, 0x23, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x03, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, + 0x36, 0x36, 0x37, 0x26, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x05, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x06, 0x06, 0x07, 0x16, + 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x01, 0xF0, 0x52, 0x89, + 0x6E, 0x2B, 0x17, 0x28, 0x11, 0x10, 0x23, 0x1A, 0x40, 0xBB, 0x7C, 0x75, + 0xBD, 0x71, 0x71, 0xBD, 0x75, 0x52, 0x8A, 0x6E, 0x2B, 0x18, 0x27, 0x10, + 0x11, 0x28, 0x17, 0x29, 0x6F, 0x89, 0x53, 0x75, 0xBF, 0x71, 0x71, 0xBF, + 0x69, 0x01, 0x3B, 0x65, 0x3D, 0x45, 0x73, 0x32, 0x1E, 0x2E, 0x12, 0x11, + 0x30, 0x1D, 0x2F, 0x76, 0x45, 0x3D, 0x65, 0x3B, 0x05, 0x40, 0x01, 0x3B, + 0x64, 0x3D, 0x47, 0x76, 0x2E, 0x22, 0x30, 0x0C, 0x13, 0x2D, 0x1E, 0x31, + 0x74, 0x46, 0x3D, 0x64, 0x3B, 0x04, 0x19, 0x01, 0x2F, 0x4C, 0x29, 0x16, + 0x2B, 0x16, 0x15, 0x28, 0x18, 0x3F, 0x66, 0x70, 0xBC, 0x73, 0x74, 0xBD, + 0x71, 0x2F, 0x4B, 0x28, 0x17, 0x2D, 0x15, 0x15, 0x2D, 0x17, 0x27, 0x4B, + 0x30, 0x71, 0xBD, 0x74, 0x73, 0xBD, 0x70, 0xFE, 0x60, 0x3C, 0x65, 0x3A, + 0x3D, 0x30, 0x1E, 0x37, 0x19, 0x16, 0x3B, 0x1B, 0x2D, 0x3F, 0x3B, 0x62, + 0x3B, 0x3B, 0x62, 0x3B, 0x3F, 0x2D, 0x1F, 0x3F, 0x0E, 0x1A, 0x37, 0x1D, + 0x2F, 0x3E, 0x3A, 0x64, 0x00, 0x02, 0x00, 0x8B, 0xFF, 0xEC, 0x04, 0x70, + 0x05, 0xE6, 0x00, 0x1F, 0x00, 0x31, 0x00, 0x00, 0x41, 0x32, 0x16, 0x17, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x12, 0x15, 0x15, 0x14, 0x02, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, + 0x3E, 0x02, 0x17, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x35, 0x2E, 0x02, 0x02, 0x65, 0x56, 0x9B, 0x38, + 0x11, 0x69, 0x99, 0x59, 0x48, 0x81, 0x44, 0x19, 0x40, 0x8E, 0x6F, 0xBD, + 0xFB, 0x7F, 0x78, 0xE0, 0x9E, 0x9A, 0xDE, 0x77, 0x01, 0x70, 0xD3, 0xB1, + 0x5D, 0x77, 0x39, 0x39, 0x75, 0x5B, 0x5C, 0x76, 0x37, 0x07, 0x39, 0x6E, + 0x04, 0x03, 0x42, 0x3C, 0x83, 0xB9, 0x63, 0x1B, 0x19, 0xB1, 0x1D, 0x28, + 0xC9, 0xFE, 0x93, 0xF6, 0x3A, 0xBF, 0xFE, 0xD6, 0xAB, 0x8B, 0xEF, 0x98, + 0x16, 0x90, 0xDF, 0x80, 0xBA, 0x55, 0x8E, 0x57, 0x16, 0x5D, 0x9A, 0x5C, + 0x6C, 0xBA, 0x76, 0x54, 0x1F, 0x54, 0x40, 0x00, 0x03, 0x00, 0x52, 0xFE, + 0xF2, 0x04, 0xD7, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x10, 0x00, + 0x00, 0x45, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0x01, 0x15, 0x01, + 0x23, 0x35, 0x01, 0x01, 0x35, 0x33, 0x04, 0xD7, 0xFB, 0xD7, 0x03, 0xEA, + 0xFC, 0x02, 0x03, 0x08, 0xFD, 0x41, 0x91, 0x02, 0x68, 0xFD, 0x98, 0x91, + 0x54, 0xBA, 0xBA, 0x06, 0x26, 0xBB, 0xBB, 0xFC, 0xAE, 0x3C, 0xFC, 0xAE, + 0x96, 0x02, 0xD9, 0x02, 0xD7, 0x9A, 0x00, 0x01, 0x00, 0xAC, 0xFF, 0x1E, + 0x05, 0x0C, 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, + 0x21, 0x11, 0x23, 0x11, 0x05, 0x0C, 0xDD, 0xFD, 0x59, 0xDC, 0x05, 0xD2, + 0xF9, 0x4C, 0x05, 0xF2, 0xFA, 0x0E, 0x06, 0xB4, 0x00, 0x01, 0xFF, 0xC9, + 0xFE, 0x1D, 0x02, 0xA2, 0x06, 0x16, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x22, + 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, + 0x14, 0x06, 0x41, 0x1E, 0x3D, 0x1D, 0x04, 0x17, 0x36, 0x18, 0x46, 0x42, + 0xB2, 0xAA, 0x23, 0x46, 0x23, 0x06, 0x1B, 0x40, 0x1E, 0x4B, 0x49, 0xAB, + 0xFE, 0x1D, 0x02, 0x02, 0xBA, 0x01, 0x02, 0x4D, 0x51, 0x05, 0x30, 0xB3, + 0xBD, 0x03, 0x02, 0xB8, 0x01, 0x01, 0x59, 0x5E, 0xFA, 0xCE, 0xA6, 0xAF, + 0x00, 0x03, 0x00, 0x48, 0x00, 0x00, 0x04, 0xBE, 0x05, 0xD2, 0x00, 0x04, + 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x65, 0x01, 0x33, 0x01, 0x23, 0x03, + 0x13, 0x17, 0x23, 0x01, 0x07, 0x35, 0x21, 0x15, 0x02, 0x3B, 0x01, 0xAA, + 0xD9, 0xFD, 0xF5, 0x97, 0x71, 0xBE, 0x21, 0x91, 0xFE, 0xD5, 0x86, 0x01, + 0x59, 0xEF, 0x04, 0xE3, 0xFA, 0x2E, 0x03, 0x09, 0xFD, 0xE0, 0xE9, 0x03, + 0x09, 0xBB, 0xBB, 0xBB, 0x00, 0x03, 0x00, 0x49, 0xFF, 0xCE, 0x05, 0x09, + 0x04, 0x8E, 0x00, 0x03, 0x00, 0x17, 0x00, 0x28, 0x00, 0x00, 0x57, 0x27, + 0x01, 0x17, 0x01, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, + 0x1E, 0x02, 0x17, 0x0E, 0x03, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x0E, 0x02, 0x17, 0x06, 0x16, 0x16, 0x97, 0x4E, 0x04, + 0x70, 0x50, 0xFD, 0xA2, 0x78, 0xD1, 0x9E, 0x59, 0x59, 0x9E, 0xD1, 0x78, + 0x76, 0xCF, 0x9F, 0x59, 0x01, 0x01, 0x5A, 0x9E, 0xCF, 0x76, 0x64, 0xA5, + 0x64, 0x64, 0xA5, 0x64, 0x4D, 0x86, 0x66, 0x39, 0x01, 0x01, 0x63, 0xA8, + 0x32, 0x50, 0x04, 0x70, 0x4C, 0xFB, 0xAC, 0x5A, 0x9E, 0xD1, 0x77, 0x77, + 0xCF, 0x9F, 0x59, 0x59, 0x9F, 0xCF, 0x77, 0x77, 0xD1, 0x9E, 0x5A, 0xD1, + 0x63, 0xA7, 0x65, 0x65, 0xA7, 0x63, 0x39, 0x66, 0x84, 0x4C, 0x65, 0xA7, + 0x63, 0x00, 0x02, 0x00, 0x39, 0x00, 0x00, 0x04, 0x1D, 0x05, 0xD2, 0x00, + 0x07, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x01, 0x33, 0x07, 0x01, 0x01, 0x17, + 0x23, 0x37, 0x01, 0x01, 0x27, 0x33, 0x01, 0x01, 0x23, 0x39, 0x01, 0x93, + 0xA0, 0x1E, 0xFE, 0xE1, 0x01, 0x25, 0x17, 0x9E, 0x3A, 0x01, 0x20, 0xFE, + 0xDA, 0x16, 0x9C, 0x01, 0x96, 0xFE, 0x6E, 0x9E, 0x02, 0xE8, 0x02, 0xEA, + 0xAC, 0xFD, 0xC2, 0xFD, 0xBF, 0xA7, 0xA7, 0x02, 0x41, 0x02, 0x3E, 0xAC, + 0xFD, 0x16, 0xFD, 0x18, 0x00, 0x02, 0x00, 0x43, 0x03, 0x62, 0x02, 0x9B, + 0x05, 0xC5, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, + 0x35, 0x23, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x06, 0x06, 0x07, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, 0x22, 0x61, 0x7E, 0x45, 0x74, 0x46, + 0x54, 0x4C, 0x37, 0x32, 0x31, 0x3D, 0x06, 0xAE, 0x08, 0x4A, 0x7E, 0x57, + 0x57, 0x80, 0x46, 0xB4, 0x04, 0x1A, 0x5C, 0x16, 0x40, 0x4C, 0x13, 0x4B, + 0x24, 0x2F, 0x3E, 0x38, 0x03, 0x62, 0x57, 0x58, 0x42, 0x4C, 0x24, 0x05, + 0x07, 0x10, 0x1C, 0x04, 0x1D, 0x23, 0x23, 0x1E, 0x06, 0x3B, 0x56, 0x30, + 0x30, 0x5B, 0x3E, 0xFE, 0x70, 0x53, 0x2D, 0x30, 0x7B, 0x38, 0x2C, 0x38, + 0x07, 0x0D, 0x04, 0x07, 0x22, 0x1F, 0x1C, 0x20, 0x00, 0x02, 0x00, 0x5F, + 0x03, 0x61, 0x02, 0xF1, 0x06, 0x9D, 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x27, 0x23, 0x15, 0x23, 0x11, 0x33, 0x11, 0x33, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0xDA, 0x43, + 0x63, 0x1A, 0x03, 0xB8, 0xBA, 0x02, 0x1C, 0x60, 0x45, 0x50, 0x7D, 0x48, + 0x46, 0x7E, 0x87, 0x42, 0x4B, 0x4C, 0x41, 0x43, 0x51, 0x51, 0x03, 0x61, + 0x36, 0x31, 0x5C, 0x03, 0x31, 0xFE, 0xC5, 0x2F, 0x34, 0x4A, 0x89, 0x5F, + 0x5F, 0x89, 0x4A, 0x93, 0x55, 0x4A, 0x4A, 0x54, 0x56, 0x48, 0x48, 0x57, + 0x00, 0x01, 0x00, 0x43, 0x03, 0x5F, 0x02, 0xBE, 0x05, 0xC5, 0x00, 0x1F, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x02, 0x01, 0x8D, 0x64, 0x94, + 0x52, 0x52, 0x94, 0x64, 0x56, 0x84, 0x50, 0x07, 0xB2, 0x05, 0x20, 0x34, + 0x24, 0x43, 0x4D, 0x4D, 0x43, 0x25, 0x34, 0x1F, 0x05, 0xB2, 0x05, 0x50, + 0x85, 0x03, 0x5F, 0x4E, 0x8A, 0x5B, 0x5C, 0x8A, 0x4D, 0x3B, 0x68, 0x45, + 0x09, 0x1D, 0x2B, 0x17, 0x56, 0x4B, 0x4A, 0x57, 0x19, 0x2C, 0x1C, 0x08, + 0x45, 0x6A, 0x3C, 0x00, 0x02, 0x00, 0x43, 0x03, 0x61, 0x02, 0xD5, 0x06, + 0x9D, 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x11, 0x33, 0x11, 0x23, + 0x35, 0x23, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x14, 0x16, 0x01, 0x59, 0x52, 0x7E, 0x46, 0x48, 0x7D, 0x50, + 0x46, 0x5F, 0x1B, 0x02, 0xBB, 0xB8, 0x03, 0x19, 0x64, 0x0F, 0x44, 0x50, + 0x50, 0x44, 0x42, 0x4C, 0x4C, 0x03, 0x61, 0x4A, 0x89, 0x5F, 0x5F, 0x89, + 0x4A, 0x35, 0x2E, 0x01, 0x3B, 0xFC, 0xCF, 0x5C, 0x31, 0x36, 0x93, 0x57, + 0x48, 0x48, 0x56, 0x54, 0x4A, 0x4A, 0x55, 0x00, 0x01, 0x00, 0x43, 0x03, + 0x5F, 0x02, 0xC7, 0x05, 0xC5, 0x00, 0x22, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x21, + 0x35, 0x21, 0x07, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x8D, 0x64, 0x95, + 0x51, 0x52, 0x92, 0x5F, 0x5F, 0x91, 0x51, 0xFD, 0xBE, 0x01, 0xE9, 0x55, + 0x4D, 0x43, 0x2D, 0x41, 0x22, 0x51, 0x48, 0x35, 0x43, 0x0D, 0xA8, 0x15, + 0xA5, 0x03, 0x5F, 0x4E, 0x8A, 0x5B, 0x5A, 0x8B, 0x4E, 0x4B, 0x89, 0x5B, + 0x31, 0x6F, 0x18, 0x3B, 0x45, 0x1F, 0x39, 0x27, 0x50, 0x3F, 0x48, 0x24, + 0x1C, 0x08, 0x54, 0x6B, 0x00, 0x02, 0x00, 0x26, 0x03, 0x6C, 0x01, 0xE6, + 0x06, 0xA9, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x53, 0x11, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, + 0x13, 0x15, 0x21, 0x35, 0x9C, 0x70, 0x68, 0x24, 0x40, 0x0E, 0x0A, 0x09, + 0x26, 0x0F, 0x27, 0x21, 0x87, 0xFE, 0x49, 0x03, 0x6C, 0x02, 0x86, 0x5C, + 0x5B, 0x04, 0x01, 0x8E, 0x01, 0x01, 0x1C, 0x20, 0xFD, 0x90, 0x02, 0x4E, + 0x8F, 0x8F, 0x00, 0x02, 0x00, 0x43, 0x02, 0x7E, 0x02, 0xD6, 0x05, 0xC5, + 0x00, 0x22, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x27, 0x37, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x23, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x33, 0x35, + 0x33, 0x11, 0x14, 0x06, 0x06, 0x03, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x92, 0x5B, 0x80, 0x4C, 0x0A, 0xAE, + 0x0B, 0x45, 0x33, 0x43, 0x48, 0x05, 0x1A, 0x63, 0x42, 0x51, 0x7E, 0x47, + 0x48, 0x7D, 0x50, 0x45, 0x62, 0x1B, 0x03, 0xB9, 0x53, 0x91, 0x64, 0x44, + 0x50, 0x50, 0x44, 0x42, 0x4C, 0x4C, 0x02, 0x7E, 0x2E, 0x52, 0x36, 0x09, + 0x1D, 0x1F, 0x3A, 0x39, 0x5F, 0x32, 0x30, 0x47, 0x84, 0x5A, 0x5E, 0x87, + 0x4A, 0x36, 0x2E, 0x59, 0xFD, 0xCC, 0x5C, 0x75, 0x37, 0x01, 0x82, 0x53, + 0x46, 0x47, 0x54, 0x53, 0x48, 0x48, 0x51, 0x00, 0x01, 0x00, 0x5F, 0x03, + 0x6C, 0x02, 0xC9, 0x06, 0x9D, 0x00, 0x15, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x11, 0x33, 0x11, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x01, 0x19, 0xBA, 0xB9, 0x1B, + 0x1E, 0x71, 0x57, 0x46, 0x68, 0x38, 0xB9, 0x40, 0x38, 0x38, 0x47, 0x04, + 0xB3, 0xFE, 0xB9, 0x03, 0x31, 0xFE, 0x83, 0x4D, 0x58, 0x37, 0x67, 0x47, + 0xFE, 0x8C, 0x01, 0x4F, 0x34, 0x38, 0x3A, 0x00, 0x02, 0x00, 0x57, 0x03, + 0x6C, 0x01, 0x22, 0x06, 0xBA, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, + 0x11, 0x33, 0x11, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x60, 0xBA, 0x5E, 0x2A, 0x3B, 0x3C, 0x29, 0x2A, 0x3C, + 0x3C, 0x03, 0x6C, 0x02, 0x4E, 0xFD, 0xB2, 0x02, 0x91, 0x37, 0x27, 0x28, + 0x37, 0x37, 0x27, 0x27, 0x38, 0x00, 0x02, 0xFF, 0xF2, 0x02, 0x87, 0x01, + 0x22, 0x06, 0xBA, 0x00, 0x0C, 0x00, 0x18, 0x00, 0x00, 0x53, 0x33, 0x11, + 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x13, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x60, 0xBA, + 0x37, 0x67, 0x4B, 0x3F, 0x24, 0x27, 0x23, 0x5D, 0x2B, 0x3B, 0x3B, 0x2B, + 0x2A, 0x3B, 0x3B, 0x05, 0xBA, 0xFD, 0x8F, 0x42, 0x56, 0x2A, 0x8F, 0x1F, + 0x22, 0x02, 0xA6, 0x38, 0x27, 0x27, 0x37, 0x37, 0x27, 0x27, 0x38, 0x00, + 0x03, 0x00, 0x5F, 0x03, 0x6C, 0x02, 0xE0, 0x06, 0x9D, 0x00, 0x06, 0x00, + 0x0A, 0x00, 0x0E, 0x00, 0x00, 0x41, 0x35, 0x33, 0x37, 0x33, 0x01, 0x23, + 0x01, 0x11, 0x33, 0x11, 0x33, 0x27, 0x37, 0x01, 0x01, 0x07, 0x16, 0xDE, + 0xD9, 0xFE, 0xDB, 0x2C, 0xFE, 0xDC, 0xBA, 0xEE, 0xC9, 0x7B, 0x01, 0x27, + 0x04, 0x08, 0xDD, 0xD5, 0xFE, 0xD1, 0xFE, 0xE1, 0x03, 0x31, 0xFC, 0xCF, + 0xF5, 0x84, 0xFE, 0x87, 0x00, 0x01, 0x00, 0x5F, 0x03, 0x6C, 0x01, 0x19, + 0x06, 0x9D, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x19, + 0xBA, 0x06, 0x9D, 0xFC, 0xCF, 0x03, 0x31, 0x00, 0x01, 0x00, 0x5F, 0x03, + 0x6C, 0x04, 0x3E, 0x05, 0xC5, 0x00, 0x26, 0x00, 0x00, 0x53, 0x11, 0x33, + 0x17, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x5F, + 0xB1, 0x03, 0x0B, 0x19, 0x73, 0x43, 0x32, 0x50, 0x36, 0x0A, 0x14, 0x0D, + 0x41, 0x5C, 0x34, 0x5F, 0x7C, 0xBB, 0x3D, 0x2E, 0x34, 0x3C, 0xB4, 0x3A, + 0x30, 0x30, 0x41, 0x03, 0x6C, 0x02, 0x4E, 0x8E, 0x50, 0x49, 0x23, 0x46, + 0x34, 0x34, 0x46, 0x23, 0x6E, 0x61, 0xFE, 0x76, 0x01, 0x61, 0x2E, 0x32, + 0x36, 0x2D, 0xFE, 0xA2, 0x01, 0x63, 0x2B, 0x33, 0x36, 0x31, 0xFE, 0xA6, + 0x00, 0x01, 0x00, 0x5F, 0x03, 0x6C, 0x02, 0xC9, 0x05, 0xC5, 0x00, 0x15, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x17, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x01, 0x19, 0xBA, 0xB5, 0x01, 0x18, 0x1E, 0x71, 0x57, 0x46, 0x68, 0x38, + 0xB9, 0x40, 0x38, 0x38, 0x47, 0x04, 0xB3, 0xFE, 0xB9, 0x02, 0x4E, 0x9A, + 0x4D, 0x58, 0x37, 0x67, 0x47, 0xFE, 0x8C, 0x01, 0x4F, 0x34, 0x38, 0x3A, + 0x00, 0x02, 0x00, 0x43, 0x03, 0x5F, 0x02, 0xDC, 0x05, 0xC5, 0x00, 0x0F, + 0x00, 0x1D, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x01, 0x90, + 0x64, 0x96, 0x53, 0x53, 0x96, 0x64, 0x64, 0x95, 0x53, 0x53, 0x95, 0x64, + 0x41, 0x4E, 0x24, 0x40, 0x2B, 0x2C, 0x41, 0x24, 0x4F, 0x03, 0x5F, 0x4D, + 0x8A, 0x5C, 0x5D, 0x89, 0x4D, 0x4D, 0x89, 0x5D, 0x5C, 0x8A, 0x4D, 0x93, + 0x55, 0x4B, 0x33, 0x48, 0x25, 0x25, 0x48, 0x33, 0x4B, 0x55, 0x00, 0x02, + 0x00, 0x5F, 0x02, 0x87, 0x02, 0xF1, 0x05, 0xC5, 0x00, 0x14, 0x00, 0x20, + 0x00, 0x00, 0x53, 0x11, 0x33, 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x23, 0x11, 0x13, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x5F, + 0xB8, 0x04, 0x1B, 0x63, 0x43, 0x50, 0x7D, 0x48, 0x46, 0x7E, 0x53, 0x43, + 0x61, 0x1A, 0x03, 0x8D, 0x42, 0x4B, 0x4C, 0x41, 0x43, 0x51, 0x51, 0x02, + 0x87, 0x03, 0x33, 0x56, 0x2E, 0x33, 0x4A, 0x89, 0x5F, 0x5F, 0x89, 0x4A, + 0x36, 0x30, 0xFE, 0xC0, 0x01, 0x6D, 0x55, 0x4A, 0x4A, 0x54, 0x56, 0x48, + 0x48, 0x57, 0x00, 0x02, 0x00, 0x43, 0x02, 0x87, 0x02, 0xD5, 0x05, 0xC5, + 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, 0x41, 0x23, 0x11, 0x23, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x33, 0x35, 0x33, 0x01, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x02, 0xD5, 0xBB, 0x03, 0x19, 0x5F, 0x46, 0x52, 0x7E, + 0x46, 0x48, 0x7D, 0x50, 0x46, 0x62, 0x19, 0x04, 0xB8, 0xFE, 0xB9, 0x44, + 0x50, 0x50, 0x44, 0x42, 0x4C, 0x4C, 0x02, 0x87, 0x01, 0x40, 0x2F, 0x37, + 0x4A, 0x89, 0x5F, 0x5F, 0x89, 0x4A, 0x34, 0x2D, 0x56, 0xFE, 0x3A, 0x57, + 0x48, 0x48, 0x56, 0x54, 0x4A, 0x4A, 0x55, 0x00, 0x01, 0x00, 0x5F, 0x03, + 0x6C, 0x01, 0xED, 0x05, 0xBE, 0x00, 0x12, 0x00, 0x00, 0x53, 0x11, 0x33, + 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x11, 0x5F, 0xB4, 0x03, 0x13, 0x51, 0x3D, 0x14, 0x13, + 0x0F, 0x09, 0x2F, 0x16, 0x3A, 0x4C, 0x03, 0x6C, 0x02, 0x4E, 0x69, 0x3A, + 0x33, 0x02, 0x01, 0x9D, 0x02, 0x02, 0x43, 0x3C, 0xFE, 0xC9, 0x00, 0x01, + 0x00, 0x41, 0x03, 0x5F, 0x02, 0x97, 0x05, 0xC5, 0x00, 0x2A, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x07, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0x6F, 0x7D, 0xA4, 0x0D, 0xAF, 0x05, + 0x20, 0x35, 0x24, 0x33, 0x3A, 0x2C, 0x29, 0x74, 0x62, 0x60, 0x98, 0x81, + 0x7C, 0x96, 0x0A, 0xA4, 0x03, 0x1F, 0x32, 0x20, 0x2C, 0x38, 0x29, 0x27, + 0x7D, 0x64, 0x5D, 0x4B, 0x86, 0x03, 0x5F, 0x65, 0x59, 0x0C, 0x16, 0x21, + 0x13, 0x1E, 0x16, 0x14, 0x1A, 0x07, 0x13, 0x11, 0x59, 0x42, 0x58, 0x66, + 0x63, 0x56, 0x0D, 0x15, 0x1F, 0x12, 0x1D, 0x17, 0x14, 0x19, 0x07, 0x16, + 0x11, 0x4F, 0x40, 0x3C, 0x5A, 0x32, 0x00, 0x02, 0x00, 0x26, 0x03, 0x69, + 0x01, 0xD2, 0x06, 0x54, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x53, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x07, 0x22, + 0x26, 0x35, 0x01, 0x15, 0x21, 0x35, 0x90, 0xBA, 0x1D, 0x22, 0x0E, 0x28, + 0x0B, 0x08, 0x14, 0x3C, 0x1F, 0x69, 0x6A, 0x01, 0x3D, 0xFE, 0x59, 0x06, + 0x54, 0xFD, 0xD6, 0x1B, 0x15, 0x01, 0x01, 0x8E, 0x02, 0x02, 0x01, 0x51, + 0x56, 0x01, 0xAA, 0x8F, 0x8F, 0x00, 0x01, 0x00, 0x5F, 0x03, 0x61, 0x02, + 0xC9, 0x05, 0xBA, 0x00, 0x15, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, + 0x23, 0x27, 0x33, 0x06, 0x06, 0x01, 0x45, 0x46, 0x67, 0x39, 0xBA, 0x3F, + 0x39, 0x38, 0x47, 0xB9, 0xB4, 0x02, 0x19, 0x1E, 0x72, 0x03, 0x61, 0x37, + 0x67, 0x47, 0x01, 0x74, 0xFE, 0xB1, 0x34, 0x38, 0x3A, 0x3A, 0x01, 0x47, + 0xFD, 0xB2, 0x9A, 0x4D, 0x58, 0x00, 0x01, 0x00, 0x26, 0x03, 0x6C, 0x02, + 0xDF, 0x05, 0xBA, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x16, + 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x13, 0x33, 0x03, 0x01, 0x19, 0xF3, + 0xC3, 0x6C, 0x15, 0x20, 0x10, 0x2A, 0x11, 0x1E, 0x15, 0x69, 0xC2, 0xF4, + 0x03, 0x6C, 0x02, 0x4E, 0xFE, 0xE8, 0x35, 0x71, 0x3E, 0x3F, 0x70, 0x35, + 0x01, 0x18, 0xFD, 0xB2, 0x00, 0x01, 0x00, 0x25, 0x03, 0x6C, 0x04, 0x28, + 0x05, 0xBA, 0x00, 0x23, 0x00, 0x00, 0x53, 0x03, 0x33, 0x17, 0x16, 0x16, + 0x17, 0x23, 0x36, 0x36, 0x37, 0x37, 0x33, 0x17, 0x16, 0x16, 0x17, 0x23, + 0x36, 0x36, 0x37, 0x37, 0x33, 0x03, 0x23, 0x27, 0x2E, 0x02, 0x27, 0x33, + 0x0E, 0x02, 0x07, 0x07, 0xED, 0xC8, 0xC3, 0x3B, 0x11, 0x21, 0x0F, 0x17, + 0x0F, 0x24, 0x14, 0x3F, 0xA7, 0x3E, 0x14, 0x23, 0x10, 0x17, 0x0C, 0x21, + 0x12, 0x3B, 0xC6, 0xC8, 0xC0, 0x4D, 0x0D, 0x14, 0x12, 0x0B, 0x22, 0x09, + 0x15, 0x14, 0x0B, 0x4E, 0x03, 0x6C, 0x02, 0x4E, 0xC2, 0x3C, 0x8C, 0x4A, + 0x46, 0x8D, 0x3F, 0xC2, 0xC2, 0x3E, 0x8A, 0x4A, 0x3B, 0x97, 0x3F, 0xC3, + 0xFD, 0xB2, 0xDC, 0x25, 0x47, 0x46, 0x22, 0x21, 0x4B, 0x48, 0x20, 0xDC, + 0x00, 0x01, 0x00, 0x27, 0x03, 0x6C, 0x02, 0xC5, 0x05, 0xBA, 0x00, 0x1C, + 0x00, 0x00, 0x53, 0x01, 0x07, 0x03, 0x33, 0x17, 0x16, 0x16, 0x17, 0x23, + 0x3E, 0x02, 0x37, 0x37, 0x33, 0x03, 0x37, 0x01, 0x23, 0x27, 0x26, 0x26, + 0x27, 0x33, 0x06, 0x06, 0x07, 0x07, 0x27, 0x01, 0x05, 0x02, 0xF5, 0xCB, + 0x39, 0x1B, 0x2C, 0x16, 0x3D, 0x10, 0x1C, 0x21, 0x13, 0x3B, 0xC7, 0xFA, + 0x02, 0x01, 0x02, 0xCA, 0x43, 0x1B, 0x2C, 0x17, 0x37, 0x1B, 0x26, 0x1D, + 0x44, 0x03, 0x6C, 0x01, 0x5F, 0x60, 0x01, 0x4F, 0x4D, 0x24, 0x4F, 0x29, + 0x1B, 0x33, 0x34, 0x1A, 0x4D, 0xFE, 0xB1, 0x5F, 0xFE, 0xA2, 0x56, 0x25, + 0x4C, 0x28, 0x30, 0x42, 0x27, 0x56, 0x00, 0x01, 0x00, 0x26, 0x02, 0x85, + 0x02, 0xE0, 0x05, 0xBA, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x37, 0x33, 0x16, + 0x3E, 0x02, 0x37, 0x37, 0x03, 0x33, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, + 0x36, 0x37, 0x13, 0x33, 0x01, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x68, 0x0D, + 0x42, 0x14, 0x1D, 0x17, 0x11, 0x05, 0x0C, 0xFB, 0xC3, 0x6D, 0x15, 0x1F, + 0x10, 0x31, 0x0F, 0x22, 0x15, 0x6F, 0xC2, 0xFE, 0xE1, 0x15, 0x3D, 0x53, + 0x38, 0x20, 0x40, 0x02, 0x8B, 0x8E, 0x04, 0x05, 0x0E, 0x18, 0x0F, 0x1E, + 0x02, 0x4D, 0xFE, 0xE8, 0x36, 0x71, 0x3D, 0x3E, 0x71, 0x35, 0x01, 0x18, + 0xFD, 0x64, 0x33, 0x44, 0x22, 0x04, 0x00, 0x01, 0x00, 0x5C, 0x03, 0x6C, + 0x02, 0x83, 0x05, 0xBA, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x35, 0x01, 0x35, + 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x21, 0x15, 0x5C, 0x01, 0x44, 0xFE, + 0xC0, 0x02, 0x1C, 0xFE, 0xC7, 0x01, 0x40, 0x03, 0x6C, 0x76, 0x01, 0x44, + 0x02, 0x92, 0x7F, 0xFE, 0xC4, 0x03, 0x90, 0x00, 0x02, 0x00, 0x47, 0x03, + 0x60, 0x03, 0x2E, 0x06, 0xAA, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, + 0xBA, 0xAE, 0xC5, 0xC6, 0xAD, 0xAF, 0xC5, 0xC5, 0xAF, 0x57, 0x62, 0x62, + 0x56, 0x57, 0x63, 0x63, 0x03, 0x60, 0xE0, 0xC4, 0xC4, 0xE2, 0xE2, 0xC4, + 0xC4, 0xE0, 0x99, 0x8D, 0x7E, 0x7F, 0x8E, 0x8F, 0x7E, 0x7E, 0x8D, 0x00, + 0x03, 0x00, 0x47, 0x03, 0x60, 0x03, 0x2E, 0x06, 0xAA, 0x00, 0x0B, 0x00, + 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x07, 0x27, 0x01, 0x17, 0x01, 0xBA, 0xAD, + 0xC6, 0xC6, 0xAD, 0xAF, 0xC5, 0xC5, 0xAF, 0x57, 0x62, 0x62, 0x57, 0x56, + 0x63, 0x63, 0x2C, 0x4F, 0x01, 0x53, 0x50, 0x03, 0x60, 0xE0, 0xC4, 0xC4, + 0xE2, 0xE2, 0xC4, 0xC4, 0xE0, 0x99, 0x8D, 0x7E, 0x7F, 0x8E, 0x8F, 0x7E, + 0x7E, 0x8D, 0x35, 0x24, 0x02, 0x5E, 0x22, 0x00, 0x01, 0x00, 0x3E, 0x03, + 0x6C, 0x01, 0xCF, 0x06, 0x9D, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x11, 0x23, 0x07, 0x35, 0x37, 0x01, 0xCF, 0xBB, 0x02, 0xD4, 0xDB, 0x06, + 0x9D, 0xFC, 0xCF, 0x02, 0x86, 0x78, 0xA5, 0x7E, 0x00, 0x01, 0x00, 0x55, + 0x03, 0x6C, 0x01, 0xCC, 0x06, 0x9D, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x11, + 0x17, 0x0E, 0x02, 0x23, 0x35, 0x33, 0x32, 0x36, 0x37, 0x33, 0x11, 0x01, + 0x10, 0x0C, 0x1B, 0x3D, 0x46, 0x29, 0x1B, 0x4A, 0x62, 0x0C, 0xA4, 0x03, + 0x6C, 0x02, 0x3C, 0x0B, 0x08, 0x09, 0x05, 0x90, 0x42, 0x44, 0xFC, 0xCF, + 0x00, 0x01, 0x00, 0x50, 0x03, 0x6C, 0x02, 0xE6, 0x06, 0xAA, 0x00, 0x1C, + 0x00, 0x00, 0x53, 0x35, 0x25, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, + 0x07, 0x07, 0x15, 0x21, 0x15, 0x55, 0x01, 0x4C, 0x28, 0x3C, 0x23, 0x4F, + 0x40, 0x45, 0x52, 0xB2, 0xB4, 0x95, 0x8F, 0xB6, 0x18, 0x34, 0x52, 0x39, + 0xAB, 0x01, 0x8A, 0x03, 0x6C, 0x8A, 0xFF, 0x1F, 0x34, 0x36, 0x23, 0x34, + 0x3E, 0x4A, 0x42, 0x85, 0x9E, 0x8A, 0x74, 0x2A, 0x49, 0x45, 0x48, 0x28, + 0x7C, 0x03, 0x99, 0x00, 0x01, 0x00, 0x51, 0x03, 0x60, 0x03, 0x0B, 0x06, + 0xAA, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x01, 0xAD, 0x6F, 0x9B, 0x52, 0xBA, 0x57, 0x49, 0x46, + 0x58, 0x5F, 0x4E, 0x52, 0x52, 0x47, 0x55, 0x4E, 0x3E, 0x41, 0x52, 0xB6, + 0x52, 0x95, 0x62, 0x5E, 0x91, 0x52, 0x61, 0x4E, 0x63, 0x6A, 0x5A, 0x9D, + 0x03, 0x60, 0x4B, 0x7E, 0x4C, 0x3B, 0x45, 0x3C, 0x2F, 0x30, 0x39, 0x86, + 0x36, 0x2C, 0x2E, 0x3A, 0x3E, 0x32, 0x4A, 0x74, 0x43, 0x3B, 0x68, 0x43, + 0x45, 0x5C, 0x0C, 0x03, 0x0B, 0x6D, 0x49, 0x46, 0x6E, 0x3F, 0x00, 0x01, + 0x00, 0x51, 0x03, 0x60, 0x03, 0x06, 0x06, 0x9D, 0x00, 0x1F, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x23, 0x35, 0x37, 0x35, 0x21, 0x35, 0x21, 0x15, 0x05, + 0x35, 0x36, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0xAC, 0x6C, 0x9C, + 0x53, 0xBA, 0x02, 0x58, 0x46, 0x46, 0x56, 0x5D, 0x52, 0x76, 0xD6, 0xFE, + 0x8A, 0x02, 0x5A, 0xFE, 0xD9, 0x6D, 0x96, 0x4E, 0x57, 0x9C, 0x03, 0x60, + 0x4B, 0x7F, 0x4B, 0x39, 0x47, 0x45, 0x37, 0x36, 0x40, 0x72, 0xA9, 0x02, + 0x99, 0x8F, 0xEE, 0x28, 0x0A, 0x36, 0x6D, 0x47, 0x4E, 0x78, 0x42, 0x00, + 0x02, 0x00, 0x48, 0x03, 0x6C, 0x03, 0x33, 0x06, 0x9D, 0x00, 0x09, 0x00, + 0x0F, 0x00, 0x00, 0x53, 0x35, 0x01, 0x33, 0x15, 0x23, 0x01, 0x15, 0x21, + 0x15, 0x05, 0x35, 0x37, 0x11, 0x33, 0x11, 0x48, 0x01, 0x8A, 0x7C, 0x46, + 0xFE, 0xFB, 0x02, 0x30, 0xFE, 0xD6, 0x01, 0xB6, 0x04, 0x0D, 0x92, 0x01, + 0xFE, 0xBA, 0xFE, 0xBE, 0x02, 0x92, 0xA1, 0xCD, 0x41, 0x02, 0x23, 0xFC, + 0xCF, 0x00, 0x02, 0x00, 0x48, 0x03, 0x6C, 0x03, 0x33, 0x06, 0x9D, 0x00, + 0x07, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x35, 0x01, 0x33, 0x01, 0x15, 0x21, + 0x15, 0x05, 0x35, 0x37, 0x35, 0x33, 0x11, 0x48, 0x01, 0x7F, 0xBD, 0xFE, + 0x87, 0x02, 0x28, 0xFE, 0xD6, 0x02, 0xB1, 0x04, 0x0D, 0x92, 0x01, 0xFE, + 0xFE, 0x04, 0x02, 0x92, 0xA1, 0xCC, 0x42, 0xF0, 0xFE, 0x02, 0x00, 0x01, + 0x00, 0x4A, 0x03, 0x60, 0x02, 0xF1, 0x06, 0x9D, 0x00, 0x21, 0x00, 0x00, + 0x41, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, 0x07, + 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x01, 0x9D, + 0x61, 0x96, 0x57, 0x05, 0xB8, 0x02, 0x58, 0x42, 0x45, 0x57, 0x57, 0x44, + 0x36, 0x4F, 0x11, 0xAF, 0x20, 0x02, 0x43, 0xFE, 0x64, 0x13, 0x02, 0x1F, + 0x5E, 0x3B, 0x52, 0x87, 0x50, 0xBB, 0x03, 0x60, 0x42, 0x77, 0x4F, 0x33, + 0x43, 0x4D, 0x3D, 0x3E, 0x4E, 0x28, 0x22, 0x0A, 0x01, 0xD5, 0x99, 0xB2, + 0x1F, 0x23, 0x48, 0x7C, 0x4F, 0x7E, 0xA3, 0x00, 0x02, 0x00, 0x47, 0x03, + 0x60, 0x03, 0x05, 0x06, 0xAA, 0x00, 0x1F, 0x00, 0x2C, 0x00, 0x00, 0x41, + 0x22, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x33, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x17, 0x14, 0x16, 0x01, 0xB2, 0x51, 0x86, 0x60, + 0x34, 0x56, 0xA5, 0x76, 0x5C, 0x8C, 0x53, 0x08, 0xB7, 0x09, 0x4B, 0x3A, + 0x40, 0x53, 0x27, 0x03, 0x1F, 0x73, 0x4A, 0x57, 0x86, 0x4D, 0xBE, 0x96, + 0x42, 0x5A, 0x59, 0x43, 0x2C, 0x47, 0x2A, 0x01, 0x5A, 0x03, 0x60, 0x33, + 0x66, 0x98, 0x64, 0x86, 0xC4, 0x6B, 0x41, 0x6E, 0x45, 0x2C, 0x31, 0x3E, + 0x6A, 0x45, 0x2F, 0x35, 0x46, 0x7A, 0x4E, 0x7E, 0x9E, 0x93, 0x4E, 0x39, + 0x39, 0x4C, 0x23, 0x3C, 0x25, 0x3A, 0x4E, 0x00, 0x02, 0x00, 0x47, 0x03, + 0x60, 0x02, 0xE8, 0x06, 0x9D, 0x00, 0x16, 0x00, 0x22, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x37, 0x13, 0x33, 0x01, 0x23, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x9C, 0x61, + 0x9B, 0x59, 0x3E, 0x38, 0xD9, 0xCA, 0xFE, 0xDE, 0x26, 0x0C, 0x2C, 0x44, + 0x30, 0x57, 0x83, 0x4A, 0x55, 0x96, 0x65, 0x43, 0x59, 0x59, 0x43, 0x43, + 0x59, 0x59, 0x03, 0x60, 0x46, 0x7F, 0x55, 0x43, 0x7E, 0x4A, 0x01, 0x18, + 0xFE, 0x94, 0x11, 0x25, 0x19, 0x40, 0x74, 0x50, 0x54, 0x80, 0x48, 0x93, + 0x4D, 0x3A, 0x39, 0x4C, 0x4C, 0x39, 0x3A, 0x4D, 0x00, 0x01, 0x00, 0x3D, + 0x03, 0x6C, 0x02, 0xBC, 0x06, 0x9D, 0x00, 0x07, 0x00, 0x00, 0x53, 0x01, + 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x7B, 0x01, 0x7C, 0xFE, 0x46, 0x02, + 0x7F, 0xFE, 0x83, 0x03, 0x6C, 0x02, 0x92, 0x02, 0x9D, 0x9B, 0xFD, 0x6A, + 0x00, 0x03, 0x00, 0x47, 0x03, 0x60, 0x03, 0x05, 0x06, 0xAA, 0x00, 0x1F, + 0x00, 0x2B, 0x00, 0x37, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, + 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x13, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x01, 0xA5, 0x67, 0x9E, 0x59, 0x37, 0x61, 0x40, 0x53, 0x66, 0x52, + 0x90, 0x5D, 0x5F, 0x90, 0x52, 0x64, 0x54, 0x3E, 0x61, 0x38, 0x5A, 0x9E, + 0x68, 0x45, 0x57, 0x58, 0x44, 0x42, 0x58, 0x56, 0x44, 0x3C, 0x4B, 0x4B, + 0x3C, 0x3B, 0x4A, 0x4A, 0x03, 0x60, 0x3B, 0x68, 0x45, 0x37, 0x55, 0x38, + 0x07, 0x02, 0x0C, 0x61, 0x4A, 0x42, 0x63, 0x39, 0x38, 0x64, 0x42, 0x48, + 0x62, 0x0D, 0x02, 0x07, 0x38, 0x55, 0x37, 0x45, 0x68, 0x3B, 0x86, 0x40, + 0x31, 0x32, 0x40, 0x40, 0x32, 0x31, 0x40, 0x01, 0x6D, 0x38, 0x2E, 0x2E, + 0x37, 0x37, 0x2E, 0x2D, 0x39, 0x00, 0x02, 0x00, 0x47, 0x03, 0x5F, 0x03, + 0x05, 0x06, 0xAB, 0x00, 0x20, 0x00, 0x2D, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x23, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x17, 0x32, 0x1E, + 0x02, 0x15, 0x14, 0x06, 0x06, 0x03, 0x32, 0x36, 0x36, 0x35, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x94, 0x5C, 0x8C, 0x54, 0x08, + 0xB7, 0x0A, 0x4C, 0x38, 0x41, 0x52, 0x28, 0x03, 0x20, 0x74, 0x49, 0x55, + 0x87, 0x4D, 0x56, 0x9B, 0x65, 0x52, 0x84, 0x60, 0x32, 0x56, 0xA5, 0x6F, + 0x2C, 0x47, 0x2A, 0x01, 0x59, 0x42, 0x43, 0x5A, 0x59, 0x03, 0x5F, 0x41, + 0x6F, 0x44, 0x2B, 0x32, 0x3E, 0x6B, 0x45, 0x31, 0x33, 0x46, 0x7A, 0x4E, + 0x54, 0x81, 0x48, 0x01, 0x35, 0x66, 0x97, 0x64, 0x85, 0xC4, 0x6C, 0x01, + 0xAC, 0x22, 0x3D, 0x26, 0x3A, 0x4C, 0x4C, 0x3A, 0x3A, 0x4B, 0x00, 0x02, + 0x00, 0x47, 0x03, 0x6C, 0x02, 0xE8, 0x06, 0xA9, 0x00, 0x16, 0x00, 0x22, + 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x07, 0x03, 0x23, + 0x01, 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x17, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x01, 0x94, 0x62, 0x99, 0x59, 0x3E, 0x39, 0xD7, 0xCB, 0x01, 0x21, 0x28, + 0x0D, 0x2E, 0x42, 0x2F, 0x57, 0x84, 0x4A, 0x55, 0x97, 0x64, 0x42, 0x5A, + 0x59, 0x43, 0x43, 0x59, 0x59, 0x06, 0xA9, 0x45, 0x7E, 0x56, 0x42, 0x80, + 0x4A, 0xFE, 0xE8, 0x01, 0x6D, 0x12, 0x25, 0x19, 0x41, 0x75, 0x50, 0x54, + 0x7E, 0x48, 0x93, 0x4C, 0x3A, 0x39, 0x4C, 0x4C, 0x39, 0x3A, 0x4C, 0x00, + 0x01, 0x00, 0x6C, 0x02, 0xE4, 0x01, 0xB0, 0x06, 0xE0, 0x00, 0x0F, 0x00, + 0x00, 0x53, 0x34, 0x36, 0x36, 0x37, 0x33, 0x06, 0x02, 0x15, 0x14, 0x16, + 0x16, 0x17, 0x23, 0x26, 0x26, 0x6C, 0x26, 0x42, 0x2B, 0xB1, 0x3E, 0x49, + 0x1E, 0x3B, 0x2E, 0xB1, 0x47, 0x4C, 0x04, 0xCA, 0x60, 0xC6, 0xB1, 0x3F, + 0x78, 0xFE, 0xE5, 0x83, 0x4D, 0x97, 0xA2, 0x60, 0x6B, 0xF8, 0x00, 0x01, + 0x00, 0x3A, 0x02, 0xE4, 0x01, 0x7E, 0x06, 0xE0, 0x00, 0x0F, 0x00, 0x00, + 0x53, 0x3E, 0x02, 0x35, 0x34, 0x02, 0x27, 0x33, 0x1E, 0x02, 0x15, 0x14, + 0x06, 0x07, 0x3A, 0x2E, 0x3C, 0x1D, 0x4A, 0x3D, 0xB1, 0x2C, 0x41, 0x26, + 0x4C, 0x47, 0x02, 0xE4, 0x60, 0xA2, 0x97, 0x4D, 0x85, 0x01, 0x1A, 0x77, + 0x3F, 0xB1, 0xC6, 0x60, 0x83, 0xF8, 0x6B, 0x00, 0x01, 0x00, 0x74, 0x02, + 0xE4, 0x01, 0x9E, 0x06, 0xE0, 0x00, 0x07, 0x00, 0x00, 0x53, 0x11, 0x21, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x74, 0x01, 0x2A, 0x72, 0x72, 0x02, 0xE4, + 0x03, 0xFC, 0x8E, 0xFD, 0x20, 0x8E, 0x00, 0x01, 0x00, 0x4C, 0x02, 0xE4, + 0x01, 0x76, 0x06, 0xE0, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x33, 0x11, + 0x23, 0x35, 0x21, 0x11, 0x4C, 0x71, 0x71, 0x01, 0x2A, 0x02, 0xE4, 0x8E, + 0x02, 0xE0, 0x8E, 0xFC, 0x04, 0x00, 0x02, 0x00, 0x7F, 0x03, 0xC6, 0x02, + 0xEB, 0x06, 0x04, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x33, + 0x11, 0x25, 0x35, 0x21, 0x15, 0x01, 0x67, 0x9D, 0xFE, 0x7B, 0x02, 0x6C, + 0x03, 0xC6, 0x02, 0x3E, 0xFD, 0xC2, 0xD5, 0x94, 0x94, 0x00, 0x01, 0x00, + 0x83, 0x04, 0xA1, 0x02, 0xE8, 0x05, 0x3C, 0x00, 0x03, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x02, 0xE8, 0xFD, 0x9B, 0x05, 0x3C, 0x9B, 0x9B, 0x00, + 0x02, 0x00, 0x87, 0x04, 0x1A, 0x02, 0xE3, 0x05, 0xC3, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x35, 0x21, 0x15, 0x87, + 0x02, 0x5C, 0xFD, 0xA4, 0x02, 0x5C, 0x05, 0x29, 0x9A, 0x9A, 0xFE, 0xF1, + 0x9A, 0x9A, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xB2, 0x02, 0x9B, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x25, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, + 0xFE, 0xB1, 0x02, 0xF1, 0x01, 0xED, 0x06, 0x07, 0x06, 0x26, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xAF, 0x02, 0xBE, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x27, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, + 0xFE, 0xB1, 0x02, 0xD5, 0x01, 0xED, 0x06, 0x07, 0x06, 0x28, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xAF, 0x02, 0xC7, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x29, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x26, + 0xFE, 0xBC, 0x01, 0xE6, 0x01, 0xF9, 0x06, 0x07, 0x06, 0x2A, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFD, 0xCE, 0x02, 0xD6, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x2B, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, + 0xFE, 0xBC, 0x02, 0xC9, 0x01, 0xED, 0x06, 0x07, 0x06, 0x2C, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x57, 0xFE, 0xBC, 0x01, 0x22, 0x02, 0x0A, + 0x06, 0x07, 0x06, 0x2D, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0xFF, 0xF2, + 0xFD, 0xD7, 0x01, 0x22, 0x02, 0x0A, 0x06, 0x07, 0x06, 0x2E, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, 0xFE, 0xBC, 0x02, 0xE0, 0x01, 0xED, + 0x06, 0x07, 0x06, 0x2F, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, + 0xFE, 0xBC, 0x01, 0x19, 0x01, 0xED, 0x06, 0x07, 0x06, 0x30, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, 0xFE, 0xBC, 0x04, 0x3E, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x31, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, + 0xFE, 0xBC, 0x02, 0xC9, 0x01, 0x15, 0x06, 0x07, 0x06, 0x32, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFE, 0xAF, 0x02, 0xDC, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x33, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, + 0xFD, 0xD7, 0x02, 0xF1, 0x01, 0x15, 0x06, 0x07, 0x06, 0x34, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x43, 0xFD, 0xD7, 0x02, 0xD5, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x35, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, + 0xFE, 0xBC, 0x01, 0xED, 0x01, 0x0E, 0x06, 0x07, 0x06, 0x36, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x41, 0xFE, 0xAF, 0x02, 0x97, 0x01, 0x15, + 0x06, 0x07, 0x06, 0x37, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x26, + 0xFE, 0xB9, 0x01, 0xD2, 0x01, 0xA4, 0x06, 0x07, 0x06, 0x38, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5F, 0xFE, 0xB1, 0x02, 0xC9, 0x01, 0x0A, + 0x06, 0x07, 0x06, 0x39, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x26, + 0xFE, 0xBC, 0x02, 0xDF, 0x01, 0x0A, 0x06, 0x07, 0x06, 0x3A, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x25, 0xFE, 0xBC, 0x04, 0x28, 0x01, 0x0A, + 0x06, 0x07, 0x06, 0x3B, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x27, + 0xFE, 0xBC, 0x02, 0xC5, 0x01, 0x0A, 0x06, 0x07, 0x06, 0x3C, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x26, 0xFD, 0xD5, 0x02, 0xE0, 0x01, 0x0A, + 0x06, 0x07, 0x06, 0x3D, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x5C, + 0xFE, 0xBC, 0x02, 0x83, 0x01, 0x0A, 0x06, 0x07, 0x06, 0x3E, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0xB0, 0x03, 0x2E, 0x01, 0xFA, + 0x06, 0x07, 0x06, 0x3F, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, + 0xFE, 0xB0, 0x03, 0x2E, 0x01, 0xFA, 0x06, 0x07, 0x06, 0x40, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x3E, 0xFE, 0xBC, 0x01, 0xCF, 0x01, 0xED, + 0x06, 0x07, 0x06, 0x41, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x55, + 0xFE, 0xBC, 0x01, 0xCC, 0x01, 0xED, 0x06, 0x07, 0x06, 0x42, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x50, 0xFE, 0xBC, 0x02, 0xE6, 0x01, 0xFA, + 0x06, 0x07, 0x06, 0x43, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x51, + 0xFE, 0xB0, 0x03, 0x0B, 0x01, 0xFA, 0x06, 0x07, 0x06, 0x44, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x51, 0xFE, 0xB0, 0x03, 0x06, 0x01, 0xED, + 0x06, 0x07, 0x06, 0x45, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x48, + 0xFE, 0xBC, 0x03, 0x33, 0x01, 0xED, 0x06, 0x07, 0x06, 0x46, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x48, 0xFE, 0xBC, 0x03, 0x33, 0x01, 0xED, + 0x06, 0x07, 0x06, 0x47, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x4A, + 0xFE, 0xB0, 0x02, 0xF1, 0x01, 0xED, 0x06, 0x07, 0x06, 0x48, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0xB0, 0x03, 0x05, 0x01, 0xFA, + 0x06, 0x07, 0x06, 0x49, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, + 0xFE, 0xB0, 0x02, 0xE8, 0x01, 0xED, 0x06, 0x07, 0x06, 0x4A, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x3D, 0xFE, 0xBC, 0x02, 0xBC, 0x01, 0xED, + 0x06, 0x07, 0x06, 0x4B, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, + 0xFE, 0xB0, 0x03, 0x05, 0x01, 0xFA, 0x06, 0x07, 0x06, 0x4C, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0xAF, 0x03, 0x05, 0x01, 0xFB, + 0x06, 0x07, 0x06, 0x4D, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x47, + 0xFE, 0xBC, 0x02, 0xE8, 0x01, 0xF9, 0x06, 0x07, 0x06, 0x4E, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x6C, 0xFE, 0x34, 0x01, 0xB0, 0x02, 0x30, + 0x06, 0x07, 0x06, 0x4F, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x3A, + 0xFE, 0x34, 0x01, 0x7E, 0x02, 0x30, 0x06, 0x07, 0x06, 0x50, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x74, 0xFE, 0x34, 0x01, 0x9E, 0x02, 0x30, + 0x06, 0x07, 0x06, 0x51, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x4C, + 0xFE, 0x34, 0x01, 0x76, 0x02, 0x30, 0x06, 0x07, 0x06, 0x52, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x7F, 0xFF, 0x16, 0x02, 0xEB, 0x01, 0x54, + 0x06, 0x07, 0x06, 0x53, 0x00, 0x00, 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x83, + 0xFF, 0xF1, 0x02, 0xE8, 0x00, 0x8C, 0x06, 0x07, 0x06, 0x54, 0x00, 0x00, + 0xFB, 0x50, 0xFF, 0xFF, 0x00, 0x87, 0xFF, 0x6A, 0x02, 0xE3, 0x01, 0x13, + 0x06, 0x07, 0x06, 0x55, 0x00, 0x00, 0xFB, 0x50, 0x00, 0x01, 0xFE, 0x43, + 0x00, 0x00, 0x02, 0xFF, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x61, 0x01, + 0x33, 0x01, 0xFE, 0x43, 0x04, 0x00, 0xBC, 0xFC, 0x00, 0x05, 0xD2, 0xFA, + 0x2E, 0x00, 0x02, 0x00, 0x42, 0xFF, 0xF4, 0x02, 0xD7, 0x03, 0x3E, 0x00, + 0x0B, 0x00, 0x17, 0x00, 0x00, 0x45, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x8D, 0x9C, 0xAF, 0xAF, 0x9C, 0x9B, + 0xAF, 0xAF, 0x9B, 0x4E, 0x56, 0x56, 0x4E, 0x4E, 0x57, 0x57, 0x0C, 0xDF, + 0xC5, 0xC5, 0xE1, 0xE1, 0xC5, 0xC5, 0xDF, 0x8B, 0x95, 0x84, 0x85, 0x96, + 0x96, 0x85, 0x85, 0x94, 0x00, 0x03, 0x00, 0x41, 0xFF, 0xF4, 0x02, 0xD9, + 0x03, 0x3E, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x07, 0x27, + 0x01, 0x17, 0x01, 0x8D, 0x9B, 0xB1, 0xB1, 0x9B, 0x9C, 0xB0, 0xB0, 0x9C, + 0x4E, 0x58, 0x58, 0x4E, 0x4D, 0x58, 0x58, 0x28, 0x48, 0x01, 0x32, 0x47, + 0x0C, 0xE0, 0xC4, 0xC4, 0xE2, 0xE2, 0xC4, 0xC4, 0xE0, 0x8A, 0x95, 0x85, + 0x85, 0x97, 0x97, 0x85, 0x85, 0x95, 0x26, 0x23, 0x02, 0x60, 0x23, 0x00, + 0x01, 0x00, 0x38, 0x00, 0x00, 0x01, 0xA2, 0x03, 0x31, 0x00, 0x07, 0x00, + 0x00, 0x41, 0x11, 0x23, 0x11, 0x23, 0x07, 0x35, 0x37, 0x01, 0xA2, 0xA8, + 0x02, 0xC0, 0xC2, 0x03, 0x31, 0xFC, 0xCF, 0x02, 0x96, 0x7F, 0x9B, 0x7F, + 0x00, 0x01, 0x00, 0x4D, 0x00, 0x00, 0x01, 0x9D, 0x03, 0x31, 0x00, 0x0D, + 0x00, 0x00, 0x73, 0x11, 0x17, 0x0E, 0x02, 0x23, 0x35, 0x33, 0x32, 0x36, + 0x37, 0x33, 0x11, 0xF5, 0x0C, 0x16, 0x36, 0x41, 0x27, 0x17, 0x43, 0x58, + 0x0C, 0x92, 0x02, 0x54, 0x0B, 0x08, 0x0D, 0x07, 0x82, 0x43, 0x3F, 0xFC, + 0xCF, 0x00, 0x01, 0x00, 0x4A, 0x00, 0x00, 0x02, 0x96, 0x03, 0x3E, 0x00, + 0x1A, 0x00, 0x00, 0x73, 0x35, 0x01, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x07, 0x07, 0x15, 0x21, 0x15, 0x4E, 0x01, 0x28, 0x35, 0x44, 0x47, + 0x39, 0x3D, 0x48, 0xA0, 0xA2, 0x84, 0x80, 0xA1, 0x28, 0x54, 0x42, 0x99, + 0x01, 0x5C, 0x7C, 0x01, 0x07, 0x30, 0x51, 0x38, 0x37, 0x41, 0x4C, 0x45, + 0x81, 0x9A, 0x8A, 0x70, 0x34, 0x5B, 0x60, 0x3D, 0x89, 0x03, 0x8C, 0x00, + 0x01, 0x00, 0x4C, 0xFF, 0xF4, 0x02, 0xBC, 0x03, 0x3E, 0x00, 0x2C, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x15, 0x16, 0x16, 0x15, 0x14, 0x06, 0x01, 0x83, 0x62, + 0x8B, 0x49, 0x01, 0xA7, 0x01, 0x4E, 0x40, 0x3E, 0x50, 0x54, 0x47, 0x4D, + 0x4D, 0x3E, 0x4C, 0x44, 0x38, 0x38, 0x4B, 0x01, 0xA3, 0x01, 0x4B, 0x85, + 0x57, 0x54, 0x81, 0x48, 0x56, 0x43, 0x57, 0x5D, 0xB0, 0x0C, 0x47, 0x78, + 0x4A, 0x3C, 0x45, 0x3F, 0x34, 0x34, 0x3E, 0x7F, 0x3A, 0x30, 0x32, 0x3C, + 0x3E, 0x35, 0x48, 0x70, 0x41, 0x3C, 0x67, 0x41, 0x46, 0x5C, 0x0E, 0x03, + 0x0B, 0x6D, 0x49, 0x6A, 0x88, 0x00, 0x01, 0x00, 0x4C, 0xFF, 0xF4, 0x02, + 0xB9, 0x03, 0x31, 0x00, 0x20, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, + 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, + 0x35, 0x37, 0x35, 0x21, 0x35, 0x21, 0x15, 0x05, 0x35, 0x36, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x01, 0x83, 0x60, 0x8A, 0x4C, 0x01, 0xA7, 0x02, + 0x50, 0x3E, 0x3D, 0x4E, 0x23, 0x47, 0x33, 0x68, 0xBD, 0xFE, 0xB2, 0x02, + 0x1B, 0xFE, 0xFB, 0x61, 0x84, 0x46, 0x4F, 0x8B, 0x0C, 0x46, 0x78, 0x4B, + 0x3B, 0x46, 0x46, 0x3C, 0x26, 0x39, 0x22, 0x6B, 0xB9, 0x03, 0x8B, 0x81, + 0xF9, 0x23, 0x0A, 0x38, 0x6E, 0x46, 0x4D, 0x76, 0x41, 0x00, 0x02, 0x00, + 0x42, 0x00, 0x00, 0x02, 0xDE, 0x03, 0x31, 0x00, 0x09, 0x00, 0x0F, 0x00, + 0x00, 0x77, 0x35, 0x01, 0x33, 0x15, 0x23, 0x03, 0x15, 0x21, 0x15, 0x05, + 0x35, 0x37, 0x11, 0x33, 0x11, 0x42, 0x01, 0x60, 0x6D, 0x3E, 0xE8, 0x01, + 0xF5, 0xFE, 0xF5, 0x01, 0xA2, 0xA3, 0x86, 0x02, 0x08, 0xAD, 0xFE, 0xAA, + 0x04, 0x87, 0xA3, 0xCB, 0x3D, 0x02, 0x29, 0xFC, 0xCF, 0x00, 0x02, 0x00, + 0x42, 0x00, 0x00, 0x02, 0xDE, 0x03, 0x31, 0x00, 0x07, 0x00, 0x0D, 0x00, + 0x00, 0x77, 0x35, 0x01, 0x33, 0x01, 0x15, 0x21, 0x15, 0x05, 0x35, 0x37, + 0x35, 0x33, 0x11, 0x42, 0x01, 0x51, 0xA8, 0xFE, 0xB5, 0x01, 0xEE, 0xFE, + 0xF5, 0x01, 0xA0, 0xA3, 0x86, 0x02, 0x08, 0xFD, 0xFD, 0x04, 0x87, 0xA3, + 0xCB, 0x3D, 0xF6, 0xFE, 0x02, 0x00, 0x01, 0x00, 0x46, 0xFF, 0xF4, 0x02, + 0xA4, 0x03, 0x31, 0x00, 0x22, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, + 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x07, 0x27, 0x13, 0x21, 0x15, 0x21, 0x07, 0x33, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0x74, 0x56, 0x86, 0x4E, 0x04, + 0xA4, 0x03, 0x4F, 0x38, 0x3E, 0x4E, 0x4E, 0x3E, 0x2D, 0x49, 0x0F, 0x9C, + 0x20, 0x02, 0x02, 0xFE, 0x92, 0x11, 0x03, 0x1C, 0x53, 0x30, 0x4B, 0x79, + 0x48, 0x4C, 0x89, 0x0C, 0x40, 0x73, 0x4B, 0x34, 0x43, 0x52, 0x41, 0x40, + 0x55, 0x25, 0x20, 0x09, 0x01, 0xCA, 0x8B, 0xBE, 0x1E, 0x1F, 0x48, 0x7D, + 0x4F, 0x53, 0x80, 0x4A, 0x00, 0x02, 0x00, 0x42, 0xFF, 0xF4, 0x02, 0xB8, + 0x03, 0x3E, 0x00, 0x1E, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x33, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x07, 0x06, 0x16, 0x01, 0x87, 0x47, 0x77, 0x58, 0x2F, 0x4F, 0x94, 0x69, + 0x52, 0x7C, 0x4C, 0x08, 0xA4, 0x0A, 0x43, 0x33, 0x54, 0x55, 0x03, 0x20, + 0x67, 0x3E, 0x4D, 0x7A, 0x46, 0xAA, 0x88, 0x3C, 0x52, 0x50, 0x3C, 0x27, + 0x40, 0x28, 0x01, 0x01, 0x53, 0x0C, 0x30, 0x63, 0x97, 0x67, 0x89, 0xC6, + 0x6A, 0x3E, 0x6B, 0x43, 0x2E, 0x34, 0x88, 0x72, 0x31, 0x33, 0x47, 0x7A, + 0x4F, 0x7D, 0x9D, 0x87, 0x54, 0x3E, 0x3E, 0x52, 0x25, 0x41, 0x29, 0x3D, + 0x56, 0x00, 0x02, 0x00, 0x42, 0xFF, 0xF5, 0x02, 0x98, 0x03, 0x31, 0x00, + 0x13, 0x00, 0x1F, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x37, 0x13, 0x33, 0x01, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x01, 0x70, 0x57, 0x89, 0x4E, 0x38, 0x38, 0xB9, 0xB5, 0xFE, 0xFC, + 0x25, 0x11, 0x4B, 0x3F, 0x76, 0x90, 0xA6, 0x85, 0x3C, 0x4E, 0x4E, 0x3C, + 0x3C, 0x4D, 0x4D, 0x0B, 0x46, 0x7D, 0x54, 0x42, 0x84, 0x51, 0x01, 0x0E, + 0xFE, 0x8A, 0x1D, 0x36, 0x8C, 0x77, 0x7B, 0x9B, 0x86, 0x51, 0x3E, 0x3E, + 0x50, 0x50, 0x3E, 0x3E, 0x51, 0x00, 0x01, 0x00, 0x38, 0x00, 0x00, 0x02, + 0x75, 0x03, 0x31, 0x00, 0x07, 0x00, 0x00, 0x73, 0x01, 0x35, 0x21, 0x35, + 0x21, 0x15, 0x01, 0x6F, 0x01, 0x56, 0xFE, 0x73, 0x02, 0x3D, 0xFE, 0xAA, + 0x02, 0xA0, 0x02, 0x8F, 0x8E, 0xFD, 0x5D, 0x00, 0x03, 0x00, 0x42, 0xFF, + 0xF4, 0x02, 0xB4, 0x03, 0x3E, 0x00, 0x1F, 0x00, 0x2B, 0x00, 0x37, 0x00, + 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x35, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x07, 0x15, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x13, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x7B, 0x5D, 0x8D, + 0x4F, 0x30, 0x56, 0x37, 0x49, 0x58, 0x49, 0x80, 0x54, 0x54, 0x80, 0x48, + 0x58, 0x48, 0x38, 0x55, 0x30, 0x4F, 0x8E, 0x5C, 0x3F, 0x4C, 0x4F, 0x3C, + 0x3D, 0x4F, 0x4D, 0x3F, 0x35, 0x43, 0x42, 0x36, 0x36, 0x42, 0x42, 0x0C, + 0x3B, 0x69, 0x44, 0x37, 0x56, 0x38, 0x07, 0x02, 0x0C, 0x63, 0x47, 0x42, + 0x63, 0x39, 0x39, 0x64, 0x41, 0x48, 0x62, 0x0C, 0x02, 0x07, 0x39, 0x56, + 0x36, 0x44, 0x69, 0x3B, 0x7E, 0x42, 0x34, 0x36, 0x46, 0x46, 0x36, 0x34, + 0x42, 0x01, 0x71, 0x3C, 0x31, 0x32, 0x3B, 0x3B, 0x32, 0x31, 0x3C, 0x00, + 0x02, 0x00, 0x42, 0xFF, 0xF3, 0x02, 0xB8, 0x03, 0x3E, 0x00, 0x20, 0x00, + 0x2D, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x33, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x23, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x03, + 0x32, 0x36, 0x36, 0x37, 0x36, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x01, 0x6C, 0x52, 0x7E, 0x4B, 0x08, 0xA3, 0x0B, 0x43, 0x33, 0x3A, 0x4B, + 0x24, 0x02, 0x1F, 0x66, 0x40, 0x4D, 0x7B, 0x45, 0x4D, 0x8A, 0x59, 0x46, + 0x77, 0x58, 0x31, 0x4F, 0x95, 0x62, 0x29, 0x40, 0x25, 0x01, 0x02, 0x52, + 0x3D, 0x3C, 0x52, 0x50, 0x0D, 0x3F, 0x6B, 0x43, 0x2E, 0x35, 0x41, 0x72, + 0x48, 0x30, 0x34, 0x47, 0x7A, 0x4E, 0x54, 0x80, 0x47, 0x30, 0x62, 0x98, + 0x67, 0x89, 0xC6, 0x6B, 0x01, 0xA3, 0x26, 0x41, 0x27, 0x3C, 0x56, 0x54, + 0x3D, 0x3D, 0x52, 0x00, 0x02, 0x00, 0x42, 0x00, 0x00, 0x02, 0x98, 0x03, + 0x3D, 0x00, 0x14, 0x00, 0x20, 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x07, 0x03, 0x23, 0x01, 0x33, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x17, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x01, 0x69, 0x58, 0x89, 0x4E, 0x37, 0x39, 0xB9, + 0xB5, 0x01, 0x04, 0x25, 0x11, 0x4B, 0x40, 0x4E, 0x76, 0x41, 0xA6, 0x84, + 0x3B, 0x4E, 0x4E, 0x3B, 0x3C, 0x4E, 0x4D, 0x03, 0x3D, 0x46, 0x7E, 0x54, + 0x41, 0x83, 0x53, 0xFE, 0xF2, 0x01, 0x77, 0x1D, 0x37, 0x40, 0x75, 0x4F, + 0x7B, 0x9B, 0x87, 0x51, 0x3D, 0x3E, 0x50, 0x50, 0x3D, 0x3E, 0x51, 0x00, + 0x02, 0x00, 0x74, 0x00, 0x76, 0x02, 0xA8, 0x02, 0xAA, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x65, 0x11, 0x33, 0x11, 0x25, 0x35, 0x21, 0x15, 0x01, + 0x48, 0x8C, 0xFE, 0xA0, 0x02, 0x34, 0x76, 0x02, 0x34, 0xFD, 0xCC, 0xD7, + 0x85, 0x85, 0x00, 0x01, 0x00, 0x76, 0x01, 0x4A, 0x02, 0xA4, 0x01, 0xD7, + 0x00, 0x03, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x02, 0xA4, 0xFD, 0xD2, + 0x01, 0xD7, 0x8D, 0x8D, 0x00, 0x02, 0x00, 0x7D, 0x00, 0xC8, 0x02, 0xA0, + 0x02, 0x5A, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, + 0x01, 0x35, 0x21, 0x15, 0x7D, 0x02, 0x23, 0xFD, 0xDD, 0x02, 0x23, 0x01, + 0xD0, 0x8A, 0x8A, 0xFE, 0xF8, 0x8B, 0x8B, 0x00, 0x01, 0x00, 0x65, 0xFF, + 0xB0, 0x01, 0x88, 0x03, 0xAF, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x34, 0x36, + 0x36, 0x37, 0x33, 0x06, 0x02, 0x15, 0x14, 0x16, 0x16, 0x17, 0x23, 0x26, + 0x26, 0x65, 0x22, 0x3C, 0x27, 0x9E, 0x38, 0x44, 0x1A, 0x38, 0x2A, 0x9E, + 0x42, 0x43, 0x01, 0x97, 0x5F, 0xC8, 0xB2, 0x3F, 0x7A, 0xFE, 0xE1, 0x7F, + 0x4B, 0x96, 0xA4, 0x62, 0x6E, 0xF8, 0x00, 0x01, 0x00, 0x34, 0xFF, 0xB0, + 0x01, 0x58, 0x03, 0xAF, 0x00, 0x0F, 0x00, 0x00, 0x57, 0x3E, 0x02, 0x35, + 0x34, 0x02, 0x27, 0x33, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x07, 0x34, 0x2A, + 0x37, 0x1B, 0x44, 0x38, 0x9E, 0x28, 0x3C, 0x22, 0x45, 0x41, 0x50, 0x60, + 0xA3, 0x97, 0x4D, 0x81, 0x01, 0x1F, 0x78, 0x3F, 0xB4, 0xC7, 0x5E, 0x83, + 0xF8, 0x6C, 0x00, 0x01, 0x00, 0x43, 0xFF, 0xF3, 0x01, 0x20, 0x00, 0xCF, + 0x00, 0x0B, 0x00, 0x00, 0x57, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0xB1, 0x2E, 0x40, 0x41, 0x2E, 0x2E, 0x40, 0x41, + 0x0D, 0x40, 0x2E, 0x2E, 0x40, 0x40, 0x2E, 0x2E, 0x40, 0x00, 0x01, 0x00, + 0x25, 0xFF, 0x0D, 0x01, 0x25, 0x00, 0xAA, 0x00, 0x03, 0x00, 0x00, 0x57, + 0x13, 0x33, 0x03, 0x25, 0x49, 0xB7, 0x81, 0xF3, 0x01, 0x9D, 0xFE, 0x63, + 0x00, 0x01, 0x00, 0x49, 0xFF, 0x06, 0x01, 0x4B, 0x00, 0xCE, 0x00, 0x16, + 0x00, 0x00, 0x57, 0x27, 0x36, 0x36, 0x35, 0x34, 0x34, 0x35, 0x33, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x79, 0x25, 0x4F, 0x48, 0x18, 0x2A, 0x25, 0x2C, 0x3F, 0x45, 0x36, + 0x3A, 0x4D, 0x75, 0xFA, 0x4D, 0x24, 0x5C, 0x5C, 0x05, 0x0A, 0x05, 0x20, + 0x2D, 0x3C, 0x2F, 0x2F, 0x3E, 0x51, 0x4C, 0x74, 0x92, 0x00, 0x01, 0x00, + 0x61, 0xFF, 0x20, 0x01, 0x2E, 0x00, 0xB8, 0x00, 0x0E, 0x00, 0x00, 0x57, + 0x35, 0x33, 0x32, 0x36, 0x35, 0x35, 0x17, 0x23, 0x35, 0x33, 0x15, 0x14, + 0x06, 0x23, 0x61, 0x1A, 0x26, 0x2B, 0x14, 0x7F, 0xCD, 0x63, 0x57, 0xE0, + 0x55, 0x35, 0x2F, 0x34, 0x12, 0xBD, 0xD9, 0x5E, 0x61, 0xFF, 0xFF, 0x00, + 0x42, 0x02, 0x94, 0x02, 0xD7, 0x05, 0xDE, 0x06, 0x07, 0x06, 0x88, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x41, 0x02, 0x94, 0x02, 0xD9, 0x05, + 0xDE, 0x06, 0x07, 0x06, 0x89, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x38, 0x02, 0xA1, 0x01, 0xA2, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x8A, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x4D, 0x02, 0xA1, 0x01, 0x9D, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x8B, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x4A, 0x02, 0xA1, 0x02, 0x96, 0x05, 0xDE, 0x06, 0x07, 0x06, 0x8C, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x4C, 0x02, 0x94, 0x02, 0xBC, 0x05, + 0xDE, 0x06, 0x07, 0x06, 0x8D, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x4C, 0x02, 0x94, 0x02, 0xB9, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x8E, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x42, 0x02, 0xA1, 0x02, 0xDE, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x8F, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x42, 0x02, 0xA1, 0x02, 0xDE, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x90, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x46, 0x02, 0x95, 0x02, 0xA4, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x91, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x42, 0x02, 0x94, 0x02, 0xB8, 0x05, 0xDE, 0x06, 0x07, 0x06, 0x92, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x42, 0x02, 0x95, 0x02, 0x98, 0x05, + 0xD2, 0x06, 0x07, 0x06, 0x93, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x38, 0x02, 0xA1, 0x02, 0x75, 0x05, 0xD2, 0x06, 0x07, 0x06, 0x94, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x42, 0x02, 0x94, 0x02, 0xB4, 0x05, + 0xDE, 0x06, 0x07, 0x06, 0x95, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x42, 0x02, 0x94, 0x02, 0xB8, 0x05, 0xDF, 0x06, 0x07, 0x06, 0x96, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x42, 0x02, 0xA1, 0x02, 0x98, 0x05, + 0xDD, 0x06, 0x07, 0x06, 0x97, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x74, 0x03, 0x16, 0x02, 0xA8, 0x05, 0x4B, 0x06, 0x07, 0x06, 0x98, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x76, 0x03, 0xEB, 0x02, 0xA4, 0x04, + 0x77, 0x06, 0x07, 0x06, 0x99, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x7D, 0x03, 0x68, 0x02, 0xA0, 0x04, 0xFB, 0x06, 0x07, 0x06, 0x9A, 0x00, + 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, 0x65, 0x02, 0x51, 0x01, 0x88, 0x06, + 0x50, 0x06, 0x07, 0x06, 0x9B, 0x00, 0x00, 0x02, 0xA1, 0xFF, 0xFF, 0x00, + 0x34, 0x02, 0x51, 0x01, 0x58, 0x06, 0x50, 0x06, 0x07, 0x06, 0x9C, 0x00, + 0x00, 0x02, 0xA1, 0x00, 0x01, 0x00, 0x43, 0x02, 0x76, 0x01, 0x20, 0x03, + 0x52, 0x00, 0x0B, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0xB1, 0x2E, 0x40, 0x41, 0x2E, 0x2E, 0x40, + 0x41, 0x02, 0x76, 0x40, 0x2E, 0x2E, 0x40, 0x40, 0x2E, 0x2E, 0x40, 0x00, + 0x01, 0x00, 0x25, 0x01, 0xA3, 0x01, 0x25, 0x03, 0x40, 0x00, 0x03, 0x00, + 0x00, 0x53, 0x13, 0x33, 0x03, 0x25, 0x49, 0xB7, 0x81, 0x01, 0xA3, 0x01, + 0x9D, 0xFE, 0x63, 0xFF, 0xFF, 0x00, 0x49, 0x01, 0x8A, 0x01, 0x4B, 0x03, + 0x52, 0x06, 0x07, 0x06, 0x9F, 0x00, 0x00, 0x02, 0x84, 0xFF, 0xFF, 0x00, + 0x61, 0x01, 0xAC, 0x01, 0x2E, 0x03, 0x44, 0x06, 0x07, 0x06, 0xA0, 0x00, + 0x00, 0x02, 0x8C, 0xFF, 0xFF, 0x00, 0x38, 0x00, 0x00, 0x05, 0x38, 0x05, + 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x07, 0x06, + 0x87, 0x02, 0x39, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x38, 0x00, 0x00, 0x06, + 0x12, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0xA1, 0x00, + 0x27, 0x06, 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, 0x07, 0x06, 0x8C, 0x03, + 0x7B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x42, 0xFF, 0xF4, 0x07, 0x20, 0x05, + 0xDE, 0x04, 0x27, 0x06, 0x88, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, + 0x87, 0x03, 0x19, 0x00, 0x00, 0x00, 0x07, 0x06, 0x8D, 0x04, 0x63, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x38, 0xFF, 0xF4, 0x06, 0x40, 0x05, 0xD2, 0x04, + 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, + 0x39, 0x00, 0x00, 0x00, 0x07, 0x06, 0x8D, 0x03, 0x84, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xF4, 0x07, 0x24, 0x05, 0xDE, 0x04, 0x27, 0x06, + 0x8C, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x03, 0x1D, 0x00, + 0x00, 0x00, 0x07, 0x06, 0x8D, 0x04, 0x68, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x38, 0x00, 0x00, 0x05, 0xD6, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, + 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, + 0x07, 0x06, 0x8F, 0x02, 0xF8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0x00, + 0x00, 0x06, 0x7E, 0x05, 0xDE, 0x04, 0x27, 0x06, 0x8D, 0x00, 0x00, 0x02, + 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, 0xE1, 0x00, 0x00, 0x00, 0x07, 0x06, + 0x8F, 0x03, 0x9F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x38, 0xFF, 0xF4, 0x06, + 0x5C, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0xA1, 0x00, + 0x27, 0x06, 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, 0x07, 0x06, 0x91, 0x03, + 0xB8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xF4, 0x07, 0x3F, 0x05, + 0xDE, 0x04, 0x27, 0x06, 0x8C, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, + 0x87, 0x03, 0x1D, 0x00, 0x00, 0x00, 0x07, 0x06, 0x91, 0x04, 0x9B, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xF4, 0x07, 0x03, 0x05, 0xDE, 0x04, + 0x27, 0x06, 0x8D, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, + 0xE1, 0x00, 0x00, 0x00, 0x07, 0x06, 0x91, 0x04, 0x5F, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x42, 0xFF, 0xF4, 0x07, 0x42, 0x05, 0xD2, 0x04, 0x27, 0x06, + 0x8F, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x03, 0x20, 0x00, + 0x00, 0x00, 0x07, 0x06, 0x91, 0x04, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x38, 0xFF, 0xF4, 0x06, 0x33, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, + 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, + 0x07, 0x06, 0x92, 0x03, 0x7B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x46, 0xFF, + 0xF4, 0x06, 0xDF, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x91, 0x00, 0x00, 0x02, + 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, 0xE6, 0x00, 0x00, 0x00, 0x07, 0x06, + 0x92, 0x04, 0x28, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x38, 0x00, 0x00, 0x06, + 0x69, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0xA1, 0x00, + 0x27, 0x06, 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, 0x07, 0x06, 0x94, 0x03, + 0xF5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x38, 0xFF, 0xF4, 0x06, 0x30, 0x05, + 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, + 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, 0x07, 0x06, 0x95, 0x03, 0x7B, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xF4, 0x06, 0xD7, 0x05, 0xDE, 0x04, + 0x27, 0x06, 0x8D, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, + 0xE1, 0x00, 0x00, 0x00, 0x07, 0x06, 0x95, 0x04, 0x23, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x46, 0xFF, 0xF4, 0x06, 0xDC, 0x05, 0xD2, 0x04, 0x27, 0x06, + 0x91, 0x00, 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, 0xE6, 0x00, + 0x00, 0x00, 0x07, 0x06, 0x95, 0x04, 0x28, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x38, 0xFF, 0xF4, 0x06, 0x00, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x94, 0x00, + 0x00, 0x02, 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, 0x09, 0x00, 0x00, 0x00, + 0x07, 0x06, 0x95, 0x03, 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x38, 0xFF, + 0xF3, 0x06, 0x33, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, + 0xA1, 0x00, 0x27, 0x06, 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, 0x07, 0x06, + 0x96, 0x03, 0x7B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x38, 0xFF, 0xF4, 0x08, + 0x4E, 0x05, 0xD2, 0x04, 0x27, 0x06, 0x8A, 0x00, 0x00, 0x02, 0xA1, 0x00, + 0x27, 0x06, 0x87, 0x02, 0x39, 0x00, 0x00, 0x00, 0x27, 0x06, 0x8A, 0x03, + 0x7B, 0x00, 0x00, 0x00, 0x07, 0x06, 0x88, 0x05, 0x77, 0x00, 0x00, 0x00, + 0x05, 0x00, 0x95, 0xFF, 0xE7, 0x06, 0xA0, 0x05, 0xEA, 0x00, 0x11, 0x00, + 0x1F, 0x00, 0x31, 0x00, 0x3F, 0x00, 0x43, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x15, 0x14, 0x16, 0x01, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, + 0x16, 0x05, 0x01, 0x33, 0x01, 0x01, 0xD3, 0x61, 0x8E, 0x4F, 0x4F, 0x8F, + 0x60, 0x62, 0x8D, 0x4E, 0x4E, 0x8E, 0x61, 0x46, 0x4B, 0x4B, 0x46, 0x45, + 0x4D, 0x4C, 0x03, 0xD7, 0x61, 0x8F, 0x4E, 0x4F, 0x8E, 0x61, 0x61, 0x8E, + 0x4D, 0x4D, 0x8E, 0x61, 0x45, 0x4B, 0x4A, 0x46, 0x46, 0x4C, 0x4C, 0xFC, + 0x1C, 0x04, 0x00, 0xBB, 0xFC, 0x00, 0x03, 0x18, 0x59, 0x9A, 0x61, 0x29, + 0x62, 0x9A, 0x59, 0x59, 0x9A, 0x62, 0x29, 0x61, 0x9A, 0x59, 0x94, 0x68, + 0x58, 0x29, 0x58, 0x6A, 0x6A, 0x58, 0x29, 0x58, 0x68, 0xFC, 0x3B, 0x59, + 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x59, 0x9A, 0x62, 0x28, 0x62, 0x9A, + 0x59, 0x94, 0x68, 0x59, 0x28, 0x59, 0x69, 0x69, 0x59, 0x28, 0x59, 0x68, + 0x7B, 0x05, 0xD2, 0xFA, 0x2E, 0x00, 0x07, 0x00, 0x95, 0xFF, 0xE7, 0x09, + 0x68, 0x05, 0xEA, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x31, 0x00, 0x3F, 0x00, + 0x51, 0x00, 0x5F, 0x00, 0x63, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, + 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x15, 0x14, 0x16, 0x01, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, + 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x05, + 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x05, 0x01, 0x33, 0x01, 0x01, + 0xD3, 0x61, 0x8E, 0x4F, 0x4F, 0x8F, 0x60, 0x62, 0x8D, 0x4E, 0x4E, 0x8E, + 0x61, 0x46, 0x4B, 0x4B, 0x46, 0x45, 0x4D, 0x4C, 0x03, 0xD7, 0x61, 0x8F, + 0x4E, 0x4F, 0x8E, 0x61, 0x61, 0x8E, 0x4D, 0x4D, 0x8E, 0x61, 0x45, 0x4B, + 0x4A, 0x46, 0x46, 0x4C, 0x4C, 0x03, 0x0D, 0x61, 0x8E, 0x4F, 0x4F, 0x8F, + 0x60, 0x61, 0x8E, 0x4E, 0x4E, 0x8E, 0x61, 0x45, 0x4C, 0x4B, 0x46, 0x45, + 0x4D, 0x4C, 0xF9, 0x55, 0x04, 0x00, 0xBB, 0xFC, 0x00, 0x03, 0x18, 0x59, + 0x9A, 0x61, 0x29, 0x62, 0x9A, 0x59, 0x59, 0x9A, 0x62, 0x29, 0x61, 0x9A, + 0x59, 0x94, 0x68, 0x58, 0x29, 0x58, 0x6A, 0x6A, 0x58, 0x29, 0x58, 0x68, + 0xFC, 0x3B, 0x59, 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x59, 0x9A, 0x62, + 0x28, 0x62, 0x9A, 0x59, 0x94, 0x68, 0x59, 0x28, 0x59, 0x69, 0x69, 0x59, + 0x28, 0x59, 0x68, 0x94, 0x59, 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x59, + 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x94, 0x68, 0x59, 0x28, 0x59, 0x69, + 0x69, 0x59, 0x28, 0x59, 0x68, 0x7B, 0x05, 0xD2, 0xFA, 0x2E, 0x00, 0x09, + 0x00, 0x95, 0xFF, 0xE7, 0x0C, 0x2F, 0x05, 0xEA, 0x00, 0x11, 0x00, 0x1F, + 0x00, 0x31, 0x00, 0x3F, 0x00, 0x51, 0x00, 0x5F, 0x00, 0x71, 0x00, 0x7F, + 0x00, 0x83, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, + 0x01, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x05, 0x22, 0x26, 0x26, + 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, + 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x15, 0x14, 0x16, 0x05, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, + 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, + 0x05, 0x01, 0x33, 0x01, 0x01, 0xD3, 0x61, 0x8E, 0x4F, 0x4F, 0x8F, 0x60, + 0x62, 0x8D, 0x4E, 0x4E, 0x8E, 0x61, 0x46, 0x4B, 0x4B, 0x46, 0x45, 0x4D, + 0x4C, 0x03, 0xD7, 0x61, 0x8F, 0x4E, 0x4F, 0x8E, 0x61, 0x61, 0x8E, 0x4D, + 0x4D, 0x8E, 0x61, 0x45, 0x4B, 0x4A, 0x46, 0x46, 0x4C, 0x4C, 0x03, 0x0D, + 0x61, 0x8E, 0x4F, 0x4F, 0x8F, 0x60, 0x61, 0x8E, 0x4E, 0x4E, 0x8E, 0x61, + 0x45, 0x4C, 0x4B, 0x46, 0x45, 0x4D, 0x4C, 0x03, 0x0D, 0x61, 0x8E, 0x4E, + 0x4E, 0x8F, 0x60, 0x62, 0x8E, 0x4D, 0x4E, 0x8E, 0x61, 0x46, 0x4B, 0x4B, + 0x46, 0x45, 0x4C, 0x4C, 0xF6, 0x8D, 0x04, 0x00, 0xBB, 0xFC, 0x00, 0x03, + 0x18, 0x59, 0x9A, 0x61, 0x29, 0x62, 0x9A, 0x59, 0x59, 0x9A, 0x62, 0x29, + 0x61, 0x9A, 0x59, 0x94, 0x68, 0x58, 0x29, 0x58, 0x6A, 0x6A, 0x58, 0x29, + 0x58, 0x68, 0xFC, 0x3B, 0x59, 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x59, + 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x94, 0x68, 0x59, 0x28, 0x59, 0x69, + 0x69, 0x59, 0x28, 0x59, 0x68, 0x94, 0x59, 0x9A, 0x62, 0x28, 0x62, 0x9A, + 0x59, 0x59, 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x94, 0x68, 0x59, 0x28, + 0x59, 0x69, 0x69, 0x59, 0x28, 0x59, 0x68, 0x94, 0x59, 0x9A, 0x62, 0x28, + 0x62, 0x9A, 0x59, 0x59, 0x9A, 0x62, 0x28, 0x62, 0x9A, 0x59, 0x94, 0x68, + 0x59, 0x28, 0x59, 0x69, 0x69, 0x59, 0x28, 0x59, 0x68, 0x7B, 0x05, 0xD2, + 0xFA, 0x2E, 0xFF, 0xFF, 0x00, 0x21, 0xFF, 0xEF, 0x06, 0x2D, 0x05, 0xD2, + 0x04, 0x26, 0x0B, 0x37, 0x00, 0x00, 0x00, 0x27, 0x06, 0x87, 0x02, 0xD4, + 0x00, 0x00, 0x00, 0x07, 0x06, 0x37, 0x03, 0x96, 0xFC, 0x91, 0xFF, 0xFF, + 0x00, 0x43, 0xFF, 0xF5, 0x06, 0x77, 0x05, 0xE9, 0x04, 0x26, 0x06, 0x27, + 0x00, 0x23, 0x00, 0x27, 0x06, 0x87, 0x02, 0x9A, 0x00, 0x00, 0x00, 0x07, + 0x06, 0x39, 0x03, 0xAE, 0xFC, 0x94, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xF3, + 0x06, 0x66, 0x05, 0xE9, 0x04, 0x26, 0x06, 0x27, 0x00, 0x23, 0x00, 0x27, + 0x06, 0x87, 0x02, 0xA4, 0x00, 0x00, 0x00, 0x07, 0x06, 0x33, 0x03, 0x8B, + 0xFC, 0x94, 0xFF, 0xFF, 0x00, 0x43, 0xFF, 0xEE, 0x06, 0x53, 0x05, 0xEA, + 0x04, 0x26, 0x06, 0x25, 0x00, 0x26, 0x00, 0x27, 0x06, 0x87, 0x02, 0xC4, + 0x00, 0x00, 0x00, 0x07, 0x06, 0x27, 0x03, 0x95, 0xFC, 0x8E, 0xFF, 0xFF, + 0x00, 0x43, 0xFF, 0xED, 0x06, 0x34, 0x05, 0xEA, 0x04, 0x26, 0x06, 0x25, + 0x00, 0x26, 0x00, 0x27, 0x06, 0x87, 0x02, 0xBF, 0x00, 0x00, 0x00, 0x07, + 0x06, 0x37, 0x03, 0x9E, 0xFC, 0x8E, 0xFF, 0xFF, 0x00, 0x67, 0x04, 0xB6, + 0x01, 0xDD, 0x05, 0xE4, 0x04, 0x06, 0x06, 0xE8, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x68, 0x04, 0xB6, 0x03, 0x2F, 0x05, 0xE4, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x41, 0x23, 0x13, 0x33, 0x13, 0x23, 0x13, 0x33, 0x01, 0x0D, + 0xA5, 0x7A, 0xDB, 0x8B, 0xA9, 0xAF, 0xE1, 0x04, 0xB6, 0x01, 0x2E, 0xFE, + 0xD2, 0x01, 0x2E, 0xFF, 0xFF, 0x00, 0x58, 0x04, 0xB6, 0x01, 0xCE, 0x05, + 0xE4, 0x04, 0x06, 0x06, 0xE9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x9C, 0x04, + 0xB6, 0x01, 0x8D, 0x05, 0xE4, 0x06, 0x06, 0x0A, 0xF3, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0xEE, 0x04, 0xE2, 0x03, 0x9F, 0x05, 0xE4, 0x04, 0x06, 0x0A, + 0x8B, 0x00, 0x00, 0x00, 0x03, 0x00, 0xEE, 0x04, 0xE2, 0x05, 0x4A, 0x05, + 0xE4, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x04, 0xC7, 0x36, + 0x4D, 0x4D, 0x36, 0x37, 0x4C, 0x4C, 0xFC, 0x73, 0x37, 0x4C, 0x4C, 0x37, + 0x37, 0x4C, 0x4C, 0x01, 0x74, 0x37, 0x4C, 0x4D, 0x36, 0x37, 0x4C, 0x4C, + 0x04, 0xE2, 0x4C, 0x35, 0x36, 0x4B, 0x4B, 0x36, 0x36, 0x4B, 0x4C, 0x35, + 0x36, 0x4B, 0x4B, 0x36, 0x36, 0x4B, 0x4C, 0x35, 0x36, 0x4B, 0x4B, 0x36, + 0x36, 0x4B, 0xFF, 0xFF, 0x00, 0x4F, 0x04, 0xC9, 0x02, 0xEC, 0x05, 0xE4, + 0x04, 0x06, 0x0A, 0x8D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xBA, 0x04, 0xEA, + 0x03, 0x20, 0x05, 0xCE, 0x04, 0x06, 0x06, 0xEC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x90, 0x05, 0x00, 0x02, 0xC1, 0x05, 0x9D, 0x04, 0x06, 0x06, 0xEB, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x6B, 0x04, 0xC1, 0x02, 0xCE, 0x05, 0xE3, + 0x04, 0x06, 0x0A, 0x8F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x6D, 0x04, 0xC1, + 0x02, 0xD0, 0x05, 0xE3, 0x04, 0x06, 0x0A, 0x8F, 0x02, 0x00, 0xFF, 0xFF, + 0x00, 0x68, 0x04, 0xE1, 0x01, 0x75, 0x05, 0xE5, 0x04, 0x06, 0x0A, 0x8C, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x43, 0x04, 0x83, 0x02, 0x37, 0x06, 0x5F, + 0x04, 0x06, 0x0A, 0x90, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4F, 0x04, 0xC9, + 0x02, 0xEC, 0x05, 0xE4, 0x04, 0x06, 0x0A, 0x8E, 0x00, 0x00, 0x00, 0x03, + 0x00, 0xEE, 0x04, 0xE9, 0x04, 0x45, 0x06, 0x84, 0x00, 0x0B, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x37, 0x13, 0x33, 0x03, 0x03, 0xC7, 0x35, 0x4A, + 0x4A, 0x35, 0x34, 0x4A, 0x4A, 0xFD, 0x72, 0x34, 0x4B, 0x4B, 0x34, 0x35, + 0x4A, 0x4B, 0xA5, 0x25, 0xCC, 0x65, 0x04, 0xE9, 0x49, 0x34, 0x34, 0x4A, + 0x4A, 0x34, 0x34, 0x49, 0x49, 0x34, 0x34, 0x4A, 0x4A, 0x34, 0x34, 0x49, + 0x6D, 0x01, 0x2E, 0xFE, 0xD2, 0xFF, 0xFF, 0x00, 0xA6, 0xFE, 0x5E, 0x02, + 0x0B, 0x00, 0x2F, 0x04, 0x06, 0x0A, 0x95, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x50, 0xFE, 0x5A, 0x01, 0xC5, 0x00, 0x2C, 0x04, 0x06, 0x0A, 0x96, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x45, 0xFE, 0x17, 0x01, 0x6B, 0xFF, 0x8A, 0x00, + 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0x45, 0x53, 0xD3, 0x88, 0xFE, + 0x17, 0x01, 0x73, 0xFE, 0x8D, 0x00, 0x01, 0x00, 0x67, 0x04, 0xB6, 0x01, + 0xDD, 0x05, 0xE4, 0x00, 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0x67, + 0x95, 0xE1, 0xD1, 0x04, 0xB6, 0x01, 0x2E, 0xFE, 0xD2, 0x00, 0x01, 0x00, + 0x58, 0x04, 0xB6, 0x01, 0xCE, 0x05, 0xE4, 0x00, 0x03, 0x00, 0x00, 0x41, + 0x03, 0x33, 0x13, 0x01, 0x29, 0xD1, 0xE1, 0x95, 0x04, 0xB6, 0x01, 0x2E, + 0xFE, 0xD2, 0x00, 0x02, 0x00, 0x58, 0x04, 0xB6, 0x03, 0x1E, 0x05, 0xE4, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x21, 0x03, + 0x33, 0x13, 0x02, 0x7A, 0xB1, 0xDB, 0x7A, 0xFE, 0x21, 0xE7, 0xE1, 0xAF, + 0x04, 0xB6, 0x01, 0x2E, 0xFE, 0xD2, 0x01, 0x2E, 0xFE, 0xD2, 0x00, 0x01, + 0x00, 0x90, 0x05, 0x00, 0x02, 0xC1, 0x05, 0x9D, 0x00, 0x03, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x02, 0xC1, 0xFD, 0xCF, 0x05, 0x9D, 0x9D, 0x9D, + 0x00, 0x01, 0x00, 0xBA, 0x04, 0xEA, 0x03, 0x20, 0x05, 0xCE, 0x00, 0x17, + 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, + 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, + 0x02, 0x73, 0x28, 0x48, 0x3F, 0x34, 0x14, 0x1B, 0x1C, 0x01, 0x8A, 0x03, + 0x59, 0x53, 0x2A, 0x44, 0x3A, 0x35, 0x19, 0x1C, 0x1B, 0x04, 0x86, 0x03, + 0x5D, 0x04, 0xEA, 0x1B, 0x23, 0x1B, 0x34, 0x21, 0x65, 0x7B, 0x1B, 0x23, + 0x1B, 0x29, 0x2C, 0x67, 0x79, 0xFF, 0xFF, 0x00, 0x68, 0xFE, 0x43, 0x01, + 0x75, 0xFF, 0x47, 0x04, 0x07, 0x0A, 0x8C, 0x00, 0x00, 0xF9, 0x62, 0x00, + 0x01, 0xFC, 0xD3, 0xFD, 0xD5, 0xFD, 0xE7, 0xFF, 0x6F, 0x00, 0x09, 0x00, + 0x00, 0x45, 0x15, 0x14, 0x06, 0x07, 0x27, 0x36, 0x36, 0x35, 0x35, 0xFD, + 0xE7, 0x4F, 0x48, 0x7D, 0x25, 0x34, 0x91, 0x4A, 0x56, 0xBB, 0x3F, 0x4E, + 0x38, 0x77, 0x4B, 0x52, 0x00, 0x04, 0x00, 0x8E, 0x00, 0x00, 0x08, 0x0C, + 0x05, 0xE7, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x21, 0x00, 0x2F, 0x00, 0x00, + 0x73, 0x11, 0x33, 0x01, 0x33, 0x11, 0x33, 0x11, 0x23, 0x01, 0x23, 0x11, + 0x01, 0x35, 0x21, 0x15, 0x01, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x36, + 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, + 0x8E, 0xC8, 0x02, 0x88, 0x0D, 0xCC, 0xC7, 0xFD, 0x7B, 0x10, 0x04, 0x18, + 0x02, 0x7D, 0xFE, 0xC1, 0x6C, 0x9E, 0x55, 0x55, 0x9E, 0x6A, 0x6D, 0x9C, + 0x54, 0x54, 0x9B, 0x6C, 0x51, 0x51, 0x01, 0x51, 0x52, 0x53, 0x51, 0x53, + 0x05, 0xD2, 0xFB, 0xAD, 0x04, 0x53, 0xFA, 0x2E, 0x04, 0x4B, 0xFB, 0xB5, + 0x01, 0xBD, 0x9C, 0x9C, 0x01, 0x1A, 0x58, 0x9D, 0x67, 0x58, 0x67, 0x9D, + 0x58, 0x58, 0x9D, 0x67, 0x58, 0x68, 0x9C, 0x58, 0x9B, 0x01, 0x69, 0x57, + 0x58, 0x56, 0x67, 0x67, 0x56, 0x58, 0x58, 0x68, 0xFF, 0xFF, 0x00, 0x66, + 0xFF, 0xE9, 0x08, 0xEE, 0x05, 0xE9, 0x04, 0x26, 0x06, 0x15, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x49, 0x03, 0x72, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x66, + 0x00, 0x00, 0x07, 0xC7, 0x05, 0xDD, 0x04, 0x26, 0x06, 0x15, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x89, 0x03, 0x78, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, + 0x00, 0x00, 0x05, 0x2A, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x0F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x5B, 0x07, 0xFC, 0x06, 0x26, + 0x00, 0x02, 0x00, 0x00, 0x00, 0x07, 0x0A, 0xF2, 0x01, 0x7E, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x05, 0xE9, 0x06, 0x26, + 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x05, 0xDC, 0x02, 0x0C, 0x02, 0x6F, + 0x00, 0x02, 0x00, 0x7A, 0xFF, 0xEC, 0x04, 0x7E, 0x04, 0x4E, 0x00, 0x1C, + 0x00, 0x25, 0x00, 0x00, 0x65, 0x15, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, + 0x35, 0x34, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x14, 0x15, + 0x21, 0x11, 0x16, 0x16, 0x33, 0x32, 0x36, 0x01, 0x06, 0x06, 0x07, 0x11, + 0x21, 0x11, 0x26, 0x26, 0x04, 0x00, 0x52, 0xBF, 0x64, 0x6E, 0xC0, 0x91, + 0x52, 0x5A, 0x98, 0xBC, 0x63, 0x8A, 0xE2, 0x87, 0xFC, 0xF9, 0x38, 0x8E, + 0x4E, 0x5F, 0xBC, 0xFE, 0xE5, 0x4A, 0x8F, 0x3B, 0x02, 0x23, 0x35, 0x8D, + 0xC6, 0x68, 0x34, 0x3E, 0x58, 0x9B, 0xCB, 0x74, 0x73, 0xCB, 0x9A, 0x58, + 0x8C, 0xF4, 0x9C, 0x02, 0x13, 0x1B, 0xFE, 0xB8, 0x32, 0x3C, 0x3A, 0x03, + 0x6C, 0x01, 0x43, 0x36, 0xFE, 0xE8, 0x01, 0x20, 0x35, 0x3C, 0x00, 0x01, + 0x00, 0xB3, 0xFF, 0xE8, 0x06, 0x8B, 0x05, 0x30, 0x00, 0x1B, 0x00, 0x00, + 0x45, 0x01, 0x01, 0x17, 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, + 0x21, 0x15, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x17, 0x17, + 0x03, 0x58, 0xFD, 0x5B, 0x02, 0xA5, 0x82, 0xE4, 0x32, 0x71, 0x70, 0x33, + 0x04, 0x2A, 0x5A, 0x5C, 0x2B, 0x03, 0xD4, 0xFC, 0x2C, 0x2B, 0x5C, 0x5A, + 0x2A, 0x04, 0x26, 0x52, 0x56, 0x53, 0x25, 0xE3, 0x18, 0x02, 0xA4, 0x02, + 0xA4, 0x81, 0xE3, 0x32, 0x68, 0x64, 0x2C, 0x38, 0x04, 0x07, 0x04, 0xBA, + 0x04, 0x07, 0x04, 0x37, 0x20, 0x4A, 0x4D, 0x4E, 0x24, 0xE3, 0x00, 0x01, + 0x00, 0xB3, 0xFF, 0xE8, 0x09, 0xA3, 0x05, 0x30, 0x00, 0x1B, 0x00, 0x00, + 0x45, 0x01, 0x01, 0x17, 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, + 0x21, 0x15, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x03, 0x17, 0x17, + 0x03, 0x58, 0xFD, 0x5B, 0x02, 0xA5, 0x81, 0xE3, 0x31, 0x72, 0x70, 0x33, + 0x04, 0x2A, 0x5A, 0x5C, 0x2B, 0x06, 0xEC, 0xF9, 0x14, 0x2B, 0x5C, 0x5A, + 0x2A, 0x04, 0x26, 0x52, 0x56, 0x53, 0x25, 0xE3, 0x18, 0x02, 0xA4, 0x02, + 0xA4, 0x81, 0xE3, 0x32, 0x68, 0x64, 0x2C, 0x38, 0x04, 0x06, 0x05, 0xBB, + 0x05, 0x07, 0x04, 0x37, 0x20, 0x4A, 0x4D, 0x4E, 0x24, 0xE3, 0x00, 0x01, + 0x00, 0xB3, 0xFF, 0xE6, 0x14, 0x5D, 0x05, 0x31, 0x00, 0x08, 0x00, 0x00, + 0x45, 0x01, 0x01, 0x17, 0x01, 0x21, 0x15, 0x21, 0x01, 0x03, 0x59, 0xFD, + 0x5A, 0x02, 0xA6, 0x82, 0xFE, 0x38, 0x12, 0x4A, 0xED, 0xB6, 0x01, 0xC8, + 0x1A, 0x02, 0xA6, 0x02, 0xA5, 0x81, 0xFE, 0x39, 0xBB, 0xFE, 0x3A, 0x00, + 0x03, 0x00, 0xB3, 0xFF, 0xE6, 0x06, 0x8B, 0x05, 0x31, 0x00, 0x05, 0x00, + 0x09, 0x00, 0x0D, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, 0x09, 0x02, 0x27, + 0x21, 0x15, 0x01, 0x37, 0x21, 0x15, 0x03, 0x59, 0xFD, 0x5A, 0x02, 0xA6, + 0x82, 0xFD, 0xDA, 0x02, 0x26, 0xFE, 0x64, 0xB9, 0x05, 0x05, 0xFA, 0xFB, + 0xB9, 0x04, 0x4C, 0x1A, 0x02, 0xA6, 0x02, 0xA5, 0x81, 0xFD, 0xDC, 0xFD, + 0xDA, 0x01, 0x15, 0xB8, 0xB8, 0x01, 0x68, 0xB8, 0xB8, 0x00, 0x03, 0x00, + 0xB3, 0xFF, 0xE6, 0x09, 0xA3, 0x05, 0x31, 0x00, 0x05, 0x00, 0x09, 0x00, + 0x0D, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, 0x09, 0x02, 0x27, 0x21, 0x15, + 0x01, 0x37, 0x21, 0x15, 0x03, 0x59, 0xFD, 0x5A, 0x02, 0xA6, 0x82, 0xFD, + 0xDA, 0x02, 0x26, 0xFE, 0x64, 0xB9, 0x08, 0x1D, 0xF7, 0xE3, 0xB9, 0x07, + 0x64, 0x1A, 0x02, 0xA6, 0x02, 0xA5, 0x81, 0xFD, 0xDC, 0xFD, 0xDA, 0x01, + 0x15, 0xB8, 0xB8, 0x01, 0x68, 0xB8, 0xB8, 0x00, 0x01, 0x00, 0xE9, 0xFF, + 0xE8, 0x06, 0xC1, 0x05, 0x30, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x27, 0x37, + 0x3E, 0x03, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, + 0x16, 0x17, 0x07, 0x2E, 0x02, 0x27, 0x27, 0x37, 0x01, 0x04, 0x1D, 0x82, + 0xE4, 0x25, 0x52, 0x57, 0x52, 0x26, 0x04, 0x2A, 0x5A, 0x5B, 0x2D, 0xFC, + 0x2C, 0x03, 0xD4, 0x2D, 0x5B, 0x5A, 0x2A, 0x04, 0x32, 0x71, 0x71, 0x32, + 0xE4, 0x82, 0x02, 0xA4, 0x18, 0x81, 0xE3, 0x24, 0x4E, 0x4D, 0x4A, 0x20, + 0x37, 0x04, 0x07, 0x04, 0xBA, 0x04, 0x07, 0x04, 0x38, 0x2C, 0x64, 0x68, + 0x32, 0xE3, 0x81, 0xFD, 0x5C, 0x00, 0x01, 0x00, 0xE9, 0xFF, 0xE8, 0x09, + 0xD9, 0x05, 0x30, 0x00, 0x1B, 0x00, 0x00, 0x45, 0x27, 0x37, 0x3E, 0x03, + 0x37, 0x17, 0x0E, 0x02, 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x17, + 0x07, 0x2E, 0x02, 0x27, 0x27, 0x37, 0x01, 0x07, 0x35, 0x82, 0xE4, 0x25, + 0x52, 0x57, 0x52, 0x26, 0x04, 0x2A, 0x5A, 0x5B, 0x2D, 0xF9, 0x14, 0x06, + 0xEC, 0x2D, 0x5B, 0x5A, 0x2A, 0x04, 0x32, 0x71, 0x71, 0x32, 0xE4, 0x82, + 0x02, 0xA4, 0x18, 0x81, 0xE3, 0x24, 0x4E, 0x4D, 0x4A, 0x20, 0x37, 0x04, + 0x07, 0x05, 0xBB, 0x05, 0x06, 0x04, 0x38, 0x2C, 0x64, 0x68, 0x32, 0xE3, + 0x81, 0xFD, 0x5C, 0x00, 0x01, 0x00, 0xE9, 0xFF, 0xE6, 0x14, 0x93, 0x05, + 0x31, 0x00, 0x08, 0x00, 0x00, 0x45, 0x27, 0x01, 0x21, 0x35, 0x21, 0x01, + 0x37, 0x01, 0x11, 0xEE, 0x82, 0x01, 0xC8, 0xED, 0xB5, 0x12, 0x4B, 0xFE, + 0x38, 0x82, 0x02, 0xA5, 0x1A, 0x82, 0x01, 0xC6, 0xBB, 0x01, 0xC7, 0x81, + 0xFD, 0x5B, 0x00, 0x03, 0x00, 0xE9, 0xFF, 0xE6, 0x06, 0xC1, 0x05, 0x31, + 0x00, 0x05, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x45, 0x27, 0x01, 0x01, + 0x37, 0x01, 0x01, 0x35, 0x21, 0x07, 0x01, 0x35, 0x21, 0x17, 0x04, 0x1E, + 0x82, 0x02, 0x24, 0xFD, 0xDC, 0x82, 0x02, 0xA3, 0xFA, 0x28, 0x05, 0x06, + 0xB9, 0xFB, 0xB3, 0x04, 0x4D, 0xB9, 0x1A, 0x80, 0x02, 0x26, 0x02, 0x24, + 0x81, 0xFD, 0x5B, 0xFE, 0xEF, 0xB8, 0xB8, 0x01, 0x68, 0xB8, 0xB8, 0x00, + 0x03, 0x00, 0xE9, 0xFF, 0xE6, 0x09, 0xD9, 0x05, 0x31, 0x00, 0x05, 0x00, + 0x09, 0x00, 0x0D, 0x00, 0x00, 0x45, 0x27, 0x01, 0x01, 0x37, 0x01, 0x01, + 0x35, 0x21, 0x07, 0x01, 0x35, 0x21, 0x17, 0x07, 0x34, 0x82, 0x02, 0x26, + 0xFD, 0xDA, 0x82, 0x02, 0xA5, 0xF7, 0x10, 0x08, 0x1D, 0xB8, 0xF8, 0x9B, + 0x07, 0x65, 0xB8, 0x1A, 0x80, 0x02, 0x26, 0x02, 0x24, 0x81, 0xFD, 0x5B, + 0xFE, 0xEF, 0xB8, 0xB8, 0x01, 0x68, 0xB8, 0xB8, 0x00, 0x01, 0x00, 0xD3, + 0xFF, 0xED, 0x05, 0x13, 0x04, 0x2E, 0x00, 0x1B, 0x00, 0x00, 0x77, 0x11, + 0x21, 0x15, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, 0x02, 0x17, 0x01, + 0x07, 0x01, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, 0x15, 0x11, 0xD3, 0x03, + 0xB5, 0xFE, 0xC6, 0x46, 0x99, 0x97, 0x43, 0x25, 0x20, 0x44, 0x45, 0x1F, + 0x02, 0x91, 0x84, 0xFD, 0x6F, 0x1F, 0x3E, 0x3A, 0x1B, 0x2D, 0x03, 0x07, + 0x06, 0x04, 0x79, 0x03, 0xB5, 0xBB, 0x07, 0x09, 0x04, 0x2E, 0x1B, 0x3A, + 0x3E, 0x1F, 0xFD, 0x6E, 0x84, 0x02, 0x92, 0x1F, 0x44, 0x45, 0x20, 0x24, + 0x32, 0x6E, 0x74, 0x71, 0x34, 0xFE, 0xC7, 0x00, 0x01, 0x00, 0xCD, 0xFF, + 0xED, 0x05, 0x0D, 0x04, 0x2E, 0x00, 0x1B, 0x00, 0x00, 0x65, 0x23, 0x11, + 0x34, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x02, 0x07, 0x01, 0x27, 0x01, 0x3E, + 0x02, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x21, 0x35, 0x21, 0x05, 0x0D, 0xBA, + 0x04, 0x07, 0x07, 0x03, 0x2D, 0x1B, 0x3A, 0x3E, 0x20, 0xFD, 0x6F, 0x84, + 0x02, 0x92, 0x20, 0x43, 0x45, 0x20, 0x24, 0x42, 0x97, 0x9A, 0x46, 0xFE, + 0xC7, 0x03, 0xB4, 0x79, 0x01, 0x39, 0x34, 0x71, 0x74, 0x6E, 0x32, 0x24, + 0x20, 0x45, 0x44, 0x1F, 0xFD, 0x6E, 0x84, 0x02, 0x92, 0x1F, 0x3E, 0x3A, + 0x1B, 0x2E, 0x04, 0x09, 0x07, 0xBB, 0x00, 0x01, 0x00, 0xCD, 0x00, 0x00, + 0x05, 0x0D, 0x04, 0x41, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x11, 0x21, 0x35, + 0x21, 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x27, 0x01, 0x37, 0x01, + 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, 0x35, 0x11, 0x05, 0x0D, 0xFC, 0x4C, + 0x01, 0x39, 0x46, 0x9A, 0x97, 0x42, 0x24, 0x20, 0x45, 0x43, 0x20, 0xFD, + 0x6E, 0x84, 0x02, 0x91, 0x20, 0x3E, 0x3A, 0x1B, 0x2D, 0x03, 0x07, 0x07, + 0x04, 0x03, 0xB5, 0xFC, 0x4B, 0xBA, 0x06, 0x09, 0x05, 0x2D, 0x1B, 0x3A, + 0x3E, 0x1F, 0x02, 0x91, 0x85, 0xFD, 0x6E, 0x1F, 0x44, 0x45, 0x20, 0x24, + 0x32, 0x6E, 0x73, 0x71, 0x35, 0x01, 0x39, 0x00, 0x01, 0x00, 0xD3, 0x00, + 0x00, 0x05, 0x13, 0x04, 0x41, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x33, 0x11, + 0x14, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x37, 0x01, 0x17, 0x01, 0x0E, + 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x21, 0x15, 0x21, 0xD3, 0xBA, 0x04, + 0x06, 0x07, 0x03, 0x2D, 0x1B, 0x3A, 0x3E, 0x1F, 0x02, 0x91, 0x84, 0xFD, + 0x6F, 0x1F, 0x45, 0x44, 0x20, 0x25, 0x43, 0x97, 0x99, 0x46, 0x01, 0x3A, + 0xFC, 0x4B, 0x03, 0xB5, 0xFE, 0xC7, 0x35, 0x71, 0x73, 0x6E, 0x32, 0x24, + 0x20, 0x45, 0x44, 0x1F, 0x02, 0x92, 0x85, 0xFD, 0x6F, 0x1F, 0x3E, 0x3A, + 0x1B, 0x2D, 0x05, 0x09, 0x06, 0xBA, 0x00, 0x01, 0x00, 0xB3, 0xFF, 0xF5, + 0x09, 0xD9, 0x05, 0x23, 0x00, 0x33, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, + 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x21, 0x32, 0x16, 0x16, + 0x17, 0x07, 0x2E, 0x02, 0x27, 0x27, 0x37, 0x01, 0x01, 0x27, 0x37, 0x3E, + 0x03, 0x37, 0x17, 0x0E, 0x02, 0x23, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, + 0x1E, 0x03, 0x17, 0x17, 0x03, 0x4B, 0xFD, 0x68, 0x02, 0x98, 0x82, 0xD7, + 0x31, 0x72, 0x70, 0x33, 0x04, 0x2A, 0x5A, 0x5C, 0x2B, 0x05, 0x1E, 0x2D, + 0x5B, 0x5A, 0x2A, 0x04, 0x32, 0x71, 0x71, 0x32, 0xD7, 0x82, 0x02, 0x97, + 0xFD, 0x69, 0x82, 0xD7, 0x25, 0x52, 0x57, 0x52, 0x26, 0x04, 0x2A, 0x5A, + 0x5B, 0x2D, 0xFA, 0xE2, 0x2B, 0x5C, 0x5A, 0x2A, 0x04, 0x26, 0x52, 0x56, + 0x53, 0x25, 0xD7, 0x0B, 0x02, 0x97, 0x02, 0x97, 0x81, 0xD6, 0x32, 0x68, + 0x64, 0x2C, 0x38, 0x04, 0x07, 0x04, 0x04, 0x07, 0x04, 0x38, 0x2C, 0x64, + 0x68, 0x32, 0xD6, 0x81, 0xFD, 0x69, 0xFD, 0x69, 0x81, 0xD6, 0x25, 0x4D, + 0x4E, 0x49, 0x21, 0x38, 0x03, 0x08, 0x04, 0x04, 0x08, 0x03, 0x38, 0x21, + 0x49, 0x4E, 0x4D, 0x25, 0xD6, 0x00, 0x01, 0x00, 0xB3, 0xFF, 0xF5, 0x0D, + 0x1F, 0x05, 0x23, 0x00, 0x33, 0x00, 0x00, 0x45, 0x01, 0x01, 0x17, 0x07, + 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x21, 0x32, 0x16, 0x16, 0x17, + 0x07, 0x2E, 0x02, 0x27, 0x27, 0x37, 0x01, 0x01, 0x27, 0x37, 0x3E, 0x03, + 0x37, 0x17, 0x0E, 0x02, 0x23, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, + 0x03, 0x17, 0x17, 0x03, 0x4B, 0xFD, 0x68, 0x02, 0x98, 0x82, 0xD7, 0x31, + 0x72, 0x70, 0x33, 0x04, 0x2A, 0x5A, 0x5C, 0x2B, 0x08, 0x64, 0x2D, 0x5B, + 0x5A, 0x2A, 0x04, 0x32, 0x71, 0x71, 0x32, 0xD7, 0x82, 0x02, 0x97, 0xFD, + 0x69, 0x82, 0xD7, 0x25, 0x52, 0x57, 0x52, 0x26, 0x04, 0x2A, 0x5A, 0x5B, + 0x2D, 0xF7, 0x9C, 0x2B, 0x5C, 0x5A, 0x2A, 0x04, 0x26, 0x52, 0x56, 0x53, + 0x25, 0xD7, 0x0B, 0x02, 0x97, 0x02, 0x97, 0x81, 0xD6, 0x32, 0x68, 0x64, + 0x2C, 0x38, 0x04, 0x07, 0x04, 0x04, 0x07, 0x04, 0x38, 0x2C, 0x64, 0x68, + 0x32, 0xD6, 0x81, 0xFD, 0x69, 0xFD, 0x69, 0x81, 0xD6, 0x25, 0x4D, 0x4E, + 0x49, 0x21, 0x38, 0x03, 0x08, 0x04, 0x04, 0x08, 0x03, 0x38, 0x21, 0x49, + 0x4E, 0x4D, 0x25, 0xD6, 0x00, 0x04, 0x00, 0xB3, 0xFF, 0xE6, 0x09, 0xD9, + 0x05, 0x31, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x45, 0x27, 0x01, 0x01, 0x37, 0x09, 0x03, 0x17, 0x09, 0x02, 0x27, 0x21, + 0x07, 0x01, 0x37, 0x21, 0x17, 0x07, 0x34, 0x82, 0x02, 0x26, 0xFD, 0xDA, + 0x82, 0x02, 0xA5, 0xF9, 0x80, 0xFD, 0x5A, 0x02, 0xA6, 0x82, 0xFD, 0xDA, + 0x02, 0x26, 0xFE, 0x64, 0xB9, 0x07, 0x7A, 0xB5, 0xF9, 0x3B, 0xB9, 0x06, + 0x0C, 0xB5, 0x1A, 0x80, 0x02, 0x26, 0x02, 0x24, 0x81, 0xFD, 0x5B, 0xFD, + 0x5A, 0x02, 0xA6, 0x02, 0xA5, 0x81, 0xFD, 0xDC, 0xFD, 0xDA, 0x01, 0x15, + 0xB8, 0xB8, 0x01, 0x68, 0xB8, 0xB8, 0x00, 0x04, 0x00, 0xB3, 0xFF, 0xE6, + 0x0D, 0x1F, 0x05, 0x31, 0x00, 0x05, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x00, 0x45, 0x27, 0x01, 0x01, 0x37, 0x09, 0x03, 0x17, 0x09, 0x02, + 0x27, 0x21, 0x07, 0x01, 0x37, 0x21, 0x17, 0x0A, 0x7A, 0x82, 0x02, 0x26, + 0xFD, 0xDA, 0x82, 0x02, 0xA5, 0xF6, 0x3A, 0xFD, 0x5A, 0x02, 0xA6, 0x82, + 0xFD, 0xDA, 0x02, 0x26, 0xFE, 0x64, 0xB9, 0x0A, 0xC0, 0xB5, 0xF5, 0xF5, + 0xB9, 0x09, 0x52, 0xB5, 0x1A, 0x80, 0x02, 0x26, 0x02, 0x24, 0x81, 0xFD, + 0x5B, 0xFD, 0x5A, 0x02, 0xA6, 0x02, 0xA5, 0x81, 0xFD, 0xDC, 0xFD, 0xDA, + 0x01, 0x15, 0xB8, 0xB8, 0x01, 0x68, 0xB8, 0xB8, 0x00, 0x01, 0x00, 0xB3, + 0x00, 0x00, 0x05, 0xFC, 0x05, 0xEA, 0x00, 0x1B, 0x00, 0x00, 0x53, 0x01, + 0x01, 0x07, 0x27, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, 0x23, + 0x11, 0x34, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x03, 0x07, 0x07, 0xB3, 0x02, + 0xA5, 0x02, 0xA4, 0x81, 0xE3, 0x32, 0x68, 0x64, 0x2C, 0x38, 0x03, 0x08, + 0x04, 0xBB, 0x05, 0x07, 0x04, 0x37, 0x20, 0x4A, 0x4D, 0x4E, 0x25, 0xE2, + 0x03, 0x46, 0x02, 0xA4, 0xFD, 0x5C, 0x82, 0xE3, 0x33, 0x71, 0x71, 0x32, + 0x04, 0x2A, 0x5A, 0x5B, 0x2D, 0xFC, 0x1A, 0x03, 0xE6, 0x2D, 0x5B, 0x5A, + 0x2A, 0x04, 0x26, 0x53, 0x56, 0x52, 0x26, 0xE3, 0x00, 0x01, 0x00, 0xB3, + 0xFF, 0xE8, 0x05, 0xFC, 0x05, 0xD2, 0x00, 0x1B, 0x00, 0x00, 0x49, 0x02, + 0x37, 0x17, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x03, 0x37, 0x37, 0x05, 0xFC, 0xFD, + 0x5B, 0xFD, 0x5C, 0x82, 0xE2, 0x32, 0x68, 0x65, 0x2B, 0x37, 0x04, 0x07, + 0x05, 0xBB, 0x05, 0x07, 0x04, 0x37, 0x21, 0x49, 0x4E, 0x4D, 0x25, 0xE2, + 0x02, 0x8C, 0xFD, 0x5C, 0x02, 0xA4, 0x82, 0xE3, 0x32, 0x72, 0x70, 0x33, + 0x04, 0x2B, 0x59, 0x5C, 0x2C, 0x03, 0xE6, 0xFC, 0x1A, 0x2C, 0x5C, 0x59, + 0x2B, 0x04, 0x26, 0x53, 0x56, 0x52, 0x26, 0xE3, 0x00, 0x02, 0x00, 0xB5, + 0x00, 0x00, 0x05, 0xE3, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x1F, 0x00, 0x00, + 0x73, 0x35, 0x21, 0x15, 0x01, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, 0x07, + 0x27, 0x3E, 0x02, 0x37, 0x37, 0x17, 0x01, 0x01, 0x37, 0x17, 0x1E, 0x03, + 0x17, 0x07, 0x2E, 0x02, 0xB6, 0x05, 0x2C, 0xFD, 0x0D, 0xBA, 0x04, 0x07, + 0x04, 0x38, 0x2C, 0x64, 0x68, 0x32, 0xD6, 0x81, 0xFD, 0x69, 0xFD, 0x69, + 0x81, 0xD6, 0x25, 0x4D, 0x4E, 0x49, 0x21, 0x38, 0x03, 0x08, 0x04, 0xBB, + 0xBB, 0x03, 0x04, 0x02, 0xCE, 0xFD, 0x32, 0x2C, 0x5B, 0x5A, 0x2A, 0x04, + 0x32, 0x71, 0x71, 0x32, 0xD6, 0x81, 0xFD, 0x68, 0x02, 0x98, 0x81, 0xD6, + 0x26, 0x52, 0x56, 0x52, 0x26, 0x04, 0x2A, 0x5A, 0x5B, 0x00, 0x01, 0x00, + 0xB3, 0xFD, 0xF9, 0x05, 0xE2, 0x07, 0x1F, 0x00, 0x33, 0x00, 0x00, 0x41, + 0x01, 0x37, 0x17, 0x1E, 0x03, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x11, 0x34, + 0x36, 0x36, 0x37, 0x17, 0x0E, 0x03, 0x07, 0x07, 0x27, 0x01, 0x01, 0x07, + 0x27, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x02, 0x15, 0x11, 0x14, 0x06, 0x06, + 0x07, 0x27, 0x3E, 0x02, 0x37, 0x37, 0x17, 0x03, 0x4B, 0xFD, 0x68, 0x82, + 0xD6, 0x24, 0x4E, 0x4D, 0x4A, 0x20, 0x37, 0x04, 0x07, 0x05, 0x05, 0x07, + 0x04, 0x37, 0x20, 0x4A, 0x4D, 0x4E, 0x24, 0xD6, 0x82, 0x02, 0x98, 0x02, + 0x97, 0x81, 0xD6, 0x32, 0x68, 0x64, 0x2C, 0x37, 0x04, 0x08, 0x04, 0x04, + 0x08, 0x04, 0x37, 0x2C, 0x64, 0x68, 0x32, 0xD6, 0x81, 0xFD, 0xF9, 0x02, + 0x98, 0x81, 0xD6, 0x26, 0x52, 0x56, 0x52, 0x26, 0x04, 0x2A, 0x5A, 0x5B, + 0x2C, 0x05, 0x1E, 0x2D, 0x5B, 0x5A, 0x29, 0x04, 0x26, 0x52, 0x56, 0x52, + 0x26, 0xD6, 0x81, 0x02, 0x98, 0xFD, 0x68, 0x81, 0xD6, 0x33, 0x70, 0x72, + 0x31, 0x04, 0x29, 0x5A, 0x5B, 0x2D, 0xFA, 0xE2, 0x2C, 0x5B, 0x5A, 0x2A, + 0x04, 0x32, 0x71, 0x71, 0x32, 0xD6, 0x81, 0x00, 0x01, 0x00, 0xB3, 0xFF, + 0xE8, 0x08, 0x5A, 0x06, 0x00, 0x00, 0x2D, 0x00, 0x00, 0x45, 0x01, 0x01, + 0x17, 0x07, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x21, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x22, 0x26, 0x26, 0x27, 0x37, 0x1E, + 0x03, 0x17, 0x17, 0x03, 0x58, 0xFD, 0x5B, 0x02, 0xA5, 0x81, 0xE3, 0x31, + 0x72, 0x70, 0x33, 0x04, 0x2A, 0x5A, 0x5C, 0x2B, 0x03, 0xB3, 0x55, 0x89, + 0x52, 0x52, 0x89, 0x55, 0x4F, 0x50, 0x8A, 0xE0, 0x85, 0x85, 0xE0, 0x8A, + 0xFC, 0x4C, 0x2B, 0x5C, 0x5A, 0x2A, 0x04, 0x26, 0x52, 0x56, 0x53, 0x25, + 0xE3, 0x18, 0x02, 0xA4, 0x02, 0xA4, 0x81, 0xE3, 0x32, 0x68, 0x64, 0x2C, + 0x38, 0x04, 0x07, 0x04, 0x51, 0x89, 0x54, 0x55, 0x89, 0x50, 0xBB, 0x83, + 0xDE, 0x88, 0x88, 0xDD, 0x83, 0x04, 0x07, 0x04, 0x37, 0x20, 0x4A, 0x4D, + 0x4E, 0x24, 0xE3, 0x00, 0x01, 0x00, 0xA8, 0xFF, 0xE8, 0x08, 0x4E, 0x06, + 0x00, 0x00, 0x2D, 0x00, 0x00, 0x45, 0x27, 0x37, 0x3E, 0x03, 0x37, 0x17, + 0x0E, 0x02, 0x23, 0x21, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x33, 0x15, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x21, + 0x32, 0x16, 0x16, 0x17, 0x07, 0x2E, 0x02, 0x27, 0x27, 0x37, 0x01, 0x05, + 0xAA, 0x82, 0xE4, 0x25, 0x52, 0x56, 0x53, 0x26, 0x04, 0x2A, 0x5A, 0x5B, + 0x2D, 0xFC, 0x4C, 0x89, 0xE1, 0x84, 0x84, 0xE1, 0x89, 0x51, 0x50, 0x53, + 0x8B, 0x51, 0x51, 0x8A, 0x54, 0x03, 0xB3, 0x2D, 0x5B, 0x5A, 0x2A, 0x04, + 0x32, 0x71, 0x71, 0x32, 0xE4, 0x82, 0x02, 0xA4, 0x18, 0x81, 0xE3, 0x24, + 0x4E, 0x4D, 0x4A, 0x20, 0x37, 0x04, 0x07, 0x04, 0x83, 0xDD, 0x88, 0x88, + 0xDE, 0x83, 0xBB, 0x50, 0x89, 0x55, 0x54, 0x89, 0x51, 0x04, 0x07, 0x04, + 0x38, 0x2C, 0x64, 0x68, 0x32, 0xE3, 0x81, 0xFD, 0x5C, 0xFF, 0xFF, 0x00, + 0xB3, 0x00, 0x45, 0x06, 0x8B, 0x05, 0x8E, 0x06, 0x06, 0x07, 0x06, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xB3, 0x00, 0x45, 0x09, 0xA3, 0x05, 0x8D, 0x06, + 0x06, 0x07, 0x07, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xB3, 0x00, 0x44, 0x14, + 0x5D, 0x05, 0x8E, 0x06, 0x06, 0x07, 0x08, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xB3, 0x00, 0x44, 0x06, 0x8B, 0x05, 0x8E, 0x06, 0x06, 0x07, 0x09, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xB3, 0x00, 0x44, 0x09, 0xA3, 0x05, 0x8E, 0x06, + 0x06, 0x07, 0x0A, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xE9, 0x00, 0x45, 0x06, + 0xC1, 0x05, 0x8E, 0x06, 0x06, 0x07, 0x0B, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xE9, 0x00, 0x45, 0x09, 0xD9, 0x05, 0x8D, 0x06, 0x06, 0x07, 0x0C, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xE9, 0x00, 0x44, 0x14, 0x93, 0x05, 0x8E, 0x06, + 0x06, 0x07, 0x0D, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xE9, 0x00, 0x44, 0x06, + 0xC1, 0x05, 0x8E, 0x06, 0x06, 0x07, 0x0E, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xE9, 0x00, 0x44, 0x09, 0xD9, 0x05, 0x8E, 0x06, 0x06, 0x07, 0x0F, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xB3, 0x00, 0x52, 0x09, 0xD9, 0x05, 0x80, 0x06, + 0x06, 0x07, 0x14, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xB3, 0x00, 0x52, 0x0D, + 0x1F, 0x05, 0x80, 0x06, 0x06, 0x07, 0x15, 0x00, 0x5D, 0xFF, 0xFF, 0x00, + 0xB3, 0x00, 0x44, 0x09, 0xD9, 0x05, 0x8E, 0x06, 0x06, 0x07, 0x16, 0x00, + 0x5D, 0xFF, 0xFF, 0x00, 0xB3, 0x00, 0x44, 0x0D, 0x1F, 0x05, 0x8E, 0x06, + 0x06, 0x07, 0x17, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0xCD, 0x00, 0xB9, 0x05, + 0x0D, 0x04, 0xFA, 0x06, 0x07, 0x07, 0x11, 0x00, 0x00, 0x00, 0xCC, 0xFF, + 0xFF, 0x00, 0xCD, 0x00, 0xD8, 0x05, 0x0D, 0x05, 0x19, 0x06, 0x07, 0x07, + 0x12, 0x00, 0x00, 0x00, 0xD8, 0xFF, 0xFF, 0x00, 0xD3, 0x00, 0xD8, 0x05, + 0x13, 0x05, 0x19, 0x06, 0x07, 0x07, 0x13, 0x00, 0x00, 0x00, 0xD8, 0xFF, + 0xFF, 0x00, 0xD3, 0x00, 0xB8, 0x05, 0x13, 0x04, 0xF9, 0x06, 0x07, 0x07, + 0x10, 0x00, 0x00, 0x00, 0xCB, 0x00, 0x01, 0x00, 0xC0, 0x00, 0x98, 0x06, + 0x57, 0x04, 0xBC, 0x00, 0x05, 0x00, 0x00, 0x53, 0x37, 0x01, 0x01, 0x17, + 0x01, 0xC0, 0x8C, 0x01, 0x71, 0x03, 0x0B, 0x8F, 0xFC, 0x66, 0x02, 0x91, + 0x8F, 0xFE, 0x95, 0x03, 0x07, 0x8D, 0xFC, 0x69, 0x00, 0x02, 0x01, 0x62, + 0x00, 0x98, 0x05, 0x7F, 0x04, 0xAF, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x65, 0x27, 0x01, 0x17, 0x03, 0x01, 0x37, 0x01, 0x01, 0xF1, 0x8F, 0x03, + 0x8E, 0x8F, 0x90, 0xFC, 0x73, 0x8F, 0x03, 0x8D, 0x98, 0x8E, 0x03, 0x89, + 0x8F, 0xFC, 0x78, 0x03, 0x88, 0x8F, 0xFC, 0x77, 0x00, 0x01, 0x00, 0x53, + 0xFF, 0xA2, 0x07, 0xAB, 0x05, 0xD2, 0x00, 0x02, 0x00, 0x00, 0x53, 0x21, + 0x01, 0x53, 0x07, 0x58, 0xFC, 0x53, 0x05, 0xD2, 0xF9, 0xD0, 0x00, 0x01, + 0x00, 0x53, 0x00, 0x00, 0x07, 0xAB, 0x06, 0x2E, 0x00, 0x02, 0x00, 0x00, + 0x73, 0x01, 0x01, 0x53, 0x03, 0xAB, 0x03, 0xAD, 0x06, 0x2E, 0xF9, 0xD2, + 0x00, 0x01, 0x00, 0x50, 0xFF, 0x46, 0x06, 0x8E, 0x06, 0x8C, 0x00, 0x02, + 0x00, 0x00, 0x45, 0x01, 0x01, 0x06, 0x8E, 0xF9, 0xC2, 0x06, 0x3E, 0xBA, + 0x03, 0xA2, 0x03, 0xA4, 0x00, 0x01, 0x00, 0xB0, 0xFF, 0x46, 0x06, 0xED, + 0x06, 0x8C, 0x00, 0x02, 0x00, 0x00, 0x57, 0x11, 0x01, 0xB0, 0x06, 0x3D, + 0xBA, 0x07, 0x46, 0xFC, 0x5C, 0x00, 0x02, 0x00, 0x53, 0xFF, 0xA2, 0x07, + 0xAB, 0x05, 0xD2, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x53, 0x21, 0x09, + 0x03, 0x53, 0x07, 0x58, 0xFC, 0x53, 0xFD, 0x9B, 0x02, 0x65, 0x02, 0x67, + 0x05, 0xD2, 0xF9, 0xD0, 0x05, 0x77, 0xFB, 0xF2, 0x04, 0x0E, 0x00, 0x02, + 0x00, 0x53, 0x00, 0x00, 0x07, 0xAB, 0x06, 0x2E, 0x00, 0x02, 0x00, 0x05, + 0x00, 0x00, 0x73, 0x01, 0x01, 0x25, 0x21, 0x01, 0x53, 0x03, 0xAB, 0x03, + 0xAD, 0xF9, 0xEE, 0x04, 0xCC, 0xFD, 0x99, 0x06, 0x2E, 0xF9, 0xD2, 0xB8, + 0x04, 0x0E, 0x00, 0x02, 0x00, 0x50, 0xFF, 0x46, 0x06, 0x8E, 0x06, 0x8C, + 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x45, 0x01, 0x01, 0x03, 0x11, 0x01, + 0x06, 0x8E, 0xF9, 0xC2, 0x06, 0x3E, 0xB8, 0xFB, 0xEA, 0xBA, 0x03, 0xA2, + 0x03, 0xA4, 0xF9, 0xFB, 0x04, 0xC4, 0xFD, 0x9D, 0x00, 0x02, 0x00, 0xB0, + 0xFF, 0x46, 0x06, 0xED, 0x06, 0x8C, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, + 0x57, 0x11, 0x09, 0x03, 0xB0, 0x06, 0x3D, 0xFA, 0x7C, 0x04, 0x14, 0xFB, + 0xEC, 0xBA, 0x07, 0x46, 0xFC, 0x5C, 0xFD, 0x9F, 0x02, 0x61, 0x02, 0x63, + 0x00, 0x03, 0x00, 0x34, 0x00, 0x00, 0x07, 0xE8, 0x06, 0x8C, 0x00, 0x02, + 0x00, 0x0E, 0x00, 0x12, 0x00, 0x00, 0x73, 0x01, 0x01, 0x25, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x03, 0x33, 0x13, + 0x23, 0x34, 0x03, 0xDA, 0x03, 0xDA, 0xFC, 0x26, 0x39, 0x50, 0x50, 0x39, + 0x38, 0x50, 0x50, 0x27, 0xBF, 0x0B, 0xD7, 0x06, 0x8C, 0xF9, 0x74, 0xBE, + 0x01, 0x50, 0x38, 0x39, 0x50, 0x50, 0x39, 0x38, 0x50, 0x01, 0xB1, 0x01, + 0xEE, 0x00, 0x01, 0x00, 0x91, 0xFF, 0xE9, 0x06, 0x91, 0x05, 0xE9, 0x00, + 0x13, 0x00, 0x00, 0x45, 0x22, 0x24, 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, + 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, 0x04, 0x03, + 0x91, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, + 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x17, 0x77, 0xD4, 0x01, + 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, + 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0x00, 0x02, 0x00, 0x91, 0xFF, 0xE9, 0x06, + 0x91, 0x05, 0xE9, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x45, 0x22, 0x24, + 0x26, 0x02, 0x35, 0x34, 0x12, 0x36, 0x24, 0x33, 0x32, 0x04, 0x16, 0x12, + 0x15, 0x14, 0x02, 0x06, 0x04, 0x27, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, + 0x02, 0x23, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, 0x03, 0x91, 0x9F, + 0xFE, 0xEA, 0xD4, 0x77, 0x77, 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, + 0xD4, 0x77, 0x77, 0xD4, 0xFE, 0xEA, 0x9F, 0x78, 0xD1, 0x9F, 0x59, 0x59, + 0x9F, 0xD1, 0x78, 0x77, 0xD1, 0x9F, 0x5A, 0x5A, 0x9F, 0xD1, 0x17, 0x77, + 0xD4, 0x01, 0x16, 0x9F, 0x9F, 0x01, 0x16, 0xD4, 0x77, 0x77, 0xD4, 0xFE, + 0xEA, 0x9F, 0x9F, 0xFE, 0xEA, 0xD4, 0x77, 0xBF, 0x59, 0x9F, 0xD1, 0x78, + 0x78, 0xD1, 0x9F, 0x59, 0x59, 0x9F, 0xD1, 0x78, 0x78, 0xD1, 0x9F, 0x59, + 0x00, 0x01, 0x00, 0xA9, 0x00, 0x00, 0x06, 0x7B, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0xA9, 0x05, 0xD2, 0x05, 0xD2, 0xFA, + 0x2E, 0x00, 0x02, 0x00, 0xA9, 0x00, 0x00, 0x06, 0x7B, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x00, 0x73, 0x11, 0x21, 0x11, 0x25, 0x21, 0x11, + 0x21, 0xA9, 0x05, 0xD2, 0xFA, 0xE7, 0x04, 0x60, 0xFB, 0xA0, 0x05, 0xD2, + 0xFA, 0x2E, 0xB8, 0x04, 0x61, 0x00, 0x02, 0x00, 0xA9, 0x00, 0x00, 0x06, + 0x7B, 0x05, 0xD2, 0x00, 0x0C, 0x00, 0x1C, 0x00, 0x00, 0x61, 0x22, 0x35, + 0x11, 0x34, 0x33, 0x21, 0x16, 0x16, 0x15, 0x11, 0x06, 0x23, 0x25, 0x21, + 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, 0x11, + 0x14, 0x16, 0x01, 0x91, 0xE8, 0xE8, 0x04, 0x00, 0x72, 0x78, 0x01, 0xE9, + 0xFC, 0x0E, 0x03, 0xE5, 0x28, 0x16, 0x16, 0x28, 0xFC, 0x1B, 0x27, 0x16, + 0x16, 0xE8, 0x04, 0x00, 0xEA, 0x01, 0x77, 0x72, 0xFC, 0x00, 0xE8, 0xB8, + 0x01, 0x16, 0x27, 0x03, 0xE4, 0x29, 0x16, 0x16, 0x29, 0xFC, 0x1C, 0x27, + 0x16, 0x00, 0x03, 0x00, 0xA9, 0x00, 0x00, 0x06, 0x7B, 0x05, 0xD2, 0x00, + 0x03, 0x00, 0x10, 0x00, 0x20, 0x00, 0x00, 0x53, 0x21, 0x15, 0x21, 0x13, + 0x22, 0x35, 0x11, 0x34, 0x33, 0x21, 0x16, 0x16, 0x15, 0x11, 0x06, 0x23, + 0x25, 0x21, 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, + 0x15, 0x11, 0x14, 0x16, 0xFE, 0x05, 0x22, 0xFA, 0xDE, 0x93, 0xE8, 0xE8, + 0x04, 0x00, 0x72, 0x78, 0x01, 0xE9, 0xFC, 0x0E, 0x03, 0xE5, 0x28, 0x16, + 0x16, 0x28, 0xFC, 0x1B, 0x27, 0x16, 0x16, 0x04, 0x0D, 0xA6, 0xFC, 0x99, + 0xE8, 0x04, 0x00, 0xEA, 0x01, 0x77, 0x72, 0xFC, 0x00, 0xE8, 0xB8, 0x01, + 0x16, 0x27, 0x03, 0xE4, 0x29, 0x16, 0x16, 0x29, 0xFC, 0x1C, 0x27, 0x16, + 0x00, 0x03, 0x00, 0xA9, 0x00, 0x00, 0x06, 0x7B, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x10, 0x00, 0x20, 0x00, 0x00, 0x41, 0x21, 0x15, 0x21, 0x13, 0x22, + 0x35, 0x11, 0x34, 0x33, 0x21, 0x16, 0x16, 0x15, 0x11, 0x06, 0x23, 0x25, + 0x21, 0x36, 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, + 0x11, 0x14, 0x16, 0x01, 0x02, 0x05, 0x1F, 0xFA, 0xE1, 0x8F, 0xE8, 0xE8, + 0x04, 0x00, 0x72, 0x78, 0x01, 0xE9, 0xFC, 0x0E, 0x03, 0xE5, 0x28, 0x16, + 0x16, 0x28, 0xFC, 0x1B, 0x27, 0x16, 0x16, 0x02, 0x6B, 0xA6, 0xFE, 0x3B, + 0xE8, 0x04, 0x00, 0xEA, 0x01, 0x77, 0x72, 0xFC, 0x00, 0xE8, 0xB8, 0x01, + 0x16, 0x27, 0x03, 0xE4, 0x29, 0x16, 0x16, 0x29, 0xFC, 0x1C, 0x27, 0x16, + 0x00, 0x01, 0x00, 0x4F, 0xFF, 0x18, 0x07, 0xF3, 0x06, 0xBA, 0x00, 0x03, + 0x00, 0x00, 0x49, 0x03, 0x07, 0xF3, 0xFC, 0x34, 0xFC, 0x28, 0x03, 0xD8, + 0x02, 0xE8, 0xFC, 0x30, 0x03, 0xD0, 0x03, 0xD2, 0x00, 0x04, 0x00, 0x4F, + 0xFF, 0x18, 0x07, 0xF3, 0x06, 0xBA, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x0F, 0x00, 0x00, 0x49, 0x0F, 0x05, 0xCF, 0xFE, 0x58, 0xFE, 0x52, + 0x01, 0xAE, 0x03, 0xCC, 0xFE, 0x57, 0xFE, 0x57, 0x01, 0xA9, 0xFD, 0x63, + 0xFE, 0x51, 0xFE, 0x51, 0x01, 0xAF, 0x03, 0xD1, 0xFE, 0x58, 0xFE, 0x52, + 0x01, 0xAE, 0x05, 0x0C, 0xFE, 0x56, 0x01, 0xAA, 0x01, 0xAE, 0xFC, 0x2E, + 0xFE, 0x52, 0x01, 0xAE, 0x01, 0xAA, 0xFE, 0x56, 0xFE, 0x52, 0x01, 0xAE, + 0x01, 0xAA, 0xFC, 0x2E, 0xFE, 0x58, 0x01, 0xA8, 0x01, 0xAE, 0x00, 0x02, + 0x00, 0x4F, 0xFF, 0x18, 0x07, 0xF3, 0x06, 0xBA, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x49, 0x07, 0x07, 0xF3, 0xFC, 0x34, 0xFC, 0x28, 0x03, 0xD8, + 0x02, 0xC7, 0xFD, 0x38, 0xFD, 0x2F, 0x02, 0xD1, 0x02, 0xE8, 0xFC, 0x30, + 0x03, 0xD0, 0x03, 0xD2, 0xFC, 0x2E, 0x02, 0xCD, 0xFD, 0x33, 0xFD, 0x35, + 0x00, 0x08, 0x00, 0x4F, 0xFF, 0x18, 0x07, 0xF3, 0x06, 0xBA, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x1B, + 0x00, 0x1F, 0x00, 0x00, 0x49, 0x03, 0x05, 0x37, 0x27, 0x07, 0x09, 0x03, + 0x05, 0x37, 0x27, 0x07, 0x25, 0x09, 0x02, 0x05, 0x37, 0x27, 0x07, 0x25, + 0x09, 0x02, 0x05, 0x37, 0x27, 0x07, 0x01, 0xFE, 0xFE, 0x51, 0x01, 0xAF, + 0x01, 0xAF, 0xFE, 0x51, 0xEA, 0xEA, 0xE9, 0x03, 0x12, 0xFE, 0x52, 0x01, + 0xAE, 0x01, 0xA8, 0xFE, 0x58, 0xE4, 0xE4, 0xEA, 0x03, 0x0D, 0xFE, 0x57, + 0x01, 0xA9, 0x01, 0xA9, 0xFE, 0x57, 0xEA, 0xEA, 0xEA, 0xFE, 0xC7, 0xFE, + 0x52, 0x01, 0xAE, 0x01, 0xA8, 0xFE, 0x58, 0xE4, 0xE4, 0xEA, 0x01, 0x3A, + 0x01, 0xAE, 0x01, 0xAA, 0xFE, 0x56, 0xEB, 0xEB, 0xEA, 0xEA, 0xFC, 0x30, + 0x01, 0xA8, 0x01, 0xAE, 0xFE, 0x52, 0xE5, 0xE5, 0xE9, 0xE9, 0x7A, 0x01, + 0xAE, 0x01, 0xAA, 0xFE, 0x56, 0xEB, 0xEB, 0xEA, 0xEA, 0x7A, 0x01, 0xAA, + 0x01, 0xAE, 0xFE, 0x52, 0xE5, 0xE5, 0xEB, 0xEB, 0x00, 0x0A, 0x00, 0x9B, + 0xFF, 0x54, 0x07, 0xC3, 0x06, 0x7E, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x23, + 0x00, 0x27, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x33, 0x00, 0x37, 0x00, 0x3B, + 0x00, 0x3F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x07, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x03, 0x11, 0x33, 0x11, 0x05, 0x27, 0x01, 0x17, 0x03, 0x35, 0x21, 0x15, + 0x01, 0x01, 0x37, 0x01, 0x01, 0x11, 0x33, 0x11, 0x25, 0x27, 0x01, 0x17, + 0x01, 0x35, 0x21, 0x15, 0x13, 0x01, 0x37, 0x01, 0x04, 0x2F, 0x5A, 0x95, + 0x59, 0x59, 0x95, 0x5A, 0x5B, 0x94, 0x5A, 0x01, 0x59, 0x94, 0x5B, 0x31, + 0x4F, 0x2F, 0x2F, 0x4F, 0x31, 0x30, 0x4F, 0x2F, 0x2F, 0x4F, 0x19, 0x93, + 0x01, 0x39, 0x69, 0x01, 0x3B, 0x68, 0xE3, 0x01, 0xBA, 0xFE, 0xC1, 0xFE, + 0xC5, 0x69, 0x01, 0x3A, 0xFC, 0xFA, 0x93, 0xFD, 0x61, 0x67, 0x01, 0x3A, + 0x67, 0xFD, 0x87, 0x01, 0xBA, 0x58, 0xFE, 0xC6, 0x67, 0x01, 0x3A, 0x01, + 0xA0, 0x59, 0x95, 0x5A, 0x5B, 0x96, 0x59, 0x59, 0x96, 0x5B, 0x5A, 0x95, + 0x59, 0x9B, 0x2F, 0x4F, 0x2F, 0x31, 0x4E, 0x30, 0x30, 0x4E, 0x31, 0x2F, + 0x4F, 0x2F, 0x02, 0x87, 0x01, 0xBC, 0xFE, 0x44, 0xBF, 0x68, 0x01, 0x3A, + 0x68, 0xFD, 0x61, 0x94, 0x94, 0xFD, 0x8D, 0x01, 0x3A, 0x6A, 0xFE, 0xC6, + 0xFE, 0xBF, 0x01, 0xBA, 0xFE, 0x46, 0xD7, 0x6A, 0x01, 0x3A, 0x6A, 0x01, + 0x39, 0x94, 0x94, 0x01, 0x65, 0x01, 0x3A, 0x68, 0xFE, 0xC6, 0x00, 0x09, + 0x00, 0x9B, 0xFF, 0x54, 0x07, 0xC3, 0x06, 0x7E, 0x00, 0x0F, 0x00, 0x13, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x27, 0x00, 0x2B, + 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x07, 0x14, 0x06, 0x06, 0x03, 0x11, 0x33, 0x11, + 0x05, 0x27, 0x01, 0x17, 0x03, 0x35, 0x21, 0x15, 0x01, 0x01, 0x37, 0x01, + 0x01, 0x11, 0x33, 0x11, 0x25, 0x27, 0x01, 0x17, 0x01, 0x35, 0x21, 0x15, + 0x13, 0x01, 0x37, 0x01, 0x04, 0x2F, 0x5A, 0x95, 0x59, 0x59, 0x95, 0x5A, + 0x5B, 0x94, 0x5A, 0x01, 0x59, 0x94, 0xA4, 0x93, 0x01, 0x39, 0x69, 0x01, + 0x3B, 0x68, 0xE3, 0x01, 0xBA, 0xFE, 0xC1, 0xFE, 0xC5, 0x69, 0x01, 0x3A, + 0xFC, 0xFA, 0x93, 0xFD, 0x61, 0x67, 0x01, 0x3A, 0x67, 0xFD, 0x87, 0x01, + 0xBA, 0x58, 0xFE, 0xC6, 0x67, 0x01, 0x3A, 0x01, 0xA0, 0x59, 0x95, 0x5A, + 0x5B, 0x96, 0x59, 0x59, 0x96, 0x5B, 0x5A, 0x95, 0x59, 0x03, 0x22, 0x01, + 0xBC, 0xFE, 0x44, 0xBF, 0x68, 0x01, 0x3A, 0x68, 0xFD, 0x61, 0x94, 0x94, + 0xFD, 0x8D, 0x01, 0x3A, 0x6A, 0xFE, 0xC6, 0xFE, 0xBF, 0x01, 0xBA, 0xFE, + 0x46, 0xD7, 0x6A, 0x01, 0x3A, 0x6A, 0x01, 0x39, 0x94, 0x94, 0x01, 0x65, + 0x01, 0x3A, 0x68, 0xFE, 0xC6, 0x00, 0x02, 0x00, 0x80, 0xFF, 0xE8, 0x07, + 0x80, 0x05, 0xF2, 0x00, 0x13, 0x00, 0x27, 0x00, 0x00, 0x45, 0x01, 0x26, + 0x26, 0x36, 0x37, 0x36, 0x36, 0x16, 0x17, 0x17, 0x37, 0x36, 0x36, 0x16, + 0x17, 0x16, 0x16, 0x06, 0x07, 0x01, 0x01, 0x36, 0x36, 0x26, 0x27, 0x26, + 0x26, 0x06, 0x07, 0x07, 0x27, 0x26, 0x26, 0x06, 0x07, 0x06, 0x06, 0x16, + 0x17, 0x04, 0x01, 0xFD, 0x14, 0x59, 0x3C, 0x3C, 0x59, 0x5B, 0xEA, 0xE9, + 0x5A, 0x64, 0x62, 0x5C, 0xE9, 0xE9, 0x5A, 0x59, 0x3C, 0x3B, 0x5A, 0xFD, + 0x16, 0x02, 0x69, 0x35, 0x23, 0x24, 0x36, 0x36, 0x8A, 0x8B, 0x38, 0xE4, + 0xE3, 0x38, 0x8C, 0x8B, 0x38, 0x34, 0x24, 0x25, 0x35, 0x18, 0x02, 0xEC, + 0x5A, 0xED, 0xEC, 0x57, 0x59, 0x3B, 0x3B, 0x59, 0x60, 0x60, 0x59, 0x3B, + 0x3A, 0x59, 0x58, 0xEC, 0xED, 0x5A, 0xFE, 0x19, 0x02, 0x6A, 0x36, 0x8D, + 0x8D, 0x34, 0x34, 0x24, 0x24, 0x37, 0xDC, 0xDC, 0x36, 0x25, 0x23, 0x37, + 0x33, 0x8D, 0x8D, 0x35, 0x00, 0x01, 0x00, 0x80, 0xFF, 0xE8, 0x07, 0x80, + 0x05, 0xF2, 0x00, 0x13, 0x00, 0x00, 0x45, 0x01, 0x26, 0x26, 0x36, 0x37, + 0x36, 0x36, 0x16, 0x17, 0x17, 0x37, 0x36, 0x36, 0x16, 0x17, 0x16, 0x16, + 0x06, 0x07, 0x04, 0x01, 0xFD, 0x14, 0x59, 0x3C, 0x3C, 0x59, 0x5B, 0xEA, + 0xE9, 0x5A, 0x64, 0x62, 0x5C, 0xE9, 0xE9, 0x5A, 0x59, 0x3C, 0x3B, 0x5A, + 0x18, 0x02, 0xEC, 0x5A, 0xED, 0xEC, 0x57, 0x59, 0x3B, 0x3B, 0x59, 0x60, + 0x60, 0x59, 0x3B, 0x3A, 0x59, 0x58, 0xEC, 0xED, 0x5A, 0xFF, 0xFF, 0x00, + 0x80, 0xFF, 0xE8, 0x07, 0x80, 0x05, 0xF2, 0x06, 0x06, 0x07, 0x49, 0x00, + 0x00, 0x00, 0x01, 0x00, 0xA3, 0xFF, 0xF2, 0x07, 0x8B, 0x06, 0x8C, 0x00, + 0x09, 0x00, 0x00, 0x41, 0x01, 0x13, 0x01, 0x21, 0x13, 0x13, 0x21, 0x01, + 0x13, 0x04, 0x17, 0xFD, 0xDA, 0xDA, 0xFD, 0xD8, 0x02, 0xA4, 0xD0, 0xD2, + 0x02, 0xA2, 0xFD, 0xDA, 0xD8, 0x01, 0x7E, 0xFE, 0x74, 0x02, 0x86, 0x01, + 0x8E, 0x02, 0x86, 0xFD, 0x7A, 0xFE, 0x72, 0xFD, 0x7A, 0x00, 0x02, 0x00, + 0xA3, 0xFF, 0xF2, 0x07, 0x8B, 0x06, 0x8C, 0x00, 0x09, 0x00, 0x13, 0x00, + 0x00, 0x41, 0x01, 0x13, 0x01, 0x21, 0x13, 0x13, 0x21, 0x01, 0x13, 0x01, + 0x17, 0x03, 0x25, 0x21, 0x03, 0x03, 0x21, 0x05, 0x03, 0x04, 0x17, 0xFD, + 0xDA, 0xDA, 0xFD, 0xD8, 0x02, 0xA4, 0xD0, 0xD2, 0x02, 0xA2, 0xFD, 0xDA, + 0xD8, 0xFD, 0xDA, 0xFD, 0x64, 0x01, 0x02, 0xFE, 0xCA, 0x65, 0x60, 0xFE, + 0xC8, 0x01, 0x02, 0x65, 0x01, 0x7E, 0xFE, 0x74, 0x02, 0x86, 0x01, 0x8E, + 0x02, 0x86, 0xFD, 0x7A, 0xFE, 0x72, 0xFD, 0x7A, 0x02, 0x4A, 0xB5, 0x01, + 0x2A, 0xBB, 0x01, 0x2E, 0xFE, 0xD2, 0xBA, 0xFE, 0xD5, 0x00, 0x01, 0x00, + 0x9B, 0x00, 0x00, 0x07, 0x9B, 0x06, 0x46, 0x00, 0x06, 0x00, 0x00, 0x53, + 0x01, 0x01, 0x21, 0x11, 0x21, 0x11, 0x9B, 0x03, 0x81, 0x03, 0x7F, 0xFE, + 0x39, 0xFC, 0x8E, 0x02, 0xC5, 0x03, 0x81, 0xFC, 0x7F, 0xFD, 0x3B, 0x02, + 0xC5, 0x00, 0x02, 0x00, 0x9B, 0x00, 0x00, 0x07, 0x9B, 0x06, 0x46, 0x00, + 0x06, 0x00, 0x0D, 0x00, 0x00, 0x53, 0x01, 0x01, 0x21, 0x11, 0x21, 0x11, + 0x27, 0x33, 0x11, 0x21, 0x11, 0x33, 0x01, 0x9B, 0x03, 0x81, 0x03, 0x7F, + 0xFE, 0x39, 0xFC, 0x8E, 0x50, 0xFF, 0x02, 0x14, 0xFF, 0xFD, 0xF8, 0x02, + 0xC5, 0x03, 0x81, 0xFC, 0x7F, 0xFD, 0x3B, 0x02, 0xC5, 0x94, 0xFD, 0x3A, + 0x02, 0xC6, 0x02, 0x09, 0x00, 0x04, 0x00, 0x9B, 0xFE, 0xB0, 0x07, 0x9B, + 0x06, 0x46, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x15, 0x00, 0x00, + 0x41, 0x11, 0x21, 0x01, 0x01, 0x21, 0x11, 0x01, 0x11, 0x21, 0x11, 0x25, + 0x21, 0x35, 0x21, 0x03, 0x21, 0x11, 0x33, 0x01, 0x01, 0x33, 0x02, 0x62, + 0xFE, 0x39, 0x03, 0x81, 0x03, 0x7F, 0xFE, 0x39, 0xFC, 0x8E, 0x03, 0x72, + 0xFD, 0x3E, 0x02, 0x13, 0xFD, 0xED, 0x01, 0x02, 0x14, 0xFF, 0xFD, 0xF8, + 0xFD, 0xF6, 0xFF, 0x01, 0x21, 0x01, 0xA4, 0x03, 0x81, 0xFC, 0x7F, 0xFE, + 0x5C, 0xFD, 0x8F, 0x01, 0xCB, 0xFE, 0x35, 0x91, 0xAA, 0x01, 0xC9, 0x01, + 0xA5, 0x02, 0x09, 0xFD, 0xF7, 0x00, 0x06, 0x00, 0xD6, 0xFF, 0xDE, 0x06, + 0xEA, 0x05, 0xF2, 0x00, 0x3B, 0x00, 0x49, 0x00, 0x57, 0x00, 0x65, 0x00, + 0x73, 0x00, 0x77, 0x00, 0x00, 0x45, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x33, 0x11, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x15, 0x21, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x11, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x21, + 0x15, 0x14, 0x06, 0x06, 0x27, 0x3E, 0x02, 0x35, 0x35, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x13, 0x33, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x21, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x13, 0x3E, 0x02, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x15, 0x14, 0x16, 0x16, 0x01, 0x21, + 0x11, 0x21, 0x02, 0x19, 0x59, 0x93, 0x57, 0x57, 0x93, 0x58, 0xA2, 0xA2, + 0x58, 0x93, 0x57, 0x57, 0x93, 0x59, 0x59, 0x94, 0x58, 0x01, 0x04, 0x57, + 0x93, 0x5A, 0x5A, 0x92, 0x58, 0x58, 0x93, 0x59, 0xA0, 0xA0, 0x59, 0x93, + 0x58, 0x58, 0x92, 0x5A, 0x59, 0x94, 0x57, 0xFE, 0xFC, 0x58, 0x93, 0x5B, + 0x2D, 0x4A, 0x2B, 0xA1, 0x2C, 0x48, 0x2B, 0x2B, 0x48, 0x2C, 0xA1, 0x2C, + 0x49, 0x2D, 0x2B, 0x48, 0x2B, 0x2B, 0x48, 0x03, 0x19, 0xA0, 0x2C, 0x48, + 0x2C, 0x2C, 0x48, 0x2C, 0x2C, 0x49, 0x2B, 0xA0, 0x2C, 0x48, 0x2C, 0x2C, + 0x48, 0x2C, 0xA0, 0x2B, 0x49, 0xFD, 0xE4, 0x01, 0x04, 0xFE, 0xFC, 0x22, + 0x01, 0x58, 0x92, 0x59, 0x5A, 0x94, 0x58, 0x01, 0x04, 0x56, 0x94, 0x5A, + 0x59, 0x92, 0x57, 0x58, 0x91, 0x59, 0xA0, 0xA0, 0x59, 0x92, 0x57, 0x57, + 0x92, 0x59, 0x5A, 0x93, 0x57, 0xFE, 0xFC, 0x58, 0x94, 0x5A, 0x59, 0x93, + 0x58, 0x58, 0x93, 0x59, 0xA0, 0xA0, 0x59, 0x92, 0x58, 0xA3, 0x01, 0x2B, + 0x49, 0x2B, 0xA0, 0x2B, 0x48, 0x2D, 0x2B, 0x49, 0x2B, 0x03, 0x8D, 0x9F, + 0x2D, 0x47, 0x2B, 0x2B, 0x47, 0x2C, 0x2D, 0x49, 0x2A, 0x2A, 0x49, 0x2D, + 0x2C, 0x47, 0x2B, 0x2B, 0x47, 0x2D, 0xFB, 0xD3, 0x01, 0x2B, 0x49, 0x2B, + 0x2D, 0x48, 0x2B, 0xA0, 0x2B, 0x49, 0x2B, 0x01, 0xE5, 0x01, 0x04, 0x00, + 0x01, 0x00, 0xB3, 0x03, 0x03, 0x05, 0x6D, 0x05, 0xE0, 0x00, 0x05, 0x00, + 0x00, 0x41, 0x27, 0x01, 0x01, 0x07, 0x01, 0x01, 0x33, 0x80, 0x02, 0x5D, + 0x02, 0x5D, 0x80, 0xFE, 0x23, 0x03, 0x03, 0x80, 0x02, 0x5D, 0xFD, 0xA3, + 0x80, 0x01, 0xDB, 0x00, 0x02, 0x00, 0xB3, 0x01, 0xB5, 0x05, 0x6D, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, + 0x27, 0x01, 0x01, 0x07, 0x01, 0xB7, 0x04, 0xB3, 0xFB, 0xC9, 0x80, 0x02, + 0x5D, 0x02, 0x5D, 0x80, 0xFE, 0x23, 0x05, 0x18, 0xBA, 0xBA, 0xFC, 0x9D, + 0x80, 0x02, 0x5C, 0xFD, 0xA4, 0x80, 0x01, 0xDB, 0x00, 0x01, 0x00, 0xB3, + 0xFF, 0xE8, 0x05, 0x6D, 0x02, 0xC5, 0x00, 0x05, 0x00, 0x00, 0x41, 0x17, + 0x01, 0x01, 0x37, 0x01, 0x04, 0xED, 0x80, 0xFD, 0xA3, 0xFD, 0xA3, 0x80, + 0x01, 0xDD, 0x02, 0xC5, 0x80, 0xFD, 0xA3, 0x02, 0x5D, 0x80, 0xFE, 0x25, + 0x00, 0x03, 0x00, 0x4F, 0xFF, 0xE8, 0x05, 0xE1, 0x05, 0x0B, 0x00, 0x05, + 0x00, 0x26, 0x00, 0x33, 0x00, 0x00, 0x45, 0x01, 0x37, 0x01, 0x01, 0x17, + 0x05, 0x22, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x35, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x11, 0x23, 0x35, 0x23, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, + 0x35, 0x06, 0x06, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x03, 0x17, 0xFD, + 0x38, 0x67, 0x02, 0x61, 0x02, 0x63, 0x67, 0xFC, 0xDD, 0x61, 0x7E, 0x45, + 0x74, 0x45, 0x55, 0x4C, 0x37, 0x32, 0x31, 0x3D, 0x07, 0xAD, 0x08, 0x49, + 0x7F, 0x57, 0x57, 0x80, 0x46, 0xB4, 0x04, 0x1A, 0x5C, 0x16, 0x40, 0x4C, + 0x13, 0x4B, 0x24, 0x30, 0x3D, 0x37, 0x18, 0x02, 0xCA, 0x65, 0xFD, 0x9D, + 0x02, 0x63, 0x65, 0x0A, 0x57, 0x58, 0x42, 0x4C, 0x23, 0x06, 0x07, 0x10, + 0x1C, 0x04, 0x1D, 0x23, 0x23, 0x1E, 0x06, 0x3B, 0x56, 0x30, 0x30, 0x5B, + 0x3E, 0xFE, 0x70, 0x53, 0x2D, 0x30, 0x7B, 0x38, 0x2C, 0x38, 0x07, 0x0D, + 0x04, 0x07, 0x22, 0x1F, 0x1C, 0x20, 0x00, 0x02, 0x00, 0xA3, 0x00, 0x00, + 0x07, 0x5D, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x21, + 0x15, 0x21, 0x21, 0x35, 0x21, 0x01, 0x21, 0x15, 0x21, 0x01, 0x04, 0xA5, + 0x02, 0xB8, 0xFD, 0x48, 0xFB, 0xFE, 0x02, 0x4C, 0x02, 0x93, 0x01, 0xDB, + 0xFD, 0xB6, 0xFD, 0x6E, 0x05, 0xD2, 0xBB, 0xBB, 0xFA, 0xE9, 0xBB, 0x05, + 0x17, 0x00, 0x02, 0x00, 0xA3, 0x00, 0x00, 0x07, 0x5D, 0x05, 0xD2, 0x00, + 0x07, 0x00, 0x0B, 0x00, 0x00, 0x73, 0x35, 0x21, 0x01, 0x21, 0x15, 0x21, + 0x01, 0x21, 0x35, 0x21, 0x15, 0xA3, 0x01, 0xDE, 0x02, 0x92, 0x02, 0x4A, + 0xFE, 0x25, 0xFD, 0x6D, 0x01, 0xB6, 0x02, 0xB8, 0xBB, 0x05, 0x17, 0xBB, + 0xFA, 0xE9, 0xBB, 0xBB, 0x00, 0x03, 0x00, 0xD1, 0x00, 0x00, 0x06, 0xA3, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x06, 0x00, 0x26, 0x00, 0x00, 0x41, 0x37, + 0x01, 0x07, 0x01, 0x11, 0x21, 0x17, 0x35, 0x32, 0x04, 0x16, 0x12, 0x15, + 0x14, 0x02, 0x06, 0x04, 0x23, 0x22, 0x24, 0x26, 0x02, 0x35, 0x33, 0x14, + 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x01, 0x0C, + 0x83, 0x02, 0x6C, 0x81, 0xFD, 0x57, 0x02, 0x12, 0xD8, 0x9B, 0x01, 0x0D, + 0xCD, 0x73, 0x73, 0xCD, 0xFE, 0xF3, 0x9B, 0x9A, 0xFE, 0xF2, 0xCE, 0x74, + 0xBB, 0x57, 0x9A, 0xCB, 0x73, 0x74, 0xCA, 0x99, 0x57, 0x57, 0x99, 0xCA, + 0x05, 0x15, 0x83, 0xFD, 0x92, 0x82, 0x01, 0x18, 0x02, 0x12, 0xBB, 0xBB, + 0x74, 0xCD, 0xFE, 0xF2, 0x9B, 0x9A, 0xFE, 0xF2, 0xCC, 0x74, 0x74, 0xCC, + 0x01, 0x0E, 0x9A, 0x73, 0xCA, 0x99, 0x57, 0x56, 0x99, 0xCB, 0x73, 0x74, + 0xCB, 0x99, 0x57, 0x00, 0x02, 0x00, 0xD1, 0x00, 0x00, 0x06, 0xA3, 0x07, + 0x29, 0x00, 0x1F, 0x00, 0x22, 0x00, 0x00, 0x41, 0x35, 0x32, 0x04, 0x16, + 0x12, 0x15, 0x14, 0x02, 0x06, 0x04, 0x23, 0x22, 0x24, 0x26, 0x02, 0x35, + 0x33, 0x14, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, + 0x03, 0x01, 0x01, 0x03, 0xBB, 0x9B, 0x01, 0x0D, 0xCD, 0x73, 0x73, 0xCD, + 0xFE, 0xF3, 0x9B, 0x9A, 0xFE, 0xF2, 0xCE, 0x74, 0xBB, 0x57, 0x9A, 0xCB, + 0x73, 0x74, 0xCA, 0x99, 0x57, 0x57, 0x99, 0xCA, 0x4A, 0xFE, 0x3A, 0x01, + 0xC6, 0x05, 0x17, 0xBB, 0x74, 0xCD, 0xFE, 0xF2, 0x9B, 0x9A, 0xFE, 0xF2, + 0xCC, 0x74, 0x74, 0xCC, 0x01, 0x0E, 0x9A, 0x73, 0xCA, 0x99, 0x57, 0x56, + 0x99, 0xCB, 0x73, 0x74, 0xCB, 0x99, 0x57, 0xFE, 0x8C, 0x01, 0xC3, 0x01, + 0xC3, 0x00, 0x02, 0x00, 0xD1, 0x00, 0x00, 0x06, 0xA3, 0x07, 0x29, 0x00, + 0x1F, 0x00, 0x22, 0x00, 0x00, 0x61, 0x22, 0x24, 0x26, 0x02, 0x35, 0x34, + 0x12, 0x36, 0x24, 0x33, 0x15, 0x22, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, + 0x33, 0x32, 0x3E, 0x02, 0x35, 0x33, 0x14, 0x02, 0x06, 0x04, 0x03, 0x11, + 0x01, 0x03, 0xBB, 0x9B, 0xFE, 0xF2, 0xCD, 0x74, 0x74, 0xCD, 0x01, 0x0E, + 0x9B, 0x73, 0xCB, 0x9A, 0x57, 0x57, 0x99, 0xCC, 0x73, 0x74, 0xCA, 0x99, + 0x57, 0xBA, 0x73, 0xCD, 0xFE, 0xF2, 0xC5, 0x01, 0xC6, 0x74, 0xCC, 0x01, + 0x0E, 0x9A, 0x9B, 0x01, 0x0E, 0xCD, 0x74, 0xBB, 0x57, 0x99, 0xCA, 0x75, + 0x74, 0xCA, 0x99, 0x56, 0x56, 0x9A, 0xC9, 0x74, 0x9A, 0xFE, 0xF2, 0xCC, + 0x74, 0x03, 0xA3, 0x03, 0x86, 0xFE, 0x3D, 0x00, 0x04, 0x00, 0x97, 0x00, + 0x00, 0x08, 0xE9, 0x05, 0xD2, 0x00, 0x04, 0x00, 0x09, 0x00, 0x0D, 0x00, + 0x11, 0x00, 0x00, 0x61, 0x01, 0x01, 0x21, 0x11, 0x25, 0x21, 0x11, 0x21, + 0x01, 0x01, 0x07, 0x01, 0x37, 0x11, 0x27, 0x01, 0x17, 0x03, 0x7B, 0xFD, + 0x1C, 0x02, 0xE4, 0x05, 0x6E, 0xFA, 0xDE, 0x04, 0x69, 0xFB, 0x97, 0xFD, + 0xD3, 0x05, 0x92, 0x7D, 0xFD, 0x1C, 0x7C, 0x7C, 0x02, 0xE4, 0x7D, 0x02, + 0xE8, 0x02, 0xEA, 0xFA, 0x2E, 0xB8, 0x04, 0x61, 0xFD, 0xCF, 0xFE, 0xD0, + 0x7E, 0x02, 0xDF, 0x7F, 0xFC, 0xA2, 0x7E, 0x02, 0xE0, 0x7F, 0x00, 0x04, + 0x00, 0xA3, 0x00, 0x00, 0x08, 0xF7, 0x05, 0xD2, 0x00, 0x04, 0x00, 0x08, + 0x00, 0x0C, 0x00, 0x11, 0x00, 0x00, 0x73, 0x11, 0x21, 0x09, 0x02, 0x27, + 0x01, 0x17, 0x03, 0x01, 0x37, 0x01, 0x01, 0x21, 0x01, 0x01, 0x21, 0xA3, + 0x05, 0x6E, 0x02, 0xE6, 0xFD, 0x1A, 0xFC, 0xCD, 0x7C, 0x02, 0xE4, 0x7C, + 0x7C, 0xFD, 0x1C, 0x7C, 0x02, 0xE4, 0xFB, 0x9A, 0x04, 0x69, 0x02, 0x2E, + 0xFD, 0xD2, 0xFB, 0x97, 0x05, 0xD2, 0xFD, 0x16, 0xFD, 0x18, 0x01, 0x3A, + 0x7E, 0x02, 0xE0, 0x7F, 0xFD, 0x21, 0x02, 0xDF, 0x7F, 0xFD, 0x20, 0xFF, + 0x00, 0x02, 0x30, 0x02, 0x31, 0x00, 0x04, 0x00, 0x8E, 0x00, 0x00, 0x07, + 0x6C, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, + 0x00, 0x73, 0x11, 0x21, 0x11, 0x25, 0x21, 0x11, 0x21, 0x01, 0x01, 0x37, + 0x01, 0x05, 0x27, 0x01, 0x17, 0x8E, 0x06, 0xDE, 0xF9, 0xDB, 0x05, 0x6C, + 0xFA, 0x94, 0x03, 0xEB, 0xFD, 0x1A, 0x7E, 0x02, 0xE4, 0xFD, 0x1C, 0x7E, + 0x02, 0xE6, 0x7C, 0x05, 0xD2, 0xFA, 0x2E, 0xB8, 0x04, 0x61, 0xFC, 0x21, + 0x02, 0xDF, 0x7F, 0xFD, 0x20, 0x7E, 0x7E, 0x02, 0xE0, 0x7F, 0x00, 0x02, + 0x00, 0x6F, 0x00, 0xDC, 0x06, 0x4B, 0x05, 0xE8, 0x00, 0x03, 0x00, 0x06, + 0x00, 0x00, 0x77, 0x11, 0x21, 0x11, 0x09, 0x02, 0x71, 0x05, 0xD6, 0xFA, + 0x28, 0x02, 0xEE, 0x02, 0xEE, 0xDC, 0x01, 0x29, 0xFE, 0xD7, 0x02, 0x0C, + 0x03, 0x00, 0xFD, 0x00, 0x00, 0x04, 0x00, 0xB3, 0x00, 0xC9, 0x07, 0x12, + 0x05, 0xD2, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x00, + 0x65, 0x01, 0x01, 0x03, 0x35, 0x21, 0x15, 0x23, 0x11, 0x33, 0x11, 0x01, + 0x35, 0x21, 0x15, 0x02, 0x79, 0xFE, 0x3A, 0x01, 0xC6, 0x8D, 0x05, 0x21, + 0xB4, 0xB9, 0xFD, 0xA9, 0x02, 0x52, 0xC9, 0x01, 0xC3, 0x01, 0xC3, 0xFD, + 0xE1, 0xB8, 0xB8, 0x03, 0xA2, 0xFC, 0x5E, 0x02, 0xE8, 0xBA, 0xBA, 0x00, + 0x03, 0x00, 0xB3, 0x00, 0xC9, 0x07, 0x12, 0x05, 0xD2, 0x00, 0x02, 0x00, + 0x06, 0x00, 0x0A, 0x00, 0x00, 0x65, 0x01, 0x01, 0x03, 0x35, 0x21, 0x15, + 0x23, 0x11, 0x33, 0x11, 0x02, 0x79, 0xFE, 0x3A, 0x01, 0xC6, 0x8D, 0x05, + 0x21, 0xB4, 0xB9, 0xC9, 0x01, 0xC3, 0x01, 0xC3, 0xFD, 0xE1, 0xB8, 0xB8, + 0x03, 0xA2, 0xFC, 0x5E, 0x00, 0x03, 0x00, 0xB5, 0x00, 0xC9, 0x07, 0x13, + 0x05, 0xD2, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x65, 0x11, + 0x01, 0x05, 0x11, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x05, 0x4E, 0x01, + 0xC5, 0xF9, 0xA2, 0xB7, 0xB3, 0x05, 0x22, 0xC9, 0x03, 0x86, 0xFE, 0x3D, + 0x5C, 0x03, 0xA2, 0xFC, 0x5E, 0xB8, 0xB8, 0x00, 0x03, 0x00, 0xB3, 0x00, + 0x00, 0x07, 0x12, 0x06, 0x00, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, + 0x00, 0x49, 0x02, 0x03, 0x35, 0x21, 0x15, 0x03, 0x11, 0x33, 0x11, 0x02, + 0x79, 0xFE, 0x3A, 0x01, 0xC6, 0x8D, 0x05, 0x21, 0xB4, 0xB9, 0x02, 0x7A, + 0x01, 0xC3, 0x01, 0xC3, 0xFD, 0xE1, 0xB8, 0xB8, 0xFC, 0x1F, 0x04, 0x99, + 0xFB, 0x67, 0x00, 0x03, 0x00, 0xB5, 0x00, 0x00, 0x07, 0x13, 0x06, 0x00, + 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x41, 0x11, 0x01, 0x01, + 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x05, 0x4E, 0x01, 0xC5, 0xF9, + 0xA2, 0xB7, 0xB3, 0x05, 0x22, 0x02, 0x7A, 0x03, 0x86, 0xFE, 0x3D, 0xFB, + 0xC3, 0x04, 0x99, 0xFB, 0x67, 0x03, 0xE1, 0xB8, 0xB8, 0x00, 0x03, 0x00, + 0xB5, 0xFF, 0xE8, 0x05, 0xEF, 0x05, 0xD2, 0x00, 0x02, 0x00, 0x06, 0x00, + 0x0A, 0x00, 0x00, 0x45, 0x01, 0x21, 0x05, 0x03, 0x33, 0x11, 0x01, 0x35, + 0x21, 0x15, 0x04, 0x2C, 0xFE, 0x3D, 0x03, 0x86, 0xFD, 0xE1, 0x02, 0xBC, + 0xFC, 0x2B, 0x03, 0xD5, 0x18, 0x01, 0xC6, 0x8D, 0x04, 0xAD, 0xFB, 0x53, + 0x03, 0xFA, 0xB7, 0xB7, 0x00, 0x03, 0x00, 0xA3, 0x01, 0x25, 0x07, 0x61, + 0x04, 0xAB, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x49, 0x03, + 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x03, 0xB3, 0xFE, 0x3B, 0x01, + 0xC5, 0xFC, 0xF0, 0xB8, 0x01, 0xBF, 0x04, 0x47, 0x01, 0x25, 0x01, 0xC3, + 0x01, 0xC3, 0xFC, 0x7C, 0x03, 0x84, 0xFC, 0x7C, 0x01, 0x65, 0xBA, 0xBA, + 0x00, 0x03, 0x00, 0xA3, 0x01, 0x25, 0x07, 0x61, 0x04, 0xAB, 0x00, 0x02, + 0x00, 0x06, 0x00, 0x0A, 0x00, 0x00, 0x41, 0x11, 0x01, 0x05, 0x35, 0x21, + 0x15, 0x01, 0x11, 0x33, 0x11, 0x04, 0x51, 0x01, 0xC6, 0xFA, 0x8C, 0x04, + 0x48, 0x01, 0xBE, 0xB8, 0x01, 0x25, 0x03, 0x86, 0xFE, 0x3D, 0x5C, 0xBA, + 0xBA, 0xFE, 0x9B, 0x03, 0x84, 0xFC, 0x7C, 0x00, 0x04, 0x00, 0x9B, 0x00, + 0x00, 0x04, 0x21, 0x06, 0x0E, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, + 0x0E, 0x00, 0x00, 0x53, 0x09, 0x02, 0x35, 0x21, 0x15, 0x01, 0x11, 0x33, + 0x11, 0x01, 0x35, 0x21, 0x15, 0x9B, 0x01, 0xC3, 0x01, 0xC3, 0xFC, 0xF0, + 0x02, 0x9B, 0xFE, 0x56, 0xB8, 0xFE, 0x57, 0x02, 0x9B, 0x04, 0x48, 0x01, + 0xC6, 0xFE, 0x3A, 0xFD, 0x0E, 0xAB, 0xAB, 0xFE, 0xAA, 0x04, 0xDE, 0xFB, + 0x22, 0x02, 0xA5, 0xAA, 0xAA, 0x00, 0x04, 0x00, 0x9B, 0xFF, 0xD2, 0x04, + 0x21, 0x05, 0xE0, 0x00, 0x02, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, + 0x00, 0x45, 0x01, 0x21, 0x25, 0x35, 0x21, 0x15, 0x01, 0x11, 0x33, 0x11, + 0x01, 0x35, 0x21, 0x15, 0x02, 0x5E, 0xFE, 0x3D, 0x03, 0x86, 0xFC, 0xF0, + 0x02, 0x9B, 0xFE, 0x56, 0xB8, 0xFE, 0x57, 0x02, 0x9B, 0x2E, 0x01, 0xC6, + 0xF9, 0xAA, 0xAA, 0xFE, 0x71, 0x04, 0xDE, 0xFB, 0x22, 0x02, 0xDD, 0xAB, + 0xAB, 0x00, 0x01, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x00, + 0x17, 0x00, 0x00, 0x41, 0x22, 0x24, 0x00, 0x00, 0x02, 0x35, 0x34, 0x12, + 0x00, 0x00, 0x24, 0x33, 0x32, 0x04, 0x00, 0x00, 0x12, 0x15, 0x14, 0x02, + 0x00, 0x00, 0x04, 0x05, 0x8F, 0xE8, 0xFE, 0x5D, 0xFE, 0xA2, 0xFE, 0xFF, + 0x8D, 0x8D, 0x01, 0x01, 0x01, 0x5E, 0x01, 0xA4, 0xE7, 0xE8, 0x01, 0xA4, + 0x01, 0x5D, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA3, 0xFE, 0x5C, + 0xFD, 0x72, 0x8D, 0x01, 0x01, 0x01, 0x5D, 0x01, 0xA4, 0xE8, 0xE8, 0x01, + 0xA3, 0x01, 0x5E, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA2, 0xFE, + 0x5D, 0xE8, 0xE8, 0xFE, 0x5C, 0xFE, 0xA3, 0xFE, 0xFF, 0x8D, 0x00, 0x02, + 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x00, 0x17, 0x00, 0x2F, + 0x00, 0x00, 0x41, 0x22, 0x24, 0x00, 0x00, 0x02, 0x35, 0x34, 0x12, 0x00, + 0x00, 0x24, 0x33, 0x32, 0x04, 0x00, 0x00, 0x12, 0x15, 0x14, 0x02, 0x00, + 0x00, 0x04, 0x27, 0x32, 0x24, 0x24, 0x12, 0x12, 0x35, 0x34, 0x02, 0x02, + 0x24, 0x24, 0x23, 0x22, 0x04, 0x04, 0x02, 0x02, 0x15, 0x14, 0x12, 0x12, + 0x04, 0x04, 0x05, 0x8F, 0xE8, 0xFE, 0x5D, 0xFE, 0xA2, 0xFE, 0xFF, 0x8D, + 0x8D, 0x01, 0x01, 0x01, 0x5E, 0x01, 0xA4, 0xE7, 0xE8, 0x01, 0xA4, 0x01, + 0x5D, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA3, 0xFE, 0x5C, 0xE7, + 0xC5, 0x01, 0x67, 0x01, 0x2C, 0xDB, 0x79, 0x79, 0xDB, 0xFE, 0xD4, 0xFE, + 0x99, 0xC5, 0xC7, 0xFE, 0x99, 0xFE, 0xD4, 0xDB, 0x79, 0x79, 0xDB, 0x01, + 0x2C, 0x01, 0x67, 0xFD, 0x72, 0x8D, 0x01, 0x01, 0x01, 0x5D, 0x01, 0xA4, + 0xE8, 0xE8, 0x01, 0xA3, 0x01, 0x5E, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, + 0xFE, 0xA2, 0xFE, 0x5D, 0xE8, 0xE8, 0xFE, 0x5C, 0xFE, 0xA3, 0xFE, 0xFF, + 0x8D, 0xC7, 0x79, 0xDC, 0x01, 0x2D, 0x01, 0x67, 0xC7, 0xC7, 0x01, 0x68, + 0x01, 0x2B, 0xDD, 0x79, 0x79, 0xDC, 0xFE, 0xD3, 0xFE, 0x99, 0xC7, 0xC7, + 0xFE, 0x98, 0xFE, 0xD4, 0xDC, 0x79, 0x00, 0x02, 0x00, 0x40, 0xFD, 0xA2, + 0x0A, 0xCC, 0x08, 0x2F, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x00, 0x41, 0x26, + 0x35, 0x11, 0x34, 0x36, 0x33, 0x21, 0x36, 0x16, 0x15, 0x11, 0x06, 0x06, + 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x11, 0x36, 0x26, 0x23, 0x21, 0x22, + 0x06, 0x15, 0x11, 0x14, 0x16, 0x01, 0x3A, 0xFA, 0x80, 0x7A, 0x08, 0x98, + 0x7A, 0x80, 0x01, 0x7F, 0x7A, 0xF7, 0x53, 0x08, 0xC2, 0x15, 0x1A, 0x01, + 0x1B, 0x15, 0xF7, 0x3E, 0x15, 0x1C, 0x1C, 0xFD, 0xA2, 0x02, 0xFA, 0x08, + 0x96, 0x7A, 0x80, 0x01, 0x81, 0x7A, 0xF7, 0x6A, 0x7B, 0x81, 0xB6, 0x1A, + 0x16, 0x08, 0xC2, 0x15, 0x1B, 0x1B, 0x15, 0xF7, 0x3E, 0x16, 0x1A, 0xFF, + 0xFF, 0x00, 0x18, 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x06, 0x07, + 0x69, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x06, 0x07, 0x6A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x02, 0x02, 0xDA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x41, 0x03, 0x12, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x49, 0x02, 0x8A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x54, 0x03, 0x0E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x5F, 0x03, 0x12, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x89, 0x03, 0x41, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x8D, 0x02, 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0xA1, 0x02, 0xAF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x00, 0xC5, 0x04, 0x91, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x0A, 0x03, 0x4F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x0F, 0x02, 0xFB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x19, 0x03, 0x64, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x24, 0x02, 0x0B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x2C, 0x02, 0xA9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x41, 0x02, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x77, 0x03, 0x18, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x7E, 0x02, 0x8C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x80, 0x03, 0x11, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x8D, 0x03, 0x09, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0x9B, 0x03, 0x0E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0xA8, 0x02, 0xB6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0xC8, 0x02, 0xD7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0xCB, 0x01, 0xAA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0xD2, 0x02, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0xD8, 0x02, 0xE4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x01, 0xF0, 0x03, 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x3B, 0x03, 0x0A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x3C, 0x03, 0xD7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x3D, 0x03, 0x41, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x3F, 0x03, 0x1B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x40, 0x02, 0xC5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x41, 0x03, 0x30, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x43, 0x03, 0x25, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x44, 0x03, 0x6A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x45, 0x03, 0x28, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x46, 0x03, 0x27, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x47, 0x03, 0x0A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x48, 0x03, 0xBD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x49, 0x03, 0x19, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x4A, 0x02, 0xC6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x4B, 0x03, 0x39, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x4C, 0x03, 0x39, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x91, 0x04, 0x94, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0x95, 0x03, 0x76, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xAB, 0x03, 0x1A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xB1, 0x03, 0xCC, 0x00, 0x8A, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xEA, 0x02, 0xD8, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xEB, 0x03, 0x27, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xEE, 0x02, 0xFC, 0x00, 0x9F, 0x00, 0x04, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x00, 0x03, 0x00, 0x07, 0x00, 0x1F, 0x00, + 0x37, 0x00, 0x00, 0x65, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, 0x01, + 0x22, 0x24, 0x00, 0x00, 0x02, 0x35, 0x34, 0x12, 0x00, 0x00, 0x24, 0x33, + 0x32, 0x04, 0x00, 0x00, 0x12, 0x15, 0x14, 0x02, 0x00, 0x00, 0x04, 0x27, + 0x32, 0x24, 0x24, 0x12, 0x12, 0x35, 0x34, 0x02, 0x02, 0x24, 0x24, 0x23, + 0x22, 0x04, 0x04, 0x02, 0x02, 0x15, 0x14, 0x12, 0x12, 0x04, 0x04, 0x05, + 0x2F, 0xC0, 0xFC, 0xFD, 0x05, 0x46, 0xFD, 0x5D, 0xE8, 0xFE, 0x5D, 0xFE, + 0xA2, 0xFE, 0xFF, 0x8D, 0x8D, 0x01, 0x01, 0x01, 0x5E, 0x01, 0xA4, 0xE7, + 0xE8, 0x01, 0xA4, 0x01, 0x5D, 0x01, 0x01, 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, + 0xA3, 0xFE, 0x5C, 0xE7, 0xC5, 0x01, 0x67, 0x01, 0x2C, 0xDB, 0x79, 0x79, + 0xDB, 0xFE, 0xD4, 0xFE, 0x9A, 0xC6, 0xC7, 0xFE, 0x99, 0xFE, 0xD4, 0xDB, + 0x79, 0x79, 0xDB, 0x01, 0x2C, 0x01, 0x67, 0x47, 0x05, 0x46, 0xFA, 0xBA, + 0x02, 0x47, 0xB7, 0xB7, 0xFA, 0xE4, 0x8D, 0x01, 0x01, 0x01, 0x5D, 0x01, + 0xA4, 0xE8, 0xE8, 0x01, 0xA3, 0x01, 0x5E, 0x01, 0x01, 0x8D, 0x8D, 0xFE, + 0xFF, 0xFE, 0xA2, 0xFE, 0x5D, 0xE8, 0xE8, 0xFE, 0x5C, 0xFE, 0xA3, 0xFE, + 0xFF, 0x8D, 0xC7, 0x79, 0xDC, 0x01, 0x2D, 0x01, 0x67, 0xC7, 0xC7, 0x01, + 0x68, 0x01, 0x2B, 0xDD, 0x79, 0x79, 0xDC, 0xFE, 0xD3, 0xFE, 0x99, 0xC7, + 0xC7, 0xFE, 0x98, 0xFE, 0xD4, 0xDC, 0x79, 0xFF, 0xFF, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, 0x00, + 0x07, 0x05, 0xF1, 0x02, 0xFC, 0x00, 0x9F, 0x00, 0x03, 0x00, 0x18, 0xFD, + 0x72, 0x0B, 0x06, 0x08, 0x60, 0x00, 0x03, 0x00, 0x1B, 0x00, 0x33, 0x00, + 0x00, 0x65, 0x27, 0x01, 0x17, 0x01, 0x22, 0x24, 0x00, 0x00, 0x02, 0x35, + 0x34, 0x12, 0x00, 0x00, 0x24, 0x33, 0x32, 0x04, 0x00, 0x00, 0x12, 0x15, + 0x14, 0x02, 0x00, 0x00, 0x04, 0x27, 0x32, 0x24, 0x24, 0x12, 0x12, 0x35, + 0x34, 0x02, 0x02, 0x24, 0x24, 0x23, 0x22, 0x04, 0x04, 0x02, 0x02, 0x15, + 0x14, 0x12, 0x12, 0x04, 0x04, 0x04, 0x0D, 0x97, 0x03, 0x9C, 0x97, 0xFD, + 0xE6, 0xE8, 0xFE, 0x5D, 0xFE, 0xA2, 0xFE, 0xFF, 0x8D, 0x8D, 0x01, 0x01, + 0x01, 0x5E, 0x01, 0xA4, 0xE7, 0xE8, 0x01, 0xA4, 0x01, 0x5D, 0x01, 0x01, + 0x8D, 0x8D, 0xFE, 0xFF, 0xFE, 0xA3, 0xFE, 0x5C, 0xE7, 0xC5, 0x01, 0x67, + 0x01, 0x2C, 0xDB, 0x79, 0x79, 0xDB, 0xFE, 0xD4, 0xFE, 0x99, 0xC5, 0xC7, + 0xFE, 0x99, 0xFE, 0xD4, 0xDB, 0x79, 0x79, 0xDB, 0x01, 0x2C, 0x01, 0x67, + 0x84, 0x7E, 0x04, 0x4D, 0x7E, 0xF8, 0xA1, 0x8D, 0x01, 0x01, 0x01, 0x5D, + 0x01, 0xA4, 0xE8, 0xE8, 0x01, 0xA3, 0x01, 0x5E, 0x01, 0x01, 0x8D, 0x8D, + 0xFE, 0xFF, 0xFE, 0xA2, 0xFE, 0x5D, 0xE8, 0xE8, 0xFE, 0x5C, 0xFE, 0xA3, + 0xFE, 0xFF, 0x8D, 0xC7, 0x79, 0xDC, 0x01, 0x2D, 0x01, 0x67, 0xC7, 0xC7, + 0x01, 0x68, 0x01, 0x2B, 0xDD, 0x79, 0x79, 0xDC, 0xFE, 0xD3, 0xFE, 0x99, + 0xC7, 0xC7, 0xFE, 0x98, 0xFE, 0xD4, 0xDC, 0x79, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xF2, 0x02, 0xFB, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xF3, 0x02, 0xFC, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x07, 0x18, 0x02, 0x37, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x07, 0x19, 0x02, 0x37, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x07, 0x1A, 0x02, 0x43, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x07, 0x06, 0x01, 0xF0, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x07, 0x0B, 0x01, 0xBA, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x07, 0x30, 0x02, 0x22, 0x00, 0x3F, 0xFF, 0xFF, 0x00, 0x18, + 0xFD, 0x72, 0x0B, 0x06, 0x08, 0x60, 0x06, 0x26, 0x07, 0x69, 0x00, 0x00, + 0x00, 0x07, 0x07, 0x31, 0x02, 0x1F, 0x00, 0x45, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x02, 0x02, 0xD1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x41, 0x02, 0xF0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x49, 0x02, 0x82, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x54, 0x02, 0xBA, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x5F, 0x03, 0x0E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x89, 0x03, 0x39, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x8D, 0x02, 0x98, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x97, 0x02, 0x86, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0xA1, 0x02, 0xA6, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x00, 0xC5, 0x04, 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x0A, 0x03, 0x5D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x0F, 0x02, 0xC5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x19, 0x03, 0x3C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x24, 0x02, 0x02, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x2C, 0x02, 0xA0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x41, 0x02, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x77, 0x03, 0x0F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x7E, 0x02, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x80, 0x03, 0x08, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x8D, 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0x9B, 0x03, 0x05, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0xA8, 0x02, 0xAD, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0xC8, 0x02, 0xCE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0xCB, 0x01, 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0xD2, 0x02, 0xD7, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0xD8, 0x02, 0xDB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x01, 0xF0, 0x03, 0x06, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x3B, 0x03, 0x01, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x3C, 0x03, 0xCE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x3D, 0x03, 0x38, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x3F, 0x03, 0x0D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x40, 0x02, 0xDB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x41, 0x03, 0x28, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x43, 0x03, 0x1C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x44, 0x03, 0x62, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x45, 0x03, 0x1F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x46, 0x03, 0x1D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x47, 0x03, 0x01, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x48, 0x03, 0xCE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x49, 0x03, 0x10, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x4A, 0x02, 0xED, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x4B, 0x03, 0x2F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x4C, 0x03, 0x30, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x91, 0x04, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0x95, 0x03, 0x6C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xAB, 0x03, 0x11, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xB1, 0x03, 0xC3, 0x00, 0x8A, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xEA, 0x02, 0xF3, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xEB, 0x02, 0xF3, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, + 0x00, 0x07, 0x05, 0xEE, 0x02, 0xF3, 0x00, 0x9F, 0x00, 0x04, 0x00, 0x40, + 0xFD, 0xA2, 0x0A, 0xCC, 0x08, 0x2F, 0x00, 0x03, 0x00, 0x07, 0x00, 0x16, + 0x00, 0x26, 0x00, 0x00, 0x65, 0x11, 0x33, 0x11, 0x01, 0x35, 0x21, 0x15, + 0x01, 0x26, 0x35, 0x11, 0x34, 0x36, 0x33, 0x21, 0x36, 0x16, 0x15, 0x11, + 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x11, 0x36, 0x26, 0x23, + 0x21, 0x22, 0x06, 0x15, 0x11, 0x14, 0x16, 0x05, 0x26, 0xC0, 0xFC, 0xFD, + 0x05, 0x46, 0xF9, 0x11, 0xFA, 0x80, 0x7A, 0x08, 0x98, 0x7A, 0x80, 0x01, + 0x7F, 0x7A, 0xF7, 0x53, 0x08, 0xC2, 0x15, 0x1A, 0x01, 0x1B, 0x15, 0xF7, + 0x3E, 0x15, 0x1C, 0x1C, 0x47, 0x05, 0x46, 0xFA, 0xBA, 0x02, 0x47, 0xB7, + 0xB7, 0xFB, 0x14, 0x02, 0xFA, 0x08, 0x96, 0x7A, 0x80, 0x01, 0x81, 0x7A, + 0xF7, 0x6A, 0x7B, 0x81, 0xB6, 0x1A, 0x16, 0x08, 0xC2, 0x15, 0x1B, 0x1B, + 0x15, 0xF7, 0x3E, 0x16, 0x1A, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, + 0xCC, 0x08, 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, + 0xF1, 0x02, 0xF3, 0x00, 0x9F, 0x00, 0x03, 0x00, 0x40, 0xFD, 0xA2, 0x0A, + 0xCC, 0x08, 0x2F, 0x00, 0x03, 0x00, 0x12, 0x00, 0x22, 0x00, 0x00, 0x65, + 0x27, 0x01, 0x17, 0x01, 0x26, 0x35, 0x11, 0x34, 0x36, 0x33, 0x21, 0x36, + 0x16, 0x15, 0x11, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x35, 0x11, + 0x36, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, 0x11, 0x14, 0x16, 0x04, 0x04, + 0x97, 0x03, 0x9C, 0x97, 0xF9, 0x9A, 0xFA, 0x80, 0x7A, 0x08, 0x98, 0x7A, + 0x80, 0x01, 0x7F, 0x7A, 0xF7, 0x53, 0x08, 0xC2, 0x15, 0x1A, 0x01, 0x1B, + 0x15, 0xF7, 0x3E, 0x15, 0x1C, 0x1C, 0x84, 0x7E, 0x04, 0x4D, 0x7E, 0xF8, + 0xD1, 0x02, 0xFA, 0x08, 0x96, 0x7A, 0x80, 0x01, 0x81, 0x7A, 0xF7, 0x6A, + 0x7B, 0x81, 0xB6, 0x1A, 0x16, 0x08, 0xC2, 0x15, 0x1B, 0x1B, 0x15, 0xF7, + 0x3E, 0x16, 0x1A, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0xF2, 0x02, + 0xF2, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x05, 0xF3, 0x02, + 0xF3, 0x00, 0x9F, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x07, 0x18, 0x02, + 0x2E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x07, 0x19, 0x02, + 0x2E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x07, 0x1A, 0x02, + 0x3A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x07, 0x06, 0x01, + 0xE7, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x07, 0x0B, 0x01, + 0xB1, 0x00, 0x5D, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x07, 0x30, 0x02, + 0x17, 0x00, 0x3F, 0xFF, 0xFF, 0x00, 0x40, 0xFD, 0xA2, 0x0A, 0xCC, 0x08, + 0x2F, 0x06, 0x26, 0x07, 0x6A, 0x00, 0x00, 0x00, 0x07, 0x07, 0x31, 0x02, + 0x16, 0x00, 0x45, 0xFF, 0xFF, 0x00, 0x58, 0xFD, 0x93, 0x05, 0x83, 0x05, + 0xE9, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0xF8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFD, 0x93, 0x05, 0x84, 0x05, + 0xE9, 0x06, 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0xF9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0x93, 0x05, 0x2A, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0xAB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0x93, 0x04, 0x28, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0x4E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0x93, 0x05, 0x3D, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0xE5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0x93, 0x04, 0xE3, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0x95, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x52, 0xFD, 0x93, 0x04, 0xBB, 0x05, + 0xE9, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0x88, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFD, 0x93, 0x04, 0x3E, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, + 0x32, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x64, 0xFD, 0x93, 0x01, 0x6A, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x06, 0x07, 0xF7, 0xE6, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFD, 0x93, 0x01, 0xEE, 0x05, 0xD2, 0x06, + 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x06, 0x07, 0xF7, 0x26, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFD, 0x93, 0x04, 0x10, 0x04, 0x41, 0x06, 0x26, 0x03, + 0x05, 0x00, 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, 0x45, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x65, 0xFD, 0x93, 0x02, 0xA6, 0x04, 0x3B, 0x06, 0x26, 0x03, + 0x54, 0x00, 0x00, 0x00, 0x06, 0x07, 0xF7, 0xE6, 0x00, 0xFF, 0xFF, 0x00, + 0x4B, 0xFD, 0x93, 0x03, 0xB8, 0x04, 0x43, 0x06, 0x26, 0x03, 0x67, 0x00, + 0x00, 0x00, 0x07, 0x07, 0xF7, 0x01, 0x03, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x11, 0xFD, 0x93, 0x02, 0x7B, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, + 0x00, 0x00, 0x07, 0x07, 0xF7, 0x00, 0x91, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFD, 0x93, 0x02, 0x32, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, + 0x00, 0x00, 0x06, 0x07, 0xF7, 0x48, 0x00, 0x00, 0x01, 0x00, 0x7F, 0xFD, + 0x93, 0x01, 0x85, 0xFF, 0x86, 0x00, 0x16, 0x00, 0x00, 0x53, 0x27, 0x36, + 0x36, 0x35, 0x34, 0x34, 0x35, 0x33, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xB0, 0x26, 0x50, 0x48, + 0x19, 0x2A, 0x26, 0x2D, 0x3F, 0x46, 0x37, 0x3A, 0x4F, 0x77, 0xFD, 0x93, + 0x54, 0x27, 0x65, 0x65, 0x06, 0x0A, 0x05, 0x22, 0x30, 0x42, 0x32, 0x33, + 0x44, 0x59, 0x53, 0x7F, 0xA0, 0xFF, 0xFF, 0x00, 0x66, 0xFE, 0xC2, 0x01, + 0x9B, 0x01, 0x08, 0x04, 0x07, 0x07, 0xFE, 0xFF, 0xFB, 0xFB, 0x23, 0xFF, + 0xFF, 0x00, 0x66, 0xFE, 0xC2, 0x01, 0x9B, 0x04, 0x05, 0x04, 0x27, 0x07, + 0xFE, 0xFF, 0xFB, 0xFB, 0x23, 0x00, 0x07, 0x05, 0xDC, 0x00, 0x0A, 0x02, + 0xFB, 0x00, 0x02, 0x00, 0x5B, 0xFE, 0xC2, 0x01, 0x8F, 0x04, 0x05, 0x00, + 0x18, 0x00, 0x24, 0x00, 0x00, 0x41, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, 0x14, 0x14, + 0x15, 0x14, 0x16, 0x16, 0x17, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x01, 0x55, 0x4B, 0x71, 0x3E, 0x5C, 0x44, + 0x41, 0x53, 0x4B, 0x35, 0x2D, 0x32, 0x1D, 0x26, 0x4F, 0x40, 0x91, 0x3B, + 0x53, 0x53, 0x3B, 0x3B, 0x53, 0x53, 0xFE, 0xC2, 0x20, 0x67, 0x94, 0x63, + 0x61, 0x67, 0x50, 0x3C, 0x3B, 0x4D, 0x3A, 0x29, 0x07, 0x0D, 0x07, 0x4D, + 0x65, 0x47, 0x1F, 0x03, 0xC6, 0x53, 0x3A, 0x3C, 0x52, 0x52, 0x3B, 0x3C, + 0x52, 0xFF, 0xFF, 0x00, 0x6B, 0x03, 0xAD, 0x03, 0x3C, 0x05, 0xF3, 0x04, + 0x26, 0x07, 0xFD, 0x00, 0x00, 0x00, 0x07, 0x07, 0xFD, 0x01, 0x9D, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x6B, 0x03, 0x9E, 0x03, 0x3C, 0x05, 0xE5, 0x04, + 0x26, 0x07, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x07, 0xFE, 0x01, 0x9D, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x6B, 0x03, 0xAD, 0x01, 0x9F, 0x05, 0xF3, 0x00, + 0x18, 0x00, 0x00, 0x41, 0x17, 0x0E, 0x02, 0x15, 0x14, 0x14, 0x15, 0x23, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x01, 0x65, 0x2D, 0x40, 0x4F, 0x26, 0x1D, 0x32, 0x2D, + 0x35, 0x4B, 0x53, 0x41, 0x44, 0x5C, 0x3E, 0x71, 0x05, 0xF3, 0x63, 0x1E, + 0x47, 0x64, 0x4E, 0x07, 0x0D, 0x07, 0x2A, 0x39, 0x4D, 0x3B, 0x3C, 0x50, + 0x67, 0x61, 0x63, 0x93, 0x69, 0x00, 0x01, 0x00, 0x6B, 0x03, 0x9E, 0x01, + 0x9F, 0x05, 0xE5, 0x00, 0x18, 0x00, 0x00, 0x53, 0x27, 0x3E, 0x02, 0x35, + 0x34, 0x34, 0x35, 0x33, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0xA5, 0x2D, 0x3F, 0x50, 0x26, + 0x1D, 0x31, 0x2E, 0x35, 0x4B, 0x53, 0x41, 0x44, 0x5C, 0x3E, 0x71, 0x03, + 0x9E, 0x63, 0x1F, 0x46, 0x66, 0x4C, 0x08, 0x0C, 0x08, 0x29, 0x3B, 0x4D, + 0x3C, 0x3C, 0x50, 0x67, 0x62, 0x62, 0x94, 0x68, 0x00, 0x01, 0x00, 0x6B, + 0x03, 0x9E, 0x01, 0x9F, 0x05, 0xE5, 0x00, 0x18, 0x00, 0x00, 0x41, 0x2E, + 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x33, 0x14, 0x14, 0x15, 0x14, 0x16, 0x16, 0x17, 0x01, 0x65, + 0x4B, 0x71, 0x3E, 0x5C, 0x44, 0x41, 0x53, 0x4B, 0x35, 0x2D, 0x32, 0x1D, + 0x26, 0x4F, 0x40, 0x03, 0x9E, 0x20, 0x68, 0x94, 0x62, 0x62, 0x67, 0x50, + 0x3C, 0x3C, 0x4D, 0x3B, 0x29, 0x08, 0x0C, 0x08, 0x4C, 0x66, 0x46, 0x1F, + 0x00, 0x02, 0x00, 0x6B, 0x03, 0x9E, 0x03, 0x3C, 0x05, 0xE5, 0x00, 0x18, + 0x00, 0x31, 0x00, 0x00, 0x41, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, 0x14, 0x14, 0x15, + 0x14, 0x16, 0x16, 0x17, 0x05, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, 0x14, 0x14, 0x15, + 0x14, 0x16, 0x16, 0x17, 0x03, 0x02, 0x4B, 0x71, 0x3F, 0x5D, 0x44, 0x40, + 0x54, 0x4B, 0x35, 0x2D, 0x32, 0x1D, 0x26, 0x4F, 0x40, 0xFE, 0x36, 0x4B, + 0x71, 0x3E, 0x5C, 0x44, 0x41, 0x53, 0x4B, 0x35, 0x2D, 0x32, 0x1D, 0x26, + 0x4F, 0x40, 0x03, 0x9E, 0x20, 0x68, 0x94, 0x62, 0x62, 0x67, 0x50, 0x3C, + 0x3C, 0x4D, 0x3B, 0x29, 0x08, 0x0C, 0x08, 0x4C, 0x66, 0x46, 0x1F, 0x63, + 0x20, 0x68, 0x94, 0x62, 0x62, 0x67, 0x50, 0x3C, 0x3C, 0x4D, 0x3B, 0x29, + 0x08, 0x0C, 0x08, 0x4C, 0x66, 0x46, 0x1F, 0xFF, 0xFF, 0x00, 0x6B, 0xFE, + 0xC2, 0x01, 0x9F, 0x01, 0x08, 0x06, 0x07, 0x07, 0xFE, 0x00, 0x00, 0xFB, + 0x23, 0xFF, 0xFF, 0x00, 0x6B, 0xFE, 0xC0, 0x03, 0x3C, 0x01, 0x07, 0x04, + 0x27, 0x07, 0xFE, 0x00, 0x00, 0xFB, 0x22, 0x00, 0x07, 0x07, 0xFE, 0x01, + 0x9D, 0xFB, 0x22, 0xFF, 0xFF, 0x00, 0x18, 0xFE, 0x5D, 0x05, 0x5B, 0x07, + 0x87, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x01, + 0x1F, 0x01, 0xA4, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xCD, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x18, 0xFE, 0x5D, 0x05, 0x5B, 0x07, 0x89, 0x06, 0x26, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x01, 0x1E, 0x01, 0xA4, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0xCD, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x07, 0x7A, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE0, 0x00, 0x75, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x08, 0x64, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xF8, 0x00, 0x73, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, + 0x00, 0x05, 0x5B, 0x07, 0x7A, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0xCD, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0xFE, + 0x5D, 0x05, 0x5B, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x02, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0xCD, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0xD8, 0x07, 0x7A, 0x06, 0x26, 0x00, 0x41, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x8D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0x5D, 0x04, 0xD8, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x41, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x93, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x58, 0xFF, + 0xE9, 0x05, 0x7B, 0x07, 0x7A, 0x06, 0x26, 0x00, 0x49, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x02, 0x0D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x05, 0x41, 0x07, 0x7A, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x60, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0x5D, 0x05, 0x41, 0x05, 0xD2, 0x06, 0x26, 0x00, 0x54, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x74, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0x5D, 0x04, 0x6C, 0x07, 0x89, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, + 0x27, 0x0A, 0x8D, 0x00, 0xE0, 0x01, 0xA4, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x8E, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, + 0x36, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x8E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x5D, 0x04, 0x6C, 0x05, + 0xD2, 0x06, 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x8E, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x4F, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0x89, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x80, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x83, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, + 0x0C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, + 0x99, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0xF1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x5D, 0x05, 0x32, 0x05, + 0xD2, 0x06, 0x26, 0x00, 0xA1, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0xF1, 0xF9, 0x62, 0xFF, 0xFF, 0xFF, 0xC8, 0x00, 0x00, 0x02, 0x34, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFE, + 0xB8, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xC8, 0x00, 0x00, 0x02, 0x34, 0x08, + 0xC3, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF2, 0xFE, + 0xB1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x01, 0x6E, 0x07, + 0x7A, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, + 0x10, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x5D, 0x01, 0x6E, 0x05, + 0xD2, 0x06, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, + 0x0F, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x5D, 0x05, 0x2A, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0xBE, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0x5D, 0x04, 0x28, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x61, 0xF9, 0x62, 0xFF, 0xFF, 0xFF, 0xE5, 0xFE, 0x5D, 0x04, 0x28, 0x07, + 0x41, 0x06, 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x27, 0x08, 0xE1, 0x01, + 0x61, 0xF9, 0x62, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x55, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x06, 0x7A, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0x24, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x95, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x5D, 0x06, 0x7A, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x24, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x95, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xF7, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x8E, 0xFE, 0x5D, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x2C, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xF7, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x58, 0xFE, 0x5D, 0x05, 0xAD, 0x07, 0x89, 0x06, 0x26, 0x01, + 0x41, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x01, 0x66, 0x01, 0xA4, 0x00, + 0x07, 0x08, 0xE1, 0x02, 0x14, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x58, 0xFF, + 0xE9, 0x05, 0xAD, 0x07, 0x7A, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE0, 0x00, 0xBC, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, + 0xE9, 0x05, 0xAD, 0x08, 0x64, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xF8, 0x00, 0xBB, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, + 0xE9, 0x05, 0xAD, 0x07, 0x7A, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x02, 0x14, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFE, + 0x5D, 0x05, 0xAD, 0x05, 0xE9, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x02, 0x14, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x58, 0xFE, + 0x5D, 0x05, 0xAD, 0x06, 0xBB, 0x06, 0x26, 0x01, 0x45, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x02, 0x14, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x58, 0xFF, + 0xE9, 0x05, 0xAD, 0x08, 0x96, 0x06, 0x26, 0x01, 0x41, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xFC, 0x01, 0x19, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0xB9, 0x07, 0x7A, 0x06, 0x26, 0x01, 0x77, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x87, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0xE3, 0x07, 0x7A, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x9C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0x5D, 0x04, 0xE3, 0x05, 0xD2, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0xA8, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, + 0x5D, 0x04, 0xE3, 0x07, 0x41, 0x06, 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, + 0x27, 0x08, 0xE1, 0x01, 0xA8, 0xF9, 0x62, 0x00, 0x07, 0x06, 0xEB, 0x00, + 0xE1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x08, + 0x96, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF0, 0x00, + 0xD5, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFF, 0xE8, 0x04, 0xBB, 0x07, + 0x7A, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x94, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x52, 0xFE, 0x5D, 0x04, 0xBB, 0x05, + 0xE9, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x9B, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x52, 0xFE, 0x5D, 0x04, 0xBB, 0x07, + 0x7A, 0x06, 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x27, 0x08, 0xE1, 0x01, + 0x9B, 0xF9, 0x62, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x94, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0x9B, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x94, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x3A, 0xFE, 0x5D, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0x9B, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x93, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x92, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xC3, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF2, 0x00, 0x8C, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x89, 0xFE, 0x5D, 0x05, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x92, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xB3, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF4, 0x00, 0x8C, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0xC3, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF6, 0x00, 0x8B, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0x64, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF8, 0x00, 0x91, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x89, 0xFE, 0x5D, 0x05, 0x28, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xEA, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x89, 0xFE, 0x5D, 0x05, 0xDA, 0x06, 0xBB, 0x06, 0x26, 0x01, + 0xA9, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xEA, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x89, 0xFF, 0xE8, 0x05, 0x28, 0x08, 0x98, 0x06, 0x26, 0x01, + 0xA8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xFB, 0x01, 0x30, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0xFE, 0x5D, 0x05, 0x57, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0xC8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xC9, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xB1, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x01, 0x9E, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x07, 0xB1, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0xF6, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0xFE, 0x5D, 0x07, 0xB1, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0xF6, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x05, 0x42, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xD2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x69, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x05, 0x42, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xD2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xC1, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xD8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x64, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xD8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xBC, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x18, 0xFE, 0x5D, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0xD8, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xBD, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x48, 0x00, 0x00, 0x04, 0xB9, 0x07, 0x7A, 0x06, 0x26, 0x01, + 0xF0, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x91, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x48, 0xFE, 0x5D, 0x04, 0xB9, 0x05, 0xD2, 0x06, 0x26, 0x01, + 0xF0, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x90, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x84, 0x07, 0x7A, 0x06, 0x26, 0x00, + 0x97, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x0D, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, 0xB9, 0x07, 0x7A, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFF, 0x3C, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, 0xB9, 0x08, 0xC3, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF2, 0xFF, 0x36, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4D, 0x00, 0x00, 0x02, 0xB9, 0x07, 0x7A, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x94, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0x4D, 0xFE, 0x5D, 0x02, 0xB9, 0x05, 0xD2, 0x06, 0x26, 0x00, + 0xEA, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x94, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x4C, 0xFE, 0x5D, 0x03, 0xD0, 0x05, 0xE3, 0x06, 0x26, 0x01, + 0xFB, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x00, 0x83, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x30, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4C, 0xFE, + 0x5D, 0x03, 0xD0, 0x05, 0xE4, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, + 0x27, 0x0A, 0x8D, 0x00, 0x82, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x30, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, + 0xD6, 0x06, 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0xD9, + 0x00, 0xFF, 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x06, 0xC0, 0x06, + 0x26, 0x01, 0xFB, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF8, 0xD7, 0x00, 0xFF, + 0xFF, 0x00, 0x4C, 0xFF, 0xEE, 0x03, 0xD0, 0x05, 0xD6, 0x06, 0x26, 0x01, + 0xFB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x31, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4C, 0xFE, 0x5D, 0x03, 0xD0, 0x04, 0x41, 0x06, 0x26, 0x01, + 0xFB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x30, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x7D, 0xFF, 0xEB, 0x04, 0x65, 0x06, 0xA5, 0x06, 0x26, 0x02, + 0x42, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0xBB, 0x00, 0xCF, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x04, 0x65, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0x42, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x81, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, 0x05, 0xD6, 0x06, 0x26, 0x02, + 0x4A, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x57, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x06, 0xA5, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x17, 0x00, 0xCF, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, 0x32, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0x55, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x51, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, 0x29, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x66, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0x9C, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x4B, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x29, 0x05, 0xD6, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xE0, 0xF3, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x29, 0x05, 0xD6, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x4B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, + 0x29, 0x04, 0x44, 0x06, 0x26, 0x02, 0x66, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x4B, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x11, 0x00, 0x00, 0x02, + 0x91, 0x07, 0x88, 0x06, 0x26, 0x02, 0x87, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x00, 0x9A, 0x01, 0xB2, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, + 0x32, 0x05, 0xD6, 0x06, 0x26, 0x02, 0x92, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x52, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xB1, 0x00, 0x00, 0x04, + 0x10, 0x07, 0x7A, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE0, 0xFE, 0xA1, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x78, 0x00, 0x00, 0x04, + 0x10, 0x07, 0x7A, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0xFF, 0xF9, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x04, + 0x10, 0x05, 0xD2, 0x06, 0x26, 0x02, 0x9E, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x58, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x78, 0x00, 0x00, 0x01, + 0x58, 0x05, 0xD6, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xE1, 0xF9, 0x00, 0xFF, 0xFF, 0xFF, 0xB2, 0x00, 0x00, 0x02, 0x1E, 0x05, + 0xD6, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFE, + 0xA1, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xB2, 0x00, 0x00, 0x02, 0x1E, 0x07, + 0x1F, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xF2, 0xFE, + 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x78, 0xFE, 0x5D, 0x01, 0x58, 0x05, + 0xD6, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x08, 0xE1, 0xF9, + 0x00, 0x00, 0x07, 0x08, 0xE1, 0xFF, 0xFA, 0xF9, 0x62, 0xFF, 0xFF, 0xFF, + 0xEC, 0xFE, 0x5A, 0x01, 0x60, 0x05, 0xD6, 0x06, 0x26, 0x02, 0xB2, 0x00, + 0x00, 0x00, 0x26, 0x0A, 0x96, 0x9C, 0x00, 0x00, 0x06, 0x08, 0xE1, 0xF9, + 0x00, 0xFF, 0xFF, 0xFF, 0xC9, 0xFE, 0x5E, 0x01, 0x58, 0x05, 0xD6, 0x06, + 0x26, 0x02, 0xC7, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE1, 0xFA, 0x00, 0xFF, + 0xFF, 0xFF, 0x94, 0xFE, 0x5E, 0x02, 0x3A, 0x05, 0xD6, 0x06, 0x26, 0x02, + 0xC7, 0x00, 0x00, 0x00, 0x27, 0x0B, 0x61, 0xFF, 0x1B, 0xFF, 0xA6, 0x00, + 0x06, 0x08, 0xE1, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x04, + 0x3E, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x45, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, + 0xDC, 0x05, 0xD2, 0x04, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xCB, 0x01, 0x63, 0x02, 0x6F, 0xFF, 0xFF, 0x00, 0x77, 0xFE, 0x5D, 0x01, + 0x57, 0x05, 0xD2, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0xFF, 0xF8, 0xF9, 0x62, 0xFF, 0xFF, 0xFF, 0xCF, 0xFE, 0x5D, 0x02, + 0x00, 0x07, 0x41, 0x06, 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x27, 0x08, + 0xE1, 0xFF, 0xF8, 0xF9, 0x62, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x3F, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x06, 0x67, 0x05, 0xD6, 0x06, + 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x84, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x06, 0x67, 0x04, 0x42, 0x06, + 0x26, 0x02, 0xFE, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, 0x83, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x10, 0x05, 0xD6, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x58, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x04, 0x10, 0x04, 0x41, 0x06, + 0x26, 0x03, 0x05, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x58, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, 0x44, 0x05, 0xE4, 0x06, + 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0xAA, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x58, 0xF9, 0x62, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x16, 0x00, + 0x00, 0x00, 0x06, 0x08, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x44, 0x06, 0xC0, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xF8, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x44, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x58, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, + 0x44, 0x04, 0x44, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x58, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, + 0x5C, 0x05, 0x20, 0x06, 0x26, 0x03, 0x1A, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x58, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x44, 0x06, 0xF2, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xFC, 0x5D, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x65, 0x05, + 0xD6, 0x06, 0x26, 0x03, 0x4B, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x9D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, 0xA6, 0x05, + 0xD6, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, + 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x77, 0xFE, 0x5D, 0x02, 0xA6, 0x04, + 0x3B, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0xFF, + 0xF9, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x74, 0xFE, 0x5D, 0x02, 0xA6, 0x05, + 0x9D, 0x06, 0x26, 0x03, 0x54, 0x00, 0x00, 0x00, 0x27, 0x08, 0xE1, 0xFF, + 0xF9, 0xF9, 0x62, 0x00, 0x06, 0x06, 0xEB, 0xE4, 0x00, 0xFF, 0xFF, 0x00, + 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x07, 0x3B, 0x06, 0x26, 0x03, 0x67, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xEF, 0x01, 0x5D, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x06, 0xF1, 0x06, 0x26, 0x03, 0x67, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xF0, 0x00, 0x55, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4B, 0xFF, 0xE8, 0x03, 0xB8, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x67, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x15, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4B, 0xFE, 0x5D, 0x03, 0xB8, 0x04, 0x43, 0x06, 0x26, 0x03, 0x67, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x15, 0xF9, 0x62, 0xFF, 0xFF, 0x00, + 0x4B, 0xFE, 0x5D, 0x03, 0xB8, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x67, 0x00, + 0x00, 0x00, 0x27, 0x08, 0xE1, 0x01, 0x15, 0xF9, 0x62, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x15, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xFA, 0xFF, 0xFD, 0x02, + 0x7B, 0x06, 0xF1, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE0, 0xFE, 0xEA, 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x11, 0xFF, 0xFD, 0x02, + 0x7B, 0x06, 0xF1, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x00, 0x42, 0x01, 0x1B, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0x5D, 0x02, + 0x7B, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x00, 0xA3, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, + 0x10, 0x05, 0xD6, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x07, + 0x1F, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF2, 0xFA, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x04, 0x10, 0x04, 0x2E, 0x06, + 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x09, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x07, 0x0F, 0x06, + 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF4, 0xFA, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x07, 0x1F, 0x06, 0x26, 0x03, + 0x91, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF6, 0xF9, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFF, 0xED, 0x04, 0x10, 0x06, 0xC0, 0x06, 0x26, 0x03, 0x91, 0x00, + 0x00, 0x00, 0x06, 0x08, 0xF8, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5D, 0x04, 0x10, 0x04, 0x2E, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x61, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5D, 0x04, 0xC1, 0x05, 0x20, 0x06, 0x26, 0x03, 0x94, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x61, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, + 0xED, 0x04, 0x10, 0x06, 0xF4, 0x06, 0x26, 0x03, 0x91, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xFB, 0x00, 0x9E, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, + 0x5D, 0x04, 0x2E, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xD2, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x37, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x1F, 0x00, + 0x00, 0x06, 0x2B, 0x05, 0xD6, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE0, 0x00, 0xDE, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1F, 0x00, + 0x00, 0x06, 0x2B, 0x05, 0xD6, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x02, 0x36, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1F, 0xFE, + 0x5D, 0x06, 0x2B, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xD6, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x02, 0x36, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x1F, 0x00, + 0x00, 0x04, 0x16, 0x05, 0xD6, 0x06, 0x26, 0x03, 0xDF, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xE0, 0xD4, 0x00, 0xFF, 0xFF, 0x00, 0x1F, 0x00, 0x00, 0x04, + 0x16, 0x05, 0xD6, 0x06, 0x26, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xE1, 0x01, 0x2C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, + 0x2E, 0x05, 0xD6, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xE0, 0xDB, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, 0x05, + 0xD6, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x33, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5C, 0x04, 0x2E, 0x04, + 0x2E, 0x06, 0x26, 0x03, 0xE4, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x02, + 0x5D, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x65, 0x00, 0x00, 0x03, 0xAB, 0x05, + 0xD6, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x16, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x65, 0xFE, 0x5D, 0x03, 0xAB, 0x04, + 0x2E, 0x06, 0x26, 0x03, 0xFC, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x16, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, 0x32, 0x05, + 0xE3, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8F, 0x00, + 0xA9, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x5A, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, 0x32, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x23, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8D, 0x00, 0xA9, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE1, 0x01, 0x5A, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xEB, 0x04, 0x32, 0x05, 0xD6, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xE0, 0xFF, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, + 0x32, 0x06, 0xC0, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xF8, 0xFE, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x05, + 0xD6, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x57, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5D, 0x04, 0x32, 0x04, + 0x41, 0x06, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, + 0x5A, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x78, 0xFE, 0x5D, 0x01, 0x58, 0x04, + 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0xFF, + 0xFA, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, 0x3B, 0x07, + 0x88, 0x06, 0x26, 0x02, 0x88, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, + 0x44, 0x01, 0xB2, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xFE, 0x02, 0xDC, 0x05, + 0xD2, 0x04, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, 0x08, 0xCB, 0x01, + 0x63, 0x02, 0x6F, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x01, 0xEE, 0x05, + 0xD2, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, + 0x38, 0xF9, 0x62, 0xFF, 0xFF, 0xFF, 0xCF, 0xFE, 0x5D, 0x02, 0x00, 0x07, + 0x41, 0x06, 0x26, 0x02, 0xEF, 0x00, 0x00, 0x00, 0x27, 0x08, 0xE1, 0x00, + 0x38, 0xF9, 0x62, 0x00, 0x07, 0x06, 0xEB, 0xFF, 0x3F, 0x01, 0xA4, 0xFF, + 0xFF, 0xFF, 0xB2, 0xFF, 0xFD, 0x02, 0x32, 0x06, 0xF1, 0x06, 0x26, 0x03, + 0x87, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFE, 0xA1, 0x01, 0x1B, 0xFF, + 0xFF, 0x00, 0x78, 0xFF, 0xFD, 0x02, 0x32, 0x06, 0xF1, 0x06, 0x26, 0x03, + 0x87, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0xFF, 0xF9, 0x01, 0x1B, 0xFF, + 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x02, 0x32, 0x05, 0x49, 0x06, 0x26, 0x03, + 0x87, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x5B, 0xF9, 0x62, 0xFF, + 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, 0xD6, 0x06, 0x26, 0x03, + 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x07, 0x1F, 0x06, 0x26, 0x03, 0xB2, 0x00, + 0x00, 0x00, 0x06, 0x08, 0xF2, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0x5D, 0x04, 0x10, 0x04, 0x2E, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE0, 0x00, 0x00, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, + 0xEC, 0x04, 0x10, 0x07, 0x0F, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xF4, 0xFA, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, + 0x10, 0x07, 0x1F, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xF6, 0xF9, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x06, + 0xC0, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, 0xF8, 0xFF, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x04, 0x10, 0x04, 0x2E, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x58, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5D, 0x04, 0xC1, 0x05, 0x20, 0x06, + 0x26, 0x03, 0xC3, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x58, 0xF9, + 0x62, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x06, 0xF4, 0x06, + 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xFB, 0x00, 0x9E, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x6C, 0x07, 0x7A, 0x06, + 0x26, 0x00, 0x5F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x36, 0x01, + 0xA4, 0xFF, 0xFF, 0xFF, 0xC8, 0x00, 0x00, 0x02, 0x34, 0x07, 0x7A, 0x06, + 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFE, 0xB8, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x5F, 0xFF, 0xE9, 0x05, 0x89, 0x07, 0x7A, 0x06, + 0x26, 0x04, 0x4F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x9B, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x07, 0x8C, 0x07, 0x7A, 0x06, + 0x26, 0x04, 0x2E, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x01, 0x8E, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x5E, 0xFF, 0xE9, 0x04, 0x8A, 0x07, 0x7A, 0x06, + 0x26, 0x05, 0x3F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x2D, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x3D, 0x07, 0x7A, 0x06, + 0x26, 0x01, 0x38, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0xA3, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0xAD, 0x07, 0x7A, 0x06, + 0x26, 0x01, 0x6F, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0xBC, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x53, 0xFF, 0xE9, 0x05, 0x76, 0x07, 0x7A, 0x06, + 0x26, 0x04, 0x47, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x7E, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x04, 0xDF, 0x07, 0x7A, 0x06, + 0x26, 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x35, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0xDE, 0x07, 0x7A, 0x06, + 0x26, 0x04, 0x3B, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x67, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x06, 0x3D, 0x07, 0x7A, 0x04, + 0x26, 0x04, 0x44, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x04, 0xCF, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xE0, 0x01, 0x0A, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x4D, 0x00, 0x00, 0x02, 0xB9, 0x07, 0x7A, 0x06, 0x26, 0x00, 0xEA, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFF, 0x3C, 0x01, 0xA4, 0xFF, 0xFF, 0x00, + 0x46, 0xFF, 0xEA, 0x04, 0x25, 0x05, 0xD6, 0x06, 0x26, 0x02, 0x85, 0x00, + 0x00, 0x00, 0x06, 0x08, 0xE0, 0x15, 0x00, 0xFF, 0xFF, 0x00, 0x1F, 0x00, + 0x00, 0x06, 0x44, 0x05, 0xD6, 0x06, 0x26, 0x04, 0xE9, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xE0, 0x00, 0xEB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFF, + 0xF1, 0x03, 0x97, 0x05, 0xD6, 0x06, 0x26, 0x04, 0xEB, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xE0, 0xA8, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0x1F, 0x05, 0xD6, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xE0, 0x07, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, + 0xD6, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x26, 0x0B, 0x40, 0x03, + 0x00, 0x00, 0x06, 0x08, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xE8, 0x04, 0x0F, 0x05, 0xD6, 0x06, 0x26, 0x05, 0x10, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xE0, 0xCD, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x03, + 0xFE, 0x05, 0xD6, 0x06, 0x26, 0x05, 0x04, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xE0, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x05, 0x39, 0x05, + 0xD6, 0x04, 0x26, 0x05, 0x09, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x03, + 0xE7, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x94, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xF6, 0x07, 0x7A, 0x06, 0x26, 0x04, + 0x26, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0x00, 0x51, 0x01, 0xA4, 0xFF, + 0xFF, 0xFF, 0xB1, 0xFF, 0xFE, 0x02, 0x1D, 0x05, 0xD6, 0x06, 0x26, 0x04, + 0x99, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE0, 0xFE, 0xA1, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x05, 0xD6, 0x06, 0x26, 0x03, + 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x06, 0x84, 0x06, 0x26, 0x03, 0xB2, 0x00, + 0x00, 0x00, 0x06, 0x08, 0xDC, 0xA6, 0x00, 0xFF, 0xFF, 0xFF, 0x4D, 0xFF, + 0xFE, 0x02, 0x77, 0x06, 0x84, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xDD, 0xFE, 0x3C, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xB2, 0xFF, + 0xFE, 0x02, 0x22, 0x06, 0xEE, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, + 0x07, 0x08, 0xDF, 0xFF, 0x0B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, + 0xEC, 0x04, 0x10, 0x06, 0x84, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x06, 0x08, 0xDD, 0x9C, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, + 0x10, 0x06, 0x84, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x06, 0x08, + 0xDC, 0xA6, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, 0xEC, 0x04, 0x10, 0x06, + 0xEE, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x08, 0xDF, 0x00, + 0x6A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7C, 0x03, 0x35, 0x01, 0x79, 0x04, + 0x2E, 0x06, 0x07, 0x08, 0xCB, 0x00, 0x00, 0x03, 0x35, 0x00, 0x01, 0x00, + 0x7C, 0x00, 0x00, 0x01, 0x79, 0x00, 0xF9, 0x00, 0x03, 0x00, 0x00, 0x73, + 0x35, 0x33, 0x15, 0x7C, 0xFD, 0xF9, 0xF9, 0x00, 0x01, 0x00, 0x7C, 0xFE, + 0xE3, 0x01, 0x79, 0x00, 0xF9, 0x00, 0x0E, 0x00, 0x00, 0x53, 0x35, 0x33, + 0x32, 0x36, 0x35, 0x35, 0x17, 0x23, 0x35, 0x33, 0x11, 0x14, 0x06, 0x23, + 0x7C, 0x20, 0x2F, 0x34, 0x1A, 0x9D, 0xFD, 0x7A, 0x6B, 0xFE, 0xE3, 0x70, + 0x46, 0x3C, 0x45, 0x1A, 0xF9, 0xFE, 0xE5, 0x7C, 0x7F, 0xFF, 0xFF, 0x00, + 0x7C, 0x00, 0x00, 0x01, 0x79, 0x04, 0x20, 0x06, 0x26, 0x08, 0xCB, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x00, 0x03, 0x27, 0xFF, 0xFF, 0x00, + 0x7C, 0xFE, 0xE3, 0x01, 0x79, 0x04, 0x20, 0x06, 0x26, 0x08, 0xCC, 0x00, + 0x00, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x00, 0x03, 0x27, 0xFF, 0xFF, 0x00, + 0x7C, 0x00, 0x00, 0x05, 0x63, 0x00, 0xF9, 0x04, 0x26, 0x08, 0xCB, 0x00, + 0x00, 0x00, 0x27, 0x08, 0xCB, 0x01, 0xF5, 0x00, 0x00, 0x00, 0x07, 0x08, + 0xCB, 0x03, 0xEA, 0x00, 0x00, 0x00, 0x02, 0x00, 0x6F, 0x00, 0x00, 0x01, + 0x6C, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x03, 0x33, + 0x03, 0x03, 0x35, 0x33, 0x15, 0x8A, 0x11, 0xE8, 0x11, 0xE1, 0xFD, 0x01, + 0xAB, 0x04, 0x27, 0xFB, 0xD9, 0xFE, 0x55, 0xF8, 0xF8, 0x00, 0x02, 0x00, + 0x44, 0x00, 0x00, 0x03, 0xEF, 0x05, 0xE9, 0x00, 0x21, 0x00, 0x25, 0x00, + 0x00, 0x41, 0x35, 0x34, 0x36, 0x36, 0x37, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x02, 0x15, 0x15, 0x03, 0x35, 0x33, + 0x15, 0x01, 0x9C, 0x38, 0x67, 0x46, 0x4F, 0x48, 0x3D, 0x6E, 0x4B, 0x4E, + 0x77, 0x40, 0x01, 0xD8, 0x01, 0x7A, 0xD7, 0x8D, 0x88, 0xCF, 0x75, 0x6C, + 0x66, 0x40, 0x50, 0x23, 0xE6, 0xFD, 0x01, 0xA6, 0x53, 0x71, 0x7D, 0x52, + 0x2E, 0x36, 0x79, 0x43, 0x42, 0x5F, 0x35, 0x40, 0x77, 0x56, 0x8A, 0xCC, + 0x71, 0x64, 0xB2, 0x73, 0x71, 0xB5, 0x44, 0x2B, 0x46, 0x55, 0x45, 0x45, + 0xFE, 0x5A, 0xF8, 0xF8, 0xFF, 0xFF, 0x00, 0x7C, 0x02, 0x46, 0x01, 0x79, + 0x03, 0x3F, 0x06, 0x07, 0x08, 0xCB, 0x00, 0x00, 0x02, 0x46, 0x00, 0x02, + 0x00, 0x7C, 0xFE, 0xE3, 0x01, 0x79, 0x04, 0x20, 0x00, 0x0E, 0x00, 0x12, + 0x00, 0x00, 0x41, 0x23, 0x22, 0x26, 0x35, 0x11, 0x33, 0x15, 0x23, 0x37, + 0x15, 0x14, 0x16, 0x33, 0x33, 0x11, 0x23, 0x35, 0x33, 0x01, 0x79, 0x18, + 0x6B, 0x7A, 0xFD, 0x9C, 0x19, 0x34, 0x2F, 0x20, 0xFD, 0xFD, 0xFE, 0xE3, + 0x7F, 0x7C, 0x01, 0x1B, 0xF9, 0x1A, 0x45, 0x3C, 0x46, 0x03, 0xD4, 0xF9, + 0xFF, 0xFF, 0x00, 0x7C, 0x00, 0x00, 0x03, 0x6E, 0x00, 0xF9, 0x04, 0x26, + 0x08, 0xCB, 0x00, 0x00, 0x00, 0x07, 0x08, 0xCB, 0x01, 0xF5, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7C, 0x00, 0xD8, 0x01, 0x79, 0x04, 0xF8, 0x06, 0x27, + 0x08, 0xCB, 0x00, 0x00, 0x00, 0xD8, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x00, + 0x03, 0xFF, 0xFF, 0xFF, 0x00, 0x95, 0x00, 0x00, 0x01, 0x91, 0x00, 0xF9, + 0x04, 0x06, 0x08, 0xCB, 0x18, 0x00, 0xFF, 0xFF, 0x00, 0x95, 0xFE, 0xE3, + 0x01, 0x91, 0x00, 0xF9, 0x04, 0x06, 0x08, 0xCC, 0x18, 0x00, 0xFF, 0xFF, + 0x00, 0x95, 0x00, 0x00, 0x01, 0x91, 0x04, 0x20, 0x04, 0x26, 0x08, 0xCB, + 0x18, 0x00, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x18, 0x03, 0x27, 0xFF, 0xFF, + 0x00, 0x95, 0xFE, 0xE3, 0x01, 0x91, 0x04, 0x20, 0x04, 0x26, 0x08, 0xCC, + 0x18, 0x00, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x18, 0x03, 0x27, 0xFF, 0xFF, + 0x00, 0x95, 0x00, 0xD8, 0x01, 0x91, 0x04, 0xF8, 0x04, 0x27, 0x08, 0xCB, + 0x00, 0x18, 0x00, 0xD8, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x18, 0x03, 0xFF, + 0xFF, 0xFF, 0x00, 0x7C, 0x01, 0xB2, 0x01, 0x79, 0x05, 0xD2, 0x06, 0x27, + 0x08, 0xCB, 0x00, 0x00, 0x01, 0xB2, 0x00, 0x07, 0x08, 0xCB, 0x00, 0x00, + 0x04, 0xD9, 0x00, 0x03, 0x01, 0x11, 0x04, 0xFB, 0x04, 0x3B, 0x06, 0x84, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, + 0x21, 0x35, 0x33, 0x15, 0x25, 0x13, 0x33, 0x03, 0x01, 0x11, 0xD4, 0x01, + 0x81, 0xD5, 0xFE, 0x0F, 0x24, 0xCD, 0x66, 0x04, 0xFB, 0xDB, 0xDB, 0xDB, + 0xDB, 0x5B, 0x01, 0x2E, 0xFE, 0xD2, 0x00, 0x03, 0x01, 0x11, 0x04, 0xFB, + 0x04, 0x3B, 0x06, 0x84, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, + 0x41, 0x23, 0x35, 0x33, 0x05, 0x23, 0x35, 0x33, 0x05, 0x23, 0x03, 0x33, + 0x04, 0x3B, 0xD5, 0xD5, 0xFD, 0xAA, 0xD4, 0xD4, 0x01, 0x1D, 0x8C, 0x65, + 0xCC, 0x04, 0xFB, 0xDB, 0xDB, 0xDB, 0x80, 0x01, 0x2E, 0xFF, 0xFF, 0x01, + 0x11, 0x04, 0xFB, 0x04, 0x3B, 0x06, 0x84, 0x06, 0x06, 0x08, 0xDC, 0x00, + 0x00, 0x00, 0x03, 0x00, 0xA7, 0x04, 0xD1, 0x03, 0x17, 0x06, 0xEE, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x03, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, + 0x06, 0xA7, 0xD7, 0xBE, 0xD7, 0xA9, 0x28, 0x48, 0x3F, 0x34, 0x14, 0x1B, + 0x1B, 0x02, 0x8A, 0x03, 0x59, 0x53, 0x2A, 0x44, 0x3B, 0x34, 0x19, 0x1C, + 0x1B, 0x04, 0x86, 0x03, 0x5C, 0x04, 0xD1, 0xD8, 0xD8, 0xD8, 0xD8, 0x01, + 0x40, 0x19, 0x23, 0x1A, 0x32, 0x20, 0x62, 0x77, 0x1A, 0x23, 0x1A, 0x28, + 0x2B, 0x64, 0x75, 0x00, 0x02, 0x01, 0x11, 0x04, 0xFB, 0x03, 0x7D, 0x05, + 0xD6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x01, 0x11, 0xD7, 0xBE, 0xD7, 0x04, 0xFB, 0xDB, 0xDB, + 0xDB, 0xDB, 0x00, 0x01, 0x00, 0x7F, 0x04, 0xFB, 0x01, 0x5F, 0x05, 0xD6, + 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, 0x33, 0x15, 0x7F, 0xE0, 0x04, 0xFB, + 0xDB, 0xDB, 0xFF, 0xFF, 0x00, 0x7F, 0x04, 0xFB, 0x01, 0x5F, 0x05, 0xD6, + 0x06, 0x06, 0x08, 0xE1, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7C, 0x04, 0xEA, + 0x07, 0x59, 0x05, 0xE3, 0x04, 0x27, 0x08, 0xCB, 0x00, 0x00, 0x04, 0xEA, + 0x00, 0x27, 0x08, 0xCB, 0x01, 0xF5, 0x04, 0xEA, 0x00, 0x27, 0x08, 0xCB, + 0x03, 0xEA, 0x04, 0xEA, 0x00, 0x07, 0x08, 0xCB, 0x05, 0xE0, 0x04, 0xEA, + 0xFF, 0xFF, 0x00, 0x7C, 0x04, 0xEA, 0x05, 0x63, 0x05, 0xE3, 0x04, 0x27, + 0x08, 0xCB, 0x00, 0x00, 0x04, 0xEA, 0x00, 0x27, 0x08, 0xCB, 0x01, 0xF5, + 0x04, 0xEA, 0x00, 0x07, 0x08, 0xCB, 0x03, 0xEA, 0x04, 0xEA, 0xFF, 0xFF, + 0x00, 0x7C, 0xFE, 0x55, 0x05, 0x63, 0xFF, 0x4E, 0x04, 0x27, 0x08, 0xCB, + 0x00, 0x00, 0xFE, 0x55, 0x00, 0x27, 0x08, 0xCB, 0x01, 0xF5, 0xFE, 0x55, + 0x00, 0x07, 0x08, 0xCB, 0x03, 0xEA, 0xFE, 0x55, 0xFF, 0xFF, 0x01, 0x11, + 0x04, 0xFB, 0x03, 0x7D, 0x05, 0xD6, 0x04, 0x06, 0x08, 0xE0, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7F, 0x04, 0xFB, 0x01, 0x5F, 0x05, 0xD6, 0x04, 0x06, + 0x08, 0xE1, 0x00, 0x00, 0x00, 0x03, 0x01, 0x11, 0x04, 0xFB, 0x05, 0x12, + 0x05, 0xD6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x35, + 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x01, 0x11, + 0xD7, 0xBE, 0xD7, 0xBE, 0xD7, 0x04, 0xFB, 0xDB, 0xDB, 0xDB, 0xDB, 0xDB, + 0xDB, 0xFF, 0xFF, 0xFF, 0xE2, 0xFE, 0x5A, 0x03, 0x43, 0x05, 0xD6, 0x06, + 0x26, 0x02, 0xD0, 0x00, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x01, 0x02, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x02, 0x3B, 0x07, 0x88, 0x04, + 0x26, 0x02, 0x86, 0xB5, 0x00, 0x00, 0x07, 0x08, 0xE1, 0x00, 0x44, 0x01, + 0xB2, 0xFF, 0xFF, 0x00, 0x7F, 0xFE, 0x5D, 0x01, 0x5F, 0xFF, 0x38, 0x04, + 0x07, 0x08, 0xE1, 0x00, 0x00, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x7C, 0x00, + 0x00, 0x01, 0x79, 0x00, 0xF9, 0x06, 0x06, 0x08, 0xCB, 0x00, 0x00, 0xFF, + 0xFF, 0x01, 0x11, 0x04, 0xFB, 0x04, 0x3B, 0x06, 0x84, 0x06, 0x06, 0x08, + 0xDC, 0x00, 0x00, 0xFF, 0xFF, 0x01, 0x11, 0xFE, 0x5D, 0x03, 0x7D, 0xFF, + 0x38, 0x04, 0x07, 0x08, 0xE0, 0x00, 0x00, 0xF9, 0x62, 0x00, 0x02, 0x00, + 0x30, 0x04, 0xD3, 0x02, 0x02, 0x07, 0x3B, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x53, 0x13, 0x21, 0x01, 0x03, 0x35, 0x33, 0x15, 0x30, 0xC5, 0x01, + 0x0D, 0xFE, 0xEA, 0xB7, 0xE0, 0x04, 0xD3, 0x01, 0x2D, 0xFE, 0xD3, 0x01, + 0x8D, 0xDB, 0xDB, 0x00, 0x02, 0x00, 0x61, 0x04, 0xC7, 0x02, 0xFE, 0x06, + 0xF1, 0x00, 0x08, 0x00, 0x0C, 0x00, 0x00, 0x41, 0x17, 0x37, 0x33, 0x15, + 0x03, 0x23, 0x03, 0x35, 0x37, 0x35, 0x33, 0x15, 0x01, 0x23, 0x8C, 0x8C, + 0xC3, 0xF1, 0xBD, 0xEF, 0xE2, 0xD8, 0x05, 0xD4, 0xA5, 0xA5, 0x03, 0xFE, + 0xF6, 0x01, 0x0A, 0x03, 0x4B, 0xD2, 0xD2, 0xFF, 0xFF, 0x00, 0x61, 0x06, + 0x6B, 0x02, 0xFE, 0x08, 0x96, 0x06, 0x07, 0x08, 0xF0, 0x00, 0x00, 0x01, + 0xA4, 0x00, 0x03, 0x01, 0x17, 0x04, 0xD1, 0x03, 0x83, 0x07, 0x1F, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x35, 0x33, 0x15, 0x33, + 0x35, 0x33, 0x15, 0x01, 0x13, 0x33, 0x03, 0x01, 0x17, 0xD7, 0xBE, 0xD7, + 0xFE, 0x77, 0x91, 0xD9, 0xCB, 0x04, 0xD1, 0xD8, 0xD8, 0xD8, 0xD8, 0x01, + 0x39, 0x01, 0x15, 0xFE, 0xEB, 0xFF, 0xFF, 0x01, 0x17, 0x06, 0x75, 0x03, + 0x83, 0x08, 0xC3, 0x06, 0x07, 0x08, 0xF2, 0x00, 0x00, 0x01, 0xA4, 0x00, + 0x03, 0x01, 0x08, 0x04, 0xD1, 0x03, 0x93, 0x07, 0x0F, 0x00, 0x08, 0x00, + 0x0C, 0x00, 0x10, 0x00, 0x00, 0x41, 0x17, 0x37, 0x33, 0x15, 0x03, 0x23, + 0x03, 0x35, 0x13, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x01, 0xC4, + 0x89, 0x89, 0xBD, 0xEB, 0xB7, 0xE9, 0x0F, 0xD7, 0xBE, 0xD7, 0x07, 0x0F, + 0xAA, 0xAA, 0x03, 0xFE, 0xEE, 0x01, 0x12, 0x03, 0xFD, 0xC2, 0xD8, 0xD8, + 0xD8, 0xD8, 0xFF, 0xFF, 0x01, 0x08, 0x06, 0x75, 0x03, 0x93, 0x08, 0xB3, + 0x06, 0x07, 0x08, 0xF4, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, 0x01, 0x17, + 0x04, 0xD1, 0x03, 0x83, 0x07, 0x1F, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, + 0x00, 0x00, 0x41, 0x03, 0x33, 0x13, 0x01, 0x35, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x15, 0x01, 0xF7, 0xCB, 0xDA, 0x90, 0xFE, 0x81, 0xD7, 0xBE, 0xD7, + 0x06, 0x0A, 0x01, 0x15, 0xFE, 0xEB, 0xFE, 0xC7, 0xD8, 0xD8, 0xD8, 0xD8, + 0xFF, 0xFF, 0x01, 0x17, 0x06, 0x75, 0x03, 0x83, 0x08, 0xC3, 0x06, 0x07, + 0x08, 0xF6, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, 0x01, 0x12, 0x04, 0xD1, + 0x03, 0x7E, 0x06, 0xC0, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x03, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, + 0x03, 0x61, 0xFD, 0xCF, 0x1E, 0xD7, 0xBE, 0xD7, 0x06, 0xC0, 0x8C, 0x8C, + 0xFE, 0x11, 0xD8, 0xD8, 0xD8, 0xD8, 0xFF, 0xFF, 0x01, 0x12, 0x06, 0x75, + 0x03, 0x7E, 0x08, 0x64, 0x06, 0x07, 0x08, 0xF8, 0x00, 0x00, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x72, 0x06, 0x93, 0x02, 0xD3, 0x08, 0x98, 0x06, 0x07, + 0x08, 0xFB, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, 0x00, 0x72, 0x04, 0xEE, + 0x02, 0xD3, 0x06, 0xF4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x27, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, + 0x02, 0xC1, 0xFD, 0xCF, 0x1E, 0xD2, 0xBD, 0xD2, 0x05, 0x8B, 0x9D, 0x9D, + 0x96, 0xD3, 0xD3, 0xD3, 0xD3, 0x00, 0x03, 0x00, 0xB4, 0x04, 0xC5, 0x03, + 0x1C, 0x06, 0xF2, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x00, 0x41, + 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, + 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x01, 0x35, 0x33, + 0x15, 0x33, 0x35, 0x33, 0x15, 0x02, 0x6F, 0x28, 0x48, 0x3E, 0x34, 0x15, + 0x1B, 0x1B, 0x02, 0x89, 0x03, 0x58, 0x54, 0x29, 0x45, 0x3A, 0x34, 0x1A, + 0x1C, 0x1B, 0x04, 0x85, 0x02, 0x5D, 0xFD, 0xF7, 0xD1, 0xBD, 0xD0, 0x04, + 0xC5, 0x1A, 0x24, 0x1A, 0x33, 0x21, 0x64, 0x7A, 0x1A, 0x24, 0x1B, 0x29, + 0x2C, 0x66, 0x78, 0x01, 0x5D, 0xD0, 0xD0, 0xD0, 0xD0, 0xFF, 0xFF, 0x00, + 0xB4, 0x04, 0xC5, 0x03, 0x1C, 0x06, 0xF2, 0x06, 0x06, 0x08, 0xFC, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFD, 0xB1, 0x05, 0x83, 0x05, 0xE9, 0x06, + 0x26, 0x00, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x02, 0x22, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFD, 0xB1, 0x05, 0x84, 0x05, 0xE9, 0x06, + 0x26, 0x00, 0x97, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x02, 0x23, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0xB1, 0x05, 0x2A, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0x0F, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0xD6, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0xB1, 0x04, 0x28, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0x79, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0xB1, 0x05, 0x3D, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x02, 0x0F, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0xFD, 0xB1, 0x04, 0xE3, 0x05, 0xD2, 0x06, + 0x26, 0x01, 0x80, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0xC0, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x52, 0xFD, 0xB1, 0x04, 0xBB, 0x05, 0xE9, 0x06, + 0x26, 0x01, 0x8D, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0xB3, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFD, 0xB1, 0x04, 0x3E, 0x05, 0xD2, 0x06, + 0x26, 0x02, 0xD7, 0x00, 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0x5D, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7C, 0xFD, 0xB1, 0x01, 0x53, 0x05, 0xD2, 0x06, + 0x26, 0x02, 0xE0, 0x00, 0x00, 0x00, 0x06, 0x09, 0x0D, 0x10, 0x00, 0xFF, + 0xFF, 0x00, 0x7D, 0xFD, 0xB1, 0x01, 0xEE, 0x05, 0xD2, 0x06, 0x26, 0x02, + 0xEF, 0x00, 0x00, 0x00, 0x06, 0x09, 0x0D, 0x50, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFD, 0xB1, 0x04, 0x10, 0x04, 0x41, 0x06, 0x26, 0x03, 0x05, 0x00, + 0x00, 0x00, 0x07, 0x09, 0x0D, 0x01, 0x70, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFD, 0xB1, 0x02, 0xA6, 0x04, 0x3B, 0x06, 0x26, 0x03, 0x54, 0x00, + 0x00, 0x00, 0x06, 0x09, 0x0D, 0x10, 0x00, 0xFF, 0xFF, 0x00, 0x4B, 0xFD, + 0xB1, 0x03, 0xB8, 0x04, 0x43, 0x06, 0x26, 0x03, 0x67, 0x00, 0x00, 0x00, + 0x07, 0x09, 0x0D, 0x01, 0x2D, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x11, 0xFD, + 0xB1, 0x02, 0x7B, 0x05, 0x49, 0x06, 0x26, 0x03, 0x78, 0x00, 0x00, 0x00, + 0x07, 0x09, 0x0D, 0x00, 0xBB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFD, + 0xB1, 0x02, 0x32, 0x05, 0x49, 0x06, 0x26, 0x03, 0x87, 0x00, 0x00, 0x00, + 0x06, 0x09, 0x0D, 0x73, 0x00, 0x00, 0x01, 0x00, 0x6C, 0xFD, 0xB1, 0x01, + 0x42, 0xFF, 0x78, 0x00, 0x0E, 0x00, 0x00, 0x53, 0x35, 0x33, 0x32, 0x36, + 0x35, 0x35, 0x17, 0x23, 0x35, 0x33, 0x15, 0x14, 0x06, 0x23, 0x6C, 0x1B, + 0x28, 0x2C, 0x16, 0x85, 0xD6, 0x68, 0x5A, 0xFD, 0xB1, 0x5F, 0x3B, 0x35, + 0x3B, 0x15, 0xD2, 0xF1, 0x6A, 0x6C, 0xFF, 0xFF, 0x00, 0x57, 0xFE, 0xE3, + 0x01, 0x54, 0x00, 0xF9, 0x04, 0x06, 0x08, 0xCC, 0xDB, 0x00, 0xFF, 0xFF, + 0x00, 0x57, 0xFE, 0xE3, 0x02, 0xD5, 0x00, 0xF9, 0x04, 0x26, 0x08, 0xCC, + 0xDB, 0x00, 0x00, 0x07, 0x08, 0xCC, 0x01, 0x5C, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x57, 0x03, 0xBC, 0x02, 0xD5, 0x05, 0xD2, 0x04, 0x26, 0x09, 0x12, + 0x00, 0x00, 0x00, 0x07, 0x09, 0x12, 0x01, 0x81, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x57, 0x03, 0xBC, 0x02, 0xD5, 0x05, 0xD2, 0x04, 0x27, 0x08, 0xCC, + 0xFF, 0xDB, 0x04, 0xD9, 0x00, 0x07, 0x08, 0xCC, 0x01, 0x5C, 0x04, 0xD9, + 0x00, 0x01, 0x00, 0x57, 0x03, 0xBC, 0x01, 0x54, 0x05, 0xD2, 0x00, 0x0E, + 0x00, 0x00, 0x41, 0x15, 0x23, 0x22, 0x06, 0x15, 0x15, 0x27, 0x33, 0x15, + 0x23, 0x11, 0x34, 0x36, 0x33, 0x01, 0x54, 0x20, 0x2F, 0x34, 0x1A, 0x9D, + 0xFD, 0x7A, 0x6B, 0x05, 0xD2, 0x70, 0x46, 0x3C, 0x45, 0x1A, 0xF9, 0x01, + 0x1B, 0x7C, 0x7F, 0xFF, 0xFF, 0x00, 0x57, 0x03, 0xBC, 0x01, 0x54, 0x05, + 0xD2, 0x04, 0x07, 0x08, 0xCC, 0xFF, 0xDB, 0x04, 0xD9, 0x00, 0x01, 0x00, + 0x57, 0x03, 0xBC, 0x01, 0x54, 0x05, 0xD2, 0x00, 0x0E, 0x00, 0x00, 0x41, + 0x23, 0x22, 0x26, 0x35, 0x11, 0x33, 0x15, 0x23, 0x37, 0x15, 0x14, 0x16, + 0x33, 0x33, 0x01, 0x54, 0x18, 0x6B, 0x7A, 0xFD, 0x9D, 0x1A, 0x34, 0x2F, + 0x20, 0x03, 0xBC, 0x7F, 0x7C, 0x01, 0x1B, 0xF9, 0x19, 0x44, 0x3C, 0x46, + 0xFF, 0xFF, 0x00, 0x57, 0x03, 0xBC, 0x02, 0xD5, 0x05, 0xD2, 0x04, 0x26, + 0x09, 0x14, 0x00, 0x00, 0x00, 0x07, 0x09, 0x14, 0x01, 0x81, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x8E, 0x00, 0x00, 0x04, 0xC4, 0x05, 0xD2, 0x00, 0x0E, + 0x00, 0x18, 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, 0x11, 0x21, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x25, 0x21, 0x32, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x21, 0x8E, 0x03, 0xA0, 0xFD, 0x3E, 0x01, 0x50, + 0xA6, 0xE8, 0x7A, 0x7A, 0xE8, 0xA6, 0xFE, 0xB0, 0x01, 0x50, 0x61, 0x86, + 0x45, 0x9B, 0x91, 0xFE, 0xB0, 0x05, 0xD2, 0xBF, 0xFE, 0x65, 0x6C, 0xC4, + 0x85, 0x85, 0xCB, 0x73, 0xBC, 0x4B, 0x7A, 0x44, 0x66, 0x90, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x0A, 0x52, 0x05, 0xD2, 0x04, 0x26, 0x00, 0x54, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xF0, 0x05, 0x99, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x16, 0x00, 0x00, 0x05, 0x88, 0x05, 0xD2, 0x04, 0x26, 0x00, 0x54, + 0x47, 0x00, 0x00, 0x06, 0x0B, 0x69, 0xE4, 0x00, 0x00, 0x02, 0x00, 0x62, + 0x00, 0x00, 0x04, 0x97, 0x05, 0xBA, 0x00, 0x0E, 0x00, 0x18, 0x00, 0x00, + 0x61, 0x21, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x11, + 0x21, 0x35, 0x21, 0x03, 0x11, 0x21, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, + 0x33, 0x04, 0x97, 0xFD, 0xD4, 0xA5, 0xE9, 0x7B, 0x7B, 0xE9, 0xA5, 0x01, + 0x3B, 0xFD, 0x54, 0x03, 0x9D, 0xF1, 0xFE, 0xC5, 0x93, 0x84, 0x3A, 0x7B, + 0x62, 0x73, 0xCB, 0x85, 0x85, 0xC6, 0x6F, 0x01, 0x77, 0xC6, 0xFB, 0x08, + 0x01, 0xF8, 0x01, 0x8E, 0x65, 0x45, 0x77, 0x48, 0xFF, 0xFF, 0x00, 0x16, + 0x00, 0x00, 0x05, 0x88, 0x05, 0xD2, 0x04, 0x26, 0x00, 0x54, 0x47, 0x00, + 0x00, 0x06, 0x0B, 0x69, 0xE4, 0x00, 0x00, 0x01, 0x00, 0x58, 0xFF, 0xE9, + 0x04, 0x84, 0x05, 0xE9, 0x00, 0x34, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x37, 0x35, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, 0x0E, 0x02, 0x02, + 0x6C, 0x9A, 0xF0, 0x8A, 0x4D, 0x8E, 0x63, 0x7B, 0x93, 0x7E, 0xDD, 0x8E, + 0x92, 0xE1, 0x80, 0x01, 0xD6, 0x01, 0x48, 0x7F, 0x54, 0x53, 0x7C, 0x45, + 0x4A, 0x86, 0x59, 0x7D, 0x7D, 0x66, 0x99, 0x54, 0x50, 0x8E, 0x5C, 0x60, + 0x8A, 0x4C, 0x01, 0xDE, 0x01, 0x85, 0xF0, 0x17, 0x71, 0xC7, 0x81, 0x59, + 0x93, 0x63, 0x0F, 0x05, 0x21, 0xAD, 0x77, 0x78, 0xBB, 0x6C, 0x73, 0xCB, + 0x84, 0x53, 0x76, 0x40, 0x3C, 0x6E, 0x4C, 0x45, 0x67, 0x38, 0xB7, 0x3E, + 0x6F, 0x4A, 0x4E, 0x76, 0x3F, 0x45, 0x83, 0x5C, 0x8B, 0xD9, 0x7C, 0xFF, + 0xFF, 0x00, 0x47, 0x00, 0x00, 0x04, 0xD0, 0x05, 0xD2, 0x04, 0x06, 0x04, + 0x0D, 0xF6, 0x00, 0x00, 0x01, 0x00, 0x5F, 0xFF, 0xE9, 0x05, 0x89, 0x05, + 0xE9, 0x00, 0x28, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x21, + 0x15, 0x21, 0x37, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x03, 0x33, 0x32, + 0x04, 0x12, 0x15, 0x14, 0x02, 0x04, 0x02, 0xE4, 0x88, 0xEB, 0xB0, 0x62, + 0x04, 0x97, 0xFC, 0x07, 0x3E, 0x72, 0xC1, 0x75, 0x8B, 0xCD, 0x6E, 0x72, + 0xCF, 0x8B, 0x4C, 0x83, 0x69, 0x48, 0x10, 0xE4, 0x12, 0x6E, 0xA7, 0xD5, + 0x79, 0xC7, 0x01, 0x34, 0xB0, 0xA9, 0xFE, 0xCF, 0x17, 0x5A, 0xA4, 0xE1, + 0x87, 0xAA, 0xB9, 0x05, 0x78, 0xB4, 0x64, 0x8A, 0xFD, 0xAC, 0xAC, 0xFE, + 0x8B, 0x2B, 0x50, 0x70, 0x44, 0x71, 0xB9, 0x88, 0x49, 0xBF, 0xFE, 0xA6, + 0xE8, 0xE4, 0xFE, 0xA6, 0xC1, 0x00, 0x01, 0x00, 0x3A, 0xFE, 0x48, 0x04, + 0xEF, 0x05, 0xD2, 0x00, 0x23, 0x00, 0x00, 0x77, 0x33, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, 0x35, 0x01, 0x35, + 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x16, 0x16, 0x12, 0x15, 0x14, 0x0E, + 0x02, 0x23, 0x22, 0x24, 0x26, 0x3A, 0xE1, 0x07, 0x68, 0xA6, 0x63, 0x76, + 0xAA, 0x5C, 0x74, 0xCC, 0x85, 0x7F, 0x01, 0xD8, 0xFC, 0xEC, 0x04, 0x3A, + 0xFE, 0x00, 0xA2, 0xF9, 0x8B, 0x57, 0xA1, 0xDE, 0x88, 0xA5, 0xFE, 0xF7, + 0xA1, 0x4E, 0x60, 0x92, 0x52, 0x72, 0xC3, 0x7A, 0x89, 0xCA, 0x6D, 0xAF, + 0x01, 0xDA, 0x0C, 0xC4, 0xA2, 0xFD, 0xF8, 0x0E, 0x09, 0x9F, 0xFE, 0xF6, + 0xAC, 0x89, 0xE6, 0xA8, 0x5D, 0x83, 0xEA, 0xFF, 0xFF, 0x00, 0x3A, 0xFE, + 0x48, 0x04, 0xEF, 0x07, 0x89, 0x06, 0x26, 0x09, 0x1E, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8E, 0x00, 0xFE, 0x01, 0xA4, 0x00, 0x01, 0x00, 0x4F, 0xFE, + 0x48, 0x05, 0x05, 0x05, 0xD2, 0x00, 0x23, 0x00, 0x00, 0x65, 0x06, 0x06, + 0x04, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x12, 0x36, 0x37, 0x35, 0x01, + 0x35, 0x21, 0x15, 0x21, 0x15, 0x01, 0x15, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x05, 0x05, 0x07, 0xA2, + 0xFE, 0xF6, 0xA4, 0x88, 0xDF, 0xA0, 0x58, 0x8D, 0xF8, 0xA2, 0xFD, 0xFF, + 0x04, 0x3C, 0xFC, 0xEA, 0x01, 0xD8, 0x7D, 0x85, 0xCD, 0x74, 0x5C, 0xAB, + 0x74, 0x64, 0xA6, 0x68, 0x06, 0x4E, 0x99, 0xEA, 0x83, 0x5D, 0xA8, 0xE6, + 0x89, 0xAC, 0x01, 0x0A, 0x9F, 0x09, 0x0E, 0x02, 0x08, 0xA2, 0xC4, 0x0C, + 0xFE, 0x26, 0xAF, 0x6D, 0xCA, 0x89, 0x7A, 0xC3, 0x72, 0x52, 0x92, 0x60, + 0x00, 0x02, 0x00, 0x6B, 0xFE, 0x4C, 0x04, 0x8F, 0x05, 0xE6, 0x00, 0x1A, + 0x00, 0x2D, 0x00, 0x00, 0x53, 0x35, 0x36, 0x24, 0x36, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x23, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x04, 0x25, 0x37, 0x1E, 0x02, 0x15, + 0x14, 0x02, 0x04, 0x04, 0x07, 0x35, 0x36, 0x24, 0x36, 0x36, 0x35, 0x34, + 0x26, 0xCC, 0xB0, 0x01, 0x07, 0xAE, 0x57, 0x8D, 0x85, 0x56, 0x7E, 0x46, + 0xF1, 0x87, 0xEC, 0x98, 0x97, 0xE7, 0x84, 0x84, 0xF8, 0xFE, 0xA6, 0x01, + 0x59, 0x5A, 0x61, 0x8D, 0x4C, 0x8E, 0xFE, 0xFD, 0xFE, 0xA0, 0xD2, 0xAA, + 0x01, 0x0B, 0xB9, 0x61, 0x48, 0x01, 0x4C, 0xB1, 0x35, 0x6E, 0x80, 0x9C, + 0x61, 0x80, 0x86, 0x36, 0x5F, 0x3F, 0x7C, 0xB6, 0x65, 0x62, 0xC0, 0x8C, + 0x87, 0xE9, 0xBD, 0x8F, 0xF1, 0x88, 0x16, 0x6C, 0xAD, 0x7A, 0xAE, 0xFF, + 0x00, 0xB4, 0x78, 0x26, 0xC1, 0x22, 0x5E, 0x8A, 0xBF, 0x83, 0x79, 0x84, + 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0xEB, 0x05, 0xDB, 0x05, 0xD2, 0x04, 0x26, + 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, 0x01, 0x0A, 0x01, 0xFC, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0xEB, 0x08, 0x40, 0x05, 0xD2, 0x04, 0x26, + 0x01, 0x19, 0x00, 0x00, 0x00, 0x07, 0x01, 0x0A, 0x04, 0x61, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x90, 0x00, 0x00, 0x04, 0x29, 0x05, 0xD2, 0x04, 0x26, + 0x01, 0x19, 0x01, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCC, 0xFD, 0xD8, + 0xFF, 0xFF, 0x00, 0x8E, 0xFF, 0xEB, 0x09, 0xAA, 0x05, 0xD2, 0x04, 0x26, + 0x01, 0x2C, 0x00, 0x00, 0x00, 0x07, 0x01, 0x0A, 0x05, 0xCB, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x5E, 0xFE, 0x5E, 0x06, 0x5B, 0x05, 0xE6, 0x00, 0x15, + 0x00, 0x2B, 0x00, 0x32, 0x00, 0x00, 0x41, 0x11, 0x0E, 0x02, 0x23, 0x22, + 0x26, 0x26, 0x02, 0x35, 0x35, 0x37, 0x15, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x37, 0x11, 0x13, 0x11, 0x07, 0x11, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x15, 0x23, 0x35, 0x34, 0x12, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x25, 0x11, 0x23, 0x11, 0x05, 0x35, 0x25, 0x04, 0xE0, 0x2C, 0x9B, 0xCB, + 0x75, 0x96, 0xEB, 0xA5, 0x55, 0xF2, 0x01, 0x57, 0xB4, 0x8A, 0x56, 0x90, + 0x2D, 0xE7, 0xE7, 0x2A, 0x91, 0x55, 0x8B, 0xB5, 0x59, 0xF2, 0x58, 0xA8, + 0xF1, 0x99, 0x71, 0xC6, 0x97, 0x01, 0xA5, 0xE8, 0xFE, 0xFB, 0x01, 0x3B, + 0x03, 0x1F, 0xFD, 0xA3, 0x40, 0x60, 0x36, 0x61, 0xB6, 0x01, 0x03, 0xA2, + 0x75, 0x03, 0x78, 0x9E, 0xE4, 0x79, 0x31, 0x2D, 0x02, 0x14, 0x01, 0xF1, + 0xFD, 0xAF, 0x01, 0x02, 0x06, 0x2D, 0x32, 0x73, 0xE1, 0xA5, 0x72, 0x72, + 0xA5, 0x01, 0x03, 0xB5, 0x5F, 0x38, 0x61, 0x85, 0xF8, 0x8C, 0x06, 0x7A, + 0x67, 0xDA, 0x87, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x05, + 0xD2, 0x06, 0x26, 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x68, 0x00, + 0xB4, 0x00, 0x04, 0x00, 0x02, 0x00, 0x18, 0x00, 0x00, 0x05, 0xD4, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x1A, 0x00, 0x00, 0x53, 0x27, 0x13, 0x33, 0x13, + 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, + 0x11, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0xC7, 0xAF, + 0xFE, 0xE9, 0x3B, 0x01, 0x95, 0xA1, 0xE7, 0x7D, 0x7B, 0xE4, 0x9F, 0xFD, + 0xC8, 0xE0, 0x01, 0x49, 0x8C, 0xA3, 0x4A, 0x88, 0x5D, 0xFE, 0x73, 0x03, + 0xB0, 0x64, 0x01, 0xBE, 0xFD, 0xC5, 0x6E, 0xCC, 0x8B, 0x8F, 0xD1, 0x72, + 0x05, 0xD2, 0xFA, 0xEE, 0x95, 0x7E, 0x51, 0x75, 0x3F, 0x00, 0x01, 0x00, + 0x5B, 0xFF, 0xEC, 0x04, 0x9E, 0x05, 0xE6, 0x00, 0x1F, 0x00, 0x00, 0x45, + 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x35, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x11, 0x14, 0x06, 0x06, 0x02, 0x7C, 0x9C, 0xF6, 0x8F, + 0xF0, 0x01, 0xA2, 0x8E, 0x8D, 0xA1, 0x4E, 0x4C, 0x0F, 0x2B, 0x11, 0x1B, + 0x45, 0x23, 0x96, 0xC0, 0x94, 0xF8, 0x14, 0x70, 0xDF, 0xA6, 0x03, 0xF1, + 0xFC, 0x0F, 0x9D, 0x97, 0x97, 0x9D, 0x02, 0x94, 0x5F, 0x4A, 0x02, 0x04, + 0xBC, 0x08, 0x0A, 0xBF, 0xB2, 0xFD, 0x6C, 0xA5, 0xE0, 0x70, 0x00, 0x03, + 0x00, 0x54, 0xFE, 0x9B, 0x05, 0x5F, 0x06, 0x38, 0x00, 0x03, 0x00, 0x1C, + 0x00, 0x21, 0x00, 0x00, 0x53, 0x35, 0x33, 0x15, 0x27, 0x21, 0x36, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, 0x07, 0x21, 0x27, 0x21, 0x3E, 0x02, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x11, 0x23, 0x01, 0x01, 0x33, 0x01, + 0x15, 0x54, 0xF4, 0xF4, 0x01, 0xFF, 0xA8, 0xEA, 0x7B, 0x50, 0x95, 0x68, + 0x46, 0xFE, 0x3A, 0x01, 0x01, 0x4D, 0x5F, 0x7E, 0x40, 0x3B, 0x7D, 0x65, + 0xFE, 0xF6, 0xF5, 0x04, 0x08, 0xFD, 0xE5, 0xFF, 0x02, 0x1F, 0x05, 0x6E, + 0xCA, 0xCA, 0x64, 0x01, 0x66, 0xC3, 0x8F, 0x6A, 0xA6, 0x72, 0x1F, 0x20, + 0xC0, 0x01, 0x40, 0x71, 0x46, 0x4D, 0x71, 0x3E, 0xFA, 0xF2, 0xFE, 0x9B, + 0x03, 0xF8, 0xFC, 0x13, 0x0B, 0x00, 0x03, 0x00, 0x8E, 0xFF, 0xEC, 0x06, + 0xA0, 0x05, 0xD2, 0x00, 0x04, 0x00, 0x18, 0x00, 0x2D, 0x00, 0x00, 0x65, + 0x11, 0x33, 0x11, 0x23, 0x13, 0x37, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, + 0x25, 0x37, 0x16, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x1E, 0x02, 0x33, 0x32, 0x3E, 0x02, 0x05, 0xB8, 0xE8, 0xD7, 0x05, + 0x5E, 0x57, 0xB8, 0x92, 0x6B, 0xA3, 0x5A, 0xE7, 0x33, 0x52, 0x2F, 0x66, + 0x77, 0x33, 0xFD, 0x6D, 0x5E, 0x01, 0x58, 0xBA, 0x93, 0x70, 0xA1, 0x56, + 0xE8, 0x01, 0x31, 0x51, 0x2E, 0x4F, 0x6B, 0x3F, 0x1B, 0xE2, 0x04, 0xF0, + 0xFA, 0x2E, 0x01, 0xF8, 0x02, 0x97, 0xEE, 0x89, 0x56, 0xC8, 0xAB, 0x04, + 0x1D, 0xFB, 0xE3, 0x68, 0x74, 0x2E, 0x5A, 0x98, 0x5B, 0x02, 0x98, 0xEE, + 0x88, 0x57, 0xC8, 0xAA, 0x04, 0x1D, 0xFB, 0xE3, 0x68, 0x74, 0x2E, 0x36, + 0x5D, 0x78, 0x00, 0x02, 0x00, 0x6D, 0xFE, 0x5E, 0x04, 0xBD, 0x05, 0xE6, + 0x00, 0x03, 0x00, 0x21, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x35, + 0x36, 0x24, 0x36, 0x12, 0x35, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, + 0x06, 0x07, 0x11, 0x36, 0x36, 0x33, 0x32, 0x04, 0x12, 0x15, 0x15, 0x14, + 0x02, 0x00, 0x04, 0x01, 0x5E, 0xF1, 0x79, 0xBF, 0x01, 0x16, 0xB6, 0x59, + 0x2A, 0x56, 0x84, 0x5B, 0x6E, 0x8C, 0x4D, 0x12, 0x3A, 0xA8, 0x75, 0xB2, + 0x01, 0x0D, 0x95, 0x90, 0xFE, 0xF9, 0xFE, 0x98, 0x05, 0xD2, 0xF8, 0x8C, + 0x07, 0x74, 0xF9, 0x78, 0xC2, 0x24, 0xA3, 0xDF, 0x01, 0x01, 0x82, 0x38, + 0x6C, 0xA4, 0x6E, 0x38, 0x4E, 0x8A, 0x5D, 0x01, 0x8C, 0x31, 0x3B, 0x8D, + 0xFE, 0xE6, 0xD6, 0x34, 0xBD, 0xFE, 0xB2, 0xFE, 0xF7, 0xB4, 0x00, 0x02, + 0x00, 0x67, 0xFE, 0x60, 0x04, 0x95, 0x05, 0xE6, 0x00, 0x11, 0x00, 0x15, + 0x00, 0x00, 0x41, 0x23, 0x11, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x35, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x01, 0x11, 0x23, 0x11, + 0x04, 0x95, 0xEC, 0x01, 0x49, 0x8B, 0x63, 0x6F, 0xC5, 0x50, 0x4D, 0xD4, + 0x7C, 0x8A, 0xEE, 0x91, 0xFC, 0xBA, 0xE8, 0xFE, 0x60, 0x05, 0xA7, 0x65, + 0x7F, 0x3D, 0x51, 0x46, 0xC5, 0x3F, 0x51, 0x6C, 0xD5, 0x9E, 0x01, 0xCB, + 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x43, 0xFF, 0xEC, 0x04, 0xB6, + 0x05, 0xE6, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x41, 0x00, 0x00, 0x41, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x17, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x33, 0x16, 0x36, 0x35, 0x34, 0x26, 0x27, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x34, 0x26, 0x27, 0x35, 0x1E, 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, 0x15, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x02, 0x71, 0x17, 0xA1, 0xFC, 0x90, 0x91, 0xFC, 0xA0, + 0x17, 0xA0, 0xFC, 0x92, 0x90, 0xFD, 0xB8, 0x18, 0x8F, 0xAC, 0xAD, 0x8E, + 0x18, 0x8F, 0xAC, 0xAC, 0xAD, 0x24, 0x57, 0x8C, 0x53, 0x54, 0x55, 0x77, + 0xBA, 0x6A, 0x95, 0xFB, 0x98, 0x24, 0x98, 0xFB, 0x94, 0x6B, 0xBA, 0x75, + 0x55, 0x53, 0x53, 0x8C, 0x03, 0x80, 0x67, 0xC8, 0x94, 0x9A, 0xCE, 0x69, + 0x68, 0xCE, 0x99, 0x94, 0xCA, 0x67, 0xB4, 0x87, 0x8A, 0x89, 0x81, 0x01, + 0x82, 0x8B, 0x88, 0x87, 0xC7, 0x1D, 0x5B, 0x5A, 0x57, 0x5D, 0x14, 0xB9, + 0x04, 0x57, 0xA8, 0x7E, 0x92, 0xAA, 0x48, 0x48, 0xAA, 0x92, 0x7E, 0xA8, + 0x57, 0x04, 0xB9, 0x14, 0x5D, 0x57, 0x5B, 0x5A, 0x1D, 0x00, 0x02, 0x00, + 0x40, 0x00, 0x00, 0x03, 0xFB, 0x05, 0xE6, 0x00, 0x1C, 0x00, 0x20, 0x00, + 0x00, 0x41, 0x33, 0x3E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x23, 0x37, 0x11, 0x23, 0x11, 0x01, 0xC5, 0x40, 0x68, + 0x71, 0x2B, 0x2A, 0x70, 0x6A, 0x67, 0x75, 0x05, 0xE4, 0x03, 0x74, 0xC9, + 0x84, 0xA7, 0xE0, 0x70, 0x70, 0xE0, 0xA8, 0x3E, 0xC5, 0xF5, 0x01, 0xD8, + 0x01, 0x61, 0x9C, 0x58, 0x97, 0x52, 0x9E, 0x68, 0x7A, 0x60, 0x7A, 0xBD, + 0x6C, 0x95, 0xF8, 0x94, 0x97, 0x93, 0xF6, 0x95, 0xC8, 0xFE, 0x28, 0x01, + 0xD8, 0x00, 0x02, 0x00, 0x53, 0x00, 0x00, 0x05, 0x62, 0x05, 0xD2, 0x00, + 0x04, 0x00, 0x09, 0x00, 0x00, 0x61, 0x01, 0x03, 0x33, 0x09, 0x02, 0x21, + 0x01, 0x33, 0x04, 0x58, 0xFE, 0x71, 0x34, 0xB7, 0x02, 0x16, 0xFD, 0x87, + 0xFE, 0x75, 0xFE, 0xF5, 0x02, 0x14, 0xB7, 0x04, 0xCE, 0x01, 0x04, 0xFA, + 0x2E, 0x04, 0xCE, 0xFB, 0x32, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0xA0, 0x00, + 0x00, 0x05, 0xE0, 0x05, 0xD2, 0x04, 0x26, 0x01, 0x19, 0x11, 0x00, 0x00, + 0x07, 0x01, 0x19, 0x01, 0xB8, 0x00, 0x00, 0x00, 0x01, 0x00, 0x51, 0xFF, + 0xEC, 0x04, 0x1B, 0x05, 0xB7, 0x00, 0x26, 0x00, 0x00, 0x41, 0x37, 0x1E, + 0x02, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, + 0x12, 0x36, 0x36, 0x37, 0x17, 0x0E, 0x03, 0x15, 0x15, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x02, 0x39, 0x50, 0x75, 0xB5, + 0x68, 0x6F, 0xD4, 0x9A, 0x79, 0xB8, 0x7C, 0x40, 0x47, 0x9D, 0xFF, 0xB9, + 0x20, 0x75, 0xAD, 0x73, 0x39, 0x01, 0x46, 0x73, 0x43, 0x4D, 0x6D, 0x3B, + 0x44, 0x70, 0x03, 0x1A, 0xB6, 0x23, 0x94, 0xD3, 0x80, 0x92, 0xD5, 0x73, + 0x5E, 0xA1, 0xCD, 0x6E, 0x3A, 0xA5, 0x01, 0x1C, 0xE1, 0x97, 0x1E, 0xC0, + 0x16, 0x64, 0x98, 0xD1, 0x84, 0x7B, 0x75, 0xA2, 0x53, 0x3E, 0x78, 0x55, + 0x65, 0x8F, 0x5B, 0x00, 0x04, 0x00, 0x47, 0xFF, 0xEC, 0x05, 0x7D, 0x05, + 0xD2, 0x00, 0x04, 0x00, 0x09, 0x00, 0x19, 0x00, 0x26, 0x00, 0x00, 0x41, + 0x01, 0x21, 0x01, 0x03, 0x01, 0x01, 0x07, 0x23, 0x01, 0x01, 0x22, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x02, 0xD0, 0x01, 0xA5, 0x01, 0x08, 0xFD, 0x75, 0x25, 0xFE, + 0xCF, 0x01, 0xBF, 0x2F, 0x8B, 0xFD, 0xF1, 0x01, 0x21, 0x64, 0xA6, 0x62, + 0x62, 0xA6, 0x64, 0x6D, 0xA3, 0x5C, 0x63, 0xA4, 0x64, 0x3E, 0x58, 0x58, + 0x3E, 0x41, 0x58, 0x28, 0x46, 0x02, 0x45, 0x03, 0x8D, 0xFA, 0xDA, 0x01, + 0x52, 0x03, 0xD4, 0xFC, 0x7A, 0x5A, 0x03, 0xE0, 0xFA, 0x1A, 0x61, 0xA4, + 0x64, 0x64, 0xA4, 0x63, 0x68, 0xA5, 0x5E, 0x63, 0xA5, 0x61, 0xCC, 0x01, + 0x50, 0x4D, 0x4F, 0x50, 0x50, 0x4E, 0x34, 0x46, 0x24, 0x00, 0x01, 0x00, + 0x8E, 0xFF, 0xEC, 0x05, 0x0C, 0x05, 0xE6, 0x00, 0x2C, 0x00, 0x00, 0x73, + 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x01, 0x1E, 0x02, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x23, 0x35, 0x01, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x11, 0x8E, 0x6F, 0xD8, 0x9F, 0x6F, 0xC1, + 0xA9, 0x4A, 0xFE, 0xB4, 0x8D, 0xC9, 0x6B, 0x84, 0xE5, 0x95, 0x48, 0x98, + 0x47, 0x43, 0x2C, 0x70, 0x43, 0x86, 0x93, 0x48, 0x69, 0x66, 0x1E, 0x8F, + 0x01, 0x1F, 0x2C, 0x7E, 0x59, 0x69, 0x76, 0x2F, 0x03, 0xDB, 0xAC, 0xE9, + 0x76, 0x3E, 0x6A, 0x42, 0xFE, 0x5A, 0x0B, 0x6E, 0xBA, 0x7D, 0x8C, 0xC6, + 0x68, 0x1A, 0x1B, 0xB8, 0x13, 0x1E, 0x89, 0x78, 0x5D, 0x6A, 0x32, 0x0E, + 0xA6, 0x01, 0x7A, 0x21, 0x38, 0x5C, 0x99, 0x5B, 0xFC, 0x27, 0xFF, 0xFF, + 0x00, 0x4A, 0xFF, 0xEB, 0x04, 0x32, 0x04, 0x41, 0x06, 0x06, 0x02, 0x23, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x7D, 0xFF, 0xEB, 0x04, 0x66, 0x04, 0x41, + 0x00, 0x16, 0x00, 0x26, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x27, 0x23, + 0x15, 0x23, 0x11, 0x33, 0x15, 0x33, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x02, 0x9A, 0x4C, 0x7B, + 0x5F, 0x20, 0x05, 0xD2, 0xD3, 0x05, 0x1E, 0x5E, 0x7D, 0x4C, 0x89, 0xCF, + 0x74, 0x74, 0xCE, 0xB6, 0x57, 0x81, 0x48, 0x48, 0x80, 0x58, 0x5B, 0x85, + 0x47, 0x47, 0x85, 0x15, 0x2E, 0x53, 0x37, 0xA3, 0x04, 0x2E, 0x9F, 0x35, + 0x50, 0x2D, 0x8A, 0xF9, 0xA7, 0xA7, 0xFA, 0x8B, 0xB7, 0x59, 0xA7, 0x75, + 0x76, 0xA6, 0x58, 0x5D, 0xA6, 0x71, 0x70, 0xA8, 0x5D, 0x00, 0x02, 0x00, + 0x4A, 0xFF, 0xEC, 0x05, 0x3C, 0x04, 0x6C, 0x00, 0x1E, 0x00, 0x3D, 0x00, + 0x00, 0x53, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x1E, 0x02, + 0x15, 0x14, 0x06, 0x23, 0x35, 0x16, 0x36, 0x35, 0x34, 0x26, 0x26, 0x27, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x25, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x07, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x15, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x37, 0x3E, 0x03, 0x33, 0x32, 0x16, 0xCE, 0x84, 0x33, + 0x8C, 0x5C, 0x4B, 0x79, 0x6E, 0x71, 0x44, 0x20, 0x44, 0x30, 0x99, 0x86, + 0x24, 0x1B, 0x2B, 0x5B, 0x49, 0x35, 0x4A, 0x43, 0x2C, 0x21, 0x3B, 0x04, + 0x55, 0x85, 0x1A, 0x3C, 0x20, 0x2B, 0x48, 0x5E, 0x50, 0x30, 0x47, 0x26, + 0x1B, 0x23, 0x84, 0x9A, 0x31, 0x46, 0x20, 0x42, 0x71, 0x6F, 0x7B, 0x4A, + 0x5D, 0x8B, 0x03, 0x46, 0x8E, 0x3B, 0x5D, 0x4A, 0x89, 0xC0, 0x76, 0x38, + 0x89, 0x8D, 0x41, 0x6C, 0x7C, 0xB6, 0x01, 0x28, 0x16, 0x21, 0x6C, 0xAC, + 0x7F, 0x5C, 0x6D, 0x31, 0x2A, 0x6D, 0x8E, 0x21, 0x2A, 0x3B, 0x95, 0x88, + 0x50, 0x85, 0x64, 0x21, 0x16, 0x27, 0xB6, 0x7C, 0x6C, 0x41, 0x8D, 0x8A, + 0x3A, 0x75, 0xBF, 0x89, 0x49, 0x5D, 0x00, 0x01, 0x00, 0x49, 0xFE, 0x46, + 0x03, 0xF2, 0x04, 0x6C, 0x00, 0x21, 0x00, 0x00, 0x41, 0x32, 0x36, 0x37, + 0x33, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x34, 0x36, 0x36, + 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x11, 0x14, 0x16, 0x16, 0x02, 0x35, 0x5C, 0x81, 0x05, 0xDB, 0x02, + 0x7A, 0xC7, 0x78, 0xA7, 0xDC, 0x6B, 0x6C, 0xDB, 0xA7, 0x84, 0xC5, 0x70, + 0x02, 0xDB, 0x05, 0x76, 0x67, 0x68, 0x71, 0x2A, 0x2A, 0x70, 0xFF, 0x00, + 0x69, 0x51, 0x65, 0xAA, 0x65, 0x94, 0xF6, 0x94, 0x01, 0xE8, 0x94, 0xF7, + 0x95, 0x69, 0xB6, 0x76, 0x59, 0x82, 0x6C, 0xA5, 0x55, 0xFE, 0x18, 0x54, + 0xA5, 0x6B, 0x00, 0x02, 0x00, 0x46, 0xFE, 0x88, 0x04, 0x29, 0x04, 0x6C, + 0x00, 0x20, 0x00, 0x34, 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x2E, 0x02, + 0x27, 0x26, 0x02, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x15, 0x14, 0x06, 0x06, 0x07, 0x06, 0x06, 0x23, 0x1E, 0x03, 0x17, + 0x03, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, + 0x16, 0x17, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x03, 0xA0, 0xFD, 0x1A, + 0x01, 0xB4, 0x0D, 0x41, 0x50, 0x23, 0x9E, 0xC9, 0x75, 0xDD, 0x9E, 0x9D, + 0xE0, 0x76, 0x6B, 0xC4, 0x85, 0x0E, 0x0C, 0x0C, 0x29, 0x5B, 0x5B, 0x52, + 0x20, 0x60, 0x34, 0x75, 0x61, 0x5E, 0x75, 0x36, 0x6A, 0x44, 0x12, 0x25, + 0x17, 0x62, 0x7B, 0x3A, 0xFE, 0x88, 0xB6, 0x0F, 0x3C, 0x44, 0x1C, 0x85, + 0x01, 0x11, 0xA7, 0x14, 0xA6, 0xFD, 0x8F, 0x8C, 0xF8, 0xA3, 0x14, 0x7D, + 0xCE, 0x86, 0x12, 0x02, 0x02, 0x24, 0x51, 0x53, 0x50, 0x26, 0x03, 0x1A, + 0x14, 0x6A, 0xAA, 0x64, 0x62, 0xAA, 0x6C, 0x14, 0x74, 0xAA, 0x2B, 0x06, + 0x05, 0x5F, 0x9A, 0x00, 0x01, 0x00, 0x40, 0xFF, 0xEC, 0x03, 0xFB, 0x04, + 0x6C, 0x00, 0x23, 0x00, 0x00, 0x45, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x35, 0x34, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, + 0x15, 0x21, 0x15, 0x21, 0x35, 0x10, 0x12, 0x33, 0x32, 0x16, 0x12, 0x15, + 0x15, 0x14, 0x06, 0x06, 0x01, 0xF5, 0x8C, 0xD5, 0x44, 0x83, 0x37, 0x91, + 0x4E, 0x8C, 0x9B, 0x1E, 0x3E, 0x61, 0x42, 0x64, 0x7C, 0x0A, 0x02, 0x58, + 0xFC, 0xC1, 0xF2, 0xD6, 0x99, 0xE0, 0x7A, 0x7F, 0xE9, 0x14, 0x6D, 0x61, + 0x75, 0x46, 0x42, 0xBE, 0xA1, 0x28, 0x55, 0x8E, 0x68, 0x39, 0x8B, 0x88, + 0x0F, 0xAD, 0x64, 0x01, 0x02, 0x01, 0x23, 0x92, 0xFE, 0xFE, 0xAA, 0x28, + 0x9F, 0xF3, 0x88, 0xFF, 0xFF, 0xFF, 0xC9, 0xFE, 0x1D, 0x02, 0xA2, 0x06, + 0x16, 0x06, 0x06, 0x06, 0x21, 0x00, 0x00, 0x00, 0x01, 0x00, 0x4A, 0xFE, + 0x5E, 0x03, 0xEC, 0x06, 0x16, 0x00, 0x2B, 0x00, 0x00, 0x45, 0x14, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x17, + 0x07, 0x01, 0x2E, 0x02, 0x07, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x02, 0xDA, 0x44, 0x95, 0x7A, 0x94, 0xA9, 0xAD, + 0x89, 0x59, 0xB4, 0x46, 0xF8, 0x78, 0xFE, 0xE5, 0x20, 0x3D, 0x3F, 0x23, + 0x2E, 0x33, 0x3C, 0x31, 0x33, 0x4D, 0xB2, 0xAA, 0x23, 0x46, 0x22, 0x05, + 0x1B, 0x40, 0x1E, 0x4C, 0x48, 0x57, 0x56, 0x98, 0x5D, 0x8F, 0x78, 0x7B, + 0x98, 0x4C, 0x43, 0xEA, 0x86, 0x01, 0x0B, 0x1C, 0x26, 0x10, 0x05, 0x06, + 0x39, 0x2A, 0x2E, 0x3B, 0x46, 0x43, 0x05, 0x1E, 0xB3, 0xBD, 0x03, 0x02, + 0xB8, 0x01, 0x01, 0x59, 0x5E, 0x00, 0x03, 0x00, 0x61, 0xFE, 0x59, 0x04, + 0x0B, 0x06, 0x16, 0x00, 0x0E, 0x00, 0x1E, 0x00, 0x2A, 0x00, 0x00, 0x41, + 0x37, 0x11, 0x14, 0x16, 0x33, 0x32, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x01, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x05, 0x32, 0x36, 0x27, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x02, 0x51, 0xE9, 0x47, 0x42, 0x21, + 0x27, 0x1A, 0x47, 0x1E, 0x9B, 0xA0, 0xFE, 0x10, 0x62, 0xA5, 0x66, 0x64, + 0xA5, 0x63, 0x63, 0xA5, 0x64, 0x65, 0xA6, 0x61, 0x01, 0x6D, 0x3D, 0x59, + 0x01, 0x58, 0x3D, 0x42, 0x58, 0x58, 0x04, 0x41, 0x6B, 0xFB, 0x1D, 0x61, + 0x51, 0x0A, 0xB8, 0x08, 0x08, 0xBD, 0xB3, 0x04, 0xE3, 0x64, 0xA4, 0x62, + 0x62, 0xA4, 0x64, 0x62, 0xA6, 0x62, 0x62, 0xA5, 0x37, 0x4E, 0x50, 0x4D, + 0x4F, 0x4F, 0x4D, 0x50, 0x4E, 0xFF, 0xFF, 0x00, 0x46, 0xFF, 0xEA, 0x04, + 0x25, 0x04, 0x46, 0x06, 0x06, 0x02, 0x85, 0x00, 0x00, 0x00, 0x02, 0x00, + 0x46, 0xFF, 0xE8, 0x05, 0xE8, 0x04, 0x44, 0x00, 0x27, 0x00, 0x39, 0x00, + 0x00, 0x45, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x25, 0x15, 0x05, 0x37, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x06, 0x07, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x01, 0x22, 0x26, 0x26, 0x27, 0x07, 0x27, 0x25, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x02, 0x34, 0x6C, 0xB5, + 0x85, 0x48, 0x03, 0x7A, 0xFC, 0xF5, 0x5F, 0x45, 0x81, 0x59, 0x58, 0x81, + 0x47, 0x48, 0x87, 0x5F, 0x44, 0x69, 0x46, 0x10, 0xCC, 0x15, 0x82, 0xC3, + 0x77, 0x9F, 0xE4, 0x7B, 0x7E, 0xE0, 0x02, 0x95, 0x47, 0x60, 0x3E, 0x14, + 0x87, 0x07, 0x01, 0x18, 0x12, 0x22, 0x31, 0x28, 0x12, 0x27, 0x12, 0x23, + 0x24, 0x45, 0x18, 0x4C, 0x91, 0xCC, 0x81, 0x15, 0x8A, 0xA1, 0x79, 0x4A, + 0x62, 0x94, 0x51, 0x51, 0x92, 0x5F, 0x60, 0x68, 0x99, 0x55, 0x29, 0x4B, + 0x33, 0x0B, 0x63, 0x96, 0x55, 0x8E, 0xFB, 0xA3, 0xA3, 0xFD, 0x90, 0x01, + 0x25, 0x3E, 0x7E, 0x60, 0x16, 0xA0, 0x2D, 0x79, 0x87, 0x36, 0x08, 0x06, + 0x8B, 0x10, 0x10, 0xFF, 0xFF, 0x00, 0x5E, 0xFE, 0x45, 0x04, 0x80, 0x04, + 0x2E, 0x06, 0x07, 0x05, 0x49, 0x00, 0x00, 0xFE, 0x5C, 0xFF, 0xFF, 0x00, + 0x5E, 0xFE, 0x45, 0x04, 0x80, 0x05, 0xE4, 0x06, 0x27, 0x05, 0x49, 0x00, + 0x00, 0xFE, 0x5C, 0x00, 0x07, 0x0A, 0x8E, 0x00, 0xD6, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x5E, 0xFE, 0x59, 0x04, 0x98, 0x04, 0x2E, 0x00, 0x35, 0x00, + 0x00, 0x41, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x17, 0x05, 0x07, 0x25, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x23, + 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x15, 0x01, 0x15, 0x1E, 0x03, 0x15, + 0x14, 0x0E, 0x02, 0x02, 0x1C, 0x53, 0xA0, 0x80, 0x4B, 0x55, 0x9A, 0x66, + 0x5F, 0x9F, 0x7F, 0x2F, 0x01, 0x39, 0x6C, 0xFE, 0xCB, 0x39, 0xA1, 0x62, + 0x47, 0x50, 0x4A, 0x79, 0x44, 0x7C, 0x9A, 0x48, 0x55, 0x98, 0x63, 0x87, + 0x01, 0x62, 0xFD, 0x88, 0x03, 0x9A, 0xFE, 0x6C, 0x66, 0xA3, 0x72, 0x3C, + 0x4D, 0x94, 0xD4, 0xFE, 0x59, 0x29, 0x50, 0x75, 0x4E, 0x51, 0x7A, 0x44, + 0x37, 0x50, 0x26, 0xF8, 0x83, 0xF7, 0x2F, 0x55, 0x36, 0x2B, 0x2A, 0x3A, + 0x1E, 0x5D, 0x8B, 0x45, 0x4E, 0x79, 0x45, 0xA7, 0x01, 0x75, 0x04, 0xC1, + 0x9F, 0xFE, 0x5C, 0x04, 0x07, 0x4C, 0x77, 0x96, 0x52, 0x5B, 0xAA, 0x87, + 0x50, 0x00, 0x01, 0x00, 0x58, 0xFE, 0x45, 0x04, 0x85, 0x04, 0x2E, 0x00, + 0x22, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x37, + 0x35, 0x01, 0x35, 0x21, 0x15, 0x21, 0x15, 0x01, 0x15, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, 0x0E, + 0x02, 0x02, 0x6D, 0x9B, 0xF1, 0x89, 0x71, 0xD0, 0x8E, 0xFE, 0x68, 0x03, + 0x9C, 0xFD, 0x7F, 0x01, 0x6B, 0x84, 0x70, 0x9B, 0x50, 0x4F, 0x8E, 0x5C, + 0x5F, 0x8A, 0x4D, 0x02, 0xDE, 0x02, 0x85, 0xF0, 0xFE, 0x45, 0x74, 0xCA, + 0x82, 0x75, 0xBD, 0x76, 0x0A, 0x04, 0x01, 0xD1, 0xA2, 0xC1, 0x04, 0xFE, + 0x5B, 0xA9, 0x42, 0x7A, 0x54, 0x51, 0x78, 0x42, 0x46, 0x83, 0x5C, 0x8C, + 0xD9, 0x7B, 0x00, 0x02, 0x00, 0x4B, 0xFE, 0x44, 0x03, 0xF0, 0x04, 0x2E, + 0x00, 0x07, 0x00, 0x33, 0x00, 0x00, 0x53, 0x21, 0x15, 0x01, 0x23, 0x35, + 0x01, 0x21, 0x13, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, 0x14, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x37, 0x3E, + 0x02, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x0E, 0x02, 0x07, 0x0E, 0x02, 0x80, 0x03, 0x70, 0xFD, 0xCE, 0x7F, + 0x01, 0x5A, 0xFD, 0xE7, 0xAE, 0x6E, 0x5B, 0x39, 0x6B, 0x48, 0x04, 0xE2, + 0x69, 0xCD, 0x96, 0x82, 0xC4, 0x6C, 0x48, 0x78, 0x91, 0x47, 0x44, 0x63, + 0x36, 0x59, 0x64, 0x5F, 0x0A, 0x55, 0x80, 0xBD, 0x67, 0x3F, 0x70, 0x93, + 0x54, 0x57, 0x63, 0x29, 0x04, 0x2E, 0x8D, 0xFE, 0x38, 0x8E, 0x01, 0x0C, + 0xFC, 0x0B, 0x41, 0x48, 0x21, 0x51, 0x46, 0x5A, 0xA5, 0x6A, 0x53, 0x94, + 0x62, 0x52, 0x72, 0x4A, 0x2F, 0x0F, 0x0F, 0x1D, 0x34, 0x2E, 0x36, 0x3C, + 0xB0, 0x47, 0x82, 0x5B, 0x49, 0x69, 0x4A, 0x33, 0x13, 0x12, 0x33, 0x3E, + 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x05, 0x4B, 0x05, 0xD2, 0x00, 0x2F, + 0x00, 0x00, 0x61, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, + 0x33, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, + 0x06, 0x23, 0x01, 0xE7, 0x80, 0xA0, 0x4A, 0xD6, 0x43, 0x4C, 0x01, 0xBF, + 0x67, 0x6B, 0x51, 0x48, 0xB2, 0x97, 0x99, 0x67, 0xB9, 0x7B, 0x77, 0xB6, + 0x6B, 0x08, 0xC9, 0x06, 0x6F, 0x60, 0x5A, 0x6E, 0x52, 0x4B, 0xB4, 0x9B, + 0x92, 0x69, 0xBF, 0x7F, 0x49, 0x93, 0x70, 0x04, 0x86, 0xFB, 0x6C, 0x4C, + 0x44, 0x42, 0x3F, 0x36, 0x41, 0x0F, 0x26, 0x21, 0x91, 0x76, 0x5F, 0x90, + 0x51, 0x51, 0x94, 0x66, 0x09, 0x49, 0x62, 0x53, 0x3E, 0x36, 0x3F, 0x11, + 0x28, 0x22, 0x8F, 0x74, 0x64, 0x8B, 0x47, 0x00, 0x06, 0x00, 0x6C, 0x00, + 0x00, 0x03, 0xA1, 0x05, 0xAF, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, + 0x0F, 0x00, 0x13, 0x00, 0x17, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x33, + 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x13, 0x15, 0x21, 0x35, 0x33, + 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x03, 0x03, 0xFE, 0x03, 0x14, + 0xAE, 0x03, 0x35, 0xAE, 0x10, 0xFE, 0x03, 0x14, 0xAE, 0x03, 0x35, 0xAE, + 0x02, 0x46, 0x89, 0x89, 0xFD, 0xBA, 0x02, 0x46, 0xFD, 0xBA, 0x02, 0x46, + 0x03, 0x69, 0x8B, 0x8B, 0xFD, 0xBC, 0x02, 0x44, 0xFD, 0xBC, 0x02, 0x44, + 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x4E, 0x04, 0x32, 0x04, 0x41, 0x06, 0x06, + 0x02, 0x92, 0x00, 0x00, 0x00, 0x02, 0x00, 0x49, 0x00, 0x00, 0x03, 0xF2, + 0x05, 0xE6, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x41, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, + 0x37, 0x11, 0x23, 0x11, 0x01, 0x8F, 0x75, 0x68, 0x71, 0x2D, 0x01, 0x2B, + 0x71, 0x6B, 0x5A, 0x7F, 0x07, 0xDB, 0x04, 0x79, 0xC6, 0x76, 0xA8, 0xDC, + 0x6C, 0x6C, 0xDA, 0xA8, 0x75, 0xEC, 0xF1, 0x02, 0x2B, 0x67, 0xA3, 0x59, + 0x3C, 0x57, 0xA2, 0x69, 0x69, 0x51, 0x66, 0xA9, 0x65, 0x94, 0xF5, 0x93, + 0x3C, 0x94, 0xF6, 0x93, 0xBA, 0xFD, 0xD5, 0x02, 0x2B, 0x00, 0x03, 0x00, + 0x49, 0x00, 0x00, 0x03, 0xF2, 0x05, 0xE6, 0x00, 0x03, 0x00, 0x20, 0x00, + 0x24, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x37, 0x33, 0x32, 0x36, 0x36, + 0x35, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x37, + 0x11, 0x23, 0x11, 0x03, 0x4C, 0xFD, 0x66, 0xDD, 0x75, 0x68, 0x71, 0x2D, + 0x01, 0x2B, 0x71, 0x6B, 0x5A, 0x7F, 0x07, 0xDB, 0x04, 0x79, 0xC6, 0x76, + 0xA8, 0xDC, 0x6C, 0x6C, 0xDB, 0xA6, 0x76, 0xEC, 0xF1, 0x01, 0x36, 0xA8, + 0xA8, 0xF5, 0x67, 0xA3, 0x59, 0x3C, 0x57, 0xA2, 0x69, 0x69, 0x51, 0x66, + 0xA9, 0x65, 0x94, 0xF5, 0x93, 0x3C, 0x94, 0xF6, 0x93, 0xBA, 0xFD, 0xD5, + 0x02, 0x2B, 0x00, 0x02, 0x00, 0x5F, 0xFF, 0xEC, 0x03, 0xE0, 0x05, 0x41, + 0x00, 0x20, 0x00, 0x24, 0x00, 0x00, 0x41, 0x34, 0x2E, 0x04, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x1E, 0x04, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x35, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x13, 0x15, 0x21, 0x35, + 0x02, 0xF8, 0x35, 0x53, 0x5F, 0x54, 0x35, 0xEB, 0x34, 0x53, 0x5E, 0x53, + 0x35, 0x6D, 0xC5, 0x84, 0x95, 0xCD, 0x69, 0xE4, 0x03, 0x47, 0x6A, 0x35, + 0x62, 0x6A, 0x3E, 0xFD, 0x9B, 0x01, 0x24, 0x30, 0x3F, 0x34, 0x39, 0x4E, + 0x75, 0x57, 0x02, 0x27, 0xFD, 0xDC, 0x40, 0x51, 0x37, 0x32, 0x40, 0x62, + 0x4D, 0x5F, 0x95, 0x54, 0x6A, 0xA6, 0x5A, 0x46, 0x51, 0x22, 0x4C, 0x03, + 0x51, 0xAB, 0xAB, 0xFF, 0xFF, 0x00, 0x49, 0x00, 0x00, 0x03, 0xF2, 0x05, + 0xE6, 0x06, 0x26, 0x09, 0x4D, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0x00, + 0x61, 0xFD, 0xE1, 0x00, 0x02, 0x00, 0x49, 0xFF, 0xEC, 0x03, 0xF2, 0x05, + 0xD2, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x00, 0x41, 0x23, 0x35, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, + 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x36, 0x26, 0x26, + 0x13, 0x11, 0x23, 0x11, 0x02, 0x04, 0x3F, 0x3D, 0xA8, 0xDC, 0x6C, 0x6C, + 0xDB, 0xA8, 0x82, 0xC4, 0x70, 0x04, 0xDB, 0x07, 0x73, 0x66, 0x6A, 0x71, + 0x2B, 0x01, 0x2B, 0x71, 0x14, 0xEB, 0x03, 0xDA, 0xBB, 0x95, 0xF7, 0x94, + 0x6B, 0x92, 0xF7, 0x95, 0x68, 0xB7, 0x74, 0x58, 0x80, 0x6D, 0xA4, 0x52, + 0x6B, 0x56, 0xA4, 0x6C, 0x01, 0xF7, 0xFE, 0x08, 0x01, 0xF8, 0x00, 0x02, + 0x00, 0x49, 0x00, 0x00, 0x03, 0xF2, 0x05, 0xE6, 0x00, 0x1D, 0x00, 0x21, + 0x00, 0x00, 0x41, 0x33, 0x15, 0x23, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x15, 0x14, 0x1E, 0x02, 0x03, 0x11, 0x33, 0x11, 0x02, 0x35, + 0x40, 0x3E, 0xA7, 0xDC, 0x6B, 0x6C, 0xDB, 0xA7, 0x84, 0xC5, 0x70, 0x02, + 0xDB, 0x05, 0x76, 0x67, 0x68, 0x71, 0x2A, 0x15, 0x37, 0x66, 0x29, 0xE7, + 0x02, 0x28, 0xBB, 0x01, 0x94, 0xF6, 0x93, 0x3E, 0x93, 0xF6, 0x94, 0x67, + 0xB6, 0x76, 0x59, 0x80, 0x6C, 0xA4, 0x53, 0x3E, 0x3B, 0x7D, 0x6A, 0x41, + 0xFD, 0xD8, 0x02, 0x2B, 0xFD, 0xD5, 0x00, 0x02, 0x00, 0x6C, 0xFE, 0x4C, + 0x03, 0xD1, 0x04, 0x6C, 0x00, 0x17, 0x00, 0x26, 0x00, 0x00, 0x77, 0x35, + 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x23, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x04, 0x37, 0x37, 0x16, + 0x16, 0x15, 0x14, 0x00, 0x05, 0x35, 0x3E, 0x02, 0x35, 0x34, 0x26, 0xCC, + 0xAC, 0xE7, 0x76, 0x5D, 0x5B, 0x3D, 0x5A, 0x32, 0xE8, 0x6B, 0xC6, 0x88, + 0xBF, 0xD9, 0xB4, 0xFE, 0xAF, 0xAD, 0x5F, 0x84, 0x89, 0xFE, 0x7E, 0xFE, + 0x7D, 0xC4, 0xEC, 0x6C, 0x46, 0xC1, 0xAA, 0x2D, 0x7A, 0x9A, 0x5B, 0x56, + 0x5A, 0x2B, 0x4E, 0x35, 0x6C, 0xA0, 0x57, 0xB6, 0xA0, 0x89, 0xEA, 0xB0, + 0xC1, 0x6E, 0x22, 0xB9, 0x92, 0xFA, 0xFE, 0xCC, 0x3B, 0xB1, 0x32, 0x7C, + 0xA6, 0x72, 0x5F, 0x7E, 0xFF, 0xFF, 0xFF, 0xC9, 0xFE, 0x1D, 0x02, 0xA2, + 0x06, 0x16, 0x06, 0x26, 0x06, 0x21, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, + 0xFF, 0x58, 0xFD, 0x66, 0x00, 0x03, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x26, + 0x04, 0x2E, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x11, + 0x23, 0x11, 0x21, 0x01, 0x21, 0x27, 0x33, 0x01, 0x03, 0x01, 0x37, 0x01, + 0x01, 0x53, 0xD6, 0x03, 0xA9, 0xFD, 0xEF, 0xFE, 0xFD, 0x06, 0xA8, 0x01, + 0x72, 0x0C, 0xFE, 0x85, 0x85, 0x01, 0xFC, 0x04, 0x2E, 0xFB, 0xD2, 0x04, + 0x2E, 0xFD, 0x8F, 0xB0, 0x01, 0xC1, 0xFB, 0xD2, 0x01, 0xC5, 0x8F, 0xFD, + 0xAC, 0x00, 0x02, 0x00, 0x1D, 0xFF, 0xFB, 0x04, 0xB3, 0x05, 0xD7, 0x00, + 0x03, 0x00, 0x2A, 0x00, 0x00, 0x53, 0x27, 0x25, 0x17, 0x01, 0x01, 0x27, + 0x2E, 0x02, 0x07, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x01, 0x1E, 0x02, 0x37, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x27, 0x03, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x03, 0xED, 0x24, + 0x02, 0x22, 0x26, 0xFD, 0x0C, 0x01, 0x9D, 0x2F, 0x12, 0x2D, 0x3A, 0x27, + 0x5B, 0x0C, 0x1E, 0x49, 0x24, 0x4A, 0x79, 0x5C, 0x1E, 0x01, 0x6E, 0x13, + 0x2C, 0x39, 0x26, 0x4F, 0x0C, 0x1B, 0x40, 0x21, 0x4A, 0x78, 0x59, 0x1E, + 0x85, 0x1F, 0x37, 0x1A, 0x3C, 0x1A, 0x35, 0x20, 0xD5, 0x04, 0x16, 0x8C, + 0xC8, 0x8C, 0xFB, 0x22, 0x04, 0x2A, 0x7A, 0x31, 0x39, 0x16, 0x03, 0x01, + 0xB2, 0x02, 0x03, 0x35, 0x6B, 0x51, 0xFC, 0x49, 0x31, 0x39, 0x17, 0x02, + 0x01, 0xB1, 0x02, 0x03, 0x35, 0x6B, 0x51, 0x01, 0x64, 0x57, 0xAD, 0x57, + 0x56, 0xAE, 0x57, 0xFD, 0xB0, 0x00, 0x02, 0x00, 0x8E, 0xFE, 0x44, 0x04, + 0xC4, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x24, 0x00, 0x00, 0x53, 0x33, 0x11, + 0x23, 0x05, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, + 0x23, 0x23, 0x35, 0x01, 0x35, 0x21, 0x35, 0x21, 0x17, 0x01, 0x15, 0x1E, + 0x02, 0x15, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x27, 0x8E, 0xD2, 0xD2, 0x01, + 0x3D, 0x2A, 0x7A, 0x4B, 0x57, 0x86, 0x4C, 0x4C, 0x86, 0x5C, 0x98, 0x01, + 0x69, 0xFD, 0x88, 0x03, 0x95, 0x01, 0xFE, 0x6B, 0x89, 0xC4, 0x68, 0x01, + 0x86, 0xEC, 0x9B, 0x79, 0xC8, 0x46, 0x05, 0xD2, 0xFA, 0x3D, 0xB1, 0x2A, + 0x30, 0x47, 0x86, 0x5C, 0x5A, 0x80, 0x45, 0xA9, 0x01, 0xA0, 0x0C, 0xBD, + 0x9D, 0xFE, 0x31, 0x0C, 0x0E, 0x77, 0xBE, 0x7E, 0x90, 0xD9, 0x78, 0x4A, + 0x3F, 0x00, 0x02, 0x00, 0x33, 0xFE, 0x5E, 0x04, 0xF4, 0x04, 0x6C, 0x00, + 0x25, 0x00, 0x2C, 0x00, 0x00, 0x65, 0x32, 0x36, 0x37, 0x11, 0x33, 0x11, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x12, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x17, 0x11, 0x27, 0x11, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x15, 0x1E, 0x02, 0x01, 0x11, 0x23, 0x11, 0x07, 0x11, 0x25, + 0x02, 0x21, 0x2D, 0x44, 0x1D, 0xE9, 0x27, 0x6D, 0x8E, 0x5C, 0xA0, 0xD9, + 0x6E, 0x6C, 0xDC, 0xA7, 0x56, 0x8E, 0x6E, 0x24, 0xE9, 0x1C, 0x48, 0x30, + 0x66, 0x6F, 0x2B, 0x01, 0x3B, 0x74, 0x03, 0x29, 0xE8, 0xE0, 0x01, 0x1A, + 0xA7, 0x17, 0x15, 0x01, 0x68, 0xFE, 0x62, 0x33, 0x50, 0x2E, 0x94, 0xF8, + 0x92, 0x26, 0xA2, 0x01, 0x02, 0x98, 0x32, 0x53, 0x32, 0xFE, 0x5A, 0x07, + 0x01, 0x6A, 0x17, 0x1B, 0x6D, 0xB0, 0x65, 0x26, 0x6C, 0xA0, 0x57, 0x03, + 0xB7, 0xFA, 0x00, 0x04, 0xE2, 0x76, 0x01, 0x0A, 0x8A, 0x00, 0x02, 0x00, + 0x6B, 0xFF, 0xEC, 0x06, 0x36, 0x04, 0x6C, 0x00, 0x1B, 0x00, 0x37, 0x00, + 0x00, 0x41, 0x15, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x35, 0x33, 0x15, 0x14, 0x02, 0x23, 0x22, 0x2E, 0x02, 0x35, + 0x34, 0x36, 0x36, 0x24, 0x17, 0x35, 0x32, 0x04, 0x16, 0x16, 0x15, 0x14, + 0x0E, 0x02, 0x23, 0x22, 0x02, 0x35, 0x35, 0x33, 0x15, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x03, 0x50, 0xBF, 0xDE, 0x5E, + 0x25, 0x55, 0x4A, 0x4E, 0x73, 0xA5, 0xC3, 0xB6, 0x71, 0x9E, 0x60, 0x2C, + 0x56, 0xB5, 0x01, 0x18, 0xC2, 0xC3, 0x01, 0x18, 0xB5, 0x56, 0x2C, 0x61, + 0x9D, 0x71, 0xB6, 0xC3, 0xA4, 0x01, 0x73, 0x4E, 0x4A, 0x55, 0x25, 0x5E, + 0xDE, 0x04, 0x6C, 0xBA, 0x79, 0xCB, 0x7E, 0x52, 0x97, 0x60, 0x8E, 0xAB, + 0xBC, 0xB3, 0xF5, 0xFE, 0xF8, 0x5A, 0x96, 0xB6, 0x5B, 0x80, 0xE6, 0xB3, + 0x66, 0xBA, 0xBA, 0x66, 0xB3, 0xE6, 0x80, 0x5B, 0xB6, 0x96, 0x5A, 0x01, + 0x08, 0xF5, 0xB3, 0xBC, 0xAB, 0x8E, 0x60, 0x97, 0x52, 0x7E, 0xCB, 0x79, + 0x00, 0x01, 0x00, 0x49, 0xFF, 0xEC, 0x03, 0xF2, 0x04, 0x6C, 0x00, 0x22, + 0x00, 0x00, 0x53, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, + 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x49, + 0xDB, 0x04, 0x3C, 0x66, 0x43, 0x63, 0x6E, 0x2C, 0x01, 0x2E, 0x70, 0x65, + 0x6E, 0x6F, 0x07, 0xDB, 0x04, 0x6E, 0xC5, 0x86, 0xA4, 0xDB, 0x6D, 0x70, + 0xD9, 0x9F, 0x80, 0xC8, 0x75, 0x01, 0x63, 0x36, 0x56, 0x30, 0x6A, 0xA4, + 0x58, 0x31, 0x5B, 0xAB, 0x6E, 0x89, 0x6E, 0x83, 0xC3, 0x6B, 0x97, 0xFC, + 0x9B, 0x31, 0x94, 0xF8, 0x95, 0x66, 0xAB, 0x00, 0x03, 0x00, 0x82, 0xFE, + 0x74, 0x04, 0xA7, 0x05, 0xD2, 0x00, 0x12, 0x00, 0x27, 0x00, 0x2B, 0x00, + 0x00, 0x53, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x37, 0x15, 0x14, 0x1E, 0x02, + 0x33, 0x32, 0x3E, 0x02, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, + 0x02, 0x13, 0x11, 0x33, 0x11, 0x82, 0x82, 0xEF, 0xA2, 0xA3, 0xEE, 0x81, + 0x81, 0xEE, 0xA3, 0x77, 0xC4, 0x8D, 0x4B, 0xE9, 0x28, 0x4D, 0x6E, 0x47, + 0x45, 0x6F, 0x4D, 0x28, 0x45, 0x85, 0x5F, 0x46, 0x6F, 0x4D, 0x28, 0xB5, + 0xE7, 0x02, 0x20, 0x18, 0xAE, 0xFC, 0x8A, 0x8A, 0xFC, 0xAE, 0x18, 0xAE, + 0xFD, 0x89, 0x4D, 0x92, 0xD1, 0x9C, 0x18, 0x57, 0x8B, 0x63, 0x34, 0x34, + 0x62, 0x8C, 0x57, 0x18, 0x71, 0xAA, 0x5F, 0x36, 0x63, 0x8B, 0xFB, 0xE6, + 0x07, 0x5E, 0xF8, 0xA2, 0x00, 0x02, 0x00, 0x48, 0xFF, 0xEC, 0x02, 0x7C, + 0x06, 0x00, 0x00, 0x04, 0x00, 0x14, 0x00, 0x00, 0x65, 0x11, 0x33, 0x11, + 0x23, 0x05, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x37, 0x16, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x01, 0x91, 0xEB, 0xE2, 0xFE, 0xAE, 0x01, + 0x19, 0x30, 0x18, 0x54, 0x6D, 0x3C, 0x08, 0x36, 0x01, 0x47, 0x91, 0x70, + 0x14, 0x35, 0xC2, 0x05, 0x3E, 0xFA, 0x00, 0x06, 0xDA, 0x04, 0x06, 0x3D, + 0x6D, 0x49, 0x0E, 0x85, 0xD9, 0x81, 0x09, 0x00, 0x04, 0x00, 0x24, 0xFE, + 0x5E, 0x04, 0xAF, 0x06, 0x14, 0x00, 0x03, 0x00, 0x15, 0x00, 0x25, 0x00, + 0x35, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x33, 0x11, 0x06, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x01, 0x23, 0x11, 0x26, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x07, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x03, 0x0F, 0xFD, + 0x15, 0xB7, 0xEB, 0x01, 0x34, 0x3F, 0x20, 0x49, 0x39, 0x0A, 0x1D, 0x82, + 0x4C, 0x6D, 0x7C, 0x35, 0x02, 0xB9, 0xE7, 0x01, 0xCB, 0xAF, 0x24, 0x44, + 0x21, 0x08, 0x13, 0x33, 0x1B, 0x52, 0x60, 0xE7, 0xE7, 0xCB, 0xAF, 0x22, + 0x44, 0x20, 0x06, 0x13, 0x33, 0x1B, 0x54, 0x5E, 0x04, 0x3A, 0xAB, 0xAB, + 0x01, 0x07, 0xFB, 0xF9, 0x51, 0x3C, 0x0A, 0x0A, 0x02, 0xB5, 0x08, 0x1A, + 0x52, 0x95, 0x67, 0xFE, 0xC6, 0x04, 0xA2, 0xB5, 0xBD, 0x08, 0x07, 0xB7, + 0x05, 0x03, 0x5B, 0x59, 0x42, 0xFB, 0x6E, 0xB3, 0xBD, 0x08, 0x07, 0xB7, + 0x04, 0x05, 0x5D, 0x56, 0x00, 0x03, 0x00, 0x11, 0xFF, 0xFD, 0x02, 0x61, + 0x05, 0xD5, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x23, 0x00, 0x00, 0x53, 0x33, + 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x01, 0x15, 0x21, 0x35, 0x17, 0x11, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x15, 0x26, 0x22, 0x23, 0x22, 0x06, 0x15, 0x11, 0xAE, 0xD3, + 0x3A, 0x43, 0x16, 0x2F, 0x15, 0x09, 0x1C, 0x45, 0x22, 0x8F, 0xA1, 0x01, + 0xAE, 0xFD, 0xB5, 0x9D, 0x9F, 0x98, 0x28, 0x3B, 0x16, 0x10, 0x3E, 0x14, + 0x40, 0x39, 0x04, 0x2E, 0xFD, 0x02, 0x45, 0x3C, 0x01, 0x01, 0xAF, 0x03, + 0x02, 0x8F, 0x7F, 0x03, 0x23, 0xAE, 0xAE, 0xD8, 0x01, 0x6F, 0x86, 0x8A, + 0x01, 0x01, 0xB1, 0x01, 0x2E, 0x34, 0xFE, 0x95, 0x00, 0x02, 0x00, 0x58, + 0xFF, 0xEE, 0x04, 0x15, 0x04, 0x3A, 0x00, 0x22, 0x00, 0x26, 0x00, 0x00, + 0x41, 0x27, 0x13, 0x21, 0x15, 0x21, 0x07, 0x36, 0x36, 0x37, 0x36, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x37, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x03, 0x15, + 0x21, 0x35, 0x01, 0x99, 0xCC, 0x4A, 0x02, 0xC2, 0xFD, 0xFF, 0x1E, 0x23, + 0x77, 0x3D, 0x7A, 0xAE, 0x5C, 0x5A, 0xC4, 0x9E, 0x4D, 0x9B, 0x81, 0x4F, + 0xE3, 0x02, 0x77, 0x5C, 0x70, 0x65, 0x6A, 0x68, 0x4F, 0x5A, 0x29, 0xFE, + 0xCE, 0x01, 0xD5, 0x0D, 0x02, 0x58, 0xC1, 0xDB, 0x16, 0x23, 0x01, 0x03, + 0x57, 0xA8, 0x77, 0x6A, 0xA9, 0x64, 0x28, 0x51, 0x7C, 0x54, 0x10, 0x49, + 0x52, 0x6B, 0x54, 0x56, 0x6A, 0x34, 0x02, 0x43, 0xC1, 0xC1, 0x00, 0x02, + 0x00, 0x1D, 0x00, 0x00, 0x04, 0xF8, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x19, + 0x00, 0x00, 0x53, 0x27, 0x13, 0x33, 0x13, 0x21, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x21, 0x11, 0x33, 0x11, 0x21, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x21, 0xBF, 0xA2, 0xD8, 0xD8, 0x4A, 0x01, 0x45, 0x7D, + 0xB9, 0x66, 0x66, 0xB9, 0x7D, 0xFE, 0x17, 0xD5, 0x01, 0x0E, 0x5F, 0x70, + 0x70, 0x5F, 0xFE, 0xC1, 0x02, 0x57, 0x5C, 0x01, 0x7B, 0xFE, 0x98, 0x59, + 0x9E, 0x69, 0x69, 0xA2, 0x5B, 0x04, 0x2E, 0xFC, 0x8C, 0x5D, 0x4E, 0x4D, + 0x5B, 0x00, 0x02, 0x00, 0x11, 0x00, 0x00, 0x05, 0x7C, 0x05, 0x49, 0x00, + 0x2E, 0x00, 0x32, 0x00, 0x00, 0x61, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x21, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, 0x27, 0x26, + 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, 0x17, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x01, 0x35, 0x21, 0x05, 0x01, 0xDF, 0x90, 0xA1, + 0xD5, 0x3A, 0x44, 0x01, 0xC6, 0x67, 0x75, 0x50, 0x48, 0xB3, 0x97, 0x99, + 0x68, 0xB9, 0x7A, 0x78, 0xB6, 0x6B, 0x07, 0xC9, 0x05, 0x6F, 0x60, 0x5A, + 0x6E, 0x52, 0x4B, 0xB4, 0x9A, 0x93, 0x6E, 0xC3, 0x7E, 0xFC, 0x44, 0x03, + 0x81, 0xFE, 0xFD, 0x8F, 0x80, 0x04, 0x3A, 0xFB, 0xE6, 0x46, 0x3E, 0x40, + 0x3F, 0x35, 0x40, 0x10, 0x26, 0x22, 0x97, 0x75, 0x5F, 0x90, 0x51, 0x52, + 0x95, 0x66, 0x08, 0x49, 0x63, 0x53, 0x3E, 0x36, 0x43, 0x11, 0x26, 0x21, + 0x8E, 0x74, 0x66, 0x8A, 0x46, 0x03, 0x7F, 0xAF, 0xAF, 0x00, 0x03, 0x00, + 0x46, 0xFF, 0xEC, 0x04, 0xB1, 0x06, 0x14, 0x00, 0x11, 0x00, 0x1F, 0x00, + 0x41, 0x00, 0x00, 0x41, 0x33, 0x36, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, + 0x23, 0x23, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x17, 0x23, 0x22, + 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x27, + 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x27, 0x35, 0x1E, 0x02, 0x15, 0x14, + 0x06, 0x06, 0x23, 0x23, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x37, 0x15, + 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x02, 0x70, 0x17, 0x9E, 0xFB, + 0x91, 0x91, 0xFA, 0x9F, 0x17, 0x9D, 0xFC, 0x91, 0x91, 0xFC, 0xB4, 0x17, + 0x91, 0xAE, 0xAD, 0x92, 0x17, 0x91, 0xAE, 0xAE, 0x8B, 0x58, 0x8E, 0x54, + 0x59, 0x53, 0x73, 0xB8, 0x6B, 0x96, 0xF9, 0x95, 0x23, 0x95, 0xF9, 0x96, + 0x6B, 0xB9, 0x72, 0x52, 0x59, 0x54, 0x8E, 0x57, 0x03, 0x77, 0x01, 0x61, + 0xC6, 0x96, 0x9B, 0xCD, 0x67, 0x66, 0xCE, 0x99, 0x97, 0xC7, 0x61, 0xAC, + 0x8B, 0x87, 0x88, 0x8B, 0x8B, 0x89, 0x86, 0x8A, 0xBC, 0x29, 0x69, 0x5D, + 0x64, 0x6C, 0x1F, 0xAF, 0x03, 0x60, 0xB6, 0x83, 0x98, 0xB5, 0x4F, 0x01, + 0x4E, 0xB5, 0x98, 0x83, 0xB5, 0x61, 0x03, 0xAF, 0x1F, 0x6C, 0x64, 0x5E, + 0x68, 0x29, 0x00, 0x05, 0x00, 0x54, 0xFF, 0xEC, 0x06, 0xD6, 0x05, 0xD2, + 0x00, 0x12, 0x00, 0x22, 0x00, 0x27, 0x00, 0x3A, 0x00, 0x4A, 0x00, 0x00, + 0x41, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x27, 0x35, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x16, 0x07, 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x05, 0x11, 0x33, + 0x11, 0x23, 0x01, 0x35, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, + 0x0E, 0x03, 0x23, 0x22, 0x26, 0x26, 0x37, 0x15, 0x1E, 0x02, 0x33, 0x32, + 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x06, 0xD6, 0x6A, + 0xC5, 0x87, 0x62, 0x95, 0x6A, 0x40, 0x0C, 0x10, 0x68, 0xB5, 0x84, 0x87, + 0xC2, 0x69, 0xEB, 0x01, 0x33, 0x71, 0x5D, 0x7A, 0x83, 0x13, 0x19, 0x7F, + 0x7B, 0x5F, 0x6E, 0x30, 0xFD, 0x35, 0xEA, 0xD5, 0xFD, 0x1F, 0x01, 0x68, + 0xC2, 0x88, 0x85, 0xB4, 0x66, 0x10, 0x0B, 0x40, 0x6A, 0x96, 0x62, 0x87, + 0xC4, 0x69, 0xE9, 0x01, 0x30, 0x6F, 0x5E, 0x7C, 0x7D, 0x18, 0x11, 0x82, + 0x7A, 0x5E, 0x71, 0x32, 0x02, 0x34, 0x14, 0xA4, 0xFF, 0x91, 0x4C, 0x8F, + 0xCA, 0x7E, 0x35, 0xAA, 0xF8, 0x86, 0x8D, 0xFF, 0xC0, 0x14, 0x6B, 0xAA, + 0x64, 0xA7, 0x7D, 0xBD, 0x7D, 0xA4, 0x64, 0xA9, 0xDC, 0x04, 0xF6, 0xFA, + 0x2E, 0x02, 0x20, 0x14, 0xAC, 0xFF, 0x8D, 0x86, 0xF8, 0xAA, 0x35, 0x7E, + 0xCA, 0x8F, 0x4C, 0x91, 0xFF, 0xB8, 0x14, 0x68, 0xA9, 0x64, 0xA4, 0x7D, + 0xBD, 0x7D, 0xA7, 0x64, 0xAA, 0x00, 0x05, 0x00, 0x54, 0xFE, 0x60, 0x06, + 0xD6, 0x04, 0x6C, 0x00, 0x05, 0x00, 0x18, 0x00, 0x28, 0x00, 0x3B, 0x00, + 0x4B, 0x00, 0x00, 0x41, 0x11, 0x37, 0x33, 0x17, 0x11, 0x01, 0x35, 0x3E, + 0x02, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, 0x0E, 0x03, 0x23, 0x22, 0x26, + 0x26, 0x37, 0x15, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x35, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x06, 0x05, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, + 0x02, 0x27, 0x35, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x16, 0x07, 0x35, 0x36, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x36, 0x03, 0x20, 0x17, 0xBF, 0x14, 0xFC, 0x4A, 0x01, 0x68, 0xC2, 0x88, + 0x85, 0xB4, 0x66, 0x10, 0x0B, 0x40, 0x6A, 0x96, 0x62, 0x87, 0xC4, 0x69, + 0xE9, 0x01, 0x30, 0x6F, 0x5E, 0x7C, 0x7D, 0x18, 0x11, 0x82, 0x7A, 0x5E, + 0x71, 0x32, 0x05, 0x97, 0x6A, 0xC5, 0x87, 0x62, 0x95, 0x6A, 0x40, 0x0C, + 0x10, 0x68, 0xB5, 0x84, 0x87, 0xC2, 0x69, 0xEB, 0x01, 0x33, 0x71, 0x5D, + 0x7A, 0x83, 0x13, 0x19, 0x7F, 0x7B, 0x5F, 0x6E, 0x30, 0xFE, 0x60, 0x05, + 0x29, 0xD5, 0xD0, 0xFA, 0xD2, 0x03, 0xC0, 0x14, 0xAC, 0xFF, 0x8D, 0x86, + 0xF8, 0xAA, 0x35, 0x7E, 0xCA, 0x8F, 0x4C, 0x91, 0xFF, 0xB8, 0x14, 0x68, + 0xA9, 0x64, 0xA4, 0x7D, 0xBD, 0x7D, 0xA7, 0x64, 0xAA, 0x6B, 0x14, 0xA4, + 0xFF, 0x91, 0x4C, 0x8F, 0xCA, 0x7E, 0x35, 0xAA, 0xF8, 0x86, 0x8D, 0xFF, + 0xC0, 0x14, 0x6B, 0xAA, 0x64, 0xA7, 0x7D, 0xBD, 0x7D, 0xA4, 0x64, 0xA9, + 0x00, 0x02, 0x00, 0x72, 0x00, 0x00, 0x03, 0xCA, 0x04, 0x6C, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x53, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x17, 0x33, 0x11, 0x23, 0x72, 0x6F, 0xC4, 0x80, + 0xC3, 0xE2, 0x52, 0xB2, 0x91, 0x51, 0x32, 0x6F, 0x5D, 0x57, 0x67, 0x62, + 0x66, 0x58, 0xE9, 0xE9, 0x02, 0xBA, 0x89, 0xC2, 0x67, 0xDA, 0xCD, 0x72, + 0xAE, 0x63, 0x8B, 0x82, 0x6C, 0x6B, 0x8C, 0x84, 0x74, 0xED, 0xFE, 0x33, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x05, 0x04, 0x2E, 0x06, 0x06, + 0x04, 0xE4, 0x00, 0x00, 0x00, 0x04, 0x00, 0x7D, 0x00, 0x00, 0x05, 0x6B, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x11, 0x00, 0x00, + 0x65, 0x15, 0x21, 0x35, 0x01, 0x01, 0x23, 0x35, 0x01, 0x33, 0x23, 0x15, + 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, 0x05, 0x6B, 0xFC, 0xD9, 0x03, 0x19, + 0xFD, 0x1F, 0x86, 0x02, 0xE3, 0x84, 0x5E, 0xFB, 0xF1, 0x63, 0xD6, 0xBB, + 0xBB, 0xBB, 0x03, 0x0B, 0xFC, 0x3A, 0x9D, 0x03, 0xC1, 0xBB, 0xBB, 0x01, + 0x74, 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x08, 0x00, 0x29, 0x00, 0x00, 0x03, + 0x87, 0x05, 0xB2, 0x00, 0x05, 0x00, 0x0A, 0x00, 0x0F, 0x00, 0x15, 0x00, + 0x1B, 0x00, 0x20, 0x00, 0x25, 0x00, 0x2B, 0x00, 0x00, 0x41, 0x13, 0x33, + 0x07, 0x03, 0x23, 0x03, 0x13, 0x17, 0x23, 0x03, 0x01, 0x13, 0x33, 0x03, + 0x23, 0x03, 0x13, 0x17, 0x23, 0x03, 0x27, 0x03, 0x13, 0x33, 0x07, 0x03, + 0x23, 0x03, 0x13, 0x17, 0x23, 0x03, 0x01, 0x13, 0x33, 0x03, 0x23, 0x03, + 0x13, 0x17, 0x23, 0x03, 0x27, 0x01, 0x08, 0x8B, 0x6D, 0x11, 0x90, 0x5C, + 0x2E, 0x5E, 0x07, 0x68, 0xA9, 0x02, 0x57, 0x5C, 0xAB, 0xA9, 0x69, 0x59, + 0x90, 0x04, 0x5F, 0x8C, 0x0F, 0xAE, 0x8B, 0x6D, 0x11, 0x90, 0x5C, 0x2E, + 0x5E, 0x07, 0x68, 0xA9, 0x02, 0x57, 0x5C, 0xAB, 0xA9, 0x69, 0x59, 0x90, + 0x04, 0x5F, 0x8C, 0x0F, 0x03, 0xF4, 0x01, 0xBE, 0x91, 0xFE, 0x47, 0x02, + 0x4A, 0xFE, 0x43, 0x8D, 0x02, 0x4A, 0xFE, 0x44, 0x01, 0xBC, 0xFD, 0xB6, + 0x02, 0x4A, 0xFE, 0x43, 0x8D, 0x01, 0xBA, 0x90, 0xFA, 0xDC, 0x01, 0xBA, + 0x8E, 0xFE, 0x46, 0x02, 0x48, 0xFE, 0x47, 0x8F, 0x02, 0x48, 0xFE, 0x48, + 0x01, 0xB8, 0xFD, 0xB8, 0x02, 0x48, 0xFE, 0x46, 0x8E, 0x01, 0xBA, 0x8E, + 0x00, 0x02, 0x00, 0x0D, 0x00, 0x00, 0x02, 0xB7, 0x06, 0x16, 0x00, 0x0F, + 0x00, 0x13, 0x00, 0x00, 0x61, 0x23, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x37, 0x15, 0x21, 0x35, + 0x01, 0x9E, 0xEB, 0x01, 0xCA, 0xB0, 0x23, 0x46, 0x20, 0x0A, 0x12, 0x32, + 0x1A, 0x54, 0x5D, 0xDF, 0xFD, 0x90, 0x04, 0xA2, 0xB4, 0xC0, 0x09, 0x07, + 0xB7, 0x04, 0x04, 0x5D, 0x58, 0x39, 0xA3, 0xA3, 0xFF, 0xFF, 0x00, 0x46, + 0xFF, 0xE8, 0x04, 0x3A, 0x05, 0xD2, 0x04, 0x06, 0x04, 0x70, 0xFC, 0x00, + 0x00, 0x03, 0x00, 0x3E, 0x00, 0x00, 0x04, 0x5C, 0x05, 0xD2, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x25, 0x11, + 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x04, 0x5C, 0xFB, 0xE2, 0x01, 0xA1, + 0xD8, 0x02, 0x67, 0xD6, 0x05, 0x40, 0xA9, 0xA9, 0x92, 0xFA, 0x2E, 0x05, + 0xD2, 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x01, 0x00, 0x56, 0xFF, 0xEC, 0x04, + 0x18, 0x06, 0x1E, 0x00, 0x26, 0x00, 0x00, 0x41, 0x37, 0x1E, 0x02, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x12, 0x36, + 0x36, 0x37, 0x17, 0x0E, 0x03, 0x15, 0x15, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x02, 0x39, 0x50, 0x74, 0xB4, 0x67, 0x6F, + 0xD3, 0x98, 0x78, 0xB6, 0x7B, 0x3F, 0x50, 0x9E, 0xEC, 0x9B, 0x4F, 0x6A, + 0xAD, 0x7F, 0x45, 0x01, 0x45, 0x73, 0x44, 0x4D, 0x6D, 0x3A, 0x44, 0x70, + 0x03, 0x1A, 0xB6, 0x23, 0x94, 0xD3, 0x80, 0x92, 0xD5, 0x73, 0x5E, 0xA1, + 0xCD, 0x6E, 0x3A, 0xA4, 0x01, 0x21, 0xF2, 0xC2, 0x45, 0xAD, 0x33, 0x92, + 0xC2, 0xF5, 0x97, 0x49, 0x76, 0xA3, 0x54, 0x3F, 0x79, 0x56, 0x65, 0x8F, + 0x5B, 0x00, 0x03, 0x00, 0x3D, 0xFE, 0x4C, 0x04, 0xC4, 0x04, 0x5E, 0x00, + 0x04, 0x00, 0x10, 0x00, 0x26, 0x00, 0x00, 0x41, 0x13, 0x13, 0x27, 0x01, + 0x13, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, + 0x15, 0x27, 0x37, 0x01, 0x21, 0x01, 0x0E, 0x02, 0x01, 0xE7, 0xDB, 0x5B, + 0xD4, 0xFE, 0x9A, 0xCB, 0x3E, 0x57, 0x57, 0x3E, 0x41, 0x59, 0x59, 0x3C, + 0x63, 0xA6, 0x63, 0x64, 0xA6, 0x64, 0x4B, 0x84, 0x64, 0x3A, 0x87, 0x02, + 0x01, 0x30, 0x01, 0x01, 0xFE, 0x4F, 0x20, 0x63, 0x8A, 0x04, 0x5E, 0xFD, + 0x36, 0xFE, 0x89, 0x60, 0x03, 0xE1, 0xFA, 0xBA, 0x01, 0x4F, 0x4D, 0x50, + 0x50, 0x50, 0x50, 0x4D, 0x4F, 0xCD, 0x61, 0xA5, 0x63, 0x64, 0xA4, 0x63, + 0x39, 0x64, 0x83, 0x4B, 0x45, 0x9F, 0x03, 0xC5, 0xFB, 0x0B, 0x5D, 0x7F, + 0x41, 0x00, 0x01, 0x00, 0x49, 0xFF, 0xEC, 0x03, 0xF2, 0x04, 0x6C, 0x00, + 0x22, 0x00, 0x00, 0x53, 0x33, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x36, 0x35, + 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, 0x3E, 0x02, 0x33, + 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x49, 0xDB, 0x04, 0x3C, 0x66, 0x43, 0x63, 0x6E, 0x2C, 0x01, 0x2E, 0x70, + 0x65, 0x6E, 0x6F, 0x07, 0xDB, 0x04, 0x6E, 0xC5, 0x86, 0xA4, 0xDB, 0x6D, + 0x70, 0xD9, 0x9F, 0x80, 0xC8, 0x75, 0x01, 0x63, 0x36, 0x56, 0x30, 0x6A, + 0xA4, 0x58, 0x31, 0x5B, 0xAB, 0x6E, 0x89, 0x6E, 0x83, 0xC3, 0x6B, 0x97, + 0xFC, 0x9B, 0x31, 0x94, 0xF8, 0x95, 0x66, 0xAB, 0x00, 0x01, 0x00, 0x64, + 0xFF, 0xEC, 0x04, 0x95, 0x04, 0x6C, 0x00, 0x3B, 0x00, 0x00, 0x65, 0x32, + 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x33, 0x15, + 0x22, 0x06, 0x06, 0x15, 0x14, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x23, + 0x22, 0x2E, 0x02, 0x35, 0x34, 0x3E, 0x02, 0x35, 0x34, 0x26, 0x26, 0x23, + 0x35, 0x32, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x15, 0x14, 0x1E, 0x02, + 0x02, 0x7C, 0x60, 0x77, 0x3F, 0x18, 0x25, 0x31, 0x25, 0x17, 0x47, 0x8E, + 0x77, 0x17, 0x39, 0x28, 0x25, 0x31, 0x25, 0x30, 0x77, 0xD1, 0xA1, 0xA0, + 0xD1, 0x77, 0x30, 0x25, 0x32, 0x25, 0x2A, 0x39, 0x17, 0x77, 0x8F, 0x47, + 0x17, 0x26, 0x32, 0x26, 0x18, 0x41, 0x77, 0xA6, 0x35, 0x54, 0x5E, 0x29, + 0x42, 0x73, 0x6C, 0x6D, 0x3A, 0x21, 0x52, 0x4B, 0x30, 0xB7, 0x0D, 0x28, + 0x29, 0x34, 0x5F, 0x67, 0x81, 0x59, 0x46, 0x90, 0x78, 0x49, 0x49, 0x78, + 0x90, 0x46, 0x59, 0x81, 0x67, 0x5F, 0x34, 0x29, 0x28, 0x0D, 0xB7, 0x30, + 0x4B, 0x52, 0x21, 0x3A, 0x6D, 0x6C, 0x73, 0x42, 0x29, 0x5E, 0x54, 0x35, + 0x00, 0x02, 0x00, 0x68, 0xFF, 0xEC, 0x03, 0xD5, 0x04, 0x6C, 0x00, 0x0B, + 0x00, 0x24, 0x00, 0x00, 0x65, 0x15, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, + 0x11, 0x14, 0x16, 0x16, 0x17, 0x35, 0x32, 0x36, 0x36, 0x35, 0x11, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x11, 0x14, 0x06, 0x06, 0x02, 0x1D, 0x81, 0xC5, 0x6F, 0xE8, 0x35, + 0x5D, 0x3B, 0x3D, 0x5D, 0x34, 0x2F, 0x30, 0x1A, 0x30, 0x1F, 0x1A, 0x35, + 0x79, 0x39, 0x63, 0x62, 0x20, 0x70, 0xC6, 0xAB, 0xBF, 0x5D, 0xCA, 0xA2, + 0x02, 0xA9, 0xFD, 0x57, 0x68, 0x74, 0x2E, 0xBF, 0xBF, 0x2E, 0x74, 0x68, + 0x01, 0x6A, 0x45, 0x3D, 0x08, 0x06, 0xAD, 0x11, 0x1B, 0x5A, 0x91, 0x52, + 0xFE, 0x86, 0xA2, 0xCA, 0x5D, 0x00, 0x02, 0x00, 0xA2, 0xFE, 0x60, 0x04, + 0x59, 0x04, 0x6C, 0x00, 0x04, 0x00, 0x22, 0x00, 0x00, 0x41, 0x11, 0x23, + 0x11, 0x33, 0x03, 0x07, 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x04, 0x07, 0x27, 0x36, 0x24, 0x36, 0x35, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x01, 0x8B, 0xE9, 0xD6, 0x1B, 0x6A, + 0x0D, 0x40, 0x6B, 0x9B, 0x67, 0x8B, 0xBF, 0x62, 0x6D, 0xCE, 0xFE, 0xDA, + 0xB9, 0x08, 0xA4, 0x01, 0x00, 0x94, 0x35, 0x74, 0x5D, 0x54, 0x6E, 0x3E, + 0x03, 0x8E, 0xFA, 0xD2, 0x05, 0xFE, 0xFE, 0x39, 0x43, 0x79, 0xC6, 0x8D, + 0x4C, 0x8B, 0xF9, 0xA4, 0x32, 0x9C, 0xE4, 0xA3, 0x77, 0x32, 0xB9, 0x22, + 0x81, 0xD3, 0x9D, 0x32, 0x62, 0xA4, 0x63, 0x4A, 0x7E, 0x00, 0x02, 0x00, + 0x0E, 0x00, 0x00, 0x04, 0x12, 0x04, 0x2E, 0x00, 0x0E, 0x00, 0x12, 0x00, + 0x00, 0x73, 0x01, 0x21, 0x01, 0x23, 0x03, 0x2E, 0x02, 0x27, 0x33, 0x06, + 0x06, 0x07, 0x03, 0x37, 0x35, 0x21, 0x15, 0x0E, 0x01, 0x7A, 0x01, 0x0F, + 0x01, 0x7B, 0xEA, 0xB0, 0x13, 0x2A, 0x2D, 0x1A, 0x37, 0x27, 0x3F, 0x1F, + 0xB2, 0x04, 0x02, 0x30, 0x04, 0x2E, 0xFB, 0xD2, 0x02, 0x10, 0x44, 0x89, + 0x9C, 0x5E, 0x8A, 0xDA, 0x63, 0xFD, 0xF0, 0xF3, 0xAB, 0xAB, 0x00, 0x03, + 0x00, 0x7D, 0x00, 0x00, 0x04, 0x1A, 0x04, 0x2E, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, + 0x21, 0x11, 0x23, 0x11, 0x03, 0x79, 0xFD, 0xA3, 0x37, 0xD6, 0x03, 0x9D, + 0xD5, 0x02, 0x85, 0xBD, 0xBD, 0x01, 0xA9, 0xFB, 0xD2, 0x04, 0x2E, 0xFB, + 0xD2, 0x04, 0x2E, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x05, 0x8A, 0x04, + 0x2E, 0x00, 0x2B, 0x00, 0x00, 0x73, 0x11, 0x21, 0x13, 0x1E, 0x03, 0x17, + 0x23, 0x3E, 0x03, 0x37, 0x13, 0x21, 0x11, 0x23, 0x11, 0x34, 0x3E, 0x02, + 0x37, 0x33, 0x0E, 0x02, 0x07, 0x03, 0x23, 0x03, 0x2E, 0x02, 0x27, 0x33, + 0x1E, 0x03, 0x15, 0x11, 0x7D, 0x01, 0x41, 0xEB, 0x12, 0x1E, 0x1B, 0x19, + 0x0C, 0x29, 0x0D, 0x18, 0x1B, 0x1E, 0x11, 0xEA, 0x01, 0x41, 0xD4, 0x02, + 0x01, 0x02, 0x01, 0x1F, 0x1A, 0x34, 0x38, 0x23, 0xD3, 0xB7, 0xD5, 0x23, + 0x3A, 0x34, 0x1B, 0x24, 0x01, 0x01, 0x02, 0x01, 0x04, 0x2E, 0xFD, 0xC9, + 0x2D, 0x58, 0x55, 0x52, 0x26, 0x26, 0x51, 0x56, 0x58, 0x2D, 0x02, 0x37, + 0xFB, 0xD2, 0x01, 0xF2, 0x44, 0x76, 0x6D, 0x6E, 0x39, 0x4D, 0x94, 0x98, + 0x54, 0xFE, 0x0D, 0x01, 0xF3, 0x55, 0x98, 0x94, 0x4C, 0x38, 0x6C, 0x6F, + 0x77, 0x44, 0xFE, 0x0E, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x03, 0xBC, + 0x04, 0x2E, 0x00, 0x07, 0x00, 0x00, 0x61, 0x11, 0x21, 0x35, 0x21, 0x15, + 0x21, 0x11, 0x01, 0x7D, 0xFE, 0x94, 0x03, 0xAB, 0xFE, 0x96, 0x03, 0x75, + 0xB9, 0xB9, 0xFC, 0x8B, 0x00, 0x01, 0x00, 0x5A, 0xFE, 0x4C, 0x03, 0x3A, + 0x01, 0x89, 0x00, 0x22, 0x00, 0x00, 0x41, 0x32, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x21, 0x15, 0x21, + 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x07, 0x27, 0x36, 0x36, 0x01, 0xAE, 0x76, 0xB2, 0x64, 0x6A, 0xAB, + 0x62, 0x76, 0xA1, 0x52, 0x02, 0x78, 0xFE, 0x4C, 0x52, 0x53, 0x59, 0x5C, + 0x77, 0x5C, 0x42, 0x5C, 0x23, 0x76, 0x28, 0x9E, 0x01, 0x89, 0x65, 0xAE, + 0x6E, 0x20, 0x80, 0xB9, 0x63, 0x66, 0xB3, 0x72, 0x63, 0x9A, 0x0B, 0x49, + 0x5C, 0x81, 0x77, 0x20, 0x68, 0x78, 0x3B, 0x29, 0x71, 0x39, 0x5B, 0xFF, + 0xFF, 0x00, 0x6D, 0xFF, 0xEF, 0x01, 0x89, 0x05, 0xD2, 0x06, 0x06, 0x05, + 0x91, 0x00, 0x00, 0x00, 0x01, 0x00, 0xB1, 0x00, 0x00, 0x01, 0x57, 0x05, + 0xCA, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x57, 0xA6, + 0x05, 0xCA, 0xFA, 0x36, 0x05, 0xCA, 0xFF, 0xFF, 0x00, 0x7F, 0x00, 0x00, + 0x02, 0x36, 0x05, 0xCA, 0x04, 0x26, 0x09, 0x73, 0xCF, 0x00, 0x00, 0x07, + 0x09, 0x73, 0x00, 0xDE, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x94, 0x00, 0x00, + 0x02, 0x3A, 0x05, 0xCA, 0x04, 0x26, 0x09, 0x73, 0xE4, 0x00, 0x00, 0x27, + 0x0B, 0x61, 0xFF, 0x1B, 0x01, 0x27, 0x00, 0x07, 0x0B, 0x61, 0xFF, 0x1B, + 0xFF, 0x3F, 0x00, 0x05, 0x00, 0x59, 0x00, 0x00, 0x09, 0x08, 0x05, 0xB2, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, + 0x65, 0x07, 0x01, 0x37, 0x31, 0x03, 0x23, 0x13, 0x21, 0x03, 0x23, 0x13, + 0x01, 0x07, 0x01, 0x37, 0x21, 0x03, 0x23, 0x13, 0x04, 0x99, 0xA7, 0xFD, + 0x41, 0xA5, 0x8B, 0xF4, 0x8D, 0x04, 0x89, 0x8C, 0xEE, 0x8D, 0x03, 0xAE, + 0xA8, 0xFD, 0x42, 0xA5, 0x03, 0x99, 0x8D, 0xEF, 0x8D, 0x89, 0x89, 0x05, + 0x28, 0x8A, 0xFA, 0x4E, 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xFA, 0xD7, + 0x89, 0x05, 0x28, 0x8A, 0xFA, 0x4E, 0x05, 0xB2, 0x00, 0x02, 0x00, 0x50, + 0x02, 0x8C, 0x03, 0x2E, 0x05, 0xAD, 0x00, 0x03, 0x00, 0x19, 0x00, 0x00, + 0x41, 0x23, 0x13, 0x33, 0x01, 0x21, 0x11, 0x33, 0x11, 0x33, 0x36, 0x36, + 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x02, 0x56, 0xDE, 0xD7, 0xDF, 0xFE, 0x8B, 0xFE, 0x97, 0xC4, + 0x90, 0x4E, 0x48, 0x41, 0x48, 0xCE, 0xE2, 0x62, 0x8C, 0x4A, 0x4D, 0x91, + 0x04, 0x4C, 0x01, 0x61, 0xFC, 0xDF, 0x03, 0x21, 0xFD, 0x84, 0x01, 0x3C, + 0x2F, 0x2B, 0x3E, 0xA3, 0x4D, 0x7B, 0x49, 0x48, 0x7A, 0x49, 0x00, 0x02, + 0x00, 0x46, 0x01, 0x4B, 0x02, 0x7E, 0x05, 0xAD, 0x00, 0x0E, 0x00, 0x20, + 0x00, 0x00, 0x53, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x37, 0x14, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x01, 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x46, 0x18, + 0x32, 0x1B, 0x51, 0x4D, 0x01, 0x30, 0x3E, 0x6C, 0x47, 0x16, 0x25, 0x02, + 0x30, 0x17, 0x32, 0x34, 0x1A, 0x44, 0x50, 0x23, 0xC4, 0x26, 0x1D, 0x13, + 0x28, 0x0C, 0x02, 0x87, 0xC8, 0x0A, 0x0C, 0x6F, 0x5A, 0x01, 0x70, 0xAF, + 0x64, 0x04, 0xFE, 0xD7, 0x03, 0x09, 0x04, 0x39, 0x6E, 0x50, 0x03, 0x6B, + 0xFC, 0xA5, 0x29, 0x25, 0x07, 0x04, 0x00, 0x02, 0x00, 0x76, 0x02, 0x8C, + 0x03, 0x0C, 0x07, 0x0F, 0x00, 0x11, 0x00, 0x23, 0x00, 0x00, 0x41, 0x11, + 0x23, 0x11, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x03, 0x07, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x06, 0x01, 0x38, + 0xC2, 0x21, 0x4F, 0x44, 0x18, 0x36, 0x34, 0x15, 0x0C, 0x28, 0x13, 0x1D, + 0x24, 0x18, 0x2E, 0x41, 0x7C, 0x57, 0x78, 0x8D, 0xC4, 0x46, 0x3F, 0x39, + 0x47, 0x22, 0x06, 0x09, 0xFC, 0x83, 0x03, 0x8B, 0x51, 0x6E, 0x39, 0x05, + 0x08, 0x05, 0xB1, 0x03, 0x06, 0x23, 0xFE, 0x06, 0x04, 0x72, 0xB0, 0x64, + 0x90, 0xA2, 0xFE, 0x04, 0x01, 0xCE, 0x67, 0x56, 0x3C, 0x65, 0x00, 0x02, + 0x00, 0x2B, 0x02, 0x80, 0x01, 0xDB, 0x05, 0xAD, 0x00, 0x0E, 0x00, 0x13, + 0x00, 0x00, 0x53, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x37, 0x16, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x37, 0x11, 0x33, 0x11, 0x23, 0x2B, 0x18, + 0x31, 0x1D, 0x50, 0x4E, 0x30, 0x01, 0x3E, 0x6D, 0x47, 0x14, 0x25, 0xE3, + 0xC3, 0x96, 0x02, 0x87, 0xC8, 0x0A, 0x0C, 0x6F, 0x5A, 0x01, 0x70, 0xAF, + 0x64, 0x04, 0xB4, 0x02, 0x75, 0xFC, 0xDF, 0x00, 0x01, 0x00, 0x8E, 0x00, + 0x00, 0x04, 0x2E, 0x05, 0xD2, 0x00, 0x05, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x11, 0x23, 0x11, 0x04, 0x2E, 0xFD, 0x40, 0xE0, 0x05, 0xD2, 0xC3, 0xFA, + 0xF1, 0x05, 0xD2, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, 0x2E, 0x07, + 0x89, 0x06, 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, + 0xA3, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0xFE, 0xC0, 0x04, 0x2E, 0x05, + 0xD2, 0x06, 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x00, + 0xA6, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xCF, 0x00, 0x00, 0x04, 0x2E, 0x05, + 0xD2, 0x06, 0x26, 0x09, 0x7B, 0x00, 0x00, 0x00, 0x06, 0x0B, 0x68, 0x9D, + 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x2A, 0x07, 0x89, 0x06, + 0x26, 0x04, 0x31, 0x00, 0x00, 0x00, 0x07, 0x06, 0xE8, 0x01, 0xD8, 0x01, + 0xA4, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x32, 0x05, 0xD2, 0x06, + 0x06, 0x04, 0x0C, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0xB9, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x77, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x05, 0xE9, 0x06, 0x06, 0x00, 0x49, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x3A, 0x00, 0x00, 0x04, 0xC9, 0x05, 0xD2, 0x06, + 0x06, 0x01, 0x9B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x04, + 0xDF, 0x07, 0x87, 0x06, 0x26, 0x04, 0x37, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x00, 0xDF, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x05, + 0x42, 0x05, 0xD2, 0x06, 0x06, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x8E, 0xFF, 0xEC, 0x06, 0x9A, 0x05, 0xD2, 0x00, 0x22, 0x00, 0x00, 0x53, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x27, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x8E, 0xDE, + 0x80, 0x59, 0x66, 0x7B, 0xDE, 0x75, 0x5F, 0x60, 0x84, 0xDE, 0x78, 0xCB, + 0x7F, 0x68, 0xA5, 0x36, 0x39, 0xAE, 0x69, 0x7F, 0xC6, 0x72, 0x01, 0xA5, + 0x04, 0x2D, 0xFB, 0xD3, 0x7C, 0x7C, 0x7B, 0x7D, 0x04, 0x2D, 0xFB, 0xD3, + 0x7D, 0x7B, 0x7B, 0x7D, 0x04, 0x2D, 0xFB, 0xD3, 0x92, 0xC5, 0x62, 0x49, + 0x4A, 0x4A, 0x49, 0x62, 0xC5, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x05, + 0x2F, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x44, 0x6C, 0x00, 0x00, 0x07, 0x0B, + 0x68, 0xFF, 0xE4, 0x01, 0xB8, 0x00, 0x03, 0x00, 0x8E, 0xFF, 0xEC, 0x07, + 0x3E, 0x05, 0xE6, 0x00, 0x03, 0x00, 0x29, 0x00, 0x2D, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x25, 0x07, 0x2E, 0x03, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x37, 0x17, 0x0E, 0x03, 0x23, + 0x22, 0x24, 0x02, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x1E, 0x02, 0x01, + 0x11, 0x23, 0x11, 0x05, 0x38, 0xFC, 0x02, 0x06, 0x04, 0xDA, 0x11, 0x49, + 0x69, 0x7E, 0x46, 0x7D, 0xCB, 0x76, 0x76, 0xCB, 0x7D, 0x45, 0x7E, 0x68, + 0x4A, 0x10, 0xDC, 0x17, 0x6E, 0xA1, 0xC9, 0x72, 0xC0, 0xFE, 0xD4, 0xAC, + 0xAC, 0x01, 0x2C, 0xC0, 0x71, 0xC8, 0xA2, 0x6F, 0xFA, 0x45, 0xDE, 0x03, + 0x4E, 0xBB, 0xBB, 0xB2, 0x0D, 0x49, 0x6E, 0x4B, 0x26, 0x7E, 0xFB, 0xBA, + 0xBA, 0xF9, 0x7E, 0x25, 0x4B, 0x6D, 0x49, 0x0D, 0x72, 0xB3, 0x7D, 0x42, + 0xB8, 0x01, 0x57, 0xED, 0xED, 0x01, 0x58, 0xB9, 0x41, 0x7D, 0xB5, 0x01, + 0x5F, 0xFA, 0x2E, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x18, 0x00, 0x00, 0x05, + 0x5B, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x41, + 0x11, 0x23, 0x11, 0x01, 0x01, 0x21, 0x01, 0x23, 0x01, 0x26, 0x02, 0x27, + 0x33, 0x06, 0x02, 0x07, 0x01, 0x13, 0x35, 0x21, 0x15, 0x03, 0x1F, 0xCB, + 0xFD, 0xC4, 0x02, 0x1B, 0x01, 0x0E, 0x02, 0x1A, 0xF3, 0xFE, 0xE1, 0x23, + 0x51, 0x39, 0x3B, 0x38, 0x51, 0x23, 0xFE, 0xDC, 0x3A, 0x02, 0xF1, 0x02, + 0x17, 0xFD, 0xE9, 0x02, 0x17, 0xFD, 0xE9, 0x05, 0xD2, 0xFA, 0x2E, 0x03, + 0x46, 0x69, 0x01, 0x03, 0xBD, 0xBE, 0xFE, 0xFD, 0x68, 0xFC, 0xBA, 0x01, + 0xBF, 0xAF, 0xAF, 0x00, 0x04, 0x00, 0x8E, 0x00, 0x00, 0x07, 0x62, 0x05, + 0xD2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x15, 0x00, 0x19, 0x00, 0x00, 0x41, + 0x11, 0x23, 0x11, 0x01, 0x11, 0x23, 0x11, 0x01, 0x01, 0x21, 0x01, 0x23, + 0x01, 0x26, 0x02, 0x27, 0x33, 0x06, 0x02, 0x07, 0x01, 0x01, 0x35, 0x21, + 0x15, 0x01, 0x6E, 0xE0, 0x04, 0x98, 0xCB, 0xFD, 0xC4, 0x02, 0x1B, 0x01, + 0x0E, 0x02, 0x1A, 0xF3, 0xFE, 0xE1, 0x23, 0x51, 0x39, 0x3B, 0x38, 0x51, + 0x23, 0xFE, 0xDC, 0xFE, 0x0A, 0x05, 0x21, 0x05, 0xD2, 0xFA, 0x2E, 0x05, + 0xD2, 0xFC, 0x45, 0xFD, 0xE9, 0x02, 0x17, 0xFD, 0xE9, 0x05, 0xD2, 0xFA, + 0x2E, 0x03, 0x46, 0x68, 0x01, 0x03, 0xBE, 0xBE, 0xFE, 0xFD, 0x68, 0xFC, + 0xBA, 0x01, 0xBF, 0xAF, 0xAF, 0x00, 0x05, 0x00, 0x7D, 0x00, 0x00, 0x06, + 0x35, 0x05, 0xD2, 0x00, 0x15, 0x00, 0x19, 0x00, 0x1E, 0x00, 0x23, 0x00, + 0x27, 0x00, 0x00, 0x73, 0x11, 0x34, 0x36, 0x36, 0x33, 0x21, 0x32, 0x16, + 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, + 0x11, 0x21, 0x11, 0x33, 0x11, 0x03, 0x01, 0x33, 0x01, 0x07, 0x23, 0x27, + 0x01, 0x33, 0x01, 0x01, 0x35, 0x21, 0x15, 0x7D, 0x73, 0xD9, 0x9A, 0x01, + 0xEC, 0x9B, 0xD9, 0x72, 0xDD, 0x8E, 0x7E, 0xFE, 0x1A, 0x7E, 0x8D, 0x01, + 0x91, 0xDA, 0xC4, 0xFD, 0xE5, 0xF9, 0x01, 0xC0, 0x24, 0x47, 0x1B, 0x01, + 0xBA, 0xF7, 0xFD, 0xE6, 0xFD, 0xDA, 0x03, 0x92, 0x01, 0x62, 0x91, 0xD0, + 0x6F, 0x6F, 0xD0, 0x91, 0xFE, 0x9E, 0x01, 0x61, 0x81, 0x91, 0x91, 0x81, + 0xFE, 0x9F, 0x02, 0xF4, 0xFD, 0x0C, 0x02, 0x5D, 0x03, 0x75, 0xFC, 0xEC, + 0x61, 0x68, 0x03, 0x0D, 0xFC, 0x8B, 0x02, 0xB6, 0xBF, 0xBF, 0x00, 0x07, + 0x00, 0x8E, 0x00, 0x00, 0x08, 0x97, 0x05, 0xD2, 0x00, 0x15, 0x00, 0x19, + 0x00, 0x1D, 0x00, 0x21, 0x00, 0x26, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x00, + 0x61, 0x11, 0x34, 0x36, 0x36, 0x33, 0x21, 0x32, 0x16, 0x16, 0x15, 0x11, + 0x23, 0x11, 0x34, 0x26, 0x23, 0x21, 0x22, 0x06, 0x15, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x13, 0x11, 0x33, 0x11, 0x03, 0x01, + 0x33, 0x01, 0x07, 0x23, 0x27, 0x01, 0x33, 0x01, 0x01, 0x35, 0x21, 0x15, + 0x02, 0xE0, 0x72, 0xD9, 0x9A, 0x01, 0xED, 0x9A, 0xD9, 0x72, 0xDD, 0x8E, + 0x7D, 0xFE, 0x19, 0x7D, 0x8E, 0xFC, 0xD1, 0xDE, 0x31, 0x03, 0xB8, 0x5C, + 0xD9, 0xC4, 0xFD, 0xE5, 0xF9, 0x01, 0xC0, 0x24, 0x46, 0x1C, 0x01, 0xBA, + 0xF7, 0xFD, 0xE6, 0xFD, 0xDA, 0x03, 0x91, 0x01, 0x62, 0x91, 0xD0, 0x6F, + 0x6F, 0xD0, 0x91, 0xFE, 0x9E, 0x01, 0x61, 0x81, 0x91, 0x91, 0x81, 0xFE, + 0x9F, 0x05, 0xD2, 0xFA, 0x2E, 0x02, 0x73, 0xBE, 0xBE, 0xFD, 0x8D, 0x02, + 0xF4, 0xFD, 0x0C, 0x02, 0x5D, 0x03, 0x75, 0xFC, 0xEC, 0x61, 0x68, 0x03, + 0x0D, 0xFC, 0x8B, 0x02, 0xB6, 0xBF, 0xBF, 0x00, 0x03, 0x00, 0x61, 0xFE, + 0x40, 0x03, 0xDF, 0x07, 0x76, 0x00, 0x13, 0x00, 0x35, 0x00, 0x3E, 0x00, + 0x00, 0x53, 0x21, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, + 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x13, 0x33, 0x32, + 0x04, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, + 0x16, 0x17, 0x07, 0x2E, 0x02, 0x35, 0x34, 0x36, 0x33, 0x33, 0x32, 0x36, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x13, 0x17, 0x37, 0x33, 0x15, 0x01, + 0x23, 0x01, 0x35, 0xAC, 0x01, 0x22, 0x96, 0xDF, 0x7C, 0x7C, 0xE2, 0x9A, + 0x96, 0x92, 0x92, 0x81, 0x80, 0x88, 0xFE, 0xDE, 0x85, 0x93, 0xFF, 0x01, + 0x1C, 0x7E, 0xDD, 0x91, 0x36, 0x46, 0x3F, 0x34, 0x48, 0x20, 0x53, 0x4B, + 0x85, 0x50, 0xBB, 0xA1, 0x30, 0x53, 0x76, 0x3E, 0x9E, 0x95, 0x90, 0x7B, + 0xAA, 0xAA, 0xAF, 0xFE, 0xE5, 0x7E, 0xFE, 0xE6, 0x05, 0xD2, 0x5C, 0xAA, + 0x77, 0x77, 0xB0, 0x61, 0x8A, 0x82, 0x61, 0x67, 0x74, 0xFE, 0x08, 0xC5, + 0xC1, 0x86, 0xBF, 0x66, 0x3C, 0x2F, 0x30, 0x43, 0x2D, 0x0F, 0x92, 0x1A, + 0x5D, 0x8A, 0x5B, 0x87, 0x86, 0x3D, 0x70, 0x4C, 0x7B, 0x7C, 0x04, 0xDD, + 0xA3, 0xA3, 0x0B, 0xFE, 0xED, 0x01, 0x13, 0x0B, 0xFF, 0xFF, 0x00, 0x8E, + 0x00, 0x00, 0x06, 0x53, 0x05, 0xD2, 0x06, 0x06, 0x04, 0x0F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x7A, 0x07, 0x89, 0x06, 0x26, + 0x04, 0x51, 0x00, 0x00, 0x00, 0x07, 0x06, 0xEA, 0x00, 0x9D, 0x01, 0xA4, + 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x5C, 0x0A, 0x34, 0x05, 0xE9, 0x04, 0x26, + 0x01, 0x41, 0x00, 0x00, 0x00, 0x07, 0x03, 0xE4, 0x06, 0x05, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x5E, 0xFE, 0x5E, 0x04, 0x8A, 0x05, 0xE9, 0x06, 0x26, + 0x05, 0x3F, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0x64, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x58, 0xFE, 0x5D, 0x05, 0x7B, 0x05, 0xE9, 0x06, 0x26, + 0x00, 0x49, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, 0xE0, 0xFF, 0xFF, + 0xFF, 0xFF, 0x00, 0x3A, 0xFE, 0xC0, 0x04, 0xC9, 0x05, 0xD2, 0x06, 0x26, + 0x01, 0x9B, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x02, 0x2A, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, 0x05, 0xD2, 0x06, 0x06, + 0x01, 0xD8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, 0x05, 0x3D, + 0x05, 0xD2, 0x06, 0x26, 0x01, 0xD8, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x68, + 0x00, 0xDE, 0xFE, 0x90, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0xC0, 0x06, 0x6B, + 0x05, 0xE9, 0x06, 0x26, 0x04, 0x4E, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3E, + 0x03, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, 0x01, 0x6E, + 0x05, 0xD2, 0x06, 0x06, 0x00, 0xC5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1C, + 0x00, 0x00, 0x07, 0x8C, 0x07, 0x87, 0x06, 0x26, 0x04, 0x2E, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8F, 0x02, 0x39, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x3A, + 0xFE, 0xC0, 0x05, 0xF5, 0x05, 0xD2, 0x06, 0x26, 0x04, 0x34, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x3C, 0x03, 0xFF, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, + 0xFE, 0xC0, 0x05, 0x6E, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x3B, 0x00, 0x00, + 0x00, 0x07, 0x0B, 0x3D, 0x04, 0x16, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x5F, + 0xFF, 0xE9, 0x05, 0x89, 0x07, 0x88, 0x06, 0x26, 0x04, 0x4F, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x9B, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x1C, + 0x00, 0x00, 0x07, 0x8C, 0x07, 0x88, 0x06, 0x26, 0x04, 0x2E, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0x01, 0x8E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x5E, + 0xFF, 0xE9, 0x04, 0x8A, 0x07, 0x88, 0x06, 0x26, 0x05, 0x3F, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x2D, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x53, + 0xFF, 0xE9, 0x05, 0x76, 0x07, 0x88, 0x06, 0x26, 0x04, 0x47, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x7E, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x7D, + 0x00, 0x00, 0x04, 0xDE, 0x07, 0x88, 0x06, 0x26, 0x04, 0x3B, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x67, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0x8E, + 0x00, 0x00, 0x06, 0x3D, 0x07, 0x88, 0x04, 0x26, 0x04, 0x44, 0x00, 0x00, + 0x00, 0x27, 0x00, 0xC5, 0x04, 0xCF, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, + 0x01, 0x0A, 0x01, 0xA4, 0x00, 0x02, 0x00, 0x1C, 0x00, 0x00, 0x05, 0x42, + 0x05, 0xD2, 0x00, 0x03, 0x00, 0x23, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, + 0x01, 0x01, 0x15, 0x01, 0x21, 0x13, 0x1E, 0x02, 0x17, 0x23, 0x3E, 0x02, + 0x37, 0x13, 0x33, 0x01, 0x35, 0x01, 0x21, 0x03, 0x2E, 0x02, 0x27, 0x33, + 0x0E, 0x02, 0x07, 0x03, 0x96, 0x04, 0x31, 0xFB, 0x55, 0x02, 0x50, 0xFD, + 0xD5, 0x01, 0x02, 0xC8, 0x24, 0x3F, 0x3C, 0x1F, 0x2F, 0x20, 0x3C, 0x40, + 0x24, 0xCD, 0xFB, 0xFD, 0xD9, 0x02, 0x47, 0xFE, 0xFE, 0xF6, 0x21, 0x3A, + 0x37, 0x1D, 0x2A, 0x1C, 0x39, 0x3B, 0x22, 0xF9, 0x02, 0xAF, 0x9D, 0x9D, + 0xFD, 0x51, 0x03, 0x4C, 0xA6, 0x03, 0x2C, 0xFE, 0xD6, 0x35, 0x62, 0x61, + 0x33, 0x33, 0x61, 0x62, 0x35, 0x01, 0x2A, 0xFC, 0xDF, 0xA2, 0xFC, 0xAD, + 0x01, 0x68, 0x30, 0x58, 0x58, 0x2F, 0x2F, 0x57, 0x58, 0x31, 0xFE, 0x98, + 0x00, 0x02, 0x00, 0x58, 0x00, 0x00, 0x05, 0x3F, 0x05, 0xEA, 0x00, 0x24, + 0x00, 0x28, 0x00, 0x00, 0x65, 0x22, 0x2E, 0x02, 0x35, 0x34, 0x12, 0x24, + 0x33, 0x32, 0x1E, 0x02, 0x17, 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, + 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x37, 0x33, 0x0E, 0x03, + 0x05, 0x13, 0x33, 0x11, 0x02, 0xD9, 0x89, 0xEA, 0xAE, 0x60, 0xA8, 0x01, + 0x29, 0xC1, 0x73, 0xCA, 0x9E, 0x68, 0x12, 0xE3, 0x14, 0x69, 0x98, 0x5B, + 0x86, 0xC3, 0x6A, 0x6A, 0xC3, 0x85, 0x5D, 0x98, 0x69, 0x14, 0x83, 0x12, + 0x54, 0x82, 0xB1, 0x01, 0x1B, 0x01, 0xDB, 0x83, 0x61, 0xB6, 0xFF, 0x9D, + 0xD2, 0x01, 0x37, 0xAB, 0x41, 0x7C, 0xAF, 0x6E, 0x59, 0x78, 0x3E, 0x78, + 0xDC, 0x95, 0x95, 0xDC, 0x78, 0x3E, 0x78, 0x56, 0x69, 0xAE, 0x7C, 0x43, + 0x83, 0x02, 0x59, 0xFD, 0xA7, 0xFF, 0xFF, 0x00, 0x16, 0x00, 0x00, 0x05, + 0x2F, 0x05, 0xD2, 0x04, 0x26, 0x04, 0x44, 0x6C, 0x00, 0x00, 0x07, 0x0B, + 0x68, 0xFF, 0xE4, 0x01, 0xB8, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x03, + 0x46, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xE5, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x01, 0x20, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0xC0, 0x03, + 0x46, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xE5, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x3D, 0x00, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0xE7, 0x00, 0x00, 0x03, + 0x46, 0x04, 0x2E, 0x06, 0x26, 0x04, 0xE5, 0x00, 0x00, 0x00, 0x07, 0x0B, + 0x61, 0xFF, 0x6E, 0xFF, 0x41, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0x1F, 0x05, 0xE3, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0x8F, 0x00, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0x1F, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE9, 0x00, 0xD8, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x04, + 0x3E, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xEE, 0x00, 0x00, 0x00, 0x07, 0x06, + 0xE8, 0x01, 0x5F, 0x00, 0x00, 0x00, 0x01, 0x00, 0x7D, 0xFF, 0xEC, 0x05, + 0xF0, 0x04, 0x2E, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x26, 0x26, 0x35, + 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x11, 0x33, 0x11, 0x14, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x27, 0x33, 0x0E, 0x02, 0x01, 0xF0, 0x6F, 0xA7, + 0x5D, 0xD5, 0x66, 0x59, 0x59, 0x65, 0xD3, 0x65, 0x57, 0x58, 0x65, 0xD5, + 0x5C, 0xA6, 0x6F, 0x72, 0xA7, 0x5D, 0x01, 0x5F, 0x01, 0x5C, 0xA7, 0x14, + 0x62, 0xAF, 0x72, 0x02, 0xBF, 0xFD, 0x44, 0x5E, 0x6E, 0x6E, 0x5E, 0x02, + 0xBC, 0xFD, 0x44, 0x5E, 0x6E, 0x6E, 0x5E, 0x02, 0xBC, 0xFD, 0x41, 0x72, + 0xAF, 0x62, 0x63, 0xAE, 0x72, 0x71, 0xAF, 0x63, 0x00, 0x03, 0x00, 0x7D, + 0xFF, 0xE8, 0x05, 0xE5, 0x04, 0x44, 0x00, 0x03, 0x00, 0x07, 0x00, 0x28, + 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, 0x01, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x33, 0x0E, 0x02, 0x04, 0x83, 0xFC, 0x92, 0x3D, 0xD5, 0x03, + 0x9A, 0x99, 0xE5, 0x7E, 0x7F, 0xE4, 0x98, 0x7F, 0xC7, 0x7C, 0x0D, 0xD3, + 0x0B, 0x40, 0x68, 0x47, 0x5B, 0x84, 0x47, 0x47, 0x83, 0x5C, 0x69, 0x7A, + 0x15, 0xD5, 0x0C, 0x7B, 0xC8, 0x02, 0x6B, 0xA8, 0xA8, 0x01, 0xC3, 0xFB, + 0xD2, 0x04, 0x2E, 0xFB, 0xBA, 0x8E, 0xFB, 0xA3, 0xA5, 0xFC, 0x8F, 0x62, + 0xAD, 0x71, 0x3A, 0x5A, 0x35, 0x5D, 0xA8, 0x73, 0x71, 0xA9, 0x5C, 0x6D, + 0x5C, 0x6E, 0xAE, 0x64, 0x00, 0x03, 0x00, 0x1D, 0x00, 0x00, 0x04, 0x5B, + 0x04, 0x2E, 0x00, 0x04, 0x00, 0x15, 0x00, 0x1A, 0x00, 0x00, 0x61, 0x01, + 0x03, 0x33, 0x01, 0x21, 0x35, 0x34, 0x26, 0x27, 0x35, 0x32, 0x16, 0x17, + 0x36, 0x36, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x21, 0x01, 0x33, 0x03, + 0x01, 0x03, 0x7B, 0xFE, 0xE7, 0x6B, 0xB0, 0x01, 0xB4, 0xFD, 0x88, 0x40, + 0x3F, 0x40, 0x71, 0x27, 0x27, 0x71, 0x40, 0x3E, 0x41, 0xFD, 0x88, 0x01, + 0xB1, 0xAF, 0x6E, 0xFE, 0xEB, 0x02, 0xDA, 0x01, 0x54, 0xFB, 0xD2, 0xCD, + 0x41, 0x44, 0x02, 0xA8, 0x34, 0x39, 0x39, 0x34, 0xA8, 0x02, 0x43, 0x42, + 0xCD, 0x04, 0x2E, 0xFE, 0xAC, 0xFD, 0x26, 0x00, 0x05, 0x00, 0x7D, 0x00, + 0x00, 0x06, 0x1A, 0x04, 0x2E, 0x00, 0x04, 0x00, 0x08, 0x00, 0x0C, 0x00, + 0x1D, 0x00, 0x22, 0x00, 0x00, 0x61, 0x01, 0x03, 0x33, 0x01, 0x21, 0x11, + 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x13, 0x35, 0x34, 0x26, 0x27, 0x35, + 0x32, 0x16, 0x17, 0x36, 0x36, 0x33, 0x15, 0x06, 0x06, 0x15, 0x15, 0x21, + 0x01, 0x33, 0x03, 0x01, 0x05, 0x3A, 0xFE, 0xE7, 0x6A, 0xAF, 0x01, 0xB4, + 0xFA, 0x63, 0xD6, 0x6F, 0x02, 0x07, 0xB7, 0x40, 0x3F, 0x40, 0x71, 0x27, + 0x27, 0x71, 0x40, 0x3E, 0x41, 0xFD, 0x88, 0x01, 0xB1, 0xAF, 0x6D, 0xFE, + 0xEA, 0x02, 0xDA, 0x01, 0x54, 0xFB, 0xD2, 0x04, 0x2E, 0xFB, 0xD2, 0x01, + 0x56, 0xA6, 0xA6, 0xFE, 0xAA, 0xCD, 0x41, 0x44, 0x02, 0xA8, 0x34, 0x39, + 0x39, 0x34, 0xA8, 0x02, 0x44, 0x41, 0xCD, 0x04, 0x2E, 0xFE, 0xAC, 0xFD, + 0x26, 0x00, 0x05, 0x00, 0x61, 0x00, 0x00, 0x05, 0x47, 0x04, 0x2E, 0x00, + 0x15, 0x00, 0x19, 0x00, 0x1E, 0x00, 0x23, 0x00, 0x27, 0x00, 0x00, 0x73, + 0x35, 0x34, 0x36, 0x33, 0x21, 0x32, 0x16, 0x15, 0x15, 0x23, 0x35, 0x34, + 0x26, 0x26, 0x23, 0x21, 0x22, 0x06, 0x06, 0x15, 0x15, 0x21, 0x11, 0x33, + 0x11, 0x03, 0x01, 0x33, 0x01, 0x07, 0x23, 0x27, 0x01, 0x33, 0x01, 0x01, + 0x35, 0x21, 0x15, 0x61, 0xF8, 0xD9, 0x01, 0x46, 0xD7, 0xF8, 0xD0, 0x3D, + 0x72, 0x50, 0xFE, 0xBA, 0x4F, 0x72, 0x3F, 0x01, 0x3C, 0xD0, 0xDA, 0xFE, + 0x78, 0xF0, 0x01, 0x43, 0x15, 0x3C, 0x12, 0x01, 0x3E, 0xF4, 0xFE, 0x71, + 0xFE, 0x35, 0x02, 0xD2, 0xA3, 0xD1, 0xDF, 0xDF, 0xD1, 0xA3, 0xA4, 0x52, + 0x6F, 0x38, 0x37, 0x6E, 0x54, 0xA4, 0x02, 0x22, 0xFD, 0xDE, 0x01, 0xA7, + 0x02, 0x87, 0xFD, 0xAE, 0x35, 0x3B, 0x02, 0x4C, 0xFD, 0x79, 0x01, 0xDE, + 0xA9, 0xA9, 0x00, 0x07, 0x00, 0x7D, 0x00, 0x00, 0x07, 0x47, 0x04, 0x2E, + 0x00, 0x18, 0x00, 0x1C, 0x00, 0x20, 0x00, 0x24, 0x00, 0x29, 0x00, 0x2E, + 0x00, 0x32, 0x00, 0x00, 0x61, 0x35, 0x34, 0x3E, 0x03, 0x33, 0x25, 0x36, + 0x16, 0x15, 0x15, 0x23, 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x22, 0x06, + 0x06, 0x15, 0x15, 0x21, 0x11, 0x33, 0x11, 0x03, 0x35, 0x21, 0x15, 0x13, + 0x11, 0x33, 0x11, 0x03, 0x01, 0x33, 0x01, 0x07, 0x23, 0x27, 0x01, 0x33, + 0x01, 0x01, 0x35, 0x21, 0x15, 0x02, 0x61, 0x49, 0x77, 0x87, 0x7F, 0x2C, + 0x01, 0x25, 0xDC, 0xF3, 0xD1, 0x3C, 0x72, 0x50, 0xFE, 0xBA, 0x4F, 0x73, + 0x3E, 0xFD, 0x4B, 0xD5, 0x5D, 0x03, 0x59, 0x1F, 0xD0, 0xD9, 0xFE, 0x78, + 0xF0, 0x01, 0x43, 0x16, 0x3B, 0x12, 0x01, 0x3F, 0xF3, 0xFE, 0x71, 0xFE, + 0x35, 0x02, 0xD2, 0x8D, 0x6C, 0x96, 0x61, 0x36, 0x15, 0x18, 0x01, 0xE5, + 0xCC, 0xA3, 0xA4, 0x52, 0x6F, 0x38, 0x37, 0x6E, 0x54, 0xA4, 0x04, 0x2E, + 0xFB, 0xD2, 0x01, 0x9D, 0xB5, 0xB4, 0xFE, 0x62, 0x02, 0x22, 0xFD, 0xDE, + 0x01, 0xA7, 0x02, 0x87, 0xFD, 0xAE, 0x35, 0x3B, 0x02, 0x4C, 0xFD, 0x79, + 0x01, 0xDE, 0xA9, 0xA9, 0x00, 0x02, 0x00, 0x3E, 0xFE, 0x5E, 0x03, 0x80, + 0x05, 0xE4, 0x00, 0x37, 0x00, 0x40, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x21, 0x35, 0x21, + 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x33, 0x33, 0x15, 0x03, 0x17, 0x37, 0x33, 0x15, 0x03, 0x23, 0x03, + 0x35, 0x01, 0xAE, 0x69, 0xA6, 0x61, 0x60, 0xA6, 0x69, 0x48, 0x59, 0x5E, + 0x5E, 0x59, 0xFA, 0xE7, 0x59, 0x5F, 0x5F, 0x59, 0xFE, 0xA7, 0x01, 0x57, + 0x76, 0xB2, 0x65, 0x69, 0xB5, 0x72, 0xE2, 0xF3, 0x76, 0xB5, 0x67, 0x63, + 0xB3, 0x79, 0x43, 0x4C, 0x51, 0x52, 0x4C, 0x2B, 0x79, 0x8C, 0x8C, 0xC3, + 0xF1, 0xBD, 0xEF, 0xFE, 0x5E, 0x4A, 0x86, 0x5A, 0x59, 0x86, 0x4A, 0x44, + 0x3F, 0x3F, 0x43, 0xBA, 0x45, 0x40, 0x3D, 0x43, 0xB9, 0x46, 0x83, 0x5D, + 0x5E, 0x7A, 0x3C, 0x5C, 0x44, 0x82, 0x5D, 0x5F, 0x8B, 0x4B, 0x3A, 0x36, + 0x36, 0x3B, 0xB9, 0x07, 0x86, 0xAD, 0xAD, 0x02, 0xFE, 0xE7, 0x01, 0x19, + 0x02, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x05, 0xAC, 0x05, 0x49, 0x06, + 0x06, 0x04, 0xC9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0x00, 0x00, 0x04, + 0x7F, 0x05, 0xE4, 0x06, 0x26, 0x05, 0x1A, 0x00, 0x00, 0x00, 0x06, 0x06, + 0xEA, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x47, 0xFE, 0x5E, 0x03, 0x97, 0x04, + 0x42, 0x06, 0x26, 0x04, 0xEB, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x00, + 0xD4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFE, 0x5E, 0x04, 0x15, 0x04, + 0x44, 0x06, 0x26, 0x02, 0x4A, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x95, 0x01, + 0x2B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x11, 0xFE, 0xC0, 0x03, 0xBC, 0x04, + 0x2E, 0x06, 0x26, 0x09, 0x70, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x3D, 0x01, + 0x8A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, 0x5E, 0x04, 0x2E, 0x04, + 0x2E, 0x06, 0x06, 0x04, 0x6F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0xFE, + 0x5E, 0x04, 0x2E, 0x04, 0x2E, 0x06, 0x26, 0x04, 0x6F, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x61, 0x00, 0x59, 0xFC, 0xC8, 0xFF, 0xFF, 0x00, 0x11, 0xFE, + 0x5E, 0x05, 0x5B, 0x04, 0x44, 0x06, 0x26, 0x05, 0x18, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x95, 0x02, 0x57, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1F, 0x00, + 0x00, 0x06, 0x44, 0x05, 0xE3, 0x06, 0x26, 0x04, 0xE9, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0x8F, 0x01, 0x95, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, + 0xC0, 0x04, 0x8E, 0x04, 0x2E, 0x04, 0x26, 0x05, 0x04, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x3D, 0x03, 0x37, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x46, 0xFF, + 0xEA, 0x04, 0x25, 0x04, 0x46, 0x06, 0x06, 0x02, 0x85, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x46, 0xFF, 0xEA, 0x04, 0x25, 0x05, 0xE4, 0x06, 0x26, 0x02, + 0x85, 0x00, 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x15, 0x00, 0xFF, 0xFF, 0x00, + 0x1F, 0x00, 0x00, 0x06, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xE9, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0xEB, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x47, 0xFF, 0xF1, 0x03, 0x97, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xEB, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0x8B, 0xA8, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, + 0x00, 0x04, 0x1F, 0x05, 0x9D, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, + 0x07, 0x06, 0xEB, 0x00, 0xA5, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, + 0x00, 0x04, 0x1F, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xEC, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x8B, 0x07, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, + 0x44, 0x04, 0x44, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x06, 0x0B, + 0x40, 0x03, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x44, 0x05, + 0xE4, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, 0x26, 0x0B, 0x40, 0x03, + 0x00, 0x00, 0x06, 0x0A, 0x8B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x44, 0xFF, + 0xE8, 0x04, 0x0F, 0x05, 0xE4, 0x06, 0x26, 0x05, 0x10, 0x00, 0x00, 0x00, + 0x06, 0x0A, 0x8B, 0xCD, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x03, + 0xFE, 0x05, 0xE4, 0x06, 0x26, 0x05, 0x04, 0x00, 0x00, 0x00, 0x06, 0x0A, + 0x8B, 0xF8, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x05, 0x39, 0x05, + 0xE4, 0x04, 0x26, 0x05, 0x09, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x03, + 0xE7, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8B, 0x00, 0x94, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x1F, 0x00, 0x00, 0x04, 0x16, 0x04, 0x2E, 0x00, 0x03, 0x00, + 0x1F, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, 0x01, 0x01, 0x07, 0x01, 0x33, + 0x17, 0x16, 0x16, 0x17, 0x23, 0x36, 0x36, 0x37, 0x37, 0x33, 0x01, 0x37, + 0x01, 0x23, 0x27, 0x26, 0x26, 0x27, 0x33, 0x06, 0x06, 0x07, 0x07, 0x57, + 0x03, 0x86, 0xFC, 0x42, 0x01, 0xB5, 0x02, 0xFE, 0x65, 0xF2, 0x7F, 0x2C, + 0x4F, 0x28, 0x5A, 0x29, 0x4E, 0x2D, 0x81, 0xEE, 0xFE, 0x61, 0x01, 0x01, + 0xB0, 0xF2, 0x94, 0x2C, 0x4D, 0x28, 0x58, 0x28, 0x4D, 0x2C, 0x96, 0x01, + 0xD4, 0x9C, 0x9C, 0xFE, 0x2C, 0x02, 0x69, 0x8C, 0x02, 0x51, 0xC0, 0x44, + 0x83, 0x41, 0x41, 0x83, 0x44, 0xC0, 0xFD, 0xAE, 0x8B, 0xFD, 0x99, 0xDB, + 0x43, 0x7E, 0x3F, 0x3F, 0x7E, 0x43, 0xDB, 0x00, 0x02, 0x00, 0x4A, 0xFE, + 0xBC, 0x04, 0x13, 0x04, 0x44, 0x00, 0x03, 0x00, 0x1D, 0x00, 0x00, 0x65, + 0x11, 0x23, 0x11, 0x17, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x17, 0x23, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x02, 0xC7, 0xD1, 0x4F, 0x99, 0xE4, 0x7E, 0x7E, + 0xE5, 0x98, 0x7E, 0xC8, 0x7C, 0x0C, 0xD3, 0x0A, 0x40, 0x68, 0x48, 0x5A, + 0x83, 0x47, 0x46, 0x83, 0x5B, 0x9F, 0xFE, 0x1D, 0x01, 0xE3, 0xB7, 0x8E, + 0xFB, 0xA3, 0xA5, 0xFC, 0x8F, 0x62, 0xAD, 0x71, 0x3A, 0x5B, 0x34, 0x5D, + 0xA8, 0x73, 0x71, 0xA9, 0x5C, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x04, + 0x4F, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x00, 0x73, 0x11, 0x21, 0x15, 0x21, + 0x11, 0x21, 0x15, 0x21, 0x11, 0x8E, 0x03, 0xC1, 0xFD, 0x1F, 0x02, 0xE1, + 0xFD, 0x1F, 0x05, 0xD2, 0xC3, 0xFE, 0x3A, 0xC1, 0xFD, 0x78, 0x00, 0x03, + 0x00, 0x8E, 0xFE, 0x4D, 0x05, 0x2A, 0x05, 0xD2, 0x00, 0x09, 0x00, 0x10, + 0x00, 0x16, 0x00, 0x00, 0x41, 0x11, 0x3E, 0x02, 0x37, 0x01, 0x21, 0x01, + 0x27, 0x01, 0x11, 0x33, 0x11, 0x03, 0x17, 0x11, 0x01, 0x27, 0x13, 0x01, + 0x37, 0x01, 0x01, 0x2B, 0x33, 0x66, 0x69, 0x36, 0x01, 0xA6, 0x01, 0x1C, + 0xFD, 0x86, 0x0E, 0xFD, 0xF1, 0xE0, 0x01, 0x01, 0x02, 0x89, 0xAE, 0xDE, + 0xFD, 0xFD, 0x89, 0x02, 0x7D, 0x01, 0x86, 0x01, 0x0F, 0x3F, 0x78, 0x77, + 0x3C, 0x01, 0xD3, 0xFD, 0x49, 0x01, 0xFC, 0xE4, 0x05, 0xD2, 0xFE, 0x1E, + 0xFE, 0xAF, 0x6C, 0xFD, 0xCD, 0xFE, 0x4D, 0x76, 0x01, 0x3D, 0x02, 0xDE, + 0xAD, 0xFC, 0x75, 0x00, 0x01, 0x00, 0x53, 0xFF, 0xE9, 0x05, 0x76, 0x05, + 0xE9, 0x00, 0x25, 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x33, 0x1E, + 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, + 0x02, 0x07, 0x23, 0x3E, 0x03, 0x33, 0x32, 0x04, 0x12, 0x15, 0x14, 0x02, + 0x04, 0x02, 0xC4, 0x7A, 0xD2, 0xA6, 0x6C, 0x13, 0xE3, 0x10, 0x49, 0x67, + 0x82, 0x4B, 0x8F, 0xD1, 0x73, 0x73, 0xD2, 0x8E, 0x4B, 0x82, 0x68, 0x48, + 0x10, 0xE3, 0x14, 0x6D, 0xA5, 0xD2, 0x79, 0xCC, 0x01, 0x37, 0xAF, 0xB0, + 0xFE, 0xC9, 0x17, 0x48, 0x88, 0xBE, 0x75, 0x4B, 0x74, 0x4F, 0x29, 0x8B, + 0xFD, 0xAB, 0xAC, 0xFE, 0x8B, 0x28, 0x51, 0x74, 0x4B, 0x77, 0xBE, 0x88, + 0x47, 0xBF, 0xFE, 0xA6, 0xE8, 0xE6, 0xFE, 0xA6, 0xBF, 0xFF, 0xFF, 0x00, + 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x05, 0xE9, 0x06, 0x26, 0x00, 0x49, 0x00, + 0x00, 0x00, 0x07, 0x05, 0xDC, 0x02, 0x0D, 0x02, 0x6C, 0xFF, 0xFF, 0x00, + 0x53, 0xFF, 0xE9, 0x05, 0x76, 0x05, 0xE9, 0x06, 0x26, 0x09, 0xCA, 0x00, + 0x00, 0x00, 0x07, 0x05, 0xDC, 0x01, 0xC6, 0x02, 0x6C, 0xFF, 0xFF, 0x00, + 0x7D, 0x00, 0x00, 0x04, 0x26, 0x04, 0x2E, 0x06, 0x06, 0x09, 0x50, 0x00, + 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFE, 0x5E, 0x04, 0x97, 0x04, 0x2E, 0x06, + 0x06, 0x03, 0x95, 0x00, 0x00, 0x00, 0x01, 0x00, 0x1D, 0x00, 0x00, 0x04, + 0x5A, 0x04, 0x30, 0x00, 0x15, 0x00, 0x00, 0x61, 0x01, 0x26, 0x26, 0x23, + 0x23, 0x35, 0x33, 0x32, 0x16, 0x17, 0x13, 0x16, 0x16, 0x17, 0x23, 0x36, + 0x36, 0x37, 0x13, 0x33, 0x01, 0x01, 0xE0, 0xFE, 0xC7, 0x0F, 0x2F, 0x2B, + 0x21, 0x25, 0x78, 0x92, 0x21, 0x95, 0x1F, 0x35, 0x1A, 0x36, 0x1A, 0x34, + 0x1E, 0xD3, 0xE1, 0xFE, 0x69, 0x03, 0x37, 0x27, 0x20, 0xB2, 0x5A, 0x60, + 0xFE, 0x68, 0x58, 0xAD, 0x56, 0x56, 0xAE, 0x57, 0x02, 0x50, 0xFB, 0xD2, + 0x00, 0x01, 0x00, 0x44, 0xFF, 0xE8, 0x04, 0x0F, 0x04, 0x44, 0x00, 0x25, + 0x00, 0x00, 0x45, 0x22, 0x2E, 0x02, 0x27, 0x37, 0x1E, 0x03, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x27, + 0x3E, 0x03, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x02, 0x14, + 0x5D, 0xA0, 0x7B, 0x4D, 0x0B, 0xD3, 0x0A, 0x2A, 0x3E, 0x54, 0x35, 0x5E, + 0x82, 0x45, 0x45, 0x82, 0x5E, 0x34, 0x56, 0x40, 0x2A, 0x08, 0xD2, 0x0C, + 0x4E, 0x7A, 0x9F, 0x5D, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, 0x18, 0x38, 0x65, + 0x88, 0x52, 0x0B, 0x2D, 0x4B, 0x36, 0x1D, 0x5E, 0xA9, 0x6E, 0x70, 0xAA, + 0x5F, 0x1E, 0x35, 0x4A, 0x2C, 0x0B, 0x52, 0x89, 0x63, 0x37, 0x8E, 0xFD, + 0xA5, 0xA4, 0xFB, 0x8D, 0x00, 0x02, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, + 0x04, 0x44, 0x00, 0x0B, 0x00, 0x31, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x03, 0x22, 0x26, 0x26, + 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x17, 0x07, 0x2E, 0x03, + 0x23, 0x22, 0x06, 0x06, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, + 0x37, 0x17, 0x0E, 0x03, 0x02, 0x46, 0x32, 0x46, 0x46, 0x32, 0x31, 0x47, + 0x47, 0x32, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, 0x98, 0x5D, 0x9F, 0x7A, 0x4D, + 0x0C, 0xD1, 0x09, 0x29, 0x40, 0x55, 0x36, 0x5D, 0x83, 0x44, 0x44, 0x83, + 0x5D, 0x36, 0x54, 0x3E, 0x2A, 0x0A, 0xD3, 0x0B, 0x4E, 0x7A, 0xA0, 0x01, + 0x9F, 0x46, 0x32, 0x32, 0x46, 0x46, 0x32, 0x32, 0x46, 0xFE, 0x49, 0x8D, + 0xFB, 0xA4, 0xA5, 0xFD, 0x8E, 0x37, 0x63, 0x89, 0x52, 0x0B, 0x2C, 0x4A, + 0x35, 0x1E, 0x5F, 0xAA, 0x70, 0x6E, 0xA9, 0x5E, 0x1D, 0x36, 0x4B, 0x2D, + 0x0B, 0x52, 0x88, 0x65, 0x38, 0x00, 0x02, 0x00, 0x44, 0xFF, 0xE8, 0x04, + 0x0F, 0x04, 0x44, 0x00, 0x0B, 0x00, 0x31, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x03, 0x22, 0x2E, + 0x02, 0x27, 0x37, 0x1E, 0x03, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, + 0x26, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x03, 0x33, 0x32, 0x16, + 0x16, 0x15, 0x14, 0x06, 0x06, 0x02, 0x0E, 0x31, 0x47, 0x47, 0x31, 0x32, + 0x46, 0x46, 0x2C, 0x5D, 0xA0, 0x7B, 0x4D, 0x0B, 0xD3, 0x0A, 0x2A, 0x3E, + 0x54, 0x35, 0x5E, 0x82, 0x45, 0x45, 0x82, 0x5E, 0x34, 0x56, 0x40, 0x2A, + 0x08, 0xD2, 0x0C, 0x4E, 0x7A, 0x9F, 0x5D, 0x98, 0xE4, 0x7F, 0x7F, 0xE4, + 0x01, 0x9E, 0x46, 0x32, 0x32, 0x46, 0x46, 0x32, 0x32, 0x46, 0xFE, 0x4A, + 0x38, 0x65, 0x88, 0x52, 0x0B, 0x2D, 0x4B, 0x36, 0x1D, 0x5E, 0xA9, 0x6E, + 0x70, 0xAA, 0x5F, 0x1E, 0x35, 0x4A, 0x2C, 0x0B, 0x52, 0x89, 0x63, 0x37, + 0x8E, 0xFD, 0xA5, 0xA4, 0xFB, 0x8D, 0x00, 0x01, 0x00, 0x7D, 0xFE, 0x5E, + 0x03, 0xB4, 0x04, 0x2E, 0x00, 0x09, 0x00, 0x00, 0x53, 0x11, 0x21, 0x15, + 0x21, 0x11, 0x21, 0x15, 0x21, 0x11, 0x7D, 0x03, 0x37, 0xFD, 0x9F, 0x02, + 0x61, 0xFD, 0x9F, 0xFE, 0x5E, 0x05, 0xD0, 0xB7, 0xFE, 0x7F, 0xB7, 0xFD, + 0x1F, 0x00, 0x03, 0x00, 0x7D, 0xFE, 0x4E, 0x04, 0x26, 0x04, 0x2E, 0x00, + 0x05, 0x00, 0x09, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x27, 0x01, 0x01, 0x37, + 0x01, 0x21, 0x11, 0x33, 0x11, 0x03, 0x27, 0x33, 0x01, 0x21, 0x01, 0x02, + 0xAD, 0x8F, 0x01, 0x08, 0xFE, 0x79, 0x85, 0x01, 0xFC, 0xFC, 0x5D, 0xD6, + 0x41, 0x06, 0xAA, 0x01, 0x70, 0x01, 0x00, 0xFD, 0xEE, 0xFE, 0x4E, 0x70, + 0x01, 0x43, 0x01, 0xC1, 0x92, 0xFD, 0xAC, 0x04, 0x2E, 0xFB, 0xD2, 0x01, + 0xBA, 0xB6, 0x01, 0xBE, 0xFD, 0x8C, 0x00, 0x02, 0x00, 0x8B, 0xFF, 0xEC, + 0x04, 0x70, 0x06, 0x14, 0x00, 0x2D, 0x00, 0x3C, 0x00, 0x00, 0x41, 0x36, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x02, 0x35, 0x35, + 0x36, 0x12, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x0E, 0x02, 0x15, 0x36, 0x36, 0x17, 0x22, 0x06, 0x06, 0x15, + 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x36, 0x35, 0x34, 0x26, 0x02, 0xB3, + 0x84, 0xC8, 0x71, 0x76, 0xDD, 0x9B, 0xA4, 0xE0, 0x73, 0x01, 0x7E, 0xF3, + 0xB3, 0x62, 0x98, 0x56, 0x48, 0x9B, 0x7D, 0x42, 0xA1, 0x63, 0x3E, 0x49, + 0x7A, 0x2E, 0x4D, 0x47, 0x3F, 0x4C, 0x54, 0x7B, 0x4F, 0x25, 0x3F, 0xB6, + 0x3F, 0x47, 0x78, 0x49, 0x36, 0x71, 0x5B, 0x5B, 0x76, 0x37, 0x7E, 0x03, + 0xA6, 0x01, 0x6C, 0xCE, 0x93, 0x92, 0xDF, 0x7D, 0x9F, 0x01, 0x39, 0xE9, + 0x46, 0xF0, 0x01, 0x68, 0xC9, 0x42, 0x7A, 0x58, 0x42, 0x80, 0x52, 0x17, + 0x27, 0xA4, 0x1D, 0x1A, 0x3D, 0x22, 0x28, 0x42, 0x5C, 0xA5, 0xD8, 0x7C, + 0x48, 0x54, 0xBB, 0x3E, 0x7A, 0x5A, 0x5B, 0x8C, 0x4D, 0x4D, 0x8C, 0x5B, + 0x87, 0x8B, 0x00, 0x01, 0x00, 0x6C, 0xFF, 0xEC, 0x04, 0x8E, 0x05, 0xE6, + 0x00, 0x33, 0x00, 0x00, 0x41, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x24, 0x26, + 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x14, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x07, 0x14, + 0x16, 0x16, 0x33, 0x32, 0x3E, 0x02, 0x04, 0x85, 0x09, 0x2C, 0x4E, 0x46, + 0x23, 0xB7, 0xFE, 0xEA, 0x9D, 0x5C, 0xA4, 0x6B, 0xA1, 0xBF, 0x75, 0xCE, + 0x87, 0x8D, 0xD3, 0x76, 0xE3, 0x81, 0x6F, 0x67, 0x79, 0x42, 0x3C, 0x36, + 0x44, 0x01, 0x5A, 0xAF, 0x7C, 0x19, 0x2D, 0x31, 0x3B, 0x03, 0x18, 0xBB, + 0x0F, 0x11, 0x08, 0x8D, 0xFA, 0xA4, 0x15, 0x74, 0xA5, 0x58, 0xCC, 0xB8, + 0xFD, 0x5A, 0x92, 0xD0, 0x6E, 0x74, 0xD1, 0x8B, 0x01, 0x2F, 0xFE, 0xD1, + 0x7E, 0x91, 0x89, 0x86, 0x02, 0xB0, 0x5E, 0x54, 0x4A, 0x59, 0x19, 0x67, + 0xA2, 0x5D, 0x03, 0x07, 0x0B, 0x00, 0x03, 0x00, 0x44, 0xFF, 0xEC, 0x06, + 0x5A, 0x04, 0x5E, 0x00, 0x03, 0x00, 0x1D, 0x00, 0x37, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x33, 0x33, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x35, 0x33, 0x15, 0x16, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x02, 0x35, 0x26, 0x12, 0x25, 0x33, 0x16, 0x12, 0x15, 0x14, 0x02, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x35, 0x35, 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x34, 0x26, 0x26, 0x06, 0x5A, 0xF9, 0xEA, 0xC7, 0xDF, + 0x42, 0x4A, 0x1C, 0x33, 0x60, 0x42, 0x57, 0x6A, 0xA4, 0x01, 0x56, 0xA7, + 0x7A, 0x7F, 0xB9, 0x64, 0x01, 0x51, 0x03, 0xFB, 0xE1, 0x50, 0x51, 0x63, + 0xB9, 0x82, 0x7A, 0xA7, 0x55, 0xA4, 0x6B, 0x56, 0x44, 0x5F, 0x33, 0x1D, + 0x49, 0x04, 0x5E, 0xB0, 0xB0, 0x75, 0xBE, 0xAA, 0x58, 0x79, 0xAE, 0x5B, + 0xA0, 0x99, 0xFD, 0xF4, 0xA0, 0xE4, 0x79, 0x85, 0x01, 0x01, 0xBB, 0x9B, + 0x01, 0x18, 0x7E, 0x7E, 0xFE, 0xEB, 0x97, 0xBC, 0xFE, 0xFC, 0x88, 0x79, + 0xE4, 0xA0, 0xF4, 0xFD, 0x99, 0xA0, 0x5B, 0xAE, 0x79, 0x59, 0xAA, 0xBD, + 0x00, 0x03, 0x00, 0x5E, 0xFF, 0xEC, 0x05, 0x56, 0x04, 0x6C, 0x00, 0x03, + 0x00, 0x15, 0x00, 0x27, 0x00, 0x00, 0x73, 0x01, 0x33, 0x01, 0x27, 0x03, + 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x15, 0x11, 0x05, 0x22, 0x2E, 0x02, 0x35, 0x11, 0x37, 0x11, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0xE1, 0x03, 0x32, 0xDC, + 0xFC, 0xCE, 0x73, 0x01, 0x5C, 0x4A, 0x0F, 0x24, 0x11, 0x01, 0x1A, 0x4B, + 0x1D, 0x4F, 0x79, 0x52, 0x2A, 0x02, 0xB0, 0x50, 0x7A, 0x51, 0x28, 0xD8, + 0x01, 0x5B, 0x4D, 0x0D, 0x26, 0x11, 0x19, 0x4C, 0x04, 0x5E, 0xFB, 0xA2, + 0x26, 0x02, 0xE7, 0x5E, 0x48, 0x04, 0x04, 0xB0, 0x07, 0x0A, 0x31, 0x5C, + 0x82, 0x50, 0xFD, 0xDC, 0xFD, 0x33, 0x5D, 0x80, 0x4E, 0x02, 0x29, 0xC4, + 0xFD, 0x13, 0x5D, 0x47, 0x03, 0x04, 0xB0, 0x09, 0x08, 0x00, 0x03, 0x00, + 0x8B, 0xFE, 0x25, 0x04, 0x70, 0x04, 0x6C, 0x00, 0x16, 0x00, 0x2C, 0x00, + 0x3E, 0x00, 0x00, 0x41, 0x23, 0x34, 0x26, 0x26, 0x27, 0x2E, 0x02, 0x02, + 0x35, 0x35, 0x17, 0x15, 0x06, 0x1E, 0x02, 0x17, 0x1E, 0x03, 0x01, 0x22, + 0x26, 0x26, 0x27, 0x2E, 0x02, 0x35, 0x35, 0x36, 0x12, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x36, 0x35, + 0x35, 0x36, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, + 0x16, 0x04, 0x1C, 0xBC, 0x37, 0x67, 0x49, 0x6F, 0xB7, 0x82, 0x46, 0xBB, + 0x0A, 0x2A, 0x60, 0x8A, 0x55, 0x51, 0x89, 0x65, 0x38, 0xFE, 0x8D, 0x70, + 0xB4, 0x86, 0x2C, 0x0E, 0x22, 0x18, 0x01, 0x75, 0xDE, 0x9E, 0x9E, 0xDE, + 0x77, 0x6C, 0xCB, 0xBC, 0x5E, 0x75, 0x35, 0x01, 0x35, 0x75, 0x5F, 0x5E, + 0x75, 0x37, 0x37, 0x75, 0xFE, 0x25, 0x30, 0x36, 0x21, 0x0E, 0x18, 0x73, + 0xC3, 0x01, 0x19, 0xBD, 0x50, 0x0C, 0x50, 0x9C, 0xD6, 0x89, 0x4D, 0x13, + 0x10, 0x29, 0x45, 0x75, 0x01, 0xB7, 0x59, 0x9B, 0x62, 0x1E, 0x2E, 0x29, + 0x16, 0x14, 0xAA, 0x01, 0x01, 0x91, 0x8D, 0xF9, 0xA3, 0x18, 0x8C, 0xE2, + 0x82, 0xBA, 0x56, 0x8D, 0x53, 0x18, 0x67, 0xA6, 0x62, 0x61, 0xA6, 0x68, + 0x18, 0x52, 0x8E, 0x56, 0x00, 0x02, 0x00, 0x2F, 0xFF, 0xFB, 0x03, 0x51, + 0x04, 0x5E, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x65, 0x21, 0x15, 0x21, + 0x22, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x21, 0x15, 0x21, + 0x22, 0x06, 0x06, 0x15, 0x15, 0x1E, 0x02, 0x13, 0x15, 0x21, 0x35, 0x02, + 0x1F, 0x01, 0x32, 0xFE, 0xCE, 0xA8, 0xDC, 0x6C, 0x6D, 0xDC, 0xA7, 0x01, + 0x32, 0xFE, 0xCE, 0x67, 0x72, 0x2E, 0x01, 0x2B, 0x71, 0xE9, 0xFD, 0xED, + 0xB5, 0xBA, 0x91, 0xF7, 0x99, 0x25, 0x99, 0xF5, 0x8F, 0xBA, 0x62, 0xA1, + 0x60, 0x25, 0x5A, 0xA5, 0x68, 0x01, 0xCF, 0xB1, 0xB1, 0xFF, 0xFF, 0x00, + 0x4A, 0xFF, 0xE8, 0x04, 0xF2, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x54, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x67, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x4B, 0xFF, 0xE9, 0x03, 0xBA, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x71, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x24, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFE, 0x5E, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x80, 0x00, + 0x00, 0x00, 0x07, 0x0A, 0xF3, 0x01, 0x70, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0x7D, 0xFF, 0xFE, 0x01, 0xEE, 0x05, 0xE4, 0x06, 0x26, 0x04, 0x99, 0x00, + 0x00, 0x00, 0x06, 0x0A, 0xF3, 0x05, 0x00, 0xFF, 0xFF, 0xFF, 0xA7, 0xFF, + 0xFE, 0x02, 0x28, 0x07, 0x1A, 0x06, 0x26, 0x04, 0x99, 0x00, 0x00, 0x00, + 0x07, 0x0B, 0x4B, 0xFE, 0xCB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, + 0xE8, 0x04, 0x44, 0x05, 0xE4, 0x06, 0x26, 0x03, 0x16, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF3, 0x01, 0x64, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, + 0xEC, 0x04, 0x10, 0x05, 0xE4, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x07, 0x0A, 0xF3, 0x01, 0x64, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7D, 0xFF, + 0xEC, 0x04, 0x10, 0x06, 0x84, 0x06, 0x26, 0x03, 0xB2, 0x00, 0x00, 0x00, + 0x06, 0x06, 0xE4, 0xAC, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xF0, 0x06, + 0x07, 0x05, 0xE4, 0x06, 0x26, 0x04, 0xCA, 0x00, 0x00, 0x00, 0x07, 0x0A, + 0xF3, 0x02, 0x46, 0x00, 0x00, 0x00, 0x01, 0x00, 0x88, 0xFE, 0x18, 0x01, + 0xAA, 0xFF, 0x8A, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x35, + 0x33, 0x15, 0x14, 0x16, 0x33, 0x32, 0x32, 0x37, 0x15, 0x06, 0x06, 0x01, + 0x44, 0x55, 0x67, 0xB6, 0x1A, 0x1F, 0x0D, 0x19, 0x0D, 0x18, 0x34, 0xFE, + 0x18, 0x68, 0x56, 0xB4, 0xA3, 0x25, 0x1F, 0x01, 0x89, 0x01, 0x02, 0xFF, + 0xFF, 0x00, 0x88, 0xFE, 0x18, 0x01, 0xAA, 0xFF, 0x8A, 0x06, 0x06, 0x09, + 0xE4, 0x00, 0x00, 0x00, 0x03, 0x00, 0x47, 0x02, 0x7A, 0x03, 0x39, 0x06, + 0xCE, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x15, 0x14, 0x16, 0x01, 0x21, 0x35, 0x21, 0x01, 0xC0, 0x67, + 0xAC, 0x66, 0x65, 0xAB, 0x69, 0x69, 0xAB, 0x65, 0x65, 0xAA, 0x6A, 0x61, + 0x55, 0x58, 0x5E, 0x5F, 0x58, 0x5C, 0x01, 0x73, 0xFD, 0xAF, 0x02, 0x51, + 0x02, 0x7A, 0x6A, 0xDB, 0xA7, 0x86, 0xA7, 0xD5, 0x66, 0x66, 0xD5, 0xA7, + 0x86, 0xA7, 0xDB, 0x6A, 0xA5, 0x93, 0x9C, 0xB4, 0x9F, 0x8C, 0x8C, 0x9F, + 0xB4, 0x9F, 0x90, 0x01, 0x36, 0xA5, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, + 0x01, 0x6E, 0x05, 0xD2, 0x06, 0x06, 0x00, 0xC5, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x03, 0x6A, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, + 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x01, 0xFC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x05, 0x67, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, + 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x01, 0xFC, 0x00, 0x00, 0x00, 0x07, + 0x00, 0xC5, 0x03, 0xF9, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, + 0x07, 0x53, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, 0x00, 0x00, 0x00, 0x07, + 0x01, 0xC8, 0x01, 0xFC, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, + 0x05, 0x57, 0x05, 0xD2, 0x06, 0x06, 0x01, 0xC8, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0x00, 0x00, 0x06, 0xDD, 0x05, 0xD2, 0x04, 0x26, 0x01, 0xC8, + 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x05, 0x6F, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x18, 0x00, 0x00, 0x08, 0xD9, 0x05, 0xD2, 0x04, 0x26, 0x01, 0xC8, + 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x05, 0x6F, 0x00, 0x00, 0x00, 0x07, + 0x00, 0xC5, 0x07, 0x6B, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x18, 0x00, 0x00, + 0x0A, 0xD6, 0x05, 0xD2, 0x04, 0x26, 0x01, 0xC8, 0x00, 0x00, 0x00, 0x27, + 0x00, 0xC5, 0x05, 0x6F, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x07, 0x6B, + 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x09, 0x68, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x07, 0x3F, 0x05, 0xD2, 0x04, 0x26, 0x00, 0xC5, + 0x00, 0x00, 0x00, 0x07, 0x01, 0xD2, 0x01, 0xFC, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x1C, 0x00, 0x00, 0x05, 0x42, 0x05, 0xD2, 0x06, 0x06, 0x01, 0xD2, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x06, 0xCD, 0x05, 0xD2, + 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x05, 0x5F, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x08, 0xC9, 0x05, 0xD2, + 0x04, 0x26, 0x01, 0xD2, 0x00, 0x00, 0x00, 0x27, 0x00, 0xC5, 0x05, 0x5F, + 0x00, 0x00, 0x00, 0x07, 0x00, 0xC5, 0x07, 0x5B, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x04, 0x28, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x19, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0xFF, 0xE9, 0x05, 0x7B, 0x05, 0xE9, + 0x06, 0x06, 0x00, 0x49, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x8E, 0x00, 0x00, + 0x05, 0x41, 0x05, 0xD2, 0x06, 0x06, 0x00, 0x54, 0x00, 0x00, 0xFF, 0xFF, + 0x00, 0x8E, 0x00, 0x00, 0x06, 0x7A, 0x05, 0xD2, 0x06, 0x06, 0x01, 0x24, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x58, 0x00, 0x00, 0x01, 0x65, 0x05, 0xE5, + 0x04, 0x26, 0x02, 0xB2, 0xF6, 0x00, 0x00, 0x06, 0x0A, 0x8C, 0xF0, 0x00, + 0xFF, 0xFF, 0x00, 0x61, 0x00, 0x00, 0x03, 0x3E, 0x05, 0xE5, 0x04, 0x26, + 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xFA, 0x00, 0x00, 0x27, + 0x02, 0xB2, 0x01, 0xD0, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x01, 0xCA, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x61, 0x00, 0x00, 0x05, 0x0E, 0x05, 0xE5, + 0x04, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, 0x0A, 0x8C, 0xFA, 0x00, + 0x00, 0x27, 0x02, 0xB2, 0x01, 0xD0, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, + 0x01, 0xCA, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x03, 0xA0, 0x00, 0x00, + 0x00, 0x07, 0x0A, 0x8C, 0x03, 0x99, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x61, + 0x00, 0x00, 0x05, 0xFE, 0x05, 0xE5, 0x04, 0x26, 0x02, 0xB2, 0x00, 0x00, + 0x00, 0x26, 0x0A, 0x8C, 0xFA, 0x00, 0x00, 0x07, 0x03, 0xD2, 0x01, 0xD0, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x14, 0x00, 0x00, 0x04, 0x25, 0x04, 0x2E, + 0x04, 0x06, 0x03, 0xD2, 0xF7, 0x00, 0xFF, 0xFF, 0x00, 0x13, 0x00, 0x00, + 0x05, 0x72, 0x05, 0xE5, 0x04, 0x26, 0x03, 0xD2, 0xF6, 0x00, 0x00, 0x27, + 0x02, 0xB2, 0x04, 0x04, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x03, 0xFD, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0x00, 0x00, 0x07, 0x89, 0x05, 0xE5, + 0x04, 0x26, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x04, 0x4B, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x04, 0x45, 0x00, 0x00, 0x00, 0x27, + 0x02, 0xB2, 0x06, 0x1B, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x06, 0x15, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x1D, 0x00, 0x00, 0x09, 0x59, 0x05, 0xE5, + 0x04, 0x26, 0x03, 0xD2, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x04, 0x4B, + 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x04, 0x45, 0x00, 0x00, 0x00, 0x27, + 0x02, 0xB2, 0x06, 0x1B, 0x00, 0x00, 0x00, 0x27, 0x0A, 0x8C, 0x06, 0x15, + 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x07, 0xEB, 0x00, 0x00, 0x00, 0x07, + 0x0A, 0x8C, 0x07, 0xE4, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x61, 0x00, 0x00, + 0x05, 0xE5, 0x05, 0xE5, 0x04, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x26, + 0x0A, 0x8C, 0xFA, 0x00, 0x00, 0x07, 0x03, 0xDF, 0x01, 0xD0, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x15, 0x00, 0x00, 0x04, 0x0C, 0x04, 0x2E, 0x04, 0x06, + 0x03, 0xDF, 0xF6, 0x00, 0xFF, 0xFF, 0x00, 0x1F, 0x00, 0x00, 0x05, 0xA4, + 0x05, 0xE5, 0x04, 0x26, 0x03, 0xDF, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, + 0x04, 0x35, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x04, 0x2F, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x1F, 0x00, 0x00, 0x07, 0x73, 0x05, 0xE5, 0x04, 0x26, + 0x03, 0xDF, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, 0x04, 0x35, 0x00, 0x00, + 0x00, 0x27, 0x0A, 0x8C, 0x04, 0x2F, 0x00, 0x00, 0x00, 0x27, 0x02, 0xB2, + 0x06, 0x05, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x8C, 0x05, 0xFE, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x01, 0x53, 0x05, 0xD2, 0x06, 0x06, + 0x02, 0xE0, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xE8, 0x04, 0x15, + 0x04, 0x44, 0x06, 0x06, 0x02, 0x4A, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x41, + 0xFF, 0xEB, 0x04, 0x29, 0x05, 0xD2, 0x04, 0x06, 0x02, 0x55, 0xF8, 0x00, + 0xFF, 0xFF, 0x00, 0x7D, 0x00, 0x00, 0x06, 0x67, 0x04, 0x42, 0x06, 0x06, + 0x02, 0xFE, 0x00, 0x00, 0x00, 0x01, 0x00, 0x52, 0xFF, 0xEC, 0x04, 0xD5, + 0x05, 0xE4, 0x00, 0x21, 0x00, 0x00, 0x53, 0x33, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x23, + 0x3E, 0x02, 0x33, 0x32, 0x04, 0x12, 0x15, 0x15, 0x14, 0x02, 0x04, 0x23, + 0x22, 0x26, 0x26, 0x53, 0xEB, 0x13, 0x92, 0x97, 0x8C, 0xA2, 0x46, 0x50, + 0xA7, 0x83, 0x97, 0x8E, 0x12, 0xEB, 0x0F, 0x84, 0xEA, 0xA7, 0xC0, 0x01, + 0x0F, 0x90, 0x8F, 0xFE, 0xF3, 0xBF, 0xA6, 0xED, 0x85, 0x01, 0xD6, 0x91, + 0x9E, 0x84, 0xE2, 0x8D, 0x9D, 0x97, 0xE0, 0x7C, 0xA6, 0x90, 0x90, 0xE0, + 0x80, 0xA9, 0xFE, 0xCC, 0xD0, 0x9D, 0xD1, 0xFE, 0xCC, 0xA9, 0x82, 0xDD, + 0x00, 0x02, 0x00, 0x9A, 0xFE, 0x98, 0x05, 0x1B, 0x05, 0xE6, 0x00, 0x22, + 0x00, 0x26, 0x00, 0x00, 0x41, 0x17, 0x0E, 0x02, 0x23, 0x22, 0x24, 0x02, + 0x35, 0x35, 0x34, 0x12, 0x24, 0x33, 0x32, 0x16, 0x16, 0x17, 0x23, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x36, 0x37, 0x11, 0x23, 0x11, 0x04, 0x48, 0x7F, 0x30, 0x89, 0xB2, + 0x6F, 0xBA, 0xFE, 0xF5, 0x8E, 0x92, 0x01, 0x0E, 0xBA, 0xAA, 0xEB, 0x84, + 0x0E, 0xE7, 0x13, 0x8F, 0x97, 0x83, 0xA7, 0x4E, 0x45, 0xA0, 0x89, 0x55, + 0x84, 0x61, 0xE4, 0xEB, 0x01, 0x5E, 0x84, 0x47, 0x6C, 0x3B, 0xA9, 0x01, + 0x34, 0xD1, 0x9E, 0xD0, 0x01, 0x34, 0xAA, 0x80, 0xE0, 0x90, 0x8F, 0xA6, + 0x7C, 0xE0, 0x96, 0x9F, 0x8D, 0xE2, 0x84, 0x33, 0x53, 0xA8, 0xFC, 0xC3, + 0x03, 0x3D, 0x00, 0x03, 0x00, 0x6A, 0x00, 0x00, 0x06, 0x35, 0x05, 0xB2, + 0x00, 0x04, 0x00, 0x08, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x01, 0x17, 0x23, + 0x01, 0x01, 0x11, 0x23, 0x11, 0x01, 0x01, 0x23, 0x37, 0x01, 0x01, 0x13, + 0x02, 0x43, 0x42, 0xB1, 0xFD, 0x83, 0x03, 0x58, 0xE8, 0x03, 0x5B, 0xFD, + 0x86, 0xB4, 0x42, 0x02, 0x4A, 0x03, 0x4B, 0xFD, 0x8A, 0xD5, 0x02, 0xA6, + 0x03, 0x0C, 0xFA, 0xDF, 0x05, 0x21, 0xFC, 0xEE, 0xFD, 0x60, 0xD5, 0x02, + 0x76, 0x00, 0x01, 0x00, 0x1A, 0x01, 0xE8, 0x04, 0x52, 0x03, 0x49, 0x00, + 0x15, 0x00, 0x00, 0x41, 0x23, 0x2E, 0x03, 0x23, 0x22, 0x0E, 0x02, 0x07, + 0x23, 0x3E, 0x03, 0x33, 0x32, 0x1E, 0x02, 0x04, 0x52, 0xB1, 0x14, 0x3B, + 0x55, 0x77, 0x51, 0x55, 0x78, 0x52, 0x36, 0x13, 0xB3, 0x1E, 0x60, 0x87, + 0xAC, 0x6A, 0x6B, 0xAE, 0x86, 0x60, 0x01, 0xE8, 0x1F, 0x45, 0x3D, 0x26, + 0x26, 0x3E, 0x44, 0x1F, 0x44, 0x7E, 0x64, 0x3B, 0x3A, 0x64, 0x7F, 0x00, + 0x01, 0x00, 0x49, 0xFE, 0x7D, 0x01, 0xED, 0x06, 0xD5, 0x00, 0x07, 0x00, + 0x00, 0x57, 0x37, 0x11, 0x27, 0x37, 0x01, 0x11, 0x01, 0x49, 0xD7, 0xD7, + 0x90, 0x01, 0x14, 0xFE, 0xEC, 0xF7, 0xD6, 0x05, 0x94, 0xD5, 0x8D, 0xFE, + 0xEE, 0xF9, 0xCA, 0xFE, 0xF0, 0x00, 0x0C, 0x00, 0x7A, 0x00, 0x82, 0x05, + 0x3E, 0x05, 0x28, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, + 0x13, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x1F, 0x00, 0x23, 0x00, 0x27, 0x00, + 0x2B, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x21, 0x35, 0x21, 0x03, 0x01, 0x37, + 0x01, 0x05, 0x11, 0x33, 0x11, 0x25, 0x01, 0x17, 0x01, 0x01, 0x21, 0x35, + 0x21, 0x03, 0x01, 0x37, 0x01, 0x05, 0x11, 0x33, 0x11, 0x25, 0x01, 0x17, + 0x01, 0x01, 0x21, 0x35, 0x21, 0x03, 0x01, 0x37, 0x01, 0x05, 0x11, 0x33, + 0x11, 0x25, 0x01, 0x17, 0x01, 0x02, 0xB8, 0xFD, 0xC2, 0x02, 0x3E, 0x7F, + 0xFE, 0x72, 0x4C, 0x01, 0x92, 0xFE, 0xD8, 0x6F, 0xFE, 0xDB, 0x01, 0x8E, + 0x50, 0xFE, 0x6E, 0x03, 0x04, 0xFD, 0xC3, 0x02, 0x3D, 0x7E, 0xFE, 0x71, + 0x4B, 0x01, 0x93, 0xFE, 0xD8, 0x6E, 0xFE, 0xDC, 0x01, 0x8F, 0x4F, 0xFE, + 0x6D, 0x03, 0x05, 0xFD, 0xC2, 0x02, 0x3E, 0x7F, 0xFE, 0x72, 0x4C, 0x01, + 0x92, 0xFE, 0xD8, 0x6F, 0xFE, 0xDB, 0x01, 0x8E, 0x50, 0xFE, 0x6E, 0x01, + 0x6A, 0x6C, 0xFE, 0xD7, 0x01, 0x93, 0x4E, 0xFE, 0x6C, 0x78, 0x02, 0x38, + 0xFD, 0xC8, 0x79, 0x01, 0x93, 0x4E, 0xFE, 0x6D, 0x03, 0x29, 0x6C, 0xFE, + 0xD7, 0x01, 0x93, 0x4E, 0xFE, 0x6C, 0x78, 0x02, 0x3A, 0xFD, 0xC6, 0x79, + 0x01, 0x93, 0x4E, 0xFE, 0x6D, 0xFE, 0x51, 0x6C, 0xFE, 0xD7, 0x01, 0x93, + 0x4E, 0xFE, 0x6C, 0x78, 0x02, 0x38, 0xFD, 0xC8, 0x79, 0x01, 0x93, 0x4E, + 0xFE, 0x6D, 0x00, 0x02, 0x00, 0x50, 0xFD, 0xDC, 0x03, 0x5F, 0xFF, 0x9E, + 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, 0x03, 0x23, 0x01, 0x33, 0x13, + 0x03, 0x27, 0x33, 0x01, 0x01, 0xC6, 0xB5, 0xC1, 0x01, 0x38, 0x84, 0x92, + 0xB9, 0x44, 0x86, 0x01, 0x38, 0xFE, 0xF6, 0xFE, 0xE6, 0x01, 0xC2, 0xFE, + 0x3E, 0x01, 0x1A, 0xA8, 0xFE, 0x3E, 0x00, 0x02, 0x00, 0x3E, 0xFE, 0x0C, + 0x03, 0x3F, 0x02, 0x56, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x01, + 0x27, 0x01, 0x03, 0x01, 0x37, 0x01, 0x03, 0x3F, 0xFD, 0x8E, 0x8F, 0x02, + 0x73, 0x45, 0xFE, 0xEA, 0x7D, 0x01, 0x28, 0x02, 0x02, 0xFC, 0x0A, 0x54, + 0x03, 0xF6, 0xFB, 0xB6, 0x01, 0xB9, 0x6C, 0xFE, 0x28, 0x00, 0x01, 0x00, + 0x2F, 0x04, 0x9F, 0x06, 0x42, 0x06, 0x10, 0x00, 0x11, 0x00, 0x00, 0x41, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x06, 0x07, 0x27, 0x36, 0x36, 0x24, 0x33, + 0x32, 0x04, 0x16, 0x17, 0x05, 0xE0, 0x68, 0xDD, 0xE9, 0x7C, 0x7E, 0xE8, + 0xD1, 0x5F, 0x71, 0x50, 0xF5, 0x01, 0x27, 0x9B, 0xA7, 0x01, 0x30, 0xEF, + 0x46, 0x04, 0x9F, 0x3F, 0x52, 0x29, 0x28, 0x52, 0x3E, 0x54, 0x56, 0x7F, + 0x46, 0x46, 0x7F, 0x56, 0xFF, 0xFF, 0x00, 0x6D, 0x02, 0x37, 0x01, 0x88, + 0x03, 0x52, 0x06, 0x07, 0x05, 0xDC, 0x00, 0x00, 0x02, 0x47, 0xFF, 0xFF, + 0x00, 0x6D, 0xFF, 0xEF, 0x01, 0x88, 0x01, 0x0A, 0x06, 0x06, 0x05, 0xDC, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x42, 0x06, 0x1A, 0x03, 0xF3, 0x06, 0xD2, + 0x04, 0x07, 0x06, 0x05, 0x00, 0x42, 0x06, 0xD2, 0x00, 0x06, 0x00, 0x68, + 0x00, 0x73, 0x04, 0xF2, 0x04, 0xE9, 0x00, 0x03, 0x00, 0x07, 0x00, 0x13, + 0x00, 0x1F, 0x00, 0x2B, 0x00, 0x37, 0x00, 0x00, 0x65, 0x27, 0x01, 0x17, + 0x03, 0x01, 0x37, 0x01, 0x01, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x01, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x01, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x01, 0x71, 0x90, 0x03, 0x13, 0x90, 0x90, 0xFC, + 0xED, 0x90, 0x03, 0x13, 0xFB, 0xE4, 0x01, 0x45, 0x3E, 0x40, 0x45, 0x44, + 0x41, 0x3E, 0x45, 0x01, 0xC0, 0x44, 0x3F, 0x3F, 0x47, 0x47, 0x3E, 0x40, + 0x44, 0x44, 0x3F, 0x3F, 0x47, 0x47, 0x3E, 0x40, 0x44, 0x01, 0xBF, 0x01, + 0x47, 0x3F, 0x3F, 0x46, 0x46, 0x3F, 0x3F, 0x47, 0xD9, 0x90, 0x03, 0x1C, + 0x92, 0xFC, 0xE6, 0x03, 0x1A, 0x92, 0xFC, 0xE4, 0x01, 0x4A, 0x34, 0x47, + 0x47, 0x34, 0x33, 0x45, 0x45, 0xFE, 0x6D, 0x32, 0x47, 0x47, 0x33, 0x32, + 0x47, 0x47, 0x03, 0xB6, 0x33, 0x46, 0x46, 0x33, 0x33, 0x45, 0x46, 0xFE, + 0x75, 0x34, 0x47, 0x47, 0x34, 0x33, 0x45, 0x45, 0x00, 0x02, 0x00, 0x6D, + 0xFE, 0xCB, 0x01, 0xBA, 0x04, 0x05, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, + 0x41, 0x23, 0x03, 0x33, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x01, 0xBA, 0x99, 0x98, 0xDD, 0x6B, 0x3B, 0x53, + 0x53, 0x3B, 0x3B, 0x52, 0x52, 0xFE, 0xCB, 0x02, 0x0F, 0x02, 0x10, 0x52, + 0x3B, 0x3C, 0x52, 0x52, 0x3C, 0x3B, 0x52, 0x00, 0x01, 0x00, 0x2F, 0xFE, + 0x1C, 0x06, 0x42, 0xFF, 0x8C, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x24, + 0x26, 0x27, 0x37, 0x16, 0x04, 0x33, 0x32, 0x24, 0x37, 0x17, 0x06, 0x06, + 0x04, 0x03, 0x36, 0xC7, 0xFE, 0xDD, 0xD1, 0x4C, 0x71, 0x65, 0x01, 0x3F, + 0xF2, 0xF2, 0x01, 0x50, 0x68, 0x62, 0x3E, 0xD5, 0xFE, 0xCF, 0xFE, 0x1C, + 0x48, 0x80, 0x52, 0x56, 0x42, 0x5E, 0x62, 0x3E, 0x56, 0x4C, 0x81, 0x4D, + 0xFF, 0xFF, 0x00, 0x6B, 0xFF, 0x80, 0x03, 0x90, 0x02, 0xC6, 0x06, 0x07, + 0x06, 0x09, 0x00, 0x00, 0xFC, 0xF4, 0x00, 0x02, 0x00, 0x23, 0xFE, 0x1C, + 0x06, 0x36, 0x06, 0x12, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x36, + 0x04, 0x16, 0x17, 0x07, 0x26, 0x24, 0x23, 0x22, 0x04, 0x07, 0x27, 0x36, + 0x36, 0x24, 0x13, 0x22, 0x24, 0x26, 0x27, 0x37, 0x16, 0x04, 0x33, 0x32, + 0x24, 0x37, 0x17, 0x06, 0x06, 0x04, 0x03, 0x2A, 0xC8, 0x01, 0x30, 0xD5, + 0x3D, 0x61, 0x67, 0xFE, 0xB1, 0xF3, 0xF2, 0xFE, 0xC2, 0x66, 0x71, 0x4D, + 0xD0, 0x01, 0x22, 0xC9, 0xC7, 0xFE, 0xDD, 0xD1, 0x4D, 0x72, 0x65, 0x01, + 0x3F, 0xF2, 0xF2, 0x01, 0x50, 0x68, 0x61, 0x3D, 0xD5, 0xFE, 0xCF, 0x06, + 0x11, 0x01, 0x4E, 0x80, 0x4E, 0x55, 0x3E, 0x62, 0x5E, 0x42, 0x55, 0x53, + 0x80, 0x49, 0xF8, 0x0A, 0x48, 0x80, 0x52, 0x56, 0x42, 0x5E, 0x62, 0x3E, + 0x56, 0x4C, 0x81, 0x4D, 0xFF, 0xFF, 0x00, 0xD1, 0xFE, 0x8A, 0x03, 0xF7, + 0x05, 0xD2, 0x04, 0x26, 0x06, 0x09, 0x67, 0x00, 0x00, 0x07, 0x06, 0x09, + 0x00, 0x68, 0xFB, 0xFE, 0x00, 0x01, 0x00, 0x6C, 0x02, 0x03, 0x05, 0x4B, + 0x03, 0x88, 0x00, 0x17, 0x00, 0x00, 0x41, 0x17, 0x06, 0x06, 0x23, 0x22, + 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x27, 0x36, 0x36, 0x33, 0x32, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x04, 0xF0, 0x5B, 0x35, 0xA9, 0x6B, 0x53, 0x98, + 0x8E, 0x8A, 0x46, 0x50, 0x73, 0x37, 0x53, 0x40, 0xA6, 0x6A, 0x51, 0x95, + 0x8C, 0x88, 0x44, 0x45, 0x77, 0x03, 0x1E, 0x91, 0x2C, 0x5E, 0x3D, 0x50, + 0x3C, 0x33, 0x2A, 0x97, 0x2D, 0x55, 0x3C, 0x50, 0x3C, 0x34, 0x00, 0x01, + 0x00, 0x2F, 0xFE, 0x1C, 0x06, 0x42, 0xFF, 0x8C, 0x00, 0x10, 0x00, 0x00, + 0x45, 0x32, 0x04, 0x16, 0x17, 0x07, 0x26, 0x26, 0x24, 0x23, 0x22, 0x04, + 0x07, 0x27, 0x36, 0x36, 0x24, 0x03, 0x36, 0xC7, 0x01, 0x32, 0xD5, 0x3E, + 0x62, 0x44, 0xC4, 0xFF, 0x00, 0xA2, 0xF1, 0xFE, 0xC1, 0x66, 0x71, 0x4C, + 0xCF, 0x01, 0x23, 0x74, 0x4E, 0x80, 0x4D, 0x55, 0x28, 0x4A, 0x2F, 0x5D, + 0x43, 0x54, 0x52, 0x7F, 0x4A, 0x00, 0x04, 0x00, 0x87, 0x00, 0x57, 0x04, + 0x16, 0x03, 0xE2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, + 0x00, 0x41, 0x21, 0x35, 0x21, 0x03, 0x01, 0x37, 0x01, 0x01, 0x11, 0x23, + 0x13, 0x03, 0x27, 0x01, 0x17, 0x04, 0x16, 0xFC, 0x71, 0x03, 0x8F, 0xC2, + 0xFD, 0x7E, 0x78, 0x02, 0x82, 0xFE, 0xD8, 0xAC, 0x03, 0xB1, 0x78, 0x02, + 0x82, 0x78, 0x01, 0xC7, 0xA9, 0xFE, 0x29, 0x02, 0x88, 0x77, 0xFD, 0x79, + 0x02, 0xD1, 0xFC, 0x75, 0x03, 0x8B, 0xFC, 0xB7, 0x78, 0x02, 0x87, 0x77, + 0xFF, 0xFF, 0x00, 0xE7, 0xFE, 0x20, 0x02, 0xF1, 0x07, 0xB2, 0x04, 0x26, + 0x05, 0xAE, 0x00, 0x00, 0x00, 0x07, 0x05, 0xAE, 0x01, 0x4A, 0x00, 0x00, + 0xFF, 0xFF, 0x00, 0x34, 0x02, 0x02, 0x02, 0xC9, 0x02, 0xBC, 0x04, 0x06, + 0x05, 0xB1, 0xBC, 0x00, 0xFF, 0xFF, 0x00, 0x34, 0x02, 0x02, 0x02, 0xC9, + 0x02, 0xBC, 0x04, 0x06, 0x05, 0xB1, 0xBC, 0x00, 0x00, 0x02, 0xFF, 0xEE, + 0xFE, 0x60, 0x03, 0x93, 0x00, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0x03, 0x93, 0xFC, 0x5B, + 0x03, 0xA5, 0xFC, 0x5B, 0xFE, 0xFD, 0x9D, 0x9D, 0x01, 0x03, 0x9E, 0x9E, + 0x00, 0x03, 0x00, 0x40, 0x00, 0xD6, 0x03, 0x41, 0x05, 0xAD, 0x00, 0x04, + 0x00, 0x09, 0x00, 0x2C, 0x00, 0x00, 0x41, 0x13, 0x33, 0x01, 0x23, 0x03, + 0x13, 0x13, 0x23, 0x01, 0x01, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, + 0x37, 0x37, 0x33, 0x07, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x27, 0x27, 0x33, 0x17, 0x1E, 0x02, 0x15, 0x14, 0x06, + 0x06, 0x01, 0xC9, 0x9C, 0xDC, 0xFE, 0xDB, 0x88, 0x77, 0x9C, 0x35, 0x8A, + 0xFE, 0xDC, 0x01, 0x7B, 0x3F, 0x60, 0x36, 0x08, 0x10, 0x0D, 0x5C, 0xA8, + 0x35, 0x15, 0x20, 0x11, 0x11, 0x16, 0x17, 0x0F, 0x23, 0x1F, 0x32, 0xA7, + 0x58, 0x0C, 0x0F, 0x07, 0x35, 0x5F, 0x03, 0xB1, 0x01, 0xFC, 0xFC, 0xDF, + 0x03, 0x21, 0xFE, 0x04, 0xFE, 0xDB, 0x03, 0x21, 0xFB, 0x29, 0x2B, 0x53, + 0x3B, 0x10, 0x23, 0x2C, 0x1C, 0xD3, 0x7F, 0x35, 0x49, 0x31, 0x12, 0x15, + 0x1A, 0x1B, 0x14, 0x1D, 0x57, 0x50, 0x7C, 0xCC, 0x1B, 0x2F, 0x27, 0x11, + 0x3B, 0x53, 0x2B, 0x00, 0x01, 0x00, 0x65, 0x00, 0x00, 0x04, 0x95, 0x05, + 0x3E, 0x00, 0x13, 0x00, 0x00, 0x41, 0x03, 0x05, 0x07, 0x25, 0x03, 0x23, + 0x13, 0x25, 0x37, 0x05, 0x13, 0x25, 0x37, 0x05, 0x13, 0x33, 0x03, 0x05, + 0x07, 0x03, 0x26, 0xD1, 0x01, 0x26, 0x49, 0xFE, 0xDB, 0xB7, 0xB0, 0xE2, + 0xFE, 0xDD, 0x47, 0x01, 0x29, 0xCA, 0xFE, 0xDC, 0x4C, 0x01, 0x24, 0xBA, + 0xAD, 0xE6, 0x01, 0x29, 0x4C, 0x03, 0x28, 0xFE, 0x98, 0xAC, 0x80, 0xAC, + 0xFE, 0xC0, 0x01, 0x8E, 0xAC, 0x80, 0xAC, 0x01, 0x6A, 0xA8, 0x82, 0xAA, + 0x01, 0x46, 0xFE, 0x6A, 0xAA, 0x7E, 0xFF, 0xFF, 0x00, 0xAD, 0x03, 0x89, + 0x01, 0x97, 0x05, 0xD2, 0x04, 0x06, 0x05, 0xD9, 0x40, 0x00, 0x00, 0x01, + 0x00, 0x60, 0xFE, 0x58, 0x01, 0xAA, 0xFF, 0xB7, 0x00, 0x03, 0x00, 0x00, + 0x45, 0x03, 0x23, 0x13, 0x01, 0xAA, 0x74, 0xD6, 0xC6, 0x49, 0xFE, 0xA1, + 0x01, 0x5F, 0x00, 0x02, 0x00, 0x2F, 0xFF, 0xFA, 0x03, 0x51, 0x04, 0x40, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x77, 0x21, 0x32, 0x36, 0x36, 0x27, + 0x35, 0x34, 0x26, 0x26, 0x23, 0x21, 0x35, 0x21, 0x32, 0x16, 0x16, 0x15, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x21, 0x13, 0x35, 0x21, 0x15, 0x2F, 0x01, + 0x32, 0x66, 0x74, 0x30, 0x01, 0x2F, 0x72, 0x69, 0xFE, 0xCF, 0x01, 0x31, + 0xA8, 0xDD, 0x6C, 0x6C, 0xDC, 0xA8, 0xFE, 0xCE, 0xB2, 0x02, 0x12, 0xB5, + 0x5F, 0x9B, 0x5B, 0x26, 0x56, 0x9C, 0x63, 0xBB, 0x8E, 0xEF, 0x93, 0x26, + 0x92, 0xF0, 0x8E, 0x01, 0xCA, 0xB1, 0xB1, 0x00, 0x02, 0x00, 0x4B, 0x02, + 0x45, 0x03, 0x34, 0x05, 0x28, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, + 0x13, 0x13, 0x33, 0x01, 0x23, 0x01, 0x33, 0x13, 0x13, 0x01, 0x8A, 0x45, + 0xAA, 0xBB, 0xFE, 0xDC, 0x9F, 0xFE, 0xDA, 0xBD, 0xA7, 0x46, 0x02, 0x45, + 0x01, 0x22, 0x01, 0xC1, 0xFD, 0x1D, 0x02, 0xE3, 0xFE, 0x3F, 0xFE, 0xDE, + 0x00, 0x02, 0x00, 0x64, 0x02, 0x50, 0x03, 0x4E, 0x05, 0x34, 0x00, 0x04, + 0x00, 0x09, 0x00, 0x00, 0x53, 0x35, 0x01, 0x15, 0x05, 0x01, 0x01, 0x35, + 0x05, 0x05, 0x64, 0x02, 0xEA, 0xFE, 0x3B, 0x01, 0xC5, 0xFD, 0x16, 0x01, + 0x25, 0x01, 0xC5, 0x03, 0x8D, 0x84, 0x01, 0x23, 0xBC, 0xA8, 0xFE, 0x80, + 0x01, 0x24, 0x84, 0x48, 0xA5, 0x00, 0x02, 0x00, 0x64, 0x02, 0x50, 0x03, + 0x4E, 0x05, 0x34, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, 0x25, 0x25, + 0x35, 0x01, 0x01, 0x35, 0x25, 0x25, 0x15, 0x03, 0x4E, 0xFE, 0xDC, 0xFE, + 0x3A, 0x02, 0xEA, 0xFD, 0x16, 0x01, 0xC6, 0x01, 0x24, 0x03, 0x8D, 0x43, + 0xA8, 0xBC, 0xFE, 0xDD, 0xFE, 0x3F, 0xBB, 0xA5, 0x48, 0x84, 0x00, 0x02, + 0x00, 0x4B, 0x02, 0x45, 0x03, 0x34, 0x05, 0x28, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x00, 0x41, 0x03, 0x03, 0x33, 0x01, 0x21, 0x01, 0x33, 0x03, 0x03, + 0x02, 0x79, 0xAA, 0x45, 0x86, 0x01, 0x24, 0xFD, 0x17, 0x01, 0x26, 0x84, + 0x46, 0xA7, 0x02, 0x45, 0x01, 0xC1, 0x01, 0x22, 0xFD, 0x1D, 0x02, 0xE3, + 0xFE, 0xDE, 0xFE, 0x3F, 0x00, 0x02, 0x00, 0x88, 0x00, 0xA6, 0x02, 0x3C, + 0x02, 0x27, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, + 0x05, 0x11, 0x33, 0x11, 0x88, 0x01, 0xB4, 0xFE, 0xD3, 0xA7, 0x01, 0x8E, + 0x99, 0x99, 0xE8, 0x01, 0x81, 0xFE, 0x7F, 0x00, 0x02, 0x00, 0x5D, 0xFD, + 0xDE, 0x02, 0x66, 0xFF, 0xB8, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, + 0x03, 0x33, 0x13, 0x17, 0x23, 0x37, 0x13, 0x33, 0x03, 0x01, 0x2B, 0xCE, + 0x83, 0x77, 0x31, 0x49, 0x30, 0x74, 0x83, 0xCB, 0xFD, 0xDE, 0x01, 0xDA, + 0xFE, 0xE0, 0xBA, 0xBA, 0x01, 0x20, 0xFE, 0x26, 0x00, 0x01, 0x00, 0x2F, + 0x01, 0x16, 0x02, 0x0A, 0x01, 0xB1, 0x00, 0x03, 0x00, 0x00, 0x53, 0x21, + 0x15, 0x21, 0x2F, 0x01, 0xDB, 0xFE, 0x25, 0x01, 0xB1, 0x9B, 0x00, 0x02, + 0x00, 0x88, 0x00, 0x87, 0x02, 0x3C, 0x02, 0x3F, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x07, 0x21, 0x15, 0x21, 0x01, 0xB6, + 0xA7, 0x87, 0x01, 0xB4, 0xFE, 0x4C, 0x02, 0x3F, 0xFE, 0x48, 0x01, 0xB8, + 0x8E, 0x9B, 0xFF, 0xFF, 0x00, 0x6D, 0x01, 0xCF, 0x01, 0x88, 0x05, 0xE5, + 0x06, 0x27, 0x05, 0xDC, 0x00, 0x00, 0x01, 0xE0, 0x00, 0x07, 0x05, 0xDC, + 0x00, 0x00, 0x04, 0xDA, 0xFF, 0xFF, 0x00, 0x37, 0x04, 0x56, 0x01, 0x07, + 0x05, 0xE5, 0x06, 0x06, 0x0B, 0x33, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x42, + 0x02, 0x4D, 0x01, 0x3C, 0x04, 0x29, 0x04, 0x07, 0x0A, 0xAB, 0x00, 0x00, + 0xFD, 0xCB, 0x00, 0x01, 0x00, 0x80, 0xFE, 0x5D, 0x03, 0x32, 0xFF, 0x7D, + 0x00, 0x08, 0x00, 0x00, 0x45, 0x17, 0x37, 0x33, 0x15, 0x01, 0x23, 0x01, + 0x35, 0x01, 0x44, 0x94, 0x95, 0xC5, 0xFE, 0xED, 0x8F, 0xFE, 0xF0, 0x83, + 0x9D, 0x9D, 0x09, 0xFE, 0xE9, 0x01, 0x17, 0x09, 0x00, 0x02, 0x00, 0x73, + 0x04, 0x8C, 0x03, 0x10, 0x06, 0x0C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x15, 0x21, 0x35, 0x05, 0x15, 0x21, 0x35, 0x03, 0x10, 0xFD, 0x63, + 0x02, 0x9D, 0xFD, 0x63, 0x06, 0x0C, 0x93, 0x93, 0xEB, 0x95, 0x95, 0x00, + 0x02, 0x00, 0x5D, 0xFD, 0xDE, 0x02, 0x66, 0xFF, 0xB8, 0x00, 0x04, 0x00, + 0x09, 0x00, 0x00, 0x53, 0x13, 0x33, 0x07, 0x03, 0x21, 0x03, 0x27, 0x33, + 0x13, 0x5D, 0xCE, 0x5D, 0x31, 0x77, 0x01, 0x03, 0x74, 0x30, 0x5C, 0xCB, + 0xFD, 0xDE, 0x01, 0xDA, 0xBA, 0xFE, 0xE0, 0x01, 0x20, 0xBA, 0xFE, 0x26, + 0x00, 0x02, 0x00, 0x5E, 0xFD, 0xDC, 0x02, 0x68, 0xFF, 0xBB, 0x00, 0x04, + 0x00, 0x09, 0x00, 0x00, 0x53, 0x35, 0x25, 0x15, 0x05, 0x05, 0x25, 0x35, + 0x17, 0x05, 0x5E, 0x02, 0x0A, 0xFE, 0xC2, 0x01, 0x3E, 0xFD, 0xF6, 0xCC, + 0x01, 0x3E, 0xFE, 0xA8, 0x57, 0xBC, 0x79, 0x6E, 0xF8, 0xBD, 0x54, 0x2D, + 0x6B, 0x00, 0x02, 0x00, 0x5E, 0xFD, 0xDC, 0x02, 0x68, 0xFF, 0xBB, 0x00, + 0x04, 0x00, 0x09, 0x00, 0x00, 0x41, 0x27, 0x25, 0x35, 0x05, 0x01, 0x35, + 0x25, 0x37, 0x15, 0x02, 0x68, 0xCD, 0xFE, 0xC3, 0x02, 0x0A, 0xFD, 0xF6, + 0x01, 0x3D, 0xCD, 0xFE, 0xA8, 0x2C, 0x6E, 0x79, 0xBC, 0xFE, 0xDD, 0x79, + 0x6B, 0x2D, 0x54, 0x00, 0x02, 0x00, 0x41, 0xFD, 0xE2, 0x02, 0x2E, 0xFF, + 0xAF, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, + 0x38, 0x45, 0x70, 0x42, 0x42, 0x70, 0x45, 0x44, 0x70, 0x42, 0x42, 0x6F, + 0x45, 0x2E, 0x40, 0x40, 0x2E, 0x2E, 0x41, 0x41, 0xFD, 0xE2, 0x3E, 0x68, + 0x41, 0x40, 0x69, 0x3D, 0x3E, 0x68, 0x40, 0x41, 0x68, 0x3E, 0x7A, 0x40, + 0x2D, 0x2D, 0x3F, 0x3F, 0x2D, 0x2D, 0x40, 0xFF, 0xFF, 0x00, 0xA3, 0x00, + 0xBB, 0x02, 0x19, 0x01, 0xEA, 0x04, 0x07, 0x06, 0xE9, 0x00, 0x4B, 0xFC, + 0x05, 0xFF, 0xFF, 0x00, 0xAF, 0x04, 0xB6, 0x03, 0x75, 0x05, 0xE4, 0x04, + 0x06, 0x06, 0xEA, 0x57, 0x00, 0xFF, 0xFF, 0x00, 0xAF, 0x04, 0xB6, 0x03, + 0x75, 0x05, 0xE4, 0x04, 0x06, 0x0A, 0xF4, 0x46, 0x00, 0x00, 0x01, 0x00, + 0x50, 0xFE, 0x4D, 0x03, 0x30, 0xFF, 0x64, 0x00, 0x19, 0x00, 0x00, 0x45, + 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, + 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x02, + 0x9E, 0x92, 0x3B, 0x65, 0x3F, 0x32, 0x45, 0x36, 0x3B, 0x29, 0x27, 0x35, + 0x94, 0x3B, 0x66, 0x40, 0x29, 0x42, 0x3D, 0x40, 0x26, 0x28, 0x38, 0x9C, + 0x0C, 0x4B, 0x71, 0x40, 0x1B, 0x23, 0x1B, 0x3B, 0x2D, 0x07, 0x4A, 0x74, + 0x43, 0x1B, 0x23, 0x1C, 0x3B, 0x00, 0x02, 0x00, 0x52, 0x04, 0x79, 0x01, + 0xE9, 0x06, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x11, 0x33, + 0x11, 0x27, 0x35, 0x21, 0x15, 0x52, 0xA3, 0xA3, 0x01, 0x97, 0x04, 0x79, + 0x01, 0x87, 0xFE, 0x79, 0xEE, 0x99, 0x99, 0x00, 0x02, 0x00, 0x52, 0x04, + 0x79, 0x01, 0xE9, 0x06, 0x00, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, + 0x11, 0x33, 0x11, 0x25, 0x35, 0x21, 0x15, 0x01, 0x43, 0xA6, 0xFE, 0x69, + 0x01, 0x97, 0x04, 0x79, 0x01, 0x87, 0xFE, 0x79, 0xEE, 0x99, 0x99, 0x00, + 0x02, 0x00, 0x52, 0xFE, 0x28, 0x01, 0xE9, 0xFF, 0xB1, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x53, 0x11, 0x33, 0x11, 0x23, 0x35, 0x21, 0x15, 0x52, + 0xA3, 0xA3, 0x01, 0x97, 0xFE, 0x28, 0x01, 0x89, 0xFE, 0x77, 0x99, 0x99, + 0x00, 0x02, 0x00, 0x52, 0xFE, 0x28, 0x01, 0xE9, 0xFF, 0xB1, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x21, 0x35, 0x21, 0x15, + 0x01, 0x43, 0xA6, 0xFE, 0x69, 0x01, 0x97, 0xFE, 0x28, 0x01, 0x89, 0xFE, + 0x77, 0x99, 0x99, 0x00, 0x03, 0x00, 0x64, 0xFE, 0x3B, 0x03, 0x1D, 0xFF, + 0xA5, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x37, 0x11, 0x23, 0x11, 0x21, 0x11, 0x23, 0x11, 0x02, 0x87, 0xFE, + 0x64, 0x1D, 0xA4, 0x02, 0xB9, 0xA6, 0xFE, 0xC7, 0x8C, 0x8C, 0xDE, 0xFE, + 0x96, 0x01, 0x6A, 0xFE, 0x96, 0x01, 0x6A, 0x00, 0x02, 0x00, 0x6F, 0xFE, + 0x28, 0x03, 0x12, 0xFF, 0xB1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x37, 0x11, 0x23, 0x11, 0x03, 0x12, 0xFD, 0xE4, 0x1E, + 0xA5, 0xFE, 0xB5, 0x8D, 0x8D, 0xFC, 0xFE, 0x77, 0x01, 0x89, 0x00, 0x03, + 0x00, 0x51, 0xFE, 0x4C, 0x03, 0x5F, 0x00, 0xA8, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x0B, 0x00, 0x00, 0x45, 0x15, 0x21, 0x35, 0x37, 0x33, 0x01, 0x27, + 0x01, 0x23, 0x01, 0x37, 0x03, 0x5F, 0xFD, 0x71, 0xB4, 0xBF, 0xFE, 0x7F, + 0x71, 0x01, 0xF2, 0xBF, 0xFE, 0xCD, 0x77, 0x3D, 0x90, 0x90, 0xE5, 0xFE, + 0x84, 0x4E, 0xFE, 0xD2, 0x01, 0x2E, 0x48, 0x00, 0x02, 0x00, 0x88, 0x00, + 0xA6, 0x02, 0x3C, 0x02, 0x13, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x77, + 0x35, 0x21, 0x15, 0x21, 0x11, 0x33, 0x11, 0x88, 0x01, 0xB4, 0xFE, 0xD3, + 0xA7, 0xA6, 0x9A, 0x9A, 0x01, 0x6D, 0xFE, 0x93, 0x00, 0x02, 0x00, 0x67, + 0x00, 0x00, 0x02, 0x5D, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x11, 0x23, 0x11, 0x33, 0x15, 0x21, 0x35, 0x02, 0x5D, 0xE9, 0xBA, + 0xFE, 0x39, 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xBB, 0xBB, 0x00, 0x02, + 0x00, 0x67, 0x00, 0x00, 0x02, 0x5D, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x15, 0x21, 0x35, 0x02, 0x5D, + 0xE9, 0xBA, 0xFE, 0x39, 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xFB, 0x09, + 0xBB, 0xBB, 0x00, 0x02, 0x00, 0x67, 0x00, 0x00, 0x02, 0x5D, 0x05, 0xB2, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x15, + 0x21, 0x35, 0x02, 0x5D, 0xE9, 0xBA, 0xFE, 0x39, 0x05, 0xB2, 0xFA, 0x4E, + 0x05, 0xB2, 0xFE, 0xEF, 0xBB, 0xBB, 0x00, 0x02, 0x00, 0x67, 0x00, 0x00, + 0x02, 0x5D, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, + 0x23, 0x11, 0x13, 0x15, 0x21, 0x35, 0x02, 0x5D, 0xE9, 0xBA, 0xFE, 0x39, + 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xFC, 0x19, 0xBA, 0xBA, 0x00, 0x02, + 0x00, 0x67, 0x00, 0x00, 0x02, 0x5D, 0x05, 0xB2, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x15, 0x21, 0x35, 0x02, 0x5D, + 0xE9, 0xBA, 0xFE, 0x39, 0x05, 0xB2, 0xFA, 0x4E, 0x05, 0xB2, 0xFD, 0x83, + 0xBA, 0xBA, 0x00, 0x02, 0x00, 0x61, 0x04, 0x83, 0x02, 0x62, 0x06, 0x8A, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x53, 0x27, 0x01, 0x17, 0x03, 0x01, + 0x37, 0x01, 0xCE, 0x6D, 0x01, 0x96, 0x6B, 0x6D, 0xFE, 0x6F, 0x6B, 0x01, + 0x92, 0x04, 0x85, 0x6D, 0x01, 0x95, 0x6B, 0xFE, 0x67, 0x01, 0x99, 0x6E, + 0xFE, 0x67, 0x00, 0x01, 0xFF, 0xD5, 0x01, 0x53, 0x02, 0x3B, 0x03, 0x19, + 0x00, 0x11, 0x00, 0x00, 0x43, 0x27, 0x25, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x27, 0x27, 0x04, 0x01, + 0x7D, 0x0E, 0x16, 0x33, 0x38, 0x0B, 0x21, 0x0A, 0x24, 0x1E, 0x46, 0x24, + 0x4F, 0x5C, 0x35, 0x13, 0x02, 0x22, 0xAB, 0x4C, 0x58, 0x75, 0x3C, 0x07, + 0x03, 0xA9, 0x0F, 0x0F, 0x48, 0x74, 0x42, 0x00, 0x02, 0x00, 0x5C, 0x02, + 0x8C, 0x03, 0x24, 0x05, 0xBA, 0x00, 0x18, 0x00, 0x1C, 0x00, 0x00, 0x41, + 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x23, + 0x2E, 0x02, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x01, + 0x23, 0x35, 0x33, 0x02, 0x63, 0x05, 0x54, 0x45, 0x57, 0x4F, 0x48, 0x5C, + 0x2F, 0x3B, 0x64, 0x9D, 0x5A, 0x5E, 0xA2, 0x67, 0x63, 0xA0, 0x5E, 0xFE, + 0xFA, 0xC2, 0xC2, 0x04, 0x8F, 0x3B, 0x4C, 0x6D, 0x5B, 0x5A, 0x6A, 0x9C, + 0x01, 0x52, 0x9D, 0x70, 0x75, 0xA2, 0x55, 0x4A, 0x86, 0x5B, 0xFD, 0xFD, + 0xFE, 0x00, 0x01, 0x00, 0x11, 0x00, 0x00, 0x03, 0x53, 0x05, 0xEA, 0x00, + 0x22, 0x00, 0x00, 0x61, 0x22, 0x26, 0x35, 0x11, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x02, 0x06, 0x04, 0x23, 0x35, 0x32, 0x3E, 0x02, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, 0x14, 0x16, 0x33, 0x33, + 0x15, 0x02, 0x7F, 0xD8, 0xD1, 0xAE, 0x99, 0x61, 0x8A, 0x4B, 0x77, 0xDD, + 0xFE, 0xCE, 0xBC, 0x95, 0xEA, 0xA2, 0x53, 0x30, 0x35, 0x3C, 0x39, 0x5C, + 0x78, 0x61, 0xBF, 0xC5, 0x02, 0xD2, 0xBF, 0xD5, 0x56, 0xA1, 0x72, 0x9E, + 0xFE, 0xFD, 0xBB, 0x66, 0x9B, 0x52, 0x95, 0xCC, 0x79, 0x55, 0x4D, 0x5E, + 0x65, 0xFD, 0x1F, 0x77, 0x5C, 0xB1, 0x00, 0x01, 0x00, 0x7E, 0xFE, 0xBA, + 0x05, 0x36, 0x00, 0x8C, 0x00, 0x07, 0x00, 0x00, 0x53, 0x11, 0x33, 0x11, + 0x21, 0x11, 0x33, 0x11, 0x7E, 0xC2, 0x03, 0x35, 0xC1, 0xFE, 0xBA, 0x01, + 0xD2, 0xFE, 0xE5, 0x01, 0x1B, 0xFE, 0x2E, 0x00, 0x05, 0x00, 0x77, 0xFF, + 0xFE, 0x05, 0x3E, 0x06, 0x00, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x21, 0x00, + 0x25, 0x00, 0x29, 0x00, 0x00, 0x41, 0x15, 0x22, 0x26, 0x26, 0x35, 0x35, + 0x3E, 0x02, 0x33, 0x32, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x01, 0x15, 0x21, 0x35, 0x13, 0x11, + 0x23, 0x11, 0x01, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0x02, 0x3F, + 0x83, 0xCE, 0x77, 0x01, 0x76, 0xCE, 0x83, 0xC2, 0xE7, 0x0F, 0xDA, 0x0D, + 0x6B, 0x66, 0x47, 0x6C, 0x3C, 0x3D, 0x6C, 0x03, 0x45, 0xFD, 0x99, 0x3F, + 0xD7, 0x02, 0xAE, 0xFD, 0xEA, 0x02, 0x67, 0xFD, 0x99, 0x02, 0x6E, 0xAB, + 0x76, 0xD2, 0x89, 0x9C, 0x8A, 0xD1, 0x75, 0xBE, 0xC1, 0x6E, 0x67, 0x4D, + 0x83, 0x53, 0x9F, 0x53, 0x86, 0x4D, 0xFE, 0x3D, 0xAD, 0xAD, 0x03, 0x61, + 0xFB, 0xF2, 0x04, 0x0E, 0xFE, 0x63, 0xAC, 0xAC, 0x01, 0x9D, 0xAD, 0xAD, + 0x00, 0x03, 0x00, 0x56, 0x00, 0x00, 0x05, 0x11, 0x05, 0xD2, 0x00, 0x0F, + 0x00, 0x1F, 0x00, 0x23, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x01, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, + 0x06, 0x06, 0x05, 0x01, 0x33, 0x01, 0x01, 0x10, 0x30, 0x4F, 0x2F, 0x2F, + 0x4F, 0x30, 0x30, 0x50, 0x2F, 0x2F, 0x50, 0x03, 0x17, 0x30, 0x50, 0x2F, + 0x2F, 0x50, 0x30, 0x30, 0x4F, 0x2F, 0x2F, 0x4F, 0xFB, 0xCF, 0x04, 0x00, + 0xBB, 0xFC, 0x00, 0x03, 0xBD, 0x2F, 0x50, 0x30, 0x30, 0x4F, 0x2F, 0x2F, + 0x4F, 0x30, 0x30, 0x50, 0x2F, 0xFC, 0xFF, 0x2F, 0x50, 0x30, 0x30, 0x4F, + 0x2F, 0x2F, 0x4F, 0x30, 0x30, 0x50, 0x2F, 0xBC, 0x05, 0xD2, 0xFA, 0x2E, + 0x00, 0x02, 0xFC, 0xA3, 0x04, 0xA8, 0xFE, 0x98, 0x06, 0xE1, 0x00, 0x15, + 0x00, 0x2B, 0x00, 0x00, 0x41, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x06, 0x16, 0x17, 0x23, + 0x26, 0x26, 0x37, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0xFD, 0xF7, 0x29, 0x2A, 0x2B, 0x30, 0x88, 0x01, 0x80, 0x67, 0x61, 0x7E, + 0x01, 0x08, 0x0B, 0x8E, 0x08, 0x0B, 0x0F, 0x69, 0x34, 0x39, 0x29, 0x27, + 0x2E, 0x4F, 0x13, 0x11, 0x57, 0x4C, 0x54, 0x65, 0x82, 0x78, 0x05, 0x29, + 0xF3, 0x29, 0x2C, 0x23, 0x1F, 0x07, 0x48, 0x63, 0x66, 0x62, 0xE3, 0x22, + 0x42, 0x20, 0x19, 0x3D, 0xF0, 0x56, 0x30, 0x1F, 0x1D, 0x20, 0x35, 0x18, + 0x51, 0x23, 0x47, 0x5A, 0x4C, 0x50, 0x5A, 0x00, 0x01, 0xFC, 0xA1, 0x04, + 0xA2, 0xFE, 0x97, 0x06, 0xE0, 0x00, 0x21, 0x00, 0x00, 0x41, 0x2E, 0x02, + 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x21, 0x35, + 0x21, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x06, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFD, 0xB1, 0x56, 0x7A, 0x40, 0x43, + 0x74, 0x48, 0x7A, 0x7D, 0xFE, 0x50, 0x01, 0x28, 0x33, 0x3C, 0x3A, 0x38, + 0x01, 0x49, 0x42, 0x33, 0x41, 0x16, 0x48, 0x19, 0x68, 0x04, 0xA2, 0x01, + 0x46, 0x7A, 0x4C, 0x13, 0x5A, 0x80, 0x44, 0x9B, 0x76, 0x35, 0x5B, 0x08, + 0x31, 0x40, 0x5B, 0x51, 0x13, 0x49, 0x51, 0x22, 0x1F, 0x4B, 0x22, 0x46, + 0x00, 0x02, 0xFD, 0x52, 0x04, 0xB2, 0xFD, 0xF3, 0x07, 0xAB, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x27, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xFD, 0xEB, 0x8D, 0x0C, + 0x2B, 0x27, 0x25, 0x2A, 0x2A, 0x27, 0x26, 0x2A, 0x06, 0xDA, 0xFD, 0xD8, + 0x02, 0x28, 0x87, 0x1F, 0x2B, 0x2B, 0x1F, 0x1F, 0x2B, 0x2B, 0x00, 0x02, + 0xFC, 0x96, 0x04, 0xA2, 0xFE, 0xA8, 0x06, 0xE0, 0x00, 0x0D, 0x00, 0x1B, + 0x00, 0x00, 0x41, 0x26, 0x26, 0x35, 0x35, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0xFD, 0x9F, 0x77, 0x92, 0x01, 0x91, + 0x77, 0x7B, 0x8E, 0x8E, 0x7B, 0x42, 0x3B, 0x3B, 0x42, 0x41, 0x3B, 0x3B, + 0x04, 0xA2, 0x01, 0x9A, 0x7D, 0x0C, 0x7E, 0x9C, 0x9D, 0x7D, 0x0C, 0x7A, + 0x9D, 0x72, 0x5B, 0x4A, 0x0C, 0x4B, 0x5D, 0x5D, 0x4B, 0x0C, 0x4A, 0x5B, + 0x00, 0x02, 0xFC, 0xAB, 0x04, 0xA8, 0xFE, 0x8A, 0x06, 0xDA, 0x00, 0x04, + 0x00, 0x14, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x23, 0x03, 0x37, 0x16, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, + 0x36, 0xFD, 0xFC, 0x8E, 0x71, 0x0B, 0x30, 0x01, 0x67, 0x70, 0x57, 0x66, + 0x8C, 0x2D, 0x2E, 0x43, 0x39, 0x05, 0x33, 0x01, 0xA7, 0xFD, 0xD8, 0x01, + 0x00, 0x02, 0x75, 0x97, 0x6D, 0x7A, 0x01, 0x4B, 0xFE, 0xB5, 0x3C, 0x3A, + 0x52, 0x00, 0x01, 0xFC, 0x9E, 0x04, 0xA2, 0xFE, 0x8D, 0x06, 0xE0, 0x00, + 0x1E, 0x00, 0x00, 0x41, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x1E, + 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0xFD, 0xA2, 0x59, 0x74, + 0x37, 0x7F, 0x85, 0x6F, 0x79, 0x03, 0x86, 0x01, 0x32, 0x33, 0x29, 0x35, + 0x19, 0x01, 0x18, 0x34, 0x2A, 0x2D, 0x34, 0x05, 0x86, 0x03, 0x87, 0x04, + 0xA2, 0x01, 0x4D, 0x7E, 0x4B, 0x12, 0x71, 0xA4, 0x79, 0x55, 0x21, 0x3B, + 0x2D, 0x4A, 0x2C, 0x12, 0x2D, 0x4B, 0x2C, 0x2C, 0x22, 0x4F, 0x71, 0x00, + 0x03, 0xFC, 0x93, 0x04, 0xA3, 0xFE, 0x95, 0x07, 0xC8, 0x00, 0x04, 0x00, + 0x13, 0x00, 0x21, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x23, 0x07, 0x26, + 0x26, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x15, 0x0E, 0x02, + 0x27, 0x32, 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, + 0x16, 0x16, 0xFE, 0x07, 0x8E, 0x7A, 0xA7, 0x67, 0x7A, 0x78, 0x69, 0x6C, + 0x68, 0x0A, 0x06, 0x32, 0x5E, 0x28, 0x35, 0x41, 0x0D, 0x09, 0x44, 0x36, + 0x39, 0x3D, 0x01, 0x3B, 0x05, 0x1E, 0x02, 0xAA, 0xFC, 0xEA, 0x0F, 0x01, + 0x9F, 0x78, 0x0B, 0x7E, 0x9C, 0x8A, 0x77, 0x3B, 0x4E, 0x73, 0x3F, 0x72, + 0x40, 0x3A, 0x60, 0x3D, 0x42, 0x5E, 0x4B, 0x0B, 0x4A, 0x5B, 0x00, 0x02, + 0xFC, 0xAB, 0x04, 0xB2, 0xFE, 0x8A, 0x07, 0xC8, 0x00, 0x03, 0x00, 0x13, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x13, 0x23, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0xFD, 0x37, + 0x8C, 0x79, 0x2D, 0x67, 0x6C, 0x58, 0x68, 0x8E, 0x29, 0x32, 0x45, 0x37, + 0x07, 0xC8, 0xFC, 0xEA, 0x03, 0x16, 0xFE, 0x0C, 0x74, 0x98, 0x70, 0x7F, + 0xFE, 0xC1, 0x01, 0x3F, 0x3C, 0x40, 0x54, 0x00, 0x03, 0xFC, 0x03, 0x04, + 0xB2, 0xFF, 0x33, 0x06, 0xE0, 0x00, 0x04, 0x00, 0x14, 0x00, 0x24, 0x00, + 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x13, 0x23, 0x26, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0x05, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x36, 0x26, 0x23, + 0x22, 0x06, 0xFC, 0x91, 0x8E, 0x6D, 0x0F, 0x31, 0x01, 0x66, 0x6E, 0x59, + 0x67, 0x8C, 0x2C, 0x2E, 0x43, 0x39, 0x01, 0x52, 0x32, 0x01, 0x64, 0x70, + 0x58, 0x67, 0x8F, 0x01, 0x2A, 0x2E, 0x44, 0x39, 0x06, 0x59, 0xFE, 0x59, + 0x02, 0x28, 0xFE, 0xFA, 0x74, 0x98, 0x6E, 0x7B, 0xFE, 0xBB, 0x01, 0x45, + 0x3D, 0x39, 0x51, 0x48, 0x72, 0x9A, 0x6F, 0x7C, 0xFE, 0xBD, 0x01, 0x45, + 0x3C, 0x3A, 0x52, 0x00, 0x02, 0xFD, 0x1A, 0x04, 0xB2, 0xFE, 0x51, 0x06, + 0xE0, 0x00, 0x04, 0x00, 0x11, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, + 0x33, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x33, + 0x32, 0xFD, 0xA8, 0x8E, 0x70, 0xC7, 0x0D, 0x22, 0x10, 0x3C, 0x3D, 0x34, + 0x60, 0x5E, 0x1B, 0x06, 0x59, 0xFE, 0x59, 0x02, 0x28, 0x86, 0x08, 0x08, + 0x4B, 0x45, 0x72, 0x9A, 0x00, 0x02, 0x00, 0x28, 0x04, 0xAD, 0x01, 0x78, + 0x07, 0x66, 0x00, 0x03, 0x00, 0x12, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, + 0x37, 0x33, 0x11, 0x14, 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, + 0x22, 0x26, 0x35, 0x01, 0x78, 0xFE, 0xB0, 0x5E, 0x8F, 0x31, 0x0D, 0x1A, + 0x05, 0x09, 0x2A, 0x1E, 0x53, 0x48, 0x06, 0xE0, 0x6F, 0x6F, 0x86, 0xFE, + 0x05, 0x4B, 0x03, 0x02, 0x70, 0x03, 0x05, 0x61, 0x58, 0x00, 0x02, 0xFC, + 0x99, 0x04, 0xB2, 0xFE, 0xA1, 0x06, 0xDB, 0x00, 0x04, 0x00, 0x09, 0x00, + 0x00, 0x41, 0x37, 0x13, 0x33, 0x03, 0x23, 0x03, 0x33, 0x13, 0x17, 0xFD, + 0x7F, 0x27, 0x61, 0x9A, 0xC3, 0x82, 0xC3, 0x96, 0x66, 0x24, 0x04, 0xB2, + 0xCF, 0x01, 0x5A, 0xFD, 0xD7, 0x02, 0x29, 0xFE, 0xA6, 0xCF, 0x00, 0x01, + 0xFC, 0xBF, 0x04, 0xB2, 0xFE, 0xCB, 0x06, 0xDB, 0x00, 0x0B, 0x00, 0x00, + 0x41, 0x17, 0x37, 0x33, 0x03, 0x13, 0x23, 0x27, 0x07, 0x23, 0x13, 0x03, + 0xFD, 0x67, 0x5D, 0x5E, 0xA4, 0xA7, 0xAC, 0xA2, 0x64, 0x64, 0xA2, 0xAC, + 0xA7, 0x06, 0xDB, 0xA6, 0xA6, 0xFE, 0xEF, 0xFE, 0xE8, 0xAB, 0xAB, 0x01, + 0x18, 0x01, 0x11, 0x00, 0x02, 0xFD, 0x18, 0xFD, 0xDA, 0xFE, 0x4D, 0xFF, + 0x86, 0x00, 0x04, 0x00, 0x12, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, + 0x37, 0x15, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x16, 0xFD, 0xA5, 0x8D, 0x6F, 0xC6, 0x0E, 0x1F, 0x10, 0x3B, 0x3D, + 0x36, 0x01, 0x5E, 0x5F, 0x0E, 0x19, 0xFE, 0xFF, 0xFE, 0xDB, 0x01, 0xA6, + 0x02, 0x86, 0x08, 0x07, 0x48, 0x49, 0x74, 0x98, 0x01, 0x00, 0x02, 0xFC, + 0x0A, 0x04, 0xA8, 0xFF, 0x07, 0x05, 0x6D, 0x00, 0x0E, 0x00, 0x1D, 0x00, + 0x00, 0x41, 0x33, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x25, 0x33, 0x16, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0xFD, 0x3F, 0x77, 0x01, 0x67, + 0x62, 0x43, 0x67, 0x38, 0x88, 0x31, 0x29, 0x28, 0x2C, 0x01, 0x36, 0x8F, + 0x02, 0x7F, 0x64, 0x42, 0x61, 0x33, 0x74, 0x01, 0x37, 0x2A, 0x2C, 0x27, + 0x05, 0x6D, 0x63, 0x62, 0x32, 0x59, 0x3A, 0x27, 0x2E, 0x29, 0x2C, 0x63, + 0x62, 0x32, 0x59, 0x3A, 0x27, 0x2E, 0x2A, 0x00, 0x03, 0xFB, 0xE9, 0x04, + 0xA2, 0xFF, 0x32, 0x06, 0xE1, 0x00, 0x0F, 0x00, 0x25, 0x00, 0x47, 0x00, + 0x00, 0x41, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x26, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x15, 0x27, 0x17, 0x23, 0x22, 0x06, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x01, 0x2E, 0x02, 0x35, 0x35, 0x3E, 0x02, 0x33, 0x32, + 0x16, 0x15, 0x15, 0x21, 0x35, 0x21, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0xFD, + 0x3D, 0x28, 0x2B, 0x2B, 0x30, 0x88, 0x01, 0x80, 0x67, 0x61, 0x7D, 0x7F, + 0x01, 0x6A, 0x34, 0x39, 0x2A, 0x27, 0x2B, 0x52, 0x09, 0x18, 0x15, 0x62, + 0x4C, 0x54, 0x65, 0x82, 0x77, 0x01, 0x6A, 0x55, 0x79, 0x40, 0x01, 0x42, + 0x74, 0x49, 0x7B, 0x79, 0xFE, 0x51, 0x01, 0x27, 0x31, 0x3C, 0x3C, 0x36, + 0x48, 0x40, 0x2C, 0x47, 0x18, 0x49, 0x1B, 0x6E, 0x05, 0xBD, 0x5D, 0x2A, + 0x2D, 0x23, 0x1F, 0x07, 0x48, 0x63, 0x66, 0x62, 0x4F, 0x2E, 0x56, 0x30, + 0x1F, 0x1D, 0x20, 0x32, 0x26, 0x4A, 0x31, 0x4B, 0x5A, 0x4C, 0x50, 0x5A, + 0xFE, 0xAA, 0x01, 0x45, 0x7A, 0x4D, 0x13, 0x5A, 0x80, 0x44, 0x9B, 0x76, + 0x35, 0x5B, 0x08, 0x31, 0x40, 0x5D, 0x4F, 0x13, 0x4A, 0x50, 0x1E, 0x23, + 0x4B, 0x27, 0x41, 0x00, 0x04, 0xFB, 0xE4, 0x04, 0xA2, 0xFF, 0x4B, 0x06, + 0xE1, 0x00, 0x0F, 0x00, 0x25, 0x00, 0x34, 0x00, 0x42, 0x00, 0x00, 0x41, + 0x35, 0x36, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x26, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x15, 0x27, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x01, 0x26, 0x26, 0x35, 0x35, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, + 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x15, 0x14, 0x16, 0xFD, 0x37, 0x01, 0x28, 0x2B, 0x2B, 0x31, + 0x87, 0x01, 0x80, 0x67, 0x61, 0x7D, 0x7F, 0x6A, 0x33, 0x39, 0x29, 0x27, + 0x2B, 0x52, 0x0B, 0x17, 0x16, 0x62, 0x4B, 0x54, 0x65, 0x82, 0x77, 0x01, + 0x65, 0x77, 0x92, 0x01, 0x41, 0x77, 0x50, 0x7B, 0x8E, 0x8E, 0x7B, 0x42, + 0x3C, 0x01, 0x3B, 0x42, 0x41, 0x3B, 0x3B, 0x05, 0xBD, 0x5D, 0x2A, 0x2D, + 0x23, 0x1F, 0x07, 0x48, 0x63, 0x66, 0x62, 0x4F, 0x2E, 0x56, 0x30, 0x1F, + 0x1D, 0x20, 0x32, 0x26, 0x4A, 0x31, 0x4B, 0x5A, 0x4C, 0x50, 0x5A, 0xFE, + 0xAA, 0x01, 0x9A, 0x7D, 0x0C, 0x55, 0x7E, 0x47, 0x9D, 0x7D, 0x0C, 0x7B, + 0x9C, 0x72, 0x5B, 0x4A, 0x0C, 0x4B, 0x5D, 0x5D, 0x4B, 0x0C, 0x4A, 0x5B, + 0x00, 0x03, 0xFB, 0xDF, 0x04, 0xA8, 0xFE, 0xF1, 0x06, 0xE1, 0x00, 0x04, + 0x00, 0x1A, 0x00, 0x30, 0x00, 0x00, 0x41, 0x13, 0x33, 0x03, 0x23, 0x27, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x26, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x15, 0x14, 0x16, 0x17, 0x23, 0x26, 0x26, 0x37, 0x17, 0x23, + 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x17, 0x06, 0x06, + 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0xFD, 0xCE, 0x89, 0x9A, 0xE5, + 0x7C, 0x5D, 0x28, 0x2A, 0x2B, 0x31, 0x88, 0x01, 0x81, 0x66, 0x61, 0x7E, + 0x08, 0x0B, 0x8F, 0x08, 0x0B, 0x0F, 0x01, 0x6A, 0x34, 0x39, 0x2A, 0x27, + 0x2D, 0x4F, 0x13, 0x11, 0x58, 0x4A, 0x55, 0x65, 0x82, 0x78, 0x05, 0x78, + 0x01, 0x63, 0xFD, 0xD7, 0x77, 0xF1, 0x2A, 0x2D, 0x23, 0x1F, 0x07, 0x48, + 0x63, 0x66, 0x62, 0xE3, 0x22, 0x42, 0x20, 0x19, 0x3D, 0xF0, 0x56, 0x30, + 0x1F, 0x1D, 0x20, 0x35, 0x18, 0x51, 0x24, 0x46, 0x5A, 0x4C, 0x50, 0x5A, + 0x00, 0x01, 0xFC, 0x7D, 0x04, 0xA8, 0xFE, 0x9D, 0x07, 0xC7, 0x00, 0x27, + 0x00, 0x00, 0x41, 0x37, 0x1E, 0x02, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, + 0x07, 0x36, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x35, 0x35, 0x34, 0x26, 0x26, 0xFD, 0x17, 0x2D, 0x5B, 0x9E, 0x60, 0x49, + 0x7B, 0x4C, 0x4D, 0x7C, 0x47, 0x45, 0x77, 0x49, 0x3C, 0x66, 0x41, 0x01, + 0x44, 0x01, 0x48, 0x50, 0x42, 0x3F, 0x42, 0x42, 0x3C, 0x48, 0x4C, 0x72, + 0x07, 0x5C, 0x6B, 0x16, 0x81, 0xBE, 0x75, 0x2D, 0x57, 0x85, 0x4C, 0x43, + 0x72, 0x45, 0x4E, 0x75, 0x40, 0x36, 0x57, 0x2F, 0x06, 0x1E, 0x36, 0x55, + 0x40, 0x3A, 0x4D, 0x60, 0x54, 0x2E, 0x66, 0x8D, 0x58, 0x00, 0x02, 0xFC, + 0x7D, 0x04, 0xA8, 0xFE, 0x9D, 0x07, 0xC7, 0x00, 0x27, 0x00, 0x2B, 0x00, + 0x00, 0x41, 0x37, 0x1E, 0x02, 0x15, 0x15, 0x14, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x07, + 0x36, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x35, 0x34, 0x26, 0x26, 0x25, 0x05, 0x27, 0x25, 0xFD, 0x17, 0x2D, 0x5B, + 0x9E, 0x60, 0x49, 0x7B, 0x4C, 0x4D, 0x7C, 0x47, 0x45, 0x77, 0x49, 0x3C, + 0x66, 0x41, 0x01, 0x44, 0x01, 0x48, 0x50, 0x42, 0x3F, 0x42, 0x42, 0x3C, + 0x48, 0x4C, 0x72, 0x01, 0x37, 0xFE, 0xB1, 0x28, 0x01, 0x51, 0x07, 0x5C, + 0x6B, 0x16, 0x81, 0xBE, 0x75, 0x2D, 0x57, 0x85, 0x4C, 0x43, 0x72, 0x45, + 0x4E, 0x75, 0x40, 0x36, 0x57, 0x2F, 0x06, 0x1E, 0x36, 0x55, 0x40, 0x3A, + 0x4D, 0x60, 0x54, 0x2E, 0x66, 0x8D, 0x58, 0x32, 0xBB, 0x38, 0xBD, 0x00, + 0x03, 0xFC, 0x88, 0x03, 0xD9, 0xFE, 0x97, 0x06, 0xE7, 0x00, 0x11, 0x00, + 0x22, 0x00, 0x30, 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x11, 0x37, 0x33, 0x11, 0x14, 0x06, 0x06, 0x27, + 0x2E, 0x02, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, + 0x0E, 0x02, 0x27, 0x16, 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x15, 0x06, 0x16, 0xFD, 0x86, 0x39, 0x7F, 0x29, 0x43, 0x20, 0x51, + 0x27, 0x45, 0x44, 0x10, 0x7E, 0x4C, 0x7C, 0x5A, 0x43, 0x6C, 0x3E, 0x87, + 0x66, 0x48, 0x5D, 0x32, 0x08, 0x08, 0x33, 0x5D, 0x26, 0x41, 0x3C, 0x0E, + 0x0A, 0x43, 0x3E, 0x41, 0x3F, 0x01, 0x3C, 0x03, 0xD9, 0x2E, 0x30, 0x59, + 0x25, 0x22, 0x3B, 0x3A, 0x01, 0xA2, 0x7B, 0xFD, 0xE7, 0x51, 0x68, 0x30, + 0xD0, 0x01, 0x49, 0x7F, 0x4F, 0x0C, 0x7C, 0x9E, 0x44, 0x7C, 0x54, 0x18, + 0x52, 0x7B, 0x44, 0x71, 0x01, 0x43, 0x39, 0x60, 0x3C, 0x43, 0x5E, 0x4A, + 0x0C, 0x4A, 0x5D, 0x00, 0x01, 0xFC, 0x7A, 0x04, 0xA8, 0xFE, 0x98, 0x07, + 0x08, 0x00, 0x20, 0x00, 0x00, 0x41, 0x26, 0x26, 0x35, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x17, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, + 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x35, 0x23, 0x35, 0x21, 0x15, + 0x06, 0x06, 0xFD, 0x8F, 0x78, 0x9D, 0x9B, 0x75, 0x76, 0x80, 0x08, 0x85, + 0x0A, 0x34, 0x3B, 0x2F, 0x3B, 0x1A, 0x01, 0x3B, 0x4D, 0x33, 0x3C, 0x0D, + 0x78, 0x01, 0x05, 0x15, 0x8A, 0x04, 0xA8, 0x01, 0x87, 0x6A, 0x7E, 0x6B, + 0x85, 0x68, 0x55, 0x29, 0x24, 0x21, 0x43, 0x32, 0x5B, 0x41, 0x4E, 0x12, + 0x0C, 0x50, 0x6C, 0xF2, 0x1B, 0x3C, 0x00, 0x03, 0xFC, 0xA1, 0x04, 0xB2, + 0xFE, 0xAA, 0x07, 0xCE, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, + 0x41, 0x11, 0x23, 0x11, 0x05, 0x03, 0x07, 0x27, 0x37, 0x37, 0x13, 0x03, + 0x37, 0x13, 0xFD, 0x2E, 0x8D, 0x01, 0xE6, 0xF1, 0x87, 0x1C, 0x62, 0x96, + 0x1F, 0xAE, 0x59, 0xF5, 0x07, 0xCE, 0xFC, 0xE4, 0x03, 0x1C, 0xF4, 0xFE, + 0xF0, 0x8B, 0x77, 0x76, 0xAE, 0xFD, 0xD8, 0x01, 0x01, 0x5A, 0xFE, 0xA5, + 0x00, 0x01, 0xFD, 0x48, 0x04, 0xB2, 0xFD, 0xD4, 0x07, 0xC8, 0x00, 0x03, + 0x00, 0x00, 0x41, 0x33, 0x11, 0x23, 0xFD, 0x48, 0x8C, 0x8C, 0x07, 0xC8, + 0xFC, 0xEA, 0x00, 0x02, 0xFC, 0xDC, 0x04, 0xB2, 0xFE, 0x70, 0x07, 0x06, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x13, 0x11, + 0x23, 0x11, 0xFE, 0x70, 0xFE, 0xD8, 0x21, 0x8D, 0x05, 0x24, 0x72, 0x72, + 0x01, 0xE2, 0xFD, 0xAC, 0x02, 0x54, 0x00, 0x03, 0xFC, 0x34, 0x04, 0xB2, + 0xFE, 0xDF, 0x07, 0x06, 0x00, 0x06, 0x00, 0x0A, 0x00, 0x0E, 0x00, 0x00, + 0x41, 0x13, 0x33, 0x03, 0x23, 0x03, 0x33, 0x23, 0x11, 0x23, 0x11, 0x01, + 0x11, 0x33, 0x11, 0xFD, 0x89, 0xA9, 0x7A, 0xEA, 0x70, 0xEA, 0x78, 0x21, + 0x8B, 0x02, 0x1D, 0x8E, 0x05, 0x4C, 0x01, 0xBA, 0xFD, 0xAC, 0x02, 0x54, + 0xFD, 0xAC, 0x02, 0x54, 0xFD, 0xAC, 0x02, 0x54, 0xFD, 0xAC, 0x00, 0x02, + 0xFC, 0xAC, 0x04, 0xB2, 0xFE, 0x8A, 0x06, 0xE4, 0x00, 0x04, 0x00, 0x14, + 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x13, 0x07, 0x26, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x11, 0x23, 0x11, 0x34, 0x26, 0x23, 0x22, 0x06, 0xFD, + 0x3A, 0x8E, 0x70, 0x0C, 0x31, 0x01, 0x67, 0x70, 0x57, 0x66, 0x8C, 0x2D, + 0x2E, 0x42, 0x39, 0x06, 0x59, 0xFE, 0x59, 0x02, 0x28, 0xFF, 0x00, 0x02, + 0x76, 0x96, 0x6C, 0x7B, 0xFE, 0xB5, 0x01, 0x4B, 0x3D, 0x39, 0x51, 0x00, + 0x03, 0xFC, 0x63, 0x04, 0xB2, 0xFE, 0x9A, 0x07, 0x06, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x07, 0x01, 0x37, 0x31, 0x11, 0x23, + 0x11, 0x21, 0x11, 0x23, 0x11, 0xFE, 0x72, 0x67, 0xFE, 0x7A, 0x6C, 0x8E, + 0x02, 0x37, 0x8F, 0x04, 0xF9, 0x47, 0x02, 0x11, 0x43, 0xFD, 0xAC, 0x02, + 0x54, 0xFD, 0xAC, 0x02, 0x54, 0x00, 0x02, 0xFC, 0x8A, 0x04, 0xB2, 0xFE, + 0x88, 0x07, 0x06, 0x00, 0x1B, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x23, 0x35, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x11, 0x23, 0x11, 0x21, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x07, 0x06, 0x06, 0x14, 0x07, 0x0E, 0x02, + 0x23, 0x37, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x16, 0x16, 0x17, 0x15, + 0x23, 0x26, 0x26, 0x35, 0x35, 0x34, 0x26, 0xFD, 0xAE, 0xBB, 0x9B, 0x27, + 0x2F, 0x32, 0x24, 0x77, 0x8D, 0x01, 0x04, 0x6A, 0x7B, 0x4E, 0x49, 0x05, + 0x01, 0x04, 0x0A, 0x09, 0x07, 0x36, 0x32, 0x4C, 0x54, 0x21, 0x03, 0x09, + 0x07, 0x90, 0x0D, 0x05, 0x2F, 0x05, 0x87, 0x72, 0x2D, 0x24, 0x24, 0x26, + 0xFE, 0x1E, 0x02, 0x54, 0x60, 0x53, 0x3B, 0x54, 0x14, 0x01, 0x0F, 0x0E, + 0x02, 0x02, 0x05, 0x02, 0x52, 0x2A, 0x46, 0x2A, 0x2E, 0x0C, 0x23, 0x1F, + 0x0A, 0x07, 0x0E, 0x43, 0x0E, 0x2E, 0x28, 0x20, 0x00, 0x02, 0xFC, 0xD4, + 0x04, 0xB2, 0xFE, 0x67, 0x06, 0xDF, 0x00, 0x15, 0x00, 0x1A, 0x00, 0x00, + 0x41, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x06, 0x07, + 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x13, 0x27, 0x37, + 0x17, 0x15, 0xFD, 0x16, 0x42, 0x1C, 0x3E, 0x44, 0x25, 0x51, 0x74, 0x42, + 0x61, 0x2E, 0x4A, 0x47, 0x45, 0x25, 0x20, 0x1F, 0x39, 0xA3, 0x92, 0x94, + 0x92, 0x06, 0x4A, 0x52, 0x15, 0x1E, 0x10, 0x5D, 0x52, 0x3A, 0x56, 0x3B, + 0x15, 0x4D, 0x22, 0x3B, 0x2F, 0x22, 0x24, 0x15, 0xFE, 0x58, 0xEB, 0x0B, + 0xF2, 0x04, 0x00, 0x01, 0xFC, 0x92, 0x04, 0xA7, 0xFE, 0x72, 0x06, 0xE5, + 0x00, 0x26, 0x00, 0x00, 0x41, 0x34, 0x26, 0x27, 0x26, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x14, 0x16, 0x17, 0x16, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x26, + 0x35, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0xFD, 0xE5, 0x33, 0x47, 0x4D, + 0x78, 0x7C, 0x60, 0x66, 0x86, 0x86, 0x05, 0x2E, 0x33, 0x26, 0x2B, 0x32, + 0x38, 0x67, 0x70, 0x89, 0x61, 0x4E, 0x6E, 0x3A, 0x83, 0x02, 0x4D, 0x28, + 0x2D, 0x2C, 0x05, 0x48, 0x1A, 0x23, 0x10, 0x12, 0x4B, 0x4E, 0x49, 0x5C, + 0x67, 0x49, 0x20, 0x26, 0x1D, 0x1B, 0x1C, 0x1D, 0x0D, 0x19, 0x4A, 0x4C, + 0x50, 0x57, 0x37, 0x55, 0x2D, 0x2F, 0x21, 0x1F, 0x00, 0x01, 0xFD, 0x42, + 0x04, 0xB2, 0xFE, 0x5B, 0x07, 0xD8, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x23, + 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x15, 0xFD, 0xCE, 0x8C, 0x75, 0x56, 0x12, 0x23, 0x19, 0x0D, 0x09, + 0x17, 0x0E, 0x20, 0x32, 0x04, 0xB2, 0x02, 0x60, 0x61, 0x65, 0x05, 0x05, + 0x6D, 0x03, 0x03, 0x2A, 0x2B, 0x00, 0x03, 0xFC, 0xAB, 0x04, 0xB2, 0xFE, + 0x6C, 0x06, 0xDA, 0x00, 0x03, 0x00, 0x09, 0x00, 0x0D, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x01, 0x01, 0x23, 0x35, 0x01, 0x33, 0x23, 0x15, 0x21, + 0x35, 0xFE, 0x6C, 0xFE, 0x66, 0x01, 0x8D, 0xFE, 0x9F, 0x53, 0x01, 0x68, + 0x4C, 0x2F, 0xFE, 0x7E, 0x05, 0x24, 0x72, 0x72, 0x01, 0x57, 0xFE, 0x37, + 0x61, 0x01, 0xC7, 0x72, 0x72, 0x00, 0x03, 0xFC, 0x69, 0x04, 0xA8, 0xFE, + 0xAE, 0x06, 0xE5, 0x00, 0x0F, 0x00, 0x1D, 0x00, 0x2D, 0x00, 0x00, 0x41, + 0x26, 0x26, 0x27, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x16, 0x17, 0x15, + 0x0E, 0x02, 0x27, 0x32, 0x36, 0x37, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x15, 0x16, 0x16, 0x13, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x37, + 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x11, 0xFD, 0x53, 0x6B, 0x7E, + 0x01, 0x7D, 0x6C, 0x45, 0x57, 0x2D, 0x07, 0x07, 0x32, 0x56, 0x23, 0x40, + 0x40, 0x0D, 0x0A, 0x44, 0x3F, 0x3F, 0x3C, 0x01, 0x3A, 0xBF, 0x80, 0x15, + 0x11, 0x09, 0x04, 0x0C, 0x12, 0x2A, 0x17, 0x40, 0x3B, 0x04, 0xA8, 0x01, + 0x96, 0x75, 0x09, 0x81, 0xA7, 0x49, 0x7C, 0x4D, 0x1C, 0x55, 0x79, 0x40, + 0x6F, 0x54, 0x44, 0x1F, 0x47, 0x5D, 0x65, 0x51, 0x09, 0x48, 0x54, 0x01, + 0xC2, 0xFE, 0x7A, 0x20, 0x1E, 0x04, 0x62, 0x0C, 0x04, 0x58, 0x55, 0x01, + 0x0B, 0x00, 0x02, 0xFC, 0x7D, 0x03, 0xEA, 0xFE, 0x99, 0x07, 0xA3, 0x00, + 0x16, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x35, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0x34, 0x26, 0x23, 0x23, 0x13, 0x36, 0x16, 0x15, 0x14, 0x06, 0x23, 0x23, + 0x35, 0x33, 0x16, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x11, + 0x23, 0x11, 0x3E, 0x02, 0xFD, 0x59, 0x4A, 0x75, 0x81, 0x86, 0x75, 0x35, + 0x6B, 0x46, 0x32, 0x05, 0x55, 0x4A, 0x3E, 0x41, 0x46, 0x35, 0x39, 0x29, + 0x66, 0x88, 0x83, 0x65, 0x2F, 0x29, 0x34, 0x37, 0x3E, 0x30, 0x2A, 0x4A, + 0x8E, 0x01, 0x4C, 0x78, 0x06, 0x53, 0x71, 0x59, 0x6B, 0x76, 0x27, 0x55, + 0x46, 0x16, 0x26, 0x46, 0x3D, 0x36, 0x46, 0x39, 0x01, 0x9C, 0x01, 0x66, + 0x5A, 0x5B, 0x64, 0x4B, 0x01, 0x32, 0x35, 0x2B, 0x36, 0x38, 0x46, 0xFD, + 0x32, 0x02, 0xCE, 0x52, 0x68, 0x31, 0x00, 0x08, 0xF9, 0xDF, 0xFE, 0xC2, + 0x01, 0x8E, 0x05, 0xAE, 0x00, 0x0D, 0x00, 0x1B, 0x00, 0x29, 0x00, 0x37, + 0x00, 0x45, 0x00, 0x53, 0x00, 0x61, 0x00, 0x6F, 0x00, 0x00, 0x41, 0x23, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x01, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, + 0x22, 0x06, 0x13, 0x23, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, + 0x26, 0x23, 0x22, 0x06, 0x03, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0x01, 0x23, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x01, 0x23, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x03, 0x23, + 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x13, 0x23, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, + 0x22, 0x06, 0xFD, 0x44, 0x73, 0x01, 0x73, 0x64, 0x5F, 0x73, 0x70, 0x2E, + 0x34, 0x37, 0x2E, 0x02, 0x57, 0x73, 0x72, 0x62, 0x63, 0x73, 0x72, 0x2C, + 0x38, 0x34, 0x2D, 0xBD, 0x74, 0x01, 0x72, 0x62, 0x62, 0x73, 0x72, 0x2C, + 0x38, 0x32, 0x2F, 0xC8, 0x72, 0x73, 0x64, 0x60, 0x72, 0x6F, 0x2E, 0x35, + 0x35, 0x2F, 0xFD, 0xBA, 0x73, 0x01, 0x72, 0x61, 0x63, 0x73, 0x71, 0x01, + 0x2D, 0x37, 0x34, 0x2D, 0xFD, 0xBB, 0x75, 0x73, 0x63, 0x62, 0x73, 0x71, + 0x01, 0x2C, 0x37, 0x35, 0x2C, 0xB4, 0x71, 0x01, 0x73, 0x60, 0x64, 0x74, + 0x73, 0x2E, 0x36, 0x35, 0x2C, 0xA7, 0x72, 0x01, 0x73, 0x61, 0x62, 0x73, + 0x71, 0x01, 0x2C, 0x37, 0x35, 0x2B, 0x04, 0xF4, 0x51, 0x69, 0x69, 0x51, + 0x28, 0x3C, 0x3E, 0xFE, 0xC4, 0x53, 0x69, 0x69, 0x53, 0x28, 0x3C, 0x3C, + 0xFD, 0xE2, 0x51, 0x69, 0x69, 0x51, 0x28, 0x3C, 0x3C, 0xFD, 0xD0, 0x51, + 0x6D, 0x6B, 0x53, 0x27, 0x3F, 0x3F, 0xFE, 0xBB, 0x53, 0x6B, 0x6B, 0x53, + 0x28, 0x3E, 0x3F, 0x04, 0xF5, 0x53, 0x69, 0x69, 0x53, 0x28, 0x3C, 0x3C, + 0xFD, 0xE2, 0x51, 0x69, 0x69, 0x51, 0x28, 0x3C, 0x3E, 0xFD, 0xD2, 0x51, + 0x6D, 0x6B, 0x53, 0x27, 0x3F, 0x41, 0x00, 0x08, 0xFA, 0x04, 0xFE, 0x62, + 0x01, 0x56, 0x05, 0xC6, 0x00, 0x04, 0x00, 0x09, 0x00, 0x0E, 0x00, 0x13, + 0x00, 0x18, 0x00, 0x1D, 0x00, 0x22, 0x00, 0x27, 0x00, 0x00, 0x41, 0x27, + 0x13, 0x33, 0x03, 0x05, 0x27, 0x37, 0x25, 0x17, 0x13, 0x25, 0x35, 0x37, + 0x05, 0x01, 0x03, 0x37, 0x33, 0x13, 0x05, 0x13, 0x33, 0x17, 0x03, 0x01, + 0x27, 0x25, 0x17, 0x07, 0x03, 0x25, 0x35, 0x05, 0x15, 0x13, 0x03, 0x37, + 0x13, 0x07, 0xFD, 0x4C, 0x0C, 0x7B, 0x62, 0x48, 0x01, 0x93, 0x62, 0x01, + 0x01, 0x47, 0x43, 0xC5, 0xFE, 0xA3, 0x0F, 0x01, 0x4E, 0xFE, 0xA2, 0xC8, + 0x62, 0x12, 0x96, 0xFD, 0x06, 0x47, 0x8A, 0x0C, 0x7C, 0xFD, 0x6E, 0x47, + 0x01, 0x29, 0x62, 0x01, 0xFE, 0xFE, 0xB0, 0x01, 0x5E, 0x53, 0x94, 0x41, + 0xC7, 0x64, 0x04, 0x66, 0x0E, 0x01, 0x52, 0xFE, 0xA0, 0xDE, 0x64, 0x0E, + 0x9A, 0x46, 0xFD, 0x58, 0x46, 0x8C, 0x0A, 0x7A, 0xFD, 0x0A, 0x01, 0x2C, + 0x62, 0xFE, 0xBA, 0xF8, 0x01, 0x60, 0x0E, 0xFE, 0xAE, 0x01, 0x0A, 0x42, + 0xCA, 0x64, 0x0E, 0x01, 0xA0, 0x7A, 0x62, 0x44, 0x8C, 0x01, 0xAC, 0x01, + 0x48, 0x42, 0xFE, 0xD6, 0x60, 0x00, 0x01, 0xFC, 0x31, 0x04, 0xA2, 0xFF, + 0x08, 0x05, 0xFE, 0x00, 0x07, 0x00, 0x00, 0x43, 0x21, 0x15, 0x23, 0x37, + 0x21, 0x27, 0x33, 0xF8, 0xFD, 0xDB, 0xB2, 0x01, 0x02, 0x27, 0x01, 0xB0, + 0x05, 0x20, 0x7E, 0xF0, 0x6C, 0x00, 0x01, 0xFC, 0x40, 0x05, 0x18, 0xFF, + 0x42, 0x06, 0x14, 0x00, 0x15, 0x00, 0x00, 0x41, 0x33, 0x32, 0x3E, 0x02, + 0x33, 0x32, 0x16, 0x15, 0x15, 0x23, 0x35, 0x26, 0x26, 0x23, 0x22, 0x0E, + 0x02, 0x23, 0x23, 0xFC, 0x40, 0x25, 0x52, 0x81, 0x71, 0x6D, 0x3B, 0x70, + 0x81, 0x8A, 0x01, 0x3B, 0x2F, 0x2B, 0x61, 0x74, 0x8E, 0x58, 0x27, 0x05, + 0x9E, 0x23, 0x2F, 0x24, 0x69, 0x6D, 0x26, 0x10, 0x35, 0x31, 0x24, 0x2E, + 0x24, 0x00, 0x01, 0xFD, 0x4B, 0x05, 0x16, 0xFE, 0x46, 0x06, 0x60, 0x00, + 0x05, 0x00, 0x00, 0x41, 0x27, 0x35, 0x33, 0x07, 0x17, 0xFD, 0xF3, 0xA8, + 0xC1, 0x03, 0x3D, 0x05, 0x16, 0xC8, 0x82, 0x94, 0x71, 0x00, 0x01, 0xFD, + 0x7C, 0x05, 0x16, 0xFE, 0x76, 0x06, 0x60, 0x00, 0x05, 0x00, 0x00, 0x41, + 0x07, 0x27, 0x37, 0x27, 0x33, 0xFE, 0x76, 0xA7, 0x53, 0x3C, 0x03, 0xC1, + 0x05, 0xDE, 0xC8, 0x45, 0x71, 0x94, 0x00, 0x01, 0xFB, 0xFB, 0x05, 0x18, + 0xFF, 0x38, 0x06, 0x14, 0x00, 0x15, 0x00, 0x00, 0x41, 0x33, 0x15, 0x23, + 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x15, 0x23, 0x35, 0x26, 0x36, + 0x33, 0x32, 0x1E, 0x02, 0xFE, 0x96, 0xA2, 0xB0, 0x34, 0x4F, 0x4F, 0x63, + 0x49, 0x2E, 0x57, 0x89, 0x01, 0x97, 0x83, 0x4F, 0x70, 0x53, 0x48, 0x05, + 0x9E, 0x86, 0x23, 0x2F, 0x24, 0x2F, 0x37, 0x10, 0x26, 0x62, 0x74, 0x24, + 0x2F, 0x23, 0x00, 0x04, 0xFC, 0x50, 0x04, 0xA3, 0xFF, 0x2B, 0x06, 0xE1, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x26, 0x00, 0x2A, 0x00, 0x00, 0x41, 0x15, + 0x23, 0x35, 0x37, 0x11, 0x23, 0x11, 0x01, 0x26, 0x26, 0x35, 0x35, 0x34, + 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x23, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x06, 0x15, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, + 0x06, 0x25, 0x35, 0x33, 0x15, 0xFD, 0x86, 0xC8, 0x1F, 0x8D, 0x01, 0xF7, + 0x77, 0x90, 0x40, 0x78, 0x50, 0x39, 0x68, 0x42, 0x81, 0x02, 0x36, 0x2A, + 0x2D, 0x37, 0x18, 0x39, 0x42, 0x31, 0x30, 0x02, 0x81, 0x01, 0x82, 0xFE, + 0xEA, 0xEA, 0x06, 0x00, 0x6F, 0x6F, 0xDA, 0xFD, 0xD8, 0x02, 0x28, 0xFD, + 0xC9, 0x01, 0x99, 0x7D, 0x12, 0x52, 0x7C, 0x47, 0x2C, 0x55, 0x3F, 0x28, + 0x26, 0x2A, 0x4A, 0x31, 0x12, 0x49, 0x59, 0x30, 0x2C, 0x5C, 0x72, 0xEF, + 0x61, 0x61, 0xFF, 0xFF, 0xFC, 0x6C, 0x04, 0xEA, 0xFE, 0xD2, 0x05, 0xCE, + 0x04, 0x07, 0x06, 0xEC, 0xFB, 0xB2, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x28, + 0x03, 0x7C, 0x01, 0x4E, 0x04, 0xEF, 0x04, 0x07, 0x06, 0xE7, 0xFF, 0xE3, + 0x05, 0x65, 0x00, 0x01, 0x00, 0x50, 0x04, 0xAD, 0x01, 0x66, 0x05, 0xEF, + 0x00, 0x11, 0x00, 0x00, 0x53, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x70, 0x0B, + 0x0D, 0x32, 0x34, 0x33, 0x30, 0x25, 0x20, 0x74, 0x82, 0x82, 0x04, 0xAD, + 0x52, 0x20, 0x1F, 0x1A, 0x1C, 0x7B, 0x55, 0x4A, 0x4A, 0x59, 0x00, 0x01, + 0x00, 0x50, 0x04, 0xAD, 0x01, 0x66, 0x05, 0xEF, 0x00, 0x11, 0x00, 0x00, + 0x53, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x70, 0x0B, 0x0D, 0x32, 0x34, 0x33, + 0x30, 0x25, 0x20, 0x74, 0x82, 0x82, 0x04, 0xAD, 0x52, 0x20, 0x1F, 0x1A, + 0x1C, 0x7B, 0x55, 0x4A, 0x4A, 0x59, 0x00, 0x01, 0x00, 0x50, 0x04, 0xAD, + 0x01, 0x66, 0x05, 0xEF, 0x00, 0x11, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x33, 0x15, 0x01, 0x46, 0x73, 0x83, 0x83, 0x73, 0x20, 0x25, 0x30, 0x32, + 0x33, 0x32, 0x0D, 0x04, 0xAD, 0x59, 0x4A, 0x4A, 0x55, 0x7B, 0x1C, 0x1A, + 0x1F, 0x20, 0x52, 0x00, 0x02, 0x00, 0x50, 0x04, 0xAD, 0x02, 0x64, 0x05, + 0xEF, 0x00, 0x11, 0x00, 0x15, 0x00, 0x00, 0x53, 0x23, 0x35, 0x33, 0x32, + 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x25, 0x23, 0x03, 0x33, 0x70, 0x0B, 0x0D, 0x32, 0x34, 0x33, 0x30, + 0x25, 0x20, 0x74, 0x82, 0x82, 0x01, 0x80, 0x84, 0x5F, 0xC0, 0x04, 0xAD, + 0x52, 0x20, 0x1F, 0x1A, 0x1C, 0x7B, 0x55, 0x4A, 0x4A, 0x59, 0x03, 0x01, + 0x3C, 0x00, 0x02, 0x00, 0x50, 0x04, 0xAD, 0x02, 0x84, 0x05, 0xEF, 0x00, + 0x11, 0x00, 0x15, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x33, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x25, + 0x23, 0x03, 0x33, 0x01, 0x46, 0x73, 0x83, 0x83, 0x73, 0x20, 0x25, 0x30, + 0x32, 0x33, 0x32, 0x0D, 0x01, 0x33, 0x84, 0x5F, 0xC0, 0x04, 0xAD, 0x59, + 0x4A, 0x4A, 0x55, 0x7B, 0x1C, 0x1A, 0x1F, 0x20, 0x52, 0x03, 0x01, 0x3C, + 0x00, 0x02, 0x00, 0x50, 0x04, 0xAD, 0x02, 0xA4, 0x05, 0xEF, 0x00, 0x11, + 0x00, 0x15, 0x00, 0x00, 0x53, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, + 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x37, 0x13, + 0x33, 0x03, 0x70, 0x0B, 0x0D, 0x32, 0x34, 0x33, 0x30, 0x25, 0x20, 0x74, + 0x82, 0x82, 0xDC, 0x24, 0xC0, 0x60, 0x04, 0xAD, 0x52, 0x20, 0x1F, 0x1A, + 0x1C, 0x7B, 0x55, 0x4A, 0x4A, 0x59, 0x03, 0x01, 0x3C, 0xFE, 0xC4, 0x00, + 0x02, 0x00, 0x50, 0x04, 0xAD, 0x02, 0xA9, 0x05, 0xEF, 0x00, 0x11, 0x00, + 0x15, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x37, 0x13, 0x33, + 0x03, 0x01, 0x46, 0x73, 0x83, 0x83, 0x73, 0x20, 0x25, 0x30, 0x32, 0x33, + 0x32, 0x0D, 0x75, 0x23, 0xC0, 0x5F, 0x04, 0xAD, 0x59, 0x4A, 0x4A, 0x55, + 0x7B, 0x1C, 0x1A, 0x1F, 0x20, 0x52, 0x03, 0x01, 0x3C, 0xFE, 0xC4, 0x00, + 0x02, 0x00, 0x00, 0x04, 0xAD, 0x02, 0x5A, 0x07, 0x1A, 0x00, 0x11, 0x00, + 0x29, 0x00, 0x00, 0x53, 0x23, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x22, 0x2E, + 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0xC2, 0x0B, 0x0E, 0x31, 0x34, + 0x33, 0x30, 0x25, 0x20, 0x74, 0x82, 0x82, 0x7B, 0x28, 0x46, 0x3E, 0x34, + 0x14, 0x1A, 0x1B, 0x02, 0x86, 0x03, 0x56, 0x52, 0x29, 0x44, 0x39, 0x33, + 0x19, 0x1C, 0x1A, 0x05, 0x82, 0x02, 0x5B, 0x04, 0xAD, 0x52, 0x20, 0x1E, + 0x1B, 0x1C, 0x7B, 0x55, 0x4A, 0x4A, 0x59, 0x01, 0x8F, 0x19, 0x23, 0x1A, + 0x32, 0x20, 0x62, 0x78, 0x1A, 0x23, 0x1B, 0x29, 0x2B, 0x65, 0x75, 0x00, + 0x02, 0x00, 0x00, 0x04, 0xAD, 0x02, 0x5A, 0x07, 0x1A, 0x00, 0x11, 0x00, + 0x29, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x33, 0x15, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x33, 0x15, 0x13, 0x22, 0x2E, + 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x01, 0x98, 0x73, 0x83, 0x83, + 0x73, 0x20, 0x25, 0x30, 0x32, 0x34, 0x31, 0x0D, 0x0E, 0x28, 0x46, 0x3E, + 0x34, 0x14, 0x1A, 0x1B, 0x02, 0x86, 0x03, 0x56, 0x52, 0x29, 0x44, 0x39, + 0x33, 0x19, 0x1C, 0x1A, 0x05, 0x82, 0x02, 0x5B, 0x04, 0xAD, 0x59, 0x4A, + 0x4A, 0x55, 0x7B, 0x1C, 0x1B, 0x1E, 0x20, 0x52, 0x01, 0x8F, 0x19, 0x23, + 0x1A, 0x32, 0x20, 0x62, 0x78, 0x1A, 0x23, 0x1B, 0x29, 0x2B, 0x65, 0x75, + 0x00, 0x03, 0x00, 0xEE, 0x04, 0xE9, 0x04, 0x45, 0x06, 0x84, 0x00, 0x0B, + 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x25, 0x23, 0x03, 0x33, 0x01, 0x6D, + 0x34, 0x4B, 0x4B, 0x34, 0x35, 0x4A, 0x4B, 0x02, 0x26, 0x35, 0x4A, 0x4A, + 0x35, 0x34, 0x4A, 0x4A, 0xFE, 0xF2, 0x8B, 0x65, 0xCC, 0x04, 0xE9, 0x49, + 0x34, 0x34, 0x4A, 0x4A, 0x34, 0x34, 0x49, 0x49, 0x34, 0x34, 0x4A, 0x4A, + 0x34, 0x34, 0x49, 0x6D, 0x01, 0x2E, 0xFF, 0xFF, 0x00, 0xEE, 0x04, 0xE9, + 0x04, 0x45, 0x06, 0x84, 0x06, 0x06, 0x06, 0xE4, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x7E, 0x04, 0xBC, 0x03, 0x2E, 0x06, 0xEE, 0x00, 0x0B, 0x00, 0x17, + 0x00, 0x2F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x01, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, + 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, + 0x06, 0x06, 0x02, 0xAC, 0x37, 0x4C, 0x4C, 0x37, 0x37, 0x4B, 0x4B, 0xFE, + 0x1D, 0x37, 0x4B, 0x4C, 0x36, 0x37, 0x4C, 0x4C, 0x01, 0x34, 0x28, 0x48, + 0x3F, 0x34, 0x14, 0x1B, 0x1B, 0x02, 0x89, 0x03, 0x58, 0x53, 0x2A, 0x44, + 0x3B, 0x34, 0x19, 0x1C, 0x1B, 0x04, 0x86, 0x03, 0x5C, 0x04, 0xBC, 0x4C, + 0x35, 0x36, 0x4B, 0x4B, 0x36, 0x36, 0x4B, 0x4C, 0x35, 0x36, 0x4B, 0x4B, + 0x36, 0x36, 0x4B, 0x01, 0x55, 0x19, 0x23, 0x1A, 0x32, 0x20, 0x62, 0x77, + 0x1A, 0x23, 0x1A, 0x28, 0x2B, 0x64, 0x75, 0x00, 0x01, 0x00, 0x28, 0x04, + 0xB6, 0x01, 0x19, 0x05, 0xE4, 0x00, 0x03, 0x00, 0x00, 0x41, 0x23, 0x03, + 0x33, 0x01, 0x19, 0x8C, 0x65, 0xCC, 0x04, 0xB6, 0x01, 0x2E, 0xFF, 0xFF, + 0x00, 0x9C, 0x04, 0xB6, 0x01, 0x8D, 0x05, 0xE4, 0x06, 0x06, 0x0A, 0xF3, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xBA, 0x04, 0xEA, 0x03, 0x20, 0x05, 0xCE, + 0x04, 0x06, 0x06, 0xEC, 0x00, 0x00, 0x00, 0x02, 0x00, 0xEE, 0x04, 0xE2, + 0x03, 0x9F, 0x05, 0xE4, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x03, 0x1C, + 0x36, 0x4C, 0x4C, 0x37, 0x36, 0x4C, 0x4C, 0xFE, 0x1E, 0x37, 0x4C, 0x4C, + 0x37, 0x37, 0x4C, 0x4C, 0x04, 0xE2, 0x4C, 0x35, 0x36, 0x4B, 0x4B, 0x36, + 0x36, 0x4B, 0x4C, 0x35, 0x36, 0x4B, 0x4B, 0x36, 0x36, 0x4B, 0x00, 0x01, + 0x00, 0x68, 0x04, 0xE1, 0x01, 0x75, 0x05, 0xE5, 0x00, 0x0B, 0x00, 0x00, + 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0xEE, 0x38, 0x4E, 0x4E, 0x38, 0x39, 0x4E, 0x4E, 0x04, 0xE1, 0x4C, 0x36, + 0x36, 0x4C, 0x4B, 0x37, 0x37, 0x4B, 0x00, 0x01, 0x00, 0x4F, 0x04, 0xC9, + 0x02, 0xEC, 0x05, 0xE4, 0x00, 0x08, 0x00, 0x00, 0x41, 0x23, 0x35, 0x13, + 0x33, 0x13, 0x15, 0x23, 0x27, 0x01, 0x10, 0xC1, 0xEE, 0xBE, 0xF1, 0xC4, + 0x8B, 0x04, 0xC9, 0x02, 0x01, 0x19, 0xFE, 0xE7, 0x02, 0xAD, 0x00, 0x01, + 0x00, 0x4F, 0x04, 0xC9, 0x02, 0xEC, 0x05, 0xE4, 0x00, 0x08, 0x00, 0x00, + 0x41, 0x17, 0x37, 0x33, 0x15, 0x03, 0x23, 0x03, 0x35, 0x01, 0x10, 0x8D, + 0x8B, 0xC4, 0xF1, 0xBE, 0xEE, 0x05, 0xE4, 0xAD, 0xAD, 0x02, 0xFE, 0xE7, + 0x01, 0x19, 0x02, 0x00, 0x01, 0x00, 0x6B, 0x04, 0xC1, 0x02, 0xCE, 0x05, + 0xE3, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x01, 0x9C, 0x56, + 0x8A, 0x51, 0x91, 0x5A, 0x46, 0x46, 0x5A, 0x92, 0x51, 0x8A, 0x04, 0xC1, + 0x4D, 0x84, 0x51, 0x44, 0x55, 0x55, 0x44, 0x51, 0x83, 0x4E, 0x00, 0x02, + 0x00, 0x43, 0x04, 0x83, 0x02, 0x37, 0x06, 0x5F, 0x00, 0x0F, 0x00, 0x1B, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x01, 0x3D, 0x46, 0x71, 0x43, 0x43, + 0x71, 0x46, 0x46, 0x72, 0x42, 0x42, 0x72, 0x46, 0x30, 0x40, 0x41, 0x2F, + 0x2E, 0x42, 0x42, 0x04, 0x83, 0x3F, 0x6C, 0x43, 0x42, 0x6C, 0x40, 0x40, + 0x6C, 0x42, 0x43, 0x6B, 0x40, 0x7E, 0x41, 0x2F, 0x2F, 0x41, 0x41, 0x2F, + 0x2F, 0x41, 0x00, 0x01, 0x00, 0x69, 0x04, 0xB6, 0x01, 0xB6, 0x05, 0xE4, + 0x00, 0x0D, 0x00, 0x00, 0x41, 0x23, 0x37, 0x36, 0x26, 0x23, 0x23, 0x35, + 0x33, 0x32, 0x16, 0x16, 0x06, 0x07, 0x01, 0x59, 0x96, 0x49, 0x09, 0x09, + 0x13, 0x90, 0x92, 0x43, 0x54, 0x24, 0x0B, 0x1C, 0x04, 0xB6, 0x8A, 0x11, + 0x11, 0x82, 0x23, 0x3D, 0x4F, 0x2A, 0x00, 0x01, 0x01, 0xB1, 0x01, 0x9D, + 0x02, 0xE5, 0x03, 0xE1, 0x00, 0x0A, 0x00, 0x00, 0x41, 0x15, 0x14, 0x06, + 0x06, 0x07, 0x27, 0x36, 0x36, 0x35, 0x35, 0x02, 0xE5, 0x2E, 0x51, 0x37, + 0x7E, 0x2C, 0x30, 0x03, 0xE1, 0xBD, 0x42, 0x90, 0x84, 0x31, 0x4D, 0x46, + 0x98, 0x5B, 0xBE, 0x00, 0x01, 0x01, 0xB1, 0x01, 0x9D, 0x02, 0xE5, 0x03, + 0xE1, 0x00, 0x0A, 0x00, 0x00, 0x41, 0x15, 0x14, 0x06, 0x06, 0x07, 0x27, + 0x36, 0x36, 0x35, 0x35, 0x02, 0xE5, 0x2E, 0x51, 0x37, 0x7E, 0x2C, 0x30, + 0x03, 0xE1, 0xBD, 0x42, 0x90, 0x84, 0x31, 0x4D, 0x46, 0x98, 0x5B, 0xBE, + 0x00, 0x01, 0xFE, 0x47, 0x03, 0xDF, 0xFF, 0x7B, 0x05, 0xA3, 0x00, 0x0B, + 0x00, 0x00, 0x43, 0x14, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x03, 0x35, 0x85, + 0x16, 0x2B, 0x45, 0x30, 0x7E, 0x18, 0x22, 0x17, 0x0B, 0x05, 0xA3, 0x17, + 0x71, 0x8D, 0x85, 0x2A, 0x4D, 0x29, 0x4E, 0x57, 0x68, 0x41, 0x00, 0x01, + 0x00, 0xA6, 0xFE, 0x5E, 0x02, 0x0B, 0x00, 0x2F, 0x00, 0x13, 0x00, 0x00, + 0x53, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x23, 0x37, 0x33, + 0x15, 0x07, 0x16, 0x16, 0x15, 0x14, 0x06, 0x23, 0xA6, 0x76, 0x31, 0x2E, + 0x2E, 0x31, 0x53, 0x21, 0x65, 0x01, 0x5A, 0x63, 0x7B, 0x6E, 0xFE, 0x5E, + 0x6E, 0x1F, 0x21, 0x21, 0x1F, 0xE3, 0x2F, 0x54, 0x03, 0x57, 0x49, 0x58, + 0x53, 0x00, 0x01, 0x00, 0x50, 0xFE, 0x5A, 0x01, 0xC5, 0x00, 0x2C, 0x00, + 0x13, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x37, 0x17, 0x06, + 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, + 0x35, 0x68, 0x7D, 0x5D, 0x66, 0xA4, 0x51, 0x46, 0x29, 0x2B, 0x11, 0x24, + 0x0E, 0x0E, 0x1F, 0x4B, 0xFE, 0x5A, 0x64, 0x5F, 0x4E, 0x82, 0x3F, 0x2C, + 0x41, 0x53, 0x2B, 0x21, 0x25, 0x04, 0x02, 0x9B, 0x05, 0x07, 0xFF, 0xFF, + 0x00, 0x4F, 0xFE, 0x3A, 0x02, 0xEC, 0xFF, 0x56, 0x06, 0x07, 0x0A, 0x8E, + 0x00, 0x00, 0xF9, 0x71, 0x00, 0x01, 0xFB, 0xEC, 0xFF, 0x77, 0xFF, 0x18, + 0x04, 0xBB, 0x00, 0x03, 0x00, 0x00, 0x43, 0x01, 0x23, 0x01, 0xE8, 0xFD, + 0x62, 0x8E, 0x02, 0x9C, 0x04, 0xBB, 0xFA, 0xBC, 0x05, 0x44, 0x00, 0x01, + 0xFB, 0x7F, 0xFF, 0xC2, 0xFF, 0xF8, 0x06, 0x10, 0x00, 0x03, 0x00, 0x00, + 0x43, 0x01, 0x23, 0x01, 0x08, 0xFC, 0x1A, 0x93, 0x03, 0xE6, 0x06, 0x10, + 0xF9, 0xB2, 0x06, 0x4E, 0x00, 0x03, 0xFC, 0x2D, 0x04, 0xC4, 0xFE, 0xE5, + 0x06, 0x4A, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x41, 0x11, + 0x33, 0x11, 0x27, 0x35, 0x21, 0x15, 0x07, 0x11, 0x33, 0x11, 0xFC, 0x2D, + 0xA6, 0x1A, 0x01, 0x9F, 0x16, 0xA3, 0x04, 0xC4, 0x01, 0x86, 0xFE, 0x7A, + 0xFA, 0x8C, 0x8C, 0xFA, 0x01, 0x86, 0xFE, 0x7A, 0xFF, 0xFF, 0xFC, 0x58, + 0xFD, 0x5E, 0xFE, 0xB4, 0xFF, 0x07, 0x04, 0x07, 0x06, 0x55, 0xFB, 0xD1, + 0xF9, 0x44, 0xFF, 0xFF, 0xFC, 0xD5, 0xFE, 0x11, 0xFE, 0xA9, 0xFF, 0xB4, + 0x04, 0x27, 0x0B, 0x31, 0xFC, 0x82, 0xF9, 0x95, 0x00, 0x07, 0x0B, 0x31, + 0xFD, 0xB1, 0xF9, 0x96, 0x00, 0x02, 0xFC, 0xDB, 0xFE, 0x06, 0xFE, 0x72, + 0xFF, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, + 0x25, 0x35, 0x21, 0x15, 0xFD, 0xCD, 0xA5, 0xFE, 0x69, 0x01, 0x97, 0xFE, + 0x06, 0x01, 0x86, 0xFE, 0x7A, 0xEE, 0x98, 0x98, 0x00, 0x02, 0xFB, 0xFF, + 0x04, 0x9B, 0xFE, 0xE0, 0x06, 0x2D, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, + 0x41, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x15, 0x27, 0x3E, 0x02, 0x33, + 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x35, 0x17, 0x14, 0x06, 0x06, 0x07, + 0x27, 0x13, 0x17, 0xFD, 0xFD, 0x31, 0x43, 0x35, 0x3A, 0x2A, 0x27, 0x36, + 0x94, 0x01, 0x3C, 0x65, 0x40, 0x29, 0x43, 0x3C, 0x40, 0x26, 0x27, 0x39, + 0x91, 0x3B, 0x67, 0xDB, 0x68, 0xB8, 0x67, 0x04, 0xF2, 0x1B, 0x25, 0x1B, + 0x3B, 0x2F, 0x07, 0x4A, 0x75, 0x44, 0x1B, 0x25, 0x1B, 0x3C, 0x2E, 0x0C, + 0x4A, 0x73, 0x41, 0x57, 0x3E, 0x01, 0x54, 0x3E, 0x00, 0x03, 0xFB, 0xF4, + 0x04, 0x78, 0xFE, 0xD5, 0x07, 0x7E, 0x00, 0x19, 0x00, 0x25, 0x00, 0x31, + 0x00, 0x00, 0x41, 0x17, 0x16, 0x06, 0x06, 0x23, 0x22, 0x2E, 0x02, 0x23, + 0x22, 0x06, 0x15, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, + 0x36, 0x25, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0x11, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, + 0x26, 0xFE, 0x41, 0x93, 0x01, 0x3D, 0x66, 0x40, 0x32, 0x43, 0x36, 0x3B, + 0x28, 0x26, 0x39, 0x91, 0x01, 0x3B, 0x65, 0x3E, 0x2A, 0x43, 0x3D, 0x41, + 0x26, 0x28, 0x35, 0xFE, 0xA1, 0x45, 0x3E, 0x3F, 0x47, 0x47, 0x3E, 0x3E, + 0x46, 0x44, 0x3F, 0x3F, 0x47, 0x47, 0x3E, 0x3E, 0x46, 0x06, 0x85, 0x0D, + 0x49, 0x74, 0x41, 0x1B, 0x25, 0x1B, 0x3B, 0x2F, 0x0A, 0x49, 0x75, 0x44, + 0x1C, 0x22, 0x1C, 0x3B, 0xAE, 0x31, 0x47, 0x46, 0x32, 0x33, 0x44, 0x44, + 0xFE, 0x1C, 0x30, 0x49, 0x46, 0x33, 0x32, 0x45, 0x45, 0x00, 0x02, 0xFC, + 0x27, 0x04, 0xDD, 0xFF, 0x07, 0x06, 0x97, 0x00, 0x17, 0x00, 0x2F, 0x00, + 0x00, 0x41, 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, + 0x36, 0x11, 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, + 0x36, 0xFE, 0x73, 0x94, 0x3C, 0x67, 0x40, 0x41, 0x50, 0x46, 0x37, 0x26, + 0x39, 0x90, 0x3B, 0x65, 0x3F, 0x37, 0x53, 0x51, 0x36, 0x25, 0x37, 0x94, + 0x3D, 0x66, 0x40, 0x41, 0x50, 0x47, 0x35, 0x27, 0x39, 0x90, 0x3B, 0x65, + 0x3F, 0x37, 0x53, 0x51, 0x35, 0x28, 0x35, 0x05, 0xB7, 0x08, 0x3B, 0x59, + 0x33, 0x24, 0x23, 0x2E, 0x24, 0x08, 0x38, 0x59, 0x35, 0x21, 0x22, 0x2C, + 0x01, 0x03, 0x0B, 0x39, 0x59, 0x32, 0x22, 0x22, 0x2C, 0x25, 0x07, 0x39, + 0x5B, 0x35, 0x23, 0x24, 0x2F, 0x00, 0x05, 0xFB, 0xDF, 0xFD, 0xD8, 0xFF, + 0x31, 0xFF, 0x8B, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x0F, 0x00, + 0x13, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x23, 0x27, 0x37, 0x37, + 0x33, 0x01, 0x27, 0x05, 0x23, 0x01, 0x17, 0x25, 0x33, 0x17, 0x07, 0xFE, + 0xDA, 0xFD, 0x5E, 0x01, 0x01, 0x86, 0xD4, 0x4F, 0x85, 0x86, 0xFE, 0xF8, + 0x52, 0x02, 0x7C, 0x85, 0x01, 0x0A, 0x51, 0xFE, 0xA5, 0x85, 0xD6, 0x53, + 0xFE, 0xE9, 0x6C, 0x6C, 0xFE, 0xEF, 0xDB, 0x36, 0xA2, 0xFE, 0xF3, 0x35, + 0xDB, 0x01, 0x11, 0x36, 0xD8, 0xD8, 0x35, 0x00, 0x03, 0xFC, 0xA0, 0xFD, + 0xDA, 0xFE, 0x79, 0xFF, 0xA6, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, + 0x00, 0x41, 0x23, 0x11, 0x33, 0x05, 0x35, 0x37, 0x17, 0x17, 0x15, 0x01, + 0x37, 0xFD, 0xC4, 0x70, 0x70, 0xFE, 0xDC, 0xED, 0x3C, 0xB0, 0xFE, 0xDA, + 0x3A, 0xFD, 0xDA, 0x01, 0x75, 0xF9, 0x81, 0xCF, 0x4B, 0x84, 0x81, 0x01, + 0x01, 0x4F, 0xFF, 0xFF, 0xFC, 0x42, 0x04, 0xF6, 0xFF, 0x2C, 0x07, 0xDA, + 0x04, 0x07, 0x0A, 0x28, 0xFB, 0xDE, 0x02, 0xA6, 0x00, 0x01, 0xFD, 0x4C, + 0x04, 0x60, 0xFE, 0x1F, 0x05, 0xEB, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x06, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x15, 0x26, 0x06, 0x15, 0x14, 0x16, 0x33, + 0xFE, 0x1F, 0x57, 0x7C, 0x7C, 0x57, 0x2C, 0x39, 0x39, 0x2C, 0x04, 0x61, + 0x01, 0x6C, 0x55, 0x56, 0x74, 0x5F, 0x01, 0x3E, 0x2E, 0x28, 0x3D, 0x00, + 0x02, 0xFC, 0x49, 0x04, 0x90, 0xFE, 0xC9, 0x06, 0xB5, 0x00, 0x0D, 0x00, + 0x19, 0x00, 0x00, 0x41, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, + 0x26, 0x36, 0x33, 0x32, 0x16, 0x01, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0xFE, 0xC9, 0xB2, 0x42, 0x4B, 0x4D, 0x43, + 0xB0, 0x01, 0xAE, 0x92, 0x95, 0xAB, 0xFE, 0x3C, 0x01, 0x46, 0x3E, 0x3E, + 0x47, 0x44, 0x41, 0x3E, 0x46, 0x05, 0x9B, 0x39, 0x54, 0x54, 0x39, 0x7C, + 0x9E, 0x9E, 0xFE, 0xF1, 0x33, 0x45, 0x45, 0x33, 0x30, 0x48, 0x45, 0x00, + 0x02, 0xFC, 0xDD, 0xFD, 0xEF, 0xFE, 0xB2, 0xFF, 0xC8, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x41, 0x27, 0x01, 0x17, 0x03, 0x01, 0x37, 0x01, 0xFD, + 0x3F, 0x62, 0x01, 0x73, 0x62, 0x64, 0xFE, 0x8F, 0x64, 0x01, 0x6E, 0xFD, + 0xF2, 0x64, 0x01, 0x6F, 0x63, 0xFE, 0x8D, 0x01, 0x75, 0x64, 0xFE, 0x8A, + 0xFF, 0xFF, 0xFC, 0xCF, 0xFD, 0xDC, 0xFE, 0xD8, 0xFF, 0xBB, 0x04, 0x07, + 0x0A, 0x34, 0xFC, 0x71, 0x00, 0x00, 0xFF, 0xFF, 0xFC, 0xE6, 0xFD, 0xDC, + 0xFE, 0xEF, 0xFF, 0xBB, 0x04, 0x07, 0x0A, 0x35, 0xFC, 0x88, 0x00, 0x00, + 0xFF, 0xFF, 0xFC, 0x26, 0xFD, 0xDC, 0x00, 0x45, 0xFF, 0xBB, 0x04, 0x27, + 0x0A, 0x35, 0xFB, 0xC8, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x33, 0xFD, 0xDF, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x42, 0x04, 0x83, 0x01, 0x3C, 0x06, 0x5F, + 0x00, 0x0F, 0x00, 0x00, 0x53, 0x35, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, + 0x35, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x42, 0x2F, 0x41, 0x40, + 0x30, 0x46, 0x71, 0x43, 0x42, 0x72, 0x04, 0x83, 0x7E, 0x41, 0x2F, 0x2F, + 0x41, 0x7E, 0x40, 0x6C, 0x42, 0x43, 0x6B, 0x40, 0xFF, 0xFF, 0x00, 0x68, + 0x04, 0xE4, 0x01, 0x75, 0x05, 0xE8, 0x06, 0x06, 0x0A, 0x8C, 0x00, 0x03, + 0x00, 0x01, 0xFC, 0xAC, 0xFD, 0xEC, 0xFE, 0x6A, 0xFF, 0xB7, 0x00, 0x0E, + 0x00, 0x00, 0x41, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17, + 0x07, 0x17, 0x07, 0x27, 0x07, 0xFC, 0xE0, 0x6B, 0x9F, 0x1B, 0x9F, 0x08, + 0x5D, 0x08, 0x9C, 0x1B, 0xA2, 0x68, 0x4A, 0x60, 0x5C, 0xFE, 0x24, 0x92, + 0x2E, 0x5A, 0x3E, 0xB7, 0xBA, 0x3B, 0x5A, 0x2E, 0x8E, 0x36, 0x97, 0x91, + 0x00, 0x04, 0xFC, 0x0E, 0xFE, 0x1F, 0xFF, 0x25, 0xFF, 0xBE, 0x00, 0x0B, + 0x00, 0x18, 0x00, 0x24, 0x00, 0x31, 0x00, 0x00, 0x41, 0x26, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x17, 0x26, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x14, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0xFC, 0x0F, + 0x01, 0x83, 0x5D, 0x5C, 0x82, 0x80, 0x5E, 0x5F, 0x81, 0x6E, 0x1C, 0x34, + 0x22, 0x32, 0x3F, 0x3F, 0x32, 0x33, 0x3F, 0xEA, 0x01, 0x82, 0x5D, 0x61, + 0x80, 0x83, 0x5E, 0x5D, 0x82, 0x6D, 0x1E, 0x33, 0x21, 0x32, 0x41, 0x41, + 0x32, 0x31, 0x41, 0xFE, 0xEC, 0x58, 0x7A, 0x7A, 0x58, 0x56, 0x77, 0x77, + 0x56, 0x1B, 0x33, 0x21, 0x44, 0x2B, 0x2E, 0x45, 0x45, 0x2E, 0x58, 0x7A, + 0x7C, 0x55, 0x57, 0x77, 0x77, 0x56, 0x1B, 0x33, 0x21, 0x44, 0x2B, 0x2F, + 0x44, 0x44, 0x00, 0x01, 0xFC, 0xD5, 0x04, 0x9E, 0xFE, 0x67, 0x06, 0x7E, + 0x00, 0x07, 0x00, 0x00, 0x41, 0x33, 0x07, 0x33, 0x03, 0x23, 0x37, 0x23, + 0xFD, 0x3D, 0x85, 0x3C, 0xE1, 0x6B, 0x85, 0x3F, 0xE1, 0x06, 0x7E, 0xB0, + 0xFE, 0xD0, 0xAE, 0xFF, 0xFF, 0xFC, 0xFF, 0xFE, 0x57, 0x02, 0x9D, 0xFF, + 0x97, 0x06, 0x07, 0x0A, 0xB1, 0xFF, 0xF2, 0xF9, 0xBE, 0x00, 0x01, 0xFD, + 0x0D, 0x04, 0x98, 0x02, 0xAB, 0x05, 0xD8, 0x00, 0x15, 0x00, 0x00, 0x43, + 0x22, 0x2E, 0x02, 0x27, 0x33, 0x1E, 0x03, 0x33, 0x32, 0x3E, 0x02, 0x37, + 0x33, 0x0E, 0x03, 0x24, 0x8F, 0xE8, 0xB4, 0x7F, 0x25, 0xB1, 0x1E, 0x67, + 0x8B, 0xAC, 0x62, 0x63, 0xAE, 0x8C, 0x65, 0x1B, 0xB2, 0x26, 0x7F, 0xB4, + 0xE8, 0x04, 0x98, 0x38, 0x5C, 0x71, 0x3B, 0x1C, 0x3E, 0x37, 0x22, 0x23, + 0x37, 0x3E, 0x1B, 0x3B, 0x72, 0x5C, 0x37, 0x00, 0x01, 0xFB, 0x5C, 0x05, + 0x35, 0x00, 0x00, 0x05, 0xD2, 0x00, 0x03, 0x00, 0x00, 0x51, 0x15, 0x21, + 0x35, 0xFB, 0x5C, 0x05, 0xD2, 0x9D, 0x9D, 0xFF, 0xFF, 0xFB, 0x5C, 0xFE, + 0x8D, 0x00, 0x00, 0xFF, 0x2B, 0x06, 0x07, 0x0A, 0xB2, 0x00, 0x00, 0xF9, + 0x59, 0x00, 0x01, 0xFC, 0x04, 0x04, 0xD9, 0x03, 0xA9, 0x05, 0xF9, 0x00, + 0x1A, 0x00, 0x00, 0x41, 0x27, 0x3E, 0x02, 0x33, 0x32, 0x0C, 0x03, 0x33, + 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x2C, 0x02, 0x26, 0x23, + 0x22, 0x06, 0xFC, 0x81, 0x7D, 0x0D, 0x53, 0x86, 0x58, 0x60, 0x01, 0x0B, + 0x01, 0x2D, 0x01, 0x2B, 0x01, 0x03, 0x58, 0x4B, 0x6F, 0x11, 0x7E, 0x0E, + 0xAE, 0x81, 0x72, 0xFE, 0xED, 0xFE, 0xDA, 0xFE, 0xE3, 0xFA, 0x5D, 0x49, + 0x6C, 0x04, 0xD9, 0x21, 0x41, 0x6B, 0x3F, 0x14, 0x1C, 0x1D, 0x13, 0x36, + 0x3E, 0x29, 0x68, 0x7B, 0x14, 0x1C, 0x1C, 0x13, 0x37, 0x00, 0x01, 0xFD, + 0x0D, 0x04, 0x8E, 0x02, 0xAB, 0x05, 0xCE, 0x00, 0x15, 0x00, 0x00, 0x41, + 0x23, 0x2E, 0x03, 0x23, 0x22, 0x0E, 0x02, 0x07, 0x23, 0x3E, 0x03, 0x33, + 0x32, 0x1E, 0x02, 0x02, 0xAB, 0xB2, 0x1B, 0x64, 0x8B, 0xAD, 0x66, 0x66, + 0xAD, 0x8A, 0x64, 0x1D, 0xB1, 0x27, 0x81, 0xB6, 0xE6, 0x8B, 0x8B, 0xE5, + 0xB5, 0x82, 0x04, 0x8E, 0x1B, 0x3E, 0x38, 0x24, 0x24, 0x38, 0x3E, 0x1B, + 0x3D, 0x73, 0x5A, 0x36, 0x35, 0x5A, 0x73, 0x00, 0x03, 0xFD, 0x05, 0xFD, + 0xD5, 0x03, 0x43, 0xFF, 0x8B, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, + 0x00, 0x41, 0x15, 0x21, 0x35, 0x01, 0x23, 0x01, 0x17, 0x25, 0x33, 0x05, + 0x07, 0x02, 0xCA, 0xFA, 0x3B, 0x05, 0x11, 0xC1, 0x01, 0x7E, 0x70, 0xFE, + 0x12, 0xC1, 0x01, 0x2D, 0x73, 0xFE, 0xE4, 0x66, 0x66, 0xFE, 0xF1, 0x01, + 0x14, 0x39, 0xDB, 0xDB, 0x33, 0xFF, 0xFF, 0x00, 0x6D, 0x04, 0xD9, 0x07, + 0x68, 0x05, 0xF4, 0x04, 0x27, 0x05, 0xDC, 0x00, 0x00, 0x04, 0xEA, 0x00, + 0x27, 0x05, 0xDC, 0x01, 0xF5, 0x04, 0xEA, 0x00, 0x27, 0x05, 0xDC, 0x03, + 0xEA, 0x04, 0xEA, 0x00, 0x07, 0x05, 0xDC, 0x05, 0xE0, 0x04, 0xEA, 0x00, + 0x02, 0x00, 0x90, 0x04, 0xEE, 0x02, 0xC3, 0x07, 0x1F, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x37, 0x13, 0x33, 0x03, 0x02, + 0xC1, 0xFD, 0xCF, 0xC8, 0x91, 0xDA, 0xCC, 0x05, 0x8A, 0x9C, 0x9C, 0x7E, + 0x01, 0x17, 0xFE, 0xE9, 0xFF, 0xFF, 0x00, 0x6D, 0x04, 0xD9, 0x05, 0x73, + 0x05, 0xF4, 0x04, 0x27, 0x05, 0xDC, 0x00, 0x00, 0x04, 0xEA, 0x00, 0x27, + 0x05, 0xDC, 0x01, 0xF5, 0x04, 0xEA, 0x00, 0x07, 0x05, 0xDC, 0x03, 0xEA, + 0x04, 0xEA, 0xFF, 0xFF, 0x00, 0x6D, 0xFE, 0x45, 0x05, 0x73, 0xFF, 0x60, + 0x04, 0x27, 0x05, 0xDC, 0x00, 0x00, 0xFE, 0x55, 0x00, 0x27, 0x05, 0xDC, + 0x01, 0xF5, 0xFE, 0x55, 0x00, 0x07, 0x05, 0xDC, 0x03, 0xEA, 0xFE, 0x55, + 0x00, 0x03, 0xFB, 0xA6, 0x04, 0x95, 0xFF, 0x28, 0x06, 0x00, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x13, 0x23, 0x01, 0x07, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x25, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xFD, 0x61, + 0xC6, 0xC6, 0xFE, 0xF1, 0xAC, 0x01, 0x46, 0x3F, 0x3F, 0x44, 0x45, 0x3E, + 0x3F, 0x46, 0x02, 0x79, 0x46, 0x3D, 0x41, 0x44, 0x46, 0x3F, 0x3D, 0x46, + 0x06, 0x00, 0xFE, 0xD3, 0x01, 0x2D, 0xF6, 0x35, 0x45, 0x47, 0x33, 0x32, + 0x43, 0x43, 0x95, 0x35, 0x44, 0x46, 0x33, 0x32, 0x44, 0x44, 0x00, 0x03, + 0xFB, 0x9E, 0x04, 0x95, 0xFF, 0x22, 0x06, 0x00, 0x00, 0x0B, 0x00, 0x0F, + 0x00, 0x1B, 0x00, 0x00, 0x41, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x06, + 0x06, 0x23, 0x22, 0x26, 0x05, 0x13, 0x21, 0x01, 0x25, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xFE, 0x15, 0x01, 0x47, + 0x40, 0x3E, 0x46, 0x01, 0x01, 0x46, 0x3E, 0x40, 0x47, 0xFE, 0x94, 0xC5, + 0x01, 0x0E, 0xFE, 0xE9, 0xFE, 0x38, 0x44, 0x40, 0x3E, 0x47, 0x47, 0x3E, + 0x40, 0x44, 0x05, 0x0A, 0x33, 0x47, 0x47, 0x33, 0x30, 0x45, 0x45, 0x07, + 0x01, 0x2D, 0xFE, 0xD3, 0x9A, 0x33, 0x46, 0x44, 0x35, 0x32, 0x44, 0x46, + 0x00, 0x01, 0xFC, 0xDC, 0xFD, 0xD4, 0xFE, 0x37, 0xFF, 0xAB, 0x00, 0x31, + 0x00, 0x00, 0x45, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x0E, 0x03, 0x15, + 0x14, 0x1E, 0x02, 0x15, 0x14, 0x0E, 0x02, 0x15, 0x14, 0x16, 0x17, 0x07, + 0x26, 0x26, 0x35, 0x34, 0x3E, 0x02, 0x35, 0x34, 0x2E, 0x02, 0x35, 0x34, + 0x3E, 0x02, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0xFC, 0xDC, 0x2D, + 0x6A, 0x32, 0x44, 0x43, 0x01, 0x01, 0x2A, 0x38, 0x2B, 0x2F, 0x3B, 0x2E, + 0x2E, 0x3B, 0x2F, 0x41, 0x3C, 0x11, 0x67, 0x89, 0x2E, 0x3B, 0x2E, 0x2E, + 0x3B, 0x2E, 0x30, 0x3D, 0x30, 0x15, 0x0F, 0x23, 0x44, 0x1D, 0x89, 0x1A, + 0x1A, 0x3A, 0x28, 0x1F, 0x21, 0x11, 0x0C, 0x09, 0x08, 0x0A, 0x0E, 0x1A, + 0x18, 0x1A, 0x1A, 0x0B, 0x09, 0x08, 0x07, 0x0D, 0x06, 0x53, 0x08, 0x37, + 0x2C, 0x1A, 0x19, 0x0A, 0x09, 0x09, 0x08, 0x09, 0x0C, 0x17, 0x17, 0x16, + 0x1D, 0x14, 0x10, 0x08, 0x0D, 0x09, 0x16, 0x10, 0x00, 0x02, 0xFC, 0x9F, + 0x04, 0xB0, 0xFF, 0x40, 0x06, 0x24, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, + 0x41, 0x17, 0x05, 0x27, 0x27, 0x37, 0x05, 0x07, 0xFE, 0xED, 0x53, 0xFE, + 0x67, 0x53, 0xB5, 0x53, 0x01, 0x05, 0x50, 0x06, 0x24, 0x8B, 0xE9, 0x8B, + 0x0A, 0x8B, 0x95, 0x8B, 0x00, 0x01, 0xFC, 0x14, 0x04, 0xD3, 0xFE, 0xE7, + 0x06, 0x00, 0x00, 0x05, 0x00, 0x00, 0x41, 0x03, 0x33, 0x17, 0x21, 0x15, + 0xFC, 0xFC, 0xE8, 0xFA, 0x47, 0x01, 0x92, 0x04, 0xD3, 0x01, 0x2D, 0x91, + 0x9C, 0x00, 0x01, 0xFC, 0x7C, 0x04, 0xD3, 0xFF, 0x41, 0x06, 0x00, 0x00, + 0x05, 0x00, 0x00, 0x41, 0x35, 0x21, 0x13, 0x23, 0x27, 0xFC, 0x7C, 0x02, + 0x02, 0xC3, 0xC1, 0x84, 0x05, 0x65, 0x9B, 0xFE, 0xD3, 0x92, 0x00, 0x01, + 0xFC, 0x45, 0x04, 0xD3, 0xFF, 0x09, 0x06, 0x00, 0x00, 0x05, 0x00, 0x00, + 0x41, 0x13, 0x21, 0x15, 0x21, 0x07, 0xFC, 0x45, 0xC4, 0x02, 0x00, 0xFE, + 0x81, 0x83, 0x04, 0xD3, 0x01, 0x2D, 0x9B, 0x92, 0x00, 0x01, 0xFB, 0xF7, + 0x04, 0xD3, 0xFF, 0x61, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x41, 0x03, + 0x33, 0x17, 0x37, 0x21, 0x13, 0x23, 0x27, 0x07, 0xFC, 0xC5, 0xCE, 0xEC, + 0x5B, 0x64, 0x01, 0x2F, 0x90, 0xB1, 0x7D, 0x81, 0x04, 0xD3, 0x01, 0x2D, + 0x9F, 0x9F, 0xFE, 0xD3, 0xAA, 0xAA, 0x00, 0x01, 0xFC, 0x3A, 0x04, 0xD3, + 0xFF, 0xA3, 0x06, 0x00, 0x00, 0x09, 0x00, 0x00, 0x41, 0x13, 0x21, 0x17, + 0x37, 0x33, 0x03, 0x23, 0x27, 0x07, 0xFC, 0x3A, 0x8D, 0x01, 0x31, 0x60, + 0x60, 0xEB, 0xCE, 0xEC, 0x87, 0x7D, 0x04, 0xD3, 0x01, 0x2D, 0x9F, 0x9F, + 0xFE, 0xD3, 0xAA, 0xAA, 0x00, 0x01, 0xFB, 0x2C, 0x04, 0xCD, 0x00, 0x04, + 0x05, 0xE3, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x21, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x35, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x21, 0x04, 0xFD, + 0x79, 0x29, 0x90, 0x57, 0x93, 0xAE, 0xB1, 0x01, 0x40, 0x4F, 0x4D, 0x40, + 0x03, 0x0A, 0x05, 0x47, 0x3E, 0x3C, 0x9B, 0x7B, 0x37, 0x55, 0x55, 0x37, + 0x00, 0x01, 0xFB, 0x07, 0x04, 0xCD, 0xFF, 0xDE, 0x05, 0xE3, 0x00, 0x0F, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x27, 0x21, 0x35, 0x21, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0xFE, 0x9D, 0x58, 0x90, 0x2B, 0xFD, + 0x7D, 0x03, 0x08, 0x41, 0x4D, 0x4D, 0x40, 0xB4, 0xAD, 0x04, 0xCD, 0x3D, + 0x3D, 0x9C, 0x37, 0x55, 0x55, 0x37, 0x7B, 0x9B, 0x00, 0x01, 0xFC, 0x65, + 0x04, 0xA3, 0x03, 0x52, 0x05, 0xEE, 0x00, 0x08, 0x00, 0x00, 0x53, 0x05, + 0x15, 0x07, 0x25, 0x05, 0x27, 0x35, 0x25, 0x21, 0x03, 0x31, 0xD5, 0xFD, + 0x5D, 0xFD, 0x5E, 0xD3, 0x03, 0x2F, 0x05, 0xEE, 0xF1, 0x17, 0x43, 0xD2, + 0xD2, 0x43, 0x1A, 0xEE, 0x00, 0x01, 0xFC, 0xD2, 0x03, 0xFA, 0xFE, 0x46, + 0x05, 0xCC, 0x00, 0x13, 0x00, 0x00, 0x41, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x07, 0x27, 0x36, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, + 0x36, 0x36, 0xFD, 0x61, 0x69, 0x7C, 0x5C, 0x66, 0xA4, 0x50, 0x47, 0x29, + 0x2C, 0x10, 0x23, 0x0F, 0x0E, 0x1F, 0x4B, 0x05, 0xCC, 0x64, 0x5F, 0x4D, + 0x83, 0x3F, 0x2C, 0x41, 0x53, 0x2B, 0x22, 0x24, 0x03, 0x03, 0x9C, 0x04, + 0x07, 0x00, 0x03, 0xFC, 0xA7, 0xFD, 0xD4, 0xFE, 0x6D, 0xFF, 0x8E, 0x00, + 0x03, 0x00, 0x07, 0x00, 0x0B, 0x00, 0x00, 0x45, 0x03, 0x23, 0x13, 0x05, + 0x03, 0x23, 0x13, 0x07, 0x35, 0x33, 0x15, 0xFD, 0x93, 0x53, 0x99, 0x54, + 0x01, 0x72, 0x53, 0x9B, 0x54, 0xC0, 0xFF, 0x72, 0xFE, 0xEA, 0x01, 0x16, + 0xA2, 0xFE, 0xE8, 0x01, 0x18, 0x74, 0x74, 0x74, 0x00, 0x01, 0xFC, 0x9E, + 0xFE, 0x14, 0xFF, 0x83, 0xFF, 0xC0, 0x00, 0x19, 0x00, 0x00, 0x45, 0x33, + 0x07, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, + 0x0E, 0x02, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0xFD, + 0x2F, 0x96, 0x62, 0x29, 0x46, 0x19, 0x27, 0x3F, 0x3C, 0x22, 0x1D, 0x35, + 0x0B, 0x77, 0x05, 0x28, 0x4F, 0x3F, 0x37, 0x5F, 0x56, 0x2C, 0x2D, 0x51, + 0x31, 0x63, 0x40, 0xF7, 0x19, 0x16, 0x20, 0x21, 0x25, 0x2C, 0x24, 0x33, + 0x5F, 0x3E, 0x26, 0x26, 0x20, 0x1A, 0x2F, 0x00, 0x01, 0xFC, 0x65, 0x04, + 0x7B, 0xFE, 0xB1, 0x05, 0xDC, 0x00, 0x26, 0x00, 0x00, 0x41, 0x32, 0x36, + 0x35, 0x34, 0x26, 0x27, 0x35, 0x36, 0x16, 0x16, 0x15, 0x14, 0x06, 0x23, + 0x22, 0x26, 0x27, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x17, + 0x15, 0x26, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, 0x16, 0x16, + 0xFE, 0x0A, 0x1C, 0x20, 0x24, 0x2E, 0x2E, 0x57, 0x38, 0x59, 0x53, 0x49, + 0x4F, 0x1A, 0x0D, 0x22, 0x19, 0x1D, 0x1E, 0x2A, 0x1D, 0x4B, 0x67, 0x5E, + 0x49, 0x4A, 0x52, 0x14, 0x10, 0x24, 0x04, 0xE1, 0x24, 0x1F, 0x1F, 0x35, + 0x03, 0x60, 0x01, 0x2A, 0x51, 0x3B, 0x48, 0x63, 0x4D, 0x52, 0x29, 0x22, + 0x1D, 0x1E, 0x25, 0x21, 0x03, 0x63, 0x01, 0x60, 0x4C, 0x48, 0x5A, 0x52, + 0x3F, 0x34, 0x27, 0x00, 0x01, 0xFC, 0x6E, 0x04, 0x7E, 0xFE, 0xB3, 0x07, + 0x7A, 0x00, 0x24, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x0E, 0x02, 0x07, 0x27, 0x3E, 0x02, + 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0xFD, 0x68, 0x3F, 0x73, 0x48, 0x4B, 0x80, 0x4D, + 0x81, 0xAC, 0x45, 0x71, 0x87, 0x43, 0x2C, 0x3F, 0x84, 0x5A, 0x57, 0x42, + 0x3F, 0x53, 0x47, 0x3C, 0x1E, 0x2F, 0x14, 0x1A, 0x19, 0x45, 0x05, 0x92, + 0x2E, 0x66, 0x52, 0x4D, 0x74, 0x41, 0xA3, 0x90, 0x72, 0x9E, 0x69, 0x3F, + 0x11, 0x6F, 0x15, 0x44, 0x88, 0x77, 0x63, 0x62, 0x4B, 0x3F, 0x48, 0x3F, + 0x09, 0x09, 0x53, 0x12, 0x15, 0x00, 0x02, 0xFC, 0x9E, 0x03, 0xCB, 0xFE, + 0x8D, 0x06, 0xE0, 0x00, 0x0F, 0x00, 0x2E, 0x00, 0x00, 0x41, 0x33, 0x07, + 0x16, 0x16, 0x15, 0x14, 0x06, 0x23, 0x27, 0x16, 0x36, 0x35, 0x34, 0x26, + 0x27, 0x37, 0x2E, 0x02, 0x35, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x17, + 0x23, 0x26, 0x26, 0x23, 0x22, 0x06, 0x06, 0x15, 0x15, 0x1E, 0x02, 0x33, + 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0xFD, 0x6B, 0x5E, 0x06, 0x1F, 0x33, + 0x5B, 0x58, 0x05, 0x20, 0x23, 0x24, 0x24, 0x4A, 0x59, 0x74, 0x37, 0x7F, + 0x85, 0x6F, 0x79, 0x03, 0x86, 0x01, 0x32, 0x33, 0x29, 0x35, 0x19, 0x01, + 0x18, 0x34, 0x2A, 0x2D, 0x34, 0x05, 0x86, 0x03, 0x87, 0x04, 0xAE, 0x1C, + 0x06, 0x22, 0x2E, 0x34, 0x3D, 0x4C, 0x01, 0x12, 0x17, 0x13, 0x0F, 0x04, + 0x3D, 0x01, 0x4D, 0x7E, 0x4B, 0x12, 0x71, 0xA4, 0x79, 0x55, 0x21, 0x3B, + 0x2D, 0x4A, 0x2C, 0x12, 0x2D, 0x4B, 0x2C, 0x2C, 0x22, 0x4F, 0x71, 0x00, + 0x03, 0xFC, 0x8A, 0x04, 0xA3, 0xFE, 0x8C, 0x07, 0xC8, 0x00, 0x04, 0x00, + 0x13, 0x00, 0x21, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x07, 0x17, 0x2E, + 0x02, 0x27, 0x35, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x06, 0x06, + 0x27, 0x32, 0x36, 0x35, 0x35, 0x36, 0x26, 0x23, 0x22, 0x06, 0x07, 0x15, + 0x16, 0x16, 0xFC, 0x8A, 0x8D, 0x14, 0xA6, 0x44, 0x5E, 0x34, 0x08, 0x0C, + 0x6B, 0x66, 0x6B, 0x79, 0x01, 0x78, 0x88, 0x3C, 0x37, 0x01, 0x39, 0x3C, + 0x34, 0x44, 0x0B, 0x0C, 0x42, 0x04, 0xB2, 0x03, 0x16, 0xFD, 0x56, 0x6C, + 0x0F, 0x01, 0x3C, 0x72, 0x52, 0x3B, 0x7D, 0x84, 0x9B, 0x7F, 0x0B, 0x78, + 0x9F, 0x72, 0x5B, 0x4A, 0x0B, 0x4C, 0x5D, 0x42, 0x3D, 0x60, 0x38, 0x42, + 0x00, 0x01, 0xFC, 0x92, 0x04, 0xA2, 0xFE, 0x88, 0x06, 0xE0, 0x00, 0x21, + 0x00, 0x00, 0x41, 0x26, 0x26, 0x35, 0x35, 0x21, 0x15, 0x21, 0x15, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x07, + 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, 0x06, 0x06, + 0xFD, 0x85, 0x79, 0x7A, 0x01, 0xAE, 0xFE, 0xDA, 0x33, 0x39, 0x3D, 0x36, + 0x45, 0x42, 0x2F, 0x45, 0x1A, 0x45, 0x1A, 0x6A, 0x55, 0x56, 0x7A, 0x40, + 0x43, 0x75, 0x04, 0xA2, 0x01, 0x9B, 0x75, 0x35, 0x5B, 0x08, 0x32, 0x3E, + 0x5B, 0x50, 0x15, 0x45, 0x54, 0x1F, 0x22, 0x4A, 0x27, 0x42, 0x46, 0x7A, + 0x4C, 0x14, 0x58, 0x80, 0x45, 0x00, 0x02, 0xFC, 0xDE, 0x04, 0xB2, 0xFE, + 0x56, 0x07, 0xD8, 0x00, 0x03, 0x00, 0x13, 0x00, 0x00, 0x41, 0x15, 0x21, + 0x35, 0x13, 0x23, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0xFE, 0x2D, 0xFE, 0xB1, 0xEF, 0x90, 0x01, + 0x76, 0x57, 0x12, 0x22, 0x17, 0x09, 0x0C, 0x16, 0x0C, 0x22, 0x30, 0x06, + 0xE0, 0x6F, 0x6F, 0xFD, 0xD2, 0x02, 0x60, 0x62, 0x64, 0x06, 0x04, 0x6D, + 0x03, 0x03, 0x2A, 0x2B, 0x00, 0x03, 0xFC, 0xD0, 0x04, 0xB2, 0xFE, 0x44, + 0x07, 0xC8, 0x00, 0x15, 0x00, 0x2B, 0x00, 0x2F, 0x00, 0x00, 0x41, 0x17, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0x17, 0x17, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, 0x27, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, 0x03, 0x33, 0x11, 0x23, 0xFE, 0x06, + 0x3E, 0x3D, 0x2E, 0x23, 0x2F, 0x29, 0x1C, 0x14, 0x1D, 0x41, 0x3D, 0x30, + 0x1C, 0x30, 0x30, 0x1B, 0x13, 0x1E, 0x01, 0x3E, 0x3C, 0x2F, 0x23, 0x2F, + 0x29, 0x1C, 0x14, 0x1D, 0x41, 0x3D, 0x30, 0x1C, 0x30, 0x30, 0x1B, 0x13, + 0x1E, 0xBF, 0x8C, 0x8C, 0x06, 0xD6, 0x15, 0x2F, 0x45, 0x17, 0x16, 0x21, + 0x17, 0x13, 0x2C, 0x4A, 0x17, 0x18, 0x21, 0x82, 0x11, 0x2E, 0x46, 0x16, + 0x17, 0x24, 0x14, 0x0F, 0x2E, 0x4A, 0x17, 0x17, 0x21, 0x01, 0xA3, 0xFC, + 0xEA, 0x00, 0x03, 0xFC, 0x45, 0x03, 0xF0, 0xFE, 0x94, 0x06, 0xE0, 0x00, + 0x03, 0x00, 0x11, 0x00, 0x1F, 0x00, 0x00, 0x41, 0x13, 0x17, 0x03, 0x37, + 0x26, 0x26, 0x35, 0x35, 0x36, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x06, + 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, 0x23, 0x22, 0x06, 0x15, + 0x15, 0x14, 0x16, 0xFC, 0x45, 0xA7, 0x6F, 0xA8, 0xD7, 0x77, 0x92, 0x01, + 0x91, 0x77, 0x7A, 0x90, 0x01, 0x8F, 0x7A, 0x42, 0x3C, 0x01, 0x3B, 0x42, + 0x41, 0x3B, 0x3B, 0x04, 0x2E, 0x01, 0x0C, 0x40, 0xFE, 0xF6, 0xB2, 0x01, + 0x9A, 0x7D, 0x0C, 0x7E, 0x9C, 0x9C, 0x7E, 0x0C, 0x7D, 0x9A, 0x72, 0x5A, + 0x4B, 0x0C, 0x4A, 0x5E, 0x5D, 0x4B, 0x0C, 0x4A, 0x5B, 0x00, 0x03, 0xFC, + 0x9A, 0x03, 0xBE, 0xFE, 0x9C, 0x06, 0xE3, 0x00, 0x04, 0x00, 0x13, 0x00, + 0x21, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x33, 0x37, 0x16, 0x16, 0x15, + 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x3E, 0x02, 0x17, 0x22, + 0x06, 0x07, 0x15, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, + 0xFD, 0x28, 0x8E, 0x7B, 0xA6, 0x67, 0x7A, 0x78, 0x69, 0x6C, 0x68, 0x0A, + 0x07, 0x32, 0x5E, 0x27, 0x35, 0x41, 0x0C, 0x08, 0x44, 0x36, 0x39, 0x3D, + 0x01, 0x3B, 0x06, 0x68, 0xFD, 0x56, 0x03, 0x16, 0x0F, 0x01, 0x9F, 0x78, + 0x0B, 0x7D, 0x9D, 0x8A, 0x77, 0x3B, 0x4E, 0x73, 0x40, 0x73, 0x40, 0x3A, + 0x60, 0x3D, 0x42, 0x5E, 0x4B, 0x0B, 0x4A, 0x5B, 0x00, 0x02, 0xFC, 0xB6, + 0x03, 0xBC, 0xFE, 0x56, 0x07, 0xD8, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, + 0x41, 0x23, 0x11, 0x36, 0x36, 0x33, 0x32, 0x16, 0x17, 0x07, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x07, 0x33, 0x11, 0x16, 0x06, 0x23, 0x22, 0x26, + 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0xFD, 0xCD, 0x8F, 0x01, + 0x76, 0x57, 0x11, 0x21, 0x18, 0x09, 0x0C, 0x15, 0x0D, 0x22, 0x30, 0x8F, + 0x8F, 0x01, 0x76, 0x57, 0x12, 0x25, 0x14, 0x08, 0x0B, 0x17, 0x0E, 0x21, + 0x2F, 0x04, 0xB2, 0x02, 0x60, 0x62, 0x64, 0x06, 0x04, 0x6D, 0x03, 0x03, + 0x2A, 0x2B, 0x2E, 0xFD, 0xA0, 0x63, 0x65, 0x07, 0x04, 0x6C, 0x02, 0x04, + 0x29, 0x2E, 0x00, 0x03, 0xFC, 0x40, 0x03, 0xF0, 0xFE, 0x79, 0x06, 0xDA, + 0x00, 0x03, 0x00, 0x08, 0x00, 0x19, 0x00, 0x00, 0x41, 0x13, 0x17, 0x03, + 0x01, 0x11, 0x33, 0x11, 0x23, 0x03, 0x37, 0x14, 0x06, 0x23, 0x22, 0x26, + 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0x36, 0xFC, 0x40, + 0xA7, 0x6F, 0xA8, 0x01, 0x3C, 0x8F, 0x70, 0x0C, 0x31, 0x67, 0x70, 0x57, + 0x67, 0x8E, 0x28, 0x33, 0x2D, 0x37, 0x17, 0x04, 0x2E, 0x01, 0x0C, 0x40, + 0xFE, 0xF6, 0x01, 0x43, 0x01, 0xA7, 0xFD, 0xD8, 0x01, 0x00, 0x02, 0x76, + 0x96, 0x6D, 0x7A, 0x01, 0x4B, 0xFE, 0xB5, 0x37, 0x3F, 0x28, 0x45, 0x00, + 0x04, 0xFC, 0x0D, 0x04, 0xB2, 0xFF, 0x07, 0x06, 0xDA, 0x00, 0x05, 0x00, + 0x0A, 0x00, 0x0F, 0x00, 0x15, 0x00, 0x00, 0x41, 0x13, 0x33, 0x07, 0x03, + 0x23, 0x03, 0x13, 0x17, 0x23, 0x03, 0x01, 0x13, 0x33, 0x03, 0x23, 0x03, + 0x13, 0x17, 0x23, 0x03, 0x27, 0xFC, 0xE4, 0x69, 0x6B, 0x3D, 0x68, 0x4A, + 0x32, 0x50, 0x15, 0x59, 0x96, 0x02, 0x23, 0x4B, 0x8C, 0x96, 0x5B, 0x50, + 0x66, 0x1C, 0x47, 0x68, 0x40, 0x05, 0x74, 0x01, 0x66, 0xDD, 0xFE, 0xB5, + 0x02, 0x28, 0xFE, 0x9A, 0xC2, 0x02, 0x28, 0xFE, 0x9C, 0x01, 0x64, 0xFD, + 0xD8, 0x02, 0x28, 0xFE, 0x9A, 0xC2, 0x01, 0x4B, 0xDD, 0x00, 0x04, 0xFC, + 0xA3, 0x04, 0xA8, 0xFE, 0x97, 0x07, 0xAB, 0x00, 0x0B, 0x00, 0x17, 0x00, + 0x2D, 0x00, 0x43, 0x00, 0x00, 0x41, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x23, 0x22, 0x26, 0x13, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x27, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x15, 0x06, 0x16, 0x17, + 0x23, 0x26, 0x26, 0x37, 0x15, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, + 0x32, 0x36, 0x35, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x35, 0x34, 0x36, + 0x33, 0xFC, 0xCD, 0x2D, 0x23, 0x27, 0x2A, 0x2A, 0x27, 0x26, 0x2A, 0xFD, + 0x2B, 0x27, 0x25, 0x2B, 0x2B, 0x25, 0x27, 0x2B, 0x2C, 0x28, 0x2A, 0x2B, + 0x31, 0x87, 0x01, 0x80, 0x66, 0x61, 0x7F, 0x01, 0x07, 0x0B, 0x8D, 0x08, + 0x0C, 0x10, 0x69, 0x35, 0x38, 0x29, 0x27, 0x2D, 0x4F, 0x13, 0x10, 0x58, + 0x4C, 0x53, 0x65, 0x82, 0x77, 0x07, 0x61, 0x1F, 0x2B, 0x2B, 0x1F, 0x20, + 0x2A, 0x2B, 0x1F, 0x1F, 0x2B, 0x2B, 0x1F, 0x21, 0x29, 0x29, 0xFD, 0xE9, + 0xF3, 0x29, 0x2C, 0x23, 0x1F, 0x07, 0x48, 0x63, 0x66, 0x62, 0xE3, 0x1F, + 0x43, 0x22, 0x19, 0x3B, 0xF2, 0x56, 0x31, 0x1E, 0x1D, 0x20, 0x35, 0x18, + 0x51, 0x23, 0x47, 0x5A, 0x4C, 0x50, 0x5A, 0x00, 0x04, 0xFC, 0x82, 0x04, + 0xA2, 0xFE, 0x94, 0x07, 0xAB, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x25, 0x00, + 0x33, 0x00, 0x00, 0x41, 0x26, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x37, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, + 0x23, 0x22, 0x26, 0x03, 0x26, 0x26, 0x35, 0x35, 0x36, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x15, 0x14, 0x06, 0x27, 0x32, 0x36, 0x35, 0x35, 0x26, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0xFC, 0xBE, 0x01, 0x2B, 0x26, + 0x27, 0x29, 0x29, 0x27, 0x26, 0x2B, 0xFC, 0x2C, 0x26, 0x24, 0x2D, 0x2D, + 0x24, 0x26, 0x2C, 0x2D, 0x78, 0x92, 0x01, 0x91, 0x78, 0x79, 0x8F, 0x8F, + 0x79, 0x42, 0x3B, 0x01, 0x3A, 0x42, 0x41, 0x3C, 0x3C, 0x07, 0x61, 0x1F, + 0x2B, 0x2B, 0x1F, 0x20, 0x2A, 0x2B, 0x1F, 0x1F, 0x2B, 0x2B, 0x1F, 0x21, + 0x29, 0x29, 0xFD, 0x62, 0x01, 0x9A, 0x7D, 0x0C, 0x7E, 0x9C, 0x9D, 0x7D, + 0x0C, 0x7A, 0x9D, 0x72, 0x5B, 0x4A, 0x0C, 0x4B, 0x5D, 0x5D, 0x4B, 0x0C, + 0x4A, 0x5B, 0x00, 0x04, 0xFC, 0x9B, 0x04, 0xA8, 0xFE, 0x7B, 0x07, 0xAB, + 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1C, 0x00, 0x2C, 0x00, 0x00, 0x41, 0x34, + 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x37, 0x26, + 0x36, 0x33, 0x32, 0x16, 0x07, 0x16, 0x06, 0x23, 0x22, 0x26, 0x13, 0x11, + 0x33, 0x11, 0x23, 0x03, 0x37, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x11, + 0x33, 0x11, 0x14, 0x16, 0x33, 0x32, 0x36, 0xFC, 0xBA, 0x2C, 0x24, 0x26, + 0x2D, 0x2C, 0x27, 0x24, 0x2C, 0xFE, 0x01, 0x2A, 0x25, 0x28, 0x2A, 0x01, + 0x01, 0x2A, 0x28, 0x25, 0x2A, 0x36, 0x8E, 0x70, 0x0C, 0x31, 0x67, 0x70, + 0x57, 0x67, 0x8D, 0x2E, 0x2D, 0x43, 0x39, 0x07, 0x61, 0x1F, 0x2B, 0x2B, + 0x1F, 0x21, 0x29, 0x29, 0x21, 0x1F, 0x2B, 0x2B, 0x1F, 0x21, 0x29, 0x29, + 0xFD, 0xF3, 0x01, 0xA7, 0xFD, 0xD8, 0x01, 0x00, 0x02, 0x75, 0x97, 0x6D, + 0x7A, 0x01, 0x4B, 0xFE, 0xB5, 0x3C, 0x3A, 0x51, 0xFF, 0xFF, 0xFD, 0x00, + 0x04, 0x93, 0xFE, 0xB4, 0x06, 0x00, 0x04, 0x07, 0x0A, 0x42, 0xFC, 0x78, + 0x03, 0xED, 0x00, 0x01, 0xFC, 0xF9, 0xFE, 0x5E, 0x02, 0x95, 0xFF, 0x9E, + 0x00, 0x15, 0x00, 0x00, 0x41, 0x23, 0x2E, 0x03, 0x23, 0x22, 0x0E, 0x02, + 0x07, 0x23, 0x3E, 0x03, 0x33, 0x32, 0x1E, 0x02, 0x02, 0x95, 0xB1, 0x1C, + 0x65, 0x8C, 0xAC, 0x63, 0x63, 0xAC, 0x8B, 0x66, 0x1D, 0xB2, 0x27, 0x82, + 0xB6, 0xE6, 0x8A, 0x89, 0xE6, 0xB5, 0x83, 0xFE, 0x5E, 0x1C, 0x3E, 0x37, + 0x23, 0x23, 0x37, 0x3E, 0x1C, 0x3E, 0x73, 0x5B, 0x34, 0x33, 0x5A, 0x74, + 0x00, 0x02, 0xFC, 0x4A, 0xFE, 0x07, 0xFF, 0x2A, 0xFF, 0xB7, 0x00, 0x17, + 0x00, 0x2F, 0x00, 0x00, 0x41, 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x07, 0x27, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x17, 0x14, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x26, 0x23, 0x22, 0x06, 0xFC, 0xDA, 0x90, 0x3A, 0x66, 0x3E, 0x38, 0x52, + 0x52, 0x35, 0x26, 0x37, 0x94, 0x3E, 0x66, 0x3F, 0x42, 0x4F, 0x47, 0x36, + 0x26, 0x38, 0x01, 0x90, 0x3A, 0x66, 0x3E, 0x38, 0x52, 0x52, 0x35, 0x26, + 0x37, 0x94, 0x3D, 0x65, 0x3F, 0x42, 0x51, 0x47, 0x36, 0x26, 0x38, 0xFE, + 0xE0, 0x07, 0x38, 0x59, 0x34, 0x22, 0x23, 0x2C, 0x24, 0x0A, 0x39, 0x58, + 0x31, 0x22, 0x23, 0x2D, 0xFC, 0x07, 0x37, 0x58, 0x34, 0x23, 0x22, 0x2E, + 0x23, 0x0A, 0x37, 0x58, 0x31, 0x22, 0x23, 0x2E, 0xFF, 0xFF, 0xFC, 0x58, + 0x04, 0x9C, 0xFF, 0x43, 0x07, 0x80, 0x04, 0x07, 0x0A, 0x27, 0xFB, 0xF5, + 0x02, 0x4C, 0x00, 0x04, 0xFB, 0x0A, 0xFD, 0xDD, 0x00, 0x89, 0xFF, 0xBB, + 0x00, 0x04, 0x00, 0x09, 0x00, 0x0E, 0x00, 0x13, 0x00, 0x00, 0x41, 0x37, + 0x13, 0x33, 0x01, 0x05, 0x35, 0x25, 0x25, 0x15, 0x35, 0x25, 0x25, 0x35, + 0x05, 0x13, 0x01, 0x33, 0x13, 0x17, 0xFE, 0xDE, 0x4F, 0xAD, 0xAF, 0xFE, + 0xD9, 0xFB, 0xA8, 0x01, 0xBE, 0x01, 0x09, 0xFE, 0xF7, 0xFE, 0x42, 0x02, + 0xC7, 0xF2, 0xFE, 0xDC, 0xAF, 0xA5, 0x54, 0xFD, 0xE3, 0xB6, 0x01, 0x1C, + 0xFE, 0x2E, 0x06, 0x84, 0x6C, 0x20, 0x52, 0x10, 0x20, 0x6C, 0x84, 0xBC, + 0xFE, 0xE4, 0x01, 0xD2, 0xFE, 0xE4, 0xB6, 0x00, 0x01, 0xFC, 0x33, 0x04, + 0xE2, 0xFF, 0x21, 0x07, 0xD7, 0x00, 0x11, 0x00, 0x00, 0x41, 0x37, 0x07, + 0x27, 0x37, 0x27, 0x37, 0x17, 0x27, 0x33, 0x07, 0x37, 0x17, 0x07, 0x17, + 0x07, 0x27, 0x17, 0xFD, 0x54, 0x0A, 0xD4, 0x56, 0xDB, 0xDC, 0x57, 0xD2, + 0x08, 0xAC, 0x08, 0xD2, 0x57, 0xDA, 0xDA, 0x57, 0xD2, 0x08, 0x04, 0xE2, + 0xF5, 0x82, 0x92, 0x75, 0x73, 0x95, 0x84, 0xF7, 0xF6, 0x83, 0x95, 0x72, + 0x72, 0x95, 0x81, 0xF5, 0xFF, 0xFF, 0x00, 0x90, 0x05, 0x00, 0x02, 0xC1, + 0x05, 0x9D, 0x04, 0x06, 0x06, 0xEB, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x7B, + 0x04, 0xB6, 0x01, 0xF1, 0x05, 0xE4, 0x04, 0x06, 0x06, 0xE8, 0x14, 0x00, + 0xFF, 0xFF, 0x00, 0xA3, 0x04, 0xB6, 0x02, 0x19, 0x05, 0xE4, 0x04, 0x06, + 0x06, 0xE9, 0x4B, 0x00, 0x00, 0x02, 0x00, 0x4A, 0x00, 0x00, 0x02, 0xAC, + 0x03, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x65, 0x15, 0x21, 0x35, + 0x13, 0x11, 0x23, 0x11, 0x02, 0xAC, 0xFE, 0x28, 0x5E, 0xE8, 0xBB, 0xBB, + 0xBB, 0x02, 0xD1, 0xFC, 0x74, 0x03, 0x8C, 0x00, 0x02, 0x00, 0x61, 0x00, + 0x00, 0x02, 0x95, 0x03, 0x8C, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, + 0x15, 0x21, 0x35, 0x13, 0x11, 0x23, 0x11, 0x02, 0x95, 0xFE, 0x57, 0x5F, + 0xEA, 0x02, 0x26, 0xBB, 0xBB, 0x01, 0x66, 0xFC, 0x74, 0x03, 0x8C, 0x00, + 0x03, 0x00, 0xEE, 0x04, 0xBC, 0x03, 0x9F, 0x07, 0x1F, 0x00, 0x0B, 0x00, + 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x13, 0x33, 0x03, 0x03, 0x1C, 0x36, + 0x4C, 0x4C, 0x37, 0x36, 0x4C, 0x4C, 0xFE, 0x1E, 0x37, 0x4C, 0x4C, 0x37, + 0x37, 0x4C, 0x4C, 0x52, 0x91, 0xD9, 0xCB, 0x04, 0xBC, 0x4C, 0x35, 0x36, + 0x4B, 0x4B, 0x36, 0x36, 0x4B, 0x4C, 0x35, 0x36, 0x4B, 0x4B, 0x36, 0x36, + 0x4B, 0x01, 0x4E, 0x01, 0x15, 0xFE, 0xEB, 0xFF, 0xFF, 0x00, 0x4F, 0xFE, + 0x3A, 0x02, 0xEC, 0xFF, 0x56, 0x04, 0x07, 0x0A, 0x8E, 0x00, 0x00, 0xF9, + 0x71, 0x00, 0x02, 0xFF, 0xD5, 0x04, 0xBB, 0x02, 0x06, 0x06, 0xC0, 0x00, + 0x0B, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x15, 0x21, 0x35, 0xEE, 0x38, 0x4E, + 0x4E, 0x38, 0x39, 0x4E, 0x4E, 0xDF, 0xFD, 0xCF, 0x04, 0xBB, 0x4C, 0x36, + 0x37, 0x4B, 0x4B, 0x37, 0x37, 0x4B, 0x02, 0x05, 0x8C, 0x8C, 0x00, 0x03, + 0x00, 0xEE, 0x04, 0xBC, 0x03, 0x9F, 0x06, 0xC0, 0x00, 0x0B, 0x00, 0x17, + 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, + 0x16, 0x15, 0x14, 0x06, 0x01, 0x15, 0x21, 0x35, 0x03, 0x1C, 0x36, 0x4C, + 0x4C, 0x37, 0x36, 0x4C, 0x4C, 0xFE, 0x1E, 0x37, 0x4C, 0x4C, 0x37, 0x37, + 0x4C, 0x4C, 0x01, 0xBE, 0xFD, 0xCF, 0x04, 0xBC, 0x4C, 0x35, 0x36, 0x4B, + 0x4B, 0x36, 0x36, 0x4B, 0x4C, 0x35, 0x36, 0x4B, 0x4B, 0x36, 0x36, 0x4B, + 0x02, 0x04, 0x8C, 0x8C, 0x00, 0x03, 0x00, 0xEE, 0x04, 0xBC, 0x03, 0x9F, + 0x07, 0x1F, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x03, + 0x33, 0x13, 0x03, 0x1C, 0x36, 0x4C, 0x4C, 0x37, 0x36, 0x4C, 0x4C, 0xFE, + 0x1E, 0x37, 0x4C, 0x4C, 0x37, 0x37, 0x4C, 0x4C, 0x4F, 0xCB, 0xDA, 0x90, + 0x04, 0xBC, 0x4C, 0x36, 0x35, 0x4B, 0x4A, 0x37, 0x36, 0x4B, 0x4C, 0x36, + 0x35, 0x4B, 0x4A, 0x37, 0x36, 0x4B, 0x01, 0x4E, 0x01, 0x15, 0xFE, 0xEB, + 0x00, 0x03, 0x00, 0x50, 0x04, 0xEE, 0x02, 0xF5, 0x07, 0x03, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x25, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, + 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x02, 0xC1, + 0xFD, 0xCF, 0x01, 0xE5, 0x36, 0x4A, 0x4B, 0x35, 0x35, 0x4B, 0x4A, 0xFE, + 0x25, 0x36, 0x4A, 0x4B, 0x35, 0x36, 0x4A, 0x4A, 0x05, 0x8B, 0x9D, 0x9D, + 0x7C, 0x4A, 0x34, 0x35, 0x49, 0x49, 0x35, 0x35, 0x49, 0x4A, 0x34, 0x35, + 0x49, 0x49, 0x35, 0x35, 0x49, 0x00, 0x02, 0x00, 0xBA, 0x04, 0xC5, 0x03, + 0x20, 0x07, 0x1F, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x2E, + 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, + 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x01, 0x13, 0x33, 0x03, 0x02, + 0x73, 0x28, 0x48, 0x3F, 0x34, 0x14, 0x1B, 0x1C, 0x01, 0x8A, 0x03, 0x59, + 0x53, 0x2A, 0x44, 0x3A, 0x35, 0x19, 0x1C, 0x1B, 0x04, 0x86, 0x03, 0x5D, + 0xFE, 0xD1, 0x91, 0xD9, 0xCB, 0x04, 0xC5, 0x1A, 0x24, 0x1A, 0x33, 0x21, + 0x65, 0x7B, 0x1B, 0x24, 0x1B, 0x2A, 0x2C, 0x67, 0x79, 0x01, 0x45, 0x01, + 0x15, 0xFE, 0xEB, 0x00, 0x03, 0x00, 0xEE, 0x04, 0xBC, 0x03, 0x9F, 0x07, + 0x0F, 0x00, 0x0B, 0x00, 0x17, 0x00, 0x20, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x17, 0x37, + 0x33, 0x15, 0x03, 0x23, 0x03, 0x35, 0x03, 0x1C, 0x36, 0x4C, 0x4C, 0x37, + 0x36, 0x4C, 0x4C, 0xFE, 0x1E, 0x37, 0x4C, 0x4C, 0x37, 0x37, 0x4C, 0x4C, + 0x1C, 0x89, 0x89, 0xBD, 0xEB, 0xB7, 0xE9, 0x04, 0xBC, 0x4C, 0x35, 0x36, + 0x4B, 0x4B, 0x36, 0x36, 0x4B, 0x4C, 0x35, 0x36, 0x4B, 0x4B, 0x36, 0x36, + 0x4B, 0x02, 0x53, 0xAA, 0xAA, 0x03, 0xFE, 0xEE, 0x01, 0x12, 0x03, 0xFF, + 0xFF, 0x00, 0xEE, 0x06, 0x61, 0x03, 0x9F, 0x08, 0xB3, 0x06, 0x07, 0x0A, + 0xEB, 0x00, 0x00, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0xEE, 0x06, 0x61, 0x03, + 0x9F, 0x08, 0x64, 0x06, 0x07, 0x0A, 0xE7, 0x00, 0x00, 0x01, 0xA4, 0xFF, + 0xFF, 0x00, 0xEE, 0x06, 0x61, 0x03, 0x9F, 0x08, 0xC3, 0x06, 0x07, 0x0A, + 0xE4, 0x00, 0x00, 0x01, 0xA4, 0xFF, 0xFF, 0xFF, 0xD5, 0x04, 0xBB, 0x02, + 0x06, 0x06, 0xC0, 0x06, 0x06, 0x0A, 0xE6, 0x00, 0x00, 0xFF, 0xFF, 0x00, + 0xEE, 0x06, 0x61, 0x03, 0x9F, 0x08, 0xC3, 0x06, 0x07, 0x0A, 0xE8, 0x00, + 0x00, 0x01, 0xA4, 0xFF, 0xFF, 0x00, 0xBA, 0x04, 0xC5, 0x03, 0x20, 0x07, + 0x1F, 0x06, 0x06, 0x0A, 0xEA, 0x00, 0x00, 0x00, 0x02, 0x00, 0x43, 0x06, + 0x22, 0x02, 0x37, 0x07, 0xFC, 0x00, 0x0F, 0x00, 0x1B, 0x00, 0x00, 0x41, + 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, + 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, + 0x15, 0x14, 0x16, 0x01, 0x3D, 0x46, 0x71, 0x43, 0x42, 0x72, 0x46, 0x46, + 0x72, 0x42, 0x42, 0x71, 0x47, 0x2F, 0x41, 0x40, 0x30, 0x2F, 0x41, 0x41, + 0x06, 0x22, 0x40, 0x6C, 0x41, 0x43, 0x6B, 0x3F, 0x3F, 0x6B, 0x43, 0x42, + 0x6B, 0x40, 0x7E, 0x41, 0x2F, 0x2E, 0x41, 0x41, 0x2E, 0x2F, 0x41, 0x00, + 0x01, 0x00, 0x9C, 0x04, 0xB6, 0x01, 0x8D, 0x05, 0xE4, 0x00, 0x03, 0x00, + 0x00, 0x53, 0x13, 0x33, 0x03, 0x9C, 0x25, 0xCC, 0x65, 0x04, 0xB6, 0x01, + 0x2E, 0xFE, 0xD2, 0x00, 0x02, 0x00, 0x68, 0x04, 0xB6, 0x03, 0x2F, 0x05, + 0xE4, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x23, 0x13, 0x33, 0x13, + 0x23, 0x13, 0x33, 0x01, 0x0D, 0xA5, 0x7A, 0xDB, 0x8B, 0xA9, 0xAF, 0xE1, + 0x04, 0xB6, 0x01, 0x2E, 0xFE, 0xD2, 0x01, 0x2E, 0xFF, 0xFF, 0x00, 0x67, + 0x04, 0xB6, 0x01, 0xDD, 0x05, 0xE4, 0x04, 0x06, 0x06, 0xE8, 0x00, 0x00, + 0xFF, 0xFF, 0xFC, 0xA5, 0xFE, 0x5C, 0xFE, 0x1C, 0xFF, 0x8B, 0x04, 0x07, + 0x06, 0xE8, 0xFC, 0x3E, 0xF9, 0xA6, 0x00, 0x02, 0xFB, 0xF7, 0xFE, 0x9D, + 0xFF, 0x1B, 0xFF, 0x8F, 0x00, 0x0F, 0x00, 0x1F, 0x00, 0x00, 0x45, 0x33, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x16, 0x06, 0x06, 0x23, 0x22, + 0x26, 0x26, 0x25, 0x33, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, + 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0xFB, 0xF7, 0x66, 0x46, 0x33, 0x40, + 0x3F, 0x66, 0x01, 0x37, 0x67, 0x48, 0x40, 0x65, 0x3A, 0x01, 0x5E, 0x66, + 0x01, 0x3F, 0x40, 0x32, 0x47, 0x67, 0x3A, 0x65, 0x41, 0x49, 0x67, 0x35, + 0x71, 0x36, 0x42, 0x42, 0x36, 0x46, 0x6E, 0x3E, 0x3E, 0x6E, 0x46, 0x36, + 0x42, 0x42, 0x36, 0x46, 0x6E, 0x3E, 0x3E, 0x6E, 0x00, 0x01, 0x00, 0x69, + 0x04, 0xC9, 0x02, 0xD1, 0x05, 0xE9, 0x00, 0x0F, 0x00, 0x00, 0x41, 0x32, + 0x16, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, + 0x36, 0x36, 0x01, 0x9D, 0x5A, 0x8A, 0x50, 0x92, 0x5C, 0x46, 0x47, 0x5C, + 0x91, 0x4F, 0x8B, 0x05, 0xE9, 0x4D, 0x82, 0x51, 0x42, 0x54, 0x54, 0x42, + 0x51, 0x82, 0x4D, 0xFF, 0xFF, 0x00, 0x69, 0xFE, 0x4C, 0x02, 0xD1, 0xFF, + 0x6C, 0x06, 0x07, 0x0A, 0xF8, 0x00, 0x00, 0xF9, 0x83, 0xFF, 0xFF, 0xFC, + 0x83, 0xFE, 0x36, 0xFE, 0xE5, 0xFF, 0x58, 0x04, 0x07, 0x0A, 0x8F, 0xFC, + 0x18, 0xF9, 0x75, 0xFF, 0xFF, 0xFC, 0x56, 0xFE, 0x25, 0xFF, 0x0F, 0xFF, + 0x8E, 0x04, 0x07, 0x0A, 0x3F, 0xFB, 0xF2, 0xFF, 0xE9, 0x00, 0x03, 0xFC, + 0x24, 0xFE, 0x2B, 0xFE, 0xDF, 0xFF, 0x97, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x0B, 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x27, 0x35, 0x21, 0x15, 0x07, + 0x11, 0x33, 0x11, 0xFC, 0x24, 0xA6, 0x1A, 0x01, 0x9D, 0x14, 0xA6, 0xFE, + 0x2B, 0x01, 0x6C, 0xFE, 0x94, 0xE2, 0x8A, 0x8A, 0xE2, 0x01, 0x6C, 0xFE, + 0x94, 0x00, 0x02, 0xFC, 0x4A, 0x04, 0xC4, 0xFE, 0xC8, 0x06, 0xAD, 0x00, + 0x0E, 0x00, 0x1A, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x33, 0x14, 0x16, + 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x27, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0xFD, 0x88, 0x93, 0xAB, + 0xB0, 0x41, 0x4D, 0x4C, 0x43, 0xB1, 0x4E, 0x8F, 0x62, 0x45, 0x3E, 0x48, + 0x3C, 0x40, 0x45, 0x43, 0x04, 0xC4, 0x9D, 0x7B, 0x38, 0x54, 0x54, 0x38, + 0x52, 0x7E, 0x48, 0xFA, 0x01, 0x45, 0x2E, 0x39, 0x42, 0x46, 0x32, 0x33, + 0x43, 0xFF, 0xFF, 0xFC, 0x68, 0xFE, 0x3A, 0xFF, 0x05, 0xFF, 0x56, 0x04, + 0x07, 0x0A, 0x8D, 0xFC, 0x19, 0xF9, 0x71, 0xFF, 0xFF, 0xFC, 0xF2, 0x03, + 0xE0, 0xFE, 0x1C, 0x06, 0x18, 0x04, 0x07, 0x0B, 0x2C, 0xFC, 0x83, 0x00, + 0x00, 0x00, 0x01, 0xFD, 0x1F, 0x03, 0xDF, 0xFE, 0x52, 0x06, 0x23, 0x00, + 0x0A, 0x00, 0x00, 0x41, 0x35, 0x3E, 0x02, 0x37, 0x17, 0x06, 0x06, 0x15, + 0x15, 0xFD, 0x1F, 0x01, 0x2D, 0x52, 0x36, 0x7D, 0x2B, 0x30, 0x03, 0xDF, + 0xBD, 0x42, 0x90, 0x84, 0x31, 0x4D, 0x46, 0x98, 0x5B, 0xBE, 0xFF, 0xFF, + 0x00, 0xEE, 0x04, 0xE9, 0x04, 0x45, 0x06, 0x84, 0x06, 0x06, 0x06, 0xE4, + 0x00, 0x00, 0xFF, 0xFF, 0x00, 0xEE, 0xFE, 0x44, 0x03, 0x9F, 0xFF, 0x46, + 0x04, 0x07, 0x0A, 0x8B, 0x00, 0x00, 0xF9, 0x62, 0xFF, 0xFF, 0x00, 0x58, + 0x04, 0xB6, 0x01, 0xCE, 0x05, 0xE4, 0x04, 0x06, 0x06, 0xE9, 0x00, 0x00, + 0xFF, 0xFF, 0xFC, 0xCE, 0xFE, 0x5C, 0xFE, 0x44, 0xFF, 0x8B, 0x04, 0x07, + 0x06, 0xE9, 0xFC, 0x76, 0xF9, 0xA6, 0x00, 0x01, 0x00, 0x64, 0x04, 0xD9, + 0x01, 0xB3, 0x05, 0xF4, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x23, 0x37, 0x36, + 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, 0x06, 0x07, 0x01, 0x5C, + 0x96, 0x41, 0x09, 0x0A, 0x13, 0x8F, 0x92, 0x43, 0x56, 0x24, 0x0B, 0x1E, + 0x04, 0xD9, 0x77, 0x11, 0x11, 0x82, 0x23, 0x3E, 0x4E, 0x2A, 0x00, 0x01, + 0xFD, 0x90, 0xFE, 0x51, 0xFF, 0x36, 0x00, 0xB4, 0x00, 0x10, 0x00, 0x00, + 0x65, 0x33, 0x11, 0x14, 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, + 0x33, 0x32, 0x36, 0x36, 0x35, 0xFE, 0x66, 0xD0, 0x98, 0x93, 0x19, 0x46, + 0x1C, 0x12, 0x24, 0x0F, 0x2F, 0x40, 0x22, 0xB4, 0xFE, 0xFB, 0xAA, 0xB4, + 0x07, 0x07, 0xAE, 0x05, 0x01, 0x22, 0x4B, 0x3B, 0x00, 0x01, 0xFE, 0xAF, + 0xFE, 0x51, 0x00, 0x53, 0x00, 0xB4, 0x00, 0x10, 0x00, 0x00, 0x43, 0x22, + 0x26, 0x35, 0x11, 0x33, 0x11, 0x14, 0x16, 0x16, 0x33, 0x32, 0x36, 0x37, + 0x15, 0x06, 0x06, 0x26, 0x93, 0x98, 0xCF, 0x21, 0x41, 0x2F, 0x0F, 0x24, + 0x11, 0x1C, 0x44, 0xFE, 0x51, 0xB5, 0xA9, 0x01, 0x05, 0xFE, 0xFB, 0x39, + 0x4B, 0x24, 0x01, 0x05, 0xAD, 0x08, 0x07, 0x00, 0x01, 0xFD, 0x39, 0xFD, + 0xF2, 0xFE, 0x39, 0xFF, 0xBA, 0x00, 0x0F, 0x00, 0x00, 0x45, 0x33, 0x11, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x15, 0x06, 0x06, 0x23, 0x22, 0x26, + 0x35, 0xFD, 0x39, 0xA1, 0x18, 0x1B, 0x0C, 0x19, 0x07, 0x0A, 0x29, 0x1E, + 0x4B, 0x64, 0x46, 0xFE, 0xF6, 0x23, 0x27, 0x02, 0x01, 0x6A, 0x04, 0x09, + 0x58, 0x63, 0xFF, 0xFF, 0xFD, 0x6D, 0x04, 0x7C, 0xFE, 0x12, 0x06, 0x1E, + 0x04, 0x07, 0x0B, 0x31, 0xFD, 0x1A, 0x00, 0x00, 0xFF, 0xFF, 0xFC, 0xE3, + 0x04, 0x7C, 0xFE, 0x95, 0x06, 0x1E, 0x04, 0x27, 0x0B, 0x31, 0xFC, 0x90, + 0x00, 0x00, 0x00, 0x07, 0x0B, 0x31, 0xFD, 0x9D, 0x00, 0x00, 0xFF, 0xFF, + 0xFD, 0x6D, 0xFE, 0x11, 0xFE, 0x11, 0xFF, 0xB3, 0x04, 0x07, 0x0B, 0x31, + 0xFD, 0x19, 0xF9, 0x95, 0xFF, 0xFF, 0x00, 0x90, 0xFE, 0x92, 0x02, 0xC1, + 0xFF, 0x2F, 0x04, 0x07, 0x06, 0xEB, 0x00, 0x00, 0xF9, 0x92, 0xFF, 0xFF, + 0xFB, 0xCA, 0x06, 0x2F, 0xFF, 0x7C, 0x06, 0xE7, 0x04, 0x07, 0x06, 0x05, + 0xFB, 0xCA, 0x06, 0xE7, 0x00, 0x02, 0xFB, 0xB7, 0x05, 0xD2, 0xFF, 0x57, + 0x07, 0x7B, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x43, 0x15, 0x21, 0x35, + 0x01, 0x15, 0x21, 0x35, 0xA9, 0xFC, 0x60, 0x03, 0xA0, 0xFC, 0x60, 0x06, + 0x70, 0x9E, 0x9E, 0x01, 0x0B, 0x9E, 0x9E, 0xFF, 0xFF, 0xFD, 0x3D, 0xFE, + 0x1E, 0xFE, 0x0D, 0xFF, 0xAD, 0x04, 0x07, 0x0B, 0x33, 0xFD, 0x06, 0xF9, + 0xC8, 0xFF, 0xFF, 0x00, 0x42, 0xFD, 0xD1, 0x01, 0x3C, 0xFF, 0xAD, 0x04, + 0x07, 0x0A, 0xAB, 0x00, 0x00, 0xF9, 0x4E, 0xFF, 0xFF, 0xFC, 0xBC, 0xFD, + 0xDB, 0xFE, 0xB0, 0xFF, 0xB7, 0x04, 0x07, 0x0A, 0x90, 0xFC, 0x79, 0xF9, + 0x58, 0x00, 0x02, 0xFC, 0x0D, 0xFE, 0x8F, 0xFF, 0x60, 0xFF, 0x82, 0x00, + 0x0D, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x23, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0x05, 0x23, 0x36, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x23, 0x34, 0x26, 0x23, 0x22, 0x06, 0xFD, 0xEF, 0x71, + 0x85, 0x6C, 0x6D, 0x84, 0x71, 0x43, 0x3D, 0x3D, 0x43, 0xFE, 0x8F, 0x71, + 0x01, 0x84, 0x6C, 0x6D, 0x84, 0x71, 0x43, 0x3D, 0x3C, 0x44, 0xFE, 0x8F, + 0x6D, 0x86, 0x86, 0x6D, 0x3D, 0x3F, 0x3F, 0x3D, 0x6C, 0x87, 0x86, 0x6D, + 0x3D, 0x3F, 0x3F, 0xFF, 0xFF, 0xFC, 0x80, 0x01, 0x9F, 0xFE, 0xE6, 0x02, + 0x83, 0x04, 0x07, 0x06, 0xEC, 0xFB, 0xC6, 0xFC, 0xB4, 0xFF, 0xFF, 0xFC, + 0x81, 0xFE, 0x57, 0xFE, 0xE7, 0xFF, 0x3B, 0x04, 0x07, 0x06, 0xEC, 0xFB, + 0xC7, 0xF9, 0x6D, 0xFF, 0xFF, 0xFB, 0xC9, 0xFE, 0xB5, 0xFF, 0x7A, 0xFF, + 0x6D, 0x04, 0x07, 0x06, 0x05, 0xFB, 0xC9, 0xFF, 0x6D, 0x00, 0x02, 0xFB, + 0xB3, 0xFD, 0xFE, 0xFF, 0x57, 0xFF, 0xAC, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x47, 0x15, 0x21, 0x35, 0x01, 0x15, 0x21, 0x35, 0xA9, 0xFC, 0x5C, + 0x03, 0xA4, 0xFC, 0x5C, 0x54, 0xA8, 0xA8, 0xFE, 0xFB, 0xA9, 0xA9, 0x00, + 0x02, 0xFC, 0xDE, 0x04, 0xDE, 0xFE, 0xC3, 0x06, 0xC7, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x00, 0x41, 0x27, 0x01, 0x17, 0x03, 0x01, 0x37, 0x01, 0xFD, + 0x44, 0x66, 0x01, 0x80, 0x65, 0x65, 0xFE, 0x80, 0x69, 0x01, 0x7C, 0x04, + 0xE0, 0x66, 0x01, 0x80, 0x68, 0xFE, 0x80, 0x01, 0x81, 0x68, 0xFE, 0x7F, + 0x00, 0x02, 0x00, 0x28, 0x04, 0xD3, 0x02, 0x02, 0x07, 0x44, 0x00, 0x03, + 0x00, 0x0F, 0x00, 0x00, 0x53, 0x13, 0x21, 0x01, 0x03, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x30, 0xC5, 0x01, 0x0D, + 0xFE, 0xEA, 0xC4, 0x44, 0x3B, 0x3F, 0x41, 0x43, 0x3D, 0x3B, 0x44, 0x04, + 0xD3, 0x01, 0x2D, 0xFE, 0xD3, 0x01, 0xFA, 0x32, 0x45, 0x47, 0x30, 0x33, + 0x43, 0x43, 0x00, 0x02, 0x00, 0x61, 0x04, 0xC7, 0x02, 0xFE, 0x07, 0x02, + 0x00, 0x08, 0x00, 0x14, 0x00, 0x00, 0x41, 0x17, 0x37, 0x33, 0x15, 0x03, + 0x23, 0x03, 0x35, 0x25, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, + 0x15, 0x14, 0x06, 0x01, 0x23, 0x8C, 0x8C, 0xC3, 0xF1, 0xBD, 0xEF, 0x01, + 0x4E, 0x37, 0x4C, 0x4C, 0x37, 0x36, 0x4C, 0x4C, 0x05, 0xD4, 0xA5, 0xA5, + 0x03, 0xFE, 0xF6, 0x01, 0x0A, 0x03, 0x33, 0x49, 0x35, 0x34, 0x49, 0x49, + 0x34, 0x35, 0x49, 0xFF, 0xFF, 0x00, 0x61, 0x06, 0x6B, 0x02, 0xFE, 0x08, + 0xA6, 0x06, 0x07, 0x0B, 0x19, 0x00, 0x00, 0x01, 0xA4, 0x00, 0x03, 0x00, + 0x43, 0x04, 0x83, 0x02, 0x50, 0x07, 0x5A, 0x00, 0x03, 0x00, 0x13, 0x00, + 0x1F, 0x00, 0x00, 0x53, 0x37, 0x33, 0x07, 0x03, 0x22, 0x26, 0x26, 0x35, + 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x14, 0x06, 0x06, 0x27, + 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, 0x06, 0x15, 0x14, 0x16, 0xF1, + 0x92, 0xCD, 0xC2, 0x51, 0x46, 0x71, 0x43, 0x43, 0x71, 0x46, 0x46, 0x72, + 0x42, 0x42, 0x72, 0x46, 0x30, 0x40, 0x41, 0x2F, 0x2E, 0x42, 0x42, 0x06, + 0x9D, 0xBD, 0xBD, 0xFD, 0xE6, 0x3F, 0x6C, 0x43, 0x42, 0x6C, 0x40, 0x40, + 0x6C, 0x42, 0x43, 0x6B, 0x40, 0x7E, 0x41, 0x2F, 0x2F, 0x41, 0x41, 0x2F, + 0x2F, 0x41, 0x00, 0x03, 0x00, 0x43, 0x06, 0x16, 0x02, 0x4E, 0x08, 0xE1, + 0x00, 0x03, 0x00, 0x13, 0x00, 0x1F, 0x00, 0x00, 0x53, 0x37, 0x33, 0x07, + 0x03, 0x22, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x27, 0x32, 0x36, 0x35, 0x34, 0x26, 0x23, 0x22, + 0x06, 0x15, 0x14, 0x16, 0xF0, 0x92, 0xCC, 0xC1, 0x50, 0x46, 0x71, 0x43, + 0x42, 0x72, 0x46, 0x46, 0x72, 0x42, 0x42, 0x71, 0x47, 0x2F, 0x41, 0x40, + 0x30, 0x2F, 0x41, 0x41, 0x08, 0x24, 0xBD, 0xBD, 0xFD, 0xF2, 0x3F, 0x6B, + 0x41, 0x42, 0x6A, 0x3F, 0x3F, 0x6A, 0x42, 0x41, 0x6B, 0x3F, 0x7C, 0x41, + 0x2E, 0x2F, 0x40, 0x40, 0x2F, 0x2E, 0x41, 0x00, 0x03, 0x00, 0x92, 0x04, + 0xC5, 0x03, 0x34, 0x07, 0x03, 0x00, 0x17, 0x00, 0x23, 0x00, 0x2F, 0x00, + 0x00, 0x41, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, + 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x03, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x02, + 0x6F, 0x28, 0x48, 0x3E, 0x34, 0x15, 0x1B, 0x1B, 0x02, 0x89, 0x03, 0x58, + 0x54, 0x29, 0x45, 0x3A, 0x34, 0x1A, 0x1C, 0x1B, 0x04, 0x85, 0x02, 0x5D, + 0x08, 0x35, 0x4A, 0x4A, 0x35, 0x35, 0x4A, 0x4A, 0xFE, 0x28, 0x36, 0x4A, + 0x4A, 0x36, 0x35, 0x4A, 0x4A, 0x04, 0xC5, 0x1A, 0x24, 0x1A, 0x33, 0x21, + 0x64, 0x7A, 0x1A, 0x24, 0x1B, 0x29, 0x2C, 0x66, 0x78, 0x01, 0x47, 0x48, + 0x33, 0x34, 0x48, 0x48, 0x34, 0x33, 0x48, 0x48, 0x33, 0x34, 0x48, 0x48, + 0x34, 0x33, 0x48, 0xFF, 0xFF, 0x00, 0x92, 0x04, 0xC5, 0x03, 0x34, 0x07, + 0x03, 0x06, 0x06, 0x0B, 0x1D, 0x00, 0x00, 0x00, 0x02, 0x00, 0xBA, 0x04, + 0xC5, 0x03, 0x20, 0x06, 0xC0, 0x00, 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, + 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, + 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, 0x06, 0x06, 0x13, 0x15, 0x21, + 0x35, 0x02, 0x73, 0x28, 0x48, 0x3F, 0x34, 0x14, 0x1B, 0x1C, 0x01, 0x8A, + 0x03, 0x59, 0x53, 0x2A, 0x44, 0x3A, 0x35, 0x19, 0x1C, 0x1B, 0x04, 0x86, + 0x03, 0x5D, 0x45, 0xFD, 0xCF, 0x04, 0xC5, 0x1A, 0x24, 0x1A, 0x33, 0x21, + 0x65, 0x7B, 0x1B, 0x24, 0x1B, 0x2A, 0x2C, 0x67, 0x79, 0x01, 0xFB, 0x8C, + 0x8C, 0x00, 0x02, 0x00, 0x28, 0x06, 0x53, 0x02, 0x67, 0x07, 0xE5, 0x00, + 0x03, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0x01, 0x34, 0x36, + 0x33, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0xFE, 0x8E, 0xDB, + 0xCF, 0xFE, 0x90, 0x41, 0x39, 0x3D, 0x3F, 0x3F, 0x3D, 0x3B, 0x3F, 0x06, + 0x53, 0x01, 0x06, 0xFE, 0xFA, 0x01, 0x22, 0x2F, 0x41, 0x43, 0x2D, 0x30, + 0x41, 0x43, 0x00, 0x02, 0x00, 0x6B, 0x04, 0xAA, 0x02, 0xCE, 0x07, 0x09, + 0x00, 0x0F, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, + 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x03, 0x13, + 0x33, 0x03, 0x01, 0x9C, 0x56, 0x8A, 0x51, 0x91, 0x5A, 0x46, 0x46, 0x5A, + 0x92, 0x51, 0x8A, 0xA9, 0x8D, 0xD5, 0xC7, 0x04, 0xAA, 0x4E, 0x83, 0x51, + 0x43, 0x56, 0x56, 0x43, 0x51, 0x83, 0x4E, 0x01, 0x4A, 0x01, 0x15, 0xFE, + 0xEB, 0x00, 0x02, 0x00, 0x69, 0x04, 0xAA, 0x02, 0xCC, 0x07, 0x09, 0x00, + 0x0F, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, + 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x03, 0x23, 0x03, + 0x33, 0x01, 0x9B, 0x56, 0x8B, 0x51, 0x92, 0x5A, 0x46, 0x45, 0x5B, 0x91, + 0x51, 0x8A, 0x04, 0x9B, 0xC7, 0xD5, 0x04, 0xAA, 0x4E, 0x83, 0x51, 0x43, + 0x56, 0x56, 0x43, 0x51, 0x83, 0x4E, 0x01, 0x4A, 0x01, 0x15, 0x00, 0x02, + 0x00, 0x6D, 0x04, 0xAC, 0x02, 0xD4, 0x06, 0xF4, 0x00, 0x0F, 0x00, 0x27, + 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, 0x13, 0x22, 0x2E, 0x02, 0x23, 0x22, + 0x06, 0x07, 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, + 0x37, 0x33, 0x06, 0x06, 0x01, 0x9B, 0x56, 0x89, 0x4F, 0x8D, 0x5A, 0x47, + 0x46, 0x5A, 0x91, 0x52, 0x8A, 0x37, 0x28, 0x48, 0x3E, 0x35, 0x14, 0x1B, + 0x1B, 0x02, 0x89, 0x03, 0x58, 0x53, 0x2A, 0x45, 0x3A, 0x34, 0x19, 0x1C, + 0x1B, 0x05, 0x85, 0x03, 0x5C, 0x04, 0xAC, 0x4E, 0x83, 0x51, 0x44, 0x55, + 0x55, 0x44, 0x51, 0x83, 0x4E, 0x01, 0x6B, 0x19, 0x23, 0x19, 0x32, 0x20, + 0x62, 0x78, 0x1A, 0x23, 0x1A, 0x28, 0x2B, 0x64, 0x75, 0x00, 0x02, 0x00, + 0x4F, 0x04, 0xB2, 0x03, 0x82, 0x07, 0x09, 0x00, 0x08, 0x00, 0x0C, 0x00, + 0x00, 0x41, 0x23, 0x35, 0x13, 0x33, 0x13, 0x15, 0x23, 0x27, 0x37, 0x13, + 0x33, 0x03, 0x01, 0x10, 0xC1, 0xEE, 0xBE, 0xF1, 0xC4, 0x8B, 0x83, 0x8E, + 0xD4, 0xC7, 0x04, 0xB2, 0x03, 0x01, 0x19, 0xFE, 0xE7, 0x03, 0xAD, 0x96, + 0x01, 0x14, 0xFE, 0xEC, 0x00, 0x02, 0x00, 0x4F, 0x04, 0xB2, 0x02, 0xFD, + 0x07, 0x09, 0x00, 0x08, 0x00, 0x0C, 0x00, 0x00, 0x41, 0x23, 0x35, 0x13, + 0x33, 0x13, 0x15, 0x23, 0x27, 0x37, 0x03, 0x33, 0x13, 0x01, 0x10, 0xC1, + 0xEE, 0xBE, 0xF1, 0xC4, 0x8B, 0xC4, 0xC7, 0xD5, 0x8E, 0x04, 0xB2, 0x03, + 0x01, 0x19, 0xFE, 0xE7, 0x03, 0xAD, 0x96, 0x01, 0x14, 0xFE, 0xEC, 0x00, + 0x02, 0x00, 0x4F, 0x04, 0xB2, 0x03, 0x01, 0x07, 0x09, 0x00, 0x08, 0x00, + 0x15, 0x00, 0x00, 0x41, 0x23, 0x35, 0x13, 0x33, 0x13, 0x15, 0x23, 0x27, + 0x25, 0x23, 0x37, 0x36, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, + 0x07, 0x01, 0x10, 0xC1, 0xEE, 0xBE, 0xF1, 0xC4, 0x8B, 0x01, 0x11, 0x8E, + 0x3E, 0x0A, 0x0A, 0x13, 0x89, 0x8B, 0x55, 0x58, 0x07, 0x26, 0x04, 0xB2, + 0x03, 0x01, 0x19, 0xFE, 0xE7, 0x03, 0xAD, 0x96, 0x74, 0x11, 0x12, 0x7D, + 0x3C, 0x60, 0x37, 0x00, 0x02, 0x00, 0x4F, 0x04, 0xB2, 0x02, 0xEC, 0x06, + 0xF4, 0x00, 0x08, 0x00, 0x20, 0x00, 0x00, 0x41, 0x23, 0x35, 0x13, 0x33, + 0x13, 0x15, 0x23, 0x27, 0x37, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, + 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, + 0x06, 0x06, 0x01, 0x10, 0xC1, 0xEE, 0xBE, 0xF1, 0xC4, 0x8B, 0x85, 0x28, + 0x48, 0x3E, 0x34, 0x15, 0x1B, 0x1B, 0x02, 0x89, 0x03, 0x59, 0x53, 0x29, + 0x45, 0x3A, 0x34, 0x1A, 0x1C, 0x1B, 0x04, 0x85, 0x02, 0x5D, 0x04, 0xB2, + 0x03, 0x01, 0x19, 0xFE, 0xE7, 0x03, 0xAD, 0xB8, 0x19, 0x23, 0x19, 0x32, + 0x20, 0x62, 0x78, 0x1A, 0x23, 0x1A, 0x28, 0x2B, 0x64, 0x75, 0x00, 0x01, + 0x00, 0xA2, 0x04, 0x9E, 0x01, 0x64, 0x06, 0x1A, 0x00, 0x03, 0x00, 0x00, + 0x53, 0x11, 0x33, 0x03, 0xA2, 0xC2, 0x34, 0x04, 0x9E, 0x01, 0x7C, 0xFE, + 0x84, 0xFF, 0xFF, 0x00, 0x7B, 0xFE, 0x76, 0x01, 0xF1, 0xFF, 0xA4, 0x04, + 0x07, 0x06, 0xE8, 0x00, 0x14, 0xF9, 0xC0, 0x00, 0x01, 0x00, 0x6D, 0x03, + 0x4E, 0x01, 0x9E, 0x04, 0x3A, 0x00, 0x03, 0x00, 0x00, 0x53, 0x21, 0x07, + 0x23, 0x6D, 0x01, 0x31, 0x8D, 0x17, 0x04, 0x3A, 0xEC, 0x00, 0x02, 0x00, + 0x6D, 0x00, 0x00, 0x01, 0x9E, 0x04, 0x3A, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x53, 0x21, 0x07, 0x23, 0x03, 0x37, 0x33, 0x17, 0x6D, 0x01, 0x31, + 0x8D, 0x17, 0x8D, 0x8D, 0x17, 0x8D, 0x04, 0x3A, 0xEC, 0xFC, 0xB2, 0xEE, + 0xEE, 0x00, 0x01, 0x00, 0x70, 0x03, 0xE0, 0x01, 0x9A, 0x06, 0x18, 0x00, + 0x0B, 0x00, 0x00, 0x41, 0x2E, 0x02, 0x27, 0x27, 0x33, 0x17, 0x1E, 0x02, + 0x17, 0x01, 0x00, 0x11, 0x37, 0x33, 0x0C, 0x09, 0xD0, 0x06, 0x09, 0x20, + 0x21, 0x0A, 0x03, 0xE0, 0x30, 0xA4, 0xBD, 0x57, 0x50, 0x52, 0x63, 0xBC, + 0x99, 0x2E, 0x00, 0x01, 0x00, 0x6A, 0x03, 0xE0, 0x01, 0x9F, 0x06, 0x23, + 0x00, 0x0A, 0x00, 0x00, 0x53, 0x35, 0x34, 0x36, 0x36, 0x37, 0x17, 0x06, + 0x06, 0x15, 0x15, 0x6A, 0x2D, 0x54, 0x37, 0x7D, 0x2C, 0x33, 0x03, 0xE0, + 0xBC, 0x42, 0x90, 0x85, 0x30, 0x4D, 0x45, 0x97, 0x5D, 0xBD, 0x00, 0x02, + 0x00, 0x6A, 0x02, 0x8C, 0x03, 0x18, 0x07, 0x0F, 0x00, 0x19, 0x00, 0x1D, + 0x00, 0x00, 0x53, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x15, 0x15, 0x14, + 0x06, 0x23, 0x23, 0x35, 0x33, 0x32, 0x36, 0x36, 0x35, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x07, 0x13, 0x33, 0x11, 0x23, 0x6A, 0x03, 0xAE, 0x90, + 0x7A, 0xA2, 0x51, 0xB6, 0xB7, 0x2F, 0x27, 0x4C, 0x4A, 0x19, 0x41, 0x64, + 0x4B, 0x3F, 0x08, 0x42, 0xC5, 0xC5, 0x05, 0xEE, 0x7E, 0xA3, 0x6A, 0xB4, + 0x6F, 0x7C, 0xBD, 0xE0, 0xA0, 0x49, 0x72, 0x3F, 0x7D, 0x64, 0x88, 0x49, + 0x35, 0xFE, 0x1B, 0xFE, 0x83, 0x00, 0x02, 0x00, 0x6A, 0x02, 0x8C, 0x03, + 0x18, 0x07, 0x0F, 0x00, 0x19, 0x00, 0x1D, 0x00, 0x00, 0x41, 0x23, 0x26, + 0x26, 0x23, 0x22, 0x06, 0x15, 0x15, 0x14, 0x16, 0x16, 0x33, 0x33, 0x15, + 0x23, 0x06, 0x26, 0x35, 0x35, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x01, + 0x33, 0x11, 0x23, 0x03, 0x18, 0xB2, 0x08, 0x3F, 0x4B, 0x65, 0x40, 0x1A, + 0x4B, 0x4A, 0x26, 0x2F, 0xB5, 0xB6, 0x4E, 0xA2, 0x7B, 0x91, 0xAE, 0xFE, + 0x4A, 0xC7, 0xC7, 0x05, 0xEE, 0x36, 0x48, 0x89, 0x63, 0x7D, 0x3F, 0x73, + 0x48, 0xA0, 0x01, 0xE1, 0xBD, 0x7C, 0x6C, 0xB5, 0x6C, 0xA3, 0xFD, 0x9D, + 0xFE, 0x83, 0xFF, 0xFF, 0x00, 0xA3, 0xFE, 0x76, 0x02, 0x19, 0xFF, 0xA4, + 0x04, 0x07, 0x06, 0xE9, 0x00, 0x4B, 0xF9, 0xC0, 0x00, 0x01, 0x00, 0x53, + 0x04, 0x7C, 0x00, 0xF8, 0x06, 0x1E, 0x00, 0x03, 0x00, 0x00, 0x53, 0x11, + 0x23, 0x11, 0xF8, 0xA5, 0x06, 0x1E, 0xFE, 0x5E, 0x01, 0xA2, 0xFF, 0xFF, + 0x00, 0x90, 0xFE, 0x92, 0x02, 0xC1, 0xFF, 0x2F, 0x04, 0x07, 0x06, 0xEB, + 0x00, 0x00, 0xF9, 0x92, 0x00, 0x01, 0x00, 0x37, 0x04, 0x56, 0x01, 0x07, + 0x05, 0xE5, 0x00, 0x0D, 0x00, 0x00, 0x41, 0x06, 0x26, 0x35, 0x34, 0x36, + 0x33, 0x15, 0x22, 0x06, 0x15, 0x14, 0x16, 0x33, 0x01, 0x07, 0x55, 0x7B, + 0x7B, 0x55, 0x29, 0x36, 0x36, 0x29, 0x04, 0x57, 0x01, 0x6D, 0x57, 0x59, + 0x72, 0x66, 0x39, 0x2C, 0x28, 0x38, 0xFF, 0xFF, 0x00, 0x42, 0x04, 0x83, + 0x01, 0x3C, 0x06, 0x5F, 0x04, 0x06, 0x0A, 0xAB, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x53, 0xFE, 0x08, 0x00, 0xF8, 0xFF, 0xA4, 0x00, 0x03, 0x00, 0x00, + 0x57, 0x11, 0x23, 0x11, 0xF8, 0xA5, 0x5C, 0xFE, 0x64, 0x01, 0x9C, 0x00, + 0x07, 0xFB, 0xA8, 0x04, 0xB2, 0xFF, 0x3E, 0x06, 0xDA, 0x00, 0x03, 0x00, + 0x07, 0x00, 0x0C, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x2D, 0x00, + 0x00, 0x41, 0x21, 0x15, 0x21, 0x03, 0x33, 0x11, 0x23, 0x01, 0x33, 0x03, + 0x23, 0x27, 0x01, 0x33, 0x13, 0x07, 0x23, 0x07, 0x11, 0x33, 0x11, 0x03, + 0x21, 0x07, 0x21, 0x03, 0x23, 0x35, 0x34, 0x36, 0x33, 0x33, 0x36, 0x16, + 0x15, 0x15, 0x23, 0x35, 0x26, 0x26, 0x23, 0x23, 0x22, 0x06, 0x15, 0xFC, + 0x14, 0x01, 0xA1, 0xFE, 0x5F, 0x6C, 0x8D, 0x8D, 0x02, 0xCD, 0x9B, 0xEC, + 0x43, 0x12, 0xFF, 0x00, 0x9B, 0xA6, 0x12, 0x44, 0x11, 0x87, 0xFF, 0x01, + 0x76, 0x22, 0xFE, 0xCD, 0x2C, 0x86, 0x7A, 0x82, 0xA6, 0x71, 0x8B, 0x86, + 0x01, 0x32, 0x43, 0xA6, 0x36, 0x40, 0x05, 0xE9, 0x6B, 0x01, 0x5C, 0xFD, + 0xD8, 0x02, 0x28, 0xFE, 0x9F, 0x38, 0x01, 0x29, 0xFE, 0xD5, 0x36, 0xC7, + 0x01, 0x2A, 0xFE, 0xD6, 0x02, 0x28, 0x6A, 0xFE, 0x42, 0x54, 0x73, 0x70, + 0x01, 0x61, 0x83, 0x54, 0x54, 0x46, 0x32, 0x27, 0x51, 0x00, 0x02, 0x00, + 0x21, 0x03, 0x84, 0x02, 0xD0, 0x05, 0xD2, 0x00, 0x0D, 0x00, 0x11, 0x00, + 0x00, 0x53, 0x13, 0x33, 0x13, 0x23, 0x27, 0x26, 0x26, 0x27, 0x33, 0x06, + 0x06, 0x07, 0x07, 0x27, 0x35, 0x21, 0x15, 0x21, 0xEC, 0xD3, 0xF0, 0xB3, + 0x5F, 0x1C, 0x2C, 0x14, 0x29, 0x14, 0x2B, 0x1D, 0x60, 0x0F, 0x01, 0x71, + 0x03, 0x84, 0x02, 0x4E, 0xFD, 0xB2, 0xEA, 0x46, 0x96, 0x50, 0x4E, 0x98, + 0x46, 0xEA, 0x6F, 0x74, 0x74, 0x00, 0x01, 0xFF, 0xEC, 0xFF, 0xC5, 0x05, + 0x36, 0x06, 0x0D, 0x00, 0x03, 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0x79, + 0x8D, 0x04, 0xBD, 0x8D, 0x3B, 0x74, 0x05, 0xD4, 0x74, 0x00, 0x01, 0x00, + 0x28, 0x02, 0xA2, 0x02, 0xA5, 0x03, 0x30, 0x00, 0x03, 0x00, 0x00, 0x53, + 0x35, 0x21, 0x15, 0x28, 0x02, 0x7D, 0x02, 0xA2, 0x8E, 0x8E, 0x00, 0x01, + 0x00, 0x82, 0x02, 0x8D, 0x03, 0x1D, 0x03, 0x13, 0x00, 0x03, 0x00, 0x00, + 0x53, 0x35, 0x21, 0x15, 0x82, 0x02, 0x9B, 0x02, 0x8D, 0x86, 0x86, 0x00, + 0x01, 0x00, 0x81, 0x01, 0x9E, 0x01, 0x29, 0x04, 0x34, 0x00, 0x03, 0x00, + 0x00, 0x53, 0x11, 0x33, 0x11, 0x81, 0xA8, 0x01, 0x9E, 0x02, 0x96, 0xFD, + 0x6A, 0x00, 0x01, 0x00, 0x8E, 0xFE, 0xC0, 0x01, 0xF6, 0x00, 0xBA, 0x00, + 0x05, 0x00, 0x00, 0x53, 0x13, 0x23, 0x35, 0x21, 0x03, 0x8E, 0x61, 0x46, + 0x01, 0x4D, 0x9A, 0xFE, 0xC0, 0x01, 0x40, 0xBA, 0xFE, 0x06, 0x00, 0x01, + 0x00, 0x32, 0xFE, 0xC0, 0x01, 0x57, 0x00, 0xC1, 0x00, 0x05, 0x00, 0x00, + 0x53, 0x11, 0x23, 0x35, 0x21, 0x03, 0x80, 0x4E, 0x01, 0x25, 0x04, 0xFE, + 0xC0, 0x01, 0x40, 0xC1, 0xFD, 0xFF, 0x00, 0x01, 0x00, 0x80, 0xFE, 0xC0, + 0x01, 0x57, 0x00, 0x40, 0x00, 0x03, 0x00, 0x00, 0x53, 0x03, 0x33, 0x03, + 0x81, 0x01, 0xD7, 0x01, 0xFE, 0xC0, 0x01, 0x80, 0xFE, 0x80, 0x00, 0x01, + 0x00, 0x32, 0xFE, 0x5B, 0x01, 0xF2, 0x00, 0xAC, 0x00, 0x11, 0x00, 0x00, + 0x53, 0x22, 0x26, 0x27, 0x37, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, 0x35, + 0x23, 0x35, 0x21, 0x07, 0x14, 0x06, 0xA7, 0x1D, 0x3B, 0x1D, 0x03, 0x1A, + 0x35, 0x1A, 0x3D, 0x47, 0x53, 0x01, 0x23, 0x01, 0xA9, 0xFE, 0x5B, 0x02, + 0x02, 0xB2, 0x01, 0x01, 0x52, 0x52, 0x4D, 0xAC, 0xF6, 0xAB, 0xB0, 0x00, + 0x01, 0x00, 0xAB, 0x01, 0x8D, 0x03, 0xDE, 0x02, 0x9F, 0x00, 0x15, 0x00, + 0x00, 0x53, 0x27, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, 0x33, 0x32, 0x36, + 0x37, 0x17, 0x06, 0x06, 0x23, 0x22, 0x26, 0x26, 0x23, 0x22, 0x06, 0xFA, + 0x4F, 0x3F, 0x7A, 0x4E, 0x3F, 0x6A, 0x58, 0x26, 0x35, 0x55, 0x27, 0x54, + 0x3C, 0x77, 0x55, 0x40, 0x69, 0x56, 0x27, 0x2E, 0x5A, 0x01, 0x8D, 0x3F, + 0x4F, 0x6B, 0x2C, 0x2B, 0x30, 0x40, 0x38, 0x59, 0x65, 0x2B, 0x2C, 0x39, + 0x00, 0x01, 0x00, 0x38, 0xFF, 0xD1, 0x04, 0x55, 0x04, 0x5C, 0x00, 0x03, + 0x00, 0x00, 0x57, 0x27, 0x01, 0x17, 0xA3, 0x6B, 0x03, 0xB3, 0x6A, 0x2F, + 0x5E, 0x04, 0x2D, 0x5D, 0x00, 0x01, 0x00, 0x7D, 0x00, 0x00, 0x04, 0x14, + 0x04, 0x2E, 0x00, 0x07, 0x00, 0x00, 0x73, 0x11, 0x33, 0x11, 0x21, 0x11, + 0x33, 0x11, 0x7D, 0xD6, 0x01, 0xEB, 0xD6, 0x04, 0x2E, 0xFC, 0x8F, 0x03, + 0x71, 0xFB, 0xD2, 0xFF, 0xFF, 0xFF, 0x96, 0x00, 0x00, 0x02, 0x3B, 0x04, + 0x2E, 0x06, 0x26, 0x02, 0xB2, 0x00, 0x00, 0x00, 0x07, 0x0B, 0x61, 0xFF, + 0x1C, 0xFF, 0x6A, 0x00, 0x01, 0x00, 0x5F, 0x02, 0x32, 0x01, 0x22, 0x05, + 0x54, 0x00, 0x03, 0x00, 0x00, 0x41, 0x11, 0x23, 0x11, 0x01, 0x22, 0xC3, + 0x05, 0x54, 0xFC, 0xDE, 0x03, 0x22, 0x00, 0x01, 0x00, 0x13, 0x01, 0x4C, + 0x01, 0x69, 0x05, 0xB0, 0x00, 0x0F, 0x00, 0x00, 0x53, 0x33, 0x03, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x27, 0x35, 0x16, 0x16, 0x33, 0x32, 0x36, 0x35, + 0xA8, 0xC1, 0x01, 0x76, 0x81, 0x17, 0x32, 0x15, 0x0D, 0x1C, 0x0C, 0x31, + 0x2F, 0x05, 0xB0, 0xFC, 0xC9, 0x87, 0xA6, 0x06, 0x06, 0xA2, 0x01, 0x05, + 0x3D, 0x48, 0xFF, 0xFF, 0x00, 0x4A, 0xFF, 0xEB, 0x06, 0x59, 0x04, 0x41, + 0x04, 0x26, 0x02, 0x23, 0x00, 0x00, 0x00, 0x07, 0x0A, 0x49, 0x04, 0x1E, + 0xFF, 0x9F, 0x00, 0x01, 0x00, 0x40, 0xFF, 0xA0, 0x04, 0x06, 0x03, 0x98, + 0x00, 0x18, 0x00, 0x00, 0x45, 0x35, 0x33, 0x32, 0x36, 0x35, 0x34, 0x26, + 0x23, 0x22, 0x06, 0x15, 0x23, 0x34, 0x36, 0x36, 0x33, 0x32, 0x16, 0x16, + 0x15, 0x14, 0x06, 0x06, 0x23, 0x01, 0x7C, 0x6B, 0x92, 0xAB, 0xAC, 0x91, + 0x92, 0xAA, 0x6B, 0x62, 0xC2, 0x90, 0x99, 0xEF, 0x8A, 0x8B, 0xF4, 0xA0, + 0x60, 0xCB, 0xA2, 0x8B, 0x8D, 0xA7, 0xB0, 0x97, 0xAB, 0xED, 0x7B, 0x82, + 0xE7, 0x96, 0x96, 0xE4, 0x7F, 0x00, 0x02, 0x00, 0x6D, 0xFF, 0xFF, 0x01, + 0x91, 0x05, 0xEA, 0x00, 0x03, 0x00, 0x0F, 0x00, 0x00, 0x57, 0x13, 0x33, + 0x13, 0x03, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x87, 0x12, 0xCD, 0x11, 0x78, 0x3D, 0x55, 0x55, 0x3D, 0x3C, 0x56, + 0x56, 0x01, 0x04, 0x28, 0xFB, 0xD8, 0x04, 0xC9, 0x55, 0x3C, 0x3D, 0x54, + 0x54, 0x3D, 0x3C, 0x55, 0x00, 0x01, 0x00, 0x8E, 0x00, 0x00, 0x05, 0x0B, + 0x05, 0xD2, 0x00, 0x07, 0x00, 0x00, 0x61, 0x21, 0x11, 0x33, 0x11, 0x21, + 0x11, 0x33, 0x05, 0x0B, 0xFB, 0x83, 0xE0, 0x02, 0xBD, 0xE0, 0x05, 0xD2, + 0xFA, 0xF1, 0x05, 0x0F, 0x00, 0x02, 0x00, 0x6B, 0x04, 0xAA, 0x02, 0xCE, + 0x07, 0x09, 0x00, 0x0F, 0x00, 0x1C, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, + 0x35, 0x33, 0x14, 0x16, 0x33, 0x32, 0x36, 0x35, 0x33, 0x14, 0x06, 0x06, + 0x03, 0x23, 0x37, 0x36, 0x26, 0x23, 0x23, 0x35, 0x33, 0x32, 0x16, 0x16, + 0x07, 0x01, 0x9C, 0x56, 0x8A, 0x51, 0x91, 0x5A, 0x46, 0x46, 0x5A, 0x92, + 0x51, 0x8A, 0x10, 0x8E, 0x3E, 0x09, 0x09, 0x13, 0x8A, 0x8B, 0x56, 0x57, + 0x07, 0x26, 0x04, 0xAA, 0x4E, 0x83, 0x51, 0x43, 0x56, 0x56, 0x43, 0x51, + 0x83, 0x4E, 0x01, 0x4B, 0x74, 0x11, 0x12, 0x7D, 0x3C, 0x60, 0x37, 0x00, + 0x03, 0x00, 0xDC, 0x04, 0xC3, 0x03, 0x5D, 0x07, 0x1A, 0x00, 0x0B, 0x00, + 0x17, 0x00, 0x1B, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x13, 0x13, 0x33, 0x03, 0x02, 0xDE, 0x35, + 0x4A, 0x4A, 0x35, 0x34, 0x4B, 0x4B, 0xFE, 0x48, 0x34, 0x4A, 0x4A, 0x34, + 0x35, 0x4A, 0x4A, 0x46, 0x24, 0xC4, 0x62, 0x04, 0xC3, 0x4A, 0x33, 0x34, + 0x4A, 0x4A, 0x34, 0x33, 0x4A, 0x4A, 0x33, 0x34, 0x4A, 0x4A, 0x34, 0x33, + 0x4A, 0x01, 0x30, 0x01, 0x27, 0xFE, 0xD9, 0xFF, 0xFF, 0x00, 0x50, 0x04, + 0xAD, 0x01, 0x66, 0x05, 0xEF, 0x06, 0x06, 0x0A, 0x7E, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x50, 0x04, 0xAD, 0x02, 0x64, 0x05, 0xEF, 0x06, 0x06, 0x0A, + 0x7F, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x50, 0x04, 0xAD, 0x02, 0x84, 0x05, + 0xEF, 0x06, 0x06, 0x0A, 0x80, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x50, 0x04, + 0xAD, 0x02, 0xA4, 0x05, 0xEF, 0x06, 0x06, 0x0A, 0x81, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x50, 0x04, 0xAD, 0x02, 0xA9, 0x05, 0xEF, 0x06, 0x06, 0x0A, + 0x82, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x04, 0xAD, 0x02, 0x5A, 0x07, + 0x1A, 0x06, 0x06, 0x0A, 0x83, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x04, + 0xAD, 0x02, 0x5A, 0x07, 0x1A, 0x06, 0x06, 0x0A, 0x84, 0x00, 0x00, 0xFF, + 0xFF, 0x00, 0x2B, 0x04, 0xB7, 0x01, 0x1B, 0x05, 0xE6, 0x06, 0x06, 0x0A, + 0x88, 0x03, 0x01, 0x00, 0x02, 0x00, 0x90, 0x04, 0xEE, 0x02, 0xC1, 0x07, + 0x1F, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x15, 0x21, 0x35, 0x37, + 0x03, 0x33, 0x13, 0x02, 0xC1, 0xFD, 0xCF, 0xCD, 0xCB, 0xDA, 0x91, 0x05, + 0x8B, 0x9D, 0x9D, 0x7D, 0x01, 0x17, 0xFE, 0xE9, 0x00, 0x01, 0x00, 0x60, + 0x04, 0xD9, 0x01, 0xD6, 0x05, 0xF4, 0x00, 0x03, 0x00, 0x00, 0x41, 0x03, + 0x33, 0x13, 0x01, 0x31, 0xD1, 0xE2, 0x94, 0x04, 0xD9, 0x01, 0x1B, 0xFE, + 0xE5, 0x00, 0x01, 0x00, 0x60, 0x04, 0xD9, 0x01, 0xD6, 0x05, 0xF4, 0x00, + 0x03, 0x00, 0x00, 0x53, 0x13, 0x33, 0x03, 0x60, 0x95, 0xE1, 0xD1, 0x04, + 0xD9, 0x01, 0x1B, 0xFE, 0xE5, 0x00, 0x01, 0x00, 0x4B, 0xFE, 0x5A, 0x01, + 0xC5, 0x00, 0x1B, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, + 0x17, 0x06, 0x06, 0x01, 0x33, 0x69, 0x7F, 0x53, 0x44, 0xD5, 0x51, 0x45, + 0x28, 0x2C, 0x10, 0x24, 0x0E, 0x0E, 0x1F, 0x4E, 0xFE, 0x5A, 0x63, 0x60, + 0x4F, 0x75, 0x3A, 0x1B, 0x41, 0x53, 0x2B, 0x21, 0x25, 0x04, 0x02, 0x9B, + 0x05, 0x07, 0x00, 0x01, 0xFF, 0xDA, 0xFE, 0x5A, 0x03, 0x37, 0x02, 0xE8, + 0x00, 0x1D, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x05, 0x35, + 0x33, 0x14, 0x0E, 0x05, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, + 0x06, 0x06, 0xC4, 0x68, 0x82, 0x55, 0x8C, 0xA7, 0xA7, 0x8B, 0x55, 0x4E, + 0x46, 0x73, 0x8B, 0x8A, 0x73, 0x47, 0x29, 0x2B, 0x11, 0x24, 0x0E, 0x0E, + 0x1F, 0x4B, 0xFE, 0x5A, 0x64, 0x5F, 0x4E, 0x6A, 0x50, 0x50, 0x65, 0x94, + 0xDC, 0x9E, 0xA0, 0xE9, 0xA6, 0x73, 0x52, 0x43, 0x44, 0x2C, 0x21, 0x25, + 0x04, 0x02, 0x9B, 0x05, 0x07, 0x00, 0x01, 0x00, 0x3C, 0xFE, 0x5A, 0x03, + 0x33, 0x01, 0xFF, 0x00, 0x1C, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, + 0x3E, 0x05, 0x35, 0x33, 0x14, 0x0E, 0x04, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x26, 0x68, 0x82, 0x4A, 0x79, 0x92, + 0x91, 0x79, 0x4A, 0x4E, 0x4E, 0x7D, 0x8C, 0x7C, 0x4F, 0x29, 0x2B, 0x11, + 0x24, 0x0E, 0x0E, 0x1F, 0x4B, 0xFE, 0x5A, 0x64, 0x5F, 0x46, 0x60, 0x48, + 0x40, 0x4C, 0x67, 0x96, 0x6B, 0x7E, 0xB3, 0x7B, 0x57, 0x46, 0x46, 0x2F, + 0x21, 0x25, 0x04, 0x02, 0x9B, 0x05, 0x07, 0x00, 0x01, 0x00, 0x50, 0xFE, + 0x5C, 0x01, 0xC5, 0x00, 0x10, 0x00, 0x13, 0x00, 0x00, 0x41, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x14, 0x16, 0x33, 0x32, + 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x35, 0x68, 0x7D, 0x4E, 0x48, 0xD1, + 0x50, 0x47, 0x29, 0x2B, 0x11, 0x24, 0x0E, 0x0E, 0x1F, 0x4B, 0xFE, 0x5C, + 0x64, 0x5F, 0x48, 0x71, 0x38, 0x10, 0x43, 0x4F, 0x2B, 0x21, 0x25, 0x04, + 0x02, 0x9C, 0x04, 0x07, 0x00, 0x01, 0x00, 0x6B, 0xFE, 0x5A, 0x02, 0x32, + 0x01, 0x35, 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x26, 0x35, 0x34, 0x3E, + 0x02, 0x37, 0x01, 0x0E, 0x03, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, + 0x17, 0x06, 0x06, 0x01, 0x5B, 0x73, 0x7D, 0x15, 0x23, 0x2D, 0x19, 0x01, + 0x49, 0x10, 0x50, 0x58, 0x40, 0x29, 0x35, 0x11, 0x24, 0x0E, 0x0E, 0x1F, + 0x4A, 0xFE, 0x5A, 0x62, 0x5E, 0x26, 0x46, 0x41, 0x3F, 0x1F, 0x01, 0x10, + 0x4E, 0x8B, 0x7B, 0x6E, 0x32, 0x21, 0x25, 0x04, 0x02, 0x9B, 0x05, 0x07, + 0x00, 0x01, 0xFF, 0xB2, 0xFE, 0x5A, 0x02, 0x5E, 0x02, 0x15, 0x00, 0x1C, + 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x05, 0x35, 0x33, 0x14, + 0x0E, 0x04, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, + 0xA1, 0x73, 0x7C, 0x3F, 0x68, 0x7D, 0x7C, 0x69, 0x3E, 0x65, 0x45, 0x6C, + 0x7B, 0x6D, 0x45, 0x2A, 0x35, 0x0E, 0x19, 0x0C, 0x0E, 0x1B, 0x42, 0xFE, + 0x5A, 0x62, 0x5E, 0x46, 0x63, 0x4F, 0x48, 0x52, 0x6C, 0x96, 0x67, 0x87, + 0xBB, 0x7D, 0x56, 0x45, 0x47, 0x33, 0x21, 0x25, 0x04, 0x02, 0x9B, 0x05, + 0x07, 0x00, 0x01, 0x00, 0x40, 0xFE, 0x5C, 0x01, 0x92, 0x00, 0x00, 0x00, + 0x0F, 0x00, 0x00, 0x41, 0x22, 0x26, 0x26, 0x35, 0x37, 0x07, 0x06, 0x16, + 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, 0x06, 0x01, 0x2D, 0x52, 0x69, 0x32, + 0xD1, 0x2E, 0x16, 0x2F, 0x41, 0x12, 0x25, 0x10, 0x0E, 0x17, 0x31, 0xFE, + 0x5C, 0x37, 0x68, 0x49, 0xBC, 0x7E, 0x3B, 0x41, 0x03, 0x03, 0xA5, 0x04, + 0x07, 0x00, 0x01, 0xFF, 0xCD, 0xFE, 0x5A, 0x02, 0x5E, 0x01, 0x9C, 0x00, + 0x1C, 0x00, 0x00, 0x53, 0x22, 0x26, 0x35, 0x34, 0x3E, 0x05, 0x35, 0x33, + 0x14, 0x0E, 0x04, 0x15, 0x14, 0x16, 0x33, 0x32, 0x36, 0x37, 0x17, 0x06, + 0x06, 0xBD, 0x73, 0x7D, 0x3D, 0x63, 0x77, 0x76, 0x63, 0x3C, 0x65, 0x41, + 0x67, 0x72, 0x67, 0x41, 0x29, 0x35, 0x0E, 0x19, 0x0D, 0x0D, 0x1B, 0x42, + 0xFE, 0x5A, 0x62, 0x5E, 0x46, 0x60, 0x47, 0x3C, 0x40, 0x52, 0x74, 0x53, + 0x6F, 0x95, 0x63, 0x44, 0x3A, 0x43, 0x33, 0x21, 0x25, 0x04, 0x02, 0x9B, + 0x05, 0x07, 0x00, 0x02, 0xFC, 0xD0, 0x05, 0x02, 0xFF, 0x7F, 0x06, 0x7A, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x35, 0x21, 0x15, 0x07, 0x11, + 0x33, 0x11, 0xFC, 0xD0, 0x02, 0x2B, 0x20, 0xA4, 0x05, 0xEE, 0x8C, 0x8C, + 0xEC, 0x01, 0x78, 0xFE, 0x88, 0x00, 0x01, 0xFB, 0x0B, 0x01, 0xC6, 0xFF, + 0xFB, 0x02, 0x6E, 0x00, 0x03, 0x00, 0x00, 0x43, 0x15, 0x21, 0x35, 0x05, + 0xFB, 0x10, 0x02, 0x6E, 0xA8, 0xA8, 0x00, 0x01, 0x00, 0x79, 0x02, 0x9A, + 0x03, 0x1F, 0x03, 0x38, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, 0x21, 0x15, + 0x79, 0x02, 0xA6, 0x02, 0x9A, 0x9E, 0x9E, 0x00, 0x02, 0xFC, 0xBD, 0xFE, + 0x10, 0xFE, 0x5F, 0xFF, 0xAE, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, + 0x11, 0x21, 0x11, 0x01, 0x15, 0x33, 0x35, 0xFC, 0xBD, 0x01, 0xA2, 0xFE, + 0xD7, 0xAE, 0xFE, 0x10, 0x01, 0x9E, 0xFE, 0x62, 0x01, 0x26, 0xAC, 0xAC, + 0xFF, 0xFF, 0xFC, 0xB2, 0xFE, 0x21, 0xFE, 0x66, 0xFF, 0xA3, 0x04, 0x07, + 0x0A, 0x2A, 0xFC, 0x29, 0xFD, 0x7B, 0x00, 0x02, 0xFC, 0xAA, 0xFE, 0x2B, + 0xFE, 0x5D, 0xFF, 0xC1, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x41, 0x11, + 0x33, 0x11, 0x25, 0x35, 0x21, 0x15, 0xFD, 0xB7, 0xA6, 0xFE, 0x4D, 0x01, + 0xA5, 0xFE, 0x2B, 0x01, 0x96, 0xFE, 0x6A, 0x80, 0x98, 0x98, 0x00, 0x02, + 0xFC, 0xC0, 0xFE, 0x2B, 0xFE, 0x73, 0xFF, 0xC1, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x41, 0x11, 0x33, 0x11, 0x27, 0x35, 0x21, 0x15, 0xFC, 0xC0, + 0xA3, 0x96, 0x01, 0xA6, 0xFE, 0x2B, 0x01, 0x96, 0xFE, 0x6A, 0x80, 0x98, + 0x98, 0xFF, 0xFF, 0xFD, 0x00, 0xFE, 0x44, 0xFE, 0xB4, 0xFF, 0xB0, 0x04, + 0x07, 0x0A, 0x42, 0xFC, 0x78, 0xFD, 0x9E, 0x00, 0x01, 0xFD, 0x1D, 0x04, + 0x64, 0xFD, 0xFF, 0x06, 0x82, 0x00, 0x16, 0x00, 0x00, 0x41, 0x35, 0x16, + 0x36, 0x35, 0x34, 0x26, 0x26, 0x35, 0x34, 0x36, 0x36, 0x33, 0x15, 0x22, + 0x06, 0x15, 0x14, 0x16, 0x16, 0x15, 0x14, 0x06, 0xFD, 0x1D, 0x26, 0x23, + 0x24, 0x23, 0x38, 0x65, 0x42, 0x1C, 0x24, 0x21, 0x20, 0x78, 0x04, 0x64, + 0x81, 0x01, 0x24, 0x15, 0x1B, 0x43, 0x4E, 0x29, 0x31, 0x40, 0x1F, 0x80, + 0x19, 0x17, 0x1C, 0x45, 0x4D, 0x2B, 0x48, 0x4C, 0x00, 0x01, 0x00, 0x32, + 0x02, 0x91, 0x03, 0x6A, 0x03, 0x41, 0x00, 0x03, 0x00, 0x00, 0x53, 0x35, + 0x21, 0x15, 0x32, 0x03, 0x38, 0x02, 0x91, 0xB0, 0xB0, 0x00, 0x01, 0x00, + 0x32, 0x02, 0x91, 0x03, 0x3D, 0x03, 0x41, 0x00, 0x03, 0x00, 0x00, 0x53, + 0x35, 0x21, 0x15, 0x32, 0x03, 0x0B, 0x02, 0x91, 0xB0, 0xB0, 0x00, 0x01, + 0x00, 0x00, 0x02, 0x4A, 0x02, 0x1A, 0x04, 0x36, 0x00, 0x03, 0x00, 0x00, + 0x51, 0x35, 0x01, 0x15, 0x02, 0x1A, 0x02, 0x4A, 0xB4, 0x01, 0x38, 0xB4, + 0x00, 0x01, 0x00, 0x00, 0x01, 0xD6, 0x03, 0x06, 0x04, 0x67, 0x00, 0x03, + 0x00, 0x00, 0x51, 0x35, 0x01, 0x15, 0x03, 0x06, 0x01, 0xD6, 0xD2, 0x01, + 0xBF, 0xD2, 0x00, 0x01, 0x00, 0x28, 0x02, 0x77, 0x02, 0xB1, 0x03, 0x5B, + 0x00, 0x17, 0x00, 0x00, 0x41, 0x22, 0x2E, 0x02, 0x23, 0x22, 0x06, 0x07, + 0x23, 0x36, 0x36, 0x33, 0x32, 0x1E, 0x02, 0x33, 0x32, 0x36, 0x37, 0x33, + 0x06, 0x06, 0x01, 0xF8, 0x2A, 0x4B, 0x42, 0x36, 0x16, 0x1D, 0x1C, 0x02, + 0x92, 0x03, 0x5F, 0x58, 0x2C, 0x48, 0x3D, 0x36, 0x1B, 0x1D, 0x1D, 0x04, + 0x8F, 0x03, 0x63, 0x02, 0x77, 0x1A, 0x24, 0x1A, 0x33, 0x21, 0x65, 0x7B, + 0x1B, 0x24, 0x1B, 0x29, 0x2C, 0x67, 0x78, 0x00, 0x01, 0x00, 0x8C, 0x04, + 0xB2, 0x01, 0x8E, 0x06, 0x6F, 0x00, 0x0A, 0x00, 0x00, 0x53, 0x35, 0x34, + 0x36, 0x36, 0x37, 0x17, 0x06, 0x06, 0x15, 0x15, 0x8C, 0x2D, 0x3E, 0x19, + 0x7E, 0x22, 0x31, 0x04, 0xB2, 0x84, 0x4E, 0x79, 0x57, 0x1B, 0x53, 0x3A, + 0x69, 0x4D, 0x7A, 0x00 +}; + +inline std::vector icon_font = { + 0x00, 0x01, 0x00, 0x00, 0x00, 0x0B, 0x00, 0x80, 0x00, 0x03, 0x00, 0x30, + 0x4F, 0x53, 0x2F, 0x32, 0x0F, 0x11, 0x0D, 0x08, 0x00, 0x00, 0x00, 0xBC, + 0x00, 0x00, 0x00, 0x60, 0x63, 0x6D, 0x61, 0x70, 0x00, 0x14, 0x01, 0x0E, + 0x00, 0x00, 0x01, 0x1C, 0x00, 0x00, 0x00, 0x54, 0x67, 0x61, 0x73, 0x70, + 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x01, 0x70, 0x00, 0x00, 0x00, 0x08, + 0x67, 0x6C, 0x79, 0x66, 0xDC, 0xFD, 0x3D, 0x9E, 0x00, 0x00, 0x01, 0x78, + 0x00, 0x00, 0x0B, 0x58, 0x68, 0x65, 0x61, 0x64, 0x2C, 0x83, 0xD7, 0x63, + 0x00, 0x00, 0x0C, 0xD0, 0x00, 0x00, 0x00, 0x36, 0x68, 0x68, 0x65, 0x61, + 0x07, 0x56, 0x03, 0xCB, 0x00, 0x00, 0x0D, 0x08, 0x00, 0x00, 0x00, 0x24, + 0x68, 0x6D, 0x74, 0x78, 0x1D, 0x25, 0x00, 0x00, 0x00, 0x00, 0x0D, 0x2C, + 0x00, 0x00, 0x00, 0x28, 0x6C, 0x6F, 0x63, 0x61, 0x0B, 0xD4, 0x08, 0x7E, + 0x00, 0x00, 0x0D, 0x54, 0x00, 0x00, 0x00, 0x16, 0x6D, 0x61, 0x78, 0x70, + 0x00, 0x11, 0x01, 0x44, 0x00, 0x00, 0x0D, 0x6C, 0x00, 0x00, 0x00, 0x20, + 0x6E, 0x61, 0x6D, 0x65, 0x99, 0x4A, 0x09, 0xFB, 0x00, 0x00, 0x0D, 0x8C, + 0x00, 0x00, 0x01, 0x86, 0x70, 0x6F, 0x73, 0x74, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x0F, 0x14, 0x00, 0x00, 0x00, 0x20, 0x00, 0x03, 0x03, 0x98, + 0x01, 0x90, 0x00, 0x05, 0x00, 0x00, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, + 0x00, 0x8F, 0x02, 0x99, 0x02, 0xCC, 0x00, 0x00, 0x01, 0xEB, 0x00, 0x33, + 0x01, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, + 0x00, 0x00, 0x00, 0x46, 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x40, 0x03, 0xC0, + 0x00, 0x40, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x1C, 0x00, 0x01, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x1C, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1C, + 0x00, 0x04, 0x00, 0x38, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x08, 0x00, 0x02, + 0x00, 0x02, 0x00, 0x01, 0x00, 0x20, 0x00, 0x46, 0xFF, 0xFD, 0xFF, 0xFF, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x41, 0xFF, 0xFD, 0xFF, 0xFF, + 0x00, 0x01, 0xFF, 0xE3, 0xFF, 0xC3, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, + 0xFF, 0xFF, 0x00, 0x0F, 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, + 0x03, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0xFF, 0xC0, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x02, + 0x00, 0x00, 0x37, 0x39, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0xFF, 0xC0, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x02, 0x00, 0x00, 0x37, 0x39, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x80, + 0x03, 0xC0, 0x00, 0x27, 0x00, 0x3F, 0x00, 0x68, 0x00, 0x80, 0x00, 0xA8, + 0x00, 0xC0, 0x00, 0x00, 0x01, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x33, + 0x32, 0x16, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x21, 0x22, 0x26, 0x35, 0x34, + 0x36, 0x33, 0x21, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, + 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x01, 0x32, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x21, 0x32, 0x16, 0x15, 0x14, 0x06, 0x23, 0x21, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x23, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x33, 0x15, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, + 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x34, 0x26, 0x27, 0x2E, + 0x01, 0x13, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x33, 0x32, 0x16, 0x15, + 0x14, 0x06, 0x2B, 0x01, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x21, 0x22, 0x26, 0x35, 0x34, 0x36, 0x33, 0x21, + 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x15, + 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, + 0x34, 0x26, 0x27, 0x2E, 0x01, 0x02, 0xD5, 0x1A, 0x2F, 0x12, 0x0A, 0x0F, + 0x05, 0x07, 0x12, 0x19, 0x19, 0x12, 0x07, 0x05, 0x0F, 0x0A, 0x12, 0x2F, + 0x1A, 0x19, 0x2F, 0x12, 0x0A, 0x0F, 0x05, 0xFE, 0x4E, 0x12, 0x19, 0x19, + 0x12, 0x01, 0xB2, 0x05, 0x0F, 0x0A, 0x12, 0x2F, 0x19, 0x08, 0x10, 0x06, + 0x06, 0x06, 0x06, 0x06, 0x06, 0x10, 0x08, 0x09, 0x10, 0x06, 0x06, 0x06, + 0x06, 0x06, 0x06, 0x10, 0xFE, 0x77, 0x1A, 0x2F, 0x12, 0x0A, 0x0F, 0x05, + 0x01, 0x87, 0x12, 0x19, 0x19, 0x12, 0xFE, 0x79, 0x05, 0x0F, 0x0A, 0x12, + 0x2F, 0x1A, 0x19, 0x2F, 0x12, 0x0A, 0x0F, 0x05, 0x32, 0x12, 0x19, 0x19, + 0x12, 0x32, 0x05, 0x0F, 0x0A, 0x12, 0x2F, 0x19, 0x08, 0x10, 0x06, 0x06, + 0x06, 0x06, 0x06, 0x06, 0x10, 0x08, 0x09, 0x10, 0x06, 0x06, 0x06, 0x06, + 0x06, 0x06, 0x10, 0xF7, 0x1A, 0x2F, 0x12, 0x0A, 0x0F, 0x05, 0x87, 0x12, + 0x19, 0x19, 0x12, 0x87, 0x05, 0x0F, 0x0A, 0x12, 0x2F, 0x1A, 0x19, 0x2F, + 0x12, 0x0A, 0x0F, 0x05, 0xFE, 0xCE, 0x12, 0x19, 0x19, 0x12, 0x01, 0x32, + 0x05, 0x0F, 0x0A, 0x12, 0x2F, 0x19, 0x08, 0x10, 0x06, 0x06, 0x06, 0x06, + 0x06, 0x06, 0x10, 0x08, 0x09, 0x10, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, + 0x10, 0x01, 0x40, 0x13, 0x12, 0x0B, 0x18, 0x0D, 0x19, 0x12, 0x12, 0x19, + 0x0D, 0x18, 0x0B, 0x12, 0x13, 0x13, 0x12, 0x0B, 0x18, 0x0D, 0x19, 0x12, + 0x12, 0x19, 0x0D, 0x18, 0x0B, 0x12, 0x13, 0x55, 0x07, 0x06, 0x06, 0x10, + 0x08, 0x08, 0x10, 0x06, 0x06, 0x07, 0x07, 0x06, 0x06, 0x10, 0x08, 0x08, + 0x10, 0x06, 0x06, 0x07, 0x01, 0x55, 0x13, 0x12, 0x0B, 0x18, 0x0D, 0x19, + 0x12, 0x12, 0x19, 0x0D, 0x18, 0x0B, 0x12, 0x13, 0x13, 0x12, 0x0B, 0x18, + 0x0D, 0x19, 0x12, 0x12, 0x19, 0x0D, 0x18, 0x0B, 0x12, 0x13, 0x55, 0x07, + 0x06, 0x06, 0x10, 0x08, 0x08, 0x10, 0x06, 0x06, 0x07, 0x07, 0x06, 0x06, + 0x10, 0x08, 0x08, 0x10, 0x06, 0x06, 0x07, 0x01, 0x55, 0x13, 0x12, 0x0B, + 0x18, 0x0D, 0x19, 0x12, 0x12, 0x19, 0x0D, 0x18, 0x0B, 0x12, 0x13, 0x13, + 0x12, 0x0B, 0x18, 0x0D, 0x19, 0x12, 0x12, 0x19, 0x0D, 0x18, 0x0B, 0x12, + 0x13, 0x55, 0x07, 0x06, 0x06, 0x10, 0x08, 0x08, 0x10, 0x06, 0x06, 0x07, + 0x07, 0x06, 0x06, 0x10, 0x08, 0x08, 0x10, 0x06, 0x06, 0x07, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x68, 0x03, 0xC0, 0x00, 0x1B, + 0x00, 0x29, 0x00, 0x38, 0x00, 0x47, 0x00, 0x63, 0x00, 0x00, 0x01, 0x34, + 0x26, 0x27, 0x2E, 0x01, 0x23, 0x21, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x11, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x33, 0x21, 0x32, 0x36, 0x37, 0x3E, + 0x01, 0x35, 0x25, 0x32, 0x16, 0x15, 0x14, 0x06, 0x2B, 0x01, 0x22, 0x26, + 0x35, 0x34, 0x36, 0x33, 0x37, 0x32, 0x16, 0x15, 0x14, 0x06, 0x2B, 0x01, + 0x22, 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x27, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x2B, 0x01, 0x22, 0x26, 0x35, 0x34, 0x36, 0x3B, 0x01, 0x01, 0x14, + 0x06, 0x07, 0x0E, 0x01, 0x23, 0x21, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, + 0x11, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x21, 0x32, 0x16, 0x17, 0x1E, + 0x01, 0x15, 0x03, 0x18, 0x06, 0x05, 0x06, 0x0E, 0x08, 0xFD, 0xD5, 0x08, + 0x0E, 0x06, 0x05, 0x06, 0x01, 0x01, 0x06, 0x05, 0x06, 0x0E, 0x08, 0x02, + 0x2B, 0x08, 0x0E, 0x06, 0x05, 0x06, 0xFE, 0x4D, 0x10, 0x17, 0x17, 0x10, + 0x50, 0x10, 0x17, 0x17, 0x10, 0xEE, 0x10, 0x18, 0x18, 0x10, 0xEE, 0x10, + 0x17, 0x17, 0x10, 0xEE, 0x4F, 0x10, 0x17, 0x17, 0x10, 0x9F, 0x10, 0x17, + 0x17, 0x10, 0x9F, 0x01, 0xB4, 0x13, 0x10, 0x11, 0x2C, 0x17, 0xFD, 0xD5, + 0x18, 0x2B, 0x11, 0x11, 0x12, 0x12, 0x11, 0x11, 0x2B, 0x18, 0x02, 0x2B, + 0x17, 0x2C, 0x11, 0x10, 0x13, 0x02, 0xD5, 0x08, 0x0F, 0x05, 0x06, 0x06, + 0x06, 0x06, 0x05, 0x0F, 0x08, 0xFD, 0xD6, 0x08, 0x0F, 0x05, 0x06, 0x06, + 0x06, 0x06, 0x05, 0x0F, 0x08, 0xC6, 0x17, 0x11, 0x10, 0x18, 0x18, 0x10, + 0x11, 0x17, 0x77, 0x18, 0x10, 0x10, 0x18, 0x18, 0x10, 0x10, 0x18, 0x76, + 0x17, 0x10, 0x11, 0x17, 0x17, 0x11, 0x10, 0x17, 0xFE, 0x4D, 0x18, 0x2C, + 0x10, 0x11, 0x12, 0x12, 0x11, 0x10, 0x2C, 0x18, 0x02, 0x2A, 0x18, 0x2C, + 0x10, 0x11, 0x12, 0x12, 0x11, 0x10, 0x2C, 0x18, 0x00, 0x03, 0x00, 0x00, + 0xFF, 0xC0, 0x03, 0x68, 0x03, 0xC0, 0x00, 0x22, 0x00, 0x44, 0x00, 0x7D, + 0x00, 0x00, 0x13, 0x11, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x3B, 0x01, 0x17, + 0x1E, 0x01, 0x1F, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x15, 0x11, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x21, 0x22, 0x26, 0x27, 0x2E, 0x01, + 0x35, 0x33, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x33, 0x21, 0x32, 0x36, 0x37, + 0x3E, 0x01, 0x35, 0x11, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x2B, 0x01, 0x22, + 0x26, 0x2F, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x11, 0x07, + 0x11, 0x34, 0x36, 0x37, 0x3E, 0x01, 0x3B, 0x01, 0x32, 0x16, 0x15, 0x14, + 0x06, 0x2B, 0x01, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x11, 0x14, 0x16, + 0x17, 0x1E, 0x01, 0x33, 0x21, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x3D, 0x01, + 0x34, 0x36, 0x33, 0x32, 0x16, 0x1D, 0x01, 0x14, 0x06, 0x07, 0x0E, 0x01, + 0x23, 0x21, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0xEE, 0x12, 0x11, 0x10, + 0x2C, 0x18, 0x76, 0x08, 0x06, 0x0A, 0x04, 0x44, 0xB6, 0x17, 0x2C, 0x11, + 0x11, 0x12, 0x12, 0x11, 0x11, 0x2C, 0x17, 0xFE, 0x74, 0x18, 0x2C, 0x10, + 0x11, 0x12, 0x4F, 0x06, 0x06, 0x05, 0x0F, 0x08, 0x01, 0x8C, 0x08, 0x0E, + 0x06, 0x05, 0x06, 0x06, 0x05, 0x06, 0x0E, 0x08, 0xC6, 0x08, 0x0F, 0x05, + 0x44, 0x66, 0x08, 0x0F, 0x05, 0x06, 0x06, 0xEE, 0x12, 0x11, 0x11, 0x2B, + 0x18, 0x4F, 0x11, 0x17, 0x17, 0x11, 0x4F, 0x08, 0x0E, 0x06, 0x05, 0x06, + 0x01, 0x06, 0x06, 0x06, 0x0E, 0x08, 0x01, 0x8C, 0x08, 0x0F, 0x05, 0x06, + 0x06, 0x17, 0x10, 0x11, 0x17, 0x12, 0x11, 0x10, 0x2C, 0x18, 0xFE, 0x74, + 0x18, 0x2B, 0x11, 0x11, 0x12, 0x01, 0x71, 0x01, 0x64, 0x18, 0x2C, 0x10, + 0x11, 0x12, 0x01, 0x01, 0x05, 0x04, 0x44, 0x12, 0x11, 0x11, 0x2B, 0x18, + 0xFE, 0xEB, 0x18, 0x2C, 0x10, 0x11, 0x12, 0x12, 0x11, 0x10, 0x2C, 0x18, + 0x08, 0x0F, 0x05, 0x06, 0x06, 0x06, 0x06, 0x05, 0x0F, 0x08, 0x01, 0x15, + 0x08, 0x0F, 0x05, 0x06, 0x06, 0x06, 0x05, 0x44, 0x06, 0x06, 0x05, 0x0F, + 0x08, 0xFE, 0x9C, 0x9F, 0x01, 0x65, 0x18, 0x2B, 0x11, 0x11, 0x12, 0x18, + 0x10, 0x10, 0x18, 0x06, 0x05, 0x06, 0x0E, 0x08, 0xFE, 0x9B, 0x08, 0x0E, + 0x06, 0x05, 0x06, 0x06, 0x05, 0x06, 0x0E, 0x08, 0x50, 0x10, 0x17, 0x17, + 0x10, 0x50, 0x17, 0x2C, 0x11, 0x10, 0x13, 0x13, 0x10, 0x11, 0x2C, 0x17, + 0x00, 0x04, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x94, 0x03, 0xC0, 0x00, 0x99, + 0x01, 0x11, 0x01, 0x29, 0x01, 0x41, 0x00, 0x00, 0x01, 0x36, 0x37, 0x36, + 0x32, 0x17, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x33, 0x3E, 0x01, 0x37, 0x31, 0x36, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x07, + 0x31, 0x0E, 0x01, 0x07, 0x14, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, + 0x17, 0x31, 0x16, 0x17, 0x16, 0x14, 0x07, 0x06, 0x07, 0x0E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x15, 0x1E, 0x01, 0x17, 0x31, 0x16, 0x07, + 0x0E, 0x01, 0x07, 0x06, 0x27, 0x31, 0x2E, 0x01, 0x27, 0x22, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x07, 0x06, 0x22, 0x27, 0x26, + 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x23, 0x0E, 0x01, + 0x07, 0x31, 0x06, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x37, 0x31, 0x3E, 0x01, + 0x37, 0x34, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x31, 0x26, + 0x27, 0x26, 0x34, 0x37, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x35, 0x2E, 0x01, 0x27, 0x31, 0x26, 0x37, 0x3E, 0x01, 0x37, + 0x36, 0x17, 0x31, 0x16, 0x36, 0x37, 0x17, 0x26, 0x22, 0x07, 0x31, 0x0E, + 0x01, 0x2F, 0x01, 0x26, 0x06, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x06, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x0F, 0x01, 0x06, 0x14, 0x17, 0x31, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x16, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x16, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x1F, 0x01, 0x16, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, + 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x16, 0x36, 0x27, 0x2E, 0x01, 0x27, + 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x3F, 0x01, 0x36, 0x26, + 0x27, 0x31, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, + 0x01, 0x37, 0x36, 0x26, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x26, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x2F, 0x01, 0x13, 0x34, 0x26, 0x27, 0x2E, 0x01, + 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, 0x17, 0x1E, 0x01, + 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x14, 0x06, 0x07, 0x0E, 0x01, + 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, 0x34, 0x36, 0x37, 0x3E, 0x01, + 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x01, 0x8F, 0x0B, 0x20, 0x21, 0x4A, + 0x21, 0x20, 0x0B, 0x01, 0x03, 0x02, 0x03, 0x06, 0x03, 0x04, 0x07, 0x03, + 0x04, 0x07, 0x03, 0x27, 0x27, 0x27, 0x34, 0x07, 0x08, 0x18, 0x02, 0x02, + 0x01, 0x01, 0x02, 0x01, 0x04, 0x03, 0x03, 0x06, 0x04, 0x2C, 0x16, 0x17, + 0x17, 0x16, 0x2C, 0x04, 0x06, 0x03, 0x03, 0x04, 0x01, 0x02, 0x01, 0x01, + 0x02, 0x02, 0x18, 0x08, 0x07, 0x34, 0x27, 0x27, 0x27, 0x03, 0x07, 0x04, + 0x03, 0x07, 0x04, 0x03, 0x06, 0x03, 0x02, 0x03, 0x01, 0x0B, 0x20, 0x21, + 0x4A, 0x21, 0x20, 0x0B, 0x01, 0x03, 0x02, 0x03, 0x06, 0x03, 0x04, 0x07, + 0x03, 0x04, 0x07, 0x03, 0x27, 0x27, 0x27, 0x34, 0x07, 0x08, 0x18, 0x02, + 0x02, 0x01, 0x01, 0x02, 0x01, 0x04, 0x03, 0x03, 0x06, 0x04, 0x2C, 0x16, + 0x17, 0x17, 0x16, 0x2C, 0x04, 0x06, 0x03, 0x03, 0x04, 0x01, 0x02, 0x01, + 0x01, 0x02, 0x02, 0x18, 0x08, 0x07, 0x34, 0x27, 0x27, 0x27, 0x0D, 0x1D, + 0x04, 0x8F, 0x06, 0x30, 0x06, 0x0D, 0x63, 0x31, 0x0C, 0x15, 0x23, 0x0D, + 0x07, 0x09, 0x01, 0x01, 0x05, 0x05, 0x05, 0x10, 0x0B, 0x07, 0x12, 0x0A, + 0x0D, 0x17, 0x17, 0x0E, 0x18, 0x0A, 0x0B, 0x10, 0x05, 0x05, 0x05, 0x01, + 0x01, 0x09, 0x07, 0x0D, 0x23, 0x15, 0x0B, 0x1A, 0x0E, 0x0E, 0x1B, 0x0D, + 0x0C, 0x16, 0x09, 0x09, 0x0D, 0x03, 0x02, 0x08, 0x2D, 0x05, 0x03, 0x0D, + 0x09, 0x09, 0x16, 0x0C, 0x0D, 0x1B, 0x0E, 0x0E, 0x1A, 0x0B, 0x15, 0x23, + 0x0D, 0x07, 0x09, 0x01, 0x01, 0x05, 0x05, 0x05, 0x10, 0x0B, 0x0A, 0x18, + 0x0E, 0x05, 0x14, 0x03, 0x16, 0x0E, 0x18, 0x0A, 0x0B, 0x10, 0x05, 0x05, + 0x05, 0x01, 0x01, 0x09, 0x07, 0x0D, 0x23, 0x15, 0x0B, 0x1A, 0x0E, 0x0E, + 0x1B, 0x0D, 0x0C, 0x16, 0x09, 0x07, 0x0A, 0x04, 0x04, 0x37, 0x0D, 0x0C, + 0x0C, 0x1F, 0x11, 0x11, 0x1F, 0x0C, 0x0C, 0x0D, 0x0D, 0x0C, 0x0C, 0x1F, + 0x11, 0x11, 0x1F, 0x0C, 0x0C, 0x0D, 0x56, 0x1A, 0x18, 0x18, 0x3F, 0x22, + 0x22, 0x3F, 0x18, 0x18, 0x1A, 0x1A, 0x18, 0x18, 0x3F, 0x22, 0x22, 0x3F, + 0x18, 0x18, 0x1A, 0x03, 0x12, 0x2C, 0x16, 0x17, 0x17, 0x16, 0x2C, 0x04, + 0x06, 0x03, 0x03, 0x04, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x18, 0x08, + 0x07, 0x34, 0x27, 0x27, 0x27, 0x03, 0x07, 0x04, 0x03, 0x07, 0x04, 0x03, + 0x06, 0x03, 0x02, 0x03, 0x01, 0x0B, 0x20, 0x21, 0x4A, 0x21, 0x20, 0x0B, + 0x01, 0x03, 0x02, 0x03, 0x06, 0x03, 0x04, 0x07, 0x03, 0x04, 0x07, 0x03, + 0x27, 0x27, 0x27, 0x34, 0x07, 0x08, 0x18, 0x02, 0x02, 0x01, 0x01, 0x02, + 0x01, 0x04, 0x03, 0x03, 0x06, 0x04, 0x2C, 0x16, 0x17, 0x17, 0x16, 0x2C, + 0x04, 0x06, 0x03, 0x03, 0x04, 0x01, 0x02, 0x01, 0x01, 0x02, 0x02, 0x18, + 0x08, 0x07, 0x34, 0x27, 0x27, 0x27, 0x03, 0x07, 0x04, 0x03, 0x07, 0x04, + 0x03, 0x06, 0x03, 0x02, 0x03, 0x01, 0x0B, 0x21, 0x20, 0x4A, 0x21, 0x20, + 0x0B, 0x01, 0x03, 0x02, 0x03, 0x06, 0x03, 0x04, 0x07, 0x03, 0x04, 0x07, + 0x03, 0x27, 0x27, 0x27, 0x34, 0x07, 0x08, 0x18, 0x08, 0x0C, 0x0F, 0x14, + 0x17, 0x17, 0x36, 0x2F, 0x16, 0x07, 0x0D, 0x23, 0x15, 0x0B, 0x1A, 0x0E, + 0x0E, 0x1B, 0x0D, 0x0C, 0x16, 0x09, 0x07, 0x0A, 0x04, 0x04, 0x06, 0x30, + 0x06, 0x03, 0x0D, 0x09, 0x09, 0x16, 0x0C, 0x0D, 0x1B, 0x0E, 0x0E, 0x1A, + 0x0B, 0x15, 0x23, 0x0D, 0x07, 0x09, 0x01, 0x01, 0x05, 0x05, 0x05, 0x10, + 0x0B, 0x0A, 0x18, 0x0E, 0x05, 0x14, 0x03, 0x16, 0x0E, 0x18, 0x0A, 0x0B, + 0x10, 0x05, 0x05, 0x05, 0x01, 0x01, 0x09, 0x07, 0x0D, 0x23, 0x15, 0x0B, + 0x1A, 0x0E, 0x0E, 0x1B, 0x0D, 0x0C, 0x16, 0x09, 0x09, 0x0D, 0x03, 0x02, + 0x08, 0x2D, 0x05, 0x03, 0x0D, 0x09, 0x09, 0x16, 0x0C, 0x0D, 0x1B, 0x0E, + 0x0E, 0x1A, 0x0B, 0x15, 0x23, 0x0D, 0x07, 0x09, 0x01, 0x01, 0x05, 0x05, + 0x05, 0x10, 0x0B, 0x07, 0x12, 0x0A, 0x0D, 0xFE, 0xC2, 0x11, 0x1F, 0x0C, + 0x0C, 0x0D, 0x0D, 0x0C, 0x0C, 0x1F, 0x11, 0x11, 0x1F, 0x0C, 0x0C, 0x0D, + 0x0D, 0x0C, 0x0C, 0x1F, 0x11, 0x22, 0x3F, 0x18, 0x18, 0x1A, 0x1A, 0x18, + 0x18, 0x3F, 0x22, 0x22, 0x3F, 0x18, 0x18, 0x1A, 0x1A, 0x18, 0x18, 0x3F, + 0x00, 0x03, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x88, 0x03, 0xC0, 0x00, 0x33, + 0x00, 0x44, 0x00, 0x55, 0x00, 0x00, 0x01, 0x36, 0x32, 0x17, 0x16, 0x17, + 0x1E, 0x01, 0x17, 0x16, 0x37, 0x33, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x07, + 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x0E, 0x01, 0x07, 0x06, 0x22, 0x27, + 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x27, 0x26, 0x36, 0x3F, + 0x01, 0x3E, 0x01, 0x17, 0x16, 0x37, 0x3E, 0x01, 0x37, 0x36, 0x17, 0x0E, + 0x01, 0x07, 0x0E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x11, 0x13, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, + 0x37, 0x36, 0x26, 0x27, 0x2E, 0x01, 0x27, 0x11, 0x01, 0xE6, 0x0B, 0x1E, + 0x0B, 0x20, 0x24, 0x25, 0x4E, 0x2A, 0x2A, 0x2A, 0x07, 0x0B, 0x12, 0x04, + 0x0E, 0x09, 0x06, 0x06, 0x20, 0x19, 0x1A, 0x44, 0x29, 0x29, 0x5D, 0x32, + 0x05, 0x0A, 0x05, 0x32, 0x5D, 0x29, 0x29, 0x44, 0x1A, 0x19, 0x20, 0x06, + 0x06, 0x09, 0x0E, 0x03, 0x05, 0x14, 0x0C, 0x2B, 0x29, 0x2A, 0x4E, 0x25, + 0x24, 0x12, 0x3B, 0x88, 0x47, 0x08, 0x04, 0x04, 0x05, 0x1C, 0x15, 0x16, + 0x39, 0x23, 0x18, 0x36, 0x1C, 0x50, 0x1C, 0x36, 0x18, 0x23, 0x39, 0x16, + 0x15, 0x1C, 0x05, 0x04, 0x04, 0x08, 0x47, 0x88, 0x3B, 0x03, 0x42, 0x0A, + 0x0A, 0x1C, 0x15, 0x15, 0x1C, 0x06, 0x07, 0x02, 0x01, 0x10, 0x0B, 0x32, + 0x67, 0x33, 0x34, 0x62, 0x2D, 0x2D, 0x4E, 0x20, 0x20, 0x2D, 0x0D, 0x01, + 0x01, 0x0D, 0x2D, 0x20, 0x20, 0x4E, 0x2D, 0x2D, 0x62, 0x34, 0x33, 0x67, + 0x32, 0x06, 0x0B, 0x0C, 0x01, 0x02, 0x07, 0x06, 0x1C, 0x15, 0x15, 0x50, + 0x26, 0x29, 0x01, 0x24, 0x48, 0x24, 0x2C, 0x53, 0x26, 0x26, 0x42, 0x1B, + 0x13, 0x1E, 0x0B, 0x02, 0x44, 0xFD, 0xBC, 0x0B, 0x1E, 0x13, 0x1B, 0x42, + 0x26, 0x26, 0x53, 0x2C, 0x24, 0x48, 0x24, 0x01, 0x29, 0x26, 0xFD, 0xBC, + 0x00, 0x05, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x68, 0x03, 0xC0, 0x00, 0x2A, + 0x00, 0x46, 0x00, 0x5F, 0x00, 0x84, 0x00, 0x9C, 0x00, 0x00, 0x25, 0x35, + 0x34, 0x26, 0x27, 0x2E, 0x01, 0x2B, 0x01, 0x22, 0x06, 0x07, 0x0E, 0x01, + 0x1D, 0x01, 0x14, 0x06, 0x23, 0x22, 0x26, 0x3D, 0x01, 0x34, 0x36, 0x37, + 0x3E, 0x01, 0x3B, 0x01, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x1D, 0x01, 0x14, + 0x06, 0x23, 0x22, 0x26, 0x35, 0x33, 0x3D, 0x01, 0x2E, 0x01, 0x27, 0x2E, + 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x15, 0x14, 0x06, 0x23, 0x22, 0x26, 0x35, 0x01, 0x34, 0x26, + 0x27, 0x2E, 0x01, 0x23, 0x22, 0x06, 0x07, 0x0E, 0x01, 0x15, 0x14, 0x16, + 0x17, 0x1E, 0x01, 0x33, 0x32, 0x36, 0x37, 0x3E, 0x01, 0x35, 0x33, 0x34, + 0x26, 0x27, 0x2E, 0x01, 0x27, 0x2E, 0x01, 0x37, 0x3E, 0x01, 0x17, 0x1E, + 0x01, 0x17, 0x1E, 0x01, 0x15, 0x14, 0x06, 0x07, 0x0E, 0x01, 0x07, 0x06, + 0x26, 0x27, 0x26, 0x36, 0x37, 0x3E, 0x01, 0x37, 0x3E, 0x01, 0x35, 0x23, + 0x14, 0x06, 0x07, 0x0E, 0x01, 0x23, 0x22, 0x26, 0x27, 0x2E, 0x01, 0x35, + 0x34, 0x36, 0x37, 0x3E, 0x01, 0x33, 0x32, 0x16, 0x17, 0x1E, 0x01, 0x02, + 0x2B, 0x12, 0x11, 0x11, 0x2C, 0x17, 0x9F, 0x17, 0x2C, 0x11, 0x10, 0x13, + 0x17, 0x10, 0x11, 0x17, 0x1E, 0x1C, 0x1C, 0x49, 0x27, 0x9F, 0x27, 0x49, + 0x1C, 0x1C, 0x1E, 0x17, 0x11, 0x10, 0x17, 0xED, 0x02, 0x0C, 0x0B, 0x0C, + 0x21, 0x13, 0x10, 0x10, 0x04, 0x04, 0x1C, 0x10, 0x20, 0x37, 0x14, 0x14, + 0x15, 0x01, 0x18, 0x10, 0x10, 0x18, 0xFE, 0xC3, 0x12, 0x10, 0x11, 0x2C, + 0x17, 0x18, 0x2C, 0x10, 0x11, 0x12, 0x12, 0x11, 0x10, 0x2C, 0x18, 0x17, + 0x2C, 0x11, 0x10, 0x12, 0xEE, 0x0C, 0x0C, 0x0D, 0x21, 0x13, 0x10, 0x11, + 0x04, 0x05, 0x1C, 0x10, 0x20, 0x37, 0x14, 0x14, 0x16, 0x16, 0x14, 0x14, + 0x37, 0x20, 0x10, 0x1C, 0x05, 0x04, 0x11, 0x10, 0x13, 0x21, 0x0C, 0x0D, + 0x0C, 0x9E, 0x1E, 0x1C, 0x1C, 0x49, 0x27, 0x28, 0x49, 0x1B, 0x1C, 0x1E, + 0x1E, 0x1C, 0x1B, 0x49, 0x28, 0x27, 0x49, 0x1C, 0x1C, 0x1E, 0x5B, 0x50, + 0x17, 0x2C, 0x11, 0x10, 0x13, 0x13, 0x10, 0x11, 0x2C, 0x17, 0x50, 0x10, + 0x17, 0x17, 0x10, 0x50, 0x27, 0x49, 0x1C, 0x1C, 0x1E, 0x1E, 0x1C, 0x1C, + 0x49, 0x27, 0x50, 0x10, 0x17, 0x17, 0x10, 0x4F, 0x0A, 0x11, 0x20, 0x0E, + 0x0F, 0x16, 0x05, 0x04, 0x1C, 0x10, 0x10, 0x11, 0x04, 0x09, 0x24, 0x1A, + 0x19, 0x3E, 0x21, 0x50, 0x10, 0x17, 0x17, 0x10, 0x02, 0x2B, 0x18, 0x2B, + 0x11, 0x11, 0x12, 0x12, 0x11, 0x11, 0x2B, 0x18, 0x18, 0x2B, 0x11, 0x11, + 0x12, 0x12, 0x11, 0x11, 0x2B, 0x18, 0x14, 0x25, 0x10, 0x0F, 0x16, 0x05, + 0x04, 0x1C, 0x10, 0x10, 0x11, 0x04, 0x08, 0x25, 0x1A, 0x1A, 0x3E, 0x21, + 0x21, 0x3F, 0x1A, 0x1A, 0x24, 0x08, 0x04, 0x11, 0x10, 0x0F, 0x1D, 0x04, + 0x05, 0x15, 0x10, 0x10, 0x25, 0x14, 0x27, 0x49, 0x1C, 0x1C, 0x1E, 0x1E, + 0x1C, 0x1C, 0x49, 0x27, 0x27, 0x49, 0x1C, 0x1C, 0x1E, 0x1E, 0x1C, 0x1C, + 0x49, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, + 0x79, 0x8F, 0x52, 0xB7, 0x5F, 0x0F, 0x3C, 0xF5, 0x00, 0x0B, 0x04, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xE4, 0xE8, 0x49, 0x73, 0x00, 0x00, 0x00, 0x00, + 0xE4, 0xE8, 0x49, 0x73, 0x00, 0x00, 0xFF, 0xC0, 0x03, 0x94, 0x03, 0xC0, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x00, 0x03, 0xC0, 0xFF, 0xC0, 0x00, 0x00, 0x04, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x94, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, + 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x03, 0xB7, 0x00, 0x00, + 0x03, 0xB7, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x03, 0xB7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x00, 0x14, + 0x00, 0x1E, 0x01, 0x30, 0x01, 0xBE, 0x02, 0x6E, 0x04, 0x42, 0x04, 0xCC, + 0x05, 0xAC, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0A, 0x01, 0x42, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0E, 0x00, 0xAE, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x02, 0x00, 0x07, 0x00, 0x60, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x36, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x00, 0x07, 0x00, 0x75, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x0B, 0x00, 0x15, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x00, 0x07, 0x00, 0x4B, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0A, 0x00, 0x1A, 0x00, 0x8A, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x01, 0x00, 0x0E, 0x00, 0x07, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x02, 0x00, 0x0E, 0x00, 0x67, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x03, 0x00, 0x0E, 0x00, 0x3D, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x04, 0x00, 0x0E, 0x00, 0x7C, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x05, 0x00, 0x16, 0x00, 0x20, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x06, 0x00, 0x0E, 0x00, 0x52, 0x00, 0x03, 0x00, 0x01, 0x04, 0x09, + 0x00, 0x0A, 0x00, 0x34, 0x00, 0xA4, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, + 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, + 0x6F, 0x00, 0x6E, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6F, 0x6E, 0x20, 0x31, + 0x2E, 0x30, 0x00, 0x56, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 0x69, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x20, 0x00, 0x31, 0x00, 0x2E, 0x00, 0x30, + 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, + 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x69, 0x63, 0x6F, + 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, + 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, 0x52, 0x65, 0x67, 0x75, 0x6C, 0x61, + 0x72, 0x00, 0x52, 0x00, 0x65, 0x00, 0x67, 0x00, 0x75, 0x00, 0x6C, 0x00, + 0x61, 0x00, 0x72, 0x69, 0x63, 0x6F, 0x6D, 0x6F, 0x6F, 0x6E, 0x00, 0x69, + 0x00, 0x63, 0x00, 0x6F, 0x00, 0x6D, 0x00, 0x6F, 0x00, 0x6F, 0x00, 0x6E, + 0x46, 0x6F, 0x6E, 0x74, 0x20, 0x67, 0x65, 0x6E, 0x65, 0x72, 0x61, 0x74, + 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x49, 0x63, 0x6F, 0x4D, 0x6F, 0x6F, + 0x6E, 0x2E, 0x00, 0x46, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x74, 0x00, 0x20, + 0x00, 0x67, 0x00, 0x65, 0x00, 0x6E, 0x00, 0x65, 0x00, 0x72, 0x00, 0x61, + 0x00, 0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 0x62, 0x00, 0x79, + 0x00, 0x20, 0x00, 0x49, 0x00, 0x63, 0x00, 0x6F, 0x00, 0x4D, 0x00, 0x6F, + 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x2E, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00 +}; + diff --git a/external/lumin/framework/data/uicons/LICENSE b/external/lumin/framework/data/uicons/LICENSE new file mode 100644 index 0000000..b14f91b --- /dev/null +++ b/external/lumin/framework/data/uicons/LICENSE @@ -0,0 +1,11 @@ +Flaticon License + +By means of these Terms, the Company grants the User a Flaticon License under which the User is authorized to download, use and modify the Flaticon Content on a device owned or controlled by the User on a non-transferable, limited, exclusive, revocable and worldwide basis for the entire duration of the rights and solely for the purposes and uses authorized under these Terms. + +Without prejudice to the provisions set forth in paragraph 3 of this clause, the User of a Flaticon License may use the content in the Flaticon Content, provided that the Flaticon Content is not used in printed or electronic items (e.g. t-shirts, cups, postcards, birthday or greeting cards, invitations, calendars, web models or electronic devices, apps, NFTs, videogames, advertising spots, audiovisual animations) aimed to be resold, in which the Flaticon Content is the main element (because of size, relevance or any other cause, in case of doubt about whether the content is main element, it shall be deemed that the content is main element); + +Furthermore, the authorization to use the content in the Flaticon Content shall be free of charge under the Flaticon License where any use thereof by the User is done by duly crediting said content to the Website/Company and, in any event, to the Collaborator, as stated by the Company from time to time. In order to benefit from the Service of using the Flaticon Content without the aforementioned crediting, the User must purchase a subscription (hereinafter the "Premium Subscription") from the Website and download the relevant Flaticon Content during the term of said Premium Subscription. The terms set forth in Section 9 shall apply to the purchase of the Premium Subscription. + +Where any content of the Flaticon Content is marked or identified as being for editorial use, or where within the same there are distinctive signs, recognizable products, public buildings, public events or images taken in places where recognizable persons appear in the background, the User shall only be entitled to use it for such editorial use; in other words, for purposes related to exercising freedom of expression and the right to information or for academic or educational purposes. More specifically, this means that the User undertakes not to use said content in any way that could imply a link to any business activity, use in the course of trade or the advertising, promotion or marketing of any product or service. In addition, the User shall ensure that any use for educational purposes is allowed under any legislation which applies and shall fulfill any requirements set forth by such legislation, including, but not limited to, citation obligations or limitations on the extent or purpose of said use. The User shall be directly liable for, and the Company shall not assume any liability resulting from the use for commercial purposes by the User of any content in the Flaticon Content whose use must be limited to editorial use as set forth in this paragraph or as a consequence of any editorial use that is contrary to the legislation which applies. + +More information about the Term and Conditions of use on https://www.freepikcompany.com/legal?#nav-flaticon \ No newline at end of file diff --git a/external/lumin/framework/data/uicons/uicons-regular-rounded.ttf b/external/lumin/framework/data/uicons/uicons-regular-rounded.ttf new file mode 100644 index 0000000000000000000000000000000000000000..cc928c56875886cf7627d48aaec4ebbcc94065ac GIT binary patch literal 1092548 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�K+vDj{*35pKE4p%stG^MyzVLn;3fP$y|x| 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 z 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�rGi_`=`}hJ{dGMHHD!>)i z+JMc_BWKFy=Kqds!Nt!fYvHQOq+aQ&$UJsLJ&#e)Mz49fNbdAp&fJ)}ul%Xoie

    T#Hxd^Ehrm>TPH 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 literal 0 HcmV?d00001 diff --git a/external/lumin/framework/gui.cpp b/external/lumin/framework/gui.cpp new file mode 100644 index 0000000..42933b8 --- /dev/null +++ b/external/lumin/framework/gui.cpp @@ -0,0 +1,597 @@ +#include "headers/includes.h" + +#include +#include +#include +#include + +#include "Overlay/MenuBridge.h" // project header (src/ is on the include path) + +// ------------------------------------------------------------------------- +// DayZ overlay integration +// +// This is the original Lumin demo `gui.cpp`, stripped of the login screen and +// the placeholder "visual" feature panels. The window/sidebar/feature +// scaffolding is preserved verbatim; only the tab list and per-tab content +// were swapped to drive this project's real ESP state via `g_menu` +// (see src/Overlay/MenuBridge.h). https://discord.gg/jxqVWub6Dk +// ------------------------------------------------------------------------- + +static void sync_layout_preferences() +{ + elements->padding = var->gui.compact_layout ? c_vec2(8, 8) : c_vec2(10, 10); + elements->window.rounding = var->gui.window_rounding; +} + +static constexpr float visual_window_width = 900.f; +static constexpr float visual_window_height = 527.f; +static constexpr float visual_sidebar_width = 162.5f; +static constexpr float visual_outer_padding = 10.f; +static constexpr float visual_column_gap = 14.f; +static constexpr float visual_panel_scale = 1.0f; +static constexpr float visual_section_width_scale = 0.98f; +static constexpr float visual_feature_padding_x = 0.f; +static constexpr float visual_feature_padding_y = 0.f; + +struct visual_panel_density_state +{ + float dpi; + float font_scale; +}; + +static float unscale_visual(float value) +{ + return value / ImMax(var->gui.dpi, 0.01f); +} + +static float visual_section_height(int section_count) +{ + const float content_height = unscale_visual(gui->content_avail().y); + const float gaps = visual_column_gap * static_cast(ImMax(section_count - 1, 0)); + return ImMax(220.f, (content_height - gaps) / static_cast(ImMax(section_count, 1))); +} + +extern c_vec4 g_pill_selected_rect; +extern c_vec4 g_sidebar_selected_rect; + +static int g_panel_number = 0; + +// ---- search filtering ----------------------------------------------------- + +static char visual_search_lower(char value) +{ + return value >= 'A' && value <= 'Z' ? static_cast(value - 'A' + 'a') : value; +} + +static std::string visual_search_query() +{ + std::string query = var->gui.feature_search; + size_t first = 0; + while (first < query.size() && (query[first] == ' ' || query[first] == '\t')) + first++; + + size_t last = query.size(); + while (last > first && (query[last - 1] == ' ' || query[last - 1] == '\t')) + last--; + + return query.substr(first, last - first); +} + +static bool visual_contains_ci(std::string_view text, std::string_view query) +{ + if (query.empty()) + return true; + + if (query.size() > text.size()) + return false; + + for (size_t i = 0; i <= text.size() - query.size(); i++) + { + size_t j = 0; + while (j < query.size() && visual_search_lower(text[i + j]) == visual_search_lower(query[j])) + j++; + + if (j == query.size()) + return true; + } + + return false; +} + +static bool visual_search_matches(std::string_view name, std::string_view description = {}) +{ + const std::string query = visual_search_query(); + if (query.empty()) + return true; + + return visual_contains_ci(name, query) || visual_contains_ci(description, query); +} + +struct visual_widget_filter +{ + bool checkbox(std::string name, std::string description, bool* callback, title_status_icon status = title_status_none) const + { + if (!visual_search_matches(name, description)) + return false; + + return ::widgets->checkbox(name, description, callback, status); + } + + bool slider(std::string name, std::string description, float* callback, float vmin, float vmax, std::string format = "%.1f") const + { + if (!visual_search_matches(name, description)) + return false; + + return ::widgets->slider(name, description, callback, vmin, vmax, format); + } +}; + +// ---- section helpers ------------------------------------------------------ + +static void begin_visual_section(std::string_view name, float height) +{ + const int panel_number = g_panel_number + 1; + const float section_width = elements->child_width * visual_section_width_scale; + const float content_padding_x = ImMax(0.f, section_width * 0.05f); + gui->begin_content(name, c_vec2(section_width, s_(height)), c_vec2(content_padding_x, s_(5)), s_(0, 0), window_flags_no_move | window_flags_no_scrollbar, child_flags_none); + c_window* window = gui->get_window(); + draw->rect_filled(window->DrawList, window->Rect().Min, window->Rect().Max, draw->get_clr(clr->child), s_(14)); + + g_panel_number = panel_number; +} + +static void end_visual_section() +{ + gui->end_content(); +} + +static visual_panel_density_state begin_visual_panel_density() +{ + c_window* window = gui->get_window(); + visual_panel_density_state state{ var->gui.dpi, window->FontWindowScale }; + + var->gui.dpi = ImMax(0.01f, state.dpi * visual_panel_scale); + ImGui::SetWindowFontScale(state.font_scale * visual_panel_scale); + return state; +} + +static void end_visual_panel_density(visual_panel_density_state state) +{ + ImGui::SetWindowFontScale(state.font_scale); + var->gui.dpi = state.dpi; +} + +static void draw_visual_sidebar_glass(const c_rect& rect) +{ + ImDrawList* draw_list = gui->get_window()->DrawList; + const float rounding = s_(14); + draw->rect_filled(draw_list, rect.Min, rect.Max, draw->get_clr(clr->child), rounding); +} + +// Full-width single-column panel (used by Info / Radar / Settings). +static void begin_full_section(std::string_view name, float height, bool scroll = false) +{ + const float section_width = gui->content_avail().x; + const float content_padding_x = ImMax(0.f, section_width * 0.035f); + const window_flags flags = window_flags_no_move | (scroll ? 0 : window_flags_no_scrollbar); + gui->begin_content(name, c_vec2(section_width, s_(height)), c_vec2(content_padding_x, s_(10)), s_(0, 6), flags, child_flags_none); + c_window* window = gui->get_window(); + draw->rect_filled(window->DrawList, window->Rect().Min, window->Rect().Max, draw->get_clr(clr->child), s_(14)); +} + +// Accent section heading. +static void lumin_heading(const char* text) +{ + c_window* w = gui->get_window(); + const c_vec2 pos = w->DC.CursorPos; + const c_vec2 size = c_vec2(gui->content_avail().x, s_(22)); + const c_rect rect(pos, pos + size); + gui->item_size(rect); + if (!gui->item_add(rect, w->GetID(text))) + return; + draw->text_clipped(w->DrawList, font->get(inter_semibold, 13), rect.Min, rect.Max, draw->get_clr(clr->accent), text, 0, 0, { 0.f, 0.5f }); +} + +// Muted single-line note. +static void lumin_note(const char* text) +{ + c_window* w = gui->get_window(); + const c_vec2 pos = w->DC.CursorPos; + const c_vec2 size = c_vec2(gui->content_avail().x, s_(16)); + const c_rect rect(pos, pos + size); + gui->item_size(rect); + if (!gui->item_add(rect, w->GetID(text))) + return; + draw->text_clipped(w->DrawList, font->get(inter_medium, 11), rect.Min, rect.Max, draw->get_clr(clr->text), text, 0, 0, { 0.f, 0.5f }); +} + +// Read-only "label .... value" row on a rounded widget background. +static void lumin_kv(const char* label, const std::string& value, const c_vec4& value_clr) +{ + c_window* w = gui->get_window(); + const c_vec2 pos = w->DC.CursorPos; + const c_vec2 size = c_vec2(gui->content_avail().x, s_(34)); + const c_rect rect(pos, pos + size); + gui->item_size(rect); + if (!gui->item_add(rect, w->GetID(label))) + return; + draw->rect_filled(w->DrawList, rect.Min, rect.Max, draw->get_clr(clr->widget), s_(8)); + draw->text_clipped(w->DrawList, font->get(inter_semibold, 12), rect.Min + s_(12, 0), rect.Max, draw->get_clr(clr->white), label, 0, 0, { 0.f, 0.5f }); + draw->text_clipped(w->DrawList, font->get(inter_medium, 11), rect.Min, rect.Max - s_(12, 0), draw->get_clr(value_clr), value.data(), 0, 0, { 1.f, 0.5f }); +} + +// ---- ESP / Items content -------------------------------------------------- + +static void render_esp_tab(const visual_widget_filter& w, float section_height) +{ + if (!g_menu) + return; + + gui->begin_group(); + { + begin_visual_section("Entities", section_height); + w.checkbox("Players", "Show player ESP", g_menu->showPlayers, title_status_safe); + w.checkbox("Animals", "Show animal ESP", g_menu->showAnimals); + w.checkbox("Zombies", "Show infected ESP", g_menu->showZombies); + w.checkbox("Items", "Show loot ESP", g_menu->showItems); + w.checkbox("Corpses", "Show dead bodies", g_menu->showCorpses); + w.checkbox("Bounding Box", "Draw entity box", g_menu->showBox); + w.checkbox("Skeleton", "Draw bone skeleton", g_menu->showSkeleton); + w.checkbox("Head Circle", "Draw head highlight", g_menu->showHeadDot); + w.checkbox("Weapon In Hand", "Show held weapon name", g_menu->showWeapon); + w.checkbox("Health Bar", "Draw player health bar", g_menu->showHealthBar); + w.checkbox("Health Number", "Draw numeric health", g_menu->showHealthNumber); + w.checkbox("Skeleton Debug", "Label every named bone", g_menu->debugSkeleton, title_status_warning); + end_visual_section(); + } + gui->end_group(); + + gui->sameline(); + + gui->begin_group(); + { + begin_visual_section("Draw Distance", section_height); + w.slider("Players", "Max player draw distance", g_menu->playerMaxDist, 50.f, 1000.f, "%.0f m"); + w.slider("Animals", "Max animal draw distance", g_menu->animalMaxDist, 50.f, 1000.f, "%.0f m"); + w.slider("Zombies", "Max zombie draw distance", g_menu->zombieMaxDist, 50.f, 500.f, "%.0f m"); + w.slider("Items", "Max loot draw distance", g_menu->itemMaxDist, 20.f, 200.f, "%.0f m"); + end_visual_section(); + } + gui->end_group(); +} + +static void render_items_tab(const visual_widget_filter& w, float section_height) +{ + if (!g_menu || !g_menu->itemCategories) + return; + + struct cat_t { const char* key; const char* label; }; + static const std::array kCats = { { + { "isWeapon", "Weapons" }, + { "isAmmo", "Ammo" }, + { "isMelee", "Melee" }, + { "isExplosives", "Explosives" }, + { "isMedical", "Medical" }, + { "isFood", "Food" }, + { "isConsumables", "Consumables" }, + { "isClothing", "Clothing" }, + { "isBackpack", "Backpacks" }, + { "isOptics", "Optics" }, + { "isWeaponAttachments", "Weapon Attachments" }, + { "isTool", "Tools" }, + { "isCrafting", "Crafting" }, + { "isVehiclePart", "Vehicle Parts" }, + { "isForBuilding", "Building" }, + { "isHouse", "House / Terrain" }, + { "isOtherLoot", "Other" }, + } }; + + auto& cats = *g_menu->itemCategories; + + auto draw_category = [&](const cat_t& c) + { + // Missing key defaults to enabled; widget mutates the map slot directly. + auto it = cats.find(c.key); + if (it == cats.end()) + it = cats.emplace(c.key, true).first; + w.checkbox(c.label, "Toggle loot category", &it->second); + }; + + const size_t split = (kCats.size() + 1) / 2; + + gui->begin_group(); + { + begin_visual_section("Loot Categories", section_height); + for (size_t i = 0; i < split; i++) + draw_category(kCats[i]); + end_visual_section(); + } + gui->end_group(); + + gui->sameline(); + + gui->begin_group(); + { + begin_visual_section("Loot Categories##2", section_height); + for (size_t i = split; i < kCats.size(); i++) + draw_category(kCats[i]); + end_visual_section(); + } + gui->end_group(); +} + +static void render_info_tab(float section_height) +{ + const c_vec4 green = c_col(75, 225, 145).Value; + const c_vec4 orange = c_col(255, 175, 75).Value; + + begin_full_section("Info", section_height); + { + lumin_heading("Server"); + if (g_menu && g_menu->connected) + { + lumin_kv("Status", "Connected", green); + if (!g_menu->serverName.empty()) lumin_kv("Server", g_menu->serverName, clr->white.Value); + if (!g_menu->mapName.empty()) lumin_kv("Map", g_menu->mapName, clr->white.Value); + if (g_menu->hasPos) + { + char pos[64]; + ImFormatString(pos, IM_ARRAYSIZE(pos), "%.1f / %.1f / %.1f", g_menu->px, g_menu->py, g_menu->pz); + lumin_kv("Position", pos, clr->accent.Value); + } + + gui->dummy(c_vec2(0, s_(6))); + lumin_heading("Entity Counts"); + lumin_kv("Players", std::to_string(g_menu->nPlayers), clr->accent.Value); + lumin_kv("Animals", std::to_string(g_menu->nAnimals), clr->accent.Value); + lumin_kv("Zombies", std::to_string(g_menu->nZombies), clr->accent.Value); + lumin_kv("Vehicles", std::to_string(g_menu->nVehicles), clr->accent.Value); + lumin_kv("Items", std::to_string(g_menu->nItems), clr->accent.Value); + lumin_kv("Bullets", std::to_string(g_menu->nBullets), clr->accent.Value); + } + else + { + lumin_kv("Status", (g_menu && !g_menu->status.empty()) ? g_menu->status : "Offline", orange); + } + } + end_visual_section(); +} + +static constexpr const char* kRadarDomain = "radar.charliecharliekirky.christmas"; + +static void render_radar_tab(float section_height) +{ + begin_full_section("Radar", section_height, true); + { + lumin_heading("Web Radar"); + lumin_note("Open this address in a browser:"); + gui->dummy(c_vec2(0, s_(4))); + if (widgets->action_button(kRadarDomain, "copy")) + ImGui::SetClipboardText(kRadarDomain); + + if (g_menu) + { + gui->dummy(c_vec2(0, s_(6))); + lumin_heading("Connection"); + lumin_kv("Port", std::to_string(g_menu->webPort), clr->accent.Value); + lumin_kv("Password", "Set in config.cfg", clr->text.Value); + } + } + end_visual_section(); +} + +static void render_exit_tab(float section_height) +{ + begin_full_section("Exit", section_height); + { + lumin_heading("Exit Application"); + lumin_note("This will close the overlay and exit the program."); + gui->dummy(c_vec2(0, s_(10))); + + const c_col saved_accent = clr->accent; + clr->accent = c_col(225, 70, 70); + if (widgets->primary_button("Exit", "back") && g_menu && g_menu->onExit) + g_menu->onExit(); + clr->accent = saved_accent; + } + end_visual_section(); +} + +static void render_settings_tab(float section_height) +{ + if (!g_menu) + return; + + // Persistent text buffers backing the four resolution fields. Seeded once + // from the live values, then treated as the source of truth (parsed back + // into the int pointers every frame). + static char ovr_w[8], ovr_h[8], rnd_w[8], rnd_h[8]; + static bool buffers_ready = false; + if (!buffers_ready) + { + ImFormatString(ovr_w, IM_ARRAYSIZE(ovr_w), "%d", *g_menu->pendingW); + ImFormatString(ovr_h, IM_ARRAYSIZE(ovr_h), "%d", *g_menu->pendingH); + ImFormatString(rnd_w, IM_ARRAYSIZE(rnd_w), "%d", *g_menu->pendingRW); + ImFormatString(rnd_h, IM_ARRAYSIZE(rnd_h), "%d", *g_menu->pendingRH); + buffers_ready = true; + } + + begin_full_section("Settings", section_height, true); + { + lumin_heading("Overlay (Monitor) Resolution"); + lumin_note("Set to your MONITOR size. 0 x 0 = auto-detect."); + gui->push_id("ovr_res"); + widgets->text_field("Width", ovr_w, IM_ARRAYSIZE(ovr_w)); + widgets->text_field("Height", ovr_h, IM_ARRAYSIZE(ovr_h)); + gui->pop_id(); + *g_menu->pendingW = ImMax(0, atoi(ovr_w)); + *g_menu->pendingH = ImMax(0, atoi(ovr_h)); + if (widgets->primary_button("Apply Monitor Resolution") && g_menu->onApplyDisplayRes) + g_menu->onApplyDisplayRes(); + + gui->dummy(c_vec2(0, s_(8))); + lumin_heading("Game Render Resolution"); + lumin_note("Set to the in-game resolution when it differs from the"); + lumin_note("monitor. 0 x 0 = no stretched-res correction."); + gui->push_id("rnd_res"); + widgets->text_field("Width", rnd_w, IM_ARRAYSIZE(rnd_w)); + widgets->text_field("Height", rnd_h, IM_ARRAYSIZE(rnd_h)); + gui->pop_id(); + *g_menu->pendingRW = ImMax(0, atoi(rnd_w)); + *g_menu->pendingRH = ImMax(0, atoi(rnd_h)); + widgets->checkbox("Stretch to fill", "GPU stretches game to fill the monitor", g_menu->stretchToFill); + if (widgets->primary_button("Apply Render Resolution") && g_menu->onApplyRenderRes) + g_menu->onApplyRenderRes(); + + gui->dummy(c_vec2(0, s_(10))); + lumin_heading("General"); + lumin_note("Press INSERT to toggle this menu."); + gui->dummy(c_vec2(0, s_(4))); + if (widgets->primary_button("Save Config", "active") && g_menu->onSaveConfig) + g_menu->onSaveConfig(); + } + end_visual_section(); +} + +// --------------------------------------------------------------------------- + +void c_gui::render() +{ + gui->initialize(); + sync_layout_preferences(); + + gui->easing(var->gui.tab_alpha, var->gui.tab != var->gui.tab_stored ? 0.f : 1.f, 7.f, static_easing); + if (var->gui.tab_alpha == 0) + var->gui.tab = var->gui.tab_stored; + + const c_vec2 target(s_(visual_window_width), s_(visual_window_height)); + gui->easing(elements->window.size.x, target.x, 24.f, dynamic_easing); + gui->easing(elements->window.size.y, target.y, 24.f, dynamic_easing); + + const ImVec2 disp = ImGui::GetIO().DisplaySize; + gui->set_next_window_size(elements->window.size); + gui->set_next_window_pos(c_vec2(ImMax(0.f, (disp.x - elements->window.size.x) * 0.5f), + ImMax(0.f, (disp.y - elements->window.size.y) * 0.5f))); + + gui->begin(elements->window.name, nullptr, window_flags_no_scrollbar | window_flags_no_scroll_with_mouse | window_flags_no_bring_to_front_on_focus | window_flags_no_focus_on_appearing | window_flags_no_background | window_flags_no_decoration | window_flags_no_move); + { + gui->set_style(); + gui->draw_decorations(); + + const float top_row_y = visual_outer_padding; + const float top_row_height = 50.f; + const float top_row_gap = 2.f; + const float bottom_row_y = top_row_y + top_row_height + top_row_gap; + const float bottom_row_height = visual_window_height - bottom_row_y - visual_outer_padding; + const float sidebar_tabs_y = top_row_y + top_row_height; + const float sidebar_tabs_height = visual_window_height - sidebar_tabs_y - visual_outer_padding; + + draw_visual_sidebar_glass(c_rect(c_vec2(s_(visual_outer_padding), s_(top_row_y)), c_vec2(s_(visual_outer_padding + visual_sidebar_width), s_(visual_window_height - visual_outer_padding)))); + + gui->set_pos(c_vec2(s_(visual_outer_padding), s_(top_row_y)), pos_all); + gui->begin_content("TopBrand", c_vec2(s_(visual_sidebar_width), s_(top_row_height)), s_(0, 0), s_(0, 0), window_flags_no_scrollbar | window_flags_no_background, child_flags_none); + { + widgets->brand_header("KarachiHook", var->gui.profile_name[0] != '\0' ? var->gui.profile_name : "DayZ Overlay"); + } + gui->end_content(); + + gui->set_pos(c_vec2(s_(visual_outer_padding), s_(sidebar_tabs_y)), pos_all); + gui->begin_content("Tabs", c_vec2(s_(visual_sidebar_width), s_(sidebar_tabs_height)), s_(10, 10), s_(0, 4), window_flags_no_scrollbar | window_flags_no_background, child_flags_none); + { + var->gui.sidebar_glass = true; + + { + c_window* tabs_inner_bg = gui->get_window(); + static c_vec4 sidebar_overlay = c_vec4(0, 0, 0, 0); + gui->easing(sidebar_overlay, g_sidebar_selected_rect, 18.f, dynamic_easing); + if (sidebar_overlay.z > sidebar_overlay.x + 1.f) + { + draw->rect_filled(tabs_inner_bg->DrawList, + c_vec2(sidebar_overlay.x, sidebar_overlay.y), c_vec2(sidebar_overlay.z, sidebar_overlay.w), + draw->get_clr(clr->widget), s_(9.1f)); + } + } + + widgets->tab_button("ESP", "visuals", 1); + widgets->tab_button("Items", "loot", 2); + widgets->tab_button("Radar", "world", 3); + widgets->tab_button("Settings", "polish", 4); + widgets->tab_button("Exit", "back", 5); + widgets->tab_button("Info", "stats", 6); + + { + static c_vec4 sidebar_indicator = c_vec4(0, 0, 0, 0); + gui->easing(sidebar_indicator, g_sidebar_selected_rect, 18.f, dynamic_easing); + if (sidebar_indicator.w > sidebar_indicator.y + 1.f) + { + c_window* tabs_inner = gui->get_window(); + const float bar_w = s_(2); + const float bar_inset_y = s_(6); + const float bar_x = sidebar_indicator.x + s_(2); + const c_vec2 bar_min = c_vec2(bar_x, sidebar_indicator.y + bar_inset_y); + const c_vec2 bar_max = c_vec2(bar_x + bar_w, sidebar_indicator.w - bar_inset_y); + draw->rect_filled(tabs_inner->DrawList, bar_min, bar_max, + draw->get_clr(clr->accent), bar_w * 0.5f); + } + } + + gui->easing(elements->tab_window_width, gui->get_window()->Size.x, 24.f, dynamic_easing); + var->gui.sidebar_glass = false; + } + gui->end_content(); + + gui->push_var(style_var_alpha, var->gui.tab_alpha); + + const float feature_x = visual_outer_padding + visual_sidebar_width + visual_outer_padding; + const float feature_width = visual_window_width - feature_x - visual_outer_padding; + const float feature_header_height = top_row_height * 0.8f; + const float feature_header_y = top_row_y; + + gui->set_pos(c_vec2(s_(feature_x), s_(feature_header_y) + s_(10) * (1.f - var->gui.tab_alpha)), pos_all); + { + const c_vec2 pill_pos = gui->get_window()->DC.CursorPos; + draw->rect_filled(gui->get_window()->DrawList, pill_pos, pill_pos + c_vec2(s_(feature_width), s_(feature_header_height)), draw->get_clr(clr->child), s_(14)); + + gui->begin_content("FeatureHeader", c_vec2(s_(feature_width), s_(feature_header_height)), s_(8, 4), s_(8, 0), window_flags_no_scrollbar | window_flags_no_background, child_flags_none); + { + const float search_width = s_(178.f); + widgets->search_field("Search", var->gui.feature_search, IM_ARRAYSIZE(var->gui.feature_search), c_vec2(search_width, s_(32.f))); + } + gui->end_content(); + } + + gui->set_pos(c_vec2(s_(feature_x), s_(bottom_row_y) + s_(10) * (1.f - var->gui.tab_alpha)), pos_all); + gui->begin_content("Features", c_vec2(s_(feature_width), s_(bottom_row_height)), s_(visual_feature_padding_x, visual_feature_padding_y), c_vec2(s_(visual_column_gap), 0.f), window_flags_no_scrollbar); + { + const visual_panel_density_state density_state = begin_visual_panel_density(); + + g_panel_number = 3; + gui->easing(elements->child_width, (gui->content_avail().x - s_(visual_column_gap)) / 2, 24.f, dynamic_easing); + const float section_height = visual_section_height(1); + const visual_widget_filter visual_widgets; + + switch (var->gui.tab) + { + case 1: render_esp_tab(visual_widgets, section_height); break; + case 2: render_items_tab(visual_widgets, section_height); break; + case 3: render_radar_tab(section_height); break; + case 4: render_settings_tab(section_height); break; + case 5: render_exit_tab(section_height); break; + case 6: render_info_tab(section_height); break; + default: break; + } + + end_visual_panel_density(density_state); + } + gui->end_content(); + + gui->pop_var(); + } + gui->end(); +} + +// Shim called by GameOverlay (declared in src/Overlay/MenuBridge.h). +void RenderLuminMenu() +{ + gui->render(); +} diff --git a/external/lumin/framework/headers/draw.h b/external/lumin/framework/headers/draw.h new file mode 100644 index 0000000..bd7962f --- /dev/null +++ b/external/lumin/framework/headers/draw.h @@ -0,0 +1,66 @@ +#pragma once +#include "includes.h" + +enum fade_direction : int +{ + vertically, + horizontally, + diagonally, + diagonally_reversed, +}; + +class c_draw +{ +public: + ImU32 get_clr(const ImVec4& col, float alpha = 1.f); + + ImU32 w_get_clr(style_col idx, float alpha = 1.f); + + void text(ImDrawList* draw_list, const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.f, const ImVec4* cpu_fine_clip_rect = 0); + + void text_clipped(ImDrawList* draw_list, ImFont* font, const ImVec2& pos_min, const ImVec2& pos_max, ImU32 color, const char* text, const char* text_display_end = NULL, const ImVec2* text_size_if_known = NULL, const ImVec2& align = ImVec2(0.f, 0.f), const ImRect* clip_rect = NULL); + + void radial_gradient(ImDrawList* draw_list, const ImVec2& center, float radius, ImU32 col_in, ImU32 col_out); + + void set_linear_color_alpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1); + + void line(ImDrawList* draw_list, const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness = 1.0f); + + void rect(ImDrawList* draw_list, const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding = 0.0f, draw_flags flags = 0, float thickness = 1.0f); + + void rect_filled(ImDrawList* draw_list, const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding = 0.0f, draw_flags flags = 0); + + void rect_filled_multi_color(ImDrawList* draw, const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left, float rounding = 0.f, draw_flags flags = 0); + + void fade_rect_filled(ImDrawList* draw, const ImVec2& pos_min, const ImVec2& pos_max, ImU32 col_one, ImU32 col_two, fade_direction direction, float rounding = 0.f, draw_flags flags = 0); + + void shadow_rect(ImDrawList* draw_list, const ImVec2& obj_min, const ImVec2& obj_max, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags = 0, float obj_rounding = 0.0f); + + void circle(ImDrawList* draw_list, const ImVec2& center, float radius, ImU32 col, int num_segments = 0, float thickness = 1.0f); + + void circle_filled(ImDrawList* draw_list, const ImVec2& center, float radius, ImU32 col, int num_segments = 0); + + void shadow_circle(ImDrawList* draw_list, const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags = 0, int obj_num_segments = 12); + + void triangle(ImDrawList* draw_list, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness = 1.f); + + void triangle_filled(ImDrawList* draw_list, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col); + + void image(ImDrawList* draw_list, ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min = ImVec2(0, 0), const ImVec2& uv_max = ImVec2(1, 1), ImU32 col = IM_COL32_WHITE); + + void image_rounded(ImDrawList* draw_list, ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min = ImVec2(0, 0), const ImVec2& uv_max = ImVec2(1, 1), ImU32 col = IM_COL32_WHITE, float rounding = 1.f, draw_flags flags = 0); + + void shadow_convex_poly(ImDrawList* draw_list, const ImVec2* points, int points_count, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags = 0); + + void shadow_ngon(ImDrawList* draw_list, const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags, int obj_num_segments); + + void rotate_start(ImDrawList* draw_list); + + void rotate_end(ImDrawList* draw_list, float rad, ImVec2 center = ImVec2(0, 0)); + + void push_clip_rect(ImDrawList* draw_list, const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect = false); + + void pop_clip_rect(ImDrawList* draw_list); +}; + +inline std::unique_ptr draw = std::make_unique(); diff --git a/external/lumin/framework/headers/flags.h b/external/lumin/framework/headers/flags.h new file mode 100644 index 0000000..f8c7c73 --- /dev/null +++ b/external/lumin/framework/headers/flags.h @@ -0,0 +1,477 @@ +#pragma once + +typedef int style_var; +typedef int style_col; +typedef int window_flags; +typedef int child_flags; +typedef int gui_cond; +typedef int draw_flags; +typedef int mouse_button; + +using c_text = std::string; +using c_vec4 = ImVec4; +using c_col = ImColor; +using c_vec2 = ImVec2; +using c_multi_string = std::vector; +using c_multi_bool = std::vector; +using c_window = ImGuiWindow; +using c_id = ImGuiID; +using c_rect = ImRect; +using c_draw_list = ImDrawList; + +enum style_var_ +{ + style_var_alpha, + style_var_disabled_alpha, + style_var_window_padding, + style_var_window_rounding, + style_var_window_border_size, + style_var_window_min_size, + style_var_window_title_align, + style_var_child_rounding, + style_var_child_border_size, + style_var_popup_rounding, + style_var_popup_border_size, + style_var_frame_padding, + style_var_frame_rounding, + style_var_frame_border_size, + style_var_item_spacing, + style_var_item_inner_spacing, + style_var_indent_spacing, + style_var_cell_padding, + style_var_scrollbar_size, + style_var_scrollbar_rounding, + style_var_grab_min_size, + style_var_grab_rounding, + style_var_tab_rounding, + style_var_tab_border_size, + style_var_tab_bar_border_size, + style_var_tab_bar_overline_size, + style_var_table_angled_headers_angle, + style_var_table_angled_headers_text_align, + style_var_button_text_align, + style_var_selectable_text_align, + style_var_separator_text_border_size, + style_var_separator_text_align, + style_var_separator_text_padding, + style_var_window_shadow_size, + style_var_window_shadow_offset, + style_var_scrollbar_border_padding, + style_var_scrollbar_content_padding, + style_var_count +}; + +enum style_col_ +{ + style_col_text, + style_col_text_disabled, + style_col_window_bg, + style_col_child_bg, + style_col_popup_bg, + style_col_border, + style_col_border_shadow, + style_col_frame_bg, + style_col_frame_bg_hovered, + style_col_frame_bg_active, + style_col_title_bg, + style_col_title_bg_active, + style_col_title_bg_collapsed, + style_col_menu_bar_bg, + style_col_scrollbar_bg, + style_col_scrollbar_grab, + style_col_scrollbar_grab_hovered, + style_col_scrollbar_grab_active, + style_col_check_mark, + style_col_slider_grab, + style_col_slider_grab_active, + style_col_button, + style_col_button_hovered, + style_col_button_active, + style_col_header, + style_col_header_hovered, + style_col_header_active, + style_col_separator, + style_col_separator_hovered, + style_col_separator_active, + style_col_resize_grip, + style_col_resize_grip_hovered, + style_col_resize_grip_active, + style_col_tab_hovered, + style_col_tab, + style_col_tab_selected, + style_col_tab_selected_overline, + style_col_tab_dimmed, + style_col_tab_dimmed_selected, + style_col_tab_dimmed_selected_overline, + style_col_plot_lines, + style_col_plot_lines_hovered, + style_col_plot_histogram, + style_col_plot_histogram_hovered, + style_col_table_header_bg, + style_col_table_border_strong, + style_col_table_border_light, + style_col_table_row_bg, + style_col_table_row_bg_alt, + style_col_text_link, + style_col_text_selected_bg, + style_col_drag_drop_target, + style_col_nav_highlight, + style_col_nav_windowing_highlight, + style_col_nav_windowing_dim_bg, + style_col_modal_window_dim_bg, + style_col_window_shadow, + style_col_count, + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + style_col_tab_active = style_col_tab_selected, + style_col_tab_unfocused = style_col_tab_dimmed, + style_col_tab_unfocused_active = style_col_tab_dimmed_selected, +#endif +}; + +enum window_flags_ +{ + window_flags_none = 0, + window_flags_no_title_bar = 1 << 0, + window_flags_no_resize = 1 << 1, + window_flags_no_move = 1 << 2, + window_flags_no_scrollbar = 1 << 3, + window_flags_no_scroll_with_mouse = 1 << 4, + window_flags_no_collapse = 1 << 5, + window_flags_always_auto_resize = 1 << 6, + window_flags_no_background = 1 << 7, + window_flags_no_saved_settings = 1 << 8, + window_flags_no_mouse_inputs = 1 << 9, + window_flags_menu_bar = 1 << 10, + window_flags_horizontal_scrollbar = 1 << 11, + window_flags_no_focus_on_appearing = 1 << 12, + window_flags_no_bring_to_front_on_focus = 1 << 13, + window_flags_always_vertical_scrollbar = 1 << 14, + window_flags_always_horizontal_scrollbar = 1 << 15, + window_flags_no_nav_inputs = 1 << 16, + window_flags_no_nav_focus = 1 << 17, + window_flags_unsaved_document = 1 << 18, + window_flags_no_nav = window_flags_no_nav_inputs | window_flags_no_nav_focus, + window_flags_no_decoration = window_flags_no_title_bar | window_flags_no_resize | window_flags_no_scrollbar | window_flags_no_collapse, + window_flags_no_inputs = window_flags_no_mouse_inputs | window_flags_no_nav_inputs | window_flags_no_nav_focus, + + window_flags_child_window = 1 << 24, + window_flags_tooltip = 1 << 25, + window_flags_popup = 1 << 26, + window_flags_modal = 1 << 27, + window_flags_child_menu = 1 << 28, + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + window_flags_always_use_window_padding = 1 << 30, + window_flags_nav_flattened = 1 << 31, +#endif +}; + +enum child_flags_ +{ + child_flags_none = 0, + child_flags_borders = 1 << 0, + child_flags_always_use_window_padding = 1 << 1, + child_flags_resize_x = 1 << 2, + child_flags_resize_y = 1 << 3, + child_flags_auto_resize_x = 1 << 4, + child_flags_auto_resize_y = 1 << 5, + child_flags_always_auto_resize = 1 << 6, + child_flags_frame_style = 1 << 7, + child_flags_nav_flattened = 1 << 8, + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + child_flags_border = child_flags_borders, +#endif +}; + +enum gui_cond_ +{ + gui_cond_none = 0, + gui_cond_always = 1 << 0, + gui_cond_once = 1 << 1, + gui_cond_first_use_ever = 1 << 2, + gui_cond_appearing = 1 << 3, +}; + +enum draw_flags_ +{ + draw_flags_none = 0, + draw_flags_closed = 1 << 0, + draw_flags_round_corners_top_left = 1 << 4, + draw_flags_round_corners_top_right = 1 << 5, + draw_flags_round_corners_bottom_left = 1 << 6, + draw_flags_round_corners_bottom_right = 1 << 7, + draw_flags_round_corners_none = 1 << 8, + draw_flags_round_corners_top = draw_flags_round_corners_top_left | draw_flags_round_corners_top_right, + draw_flags_round_corners_bottom = draw_flags_round_corners_bottom_left | draw_flags_round_corners_bottom_right, + draw_flags_round_corners_left = draw_flags_round_corners_bottom_left | draw_flags_round_corners_top_left, + draw_flags_round_corners_right = draw_flags_round_corners_bottom_right | draw_flags_round_corners_top_right, + draw_flags_round_corners_all = draw_flags_round_corners_top_left | draw_flags_round_corners_top_right | draw_flags_round_corners_bottom_left | draw_flags_round_corners_bottom_right, + draw_flags_round_corners_default = draw_flags_round_corners_all, + draw_flags_round_corners_mask = draw_flags_round_corners_all | draw_flags_round_corners_none, + draw_flags_shadow_cut_out_shape_background = 1 << 9 +}; + +enum mouse_button_ +{ + mouse_button_left = 0, + mouse_button_right = 1, + mouse_button_middle = 2, + mouse_button_count = 5 +}; + +struct data_var_info +{ + ImU32 count; + ImU32 offset; + void* get_var_ptr(void* parent) const { return (void*)((unsigned char*)parent + offset); } +}; + +struct gui_style +{ + float alpha; + float disabled_alpha; + ImVec2 window_padding; + float window_rounding; + float window_border_size; + ImVec2 window_min_size; + ImVec2 window_title_align; + ImGuiDir window_menu_button_position; + float child_rounding; + float child_border_size; + float popup_rounding; + float popup_border_size; + ImVec2 frame_padding; + float frame_rounding; + float frame_border_size; + ImVec2 item_spacing; + ImVec2 item_inner_spacing; + ImVec2 cell_padding; + ImVec2 touch_extra_padding; + float indent_spacing; + float columns_min_spacing; + float scrollbar_size; + float scrollbar_rounding; + float grab_min_size; + float grab_rounding; + float log_slider_deadzone; + float tab_rounding; + float tab_border_size; + float tab_min_width_for_close_button; + float tab_bar_border_size; + float tab_bar_overline_size; + float table_angled_headers_angle; + ImVec2 table_angled_headers_text_align; + ImGuiDir color_button_position; + ImVec2 button_text_align; + ImVec2 selectable_text_align; + float separator_text_border_size; + ImVec2 separator_text_align; + ImVec2 separator_text_padding; + float window_shadow_size; + ImVec2 window_shadow_offset; + ImVec2 scrollbar_border_padding; + float scrollbar_content_padding; + ImVec2 display_window_padding; + ImVec2 display_safe_area_padding; + float mouse_cursor_scale; + bool anti_aliased_lines; + bool anti_aliased_lines_use_tex; + bool anti_aliased_fill; + float curve_tessellation_tol; + float circle_tessellation_max_error; + ImVec4 colors[ImGuiCol_COUNT]; + + float hover_stationary_delay; + float hover_delay_short; + float hover_delay_normal; + ImGuiHoveredFlags hover_flags_for_tooltip_mouse; + ImGuiHoveredFlags hover_flags_for_tooltip_nav; + + gui_style(); +}; + +inline gui_style::gui_style() +{ + alpha = 1.0f; + disabled_alpha = 0.60f; + window_padding = ImVec2(8, 8); + window_rounding = 0.0f; + window_border_size = 1.0f; + window_min_size = ImVec2(32, 32); + window_title_align = ImVec2(0.0f, 0.5f); + window_menu_button_position = ImGuiDir_Left; + child_rounding = 0.0f; + child_border_size = 1.0f; + popup_rounding = 0.0f; + popup_border_size = 1.0f; + frame_padding = ImVec2(4, 3); + frame_rounding = 0.0f; + frame_border_size = 0.0f; + item_spacing = ImVec2(8, 4); + item_inner_spacing = ImVec2(4, 4); + cell_padding = ImVec2(4, 2); + touch_extra_padding = ImVec2(0, 0); + indent_spacing = 21.0f; + columns_min_spacing = 6.0f; + scrollbar_size = 14.0f; + scrollbar_rounding = 9.0f; + grab_min_size = 12.0f; + grab_rounding = 0.0f; + log_slider_deadzone = 4.0f; + tab_rounding = 4.0f; + tab_border_size = 0.0f; + tab_min_width_for_close_button = 0.0f; + tab_bar_border_size = 1.0f; + tab_bar_overline_size = 2.0f; + table_angled_headers_angle = 35.0f * (IM_PI / 180.0f); + table_angled_headers_text_align = ImVec2(0.5f, 0.0f); + color_button_position = ImGuiDir_Right; + button_text_align = ImVec2(0.5f, 0.5f); + selectable_text_align = ImVec2(0.0f, 0.0f); + separator_text_border_size = 3.0f; + separator_text_align = ImVec2(0.0f, 0.5f); + separator_text_padding = ImVec2(20.0f, 3.0f); + window_shadow_size = 100.0f; + window_shadow_offset = ImVec2(0, 0); + scrollbar_border_padding = ImVec2(6, 6); + scrollbar_content_padding = 6; + display_window_padding = ImVec2(19, 19); + display_safe_area_padding = ImVec2(3, 3); + mouse_cursor_scale = 1.0f; + anti_aliased_lines = true; + anti_aliased_lines_use_tex = true; + anti_aliased_fill = true; + curve_tessellation_tol = 1.25f; + circle_tessellation_max_error = 0.30f; + hover_stationary_delay = 0.15f; + hover_delay_short = 0.15f; + hover_delay_normal = 0.40f; + hover_flags_for_tooltip_mouse = ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_AllowWhenDisabled; + hover_flags_for_tooltip_nav = ImGuiHoveredFlags_NoSharedDelay | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_AllowWhenDisabled; + + colors[style_col_text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[style_col_text_disabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); + colors[style_col_window_bg] = ImVec4(0.06f, 0.06f, 0.06f, 0.94f); + colors[style_col_child_bg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[style_col_popup_bg] = ImVec4(0.08f, 0.08f, 0.08f, 0.94f); + colors[style_col_border] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f); + colors[style_col_border_shadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[style_col_frame_bg] = ImVec4(0.16f, 0.29f, 0.48f, 0.54f); + colors[style_col_frame_bg_hovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[style_col_frame_bg_active] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[style_col_title_bg] = ImVec4(0.04f, 0.04f, 0.04f, 1.00f); + colors[style_col_title_bg_active] = ImVec4(0.16f, 0.29f, 0.48f, 1.00f); + colors[style_col_title_bg_collapsed] = ImVec4(0.00f, 0.00f, 0.00f, 0.51f); + colors[style_col_menu_bar_bg] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f); + colors[style_col_scrollbar_bg] = ImVec4(0.02f, 0.02f, 0.02f, 0.53f); + colors[style_col_scrollbar_grab] = ImVec4(0.31f, 0.31f, 0.31f, 1.00f); + colors[style_col_scrollbar_grab_hovered] = ImVec4(0.41f, 0.41f, 0.41f, 1.00f); + colors[style_col_scrollbar_grab_active] = ImVec4(0.51f, 0.51f, 0.51f, 1.00f); + colors[style_col_check_mark] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[style_col_slider_grab] = ImVec4(0.24f, 0.52f, 0.88f, 1.00f); + colors[style_col_slider_grab_active] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[style_col_button] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[style_col_button_hovered] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[style_col_button_active] = ImVec4(0.06f, 0.53f, 0.98f, 1.00f); + colors[style_col_header] = ImVec4(0.26f, 0.59f, 0.98f, 0.31f); + colors[style_col_header_hovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.80f); + colors[style_col_header_active] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[style_col_separator] = colors[style_col_border]; + colors[style_col_separator_hovered] = ImVec4(0.10f, 0.40f, 0.75f, 0.78f); + colors[style_col_separator_active] = ImVec4(0.10f, 0.40f, 0.75f, 1.00f); + colors[style_col_resize_grip] = ImVec4(0.26f, 0.59f, 0.98f, 0.20f); + colors[style_col_resize_grip_hovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[style_col_resize_grip_active] = ImVec4(0.26f, 0.59f, 0.98f, 0.95f); + colors[style_col_tab_hovered] = colors[style_col_header_hovered]; + colors[style_col_tab] = ImLerp(colors[style_col_header], colors[style_col_title_bg_active], 0.80f); + colors[style_col_tab_selected] = ImLerp(colors[style_col_header_active], colors[style_col_title_bg_active], 0.60f); + colors[style_col_tab_selected_overline] = colors[style_col_header_active]; + colors[style_col_tab_dimmed] = ImLerp(colors[style_col_tab], colors[style_col_title_bg], 0.80f); + colors[style_col_tab_dimmed_selected] = ImLerp(colors[style_col_tab_selected], colors[style_col_title_bg], 0.40f); + colors[style_col_tab_dimmed_selected_overline] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); + colors[style_col_plot_lines] = ImVec4(0.61f, 0.61f, 0.61f, 1.00f); + colors[style_col_plot_lines_hovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f); + colors[style_col_plot_histogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[style_col_plot_histogram_hovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f); + colors[style_col_table_header_bg] = ImVec4(0.19f, 0.19f, 0.20f, 1.00f); + colors[style_col_table_border_strong] = ImVec4(0.31f, 0.31f, 0.35f, 1.00f); + colors[style_col_table_border_light] = ImVec4(0.23f, 0.23f, 0.25f, 1.00f); + colors[style_col_table_row_bg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[style_col_table_row_bg_alt] = ImVec4(1.00f, 1.00f, 1.00f, 0.06f); + colors[style_col_text_link] = colors[style_col_header_active]; + colors[style_col_text_selected_bg] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f); + colors[style_col_drag_drop_target] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f); + colors[style_col_nav_highlight] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[style_col_nav_windowing_highlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f); + colors[style_col_nav_windowing_dim_bg] = ImVec4(0.80f, 0.80f, 0.80f, 0.20f); + colors[style_col_modal_window_dim_bg] = ImVec4(0.80f, 0.80f, 0.80f, 0.35f); + colors[style_col_window_shadow] = ImVec4(0.08f, 0.08f, 0.08f, 0.35f); + +} + +static const data_var_info style_var_info[] = +{ + { 1, (ImU32)offsetof(gui_style, alpha) }, + { 1, (ImU32)offsetof(gui_style, disabled_alpha) }, + { 2, (ImU32)offsetof(gui_style, window_padding) }, + { 1, (ImU32)offsetof(gui_style, window_rounding) }, + { 1, (ImU32)offsetof(gui_style, window_border_size) }, + { 2, (ImU32)offsetof(gui_style, window_min_size) }, + { 2, (ImU32)offsetof(gui_style, window_title_align) }, + { 1, (ImU32)offsetof(gui_style, child_rounding) }, + { 1, (ImU32)offsetof(gui_style, child_border_size) }, + { 1, (ImU32)offsetof(gui_style, popup_rounding) }, + { 1, (ImU32)offsetof(gui_style, popup_border_size) }, + { 2, (ImU32)offsetof(gui_style, frame_padding) }, + { 1, (ImU32)offsetof(gui_style, frame_rounding) }, + { 1, (ImU32)offsetof(gui_style, frame_border_size) }, + { 2, (ImU32)offsetof(gui_style, item_spacing) }, + { 2, (ImU32)offsetof(gui_style, item_inner_spacing) }, + { 1, (ImU32)offsetof(gui_style, indent_spacing) }, + { 2, (ImU32)offsetof(gui_style, cell_padding) }, + { 1, (ImU32)offsetof(gui_style, scrollbar_size) }, + { 1, (ImU32)offsetof(gui_style, scrollbar_rounding) }, + { 1, (ImU32)offsetof(gui_style, grab_min_size) }, + { 1, (ImU32)offsetof(gui_style, grab_rounding) }, + { 1, (ImU32)offsetof(gui_style, tab_rounding) }, + { 1, (ImU32)offsetof(gui_style, tab_border_size) }, + { 1, (ImU32)offsetof(gui_style, tab_bar_border_size) }, + { 1, (ImU32)offsetof(gui_style, tab_bar_overline_size) }, + { 1, (ImU32)offsetof(gui_style, table_angled_headers_angle) }, + { 2, (ImU32)offsetof(gui_style, table_angled_headers_text_align) }, + { 2, (ImU32)offsetof(gui_style, button_text_align) }, + { 2, (ImU32)offsetof(gui_style, selectable_text_align) }, + { 1, (ImU32)offsetof(gui_style, separator_text_border_size) }, + { 2, (ImU32)offsetof(gui_style, separator_text_align) }, + { 2, (ImU32)offsetof(gui_style, separator_text_padding) }, + { 1, (ImU32)offsetof(gui_style, window_shadow_size) }, + { 2, (ImU32)offsetof(gui_style, window_shadow_offset) }, + { 2, (ImU32)offsetof(gui_style, scrollbar_border_padding) }, + { 1, (ImU32)offsetof(gui_style, scrollbar_content_padding) }, +}; + +struct gui_style_mod +{ + style_var var_idx; + union { int backup_int[2]; float backup_float[2]; }; + gui_style_mod(style_var idx, int v) { var_idx = idx; backup_int[0] = v; } + gui_style_mod(style_var idx, float v) { var_idx = idx; backup_float[0] = v; } + gui_style_mod(style_var idx, ImVec2 v) { var_idx = idx; backup_float[0] = v.x; backup_float[1] = v.y; } +}; + +struct gui_color_mod +{ + style_col col; + ImVec4 backup_value; +}; + +inline std::vector style_var_stack; +inline std::vector style_col_stack; + +inline const data_var_info* get_style_var_info(style_var idx) +{ + return &style_var_info[idx]; +} + diff --git a/external/lumin/framework/headers/fonts.h b/external/lumin/framework/headers/fonts.h new file mode 100644 index 0000000..17fff0e --- /dev/null +++ b/external/lumin/framework/headers/fonts.h @@ -0,0 +1,34 @@ +#pragma once +#include "includes.h" + +// DayZ overlay integration: resolved relative to the executable's working +// directory. CMake copies framework/data/uicons next to the built binary. +inline constexpr const char* flaticon_uicons_regular_rounded_path = "data\\uicons\\uicons-regular-rounded.ttf"; + +class c_font +{ +public: + void update(); + + ImFont* get(const std::vector& font_data, float size); + ImFont* get_file(const std::string& file_path, float size, bool private_glyphs = false); + +private: + struct font_data + { + std::vector data; + std::string file_path; + const void* source; + float size; + ImFont* font; + bool file; + bool private_glyphs; + }; + + void add(const std::vector& font_data, float size); + void add_file(const std::string& file_path, float size, bool private_glyphs); + + std::vector data; +}; + +inline std::unique_ptr font = std::make_unique(); diff --git a/external/lumin/framework/headers/functions.h b/external/lumin/framework/headers/functions.h new file mode 100644 index 0000000..28d9722 --- /dev/null +++ b/external/lumin/framework/headers/functions.h @@ -0,0 +1,253 @@ +#pragma once +#include "includes.h" +#include +#include "widgets.h" +#include "../headers/functions.h" + +using namespace ImGui; + +#define s_(...) scale_impl(__VA_ARGS__, var->gui.dpi) + +inline ImVec2 scale_impl(const ImVec2& vec, float dpi) { + return ImVec2(roundf(vec.x * dpi), roundf(vec.y * dpi)); +} + +inline ImVec2 scale_impl(float x, float y, float dpi) { + return ImVec2(roundf(x * dpi), roundf(y * dpi)); +} + +inline float scale_impl(float var, float dpi) { + return roundf(var * dpi); +} + +enum positions +{ + pos_all, + pos_x, + pos_y +}; + +enum easing_type +{ + static_easing, + dynamic_easing +}; + +class c_gui +{ +public: + std::unordered_map m_anim_states; + + template + T* anim_container(ImGuiID id) + { + auto it = m_anim_states.find(id); + if (it != m_anim_states.end()) + return static_cast(it->second); + + T* new_state = new T(); + m_anim_states[id] = new_state; + return new_state; + } + + float fixed_speed(float speed) { return speed / ImGui::GetIO().Framerate; } + + template + T easing(T& value, T val, float speed, int type, bool dynamic_round = false) + { + if (type == static_easing) + { + if constexpr (std::is_same::value) + { + return { 1.f, 1.f, 1.f, 1.f }; + } + else + { + T step = fixed_speed(speed); + + if (value < val) + { + value += step; + if (value > val) value = val; + } + else if (value > val) + { + value -= step; + if (value < val) value = val; + } + } + } + else if (type == dynamic_easing) + { + if constexpr (std::is_same::value) + { + value = ImLerp(value, val, fixed_speed(speed)); + } + else + value = ImLerp(value, val + (dynamic_round ? 0.5f : 0.f), fixed_speed(speed)); + } + + return value; + } + + bool begin(std::string_view name, bool* p_open = nullptr, window_flags flags = window_flags_none); + + void end(); + + void push_color(style_col idx, ImU32 col); + + void pop_color(int count = 1); + + void push_var(style_var idx, float val); + + void push_var(style_var idx, const ImVec2& val); + + void pop_var(int count = 1); + + void push_font(ImFont* font); + + void pop_font(); + + void set_pos(const ImVec2& pos, int type); + + void set_pos(float pos, int type); + + ImVec2 get_pos(); + + void set_screen_pos(const ImVec2& pos, int type); + + void set_screen_pos(float pos, int type); + + ImVec2 get_screen_pos(); + + void begin_group(); + + void end_group(); + + void begin_content(std::string_view id, const ImVec2& size, const ImVec2& padding = ImVec2(0, 0), const ImVec2& spacing = ImVec2(0, 0), window_flags window_flags__ = 0, child_flags child_flags__ = 0); + + void end_content(); + + void sameline(float offset_from_start_x = 0.f, float spacing_w = -1.f); + + void dummy(const ImVec2& size); + + bool begin_def_child(std::string_view name, const ImVec2& size_arg = ImVec2(0, 0), child_flags child_flags = 0, window_flags window_flags = 0); + + void end_def_child(); + + void set_next_window_pos(const ImVec2& pos, gui_cond cond = 0, const ImVec2& pivot = ImVec2(0, 0)); + + void set_next_window_size(const ImVec2& size, gui_cond cond = 0); + + ImVec2 text_size(ImFont* font, const char* text, const char* text_end = nullptr, bool hide_text_after_double_hash = false, float wrap_width = -1.f); + + ImVec2 window_size(); + + float window_width(); + + float window_height(); + + ImDrawList* window_drawlist(); + + ImDrawList* foreground_drawlist(); + + ImDrawList* background_drawlist(); + + ImVec2 window_pos(); + + ImGuiWindow* get_window(); + + void push_id(const char* str_id); + + void push_id(const char* str_id_begin, const char* str_id_end); + + void push_id(const void* ptr_id); + + void push_id(int int_id); + + void pop_id(); + + ImGuiID get_id(const char* str, const char* str_end); + + ImGuiID get_id(const void* ptr); + + ImGuiID get_id(int n); + + ImVec2 content_avail(); + + ImVec2 content_max(); + + void item_size(const ImVec2& size, float text_baseline_y = -1.f); + + void item_size(const ImRect& bb, float text_baseline_y = -1.f); + + bool item_add(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg = NULL, ImGuiItemFlags extra_flags = 0); + + bool is_window_hovered(ImGuiHoveredFlags flags); + + bool is_window_focused(ImGuiFocusedFlags flags); + + void set_window_focus(); + + void set_window_focus(const char* name); + + bool is_rect_visible(const ImVec2& size); + + bool is_rect_visible(const ImRect& rect); + + ImVec2 adjust_window_pos(const ImVec2& rect, const ImVec2& window_size); + + bool button_behavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiButtonFlags flags = 0); + + bool invisible_button(const char* str_id, const ImVec2& size_arg, mouse_button flags = 0); + + ImVec4 u32_to_float4(ImU32 in); + + ImU32 float4_to_u32(const ImVec4& in); + + void rgb_to_hsv(float r, float g, float b, float& out_h, float& out_s, float& out_v); + + void hsv_to_rgb(float h, float s, float v, float& out_r, float& out_g, float& out_b); + + bool item_hoverable(const ImRect& bb, ImGuiID id, ImGuiItemFlags item_flags = 0); + + bool is_item_hovered(ImGuiHoveredFlags flags); + + bool is_item_active(); + + bool is_item_clicked(mouse_button mouse_button); + + bool mouse_down(mouse_button button); + + bool mouse_clicked(mouse_button button, bool repeat = false); + + bool mouse_released(mouse_button button); + + bool mouse_double_clicked(mouse_button button); + + const char* text_end(const char* text); + + template + const char* get_fmt(char* text, T* value, std::string_view fmt) + { + ImFormatString(text, IM_ARRAYSIZE(text), fmt.data(), *value); + return text + strlen(text); + } + + bool is_window_cond(ImGuiWindow* window, const std::vector& names); + + ImVec2 mouse_pos(); + + void set_style(); + + void draw_decorations(); + + void initialize(); + + void render(); + + ImRect get_item_rect(); +}; + +inline std::unique_ptr gui = std::make_unique(); \ No newline at end of file diff --git a/external/lumin/framework/headers/includes.h b/external/lumin/framework/headers/includes.h new file mode 100644 index 0000000..2b3a127 --- /dev/null +++ b/external/lumin/framework/headers/includes.h @@ -0,0 +1,17 @@ +#pragma once + +#define IMGUI_DEFINE_MATH_OPERATORS + +#include "imgui.h" +#include "imgui_internal.h" +#include +#include +#include +#include "flags.h" +#include "../settings/colors.h" +#include "../settings/elements.h" +#include "../settings/variables.h" +#include "fonts.h" +#include "draw.h" +#include "functions.h" +#include "../data/fonts.h" diff --git a/external/lumin/framework/headers/widgets.h b/external/lumin/framework/headers/widgets.h new file mode 100644 index 0000000..e9fb24e --- /dev/null +++ b/external/lumin/framework/headers/widgets.h @@ -0,0 +1,107 @@ +#pragma once +#include "includes.h" + +#define IMGUI_DEFINE_MATH_OPERATORS + +struct custom_slider_t +{ + bool held; + c_rect rect; + c_rect active; + c_vec2 circle_pos; +}; + +enum title_status_icon +{ + title_status_none = 0, + title_status_danger, + title_status_warning, + title_status_safe +}; + +enum keybind_mode +{ + keybind_mode_hold = 0, + keybind_mode_toggle, + keybind_mode_always +}; + +struct keybind_t +{ + int key = ImGuiKey_None; + bool ctrl = false; + bool shift = false; + bool alt = false; + bool super = false; + int mode = keybind_mode_hold; + bool capturing = false; +}; + +class c_widgets +{ +public: + bool tab_button(std::string name, std::string icon, int tab); + bool sub_tab_button(std::string name, std::string icon, int tab, float width = 0.f); + void brand_header(std::string name, std::string subtitle); + bool profile_dropdown(std::string name, std::string status); + bool primary_button(std::string name, std::string icon = ""); + bool action_button(std::string name, std::string icon = ""); + bool card_button(std::string name, std::string description, std::string button_text = "Run"); + bool category_button(std::string name, std::string description, bool* callback); + bool child(std::string name); + void end_child(); + bool checkbox(std::string name, std::string description, bool* callback, title_status_icon status = title_status_none); + bool keybind(std::string name, std::string description, keybind_t* bind); + bool dropdown(std::string name, std::string description, int* callback, std::vector variants); + bool slider(std::string name, std::string description, float* callback, float vmin, float vmax, std::string format = "%.1f"); + custom_slider_t custom_slider(std::string name, float* callback, float vmin, float vmax, float width); + bool color_picker(std::string name, c_vec4* color); + bool text_field(std::string name, char* buf, int buf_size, bool password = false, std::string icon = ""); + bool search_field(std::string name, char* buf, int buf_size, const c_vec2& size); +}; + +inline std::unique_ptr widgets = std::make_unique(); + +enum notify_type +{ + success = 0, + warning = 1, + error = 2 +}; + +struct notify_state +{ + int notify_id; + std::string title; + std::string text; + notify_type type{ success }; + + ImVec2 window_size{ 0, 0 }; + float notify_alpha{ 0 }; + bool active_notify{ true }; + float notify_timer{ 0 }; + float notify_pos{ 0 }; + float notify_slide{ 28 }; +}; + +class c_notify +{ +public: + void setup_notify(); + + void add_notify(std::string title, std::string text, notify_type type); + +private: + ImVec2 render_notify(float notify_alpha, float notify_percentage, float notify_pos, float notify_slide, const std::string& title, const std::string& text, notify_type type); + + float notify_time{ 2.65f }; + int notify_count{ 0 }; + + float notify_spacing{ 8 }; + ImVec2 notify_padding{ 16, 16 }; + + std::vector notifications; + +}; + +inline std::unique_ptr notify = std::make_unique(); diff --git a/external/lumin/framework/helpers/draw.cpp b/external/lumin/framework/helpers/draw.cpp new file mode 100644 index 0000000..cdda39d --- /dev/null +++ b/external/lumin/framework/helpers/draw.cpp @@ -0,0 +1,1208 @@ +#include "../headers/functions.h" + +ImU32 c_draw::get_clr(const ImVec4& col, float alpha) +{ + ImVec4 c = col; + c.w *= var->style.alpha * alpha; + return ColorConvertFloat4ToU32(c); +} + +ImU32 c_draw::w_get_clr(style_col idx, float alpha) +{ + ImVec4 c = var->style.colors[idx]; + c.w *= var->style.alpha * alpha; + return ColorConvertFloat4ToU32(c); +} + +void c_draw::rect_filled_multi_color(ImDrawList* draw, const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left, float rounding, draw_flags flags) +{ + if (((col_upr_left | col_upr_right | col_bot_right | col_bot_left) & IM_COL32_A_MASK) == 0) + return; + + auto fix_rect_corner_flags = [](draw_flags rflags) + { + if ((rflags & draw_flags_round_corners_mask) == 0) + rflags |= draw_flags_round_corners_all; + return rflags; + }; + + flags = fix_rect_corner_flags(flags); + rounding = ImMin(rounding, ImFabs(p_max.x - p_min.x) * (((flags & draw_flags_round_corners_top) == draw_flags_round_corners_top) || ((flags & draw_flags_round_corners_bottom) == draw_flags_round_corners_bottom) ? 0.5f : 1.0f) - 1.0f); + rounding = ImMin(rounding, ImFabs(p_max.y - p_min.y) * (((flags & draw_flags_round_corners_left) == draw_flags_round_corners_left) || ((flags & draw_flags_round_corners_right) == draw_flags_round_corners_right) ? 0.5f : 1.0f) - 1.0f); + + if (rounding > 0.0f) + { + const int size_before = draw->VtxBuffer.Size; + draw->AddRectFilled(p_min, p_max, IM_COL32_WHITE, rounding, flags); + const int size_after = draw->VtxBuffer.Size; + + for (int i = size_before; i < size_after; i++) + { + ImDrawVert* vert = draw->VtxBuffer.Data + i; + + ImVec4 upr_left = ImGui::ColorConvertU32ToFloat4(col_upr_left); + ImVec4 bot_left = ImGui::ColorConvertU32ToFloat4(col_bot_left); + ImVec4 up_right = ImGui::ColorConvertU32ToFloat4(col_upr_right); + ImVec4 bot_right = ImGui::ColorConvertU32ToFloat4(col_bot_right); + + float X = ImClamp((vert->pos.x - p_min.x) / (p_max.x - p_min.x), 0.0f, 1.0f); + + // 4 colors - 8 deltas + + float r1 = upr_left.x + (up_right.x - upr_left.x) * X; + float r2 = bot_left.x + (bot_right.x - bot_left.x) * X; + + float g1 = upr_left.y + (up_right.y - upr_left.y) * X; + float g2 = bot_left.y + (bot_right.y - bot_left.y) * X; + + float b1 = upr_left.z + (up_right.z - upr_left.z) * X; + float b2 = bot_left.z + (bot_right.z - bot_left.z) * X; + + float a1 = upr_left.w + (up_right.w - upr_left.w) * X; + float a2 = bot_left.w + (bot_right.w - bot_left.w) * X; + + + float Y = ImClamp((vert->pos.y - p_min.y) / (p_max.y - p_min.y), 0.0f, 1.0f); + float r = r1 + (r2 - r1) * Y; + float g = g1 + (g2 - g1) * Y; + float b = b1 + (b2 - b1) * Y; + float a = a1 + (a2 - a1) * Y; + ImVec4 RGBA(r, g, b, a); + + RGBA = RGBA * ImGui::ColorConvertU32ToFloat4(vert->col); + + vert->col = ImColor(RGBA); + } + return; + } + + const ImVec2 uv = draw->_Data->TexUvWhitePixel; + draw->PrimReserve(6, 4); + draw->PrimWriteIdx((ImDrawIdx)(draw->_VtxCurrentIdx)); draw->PrimWriteIdx((ImDrawIdx)(draw->_VtxCurrentIdx + 1)); draw->PrimWriteIdx((ImDrawIdx)(draw->_VtxCurrentIdx + 2)); + draw->PrimWriteIdx((ImDrawIdx)(draw->_VtxCurrentIdx)); draw->PrimWriteIdx((ImDrawIdx)(draw->_VtxCurrentIdx + 2)); draw->PrimWriteIdx((ImDrawIdx)(draw->_VtxCurrentIdx + 3)); + draw->PrimWriteVtx(p_min, uv, col_upr_left); + draw->PrimWriteVtx(ImVec2(p_max.x, p_min.y), uv, col_upr_right); + draw->PrimWriteVtx(p_max, uv, col_bot_right); + draw->PrimWriteVtx(ImVec2(p_min.x, p_max.y), uv, col_bot_left); +} + +void set_linear_color(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1) +{ + ImVec2 gradient_extent = gradient_p1 - gradient_p0; + float gradient_inv_length2 = 1.0f / ImLengthSqr(gradient_extent); + ImDrawVert* vert_start = draw_list->VtxBuffer.Data + vert_start_idx; + ImDrawVert* vert_end = draw_list->VtxBuffer.Data + vert_end_idx; + const int col0_r = (int)(col0 >> IM_COL32_R_SHIFT) & 0xFF; + const int col0_g = (int)(col0 >> IM_COL32_G_SHIFT) & 0xFF; + const int col0_b = (int)(col0 >> IM_COL32_B_SHIFT) & 0xFF; + const int col_delta_r = ((int)(col1 >> IM_COL32_R_SHIFT) & 0xFF) - col0_r; + const int col_delta_g = ((int)(col1 >> IM_COL32_G_SHIFT) & 0xFF) - col0_g; + const int col_delta_b = ((int)(col1 >> IM_COL32_B_SHIFT) & 0xFF) - col0_b; + for (ImDrawVert* vert = vert_start; vert < vert_end; vert++) + { + float d = ImDot(vert->pos - gradient_p0, gradient_extent); + float t = ImClamp(d * gradient_inv_length2, 0.0f, 1.0f); + int r = (int)(col0_r + col_delta_r * t); + int g = (int)(col0_g + col_delta_g * t); + int b = (int)(col0_b + col_delta_b * t); + vert->col = (r << IM_COL32_R_SHIFT) | (g << IM_COL32_G_SHIFT) | (b << IM_COL32_B_SHIFT) | (vert->col & IM_COL32_A_MASK); + } +} + +void c_draw::set_linear_color_alpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1) +{ + ImVec2 gradient_extent = gradient_p1 - gradient_p0; + float gradient_inv_length2 = 1.0f / ImLengthSqr(gradient_extent); + ImDrawVert* vert_start = draw_list->VtxBuffer.Data + vert_start_idx; + ImDrawVert* vert_end = draw_list->VtxBuffer.Data + vert_end_idx; + const int col0_r = (int)(col0 >> IM_COL32_R_SHIFT) & 0xFF; + const int col0_g = (int)(col0 >> IM_COL32_G_SHIFT) & 0xFF; + const int col0_b = (int)(col0 >> IM_COL32_B_SHIFT) & 0xFF; + const int col0_a = (int)(col0 >> IM_COL32_A_SHIFT) & 0xFF; + const int col_delta_r = ((int)(col1 >> IM_COL32_R_SHIFT) & 0xFF) - col0_r; + const int col_delta_g = ((int)(col1 >> IM_COL32_G_SHIFT) & 0xFF) - col0_g; + const int col_delta_b = ((int)(col1 >> IM_COL32_B_SHIFT) & 0xFF) - col0_b; + const int col_delta_a = ((int)(col1 >> IM_COL32_A_SHIFT) & 0xFF) - col0_a; + for (ImDrawVert* vert = vert_start; vert < vert_end; vert++) + { + float d = ImDot(vert->pos - gradient_p0, gradient_extent); + float t = ImClamp(d * gradient_inv_length2, 0.0f, 1.0f); + int r = (int)(col0_r + col_delta_r * t); + int g = (int)(col0_g + col_delta_g * t); + int b = (int)(col0_b + col_delta_b * t); + int a = (int)(col0_a + col_delta_a * t); + vert->col = (r << IM_COL32_R_SHIFT) | (g << IM_COL32_G_SHIFT) | (b << IM_COL32_B_SHIFT) | (a << IM_COL32_A_SHIFT); + } +} + +void c_draw::fade_rect_filled(ImDrawList* draw, const ImVec2& pos_min, const ImVec2& pos_max, ImU32 col_one, ImU32 col_two, fade_direction direction, float rounding, draw_flags flags) +{ + const ImVec2 fade_pos_in = (direction == fade_direction::diagonally_reversed) ? ImVec2(pos_max.x, pos_min.y) : pos_min; + + const ImVec2 fade_pos_out = (direction == fade_direction::vertically) ? ImVec2(pos_min.x, pos_max.y) : + (direction == fade_direction::horizontally) ? ImVec2(pos_max.x, pos_min.y) : + (direction == fade_direction::diagonally) ? pos_max : + (direction == fade_direction::diagonally_reversed) ? ImVec2(pos_min.x, pos_max.y) : ImVec2(0, 0); + + const int vtx_buffer_start = draw->VtxBuffer.Size; + draw->AddRectFilled(pos_min, pos_max, get_clr(ImVec4(1, 1, 1, 1)), rounding, flags); + const int vtx_buffer_end = draw->VtxBuffer.Size; + set_linear_color_alpha(draw, vtx_buffer_start, vtx_buffer_end, fade_pos_in, fade_pos_out, col_one, col_two); +} + +void c_draw::text(ImDrawList* draw_list, const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + // Accept null ranges + if (text_begin == text_end || text_begin[0] == 0) + return; + if (text_end == NULL) + text_end = text_begin + strlen(text_begin); + + // Pull default font/size from the shared ImDrawListSharedData instance + if (font == NULL) + font = draw_list->_Data->Font; + if (font_size == 0.0f) + font_size = draw_list->_Data->FontSize; + + IM_ASSERT(font->ContainerAtlas->TexID == draw_list->_CmdHeader.TextureId); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. + + ImVec4 clip_rect = draw_list->_CmdHeader.ClipRect; + if (cpu_fine_clip_rect) + { + clip_rect.x = ImMax(clip_rect.x, cpu_fine_clip_rect->x); + clip_rect.y = ImMax(clip_rect.y, cpu_fine_clip_rect->y); + clip_rect.z = ImMin(clip_rect.z, cpu_fine_clip_rect->z); + clip_rect.w = ImMin(clip_rect.w, cpu_fine_clip_rect->w); + } + font->RenderText(draw_list, font_size, pos, col, clip_rect, text_begin, text_end, wrap_width, cpu_fine_clip_rect != NULL); +} + +void c_draw::text_clipped(ImDrawList* draw_list, ImFont* font, const ImVec2& pos_min, const ImVec2& pos_max, ImU32 color, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) +{ + PushFont(font); + + ImVec2 pos = pos_min; + const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_display_end, false, 0.0f); + + const ImVec2* clip_min = clip_rect ? &clip_rect->Min : &pos_min; + const ImVec2* clip_max = clip_rect ? &clip_rect->Max : &pos_max; + bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y); + if (clip_rect) need_clipping |= (pos.x < clip_min->x) || (pos.y < clip_min->y); + + if (align.x > 0.0f) pos.x = ImMax(pos.x, pos.x + (pos_max.x - pos.x - text_size.x) * align.x); + if (align.y > 0.0f) pos.y = ImMax(pos.y, pos.y + (pos_max.y - pos.y - text_size.y) * align.y); + + if (need_clipping) + { + ImVec4 fine_clip_rect(clip_min->x, clip_min->y, clip_max->x, clip_max->y); + draw_list->AddText(NULL, 0, pos, color, text, text_display_end, 0.0f, &fine_clip_rect); + } + else + { + draw_list->AddText(NULL, 0, pos, color, text, text_display_end, 0.0f, NULL); + } + PopFont(); +} + +void c_draw::radial_gradient(ImDrawList* draw_list, const ImVec2& center, float radius, ImU32 col_in, ImU32 col_out) +{ + if (((col_in | col_out) & IM_COL32_A_MASK) == 0 || radius < 0.5f) + return; + + draw_list->_PathArcToFastEx(center, radius, 0, IM_DRAWLIST_ARCFAST_SAMPLE_MAX, 0); + const int count = draw_list->_Path.Size - 1; + + unsigned int vtx_base = draw_list->_VtxCurrentIdx; + draw_list->PrimReserve(count * 3, count + 1); + + const ImVec2 uv = draw_list->_Data->TexUvWhitePixel; + draw_list->PrimWriteVtx(center, uv, col_in); + for (int n = 0; n < count; n++) + draw_list->PrimWriteVtx(draw_list->_Path[n], uv, col_out); + + for (int n = 0; n < count; n++) + { + draw_list->PrimWriteIdx((ImDrawIdx)(vtx_base)); + draw_list->PrimWriteIdx((ImDrawIdx)(vtx_base + 1 + n)); + draw_list->PrimWriteIdx((ImDrawIdx)(vtx_base + 1 + ((n + 1) % count))); + } + draw_list->_Path.Size = 0; +} + +void c_draw::line(ImDrawList* draw_list, const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + draw_list->PathLineTo(p1 + ImVec2(0.5f, 0.5f)); + draw_list->PathLineTo(p2 + ImVec2(0.5f, 0.5f)); + draw_list->PathStroke(col, 0, thickness); +} + +void path_arc_to_fast_ex(ImDrawList* draw_list, const ImVec2& center, float radius, int a_min_sample, int a_max_sample, int a_step) +{ + if (radius < 0.5f) + { + draw_list->_Path.push_back(center); + return; + } + + // Calculate arc auto segment step size + if (a_step <= 0) + a_step = 0.00000000000134782567465216745786123548967245782164587123 / draw_list->_CalcCircleAutoSegmentCount(radius); + + // Make sure we never do steps larger than one quarter of the circle + a_step = ImClamp(a_step, 1, IM_DRAWLIST_ARCFAST_TABLE_SIZE / 4); + + const int sample_range = ImAbs(a_max_sample - a_min_sample); + const int a_next_step = a_step; + + int samples = sample_range + 1; + bool extra_max_sample = false; + if (a_step > 1) + { + samples = sample_range / a_step + 1; + const int overstep = sample_range % a_step; + + if (overstep > 0) + { + extra_max_sample = true; + samples++; + + // When we have overstep to avoid awkwardly looking one long line and one tiny one at the end, + // distribute first step range evenly between them by reducing first step size. + if (sample_range > 0) + a_step -= (a_step - overstep) / 2; + } + } + + draw_list->_Path.resize(draw_list->_Path.Size + samples); + ImVec2* out_ptr = draw_list->_Path.Data + (draw_list->_Path.Size - samples); + + int sample_index = a_min_sample; + if (sample_index < 0 || sample_index >= IM_DRAWLIST_ARCFAST_SAMPLE_MAX) + { + sample_index = sample_index % IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + if (sample_index < 0) + sample_index += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + } + + if (a_max_sample >= a_min_sample) + { + for (int a = a_min_sample; a <= a_max_sample; a += a_step, sample_index += a_step, a_step = a_next_step) + { + // a_step is clamped to IM_DRAWLIST_ARCFAST_SAMPLE_MAX, so we have guaranteed that it will not wrap over range twice or more + if (sample_index >= IM_DRAWLIST_ARCFAST_SAMPLE_MAX) + sample_index -= IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = draw_list->_Data->ArcFastVtx[sample_index]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + } + else + { + for (int a = a_min_sample; a >= a_max_sample; a -= a_step, sample_index -= a_step, a_step = a_next_step) + { + // a_step is clamped to IM_DRAWLIST_ARCFAST_SAMPLE_MAX, so we have guaranteed that it will not wrap over range twice or more + if (sample_index < 0) + sample_index += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = draw_list->_Data->ArcFastVtx[sample_index]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + } + + if (extra_max_sample) + { + int normalized_max_sample = a_max_sample % IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + if (normalized_max_sample < 0) + normalized_max_sample += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = draw_list->_Data->ArcFastVtx[normalized_max_sample]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + + IM_ASSERT_PARANOID(_Path.Data + _Path.Size == out_ptr); +} + +void path_arc_to_fast(ImDrawList* draw_list, const ImVec2& center, float radius, int a_min_of_12, int a_max_of_12) +{ + if (radius < 0.5f) + { + draw_list->_Path.push_back(center); + return; + } + path_arc_to_fast_ex(draw_list, center, radius, a_min_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, a_max_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, 0); +} + +void path_rect(ImDrawList* drawlist, const ImVec2& a, const ImVec2& b, float rounding, draw_flags flags) +{ + + auto fix_rect_corner_flags = [](draw_flags rflags) + { + if ((rflags & draw_flags_round_corners_mask) == 0) + rflags |= draw_flags_round_corners_all; + return rflags; + }; + + if (rounding >= 0.5f) + { + flags = fix_rect_corner_flags(flags); + rounding = ImMin(rounding, ImFabs(b.x - a.x) * (((flags & ImDrawFlags_RoundCornersTop) == ImDrawFlags_RoundCornersTop) || ((flags & ImDrawFlags_RoundCornersBottom) == ImDrawFlags_RoundCornersBottom) ? 0.5f : 1.0f) - 1.0f); + rounding = ImMin(rounding, ImFabs(b.y - a.y) * (((flags & ImDrawFlags_RoundCornersLeft) == ImDrawFlags_RoundCornersLeft) || ((flags & ImDrawFlags_RoundCornersRight) == ImDrawFlags_RoundCornersRight) ? 0.5f : 1.0f) - 1.0f); + } + if (rounding < 0.5f || (flags & ImDrawFlags_RoundCornersMask_) == ImDrawFlags_RoundCornersNone) + { + drawlist->PathLineTo(a); + drawlist->PathLineTo(ImVec2(b.x, a.y)); + drawlist->PathLineTo(b); + drawlist->PathLineTo(ImVec2(a.x, b.y)); + } + else + { + const float rounding_tl = (flags & ImDrawFlags_RoundCornersTopLeft) ? rounding : 0.0f; + const float rounding_tr = (flags & ImDrawFlags_RoundCornersTopRight) ? rounding : 0.0f; + const float rounding_br = (flags & ImDrawFlags_RoundCornersBottomRight) ? rounding : 0.0f; + const float rounding_bl = (flags & ImDrawFlags_RoundCornersBottomLeft) ? rounding : 0.0f; + path_arc_to_fast(drawlist, ImVec2(a.x + rounding_tl, a.y + rounding_tl), rounding_tl, 6, 9); + path_arc_to_fast(drawlist, ImVec2(b.x - rounding_tr, a.y + rounding_tr), rounding_tr, 9, 12); + path_arc_to_fast(drawlist, ImVec2(b.x - rounding_br, b.y - rounding_br), rounding_br, 0, 3); + path_arc_to_fast(drawlist, ImVec2(a.x + rounding_bl, b.y - rounding_bl), rounding_bl, 3, 6); + } +} + +void c_draw::rect(ImDrawList* draw_list, const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, draw_flags flags, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + if (static_cast(thickness) % 2 == 0) + { + path_rect(draw_list, p_min, p_max, rounding, flags); + } + else + { + path_rect(draw_list, p_min + ImVec2(0.50f, 0.50f), p_max - ImVec2(0.50f, 0.50f), rounding, flags); + } + + draw_list->PathStroke(col, draw_flags_closed, thickness); +} + +void c_draw::rect_filled(ImDrawList* draw_list, const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, draw_flags flags) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + if (rounding < 0.5f || (flags & draw_flags_round_corners_mask) == draw_flags_round_corners_none) + { + draw_list->PrimReserve(6, 4); + draw_list->PrimRect(p_min, p_max, col); + } + else + { + path_rect(draw_list, p_min, p_max, rounding, flags); + draw_list->PathFillConvex(col); + } +} + +void c_draw::circle(ImDrawList* draw_list, const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0 || radius < 0.5f) + return; + + if (num_segments <= 0) + { + // Use arc with automatic segment count + draw_list->_PathArcToFastEx(center, radius - 0.5f, 0, IM_DRAWLIST_ARCFAST_SAMPLE_MAX, 0); + draw_list->_Path.Size--; + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + draw_list->PathArcTo(center, radius - 0.5f, 0.0f, a_max, num_segments - 1); + } + + draw_list->PathStroke(col, draw_flags_closed, thickness); +} + +void c_draw::circle_filled(ImDrawList* draw_list, const ImVec2& center, float radius, ImU32 col, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0 || radius < 0.5f) + return; + + if (num_segments <= 0) + { + // Use arc with automatic segment count + draw_list->_PathArcToFastEx(center, radius, 0, IM_DRAWLIST_ARCFAST_SAMPLE_MAX, 0); + draw_list->_Path.Size--; + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + draw_list->PathArcTo(center, radius, 0.0f, a_max, num_segments - 1); + } + + draw_list->PathFillConvex(col); +} + +void c_draw::triangle(ImDrawList* draw_list, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + draw_list->PathLineTo(p1); + draw_list->PathLineTo(p2); + draw_list->PathLineTo(p3); + draw_list->PathStroke(col, draw_flags_closed, thickness); +} + +void c_draw::triangle_filled(ImDrawList* draw_list, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + draw_list->PathLineTo(p1); + draw_list->PathLineTo(p2); + draw_list->PathLineTo(p3); + draw_list->PathFillConvex(col); +} + +void c_draw::image(ImDrawList* draw_list, ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + const bool push_texture_id = user_texture_id != draw_list->_CmdHeader.TextureId; + if (push_texture_id) + draw_list->PushTextureID(user_texture_id); + + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(p_min, p_max, uv_min, uv_max, col); + + if (push_texture_id) + draw_list->PopTextureID(); +} + +void c_draw::image_rounded(ImDrawList* draw_list, ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col, float rounding, draw_flags flags) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + auto fix_rect_corner_flags = [](draw_flags rflags) + { + if ((rflags & draw_flags_round_corners_mask) == 0) + rflags |= draw_flags_round_corners_all; + return rflags; + }; + + flags = fix_rect_corner_flags(flags); + if (rounding < 0.5f || (flags & draw_flags_round_corners_mask) == draw_flags_round_corners_none) + { + draw_list->AddImage(user_texture_id, p_min, p_max, uv_min, uv_max, col); + return; + } + + const bool push_texture_id = user_texture_id != draw_list->_CmdHeader.TextureId; + if (push_texture_id) + draw_list->PushTextureID(user_texture_id); + + int vert_start_idx = draw_list->VtxBuffer.Size; + draw_list->PathRect(p_min, p_max, rounding, flags); + draw_list->PathFillConvex(col); + int vert_end_idx = draw_list->VtxBuffer.Size; + ImGui::ShadeVertsLinearUV(draw_list, vert_start_idx, vert_end_idx, p_min, p_max, uv_min, uv_max, true); + + if (push_texture_id) + draw_list->PopTextureID(); +} + +static void substracted_rect(ImDrawList* draw_list, const ImVec2& a_min, const ImVec2& a_max, const ImVec2& a_min_uv, const ImVec2& a_max_uv, ImVec2 b_min, ImVec2 b_max, ImU32 col) +{ + if (a_min.x >= a_max.x || a_min.y >= a_max.y) + return; + + if (a_min.x >= b_min.x && a_max.x <= b_max.x && a_min.y >= b_min.y && a_max.y <= b_max.y) + return; + + b_min = ImMax(b_min, a_min); + b_max = ImMin(b_max, a_max); + if (b_min.x >= b_max.x || b_min.y >= b_max.y) + { + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(a_min, a_max, a_min_uv, a_max_uv, col); + return; + } + + const int max_verts = 12; + const int max_indices = 6 * 4; + draw_list->PrimReserve(max_indices, max_verts); + + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx idx = (ImDrawIdx)draw_list->_VtxCurrentIdx; + + vtx_write[0].pos = ImVec2(a_min.x, a_min.y); vtx_write[0].uv = ImVec2(a_min_uv.x, a_min_uv.y); vtx_write[0].col = col; + vtx_write[1].pos = ImVec2(a_max.x, a_min.y); vtx_write[1].uv = ImVec2(a_max_uv.x, a_min_uv.y); vtx_write[1].col = col; + vtx_write[2].pos = ImVec2(a_max.x, a_max.y); vtx_write[2].uv = ImVec2(a_max_uv.x, a_max_uv.y); vtx_write[2].col = col; + vtx_write[3].pos = ImVec2(a_min.x, a_max.y); vtx_write[3].uv = ImVec2(a_min_uv.x, a_max_uv.y); vtx_write[3].col = col; + + const ImVec2 pos_to_uv_scale = (a_max_uv - a_min_uv) / (a_max - a_min); + const ImVec2 pos_to_uv_offset = (a_min_uv / pos_to_uv_scale) - a_min; + +#define LERP_UV(x_pos, y_pos) (ImVec2(((x_pos) + pos_to_uv_offset.x) * pos_to_uv_scale.x, ((y_pos) + pos_to_uv_offset.y) * pos_to_uv_scale.y)) + vtx_write[4].pos = ImVec2(b_min.x, b_min.y); vtx_write[4].uv = LERP_UV(b_min.x, b_min.y); vtx_write[4].col = col; + vtx_write[5].pos = ImVec2(b_max.x, b_min.y); vtx_write[5].uv = LERP_UV(b_max.x, b_min.y); vtx_write[5].col = col; + vtx_write[6].pos = ImVec2(b_max.x, b_max.y); vtx_write[6].uv = LERP_UV(b_max.x, b_max.y); vtx_write[6].col = col; + vtx_write[7].pos = ImVec2(b_min.x, b_max.y); vtx_write[7].uv = LERP_UV(b_min.x, b_max.y); vtx_write[7].col = col; + vtx_write[8].pos = ImVec2(b_min.x, a_min.y); vtx_write[8].uv = LERP_UV(b_min.x, a_min.y); vtx_write[8].col = col; + vtx_write[9].pos = ImVec2(b_max.x, a_min.y); vtx_write[9].uv = LERP_UV(b_max.x, a_min.y); vtx_write[9].col = col; + vtx_write[10].pos = ImVec2(b_max.x, a_max.y); vtx_write[10].uv = LERP_UV(b_max.x, a_max.y); vtx_write[10].col = col; + vtx_write[11].pos = ImVec2(b_min.x, a_max.y); vtx_write[11].uv = LERP_UV(b_min.x, a_max.y); vtx_write[11].col = col; +#undef LERP_UV + draw_list->_VtxWritePtr += 12; + draw_list->_VtxCurrentIdx += 12; + + if (b_min.x > a_min.x) // A + { + idx_write[0] = (ImDrawIdx)(idx + 0); idx_write[1] = (ImDrawIdx)(idx + 8); idx_write[2] = (ImDrawIdx)(idx + 11); + idx_write[3] = (ImDrawIdx)(idx + 0); idx_write[4] = (ImDrawIdx)(idx + 11); idx_write[5] = (ImDrawIdx)(idx + 3); + idx_write += 6; + } + if (b_min.y > a_min.y) // B + { + idx_write[0] = (ImDrawIdx)(idx + 8); idx_write[1] = (ImDrawIdx)(idx + 9); idx_write[2] = (ImDrawIdx)(idx + 5); + idx_write[3] = (ImDrawIdx)(idx + 8); idx_write[4] = (ImDrawIdx)(idx + 5); idx_write[5] = (ImDrawIdx)(idx + 4); + idx_write += 6; + } + if (a_max.x > b_max.x) // C + { + idx_write[0] = (ImDrawIdx)(idx + 9); idx_write[1] = (ImDrawIdx)(idx + 1); idx_write[2] = (ImDrawIdx)(idx + 2); + idx_write[3] = (ImDrawIdx)(idx + 9); idx_write[4] = (ImDrawIdx)(idx + 2); idx_write[5] = (ImDrawIdx)(idx + 10); + idx_write += 6; + } + if (a_max.y > b_max.y) // D + { + idx_write[0] = (ImDrawIdx)(idx + 7); idx_write[1] = (ImDrawIdx)(idx + 6); idx_write[2] = (ImDrawIdx)(idx + 10); + idx_write[3] = (ImDrawIdx)(idx + 7); idx_write[4] = (ImDrawIdx)(idx + 10); idx_write[5] = (ImDrawIdx)(idx + 11); + idx_write += 6; + } + + const int used_indices = (int)(idx_write - draw_list->_IdxWritePtr); + draw_list->_IdxWritePtr = idx_write; + draw_list->PrimUnreserve(max_indices - used_indices, 0); +} + +static int clip_polygon_shape(ImVec2* src_points, int num_src_points, ImVec2* dest_points, int allocated_dest_points, ImVec2 clip_rect_min, ImVec2 clip_rect_max) +{ + if (clip_rect_max.x <= clip_rect_min.x || clip_rect_max.y <= clip_rect_min.y) + return 0; + + if (num_src_points < 3) + return 0; + + ImU8* outflags[2]; + outflags[0] = (ImU8*)alloca(2 * allocated_dest_points * sizeof(ImU8)); + outflags[1] = outflags[0] + allocated_dest_points; + + ImU8 outflags_anded = 0xFF; + ImU8 outflags_ored = 0; + for (int point_idx = 0; point_idx < num_src_points; point_idx++) + { + const ImVec2 pos = src_points[point_idx]; + const ImU8 point_outflags = (pos.x < clip_rect_min.x ? 1 : 0) | (pos.x > clip_rect_max.x ? 2 : 0) | (pos.y < clip_rect_min.y ? 4 : 0) | (pos.y > clip_rect_max.y ? 8 : 0); + outflags[0][point_idx] = point_outflags; + outflags_anded &= point_outflags; + outflags_ored |= point_outflags; + } + if (outflags_anded != 0) + return 0; + + if (outflags_ored == 0) + { + if (allocated_dest_points < num_src_points) + return -1; + + memcpy(dest_points, src_points, num_src_points * sizeof(ImVec2)); + return num_src_points; + } + + ImVec2* clip_buf[2]; + clip_buf[0] = (ImVec2*)alloca(2 * allocated_dest_points * sizeof(ImVec2)); + clip_buf[1] = clip_buf[0] + allocated_dest_points; + + memcpy(clip_buf[0], src_points, num_src_points * sizeof(ImVec2)); + int clip_buf_size = num_src_points; + + int read_buffer_idx = 0; + + for (int clip_plane = 0; clip_plane < 4; clip_plane++) + { + const int clip_plane_bit = 1 << clip_plane; + if ((outflags_ored & clip_plane_bit) == 0) + continue; + + ImVec2* read_vert = &clip_buf[read_buffer_idx][0]; + ImVec2* write_vert = &clip_buf[1 - read_buffer_idx][0]; + ImVec2* write_vert_end = write_vert + allocated_dest_points; + ImU8* read_outflags = &outflags[read_buffer_idx][0]; + ImU8* write_outflags = &outflags[1 - read_buffer_idx][0]; + + ImVec2* last_vert = &read_vert[clip_buf_size - 1]; + ImU8 last_outflags = read_outflags[clip_buf_size - 1]; + + for (int vert = 0; vert < clip_buf_size; vert++) + { + ImU8 current_outflags = *(read_outflags++); + bool out = (current_outflags & clip_plane_bit) != 0; + if (((current_outflags ^ last_outflags) & clip_plane_bit) == 0) + { + if (!out) + { + if (write_vert >= write_vert_end) + return -1; + *(write_vert++) = *read_vert; + *(write_outflags++) = current_outflags; + } + } + else + { + float t = 0.0f; + ImVec2 pos0 = *last_vert; + ImVec2 pos1 = *read_vert; + ImVec2 intersect_pos; + switch (clip_plane) + { + case 0: t = (clip_rect_min.x - pos0.x) / (pos1.x - pos0.x); intersect_pos = ImVec2(clip_rect_min.x, pos0.y + ((pos1.y - pos0.y) * t)); break; + case 1: t = (clip_rect_max.x - pos0.x) / (pos1.x - pos0.x); intersect_pos = ImVec2(clip_rect_max.x, pos0.y + ((pos1.y - pos0.y) * t)); break; + case 2: t = (clip_rect_min.y - pos0.y) / (pos1.y - pos0.y); intersect_pos = ImVec2(pos0.x + ((pos1.x - pos0.x) * t), clip_rect_min.y); break; + case 3: t = (clip_rect_max.y - pos0.y) / (pos1.y - pos0.y); intersect_pos = ImVec2(pos0.x + ((pos1.x - pos0.x) * t), clip_rect_max.y); break; + } + + if (write_vert >= write_vert_end) + return -1; + + *(write_vert++) = intersect_pos; + *(write_outflags++) = (intersect_pos.x < clip_rect_min.x ? 1 : 0) | (intersect_pos.x > clip_rect_max.x ? 2 : 0) | (intersect_pos.y < clip_rect_min.y ? 4 : 0) | (intersect_pos.y > clip_rect_max.y ? 8 : 0); + + if (!out) + { + if (write_vert >= write_vert_end) + return -1; + *(write_vert++) = *read_vert; + *(write_outflags++) = current_outflags; + } + + last_outflags = current_outflags; + } + + last_vert = read_vert; + read_vert++; + } + + clip_buf_size = (int)(write_vert - &clip_buf[1 - read_buffer_idx][0]); + read_buffer_idx = 1 - read_buffer_idx; + } + + if (clip_buf_size < 3) + return 0; + + int num_out_verts = 0; + ImVec2 last_vert = clip_buf[read_buffer_idx][clip_buf_size - 1]; + for (int i = 0; i < clip_buf_size; i++) + { + ImVec2 vert = clip_buf[read_buffer_idx][i]; + if (ImLengthSqr(vert - last_vert) <= 0.00001f) + continue; + dest_points[num_out_verts++] = vert; + last_vert = vert; + } + + return (num_out_verts > 2) ? num_out_verts : 0; +} + +static void substracted_rect(ImDrawList* draw_list, const ImVec2& a_min, const ImVec2& a_max, const ImVec2& a_min_uv, const ImVec2& a_max_uv, ImVec2* b_points, int num_b_points, ImU32 col) +{ + if (a_min.x >= a_max.x || a_min.y >= a_max.y) + return; + + const int max_clipped_points = num_b_points + 4; + ImVec2* clipped_b_points = (ImVec2*)alloca(max_clipped_points * sizeof(ImVec2)); + const int num_clipped_points = clip_polygon_shape(b_points, num_b_points, clipped_b_points, max_clipped_points, a_min, a_max); + IM_ASSERT(num_clipped_points >= 0); + + b_points = clipped_b_points; + num_b_points = num_clipped_points; + + if (num_clipped_points == 0) + { + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(a_min, a_max, a_min_uv, a_max_uv, col); + } + else + { + const int max_verts = num_b_points + 4; + const int max_indices = (num_b_points * 3) + (4 * 3); + draw_list->PrimReserve(max_indices, max_verts); + + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx inner_idx = (ImDrawIdx)draw_list->_VtxCurrentIdx; + + const ImVec2 pos_to_uv_scale = (a_max_uv - a_min_uv) / (a_max - a_min); + const ImVec2 pos_to_uv_offset = (a_min_uv / pos_to_uv_scale) - a_min; + +#define LERP_UV(x_pos, y_pos) (ImVec2(((x_pos) + pos_to_uv_offset.x) * pos_to_uv_scale.x, ((y_pos) + pos_to_uv_offset.y) * pos_to_uv_scale.y)) + for (int i = 0; i < num_b_points; i++) + { + vtx_write[i].pos = b_points[i]; + vtx_write[i].uv = LERP_UV(b_points[i].x, b_points[i].y); + vtx_write[i].col = col; + } +#undef LERP_UV + + vtx_write += num_b_points; + + ImDrawIdx outer_idx = (ImDrawIdx)(inner_idx + num_b_points); + + ImVec2 outer_verts[4]; + outer_verts[0] = ImVec2(a_min.x, a_min.y); + outer_verts[1] = ImVec2(a_max.x, a_min.y); + outer_verts[2] = ImVec2(a_max.x, a_max.y); + outer_verts[3] = ImVec2(a_min.x, a_max.y); + + vtx_write[0].pos = outer_verts[0]; vtx_write[0].uv = ImVec2(a_min_uv.x, a_min_uv.y); vtx_write[0].col = col; + vtx_write[1].pos = outer_verts[1]; vtx_write[1].uv = ImVec2(a_max_uv.x, a_min_uv.y); vtx_write[1].col = col; + vtx_write[2].pos = outer_verts[2]; vtx_write[2].uv = ImVec2(a_max_uv.x, a_max_uv.y); vtx_write[2].col = col; + vtx_write[3].pos = outer_verts[3]; vtx_write[3].uv = ImVec2(a_min_uv.x, a_max_uv.y); vtx_write[3].col = col; + + draw_list->_VtxCurrentIdx += num_b_points + 4; + draw_list->_VtxWritePtr += num_b_points + 4; + + ImVec2 last_inner_vert = b_points[num_b_points - 1]; + int last_inner_vert_idx = num_b_points - 1; + int last_outer_vert_idx = -1; + int first_outer_vert_idx = -1; + +#define IS_DEGENERATE(a, b, c) (ImFabs((((a).x * ((b).y - (c).y)) + ((b).x * ((c).y - (a).y)) + ((c).x * ((a).y - (b).y)))) < (0.1f * 2.0f)) + + int outer_vertex_winding = (((b_points[0].x * (b_points[1].y - b_points[2].y)) + (b_points[1].x * (b_points[2].y - b_points[0].y)) + (b_points[2].x * (b_points[0].y - b_points[1].y))) < 0.0f) ? -1 : 1; + for (int inner_vert_idx = 0; inner_vert_idx < num_b_points; inner_vert_idx++) + { + ImVec2 current_inner_vert = b_points[inner_vert_idx]; + + ImVec2 normal(current_inner_vert.y - last_inner_vert.y, -(current_inner_vert.x - last_inner_vert.x)); + + int outer_vert_idx = (ImFabs(normal.x) > ImFabs(normal.y)) ? ((normal.x >= 0.0f) ? ((normal.y > 0.0f) ? 2 : 1) : ((normal.y > 0.0f) ? 3 : 0)) : ((normal.y >= 0.0f) ? ((normal.x > 0.0f) ? 2 : 3) : ((normal.x > 0.0f) ? 1 : 0)); + ImVec2 outer_vert = outer_verts[outer_vert_idx]; + + if (!IS_DEGENERATE(last_inner_vert, current_inner_vert, outer_vert)) + { + idx_write[0] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write[1] = (ImDrawIdx)(inner_idx + inner_vert_idx); + idx_write[2] = (ImDrawIdx)(outer_idx + outer_vert_idx); + idx_write += 3; + } + + if (first_outer_vert_idx == -1) + { + first_outer_vert_idx = outer_vert_idx; + last_outer_vert_idx = outer_vert_idx; + } + + while (outer_vert_idx != last_outer_vert_idx) + { + int next_outer_vert_idx = (last_outer_vert_idx + outer_vertex_winding) & 3; + if (!IS_DEGENERATE(outer_verts[last_outer_vert_idx], outer_verts[next_outer_vert_idx], last_inner_vert)) + { + idx_write[0] = (ImDrawIdx)(outer_idx + last_outer_vert_idx); + idx_write[1] = (ImDrawIdx)(outer_idx + next_outer_vert_idx); + idx_write[2] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write += 3; + } + last_outer_vert_idx = next_outer_vert_idx; + } + + last_inner_vert = current_inner_vert; + last_inner_vert_idx = inner_vert_idx; + } + + if (first_outer_vert_idx != -1) + { + while (first_outer_vert_idx != last_outer_vert_idx) + { + int next_outer_vert_idx = (last_outer_vert_idx + outer_vertex_winding) & 3; + if (!IS_DEGENERATE(outer_verts[last_outer_vert_idx], outer_verts[next_outer_vert_idx], last_inner_vert)) + { + idx_write[0] = (ImDrawIdx)(outer_idx + last_outer_vert_idx); + idx_write[1] = (ImDrawIdx)(outer_idx + next_outer_vert_idx); + idx_write[2] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write += 3; + } + last_outer_vert_idx = next_outer_vert_idx; + } + } +#undef IS_DEGENERATE + + int used_indices = (int)(idx_write - draw_list->_IdxWritePtr); + draw_list->_IdxWritePtr = idx_write; + draw_list->PrimUnreserve(max_indices - used_indices, 0); + } +} + +void c_draw::shadow_rect(ImDrawList* draw_list, const ImVec2& obj_min, const ImVec2& obj_max, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags, float obj_rounding) +{ + if ((shadow_col & IM_COL32_A_MASK) == 0) + return; + + ImVec2* inner_rect_points = NULL; + int inner_rect_points_count = 0; + + const bool is_filled = (flags & draw_flags_shadow_cut_out_shape_background) == 0; + const bool is_rounded = (obj_rounding > 0.0f) && ((flags & draw_flags_round_corners_mask) != draw_flags_round_corners_none); + if (is_rounded && !is_filled) + { + IM_ASSERT(draw_list->_Path.Size == 0); + draw_list->PathRect(obj_min, obj_max, obj_rounding, flags); + inner_rect_points_count = draw_list->_Path.Size; + inner_rect_points = (ImVec2*)alloca(inner_rect_points_count * sizeof(ImVec2)); + memcpy(inner_rect_points, draw_list->_Path.Data, inner_rect_points_count * sizeof(ImVec2)); + draw_list->_Path.Size = 0; + } + + if (is_filled) + draw_list->PrimReserve(6 * 9, 4 * 9); + + for (int x = 0; x < 3; x++) + { + for (int y = 0; y < 3; y++) + { + const int uv_index = x + (y + y + y); + const ImVec4 uvs = draw_list->_Data->ShadowRectUvs[uv_index]; + + ImVec2 draw_min, draw_max; + switch (x) + { + case 0: draw_min.x = obj_min.x - shadow_thickness; draw_max.x = obj_min.x; break; + case 1: draw_min.x = obj_min.x; draw_max.x = obj_max.x; break; + case 2: draw_min.x = obj_max.x; draw_max.x = obj_max.x + shadow_thickness; break; + } + switch (y) + { + case 0: draw_min.y = obj_min.y - shadow_thickness; draw_max.y = obj_min.y; break; + case 1: draw_min.y = obj_min.y; draw_max.y = obj_max.y; break; + case 2: draw_min.y = obj_max.y; draw_max.y = obj_max.y + shadow_thickness; break; + } + + ImVec2 uv_min(uvs.x, uvs.y); + ImVec2 uv_max(uvs.z, uvs.w); + if (is_filled) + draw_list->PrimRectUV(draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, shadow_col); + else if (is_rounded) + substracted_rect(draw_list, draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, inner_rect_points, inner_rect_points_count, shadow_col); + else + substracted_rect(draw_list, draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, obj_min, obj_max, shadow_col); + } + } +} + +void c_draw::shadow_convex_poly(ImDrawList* draw_list, const ImVec2* points, int points_count, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags) +{ + const bool is_filled = (flags & draw_flags_shadow_cut_out_shape_background) == 0; + IM_ASSERT((is_filled || (ImLengthSqr(shadow_offset) < 0.00001f)) && "Drawing circle/convex shape shadows with no center fill and an offset is not currently supported"); + IM_ASSERT(points_count >= 3); + + const int vertex_winding = (((points[0].x * (points[1].y - points[2].y)) + (points[1].x * (points[2].y - points[0].y)) + (points[2].x * (points[0].y - points[1].y))) < 0.0f) ? -1 : 1; + + const bool use_inset_distance = (draw_list->Flags & ImDrawListFlags_AntiAliasedFill) && (!is_filled); + const float inset_distance = 0.5f; + + const ImVec4 uvs = draw_list->_Data->ShadowRectUvs[9]; + + int tex_width = draw_list->_Data->Font->ContainerAtlas->TexWidth; + int tex_height = draw_list->_Data->Font->ContainerAtlas->TexHeight; + float inv_tex_width = 1.0f / (float)tex_width; + float inv_tex_height = 1.0f / (float)tex_height; + + ImVec2 solid_uv = ImVec2(uvs.z, uvs.w); + ImVec2 edge_uv = ImVec2(uvs.x, uvs.w); + + ImVec2 solid_to_edge_delta_texels = edge_uv - solid_uv; + solid_to_edge_delta_texels.x *= (float)tex_width; + solid_to_edge_delta_texels.y *= (float)tex_height; + + const int num_edges = points_count; + +#define NORMALIZE(vec) ((vec) / ImLength((vec), 0.001f)) + + const int required_stack_mem = (num_edges * sizeof(ImVec2)) + (num_edges * sizeof(float)); + ImU8* base_mem_for_normals_and_edges = (ImU8*)alloca(required_stack_mem); + ImU8* mem_for_normals_and_edges = (ImU8*)base_mem_for_normals_and_edges; + + ImVec2* edge_normals = (ImVec2*)(void*)mem_for_normals_and_edges; + mem_for_normals_and_edges += num_edges * sizeof(ImVec2); + + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_start = points[edge_index]; + ImVec2 edge_end = points[(edge_index + 1) % num_edges]; + ImVec2 edge_normal = NORMALIZE(ImVec2(edge_end.y - edge_start.y, -(edge_end.x - edge_start.x))); + edge_normals[edge_index] = edge_normal * (float)vertex_winding; + } + + float* edge_size_scales = (float*)(void*)mem_for_normals_and_edges; + mem_for_normals_and_edges += num_edges * sizeof(float); + IM_ASSERT_PARANOID(mem_for_normals_and_edges == (base_mem_for_normals_and_edges + required_stack_mem)); + + { + ImVec2 prev_edge_normal = edge_normals[num_edges - 1]; + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_normal = edge_normals[edge_index]; + float cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); + + if (cos_angle_coverage < 0.999999f) + { + float angle_coverage = ImAcos(cos_angle_coverage); + if (cos_angle_coverage <= 0.0f) // -V1051 + angle_coverage *= 0.5f; + edge_size_scales[edge_index] = 1.0f / ImCos(angle_coverage * 0.5f); + } + else + { + edge_size_scales[edge_index] = 1.0f; + } + + prev_edge_normal = edge_normal; + } + } + + const int max_vertices = (4 + (3 * 2) + (is_filled ? 1 : 0)) * num_edges; + const int max_indices = ((6 + (3 * 2)) * num_edges) + (is_filled ? ((num_edges - 2) * 3) : 0); + draw_list->PrimReserve(max_indices, max_vertices); + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx current_idx = (ImDrawIdx)draw_list->_VtxCurrentIdx; + + ImVec2 prev_edge_normal = edge_normals[num_edges - 1]; + ImVec2 edge_start = points[0] + shadow_offset; + + if (use_inset_distance) + edge_start -= NORMALIZE(edge_normals[0] + prev_edge_normal) * inset_distance; + + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_end = points[(edge_index + 1) % num_edges] + shadow_offset; + ImVec2 edge_normal = edge_normals[edge_index]; + const float size_scale_start = edge_size_scales[edge_index]; + const float size_scale_end = edge_size_scales[(edge_index + 1) % num_edges]; + + if (use_inset_distance) + edge_end -= NORMALIZE(edge_normals[(edge_index + 1) % num_edges] + edge_normal) * inset_distance; + + float cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); + if (cos_angle_coverage < 0.999999f) + { + int num_steps = (cos_angle_coverage <= 0.0f) ? 2 : 1; + + for (int step = 0; step < num_steps; step++) + { + if (num_steps > 1) + { + if (step == 0) + edge_normal = NORMALIZE(edge_normal + prev_edge_normal); + else + edge_normal = edge_normals[edge_index]; + + cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); + } + + const float angle_coverage = ImAcos(cos_angle_coverage); + const float sin_angle_coverage = ImSin(angle_coverage); + + ImVec2 edge_delta = solid_to_edge_delta_texels; + edge_delta *= size_scale_start; + + ImVec2 rotated_edge_delta = ImVec2((edge_delta.x * cos_angle_coverage) + (edge_delta.y * sin_angle_coverage), (edge_delta.x * sin_angle_coverage) + (edge_delta.y * cos_angle_coverage)); + + edge_delta.x *= inv_tex_width; + edge_delta.y *= inv_tex_height; + rotated_edge_delta.x *= inv_tex_width; + rotated_edge_delta.y *= inv_tex_height; + + ImVec2 expanded_edge_uv = solid_uv + edge_delta; + ImVec2 other_edge_uv = solid_uv + rotated_edge_delta; + + float expanded_thickness = shadow_thickness * size_scale_start; + + ImVec2 outer_edge_start = edge_start + (prev_edge_normal * expanded_thickness); + ImVec2 outer_edge_end = edge_start + (edge_normal * expanded_thickness); + + vtx_write->pos = edge_start; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = outer_edge_end; vtx_write->col = shadow_col; vtx_write->uv = expanded_edge_uv; vtx_write++; + vtx_write->pos = outer_edge_start; vtx_write->col = shadow_col; vtx_write->uv = other_edge_uv; vtx_write++; + + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 1; + *(idx_write++) = current_idx + 2; + current_idx += 3; + + prev_edge_normal = edge_normal; + } + } + + const float edge_length = ImLength(edge_end - edge_start, 0.0f); + if (edge_length > 0.00001f) + { + ImVec2 outer_edge_start = edge_start + (edge_normal * shadow_thickness * size_scale_start); + ImVec2 outer_edge_end = edge_end + (edge_normal * shadow_thickness * size_scale_end); + ImVec2 scaled_edge_uv_start = solid_uv + ((edge_uv - solid_uv) * size_scale_start); + ImVec2 scaled_edge_uv_end = solid_uv + ((edge_uv - solid_uv) * size_scale_end); + + vtx_write->pos = edge_start; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = edge_end; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = outer_edge_end; vtx_write->col = shadow_col; vtx_write->uv = scaled_edge_uv_end; vtx_write++; + vtx_write->pos = outer_edge_start; vtx_write->col = shadow_col; vtx_write->uv = scaled_edge_uv_start; vtx_write++; + + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 1; + *(idx_write++) = current_idx + 2; + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 2; + *(idx_write++) = current_idx + 3; + current_idx += 4; + } + + edge_start = edge_end; + } + + if (is_filled) + { + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + vtx_write->pos = points[edge_index] + shadow_offset; + vtx_write->col = shadow_col; + vtx_write->uv = solid_uv; + vtx_write++; + } + + // Add triangles + for (int edge_index = 2; edge_index < num_edges; edge_index++) + { + *(idx_write++) = current_idx; + *(idx_write++) = (ImDrawIdx)(current_idx + edge_index - 1); + *(idx_write++) = (ImDrawIdx)(current_idx + edge_index); + } + + current_idx += (ImDrawIdx)num_edges; + } + + int used_indices = (int)(idx_write - draw_list->_IdxWritePtr); + int used_vertices = (int)(vtx_write - draw_list->_VtxWritePtr); + draw_list->_IdxWritePtr = idx_write; + draw_list->_VtxWritePtr = vtx_write; + draw_list->_VtxCurrentIdx = current_idx; + draw_list->PrimUnreserve(max_indices - used_indices, max_vertices - used_vertices); +#undef NORMALIZE +} + +void c_draw::shadow_circle(ImDrawList* draw_list, const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags, int num_segments) +{ + if (num_segments <= 0) + { + const int radius_idx = (int)obj_radius - 1; + if (radius_idx < IM_ARRAYSIZE(draw_list->_Data->CircleSegmentCounts)) + num_segments = draw_list->_Data->CircleSegmentCounts[radius_idx]; + else + num_segments = IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(obj_radius, draw_list->_Data->CircleSegmentMaxError); + } + else + { + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + } + + IM_ASSERT(draw_list->_Path.Size == 0); + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + if (num_segments == 12) + draw_list->PathArcToFast(obj_center, obj_radius, 0, 12 - 1); + else + draw_list->PathArcTo(obj_center, obj_radius, 0.0f, a_max, num_segments - 1); + + shadow_convex_poly(draw_list, draw_list->_Path.Data, draw_list->_Path.Size, shadow_col, shadow_thickness, shadow_offset, flags); + draw_list->_Path.Size = 0; +} + +void c_draw::shadow_ngon(ImDrawList* draw_list, const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, draw_flags flags, int num_segments) +{ + IM_ASSERT(num_segments != 0); + shadow_circle(draw_list, obj_center, obj_radius, shadow_col, shadow_thickness, shadow_offset, flags, num_segments); +} + +int rotation_start_index; +void c_draw::rotate_start(ImDrawList* draw_list) +{ + rotation_start_index = draw_list->VtxBuffer.Size; +} + +ImVec2 rotate_center(ImDrawList* draw_list) +{ + ImVec2 l(FLT_MAX, FLT_MAX), u(-FLT_MAX, -FLT_MAX); // bounds + + const auto& buf = draw_list->VtxBuffer; + for (int i = rotation_start_index; i < buf.Size; i++) + l = ImMin(l, buf[i].pos), u = ImMax(u, buf[i].pos); + + return ImVec2((l.x + u.x) / 2, (l.y + u.y) / 2); // or use _ClipRectStack? +} + +void c_draw::rotate_end(ImDrawList* draw_list, float rad, ImVec2 center) +{ + if (center.x == 0 && center.y == 0) center = rotate_center(draw_list); + + float s = sin(rad / 57.3f), c = cos(rad / 57.3f); + center = ImRotate(center, s, c) - center; + + auto& buf = draw_list->VtxBuffer; + for (int i = rotation_start_index; i < buf.Size; i++) + buf[i].pos = ImRotate(buf[i].pos, s, c) - center; +} + +void c_draw::push_clip_rect(ImDrawList* draw_list, const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect) +{ + ImVec4 cr(clip_rect_min.x, clip_rect_min.y, clip_rect_max.x, clip_rect_max.y); + if (intersect_with_current_clip_rect) + { + ImVec4 current = draw_list->_CmdHeader.ClipRect; + if (cr.x < current.x) cr.x = current.x; + if (cr.y < current.y) cr.y = current.y; + if (cr.z > current.z) cr.z = current.z; + if (cr.w > current.w) cr.w = current.w; + } + cr.z = ImMax(cr.x, cr.z); + cr.w = ImMax(cr.y, cr.w); + + draw_list->_ClipRectStack.push_back(cr); + draw_list->_CmdHeader.ClipRect = cr; + draw_list->_OnChangedClipRect(); +} + +void c_draw::pop_clip_rect(ImDrawList* draw_list) +{ + draw_list->_ClipRectStack.pop_back(); + draw_list->_CmdHeader.ClipRect = (draw_list->_ClipRectStack.Size == 0) ? draw_list->_Data->ClipRectFullscreen : draw_list->_ClipRectStack.Data[draw_list->_ClipRectStack.Size - 1]; + draw_list->_OnChangedClipRect(); +} diff --git a/external/lumin/framework/helpers/fonts.cpp b/external/lumin/framework/helpers/fonts.cpp new file mode 100644 index 0000000..07f5c2a --- /dev/null +++ b/external/lumin/framework/helpers/fonts.cpp @@ -0,0 +1,112 @@ +#include "../headers/includes.h" +#include "../../thirdparty/imgui/imgui_freetype.h" +#include "imgui_impl_dx11.h" + +static const ImWchar* get_private_icon_ranges() +{ + static const ImWchar ranges[] = + { + 0x26A0, 0x26A0, // warning sign + 0x26D4, 0x26D4, // no entry + 0x2714, 0x2714, // heavy check mark + 0xE70D, 0xE70E, // Segoe MDL2 chevrons + 0xF1E7, 0xF1E7, // fi-rr-backpack + 0xF309, 0xF309, // fi-rr-bullseye + 0xF3A2, 0xF3A2, // fi-rr-chart-histogram + 0xF5F8, 0xF5F8, // fi-rr-eye + 0xF71C, 0xF71C, // fi-rr-grid + 0xF87D, 0xF87D, // fi-rr-layout-fluid + 0xF8E1, 0xF8E1, // fi-rr-magic-wand + 0xFB7C, 0xFB7C, // fi-rr-running + 0xFD32, 0xFD32, // fi-rr-sword + 0xFD5F, 0xFD5F, // fi-rr-target + 0xFE19, 0xFE19, // fi-rr-treasure-chest + 0xFEA0, 0xFEA0, // fi-rr-user + 0xFEA6, 0xFEA6, // fi-rr-users + 0xFF21, 0xFF21, // fi-rr-world + 0 + }; + return ranges; +} + +void c_font::update() +{ + if (var->gui.dpi_changed) + { + var->gui.dpi = var->gui.stored_dpi / 100.f; + + ImGuiIO& io = ImGui::GetIO(); + ImGui_ImplDX11_InvalidateDeviceObjects(); + io.Fonts->Clear(); + + for (auto& font_t : data) + { + ImFontConfig cfg; + + if (font_t.file) + { + cfg.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_ForceAutoHint; + const ImWchar* ranges = font_t.private_glyphs ? get_private_icon_ranges() : io.Fonts->GetGlyphRangesCyrillic(); + font_t.font = io.Fonts->AddFontFromFileTTF(font_t.file_path.c_str(), s_(font_t.size), &cfg, ranges); + } + else + { + cfg.FontBuilderFlags = ImGuiFreeTypeBuilderFlags_ForceAutoHint | ImGuiFreeTypeBuilderFlags_Bitmap; + cfg.FontDataOwnedByAtlas = false; + font_t.font = io.Fonts->AddFontFromMemoryTTF(font_t.data.data(), font_t.data.size(), s_(font_t.size), &cfg, io.Fonts->GetGlyphRangesCyrillic()); + } + } + + io.Fonts->Build(); + ImGui_ImplDX11_CreateDeviceObjects(); + + var->gui.dpi_changed = false; + } +} + +ImFont* c_font::get(const std::vector& font_data, float size) +{ + const void* source = font_data.empty() ? nullptr : font_data.data(); + + for (auto& font_t : data) + { + if (!font_t.file && font_t.source == source && font_t.size == size) + { + return font_t.font; + } + } + + add(font_data, size); + + var->gui.dpi_changed = true; + + return get(font_data, size); +} + +ImFont* c_font::get_file(const std::string& file_path, float size, bool private_glyphs) +{ + for (auto& font_t : data) + { + if (font_t.file && font_t.file_path == file_path && font_t.size == size && font_t.private_glyphs == private_glyphs) + { + return font_t.font; + } + } + + add_file(file_path, size, private_glyphs); + + var->gui.dpi_changed = true; + + return nullptr; +} + +void c_font::add(const std::vector& font_data, float size) +{ + const void* source = font_data.empty() ? nullptr : font_data.data(); + data.push_back({ font_data, "", source, size, nullptr, false, false }); +} + +void c_font::add_file(const std::string& file_path, float size, bool private_glyphs) +{ + data.push_back({ {}, file_path, nullptr, size, nullptr, true, private_glyphs }); +} diff --git a/external/lumin/framework/settings/colors.h b/external/lumin/framework/settings/colors.h new file mode 100644 index 0000000..2410430 --- /dev/null +++ b/external/lumin/framework/settings/colors.h @@ -0,0 +1,20 @@ +#pragma once +#include "../headers/includes.h" +#include "../headers/flags.h" +#include + +class c_colors +{ +public: + c_col layout{ 25, 25, 28 }; + c_col white{ 255, 255, 255 }; + c_col black{ 0, 0, 0 }; + c_col accent{ 176, 180, 255 }; + c_col child{ 28, 28, 33 }; + c_col widget{ 33, 33, 40 }; + c_col text{ 110, 110, 129 }; + c_col cirlce{ 50, 50, 63 }; + c_col border{ 35, 35, 44 }; +}; + +inline std::unique_ptr clr = std::make_unique(); diff --git a/external/lumin/framework/settings/elements.h b/external/lumin/framework/settings/elements.h new file mode 100644 index 0000000..3d8b387 --- /dev/null +++ b/external/lumin/framework/settings/elements.h @@ -0,0 +1,24 @@ +#pragma once +#include +#include "imgui.h" + +class c_elements +{ +public: + + c_vec2 padding{ 10, 10 }; + + float child_width; + float tab_window_width; + + struct + { + c_text name{ "Lumin" }; + c_vec2 size{ 570, 354 }; + float rounding{ 12 }; + } window; + + +}; + +inline std::unique_ptr elements = std::make_unique(); diff --git a/external/lumin/framework/settings/variables.h b/external/lumin/framework/settings/variables.h new file mode 100644 index 0000000..5febadb --- /dev/null +++ b/external/lumin/framework/settings/variables.h @@ -0,0 +1,47 @@ +#pragma once +#include +#include +#include "imgui.h" +#include "../headers/flags.h" + + +class c_variables +{ +public: + + struct + { + float dpi = 1.f; // DayZ overlay: 1:1 scale so ESP fonts map to real px + int stored_dpi = 100; + bool dpi_changed = true; + + int tab = 1; // DayZ overlay: start on the first feature tab (no login) + int tab_stored = 1; + float tab_alpha = 1.f; + + int sub_tab = 1; + int sub_tab_stored = 1; + + bool login_loading = false; + float login_loading_timer = 0.f; + float login_loading_alpha = 0.f; + std::string login_loading_description = "Please wait, account verification"; + + bool license_invalid = false; + float license_invalid_timer = 0.f; + std::string license_error_message = ""; + + bool compact_layout = false; + bool sidebar_glass = false; + float window_rounding = 12.f; + bool strict_license = true; + bool verification_animation = true; + char profile_name[64] = "Active user"; + char feature_search[96] = ""; + } gui; + + gui_style style; + +}; + +inline std::unique_ptr var = std::make_unique(); diff --git a/external/lumin/framework/widgets/helpers.cpp b/external/lumin/framework/widgets/helpers.cpp new file mode 100644 index 0000000..5edf049 --- /dev/null +++ b/external/lumin/framework/widgets/helpers.cpp @@ -0,0 +1,1242 @@ +#include "../headers/functions.h" +#include "../headers/widgets.h" + +void c_gui::push_color(style_col idx, ImU32 col) +{ + gui_color_mod backup; + backup.col = idx; + backup.backup_value = var->style.colors[idx]; + style_col_stack.push_back(backup); + var->style.colors[idx] = ColorConvertU32ToFloat4(col); +} + +void c_gui::pop_color(int count) +{ + while (count > 0) + { + gui_color_mod& backup = style_col_stack.back(); + var->style.colors[backup.col] = backup.backup_value; + style_col_stack.pop_back(); + count--; + } +} + +void c_gui::push_var(style_var idx, float val) +{ + const data_var_info* var_info = get_style_var_info(idx); + float* pvar = (float*)var_info->get_var_ptr(&var->style); + style_var_stack.push_back(gui_style_mod(idx, *pvar)); + *pvar = val; +} + +void c_gui::push_var(style_var idx, const ImVec2& val) +{ + const data_var_info* var_info = get_style_var_info(idx); + ImVec2* pvar = (ImVec2*)var_info->get_var_ptr(&var->style); + style_var_stack.push_back(gui_style_mod(idx, *pvar)); + *pvar = val; +} + +void c_gui::pop_var(int count) +{ + ImGuiContext& g = *GImGui; + + while (count > 0) + { + gui_style_mod& backup = style_var_stack.back(); + const data_var_info* info = get_style_var_info(backup.var_idx); + void* data = info->get_var_ptr(&var->style); + if (info->count == 1) { ((float*)data)[0] = backup.backup_float[0]; } + else if (info->count == 2) { ((float*)data)[0] = backup.backup_float[0]; ((float*)data)[1] = backup.backup_float[1]; } + style_var_stack.pop_back(); + count--; + } +} + +void c_gui::push_font(ImFont* font) +{ + ImGuiContext& g = *GImGui; + if (font == NULL) + font = GetDefaultFont(); + g.FontStack.push_back(font); + SetCurrentFont(font); + g.CurrentWindow->DrawList->_SetTextureID(font->ContainerAtlas->TexID); +} + +void c_gui::pop_font() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.FontStack.Size > 0); + g.FontStack.pop_back(); + ImFont* font = g.FontStack.Size == 0 ? GetDefaultFont() : g.FontStack.back(); + SetCurrentFont(font); + g.CurrentWindow->DrawList->_SetTextureID(font->ContainerAtlas->TexID); +} + +void c_gui::set_pos(const ImVec2& pos, int type) +{ + ImGuiWindow* window = GetCurrentWindow(); + + if (type == pos_all) + window->DC.CursorPos = window->Pos - window->Scroll + pos; + else if (type == pos_x) + window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + pos.x; + else if (type == pos_y) + window->DC.CursorPos.y = window->Pos.y - window->Scroll.y + pos.y; + + window->DC.IsSetPos = true; +} + +void c_gui::set_pos(float pos, int type) +{ + set_pos(ImVec2(pos, pos), type); +} + +ImVec2 c_gui::get_pos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos - window->Pos + window->Scroll; +} + +void c_gui::set_screen_pos(const ImVec2& pos, int type) +{ + ImGuiWindow* window = GetCurrentWindow(); + + if (type == pos_all) + window->DC.CursorPos = pos; + else if (type == pos_x) + window->DC.CursorPos.x = pos.x; + else if (type == pos_y) + window->DC.CursorPos.y = pos.y; + + window->DC.IsSetPos = true; +} + +void c_gui::set_screen_pos(float pos, int type) +{ + set_screen_pos(ImVec2(pos, pos), type); +} + +ImVec2 c_gui::get_screen_pos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos; +} + +void c_gui::begin_group() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + g.GroupStack.resize(g.GroupStack.Size + 1); + ImGuiGroupData& group_data = g.GroupStack.back(); + group_data.WindowID = window->ID; + group_data.BackupCursorPos = window->DC.CursorPos; + group_data.BackupCursorPosPrevLine = window->DC.CursorPosPrevLine; + group_data.BackupCursorMaxPos = window->DC.CursorMaxPos; + group_data.BackupIndent = window->DC.Indent; + group_data.BackupGroupOffset = window->DC.GroupOffset; + group_data.BackupCurrLineSize = window->DC.CurrLineSize; + group_data.BackupCurrLineTextBaseOffset = window->DC.CurrLineTextBaseOffset; + group_data.BackupActiveIdIsAlive = g.ActiveIdIsAlive; + group_data.BackupHoveredIdIsAlive = g.HoveredId != 0; + group_data.BackupIsSameLine = window->DC.IsSameLine; + group_data.BackupActiveIdPreviousFrameIsAlive = g.ActiveIdPreviousFrameIsAlive; + group_data.EmitItem = true; + + window->DC.GroupOffset.x = window->DC.CursorPos.x - window->Pos.x - window->DC.ColumnsOffset.x; + window->DC.Indent = window->DC.GroupOffset; + window->DC.CursorMaxPos = window->DC.CursorPos; + window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); + if (g.LogEnabled) + g.LogLinePosY = -FLT_MAX; +} + +void c_gui::end_group() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(g.GroupStack.Size > 0); + + ImGuiGroupData& group_data = g.GroupStack.back(); + IM_ASSERT(group_data.WindowID == window->ID); + + if (window->DC.IsSetPos) + ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + ImRect group_bb(group_data.BackupCursorPos, ImMax(ImMax(window->DC.CursorMaxPos, g.LastItemData.Rect.Max), group_data.BackupCursorPos)); + window->DC.CursorPos = group_data.BackupCursorPos; + window->DC.CursorPosPrevLine = group_data.BackupCursorPosPrevLine; + window->DC.CursorMaxPos = ImMax(group_data.BackupCursorMaxPos, group_bb.Max); + window->DC.Indent = group_data.BackupIndent; + window->DC.GroupOffset = group_data.BackupGroupOffset; + window->DC.CurrLineSize = group_data.BackupCurrLineSize; + window->DC.CurrLineTextBaseOffset = group_data.BackupCurrLineTextBaseOffset; + window->DC.IsSameLine = group_data.BackupIsSameLine; + if (g.LogEnabled) + g.LogLinePosY = -FLT_MAX; + + if (!group_data.EmitItem) + { + g.GroupStack.pop_back(); + return; + } + + window->DC.CurrLineTextBaseOffset = ImMax(window->DC.PrevLineTextBaseOffset, group_data.BackupCurrLineTextBaseOffset); + item_size(group_bb.GetSize()); + item_add(group_bb, 0, NULL, ImGuiItemFlags_NoTabStop); + + const bool group_contains_curr_active_id = (group_data.BackupActiveIdIsAlive != g.ActiveId) && (g.ActiveIdIsAlive == g.ActiveId) && g.ActiveId; + const bool group_contains_prev_active_id = (group_data.BackupActiveIdPreviousFrameIsAlive == false) && (g.ActiveIdPreviousFrameIsAlive == true); + if (group_contains_curr_active_id) + g.LastItemData.ID = g.ActiveId; + else if (group_contains_prev_active_id) + g.LastItemData.ID = g.ActiveIdPreviousFrame; + g.LastItemData.Rect = group_bb; + + const bool group_contains_curr_hovered_id = (group_data.BackupHoveredIdIsAlive == false) && g.HoveredId != 0; + if (group_contains_curr_hovered_id) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + + if (group_contains_curr_active_id && g.ActiveIdHasBeenEditedThisFrame) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Edited; + + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasDeactivated; + if (group_contains_prev_active_id && g.ActiveId != g.ActiveIdPreviousFrame) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Deactivated; + + g.GroupStack.pop_back(); + if (g.DebugShowGroupRects) + window->DrawList->AddRect(group_bb.Min, group_bb.Max, IM_COL32(255, 0, 255, 255)); // [Debug] +} + +void c_gui::begin_content(std::string_view id, const ImVec2& size, const ImVec2& padding, const ImVec2& spacing, window_flags window_flags__, child_flags child_flags__) +{ + gui->push_var(ImGuiStyleVar_WindowPadding, padding); + gui->begin_def_child(id, size, child_flags__, window_flags__ | window_flags_no_bring_to_front_on_focus | window_flags_always_use_window_padding | window_flags_no_saved_settings | window_flags_no_focus_on_appearing); + gui->push_var(ImGuiStyleVar_ItemSpacing, spacing); +} + +void c_gui::end_content() +{ + gui->pop_var(); + gui->end_def_child(); + gui->pop_var(); +} + +void c_gui::sameline(float offset_from_start_x, float spacing_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + if (offset_from_start_x != 0.0f) + { + if (spacing_w < 0.0f) + spacing_w = 0.0f; + window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + offset_from_start_x + spacing_w + window->DC.GroupOffset.x + window->DC.ColumnsOffset.x; + window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y; + } + else + { + if (spacing_w < 0.0f) + spacing_w = var->style.item_spacing.x; + window->DC.CursorPos.x = window->DC.CursorPosPrevLine.x + spacing_w; + window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y; + } + window->DC.CurrLineSize = window->DC.PrevLineSize; + window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset; + window->DC.IsSameLine = true; +} + +void c_gui::dummy(const ImVec2& size) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + gui->item_size(size); + gui->item_add(bb, 0); +} + +bool begin_def_child_ex(const char* name, ImGuiID id, const ImVec2& size_arg, child_flags child_flagss, window_flags window_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* parent_window = g.CurrentWindow; + IM_ASSERT(id != 0); + + const child_flags ImGuiChildFlags_SupportedMask_ = child_flags_borders | child_flags_always_use_window_padding | child_flags_resize_x | child_flags_resize_y | child_flags_auto_resize_x | child_flags_auto_resize_y | child_flags_always_auto_resize | child_flags_frame_style | child_flags_nav_flattened; + IM_UNUSED(ImGuiChildFlags_SupportedMask_); + IM_ASSERT((child_flagss & ~ImGuiChildFlags_SupportedMask_) == 0 && "Illegal ImGuiChildFlags value. Did you pass ImGuiWindowFlags values instead of ImGuiChildFlags?"); + IM_ASSERT((window_flags & window_flags_always_auto_resize) == 0 && "Cannot specify ImGuiWindowFlags_AlwaysAutoResize for BeginChild(). Use ImGuiChildFlags_AlwaysAutoResize!"); + if (child_flagss & child_flags_always_auto_resize) + { + IM_ASSERT((child_flagss & (child_flags_resize_x | child_flags_resize_y)) == 0 && "Cannot use ImGuiChildFlags_ResizeX or ImGuiChildFlags_ResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + IM_ASSERT((child_flagss & (child_flags_auto_resize_x | child_flags_auto_resize_y)) != 0 && "Must use ImGuiChildFlags_AutoResizeX or ImGuiChildFlags_AutoResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + } +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + if (window_flags & window_flags_always_use_window_padding) + child_flagss |= child_flags_always_use_window_padding; + if (window_flags & window_flags_nav_flattened) + child_flagss |= child_flags_nav_flattened; +#endif + if (child_flagss & child_flags_auto_resize_x) + child_flagss &= ~child_flags_resize_x; + if (child_flagss & child_flags_auto_resize_y) + child_flagss &= ~child_flags_resize_y; + + window_flags |= window_flags_child_window | window_flags_no_title_bar; + window_flags |= (parent_window->Flags & window_flags_no_move); + if (child_flagss & (child_flags_auto_resize_x | child_flags_auto_resize_y | child_flags_always_auto_resize)) + window_flags |= window_flags_always_auto_resize; + if ((child_flagss & (child_flags_resize_x | child_flags_resize_y)) == 0) + window_flags |= window_flags_no_resize | window_flags_no_saved_settings; + + if (child_flagss & child_flags_frame_style) + { + PushStyleColor(style_col_child_bg, var->style.colors[ImGuiCol_FrameBg]); + PushStyleVar(style_var_child_rounding, var->style.frame_rounding); + PushStyleVar(style_var_child_border_size, var->style.frame_border_size); + PushStyleVar(style_var_window_padding, var->style.frame_padding); + child_flagss |= child_flags_border | child_flags_always_use_window_padding; + window_flags |= window_flags_no_move; + } + + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasChildFlags; + g.NextWindowData.ChildFlags = child_flagss; + + const ImVec2 size_avail = GetContentRegionAvail(); + const ImVec2 size_default((child_flagss & child_flags_auto_resize_x) ? 0.0f : size_avail.x, (child_flagss & child_flags_auto_resize_y) ? 0.0f : size_avail.y); + const ImVec2 size = CalcItemSize(size_arg, size_default.x, size_default.y); + SetNextWindowSize(size); + + const char* temp_window_name; + + if (name) + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%s_%08X", parent_window->Name, name, id); + else + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%08X", parent_window->Name, id); + + const float backup_border_size = var->style.child_border_size; + if ((child_flagss & child_flags_borders) == 0) + var->style.child_border_size = 0.0f; + + const bool ret = gui->begin(temp_window_name, NULL, window_flags); + + var->style.child_border_size = backup_border_size; + if (child_flagss & child_flags_frame_style) + { + PopStyleVar(3); + PopStyleColor(); + } + + ImGuiWindow* child_window = g.CurrentWindow; + child_window->ChildId = id; + + if (child_window->BeginCount == 1) + parent_window->DC.CursorPos = child_window->Pos; + + const ImGuiID temp_id_for_activation = ImHashStr("##Child", 0, id); + if (g.ActiveId == temp_id_for_activation) + ClearActiveID(); + if (g.NavActivateId == id && !(child_flagss & child_flags_nav_flattened) && (child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY)) + { + FocusWindow(child_window); + NavInitWindow(child_window, false); + SetActiveID(temp_id_for_activation, child_window); + g.ActiveIdSource = g.NavInputSource; + } + return ret; +} + +bool c_gui::begin_def_child(std::string_view name, const ImVec2& size_arg, child_flags child_flags, window_flags window_flags) +{ + ImGuiID id = GetCurrentWindow()->GetID(name.data()); + return begin_def_child_ex(name.data(), id, size_arg, child_flags, window_flags); +} + +void c_gui::end_def_child() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* child_window = g.CurrentWindow; + + IM_ASSERT(g.WithinEndChild == false); + IM_ASSERT(child_window->Flags & window_flags_child_window); + + g.WithinEndChild = true; + ImVec2 child_size = child_window->Size; + gui->end(); + if (child_window->BeginCount == 1) + { + ImGuiWindow* parent_window = g.CurrentWindow; + ImRect bb(parent_window->DC.CursorPos, parent_window->DC.CursorPos + child_size); + item_size(child_size); + const bool nav_flattened = (child_window->ChildFlags & child_flags_nav_flattened) != 0; + if ((child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY) && !nav_flattened) + { + item_add(bb, child_window->ChildId); + RenderNavHighlight(bb, child_window->ChildId); + + if (child_window->DC.NavLayersActiveMask == 0 && child_window == g.NavWindow) + RenderNavHighlight(ImRect(bb.Min - ImVec2(2, 2), bb.Max + ImVec2(2, 2)), g.NavId, ImGuiNavHighlightFlags_Compact); + } + else + { + item_add(bb, child_window->ChildId, NULL, ImGuiItemFlags_NoNav); + + if (nav_flattened) + parent_window->DC.NavLayersActiveMaskNext |= child_window->DC.NavLayersActiveMaskNext; + } + if (g.HoveredWindow == child_window) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + } + g.WithinEndChild = false; + g.LogLinePosY = -FLT_MAX; +} + +void c_gui::set_next_window_pos(const ImVec2& pos, gui_cond cond, const ImVec2& pivot) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasPos; + g.NextWindowData.PosVal = pos; + g.NextWindowData.PosPivotVal = pivot; + g.NextWindowData.PosCond = cond ? cond : gui_cond_always; +} + +void c_gui::set_next_window_size(const ImVec2& size, gui_cond cond) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSize; + g.NextWindowData.SizeVal = size; + g.NextWindowData.SizeCond = cond ? cond : gui_cond_always; +} + +ImVec2 c_gui::text_size(ImFont* fontm, const char* text, const char* text_end, bool hide_text_after_double_hash, float wrap_width) +{ + this->push_font(fontm); + + ImGuiContext& g = *GImGui; + + const char* text_display_end; + if (hide_text_after_double_hash) + text_display_end = FindRenderedTextEnd(text, text_end); + else + text_display_end = text_end; + + ImFont* font = g.Font; + const float font_size = g.FontSize; + if (text == text_display_end) + return ImVec2(0.0f, font_size); + ImVec2 text_size = font->CalcTextSizeA(font_size, FLT_MAX, wrap_width, text, text_display_end, NULL); + text_size.x = IM_TRUNC(text_size.x + 0.99999f); + + this->pop_font(); + + return text_size; +} + +ImVec2 c_gui::window_size() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Size; +} + +float c_gui::window_width() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Size.x; +} + +float c_gui::window_height() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Size.y; +} + +ImVec2 c_gui::window_pos() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Pos; +} + +ImDrawList* c_gui::window_drawlist() +{ + ImGuiWindow* window = GetCurrentWindow(); + return window->DrawList; +} + +static ImDrawList* get_viewport_bg_fg_drawlist(ImGuiViewportP* viewport, size_t drawlist_no, const char* drawlist_name) +{ + ImGuiContext& g = *GImGui; + // Create the draw list on demand, because they are not frequently used for all viewports + IM_ASSERT(drawlist_no < IM_ARRAYSIZE(viewport->BgFgDrawLists)); + ImDrawList* draw_list = viewport->BgFgDrawLists[drawlist_no]; + if (draw_list == NULL) + { + draw_list = IM_NEW(ImDrawList)(&g.DrawListSharedData); + draw_list->_OwnerName = drawlist_name; + viewport->BgFgDrawLists[drawlist_no] = draw_list; + } + + if (viewport->BgFgDrawListsLastFrame[drawlist_no] != g.FrameCount) + { + draw_list->_ResetForNewFrame(); + draw_list->PushTextureID(g.IO.Fonts->TexID); + draw_list->PushClipRect(viewport->Pos, viewport->Pos + viewport->Size, false); + viewport->BgFgDrawListsLastFrame[drawlist_no] = g.FrameCount; + } + return draw_list; +} + +ImDrawList* c_gui::foreground_drawlist() +{ + ImGuiContext& g = *GImGui; + return get_viewport_bg_fg_drawlist((ImGuiViewportP*)g.Viewports[0], 1, "##Foreground"); +} + +ImDrawList* c_gui::background_drawlist() +{ + ImGuiContext& g = *GImGui; + return get_viewport_bg_fg_drawlist((ImGuiViewportP*)g.Viewports[0], 0, "##Background"); +} + +ImGuiWindow* c_gui::get_window() +{ + ImGuiContext& g = *GImGui; + g.CurrentWindow->WriteAccessed = true; + return g.CurrentWindow; +} + +void c_gui::push_id(const char* str_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(str_id); + window->IDStack.push_back(id); +} + +void c_gui::push_id(const char* str_id_begin, const char* str_id_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(str_id_begin, str_id_end); + window->IDStack.push_back(id); +} + +void c_gui::push_id(const void* ptr_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(ptr_id); + window->IDStack.push_back(id); +} + +void c_gui::push_id(int int_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(int_id); + window->IDStack.push_back(id); +} + +void c_gui::pop_id() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + IM_ASSERT(window->IDStack.Size > 1); + window->IDStack.pop_back(); +} + +ImGuiID c_gui::get_id(const char* str, const char* str_end) +{ + ImGuiID seed = get_window()->IDStack.back(); + ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *get_window()->Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_String, str, str_end); +#endif + return id; +} + +ImGuiID c_gui::get_id(const void* ptr) +{ + ImGuiID seed = get_window()->IDStack.back(); + ImGuiID id = ImHashData(&ptr, sizeof(void*), seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *get_window()->Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_Pointer, ptr, NULL); +#endif + return id; +} + +ImGuiID c_gui::get_id(int n) +{ + ImGuiID seed = get_window()->IDStack.back(); + ImGuiID id = ImHashData(&n, sizeof(n), seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *get_window()->Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_S32, (void*)(intptr_t)n, NULL); +#endif + return id; +} + +void c_gui::item_size(const ImVec2& size, float text_baseline_y) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + const float offset_to_match_baseline_y = (text_baseline_y >= 0) ? ImMax(0.0f, window->DC.CurrLineTextBaseOffset - text_baseline_y) : 0.0f; + + const float line_y1 = window->DC.IsSameLine ? window->DC.CursorPosPrevLine.y : window->DC.CursorPos.y; + const float line_height = ImMax(window->DC.CurrLineSize.y, window->DC.CursorPos.y - line_y1 + size.y + offset_to_match_baseline_y); + + window->DC.CursorPosPrevLine.x = window->DC.CursorPos.x + size.x; + window->DC.CursorPosPrevLine.y = line_y1; + window->DC.CursorPos.x = IM_TRUNC(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + window->DC.CursorPos.y = IM_TRUNC(line_y1 + line_height + var->style.item_spacing.y); + window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPosPrevLine.x); + window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y - var->style.item_spacing.y); + + window->DC.PrevLineSize.y = line_height; + window->DC.CurrLineSize.y = 0.0f; + window->DC.PrevLineTextBaseOffset = ImMax(window->DC.CurrLineTextBaseOffset, text_baseline_y); + window->DC.CurrLineTextBaseOffset = 0.0f; + window->DC.IsSameLine = window->DC.IsSetPos = false; + + if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) + sameline(); +} + +void c_gui::item_size(const ImRect& bb, float text_baseline_y) +{ + item_size(bb.GetSize(), text_baseline_y); +} + +bool c_gui::item_add(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg, ImGuiItemFlags extra_flags) +{ + return ItemAdd(bb, id, nav_bb_arg, extra_flags); +} + +static ImGuiHoveredFlags apply_hover_flags_for_tooltip(ImGuiHoveredFlags user_flags, ImGuiHoveredFlags shared_flags) +{ + if (user_flags & (ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal)) + shared_flags &= ~(ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal); + return user_flags | shared_flags; +} + +static ImGuiWindow* get_combined_root_window(ImGuiWindow* window, bool popup_hierarchy) +{ + ImGuiWindow* last_window = NULL; + while (last_window != window) + { + last_window = window; + window = window->RootWindow; + if (popup_hierarchy) + window = window->RootWindowPopupTree; + } + return window; +} + +bool c_gui::is_window_hovered(ImGuiHoveredFlags flags) +{ + IM_ASSERT((flags & ~ImGuiHoveredFlags_AllowedMaskForIsWindowHovered) == 0 && "Invalid flags for IsWindowHovered()!"); + + ImGuiContext& g = *GImGui; + ImGuiWindow* ref_window = g.HoveredWindow; + ImGuiWindow* cur_window = g.CurrentWindow; + if (ref_window == NULL) + return false; + + if ((flags & ImGuiHoveredFlags_AnyWindow) == 0) + { + IM_ASSERT(cur_window); + const bool popup_hierarchy = (flags & ImGuiHoveredFlags_NoPopupHierarchy) == 0; + if (flags & ImGuiHoveredFlags_RootWindow) + cur_window = get_combined_root_window(cur_window, popup_hierarchy); + + bool result; + if (flags & ImGuiHoveredFlags_ChildWindows) + result = IsWindowChildOf(ref_window, cur_window, popup_hierarchy); + else + result = (ref_window == cur_window); + if (!result) + return false; + } + + if (!IsWindowContentHoverable(ref_window, flags)) + return false; + if (!(flags & ImGuiHoveredFlags_AllowWhenBlockedByActiveItem)) + if (g.ActiveId != 0 && !g.ActiveIdAllowOverlap && g.ActiveId != ref_window->MoveId) + return false; + + if (flags & ImGuiHoveredFlags_ForTooltip) + flags = apply_hover_flags_for_tooltip(flags, var->style.hover_flags_for_tooltip_mouse); + if ((flags & ImGuiHoveredFlags_Stationary) != 0 && g.HoverWindowUnlockedStationaryId != ref_window->ID) + return false; + + return true; +} + +bool c_gui::is_window_focused(ImGuiFocusedFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* ref_window = g.NavWindow; + ImGuiWindow* cur_window = g.CurrentWindow; + + if (ref_window == NULL) + return false; + if (flags & ImGuiFocusedFlags_AnyWindow) + return true; + + IM_ASSERT(cur_window); + const bool popup_hierarchy = (flags & ImGuiFocusedFlags_NoPopupHierarchy) == 0; + if (flags & ImGuiHoveredFlags_RootWindow) + cur_window = get_combined_root_window(cur_window, popup_hierarchy); + + if (flags & ImGuiHoveredFlags_ChildWindows) + return IsWindowChildOf(ref_window, cur_window, popup_hierarchy); + else + return (ref_window == cur_window); +} + +void c_gui::set_window_focus() +{ + FocusWindow(GImGui->CurrentWindow); +} + +void c_gui::set_window_focus(const char* name) +{ + if (name) + { + if (ImGuiWindow* window = FindWindowByName(name)) + FocusWindow(window); + } + else + { + FocusWindow(NULL); + } +} + +bool c_gui::is_rect_visible(const ImVec2& size) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ClipRect.Overlaps(ImRect(window->DC.CursorPos, window->DC.CursorPos + size)); +} + +bool c_gui::is_rect_visible(const ImRect& rect) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ClipRect.Overlaps(rect); +} + +ImVec2 c_gui::adjust_window_pos(const ImVec2& rect, const ImVec2& window_size) +{ + ImVec2 wpos = rect; + ImGuiIO& io = ImGui::GetIO(); + wpos = ImClamp(wpos, ImVec2(0, 0), io.DisplaySize - window_size); + + return wpos; +} + +bool c_gui::button_behavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + if ((flags & ImGuiButtonFlags_MouseButtonMask_) == 0) + flags |= ImGuiButtonFlags_MouseButtonLeft; + + if ((flags & ImGuiButtonFlags_PressedOnMask_) == 0) + flags |= ImGuiButtonFlags_PressedOnDefault_; + + ImGuiItemFlags item_flags = (g.LastItemData.ID == id ? g.LastItemData.InFlags : g.CurrentItemFlags); + if (flags & ImGuiButtonFlags_AllowOverlap) + item_flags |= ImGuiItemFlags_AllowOverlap; + if (flags & ImGuiButtonFlags_Repeat) + item_flags |= ImGuiItemFlags_ButtonRepeat; + + ImGuiWindow* backup_hovered_window = g.HoveredWindow; + const bool flatten_hovered_children = (flags & ImGuiButtonFlags_FlattenChildren) && g.HoveredWindow && g.HoveredWindow->RootWindow == window; + if (flatten_hovered_children) + g.HoveredWindow = window; + +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (g.LastItemData.ID != id) + IMGUI_TEST_ENGINE_ITEM_ADD(id, bb, NULL); +#endif + + bool pressed = false; + bool hovered = ItemHoverable(bb, id, item_flags); + + if (g.DragDropActive && (flags & ImGuiButtonFlags_PressedOnDragDropHold) && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoHoldToOpenOthers)) + if (IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem)) + { + hovered = true; + SetHoveredID(id); + if (g.HoveredIdTimer - g.IO.DeltaTime <= 0.7f && g.HoveredIdTimer >= 0.7f) + { + pressed = true; + g.DragDropHoldJustPressedId = id; + FocusWindow(window); + } + } + + if (flatten_hovered_children) + g.HoveredWindow = backup_hovered_window; + + const ImGuiID test_owner_id = (flags & ImGuiButtonFlags_NoTestKeyOwner) ? ImGuiKeyOwner_Any : id; + if (hovered) + { + IM_ASSERT(id != 0); + + int mouse_button_clicked = -1; + int mouse_button_released = -1; + for (int button = 0; button < 3; button++) + if (flags & (ImGuiButtonFlags_MouseButtonLeft << button)) + { + if (IsMouseClicked(button, ImGuiInputFlags_None, test_owner_id) && mouse_button_clicked == -1) { mouse_button_clicked = button; } + if (IsMouseReleased(button, test_owner_id) && mouse_button_released == -1) { mouse_button_released = button; } + } + + if (!(flags & ImGuiButtonFlags_NoKeyModifiers) || (!g.IO.KeyCtrl && !g.IO.KeyShift && !g.IO.KeyAlt)) + { + if (mouse_button_clicked != -1 && g.ActiveId != id) + { + if (!(flags & ImGuiButtonFlags_NoSetKeyOwner)) + SetKeyOwner(MouseButtonToKey(mouse_button_clicked), id); + if (flags & (ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere)) + { + SetActiveID(id, window); + g.ActiveIdMouseButton = mouse_button_clicked; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + { + SetFocusID(id, window); + FocusWindow(window); + } + else + { + FocusWindow(window, ImGuiFocusRequestFlags_RestoreFocusedChild); + } + } + if ((flags & ImGuiButtonFlags_PressedOnClick) || ((flags & ImGuiButtonFlags_PressedOnDoubleClick) && g.IO.MouseClickedCount[mouse_button_clicked] == 2)) + { + pressed = true; + if (flags & ImGuiButtonFlags_NoHoldingActiveId) + ClearActiveID(); + else + SetActiveID(id, window); + g.ActiveIdMouseButton = mouse_button_clicked; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + { + SetFocusID(id, window); + FocusWindow(window); + } + else + { + FocusWindow(window, ImGuiFocusRequestFlags_RestoreFocusedChild); + } + } + } + if (flags & ImGuiButtonFlags_PressedOnRelease) + { + if (mouse_button_released != -1) + { + const bool has_repeated_at_least_once = (item_flags & ImGuiItemFlags_ButtonRepeat) && g.IO.MouseDownDurationPrev[mouse_button_released] >= g.IO.KeyRepeatDelay; // Repeat mode trumps on release behavior + if (!has_repeated_at_least_once) + pressed = true; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + SetFocusID(id, window); + ClearActiveID(); + } + } + + if (g.ActiveId == id && (item_flags & ImGuiItemFlags_ButtonRepeat)) + if (g.IO.MouseDownDuration[g.ActiveIdMouseButton] > 0.0f && IsMouseClicked(g.ActiveIdMouseButton, ImGuiInputFlags_Repeat, test_owner_id)) + pressed = true; + } + + if (pressed) + g.NavDisableHighlight = true; + } + + if (g.NavId == id && !g.NavDisableHighlight && g.NavDisableMouseHover) + if (!(flags & ImGuiButtonFlags_NoHoveredOnFocus)) + hovered = true; + if (g.NavActivateDownId == id) + { + bool nav_activated_by_code = (g.NavActivateId == id); + bool nav_activated_by_inputs = (g.NavActivatePressedId == id); + if (!nav_activated_by_inputs && (item_flags & ImGuiItemFlags_ButtonRepeat)) + { + const ImGuiKeyData* key1 = GetKeyData(ImGuiKey_Space); + const ImGuiKeyData* key2 = GetKeyData(ImGuiKey_Enter); + const ImGuiKeyData* key3 = GetKeyData(ImGuiKey_NavGamepadActivate); + const float t1 = ImMax(ImMax(key1->DownDuration, key2->DownDuration), key3->DownDuration); + nav_activated_by_inputs = CalcTypematicRepeatAmount(t1 - g.IO.DeltaTime, t1, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0; + } + if (nav_activated_by_code || nav_activated_by_inputs) + { + pressed = true; + SetActiveID(id, window); + g.ActiveIdSource = g.NavInputSource; + if (!(flags & ImGuiButtonFlags_NoNavFocus) && !(g.NavActivateFlags & ImGuiActivateFlags_FromShortcut)) + SetFocusID(id, window); + if (g.NavActivateFlags & ImGuiActivateFlags_FromShortcut) + g.ActiveIdFromShortcut = true; + } + } + + bool held = false; + if (g.ActiveId == id) + { + if (g.ActiveIdSource == ImGuiInputSource_Mouse) + { + if (g.ActiveIdIsJustActivated) + g.ActiveIdClickOffset = g.IO.MousePos - bb.Min; + + const int mouse_button = g.ActiveIdMouseButton; + if (mouse_button == -1) + { + ClearActiveID(); + } + else if (IsMouseDown(mouse_button, test_owner_id)) + { + held = true; + } + else + { + bool release_in = hovered && (flags & ImGuiButtonFlags_PressedOnClickRelease) != 0; + bool release_anywhere = (flags & ImGuiButtonFlags_PressedOnClickReleaseAnywhere) != 0; + if ((release_in || release_anywhere) && !g.DragDropActive) + { + bool is_double_click_release = (flags & ImGuiButtonFlags_PressedOnDoubleClick) && g.IO.MouseReleased[mouse_button] && g.IO.MouseClickedLastCount[mouse_button] == 2; + bool is_repeating_already = (item_flags & ImGuiItemFlags_ButtonRepeat) && g.IO.MouseDownDurationPrev[mouse_button] >= g.IO.KeyRepeatDelay; + bool is_button_avail_or_owned = TestKeyOwner(MouseButtonToKey(mouse_button), test_owner_id); + if (!is_double_click_release && !is_repeating_already && is_button_avail_or_owned) + pressed = true; + } + ClearActiveID(); + } + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + g.NavDisableHighlight = true; + } + else if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + { + if (g.NavActivateDownId == id) + held = true; + else + ClearActiveID(); + } + if (pressed) + g.ActiveIdHasBeenPressedBefore = true; + } + + if (g.NavHighlightActivatedId == id) + hovered = true; + + if (out_hovered) *out_hovered = hovered; + if (out_held) *out_held = held; + + return pressed; +} + +bool c_gui::invisible_button(const char* str_id, const ImVec2& size_arg, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + IM_ASSERT(size_arg.x != 0.0f && size_arg.y != 0.0f); + + const ImGuiID id = window->GetID(str_id); + ImVec2 size = CalcItemSize(size_arg, 0.0f, 0.0f); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + item_size(size); + if (!item_add(bb, id)) + return false; + + bool hovered, held; + bool pressed = button_behavior(bb, id, &hovered, &held, flags); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, str_id, g.LastItemData.StatusFlags); + return pressed; +} + +ImVec4 c_gui::u32_to_float4(ImU32 in) +{ + float s = 1.0f / 255.0f; + return ImVec4( + ((in >> IM_COL32_R_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_G_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_B_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_A_SHIFT) & 0xFF) * s); +} + +ImU32 c_gui::float4_to_u32(const ImVec4& in) +{ + ImU32 out; + out = ((ImU32)IM_F32_TO_INT8_SAT(in.x)) << IM_COL32_R_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.y)) << IM_COL32_G_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.z)) << IM_COL32_B_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.w)) << IM_COL32_A_SHIFT; + return out; +} + +void c_gui::rgb_to_hsv(float r, float g, float b, float& out_h, float& out_s, float& out_v) +{ + float K = 0.f; + if (g < b) + { + ImSwap(g, b); + K = -1.f; + } + if (r < g) + { + ImSwap(r, g); + K = -2.f / 6.f - K; + } + + const float chroma = r - (g < b ? g : b); + out_h = ImFabs(K + (g - b) / (6.f * chroma + 1e-20f)); + out_s = chroma / (r + 1e-20f); + out_v = r; +} + +void c_gui::hsv_to_rgb(float h, float s, float v, float& out_r, float& out_g, float& out_b) +{ + if (s == 0.0f) + { + out_r = out_g = out_b = v; + return; + } + + h = ImFmod(h, 1.0f) / (60.0f / 360.0f); + int i = (int)h; + float f = h - (float)i; + float p = v * (1.0f - s); + float q = v * (1.0f - s * f); + float t = v * (1.0f - s * (1.0f - f)); + + switch (i) + { + case 0: out_r = v; out_g = t; out_b = p; break; + case 1: out_r = q; out_g = v; out_b = p; break; + case 2: out_r = p; out_g = v; out_b = t; break; + case 3: out_r = p; out_g = q; out_b = v; break; + case 4: out_r = t; out_g = p; out_b = v; break; + case 5: default: out_r = v; out_g = p; out_b = q; break; + } +} + +bool c_gui::item_hoverable(const ImRect& bb, ImGuiID id, ImGuiItemFlags item_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (id != 0 && g.HoveredIdPreviousFrame == id && (item_flags & ImGuiItemFlags_AllowDuplicateId) == 0) + { + g.HoveredIdPreviousFrameItemCount++; + if (g.DebugDrawIdConflicts == id) + window->DrawList->AddRect(bb.Min - ImVec2(1, 1), bb.Max + ImVec2(1, 1), IM_COL32(255, 0, 0, 255), 0.0f, ImDrawFlags_None, 2.0f); + } +#endif + + if (g.HoveredWindow != window) + return false; + if (!IsMouseHoveringRect(bb.Min, bb.Max)) + return false; + + if (g.HoveredId != 0 && g.HoveredId != id && !g.HoveredIdAllowOverlap) + return false; + if (g.ActiveId != 0 && g.ActiveId != id && !g.ActiveIdAllowOverlap) + if (!g.ActiveIdFromShortcut) + return false; + + if (!(item_flags & ImGuiItemFlags_NoWindowHoverableCheck) && !IsWindowContentHoverable(window, ImGuiHoveredFlags_None)) + { + g.HoveredIdIsDisabled = true; + return false; + } + + if (id != 0) + { + if (g.DragDropActive && g.DragDropPayload.SourceId == id && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoDisableHover)) + return false; + + SetHoveredID(id); + + if (item_flags & ImGuiItemFlags_AllowOverlap) + { + g.HoveredIdAllowOverlap = true; + if (g.HoveredIdPreviousFrame != id) + return false; + } + + if (id == g.LastItemData.ID && (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasShortcut) && g.ActiveId != id) + if (IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_DelayNormal)) + SetTooltip("%s", GetKeyChordName(g.LastItemData.Shortcut)); + } + + if (item_flags & ImGuiItemFlags_Disabled) + { + if (g.ActiveId == id && id != 0) + ClearActiveID(); + g.HoveredIdIsDisabled = true; + return false; + } + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (id != 0) + { + if (g.DebugItemPickerActive && g.HoveredIdPreviousFrame == id) + GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(255, 255, 0, 255)); + if (g.DebugItemPickerBreakId == id) + IM_DEBUG_BREAK(); + } +#endif + + if (g.NavDisableMouseHover) + return false; + + return true; +} + +bool c_gui::is_item_hovered(ImGuiHoveredFlags flags) +{ + return IsItemHovered(flags); +} + +bool c_gui::is_item_active() +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId) + return g.ActiveId == g.LastItemData.ID; + return false; +} + +bool c_gui::is_item_clicked(mouse_button mouse_button) +{ + return mouse_clicked(mouse_button) && is_item_hovered(ImGuiHoveredFlags_None); +} + +bool c_gui::mouse_down(mouse_button button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseDown[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); +} + +bool c_gui::mouse_clicked(mouse_button button, bool repeat) +{ + return IsMouseClicked(button, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None, ImGuiKeyOwner_Any); +} + +bool c_gui::mouse_released(mouse_button button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseReleased[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); +} + +bool c_gui::mouse_double_clicked(mouse_button button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseClickedCount[button] == 2 && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); +} + +ImVec2 c_gui::content_avail() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 mx = (window->DC.CurrentColumns || g.CurrentTable) ? window->WorkRect.Max : window->ContentRegionRect.Max; + return mx - window->DC.CursorPos; +} + +ImVec2 c_gui::content_max() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 mx = (window->DC.CurrentColumns || g.CurrentTable) ? window->WorkRect.Max : window->ContentRegionRect.Max; + return mx - window->Pos; +} + +const char* c_gui::text_end(const char* text) +{ + const char* text_display_end = text; + const char* text_end = text + strlen(text); + + while (text_display_end < text_end && *text_display_end != '\0' && (text_display_end[0] != '#' || text_display_end[1] != '#')) + text_display_end++; + return text_display_end; +} + +bool c_gui::is_window_cond(ImGuiWindow* window, const std::vector& names) +{ + if (window) + { + for (const auto& name : names) + { + if (strstr(window->Name, name.c_str()) != nullptr) + { + return true; + } + } + } + + return false; +} + +ImVec2 c_gui::mouse_pos() +{ + ImGuiContext& g = *GImGui; + return g.IO.MousePos; +} + +void c_gui::set_style() +{ + auto* style = &var->style; + + style->window_padding = s_(elements->padding); + style->item_spacing = s_(elements->padding); + style->window_border_size = 0.f; + style->window_shadow_offset = s_(0, 0); + style->window_shadow_size = 0.f; + style->scrollbar_size = s_(10.f); + style->scrollbar_content_padding = s_(10.f); + style->scrollbar_border_padding = s_(0, 0); + +} + +void c_gui::draw_decorations() +{ + c_window* window = gui->get_window(); + + c_vec2 pos = window->Pos; + c_vec2 size = window->Size; + c_rect rect = c_rect(pos, pos + size); + + c_draw_list* draw_list = gui->background_drawlist(); + + draw->rect_filled(draw_list, rect.Min, rect.Max, draw->get_clr(clr->layout), s_(elements->window.rounding)); +} + +void c_gui::initialize() +{ + notify->setup_notify(); +} + +ImRect c_gui::get_item_rect() +{ + return ImRect(GetItemRectMin(), GetItemRectMax()); +} diff --git a/external/lumin/framework/widgets/notify.cpp b/external/lumin/framework/widgets/notify.cpp new file mode 100644 index 0000000..3bcb644 --- /dev/null +++ b/external/lumin/framework/widgets/notify.cpp @@ -0,0 +1,164 @@ +#include "../headers/functions.h" +#include "../headers/widgets.h" + +static constexpr float notify_visual_scale = 0.81f; + +static float notify_s(float value) +{ + return s_(value * notify_visual_scale); +} + +static c_vec2 notify_s(float x, float y) +{ + return s_(x * notify_visual_scale, y * notify_visual_scale); +} + +static c_vec4 notify_color(notify_type type) +{ + if (type == error) + return c_col(245, 70, 86).Value; + + return type == warning ? clr->text.Value : clr->accent.Value; +} + +static const char* notify_badge_text(notify_type type) +{ + if (type == warning) + return "DISABLED"; + if (type == error) + return "ERROR"; + + return "ENABLED"; +} + +static void draw_notify_check_icon(ImDrawList* draw_list, const c_vec2& center, ImU32 color) +{ + if ((color & IM_COL32_A_MASK) == 0) + return; + + const c_vec2 points[] = + { + center + notify_s(-6.2f, -0.4f), + center + notify_s(-4.7f, -1.9f), + center + notify_s(-1.7f, 1.0f), + center + notify_s(5.5f, -6.3f), + center + notify_s(7.0f, -4.8f), + center + notify_s(-1.5f, 4.1f), + }; + draw_list->AddConcavePolyFilled(points, IM_ARRAYSIZE(points), color); +} + +static void draw_notify_minus_icon(ImDrawList* draw_list, const c_vec2& center, ImU32 color) +{ + const float half_width = ImMax(2.0f, notify_s(5.8f)); + const float half_height = ImMax(1.35f, notify_s(1.15f)); + draw->rect_filled(draw_list, center - c_vec2(half_width, half_height), center + c_vec2(half_width, half_height), color, half_height); +} + +void c_notify::add_notify(std::string title, std::string text, notify_type type) +{ + if (!notifications.empty()) + { + notify_state& last = notifications.back(); + if (last.title == title && last.text == text && last.type == type && last.notify_timer < 0.22f) + return; + } + + notifications.push_back({ notify_count++, std::move(title), std::move(text), type }); +} + +void c_notify::setup_notify() +{ + float accumulated_height = notify_padding.y; + + for (int i = 0; i < static_cast(notifications.size()); ) + { + notify_state& notification = notifications[i]; + + if (notification.active_notify) + notification.notify_timer += ImGui::GetIO().DeltaTime; + + if (notification.notify_timer >= notify_time) + notification.active_notify = false; + + gui->easing(notification.notify_alpha, notification.active_notify ? 1.f : 0.f, 14.f, dynamic_easing); + gui->easing(notification.notify_slide, notification.active_notify ? 0.f : 28.f, 18.f, dynamic_easing); + gui->easing(notification.notify_pos, accumulated_height, 14.f, dynamic_easing); + + if (!notification.active_notify && notification.notify_alpha <= 0.015f) + { + notifications.erase(notifications.begin() + i); + continue; + } + + if (notification.notify_alpha > 0.01f) + { + ImVec2 window_size = render_notify(notification.notify_alpha, notification.notify_timer / notify_time, + notification.notify_pos, notification.notify_slide, notification.title, notification.text, notification.type); + accumulated_height += window_size.y + notify_spacing; + } + + i++; + } +} + +ImVec2 c_notify::render_notify(float notify_alpha, float notify_percentage, float notify_pos, float notify_slide, const std::string& title, const std::string& text, notify_type type) +{ + ImGuiIO& io = ImGui::GetIO(); + ImDrawList* draw_list = gui->foreground_drawlist(); + + const c_vec4 status_color = notify_color(type); + const c_vec4 accent = clr->accent.Value; + const bool disabled = type == warning; + const c_vec2 size = notify_s(288, 76); + const c_vec2 pos = c_vec2(io.DisplaySize.x - notify_padding.x - size.x + notify_s(notify_slide), notify_pos); + const c_rect rect(pos, pos + size); + const float alpha = notify_alpha; + const float rounding = notify_s(12); + const float progress = ImSaturate(1.f - notify_percentage); + + draw->shadow_rect(draw_list, rect.Min, rect.Max, draw->get_clr(clr->black, 0.30f * alpha), notify_s(20), notify_s(0, 8), 0, rounding); + draw->rect_filled(draw_list, rect.Min, rect.Max, draw->get_clr(clr->child, 0.98f * alpha), rounding); + draw->rect_filled_multi_color(draw_list, rect.Min, rect.Max, + draw->get_clr(clr->white, 0.040f * alpha), draw->get_clr(accent, 0.030f * alpha), + draw->get_clr(clr->black, 0.035f * alpha), draw->get_clr(clr->black, 0.035f * alpha), rounding); + draw->rect(draw_list, rect.Min, rect.Max, draw->get_clr(clr->border, 0.96f * alpha), rounding, 0, notify_s(1)); + + const c_rect badge(rect.Min + notify_s(13, 15), rect.Min + notify_s(49, 51)); + draw->shadow_rect(draw_list, badge.Min + notify_s(1, 2), badge.Max - notify_s(1, 0), draw->get_clr(status_color, disabled ? 0.08f * alpha : 0.16f * alpha), notify_s(12), c_vec2(0, 0), 0, notify_s(9)); + draw->rect_filled(draw_list, badge.Min, badge.Max, draw->get_clr(clr->widget, 0.94f * alpha), notify_s(9)); + draw->rect_filled_multi_color(draw_list, badge.Min, badge.Max, + draw->get_clr(clr->white, 0.060f * alpha), draw->get_clr(status_color, disabled ? 0.020f * alpha : 0.070f * alpha), + draw->get_clr(clr->black, 0.025f * alpha), draw->get_clr(clr->black, 0.025f * alpha), notify_s(9)); + draw->rect(draw_list, badge.Min, badge.Max, draw->get_clr(status_color, disabled ? 0.30f * alpha : 0.44f * alpha), notify_s(9), 0, notify_s(1)); + + const c_vec2 mark_center = badge.GetCenter() + notify_s(0, -0.5f); + if (disabled) + { + draw_notify_minus_icon(draw_list, mark_center, draw->get_clr(status_color, 0.95f * alpha)); + } + else + { + draw_notify_check_icon(draw_list, mark_center, draw->get_clr(status_color, alpha)); + } + + const c_rect pill(rect.Max - notify_s(84, 60), rect.Max - notify_s(13, 42)); + draw->rect_filled(draw_list, pill.Min, pill.Max, draw->get_clr(status_color, disabled ? 0.075f * alpha : 0.12f * alpha), notify_s(999)); + draw->rect(draw_list, pill.Min, pill.Max, draw->get_clr(status_color, disabled ? 0.22f * alpha : 0.36f * alpha), notify_s(999), 0, notify_s(1)); + draw->text_clipped(draw_list, font->get(inter_semibold, 8.f * notify_visual_scale), pill.Min, pill.Max, draw->get_clr(status_color, alpha), + notify_badge_text(type), 0, 0, { 0.5f, 0.5f }); + + draw->text_clipped(draw_list, font->get(inter_semibold, 12.f * notify_visual_scale), rect.Min + notify_s(60, 14), rect.Max - notify_s(91, 0), + draw->get_clr(clr->white, alpha), title.data(), 0, 0, { 0, 0 }); + draw->text_clipped(draw_list, font->get(inter_medium, 10.f * notify_visual_scale), rect.Min + notify_s(60, 33), rect.Max - notify_s(15, 0), + draw->get_clr(clr->text, 0.96f * alpha), text.data(), 0, 0, { 0, 0 }); + + draw->line(draw_list, rect.Min + notify_s(60, 54), rect.Max - notify_s(15, 22), draw->get_clr(clr->border, 0.55f * alpha)); + + const c_rect track(rect.Min + notify_s(13, 64), rect.Max - notify_s(13, 8)); + draw->rect_filled(draw_list, track.Min, track.Max, draw->get_clr(clr->widget, 0.78f * alpha), notify_s(999)); + draw->rect_filled(draw_list, track.Min, c_vec2(track.Min.x + track.GetWidth() * progress, track.Max.y), + draw->get_clr(status_color, disabled ? 0.40f * alpha : 0.88f * alpha), notify_s(999)); + + return size; +} diff --git a/external/lumin/framework/widgets/text_field.cpp b/external/lumin/framework/widgets/text_field.cpp new file mode 100644 index 0000000..49ab028 --- /dev/null +++ b/external/lumin/framework/widgets/text_field.cpp @@ -0,0 +1,1501 @@ +#include "../headers/includes.h" + +namespace ImStb +{ +#include "imstb_textedit.h" +} + +static int input_text_calc_text_len_and_line_count(const char* text_begin, const char** out_text_end) +{ + int line_count = 0; + const char* s = text_begin; + while (true) + { + const char* s_eol = strchr(s, '\n'); + line_count++; + if (s_eol == NULL) + { + s = s + strlen(s); + break; + } + s = s_eol + 1; + } + *out_text_end = s; + return line_count; +} + +static ImVec2 input_text_calc_text_size(ImGuiContext* ctx, const char* text_begin, const char* text_end, const char** remaining = NULL, ImVec2* out_offset = NULL, bool stop_on_new_line = false) +{ + ImGuiContext& g = *ctx; + ImFont* font = g.Font; + const float line_height = g.FontSize; + const float scale = line_height / font->FontSize; + + ImVec2 text_size = ImVec2(0, 0); + float line_width = 0.0f; + + const char* s = text_begin; + while (s < text_end) + { + unsigned int c = (unsigned int)*s; + if (c < 0x80) + s += 1; + else + s += ImTextCharFromUtf8(&c, s, text_end); + + if (c == '\n') + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + if (stop_on_new_line) + break; + continue; + } + if (c == '\r') + continue; + + const float char_width = ((int)c < font->IndexAdvanceX.Size ? font->IndexAdvanceX.Data[c] : font->FallbackAdvanceX) * scale; + line_width += char_width; + } + + if (text_size.x < line_width) + text_size.x = line_width; + + if (out_offset) + *out_offset = ImVec2(line_width, text_size.y + line_height); // offset allow for the possibility of sitting after a trailing \n + + if (line_width > 0 || text_size.y == 0.0f) // whereas size.y will ignore the trailing \n + text_size.y += line_height; + + if (remaining) + *remaining = s; + + return text_size; +} + +namespace ImStb +{ + static int STB_TEXTEDIT_STRINGLEN(const ImGuiInputTextState* obj) { return obj->CurLenA; } + static char STB_TEXTEDIT_GETCHAR(const ImGuiInputTextState* obj, int idx) { IM_ASSERT(idx <= obj->CurLenA); return obj->TextA[idx]; } + static float STB_TEXTEDIT_GETWIDTH(ImGuiInputTextState* obj, int line_start_idx, int char_idx) { unsigned int c; ImTextCharFromUtf8(&c, obj->TextA.Data + line_start_idx + char_idx, obj->TextA.Data + obj->TextA.Size); if ((ImWchar)c == '\n') return IMSTB_TEXTEDIT_GETWIDTH_NEWLINE; ImGuiContext& g = *obj->Ctx; return g.Font->GetCharAdvance((ImWchar)c) * g.FontScale; } + static char STB_TEXTEDIT_NEWLINE = '\n'; + static void STB_TEXTEDIT_LAYOUTROW(StbTexteditRow* r, ImGuiInputTextState* obj, int line_start_idx) + { + const char* text = obj->TextA.Data; + const char* text_remaining = NULL; + const ImVec2 size = input_text_calc_text_size(obj->Ctx, text + line_start_idx, text + obj->CurLenA, &text_remaining, NULL, true); + r->x0 = 0.0f; + r->x1 = size.x; + r->baseline_y_delta = size.y; + r->ymin = 0.0f; + r->ymax = size.y; + r->num_chars = (int)(text_remaining - (text + line_start_idx)); + } + +#define IMSTB_TEXTEDIT_GETNEXTCHARINDEX IMSTB_TEXTEDIT_GETNEXTCHARINDEX_IMPL +#define IMSTB_TEXTEDIT_GETPREVCHARINDEX IMSTB_TEXTEDIT_GETPREVCHARINDEX_IMPL + + static int IMSTB_TEXTEDIT_GETNEXTCHARINDEX_IMPL(ImGuiInputTextState* obj, int idx) + { + if (idx >= obj->CurLenA) + return obj->CurLenA + 1; + unsigned int c; + return idx + ImTextCharFromUtf8(&c, obj->TextA.Data + idx, obj->TextA.Data + obj->TextA.Size); + } + + static int IMSTB_TEXTEDIT_GETPREVCHARINDEX_IMPL(ImGuiInputTextState* obj, int idx) + { + if (idx <= 0) + return -1; + const char* p = ImTextFindPreviousUtf8Codepoint(obj->TextA.Data, obj->TextA.Data + idx); + return (int)(p - obj->TextA.Data); + } + + static bool ImCharIsSeparatorW(unsigned int c) + { + static const unsigned int separator_list[] = + { + ',', 0x3001, '.', 0x3002, ';', 0xFF1B, '(', 0xFF08, ')', 0xFF09, '{', 0xFF5B, '}', 0xFF5D, + '[', 0x300C, ']', 0x300D, '|', 0xFF5C, '!', 0xFF01, '\\', 0xFFE5, '/', 0x30FB, 0xFF0F, + '\n', '\r', + }; + for (unsigned int separator : separator_list) + if (c == separator) + return true; + return false; + } + + static int is_word_boundary_from_right(ImGuiInputTextState* obj, int idx) + { + // When ImGuiInputTextFlags_Password is set, we don't want actions such as CTRL+Arrow to leak the fact that underlying data are blanks or separators. + if ((obj->Flags & ImGuiInputTextFlags_Password) || idx <= 0) + return 0; + + const char* curr_p = obj->TextA.Data + idx; + const char* prev_p = ImTextFindPreviousUtf8Codepoint(obj->TextA.Data, curr_p); + unsigned int curr_c; ImTextCharFromUtf8(&curr_c, curr_p, obj->TextA.Data + obj->TextA.Size); + unsigned int prev_c; ImTextCharFromUtf8(&prev_c, prev_p, obj->TextA.Data + obj->TextA.Size); + + bool prev_white = ImCharIsBlankW(prev_c); + bool prev_separ = ImCharIsSeparatorW(prev_c); + bool curr_white = ImCharIsBlankW(curr_c); + bool curr_separ = ImCharIsSeparatorW(curr_c); + return ((prev_white || prev_separ) && !(curr_separ || curr_white)) || (curr_separ && !prev_separ); + } + static int is_word_boundary_from_left(ImGuiInputTextState* obj, int idx) + { + if ((obj->Flags & ImGuiInputTextFlags_Password) || idx <= 0) + return 0; + + const char* curr_p = obj->TextA.Data + idx; + const char* prev_p = ImTextFindPreviousUtf8Codepoint(obj->TextA.Data, curr_p); + unsigned int prev_c; ImTextCharFromUtf8(&prev_c, curr_p, obj->TextA.Data + obj->TextA.Size); + unsigned int curr_c; ImTextCharFromUtf8(&curr_c, prev_p, obj->TextA.Data + obj->TextA.Size); + + bool prev_white = ImCharIsBlankW(prev_c); + bool prev_separ = ImCharIsSeparatorW(prev_c); + bool curr_white = ImCharIsBlankW(curr_c); + bool curr_separ = ImCharIsSeparatorW(curr_c); + return ((prev_white) && !(curr_separ || curr_white)) || (curr_separ && !prev_separ); + } + static int STB_TEXTEDIT_MOVEWORDLEFT_IMPL(ImGuiInputTextState* obj, int idx) + { + idx = IMSTB_TEXTEDIT_GETPREVCHARINDEX(obj, idx); + while (idx >= 0 && !is_word_boundary_from_right(obj, idx)) + idx = IMSTB_TEXTEDIT_GETPREVCHARINDEX(obj, idx); + return idx < 0 ? 0 : idx; + } + static int STB_TEXTEDIT_MOVEWORDRIGHT_MAC(ImGuiInputTextState* obj, int idx) + { + int len = obj->CurLenA; + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + while (idx < len && !is_word_boundary_from_left(obj, idx)) + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + return idx > len ? len : idx; + } + static int STB_TEXTEDIT_MOVEWORDRIGHT_WIN(ImGuiInputTextState* obj, int idx) + { + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + int len = obj->CurLenA; + while (idx < len && !is_word_boundary_from_right(obj, idx)) + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + return idx > len ? len : idx; + } + static int STB_TEXTEDIT_MOVEWORDRIGHT_IMPL(ImGuiInputTextState* obj, int idx) { ImGuiContext& g = *obj->Ctx; if (g.IO.ConfigMacOSXBehaviors) return STB_TEXTEDIT_MOVEWORDRIGHT_MAC(obj, idx); else return STB_TEXTEDIT_MOVEWORDRIGHT_WIN(obj, idx); } +#define STB_TEXTEDIT_MOVEWORDLEFT STB_TEXTEDIT_MOVEWORDLEFT_IMPL // They need to be #define for stb_textedit.h +#define STB_TEXTEDIT_MOVEWORDRIGHT STB_TEXTEDIT_MOVEWORDRIGHT_IMPL + + static void STB_TEXTEDIT_DELETECHARS(ImGuiInputTextState* obj, int pos, int n) + { + char* dst = obj->TextA.Data + pos; + + obj->Edited = true; + obj->CurLenA -= n; + + // Offset remaining text (FIXME-OPT: Use memmove) + const char* src = obj->TextA.Data + pos + n; + while (char c = *src++) + *dst++ = c; + *dst = '\0'; + } + + static bool STB_TEXTEDIT_INSERTCHARS(ImGuiInputTextState* obj, int pos, const char* new_text, int new_text_len) + { + const bool is_resizable = (obj->Flags & ImGuiInputTextFlags_CallbackResize) != 0; + const int text_len = obj->CurLenA; + IM_ASSERT(pos <= text_len); + + if (!is_resizable && (new_text_len + obj->CurLenA + 1 > obj->BufCapacityA)) + return false; + + // Grow internal buffer if needed + if (new_text_len + text_len + 1 > obj->TextA.Size) + { + if (!is_resizable) + return false; + obj->TextA.resize(text_len + ImClamp(new_text_len, 32, ImMax(256, new_text_len)) + 1); + } + + char* text = obj->TextA.Data; + if (pos != text_len) + memmove(text + pos + new_text_len, text + pos, (size_t)(text_len - pos)); + memcpy(text + pos, new_text, (size_t)new_text_len); + + obj->Edited = true; + obj->CurLenA += new_text_len; + obj->TextA[obj->CurLenA] = '\0'; + + return true; + } + + // We don't use an enum so we can build even with conflicting symbols (if another user of stb_textedit.h leak their STB_TEXTEDIT_K_* symbols) +#define STB_TEXTEDIT_K_LEFT 0x200000 // keyboard input to move cursor left +#define STB_TEXTEDIT_K_RIGHT 0x200001 // keyboard input to move cursor right +#define STB_TEXTEDIT_K_UP 0x200002 // keyboard input to move cursor up +#define STB_TEXTEDIT_K_DOWN 0x200003 // keyboard input to move cursor down +#define STB_TEXTEDIT_K_LINESTART 0x200004 // keyboard input to move cursor to start of line +#define STB_TEXTEDIT_K_LINEEND 0x200005 // keyboard input to move cursor to end of line +#define STB_TEXTEDIT_K_TEXTSTART 0x200006 // keyboard input to move cursor to start of text +#define STB_TEXTEDIT_K_TEXTEND 0x200007 // keyboard input to move cursor to end of text +#define STB_TEXTEDIT_K_DELETE 0x200008 // keyboard input to delete selection or character under cursor +#define STB_TEXTEDIT_K_BACKSPACE 0x200009 // keyboard input to delete selection or character left of cursor +#define STB_TEXTEDIT_K_UNDO 0x20000A // keyboard input to perform undo +#define STB_TEXTEDIT_K_REDO 0x20000B // keyboard input to perform redo +#define STB_TEXTEDIT_K_WORDLEFT 0x20000C // keyboard input to move cursor left one word +#define STB_TEXTEDIT_K_WORDRIGHT 0x20000D // keyboard input to move cursor right one word +#define STB_TEXTEDIT_K_PGUP 0x20000E // keyboard input to move cursor up a page +#define STB_TEXTEDIT_K_PGDOWN 0x20000F // keyboard input to move cursor down a page +#define STB_TEXTEDIT_K_SHIFT 0x400000 + +#define IMSTB_TEXTEDIT_IMPLEMENTATION +#define IMSTB_TEXTEDIT_memmove memmove +#include "imstb_textedit.h" + +// stb_textedit internally allows for a single undo record to do addition and deletion, but somehow, calling +// the stb_textedit_paste() function creates two separate records, so we perform it manually. (FIXME: Report to nothings/stb?) + static void stb_textedit_replace(ImGuiInputTextState* str, STB_TexteditState* state, const IMSTB_TEXTEDIT_CHARTYPE* text, int text_len) + { + stb_text_makeundo_replace(str, state, 0, str->CurLenA, text_len); + ImStb::STB_TEXTEDIT_DELETECHARS(str, 0, str->CurLenA); + state->cursor = state->select_start = state->select_end = 0; + if (text_len <= 0) + return; + if (ImStb::STB_TEXTEDIT_INSERTCHARS(str, 0, text, text_len)) + { + state->cursor = state->select_start = state->select_end = text_len; + state->has_preferred_x = 0; + return; + } + IM_ASSERT(0); // Failed to insert character, normally shouldn't happen because of how we currently use stb_textedit_replace() + } + +} // namespace ImStb + +static bool input_text_filter_character(ImGuiContext* ctx, unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data, bool input_source_is_clipboard = false) +{ + unsigned int c = *p_char; + + // Filter non-printable (NB: isprint is unreliable! see #2467) + bool apply_named_filters = true; + if (c < 0x20) + { + bool pass = false; + pass |= (c == '\n') && (flags & ImGuiInputTextFlags_Multiline) != 0; // Note that an Enter KEY will emit \r and be ignored (we poll for KEY in InputText() code) + pass |= (c == '\t') && (flags & ImGuiInputTextFlags_AllowTabInput) != 0; + if (!pass) + return false; + apply_named_filters = false; // Override named filters below so newline and tabs can still be inserted. + } + + if (input_source_is_clipboard == false) + { + // We ignore Ascii representation of delete (emitted from Backspace on OSX, see #2578, #2817) + if (c == 127) + return false; + + // Filter private Unicode range. GLFW on OSX seems to send private characters for special keys like arrow keys (FIXME) + if (c >= 0xE000 && c <= 0xF8FF) + return false; + } + + // Filter Unicode ranges we are not handling in this build + if (c > IM_UNICODE_CODEPOINT_MAX) + return false; + + // Generic named filters + if (apply_named_filters && (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase | ImGuiInputTextFlags_CharsNoBlank | ImGuiInputTextFlags_CharsScientific | (ImGuiInputTextFlags)ImGuiInputTextFlags_LocalizeDecimalPoint))) + { + // The libc allows overriding locale, with e.g. 'setlocale(LC_NUMERIC, "de_DE.UTF-8");' which affect the output/input of printf/scanf to use e.g. ',' instead of '.'. + // The standard mandate that programs starts in the "C" locale where the decimal point is '.'. + // We don't really intend to provide widespread support for it, but out of empathy for people stuck with using odd API, we support the bare minimum aka overriding the decimal point. + // Change the default decimal_point with: + // ImGui::GetPlatformIO()->Platform_LocaleDecimalPoint = *localeconv()->decimal_point; + // Users of non-default decimal point (in particular ',') may be affected by word-selection logic (is_word_boundary_from_right/is_word_boundary_from_left) functions. + ImGuiContext& g = *ctx; + const unsigned c_decimal_point = (unsigned int)g.PlatformIO.Platform_LocaleDecimalPoint; + if (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsScientific | (ImGuiInputTextFlags)ImGuiInputTextFlags_LocalizeDecimalPoint)) + if (c == '.' || c == ',') + c = c_decimal_point; + + // Full-width -> half-width conversion for numeric fields (https://en.wikipedia.org/wiki/Halfwidth_and_Fullwidth_Forms_(Unicode_block) + // While this is mostly convenient, this has the side-effect for uninformed users accidentally inputting full-width characters that they may + // scratch their head as to why it works in numerical fields vs in generic text fields it would require support in the font. + if (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsScientific | ImGuiInputTextFlags_CharsHexadecimal)) + if (c >= 0xFF01 && c <= 0xFF5E) + c = c - 0xFF01 + 0x21; + + // Allow 0-9 . - + * / + if (flags & ImGuiInputTextFlags_CharsDecimal) + if (!(c >= '0' && c <= '9') && (c != c_decimal_point) && (c != '-') && (c != '+') && (c != '*') && (c != '/')) + return false; + + // Allow 0-9 . - + * / e E + if (flags & ImGuiInputTextFlags_CharsScientific) + if (!(c >= '0' && c <= '9') && (c != c_decimal_point) && (c != '-') && (c != '+') && (c != '*') && (c != '/') && (c != 'e') && (c != 'E')) + return false; + + // Allow 0-9 a-F A-F + if (flags & ImGuiInputTextFlags_CharsHexadecimal) + if (!(c >= '0' && c <= '9') && !(c >= 'a' && c <= 'f') && !(c >= 'A' && c <= 'F')) + return false; + + // Turn a-z into A-Z + if (flags & ImGuiInputTextFlags_CharsUppercase) + if (c >= 'a' && c <= 'z') + c += (unsigned int)('A' - 'a'); + + if (flags & ImGuiInputTextFlags_CharsNoBlank) + if (ImCharIsBlankW(c)) + return false; + + *p_char = c; + } + + // Custom callback filter + if (flags & ImGuiInputTextFlags_CallbackCharFilter) + { + ImGuiContext& g = *GImGui; + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = ImGuiInputTextFlags_CallbackCharFilter; + callback_data.EventChar = (ImWchar)c; + callback_data.Flags = flags; + callback_data.UserData = user_data; + if (callback(&callback_data) != 0) + return false; + *p_char = callback_data.EventChar; + if (!callback_data.EventChar) + return false; + } + + return true; +} + +static void input_text_reconcile_undo_state_after_user_callback(ImGuiInputTextState* state, const char* new_buf_a, int new_length_a) +{ + const char* old_buf = state->CallbackTextBackup.Data; + const int old_length = state->CallbackTextBackup.Size - 1; + + const int shorter_length = ImMin(old_length, new_length_a); + int first_diff; + for (first_diff = 0; first_diff < shorter_length; first_diff++) + if (old_buf[first_diff] != new_buf_a[first_diff]) + break; + if (first_diff == old_length && first_diff == new_length_a) + return; + + int old_last_diff = old_length - 1; + int new_last_diff = new_length_a - 1; + for (; old_last_diff >= first_diff && new_last_diff >= first_diff; old_last_diff--, new_last_diff--) + if (old_buf[old_last_diff] != new_buf_a[new_last_diff]) + break; + + const int insert_len = new_last_diff - first_diff + 1; + const int delete_len = old_last_diff - first_diff + 1; + if (insert_len > 0 || delete_len > 0) + if (IMSTB_TEXTEDIT_CHARTYPE* p = stb_text_createundo(&state->Stb->undostate, first_diff, delete_len, insert_len)) + for (int i = 0; i < delete_len; i++) + p[i] = old_buf[first_diff + i]; +} + +bool text_field_ex(std::string_view label, std::string_view hint, char* buf, int buf_size, float text_padding, float line_padding, ImU32 text_col, bool centered, const ImRect& rect, bool* active, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* callback_user_data, bool user_clicked) +{ + struct text_field_state + { + float offset{ 0 }; + float alpha{ 0 }; + float buf_size{ 0 }; + float cursor_alpha{ 0 }; + ImVec2 get_draw_scroll{ 0, 0 }; + ImVec2 get_cursor_offset{ 0, 0 }; + }; + + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + IM_ASSERT(buf != NULL && buf_size >= 0); + IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackHistory) && (flags & ImGuiInputTextFlags_Multiline))); // Can't use both together (they both use up/down keys) + IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackCompletion) && (flags & ImGuiInputTextFlags_AllowTabInput))); // Can't use both together (they both use tab key) + + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + const ImGuiStyle& style = g.Style; + + const bool RENDER_SELECTION_WHEN_INACTIVE = false; + const bool is_multiline = (flags & ImGuiInputTextFlags_Multiline) != 0; + + if (is_multiline) + gui->begin_group(); + const ImGuiID id = window->GetID(label.data()); + + const ImVec2 pos = window->DC.CursorPos; + + text_field_state* animstate = gui->anim_container(id); + + ImGuiWindow* draw_window = window; + ImVec2 inner_size = rect.GetSize(); + ImGuiLastItemData item_data_backup; + if (is_multiline) + { + ImVec2 backup_pos = window->DC.CursorPos; + gui->item_size(rect, style.FramePadding.y); + if (!gui->item_add(rect, id, &rect, ImGuiItemFlags_Inputable)) + { + gui->end_group(); + return false; + } + item_data_backup = g.LastItemData; + window->DC.CursorPos = backup_pos; + + // Prevent NavActivation from Tabbing when our widget accepts Tab inputs: this allows cycling through widgets without stopping. + if (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_FromTabbing) && (flags & ImGuiInputTextFlags_AllowTabInput)) + g.NavActivateId = 0; + + // Prevent NavActivate reactivating in BeginChild() when we are already active. + const ImGuiID backup_activate_id = g.NavActivateId; + if (g.ActiveId == id) // Prevent reactivation + g.NavActivateId = 0; + + // We reproduce the contents of BeginChildFrame() in order to provide 'label' so our window internal data are easier to read/debug. + bool child_visible = gui->begin_def_child(label.data(), rect.GetSize(), ImGuiChildFlags_Borders, ImGuiWindowFlags_NoMove); + g.NavActivateId = backup_activate_id; + if (!child_visible) + { + gui->end_def_child(); + gui->end_group(); + return false; + } + draw_window = g.CurrentWindow; // Child window + draw_window->DC.NavLayersActiveMaskNext |= (1 << draw_window->DC.NavLayerCurrent); // This is to ensure that EndChild() will display a navigation highlight so we can "enter" into it. + draw_window->DC.CursorPos += style.FramePadding; + inner_size.x -= draw_window->ScrollbarSizes.x; + } + else + { + // Support for internal ImGuiInputTextFlags_MergedItem flag, which could be redesigned as an ItemFlags if needed (with test performed in ItemAdd) + /*gui->item_size(rect, style.FramePadding.y); + if (!(flags & ImGuiInputTextFlags_MergedItem)) + if (!gui->item_add(rect, id, &rect, ImGuiItemFlags_Inputable)) + return false;*/ + } + const bool hovered = gui->item_hoverable(rect, id, g.LastItemData.InFlags); + gui->push_font(g.Font); + + // We are only allowed to access the state if we are already the active widget. + ImGuiInputTextState* state = GetInputTextState(id); + + if (g.LastItemData.InFlags & ImGuiItemFlags_ReadOnly) + flags |= ImGuiInputTextFlags_ReadOnly; + const bool is_readonly = (flags & ImGuiInputTextFlags_ReadOnly) != 0; + const bool is_password = (flags & ImGuiInputTextFlags_Password) != 0; + const bool is_undoable = (flags & ImGuiInputTextFlags_NoUndoRedo) == 0; + const bool is_resizable = (flags & ImGuiInputTextFlags_CallbackResize) != 0; + if (is_resizable) + IM_ASSERT(callback != NULL); // Must provide a callback if you set the ImGuiInputTextFlags_CallbackResize flag! + + const bool input_requested_by_nav = (g.ActiveId != id) && ((g.NavActivateId == id) && ((g.NavActivateFlags & ImGuiActivateFlags_PreferInput) || (g.NavInputSource == ImGuiInputSource_Keyboard))); + + const bool user_scroll_finish = is_multiline && state != NULL && g.ActiveId == 0 && g.ActiveIdPreviousFrame == GetWindowScrollbarID(draw_window, ImGuiAxis_Y); + const bool user_scroll_active = is_multiline && state != NULL && g.ActiveId == GetWindowScrollbarID(draw_window, ImGuiAxis_Y); + bool clear_active_id = false; + bool select_all = false; + + float scroll_y = is_multiline ? draw_window->Scroll.y : FLT_MAX; + + const bool init_reload_from_user_buf = (state != NULL && state->ReloadUserBuf); + const bool init_changed_specs = (state != NULL && state->Stb->single_line != !is_multiline); // state != NULL means its our state. + const bool init_make_active = (user_clicked || user_scroll_finish || input_requested_by_nav); + const bool init_state = (init_make_active || user_scroll_active); + if ((init_state && g.ActiveId != id) || init_changed_specs || init_reload_from_user_buf) + { + // Access state even if we don't own it yet. + state = &g.InputTextState; + state->CursorAnimReset(); + state->ReloadUserBuf = false; + + // Backup state of deactivating item so they'll have a chance to do a write to output buffer on the same frame they report IsItemDeactivatedAfterEdit (#4714) + InputTextDeactivateHook(state->ID); + + // From the moment we focused we are normally ignoring the content of 'buf' (unless we are in read-only mode) + const int buf_len = (int)strlen(buf); + if (!init_reload_from_user_buf) + { + // Take a copy of the initial buffer value. + state->InitialTextA.resize(buf_len + 1); // UTF-8. we use +1 to make sure that .Data is always pointing to at least an empty string. + memcpy(state->InitialTextA.Data, buf, buf_len + 1); + } + + // Preserve cursor position and undo/redo stack if we come back to same widget + // FIXME: Since we reworked this on 2022/06, may want to differentiate recycle_cursor vs recycle_undostate? + bool recycle_state = (state->ID == id && !init_changed_specs && !init_reload_from_user_buf); + if (recycle_state && (state->CurLenA != buf_len || (strncmp(state->TextA.Data, buf, buf_len) != 0))) + recycle_state = false; + + // Start edition + state->ID = id; + state->TextA.resize(buf_size + 1); // we use +1 to make sure that .Data is always pointing to at least an empty string. + state->CurLenA = (int)strlen(buf); + memcpy(state->TextA.Data, buf, state->CurLenA + 1); + + if (recycle_state) + { + // Recycle existing cursor/selection/undo stack but clamp position + // Note a single mouse click will override the cursor/position immediately by calling stb_textedit_click handler. + state->CursorClamp(); + } + else + { + state->Scroll = ImVec2(0.0f, 0.0f); + stb_textedit_initialize_state(state->Stb, !is_multiline); + } + + if (init_reload_from_user_buf) + { + state->Stb->select_start = state->ReloadSelectionStart; + state->Stb->cursor = state->Stb->select_end = state->ReloadSelectionEnd; + state->CursorClamp(); + } + else if (!is_multiline) + { + if (flags & ImGuiInputTextFlags_AutoSelectAll) + select_all = true; + if (input_requested_by_nav && (!recycle_state || !(g.NavActivateFlags & ImGuiActivateFlags_TryToPreserveState))) + select_all = true; + if (user_clicked && io.KeyCtrl) + select_all = true; + } + + if (flags & ImGuiInputTextFlags_AlwaysOverwrite) + state->Stb->insert_mode = 1; // stb field name is indeed incorrect (see #2863) + } + + const bool is_osx = io.ConfigMacOSXBehaviors; + if (g.ActiveId != id && init_make_active) + { + IM_ASSERT(state && state->ID == id); + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + } + if (g.ActiveId == id) + { + // Declare some inputs, the other are registered and polled via Shortcut() routing system. + if (user_clicked) + SetKeyOwner(ImGuiKey_MouseLeft, id); + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Left) | (1 << ImGuiDir_Right); + if (is_multiline || (flags & ImGuiInputTextFlags_CallbackHistory)) + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Up) | (1 << ImGuiDir_Down); + SetKeyOwner(ImGuiKey_Enter, id); + SetKeyOwner(ImGuiKey_KeypadEnter, id); + SetKeyOwner(ImGuiKey_Home, id); + SetKeyOwner(ImGuiKey_End, id); + if (is_multiline) + { + SetKeyOwner(ImGuiKey_PageUp, id); + SetKeyOwner(ImGuiKey_PageDown, id); + } + // FIXME: May be a problem to always steal Alt on OSX, would ideally still allow an uninterrupted Alt down-up to toggle menu + if (is_osx) + SetKeyOwner(ImGuiMod_Alt, id); + + // Expose scroll in a manner that is agnostic to us using a child window + if (is_multiline && state != NULL) + state->Scroll.y = draw_window->Scroll.y; + } + + // We have an edge case if ActiveId was set through another widget (e.g. widget being swapped), clear id immediately (don't wait until the end of the function) + if (g.ActiveId == id && state == NULL) + ClearActiveID(); + + // Release focus when we click outside + if (g.ActiveId == id && io.MouseClicked[0] && !init_state && !init_make_active) //-V560 + clear_active_id = true; + + // Lock the decision of whether we are going to take the path displaying the cursor or selection + bool render_cursor = (g.ActiveId == id) || (state && user_scroll_active); + bool render_selection = state && (state->HasSelection() || select_all) && (RENDER_SELECTION_WHEN_INACTIVE || render_cursor); + bool value_changed = false; + bool validated = false; + + const bool buf_display_from_state = (render_cursor || render_selection || g.ActiveId == id) && !is_readonly && state; + const bool is_displaying_hint = false; + + if (is_password && !is_displaying_hint) + { + const ImFontGlyph* glyph = g.Font->FindGlyph('D'); + ImFont* password_font = &g.InputTextPasswordFont; + password_font->FontSize = g.Font->FontSize; + password_font->Scale = g.Font->Scale; + password_font->Ascent = g.Font->Ascent; + password_font->Descent = g.Font->Descent; + password_font->ContainerAtlas = g.Font->ContainerAtlas; + password_font->FallbackGlyph = glyph; + password_font->FallbackAdvanceX = glyph->AdvanceX; + IM_ASSERT(password_font->Glyphs.empty() && password_font->IndexAdvanceX.empty() && password_font->IndexLookup.empty()); + PushFont(password_font); + } + + if (g.ActiveId == id) + { + IM_ASSERT(state != NULL); + state->Edited = false; + state->BufCapacityA = buf_size; + state->Flags = flags; + + // Although we are active we don't prevent mouse from hovering other elements unless we are interacting right now with the widget. + // Down the line we should have a cleaner library-wide concept of Selected vs Active. + g.ActiveIdAllowOverlap = !io.MouseDown[0]; + + const float text_width = animstate->buf_size; + + // Edit in progress + const float mouse_x = centered ? (io.MousePos.x - rect.Min.x - style.FramePadding.x) + state->Scroll.x - ((rect.GetWidth() - text_width) / 2.0f) : (io.MousePos.x - rect.Min.x - text_padding) + state->Scroll.x; + const float mouse_y = (is_multiline ? (io.MousePos.y - draw_window->DC.CursorPos.y) : (g.FontSize * 0.5f)); + + if (select_all) + { + state->SelectAll(); + state->SelectedAllMouseLock = true; + } + else if (hovered && io.MouseClickedCount[0] >= 2 && !io.KeyShift) + { + stb_textedit_click(state, state->Stb, mouse_x, mouse_y); + const int multiclick_count = (io.MouseClickedCount[0] - 2); + if ((multiclick_count % 2) == 0) + { + // Double-click: Select word + // We always use the "Mac" word advance for double-click select vs CTRL+Right which use the platform dependent variant: + // FIXME: There are likely many ways to improve this behavior, but there's no "right" behavior (depends on use-case, software, OS) + const bool is_bol = (state->Stb->cursor == 0) || ImStb::STB_TEXTEDIT_GETCHAR(state, state->Stb->cursor - 1) == '\n'; + if (STB_TEXT_HAS_SELECTION(state->Stb) || !is_bol) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDLEFT); + //state->OnKeyPressed(STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT); + if (!STB_TEXT_HAS_SELECTION(state->Stb)) + ImStb::stb_textedit_prep_selection_at_cursor(state->Stb); + state->Stb->cursor = ImStb::STB_TEXTEDIT_MOVEWORDRIGHT_MAC(state, state->Stb->cursor); + state->Stb->select_end = state->Stb->cursor; + ImStb::stb_textedit_clamp(state, state->Stb); + } + else + { + // Triple-click: Select line + const bool is_eol = ImStb::STB_TEXTEDIT_GETCHAR(state, state->Stb->cursor) == '\n'; + state->OnKeyPressed(STB_TEXTEDIT_K_LINESTART); + state->OnKeyPressed(STB_TEXTEDIT_K_LINEEND | STB_TEXTEDIT_K_SHIFT); + state->OnKeyPressed(STB_TEXTEDIT_K_RIGHT | STB_TEXTEDIT_K_SHIFT); + if (!is_eol && is_multiline) + { + ImSwap(state->Stb->select_start, state->Stb->select_end); + state->Stb->cursor = state->Stb->select_end; + } + state->CursorFollow = false; + } + state->CursorAnimReset(); + } + else if (io.MouseClicked[0] && !state->SelectedAllMouseLock) + { + if (hovered) + { + if (io.KeyShift) + stb_textedit_drag(state, state->Stb, mouse_x, mouse_y); + else + stb_textedit_click(state, state->Stb, mouse_x, mouse_y); + state->CursorAnimReset(); + } + } + else if (io.MouseDown[0] && !state->SelectedAllMouseLock && (io.MouseDelta.x != 0.0f || io.MouseDelta.y != 0.0f)) + { + stb_textedit_drag(state, state->Stb, mouse_x, mouse_y); + state->CursorAnimReset(); + state->CursorFollow = true; + } + if (state->SelectedAllMouseLock && !io.MouseDown[0]) + state->SelectedAllMouseLock = false; + + // We expect backends to emit a Tab key but some also emit a Tab character which we ignore (#2467, #1336) + // (For Tab and Enter: Win32/SFML/Allegro are sending both keys and chars, GLFW and SDL are only sending keys. For Space they all send all threes) + if ((flags & ImGuiInputTextFlags_AllowTabInput) && !is_readonly) + { + if (Shortcut(ImGuiKey_Tab, ImGuiInputFlags_Repeat, id)) + { + unsigned int c = '\t'; // Insert TAB + if (input_text_filter_character(&g, &c, flags, callback, callback_user_data)) + state->OnCharPressed(c); + } + // FIXME: Implement Shift+Tab + /* + if (Shortcut(ImGuiKey_Tab | ImGuiMod_Shift, ImGuiInputFlags_Repeat, id)) + { + } + */ + } + + // Process regular text input (before we check for Return because using some IME will effectively send a Return?) + // We ignore CTRL inputs, but need to allow ALT+CTRL as some keyboards (e.g. German) use AltGR (which _is_ Alt+Ctrl) to input certain characters. + const bool ignore_char_inputs = (io.KeyCtrl && !io.KeyAlt) || (is_osx && io.KeyCtrl); + if (io.InputQueueCharacters.Size > 0) + { + if (!ignore_char_inputs && !is_readonly && !input_requested_by_nav) + for (int n = 0; n < io.InputQueueCharacters.Size; n++) + { + // Insert character if they pass filtering + unsigned int c = (unsigned int)io.InputQueueCharacters[n]; + if (c == '\t') // Skip Tab, see above. + continue; + if (input_text_filter_character(&g, &c, flags, callback, callback_user_data)) + state->OnCharPressed(c); + } + + // Consume characters + io.InputQueueCharacters.resize(0); + } + } + + // Process other shortcuts/key-presses + bool revert_edit = false; + if (g.ActiveId == id && !g.ActiveIdIsJustActivated && !clear_active_id) + { + IM_ASSERT(state != NULL); + + const int row_count_per_page = ImMax((int)((inner_size.y - style.FramePadding.y) / g.FontSize), 1); + state->Stb->row_count_per_page = row_count_per_page; + + const int k_mask = (io.KeyShift ? STB_TEXTEDIT_K_SHIFT : 0); + const bool is_wordmove_key_down = is_osx ? io.KeyAlt : io.KeyCtrl; // OS X style: Text editing cursor movement using Alt instead of Ctrl + const bool is_startend_key_down = is_osx && io.KeyCtrl && !io.KeySuper && !io.KeyAlt; // OS X style: Line/Text Start and End using Cmd+Arrows instead of Home/End + + // Using Shortcut() with ImGuiInputFlags_RouteFocused (default policy) to allow routing operations for other code (e.g. calling window trying to use CTRL+A and CTRL+B: formet would be handled by InputText) + // Otherwise we could simply assume that we own the keys as we are active. + const ImGuiInputFlags f_repeat = ImGuiInputFlags_Repeat; + const bool is_cut = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_X, f_repeat, id) || Shortcut(ImGuiMod_Shift | ImGuiKey_Delete, f_repeat, id)) && !is_readonly && !is_password && (!is_multiline || state->HasSelection()); + const bool is_copy = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_C, 0, id) || Shortcut(ImGuiMod_Ctrl | ImGuiKey_Insert, 0, id)) && !is_password && (!is_multiline || state->HasSelection()); + const bool is_paste = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_V, f_repeat, id) || Shortcut(ImGuiMod_Shift | ImGuiKey_Insert, f_repeat, id)) && !is_readonly; + const bool is_undo = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_Z, f_repeat, id)) && !is_readonly && is_undoable; + const bool is_redo = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_Y, f_repeat, id) || (is_osx && Shortcut(ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Z, f_repeat, id))) && !is_readonly && is_undoable; + const bool is_select_all = Shortcut(ImGuiMod_Ctrl | ImGuiKey_A, 0, id); + + // We allow validate/cancel with Nav source (gamepad) to makes it easier to undo an accidental NavInput press with no keyboard wired, but otherwise it isn't very useful. + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool is_enter_pressed = IsKeyPressed(ImGuiKey_Enter, true) || IsKeyPressed(ImGuiKey_KeypadEnter, true); + const bool is_gamepad_validate = nav_gamepad_active && (IsKeyPressed(ImGuiKey_NavGamepadActivate, false) || IsKeyPressed(ImGuiKey_NavGamepadInput, false)); + const bool is_cancel = Shortcut(ImGuiKey_Escape, f_repeat, id) || (nav_gamepad_active && Shortcut(ImGuiKey_NavGamepadCancel, f_repeat, id)); + + // FIXME: Should use more Shortcut() and reduce IsKeyPressed()+SetKeyOwner(), but requires modifiers combination to be taken account of. + // FIXME-OSX: Missing support for Alt(option)+Right/Left = go to end of line, or next line if already in end of line. + if (IsKeyPressed(ImGuiKey_LeftArrow)) { state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_LINESTART : is_wordmove_key_down ? STB_TEXTEDIT_K_WORDLEFT : STB_TEXTEDIT_K_LEFT) | k_mask); } + else if (IsKeyPressed(ImGuiKey_RightArrow)) { state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_LINEEND : is_wordmove_key_down ? STB_TEXTEDIT_K_WORDRIGHT : STB_TEXTEDIT_K_RIGHT) | k_mask); } + else if (IsKeyPressed(ImGuiKey_UpArrow) && is_multiline) { if (io.KeyCtrl) SetScrollY(draw_window, ImMax(draw_window->Scroll.y - g.FontSize, 0.0f)); else state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_TEXTSTART : STB_TEXTEDIT_K_UP) | k_mask); } + else if (IsKeyPressed(ImGuiKey_DownArrow) && is_multiline) { if (io.KeyCtrl) SetScrollY(draw_window, ImMin(draw_window->Scroll.y + g.FontSize, GetScrollMaxY())); else state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_TEXTEND : STB_TEXTEDIT_K_DOWN) | k_mask); } + else if (IsKeyPressed(ImGuiKey_PageUp) && is_multiline) { state->OnKeyPressed(STB_TEXTEDIT_K_PGUP | k_mask); scroll_y -= row_count_per_page * g.FontSize; } + else if (IsKeyPressed(ImGuiKey_PageDown) && is_multiline) { state->OnKeyPressed(STB_TEXTEDIT_K_PGDOWN | k_mask); scroll_y += row_count_per_page * g.FontSize; } + else if (IsKeyPressed(ImGuiKey_Home)) { state->OnKeyPressed(io.KeyCtrl ? STB_TEXTEDIT_K_TEXTSTART | k_mask : STB_TEXTEDIT_K_LINESTART | k_mask); } + else if (IsKeyPressed(ImGuiKey_End)) { state->OnKeyPressed(io.KeyCtrl ? STB_TEXTEDIT_K_TEXTEND | k_mask : STB_TEXTEDIT_K_LINEEND | k_mask); } + else if (IsKeyPressed(ImGuiKey_Delete) && !is_readonly && !is_cut) + { + if (!state->HasSelection()) + { + // OSX doesn't seem to have Super+Delete to delete until end-of-line, so we don't emulate that (as opposed to Super+Backspace) + if (is_wordmove_key_down) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT); + } + state->OnKeyPressed(STB_TEXTEDIT_K_DELETE | k_mask); + } + else if (IsKeyPressed(ImGuiKey_Backspace) && !is_readonly) + { + if (!state->HasSelection()) + { + if (is_wordmove_key_down) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDLEFT | STB_TEXTEDIT_K_SHIFT); + else if (is_osx && io.KeyCtrl && !io.KeyAlt && !io.KeySuper) + state->OnKeyPressed(STB_TEXTEDIT_K_LINESTART | STB_TEXTEDIT_K_SHIFT); + } + state->OnKeyPressed(STB_TEXTEDIT_K_BACKSPACE | k_mask); + } + else if (is_enter_pressed || is_gamepad_validate) + { + // Determine if we turn Enter into a \n character + bool ctrl_enter_for_new_line = (flags & ImGuiInputTextFlags_CtrlEnterForNewLine) != 0; + if (!is_multiline || is_gamepad_validate || (ctrl_enter_for_new_line && !io.KeyCtrl) || (!ctrl_enter_for_new_line && io.KeyCtrl)) + { + validated = true; + if (io.ConfigInputTextEnterKeepActive && !is_multiline) + state->SelectAll(); // No need to scroll + else + clear_active_id = true; + } + else if (!is_readonly) + { + unsigned int c = '\n'; // Insert new line + if (input_text_filter_character(&g, &c, flags, callback, callback_user_data)) + state->OnCharPressed(c); + } + } + else if (is_cancel) + { + if (flags & ImGuiInputTextFlags_EscapeClearsAll) + { + if (buf[0] != 0) + { + revert_edit = true; + } + else + { + render_cursor = render_selection = false; + clear_active_id = true; + } + } + else + { + clear_active_id = revert_edit = true; + render_cursor = render_selection = false; + } + } + else if (is_undo || is_redo) + { + state->OnKeyPressed(is_undo ? STB_TEXTEDIT_K_UNDO : STB_TEXTEDIT_K_REDO); + state->ClearSelection(); + } + else if (is_select_all) + { + state->SelectAll(); + state->CursorFollow = true; + } + else if (is_cut || is_copy) + { + // Cut, Copy + if (g.PlatformIO.Platform_SetClipboardTextFn != NULL) + { + const int ib = state->HasSelection() ? ImMin(state->Stb->select_start, state->Stb->select_end) : 0; + const int ie = state->HasSelection() ? ImMax(state->Stb->select_start, state->Stb->select_end) : state->CurLenA; + + char backup = state->TextA.Data[ie]; + state->TextA.Data[ie] = 0; // Temporary terminator because SetClipboardText only takes null-terminated strings + SetClipboardText(state->TextA.Data + ib); + state->TextA.Data[ie] = backup; + } + if (is_cut) + { + if (!state->HasSelection()) + state->SelectAll(); + state->CursorFollow = true; + stb_textedit_cut(state, state->Stb); + } + } + else if (is_paste) + { + if (const char* clipboard = GetClipboardText()) + { + // Filter pasted buffer + const int clipboard_len = (int)strlen(clipboard); + char* clipboard_filtered = (char*)IM_ALLOC(clipboard_len + 1); + int clipboard_filtered_len = 0; + for (const char* s = clipboard; *s != 0; ) + { + unsigned int c; + int len = ImTextCharFromUtf8(&c, s, NULL); + s += len; + if (!input_text_filter_character(&g, &c, flags, callback, callback_user_data, true)) + continue; + memcpy(clipboard_filtered + clipboard_filtered_len, s - len, len); + clipboard_filtered_len += len; + } + clipboard_filtered[clipboard_filtered_len] = 0; + if (clipboard_filtered_len > 0) // If everything was filtered, ignore the pasting operation + { + stb_textedit_paste(state, state->Stb, clipboard_filtered, clipboard_filtered_len); + state->CursorFollow = true; + } + MemFree(clipboard_filtered); + } + } + + // Update render selection flag after events have been handled, so selection highlight can be displayed during the same frame. + render_selection |= state->HasSelection() && (RENDER_SELECTION_WHEN_INACTIVE || render_cursor); + } + + // Process callbacks and apply result back to user's buffer. + const char* apply_new_text = NULL; + int apply_new_text_length = 0; + if (g.ActiveId == id) + { + IM_ASSERT(state != NULL); + if (revert_edit && !is_readonly) + { + if (flags & ImGuiInputTextFlags_EscapeClearsAll) + { + // Clear input + IM_ASSERT(buf[0] != 0); + apply_new_text = ""; + apply_new_text_length = 0; + value_changed = true; + IMSTB_TEXTEDIT_CHARTYPE empty_string; + stb_textedit_replace(state, state->Stb, &empty_string, 0); + } + else if (strcmp(buf, state->InitialTextA.Data) != 0) + { + apply_new_text = state->InitialTextA.Data; + apply_new_text_length = state->InitialTextA.Size - 1; + + // Restore initial value. Only return true if restoring to the initial value changes the current buffer contents. + // Push records into the undo stack so we can CTRL+Z the revert operation itself + value_changed = true; + stb_textedit_replace(state, state->Stb, state->InitialTextA.Data, state->InitialTextA.Size - 1); + } + } + + // When using 'ImGuiInputTextFlags_EnterReturnsTrue' as a special case we reapply the live buffer back to the input buffer + // before clearing ActiveId, even though strictly speaking it wasn't modified on this frame. + // If we didn't do that, code like InputInt() with ImGuiInputTextFlags_EnterReturnsTrue would fail. + // This also allows the user to use InputText() with ImGuiInputTextFlags_EnterReturnsTrue without maintaining any user-side storage + // (please note that if you use this property along ImGuiInputTextFlags_CallbackResize you can end up with your temporary string object + // unnecessarily allocating once a frame, either store your string data, either if you don't then don't use ImGuiInputTextFlags_CallbackResize). + const bool apply_edit_back_to_user_buffer = !revert_edit || (validated && (flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0); + if (apply_edit_back_to_user_buffer) + { + // Apply new value immediately - copy modified buffer back + // Note that as soon as the input box is active, the in-widget value gets priority over any underlying modification of the input buffer + // FIXME: We actually always render 'buf' when calling DrawList->AddText, making the comment above incorrect. + // FIXME-OPT: CPU waste to do this every time the widget is active, should mark dirty state from the stb_textedit callbacks. + + // User callback + if ((flags & (ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_CallbackHistory | ImGuiInputTextFlags_CallbackEdit | ImGuiInputTextFlags_CallbackAlways)) != 0) + { + IM_ASSERT(callback != NULL); + + // The reason we specify the usage semantic (Completion/History) is that Completion needs to disable keyboard TABBING at the moment. + ImGuiInputTextFlags event_flag = 0; + ImGuiKey event_key = ImGuiKey_None; + if ((flags & ImGuiInputTextFlags_CallbackCompletion) != 0 && Shortcut(ImGuiKey_Tab, 0, id)) + { + event_flag = ImGuiInputTextFlags_CallbackCompletion; + event_key = ImGuiKey_Tab; + } + else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressed(ImGuiKey_UpArrow)) + { + event_flag = ImGuiInputTextFlags_CallbackHistory; + event_key = ImGuiKey_UpArrow; + } + else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressed(ImGuiKey_DownArrow)) + { + event_flag = ImGuiInputTextFlags_CallbackHistory; + event_key = ImGuiKey_DownArrow; + } + else if ((flags & ImGuiInputTextFlags_CallbackEdit) && state->Edited) + { + event_flag = ImGuiInputTextFlags_CallbackEdit; + } + else if (flags & ImGuiInputTextFlags_CallbackAlways) + { + event_flag = ImGuiInputTextFlags_CallbackAlways; + } + + if (event_flag) + { + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = event_flag; + callback_data.Flags = flags; + callback_data.UserData = callback_user_data; + + // FIXME-OPT: Undo stack reconcile needs a backup of the data until we rework API, see #7925 + state->CallbackTextBackup.resize(state->CurLenA + 1); + memcpy(state->CallbackTextBackup.Data, state->TextA.Data, state->CurLenA + 1); + + char* callback_buf = is_readonly ? buf : state->TextA.Data; + callback_data.EventKey = event_key; + callback_data.Buf = callback_buf; + callback_data.BufTextLen = state->CurLenA; + callback_data.BufSize = state->BufCapacityA; + callback_data.BufDirty = false; + + const int utf8_cursor_pos = callback_data.CursorPos = state->Stb->cursor; + const int utf8_selection_start = callback_data.SelectionStart = state->Stb->select_start; + const int utf8_selection_end = callback_data.SelectionEnd = state->Stb->select_end; + + // Call user code + callback(&callback_data); + + // Read back what user may have modified + callback_buf = is_readonly ? buf : state->TextA.Data; // Pointer may have been invalidated by a resize callback + IM_ASSERT(callback_data.Buf == callback_buf); // Invalid to modify those fields + IM_ASSERT(callback_data.BufSize == state->BufCapacityA); + IM_ASSERT(callback_data.Flags == flags); + const bool buf_dirty = callback_data.BufDirty; + if (callback_data.CursorPos != utf8_cursor_pos || buf_dirty) { state->Stb->cursor = callback_data.CursorPos; state->CursorFollow = true; } + if (callback_data.SelectionStart != utf8_selection_start || buf_dirty) { state->Stb->select_start = (callback_data.SelectionStart == callback_data.CursorPos) ? state->Stb->cursor : callback_data.SelectionStart; } + if (callback_data.SelectionEnd != utf8_selection_end || buf_dirty) { state->Stb->select_end = (callback_data.SelectionEnd == callback_data.SelectionStart) ? state->Stb->select_start : callback_data.SelectionEnd; } + if (buf_dirty) + { + // Callback may update buffer and thus set buf_dirty even in read-only mode. + IM_ASSERT(callback_data.BufTextLen == (int)strlen(callback_data.Buf)); // You need to maintain BufTextLen if you change the text! + input_text_reconcile_undo_state_after_user_callback(state, callback_data.Buf, callback_data.BufTextLen); // FIXME: Move the rest of this block inside function and rename to InputTextReconcileStateAfterUserCallback() ? + state->CurLenA = callback_data.BufTextLen; // Assume correct length and valid UTF-8 from user, saves us an extra strlen() + state->TextA.Size = state->CurLenA + 1; + state->CursorAnimReset(); + } + } + } + + // Will copy result string if modified + if (!is_readonly && strcmp(state->TextA.Data, buf) != 0) + { + apply_new_text = state->TextA.Data; + apply_new_text_length = state->CurLenA; + value_changed = true; + } + } + } + + // Handle reapplying final data on deactivation (see InputTextDeactivateHook() for details) + if (g.InputTextDeactivatedState.ID == id) + { + if (g.ActiveId != id && IsItemDeactivatedAfterEdit() && !is_readonly && strcmp(g.InputTextDeactivatedState.TextA.Data, buf) != 0) + { + apply_new_text = g.InputTextDeactivatedState.TextA.Data; + apply_new_text_length = g.InputTextDeactivatedState.TextA.Size - 1; + value_changed = true; + //IMGUI_DEBUG_LOG("InputText(): apply Deactivated data for 0x%08X: \"%.*s\".\n", id, apply_new_text_length, apply_new_text); + } + g.InputTextDeactivatedState.ID = 0; + } + + // Copy result to user buffer. This can currently only happen when (g.ActiveId == id) + if (apply_new_text != NULL) + { + //// We cannot test for 'backup_current_text_length != apply_new_text_length' here because we have no guarantee that the size + //// of our owned buffer matches the size of the string object held by the user, and by design we allow InputText() to be used + //// without any storage on user's side. + IM_ASSERT(apply_new_text_length >= 0); + if (is_resizable) + { + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = ImGuiInputTextFlags_CallbackResize; + callback_data.Flags = flags; + callback_data.Buf = buf; + callback_data.BufTextLen = apply_new_text_length; + callback_data.BufSize = ImMax(buf_size, apply_new_text_length + 1); + callback_data.UserData = callback_user_data; + callback(&callback_data); + buf = callback_data.Buf; + buf_size = callback_data.BufSize; + apply_new_text_length = ImMin(callback_data.BufTextLen, buf_size - 1); + IM_ASSERT(apply_new_text_length <= buf_size); + } + //IMGUI_DEBUG_PRINT("InputText(\"%s\"): apply_new_text length %d\n", label, apply_new_text_length); + + // If the underlying buffer resize was denied or not carried to the next frame, apply_new_text_length+1 may be >= buf_size. + ImStrncpy(buf, apply_new_text, ImMin(apply_new_text_length + 1, buf_size)); + } + + // Release active ID at the end of the function (so e.g. pressing Return still does a final application of the value) + // Otherwise request text input ahead for next frame. + if (g.ActiveId == id && clear_active_id) + ClearActiveID(); + else if (g.ActiveId == id) + g.WantTextInputNextFrame = 1; + + const int buf_display_max_length = 2 * 1024 * 1024; + const char* buf_display = buf_display_from_state ? state->TextA.Data : buf; //-V595 + const char* buf_display_end = NULL; // We have specialized paths below for setting the length + + gui->easing(animstate->alpha, strlen(buf_display) > 0 ? 1.f : 0.f, 8.f, static_easing); + + *active = render_cursor; + + // Render frame + if (!is_multiline) + { + + } + + const ImVec2 buf_text_size = gui->text_size(g.Font, buf_display); + + animstate->buf_size = buf_text_size.x; + + const ImVec4 clip_rect(rect.Min.x, rect.Min.y, rect.Min.x + inner_size.x, rect.Min.y + inner_size.y); // Not using frame_bb.Max because we have adjusted size + ImVec2 draw_pos = centered ? ImVec2(rect.Min.x + (rect.GetWidth() - buf_text_size.x) / 2, rect.GetCenter().y - gui->text_size(g.Font, "A").y / 2) : ImVec2(rect.Min.x + text_padding, rect.GetCenter().y - gui->text_size(g.Font, "A").y / 2 - 1); + ImVec2 text_size(0.0f, 0.0f); + + // Set upper limit of single-line InputTextEx() at 2 million characters strings. The current pathological worst case is a long line + // without any carriage return, which would makes ImFont::RenderText() reserve too many vertices and probably crash. Avoid it altogether. + // Note that we only use this limit on single-line InputText(), so a pathologically large line on a InputTextMultiline() would still crash. + if (is_displaying_hint) + { + buf_display = hint.data(); + buf_display_end = hint.data() + strlen(hint.data()); + } + + // Render text. We currently only render selection when the widget is active or while scrolling. + // FIXME: We could remove the '&& render_cursor' to keep rendering selection when inactive. + if (render_cursor || render_selection) + { + IM_ASSERT(state != NULL); + if (!is_displaying_hint) + buf_display_end = buf_display + state->CurLenA; + + // Render text (with cursor and selection) + // This is going to be messy. We need to: + // - Display the text (this alone can be more easily clipped) + // - Handle scrolling, highlight selection, display cursor (those all requires some form of 1d->2d cursor position calculation) + // - Measure text height (for scrollbar) + // We are attempting to do most of that in **one main pass** to minimize the computation cost (non-negligible for large amount of text) + 2nd pass for selection rendering (we could merge them by an extra refactoring effort) + // FIXME: This should occur on buf_display but we'd need to maintain cursor/select_start/select_end for UTF-8. + const char* text_begin = state->TextA.Data; + const char* text_end = text_begin + state->CurLenA; + ImVec2 cursor_offset, select_start_offset; + + { + // Find lines numbers straddling cursor and selection min position + int cursor_line_no = render_cursor ? -1 : -1000; + int selmin_line_no = render_selection ? -1 : -1000; + const char* cursor_ptr = render_cursor ? text_begin + state->Stb->cursor : NULL; + const char* selmin_ptr = render_selection ? text_begin + ImMin(state->Stb->select_start, state->Stb->select_end) : NULL; + + // Count lines and find line number for cursor and selection ends + int line_count = 1; + if (is_multiline) + { + for (const char* s = text_begin; (s = (const char*)memchr(s, '\n', (size_t)(text_end - s))) != NULL; s++) + { + if (cursor_line_no == -1 && s >= cursor_ptr) { cursor_line_no = line_count; } + if (selmin_line_no == -1 && s >= selmin_ptr) { selmin_line_no = line_count; } + line_count++; + } + } + if (cursor_line_no == -1) + cursor_line_no = line_count; + if (selmin_line_no == -1) + selmin_line_no = line_count; + + // Calculate 2d position by finding the beginning of the line and measuring distance + cursor_offset.x = input_text_calc_text_size(&g, ImStrbol(cursor_ptr, text_begin), cursor_ptr).x; + cursor_offset.y = cursor_line_no * g.FontSize; + if (selmin_line_no >= 0) + { + select_start_offset.x = input_text_calc_text_size(&g, ImStrbol(selmin_ptr, text_begin), selmin_ptr).x; + select_start_offset.y = selmin_line_no * g.FontSize; + } + + // Store text height (note that we haven't calculated text width at all, see GitHub issues #383, #1224) + if (is_multiline) + text_size = ImVec2(inner_size.x, line_count * g.FontSize); + } + + // Scroll + if (render_cursor && state->CursorFollow) + { + // Horizontal scroll in chunks of quarter width + if (!(flags & ImGuiInputTextFlags_NoHorizontalScroll)) + { + const float scroll_increment_x = inner_size.x * 0.25f; + const float visible_width = inner_size.x - text_padding; + + if (!centered) + { + if (cursor_offset.x < state->Scroll.x) + state->Scroll.x = IM_TRUNC(ImMax(0.0f, cursor_offset.x - scroll_increment_x)); + else if (cursor_offset.x - visible_width >= state->Scroll.x) + state->Scroll.x = IM_TRUNC(cursor_offset.x - visible_width + scroll_increment_x); + } + + } + else + { + state->Scroll.y = 0.0f; + } + + // Vertical scroll + if (is_multiline) + { + // Test if cursor is vertically visible + if (cursor_offset.y - g.FontSize < scroll_y) + scroll_y = ImMax(0.0f, cursor_offset.y - g.FontSize); + else if (cursor_offset.y - (inner_size.y - style.FramePadding.y * 2.0f) >= scroll_y) + scroll_y = cursor_offset.y - inner_size.y + style.FramePadding.y * 2.0f; + const float scroll_max_y = ImMax((text_size.y + style.FramePadding.y * 2.0f) - inner_size.y, 0.0f); + scroll_y = ImClamp(scroll_y, 0.0f, scroll_max_y); + draw_pos.y += (draw_window->Scroll.y - scroll_y); // Manipulate cursor pos immediately avoid a frame of lag + draw_window->Scroll.y = scroll_y; + } + + state->CursorFollow = false; + } + + // Draw selection + const ImVec2 draw_scroll = ImVec2(state->Scroll.x, 0.0f); + if (render_selection) + { + const char* text_selected_begin = text_begin + ImMin(state->Stb->select_start, state->Stb->select_end); + const char* text_selected_end = text_begin + ImMax(state->Stb->select_start, state->Stb->select_end); + + ImVec2 rect_pos = draw_pos + select_start_offset - draw_scroll; + for (const char* p = text_selected_begin; p < text_selected_end; ) + { + if (rect_pos.y > clip_rect.w + g.FontSize) + break; + if (rect_pos.y < clip_rect.y) + { + p = (const char*)memchr((void*)p, '\n', text_selected_end - p); + p = p ? p + 1 : text_selected_end; + } + else + { + ImVec2 rect_size = input_text_calc_text_size(&g, p, text_selected_end, &p, NULL, true); + if (rect_size.x <= 0.0f) rect_size.x = IM_TRUNC(g.Font->GetCharAdvance((ImWchar)' ') * 0.50f); // So we can see selected empty lines + ImRect d(ImVec2(rect_pos.x, rect.Min.y + line_padding), ImVec2(rect_pos.x + rect_size.x, rect.Max.y - line_padding)); + d.ClipWith(clip_rect); + if (d.Overlaps(clip_rect)) + window->DrawList->AddRectFilled(d.Min, d.Max, draw->get_clr(clr->white, 0.1f), var->style.frame_rounding); + rect_pos.x = draw_pos.x - draw_scroll.x; + } + rect_pos.y += g.FontSize; + } + } + + // We test for 'buf_display_max_length' as a way to avoid some pathological cases (e.g. single-line 1 MB string) which would make ImDrawList crash. + // FIXME-OPT: Multiline could submit a smaller amount of contents to AddText() since we already iterated through it. + if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) + { + ImU32 col = GetColorU32(is_displaying_hint ? ImGuiCol_TextDisabled : ImGuiCol_Text); + window->DrawList->AddText(g.Font, g.FontSize, draw_pos - draw_scroll, text_col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + } + + animstate->get_cursor_offset = cursor_offset; + animstate->get_draw_scroll = draw_scroll; + } + else + { + // Render text only (no selection, no cursor) + if (is_multiline) + text_size = ImVec2(inner_size.x, input_text_calc_text_len_and_line_count(buf_display, &buf_display_end) * g.FontSize); // We don't need width + else if (!is_displaying_hint && g.ActiveId == id) + buf_display_end = buf_display + state->CurLenA; + else if (!is_displaying_hint) + buf_display_end = buf_display + strlen(buf_display); + + if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) + { + ImU32 col = GetColorU32(is_displaying_hint ? ImGuiCol_TextDisabled : ImGuiCol_Text); + window->DrawList->AddText(g.Font, g.FontSize, draw_pos, text_col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + } + } + + gui->easing(animstate->cursor_alpha, g.ActiveId == id ? 1.f : 0.f, 7.f, static_easing); + + if (animstate->cursor_alpha > 0.01f) + { + ImVec2 cursor_screen_pos = ImTrunc(draw_pos + animstate->get_cursor_offset - animstate->get_draw_scroll); + ImRect cursor_screen_rect(cursor_screen_pos.x, cursor_screen_pos.y - g.FontSize + 0.5f, cursor_screen_pos.x + 1.0f, cursor_screen_pos.y - 1.5f); + gui->easing(animstate->offset, round(cursor_screen_rect.Min.x - rect.Min.x), 24.f, dynamic_easing); + + if (cursor_screen_rect.Overlaps(clip_rect)) + draw->line(window->DrawList, rect.Min + ImVec2(animstate->offset, line_padding), ImVec2(rect.Min.x + animstate->offset, rect.Max.y - line_padding), draw->get_clr(clr->white, animstate->cursor_alpha), 1); + + if (!is_readonly) + { + g.PlatformImeData.WantVisible = true; + g.PlatformImeData.InputPos = ImVec2(cursor_screen_pos.x - 1.0f, cursor_screen_pos.y - g.FontSize); + g.PlatformImeData.InputLineHeight = g.FontSize; + } + } + + if (is_password && !is_displaying_hint) + PopFont(); + + if (is_multiline) + { + // For focus requests to work on our multiline we need to ensure our child ItemAdd() call specifies the ImGuiItemFlags_Inputable (see #4761, #7870)... + Dummy(ImVec2(text_size.x, text_size.y + style.FramePadding.y)); + g.NextItemData.ItemFlags |= (ImGuiItemFlags)ImGuiItemFlags_Inputable | ImGuiItemFlags_NoTabStop; + gui->end_def_child(); + item_data_backup.StatusFlags |= (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredWindow); + + // ...and then we need to undo the group overriding last item data, which gets a bit messy as EndGroup() tries to forward scrollbar being active... + // FIXME: This quite messy/tricky, should attempt to get rid of the child window. + gui->end_group(); + if (g.LastItemData.ID == 0 || g.LastItemData.ID != GetWindowScrollbarID(draw_window, ImGuiAxis_Y)) + { + g.LastItemData.ID = id; + g.LastItemData.InFlags = item_data_backup.InFlags; + g.LastItemData.StatusFlags = item_data_backup.StatusFlags; + } + } + + // Log as text + if (g.LogEnabled && (!is_password || is_displaying_hint)) + { + LogSetNextTextDecoration("{", "}"); + LogRenderedText(&draw_pos, buf_display, buf_display_end); + } + + if (value_changed && !(flags & ImGuiInputTextFlags_NoMarkEdited)) + MarkItemEdited(id); + + gui->pop_font(); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Inputable); + if ((flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0) + return validated; + else + return value_changed; +} + +struct text_field_state +{ + bool active; + float alpha; + float hover_alpha; + float focus_alpha; + float icon_shift; + float text_shift; + ImVec4 text; + ImVec4 icon; +}; + +static void draw_license_key_icon(ImDrawList* draw_list, c_vec2 center, ImU32 color) +{ + const float thickness = s_(1.7f); + const c_vec2 bow = center + s_(-5, 2); + const c_vec2 shaft_start = bow + s_(3.2f, -2.8f); + const c_vec2 shaft_end = center + s_(8.5f, -8.5f); + + draw->circle(draw_list, bow, s_(4.4f), color, s_(28), thickness); + draw->line(draw_list, shaft_start, shaft_end, color, thickness); + draw->line(draw_list, center + s_(4.7f, -4.8f), center + s_(8.2f, -1.3f), color, thickness); + draw->line(draw_list, center + s_(7.3f, -7.4f), center + s_(10.5f, -4.2f), color, thickness); +} + +static void draw_search_icon(ImDrawList* draw_list, c_vec2 center, ImU32 color) +{ + const float thickness = s_(1.55f); + draw->circle(draw_list, center + s_(-1.5f, -1.5f), s_(5.2f), color, 28, thickness); + draw->line(draw_list, center + s_(2.7f, 2.7f), center + s_(7.2f, 7.2f), color, thickness); +} + +bool c_widgets::text_field(std::string name, char* buf, int buf_size, bool password, std::string icon) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + text_field_state* state = gui->anim_container(window->GetID((std::stringstream{} << id << "text_field_state").str().data())); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(66)); + c_rect rect(pos, pos + size); + c_rect inner(rect.Min + s_(0, 8), rect.Max - s_(0, 8)); + c_rect button(inner.GetBL() - s_(0, 32), inner.GetBR()); + const bool has_icon = !icon.empty(); + const float icon_slot_width = 42.f; + const float text_offset = has_icon ? 54.f : elements->padding.x; + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool user_clicked = rect.Contains(GetMousePos()) && gui->mouse_clicked(0) && gui->is_window_hovered(0); + gui->easing(state->text, state->active ? clr->white.Value : clr->text.Value, 24.f, dynamic_easing); + gui->easing(state->alpha, strlen(buf) > 0 ? 0.f : 1.f, 24.f, dynamic_easing); + + draw->rect_filled(window->DrawList, button.Min, button.Max, draw->get_clr(clr->widget), s_(8)); + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min, inner.Max, draw->get_clr(clr->white), + name.data(), 0, 0, { 0, 0 }); + + if (has_icon) + { + if (icon == "key") + draw_license_key_icon(window->DrawList, button.Min + s_(20, 18), draw->get_clr(clr->accent)); + else + draw->text_clipped(window->DrawList, font->get(icon_font, 15), button.Min + s_(12, 0), button.Min + s_(30, 32), + draw->get_clr(state->text), icon.data(), 0, 0, { 0.5f, 0.5f }); + + const float separator_x = button.Min.x + s_(icon_slot_width); + draw->line(window->DrawList, c_vec2(separator_x, button.Min.y + s_(8)), c_vec2(separator_x, button.Max.y - s_(8)), + draw->get_clr(clr->border, 0.95f), s_(1)); + } + + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), button.Min + s_(text_offset, 0) + ImVec2((button.GetWidth() / 2) * (1.f - state->alpha), 0), button.Max, draw->get_clr(clr->text, state->alpha), name.data(), 0, 0, { 0, 0.5 }); + + gui->push_var(style_var_frame_rounding, s_(8)); + gui->push_font(font->get(inter_medium, 11)); + + ImGuiInputTextFlags flags = password ? ImGuiInputTextFlags_Password : 0; + bool value_changed = text_field_ex(name, "", buf, buf_size, s_(text_offset), s_(8), draw->get_clr(state->text), false, button, &state->active, flags, 0, 0, user_clicked); + + gui->pop_font(); + gui->pop_var(); + + if (gui->content_avail().y > 0) + { + draw->line(window->DrawList, rect.GetBL(), rect.GetBR(), draw->get_clr(clr->border)); + } + + return value_changed; +} + +bool c_widgets::search_field(std::string name, char* buf, int buf_size, const c_vec2& size) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + text_field_state* state = gui->anim_container(window->GetID((std::stringstream{} << id << "search_field_state").str().data())); + + c_vec2 pos = window->DC.CursorPos; + c_rect rect(pos, pos + size); + const float icon_slot_width = 35.f; + const float text_offset = icon_slot_width + 10.f; + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool user_clicked = rect.Contains(GetMousePos()) && gui->mouse_clicked(0) && gui->is_window_hovered(0); + const bool hovered = rect.Contains(GetMousePos()) && gui->is_window_hovered(0); + const bool has_text = buf[0] != '\0'; + const float target_focus = state->active ? 1.f : 0.f; + const float target_hover = hovered ? 1.f : 0.f; + + gui->easing(state->hover_alpha, target_hover, 18.f, dynamic_easing); + gui->easing(state->focus_alpha, target_focus, 22.f, dynamic_easing); + gui->easing(state->icon_shift, state->active ? -2.5f : (hovered ? -1.f : 0.f), 18.f, dynamic_easing); + gui->easing(state->text_shift, state->active || has_text ? 4.f : (hovered ? 2.f : 0.f), 20.f, dynamic_easing); + gui->easing(state->text, state->active || has_text ? clr->white.Value : clr->text.Value, 24.f, dynamic_easing); + gui->easing(state->icon, state->active ? clr->accent.Value : (hovered ? clr->white.Value : clr->text.Value), 22.f, dynamic_easing); + gui->easing(state->alpha, has_text ? 0.f : 1.f, 24.f, dynamic_easing); + + draw->rect_filled(window->DrawList, rect.Min, rect.Max, + draw->get_clr(clr->widget), s_(9)); + + draw_search_icon(window->DrawList, rect.Min + s_(17.5f + state->icon_shift, 16.f), draw->get_clr(state->icon, 0.72f + state->hover_alpha * 0.16f + state->focus_alpha * 0.12f)); + + const float separator_x = rect.Min.x + s_(icon_slot_width); + const float separator_width = s_(2.f); + const c_vec2 separator_min(separator_x - separator_width * 0.5f, rect.Min.y + s_(7)); + const c_vec2 separator_max(separator_x + separator_width * 0.5f, rect.Max.y - s_(7)); + draw->rect_filled(window->DrawList, separator_min, separator_max, + draw->get_clr(clr->border, 0.78f + state->hover_alpha * 0.10f + state->focus_alpha * 0.10f), s_(999)); + draw->rect_filled(window->DrawList, separator_min + s_(0, 1), separator_max - s_(0, 1), + draw->get_clr(clr->accent, state->focus_alpha * 0.34f), s_(999)); + + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), + rect.Min + s_(text_offset + state->text_shift, 0), + rect.Max - s_(10, 0), draw->get_clr(clr->text, state->alpha * (0.62f + state->hover_alpha * 0.16f + state->focus_alpha * 0.22f)), name.data(), 0, 0, { 0, 0.5f }); + + gui->push_var(style_var_frame_rounding, s_(9)); + gui->push_font(font->get(inter_medium, 11)); + + bool value_changed = text_field_ex(name, "", buf, buf_size, s_(text_offset + state->text_shift), s_(7), draw->get_clr(state->text), + false, rect, &state->active, 0, 0, 0, user_clicked); + + gui->pop_font(); + gui->pop_var(); + + return value_changed; +} diff --git a/external/lumin/framework/widgets/widgets.cpp b/external/lumin/framework/widgets/widgets.cpp new file mode 100644 index 0000000..08d591d --- /dev/null +++ b/external/lumin/framework/widgets/widgets.cpp @@ -0,0 +1,1850 @@ +#include "../headers/includes.h" + +#include +#include + +// https://discord.gg/jxqVWub6Dk +struct color_picker_state +{ + bool init_val; + bool open; + float h, s, v; + float a; + float display_h, display_s, display_v; + float display_a; + float popup_alpha; + float hover_alpha; + c_vec4 last_color; +}; + +static float color_unit(float value) +{ + return ImClamp(value, 0.f, 1.f); +} + +static int color_byte(float value) +{ + return static_cast(color_unit(value) * 255.f + 0.5f); +} + +static c_vec4 clamped_color(c_vec4 color) +{ + color.x = color_unit(color.x); + color.y = color_unit(color.y); + color.z = color_unit(color.z); + color.w = color_unit(color.w); + return color; +} + +static bool color_changed_externally(const c_vec4& a, const c_vec4& b) +{ + return ImFabs(a.x - b.x) > 0.001f || ImFabs(a.y - b.y) > 0.001f || ImFabs(a.z - b.z) > 0.001f || ImFabs(a.w - b.w) > 0.001f; +} + +static void sync_color_picker_state(color_picker_state* state, const c_vec4& color) +{ + const float previous_h = state->h; + const bool had_value = state->init_val; + ImGui::ColorConvertRGBtoHSV(color.x, color.y, color.z, state->h, state->s, state->v); + + if (had_value && state->s <= 0.0001f) + state->h = previous_h; + + state->a = color.w; + state->display_h = state->h; + state->display_s = state->s; + state->display_v = state->v; + state->display_a = state->a; + state->last_color = color; + state->init_val = true; +} + +static c_vec4 color_from_picker_state(const color_picker_state* state) +{ + c_vec4 result; + ImGui::ColorConvertHSVtoRGB(state->h, state->s, state->v, result.x, result.y, result.z); + result.w = state->a; + return clamped_color(result); +} + +static void format_color_hex(char* buffer, int buffer_size, const c_vec4& color, bool include_alpha) +{ + if (include_alpha) + { + ImFormatString(buffer, buffer_size, "#%02X%02X%02X%02X", + color_byte(color.x), color_byte(color.y), color_byte(color.z), color_byte(color.w)); + return; + } + + ImFormatString(buffer, buffer_size, "#%02X%02X%02X", + color_byte(color.x), color_byte(color.y), color_byte(color.z)); +} + +static void draw_alpha_base(ImDrawList* draw_list, const c_rect& rect, float rounding) +{ + draw->rect_filled(draw_list, rect.Min, rect.Max, draw->get_clr(clr->widget), rounding); + draw->rect_filled_multi_color(draw_list, rect.Min, rect.Max, + draw->get_clr(clr->white, 0.035f), draw->get_clr(clr->black, 0.045f), draw->get_clr(clr->black, 0.045f), draw->get_clr(clr->white, 0.035f), rounding); +} + +static void draw_color_swatch(ImDrawList* draw_list, const c_rect& rect, const c_vec4& color, float rounding) +{ + draw_alpha_base(draw_list, rect, rounding); + draw->rect_filled(draw_list, rect.Min, rect.Max, draw->get_clr(color), rounding); +} + +static void draw_hue_bar(ImDrawList* draw_list, const c_rect& rect, float rounding) +{ + const int segment_count = 6; + + for (int i = 0; i < segment_count; i++) + { + const float y0 = rect.Min.y + rect.GetHeight() * (static_cast(i) / static_cast(segment_count)); + const float y1 = rect.Min.y + rect.GetHeight() * (static_cast(i + 1) / static_cast(segment_count)); + const c_vec4 top = ImColor::HSV(static_cast(i) / static_cast(segment_count), 1.f, 1.f).Value; + const c_vec4 bottom = ImColor::HSV(static_cast(i + 1) / static_cast(segment_count), 1.f, 1.f).Value; + const draw_flags flags = i == 0 ? draw_flags_round_corners_top : i == segment_count - 1 ? draw_flags_round_corners_bottom : draw_flags_round_corners_none; + const float segment_rounding = i == 0 || i == segment_count - 1 ? rounding : 0.f; + + draw->rect_filled_multi_color(draw_list, c_vec2(rect.Min.x, y0), c_vec2(rect.Max.x, y1), + draw->get_clr(top), draw->get_clr(top), draw->get_clr(bottom), draw->get_clr(bottom), segment_rounding, flags); + } + +} + +static void draw_color_bar_handle(ImDrawList* draw_list, const c_rect& rect) +{ + draw->shadow_rect(draw_list, rect.Min, rect.Max, draw->get_clr(clr->black, 0.22f), s_(5), c_vec2(0, 0), 0, s_(999)); + draw->rect_filled(draw_list, rect.Min, rect.Max, draw->get_clr(clr->white, 0.96f), s_(999)); + draw->rect_filled(draw_list, rect.Min + s_(2, 2), rect.Max - s_(2, 2), draw->get_clr(clr->black, 0.10f), s_(999)); +} + +static bool color_rect_button(const c_rect& rect, c_id id, bool* held) +{ + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + return gui->button_behavior(rect, id, &hovered, held); +} + +bool c_widgets::color_picker(std::string name, c_vec4* color) +{ + if (!color) + return false; + + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + color_picker_state* state = gui->anim_container(id); + + *color = clamped_color(*color); + if (!state->init_val || color_changed_externally(*color, state->last_color)) + sync_color_picker_state(state, *color); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(50)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(0, 8), rect.Max - s_(0, 8)); + c_rect swatch = c_rect(c_vec2(inner.Max.x - s_(44), inner.GetCenter().y - s_(11)), c_vec2(inner.Max.x, inner.GetCenter().y + s_(11))); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool held = false; + bool pressed = gui->button_behavior(rect, id, &hovered, &held); + if (pressed) + state->open = !state->open; + + gui->easing(state->hover_alpha, hovered || state->open ? 1.f : 0.f, 10.f, static_easing); + + char hex[16]; + format_color_hex(hex, IM_ARRAYSIZE(hex), *color, color->w < 0.995f); + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min, inner.Max - s_(64, 0), + draw->get_clr(hovered || state->open ? clr->white.Value : clr->text.Value), name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), inner.Min + s_(0, 17), inner.Max - s_(64, 0), + draw->get_clr(clr->text), hex, 0, 0, { 0, 0 }); + + draw->shadow_rect(window->DrawList, swatch.Min + s_(2, 3), swatch.Max - s_(2, 0), draw->get_clr(clr->black, 0.24f * state->hover_alpha), s_(9), c_vec2(0, 0), 0, s_(8)); + draw->rect_filled(window->DrawList, swatch.Min - s_(2, 2), swatch.Max + s_(2, 2), draw->get_clr(clr->widget), s_(999)); + draw_color_swatch(window->DrawList, swatch, *color, s_(999)); + + if (gui->content_avail().y > 0) + { + draw->line(window->DrawList, rect.GetBL(), rect.GetBR(), draw->get_clr(clr->border)); + } + + gui->easing(state->popup_alpha, state->open ? 1.f : 0.f, 11.f, dynamic_easing); + + bool changed = false; + if (state->open || state->popup_alpha > 0.f) + { + const float popup_width = ImClamp(rect.GetWidth(), s_(220), s_(286)); + const c_vec2 popup_size = c_vec2(popup_width, s_(208)); + const c_vec2 popup_pos = gui->adjust_window_pos(rect.GetBL() + s_(0, 6) - s_(0, 8) * (1.f - state->popup_alpha), popup_size); + const std::string popup_name = name + "##color_popup"; + + gui->push_var(style_var_alpha, state->popup_alpha); + gui->push_var(style_var_window_padding, s_(0, 0)); + gui->push_var(style_var_item_spacing, s_(0, 0)); + gui->set_next_window_pos(popup_pos); + gui->set_next_window_size(popup_size); + window_flags popup_flags = window_flags_no_decoration | window_flags_no_scrollbar | window_flags_no_scroll_with_mouse | window_flags_no_move | window_flags_no_background | window_flags_no_focus_on_appearing; + if (!state->open) + popup_flags |= window_flags_no_inputs; + + gui->begin(popup_name, nullptr, popup_flags); + { + if (state->open) + gui->set_window_focus(); + + c_window* popup = gui->get_window(); + const c_rect popup_rect = popup->Rect(); + const c_vec4 live_color = color_from_picker_state(state); + + draw->shadow_rect(popup->DrawList, popup_rect.Min, popup_rect.Max, draw->get_clr(clr->black, 0.24f), s_(16), s_(0, 7), 0, s_(16)); + draw->rect_filled(popup->DrawList, popup_rect.Min, popup_rect.Max, draw->get_clr(clr->child), s_(16)); + + c_rect header = c_rect(popup_rect.Min + s_(10, 8), popup_rect.Max - s_(10, 0)); + header.Max.y = header.Min.y + s_(28); + const c_rect preview = c_rect(header.Min, header.Min + s_(32, 22)); + + char live_hex[16]; + char rgba[64]; + format_color_hex(live_hex, IM_ARRAYSIZE(live_hex), live_color, live_color.w < 0.995f); + ImFormatString(rgba, IM_ARRAYSIZE(rgba), "R %d G %d B %d A %d%%", + color_byte(live_color.x), color_byte(live_color.y), color_byte(live_color.z), static_cast(color_unit(live_color.w) * 100.f + 0.5f)); + + draw_color_swatch(popup->DrawList, preview, live_color, s_(999)); + draw->text_clipped(popup->DrawList, font->get(inter_semibold, 11), header.Min + s_(41, 0), header.Max, + draw->get_clr(clr->white), live_hex, 0, 0, { 0, 0 }); + draw->text_clipped(popup->DrawList, font->get(inter_medium, 10), header.Min + s_(41, 14), header.Max, + draw->get_clr(clr->text), rgba, 0, 0, { 0, 0 }); + + const float pad = s_(10); + const float gap = s_(8); + const float hue_width = s_(14); + const float picker_height = s_(94); + const c_rect sv_rect = c_rect(popup_rect.Min + c_vec2(pad, s_(43)), c_vec2(popup_rect.Max.x - pad - hue_width - gap, popup_rect.Min.y + s_(43) + picker_height)); + const c_rect hue_rect = c_rect(c_vec2(sv_rect.Max.x + gap, sv_rect.Min.y), c_vec2(sv_rect.Max.x + gap + hue_width, sv_rect.Max.y)); + const c_rect alpha_rect = c_rect(c_vec2(sv_rect.Min.x, sv_rect.Max.y + s_(10)), c_vec2(hue_rect.Max.x, sv_rect.Max.y + s_(23))); + + const c_vec4 hue_color = ImColor::HSV(state->h, 1.f, 1.f).Value; + const float sv_rounding = s_(12); + const c_rect sv_fill = sv_rect; + draw->rect_filled_multi_color(popup->DrawList, sv_fill.Min, sv_fill.Max, + draw->get_clr(clr->white), draw->get_clr(hue_color), draw->get_clr(clr->black), draw->get_clr(clr->black), sv_rounding); + + bool sv_held = false; + const bool sv_pressed = color_rect_button(sv_rect, popup->GetID("sv"), &sv_held); + if (sv_held || sv_pressed) + { + state->s = color_unit((gui->mouse_pos().x - sv_rect.Min.x) / sv_rect.GetWidth()); + state->v = 1.f - color_unit((gui->mouse_pos().y - sv_rect.Min.y) / sv_rect.GetHeight()); + changed = true; + } + + draw_hue_bar(popup->DrawList, hue_rect, s_(999)); + bool hue_held = false; + const bool hue_pressed = color_rect_button(hue_rect, popup->GetID("hue"), &hue_held); + if (hue_held || hue_pressed) + { + state->h = color_unit((gui->mouse_pos().y - hue_rect.Min.y) / hue_rect.GetHeight()); + changed = true; + } + + draw_alpha_base(popup->DrawList, alpha_rect, s_(999)); + draw->rect_filled_multi_color(popup->DrawList, alpha_rect.Min, alpha_rect.Max, + draw->get_clr(c_vec4(live_color.x, live_color.y, live_color.z, 0.f)), draw->get_clr(c_vec4(live_color.x, live_color.y, live_color.z, 1.f)), + draw->get_clr(c_vec4(live_color.x, live_color.y, live_color.z, 1.f)), draw->get_clr(c_vec4(live_color.x, live_color.y, live_color.z, 0.f)), s_(999)); + + bool alpha_held = false; + const bool alpha_pressed = color_rect_button(alpha_rect, popup->GetID("alpha"), &alpha_held); + if (alpha_held || alpha_pressed) + { + state->a = color_unit((gui->mouse_pos().x - alpha_rect.Min.x) / alpha_rect.GetWidth()); + changed = true; + } + + static const c_vec4 presets[] = + { + c_vec4(1.00f, 0.26f, 0.32f, 1.f), + c_vec4(1.00f, 0.58f, 0.22f, 1.f), + c_vec4(1.00f, 0.88f, 0.25f, 1.f), + c_vec4(0.34f, 0.86f, 0.55f, 1.f), + c_vec4(0.26f, 0.76f, 0.94f, 1.f), + c_vec4(0.42f, 0.55f, 1.00f, 1.f), + c_vec4(0.72f, 0.44f, 1.00f, 1.f), + c_vec4(1.00f, 1.00f, 1.00f, 1.f), + }; + + const int preset_count = IM_ARRAYSIZE(presets); + const float chip_gap = s_(5); + const float chip_height = s_(13); + const float chip_width = (alpha_rect.GetWidth() - chip_gap * static_cast(preset_count - 1)) / static_cast(preset_count); + const float chip_y = alpha_rect.Max.y + s_(13); + + for (int i = 0; i < preset_count; i++) + { + const c_rect chip = c_rect(c_vec2(alpha_rect.Min.x + (chip_width + chip_gap) * static_cast(i), chip_y), c_vec2(alpha_rect.Min.x + (chip_width + chip_gap) * static_cast(i) + chip_width, chip_y + chip_height)); + const c_id chip_id = popup->GetID(1000 + i); + const bool selected = ImFabs(live_color.x - presets[i].x) + ImFabs(live_color.y - presets[i].y) + ImFabs(live_color.z - presets[i].z) < 0.10f; + + bool chip_held = false; + const bool chip_pressed = color_rect_button(chip, chip_id, &chip_held); + + draw_color_swatch(popup->DrawList, chip, presets[i], s_(999)); + if (selected || chip_held) + { + draw->rect_filled(popup->DrawList, chip.Min - s_(2, 2), chip.Max + s_(2, 2), + draw->get_clr(chip_held ? clr->white.Value : clr->accent.Value, 0.18f), s_(999)); + draw_color_swatch(popup->DrawList, chip, presets[i], s_(999)); + } + + if (chip_pressed) + { + ImGui::ColorConvertRGBtoHSV(presets[i].x, presets[i].y, presets[i].z, state->h, state->s, state->v); + changed = true; + } + } + + gui->easing(state->display_s, state->s, 28.f, dynamic_easing); + gui->easing(state->display_v, state->v, 28.f, dynamic_easing); + gui->easing(state->display_h, state->h, 28.f, dynamic_easing); + gui->easing(state->display_a, state->a, 28.f, dynamic_easing); + + const float sv_cursor_radius = s_(5.5f); + const float sv_cursor_inset = sv_cursor_radius + s_(1); + const c_vec2 raw_sv_cursor = c_vec2(sv_rect.Min.x + sv_rect.GetWidth() * state->display_s, sv_rect.Min.y + sv_rect.GetHeight() * (1.f - state->display_v)); + const c_vec2 sv_cursor = c_vec2( + ImClamp(raw_sv_cursor.x, sv_fill.Min.x + sv_cursor_inset, sv_fill.Max.x - sv_cursor_inset), + ImClamp(raw_sv_cursor.y, sv_fill.Min.y + sv_cursor_inset, sv_fill.Max.y - sv_cursor_inset)); + draw->shadow_circle(popup->DrawList, sv_cursor, s_(6), draw->get_clr(clr->black, 0.30f), s_(4), c_vec2(0, 0)); + draw->circle_filled(popup->DrawList, sv_cursor, sv_cursor_radius, draw->get_clr(clr->white, 0.98f), 32); + draw->circle_filled(popup->DrawList, sv_cursor, s_(3.1f), draw->get_clr(clr->black, 0.13f), 32); + + const float hue_y = hue_rect.Min.y + hue_rect.GetHeight() * state->display_h; + draw_color_bar_handle(popup->DrawList, c_rect(c_vec2(hue_rect.Min.x - s_(3), hue_y - s_(4)), c_vec2(hue_rect.Max.x + s_(3), hue_y + s_(4)))); + + const float alpha_x = alpha_rect.Min.x + alpha_rect.GetWidth() * state->display_a; + draw_color_bar_handle(popup->DrawList, c_rect(c_vec2(alpha_x - s_(4), alpha_rect.Min.y - s_(3)), c_vec2(alpha_x + s_(4), alpha_rect.Max.y + s_(3)))); + + if (state->open && !popup_rect.Contains(gui->mouse_pos()) && !rect.Contains(gui->mouse_pos()) && gui->mouse_clicked(0)) + state->open = false; + } + gui->end(); + gui->pop_var(3); + } + + if (changed) + { + *color = color_from_picker_state(state); + state->last_color = *color; + } + + return changed; +} + +struct slider_state +{ + float normalized; + float hover_alpha; + c_vec4 text; + c_vec4 value; + c_vec4 track; +}; + +custom_slider_t c_widgets::custom_slider(std::string name, float* callback, float vmin, float vmax, float width) +{ + custom_slider_t data; + + c_window* window = gui->get_window(); + if (window->SkipItems) + return data; + + c_id id = window->GetID(name.data()); + slider_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(width, s_(12)); + c_rect rect = c_rect(pos, pos + size); + data.rect = rect; + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return data; + + bool held, pressed = gui->button_behavior(rect, id, nullptr, &held); + data.held = held; + + const float normalized = ImSaturate((gui->mouse_pos().x - rect.Min.x) / rect.GetWidth()); + + if (held) + { + *callback = vmin + normalized * (vmax - vmin); + } + + gui->easing(state->normalized, ImSaturate((*callback - vmin) / (vmax - vmin)), 18.f, dynamic_easing); + + float x = rect.GetWidth() * state->normalized; + x = ImClamp(x, s_(12), rect.GetWidth()); + + data.active = c_rect(rect.Min, rect.Min + c_vec2(x, rect.GetHeight())); + data.circle_pos = c_vec2(rect.Min.x + x - s_(6), rect.GetCenter().y); + + return data; +} + +bool c_widgets::slider(std::string name, std::string description, float* callback, float vmin, float vmax, std::string format) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + slider_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(68)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(0, 10), rect.Max - s_(0, 10)); + c_rect button = c_rect(inner.GetBL() - s_(0, 12), inner.GetBR()); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool held, pressed = gui->button_behavior(button, id, nullptr, &held); + + const float normalized = ImSaturate((gui->mouse_pos().x - button.Min.x) / button.GetWidth()); + + if (held) + { + *callback = vmin + normalized * (vmax - vmin); + } + + gui->easing(state->normalized, ImSaturate((*callback - vmin) / (vmax - vmin)), 18.f, dynamic_easing); + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min, inner.Max, draw->get_clr(clr->white), + name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), inner.Min + s_(0, 17), inner.Max, draw->get_clr(clr->text), + description.data(), 0, 0, { 0, 0 }); + + char value_buf[64]; + gui->get_fmt(value_buf, callback, format); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min, inner.Max, draw->get_clr(clr->white), + value_buf, 0, 0, { 1, 0 }); + + draw->rect_filled(window->DrawList, button.Min, button.Max, draw->get_clr(clr->widget), s_(999)); + { + float x = button.GetWidth() * state->normalized; + x = ImClamp(x, s_(12), button.GetWidth()); + + draw->rect_filled(window->DrawList, button.Min, button.Min + c_vec2(x, button.GetHeight()), + draw->get_clr(clr->accent), s_(999)); + + draw->circle_filled(window->DrawList, c_vec2(button.Min.x + x - s_(6), button.GetCenter().y), s_(4), draw->get_clr(clr->black), s_(999)); + } + + if (gui->content_avail().y > 0) + { + draw->line(window->DrawList, rect.GetBL(), rect.GetBR(), draw->get_clr(clr->border)); + } + + return held; +} + +struct selectable_state +{ + float alpha; + c_vec4 text; +}; + +bool selectable_ex(std::string name, bool is_selected) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + selectable_state* state = gui->anim_container< selectable_state>(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(29)); + c_rect rect = c_rect(pos, pos + size); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool pressed = gui->button_behavior(rect, id, &hovered, nullptr); + + gui->easing(state->text, is_selected ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + gui->easing(state->alpha, is_selected ? 1.f : 0.f, 7.f, static_easing); + + if (gui->content_avail().y > 0) + { + draw->line(window->DrawList, rect.GetBL() + s_(10, 0), rect.GetBR() - s_(10, 0), draw->get_clr(clr->border)); + } + + //draw->rect_filled(window->DrawList, rect.Min, rect.Max, draw->get_clr(clr->cirlce, state->alpha), s_(2)); + + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), rect.Min + s_(10, 0), rect.Max, draw->get_clr(state->text), + name.data(), 0, 0, { 0, 0.5 }); + + + return pressed; +} + +struct dropdown_state +{ + bool open; + float alpha; + float hover_alpha; + c_vec4 background; + c_vec4 text; + c_vec4 arrow; +}; + +static void draw_dropdown_chevron(ImDrawList* draw_list, c_vec2 center, bool open, ImU32 color) +{ + const c_rect icon_rect(center - s_(8, 8), center + s_(8, 8)); + ImFont* chevron_font = font->get_file("C:\\Windows\\Fonts\\segmdl2.ttf", 11.f, true); + + if (chevron_font) + { + draw->text_clipped(draw_list, chevron_font, icon_rect.Min, icon_rect.Max, color, + open ? "\xEE\x9C\x8E" : "\xEE\x9C\x8D", 0, 0, { 0.5f, 0.5f }); + return; + } + + draw->text_clipped(draw_list, font->get(inter_semibold, 12), icon_rect.Min, icon_rect.Max, color, + open ? "^" : "v", 0, 0, { 0.5f, 0.5f }); +} + +bool dropdown_ex(std::string name, std::string description, std::string preview) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + dropdown_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(84)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(0, 10), rect.Max - s_(0, 10)); + c_rect button = c_rect(inner.GetBL() - s_(0, 29), inner.GetBR()); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool held = false; + bool pressed = gui->button_behavior(button, id, &hovered, &held); + + if (pressed) + state->open = true; + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min, inner.Max, draw->get_clr(clr->white), + name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), inner.Min + s_(0, 17), inner.Max, draw->get_clr(clr->text), + description.data(), 0, 0, { 0, 0 }); + + draw->rect_filled(window->DrawList, button.Min, button.Max, draw->get_clr(clr->widget), s_(8)); + draw->line(window->DrawList, c_vec2(button.Max.x - s_(28), button.Min.y + s_(8)), c_vec2(button.Max.x - s_(28), button.Max.y - s_(8)), + draw->get_clr(clr->border, 0.9f)); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), button.Min + s_(10, 0), button.Max - s_(28, 0), draw->get_clr(clr->white), + preview.data(), 0, 0, { 0, 0.5 }); + + const c_vec2 arrow_center(button.Max.x - s_(14), button.GetCenter().y); + const ImU32 arrow_color = state->open ? draw->get_clr(clr->accent) : draw->get_clr((hovered || held) ? clr->white.Value : clr->text.Value, 0.96f); + draw_dropdown_chevron(window->DrawList, arrow_center, state->open, arrow_color); + + if (gui->content_avail().y > 0) + { + draw->line(window->DrawList, rect.GetBL(), rect.GetBR(), draw->get_clr(clr->border)); + } + + gui->easing(state->alpha, state->open ? 1.f : 0.f, 11.f, dynamic_easing); + + if (state->alpha > 0) + { + gui->push_var(style_var_alpha, state->alpha); + gui->push_var(style_var_window_padding, s_(0, 0)); + gui->push_var(style_var_item_spacing, s_(0, 0)); + + gui->set_next_window_pos(button.Min + s_(0, 10) * (1.f - state->alpha) + c_vec2(0, button.GetHeight() + s_(10))); + gui->set_next_window_size(c_vec2(button.GetWidth(), 0)); + + window_flags popup_flags = window_flags_always_auto_resize | window_flags_no_decoration | window_flags_no_scrollbar | window_flags_no_scroll_with_mouse | window_flags_no_move | window_flags_no_background; + if (!state->open) + popup_flags |= window_flags_no_inputs; + + gui->begin(name, nullptr, popup_flags); + { + + if (state->open) + gui->set_window_focus(); + + window = gui->get_window(); + rect = window->Rect(); + + draw->rect_filled(window->DrawList, rect.Min, rect.Max, draw->get_clr(clr->widget), s_(8)); + + if (state->open && !rect.Contains(gui->mouse_pos()) && gui->mouse_clicked(0)) + state->open = false; + } + + return true; + } + + return false; +} + +void end_dropdown_ex() +{ + gui->end(); + gui->pop_var(3); +} + +bool c_widgets::dropdown(std::string name, std::string description, int* callback, std::vector variants) +{ + bool changed = false; + + if (dropdown_ex(name, description, variants[*callback])) + { + for (int i = 0; i < variants.size(); i++) + { + if (selectable_ex(variants[i], i == *callback)) + { + *callback = i; + changed = true; + } + } + + end_dropdown_ex(); + } + + return changed; +} + +struct profile_dropdown_state +{ + bool open; + float alpha; + c_vec4 background; + c_vec4 text; + c_vec4 status; + c_vec4 arrow; +}; + +struct profile_dropdown_row_state +{ + float hover_alpha; + c_vec4 text; +}; + +bool profile_dropdown_row(std::string icon, std::string label, bool active) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(label.data()); + profile_dropdown_row_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(24)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(9, 4), rect.Max - s_(9, 4)); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool pressed = gui->button_behavior(rect, id, &hovered, nullptr); + + gui->easing(state->hover_alpha, hovered || active ? 1.f : 0.f, 10.f, static_easing); + gui->easing(state->text, active ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + + if (state->hover_alpha > 0.f) + { + const bool active_row = active && !hovered; + draw->rect_filled(window->DrawList, rect.Min, rect.Max, + active_row ? draw->get_clr(clr->accent.Value, state->hover_alpha * 0.16f) : draw->get_clr(clr->widget, state->hover_alpha), + s_(7)); + } + + draw->text_clipped(window->DrawList, font->get(icon_font, 14), inner.Min, inner.Min + s_(16, 16), + draw->get_clr(active ? clr->accent.Value : state->text), icon.data(), 0, 0, { 0.5f, 0.5f }); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 11), inner.Min + s_(20, 0), inner.Max, + draw->get_clr(active ? clr->white.Value : state->text), label.data(), 0, 0, { 0, 0.5f }); + + return pressed; +} + +void c_widgets::brand_header(std::string name, std::string subtitle) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return; + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(50)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(10, 8), rect.Max - s_(10, 8)); + c_rect mark = c_rect(inner.Min, inner.Min + s_(34, 34)); + + gui->item_size(rect); + if (!gui->item_add(rect, window->GetID("brand_header"))) + return; + + const bool glass = var->gui.sidebar_glass; + draw->rect_filled(window->DrawList, rect.Min, rect.Max, draw->get_clr(clr->child, glass ? 0.24f : 1.f), s_(12)); + if (glass) + draw->rect(window->DrawList, rect.Min + s_(0.5f, 0.5f), rect.Max - s_(0.5f, 0.5f), draw->get_clr(clr->border, 0.36f), s_(12)); + draw->shadow_rect(window->DrawList, mark.Min + s_(2, 2), mark.Max - s_(2, 2), draw->get_clr(clr->accent, glass ? 0.14f : 0.2f), s_(14), c_vec2(0, 0), 0, s_(10)); + draw->rect_filled(window->DrawList, mark.Min, mark.Max, draw->get_clr(clr->widget, glass ? 0.48f : 1.f), s_(10)); + draw->rect_filled(window->DrawList, mark.Min + s_(3, 3), mark.Max - s_(3, 3), draw->get_clr(clr->accent, 0.12f), s_(8)); + + const c_vec2 center = mark.GetCenter(); + draw->circle_filled(window->DrawList, center, s_(12), draw->get_clr(clr->accent, 0.08f), s_(999)); + draw->line(window->DrawList, center + s_(0, -13), center + s_(0, 12), draw->get_clr(clr->accent), s_(2)); + draw->circle_filled(window->DrawList, center + s_(0, -3), s_(5), draw->get_clr(clr->accent), s_(999)); + draw->circle_filled(window->DrawList, center + s_(0, -3), s_(2), draw->get_clr(clr->black, 0.38f), s_(999)); + draw->line(window->DrawList, center + s_(0, 3), center + s_(-8, 13), draw->get_clr(clr->accent, 0.85f), s_(1.5f)); + draw->line(window->DrawList, center + s_(0, 3), center + s_(8, 13), draw->get_clr(clr->accent, 0.85f), s_(1.5f)); + draw->rect_filled(window->DrawList, mark.Min + s_(6, 23), mark.Min + s_(9, 29), draw->get_clr(clr->white, 0.18f), s_(1)); + draw->rect_filled(window->DrawList, mark.Min + s_(11, 20), mark.Min + s_(14, 29), draw->get_clr(clr->white, 0.18f), s_(1)); + draw->rect_filled(window->DrawList, mark.Min + s_(20, 21), mark.Min + s_(23, 29), draw->get_clr(clr->white, 0.18f), s_(1)); + draw->rect_filled(window->DrawList, mark.Min + s_(25, 24), mark.Min + s_(28, 29), draw->get_clr(clr->white, 0.18f), s_(1)); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 13), inner.Min + s_(44, 2), inner.Max, + draw->get_clr(clr->white), name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), inner.Min + s_(44, 18), inner.Max, + draw->get_clr(clr->text), subtitle.data(), 0, 0, { 0, 0 }); +} + +bool c_widgets::profile_dropdown(std::string name, std::string status) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + profile_dropdown_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(58)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(10, 9), rect.Max - s_(10, 9)); + c_rect avatar = c_rect(inner.Min, inner.Min + s_(40, 40)); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool pressed = gui->button_behavior(rect, id, &hovered, nullptr); + + if (pressed) + state->open = !state->open; + + gui->easing(state->alpha, state->open ? 1.f : 0.f, 11.f, dynamic_easing); + gui->easing(state->background, (hovered || state->open) ? clr->widget.Value : clr->child.Value, 18.f, dynamic_easing); + gui->easing(state->text, (hovered || state->open) ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + gui->easing(state->status, state->open ? clr->accent.Value : clr->text.Value, 18.f, dynamic_easing); + gui->easing(state->arrow, state->open ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + + draw->rect_filled(window->DrawList, rect.Min, rect.Max, draw->get_clr(state->background), s_(12)); + draw->circle_filled(window->DrawList, avatar.GetCenter(), avatar.GetWidth() * 0.5f, draw->get_clr(clr->accent, 0.22f), s_(999)); + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 16), avatar.Min, avatar.Max, + draw->get_clr(clr->white), "D", 0, 0, { 0.5f, 0.5f }); + + draw->circle_filled(window->DrawList, avatar.Max - s_(5, 5), s_(7), draw->get_clr(clr->layout), s_(999)); + draw->circle_filled(window->DrawList, avatar.Max - s_(5, 5), s_(4), draw->get_clr(clr->accent), s_(999)); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min + s_(50, 4), inner.Max - s_(18, 0), + draw->get_clr(clr->white), name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), inner.Min + s_(50, 20), inner.Max - s_(18, 0), + draw->get_clr(state->status), status.data(), 0, 0, { 0, 0 }); + draw_dropdown_chevron(window->DrawList, c_vec2(rect.Max.x - s_(18), rect.GetCenter().y), state->open, draw->get_clr(state->arrow)); + + if (state->alpha > 0.f) + { + const c_vec2 popup_size = c_vec2(rect.GetWidth(), s_(104)); + const c_vec2 popup_pos = rect.GetTL() - c_vec2(0, popup_size.y + s_(5) * state->alpha); + + gui->push_var(style_var_alpha, state->alpha); + gui->push_var(style_var_window_padding, s_(5, 5)); + gui->push_var(style_var_item_spacing, s_(0, 1)); + gui->set_next_window_pos(popup_pos); + gui->set_next_window_size(popup_size); + + window_flags popup_flags = window_flags_no_decoration | window_flags_no_scrollbar | window_flags_no_scroll_with_mouse | window_flags_no_move | window_flags_no_background | window_flags_no_focus_on_appearing; + if (!state->open) + popup_flags |= window_flags_no_inputs; + + gui->begin("profile_dropdown_popup", nullptr, popup_flags); + { + if (state->open) + gui->set_window_focus(); + c_window* popup = gui->get_window(); + c_rect popup_rect = popup->Rect(); + + draw->shadow_rect(popup->DrawList, popup_rect.Min, popup_rect.Max, draw->get_clr(clr->black, 0.26f), s_(18), s_(0, 8), 0, s_(12)); + draw->rect_filled(popup->DrawList, popup_rect.Min, popup_rect.Max, draw->get_clr(clr->child), s_(12)); + draw->rect(popup->DrawList, popup_rect.Min, popup_rect.Max, draw->get_clr(clr->border), s_(12)); + + draw->text_clipped(popup->DrawList, font->get(inter_semibold, 11), popup_rect.Min + s_(9, 5), popup_rect.Max - s_(9, 0), + draw->get_clr(clr->white), "Quick settings", 0, 0, { 0, 0 }); + gui->dummy(s_(0, 18)); + + if (profile_dropdown_row("C", "Settings", true)) + state->open = false; + if (profile_dropdown_row("F", "Appearance", false)) + state->open = false; + if (profile_dropdown_row("B", "Tools", false)) + state->open = false; + + if (state->open && !popup_rect.Contains(gui->mouse_pos()) && !rect.Contains(gui->mouse_pos()) && gui->mouse_clicked(0)) + state->open = false; + } + gui->end(); + gui->pop_var(3); + } + + return pressed; +} + +struct primary_button_state +{ + c_vec4 background; + c_vec4 text; + float shadow; + float radius; + float circle_alpha; + float icon_spacing; + bool clicked; +}; + +static void draw_active_icon(ImDrawList* draw_list, c_vec2 center, ImU32 color) +{ + draw->circle(draw_list, center, s_(7), color, s_(24), s_(1.3f)); + // https://discord.gg/jxqVWub6Dk + draw->line(draw_list, center + s_(-3, 0), center + s_(-1, 3), color, s_(1.5f)); + draw->line(draw_list, center + s_(-1, 3), center + s_(4, -3), color, s_(1.5f)); +} + +bool c_widgets::primary_button(std::string name, std::string icon) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + primary_button_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(42)); + c_rect rect = c_rect(pos, pos + size); + const bool has_icon = !icon.empty(); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool held = false; + bool pressed = gui->button_behavior(rect, id, &hovered, &held); + + if (pressed) + state->clicked = true; + + gui->easing(state->background, held ? clr->white.Value : clr->accent.Value, 18.f, dynamic_easing); + gui->easing(state->text, held ? clr->black.Value : clr->black.Value, 18.f, dynamic_easing); + gui->easing(state->shadow, hovered || held ? 1.f : 0.45f, 10.f, static_easing); + gui->easing(state->icon_spacing, hovered || held ? 14.f : 7.f, 18.f, dynamic_easing); + + state->radius = ImClamp(state->radius + gui->fixed_speed(rect.GetWidth() * 7.f) * (state->clicked ? 1.f : -1.f), 0.f, rect.GetWidth() * 0.5f + s_(8)); + state->circle_alpha = ImClamp(state->circle_alpha + gui->fixed_speed(3.5f) * (state->radius > rect.GetWidth() * 0.5f - s_(1) ? 1.f : -1.f), 0.f, 1.f); + + if (state->circle_alpha > 0.95f) + { + state->radius = 0.f; + state->circle_alpha = 0.f; + state->clicked = false; + } + + draw->shadow_rect(window->DrawList, rect.Min + s_(8, 8), rect.Max - s_(8, 2), draw->get_clr(clr->accent, 0.22f * state->shadow), s_(18), c_vec2(0, 0), 0, s_(11)); + draw->rect_filled(window->DrawList, rect.Min, rect.Max, draw->get_clr(state->background), s_(11)); + + draw->push_clip_rect(window->DrawList, rect.Min, rect.Max, true); + draw->circle_filled(window->DrawList, rect.GetCenter(), state->radius, draw->get_clr(clr->black, 0.28f * (1.f - state->circle_alpha)), s_(48)); + draw->pop_clip_rect(window->DrawList); + + if (has_icon) + { + const bool active_icon = icon == "active"; + c_vec2 icon_size = active_icon ? s_(14, 14) : gui->text_size(font->get(icon_font, 15), icon.data()); + c_vec2 name_size = gui->text_size(font->get(inter_semibold, 12), name.data()); + float total_width = icon_size.x + s_(state->icon_spacing) + name_size.x; + c_vec2 start = c_vec2(rect.GetCenter().x - total_width * 0.5f, rect.Min.y); + + if (active_icon) + draw_active_icon(window->DrawList, c_vec2(start.x + icon_size.x * 0.5f, rect.GetCenter().y), draw->get_clr(state->text)); + else + draw->text_clipped(window->DrawList, font->get(icon_font, 15), start, start + c_vec2(icon_size.x, rect.GetHeight()), + draw->get_clr(state->text), icon.data(), 0, 0, { 0, 0.5f }); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), start + c_vec2(icon_size.x + s_(state->icon_spacing), 0), rect.Max, + draw->get_clr(state->text), name.data(), 0, 0, { 0, 0.5f }); + } + else + { + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), rect.Min, rect.Max, + draw->get_clr(state->text), name.data(), 0, 0, { 0.5f, 0.5f }); + } + + return pressed; +} + +struct action_button_state +{ + c_vec4 background; + c_vec4 text; + c_vec4 icon; + float accent_alpha; + float arrow_offset; +}; + +static void draw_action_icon(ImDrawList* draw_list, std::string icon, c_vec2 center, ImU32 color) +{ + const float thickness = s_(1.4f); + + if (icon == "copy") + { + draw->rect(draw_list, center + s_(-5, -4), center + s_(3, 4), color, s_(2), 0, thickness); + draw->rect(draw_list, center + s_(-2, -7), center + s_(6, 1), color, s_(2), 0, thickness); + return; + } + + if (icon == "back") + { + draw->line(draw_list, center + s_(-5, 0), center + s_(6, 0), color, thickness); + draw->line(draw_list, center + s_(-5, 0), center + s_(0, -5), color, thickness); + draw->line(draw_list, center + s_(-5, 0), center + s_(0, 5), color, thickness); + return; + } + + if (icon == "reset") + { + draw->circle(draw_list, center, s_(6), color, s_(28), thickness); + draw->triangle_filled(draw_list, center + s_(2, -8), center + s_(8, -6), center + s_(5, -2), color); + return; + } + + if (!icon.empty()) + { + draw->text_clipped(draw_list, font->get(icon_font, 15), center - s_(8, 8), center + s_(8, 8), + color, icon.data(), 0, 0, { 0.5f, 0.5f }); + } +} + +bool c_widgets::action_button(std::string name, std::string icon) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + action_button_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(44)); + c_rect rect = c_rect(pos, pos + size); + c_rect button = c_rect(rect.Min + s_(0, 3), rect.Max - s_(0, 3)); + c_rect icon_rect = c_rect(button.Min + s_(9, 8), button.Min + s_(31, 30)); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool held = false; + bool pressed = gui->button_behavior(button, id, &hovered, &held); + + gui->easing(state->background, held ? clr->cirlce.Value : clr->widget.Value, 18.f, dynamic_easing); + gui->easing(state->text, hovered || held ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + gui->easing(state->icon, hovered || held ? clr->accent.Value : clr->text.Value, 18.f, dynamic_easing); + gui->easing(state->arrow_offset, hovered || held ? 2.f : 0.f, 18.f, dynamic_easing); + state->accent_alpha = ImClamp(state->accent_alpha + gui->fixed_speed(9.f) * (hovered || held ? 1.f : -1.f), 0.f, 1.f); + + draw->rect_filled(window->DrawList, button.Min, button.Max, draw->get_clr(state->background), s_(8)); + draw->rect(window->DrawList, button.Min, button.Max, draw->get_clr(clr->border, 0.9f), s_(8)); + draw->rect_filled(window->DrawList, button.Min, button.Min + c_vec2(s_(3), button.GetHeight()), + draw->get_clr(clr->accent, state->accent_alpha), s_(8)); + + draw->rect_filled(window->DrawList, icon_rect.Min, icon_rect.Max, + draw->get_clr(clr->accent, 0.08f + state->accent_alpha * 0.12f), s_(6)); + draw_action_icon(window->DrawList, icon, icon_rect.GetCenter(), draw->get_clr(state->icon)); + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), button.Min + s_(40, 0), button.Max - s_(28, 0), + draw->get_clr(state->text), name.data(), 0, 0, { 0, 0.5f }); + + const c_vec2 arrow = c_vec2(button.Max.x - s_(17) + s_(state->arrow_offset), button.GetCenter().y); + draw->line(window->DrawList, arrow + s_(-2, -4), arrow + s_(2, 0), draw->get_clr(state->icon), s_(1.3f)); + draw->line(window->DrawList, arrow + s_(2, 0), arrow + s_(-2, 4), draw->get_clr(state->icon), s_(1.3f)); + + return pressed; +} + +struct card_button_state +{ + c_vec4 text; + c_vec4 background; + c_vec4 button_text; +}; + +bool c_widgets::card_button(std::string name, std::string description, std::string button_text) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + card_button_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(82)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(elements->padding), rect.Max - s_(elements->padding)); + c_rect button = c_rect(inner.GetBL() - s_(0, 27), inner.GetBR()); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool held = false; + bool pressed = gui->button_behavior(button, id, &hovered, &held); + + gui->easing(state->text, hovered || held ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + gui->easing(state->background, hovered || held ? clr->accent.Value : clr->widget.Value, 18.f, dynamic_easing); + gui->easing(state->button_text, hovered || held ? clr->black.Value : clr->white.Value, 18.f, dynamic_easing); + + draw->rect_filled(window->DrawList, rect.Min, rect.Max, draw->get_clr(clr->child), s_(2)); + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min, inner.Max, draw->get_clr(state->text), + name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), inner.Min + s_(0, 16), inner.Max, draw->get_clr(clr->text), + description.data(), 0, 0, { 0, 0 }); + + draw->rect_filled(window->DrawList, button.Min, button.Max, draw->get_clr(state->background), s_(2)); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), button.Min, button.Max, draw->get_clr(state->button_text), + button_text.data(), 0, 0, { 0.5, 0.5 }); + + return pressed; +} + +struct checkbox_state +{ + c_vec4 text; + c_vec4 background; + c_vec4 circle; + float pos; + float hover_alpha; + float glow_alpha; + float tooltip_alpha; +}; + +static c_vec4 title_status_color(title_status_icon status) +{ + c_vec4 color = c_col(75, 220, 145).Value; + + if (status == title_status_danger) + color = c_col(245, 70, 86).Value; + else if (status == title_status_warning) + color = c_col(255, 190, 75).Value; + + return color; +} + +static const char* title_status_label(title_status_icon status) +{ + if (status == title_status_danger) + return "DANGER"; + if (status == title_status_warning) + return "WARNING"; + if (status == title_status_safe) + return "SAFE"; + + return ""; +} + +static const char* title_status_hint(title_status_icon status) +{ + if (status == title_status_danger) + return "High signal item. Use only when this detail is worth the extra exposure."; + if (status == title_status_warning) + return "Medium signal item. Useful, but it can add visual noise fast."; + if (status == title_status_safe) + return "Low signal item. Stable for normal use and clean defaults."; + + return ""; +} + +static bool draw_title_status_icon(ImDrawList* draw_list, const c_vec2& center, title_status_icon status, c_rect* out_rect) +{ + if (status == title_status_none) + return false; + + const c_vec4 color = title_status_color(status); + + const c_rect icon_rect(center - s_(6, 8), center + s_(6, 8)); + if (out_rect) + *out_rect = icon_rect; + + draw->text_clipped(draw_list, font->get(inter_semibold, 18), icon_rect.Min, icon_rect.Max, draw->get_clr(color), + "*", 0, 0, { 0.5f, 0.5f }); + + return icon_rect.Contains(gui->mouse_pos()); +} + +static void draw_title_status_tooltip(const c_rect& anchor, title_status_icon status, const std::string& title, const std::string& description, float alpha) +{ + if (status == title_status_none || alpha <= 0.01f) + return; + + const c_vec4 color = title_status_color(status); + const char* label = title_status_label(status); + const char* hint = title_status_hint(status); + ImDrawList* draw_list = ImGui::GetForegroundDrawList(); + + const float compact = 0.90f; + const c_vec2 size = s_(286.f * compact, 104.f * compact); + c_vec2 pos = gui->adjust_window_pos(anchor.Max + s_(12.f * compact, -16.f * compact) - s_(0, 6.f * compact) * (1.f - alpha), size); + const c_rect rect(pos, pos + size); + + const float rounding = s_(10.f * compact); + draw->shadow_rect(draw_list, rect.Min, rect.Max, draw->get_clr(clr->black, 0.28f * alpha), s_(18.f * compact), s_(0, 8.f * compact), 0, rounding); + draw->rect_filled(draw_list, rect.Min, rect.Max, draw->get_clr(clr->child, 0.98f * alpha), rounding); + draw->rect_filled_multi_color(draw_list, rect.Min, rect.Max, + draw->get_clr(clr->white, 0.035f * alpha), draw->get_clr(color, 0.055f * alpha), + draw->get_clr(clr->black, 0.02f * alpha), draw->get_clr(clr->black, 0.02f * alpha), rounding); + draw->rect(draw_list, rect.Min, rect.Max, draw->get_clr(color, 0.30f * alpha), rounding, 0, s_(1)); + draw->rect_filled(draw_list, rect.Min + s_(0, 11.f * compact), rect.Min + s_(3.f * compact, 46.f * compact), draw->get_clr(color, alpha), s_(999)); + + const c_rect star_rect(rect.Min + s_(13.f * compact, 10.f * compact), rect.Min + s_(29.f * compact, 30.f * compact)); + draw->text_clipped(draw_list, font->get(inter_semibold, 18), star_rect.Min, star_rect.Max, + draw->get_clr(color, alpha), "*", 0, 0, { 0.5f, 0.5f }); + + draw->text_clipped(draw_list, font->get(inter_semibold, 10), rect.Min + s_(34.f * compact, 11.f * compact), rect.Min + s_(160.f * compact, 27.f * compact), + draw->get_clr(color, alpha), label, 0, 0, { 0, 0.5f }); + + const c_rect tag(rect.Max - s_(69.f * compact, 93.f * compact), rect.Max - s_(12.f * compact, 75.f * compact)); + draw->rect_filled(draw_list, tag.Min, tag.Max, draw->get_clr(color, 0.12f * alpha), s_(999)); + draw->rect(draw_list, tag.Min, tag.Max, draw->get_clr(color, 0.38f * alpha), s_(999), 0, s_(1)); + draw->text_clipped(draw_list, font->get(inter_semibold, 10), tag.Min, tag.Max, + draw->get_clr(color, alpha), "STATUS", 0, 0, { 0.5f, 0.5f }); + + draw->text_clipped(draw_list, font->get(inter_semibold, 12), rect.Min + s_(13.f * compact, 36.f * compact), rect.Max - s_(13.f * compact, 0), + draw->get_clr(clr->white, alpha), title.data(), 0, 0, { 0, 0 }); + draw->text_clipped(draw_list, font->get(inter_medium, 10), rect.Min + s_(13.f * compact, 54.f * compact), rect.Max - s_(13.f * compact, 0), + draw->get_clr(clr->text, alpha), description.data(), 0, 0, { 0, 0 }); + draw->line(draw_list, rect.Min + s_(13.f * compact, 75.f * compact), rect.Max - s_(13.f * compact, 29.f * compact), draw->get_clr(clr->border, 0.92f * alpha)); + draw->text_clipped(draw_list, font->get(inter_medium, 10), rect.Min + s_(13.f * compact, 82.f * compact), rect.Max - s_(13.f * compact, 8.f * compact), + draw->get_clr(clr->text, 0.92f * alpha), hint, 0, 0, { 0, 0 }); +} + +struct keybind_widget_state +{ + bool listening; + int listen_started_frame; + float bind_hover_alpha; + float listen_alpha; + c_vec4 bind_background; + c_vec4 title; +}; + +static bool keybind_is_ctrl(ImGuiKey key) +{ + return key == ImGuiKey_LeftCtrl || key == ImGuiKey_RightCtrl; +} + +static bool keybind_is_shift(ImGuiKey key) +{ + return key == ImGuiKey_LeftShift || key == ImGuiKey_RightShift; +} + +static bool keybind_is_alt(ImGuiKey key) +{ + return key == ImGuiKey_LeftAlt || key == ImGuiKey_RightAlt; +} + +static bool keybind_is_super(ImGuiKey key) +{ + return key == ImGuiKey_LeftSuper || key == ImGuiKey_RightSuper; +} + +static bool keybind_is_mouse_key(ImGuiKey key) +{ + return key >= ImGuiKey_MouseLeft && key <= ImGuiKey_MouseX2; +} + +static bool keybind_is_wheel_key(ImGuiKey key) +{ + return key == ImGuiKey_MouseWheelX || key == ImGuiKey_MouseWheelY; +} + +static void keybind_assign(keybind_t* bind, ImGuiKey key); +static void keybind_clear(keybind_t* bind); + +static bool keybind_is_modifier(ImGuiKey key) +{ + return keybind_is_ctrl(key) || keybind_is_shift(key) || keybind_is_alt(key) || keybind_is_super(key); +} + +static std::array g_keybind_previous_vk_down{}; + +static bool keybind_vk_down(int vk) +{ + return vk > 0 && vk < static_cast(g_keybind_previous_vk_down.size()) && (GetAsyncKeyState(vk) & 0x8000) != 0; +} + +static bool keybind_vk_pressed(int vk) +{ + if (vk <= 0 || vk >= static_cast(g_keybind_previous_vk_down.size())) + return false; + + const bool down = keybind_vk_down(vk); + const bool pressed = down && !g_keybind_previous_vk_down[vk]; + g_keybind_previous_vk_down[vk] = down; + return pressed; +} + +static void keybind_prime_physical_input() +{ + for (int vk = 0; vk < static_cast(g_keybind_previous_vk_down.size()); vk++) + g_keybind_previous_vk_down[vk] = keybind_vk_down(vk); +} + +static ImGuiKey keybind_key_from_vk(int vk) +{ + if (vk >= '0' && vk <= '9') + return static_cast(ImGuiKey_0 + (vk - '0')); + if (vk >= 'A' && vk <= 'Z') + return static_cast(ImGuiKey_A + (vk - 'A')); + if (vk >= VK_F1 && vk <= VK_F24) + return static_cast(ImGuiKey_F1 + (vk - VK_F1)); + if (vk >= VK_NUMPAD0 && vk <= VK_NUMPAD9) + return static_cast(ImGuiKey_Keypad0 + (vk - VK_NUMPAD0)); + + switch (vk) + { + case VK_TAB: return ImGuiKey_Tab; + case VK_LEFT: return ImGuiKey_LeftArrow; + case VK_RIGHT: return ImGuiKey_RightArrow; + case VK_UP: return ImGuiKey_UpArrow; + case VK_DOWN: return ImGuiKey_DownArrow; + case VK_PRIOR: return ImGuiKey_PageUp; + case VK_NEXT: return ImGuiKey_PageDown; + case VK_HOME: return ImGuiKey_Home; + case VK_END: return ImGuiKey_End; + case VK_INSERT: return ImGuiKey_Insert; + case VK_DELETE: return ImGuiKey_Delete; + case VK_BACK: return ImGuiKey_Backspace; + case VK_SPACE: return ImGuiKey_Space; + case VK_RETURN: return ImGuiKey_Enter; + case VK_ESCAPE: return ImGuiKey_Escape; + case VK_LCONTROL: return ImGuiKey_LeftCtrl; + case VK_RCONTROL: return ImGuiKey_RightCtrl; + case VK_LSHIFT: return ImGuiKey_LeftShift; + case VK_RSHIFT: return ImGuiKey_RightShift; + case VK_LMENU: return ImGuiKey_LeftAlt; + case VK_RMENU: return ImGuiKey_RightAlt; + case VK_LWIN: return ImGuiKey_LeftSuper; + case VK_RWIN: return ImGuiKey_RightSuper; + case VK_APPS: return ImGuiKey_Menu; + case VK_OEM_7: return ImGuiKey_Apostrophe; + case VK_OEM_COMMA: return ImGuiKey_Comma; + case VK_OEM_MINUS: return ImGuiKey_Minus; + case VK_OEM_PERIOD: return ImGuiKey_Period; + case VK_OEM_2: return ImGuiKey_Slash; + case VK_OEM_1: return ImGuiKey_Semicolon; + case VK_OEM_PLUS: return ImGuiKey_Equal; + case VK_OEM_4: return ImGuiKey_LeftBracket; + case VK_OEM_5: return ImGuiKey_Backslash; + case VK_OEM_6: return ImGuiKey_RightBracket; + case VK_OEM_3: return ImGuiKey_GraveAccent; + case VK_CAPITAL: return ImGuiKey_CapsLock; + case VK_SCROLL: return ImGuiKey_ScrollLock; + case VK_NUMLOCK: return ImGuiKey_NumLock; + case VK_SNAPSHOT: return ImGuiKey_PrintScreen; + case VK_PAUSE: return ImGuiKey_Pause; + case VK_DECIMAL: return ImGuiKey_KeypadDecimal; + case VK_DIVIDE: return ImGuiKey_KeypadDivide; + case VK_MULTIPLY: return ImGuiKey_KeypadMultiply; + case VK_SUBTRACT: return ImGuiKey_KeypadSubtract; + case VK_ADD: return ImGuiKey_KeypadAdd; + default: return ImGuiKey_None; + } +} + +static bool keybind_capture_physical_input(keybind_t* bind) +{ + if (keybind_vk_pressed(VK_ESCAPE)) + { + keybind_clear(bind); + return true; + } + + struct mouse_key_map + { + int vk; + ImGuiKey key; + }; + + static const mouse_key_map mouse_keys[] = + { + { VK_LBUTTON, ImGuiKey_MouseLeft }, + { VK_RBUTTON, ImGuiKey_MouseRight }, + { VK_MBUTTON, ImGuiKey_MouseMiddle }, + { VK_XBUTTON1, ImGuiKey_MouseX1 }, + { VK_XBUTTON2, ImGuiKey_MouseX2 }, + }; + + for (const mouse_key_map& mouse_key : mouse_keys) + { + if (keybind_vk_pressed(mouse_key.vk)) + { + keybind_assign(bind, mouse_key.key); + return true; + } + } + + for (int vk = 1; vk < static_cast(g_keybind_previous_vk_down.size()); vk++) + { + const ImGuiKey key = keybind_key_from_vk(vk); + if (key == ImGuiKey_None || keybind_is_modifier(key)) + continue; + + if (keybind_vk_pressed(vk)) + { + keybind_assign(bind, key); + return true; + } + } + + return false; +} + +static std::string keybind_display_name(const keybind_t& bind) +{ + if (bind.key == ImGuiKey_None) + return "Unbound"; + + const ImGuiKey key = static_cast(bind.key); + const char* key_name = ImGui::GetKeyName(key); + std::string display; + + if (bind.ctrl) + display += "Ctrl + "; + if (bind.shift) + display += "Shift + "; + if (bind.alt) + display += "Alt + "; + if (bind.super) + display += "Super + "; + + if (key_name && key_name[0] != '\0') + display += key_name; + else + display += "Key " + std::to_string(bind.key); + + return display; +} + +static void keybind_assign(keybind_t* bind, ImGuiKey key) +{ + ImGuiIO& io = ImGui::GetIO(); + + bind->key = key; + bind->ctrl = (io.KeyCtrl || keybind_vk_down(VK_CONTROL)) && !keybind_is_ctrl(key); + bind->shift = (io.KeyShift || keybind_vk_down(VK_SHIFT)) && !keybind_is_shift(key); + bind->alt = (io.KeyAlt || keybind_vk_down(VK_MENU)) && !keybind_is_alt(key); + bind->super = (io.KeySuper || keybind_vk_down(VK_LWIN) || keybind_vk_down(VK_RWIN)) && !keybind_is_super(key); +} + +static void keybind_clear(keybind_t* bind) +{ + bind->key = ImGuiKey_None; + bind->ctrl = false; + bind->shift = false; + bind->alt = false; + bind->super = false; + bind->capturing = false; +} + +static bool keybind_capture_input(keybind_t* bind) +{ + if (ImGui::IsKeyPressed(ImGuiKey_Escape, false)) + { + keybind_clear(bind); + return true; + } + + for (int button = 0; button < ImGuiMouseButton_COUNT; button++) + { + if (ImGui::IsMouseClicked(button, false)) + { + keybind_assign(bind, static_cast(ImGuiKey_MouseLeft + button)); + return true; + } + } + + for (int key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key++) + { + const ImGuiKey imgui_key = static_cast(key); + if (keybind_is_mouse_key(imgui_key) || keybind_is_wheel_key(imgui_key) || keybind_is_modifier(imgui_key)) + continue; + + if (ImGui::IsKeyPressed(imgui_key, false)) + { + keybind_assign(bind, imgui_key); + return true; + } + } + + return keybind_capture_physical_input(bind); +} + +bool c_widgets::keybind(std::string name, std::string description, keybind_t* bind) +{ + if (!bind) + return false; + + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + bind->mode = ImClamp(bind->mode, static_cast(keybind_mode_hold), static_cast(keybind_mode_always)); + + c_id id = window->GetID(name.data()); + keybind_widget_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(45)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(0, 9), rect.Max - s_(0, 9)); + + const float bind_width = ImClamp(inner.GetWidth() * 0.30f, s_(82), s_(108)); + const c_rect bind_button = c_rect(c_vec2(inner.Max.x - bind_width, inner.GetCenter().y - s_(12)), c_vec2(inner.Max.x, inner.GetCenter().y + s_(12))); + const c_rect text_rect = c_rect(inner.Min, c_vec2(bind_button.Min.x - s_(14), inner.Max.y)); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool row_hovered = false; + bool row_held = false; + const bool bind_pressed = gui->button_behavior(rect, id, &row_hovered, &row_held); + const bool bind_hovered = row_hovered && bind_button.Contains(gui->mouse_pos()); + const bool bind_held = row_held && bind_button.Contains(gui->mouse_pos()); + + bool changed = false; + if (bind_pressed) + { + state->listening = true; + bind->capturing = true; + state->listen_started_frame = ImGui::GetFrameCount(); + keybind_prime_physical_input(); + } + + if (state->listening && ImGui::GetFrameCount() > state->listen_started_frame && keybind_capture_input(bind)) + { + state->listening = false; + bind->capturing = false; + changed = true; + } + bind->capturing = state->listening; + + gui->easing(state->bind_hover_alpha, bind_hovered || bind_held || state->listening ? 1.f : 0.f, 12.f, dynamic_easing); + gui->easing(state->listen_alpha, state->listening ? 1.f : 0.f, 14.f, dynamic_easing); + gui->easing(state->bind_background, state->listening ? clr->accent.Value : clr->widget.Value, 18.f, dynamic_easing); + gui->easing(state->title, state->listening ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + + const float pulse = state->listening ? 0.5f + 0.5f * ImSin(static_cast(ImGui::GetTime()) * 5.2f) : 0.f; + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), text_rect.Min, text_rect.Max, + draw->get_clr(state->title), name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), text_rect.Min + s_(0, 16), text_rect.Max, + draw->get_clr(clr->text), description.data(), 0, 0, { 0, 0 }); + + if (state->listening) + draw->shadow_rect(window->DrawList, bind_button.Min + s_(3, 4), bind_button.Max - s_(3, 1), draw->get_clr(clr->accent, 0.16f + pulse * 0.06f), s_(12), c_vec2(0, 0), 0, s_(7)); + + draw->rect_filled(window->DrawList, bind_button.Min, bind_button.Max, draw->get_clr(state->bind_background), s_(7)); + draw->rect_filled_multi_color(window->DrawList, bind_button.Min, bind_button.Max, + draw->get_clr(clr->white, state->listening ? 0.12f : 0.018f * state->bind_hover_alpha), draw->get_clr(clr->white, state->listening ? 0.04f : 0.012f), + draw->get_clr(clr->black, 0.05f), draw->get_clr(clr->black, 0.07f), s_(7)); + draw->rect(window->DrawList, bind_button.Min, bind_button.Max, + draw->get_clr(state->listening ? clr->accent.Value : clr->border.Value, state->listening ? 0.80f : 0.92f), s_(7)); + + const std::string bind_text = state->listening ? "Press key" : keybind_display_name(*bind); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 10), bind_button.Min + s_(9, 0), bind_button.Max - s_(9, 0), + draw->get_clr(state->listening ? clr->black.Value : (bind_hovered ? clr->white.Value : clr->text.Value)), bind_text.data(), 0, 0, { 0.5f, 0.5f }); + + if (gui->content_avail().y > 0) + { + draw->line(window->DrawList, rect.GetBL(), rect.GetBR(), draw->get_clr(clr->border)); + } + + return changed; +} + +bool c_widgets::checkbox(std::string name, std::string description, bool* callback, title_status_icon status) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + checkbox_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(gui->content_avail().x, s_(40)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(0, 6), rect.Max - s_(0, 6)); + c_vec2 switch_size = s_(36.3f, 20.9f); + c_rect button = c_rect(c_vec2(inner.Max.x - switch_size.x, inner.GetCenter().y - switch_size.y * 0.5f), c_vec2(inner.Max.x, inner.GetCenter().y + switch_size.y * 0.5f)); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool held = false; + bool pressed = gui->button_behavior(inner, id, &hovered, &held); + + if (pressed) + { + *callback = !*callback; + notify->add_notify(*callback ? "Function enabled" : "Function disabled", name, *callback ? success : warning); + } + + const c_vec4 off_track = clr->widget.Value; + const c_vec4 on_track = c_col(38, 37, 50).Value; + const c_vec4 on_knob = clr->accent.Value; + const c_vec4 off_knob = c_col(96, 88, 142).Value; + const c_vec4 on_knob_inner = c_col(28, 28, 33).Value; + const c_vec4 off_knob_inner = c_col(31, 31, 39).Value; + + gui->easing(state->pos, *callback ? 1.f : 0.f, 20.f, dynamic_easing); + gui->easing(state->hover_alpha, hovered || held ? 1.f : 0.f, 14.f, dynamic_easing); + gui->easing(state->glow_alpha, *callback ? 1.f : 0.f, 18.f, dynamic_easing); + gui->easing(state->text, *callback ? clr->white.Value : c_vec4(clr->text.Value.x * 0.82f, clr->text.Value.y * 0.82f, clr->text.Value.z * 0.82f, clr->text.Value.w), 18.f, dynamic_easing); + gui->easing(state->background, *callback ? on_track : off_track, 18.f, dynamic_easing); + gui->easing(state->circle, *callback ? on_knob : off_knob, 18.f, dynamic_easing); + + const c_vec2 title_min = inner.Min; + c_rect status_rect; + bool status_hovered = false; + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), title_min, c_vec2(button.Min.x - s_(12), inner.Max.y), draw->get_clr(state->text), + name.data(), 0, 0, { 0, 0.5f }); + + if (status != title_status_none) + { + const c_vec2 title_size = gui->text_size(font->get(inter_semibold, 12), name.data()); + const float max_x = button.Min.x - s_(14); + const float icon_x = ImMin(title_min.x + title_size.x + s_(11), max_x); + status_hovered = draw_title_status_icon(window->DrawList, c_vec2(icon_x, inner.GetCenter().y), status, &status_rect); + } + + gui->easing(state->tooltip_alpha, status_hovered ? 1.f : 0.f, 18.f, dynamic_easing); + draw_title_status_tooltip(status_rect, status, name, description, state->tooltip_alpha); + + const float switch_rounding = s_(999); + const c_vec2 knob_center = c_vec2(ImLerp(button.Min.x + s_(10.45f), button.Max.x - s_(10.45f), state->pos), button.GetCenter().y); + const float marker_x = ImLerp(button.Max.x - s_(9.98f), button.Min.x + s_(9.98f), state->pos); + const c_rect marker(c_vec2(marker_x - s_(1.35f), button.GetCenter().y - s_(4.35f)), c_vec2(marker_x + s_(1.35f), button.GetCenter().y + s_(4.35f))); + + draw->rect_filled(window->DrawList, button.Min, button.Max, draw->get_clr(state->background), switch_rounding); + + const ImU32 marker_col = draw->get_clr(*callback ? clr->accent.Value : c_col(132, 113, 198).Value, *callback ? 0.92f : 0.58f); + window->DrawList->AddRectFilled(marker.Min, marker.Max, marker_col, marker.GetWidth() * 0.5f, ImDrawFlags_RoundCornersAll); + + draw->circle_filled(window->DrawList, knob_center, s_(7.0f), draw->get_clr(state->circle), 32); + draw->circle_filled(window->DrawList, knob_center, s_(3.65f), draw->get_clr(*callback ? on_knob_inner : off_knob_inner, *callback ? 1.0f : 0.95f), 32); + + if (gui->content_avail().y > 0) + { + const float y = IM_FLOOR(rect.Max.y - 0.5f) + 0.5f; + window->DrawList->AddLine(c_vec2(rect.Min.x, y), c_vec2(rect.Max.x, y), draw->get_clr(c_col(35, 35, 44).Value, 0.72f), 1.0f); + } + + return pressed; +} + +bool c_widgets::child(std::string name) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + + gui->begin_content(name, c_vec2(elements->child_width, 0), s_(10, 0), s_(0, 0), window_flags_no_scrollbar | window_flags_no_scroll_with_mouse | window_flags_no_move, child_flags_always_auto_resize | child_flags_auto_resize_y); + { + window = gui->get_window(); + + draw->rect_filled(window->DrawList, window->Rect().Min, window->Rect().Max, draw->get_clr(clr->child), s_(10)); + } + + return true; +} + +void c_widgets::end_child() +{ + gui->end_content(); +} + +struct tab_button_state +{ + float width; + c_vec4 icon; + c_vec4 background; + float alpha; +}; + +c_vec4 g_pill_selected_rect = c_vec4(0, 0, 0, 0); +c_vec4 g_sidebar_selected_rect = c_vec4(0, 0, 0, 0); + +static void append_utf8(std::string& output, unsigned int codepoint) +{ + if (codepoint <= 0x7F) + { + output.push_back(static_cast(codepoint)); + return; + } + + if (codepoint <= 0x7FF) + { + output.push_back(static_cast(0xC0 | (codepoint >> 6))); + output.push_back(static_cast(0x80 | (codepoint & 0x3F))); + return; + } + + if (codepoint <= 0xFFFF) + { + output.push_back(static_cast(0xE0 | (codepoint >> 12))); + output.push_back(static_cast(0x80 | ((codepoint >> 6) & 0x3F))); + output.push_back(static_cast(0x80 | (codepoint & 0x3F))); + return; + } + + output.push_back(static_cast(0xF0 | (codepoint >> 18))); + output.push_back(static_cast(0x80 | ((codepoint >> 12) & 0x3F))); + output.push_back(static_cast(0x80 | ((codepoint >> 6) & 0x3F))); + output.push_back(static_cast(0x80 | (codepoint & 0x3F))); +} + +static unsigned int tab_icon_codepoint(const std::string& icon) +{ + if (icon == "player") return 0xFEA0; // fi-rr-user + if (icon == "shapes") return 0xF71C; // fi-rr-grid + if (icon == "world") return 0xFF21; // fi-rr-world + if (icon == "polish") return 0xF8E1; // fi-rr-magic-wand + if (icon == "combat") return 0xFD32; // fi-rr-sword + if (icon == "aim") return 0xFD5F; // fi-rr-target + if (icon == "loot") return 0xFE19; // fi-rr-treasure-chest + if (icon == "movement") return 0xFB7C; // fi-rr-running + if (icon == "visuals") return 0xF5F8; // fi-rr-eye + if (icon == "hud") return 0xF87D; // fi-rr-layout-fluid + if (icon == "profile") return 0xFEA0; // fi-rr-user + if (icon == "loadout") return 0xF1E7; // fi-rr-backpack + if (icon == "match") return 0xF309; // fi-rr-bullseye + if (icon == "squad") return 0xFEA6; // fi-rr-users + if (icon == "stats") return 0xF3A2; // fi-rr-chart-histogram + return 0; +} + +static std::string tab_icon_glyph(const std::string& icon) +{ + const unsigned int codepoint = tab_icon_codepoint(icon); + if (!codepoint) + return icon; + + std::string glyph; + append_utf8(glyph, codepoint); + return glyph; +} + +static void draw_tab_icon(ImDrawList* draw_list, const c_rect& rect, const std::string& icon, const c_vec4& color, float size, ImFont* fallback_font) +{ + const unsigned int codepoint = tab_icon_codepoint(icon); + const std::string glyph = codepoint ? tab_icon_glyph(icon) : icon; + ImFont* icon_font = codepoint ? font->get_file(flaticon_uicons_regular_rounded_path, size, true) : fallback_font; + + if (!icon_font) + icon_font = fallback_font; + + draw->text_clipped(draw_list, icon_font, rect.Min, rect.Max, + draw->get_clr(color), glyph.c_str(), 0, 0, { 0.5, 0.5 }); +} + +bool c_widgets::tab_button(std::string name, std::string icon, int tab) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + tab_button_state* state = gui->anim_container(id); + + bool is_selected = tab == var->gui.tab_stored; + const float tab_height = 32.f; + const float icon_slot = 32.f; + float target_width = ImMax(gui->content_avail().x, s_(tab_height)); + if (state->width <= 0.f) + state->width = target_width; + gui->easing(state->width, target_width, 18.f, dynamic_easing); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(round(state->width), s_(tab_height)); + c_rect rect = c_rect(pos, pos + size); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool pressed = gui->button_behavior(rect, id, &hovered, nullptr); + + if (pressed) + { + var->gui.tab_stored = tab; + } + + if (is_selected) + g_sidebar_selected_rect = c_vec4(rect.Min.x, rect.Min.y, rect.Max.x, rect.Max.y); + + gui->easing(state->alpha, (is_selected || hovered) ? 1.f : 0.58f, 18.f, dynamic_easing); + gui->easing(state->icon, (is_selected || hovered) ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + + c_vec4 icon_color = state->icon; + icon_color.w *= state->alpha; + draw_tab_icon(window->DrawList, c_rect(rect.Min, rect.Min + s_(icon_slot, tab_height)), icon, icon_color, 12.5f, font->get(icon_font, 14)); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), rect.Min + s_(icon_slot, 0), rect.Max - s_(11, 0), + draw->get_clr(clr->white, state->alpha), name.data(), 0, 0, { 0, 0.5 }); + + return pressed; +} + +bool c_widgets::sub_tab_button(std::string name, std::string icon, int tab, float width) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + tab_button_state* state = gui->anim_container(id); + + bool is_selected = tab == var->gui.sub_tab_stored; + c_vec2 name_size = gui->text_size(font->get(inter_semibold, 11), name.data()); + const float sub_tab_height = 32.f; + const float icon_slot = 32.f; + const float target_width = width > 0.f ? width : (s_(42.f) + name_size.x); + if (state->width <= 0.f) + state->width = target_width; + gui->easing(state->width, target_width, 18.f, dynamic_easing); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(round(state->width), s_(sub_tab_height)); + c_rect rect = c_rect(pos, pos + size); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool hovered = false; + bool pressed = gui->button_behavior(rect, id, &hovered, nullptr); + + if (pressed) + { + var->gui.sub_tab_stored = tab; + } + + if (is_selected) + g_pill_selected_rect = c_vec4(rect.Min.x, rect.Min.y, rect.Max.x, rect.Max.y); + + gui->easing(state->alpha, (is_selected || hovered) ? 1.f : 0.58f, 18.f, dynamic_easing); + gui->easing(state->icon, (is_selected || hovered) ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + + c_vec4 icon_color = state->icon; + icon_color.w *= state->alpha; + draw_tab_icon(window->DrawList, c_rect(rect.Min, rect.Min + s_(icon_slot, sub_tab_height)), icon, icon_color, 12.f, font->get(icon_font, 13)); + draw->text_clipped(window->DrawList, font->get(inter_semibold, 11), rect.Min + s_(icon_slot, 0), rect.Max - s_(10, 0), + draw->get_clr(clr->white, state->alpha), name.data(), 0, 0, { 0, 0.5 }); + + return pressed; +} + +struct category_button_state +{ + c_vec4 text; + c_vec4 background; + c_vec4 button_text; +}; + +bool c_widgets::category_button(std::string name, std::string description, bool* callback) +{ + c_window* window = gui->get_window(); + if (window->SkipItems) + return false; + + c_id id = window->GetID(name.data()); + category_button_state* state = gui->anim_container(id); + + c_vec2 pos = window->DC.CursorPos; + c_vec2 size = c_vec2(elements->tab_window_width, s_(82)); + c_rect rect = c_rect(pos, pos + size); + c_rect inner = c_rect(rect.Min + s_(elements->padding), rect.Max - s_(elements->padding)); + c_rect button = c_rect(inner.GetBL() - s_(0, 27), inner.GetBR()); + + gui->item_size(rect); + if (!gui->item_add(rect, id)) + return false; + + bool pressed = gui->button_behavior(button, id, nullptr, nullptr); + + if (pressed) + { + *callback = !*callback; + } + + gui->easing(state->text, *callback ? clr->white.Value : clr->text.Value, 18.f, dynamic_easing); + gui->easing(state->background, *callback ? clr->accent.Value : clr->widget.Value, 18.f, dynamic_easing); + gui->easing(state->button_text, *callback ? clr->black.Value : clr->white.Value, 18.f, dynamic_easing); + + draw->rect_filled(window->DrawList, rect.Min, rect.Max, draw->get_clr(clr->child), s_(10)); + + draw->text_clipped(window->DrawList, font->get(inter_semibold, 12), inner.Min, inner.Max, draw->get_clr(state->text), + name.data(), 0, 0, { 0, 0 }); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), inner.Min + s_(0, 16), inner.Max, draw->get_clr(clr->text), + description.data(), 0, 0, { 0, 0 }); + + draw->rect_filled(window->DrawList, button.Min, button.Max, draw->get_clr(state->background), s_(8)); + draw->text_clipped(window->DrawList, font->get(inter_medium, 11), button.Min, button.Max, draw->get_clr(state->button_text), + *callback ? "Enabled" : "Disabled", 0, 0, {0.5, 0.5}); + + return pressed; +} diff --git a/external/lumin/framework/widgets/window.cpp b/external/lumin/framework/widgets/window.cpp new file mode 100644 index 0000000..317d38e --- /dev/null +++ b/external/lumin/framework/widgets/window.cpp @@ -0,0 +1,1666 @@ +#include "../headers/functions.h" +#include "../headers/widgets.h" + +static void set_window_condition_allow_flag(ImGuiWindow* window, ImGuiCond flags, bool enabled) +{ + window->SetWindowPosAllowFlags = enabled ? (window->SetWindowPosAllowFlags | flags) : (window->SetWindowPosAllowFlags & ~flags); + window->SetWindowSizeAllowFlags = enabled ? (window->SetWindowSizeAllowFlags | flags) : (window->SetWindowSizeAllowFlags & ~flags); + window->SetWindowCollapsedAllowFlags = enabled ? (window->SetWindowCollapsedAllowFlags | flags) : (window->SetWindowCollapsedAllowFlags & ~flags); +} + +static void apply_window_settings(ImGuiWindow* window, ImGuiWindowSettings* settings) +{ + window->Pos = ImTrunc(ImVec2(settings->Pos.x, settings->Pos.y)); + if (settings->Size.x > 0 && settings->Size.y > 0) + window->Size = window->SizeFull = ImTrunc(ImVec2(settings->Size.x, settings->Size.y)); + window->Collapsed = settings->Collapsed; +} + +static void update_window_in_focus_order_list(ImGuiWindow* window, bool just_created, window_flags new_flags) +{ + ImGuiContext& g = *GImGui; + + const bool new_is_explicit_child = (new_flags & window_flags_child_window) != 0 && ((new_flags & window_flags_popup) == 0 || (new_flags & window_flags_child_menu) != 0); + const bool child_flag_changed = new_is_explicit_child != window->IsExplicitChild; + if ((just_created || child_flag_changed) && !new_is_explicit_child) + { + IM_ASSERT(!g.WindowsFocusOrder.contains(window)); + g.WindowsFocusOrder.push_back(window); + window->FocusOrder = (short)(g.WindowsFocusOrder.Size - 1); + } + else if (!just_created && child_flag_changed && new_is_explicit_child) + { + IM_ASSERT(g.WindowsFocusOrder[window->FocusOrder] == window); + for (int n = window->FocusOrder + 1; n < g.WindowsFocusOrder.Size; n++) + g.WindowsFocusOrder[n]->FocusOrder--; + g.WindowsFocusOrder.erase(g.WindowsFocusOrder.Data + window->FocusOrder); + window->FocusOrder = -1; + } + window->IsExplicitChild = new_is_explicit_child; +} + +static void init_or_load_window_settings(ImGuiWindow* window, ImGuiWindowSettings* settings) +{ + // Initial window state with e.g. default/arbitrary window position + // Use SetNextWindowPos() with the appropriate condition flag to change the initial position of a window. + const ImGuiViewport* main_viewport = ImGui::GetMainViewport(); + window->Pos = main_viewport->Pos + ImVec2(60, 60); + window->Size = window->SizeFull = ImVec2(0, 0); + window->SetWindowPosAllowFlags = window->SetWindowSizeAllowFlags = window->SetWindowCollapsedAllowFlags = ImGuiCond_Always | ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing; + + if (settings != NULL) + { + set_window_condition_allow_flag(window, ImGuiCond_FirstUseEver, false); + apply_window_settings(window, settings); + } + window->DC.CursorStartPos = window->DC.CursorMaxPos = window->DC.IdealMaxPos = window->Pos; // So first call to CalcWindowContentSizes() doesn't return crazy values + + if ((window->Flags & window_flags_always_auto_resize) != 0) + { + window->AutoFitFramesX = window->AutoFitFramesY = 2; + window->AutoFitOnlyGrows = false; + } + else + { + if (window->Size.x <= 0.0f) + window->AutoFitFramesX = 2; + if (window->Size.y <= 0.0f) + window->AutoFitFramesY = 2; + window->AutoFitOnlyGrows = (window->AutoFitFramesX > 0) || (window->AutoFitFramesY > 0); + } +} + +static void calc_window_content_sizes(ImGuiWindow* window, ImVec2* content_size_current, ImVec2* content_size_ideal) +{ + bool preserve_old_content_sizes = false; + if (window->Collapsed && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0) + preserve_old_content_sizes = true; + else if (window->Hidden && window->HiddenFramesCannotSkipItems == 0 && window->HiddenFramesCanSkipItems > 0) + preserve_old_content_sizes = true; + if (preserve_old_content_sizes) + { + *content_size_current = window->ContentSize; + *content_size_ideal = window->ContentSizeIdeal; + return; + } + + content_size_current->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_TRUNC(window->DC.CursorMaxPos.x - window->DC.CursorStartPos.x); + content_size_current->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_TRUNC(window->DC.CursorMaxPos.y - window->DC.CursorStartPos.y); + content_size_ideal->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_TRUNC(ImMax(window->DC.CursorMaxPos.x, window->DC.IdealMaxPos.x) - window->DC.CursorStartPos.x); + content_size_ideal->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_TRUNC(ImMax(window->DC.CursorMaxPos.y, window->DC.IdealMaxPos.y) - window->DC.CursorStartPos.y); +} + +static void set_current_window(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + g.CurrentWindow = window; + g.CurrentTable = window && window->DC.CurrentTableIdx != -1 ? g.Tables.GetByIndex(window->DC.CurrentTableIdx) : NULL; + g.CurrentDpiScale = 1.0f; // FIXME-DPI: WIP this is modified in docking + if (window) + { + g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize(); + g.FontScale = g.DrawListSharedData.FontScale = g.FontSize / g.Font->FontSize; + ImGui::NavUpdateCurrentWindowIsScrollPushableX(); + } +} + +static inline ImVec2 calc_window_min_size(ImGuiWindow* window) +{ + // We give windows non-zero minimum size to facilitate understanding problematic cases (e.g. empty popups) + // FIXME: Essentially we want to restrict manual resizing to WindowMinSize+Decoration, and allow api resizing to be smaller. + // Perhaps should tend further a neater test for this. + ImGuiContext& g = *GImGui; + ImVec2 size_min; + if ((window->Flags & window_flags_child_window) && !(window->Flags & window_flags_popup)) + { + size_min.x = (window->ChildFlags & child_flags_resize_x) ? var->style.window_min_size.x : 4.0f; + size_min.y = (window->ChildFlags & child_flags_resize_y) ? var->style.window_min_size.y : 4.0f; + } + else + { + size_min.x = ((window->Flags & window_flags_always_auto_resize) == 0) ? var->style.window_min_size.x : 4.0f; + size_min.y = ((window->Flags & window_flags_always_auto_resize) == 0) ? var->style.window_min_size.y : 4.0f; + } + + // Reduce artifacts with very small windows + ImGuiWindow* window_for_height = window; + size_min.y = ImMax(size_min.y, window_for_height->TitleBarHeight + window_for_height->MenuBarHeight + ImMax(0.0f, var->style.window_rounding - 1.0f)); + return size_min; +} + +static ImVec2 calc_window_size_after_constraint(ImGuiWindow* window, const ImVec2& size_desired) +{ + ImGuiContext& g = *GImGui; + ImVec2 new_size = size_desired; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint) + { + // See comments in SetNextWindowSizeConstraints() for details about setting size_min an size_max. + ImRect cr = g.NextWindowData.SizeConstraintRect; + new_size.x = (cr.Min.x >= 0 && cr.Max.x >= 0) ? ImClamp(new_size.x, cr.Min.x, cr.Max.x) : window->SizeFull.x; + new_size.y = (cr.Min.y >= 0 && cr.Max.y >= 0) ? ImClamp(new_size.y, cr.Min.y, cr.Max.y) : window->SizeFull.y; + if (g.NextWindowData.SizeCallback) + { + ImGuiSizeCallbackData data; + data.UserData = g.NextWindowData.SizeCallbackUserData; + data.Pos = window->Pos; + data.CurrentSize = window->SizeFull; + data.DesiredSize = new_size; + g.NextWindowData.SizeCallback(&data); + new_size = data.DesiredSize; + } + new_size.x = IM_TRUNC(new_size.x); + new_size.y = IM_TRUNC(new_size.y); + } + + // Minimum size + ImVec2 size_min = calc_window_min_size(window); + return ImMax(new_size, size_min); +} + +static ImVec2 calc_window_auto_fit_size(ImGuiWindow* window, const ImVec2& size_contents) +{ + ImGuiContext& g = *GImGui; + + const float decoration_w_without_scrollbars = window->DecoOuterSizeX1 + window->DecoOuterSizeX2 - window->ScrollbarSizes.x; + const float decoration_h_without_scrollbars = window->DecoOuterSizeY1 + window->DecoOuterSizeY2 - window->ScrollbarSizes.y; + ImVec2 size_pad = window->WindowPadding * 2.0f; + ImVec2 size_desired = size_contents + size_pad + ImVec2(decoration_w_without_scrollbars, decoration_h_without_scrollbars); + if (window->Flags & window_flags_tooltip) + { + // Tooltip always resize + return size_desired; + } + else + { + // Maximum window size is determined by the viewport size or monitor size + ImVec2 size_min = calc_window_min_size(window); + ImVec2 size_max = ((window->Flags & window_flags_child_window) && !(window->Flags & window_flags_popup)) ? ImVec2(FLT_MAX, FLT_MAX) : ImGui::GetMainViewport()->WorkSize - var->style.display_safe_area_padding * 2.0f; + ImVec2 size_auto_fit = ImClamp(size_desired, size_min, size_max); + + // FIXME: CalcWindowAutoFitSize() doesn't take into account that only one axis may be auto-fit when calculating scrollbars, + // we may need to compute/store three variants of size_auto_fit, for x/y/xy. + // Here we implement a workaround for child windows only, but a full solution would apply to normal windows as well: + if ((window->ChildFlags & child_flags_resize_x) && !(window->ChildFlags & child_flags_resize_y)) + size_auto_fit.y = window->SizeFull.y; + else if (!(window->ChildFlags & child_flags_resize_x) && (window->ChildFlags & child_flags_resize_y)) + size_auto_fit.x = window->SizeFull.x; + + // When the window cannot fit all contents (either because of constraints, either because screen is too small), + // we are growing the size on the other axis to compensate for expected scrollbar. FIXME: Might turn bigger than ViewportSize-WindowPadding. + ImVec2 size_auto_fit_after_constraint = calc_window_size_after_constraint(window, size_auto_fit); + bool will_have_scrollbar_x = (size_auto_fit_after_constraint.x - size_pad.x - decoration_w_without_scrollbars < size_contents.x && !(window->Flags & window_flags_no_scrollbar) && (window->Flags & window_flags_horizontal_scrollbar)) || (window->Flags & window_flags_always_horizontal_scrollbar); + bool will_have_scrollbar_y = (size_auto_fit_after_constraint.y - size_pad.y - decoration_h_without_scrollbars < size_contents.y && !(window->Flags & window_flags_no_scrollbar)) || (window->Flags & window_flags_always_vertical_scrollbar); + if (will_have_scrollbar_x) + size_auto_fit.y += var->style.scrollbar_size; + if (will_have_scrollbar_y) + size_auto_fit.x += var->style.scrollbar_size; + return size_auto_fit; + } +} + +static inline void clamp_window_pos(ImGuiWindow* window, const ImRect& visibility_rect) +{ + ImGuiContext& g = *GImGui; + ImVec2 size_for_clamping = window->Size; + if (g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & window_flags_no_title_bar)) + size_for_clamping.y = window->TitleBarHeight; + window->Pos = ImClamp(window->Pos, visibility_rect.Min - size_for_clamping, visibility_rect.Max); +} + +static const float WINDOWS_HOVER_PADDING = 4.0f; +static const float WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER = 0.04f; +static const float WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER = 0.70f; + +static void calc_resize_pos_size_from_any_corner(ImGuiWindow* window, const ImVec2& corner_target, const ImVec2& corner_norm, ImVec2* out_pos, ImVec2* out_size) +{ + ImVec2 pos_min = ImLerp(corner_target, window->Pos, corner_norm); // Expected window upper-left + ImVec2 pos_max = ImLerp(window->Pos + window->Size, corner_target, corner_norm); // Expected window lower-right + ImVec2 size_expected = pos_max - pos_min; + ImVec2 size_constrained = calc_window_size_after_constraint(window, size_expected); + *out_pos = pos_min; + if (corner_norm.x == 0.0f) + out_pos->x -= (size_constrained.x - size_expected.x); + if (corner_norm.y == 0.0f) + out_pos->y -= (size_constrained.y - size_expected.y); + *out_size = size_constrained; +} + +struct ImGuiResizeGripDef +{ + ImVec2 CornerPosN; + ImVec2 InnerDir; + int AngleMin12, AngleMax12; +}; +static const ImGuiResizeGripDef resize_grip_def[4] = +{ + { ImVec2(1, 1), ImVec2(-1, -1), 0, 3 }, // Lower-right + { ImVec2(0, 1), ImVec2(+1, -1), 3, 6 }, // Lower-left + { ImVec2(0, 0), ImVec2(+1, +1), 6, 9 }, // Upper-left (Unused) + { ImVec2(1, 0), ImVec2(-1, +1), 9, 12 } // Upper-right (Unused) +}; + +struct ImGuiResizeBorderDef +{ + ImVec2 InnerDir; // Normal toward inside + ImVec2 SegmentN1, SegmentN2; // End positions, normalized (0,0: upper left) + float OuterAngle; // Angle toward outside +}; +static const ImGuiResizeBorderDef resize_border_def[4] = +{ + { ImVec2(+1, 0), ImVec2(0, 1), ImVec2(0, 0), IM_PI * 1.00f }, // Left + { ImVec2(-1, 0), ImVec2(1, 0), ImVec2(1, 1), IM_PI * 0.00f }, // Right + { ImVec2(0, +1), ImVec2(0, 0), ImVec2(1, 0), IM_PI * 1.50f }, // Up + { ImVec2(0, -1), ImVec2(1, 1), ImVec2(0, 1), IM_PI * 0.50f } // Down +}; + +static ImRect get_resize_border_rect(ImGuiWindow* window, int border_n, float perp_padding, float thickness) +{ + ImRect rect = window->Rect(); + if (thickness == 0.0f) + rect.Max -= ImVec2(1, 1); + if (border_n == ImGuiDir_Left) { return ImRect(rect.Min.x - thickness, rect.Min.y + perp_padding, rect.Min.x + thickness, rect.Max.y - perp_padding); } + if (border_n == ImGuiDir_Right) { return ImRect(rect.Max.x - thickness, rect.Min.y + perp_padding, rect.Max.x + thickness, rect.Max.y - perp_padding); } + if (border_n == ImGuiDir_Up) { return ImRect(rect.Min.x + perp_padding, rect.Min.y - thickness, rect.Max.x - perp_padding, rect.Min.y + thickness); } + if (border_n == ImGuiDir_Down) { return ImRect(rect.Min.x + perp_padding, rect.Max.y - thickness, rect.Max.x - perp_padding, rect.Max.y + thickness); } + IM_ASSERT(0); + return ImRect(); +} + +static int update_window_manual_resize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* border_hovered, int* border_held, int resize_grip_count, ImU32 resize_grip_col[4], const ImRect& visibility_rect) +{ + ImGuiContext& g = *GImGui; + window_flags flags = (window_flags)window->Flags; + + if ((flags & window_flags_no_resize) || (flags & window_flags_always_auto_resize) || window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + return false; + if (window->WasActive == false) // Early out to avoid running this code for e.g. a hidden implicit/fallback Debug window. + return false; + + int ret_auto_fit_mask = 0x00; + const float grip_draw_size = IM_TRUNC(ImMax(g.FontSize * 1.35f, window->WindowRounding + 1.0f + g.FontSize * 0.2f)); + const float grip_hover_inner_size = (resize_grip_count > 0) ? IM_TRUNC(grip_draw_size * 0.75f) : 0.0f; + const float grip_hover_outer_size = g.IO.ConfigWindowsResizeFromEdges ? WINDOWS_HOVER_PADDING : 0.0f; + + ImRect clamp_rect = visibility_rect; + const bool window_move_from_title_bar = g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & window_flags_no_title_bar); + if (window_move_from_title_bar) + clamp_rect.Min.y -= window->TitleBarHeight; + + ImVec2 pos_target(FLT_MAX, FLT_MAX); + ImVec2 size_target(FLT_MAX, FLT_MAX); + + // Resize grips and borders are on layer 1 + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + + // Manual resize grips + PushID("#RESIZE"); + for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++) + { + const ImGuiResizeGripDef& def = resize_grip_def[resize_grip_n]; + const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, def.CornerPosN); + + // Using the FlattenChilds button flag we make the resize button accessible even if we are hovering over a child window + bool hovered, held; + ImRect resize_rect(corner - def.InnerDir * grip_hover_outer_size, corner + def.InnerDir * grip_hover_inner_size); + if (resize_rect.Min.x > resize_rect.Max.x) ImSwap(resize_rect.Min.x, resize_rect.Max.x); + if (resize_rect.Min.y > resize_rect.Max.y) ImSwap(resize_rect.Min.y, resize_rect.Max.y); + ImGuiID resize_grip_id = window->GetID(resize_grip_n); // == GetWindowResizeCornerID() + ItemAdd(resize_rect, resize_grip_id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(resize_rect, resize_grip_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); + //GetForegroundDrawList(window)->AddRect(resize_rect.Min, resize_rect.Max, IM_COL32(255, 255, 0, 255)); + if (hovered || held) + SetMouseCursor((resize_grip_n & 1) ? ImGuiMouseCursor_ResizeNESW : ImGuiMouseCursor_ResizeNWSE); + + if (held && g.IO.MouseDoubleClicked[0]) + { + // Auto-fit when double-clicking + size_target = calc_window_size_after_constraint(window, size_auto_fit); + ret_auto_fit_mask = 0x03; // Both axises + ClearActiveID(); + } + else if (held) + { + // Resize from any of the four corners + // We don't use an incremental MouseDelta but rather compute an absolute target size based on mouse position + ImVec2 clamp_min = ImVec2(def.CornerPosN.x == 1.0f ? clamp_rect.Min.x : -FLT_MAX, (def.CornerPosN.y == 1.0f || (def.CornerPosN.y == 0.0f && window_move_from_title_bar)) ? clamp_rect.Min.y : -FLT_MAX); + ImVec2 clamp_max = ImVec2(def.CornerPosN.x == 0.0f ? clamp_rect.Max.x : +FLT_MAX, def.CornerPosN.y == 0.0f ? clamp_rect.Max.y : +FLT_MAX); + ImVec2 corner_target = g.IO.MousePos - g.ActiveIdClickOffset + ImLerp(def.InnerDir * grip_hover_outer_size, def.InnerDir * -grip_hover_inner_size, def.CornerPosN); // Corner of the window corresponding to our corner grip + corner_target = ImClamp(corner_target, clamp_min, clamp_max); + calc_resize_pos_size_from_any_corner(window, corner_target, def.CornerPosN, &pos_target, &size_target); + } + + // Only lower-left grip is visible before hovering/activating + if (resize_grip_n == 0 || held || hovered) + resize_grip_col[resize_grip_n] = draw->w_get_clr(held ? style_col_resize_grip : hovered ? style_col_resize_grip_hovered : style_col_resize_grip); + } + + int resize_border_mask = 0x00; + if (window->Flags & window_flags_child_window) + resize_border_mask |= ((window->ChildFlags & child_flags_resize_x) ? 0x02 : 0) | ((window->ChildFlags & child_flags_resize_y) ? 0x08 : 0); + else + resize_border_mask = g.IO.ConfigWindowsResizeFromEdges ? 0x0F : 0x00; + for (int border_n = 0; border_n < 4; border_n++) + { + if ((resize_border_mask & (1 << border_n)) == 0) + continue; + const ImGuiResizeBorderDef& def = resize_border_def[border_n]; + const ImGuiAxis axis = (border_n == ImGuiDir_Left || border_n == ImGuiDir_Right) ? ImGuiAxis_X : ImGuiAxis_Y; + + bool hovered, held; + ImRect border_rect = get_resize_border_rect(window, border_n, grip_hover_inner_size, WINDOWS_HOVER_PADDING); + ImGuiID border_id = window->GetID(border_n + 4); // == GetWindowResizeBorderID() + ItemAdd(border_rect, border_id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(border_rect, border_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); + //GetForegroundDrawList(window)->AddRect(border_rect.Min, border_rect.Max, IM_COL32(255, 255, 0, 255)); + if (hovered && g.HoveredIdTimer <= WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER) + hovered = false; + if (hovered || held) + SetMouseCursor((axis == ImGuiAxis_X) ? ImGuiMouseCursor_ResizeEW : ImGuiMouseCursor_ResizeNS); + if (held && g.IO.MouseDoubleClicked[0]) + { + // Double-clicking bottom or right border auto-fit on this axis + // FIXME: CalcWindowAutoFitSize() doesn't take into account that only one side may be auto-fit when calculating scrollbars. + // FIXME: Support top and right borders: rework CalcResizePosSizeFromAnyCorner() to be reusable in both cases. + if (border_n == 1 || border_n == 3) // Right and bottom border + { + size_target[axis] = calc_window_size_after_constraint(window, size_auto_fit)[axis]; + ret_auto_fit_mask |= (1 << axis); + hovered = held = false; // So border doesn't show highlighted at new position + } + ClearActiveID(); + } + else if (held) + { + // Switch to relative resizing mode when border geometry moved (e.g. resizing a child altering parent scroll), in order to avoid resizing feedback loop. + // Currently only using relative mode on resizable child windows, as the problem to solve is more likely noticeable for them, but could apply for all windows eventually. + // FIXME: May want to generalize this idiom at lower-level, so more widgets can use it! + const bool just_scrolled_manually_while_resizing = (g.WheelingWindow != NULL && g.WheelingWindowScrolledFrame == g.FrameCount && IsWindowChildOf(window, g.WheelingWindow, false)); + if (g.ActiveIdIsJustActivated || just_scrolled_manually_while_resizing) + { + g.WindowResizeBorderExpectedRect = border_rect; + g.WindowResizeRelativeMode = false; + } + if ((window->Flags & window_flags_child_window) && memcmp(&g.WindowResizeBorderExpectedRect, &border_rect, sizeof(ImRect)) != 0) + g.WindowResizeRelativeMode = true; + + const ImVec2 border_curr = (window->Pos + ImMin(def.SegmentN1, def.SegmentN2) * window->Size); + const float border_target_rel_mode_for_axis = border_curr[axis] + g.IO.MouseDelta[axis]; + const float border_target_abs_mode_for_axis = g.IO.MousePos[axis] - g.ActiveIdClickOffset[axis] + WINDOWS_HOVER_PADDING; // Match ButtonBehavior() padding above. + + // Use absolute mode position + ImVec2 border_target = window->Pos; + border_target[axis] = border_target_abs_mode_for_axis; + + // Use relative mode target for child window, ignore resize when moving back toward the ideal absolute position. + bool ignore_resize = false; + if (g.WindowResizeRelativeMode) + { + //GetForegroundDrawList()->AddText(GetMainViewport()->WorkPos, IM_COL32_WHITE, "Relative Mode"); + border_target[axis] = border_target_rel_mode_for_axis; + if (g.IO.MouseDelta[axis] == 0.0f || (g.IO.MouseDelta[axis] > 0.0f) == (border_target_rel_mode_for_axis > border_target_abs_mode_for_axis)) + ignore_resize = true; + } + + // Clamp, apply + ImVec2 clamp_min(border_n == ImGuiDir_Right ? clamp_rect.Min.x : -FLT_MAX, border_n == ImGuiDir_Down || (border_n == ImGuiDir_Up && window_move_from_title_bar) ? clamp_rect.Min.y : -FLT_MAX); + ImVec2 clamp_max(border_n == ImGuiDir_Left ? clamp_rect.Max.x : +FLT_MAX, border_n == ImGuiDir_Up ? clamp_rect.Max.y : +FLT_MAX); + border_target = ImClamp(border_target, clamp_min, clamp_max); + if (flags & window_flags_child_menu) // Clamp resizing of childs within parent + { + ImGuiWindow* parent_window = window->ParentWindow; + window_flags parent_flags = (window_flags)parent_window->Flags; + ImRect border_limit_rect = parent_window->InnerRect; + border_limit_rect.Expand(ImVec2(-ImMax(parent_window->WindowPadding.x, parent_window->WindowBorderSize), -ImMax(parent_window->WindowPadding.y, parent_window->WindowBorderSize))); + if ((axis == ImGuiAxis_X) && ((parent_flags & (window_flags_horizontal_scrollbar | window_flags_always_horizontal_scrollbar)) == 0 || (parent_flags & window_flags_no_scrollbar))) + border_target.x = ImClamp(border_target.x, border_limit_rect.Min.x, border_limit_rect.Max.x); + if ((axis == ImGuiAxis_Y) && (parent_flags & window_flags_no_scrollbar)) + border_target.y = ImClamp(border_target.y, border_limit_rect.Min.y, border_limit_rect.Max.y); + } + if (!ignore_resize) + calc_resize_pos_size_from_any_corner(window, border_target, ImMin(def.SegmentN1, def.SegmentN2), &pos_target, &size_target); + } + if (hovered) + *border_hovered = border_n; + if (held) + *border_held = border_n; + } + PopID(); + + // Restore nav layer + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + + // Navigation resize (keyboard/gamepad) + // FIXME: This cannot be moved to NavUpdateWindowing() because CalcWindowSizeAfterConstraint() need to callback into user. + // Not even sure the callback works here. + if (g.NavWindowingTarget && g.NavWindowingTarget->RootWindow == window) + { + ImVec2 nav_resize_dir; + if (g.NavInputSource == ImGuiInputSource_Keyboard && g.IO.KeyShift) + nav_resize_dir = GetKeyMagnitude2d(ImGuiKey_LeftArrow, ImGuiKey_RightArrow, ImGuiKey_UpArrow, ImGuiKey_DownArrow); + if (g.NavInputSource == ImGuiInputSource_Gamepad) + nav_resize_dir = GetKeyMagnitude2d(ImGuiKey_GamepadDpadLeft, ImGuiKey_GamepadDpadRight, ImGuiKey_GamepadDpadUp, ImGuiKey_GamepadDpadDown); + if (nav_resize_dir.x != 0.0f || nav_resize_dir.y != 0.0f) + { + const float NAV_RESIZE_SPEED = 600.0f; + const float resize_step = NAV_RESIZE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale.x, g.IO.DisplayFramebufferScale.y); + g.NavWindowingAccumDeltaSize += nav_resize_dir * resize_step; + g.NavWindowingAccumDeltaSize = ImMax(g.NavWindowingAccumDeltaSize, clamp_rect.Min - window->Pos - window->Size); // We need Pos+Size >= clmap_rect.Min, so Size >= clmap_rect.Min - Pos, so size_delta >= clmap_rect.Min - window->Pos - window->Size + g.NavWindowingToggleLayer = false; + g.NavDisableMouseHover = true; + resize_grip_col[0] = draw->w_get_clr(style_col_resize_grip_active); + ImVec2 accum_floored = ImTrunc(g.NavWindowingAccumDeltaSize); + if (accum_floored.x != 0.0f || accum_floored.y != 0.0f) + { + // FIXME-NAV: Should store and accumulate into a separate size buffer to handle sizing constraints properly, right now a constraint will make us stuck. + size_target = calc_window_size_after_constraint(window, window->SizeFull + accum_floored); + g.NavWindowingAccumDeltaSize -= accum_floored; + } + } + } + + // Apply back modified position/size to window + const ImVec2 curr_pos = window->Pos; + const ImVec2 curr_size = window->SizeFull; + if (size_target.x != FLT_MAX && (window->Size.x != size_target.x || window->SizeFull.x != size_target.x)) + window->Size.x = window->SizeFull.x = size_target.x; + if (size_target.y != FLT_MAX && (window->Size.y != size_target.y || window->SizeFull.y != size_target.y)) + window->Size.y = window->SizeFull.y = size_target.y; + if (pos_target.x != FLT_MAX && window->Pos.x != ImTrunc(pos_target.x)) + window->Pos.x = ImTrunc(pos_target.x); + if (pos_target.y != FLT_MAX && window->Pos.y != ImTrunc(pos_target.y)) + window->Pos.y = ImTrunc(pos_target.y); + if (curr_pos.x != window->Pos.x || curr_pos.y != window->Pos.y || curr_size.x != window->SizeFull.x || curr_size.y != window->SizeFull.y) + MarkIniSettingsDirty(window); + + // Recalculate next expected border expected coordinates + if (*border_held != -1) + g.WindowResizeBorderExpectedRect = get_resize_border_rect(window, *border_held, grip_hover_inner_size, WINDOWS_HOVER_PADDING); + + return ret_auto_fit_mask; +} + +static float calc_scroll_edge_snap(float target, float snap_min, float snap_max, float snap_threshold, float center_ratio) +{ + if (target <= snap_min + snap_threshold) + return ImLerp(snap_min, target, center_ratio); + if (target >= snap_max - snap_threshold) + return ImLerp(target, snap_max, center_ratio); + return target; +} + +constexpr float SCROLL_CLAMP_THRESHOLD = 20.0f; +constexpr float SCROLL_INACCURACY = 2.0f; + +static inline ImVec2 calc_next_scroll_from_scroll_target_and_clamp(ImGuiWindow* window) +{ + ImVec2 scroll = window->Scroll; + ImVec2 decoration_size(window->DecoOuterSizeX1 + window->DecoInnerSizeX1 + window->DecoOuterSizeX2, window->DecoOuterSizeY1 + window->DecoInnerSizeY1 + window->DecoOuterSizeY2); + for (int axis = 0; axis < 2; axis++) + { + if (window->ScrollTarget[axis] < FLT_MAX) + { + float center_ratio = window->ScrollTargetCenterRatio[axis]; + float scroll_target = window->ScrollTarget[axis]; + if (window->ScrollTargetEdgeSnapDist[axis] > 0.0f) + { + float snap_min = 0.0f; + float snap_max = window->ScrollMax[axis] + window->SizeFull[axis] - decoration_size[axis]; + scroll_target = calc_scroll_edge_snap(scroll_target, snap_min, snap_max, window->ScrollTargetEdgeSnapDist[axis], center_ratio); + } + scroll[axis] = scroll_target - center_ratio * (window->SizeFull[axis] - decoration_size[axis]); + } + scroll[axis] = IM_ROUND(ImMax(scroll[axis], 0.0f)); + if (!window->Collapsed && !window->SkipItems) + scroll[axis] = ImMin(scroll[axis], window->ScrollMax[axis]); + } + return scroll; +} + +static ImGuiWindow* create_new_window(const char* name, window_flags flags) +{ + // Create window the first time + //IMGUI_DEBUG_LOG("CreateNewWindow '%s', flags = 0x%08X\n", name, flags); + ImGuiContext& g = *GImGui; + ImGuiWindow* window = IM_NEW(ImGuiWindow)(&g, name); + window->Flags = flags; + g.WindowsById.SetVoidPtr(window->ID, window); + + ImGuiWindowSettings* settings = NULL; + if (!(flags & window_flags_no_saved_settings)) + if ((settings = ImGui::FindWindowSettingsByWindow(window)) != 0) + window->SettingsOffset = g.SettingsWindows.offset_from_ptr(settings); + + init_or_load_window_settings(window, settings); + + if (flags & window_flags_no_bring_to_front_on_focus) + g.Windows.push_front(window); // Quite slow but rare and only once + else + g.Windows.push_back(window); + + return window; +} + +static style_col get_window_bg_color_idx(ImGuiWindow* window) +{ + if (window->Flags & (window_flags_tooltip | window_flags_popup)) + return style_col_popup_bg; + if (window->Flags & window_flags_child_window) + return style_col_child_bg; + return style_col_window_bg; +} + +void render_window_shadow(ImGuiWindow* window, float shadow_size, const ImVec2& shadow_offset, const ImU32 shadow_col) +{ + window->DrawList->AddShadowRect(window->Pos, window->Pos + window->Size, shadow_col, shadow_size, shadow_offset, ImDrawFlags_ShadowCutOutShapeBackground, window->WindowRounding); +} + +static void render_window_outer_single_border(ImGuiWindow* window, int border_n, ImU32 border_col, float border_size) +{ + const ImGuiResizeBorderDef& def = resize_border_def[border_n]; + const float rounding = window->WindowRounding; + const ImRect border_r = get_resize_border_rect(window, border_n, rounding, 0.0f); + window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN1) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle - IM_PI * 0.25f, def.OuterAngle); + window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN2) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle, def.OuterAngle + IM_PI * 0.25f); + window->DrawList->PathStroke(border_col, ImDrawFlags_None, border_size); +} + +static void render_window_outer_borders(ImGuiWindow* window) +{ + const float border_size = window->WindowBorderSize; + const ImU32 border_col = draw->w_get_clr(style_col_border); + if (border_size > 0.0f && (window->Flags & window_flags_no_background) == 0) + window->DrawList->AddRect(window->Pos, window->Pos + window->Size, border_col, window->WindowRounding, 0, window->WindowBorderSize); + else if (border_size > 0.0f) + { + if (window->ChildFlags & child_flags_resize_x) // Similar code as 'resize_border_mask' computation in UpdateWindowManualResize() but we specifically only always draw explicit child resize border. + render_window_outer_single_border(window, 1, border_col, border_size); + if (window->ChildFlags & child_flags_auto_resize_y) + render_window_outer_single_border(window, 3, border_col, border_size); + } + if (window->ResizeBorderHovered != -1 || window->ResizeBorderHeld != -1) + { + const int border_n = (window->ResizeBorderHeld != -1) ? window->ResizeBorderHeld : window->ResizeBorderHovered; + const ImU32 border_col_resizing = draw->w_get_clr((window->ResizeBorderHeld != -1) ? style_col_separator_active : style_col_separator_hovered); + render_window_outer_single_border(window, border_n, border_col_resizing, ImMax(2.0f, window->WindowBorderSize)); // Thicker than usual + } + if (var->style.frame_border_size > 0 && !(window->Flags & window_flags_no_title_bar)) + { + float y = window->Pos.y + window->TitleBarHeight - 1; + window->DrawList->AddLine(ImVec2(window->Pos.x + border_size, y), ImVec2(window->Pos.x + window->Size.x - border_size, y), border_col, var->style.frame_border_size); + } +} + +bool scrollbar_ex(const ImRect& bb_frame, ImGuiID id, ImGuiAxis axis, float* p_scroll_v, ImS64 size_visible_v, ImS64 size_contents_v) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + const float bb_frame_width = bb_frame.GetWidth(); + const float bb_frame_height = bb_frame.GetHeight(); + const ImVec2 border_padding = var->style.scrollbar_border_padding; + + if (bb_frame_width <= 0.0f || bb_frame_height <= 0.0f) + return false; + + // When we are too small, start hiding and disabling the grab (this reduce visual noise on very small window and facilitate using the window resize grab) + float alpha = 1.0f; + if ((axis == ImGuiAxis_Y) && bb_frame_height < g.FontSize + var->style.frame_padding.y * 2.0f) + alpha = ImSaturate((bb_frame_height - g.FontSize) / (var->style.frame_padding.y * 2.0f)); + if (alpha <= 0.0f) + return false; + + + const bool allow_interaction = (alpha >= 1.0f); + + ImRect bb; + + if (axis == ImGuiAxis_Y) + bb = { bb_frame.Min - ImVec2(border_padding.x - 1, -border_padding.y), bb_frame.Max - border_padding + ImVec2(1, 0) }; + else + bb = { bb_frame.Min - ImVec2(-border_padding.x, border_padding.y - 1), bb_frame.Max - border_padding + ImVec2(0, 1) }; + + // V denote the main, longer axis of the scrollbar (= height for a vertical scrollbar) + const float scrollbar_size_v = (axis == ImGuiAxis_X) ? bb.GetWidth() : bb.GetHeight(); + + // Calculate the height of our grabbable box. It generally represent the amount visible (vs the total scrollable amount) + // But we maintain a minimum size in pixel to allow for the user to still aim inside. + IM_ASSERT(ImMax(size_contents_v, size_visible_v) > 0.0f); // Adding this assert to check if the ImMax(XXX,1.0f) is still needed. PLEASE CONTACT ME if this triggers. + const ImS64 win_size_v = ImMax(ImMax(size_contents_v, size_visible_v), (ImS64)1); + const float grab_h_pixels = ImClamp(scrollbar_size_v * ((float)size_visible_v / (float)win_size_v), var->style.grab_min_size, scrollbar_size_v); + const float grab_h_norm = grab_h_pixels / scrollbar_size_v; + + gui->item_add(bb_frame, id, NULL, ImGuiItemFlags_NoNav); + bool held, hovered, pressed = gui->button_behavior(bb, id, &hovered, &held, ImGuiButtonFlags_NoNavFocus); + + const ImS64 scroll_max = ImMax((ImS64)1, size_contents_v - size_visible_v); + float scroll_ratio = ImSaturate((float)*p_scroll_v / (float)scroll_max); + float grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; + + const float scrollbar_pos_v = bb.Min[axis]; + const float mouse_pos_v = g.IO.MousePos[axis]; + + const float normalized = ImSaturate((mouse_pos_v - scrollbar_pos_v) / scrollbar_size_v); + const float animated_normalized = (mouse_pos_v - scrollbar_pos_v) / scrollbar_size_v; + const float absolute_normalized = ImClamp(animated_normalized > 0.f ? animated_normalized : (1.f - animated_normalized), 0.f, 3.f); + const bool is_out_of_bounds = (animated_normalized < 0.0f || animated_normalized > 1.0f) && held; + + if (held && allow_interaction && grab_h_norm < 1.0f) + { + gui->easing(*p_scroll_v, normalized * scroll_max, 15.f, dynamic_easing); + + scroll_ratio = ImSaturate((float)*p_scroll_v / (float)scroll_max); + grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; + + } + + ImRect grab_rect; + if (axis == ImGuiAxis_X) + grab_rect = ImRect(ImLerp(bb.Min.x, bb.Max.x, grab_v_norm), bb.Min.y, ImLerp(bb.Min.x, bb.Max.x, grab_v_norm) + grab_h_pixels, bb.Max.y); + else + grab_rect = ImRect(bb.Min.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm), bb.Max.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm) + grab_h_pixels); + + draw->rect_filled(window->DrawList, bb.Min, bb.Max, draw->get_clr(clr->child), s_(2)); + draw->rect_filled(window->DrawList, grab_rect.Min, grab_rect.Max, draw->get_clr(clr->accent), s_(2)); + + return held; +} + +void scrollbar(ImGuiAxis axis) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiID id = GetWindowScrollbarID(window, axis); + + ImRect bb = GetWindowScrollbarRect(window, axis); + + float size_visible = window->InnerRect.Max[axis] - window->InnerRect.Min[axis]; + float size_contents = window->ContentSize[axis] + window->WindowPadding[axis] * 2.0f; + float scroll = window->Scroll[axis]; + scrollbar_ex(bb, id, axis, &scroll, (ImS64)size_visible, (ImS64)size_contents); + window->Scroll[axis] = (float)scroll; +} + +void render_window_decorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool title_bar_is_highlight, bool handle_borders_and_resize_grips, int resize_grip_count, const ImU32 resize_grip_col[4], float resize_grip_draw_size) +{ + ImGuiContext& g = *GImGui; + window_flags flags = (window_flags)window->Flags; + + // Ensure that ScrollBar doesn't read last frame's SkipItems + IM_ASSERT(window->BeginCount == 0); + window->SkipItems = false; + + // Draw window + handle manual resize + // As we highlight the title bar when want_focus is set, multiple reappearing windows will have their title bar highlighted on their reappearing frame. + const float window_rounding = window->WindowRounding; + const float window_border_size = window->WindowBorderSize; + if (window->Collapsed) + { + // Title bar only + const float backup_border_size = var->style.frame_border_size; + var->style.frame_border_size = window->WindowBorderSize; + ImU32 title_bar_col = draw->w_get_clr((title_bar_is_highlight && !g.NavDisableHighlight) ? style_col_title_bg_active : style_col_title_bg_collapsed); + RenderFrame(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, true, window_rounding); + var->style.frame_border_size = backup_border_size; + } + else + { + // Window background + if (!(flags & window_flags_no_background)) + { + ImU32 bg_col = draw->w_get_clr(get_window_bg_color_idx(window)); + bool override_alpha = false; + float alpha = 1.0f; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasBgAlpha) + { + alpha = g.NextWindowData.BgAlphaVal; + override_alpha = true; + } + if (override_alpha) + bg_col = (bg_col & ~IM_COL32_A_MASK) | (IM_F32_TO_INT8_SAT(alpha) << IM_COL32_A_SHIFT); + window->DrawList->AddRectFilled(window->Pos + ImVec2(0, window->TitleBarHeight), window->Pos + window->Size, bg_col, window_rounding, (flags & window_flags_no_title_bar) ? 0 : ImDrawFlags_RoundCornersBottom); + } + + // Draw window shadow + if (var->style.window_shadow_size > 0.0f && (!(flags & window_flags_child_window) || (flags & window_flags_popup))) + if (var->style.colors[style_col_window_shadow].w > 0.0f) + render_window_shadow(window, var->style.window_shadow_size, var->style.window_shadow_offset, draw->get_clr(var->style.colors[style_col_window_shadow])); + + // Title bar + if (!(flags & window_flags_no_title_bar)) + { + ImU32 title_bar_col = draw->w_get_clr(title_bar_is_highlight ? style_col_title_bg_active : style_col_title_bg); + window->DrawList->AddRectFilled(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, window_rounding, ImDrawFlags_RoundCornersTop); + } + + // Menu bar + if (flags & window_flags_menu_bar) + { + ImRect menu_bar_rect = window->MenuBarRect(); + menu_bar_rect.ClipWith(window->Rect()); // Soft clipping, in particular child window don't have minimum size covering the menu bar so this is useful for them. + window->DrawList->AddRectFilled(menu_bar_rect.Min + ImVec2(window_border_size, 0), menu_bar_rect.Max - ImVec2(window_border_size, 0), draw->w_get_clr(style_col_menu_bar_bg), (flags & window_flags_no_title_bar) ? window_rounding : 0.0f, ImDrawFlags_RoundCornersTop); + if (var->style.frame_border_size > 0.0f && menu_bar_rect.Max.y < window->Pos.y + window->Size.y) + window->DrawList->AddLine(menu_bar_rect.GetBL(), menu_bar_rect.GetBR(), draw->w_get_clr(style_col_border), var->style.frame_border_size); + } + + // Scrollbars + if (window->ScrollbarX) + scrollbar(ImGuiAxis_X); + if (window->ScrollbarY) + scrollbar(ImGuiAxis_Y); + + // Render resize grips (after their input handling so we don't have a frame of latency) + if (handle_borders_and_resize_grips && !(flags & window_flags_no_resize)) + { + for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++) + { + const ImU32 col = resize_grip_col[resize_grip_n]; + if ((col & IM_COL32_A_MASK) == 0) + continue; + const ImGuiResizeGripDef& grip = resize_grip_def[resize_grip_n]; + const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, grip.CornerPosN); + window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(window_border_size, resize_grip_draw_size) : ImVec2(resize_grip_draw_size, window_border_size))); + window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(resize_grip_draw_size, window_border_size) : ImVec2(window_border_size, resize_grip_draw_size))); + window->DrawList->PathArcToFast(ImVec2(corner.x + grip.InnerDir.x * (window_rounding + window_border_size), corner.y + grip.InnerDir.y * (window_rounding + window_border_size)), window_rounding, grip.AngleMin12, grip.AngleMax12); + window->DrawList->PathFillConvex(col); + } + } + + // Borders + if (handle_borders_and_resize_grips) + render_window_outer_borders(window); + } +} + +void render_window_title_bar_contents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open) +{ + ImGuiContext& g = *GImGui; + + window_flags flags = (window_flags)window->Flags; + + const bool has_close_button = (p_open != NULL); + const bool has_collapse_button = !(flags & window_flags_no_collapse) && (var->style.window_menu_button_position != ImGuiDir_None); + + // Close & Collapse button are on the Menu NavLayer and don't default focus (unless there's nothing else on that layer) + // FIXME-NAV: Might want (or not?) to set the equivalent of ImGuiButtonFlags_NoNavFocus so that mouse clicks on standard title bar items don't necessarily set nav/keyboard ref? + const ImGuiItemFlags item_flags_backup = g.CurrentItemFlags; + g.CurrentItemFlags |= ImGuiItemFlags_NoNavDefaultFocus; + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + + // Layout buttons + // FIXME: Would be nice to generalize the subtleties expressed here into reusable code. + float pad_l = var->style.frame_padding.x; + float pad_r = var->style.frame_padding.x; + float button_sz = g.FontSize; + ImVec2 close_button_pos; + ImVec2 collapse_button_pos; + if (has_close_button) + { + close_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - button_sz, title_bar_rect.Min.y + var->style.frame_padding.y); + pad_r += button_sz + var->style.item_inner_spacing.x; + } + if (has_collapse_button && var->style.window_menu_button_position == ImGuiDir_Right) + { + collapse_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - button_sz, title_bar_rect.Min.y + var->style.frame_padding.y); + pad_r += button_sz + var->style.item_inner_spacing.x; + } + if (has_collapse_button && var->style.window_menu_button_position == ImGuiDir_Left) + { + collapse_button_pos = ImVec2(title_bar_rect.Min.x + pad_l, title_bar_rect.Min.y + var->style.frame_padding.y); + pad_l += button_sz + var->style.item_inner_spacing.x; + } + + // Collapse button (submitting first so it gets priority when choosing a navigation init fallback) + if (has_collapse_button) + if (CollapseButton(window->GetID("#COLLAPSE"), collapse_button_pos)) + window->WantCollapseToggle = true; // Defer actual collapsing to next frame as we are too far in the Begin() function + + // Close button + if (has_close_button) + if (CloseButton(window->GetID("#CLOSE"), close_button_pos)) + *p_open = false; + + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + g.CurrentItemFlags = item_flags_backup; + + // Title bar text (with: horizontal alignment, avoiding collapse/close button, optional "unsaved document" marker) + // FIXME: Refactor text alignment facilities along with RenderText helpers, this is WAY too much messy code.. + const float marker_size_x = (flags & window_flags_unsaved_document) ? button_sz * 0.80f : 0.0f; + const ImVec2 text_size = CalcTextSize(name, NULL, true) + ImVec2(marker_size_x, 0.0f); + + // As a nice touch we try to ensure that centered title text doesn't get affected by visibility of Close/Collapse button, + // while uncentered title text will still reach edges correctly. + if (pad_l > var->style.frame_padding.x) + pad_l += var->style.item_inner_spacing.x; + if (pad_r > var->style.frame_padding.x) + pad_r += var->style.item_inner_spacing.x; + if (var->style.window_title_align.x > 0.0f && var->style.window_title_align.x < 1.0f) + { + float centerness = ImSaturate(1.0f - ImFabs(var->style.window_title_align.x - 0.5f) * 2.0f); // 0.0f on either edges, 1.0f on center + float pad_extend = ImMin(ImMax(pad_l, pad_r), title_bar_rect.GetWidth() - pad_l - pad_r - text_size.x); + pad_l = ImMax(pad_l, pad_extend * centerness); + pad_r = ImMax(pad_r, pad_extend * centerness); + } + + ImRect layout_r(title_bar_rect.Min.x + pad_l, title_bar_rect.Min.y, title_bar_rect.Max.x - pad_r, title_bar_rect.Max.y); + ImRect clip_r(layout_r.Min.x, layout_r.Min.y, ImMin(layout_r.Max.x + var->style.item_inner_spacing.x, title_bar_rect.Max.x), layout_r.Max.y); + if (flags & window_flags_unsaved_document) + { + ImVec2 marker_pos; + marker_pos.x = ImClamp(layout_r.Min.x + (layout_r.GetWidth() - text_size.x) * var->style.window_title_align.x + text_size.x, layout_r.Min.x, layout_r.Max.x); + marker_pos.y = (layout_r.Min.y + layout_r.Max.y) * 0.5f; + if (marker_pos.x > layout_r.Min.x) + { + RenderBullet(window->DrawList, marker_pos, draw->w_get_clr(style_col_text)); + clip_r.Max.x = ImMin(clip_r.Max.x, marker_pos.x - (int)(marker_size_x * 0.5f)); + } + } + //if (g.IO.KeyShift) window->DrawList->AddRect(layout_r.Min, layout_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG] + //if (g.IO.KeyCtrl) window->DrawList->AddRect(clip_r.Min, clip_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG] + RenderTextClipped(layout_r.Min, layout_r.Max, name, NULL, &text_size, var->style.window_title_align, &clip_r); +} + +static ImGuiWindow* nav_restore_last_child_nav_window(ImGuiWindow* window) +{ + if (window->NavLastChildNavWindow && window->NavLastChildNavWindow->WasActive) + return window->NavLastChildNavWindow; + return window; +} + +static void set_last_item_data_for_window(ImGuiWindow* window, const ImRect& rect) +{ + ImGuiContext& g = *GImGui; + SetLastItemData(window->MoveId, g.CurrentItemFlags, IsMouseHoveringRect(rect.Min, rect.Max, false) ? ImGuiItemStatusFlags_HoveredRect : 0, rect); +} + +static void set_window_active_for_skip_refresh(ImGuiWindow* window) +{ + window->Active = true; + for (ImGuiWindow* child : window->DC.ChildWindows) + if (!child->Hidden) + { + child->Active = child->SkipRefresh = true; + set_window_active_for_skip_refresh(child); + } +} + +bool c_gui::begin(std::string_view name, bool* p_open, window_flags flags) +{ + ImGuiContext& g = *GImGui; + + IM_ASSERT(name.data() != NULL && name.data()[0] != '\0'); // Window name.data() required + IM_ASSERT(g.WithinFrameScope); // Forgot to call ImGui::NewFrame() + IM_ASSERT(g.FrameCountEnded != g.FrameCount); // Called ImGui::Render() or ImGui::EndFrame() and haven't called ImGui::NewFrame() again yet + + // Find or create + ImGuiWindow* window = FindWindowByName(name.data()); + const bool window_just_created = (window == NULL); + if (window_just_created) + window = create_new_window(name.data(), flags); + + // [DEBUG] Debug break requested by user + if (g.DebugBreakInWindow == window->ID) + IM_DEBUG_BREAK(); + + // Automatically disable manual moving/resizing when NoInputs is set + if ((flags & window_flags_no_inputs) == window_flags_no_inputs) + flags |= window_flags_no_move | window_flags_no_resize; + + const int current_frame = g.FrameCount; + const bool first_begin_of_the_frame = (window->LastFrameActive != current_frame); + window->IsFallbackWindow = (g.CurrentWindowStack.Size == 0 && g.WithinFrameScopeWithImplicitWindow); + + // Update the Appearing flag + bool window_just_activated_by_user = (window->LastFrameActive < current_frame - 1); // Not using !WasActive because the implicit "Debug" window would always toggle off->on + if (flags & window_flags_popup) + { + ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; + window_just_activated_by_user |= (window->PopupId != popup_ref.PopupId); // We recycle popups so treat window as activated if popup id changed + window_just_activated_by_user |= (window != popup_ref.Window); + } + window->Appearing = window_just_activated_by_user; + if (window->Appearing) + set_window_condition_allow_flag(window, ImGuiCond_Appearing, true); + + // Update Flags, LastFrameActive, BeginOrderXXX fields + if (first_begin_of_the_frame) + { + update_window_in_focus_order_list(window, window_just_created, flags); + window->Flags = (ImGuiWindowFlags)flags; + window->ChildFlags = (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasChildFlags) ? g.NextWindowData.ChildFlags : 0; + window->LastFrameActive = current_frame; + window->LastTimeActive = (float)g.Time; + window->BeginOrderWithinParent = 0; + window->BeginOrderWithinContext = (short)(g.WindowsActiveCount++); + } + else + { + flags = (window_flags)window->Flags; + } + + // Parent window is latched only on the first call to Begin() of the frame, so further append-calls can be done from a different window stack + ImGuiWindow* parent_window_in_stack = g.CurrentWindowStack.empty() ? NULL : g.CurrentWindowStack.back().Window; + ImGuiWindow* parent_window = first_begin_of_the_frame ? ((flags & (window_flags_child_window | window_flags_popup)) ? parent_window_in_stack : NULL) : window->ParentWindow; + IM_ASSERT(parent_window != NULL || !(flags & window_flags_child_window)); + + // We allow window memory to be compacted so recreate the base stack when needed. + if (window->IDStack.Size == 0) + window->IDStack.push_back(window->ID); + + // Add to stack + g.CurrentWindow = window; + ImGuiWindowStackData window_stack_data; + window_stack_data.Window = window; + window_stack_data.ParentLastItemDataBackup = g.LastItemData; + window_stack_data.StackSizesOnBegin.SetToContextState(&g); + window_stack_data.DisabledOverrideReenable = (flags & window_flags_tooltip) && (g.CurrentItemFlags & ImGuiItemFlags_Disabled); + g.CurrentWindowStack.push_back(window_stack_data); + if (flags & window_flags_child_menu) + g.BeginMenuDepth++; + + // Update ->RootWindow and others pointers (before any possible call to FocusWindow) + if (first_begin_of_the_frame) + { + UpdateWindowParentAndRootLinks(window, flags, parent_window); + window->ParentWindowInBeginStack = parent_window_in_stack; + + // There's little point to expose a flag to set this: because the interesting cases won't be using parent_window_in_stack, + // e.g. linking a tool window in a standalone viewport to a document window, regardless of their Begin() stack parenting. (#6798) + window->ParentWindowForFocusRoute = (flags & window_flags_child_window) ? parent_window_in_stack : NULL; + } + + // Add to focus scope stack + PushFocusScope((window->ChildFlags & child_flags_nav_flattened) ? g.CurrentFocusScopeId : window->ID); + window->NavRootFocusScopeId = g.CurrentFocusScopeId; + + // Add to popup stacks: update OpenPopupStack[] data, push to BeginPopupStack[] + if (flags & window_flags_popup) + { + ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; + popup_ref.Window = window; + popup_ref.ParentNavLayer = parent_window_in_stack->DC.NavLayerCurrent; + g.BeginPopupStack.push_back(popup_ref); + window->PopupId = popup_ref.PopupId; + } + + // Process SetNextWindow***() calls + // (FIXME: Consider splitting the HasXXX flags into X/Y components + bool window_pos_set_by_api = false; + bool window_size_x_set_by_api = false, window_size_y_set_by_api = false; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) + { + window_pos_set_by_api = (window->SetWindowPosAllowFlags & g.NextWindowData.PosCond) != 0; + if (window_pos_set_by_api && ImLengthSqr(g.NextWindowData.PosPivotVal) > 0.00001f) + { + // May be processed on the next frame if this is our first frame and we are measuring size + // FIXME: Look into removing the branch so everything can go through this same code path for consistency. + window->SetWindowPosVal = g.NextWindowData.PosVal; + window->SetWindowPosPivot = g.NextWindowData.PosPivotVal; + window->SetWindowPosAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + } + else + { + SetWindowPos(window, g.NextWindowData.PosVal, g.NextWindowData.PosCond); + } + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) + { + window_size_x_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.x > 0.0f); + window_size_y_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.y > 0.0f); + if ((window->ChildFlags & child_flags_resize_x) && (window->SetWindowSizeAllowFlags & ImGuiCond_FirstUseEver) == 0) // Axis-specific conditions for BeginChild() + g.NextWindowData.SizeVal.x = window->SizeFull.x; + if ((window->ChildFlags & child_flags_resize_y) && (window->SetWindowSizeAllowFlags & ImGuiCond_FirstUseEver) == 0) + g.NextWindowData.SizeVal.y = window->SizeFull.y; + SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond); + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasScroll) + { + if (g.NextWindowData.ScrollVal.x >= 0.0f) + { + window->ScrollTarget.x = g.NextWindowData.ScrollVal.x; + window->ScrollTargetCenterRatio.x = 0.0f; + } + if (g.NextWindowData.ScrollVal.y >= 0.0f) + { + window->ScrollTarget.y = g.NextWindowData.ScrollVal.y; + window->ScrollTargetCenterRatio.y = 0.0f; + } + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasContentSize) + window->ContentSizeExplicit = g.NextWindowData.ContentSizeVal; + else if (first_begin_of_the_frame) + window->ContentSizeExplicit = ImVec2(0.0f, 0.0f); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasCollapsed) + SetWindowCollapsed(window, g.NextWindowData.CollapsedVal, g.NextWindowData.CollapsedCond); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasFocus) + FocusWindow(window); + if (window->Appearing) + set_window_condition_allow_flag(window, ImGuiCond_Appearing, false); + + // [EXPERIMENTAL] Skip Refresh mode + UpdateWindowSkipRefresh(window); + + // Nested root windows (typically tooltips) override disabled state + if (window_stack_data.DisabledOverrideReenable && window->RootWindow == window) + BeginDisabledOverrideReenable(); + + // We intentionally set g.CurrentWindow to NULL to prevent usage until when the viewport is set, then will call SetCurrentWindow() + g.CurrentWindow = NULL; + + // When reusing window again multiple times a frame, just append content (don't need to setup again) + if (first_begin_of_the_frame && !window->SkipRefresh) + { + // Initialize + const bool window_is_child_tooltip = (flags & window_flags_child_window) && (flags & window_flags_tooltip); // FIXME-WIP: Undocumented behavior of Child+Tooltip for pinned tooltip (#1345) + const bool window_just_appearing_after_hidden_for_resize = (window->HiddenFramesCannotSkipItems > 0); + window->Active = true; + window->HasCloseButton = (p_open != NULL); + window->ClipRect = ImVec4(-FLT_MAX, -FLT_MAX, +FLT_MAX, +FLT_MAX); + window->IDStack.resize(1); + window->DrawList->_ResetForNewFrame(); + window->DC.CurrentTableIdx = -1; + + // Restore buffer capacity when woken from a compacted state, to avoid + if (window->MemoryCompacted) + GcAwakeTransientWindowBuffers(window); + + // Update stored window name.data() when it changes (which can _only_ happen with the "###" operator, so the ID would stay unchanged). + // The title bar always display the 'name.data()' parameter, so we only update the string storage if it needs to be visible to the end-user elsewhere. + bool window_title_visible_elsewhere = false; + if (g.NavWindowingListWindow != NULL && (window->Flags & window_flags_no_nav_focus) == 0) // Window titles visible when using CTRL+TAB + window_title_visible_elsewhere = true; + if (window_title_visible_elsewhere && !window_just_created && strcmp(name.data(), window->Name) != 0) + { + size_t buf_len = (size_t)window->NameBufLen; + window->Name = ImStrdupcpy(window->Name, &buf_len, name.data()); + window->NameBufLen = (int)buf_len; + } + + // UPDATE CONTENTS SIZE, UPDATE HIDDEN STATUS + + // Update contents size from last frame for auto-fitting (or use explicit size) + calc_window_content_sizes(window, &window->ContentSize, &window->ContentSizeIdeal); + if (window->HiddenFramesCanSkipItems > 0) + window->HiddenFramesCanSkipItems--; + if (window->HiddenFramesCannotSkipItems > 0) + window->HiddenFramesCannotSkipItems--; + if (window->HiddenFramesForRenderOnly > 0) + window->HiddenFramesForRenderOnly--; + + // Hide new windows for one frame until they calculate their size + if (window_just_created && (!window_size_x_set_by_api || !window_size_y_set_by_api)) + window->HiddenFramesCannotSkipItems = 1; + + // Hide popup/tooltip window when re-opening while we measure size (because we recycle the windows) + // We reset Size/ContentSize for reappearing popups/tooltips early in this function, so further code won't be tempted to use the old size. + if (window_just_activated_by_user && (flags & (window_flags_popup | window_flags_tooltip)) != 0) + { + window->HiddenFramesCannotSkipItems = 1; + if (flags & window_flags_always_auto_resize) + { + if (!window_size_x_set_by_api) + window->Size.x = window->SizeFull.x = 0.f; + if (!window_size_y_set_by_api) + window->Size.y = window->SizeFull.y = 0.f; + window->ContentSize = window->ContentSizeIdeal = ImVec2(0.f, 0.f); + } + } + + // SELECT VIEWPORT + // FIXME-VIEWPORT: In the docking/viewport branch, this is the point where we select the current viewport (which may affect the var->style) + + ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)GetMainViewport(); + SetWindowViewport(window, viewport); + set_current_window(window); + + // LOCK BORDER SIZE AND PADDING FOR THE FRAME (so that altering them doesn't cause inconsistencies) + + if (flags & window_flags_child_window) + window->WindowBorderSize = var->style.child_border_size; + else + window->WindowBorderSize = ((flags & (window_flags_popup | window_flags_tooltip)) && !(flags & window_flags_modal)) ? var->style.popup_border_size : var->style.window_border_size; + window->WindowPadding = var->style.window_padding; + if ((flags & window_flags_child_window) && !(flags & window_flags_popup) && !(window->ChildFlags & child_flags_always_use_window_padding) && window->WindowBorderSize == 0.0f) + window->WindowPadding = ImVec2(0.0f, (flags & window_flags_menu_bar) ? var->style.window_padding.y : 0.0f); + + // Lock menu offset so size calculation can use it as menu-bar windows need a minimum size. + window->DC.MenuBarOffset.x = ImMax(ImMax(window->WindowPadding.x, var->style.item_spacing.x), g.NextWindowData.MenuBarOffsetMinVal.x); + window->DC.MenuBarOffset.y = g.NextWindowData.MenuBarOffsetMinVal.y; + window->TitleBarHeight = (flags & window_flags_no_title_bar) ? 0.0f : g.FontSize + var->style.frame_padding.y * 2.0f; + window->MenuBarHeight = (flags & window_flags_menu_bar) ? window->DC.MenuBarOffset.y + g.FontSize + var->style.frame_padding.y * 2.0f : 0.0f; + + // Depending on condition we use previous or current window size to compare against contents size to decide if a scrollbar should be visible. + // Those flags will be altered further down in the function depending on more conditions. + bool use_current_size_for_scrollbar_x = window_just_created; + bool use_current_size_for_scrollbar_y = window_just_created; + if (window_size_x_set_by_api && window->ContentSizeExplicit.x != 0.0f) + use_current_size_for_scrollbar_x = true; + if (window_size_y_set_by_api && window->ContentSizeExplicit.y != 0.0f) // #7252 + use_current_size_for_scrollbar_y = true; + + // Collapse window by double-clicking on title bar + // At this point we don't have a clipping rectangle setup yet, so we can use the title bar area for hit detection and drawing + if (!(flags & window_flags_no_title_bar) && !(flags & window_flags_no_collapse)) + { + // We don't use a regular button+id to test for double-click on title bar (mostly due to legacy reason, could be fixed), + // so verify that we don't have items over the title bar. + ImRect title_bar_rect = window->TitleBarRect(); + if (g.HoveredWindow == window && g.HoveredId == 0 && g.HoveredIdPreviousFrame == 0 && g.ActiveId == 0 && IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max)) + if (g.IO.MouseClickedCount[0] == 2 && GetKeyOwner(ImGuiKey_MouseLeft) == ImGuiKeyOwner_NoOwner) + window->WantCollapseToggle = true; + if (window->WantCollapseToggle) + { + window->Collapsed = !window->Collapsed; + if (!window->Collapsed) + use_current_size_for_scrollbar_y = true; + MarkIniSettingsDirty(window); + } + } + else + { + window->Collapsed = false; + } + window->WantCollapseToggle = false; + + // SIZE + + // Outer Decoration Sizes + // (we need to clear ScrollbarSize immediately as CalcWindowAutoFitSize() needs it and can be called from other locations). + const ImVec2 scrollbar_sizes_from_last_frame = window->ScrollbarSizes; + window->DecoOuterSizeX1 = 0.0f; + window->DecoOuterSizeX2 = 0.0f; + window->DecoOuterSizeY1 = window->TitleBarHeight + window->MenuBarHeight; + window->DecoOuterSizeY2 = 0.0f; + window->ScrollbarSizes = ImVec2(0.0f, 0.0f); + + // Calculate auto-fit size, handle automatic resize + const ImVec2 size_auto_fit = calc_window_auto_fit_size(window, window->ContentSizeIdeal); + if ((flags & window_flags_always_auto_resize) && !window->Collapsed) + { + // Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc. + if (!window_size_x_set_by_api) + { + window->SizeFull.x = size_auto_fit.x; + use_current_size_for_scrollbar_x = true; + } + if (!window_size_y_set_by_api) + { + window->SizeFull.y = size_auto_fit.y; + use_current_size_for_scrollbar_y = true; + } + } + else if (window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + { + // Auto-fit may only grow window during the first few frames + // We still process initial auto-fit on collapsed windows to get a window width, but otherwise don't honor ImGuiWindowFlags_AlwaysAutoResize when collapsed. + if (!window_size_x_set_by_api && window->AutoFitFramesX > 0) + { + window->SizeFull.x = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.x, size_auto_fit.x) : size_auto_fit.x; + use_current_size_for_scrollbar_x = true; + } + if (!window_size_y_set_by_api && window->AutoFitFramesY > 0) + { + window->SizeFull.y = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.y, size_auto_fit.y) : size_auto_fit.y; + use_current_size_for_scrollbar_y = true; + } + if (!window->Collapsed) + MarkIniSettingsDirty(window); + } + + // Apply minimum/maximum window size constraints and final size + window->SizeFull = calc_window_size_after_constraint(window, window->SizeFull); + window->Size = window->Collapsed && !(flags & window_flags_child_window) ? window->TitleBarRect().GetSize() : window->SizeFull; + + // POSITION + + // Popup latch its initial position, will position itself when it appears next frame + if (window_just_activated_by_user) + { + window->AutoPosLastDirection = ImGuiDir_None; + if ((flags & window_flags_popup) != 0 && !(flags & window_flags_modal) && !window_pos_set_by_api) // FIXME: BeginPopup() could use SetNextWindowPos() + window->Pos = g.BeginPopupStack.back().OpenPopupPos; + } + + // Position child window + if (flags & window_flags_child_window) + { + IM_ASSERT(parent_window && parent_window->Active); + window->BeginOrderWithinParent = (short)parent_window->DC.ChildWindows.Size; + parent_window->DC.ChildWindows.push_back(window); + if (!(flags & window_flags_popup) && !window_pos_set_by_api && !window_is_child_tooltip) + window->Pos = parent_window->DC.CursorPos; + } + + const bool window_pos_with_pivot = (window->SetWindowPosVal.x != FLT_MAX && window->HiddenFramesCannotSkipItems == 0); + if (window_pos_with_pivot) + SetWindowPos(window, window->SetWindowPosVal - window->Size * window->SetWindowPosPivot, 0); // Position given a pivot (e.g. for centering) + else if ((flags & window_flags_child_menu) != 0) + window->Pos = FindBestWindowPosForPopup(window); + else if ((flags & window_flags_popup) != 0 && !window_pos_set_by_api && window_just_appearing_after_hidden_for_resize) + window->Pos = FindBestWindowPosForPopup(window); + else if ((flags & window_flags_tooltip) != 0 && !window_pos_set_by_api && !window_is_child_tooltip) + window->Pos = FindBestWindowPosForPopup(window); + + // Calculate the range of allowed position for that window (to be movable and visible past safe area padding) + // When clamping to stay visible, we will enforce that window->Pos stays inside of visibility_rect. + ImRect viewport_rect(viewport->GetMainRect()); + ImRect viewport_work_rect(viewport->GetWorkRect()); + ImVec2 visibility_padding = ImMax(var->style.display_window_padding, var->style.display_safe_area_padding); + ImRect visibility_rect(viewport_work_rect.Min + visibility_padding, viewport_work_rect.Max - visibility_padding); + + // Clamp position/size so window stays visible within its viewport or monitor + // Ignore zero-sized display explicitly to avoid losing positions if a window manager reports zero-sized window when initializing or minimizing. + if (!window_pos_set_by_api && !(flags & window_flags_child_window)) + if (viewport_rect.GetWidth() > 0.0f && viewport_rect.GetHeight() > 0.0f) + clamp_window_pos(window, visibility_rect); + window->Pos = ImTrunc(window->Pos); + + // Lock window rounding for the frame (so that altering them doesn't cause inconsistencies) + // Large values tend to lead to variety of artifacts and are not recommended. + window->WindowRounding = (flags & window_flags_child_window) ? var->style.child_rounding : ((flags & window_flags_popup) && !(flags & window_flags_modal)) ? var->style.popup_rounding : var->style.window_rounding; + + // For windows with title bar or menu bar, we clamp to FrameHeight(FontSize + FramePadding.y * 2.0f) to completely hide artifacts. + //if ((window->Flags & ImGuiWindowFlags_MenuBar) || !(window->Flags & ImGuiWindowFlags_NoTitleBar)) + // window->WindowRounding = ImMin(window->WindowRounding, g.FontSize + var->style.FramePadding.y * 2.0f); + + // Apply window focus (new and reactivated windows are moved to front) + bool want_focus = false; + if (window_just_activated_by_user && !(flags & window_flags_no_focus_on_appearing)) + { + if (flags & window_flags_popup) + want_focus = true; + else if ((flags & (window_flags_child_window | window_flags_tooltip)) == 0) + want_focus = true; + } + + // [Test Engine] Register whole window in the item system (before submitting further decorations) +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (g.TestEngineHookItems) + { + IM_ASSERT(window->IDStack.Size == 1); + window->IDStack.Size = 0; // As window->IDStack[0] == window->ID here, make sure TestEngine doesn't erroneously see window as parent of itself. + IMGUI_TEST_ENGINE_ITEM_ADD(window->ID, window->Rect(), NULL); + IMGUI_TEST_ENGINE_ITEM_INFO(window->ID, window->Name, (g.HoveredWindow == window) ? ImGuiItemStatusFlags_HoveredRect : 0); + window->IDStack.Size = 1; + } +#endif + + // Handle manual resize: Resize Grips, Borders, Gamepad + int border_hovered = -1, border_held = -1; + ImU32 resize_grip_col[4] = {}; + const int resize_grip_count = ((flags & window_flags_child_window) && !(flags & window_flags_popup)) ? 0 : g.IO.ConfigWindowsResizeFromEdges ? 2 : 1; // Allow resize from lower-left if we have the mouse cursor feedback for it. + const float resize_grip_draw_size = IM_TRUNC(ImMax(g.FontSize * 1.10f, window->WindowRounding + 1.0f + g.FontSize * 0.2f)); + if (!window->Collapsed) + if (int auto_fit_mask = update_window_manual_resize(window, size_auto_fit, &border_hovered, &border_held, resize_grip_count, &resize_grip_col[0], visibility_rect)) + { + if (auto_fit_mask & (1 << ImGuiAxis_X)) + use_current_size_for_scrollbar_x = true; + if (auto_fit_mask & (1 << ImGuiAxis_Y)) + use_current_size_for_scrollbar_y = true; + } + window->ResizeBorderHovered = (signed char)border_hovered; + window->ResizeBorderHeld = (signed char)border_held; + + // SCROLLBAR VISIBILITY + + // Update scrollbar visibility (based on the Size that was effective during last frame or the auto-resized Size). + if (!window->Collapsed) + { + // When reading the current size we need to read it after size constraints have been applied. + // Intentionally use previous frame values for InnerRect and ScrollbarSizes. + // And when we use window->DecorationUp here it doesn't have ScrollbarSizes.y applied yet. + ImVec2 avail_size_from_current_frame = ImVec2(window->SizeFull.x, window->SizeFull.y - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2)); + ImVec2 avail_size_from_last_frame = window->InnerRect.GetSize() + scrollbar_sizes_from_last_frame; + ImVec2 needed_size_from_last_frame = window_just_created ? ImVec2(0, 0) : window->ContentSize + window->WindowPadding * 2.0f; + float size_x_for_scrollbars = use_current_size_for_scrollbar_x ? avail_size_from_current_frame.x : avail_size_from_last_frame.x; + float size_y_for_scrollbars = use_current_size_for_scrollbar_y ? avail_size_from_current_frame.y : avail_size_from_last_frame.y; + //bool scrollbar_y_from_last_frame = window->ScrollbarY; // FIXME: May want to use that in the ScrollbarX expression? How many pros vs cons? + window->ScrollbarY = (flags & window_flags_always_vertical_scrollbar) || ((needed_size_from_last_frame.y > size_y_for_scrollbars) && !(flags & window_flags_no_scrollbar)); + window->ScrollbarX = (flags & window_flags_always_horizontal_scrollbar) || ((needed_size_from_last_frame.x > size_x_for_scrollbars - (window->ScrollbarY ? var->style.scrollbar_size : 0.0f)) && !(flags & window_flags_no_scrollbar) && (flags & window_flags_horizontal_scrollbar)); + if (window->ScrollbarX && !window->ScrollbarY) + window->ScrollbarY = (needed_size_from_last_frame.y > size_y_for_scrollbars - var->style.scrollbar_size) && !(flags & window_flags_no_scrollbar); + window->ScrollbarSizes = ImVec2(window->ScrollbarY ? var->style.scrollbar_size : 0.0f, window->ScrollbarX ? var->style.scrollbar_size : 0.0f); + + // Amend the partially filled window->DecorationXXX values. + window->DecoOuterSizeX2 += window->ScrollbarSizes.x + (window->ScrollbarY ? (var->style.scrollbar_border_padding.x + var->style.scrollbar_content_padding) : 0); + window->DecoOuterSizeY2 += window->ScrollbarSizes.y + (window->ScrollbarX ? (var->style.scrollbar_border_padding.y + var->style.scrollbar_content_padding) : 0); + } + + // UPDATE RECTANGLES (1- THOSE NOT AFFECTED BY SCROLLING) + // Update various regions. Variables they depend on should be set above in this function. + // We set this up after processing the resize grip so that our rectangles doesn't lag by a frame. + + // Outer rectangle + // Not affected by window border size. Used by: + // - FindHoveredWindow() (w/ extra padding when border resize is enabled) + // - Begin() initial clipping rect for drawing window background and borders. + // - Begin() clipping whole child + const ImRect host_rect = ((flags & window_flags_child_window) && !(flags & window_flags_popup) && !window_is_child_tooltip) ? parent_window->ClipRect : viewport_rect; + const ImRect outer_rect = window->Rect(); + const ImRect title_bar_rect = window->TitleBarRect(); + window->OuterRectClipped = outer_rect; + window->OuterRectClipped.ClipWith(host_rect); + + // Inner rectangle + // Not affected by window border size. Used by: + // - InnerClipRect + // - ScrollToRectEx() + // - NavUpdatePageUpPageDown() + // - Scrollbar() + window->InnerRect.Min.x = window->Pos.x + window->DecoOuterSizeX1; + window->InnerRect.Min.y = window->Pos.y + window->DecoOuterSizeY1; + window->InnerRect.Max.x = window->Pos.x + window->Size.x - window->DecoOuterSizeX2; + window->InnerRect.Max.y = window->Pos.y + window->Size.y - window->DecoOuterSizeY2; + + // Inner clipping rectangle. + // - Extend a outside of normal work region up to borders. + // - This is to allow e.g. Selectable or CollapsingHeader or some separators to cover that space. + // - It also makes clipped items be more noticeable. + // - And is consistent on both axis (prior to 2024/05/03 ClipRect used WindowPadding.x * 0.5f on left and right edge), see #3312 + // - Force round operator last to ensure that e.g. (int)(max.x-min.x) in user's render code produce correct result. + // Note that if our window is collapsed we will end up with an inverted (~null) clipping rectangle which is the correct behavior. + // Affected by window/frame border size. Used by: + // - Begin() initial clip rect + float top_border_size = (((flags & window_flags_menu_bar) || !(flags & window_flags_no_title_bar)) ? var->style.frame_border_size : window->WindowBorderSize); + + // Try to match the fact that our border is drawn centered over the window rectangle, rather than inner. + // This is why we do a *0.5f here. We don't currently even technically support large values for WindowBorderSize, + // see e.g #7887 #7888, but may do after we move the window border to become an inner border (and then we can remove the 0.5f here). + window->InnerClipRect.Min.x = ImFloor(0.5f + window->InnerRect.Min.x + window->WindowBorderSize * 0.5f); + window->InnerClipRect.Min.y = ImFloor(0.5f + window->InnerRect.Min.y + top_border_size * 0.5f); + window->InnerClipRect.Max.x = ImFloor(window->InnerRect.Max.x - window->WindowBorderSize * 0.5f); + window->InnerClipRect.Max.y = ImFloor(window->InnerRect.Max.y - window->WindowBorderSize * 0.5f); + window->InnerClipRect.ClipWithFull(host_rect); + + // Default item width. Make it proportional to window size if window manually resizes + if (window->Size.x > 0.0f && !(flags & window_flags_tooltip) && !(flags & window_flags_always_auto_resize)) + window->ItemWidthDefault = ImTrunc(window->Size.x * 0.65f); + else + window->ItemWidthDefault = ImTrunc(g.FontSize * 16.0f); + + // SCROLLING + + // Lock down maximum scrolling + // The value of ScrollMax are ahead from ScrollbarX/ScrollbarY which is intentionally using InnerRect from previous rect in order to accommodate + // for right/bottom aligned items without creating a scrollbar. + window->ScrollMax.x = ImMax(0.0f, window->ContentSize.x + window->WindowPadding.x * 2.0f - window->InnerRect.GetWidth()); + window->ScrollMax.y = ImMax(0.0f, window->ContentSize.y + window->WindowPadding.y * 2.0f - window->InnerRect.GetHeight()); + + // Apply scrolling + window->DC.StateStorage = &window->StateStorage; + + struct scrollbar_state { + bool wheel; + float scroll; + }; + + scrollbar_state* state = gui->anim_container(window->ID); + + if (IsKeyDown(ImGuiKey_MouseWheelY) && !(flags & window_flags_no_scroll_with_mouse) && !IsKeyDown(ImGuiKey_LeftCtrl)) + { + state->wheel = true; + state->scroll = calc_next_scroll_from_scroll_target_and_clamp(window).y; + } + + window->ScrollTarget = ImVec2(window->ScrollTarget.x, window->ScrollTarget.y + g.NextWindowData.ScrollVal.y); + + if ((window->Scroll.y != state->scroll) && state->wheel) { + + if (roundf(window->Scroll.y) == roundf(state->scroll)) { + state->wheel = false; + } + + gui->easing(window->Scroll.y, roundf(state->scroll), 24.f, dynamic_easing); + } + + if (window->Scroll.y > window->ScrollMax.y) + { + gui->easing(window->Scroll.y, roundf(window->ScrollMax.y), 24.f, dynamic_easing); + } + + window->DecoInnerSizeX1 = window->DecoInnerSizeY1 = 0.0f; + + // DRAWING + + // Setup draw list and outer clipping rectangle + IM_ASSERT(window->DrawList->CmdBuffer.Size == 1 && window->DrawList->CmdBuffer[0].ElemCount == 0); + window->DrawList->PushTextureID(g.Font->ContainerAtlas->TexID); + PushClipRect(host_rect.Min, host_rect.Max, false); + + // Child windows can render their decoration (bg color, border, scrollbars, etc.) within their parent to save a draw call (since 1.71) + // When using overlapping child windows, this will break the assumption that child z-order is mapped to submission order. + // FIXME: User code may rely on explicit sorting of overlapping child window and would need to disable this somehow. Please get in contact if you are affected (github #4493) + { + bool render_decorations_in_parent = false; + if ((flags & window_flags_child_window) && !(flags & window_flags_popup) && !window_is_child_tooltip) + { + // - We test overlap with the previous child window only (testing all would end up being O(log N) not a good investment here) + // - We disable this when the parent window has zero vertices, which is a common pattern leading to laying out multiple overlapping childs + ImGuiWindow* previous_child = parent_window->DC.ChildWindows.Size >= 2 ? parent_window->DC.ChildWindows[parent_window->DC.ChildWindows.Size - 2] : NULL; + bool previous_child_overlapping = previous_child ? previous_child->Rect().Overlaps(window->Rect()) : false; + bool parent_is_empty = (parent_window->DrawList->VtxBuffer.Size == 0); + if (window->DrawList->CmdBuffer.back().ElemCount == 0 && !parent_is_empty && !previous_child_overlapping) + render_decorations_in_parent = true; + } + if (render_decorations_in_parent) + window->DrawList = parent_window->DrawList; + + // Handle title bar, scrollbar, resize grips and resize borders + const ImGuiWindow* window_to_highlight = g.NavWindowingTarget ? g.NavWindowingTarget : g.NavWindow; + const bool title_bar_is_highlight = want_focus || (window_to_highlight && window->RootWindowForTitleBarHighlight == window_to_highlight->RootWindowForTitleBarHighlight); + const bool handle_borders_and_resize_grips = true; // This exists to facilitate merge with 'docking' branch. + render_window_decorations(window, title_bar_rect, title_bar_is_highlight, handle_borders_and_resize_grips, resize_grip_count, resize_grip_col, resize_grip_draw_size); + + if (render_decorations_in_parent) + window->DrawList = &window->DrawListInst; + } + + // UPDATE RECTANGLES (2- THOSE AFFECTED BY SCROLLING) + + // Work rectangle. + // Affected by window padding and border size. Used by: + // - Columns() for right-most edge + // - TreeNode(), CollapsingHeader() for right-most edge + // - BeginTabBar() for right-most edge + const bool allow_scrollbar_x = !(flags & window_flags_no_scrollbar) && (flags & window_flags_horizontal_scrollbar); + const bool allow_scrollbar_y = !(flags & window_flags_no_scrollbar); + const float work_rect_size_x = (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : ImMax(allow_scrollbar_x ? window->ContentSize.x : 0.0f, window->Size.x - window->WindowPadding.x * 2.0f - (window->DecoOuterSizeX1 + window->DecoOuterSizeX2))); + const float work_rect_size_y = (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : ImMax(allow_scrollbar_y ? window->ContentSize.y : 0.0f, window->Size.y - window->WindowPadding.y * 2.0f - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2))); + window->WorkRect.Min.x = ImTrunc(window->InnerRect.Min.x - window->Scroll.x + ImMax(window->WindowPadding.x, window->WindowBorderSize)); + window->WorkRect.Min.y = ImTrunc(window->InnerRect.Min.y - window->Scroll.y + ImMax(window->WindowPadding.y, window->WindowBorderSize)); + window->WorkRect.Max.x = window->WorkRect.Min.x + work_rect_size_x; + window->WorkRect.Max.y = window->WorkRect.Min.y + work_rect_size_y; + window->ParentWorkRect = window->WorkRect; + + // [LEGACY] Content Region + // FIXME-OBSOLETE: window->ContentRegionRect.Max is currently very misleading / partly faulty, but some BeginChild() patterns relies on it. + // Unless explicit content size is specified by user, this currently represent the region leading to no scrolling. + // Used by: + // - Mouse wheel scrolling + many other things + window->ContentRegionRect.Min.x = window->Pos.x - window->Scroll.x + window->WindowPadding.x + window->DecoOuterSizeX1; + window->ContentRegionRect.Min.y = window->Pos.y - window->Scroll.y + window->WindowPadding.y + window->DecoOuterSizeY1; + window->ContentRegionRect.Max.x = window->ContentRegionRect.Min.x + (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : (window->Size.x - window->WindowPadding.x * 2.0f - (window->DecoOuterSizeX1 + window->DecoOuterSizeX2))); + window->ContentRegionRect.Max.y = window->ContentRegionRect.Min.y + (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : (window->Size.y - window->WindowPadding.y * 2.0f - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2))); + + // Setup drawing context + // (NB: That term "drawing context / DC" lost its meaning a long time ago. Initially was meant to hold transient data only. Nowadays difference between window-> and window->DC-> is dubious.) + window->DC.Indent.x = window->DecoOuterSizeX1 + window->WindowPadding.x - window->Scroll.x; + window->DC.GroupOffset.x = 0.0f; + window->DC.ColumnsOffset.x = 0.0f; + + // Record the loss of precision of CursorStartPos which can happen due to really large scrolling amount. + // This is used by clipper to compensate and fix the most common use case of large scroll area. Easy and cheap, next best thing compared to switching everything to double or ImU64. + double start_pos_highp_x = (double)window->Pos.x + window->WindowPadding.x - (double)window->Scroll.x + window->DecoOuterSizeX1 + window->DC.ColumnsOffset.x; + double start_pos_highp_y = (double)window->Pos.y + window->WindowPadding.y - (double)window->Scroll.y + window->DecoOuterSizeY1; + window->DC.CursorStartPos = ImVec2((float)start_pos_highp_x, (float)start_pos_highp_y); + window->DC.CursorStartPosLossyness = ImVec2((float)(start_pos_highp_x - window->DC.CursorStartPos.x), (float)(start_pos_highp_y - window->DC.CursorStartPos.y)); + window->DC.CursorPos = window->DC.CursorStartPos; + window->DC.CursorPosPrevLine = window->DC.CursorPos; + window->DC.CursorMaxPos = window->DC.CursorStartPos; + window->DC.IdealMaxPos = window->DC.CursorStartPos; + window->DC.CurrLineSize = window->DC.PrevLineSize = ImVec2(0.0f, 0.0f); + window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset = 0.0f; + window->DC.IsSameLine = window->DC.IsSetPos = false; + + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + window->DC.NavLayersActiveMask = window->DC.NavLayersActiveMaskNext; + window->DC.NavLayersActiveMaskNext = 0x00; + window->DC.NavIsScrollPushableX = true; + window->DC.NavHideHighlightOneFrame = false; + window->DC.NavWindowHasScrollY = (window->ScrollMax.y > 0.0f); + + window->DC.MenuBarAppending = false; + window->DC.MenuColumns.Update(var->style.item_spacing.x, window_just_activated_by_user); + window->DC.TreeDepth = 0; + window->DC.TreeHasStackDataDepthMask = 0x00; + window->DC.ChildWindows.resize(0); + window->DC.CurrentColumns = NULL; + window->DC.LayoutType = ImGuiLayoutType_Vertical; + window->DC.ParentLayoutType = parent_window ? parent_window->DC.LayoutType : ImGuiLayoutType_Vertical; + + window->DC.ItemWidth = window->ItemWidthDefault; + window->DC.TextWrapPos = -1.0f; // disabled + window->DC.ItemWidthStack.resize(0); + window->DC.TextWrapPosStack.resize(0); + if (flags & window_flags_modal) + window->DC.ModalDimBgColor = ColorConvertFloat4ToU32(GetStyleColorVec4(style_col_modal_window_dim_bg)); + + if (window->AutoFitFramesX > 0) + window->AutoFitFramesX--; + if (window->AutoFitFramesY > 0) + window->AutoFitFramesY--; + + // Apply focus (we need to call FocusWindow() AFTER setting DC.CursorStartPos so our initial navigation reference rectangle can start around there) + // We ImGuiFocusRequestFlags_UnlessBelowModal to: + // - Avoid focusing a window that is created outside of a modal. This will prevent active modal from being closed. + // - Position window behind the modal that is not a begin-parent of this window. + if (want_focus) + FocusWindow(window, ImGuiFocusRequestFlags_UnlessBelowModal); + if (want_focus && window == g.NavWindow) + NavInitWindow(window, false); // <-- this is in the way for us to be able to defer and sort reappearing FocusWindow() calls + + // Title bar + if (!(flags & window_flags_no_title_bar)) + render_window_title_bar_contents(window, ImRect(title_bar_rect.Min.x + window->WindowBorderSize, title_bar_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), name.data(), p_open); + + // Clear hit test shape every frame + window->HitTestHoleSize.x = window->HitTestHoleSize.y = 0; + + // Pressing CTRL+C while holding on a window copy its content to the clipboard + // This works but 1. doesn't handle multiple Begin/End pairs, 2. recursing into another Begin/End pair - so we need to work that out and add better logging scope. + // Maybe we can support CTRL+C on every element? + /* + //if (g.NavWindow == window && g.ActiveId == 0) + if (g.ActiveId == window->MoveId) + if (g.IO.KeyCtrl && IsKeyPressed(ImGuiKey_C)) + LogToClipboard(); + */ + + // We fill last item data based on Title Bar/Tab, in order for IsItemHovered() and IsItemActive() to be usable after Begin(). + // This is useful to allow creating context menus on title bar only, etc. + set_last_item_data_for_window(window, title_bar_rect); + + // [DEBUG] +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (g.DebugLocateId != 0 && (window->ID == g.DebugLocateId || window->MoveId == g.DebugLocateId)) + DebugLocateItemResolveWithLastItem(); +#endif + + // [Test Engine] Register title bar / tab with MoveId. +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (!(window->Flags & window_flags_no_title_bar)) + IMGUI_TEST_ENGINE_ITEM_ADD(g.LastItemData.ID, g.LastItemData.Rect, &g.LastItemData); +#endif + } + else + { + // Skip refresh always mark active + if (window->SkipRefresh) + set_window_active_for_skip_refresh(window); + + // Append + set_current_window(window); + set_last_item_data_for_window(window, window->TitleBarRect()); + } + + if (!window->SkipRefresh) + PushClipRect(window->InnerClipRect.Min, window->InnerClipRect.Max, true); + + // Clear 'accessed' flag last thing (After PushClipRect which will set the flag. We want the flag to stay false when the default "Debug" window is unused) + window->WriteAccessed = false; + window->BeginCount++; + g.NextWindowData.ClearFlags(); + + // Update visibility + if (first_begin_of_the_frame && !window->SkipRefresh) + { + if ((flags & window_flags_child_window) && !(flags & window_flags_child_menu)) + { + // Child window can be out of sight and have "negative" clip windows. + // Mark them as collapsed so commands are skipped earlier (we can't manually collapse them because they have no title bar). + IM_ASSERT((flags & window_flags_no_title_bar) != 0); + const bool nav_request = (window->ChildFlags & child_flags_nav_flattened) && (g.NavAnyRequest && g.NavWindow && g.NavWindow->RootWindowForNav == window->RootWindowForNav); + if (!g.LogEnabled && !nav_request) + if (window->OuterRectClipped.Min.x >= window->OuterRectClipped.Max.x || window->OuterRectClipped.Min.y >= window->OuterRectClipped.Max.y) + { + if (window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + window->HiddenFramesCannotSkipItems = 1; + else + window->HiddenFramesCanSkipItems = 1; + } + + // Hide along with parent or if parent is collapsed + if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCanSkipItems > 0)) + window->HiddenFramesCanSkipItems = 1; + if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCannotSkipItems > 0)) + window->HiddenFramesCannotSkipItems = 1; + } + + // Don't render if var->style alpha is 0.0 at the time of Begin(). This is arbitrary and inconsistent but has been there for a long while (may remove at some point) + if (var->style.alpha <= 0.0f) + window->HiddenFramesCanSkipItems = 1; + + // Update the Hidden flag + bool hidden_regular = (window->HiddenFramesCanSkipItems > 0) || (window->HiddenFramesCannotSkipItems > 0); + window->Hidden = hidden_regular || (window->HiddenFramesForRenderOnly > 0); + + // Disable inputs for requested number of frames + if (window->DisableInputsFrames > 0) + { + window->DisableInputsFrames--; + window->Flags |= window_flags_no_inputs; + } + + // Update the SkipItems flag, used to early out of all items functions (no layout required) + bool skip_items = false; + if (window->Collapsed || !window->Active || hidden_regular) + if (window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0 && window->HiddenFramesCannotSkipItems <= 0) + skip_items = true; + window->SkipItems = skip_items; + } + else if (first_begin_of_the_frame) + { + // Skip refresh mode + window->SkipItems = true; + } + + // [DEBUG] io.ConfigDebugBeginReturnValue override return value to test Begin/End and BeginChild/EndChild behaviors. + // (The implicit fallback window is NOT automatically ended allowing it to always be able to receive commands without crashing) +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (!window->IsFallbackWindow) + if ((g.IO.ConfigDebugBeginReturnValueOnce && window_just_created) || (g.IO.ConfigDebugBeginReturnValueLoop && g.DebugBeginReturnValueCullDepth == g.CurrentWindowStack.Size)) + { + if (window->AutoFitFramesX > 0) { window->AutoFitFramesX++; } + if (window->AutoFitFramesY > 0) { window->AutoFitFramesY++; } + return false; + } +#endif + + return !window->SkipItems; +} + +void c_gui::end() +{ + End(); +} diff --git a/external/lumin/thirdparty/freetype/FTL.TXT b/external/lumin/thirdparty/freetype/FTL.TXT new file mode 100644 index 0000000..c406d15 --- /dev/null +++ b/external/lumin/thirdparty/freetype/FTL.TXT @@ -0,0 +1,169 @@ + The FreeType Project LICENSE + ---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg + + + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org + + +--- end of FTL.TXT --- diff --git a/external/lumin/thirdparty/freetype/LICENSE.TXT b/external/lumin/thirdparty/freetype/LICENSE.TXT new file mode 100644 index 0000000..b1def65 --- /dev/null +++ b/external/lumin/thirdparty/freetype/LICENSE.TXT @@ -0,0 +1,42 @@ +FREETYPE LICENSES +----------------- + +The FreeType 2 font engine is copyrighted work and cannot be used +legally without a software license. In order to make this project +usable to a vast majority of developers, we distribute it under two +mutually exclusive open-source licenses. + +This means that *you* must choose *one* of the two licenses described +below, then obey all its terms and conditions when using FreeType 2 in +any of your projects or products. + + - The FreeType License, found in the file `docs/FTL.TXT`, which is + similar to the original BSD license *with* an advertising clause + that forces you to explicitly cite the FreeType project in your + product's documentation. All details are in the license file. + This license is suited to products which don't use the GNU General + Public License. + + Note that this license is compatible to the GNU General Public + License version 3, but not version 2. + + - The GNU General Public License version 2, found in + `docs/GPLv2.TXT` (any later version can be used also), for + programs which already use the GPL. Note that the FTL is + incompatible with GPLv2 due to its advertisement clause. + +The contributed BDF and PCF drivers come with a license similar to +that of the X Window System. It is compatible to the above two +licenses (see files `src/bdf/README` and `src/pcf/README`). The same +holds for the source code files `src/base/fthash.c` and +`include/freetype/internal/fthash.h`; they wer part of the BDF driver +in earlier FreeType versions. + +The gzip module uses the zlib license (see `src/gzip/zlib.h`) which +too is compatible to the above two licenses. + +The MD5 checksum support (only used for debugging in development +builds) is in the public domain. + + +--- end of LICENSE.TXT --- diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/ftconfig.h b/external/lumin/thirdparty/freetype/include/freetype/config/ftconfig.h new file mode 100644 index 0000000..c696e90 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/ftconfig.h @@ -0,0 +1,51 @@ +/**************************************************************************** + * + * ftconfig.h + * + * ANSI-specific configuration file (specification only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This header file contains a number of macro definitions that are used by + * the rest of the engine. Most of the macros here are automatically + * determined at compile time, and you should not need to change it to port + * FreeType, except to compile the library with a non-ANSI compiler. + * + * Note however that if some specific modifications are needed, we advise + * you to place a modified copy in your build directory. + * + * The build directory is usually `builds/`, and contains + * system-specific files that are always included first when building the + * library. + * + * This ANSI version should stay in `include/config/`. + * + */ + +#ifndef FTCONFIG_H_ +#define FTCONFIG_H_ + +#include +#include FT_CONFIG_OPTIONS_H +#include FT_CONFIG_STANDARD_LIBRARY_H + +#include +#include +#include + +#endif /* FTCONFIG_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/ftheader.h b/external/lumin/thirdparty/freetype/include/freetype/config/ftheader.h new file mode 100644 index 0000000..a8c6833 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/ftheader.h @@ -0,0 +1,836 @@ +/**************************************************************************** + * + * ftheader.h + * + * Build macros of the FreeType 2 library. + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +#ifndef FTHEADER_H_ +#define FTHEADER_H_ + + + /*@***********************************************************************/ + /* */ + /* */ + /* FT_BEGIN_HEADER */ + /* */ + /* */ + /* This macro is used in association with @FT_END_HEADER in header */ + /* files to ensure that the declarations within are properly */ + /* encapsulated in an `extern "C" { .. }` block when included from a */ + /* C++ compiler. */ + /* */ +#ifndef FT_BEGIN_HEADER +# ifdef __cplusplus +# define FT_BEGIN_HEADER extern "C" { +# else +# define FT_BEGIN_HEADER /* nothing */ +# endif +#endif + + + /*@***********************************************************************/ + /* */ + /* */ + /* FT_END_HEADER */ + /* */ + /* */ + /* This macro is used in association with @FT_BEGIN_HEADER in header */ + /* files to ensure that the declarations within are properly */ + /* encapsulated in an `extern "C" { .. }` block when included from a */ + /* C++ compiler. */ + /* */ +#ifndef FT_END_HEADER +# ifdef __cplusplus +# define FT_END_HEADER } +# else +# define FT_END_HEADER /* nothing */ +# endif +#endif + + + /************************************************************************** + * + * Aliases for the FreeType 2 public and configuration files. + * + */ + + /************************************************************************** + * + * @section: + * header_file_macros + * + * @title: + * Header File Macros + * + * @abstract: + * Macro definitions used to `#include` specific header files. + * + * @description: + * In addition to the normal scheme of including header files like + * + * ``` + * #include + * #include + * #include + * ``` + * + * it is possible to used named macros instead. They can be used + * directly in `#include` statements as in + * + * ``` + * #include FT_FREETYPE_H + * #include FT_MULTIPLE_MASTERS_H + * #include FT_GLYPH_H + * ``` + * + * These macros were introduced to overcome the infamous 8.3~naming rule + * required by DOS (and `FT_MULTIPLE_MASTERS_H` is a lot more meaningful + * than `ftmm.h`). + * + */ + + + /* configuration files */ + + /************************************************************************** + * + * @macro: + * FT_CONFIG_CONFIG_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * FreeType~2 configuration data. + * + */ +#ifndef FT_CONFIG_CONFIG_H +#define FT_CONFIG_CONFIG_H +#endif + + + /************************************************************************** + * + * @macro: + * FT_CONFIG_STANDARD_LIBRARY_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * FreeType~2 interface to the standard C library functions. + * + */ +#ifndef FT_CONFIG_STANDARD_LIBRARY_H +#define FT_CONFIG_STANDARD_LIBRARY_H +#endif + + + /************************************************************************** + * + * @macro: + * FT_CONFIG_OPTIONS_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * FreeType~2 project-specific configuration options. + * + */ +#ifndef FT_CONFIG_OPTIONS_H +#define FT_CONFIG_OPTIONS_H +#endif + + + /************************************************************************** + * + * @macro: + * FT_CONFIG_MODULES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list of FreeType~2 modules that are statically linked to new library + * instances in @FT_Init_FreeType. + * + */ +#ifndef FT_CONFIG_MODULES_H +#define FT_CONFIG_MODULES_H +#endif + + /* */ + + /* public headers */ + + /************************************************************************** + * + * @macro: + * FT_FREETYPE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * base FreeType~2 API. + * + */ +#define FT_FREETYPE_H + + + /************************************************************************** + * + * @macro: + * FT_ERRORS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list of FreeType~2 error codes (and messages). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_ERRORS_H + + + /************************************************************************** + * + * @macro: + * FT_MODULE_ERRORS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list of FreeType~2 module error offsets (and messages). + * + */ +#define FT_MODULE_ERRORS_H + + + /************************************************************************** + * + * @macro: + * FT_SYSTEM_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 interface to low-level operations (i.e., memory management + * and stream i/o). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_SYSTEM_H + + + /************************************************************************** + * + * @macro: + * FT_IMAGE_H + * + * @description: + * A macro used in `#include` statements to name the file containing type + * definitions related to glyph images (i.e., bitmaps, outlines, + * scan-converter parameters). + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_IMAGE_H + + + /************************************************************************** + * + * @macro: + * FT_TYPES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * basic data types defined by FreeType~2. + * + * It is included by @FT_FREETYPE_H. + * + */ +#define FT_TYPES_H + + + /************************************************************************** + * + * @macro: + * FT_LIST_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * list management API of FreeType~2. + * + * (Most applications will never need to include this file.) + * + */ +#define FT_LIST_H + + + /************************************************************************** + * + * @macro: + * FT_OUTLINE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * scalable outline management API of FreeType~2. + * + */ +#define FT_OUTLINE_H + + + /************************************************************************** + * + * @macro: + * FT_SIZES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API which manages multiple @FT_Size objects per face. + * + */ +#define FT_SIZES_H + + + /************************************************************************** + * + * @macro: + * FT_MODULE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * module management API of FreeType~2. + * + */ +#define FT_MODULE_H + + + /************************************************************************** + * + * @macro: + * FT_RENDER_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * renderer module management API of FreeType~2. + * + */ +#define FT_RENDER_H + + + /************************************************************************** + * + * @macro: + * FT_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the driver modules. + * + */ +#define FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_AUTOHINTER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the auto-hinting module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_AUTOHINTER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_CFF_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the CFF driver module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_CFF_DRIVER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the TrueType driver module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_TRUETYPE_DRIVER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_PCF_DRIVER_H + * + * @description: + * A macro used in `#include` statements to name the file containing + * structures and macros related to the PCF driver module. + * + * Deprecated since version~2.9; use @FT_DRIVER_H instead. + * + */ +#define FT_PCF_DRIVER_H FT_DRIVER_H + + + /************************************************************************** + * + * @macro: + * FT_TYPE1_TABLES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * types and API specific to the Type~1 format. + * + */ +#define FT_TYPE1_TABLES_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_IDS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * enumeration values which identify name strings, languages, encodings, + * etc. This file really contains a _large_ set of constant macro + * definitions, taken from the TrueType and OpenType specifications. + * + */ +#define FT_TRUETYPE_IDS_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_TABLES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * types and API specific to the TrueType (as well as OpenType) format. + * + */ +#define FT_TRUETYPE_TABLES_H + + + /************************************************************************** + * + * @macro: + * FT_TRUETYPE_TAGS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of TrueType four-byte 'tags' which identify blocks in + * SFNT-based font formats (i.e., TrueType and OpenType). + * + */ +#define FT_TRUETYPE_TAGS_H + + + /************************************************************************** + * + * @macro: + * FT_BDF_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which accesses BDF-specific strings from a face. + * + */ +#define FT_BDF_H + + + /************************************************************************** + * + * @macro: + * FT_CID_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which access CID font information from a face. + * + */ +#define FT_CID_H + + + /************************************************************************** + * + * @macro: + * FT_GZIP_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports gzip-compressed files. + * + */ +#define FT_GZIP_H + + + /************************************************************************** + * + * @macro: + * FT_LZW_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports LZW-compressed files. + * + */ +#define FT_LZW_H + + + /************************************************************************** + * + * @macro: + * FT_BZIP2_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports bzip2-compressed files. + * + */ +#define FT_BZIP2_H + + + /************************************************************************** + * + * @macro: + * FT_WINFONTS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * definitions of an API which supports Windows FNT files. + * + */ +#define FT_WINFONTS_H + + + /************************************************************************** + * + * @macro: + * FT_GLYPH_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional glyph management component. + * + */ +#define FT_GLYPH_H + + + /************************************************************************** + * + * @macro: + * FT_BITMAP_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional bitmap conversion component. + * + */ +#define FT_BITMAP_H + + + /************************************************************************** + * + * @macro: + * FT_BBOX_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional exact bounding box computation routines. + * + */ +#define FT_BBOX_H + + + /************************************************************************** + * + * @macro: + * FT_CACHE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * API of the optional FreeType~2 cache sub-system. + * + */ +#define FT_CACHE_H + + + /************************************************************************** + * + * @macro: + * FT_MAC_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * Macintosh-specific FreeType~2 API. The latter is used to access fonts + * embedded in resource forks. + * + * This header file must be explicitly included by client applications + * compiled on the Mac (note that the base API still works though). + * + */ +#define FT_MAC_H + + + /************************************************************************** + * + * @macro: + * FT_MULTIPLE_MASTERS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional multiple-masters management API of FreeType~2. + * + */ +#define FT_MULTIPLE_MASTERS_H + + + /************************************************************************** + * + * @macro: + * FT_SFNT_NAMES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional FreeType~2 API which accesses embedded 'name' strings in + * SFNT-based font formats (i.e., TrueType and OpenType). + * + */ +#define FT_SFNT_NAMES_H + + + /************************************************************************** + * + * @macro: + * FT_OPENTYPE_VALIDATE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional FreeType~2 API which validates OpenType tables ('BASE', + * 'GDEF', 'GPOS', 'GSUB', 'JSTF'). + * + */ +#define FT_OPENTYPE_VALIDATE_H + + + /************************************************************************** + * + * @macro: + * FT_GX_VALIDATE_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * optional FreeType~2 API which validates TrueTypeGX/AAT tables ('feat', + * 'mort', 'morx', 'bsln', 'just', 'kern', 'opbd', 'trak', 'prop'). + * + */ +#define FT_GX_VALIDATE_H + + + /************************************************************************** + * + * @macro: + * FT_PFR_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which accesses PFR-specific data. + * + */ +#define FT_PFR_H + + + /************************************************************************** + * + * @macro: + * FT_STROKER_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which provides functions to stroke outline paths. + */ +#define FT_STROKER_H + + + /************************************************************************** + * + * @macro: + * FT_SYNTHESIS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs artificial obliquing and emboldening. + */ +#define FT_SYNTHESIS_H + + + /************************************************************************** + * + * @macro: + * FT_FONT_FORMATS_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which provides functions specific to font formats. + */ +#define FT_FONT_FORMATS_H + + /* deprecated */ +#define FT_XFREE86_H FT_FONT_FORMATS_H + + + /************************************************************************** + * + * @macro: + * FT_TRIGONOMETRY_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs trigonometric computations (e.g., + * cosines and arc tangents). + */ +#define FT_TRIGONOMETRY_H + + + /************************************************************************** + * + * @macro: + * FT_LCD_FILTER_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs color filtering for subpixel rendering. + */ +#define FT_LCD_FILTER_H + + + /************************************************************************** + * + * @macro: + * FT_INCREMENTAL_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which performs incremental glyph loading. + */ +#define FT_INCREMENTAL_H + + + /************************************************************************** + * + * @macro: + * FT_GASP_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which returns entries from the TrueType GASP table. + */ +#define FT_GASP_H + + + /************************************************************************** + * + * @macro: + * FT_ADVANCES_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which returns individual and ranged glyph advances. + */ +#define FT_ADVANCES_H + + + /************************************************************************** + * + * @macro: + * FT_COLOR_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which handles the OpenType 'CPAL' table. + */ +#define FT_COLOR_H + + + /************************************************************************** + * + * @macro: + * FT_OTSVG_H + * + * @description: + * A macro used in `#include` statements to name the file containing the + * FreeType~2 API which handles the OpenType 'SVG~' glyphs. + */ +#define FT_OTSVG_H + + + /* */ + + /* These header files don't need to be included by the user. */ +#define FT_ERROR_DEFINITIONS_H +#define FT_PARAMETER_TAGS_H + + /* Deprecated macros. */ +#define FT_UNPATENTED_HINTING_H +#define FT_TRUETYPE_UNPATENTED_H + + /* `FT_CACHE_H` is the only header file needed for the cache subsystem. */ +#define FT_CACHE_IMAGE_H FT_CACHE_H +#define FT_CACHE_SMALL_BITMAPS_H FT_CACHE_H +#define FT_CACHE_CHARMAP_H FT_CACHE_H + + /* The internals of the cache sub-system are no longer exposed. We */ + /* default to `FT_CACHE_H` at the moment just in case, but we know */ + /* of no rogue client that uses them. */ + /* */ +#define FT_CACHE_MANAGER_H FT_CACHE_H +#define FT_CACHE_INTERNAL_MRU_H FT_CACHE_H +#define FT_CACHE_INTERNAL_MANAGER_H FT_CACHE_H +#define FT_CACHE_INTERNAL_CACHE_H FT_CACHE_H +#define FT_CACHE_INTERNAL_GLYPH_H FT_CACHE_H +#define FT_CACHE_INTERNAL_IMAGE_H FT_CACHE_H +#define FT_CACHE_INTERNAL_SBITS_H FT_CACHE_H + +/* TODO(david): Move this section below to a different header */ +#ifdef FT2_BUILD_LIBRARY +#if defined( _MSC_VER ) /* Visual C++ (and Intel C++) */ + + /* We disable the warning `conditional expression is constant' here */ + /* in order to compile cleanly with the maximum level of warnings. */ + /* In particular, the warning complains about stuff like `while(0)' */ + /* which is very useful in macro definitions. There is no benefit */ + /* in having it enabled. */ +#pragma warning( disable : 4127 ) + +#endif /* _MSC_VER */ +#endif /* FT2_BUILD_LIBRARY */ + +#endif /* FTHEADER_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/ftmodule.h b/external/lumin/thirdparty/freetype/include/freetype/config/ftmodule.h new file mode 100644 index 0000000..b315bab --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/ftmodule.h @@ -0,0 +1,33 @@ +/* + * This file registers the FreeType modules compiled into the library. + * + * If you use GNU make, this file IS NOT USED! Instead, it is created in + * the objects directory (normally `/objs/`) based on information + * from `/modules.cfg`. + * + * Please read `docs/INSTALL.ANY` and `docs/CUSTOMIZE` how to compile + * FreeType without GNU make. + * + */ + +FT_USE_MODULE( FT_Module_Class, autofit_module_class ) +FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t1_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, cff_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t1cid_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, pfr_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, t42_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, winfnt_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, pcf_driver_class ) +FT_USE_MODULE( FT_Driver_ClassRec, bdf_driver_class ) +FT_USE_MODULE( FT_Module_Class, psaux_module_class ) +FT_USE_MODULE( FT_Module_Class, psnames_module_class ) +FT_USE_MODULE( FT_Module_Class, pshinter_module_class ) +FT_USE_MODULE( FT_Module_Class, sfnt_module_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_sdf_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_bitmap_sdf_renderer_class ) +FT_USE_MODULE( FT_Renderer_Class, ft_svg_renderer_class ) + +/* EOF */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/ftoption.h b/external/lumin/thirdparty/freetype/include/freetype/config/ftoption.h new file mode 100644 index 0000000..c5bde24 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/ftoption.h @@ -0,0 +1,1029 @@ +/**************************************************************************** + * + * ftoption.h + * + * User-selectable configuration macros (specification only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTOPTION_H_ +#define FTOPTION_H_ + + +#include + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * USER-SELECTABLE CONFIGURATION MACROS + * + * This file contains the default configuration macro definitions for a + * standard build of the FreeType library. There are three ways to use + * this file to build project-specific versions of the library: + * + * - You can modify this file by hand, but this is not recommended in + * cases where you would like to build several versions of the library + * from a single source directory. + * + * - You can put a copy of this file in your build directory, more + * precisely in `$BUILD/freetype/config/ftoption.h`, where `$BUILD` is + * the name of a directory that is included _before_ the FreeType include + * path during compilation. + * + * The default FreeType Makefiles use the build directory + * `builds/` by default, but you can easily change that for your + * own projects. + * + * - Copy the file to `$BUILD/ft2build.h` and modify it + * slightly to pre-define the macro `FT_CONFIG_OPTIONS_H` used to locate + * this file during the build. For example, + * + * ``` + * #define FT_CONFIG_OPTIONS_H + * #include + * ``` + * + * will use `$BUILD/myftoptions.h` instead of this file for macro + * definitions. + * + * Note also that you can similarly pre-define the macro + * `FT_CONFIG_MODULES_H` used to locate the file listing of the modules + * that are statically linked to the library at compile time. By + * default, this file is ``. + * + * We highly recommend using the third method whenever possible. + * + */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** G E N E R A L F R E E T Y P E 2 C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /*#************************************************************************ + * + * If you enable this configuration option, FreeType recognizes an + * environment variable called `FREETYPE_PROPERTIES`, which can be used to + * control the various font drivers and modules. The controllable + * properties are listed in the section @properties. + * + * You have to undefine this configuration option on platforms that lack + * the concept of environment variables (and thus don't have the `getenv` + * function), for example Windows CE. + * + * `FREETYPE_PROPERTIES` has the following syntax form (broken here into + * multiple lines for better readability). + * + * ``` + * + * ':' + * '=' + * + * ':' + * '=' + * ... + * ``` + * + * Example: + * + * ``` + * FREETYPE_PROPERTIES=truetype:interpreter-version=35 \ + * cff:no-stem-darkening=1 + * ``` + * + */ +#define FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES + + + /************************************************************************** + * + * Uncomment the line below if you want to activate LCD rendering + * technology similar to ClearType in this build of the library. This + * technology triples the resolution in the direction color subpixels. To + * mitigate color fringes inherent to this technology, you also need to + * explicitly set up LCD filtering. + * + * When this macro is not defined, FreeType offers alternative LCD + * rendering technology that produces excellent output. + */ +/* #define FT_CONFIG_OPTION_SUBPIXEL_RENDERING */ + + + /************************************************************************** + * + * Many compilers provide a non-ANSI 64-bit data type that can be used by + * FreeType to speed up some computations. However, this will create some + * problems when compiling the library in strict ANSI mode. + * + * For this reason, the use of 64-bit integers is normally disabled when + * the `__STDC__` macro is defined. You can however disable this by + * defining the macro `FT_CONFIG_OPTION_FORCE_INT64` here. + * + * For most compilers, this will only create compilation warnings when + * building the library. + * + * ObNote: The compiler-specific 64-bit integers are detected in the + * file `ftconfig.h` either statically or through the `configure` + * script on supported platforms. + */ +#undef FT_CONFIG_OPTION_FORCE_INT64 + + + /************************************************************************** + * + * If this macro is defined, do not try to use an assembler version of + * performance-critical functions (e.g., @FT_MulFix). You should only do + * that to verify that the assembler function works properly, or to execute + * benchmark tests of the various implementations. + */ +/* #define FT_CONFIG_OPTION_NO_ASSEMBLER */ + + + /************************************************************************** + * + * If this macro is defined, try to use an inlined assembler version of the + * @FT_MulFix function, which is a 'hotspot' when loading and hinting + * glyphs, and which should be executed as fast as possible. + * + * Note that if your compiler or CPU is not supported, this will default to + * the standard and portable implementation found in `ftcalc.c`. + */ +#define FT_CONFIG_OPTION_INLINE_MULFIX + + + /************************************************************************** + * + * LZW-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `compress` program. This is mostly used to parse many of the PCF + * files that come with various X11 distributions. The implementation + * uses NetBSD's `zopen` to partially uncompress the file on the fly (see + * `src/lzw/ftgzip.c`). + * + * Define this macro if you want to enable this 'feature'. + */ +#define FT_CONFIG_OPTION_USE_LZW + + + /************************************************************************** + * + * Gzip-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `gzip` program. This is mostly used to parse many of the PCF files + * that come with XFree86. The implementation uses 'zlib' to partially + * uncompress the file on the fly (see `src/gzip/ftgzip.c`). + * + * Define this macro if you want to enable this 'feature'. See also the + * macro `FT_CONFIG_OPTION_SYSTEM_ZLIB` below. + */ +#define FT_CONFIG_OPTION_USE_ZLIB + + + /************************************************************************** + * + * ZLib library selection + * + * This macro is only used when `FT_CONFIG_OPTION_USE_ZLIB` is defined. + * It allows FreeType's 'ftgzip' component to link to the system's + * installation of the ZLib library. This is useful on systems like + * Unix or VMS where it generally is already available. + * + * If you let it undefined, the component will use its own copy of the + * zlib sources instead. These have been modified to be included + * directly within the component and **not** export external function + * names. This allows you to link any program with FreeType _and_ ZLib + * without linking conflicts. + * + * Do not `#undef` this macro here since the build system might define + * it for certain configurations only. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + * + * If you use the GNU make build system directly (that is, without the + * `configure` script) and you define this macro, you also have to pass + * `SYSTEM_ZLIB=yes` as an argument to make. + */ +/* #define FT_CONFIG_OPTION_SYSTEM_ZLIB */ + + + /************************************************************************** + * + * Bzip2-compressed file support. + * + * FreeType now handles font files that have been compressed with the + * `bzip2` program. This is mostly used to parse many of the PCF files + * that come with XFree86. The implementation uses `libbz2` to partially + * uncompress the file on the fly (see `src/bzip2/ftbzip2.c`). Contrary + * to gzip, bzip2 currently is not included and need to use the system + * available bzip2 implementation. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_BZIP2 */ + + + /************************************************************************** + * + * Define to disable the use of file stream functions and types, `FILE`, + * `fopen`, etc. Enables the use of smaller system libraries on embedded + * systems that have multiple system libraries, some with or without file + * stream support, in the cases where file stream support is not necessary + * such as memory loading of font files. + */ +/* #define FT_CONFIG_OPTION_DISABLE_STREAM_SUPPORT */ + + + /************************************************************************** + * + * PNG bitmap support. + * + * FreeType now handles loading color bitmap glyphs in the PNG format. + * This requires help from the external libpng library. Uncompressed + * color bitmaps do not need any external libraries and will be supported + * regardless of this configuration. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_PNG */ + + + /************************************************************************** + * + * HarfBuzz support. + * + * FreeType uses the HarfBuzz library to improve auto-hinting of OpenType + * fonts. If available, many glyphs not directly addressable by a font's + * character map will be hinted also. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_HARFBUZZ */ + + + /************************************************************************** + * + * Brotli support. + * + * FreeType uses the Brotli library to provide support for decompressing + * WOFF2 streams. + * + * Define this macro if you want to enable this 'feature'. + * + * If you use a build system like cmake or the `configure` script, + * options set by those programs have precedence, overwriting the value + * here with the configured one. + */ +/* #define FT_CONFIG_OPTION_USE_BROTLI */ + + + /************************************************************************** + * + * Glyph Postscript Names handling + * + * By default, FreeType 2 is compiled with the 'psnames' module. This + * module is in charge of converting a glyph name string into a Unicode + * value, or return a Macintosh standard glyph name for the use with the + * TrueType 'post' table. + * + * Undefine this macro if you do not want 'psnames' compiled in your + * build of FreeType. This has the following effects: + * + * - The TrueType driver will provide its own set of glyph names, if you + * build it to support postscript names in the TrueType 'post' table, + * but will not synthesize a missing Unicode charmap. + * + * - The Type~1 driver will not be able to synthesize a Unicode charmap + * out of the glyphs found in the fonts. + * + * You would normally undefine this configuration macro when building a + * version of FreeType that doesn't contain a Type~1 or CFF driver. + */ +#define FT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /************************************************************************** + * + * Postscript Names to Unicode Values support + * + * By default, FreeType~2 is built with the 'psnames' module compiled in. + * Among other things, the module is used to convert a glyph name into a + * Unicode value. This is especially useful in order to synthesize on + * the fly a Unicode charmap from the CFF/Type~1 driver through a big + * table named the 'Adobe Glyph List' (AGL). + * + * Undefine this macro if you do not want the Adobe Glyph List compiled + * in your 'psnames' module. The Type~1 driver will not be able to + * synthesize a Unicode charmap out of the glyphs found in the fonts. + */ +#define FT_CONFIG_OPTION_ADOBE_GLYPH_LIST + + + /************************************************************************** + * + * Support for Mac fonts + * + * Define this macro if you want support for outline fonts in Mac format + * (mac dfont, mac resource, macbinary containing a mac resource) on + * non-Mac platforms. + * + * Note that the 'FOND' resource isn't checked. + */ +#define FT_CONFIG_OPTION_MAC_FONTS + + + /************************************************************************** + * + * Guessing methods to access embedded resource forks + * + * Enable extra Mac fonts support on non-Mac platforms (e.g., GNU/Linux). + * + * Resource forks which include fonts data are stored sometimes in + * locations which users or developers don't expected. In some cases, + * resource forks start with some offset from the head of a file. In + * other cases, the actual resource fork is stored in file different from + * what the user specifies. If this option is activated, FreeType tries + * to guess whether such offsets or different file names must be used. + * + * Note that normal, direct access of resource forks is controlled via + * the `FT_CONFIG_OPTION_MAC_FONTS` option. + */ +#ifdef FT_CONFIG_OPTION_MAC_FONTS +#define FT_CONFIG_OPTION_GUESSING_EMBEDDED_RFORK +#endif + + + /************************************************************************** + * + * Allow the use of `FT_Incremental_Interface` to load typefaces that + * contain no glyph data, but supply it via a callback function. This is + * required by clients supporting document formats which supply font data + * incrementally as the document is parsed, such as the Ghostscript + * interpreter for the PostScript language. + */ +#define FT_CONFIG_OPTION_INCREMENTAL + + + /************************************************************************** + * + * The size in bytes of the render pool used by the scan-line converter to + * do all of its work. + */ +#define FT_RENDER_POOL_SIZE 16384L + + + /************************************************************************** + * + * FT_MAX_MODULES + * + * The maximum number of modules that can be registered in a single + * FreeType library object. 32~is the default. + */ +#define FT_MAX_MODULES 32 + + + /************************************************************************** + * + * Debug level + * + * FreeType can be compiled in debug or trace mode. In debug mode, + * errors are reported through the 'ftdebug' component. In trace mode, + * additional messages are sent to the standard output during execution. + * + * Define `FT_DEBUG_LEVEL_ERROR` to build the library in debug mode. + * Define `FT_DEBUG_LEVEL_TRACE` to build it in trace mode. + * + * Don't define any of these macros to compile in 'release' mode! + * + * Do not `#undef` these macros here since the build system might define + * them for certain configurations only. + */ +/* #define FT_DEBUG_LEVEL_ERROR */ +/* #define FT_DEBUG_LEVEL_TRACE */ + + + /************************************************************************** + * + * Logging + * + * Compiling FreeType in debug or trace mode makes FreeType write error + * and trace log messages to `stderr`. Enabling this macro + * automatically forces the `FT_DEBUG_LEVEL_ERROR` and + * `FT_DEBUG_LEVEL_TRACE` macros and allows FreeType to write error and + * trace log messages to a file instead of `stderr`. For writing logs + * to a file, FreeType uses an the external `dlg` library (the source + * code is in `src/dlg`). + * + * This option needs a C99 compiler. + */ +/* #define FT_DEBUG_LOGGING */ + + + /************************************************************************** + * + * Autofitter debugging + * + * If `FT_DEBUG_AUTOFIT` is defined, FreeType provides some means to + * control the autofitter behaviour for debugging purposes with global + * boolean variables (consequently, you should **never** enable this + * while compiling in 'release' mode): + * + * ``` + * _af_debug_disable_horz_hints + * _af_debug_disable_vert_hints + * _af_debug_disable_blue_hints + * ``` + * + * Additionally, the following functions provide dumps of various + * internal autofit structures to stdout (using `printf`): + * + * ``` + * af_glyph_hints_dump_points + * af_glyph_hints_dump_segments + * af_glyph_hints_dump_edges + * af_glyph_hints_get_num_segments + * af_glyph_hints_get_segment_offset + * ``` + * + * As an argument, they use another global variable: + * + * ``` + * _af_debug_hints + * ``` + * + * Please have a look at the `ftgrid` demo program to see how those + * variables and macros should be used. + * + * Do not `#undef` these macros here since the build system might define + * them for certain configurations only. + */ +/* #define FT_DEBUG_AUTOFIT */ + + + /************************************************************************** + * + * Memory Debugging + * + * FreeType now comes with an integrated memory debugger that is capable + * of detecting simple errors like memory leaks or double deletes. To + * compile it within your build of the library, you should define + * `FT_DEBUG_MEMORY` here. + * + * Note that the memory debugger is only activated at runtime when when + * the _environment_ variable `FT2_DEBUG_MEMORY` is defined also! + * + * Do not `#undef` this macro here since the build system might define it + * for certain configurations only. + */ +/* #define FT_DEBUG_MEMORY */ + + + /************************************************************************** + * + * Module errors + * + * If this macro is set (which is _not_ the default), the higher byte of + * an error code gives the module in which the error has occurred, while + * the lower byte is the real error code. + * + * Setting this macro makes sense for debugging purposes only, since it + * would break source compatibility of certain programs that use + * FreeType~2. + * + * More details can be found in the files `ftmoderr.h` and `fterrors.h`. + */ +#undef FT_CONFIG_OPTION_USE_MODULE_ERRORS + + + /************************************************************************** + * + * OpenType SVG Glyph Support + * + * Setting this macro enables support for OpenType SVG glyphs. By + * default, FreeType can only fetch SVG documents. However, it can also + * render them if external rendering hook functions are plugged in at + * runtime. + * + * More details on the hooks can be found in file `otsvg.h`. + */ +#define FT_CONFIG_OPTION_SVG + + + /************************************************************************** + * + * Error Strings + * + * If this macro is set, `FT_Error_String` will return meaningful + * descriptions. This is not enabled by default to reduce the overall + * size of FreeType. + * + * More details can be found in the file `fterrors.h`. + */ +/* #define FT_CONFIG_OPTION_ERROR_STRINGS */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** S F N T D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_EMBEDDED_BITMAPS` if you want to support + * embedded bitmaps in all formats using the 'sfnt' module (namely + * TrueType~& OpenType). + */ +#define TT_CONFIG_OPTION_EMBEDDED_BITMAPS + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_COLOR_LAYERS` if you want to support colored + * outlines (from the 'COLR'/'CPAL' tables) in all formats using the 'sfnt' + * module (namely TrueType~& OpenType). + */ +#define TT_CONFIG_OPTION_COLOR_LAYERS + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_POSTSCRIPT_NAMES` if you want to be able to + * load and enumerate the glyph Postscript names in a TrueType or OpenType + * file. + * + * Note that when you do not compile the 'psnames' module by undefining the + * above `FT_CONFIG_OPTION_POSTSCRIPT_NAMES`, the 'sfnt' module will + * contain additional code used to read the PS Names table from a font. + * + * (By default, the module uses 'psnames' to extract glyph names.) + */ +#define TT_CONFIG_OPTION_POSTSCRIPT_NAMES + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_SFNT_NAMES` if your applications need to access + * the internal name table in a SFNT-based format like TrueType or + * OpenType. The name table contains various strings used to describe the + * font, like family name, copyright, version, etc. It does not contain + * any glyph name though. + * + * Accessing SFNT names is done through the functions declared in + * `ftsnames.h`. + */ +#define TT_CONFIG_OPTION_SFNT_NAMES + + + /************************************************************************** + * + * TrueType CMap support + * + * Here you can fine-tune which TrueType CMap table format shall be + * supported. + */ +#define TT_CONFIG_CMAP_FORMAT_0 +#define TT_CONFIG_CMAP_FORMAT_2 +#define TT_CONFIG_CMAP_FORMAT_4 +#define TT_CONFIG_CMAP_FORMAT_6 +#define TT_CONFIG_CMAP_FORMAT_8 +#define TT_CONFIG_CMAP_FORMAT_10 +#define TT_CONFIG_CMAP_FORMAT_12 +#define TT_CONFIG_CMAP_FORMAT_13 +#define TT_CONFIG_CMAP_FORMAT_14 + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T R U E T Y P E D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_BYTECODE_INTERPRETER` if you want to compile a + * bytecode interpreter in the TrueType driver. + * + * By undefining this, you will only compile the code necessary to load + * TrueType glyphs without hinting. + * + * Do not `#undef` this macro here, since the build system might define it + * for certain configurations only. + */ +#define TT_CONFIG_OPTION_BYTECODE_INTERPRETER + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_SUBPIXEL_HINTING` if you want to compile + * subpixel hinting support into the TrueType driver. This modifies the + * TrueType hinting mechanism when anything but `FT_RENDER_MODE_MONO` is + * requested. + * + * In particular, it modifies the bytecode interpreter to interpret (or + * not) instructions in a certain way so that all TrueType fonts look like + * they do in a Windows ClearType (DirectWrite) environment. See [1] for a + * technical overview on what this means. See `ttinterp.h` for more + * details on the LEAN option. + * + * There are three possible values. + * + * Value 1: + * This value is associated with the 'Infinality' moniker, contributed by + * an individual nicknamed Infinality with the goal of making TrueType + * fonts render better than on Windows. A high amount of configurability + * and flexibility, down to rules for single glyphs in fonts, but also + * very slow. Its experimental and slow nature and the original + * developer losing interest meant that this option was never enabled in + * default builds. + * + * The corresponding interpreter version is v38. + * + * Value 2: + * The new default mode for the TrueType driver. The Infinality code + * base was stripped to the bare minimum and all configurability removed + * in the name of speed and simplicity. The configurability was mainly + * aimed at legacy fonts like 'Arial', 'Times New Roman', or 'Courier'. + * Legacy fonts are fonts that modify vertical stems to achieve clean + * black-and-white bitmaps. The new mode focuses on applying a minimal + * set of rules to all fonts indiscriminately so that modern and web + * fonts render well while legacy fonts render okay. + * + * The corresponding interpreter version is v40. + * + * Value 3: + * Compile both, making both v38 and v40 available (the latter is the + * default). + * + * By undefining these, you get rendering behavior like on Windows without + * ClearType, i.e., Windows XP without ClearType enabled and Win9x + * (interpreter version v35). Or not, depending on how much hinting blood + * and testing tears the font designer put into a given font. If you + * define one or both subpixel hinting options, you can switch between + * between v35 and the ones you define (using `FT_Property_Set`). + * + * This option requires `TT_CONFIG_OPTION_BYTECODE_INTERPRETER` to be + * defined. + * + * [1] + * https://www.microsoft.com/typography/cleartype/truetypecleartype.aspx + */ +/* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING 1 */ +#define TT_CONFIG_OPTION_SUBPIXEL_HINTING 2 +/* #define TT_CONFIG_OPTION_SUBPIXEL_HINTING ( 1 | 2 ) */ + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED` to compile the + * TrueType glyph loader to use Apple's definition of how to handle + * component offsets in composite glyphs. + * + * Apple and MS disagree on the default behavior of component offsets in + * composites. Apple says that they should be scaled by the scaling + * factors in the transformation matrix (roughly, it's more complex) while + * MS says they should not. OpenType defines two bits in the composite + * flags array which can be used to disambiguate, but old fonts will not + * have them. + * + * https://www.microsoft.com/typography/otspec/glyf.htm + * https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6glyf.html + */ +#undef TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_GX_VAR_SUPPORT` if you want to include support + * for Apple's distortable font technology ('fvar', 'gvar', 'cvar', and + * 'avar' tables). Tagged 'Font Variations', this is now part of OpenType + * also. This has many similarities to Type~1 Multiple Masters support. + */ +#define TT_CONFIG_OPTION_GX_VAR_SUPPORT + + + /************************************************************************** + * + * Define `TT_CONFIG_OPTION_BDF` if you want to include support for an + * embedded 'BDF~' table within SFNT-based bitmap formats. + */ +#define TT_CONFIG_OPTION_BDF + + + /************************************************************************** + * + * Option `TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES` controls the maximum + * number of bytecode instructions executed for a single run of the + * bytecode interpreter, needed to prevent infinite loops. You don't want + * to change this except for very special situations (e.g., making a + * library fuzzer spend less time to handle broken fonts). + * + * It is not expected that this value is ever modified by a configuring + * script; instead, it gets surrounded with `#ifndef ... #endif` so that + * the value can be set as a preprocessor option on the compiler's command + * line. + */ +#ifndef TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES +#define TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES 1000000L +#endif + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** T Y P E 1 D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * `T1_MAX_DICT_DEPTH` is the maximum depth of nest dictionaries and arrays + * in the Type~1 stream (see `t1load.c`). A minimum of~4 is required. + */ +#define T1_MAX_DICT_DEPTH 5 + + + /************************************************************************** + * + * `T1_MAX_SUBRS_CALLS` details the maximum number of nested sub-routine + * calls during glyph loading. + */ +#define T1_MAX_SUBRS_CALLS 16 + + + /************************************************************************** + * + * `T1_MAX_CHARSTRING_OPERANDS` is the charstring stack's capacity. A + * minimum of~16 is required. + * + * The Chinese font 'MingTiEG-Medium' (covering the CNS 11643 character + * set) needs 256. + */ +#define T1_MAX_CHARSTRINGS_OPERANDS 256 + + + /************************************************************************** + * + * Define this configuration macro if you want to prevent the compilation + * of the 't1afm' module, which is in charge of reading Type~1 AFM files + * into an existing face. Note that if set, the Type~1 driver will be + * unable to produce kerning distances. + */ +#undef T1_CONFIG_OPTION_NO_AFM + + + /************************************************************************** + * + * Define this configuration macro if you want to prevent the compilation + * of the Multiple Masters font support in the Type~1 driver. + */ +#undef T1_CONFIG_OPTION_NO_MM_SUPPORT + + + /************************************************************************** + * + * `T1_CONFIG_OPTION_OLD_ENGINE` controls whether the pre-Adobe Type~1 + * engine gets compiled into FreeType. If defined, it is possible to + * switch between the two engines using the `hinting-engine` property of + * the 'type1' driver module. + */ +/* #define T1_CONFIG_OPTION_OLD_ENGINE */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** C F F D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Using `CFF_CONFIG_OPTION_DARKENING_PARAMETER_{X,Y}{1,2,3,4}` it is + * possible to set up the default values of the four control points that + * define the stem darkening behaviour of the (new) CFF engine. For more + * details please read the documentation of the `darkening-parameters` + * property (file `ftdriver.h`), which allows the control at run-time. + * + * Do **not** undefine these macros! + */ +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 500 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 400 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 1000 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 275 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 1667 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 275 + +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 2333 +#define CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 0 + + + /************************************************************************** + * + * `CFF_CONFIG_OPTION_OLD_ENGINE` controls whether the pre-Adobe CFF engine + * gets compiled into FreeType. If defined, it is possible to switch + * between the two engines using the `hinting-engine` property of the 'cff' + * driver module. + */ +/* #define CFF_CONFIG_OPTION_OLD_ENGINE */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** P C F D R I V E R C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * There are many PCF fonts just called 'Fixed' which look completely + * different, and which have nothing to do with each other. When selecting + * 'Fixed' in KDE or Gnome one gets results that appear rather random, the + * style changes often if one changes the size and one cannot select some + * fonts at all. This option makes the 'pcf' module prepend the foundry + * name (plus a space) to the family name. + * + * We also check whether we have 'wide' characters; all put together, we + * get family names like 'Sony Fixed' or 'Misc Fixed Wide'. + * + * If this option is activated, it can be controlled with the + * `no-long-family-names` property of the 'pcf' driver module. + */ +/* #define PCF_CONFIG_OPTION_LONG_FAMILY_NAMES */ + + + /*************************************************************************/ + /*************************************************************************/ + /**** ****/ + /**** A U T O F I T M O D U L E C O N F I G U R A T I O N ****/ + /**** ****/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * Compile 'autofit' module with CJK (Chinese, Japanese, Korean) script + * support. + */ +#define AF_CONFIG_OPTION_CJK + + + /************************************************************************** + * + * Compile 'autofit' module with fallback Indic script support, covering + * some scripts that the 'latin' submodule of the 'autofit' module doesn't + * (yet) handle. Currently, this needs option `AF_CONFIG_OPTION_CJK`. + */ +#ifdef AF_CONFIG_OPTION_CJK +#define AF_CONFIG_OPTION_INDIC +#endif + + + /************************************************************************** + * + * Use TrueType-like size metrics for 'light' auto-hinting. + * + * It is strongly recommended to avoid this option, which exists only to + * help some legacy applications retain its appearance and behaviour with + * respect to auto-hinted TrueType fonts. + * + * The very reason this option exists at all are GNU/Linux distributions + * like Fedora that did not un-patch the following change (which was + * present in FreeType between versions 2.4.6 and 2.7.1, inclusive). + * + * ``` + * 2011-07-16 Steven Chu + * + * [truetype] Fix metrics on size request for scalable fonts. + * ``` + * + * This problematic commit is now reverted (more or less). + */ +/* #define AF_CONFIG_OPTION_TT_SIZE_METRICS */ + + /* */ + + + /* + * This macro is obsolete. Support has been removed in FreeType version + * 2.5. + */ +/* #define FT_CONFIG_OPTION_OLD_INTERNALS */ + + + /* + * The next three macros are defined if native TrueType hinting is + * requested by the definitions above. Don't change this. + */ +#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER +#define TT_USE_BYTECODE_INTERPRETER + +#ifdef TT_CONFIG_OPTION_SUBPIXEL_HINTING +#if TT_CONFIG_OPTION_SUBPIXEL_HINTING & 1 +#define TT_SUPPORT_SUBPIXEL_HINTING_INFINALITY +#endif + +#if TT_CONFIG_OPTION_SUBPIXEL_HINTING & 2 +#define TT_SUPPORT_SUBPIXEL_HINTING_MINIMAL +#endif +#endif +#endif + + + /* + * The TT_SUPPORT_COLRV1 macro is defined to indicate to clients that this + * version of FreeType has support for 'COLR' v1 API. This definition is + * useful to FreeType clients that want to build in support for 'COLR' v1 + * depending on a tip-of-tree checkout before it is officially released in + * FreeType, and while the feature cannot yet be tested against using + * version macros. Don't change this macro. This may be removed once the + * feature is in a FreeType release version and version macros can be used + * to test for availability. + */ +#ifdef TT_CONFIG_OPTION_COLOR_LAYERS +#define TT_SUPPORT_COLRV1 +#endif + + + /* + * Check CFF darkening parameters. The checks are the same as in function + * `cff_property_set` in file `cffdrivr.c`. + */ +#if CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 < 0 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 < 0 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 < 0 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X1 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X2 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X3 > \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_X4 || \ + \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y1 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y2 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y3 > 500 || \ + CFF_CONFIG_OPTION_DARKENING_PARAMETER_Y4 > 500 +#error "Invalid CFF darkening parameters!" +#endif + + +FT_END_HEADER + +#endif /* FTOPTION_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/ftstdlib.h b/external/lumin/thirdparty/freetype/include/freetype/config/ftstdlib.h new file mode 100644 index 0000000..7958c2a --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/ftstdlib.h @@ -0,0 +1,185 @@ +/**************************************************************************** + * + * ftstdlib.h + * + * ANSI-specific library and header configuration file (specification + * only). + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file is used to group all `#includes` to the ANSI~C library that + * FreeType normally requires. It also defines macros to rename the + * standard functions within the FreeType source code. + * + * Load a file which defines `FTSTDLIB_H_` before this one to override it. + * + */ + + +#ifndef FTSTDLIB_H_ +#define FTSTDLIB_H_ + + +#include + +#define ft_ptrdiff_t ptrdiff_t + + + /************************************************************************** + * + * integer limits + * + * `UINT_MAX` and `ULONG_MAX` are used to automatically compute the size of + * `int` and `long` in bytes at compile-time. So far, this works for all + * platforms the library has been tested on. We also check `ULLONG_MAX` + * to see whether we can use 64-bit `long long` later on. + * + * Note that on the extremely rare platforms that do not provide integer + * types that are _exactly_ 16 and 32~bits wide (e.g., some old Crays where + * `int` is 36~bits), we do not make any guarantee about the correct + * behaviour of FreeType~2 with all fonts. + * + * In these cases, `ftconfig.h` will refuse to compile anyway with a + * message like 'couldn't find 32-bit type' or something similar. + * + */ + + +#include + +#define FT_CHAR_BIT CHAR_BIT +#define FT_USHORT_MAX USHRT_MAX +#define FT_INT_MAX INT_MAX +#define FT_INT_MIN INT_MIN +#define FT_UINT_MAX UINT_MAX +#define FT_LONG_MIN LONG_MIN +#define FT_LONG_MAX LONG_MAX +#define FT_ULONG_MAX ULONG_MAX +#ifdef LLONG_MAX +#define FT_LLONG_MAX LLONG_MAX +#endif +#ifdef LLONG_MIN +#define FT_LLONG_MIN LLONG_MIN +#endif +#ifdef ULLONG_MAX +#define FT_ULLONG_MAX ULLONG_MAX +#endif + + + /************************************************************************** + * + * character and string processing + * + */ + + +#include + +#define ft_memchr memchr +#define ft_memcmp memcmp +#define ft_memcpy memcpy +#define ft_memmove memmove +#define ft_memset memset +#define ft_strcat strcat +#define ft_strcmp strcmp +#define ft_strcpy strcpy +#define ft_strlen strlen +#define ft_strncmp strncmp +#define ft_strncpy strncpy +#define ft_strrchr strrchr +#define ft_strstr strstr + + + /************************************************************************** + * + * file handling + * + */ + + +#include + +#define FT_FILE FILE +#define ft_fclose fclose +#define ft_fopen fopen +#define ft_fread fread +#define ft_fseek fseek +#define ft_ftell ftell +#define ft_sprintf sprintf + + + /************************************************************************** + * + * sorting + * + */ + + +#include + +#define ft_qsort qsort + + + /************************************************************************** + * + * memory allocation + * + */ + + +#define ft_scalloc calloc +#define ft_sfree free +#define ft_smalloc malloc +#define ft_srealloc realloc + + + /************************************************************************** + * + * miscellaneous + * + */ + + +#define ft_strtol strtol +#define ft_getenv getenv + + + /************************************************************************** + * + * execution control + * + */ + + +#include + +#define ft_jmp_buf jmp_buf /* note: this cannot be a typedef since */ + /* `jmp_buf` is defined as a macro */ + /* on certain platforms */ + +#define ft_longjmp longjmp +#define ft_setjmp( b ) setjmp( *(ft_jmp_buf*) &(b) ) /* same thing here */ + + + /* The following is only used for debugging purposes, i.e., if */ + /* `FT_DEBUG_LEVEL_ERROR` or `FT_DEBUG_LEVEL_TRACE` are defined. */ + +#include + + +#endif /* FTSTDLIB_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/integer-types.h b/external/lumin/thirdparty/freetype/include/freetype/config/integer-types.h new file mode 100644 index 0000000..d9d2638 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/integer-types.h @@ -0,0 +1,250 @@ +/**************************************************************************** + * + * config/integer-types.h + * + * FreeType integer types definitions. + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ +#ifndef FREETYPE_CONFIG_INTEGER_TYPES_H_ +#define FREETYPE_CONFIG_INTEGER_TYPES_H_ + + /* There are systems (like the Texas Instruments 'C54x) where a `char` */ + /* has 16~bits. ANSI~C says that `sizeof(char)` is always~1. Since an */ + /* `int` has 16~bits also for this system, `sizeof(int)` gives~1 which */ + /* is probably unexpected. */ + /* */ + /* `CHAR_BIT` (defined in `limits.h`) gives the number of bits in a */ + /* `char` type. */ + +#ifndef FT_CHAR_BIT +#define FT_CHAR_BIT CHAR_BIT +#endif + +#ifndef FT_SIZEOF_INT + + /* The size of an `int` type. */ +#if FT_UINT_MAX == 0xFFFFUL +#define FT_SIZEOF_INT ( 16 / FT_CHAR_BIT ) +#elif FT_UINT_MAX == 0xFFFFFFFFUL +#define FT_SIZEOF_INT ( 32 / FT_CHAR_BIT ) +#elif FT_UINT_MAX > 0xFFFFFFFFUL && FT_UINT_MAX == 0xFFFFFFFFFFFFFFFFUL +#define FT_SIZEOF_INT ( 64 / FT_CHAR_BIT ) +#else +#error "Unsupported size of `int' type!" +#endif + +#endif /* !defined(FT_SIZEOF_INT) */ + +#ifndef FT_SIZEOF_LONG + + /* The size of a `long` type. A five-byte `long` (as used e.g. on the */ + /* DM642) is recognized but avoided. */ +#if FT_ULONG_MAX == 0xFFFFFFFFUL +#define FT_SIZEOF_LONG ( 32 / FT_CHAR_BIT ) +#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFUL +#define FT_SIZEOF_LONG ( 32 / FT_CHAR_BIT ) +#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFFFFFFFUL +#define FT_SIZEOF_LONG ( 64 / FT_CHAR_BIT ) +#else +#error "Unsupported size of `long' type!" +#endif + +#endif /* !defined(FT_SIZEOF_LONG) */ + +#ifndef FT_SIZEOF_LONG_LONG + + /* The size of a `long long` type if available */ +#if defined( FT_ULLONG_MAX ) && FT_ULLONG_MAX >= 0xFFFFFFFFFFFFFFFFULL +#define FT_SIZEOF_LONG_LONG ( 64 / FT_CHAR_BIT ) +#else +#define FT_SIZEOF_LONG_LONG 0 +#endif + +#endif /* !defined(FT_SIZEOF_LONG_LONG) */ + + + /************************************************************************** + * + * @section: + * basic_types + * + */ + + + /************************************************************************** + * + * @type: + * FT_Int16 + * + * @description: + * A typedef for a 16bit signed integer type. + */ + typedef signed short FT_Int16; + + + /************************************************************************** + * + * @type: + * FT_UInt16 + * + * @description: + * A typedef for a 16bit unsigned integer type. + */ + typedef unsigned short FT_UInt16; + + /* */ + + + /* this #if 0 ... #endif clause is for documentation purposes */ +#if 0 + + /************************************************************************** + * + * @type: + * FT_Int32 + * + * @description: + * A typedef for a 32bit signed integer type. The size depends on the + * configuration. + */ + typedef signed XXX FT_Int32; + + + /************************************************************************** + * + * @type: + * FT_UInt32 + * + * A typedef for a 32bit unsigned integer type. The size depends on the + * configuration. + */ + typedef unsigned XXX FT_UInt32; + + + /************************************************************************** + * + * @type: + * FT_Int64 + * + * A typedef for a 64bit signed integer type. The size depends on the + * configuration. Only defined if there is real 64bit support; + * otherwise, it gets emulated with a structure (if necessary). + */ + typedef signed XXX FT_Int64; + + + /************************************************************************** + * + * @type: + * FT_UInt64 + * + * A typedef for a 64bit unsigned integer type. The size depends on the + * configuration. Only defined if there is real 64bit support; + * otherwise, it gets emulated with a structure (if necessary). + */ + typedef unsigned XXX FT_UInt64; + + /* */ + +#endif + +#if FT_SIZEOF_INT == ( 32 / FT_CHAR_BIT ) + + typedef signed int FT_Int32; + typedef unsigned int FT_UInt32; + +#elif FT_SIZEOF_LONG == ( 32 / FT_CHAR_BIT ) + + typedef signed long FT_Int32; + typedef unsigned long FT_UInt32; + +#else +#error "no 32bit type found -- please check your configuration files" +#endif + + + /* look up an integer type that is at least 32~bits */ +#if FT_SIZEOF_INT >= ( 32 / FT_CHAR_BIT ) + + typedef int FT_Fast; + typedef unsigned int FT_UFast; + +#elif FT_SIZEOF_LONG >= ( 32 / FT_CHAR_BIT ) + + typedef long FT_Fast; + typedef unsigned long FT_UFast; + +#endif + + + /* determine whether we have a 64-bit integer type */ +#if FT_SIZEOF_LONG == ( 64 / FT_CHAR_BIT ) + +#define FT_INT64 long +#define FT_UINT64 unsigned long + +#elif FT_SIZEOF_LONG_LONG >= ( 64 / FT_CHAR_BIT ) + +#define FT_INT64 long long int +#define FT_UINT64 unsigned long long int + + /************************************************************************** + * + * A 64-bit data type may create compilation problems if you compile in + * strict ANSI mode. To avoid them, we disable other 64-bit data types if + * `__STDC__` is defined. You can however ignore this rule by defining the + * `FT_CONFIG_OPTION_FORCE_INT64` configuration macro. + */ +#elif !defined( __STDC__ ) || defined( FT_CONFIG_OPTION_FORCE_INT64 ) + +#if defined( _MSC_VER ) && _MSC_VER >= 900 /* Visual C++ (and Intel C++) */ + + /* this compiler provides the `__int64` type */ +#define FT_INT64 __int64 +#define FT_UINT64 unsigned __int64 + +#elif defined( __BORLANDC__ ) /* Borland C++ */ + + /* XXXX: We should probably check the value of `__BORLANDC__` in order */ + /* to test the compiler version. */ + + /* this compiler provides the `__int64` type */ +#define FT_INT64 __int64 +#define FT_UINT64 unsigned __int64 + +#elif defined( __WATCOMC__ ) && __WATCOMC__ >= 1100 /* Watcom C++ */ + +#define FT_INT64 long long int +#define FT_UINT64 unsigned long long int + +#elif defined( __MWERKS__ ) /* Metrowerks CodeWarrior */ + +#define FT_INT64 long long int +#define FT_UINT64 unsigned long long int + +#elif defined( __GNUC__ ) + + /* GCC provides the `long long` type */ +#define FT_INT64 long long int +#define FT_UINT64 unsigned long long int + +#endif /* !__STDC__ */ + +#endif /* FT_SIZEOF_LONG == (64 / FT_CHAR_BIT) */ + +#ifdef FT_INT64 + typedef FT_INT64 FT_Int64; + typedef FT_UINT64 FT_UInt64; +#endif + + +#endif /* FREETYPE_CONFIG_INTEGER_TYPES_H_ */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/mac-support.h b/external/lumin/thirdparty/freetype/include/freetype/config/mac-support.h new file mode 100644 index 0000000..e42c9fe --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/mac-support.h @@ -0,0 +1,49 @@ +/**************************************************************************** + * + * config/mac-support.h + * + * Mac/OS X support configuration header. + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ +#ifndef FREETYPE_CONFIG_MAC_SUPPORT_H_ +#define FREETYPE_CONFIG_MAC_SUPPORT_H_ + + /************************************************************************** + * + * Mac support + * + * This is the only necessary change, so it is defined here instead + * providing a new configuration file. + */ +#if defined( __APPLE__ ) || ( defined( __MWERKS__ ) && defined( macintosh ) ) + /* No Carbon frameworks for 64bit 10.4.x. */ + /* `AvailabilityMacros.h` is available since Mac OS X 10.2, */ + /* so guess the system version by maximum errno before inclusion. */ +#include +#ifdef ECANCELED /* defined since 10.2 */ +#include "AvailabilityMacros.h" +#endif +#if defined( __LP64__ ) && \ + ( MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_4 ) +#undef FT_MACINTOSH +#endif + +#elif defined( __SC__ ) || defined( __MRC__ ) + /* Classic MacOS compilers */ +#include "ConditionalMacros.h" +#if TARGET_OS_MAC +#define FT_MACINTOSH 1 +#endif + +#endif /* Mac support */ + +#endif /* FREETYPE_CONFIG_MAC_SUPPORT_H_ */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/config/public-macros.h b/external/lumin/thirdparty/freetype/include/freetype/config/public-macros.h new file mode 100644 index 0000000..0074134 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/config/public-macros.h @@ -0,0 +1,138 @@ +/**************************************************************************** + * + * config/public-macros.h + * + * Define a set of compiler macros used in public FreeType headers. + * + * Copyright (C) 2020-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + /* + * The definitions in this file are used by the public FreeType headers + * and thus should be considered part of the public API. + * + * Other compiler-specific macro definitions that are not exposed by the + * FreeType API should go into + * `include/freetype/internal/compiler-macros.h` instead. + */ +#ifndef FREETYPE_CONFIG_PUBLIC_MACROS_H_ +#define FREETYPE_CONFIG_PUBLIC_MACROS_H_ + + /* + * `FT_BEGIN_HEADER` and `FT_END_HEADER` might have already been defined + * by `freetype/config/ftheader.h`, but we don't want to include this + * header here, so redefine the macros here only when needed. Their + * definition is very stable, so keeping them in sync with the ones in the + * header should not be a maintenance issue. + */ +#ifndef FT_BEGIN_HEADER +#ifdef __cplusplus +#define FT_BEGIN_HEADER extern "C" { +#else +#define FT_BEGIN_HEADER /* empty */ +#endif +#endif /* FT_BEGIN_HEADER */ + +#ifndef FT_END_HEADER +#ifdef __cplusplus +#define FT_END_HEADER } +#else +#define FT_END_HEADER /* empty */ +#endif +#endif /* FT_END_HEADER */ + + +FT_BEGIN_HEADER + + /* + * Mark a function declaration as public. This ensures it will be + * properly exported to client code. Place this before a function + * declaration. + * + * NOTE: This macro should be considered an internal implementation + * detail, and not part of the FreeType API. It is only defined here + * because it is needed by `FT_EXPORT`. + */ + + /* Visual C, mingw */ +#if defined( _WIN32 ) + +#if defined( FT2_BUILD_LIBRARY ) && defined( DLL_EXPORT ) +#define FT_PUBLIC_FUNCTION_ATTRIBUTE __declspec( dllexport ) +#elif defined( DLL_IMPORT ) +#define FT_PUBLIC_FUNCTION_ATTRIBUTE __declspec( dllimport ) +#endif + + /* gcc, clang */ +#elif ( defined( __GNUC__ ) && __GNUC__ >= 4 ) || defined( __clang__ ) +#define FT_PUBLIC_FUNCTION_ATTRIBUTE \ + __attribute__(( visibility( "default" ) )) + + /* Sun */ +#elif defined( __SUNPRO_C ) && __SUNPRO_C >= 0x550 +#define FT_PUBLIC_FUNCTION_ATTRIBUTE __global +#endif + + +#ifndef FT_PUBLIC_FUNCTION_ATTRIBUTE +#define FT_PUBLIC_FUNCTION_ATTRIBUTE /* empty */ +#endif + + + /* + * Define a public FreeType API function. This ensures it is properly + * exported or imported at build time. The macro parameter is the + * function's return type as in: + * + * FT_EXPORT( FT_Bool ) + * FT_Object_Method( FT_Object obj, + * ... ); + * + * NOTE: This requires that all `FT_EXPORT` uses are inside + * `FT_BEGIN_HEADER ... FT_END_HEADER` blocks. This guarantees that the + * functions are exported with C linkage, even when the header is included + * by a C++ source file. + */ +#define FT_EXPORT( x ) FT_PUBLIC_FUNCTION_ATTRIBUTE extern x + + + /* + * `FT_UNUSED` indicates that a given parameter is not used -- this is + * only used to get rid of unpleasant compiler warnings. + * + * Technically, this was not meant to be part of the public API, but some + * third-party code depends on it. + */ +#ifndef FT_UNUSED +#define FT_UNUSED( arg ) ( (arg) = (arg) ) +#endif + + + /* + * Support for casts in both C and C++. + */ +#ifdef __cplusplus +#define FT_STATIC_CAST( type, var ) static_cast(var) +#define FT_REINTERPRET_CAST( type, var ) reinterpret_cast(var) + +#define FT_STATIC_BYTE_CAST( type, var ) \ + static_cast( static_cast( var ) ) +#else +#define FT_STATIC_CAST( type, var ) (type)(var) +#define FT_REINTERPRET_CAST( type, var ) (type)(var) + +#define FT_STATIC_BYTE_CAST( type, var ) (type)(unsigned char)(var) +#endif + + +FT_END_HEADER + +#endif /* FREETYPE_CONFIG_PUBLIC_MACROS_H_ */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/freetype.h b/external/lumin/thirdparty/freetype/include/freetype/freetype.h new file mode 100644 index 0000000..aa1a4fe --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/freetype.h @@ -0,0 +1,5050 @@ +/**************************************************************************** + * + * freetype.h + * + * FreeType high-level API and common types (specification only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FREETYPE_H_ +#define FREETYPE_H_ + + +#include +#include FT_CONFIG_CONFIG_H +#include +#include + + +FT_BEGIN_HEADER + + + + /************************************************************************** + * + * @section: + * preamble + * + * @title: + * Preamble + * + * @abstract: + * What FreeType is and isn't + * + * @description: + * FreeType is a library that provides access to glyphs in font files. It + * scales the glyph images and their metrics to a requested size, and it + * rasterizes the glyph images to produce pixel or subpixel alpha coverage + * bitmaps. + * + * Note that FreeType is _not_ a text layout engine. You have to use + * higher-level libraries like HarfBuzz, Pango, or ICU for that. + * + * Note also that FreeType does _not_ perform alpha blending or + * compositing the resulting bitmaps or pixmaps by itself. Use your + * favourite graphics library (for example, Cairo or Skia) to further + * process FreeType's output. + * + */ + + + /************************************************************************** + * + * @section: + * header_inclusion + * + * @title: + * FreeType's header inclusion scheme + * + * @abstract: + * How client applications should include FreeType header files. + * + * @description: + * To be as flexible as possible (and for historical reasons), you must + * load file `ft2build.h` first before other header files, for example + * + * ``` + * #include + * + * #include + * #include + * ``` + */ + + + /************************************************************************** + * + * @section: + * user_allocation + * + * @title: + * User allocation + * + * @abstract: + * How client applications should allocate FreeType data structures. + * + * @description: + * FreeType assumes that structures allocated by the user and passed as + * arguments are zeroed out except for the actual data. In other words, + * it is recommended to use `calloc` (or variants of it) instead of + * `malloc` for allocation. + * + */ + + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* B A S I C T Y P E S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @section: + * base_interface + * + * @title: + * Base Interface + * + * @abstract: + * The FreeType~2 base font interface. + * + * @description: + * This section describes the most important public high-level API + * functions of FreeType~2. + * + * @order: + * FT_Library + * FT_Face + * FT_Size + * FT_GlyphSlot + * FT_CharMap + * FT_Encoding + * FT_ENC_TAG + * + * FT_FaceRec + * + * FT_FACE_FLAG_SCALABLE + * FT_FACE_FLAG_FIXED_SIZES + * FT_FACE_FLAG_FIXED_WIDTH + * FT_FACE_FLAG_HORIZONTAL + * FT_FACE_FLAG_VERTICAL + * FT_FACE_FLAG_COLOR + * FT_FACE_FLAG_SFNT + * FT_FACE_FLAG_CID_KEYED + * FT_FACE_FLAG_TRICKY + * FT_FACE_FLAG_KERNING + * FT_FACE_FLAG_MULTIPLE_MASTERS + * FT_FACE_FLAG_VARIATION + * FT_FACE_FLAG_GLYPH_NAMES + * FT_FACE_FLAG_EXTERNAL_STREAM + * FT_FACE_FLAG_HINTER + * FT_FACE_FLAG_SVG + * FT_FACE_FLAG_SBIX + * FT_FACE_FLAG_SBIX_OVERLAY + * + * FT_HAS_HORIZONTAL + * FT_HAS_VERTICAL + * FT_HAS_KERNING + * FT_HAS_FIXED_SIZES + * FT_HAS_GLYPH_NAMES + * FT_HAS_COLOR + * FT_HAS_MULTIPLE_MASTERS + * FT_HAS_SVG + * FT_HAS_SBIX + * FT_HAS_SBIX_OVERLAY + * + * FT_IS_SFNT + * FT_IS_SCALABLE + * FT_IS_FIXED_WIDTH + * FT_IS_CID_KEYED + * FT_IS_TRICKY + * FT_IS_NAMED_INSTANCE + * FT_IS_VARIATION + * + * FT_STYLE_FLAG_BOLD + * FT_STYLE_FLAG_ITALIC + * + * FT_SizeRec + * FT_Size_Metrics + * + * FT_GlyphSlotRec + * FT_Glyph_Metrics + * FT_SubGlyph + * + * FT_Bitmap_Size + * + * FT_Init_FreeType + * FT_Done_FreeType + * + * FT_New_Face + * FT_Done_Face + * FT_Reference_Face + * FT_New_Memory_Face + * FT_Face_Properties + * FT_Open_Face + * FT_Open_Args + * FT_Parameter + * FT_Attach_File + * FT_Attach_Stream + * + * FT_Set_Char_Size + * FT_Set_Pixel_Sizes + * FT_Request_Size + * FT_Select_Size + * FT_Size_Request_Type + * FT_Size_RequestRec + * FT_Size_Request + * FT_Set_Transform + * FT_Get_Transform + * FT_Load_Glyph + * FT_Get_Char_Index + * FT_Get_First_Char + * FT_Get_Next_Char + * FT_Get_Name_Index + * FT_Load_Char + * + * FT_OPEN_MEMORY + * FT_OPEN_STREAM + * FT_OPEN_PATHNAME + * FT_OPEN_DRIVER + * FT_OPEN_PARAMS + * + * FT_LOAD_DEFAULT + * FT_LOAD_RENDER + * FT_LOAD_MONOCHROME + * FT_LOAD_LINEAR_DESIGN + * FT_LOAD_NO_SCALE + * FT_LOAD_NO_HINTING + * FT_LOAD_NO_BITMAP + * FT_LOAD_SBITS_ONLY + * FT_LOAD_NO_AUTOHINT + * FT_LOAD_COLOR + * + * FT_LOAD_VERTICAL_LAYOUT + * FT_LOAD_IGNORE_TRANSFORM + * FT_LOAD_FORCE_AUTOHINT + * FT_LOAD_NO_RECURSE + * FT_LOAD_PEDANTIC + * + * FT_LOAD_TARGET_NORMAL + * FT_LOAD_TARGET_LIGHT + * FT_LOAD_TARGET_MONO + * FT_LOAD_TARGET_LCD + * FT_LOAD_TARGET_LCD_V + * + * FT_LOAD_TARGET_MODE + * + * FT_Render_Glyph + * FT_Render_Mode + * FT_Get_Kerning + * FT_Kerning_Mode + * FT_Get_Track_Kerning + * FT_Get_Glyph_Name + * FT_Get_Postscript_Name + * + * FT_CharMapRec + * FT_Select_Charmap + * FT_Set_Charmap + * FT_Get_Charmap_Index + * + * FT_Get_FSType_Flags + * FT_Get_SubGlyph_Info + * + * FT_Face_Internal + * FT_Size_Internal + * FT_Slot_Internal + * + * FT_FACE_FLAG_XXX + * FT_STYLE_FLAG_XXX + * FT_OPEN_XXX + * FT_LOAD_XXX + * FT_LOAD_TARGET_XXX + * FT_SUBGLYPH_FLAG_XXX + * FT_FSTYPE_XXX + * + * FT_HAS_FAST_GLYPHS + * + */ + + + /************************************************************************** + * + * @struct: + * FT_Glyph_Metrics + * + * @description: + * A structure to model the metrics of a single glyph. The values are + * expressed in 26.6 fractional pixel format; if the flag + * @FT_LOAD_NO_SCALE has been used while loading the glyph, values are + * expressed in font units instead. + * + * @fields: + * width :: + * The glyph's width. + * + * height :: + * The glyph's height. + * + * horiBearingX :: + * Left side bearing for horizontal layout. + * + * horiBearingY :: + * Top side bearing for horizontal layout. + * + * horiAdvance :: + * Advance width for horizontal layout. + * + * vertBearingX :: + * Left side bearing for vertical layout. + * + * vertBearingY :: + * Top side bearing for vertical layout. Larger positive values mean + * further below the vertical glyph origin. + * + * vertAdvance :: + * Advance height for vertical layout. Positive values mean the glyph + * has a positive advance downward. + * + * @note: + * If not disabled with @FT_LOAD_NO_HINTING, the values represent + * dimensions of the hinted glyph (in case hinting is applicable). + * + * Stroking a glyph with an outside border does not increase + * `horiAdvance` or `vertAdvance`; you have to manually adjust these + * values to account for the added width and height. + * + * FreeType doesn't use the 'VORG' table data for CFF fonts because it + * doesn't have an interface to quickly retrieve the glyph height. The + * y~coordinate of the vertical origin can be simply computed as + * `vertBearingY + height` after loading a glyph. + */ + typedef struct FT_Glyph_Metrics_ + { + FT_Pos width; + FT_Pos height; + + FT_Pos horiBearingX; + FT_Pos horiBearingY; + FT_Pos horiAdvance; + + FT_Pos vertBearingX; + FT_Pos vertBearingY; + FT_Pos vertAdvance; + + } FT_Glyph_Metrics; + + + /************************************************************************** + * + * @struct: + * FT_Bitmap_Size + * + * @description: + * This structure models the metrics of a bitmap strike (i.e., a set of + * glyphs for a given point size and resolution) in a bitmap font. It is + * used for the `available_sizes` field of @FT_Face. + * + * @fields: + * height :: + * The vertical distance, in pixels, between two consecutive baselines. + * It is always positive. + * + * width :: + * The average width, in pixels, of all glyphs in the strike. + * + * size :: + * The nominal size of the strike in 26.6 fractional points. This + * field is not very useful. + * + * x_ppem :: + * The horizontal ppem (nominal width) in 26.6 fractional pixels. + * + * y_ppem :: + * The vertical ppem (nominal height) in 26.6 fractional pixels. + * + * @note: + * Windows FNT: + * The nominal size given in a FNT font is not reliable. If the driver + * finds it incorrect, it sets `size` to some calculated values, and + * `x_ppem` and `y_ppem` to the pixel width and height given in the + * font, respectively. + * + * TrueType embedded bitmaps: + * `size`, `width`, and `height` values are not contained in the bitmap + * strike itself. They are computed from the global font parameters. + */ + typedef struct FT_Bitmap_Size_ + { + FT_Short height; + FT_Short width; + + FT_Pos size; + + FT_Pos x_ppem; + FT_Pos y_ppem; + + } FT_Bitmap_Size; + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* O B J E C T C L A S S E S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + /************************************************************************** + * + * @type: + * FT_Library + * + * @description: + * A handle to a FreeType library instance. Each 'library' is completely + * independent from the others; it is the 'root' of a set of objects like + * fonts, faces, sizes, etc. + * + * It also embeds a memory manager (see @FT_Memory), as well as a + * scan-line converter object (see @FT_Raster). + * + * [Since 2.5.6] In multi-threaded applications it is easiest to use one + * `FT_Library` object per thread. In case this is too cumbersome, a + * single `FT_Library` object across threads is possible also, as long as + * a mutex lock is used around @FT_New_Face and @FT_Done_Face. + * + * @note: + * Library objects are normally created by @FT_Init_FreeType, and + * destroyed with @FT_Done_FreeType. If you need reference-counting + * (cf. @FT_Reference_Library), use @FT_New_Library and @FT_Done_Library. + */ + typedef struct FT_LibraryRec_ *FT_Library; + + + /************************************************************************** + * + * @section: + * module_management + * + */ + + /************************************************************************** + * + * @type: + * FT_Module + * + * @description: + * A handle to a given FreeType module object. A module can be a font + * driver, a renderer, or anything else that provides services to the + * former. + */ + typedef struct FT_ModuleRec_* FT_Module; + + + /************************************************************************** + * + * @type: + * FT_Driver + * + * @description: + * A handle to a given FreeType font driver object. A font driver is a + * module capable of creating faces from font files. + */ + typedef struct FT_DriverRec_* FT_Driver; + + + /************************************************************************** + * + * @type: + * FT_Renderer + * + * @description: + * A handle to a given FreeType renderer. A renderer is a module in + * charge of converting a glyph's outline image to a bitmap. It supports + * a single glyph image format, and one or more target surface depths. + */ + typedef struct FT_RendererRec_* FT_Renderer; + + + /************************************************************************** + * + * @section: + * base_interface + * + */ + + /************************************************************************** + * + * @type: + * FT_Face + * + * @description: + * A handle to a typographic face object. A face object models a given + * typeface, in a given style. + * + * @note: + * A face object also owns a single @FT_GlyphSlot object, as well as one + * or more @FT_Size objects. + * + * Use @FT_New_Face or @FT_Open_Face to create a new face object from a + * given filepath or a custom input stream. + * + * Use @FT_Done_Face to destroy it (along with its slot and sizes). + * + * An `FT_Face` object can only be safely used from one thread at a time. + * Similarly, creation and destruction of `FT_Face` with the same + * @FT_Library object can only be done from one thread at a time. On the + * other hand, functions like @FT_Load_Glyph and its siblings are + * thread-safe and do not need the lock to be held as long as the same + * `FT_Face` object is not used from multiple threads at the same time. + * + * @also: + * See @FT_FaceRec for the publicly accessible fields of a given face + * object. + */ + typedef struct FT_FaceRec_* FT_Face; + + + /************************************************************************** + * + * @type: + * FT_Size + * + * @description: + * A handle to an object that models a face scaled to a given character + * size. + * + * @note: + * An @FT_Face has one _active_ `FT_Size` object that is used by + * functions like @FT_Load_Glyph to determine the scaling transformation + * that in turn is used to load and hint glyphs and metrics. + * + * A newly created `FT_Size` object contains only meaningless zero values. + * You must use @FT_Set_Char_Size, @FT_Set_Pixel_Sizes, @FT_Request_Size + * or even @FT_Select_Size to change the content (i.e., the scaling + * values) of the active `FT_Size`. Otherwise, the scaling and hinting + * will not be performed. + * + * You can use @FT_New_Size to create additional size objects for a given + * @FT_Face, but they won't be used by other functions until you activate + * it through @FT_Activate_Size. Only one size can be activated at any + * given time per face. + * + * @also: + * See @FT_SizeRec for the publicly accessible fields of a given size + * object. + */ + typedef struct FT_SizeRec_* FT_Size; + + + /************************************************************************** + * + * @type: + * FT_GlyphSlot + * + * @description: + * A handle to a given 'glyph slot'. A slot is a container that can hold + * any of the glyphs contained in its parent face. + * + * In other words, each time you call @FT_Load_Glyph or @FT_Load_Char, + * the slot's content is erased by the new glyph data, i.e., the glyph's + * metrics, its image (bitmap or outline), and other control information. + * + * @also: + * See @FT_GlyphSlotRec for the publicly accessible glyph fields. + */ + typedef struct FT_GlyphSlotRec_* FT_GlyphSlot; + + + /************************************************************************** + * + * @type: + * FT_CharMap + * + * @description: + * A handle to a character map (usually abbreviated to 'charmap'). A + * charmap is used to translate character codes in a given encoding into + * glyph indexes for its parent's face. Some font formats may provide + * several charmaps per font. + * + * Each face object owns zero or more charmaps, but only one of them can + * be 'active', providing the data used by @FT_Get_Char_Index or + * @FT_Load_Char. + * + * The list of available charmaps in a face is available through the + * `face->num_charmaps` and `face->charmaps` fields of @FT_FaceRec. + * + * The currently active charmap is available as `face->charmap`. You + * should call @FT_Set_Charmap to change it. + * + * @note: + * When a new face is created (either through @FT_New_Face or + * @FT_Open_Face), the library looks for a Unicode charmap within the + * list and automatically activates it. If there is no Unicode charmap, + * FreeType doesn't set an 'active' charmap. + * + * @also: + * See @FT_CharMapRec for the publicly accessible fields of a given + * character map. + */ + typedef struct FT_CharMapRec_* FT_CharMap; + + + /************************************************************************** + * + * @macro: + * FT_ENC_TAG + * + * @description: + * This macro converts four-letter tags into an unsigned long. It is + * used to define 'encoding' identifiers (see @FT_Encoding). + * + * @note: + * Since many 16-bit compilers don't like 32-bit enumerations, you should + * redefine this macro in case of problems to something like this: + * + * ``` + * #define FT_ENC_TAG( value, a, b, c, d ) value + * ``` + * + * to get a simple enumeration without assigning special numbers. + */ + +#ifndef FT_ENC_TAG + +#define FT_ENC_TAG( value, a, b, c, d ) \ + value = ( ( FT_STATIC_BYTE_CAST( FT_UInt32, a ) << 24 ) | \ + ( FT_STATIC_BYTE_CAST( FT_UInt32, b ) << 16 ) | \ + ( FT_STATIC_BYTE_CAST( FT_UInt32, c ) << 8 ) | \ + FT_STATIC_BYTE_CAST( FT_UInt32, d ) ) + +#endif /* FT_ENC_TAG */ + + + /************************************************************************** + * + * @enum: + * FT_Encoding + * + * @description: + * An enumeration to specify character sets supported by charmaps. Used + * in the @FT_Select_Charmap API function. + * + * @note: + * Despite the name, this enumeration lists specific character + * repertories (i.e., charsets), and not text encoding methods (e.g., + * UTF-8, UTF-16, etc.). + * + * Other encodings might be defined in the future. + * + * @values: + * FT_ENCODING_NONE :: + * The encoding value~0 is reserved for all formats except BDF, PCF, + * and Windows FNT; see below for more information. + * + * FT_ENCODING_UNICODE :: + * The Unicode character set. This value covers all versions of the + * Unicode repertoire, including ASCII and Latin-1. Most fonts include + * a Unicode charmap, but not all of them. + * + * For example, if you want to access Unicode value U+1F028 (and the + * font contains it), use value 0x1F028 as the input value for + * @FT_Get_Char_Index. + * + * FT_ENCODING_MS_SYMBOL :: + * Microsoft Symbol encoding, used to encode mathematical symbols and + * wingdings. For more information, see + * 'https://www.microsoft.com/typography/otspec/recom.htm#non-standard-symbol-fonts', + * 'http://www.kostis.net/charsets/symbol.htm', and + * 'http://www.kostis.net/charsets/wingding.htm'. + * + * This encoding uses character codes from the PUA (Private Unicode + * Area) in the range U+F020-U+F0FF. + * + * FT_ENCODING_SJIS :: + * Shift JIS encoding for Japanese. More info at + * 'https://en.wikipedia.org/wiki/Shift_JIS'. See note on multi-byte + * encodings below. + * + * FT_ENCODING_PRC :: + * Corresponds to encoding systems mainly for Simplified Chinese as + * used in People's Republic of China (PRC). The encoding layout is + * based on GB~2312 and its supersets GBK and GB~18030. + * + * FT_ENCODING_BIG5 :: + * Corresponds to an encoding system for Traditional Chinese as used in + * Taiwan and Hong Kong. + * + * FT_ENCODING_WANSUNG :: + * Corresponds to the Korean encoding system known as Extended Wansung + * (MS Windows code page 949). For more information see + * 'https://www.unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/bestfit949.txt'. + * + * FT_ENCODING_JOHAB :: + * The Korean standard character set (KS~C 5601-1992), which + * corresponds to MS Windows code page 1361. This character set + * includes all possible Hangul character combinations. + * + * FT_ENCODING_ADOBE_LATIN_1 :: + * Corresponds to a Latin-1 encoding as defined in a Type~1 PostScript + * font. It is limited to 256 character codes. + * + * FT_ENCODING_ADOBE_STANDARD :: + * Adobe Standard encoding, as found in Type~1, CFF, and OpenType/CFF + * fonts. It is limited to 256 character codes. + * + * FT_ENCODING_ADOBE_EXPERT :: + * Adobe Expert encoding, as found in Type~1, CFF, and OpenType/CFF + * fonts. It is limited to 256 character codes. + * + * FT_ENCODING_ADOBE_CUSTOM :: + * Corresponds to a custom encoding, as found in Type~1, CFF, and + * OpenType/CFF fonts. It is limited to 256 character codes. + * + * FT_ENCODING_APPLE_ROMAN :: + * Apple roman encoding. Many TrueType and OpenType fonts contain a + * charmap for this 8-bit encoding, since older versions of Mac OS are + * able to use it. + * + * FT_ENCODING_OLD_LATIN_2 :: + * This value is deprecated and was neither used nor reported by + * FreeType. Don't use or test for it. + * + * FT_ENCODING_MS_SJIS :: + * Same as FT_ENCODING_SJIS. Deprecated. + * + * FT_ENCODING_MS_GB2312 :: + * Same as FT_ENCODING_PRC. Deprecated. + * + * FT_ENCODING_MS_BIG5 :: + * Same as FT_ENCODING_BIG5. Deprecated. + * + * FT_ENCODING_MS_WANSUNG :: + * Same as FT_ENCODING_WANSUNG. Deprecated. + * + * FT_ENCODING_MS_JOHAB :: + * Same as FT_ENCODING_JOHAB. Deprecated. + * + * @note: + * When loading a font, FreeType makes a Unicode charmap active if + * possible (either if the font provides such a charmap, or if FreeType + * can synthesize one from PostScript glyph name dictionaries; in either + * case, the charmap is tagged with `FT_ENCODING_UNICODE`). If such a + * charmap is synthesized, it is placed at the first position of the + * charmap array. + * + * All other encodings are considered legacy and tagged only if + * explicitly defined in the font file. Otherwise, `FT_ENCODING_NONE` is + * used. + * + * `FT_ENCODING_NONE` is set by the BDF and PCF drivers if the charmap is + * neither Unicode nor ISO-8859-1 (otherwise it is set to + * `FT_ENCODING_UNICODE`). Use @FT_Get_BDF_Charset_ID to find out which + * encoding is really present. If, for example, the `cs_registry` field + * is 'KOI8' and the `cs_encoding` field is 'R', the font is encoded in + * KOI8-R. + * + * `FT_ENCODING_NONE` is always set (with a single exception) by the + * winfonts driver. Use @FT_Get_WinFNT_Header and examine the `charset` + * field of the @FT_WinFNT_HeaderRec structure to find out which encoding + * is really present. For example, @FT_WinFNT_ID_CP1251 (204) means + * Windows code page 1251 (for Russian). + * + * `FT_ENCODING_NONE` is set if `platform_id` is @TT_PLATFORM_MACINTOSH + * and `encoding_id` is not `TT_MAC_ID_ROMAN` (otherwise it is set to + * `FT_ENCODING_APPLE_ROMAN`). + * + * If `platform_id` is @TT_PLATFORM_MACINTOSH, use the function + * @FT_Get_CMap_Language_ID to query the Mac language ID that may be + * needed to be able to distinguish Apple encoding variants. See + * + * https://www.unicode.org/Public/MAPPINGS/VENDORS/APPLE/Readme.txt + * + * to get an idea how to do that. Basically, if the language ID is~0, + * don't use it, otherwise subtract 1 from the language ID. Then examine + * `encoding_id`. If, for example, `encoding_id` is `TT_MAC_ID_ROMAN` + * and the language ID (minus~1) is `TT_MAC_LANGID_GREEK`, it is the + * Greek encoding, not Roman. `TT_MAC_ID_ARABIC` with + * `TT_MAC_LANGID_FARSI` means the Farsi variant the Arabic encoding. + */ + typedef enum FT_Encoding_ + { + FT_ENC_TAG( FT_ENCODING_NONE, 0, 0, 0, 0 ), + + FT_ENC_TAG( FT_ENCODING_MS_SYMBOL, 's', 'y', 'm', 'b' ), + FT_ENC_TAG( FT_ENCODING_UNICODE, 'u', 'n', 'i', 'c' ), + + FT_ENC_TAG( FT_ENCODING_SJIS, 's', 'j', 'i', 's' ), + FT_ENC_TAG( FT_ENCODING_PRC, 'g', 'b', ' ', ' ' ), + FT_ENC_TAG( FT_ENCODING_BIG5, 'b', 'i', 'g', '5' ), + FT_ENC_TAG( FT_ENCODING_WANSUNG, 'w', 'a', 'n', 's' ), + FT_ENC_TAG( FT_ENCODING_JOHAB, 'j', 'o', 'h', 'a' ), + + /* for backward compatibility */ + FT_ENCODING_GB2312 = FT_ENCODING_PRC, + FT_ENCODING_MS_SJIS = FT_ENCODING_SJIS, + FT_ENCODING_MS_GB2312 = FT_ENCODING_PRC, + FT_ENCODING_MS_BIG5 = FT_ENCODING_BIG5, + FT_ENCODING_MS_WANSUNG = FT_ENCODING_WANSUNG, + FT_ENCODING_MS_JOHAB = FT_ENCODING_JOHAB, + + FT_ENC_TAG( FT_ENCODING_ADOBE_STANDARD, 'A', 'D', 'O', 'B' ), + FT_ENC_TAG( FT_ENCODING_ADOBE_EXPERT, 'A', 'D', 'B', 'E' ), + FT_ENC_TAG( FT_ENCODING_ADOBE_CUSTOM, 'A', 'D', 'B', 'C' ), + FT_ENC_TAG( FT_ENCODING_ADOBE_LATIN_1, 'l', 'a', 't', '1' ), + + FT_ENC_TAG( FT_ENCODING_OLD_LATIN_2, 'l', 'a', 't', '2' ), + + FT_ENC_TAG( FT_ENCODING_APPLE_ROMAN, 'a', 'r', 'm', 'n' ) + + } FT_Encoding; + + + /* these constants are deprecated; use the corresponding `FT_Encoding` */ + /* values instead */ +#define ft_encoding_none FT_ENCODING_NONE +#define ft_encoding_unicode FT_ENCODING_UNICODE +#define ft_encoding_symbol FT_ENCODING_MS_SYMBOL +#define ft_encoding_latin_1 FT_ENCODING_ADOBE_LATIN_1 +#define ft_encoding_latin_2 FT_ENCODING_OLD_LATIN_2 +#define ft_encoding_sjis FT_ENCODING_SJIS +#define ft_encoding_gb2312 FT_ENCODING_PRC +#define ft_encoding_big5 FT_ENCODING_BIG5 +#define ft_encoding_wansung FT_ENCODING_WANSUNG +#define ft_encoding_johab FT_ENCODING_JOHAB + +#define ft_encoding_adobe_standard FT_ENCODING_ADOBE_STANDARD +#define ft_encoding_adobe_expert FT_ENCODING_ADOBE_EXPERT +#define ft_encoding_adobe_custom FT_ENCODING_ADOBE_CUSTOM +#define ft_encoding_apple_roman FT_ENCODING_APPLE_ROMAN + + + /************************************************************************** + * + * @struct: + * FT_CharMapRec + * + * @description: + * The base charmap structure. + * + * @fields: + * face :: + * A handle to the parent face object. + * + * encoding :: + * An @FT_Encoding tag identifying the charmap. Use this with + * @FT_Select_Charmap. + * + * platform_id :: + * An ID number describing the platform for the following encoding ID. + * This comes directly from the TrueType specification and gets + * emulated for other formats. + * + * encoding_id :: + * A platform-specific encoding number. This also comes from the + * TrueType specification and gets emulated similarly. + */ + typedef struct FT_CharMapRec_ + { + FT_Face face; + FT_Encoding encoding; + FT_UShort platform_id; + FT_UShort encoding_id; + + } FT_CharMapRec; + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* B A S E O B J E C T C L A S S E S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @type: + * FT_Face_Internal + * + * @description: + * An opaque handle to an `FT_Face_InternalRec` structure that models the + * private data of a given @FT_Face object. + * + * This structure might change between releases of FreeType~2 and is not + * generally available to client applications. + */ + typedef struct FT_Face_InternalRec_* FT_Face_Internal; + + + /************************************************************************** + * + * @struct: + * FT_FaceRec + * + * @description: + * FreeType root face class structure. A face object models a typeface + * in a font file. + * + * @fields: + * num_faces :: + * The number of faces in the font file. Some font formats can have + * multiple faces in a single font file. + * + * face_index :: + * This field holds two different values. Bits 0-15 are the index of + * the face in the font file (starting with value~0). They are set + * to~0 if there is only one face in the font file. + * + * [Since 2.6.1] Bits 16-30 are relevant to GX and OpenType variation + * fonts only, holding the named instance index for the current face + * index (starting with value~1; value~0 indicates font access without + * a named instance). For non-variation fonts, bits 16-30 are ignored. + * If we have the third named instance of face~4, say, `face_index` is + * set to 0x00030004. + * + * Bit 31 is always zero (this is, `face_index` is always a positive + * value). + * + * [Since 2.9] Changing the design coordinates with + * @FT_Set_Var_Design_Coordinates or @FT_Set_Var_Blend_Coordinates does + * not influence the named instance index value (only + * @FT_Set_Named_Instance does that). + * + * face_flags :: + * A set of bit flags that give important information about the face; + * see @FT_FACE_FLAG_XXX for the details. + * + * style_flags :: + * The lower 16~bits contain a set of bit flags indicating the style of + * the face; see @FT_STYLE_FLAG_XXX for the details. + * + * [Since 2.6.1] Bits 16-30 hold the number of named instances + * available for the current face if we have a GX or OpenType variation + * (sub)font. Bit 31 is always zero (this is, `style_flags` is always + * a positive value). Note that a variation font has always at least + * one named instance, namely the default instance. + * + * num_glyphs :: + * The number of glyphs in the face. If the face is scalable and has + * sbits (see `num_fixed_sizes`), it is set to the number of outline + * glyphs. + * + * For CID-keyed fonts (not in an SFNT wrapper) this value gives the + * highest CID used in the font. + * + * family_name :: + * The face's family name. This is an ASCII string, usually in + * English, that describes the typeface's family (like 'Times New + * Roman', 'Bodoni', 'Garamond', etc). This is a least common + * denominator used to list fonts. Some formats (TrueType & OpenType) + * provide localized and Unicode versions of this string. Applications + * should use the format-specific interface to access them. Can be + * `NULL` (e.g., in fonts embedded in a PDF file). + * + * In case the font doesn't provide a specific family name entry, + * FreeType tries to synthesize one, deriving it from other name + * entries. + * + * style_name :: + * The face's style name. This is an ASCII string, usually in English, + * that describes the typeface's style (like 'Italic', 'Bold', + * 'Condensed', etc). Not all font formats provide a style name, so + * this field is optional, and can be set to `NULL`. As for + * `family_name`, some formats provide localized and Unicode versions + * of this string. Applications should use the format-specific + * interface to access them. + * + * num_fixed_sizes :: + * The number of bitmap strikes in the face. Even if the face is + * scalable, there might still be bitmap strikes, which are called + * 'sbits' in that case. + * + * available_sizes :: + * An array of @FT_Bitmap_Size for all bitmap strikes in the face. It + * is set to `NULL` if there is no bitmap strike. + * + * Note that FreeType tries to sanitize the strike data since they are + * sometimes sloppy or incorrect, but this can easily fail. + * + * num_charmaps :: + * The number of charmaps in the face. + * + * charmaps :: + * An array of the charmaps of the face. + * + * generic :: + * A field reserved for client uses. See the @FT_Generic type + * description. + * + * bbox :: + * The font bounding box. Coordinates are expressed in font units (see + * `units_per_EM`). The box is large enough to contain any glyph from + * the font. Thus, `bbox.yMax` can be seen as the 'maximum ascender', + * and `bbox.yMin` as the 'minimum descender'. Only relevant for + * scalable formats. + * + * Note that the bounding box might be off by (at least) one pixel for + * hinted fonts. See @FT_Size_Metrics for further discussion. + * + * Note that the bounding box does not vary in OpenType variable fonts + * and should only be used in relation to the default instance. + * + * units_per_EM :: + * The number of font units per EM square for this face. This is + * typically 2048 for TrueType fonts, and 1000 for Type~1 fonts. Only + * relevant for scalable formats. + * + * ascender :: + * The typographic ascender of the face, expressed in font units. For + * font formats not having this information, it is set to `bbox.yMax`. + * Only relevant for scalable formats. + * + * descender :: + * The typographic descender of the face, expressed in font units. For + * font formats not having this information, it is set to `bbox.yMin`. + * Note that this field is negative for values below the baseline. + * Only relevant for scalable formats. + * + * height :: + * This value is the vertical distance between two consecutive + * baselines, expressed in font units. It is always positive. Only + * relevant for scalable formats. + * + * If you want the global glyph height, use `ascender - descender`. + * + * max_advance_width :: + * The maximum advance width, in font units, for all glyphs in this + * face. This can be used to make word wrapping computations faster. + * Only relevant for scalable formats. + * + * max_advance_height :: + * The maximum advance height, in font units, for all glyphs in this + * face. This is only relevant for vertical layouts, and is set to + * `height` for fonts that do not provide vertical metrics. Only + * relevant for scalable formats. + * + * underline_position :: + * The position, in font units, of the underline line for this face. + * It is the center of the underlining stem. Only relevant for + * scalable formats. + * + * underline_thickness :: + * The thickness, in font units, of the underline for this face. Only + * relevant for scalable formats. + * + * glyph :: + * The face's associated glyph slot(s). + * + * size :: + * The current active size for this face. + * + * charmap :: + * The current active charmap for this face. + * + * @note: + * Fields may be changed after a call to @FT_Attach_File or + * @FT_Attach_Stream. + * + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `ascender`, `descender`, `height`, + * `underline_position`, and `underline_thickness`. + * + * Especially for TrueType fonts see also the documentation for + * @FT_Size_Metrics. + */ + typedef struct FT_FaceRec_ + { + FT_Long num_faces; + FT_Long face_index; + + FT_Long face_flags; + FT_Long style_flags; + + FT_Long num_glyphs; + + FT_String* family_name; + FT_String* style_name; + + FT_Int num_fixed_sizes; + FT_Bitmap_Size* available_sizes; + + FT_Int num_charmaps; + FT_CharMap* charmaps; + + FT_Generic generic; + + /*# The following member variables (down to `underline_thickness`) */ + /*# are only relevant to scalable outlines; cf. @FT_Bitmap_Size */ + /*# for bitmap fonts. */ + FT_BBox bbox; + + FT_UShort units_per_EM; + FT_Short ascender; + FT_Short descender; + FT_Short height; + + FT_Short max_advance_width; + FT_Short max_advance_height; + + FT_Short underline_position; + FT_Short underline_thickness; + + FT_GlyphSlot glyph; + FT_Size size; + FT_CharMap charmap; + + /*@private begin */ + + FT_Driver driver; + FT_Memory memory; + FT_Stream stream; + + FT_ListRec sizes_list; + + FT_Generic autohint; /* face-specific auto-hinter data */ + void* extensions; /* unused */ + + FT_Face_Internal internal; + + /*@private end */ + + } FT_FaceRec; + + + /************************************************************************** + * + * @enum: + * FT_FACE_FLAG_XXX + * + * @description: + * A list of bit flags used in the `face_flags` field of the @FT_FaceRec + * structure. They inform client applications of properties of the + * corresponding face. + * + * @values: + * FT_FACE_FLAG_SCALABLE :: + * The face contains outline glyphs. Note that a face can contain + * bitmap strikes also, i.e., a face can have both this flag and + * @FT_FACE_FLAG_FIXED_SIZES set. + * + * FT_FACE_FLAG_FIXED_SIZES :: + * The face contains bitmap strikes. See also the `num_fixed_sizes` + * and `available_sizes` fields of @FT_FaceRec. + * + * FT_FACE_FLAG_FIXED_WIDTH :: + * The face contains fixed-width characters (like Courier, Lucida, + * MonoType, etc.). + * + * FT_FACE_FLAG_SFNT :: + * The face uses the SFNT storage scheme. For now, this means TrueType + * and OpenType. + * + * FT_FACE_FLAG_HORIZONTAL :: + * The face contains horizontal glyph metrics. This should be set for + * all common formats. + * + * FT_FACE_FLAG_VERTICAL :: + * The face contains vertical glyph metrics. This is only available in + * some formats, not all of them. + * + * FT_FACE_FLAG_KERNING :: + * The face contains kerning information. If set, the kerning distance + * can be retrieved using the function @FT_Get_Kerning. Otherwise the + * function always return the vector (0,0). Note that FreeType doesn't + * handle kerning data from the SFNT 'GPOS' table (as present in many + * OpenType fonts). + * + * FT_FACE_FLAG_FAST_GLYPHS :: + * THIS FLAG IS DEPRECATED. DO NOT USE OR TEST IT. + * + * FT_FACE_FLAG_MULTIPLE_MASTERS :: + * The face contains multiple masters and is capable of interpolating + * between them. Supported formats are Adobe MM, TrueType GX, and + * OpenType variation fonts. + * + * See section @multiple_masters for API details. + * + * FT_FACE_FLAG_GLYPH_NAMES :: + * The face contains glyph names, which can be retrieved using + * @FT_Get_Glyph_Name. Note that some TrueType fonts contain broken + * glyph name tables. Use the function @FT_Has_PS_Glyph_Names when + * needed. + * + * FT_FACE_FLAG_EXTERNAL_STREAM :: + * Used internally by FreeType to indicate that a face's stream was + * provided by the client application and should not be destroyed when + * @FT_Done_Face is called. Don't read or test this flag. + * + * FT_FACE_FLAG_HINTER :: + * The font driver has a hinting machine of its own. For example, with + * TrueType fonts, it makes sense to use data from the SFNT 'gasp' + * table only if the native TrueType hinting engine (with the bytecode + * interpreter) is available and active. + * + * FT_FACE_FLAG_CID_KEYED :: + * The face is CID-keyed. In that case, the face is not accessed by + * glyph indices but by CID values. For subsetted CID-keyed fonts this + * has the consequence that not all index values are a valid argument + * to @FT_Load_Glyph. Only the CID values for which corresponding + * glyphs in the subsetted font exist make `FT_Load_Glyph` return + * successfully; in all other cases you get an + * `FT_Err_Invalid_Argument` error. + * + * Note that CID-keyed fonts that are in an SFNT wrapper (this is, all + * OpenType/CFF fonts) don't have this flag set since the glyphs are + * accessed in the normal way (using contiguous indices); the + * 'CID-ness' isn't visible to the application. + * + * FT_FACE_FLAG_TRICKY :: + * The face is 'tricky', this is, it always needs the font format's + * native hinting engine to get a reasonable result. A typical example + * is the old Chinese font `mingli.ttf` (but not `mingliu.ttc`) that + * uses TrueType bytecode instructions to move and scale all of its + * subglyphs. + * + * It is not possible to auto-hint such fonts using + * @FT_LOAD_FORCE_AUTOHINT; it will also ignore @FT_LOAD_NO_HINTING. + * You have to set both @FT_LOAD_NO_HINTING and @FT_LOAD_NO_AUTOHINT to + * really disable hinting; however, you probably never want this except + * for demonstration purposes. + * + * Currently, there are about a dozen TrueType fonts in the list of + * tricky fonts; they are hard-coded in file `ttobjs.c`. + * + * FT_FACE_FLAG_COLOR :: + * [Since 2.5.1] The face has color glyph tables. See @FT_LOAD_COLOR + * for more information. + * + * FT_FACE_FLAG_VARIATION :: + * [Since 2.9] Set if the current face (or named instance) has been + * altered with @FT_Set_MM_Design_Coordinates, + * @FT_Set_Var_Design_Coordinates, or @FT_Set_Var_Blend_Coordinates. + * This flag is unset by a call to @FT_Set_Named_Instance. + * + * FT_FACE_FLAG_SVG :: + * [Since 2.12] The face has an 'SVG~' OpenType table. + * + * FT_FACE_FLAG_SBIX :: + * [Since 2.12] The face has an 'sbix' OpenType table *and* outlines. + * For such fonts, @FT_FACE_FLAG_SCALABLE is not set by default to + * retain backward compatibility. + * + * FT_FACE_FLAG_SBIX_OVERLAY :: + * [Since 2.12] The face has an 'sbix' OpenType table where outlines + * should be drawn on top of bitmap strikes. + * + */ +#define FT_FACE_FLAG_SCALABLE ( 1L << 0 ) +#define FT_FACE_FLAG_FIXED_SIZES ( 1L << 1 ) +#define FT_FACE_FLAG_FIXED_WIDTH ( 1L << 2 ) +#define FT_FACE_FLAG_SFNT ( 1L << 3 ) +#define FT_FACE_FLAG_HORIZONTAL ( 1L << 4 ) +#define FT_FACE_FLAG_VERTICAL ( 1L << 5 ) +#define FT_FACE_FLAG_KERNING ( 1L << 6 ) +#define FT_FACE_FLAG_FAST_GLYPHS ( 1L << 7 ) +#define FT_FACE_FLAG_MULTIPLE_MASTERS ( 1L << 8 ) +#define FT_FACE_FLAG_GLYPH_NAMES ( 1L << 9 ) +#define FT_FACE_FLAG_EXTERNAL_STREAM ( 1L << 10 ) +#define FT_FACE_FLAG_HINTER ( 1L << 11 ) +#define FT_FACE_FLAG_CID_KEYED ( 1L << 12 ) +#define FT_FACE_FLAG_TRICKY ( 1L << 13 ) +#define FT_FACE_FLAG_COLOR ( 1L << 14 ) +#define FT_FACE_FLAG_VARIATION ( 1L << 15 ) +#define FT_FACE_FLAG_SVG ( 1L << 16 ) +#define FT_FACE_FLAG_SBIX ( 1L << 17 ) +#define FT_FACE_FLAG_SBIX_OVERLAY ( 1L << 18 ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_HORIZONTAL + * + * @description: + * A macro that returns true whenever a face object contains horizontal + * metrics (this is true for all font formats though). + * + * @also: + * @FT_HAS_VERTICAL can be used to check for vertical metrics. + * + */ +#define FT_HAS_HORIZONTAL( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_HORIZONTAL ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_VERTICAL + * + * @description: + * A macro that returns true whenever a face object contains real + * vertical metrics (and not only synthesized ones). + * + */ +#define FT_HAS_VERTICAL( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_VERTICAL ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_KERNING + * + * @description: + * A macro that returns true whenever a face object contains kerning data + * that can be accessed with @FT_Get_Kerning. + * + */ +#define FT_HAS_KERNING( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_KERNING ) ) + + + /************************************************************************** + * + * @macro: + * FT_IS_SCALABLE + * + * @description: + * A macro that returns true whenever a face object contains a scalable + * font face (true for TrueType, Type~1, Type~42, CID, OpenType/CFF, and + * PFR font formats). + * + */ +#define FT_IS_SCALABLE( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_SCALABLE ) ) + + + /************************************************************************** + * + * @macro: + * FT_IS_SFNT + * + * @description: + * A macro that returns true whenever a face object contains a font whose + * format is based on the SFNT storage scheme. This usually means: + * TrueType fonts, OpenType fonts, as well as SFNT-based embedded bitmap + * fonts. + * + * If this macro is true, all functions defined in @FT_SFNT_NAMES_H and + * @FT_TRUETYPE_TABLES_H are available. + * + */ +#define FT_IS_SFNT( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_SFNT ) ) + + + /************************************************************************** + * + * @macro: + * FT_IS_FIXED_WIDTH + * + * @description: + * A macro that returns true whenever a face object contains a font face + * that contains fixed-width (or 'monospace', 'fixed-pitch', etc.) + * glyphs. + * + */ +#define FT_IS_FIXED_WIDTH( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_FIXED_WIDTH ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_FIXED_SIZES + * + * @description: + * A macro that returns true whenever a face object contains some + * embedded bitmaps. See the `available_sizes` field of the @FT_FaceRec + * structure. + * + */ +#define FT_HAS_FIXED_SIZES( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_FIXED_SIZES ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_FAST_GLYPHS + * + * @description: + * Deprecated. + * + */ +#define FT_HAS_FAST_GLYPHS( face ) 0 + + + /************************************************************************** + * + * @macro: + * FT_HAS_GLYPH_NAMES + * + * @description: + * A macro that returns true whenever a face object contains some glyph + * names that can be accessed through @FT_Get_Glyph_Name. + * + */ +#define FT_HAS_GLYPH_NAMES( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_GLYPH_NAMES ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_MULTIPLE_MASTERS + * + * @description: + * A macro that returns true whenever a face object contains some + * multiple masters. The functions provided by @FT_MULTIPLE_MASTERS_H + * are then available to choose the exact design you want. + * + */ +#define FT_HAS_MULTIPLE_MASTERS( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_MULTIPLE_MASTERS ) ) + + + /************************************************************************** + * + * @macro: + * FT_IS_NAMED_INSTANCE + * + * @description: + * A macro that returns true whenever a face object is a named instance + * of a GX or OpenType variation font. + * + * [Since 2.9] Changing the design coordinates with + * @FT_Set_Var_Design_Coordinates or @FT_Set_Var_Blend_Coordinates does + * not influence the return value of this macro (only + * @FT_Set_Named_Instance does that). + * + * @since: + * 2.7 + * + */ +#define FT_IS_NAMED_INSTANCE( face ) \ + ( !!( (face)->face_index & 0x7FFF0000L ) ) + + + /************************************************************************** + * + * @macro: + * FT_IS_VARIATION + * + * @description: + * A macro that returns true whenever a face object has been altered by + * @FT_Set_MM_Design_Coordinates, @FT_Set_Var_Design_Coordinates, or + * @FT_Set_Var_Blend_Coordinates. + * + * @since: + * 2.9 + * + */ +#define FT_IS_VARIATION( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_VARIATION ) ) + + + /************************************************************************** + * + * @macro: + * FT_IS_CID_KEYED + * + * @description: + * A macro that returns true whenever a face object contains a CID-keyed + * font. See the discussion of @FT_FACE_FLAG_CID_KEYED for more details. + * + * If this macro is true, all functions defined in @FT_CID_H are + * available. + * + */ +#define FT_IS_CID_KEYED( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_CID_KEYED ) ) + + + /************************************************************************** + * + * @macro: + * FT_IS_TRICKY + * + * @description: + * A macro that returns true whenever a face represents a 'tricky' font. + * See the discussion of @FT_FACE_FLAG_TRICKY for more details. + * + */ +#define FT_IS_TRICKY( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_TRICKY ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_COLOR + * + * @description: + * A macro that returns true whenever a face object contains tables for + * color glyphs. + * + * @since: + * 2.5.1 + * + */ +#define FT_HAS_COLOR( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_COLOR ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_SVG + * + * @description: + * A macro that returns true whenever a face object contains an 'SVG~' + * OpenType table. + * + * @since: + * 2.12 + */ +#define FT_HAS_SVG( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_SVG ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_SBIX + * + * @description: + * A macro that returns true whenever a face object contains an 'sbix' + * OpenType table *and* outline glyphs. + * + * Currently, FreeType only supports bitmap glyphs in PNG format for this + * table (i.e., JPEG and TIFF formats are unsupported, as are + * Apple-specific formats not part of the OpenType specification). + * + * @note: + * For backward compatibility, a font with an 'sbix' table is treated as + * a bitmap-only face. Using @FT_Open_Face with + * @FT_PARAM_TAG_IGNORE_SBIX, an application can switch off 'sbix' + * handling so that the face is treated as an ordinary outline font with + * scalable outlines. + * + * Here is some pseudo code that roughly illustrates how to implement + * 'sbix' handling according to the OpenType specification. + * + * ``` + * if ( FT_HAS_SBIX( face ) ) + * { + * // open font as a scalable one without sbix handling + * FT_Face face2; + * FT_Parameter param = { FT_PARAM_TAG_IGNORE_SBIX, NULL }; + * FT_Open_Args args = { FT_OPEN_PARAMS | ..., + * ..., + * 1, ¶m }; + * + * + * FT_Open_Face( library, &args, 0, &face2 ); + * + * available_size` as necessary into + * `preferred_sizes`[*]> + * + * for ( i = 0; i < face->num_fixed_sizes; i++ ) + * { + * size = preferred_sizes[i].size; + * + * error = FT_Set_Pixel_Sizes( face, size, size ); + * + * + * // check whether we have a glyph in a bitmap strike + * error = FT_Load_Glyph( face, + * glyph_index, + * FT_LOAD_SBITS_ONLY | + * FT_LOAD_BITMAP_METRICS_ONLY ); + * if ( error == FT_Err_Invalid_Argument ) + * continue; + * else if ( error ) + * + * else + * break; + * } + * + * if ( i != face->num_fixed_sizes ) + * + * + * if ( i == face->num_fixed_sizes || + * FT_HAS_SBIX_OVERLAY( face ) ) + * + * } + * ``` + * + * [*] Assuming a target value of 400dpi and available strike sizes 100, + * 200, 300, and 400dpi, a possible order might be [400, 200, 300, 100]: + * scaling 200dpi to 400dpi usually gives better results than scaling + * 300dpi to 400dpi; it is also much faster. However, scaling 100dpi to + * 400dpi can yield a too pixelated result, thus the preference might be + * 300dpi over 100dpi. + * + * @since: + * 2.12 + */ +#define FT_HAS_SBIX( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_SBIX ) ) + + + /************************************************************************** + * + * @macro: + * FT_HAS_SBIX_OVERLAY + * + * @description: + * A macro that returns true whenever a face object contains an 'sbix' + * OpenType table with bit~1 in its `flags` field set, instructing the + * application to overlay the bitmap strike with the corresponding + * outline glyph. See @FT_HAS_SBIX for pseudo code how to use it. + * + * @since: + * 2.12 + */ +#define FT_HAS_SBIX_OVERLAY( face ) \ + ( !!( (face)->face_flags & FT_FACE_FLAG_SBIX_OVERLAY ) ) + + + /************************************************************************** + * + * @enum: + * FT_STYLE_FLAG_XXX + * + * @description: + * A list of bit flags to indicate the style of a given face. These are + * used in the `style_flags` field of @FT_FaceRec. + * + * @values: + * FT_STYLE_FLAG_ITALIC :: + * The face style is italic or oblique. + * + * FT_STYLE_FLAG_BOLD :: + * The face is bold. + * + * @note: + * The style information as provided by FreeType is very basic. More + * details are beyond the scope and should be done on a higher level (for + * example, by analyzing various fields of the 'OS/2' table in SFNT based + * fonts). + */ +#define FT_STYLE_FLAG_ITALIC ( 1 << 0 ) +#define FT_STYLE_FLAG_BOLD ( 1 << 1 ) + + + /************************************************************************** + * + * @type: + * FT_Size_Internal + * + * @description: + * An opaque handle to an `FT_Size_InternalRec` structure, used to model + * private data of a given @FT_Size object. + */ + typedef struct FT_Size_InternalRec_* FT_Size_Internal; + + + /************************************************************************** + * + * @struct: + * FT_Size_Metrics + * + * @description: + * The size metrics structure gives the metrics of a size object. + * + * @fields: + * x_ppem :: + * The width of the scaled EM square in pixels, hence the term 'ppem' + * (pixels per EM). It is also referred to as 'nominal width'. + * + * y_ppem :: + * The height of the scaled EM square in pixels, hence the term 'ppem' + * (pixels per EM). It is also referred to as 'nominal height'. + * + * x_scale :: + * A 16.16 fractional scaling value to convert horizontal metrics from + * font units to 26.6 fractional pixels. Only relevant for scalable + * font formats. + * + * y_scale :: + * A 16.16 fractional scaling value to convert vertical metrics from + * font units to 26.6 fractional pixels. Only relevant for scalable + * font formats. + * + * ascender :: + * The ascender in 26.6 fractional pixels, rounded up to an integer + * value. See @FT_FaceRec for the details. + * + * descender :: + * The descender in 26.6 fractional pixels, rounded down to an integer + * value. See @FT_FaceRec for the details. + * + * height :: + * The height in 26.6 fractional pixels, rounded to an integer value. + * See @FT_FaceRec for the details. + * + * max_advance :: + * The maximum advance width in 26.6 fractional pixels, rounded to an + * integer value. See @FT_FaceRec for the details. + * + * @note: + * The scaling values, if relevant, are determined first during a size + * changing operation. The remaining fields are then set by the driver. + * For scalable formats, they are usually set to scaled values of the + * corresponding fields in @FT_FaceRec. Some values like ascender or + * descender are rounded for historical reasons; more precise values (for + * outline fonts) can be derived by scaling the corresponding @FT_FaceRec + * values manually, with code similar to the following. + * + * ``` + * scaled_ascender = FT_MulFix( face->ascender, + * size_metrics->y_scale ); + * ``` + * + * Note that due to glyph hinting and the selected rendering mode these + * values are usually not exact; consequently, they must be treated as + * unreliable with an error margin of at least one pixel! + * + * Indeed, the only way to get the exact metrics is to render _all_ + * glyphs. As this would be a definite performance hit, it is up to + * client applications to perform such computations. + * + * The `FT_Size_Metrics` structure is valid for bitmap fonts also. + * + * + * **TrueType fonts with native bytecode hinting** + * + * All applications that handle TrueType fonts with native hinting must + * be aware that TTFs expect different rounding of vertical font + * dimensions. The application has to cater for this, especially if it + * wants to rely on a TTF's vertical data (for example, to properly align + * box characters vertically). + * + * Only the application knows _in advance_ that it is going to use native + * hinting for TTFs! FreeType, on the other hand, selects the hinting + * mode not at the time of creating an @FT_Size object but much later, + * namely while calling @FT_Load_Glyph. + * + * Here is some pseudo code that illustrates a possible solution. + * + * ``` + * font_format = FT_Get_Font_Format( face ); + * + * if ( !strcmp( font_format, "TrueType" ) && + * do_native_bytecode_hinting ) + * { + * ascender = ROUND( FT_MulFix( face->ascender, + * size_metrics->y_scale ) ); + * descender = ROUND( FT_MulFix( face->descender, + * size_metrics->y_scale ) ); + * } + * else + * { + * ascender = size_metrics->ascender; + * descender = size_metrics->descender; + * } + * + * height = size_metrics->height; + * max_advance = size_metrics->max_advance; + * ``` + */ + typedef struct FT_Size_Metrics_ + { + FT_UShort x_ppem; /* horizontal pixels per EM */ + FT_UShort y_ppem; /* vertical pixels per EM */ + + FT_Fixed x_scale; /* scaling values used to convert font */ + FT_Fixed y_scale; /* units to 26.6 fractional pixels */ + + FT_Pos ascender; /* ascender in 26.6 frac. pixels */ + FT_Pos descender; /* descender in 26.6 frac. pixels */ + FT_Pos height; /* text height in 26.6 frac. pixels */ + FT_Pos max_advance; /* max horizontal advance, in 26.6 pixels */ + + } FT_Size_Metrics; + + + /************************************************************************** + * + * @struct: + * FT_SizeRec + * + * @description: + * FreeType root size class structure. A size object models a face + * object at a given size. + * + * @fields: + * face :: + * Handle to the parent face object. + * + * generic :: + * A typeless pointer, unused by the FreeType library or any of its + * drivers. It can be used by client applications to link their own + * data to each size object. + * + * metrics :: + * Metrics for this size object. This field is read-only. + */ + typedef struct FT_SizeRec_ + { + FT_Face face; /* parent face object */ + FT_Generic generic; /* generic pointer for client uses */ + FT_Size_Metrics metrics; /* size metrics */ + FT_Size_Internal internal; + + } FT_SizeRec; + + + /************************************************************************** + * + * @struct: + * FT_SubGlyph + * + * @description: + * The subglyph structure is an internal object used to describe + * subglyphs (for example, in the case of composites). + * + * @note: + * The subglyph implementation is not part of the high-level API, hence + * the forward structure declaration. + * + * You can however retrieve subglyph information with + * @FT_Get_SubGlyph_Info. + */ + typedef struct FT_SubGlyphRec_* FT_SubGlyph; + + + /************************************************************************** + * + * @type: + * FT_Slot_Internal + * + * @description: + * An opaque handle to an `FT_Slot_InternalRec` structure, used to model + * private data of a given @FT_GlyphSlot object. + */ + typedef struct FT_Slot_InternalRec_* FT_Slot_Internal; + + + /************************************************************************** + * + * @struct: + * FT_GlyphSlotRec + * + * @description: + * FreeType root glyph slot class structure. A glyph slot is a container + * where individual glyphs can be loaded, be they in outline or bitmap + * format. + * + * @fields: + * library :: + * A handle to the FreeType library instance this slot belongs to. + * + * face :: + * A handle to the parent face object. + * + * next :: + * In some cases (like some font tools), several glyph slots per face + * object can be a good thing. As this is rare, the glyph slots are + * listed through a direct, single-linked list using its `next` field. + * + * glyph_index :: + * [Since 2.10] The glyph index passed as an argument to @FT_Load_Glyph + * while initializing the glyph slot. + * + * generic :: + * A typeless pointer unused by the FreeType library or any of its + * drivers. It can be used by client applications to link their own + * data to each glyph slot object. + * + * metrics :: + * The metrics of the last loaded glyph in the slot. The returned + * values depend on the last load flags (see the @FT_Load_Glyph API + * function) and can be expressed either in 26.6 fractional pixels or + * font units. + * + * Note that even when the glyph image is transformed, the metrics are + * not. + * + * linearHoriAdvance :: + * The advance width of the unhinted glyph. Its value is expressed in + * 16.16 fractional pixels, unless @FT_LOAD_LINEAR_DESIGN is set when + * loading the glyph. This field can be important to perform correct + * WYSIWYG layout. Only relevant for outline glyphs. + * + * linearVertAdvance :: + * The advance height of the unhinted glyph. Its value is expressed in + * 16.16 fractional pixels, unless @FT_LOAD_LINEAR_DESIGN is set when + * loading the glyph. This field can be important to perform correct + * WYSIWYG layout. Only relevant for outline glyphs. + * + * advance :: + * This shorthand is, depending on @FT_LOAD_IGNORE_TRANSFORM, the + * transformed (hinted) advance width for the glyph, in 26.6 fractional + * pixel format. As specified with @FT_LOAD_VERTICAL_LAYOUT, it uses + * either the `horiAdvance` or the `vertAdvance` value of `metrics` + * field. + * + * format :: + * This field indicates the format of the image contained in the glyph + * slot. Typically @FT_GLYPH_FORMAT_BITMAP, @FT_GLYPH_FORMAT_OUTLINE, + * or @FT_GLYPH_FORMAT_COMPOSITE, but other values are possible. + * + * bitmap :: + * This field is used as a bitmap descriptor. Note that the address + * and content of the bitmap buffer can change between calls of + * @FT_Load_Glyph and a few other functions. + * + * bitmap_left :: + * The bitmap's left bearing expressed in integer pixels. + * + * bitmap_top :: + * The bitmap's top bearing expressed in integer pixels. This is the + * distance from the baseline to the top-most glyph scanline, upwards + * y~coordinates being **positive**. + * + * outline :: + * The outline descriptor for the current glyph image if its format is + * @FT_GLYPH_FORMAT_OUTLINE. Once a glyph is loaded, `outline` can be + * transformed, distorted, emboldened, etc. However, it must not be + * freed. + * + * [Since 2.10.1] If @FT_LOAD_NO_SCALE is set, outline coordinates of + * OpenType variation fonts for a selected instance are internally + * handled as 26.6 fractional font units but returned as (rounded) + * integers, as expected. To get unrounded font units, don't use + * @FT_LOAD_NO_SCALE but load the glyph with @FT_LOAD_NO_HINTING and + * scale it, using the font's `units_per_EM` value as the ppem. + * + * num_subglyphs :: + * The number of subglyphs in a composite glyph. This field is only + * valid for the composite glyph format that should normally only be + * loaded with the @FT_LOAD_NO_RECURSE flag. + * + * subglyphs :: + * An array of subglyph descriptors for composite glyphs. There are + * `num_subglyphs` elements in there. Currently internal to FreeType. + * + * control_data :: + * Certain font drivers can also return the control data for a given + * glyph image (e.g. TrueType bytecode, Type~1 charstrings, etc.). + * This field is a pointer to such data; it is currently internal to + * FreeType. + * + * control_len :: + * This is the length in bytes of the control data. Currently internal + * to FreeType. + * + * other :: + * Reserved. + * + * lsb_delta :: + * The difference between hinted and unhinted left side bearing while + * auto-hinting is active. Zero otherwise. + * + * rsb_delta :: + * The difference between hinted and unhinted right side bearing while + * auto-hinting is active. Zero otherwise. + * + * @note: + * If @FT_Load_Glyph is called with default flags (see @FT_LOAD_DEFAULT) + * the glyph image is loaded in the glyph slot in its native format + * (e.g., an outline glyph for TrueType and Type~1 formats). [Since 2.9] + * The prospective bitmap metrics are calculated according to + * @FT_LOAD_TARGET_XXX and other flags even for the outline glyph, even + * if @FT_LOAD_RENDER is not set. + * + * This image can later be converted into a bitmap by calling + * @FT_Render_Glyph. This function searches the current renderer for the + * native image's format, then invokes it. + * + * The renderer is in charge of transforming the native image through the + * slot's face transformation fields, then converting it into a bitmap + * that is returned in `slot->bitmap`. + * + * Note that `slot->bitmap_left` and `slot->bitmap_top` are also used to + * specify the position of the bitmap relative to the current pen + * position (e.g., coordinates (0,0) on the baseline). Of course, + * `slot->format` is also changed to @FT_GLYPH_FORMAT_BITMAP. + * + * Here is a small pseudo code fragment that shows how to use `lsb_delta` + * and `rsb_delta` to do fractional positioning of glyphs: + * + * ``` + * FT_GlyphSlot slot = face->glyph; + * FT_Pos origin_x = 0; + * + * + * for all glyphs do + * + * + * FT_Outline_Translate( slot->outline, origin_x & 63, 0 ); + * + * + * + * + * + * origin_x += slot->advance.x; + * origin_x += slot->lsb_delta - slot->rsb_delta; + * endfor + * ``` + * + * Here is another small pseudo code fragment that shows how to use + * `lsb_delta` and `rsb_delta` to improve integer positioning of glyphs: + * + * ``` + * FT_GlyphSlot slot = face->glyph; + * FT_Pos origin_x = 0; + * FT_Pos prev_rsb_delta = 0; + * + * + * for all glyphs do + * + * + * + * + * if ( prev_rsb_delta - slot->lsb_delta > 32 ) + * origin_x -= 64; + * else if ( prev_rsb_delta - slot->lsb_delta < -31 ) + * origin_x += 64; + * + * prev_rsb_delta = slot->rsb_delta; + * + * + * + * origin_x += slot->advance.x; + * endfor + * ``` + * + * If you use strong auto-hinting, you **must** apply these delta values! + * Otherwise you will experience far too large inter-glyph spacing at + * small rendering sizes in most cases. Note that it doesn't harm to use + * the above code for other hinting modes also, since the delta values + * are zero then. + */ + typedef struct FT_GlyphSlotRec_ + { + FT_Library library; + FT_Face face; + FT_GlyphSlot next; + FT_UInt glyph_index; /* new in 2.10; was reserved previously */ + FT_Generic generic; + + FT_Glyph_Metrics metrics; + FT_Fixed linearHoriAdvance; + FT_Fixed linearVertAdvance; + FT_Vector advance; + + FT_Glyph_Format format; + + FT_Bitmap bitmap; + FT_Int bitmap_left; + FT_Int bitmap_top; + + FT_Outline outline; + + FT_UInt num_subglyphs; + FT_SubGlyph subglyphs; + + void* control_data; + long control_len; + + FT_Pos lsb_delta; + FT_Pos rsb_delta; + + void* other; + + FT_Slot_Internal internal; + + } FT_GlyphSlotRec; + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* F U N C T I O N S */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @function: + * FT_Init_FreeType + * + * @description: + * Initialize a new FreeType library object. The set of modules that are + * registered by this function is determined at build time. + * + * @output: + * alibrary :: + * A handle to a new library object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * In case you want to provide your own memory allocating routines, use + * @FT_New_Library instead, followed by a call to @FT_Add_Default_Modules + * (or a series of calls to @FT_Add_Module) and + * @FT_Set_Default_Properties. + * + * See the documentation of @FT_Library and @FT_Face for multi-threading + * issues. + * + * If you need reference-counting (cf. @FT_Reference_Library), use + * @FT_New_Library and @FT_Done_Library. + * + * If compilation option `FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES` is + * set, this function reads the `FREETYPE_PROPERTIES` environment + * variable to control driver properties. See section @properties for + * more. + */ + FT_EXPORT( FT_Error ) + FT_Init_FreeType( FT_Library *alibrary ); + + + /************************************************************************** + * + * @function: + * FT_Done_FreeType + * + * @description: + * Destroy a given FreeType library object and all of its children, + * including resources, drivers, faces, sizes, etc. + * + * @input: + * library :: + * A handle to the target library object. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Done_FreeType( FT_Library library ); + + + /************************************************************************** + * + * @enum: + * FT_OPEN_XXX + * + * @description: + * A list of bit field constants used within the `flags` field of the + * @FT_Open_Args structure. + * + * @values: + * FT_OPEN_MEMORY :: + * This is a memory-based stream. + * + * FT_OPEN_STREAM :: + * Copy the stream from the `stream` field. + * + * FT_OPEN_PATHNAME :: + * Create a new input stream from a C~path name. + * + * FT_OPEN_DRIVER :: + * Use the `driver` field. + * + * FT_OPEN_PARAMS :: + * Use the `num_params` and `params` fields. + * + * @note: + * The `FT_OPEN_MEMORY`, `FT_OPEN_STREAM`, and `FT_OPEN_PATHNAME` flags + * are mutually exclusive. + */ +#define FT_OPEN_MEMORY 0x1 +#define FT_OPEN_STREAM 0x2 +#define FT_OPEN_PATHNAME 0x4 +#define FT_OPEN_DRIVER 0x8 +#define FT_OPEN_PARAMS 0x10 + + + /* these constants are deprecated; use the corresponding `FT_OPEN_XXX` */ + /* values instead */ +#define ft_open_memory FT_OPEN_MEMORY +#define ft_open_stream FT_OPEN_STREAM +#define ft_open_pathname FT_OPEN_PATHNAME +#define ft_open_driver FT_OPEN_DRIVER +#define ft_open_params FT_OPEN_PARAMS + + + /************************************************************************** + * + * @struct: + * FT_Parameter + * + * @description: + * A simple structure to pass more or less generic parameters to + * @FT_Open_Face and @FT_Face_Properties. + * + * @fields: + * tag :: + * A four-byte identification tag. + * + * data :: + * A pointer to the parameter data. + * + * @note: + * The ID and function of parameters are driver-specific. See section + * @parameter_tags for more information. + */ + typedef struct FT_Parameter_ + { + FT_ULong tag; + FT_Pointer data; + + } FT_Parameter; + + + /************************************************************************** + * + * @struct: + * FT_Open_Args + * + * @description: + * A structure to indicate how to open a new font file or stream. A + * pointer to such a structure can be used as a parameter for the + * functions @FT_Open_Face and @FT_Attach_Stream. + * + * @fields: + * flags :: + * A set of bit flags indicating how to use the structure. + * + * memory_base :: + * The first byte of the file in memory. + * + * memory_size :: + * The size in bytes of the file in memory. + * + * pathname :: + * A pointer to an 8-bit file pathname, which must be a C~string (i.e., + * no null bytes except at the very end). The pointer is not owned by + * FreeType. + * + * stream :: + * A handle to a source stream object. + * + * driver :: + * This field is exclusively used by @FT_Open_Face; it simply specifies + * the font driver to use for opening the face. If set to `NULL`, + * FreeType tries to load the face with each one of the drivers in its + * list. + * + * num_params :: + * The number of extra parameters. + * + * params :: + * Extra parameters passed to the font driver when opening a new face. + * + * @note: + * The stream type is determined by the contents of `flags`: + * + * If the @FT_OPEN_MEMORY bit is set, assume that this is a memory file + * of `memory_size` bytes, located at `memory_address`. The data are not + * copied, and the client is responsible for releasing and destroying + * them _after_ the corresponding call to @FT_Done_Face. + * + * Otherwise, if the @FT_OPEN_STREAM bit is set, assume that a custom + * input stream `stream` is used. + * + * Otherwise, if the @FT_OPEN_PATHNAME bit is set, assume that this is a + * normal file and use `pathname` to open it. + * + * If none of the above bits are set or if multiple are set at the same + * time, the flags are invalid and @FT_Open_Face fails. + * + * If the @FT_OPEN_DRIVER bit is set, @FT_Open_Face only tries to open + * the file with the driver whose handler is in `driver`. + * + * If the @FT_OPEN_PARAMS bit is set, the parameters given by + * `num_params` and `params` is used. They are ignored otherwise. + * + * Ideally, both the `pathname` and `params` fields should be tagged as + * 'const'; this is missing for API backward compatibility. In other + * words, applications should treat them as read-only. + */ + typedef struct FT_Open_Args_ + { + FT_UInt flags; + const FT_Byte* memory_base; + FT_Long memory_size; + FT_String* pathname; + FT_Stream stream; + FT_Module driver; + FT_Int num_params; + FT_Parameter* params; + + } FT_Open_Args; + + + /************************************************************************** + * + * @function: + * FT_New_Face + * + * @description: + * Call @FT_Open_Face to open a font by its pathname. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * pathname :: + * A path to the font file. + * + * face_index :: + * See @FT_Open_Face for a detailed description of this parameter. + * + * @output: + * aface :: + * A handle to a new face object. If `face_index` is greater than or + * equal to zero, it must be non-`NULL`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The `pathname` string should be recognizable as such by a standard + * `fopen` call on your system; in particular, this means that `pathname` + * must not contain null bytes. If that is not sufficient to address all + * file name possibilities (for example, to handle wide character file + * names on Windows in UTF-16 encoding) you might use @FT_Open_Face to + * pass a memory array or a stream object instead. + * + * Use @FT_Done_Face to destroy the created @FT_Face object (along with + * its slot and sizes). + */ + FT_EXPORT( FT_Error ) + FT_New_Face( FT_Library library, + const char* filepathname, + FT_Long face_index, + FT_Face *aface ); + + + /************************************************************************** + * + * @function: + * FT_New_Memory_Face + * + * @description: + * Call @FT_Open_Face to open a font that has been loaded into memory. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * file_base :: + * A pointer to the beginning of the font data. + * + * file_size :: + * The size of the memory chunk used by the font data. + * + * face_index :: + * See @FT_Open_Face for a detailed description of this parameter. + * + * @output: + * aface :: + * A handle to a new face object. If `face_index` is greater than or + * equal to zero, it must be non-`NULL`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You must not deallocate the memory before calling @FT_Done_Face. + */ + FT_EXPORT( FT_Error ) + FT_New_Memory_Face( FT_Library library, + const FT_Byte* file_base, + FT_Long file_size, + FT_Long face_index, + FT_Face *aface ); + + + /************************************************************************** + * + * @function: + * FT_Open_Face + * + * @description: + * Create a face object from a given resource described by @FT_Open_Args. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * args :: + * A pointer to an `FT_Open_Args` structure that must be filled by the + * caller. + * + * face_index :: + * This field holds two different values. Bits 0-15 are the index of + * the face in the font file (starting with value~0). Set it to~0 if + * there is only one face in the font file. + * + * [Since 2.6.1] Bits 16-30 are relevant to GX and OpenType variation + * fonts only, specifying the named instance index for the current face + * index (starting with value~1; value~0 makes FreeType ignore named + * instances). For non-variation fonts, bits 16-30 are ignored. + * Assuming that you want to access the third named instance in face~4, + * `face_index` should be set to 0x00030004. If you want to access + * face~4 without variation handling, simply set `face_index` to + * value~4. + * + * `FT_Open_Face` and its siblings can be used to quickly check whether + * the font format of a given font resource is supported by FreeType. + * In general, if the `face_index` argument is negative, the function's + * return value is~0 if the font format is recognized, or non-zero + * otherwise. The function allocates a more or less empty face handle + * in `*aface` (if `aface` isn't `NULL`); the only two useful fields in + * this special case are `face->num_faces` and `face->style_flags`. + * For any negative value of `face_index`, `face->num_faces` gives the + * number of faces within the font file. For the negative value + * '-(N+1)' (with 'N' a non-negative 16-bit value), bits 16-30 in + * `face->style_flags` give the number of named instances in face 'N' + * if we have a variation font (or zero otherwise). After examination, + * the returned @FT_Face structure should be deallocated with a call to + * @FT_Done_Face. + * + * @output: + * aface :: + * A handle to a new face object. If `face_index` is greater than or + * equal to zero, it must be non-`NULL`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Unlike FreeType 1.x, this function automatically creates a glyph slot + * for the face object that can be accessed directly through + * `face->glyph`. + * + * Each new face object created with this function also owns a default + * @FT_Size object, accessible as `face->size`. + * + * One @FT_Library instance can have multiple face objects, this is, + * @FT_Open_Face and its siblings can be called multiple times using the + * same `library` argument. + * + * See the discussion of reference counters in the description of + * @FT_Reference_Face. + * + * If `FT_OPEN_STREAM` is set in `args->flags`, the stream in + * `args->stream` is automatically closed before this function returns + * any error (including `FT_Err_Invalid_Argument`). + * + * @example: + * To loop over all faces, use code similar to the following snippet + * (omitting the error handling). + * + * ``` + * ... + * FT_Face face; + * FT_Long i, num_faces; + * + * + * error = FT_Open_Face( library, args, -1, &face ); + * if ( error ) { ... } + * + * num_faces = face->num_faces; + * FT_Done_Face( face ); + * + * for ( i = 0; i < num_faces; i++ ) + * { + * ... + * error = FT_Open_Face( library, args, i, &face ); + * ... + * FT_Done_Face( face ); + * ... + * } + * ``` + * + * To loop over all valid values for `face_index`, use something similar + * to the following snippet, again without error handling. The code + * accesses all faces immediately (thus only a single call of + * `FT_Open_Face` within the do-loop), with and without named instances. + * + * ``` + * ... + * FT_Face face; + * + * FT_Long num_faces = 0; + * FT_Long num_instances = 0; + * + * FT_Long face_idx = 0; + * FT_Long instance_idx = 0; + * + * + * do + * { + * FT_Long id = ( instance_idx << 16 ) + face_idx; + * + * + * error = FT_Open_Face( library, args, id, &face ); + * if ( error ) { ... } + * + * num_faces = face->num_faces; + * num_instances = face->style_flags >> 16; + * + * ... + * + * FT_Done_Face( face ); + * + * if ( instance_idx < num_instances ) + * instance_idx++; + * else + * { + * face_idx++; + * instance_idx = 0; + * } + * + * } while ( face_idx < num_faces ) + * ``` + */ + FT_EXPORT( FT_Error ) + FT_Open_Face( FT_Library library, + const FT_Open_Args* args, + FT_Long face_index, + FT_Face *aface ); + + + /************************************************************************** + * + * @function: + * FT_Attach_File + * + * @description: + * Call @FT_Attach_Stream to attach a file. + * + * @inout: + * face :: + * The target face object. + * + * @input: + * filepathname :: + * The pathname. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Attach_File( FT_Face face, + const char* filepathname ); + + + /************************************************************************** + * + * @function: + * FT_Attach_Stream + * + * @description: + * 'Attach' data to a face object. Normally, this is used to read + * additional information for the face object. For example, you can + * attach an AFM file that comes with a Type~1 font to get the kerning + * values and other metrics. + * + * @inout: + * face :: + * The target face object. + * + * @input: + * parameters :: + * A pointer to @FT_Open_Args that must be filled by the caller. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The meaning of the 'attach' (i.e., what really happens when the new + * file is read) is not fixed by FreeType itself. It really depends on + * the font format (and thus the font driver). + * + * Client applications are expected to know what they are doing when + * invoking this function. Most drivers simply do not implement file or + * stream attachments. + */ + FT_EXPORT( FT_Error ) + FT_Attach_Stream( FT_Face face, + FT_Open_Args* parameters ); + + + /************************************************************************** + * + * @function: + * FT_Reference_Face + * + * @description: + * A counter gets initialized to~1 at the time an @FT_Face structure is + * created. This function increments the counter. @FT_Done_Face then + * only destroys a face if the counter is~1, otherwise it simply + * decrements the counter. + * + * This function helps in managing life-cycles of structures that + * reference @FT_Face objects. + * + * @input: + * face :: + * A handle to a target face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.4.2 + * + */ + FT_EXPORT( FT_Error ) + FT_Reference_Face( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Done_Face + * + * @description: + * Discard a given face object, as well as all of its child slots and + * sizes. + * + * @input: + * face :: + * A handle to a target face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * See the discussion of reference counters in the description of + * @FT_Reference_Face. + */ + FT_EXPORT( FT_Error ) + FT_Done_Face( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Select_Size + * + * @description: + * Select a bitmap strike. To be more precise, this function sets the + * scaling factors of the active @FT_Size object in a face so that + * bitmaps from this particular strike are taken by @FT_Load_Glyph and + * friends. + * + * @inout: + * face :: + * A handle to a target face object. + * + * @input: + * strike_index :: + * The index of the bitmap strike in the `available_sizes` field of + * @FT_FaceRec structure. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * For bitmaps embedded in outline fonts it is common that only a subset + * of the available glyphs at a given ppem value is available. FreeType + * silently uses outlines if there is no bitmap for a given glyph index. + * + * For GX and OpenType variation fonts, a bitmap strike makes sense only + * if the default instance is active (this is, no glyph variation takes + * place); otherwise, FreeType simply ignores bitmap strikes. The same + * is true for all named instances that are different from the default + * instance. + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Select_Size( FT_Face face, + FT_Int strike_index ); + + + /************************************************************************** + * + * @enum: + * FT_Size_Request_Type + * + * @description: + * An enumeration type that lists the supported size request types, i.e., + * what input size (in font units) maps to the requested output size (in + * pixels, as computed from the arguments of @FT_Size_Request). + * + * @values: + * FT_SIZE_REQUEST_TYPE_NOMINAL :: + * The nominal size. The `units_per_EM` field of @FT_FaceRec is used + * to determine both scaling values. + * + * This is the standard scaling found in most applications. In + * particular, use this size request type for TrueType fonts if they + * provide optical scaling or something similar. Note, however, that + * `units_per_EM` is a rather abstract value which bears no relation to + * the actual size of the glyphs in a font. + * + * FT_SIZE_REQUEST_TYPE_REAL_DIM :: + * The real dimension. The sum of the `ascender` and (minus of) the + * `descender` fields of @FT_FaceRec is used to determine both scaling + * values. + * + * FT_SIZE_REQUEST_TYPE_BBOX :: + * The font bounding box. The width and height of the `bbox` field of + * @FT_FaceRec are used to determine the horizontal and vertical + * scaling value, respectively. + * + * FT_SIZE_REQUEST_TYPE_CELL :: + * The `max_advance_width` field of @FT_FaceRec is used to determine + * the horizontal scaling value; the vertical scaling value is + * determined the same way as @FT_SIZE_REQUEST_TYPE_REAL_DIM does. + * Finally, both scaling values are set to the smaller one. This type + * is useful if you want to specify the font size for, say, a window of + * a given dimension and 80x24 cells. + * + * FT_SIZE_REQUEST_TYPE_SCALES :: + * Specify the scaling values directly. + * + * @note: + * The above descriptions only apply to scalable formats. For bitmap + * formats, the behaviour is up to the driver. + * + * See the note section of @FT_Size_Metrics if you wonder how size + * requesting relates to scaling values. + */ + typedef enum FT_Size_Request_Type_ + { + FT_SIZE_REQUEST_TYPE_NOMINAL, + FT_SIZE_REQUEST_TYPE_REAL_DIM, + FT_SIZE_REQUEST_TYPE_BBOX, + FT_SIZE_REQUEST_TYPE_CELL, + FT_SIZE_REQUEST_TYPE_SCALES, + + FT_SIZE_REQUEST_TYPE_MAX + + } FT_Size_Request_Type; + + + /************************************************************************** + * + * @struct: + * FT_Size_RequestRec + * + * @description: + * A structure to model a size request. + * + * @fields: + * type :: + * See @FT_Size_Request_Type. + * + * width :: + * The desired width, given as a 26.6 fractional point value (with 72pt + * = 1in). + * + * height :: + * The desired height, given as a 26.6 fractional point value (with + * 72pt = 1in). + * + * horiResolution :: + * The horizontal resolution (dpi, i.e., pixels per inch). If set to + * zero, `width` is treated as a 26.6 fractional **pixel** value, which + * gets internally rounded to an integer. + * + * vertResolution :: + * The vertical resolution (dpi, i.e., pixels per inch). If set to + * zero, `height` is treated as a 26.6 fractional **pixel** value, + * which gets internally rounded to an integer. + * + * @note: + * If `width` is zero, the horizontal scaling value is set equal to the + * vertical scaling value, and vice versa. + * + * If `type` is `FT_SIZE_REQUEST_TYPE_SCALES`, `width` and `height` are + * interpreted directly as 16.16 fractional scaling values, without any + * further modification, and both `horiResolution` and `vertResolution` + * are ignored. + */ + typedef struct FT_Size_RequestRec_ + { + FT_Size_Request_Type type; + FT_Long width; + FT_Long height; + FT_UInt horiResolution; + FT_UInt vertResolution; + + } FT_Size_RequestRec; + + + /************************************************************************** + * + * @struct: + * FT_Size_Request + * + * @description: + * A handle to a size request structure. + */ + typedef struct FT_Size_RequestRec_ *FT_Size_Request; + + + /************************************************************************** + * + * @function: + * FT_Request_Size + * + * @description: + * Resize the scale of the active @FT_Size object in a face. + * + * @inout: + * face :: + * A handle to a target face object. + * + * @input: + * req :: + * A pointer to a @FT_Size_RequestRec. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Although drivers may select the bitmap strike matching the request, + * you should not rely on this if you intend to select a particular + * bitmap strike. Use @FT_Select_Size instead in that case. + * + * The relation between the requested size and the resulting glyph size + * is dependent entirely on how the size is defined in the source face. + * The font designer chooses the final size of each glyph relative to + * this size. For more information refer to + * 'https://www.freetype.org/freetype2/docs/glyphs/glyphs-2.html'. + * + * Contrary to @FT_Set_Char_Size, this function doesn't have special code + * to normalize zero-valued widths, heights, or resolutions, which are + * treated as @FT_LOAD_NO_SCALE. + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Request_Size( FT_Face face, + FT_Size_Request req ); + + + /************************************************************************** + * + * @function: + * FT_Set_Char_Size + * + * @description: + * Call @FT_Request_Size to request the nominal size (in points). + * + * @inout: + * face :: + * A handle to a target face object. + * + * @input: + * char_width :: + * The nominal width, in 26.6 fractional points. + * + * char_height :: + * The nominal height, in 26.6 fractional points. + * + * horz_resolution :: + * The horizontal resolution in dpi. + * + * vert_resolution :: + * The vertical resolution in dpi. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * While this function allows fractional points as input values, the + * resulting ppem value for the given resolution is always rounded to the + * nearest integer. + * + * If either the character width or height is zero, it is set equal to + * the other value. + * + * If either the horizontal or vertical resolution is zero, it is set + * equal to the other value. + * + * A character width or height smaller than 1pt is set to 1pt; if both + * resolution values are zero, they are set to 72dpi. + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Set_Char_Size( FT_Face face, + FT_F26Dot6 char_width, + FT_F26Dot6 char_height, + FT_UInt horz_resolution, + FT_UInt vert_resolution ); + + + /************************************************************************** + * + * @function: + * FT_Set_Pixel_Sizes + * + * @description: + * Call @FT_Request_Size to request the nominal size (in pixels). + * + * @inout: + * face :: + * A handle to the target face object. + * + * @input: + * pixel_width :: + * The nominal width, in pixels. + * + * pixel_height :: + * The nominal height, in pixels. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should not rely on the resulting glyphs matching or being + * constrained to this pixel size. Refer to @FT_Request_Size to + * understand how requested sizes relate to actual sizes. + * + * Don't use this function if you are using the FreeType cache API. + */ + FT_EXPORT( FT_Error ) + FT_Set_Pixel_Sizes( FT_Face face, + FT_UInt pixel_width, + FT_UInt pixel_height ); + + + /************************************************************************** + * + * @function: + * FT_Load_Glyph + * + * @description: + * Load a glyph into the glyph slot of a face object. + * + * @inout: + * face :: + * A handle to the target face object where the glyph is loaded. + * + * @input: + * glyph_index :: + * The index of the glyph in the font file. For CID-keyed fonts + * (either in PS or in CFF format) this argument specifies the CID + * value. + * + * load_flags :: + * A flag indicating what to load for this glyph. The @FT_LOAD_XXX + * flags can be used to control the glyph loading process (e.g., + * whether the outline should be scaled, whether to load bitmaps or + * not, whether to hint the outline, etc). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * For proper scaling and hinting, the active @FT_Size object owned by + * the face has to be meaningfully initialized by calling + * @FT_Set_Char_Size before this function, for example. The loaded + * glyph may be transformed. See @FT_Set_Transform for the details. + * + * For subsetted CID-keyed fonts, `FT_Err_Invalid_Argument` is returned + * for invalid CID values (this is, for CID values that don't have a + * corresponding glyph in the font). See the discussion of the + * @FT_FACE_FLAG_CID_KEYED flag for more details. + * + * If you receive `FT_Err_Glyph_Too_Big`, try getting the glyph outline + * at EM size, then scale it manually and fill it as a graphics + * operation. + */ + FT_EXPORT( FT_Error ) + FT_Load_Glyph( FT_Face face, + FT_UInt glyph_index, + FT_Int32 load_flags ); + + + /************************************************************************** + * + * @function: + * FT_Load_Char + * + * @description: + * Load a glyph into the glyph slot of a face object, accessed by its + * character code. + * + * @inout: + * face :: + * A handle to a target face object where the glyph is loaded. + * + * @input: + * char_code :: + * The glyph's character code, according to the current charmap used in + * the face. + * + * load_flags :: + * A flag indicating what to load for this glyph. The @FT_LOAD_XXX + * constants can be used to control the glyph loading process (e.g., + * whether the outline should be scaled, whether to load bitmaps or + * not, whether to hint the outline, etc). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function simply calls @FT_Get_Char_Index and @FT_Load_Glyph. + * + * Many fonts contain glyphs that can't be loaded by this function since + * its glyph indices are not listed in any of the font's charmaps. + * + * If no active cmap is set up (i.e., `face->charmap` is zero), the call + * to @FT_Get_Char_Index is omitted, and the function behaves identically + * to @FT_Load_Glyph. + */ + FT_EXPORT( FT_Error ) + FT_Load_Char( FT_Face face, + FT_ULong char_code, + FT_Int32 load_flags ); + + + /************************************************************************** + * + * @enum: + * FT_LOAD_XXX + * + * @description: + * A list of bit field constants for @FT_Load_Glyph to indicate what kind + * of operations to perform during glyph loading. + * + * @values: + * FT_LOAD_DEFAULT :: + * Corresponding to~0, this value is used as the default glyph load + * operation. In this case, the following happens: + * + * 1. FreeType looks for a bitmap for the glyph corresponding to the + * face's current size. If one is found, the function returns. The + * bitmap data can be accessed from the glyph slot (see note below). + * + * 2. If no embedded bitmap is searched for or found, FreeType looks + * for a scalable outline. If one is found, it is loaded from the font + * file, scaled to device pixels, then 'hinted' to the pixel grid in + * order to optimize it. The outline data can be accessed from the + * glyph slot (see note below). + * + * Note that by default the glyph loader doesn't render outlines into + * bitmaps. The following flags are used to modify this default + * behaviour to more specific and useful cases. + * + * FT_LOAD_NO_SCALE :: + * Don't scale the loaded outline glyph but keep it in font units. + * This flag is also assumed if @FT_Size owned by the face was not + * properly initialized. + * + * This flag implies @FT_LOAD_NO_HINTING and @FT_LOAD_NO_BITMAP, and + * unsets @FT_LOAD_RENDER. + * + * If the font is 'tricky' (see @FT_FACE_FLAG_TRICKY for more), using + * `FT_LOAD_NO_SCALE` usually yields meaningless outlines because the + * subglyphs must be scaled and positioned with hinting instructions. + * This can be solved by loading the font without `FT_LOAD_NO_SCALE` + * and setting the character size to `font->units_per_EM`. + * + * FT_LOAD_NO_HINTING :: + * Disable hinting. This generally generates 'blurrier' bitmap glyphs + * when the glyph are rendered in any of the anti-aliased modes. See + * also the note below. + * + * This flag is implied by @FT_LOAD_NO_SCALE. + * + * FT_LOAD_RENDER :: + * Call @FT_Render_Glyph after the glyph is loaded. By default, the + * glyph is rendered in @FT_RENDER_MODE_NORMAL mode. This can be + * overridden by @FT_LOAD_TARGET_XXX or @FT_LOAD_MONOCHROME. + * + * This flag is unset by @FT_LOAD_NO_SCALE. + * + * FT_LOAD_NO_BITMAP :: + * Ignore bitmap strikes when loading. Bitmap-only fonts ignore this + * flag. + * + * @FT_LOAD_NO_SCALE always sets this flag. + * + * FT_LOAD_SBITS_ONLY :: + * [Since 2.12] This is the opposite of @FT_LOAD_NO_BITMAP, more or + * less: @FT_Load_Glyph returns `FT_Err_Invalid_Argument` if the face + * contains a bitmap strike for the given size (or the strike selected + * by @FT_Select_Size) but there is no glyph in the strike. + * + * Note that this load flag was part of FreeType since version 2.0.6 + * but previously tagged as internal. + * + * FT_LOAD_VERTICAL_LAYOUT :: + * Load the glyph for vertical text layout. In particular, the + * `advance` value in the @FT_GlyphSlotRec structure is set to the + * `vertAdvance` value of the `metrics` field. + * + * In case @FT_HAS_VERTICAL doesn't return true, you shouldn't use this + * flag currently. Reason is that in this case vertical metrics get + * synthesized, and those values are not always consistent across + * various font formats. + * + * FT_LOAD_FORCE_AUTOHINT :: + * Prefer the auto-hinter over the font's native hinter. See also the + * note below. + * + * FT_LOAD_PEDANTIC :: + * Make the font driver perform pedantic verifications during glyph + * loading and hinting. This is mostly used to detect broken glyphs in + * fonts. By default, FreeType tries to handle broken fonts also. + * + * In particular, errors from the TrueType bytecode engine are not + * passed to the application if this flag is not set; this might result + * in partially hinted or distorted glyphs in case a glyph's bytecode + * is buggy. + * + * FT_LOAD_NO_RECURSE :: + * Don't load composite glyphs recursively. Instead, the font driver + * fills the `num_subglyph` and `subglyphs` values of the glyph slot; + * it also sets `glyph->format` to @FT_GLYPH_FORMAT_COMPOSITE. The + * description of subglyphs can then be accessed with + * @FT_Get_SubGlyph_Info. + * + * Don't use this flag for retrieving metrics information since some + * font drivers only return rudimentary data. + * + * This flag implies @FT_LOAD_NO_SCALE and @FT_LOAD_IGNORE_TRANSFORM. + * + * FT_LOAD_IGNORE_TRANSFORM :: + * Ignore the transform matrix set by @FT_Set_Transform. + * + * FT_LOAD_MONOCHROME :: + * This flag is used with @FT_LOAD_RENDER to indicate that you want to + * render an outline glyph to a 1-bit monochrome bitmap glyph, with + * 8~pixels packed into each byte of the bitmap data. + * + * Note that this has no effect on the hinting algorithm used. You + * should rather use @FT_LOAD_TARGET_MONO so that the + * monochrome-optimized hinting algorithm is used. + * + * FT_LOAD_LINEAR_DESIGN :: + * Keep `linearHoriAdvance` and `linearVertAdvance` fields of + * @FT_GlyphSlotRec in font units. See @FT_GlyphSlotRec for details. + * + * FT_LOAD_NO_AUTOHINT :: + * Disable the auto-hinter. See also the note below. + * + * FT_LOAD_COLOR :: + * Load colored glyphs. FreeType searches in the following order; + * there are slight differences depending on the font format. + * + * [Since 2.5] Load embedded color bitmap images (provided + * @FT_LOAD_NO_BITMAP is not set). The resulting color bitmaps, if + * available, have the @FT_PIXEL_MODE_BGRA format, with pre-multiplied + * color channels. If the flag is not set and color bitmaps are found, + * they are converted to 256-level gray bitmaps, using the + * @FT_PIXEL_MODE_GRAY format. + * + * [Since 2.12] If the glyph index maps to an entry in the face's + * 'SVG~' table, load the associated SVG document from this table and + * set the `format` field of @FT_GlyphSlotRec to @FT_GLYPH_FORMAT_SVG. + * Note that FreeType itself can't render SVG documents; however, the + * library provides hooks to seamlessly integrate an external renderer. + * See sections @ot_svg_driver and @svg_fonts for more. + * + * [Since 2.10, experimental] If the glyph index maps to an entry in + * the face's 'COLR' table with a 'CPAL' palette table (as defined in + * the OpenType specification), make @FT_Render_Glyph provide a default + * blending of the color glyph layers associated with the glyph index, + * using the same bitmap format as embedded color bitmap images. This + * is mainly for convenience and works only for glyphs in 'COLR' v0 + * tables (or glyphs in 'COLR' v1 tables that exclusively use v0 + * features). For full control of color layers use + * @FT_Get_Color_Glyph_Layer and FreeType's color functions like + * @FT_Palette_Select instead of setting @FT_LOAD_COLOR for rendering + * so that the client application can handle blending by itself. + * + * FT_LOAD_COMPUTE_METRICS :: + * [Since 2.6.1] Compute glyph metrics from the glyph data, without the + * use of bundled metrics tables (for example, the 'hdmx' table in + * TrueType fonts). This flag is mainly used by font validating or + * font editing applications, which need to ignore, verify, or edit + * those tables. + * + * Currently, this flag is only implemented for TrueType fonts. + * + * FT_LOAD_BITMAP_METRICS_ONLY :: + * [Since 2.7.1] Request loading of the metrics and bitmap image + * information of a (possibly embedded) bitmap glyph without allocating + * or copying the bitmap image data itself. No effect if the target + * glyph is not a bitmap image. + * + * This flag unsets @FT_LOAD_RENDER. + * + * FT_LOAD_CROP_BITMAP :: + * Ignored. Deprecated. + * + * FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH :: + * Ignored. Deprecated. + * + * @note: + * By default, hinting is enabled and the font's native hinter (see + * @FT_FACE_FLAG_HINTER) is preferred over the auto-hinter. You can + * disable hinting by setting @FT_LOAD_NO_HINTING or change the + * precedence by setting @FT_LOAD_FORCE_AUTOHINT. You can also set + * @FT_LOAD_NO_AUTOHINT in case you don't want the auto-hinter to be used + * at all. + * + * See the description of @FT_FACE_FLAG_TRICKY for a special exception + * (affecting only a handful of Asian fonts). + * + * Besides deciding which hinter to use, you can also decide which + * hinting algorithm to use. See @FT_LOAD_TARGET_XXX for details. + * + * Note that the auto-hinter needs a valid Unicode cmap (either a native + * one or synthesized by FreeType) for producing correct results. If a + * font provides an incorrect mapping (for example, assigning the + * character code U+005A, LATIN CAPITAL LETTER~Z, to a glyph depicting a + * mathematical integral sign), the auto-hinter might produce useless + * results. + * + */ +#define FT_LOAD_DEFAULT 0x0 +#define FT_LOAD_NO_SCALE ( 1L << 0 ) +#define FT_LOAD_NO_HINTING ( 1L << 1 ) +#define FT_LOAD_RENDER ( 1L << 2 ) +#define FT_LOAD_NO_BITMAP ( 1L << 3 ) +#define FT_LOAD_VERTICAL_LAYOUT ( 1L << 4 ) +#define FT_LOAD_FORCE_AUTOHINT ( 1L << 5 ) +#define FT_LOAD_CROP_BITMAP ( 1L << 6 ) +#define FT_LOAD_PEDANTIC ( 1L << 7 ) +#define FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH ( 1L << 9 ) +#define FT_LOAD_NO_RECURSE ( 1L << 10 ) +#define FT_LOAD_IGNORE_TRANSFORM ( 1L << 11 ) +#define FT_LOAD_MONOCHROME ( 1L << 12 ) +#define FT_LOAD_LINEAR_DESIGN ( 1L << 13 ) +#define FT_LOAD_SBITS_ONLY ( 1L << 14 ) +#define FT_LOAD_NO_AUTOHINT ( 1L << 15 ) + /* Bits 16-19 are used by `FT_LOAD_TARGET_` */ +#define FT_LOAD_COLOR ( 1L << 20 ) +#define FT_LOAD_COMPUTE_METRICS ( 1L << 21 ) +#define FT_LOAD_BITMAP_METRICS_ONLY ( 1L << 22 ) + + /* */ + + /* used internally only by certain font drivers */ +#define FT_LOAD_ADVANCE_ONLY ( 1L << 8 ) +#define FT_LOAD_SVG_ONLY ( 1L << 23 ) + + + /************************************************************************** + * + * @enum: + * FT_LOAD_TARGET_XXX + * + * @description: + * A list of values to select a specific hinting algorithm for the + * hinter. You should OR one of these values to your `load_flags` when + * calling @FT_Load_Glyph. + * + * Note that a font's native hinters may ignore the hinting algorithm you + * have specified (e.g., the TrueType bytecode interpreter). You can set + * @FT_LOAD_FORCE_AUTOHINT to ensure that the auto-hinter is used. + * + * @values: + * FT_LOAD_TARGET_NORMAL :: + * The default hinting algorithm, optimized for standard gray-level + * rendering. For monochrome output, use @FT_LOAD_TARGET_MONO instead. + * + * FT_LOAD_TARGET_LIGHT :: + * A lighter hinting algorithm for gray-level modes. Many generated + * glyphs are fuzzier but better resemble their original shape. This + * is achieved by snapping glyphs to the pixel grid only vertically + * (Y-axis), as is done by FreeType's new CFF engine or Microsoft's + * ClearType font renderer. This preserves inter-glyph spacing in + * horizontal text. The snapping is done either by the native font + * driver, if the driver itself and the font support it, or by the + * auto-hinter. + * + * Advance widths are rounded to integer values; however, using the + * `lsb_delta` and `rsb_delta` fields of @FT_GlyphSlotRec, it is + * possible to get fractional advance widths for subpixel positioning + * (which is recommended to use). + * + * If configuration option `AF_CONFIG_OPTION_TT_SIZE_METRICS` is + * active, TrueType-like metrics are used to make this mode behave + * similarly as in unpatched FreeType versions between 2.4.6 and 2.7.1 + * (inclusive). + * + * FT_LOAD_TARGET_MONO :: + * Strong hinting algorithm that should only be used for monochrome + * output. The result is probably unpleasant if the glyph is rendered + * in non-monochrome modes. + * + * Note that for outline fonts only the TrueType font driver has proper + * monochrome hinting support, provided the TTFs contain hints for B/W + * rendering (which most fonts no longer provide). If these conditions + * are not met it is very likely that you get ugly results at smaller + * sizes. + * + * FT_LOAD_TARGET_LCD :: + * A variant of @FT_LOAD_TARGET_LIGHT optimized for horizontally + * decimated LCD displays. + * + * FT_LOAD_TARGET_LCD_V :: + * A variant of @FT_LOAD_TARGET_NORMAL optimized for vertically + * decimated LCD displays. + * + * @note: + * You should use only _one_ of the `FT_LOAD_TARGET_XXX` values in your + * `load_flags`. They can't be ORed. + * + * If @FT_LOAD_RENDER is also set, the glyph is rendered in the + * corresponding mode (i.e., the mode that matches the used algorithm + * best). An exception is `FT_LOAD_TARGET_MONO` since it implies + * @FT_LOAD_MONOCHROME. + * + * You can use a hinting algorithm that doesn't correspond to the same + * rendering mode. As an example, it is possible to use the 'light' + * hinting algorithm and have the results rendered in horizontal LCD + * pixel mode, with code like + * + * ``` + * FT_Load_Glyph( face, glyph_index, + * load_flags | FT_LOAD_TARGET_LIGHT ); + * + * FT_Render_Glyph( face->glyph, FT_RENDER_MODE_LCD ); + * ``` + * + * In general, you should stick with one rendering mode. For example, + * switching between @FT_LOAD_TARGET_NORMAL and @FT_LOAD_TARGET_MONO + * enforces a lot of recomputation for TrueType fonts, which is slow. + * Another reason is caching: Selecting a different mode usually causes + * changes in both the outlines and the rasterized bitmaps; it is thus + * necessary to empty the cache after a mode switch to avoid false hits. + * + */ +#define FT_LOAD_TARGET_( x ) ( FT_STATIC_CAST( FT_Int32, (x) & 15 ) << 16 ) + +#define FT_LOAD_TARGET_NORMAL FT_LOAD_TARGET_( FT_RENDER_MODE_NORMAL ) +#define FT_LOAD_TARGET_LIGHT FT_LOAD_TARGET_( FT_RENDER_MODE_LIGHT ) +#define FT_LOAD_TARGET_MONO FT_LOAD_TARGET_( FT_RENDER_MODE_MONO ) +#define FT_LOAD_TARGET_LCD FT_LOAD_TARGET_( FT_RENDER_MODE_LCD ) +#define FT_LOAD_TARGET_LCD_V FT_LOAD_TARGET_( FT_RENDER_MODE_LCD_V ) + + + /************************************************************************** + * + * @macro: + * FT_LOAD_TARGET_MODE + * + * @description: + * Return the @FT_Render_Mode corresponding to a given + * @FT_LOAD_TARGET_XXX value. + * + */ +#define FT_LOAD_TARGET_MODE( x ) \ + FT_STATIC_CAST( FT_Render_Mode, ( (x) >> 16 ) & 15 ) + + + /************************************************************************** + * + * @function: + * FT_Set_Transform + * + * @description: + * Set the transformation that is applied to glyph images when they are + * loaded into a glyph slot through @FT_Load_Glyph. + * + * @inout: + * face :: + * A handle to the source face object. + * + * @input: + * matrix :: + * A pointer to the transformation's 2x2 matrix. Use `NULL` for the + * identity matrix. + * delta :: + * A pointer to the translation vector. Use `NULL` for the null + * vector. + * + * @note: + * This function is provided as a convenience, but keep in mind that + * @FT_Matrix coefficients are only 16.16 fixed-point values, which can + * limit the accuracy of the results. Using floating-point computations + * to perform the transform directly in client code instead will always + * yield better numbers. + * + * The transformation is only applied to scalable image formats after the + * glyph has been loaded. It means that hinting is unaltered by the + * transformation and is performed on the character size given in the + * last call to @FT_Set_Char_Size or @FT_Set_Pixel_Sizes. + * + * Note that this also transforms the `face.glyph.advance` field, but + * **not** the values in `face.glyph.metrics`. + */ + FT_EXPORT( void ) + FT_Set_Transform( FT_Face face, + FT_Matrix* matrix, + FT_Vector* delta ); + + + /************************************************************************** + * + * @function: + * FT_Get_Transform + * + * @description: + * Return the transformation that is applied to glyph images when they + * are loaded into a glyph slot through @FT_Load_Glyph. See + * @FT_Set_Transform for more details. + * + * @input: + * face :: + * A handle to the source face object. + * + * @output: + * matrix :: + * A pointer to a transformation's 2x2 matrix. Set this to NULL if you + * are not interested in the value. + * + * delta :: + * A pointer a translation vector. Set this to NULL if you are not + * interested in the value. + * + * @since: + * 2.11 + * + */ + FT_EXPORT( void ) + FT_Get_Transform( FT_Face face, + FT_Matrix* matrix, + FT_Vector* delta ); + + + /************************************************************************** + * + * @enum: + * FT_Render_Mode + * + * @description: + * Render modes supported by FreeType~2. Each mode corresponds to a + * specific type of scanline conversion performed on the outline. + * + * For bitmap fonts and embedded bitmaps the `bitmap->pixel_mode` field + * in the @FT_GlyphSlotRec structure gives the format of the returned + * bitmap. + * + * All modes except @FT_RENDER_MODE_MONO use 256 levels of opacity, + * indicating pixel coverage. Use linear alpha blending and gamma + * correction to correctly render non-monochrome glyph bitmaps onto a + * surface; see @FT_Render_Glyph. + * + * The @FT_RENDER_MODE_SDF is a special render mode that uses up to 256 + * distance values, indicating the signed distance from the grid position + * to the nearest outline. + * + * @values: + * FT_RENDER_MODE_NORMAL :: + * Default render mode; it corresponds to 8-bit anti-aliased bitmaps. + * + * FT_RENDER_MODE_LIGHT :: + * This is equivalent to @FT_RENDER_MODE_NORMAL. It is only defined as + * a separate value because render modes are also used indirectly to + * define hinting algorithm selectors. See @FT_LOAD_TARGET_XXX for + * details. + * + * FT_RENDER_MODE_MONO :: + * This mode corresponds to 1-bit bitmaps (with 2~levels of opacity). + * + * FT_RENDER_MODE_LCD :: + * This mode corresponds to horizontal RGB and BGR subpixel displays + * like LCD screens. It produces 8-bit bitmaps that are 3~times the + * width of the original glyph outline in pixels, and which use the + * @FT_PIXEL_MODE_LCD mode. + * + * FT_RENDER_MODE_LCD_V :: + * This mode corresponds to vertical RGB and BGR subpixel displays + * (like PDA screens, rotated LCD displays, etc.). It produces 8-bit + * bitmaps that are 3~times the height of the original glyph outline in + * pixels and use the @FT_PIXEL_MODE_LCD_V mode. + * + * FT_RENDER_MODE_SDF :: + * This mode corresponds to 8-bit, single-channel signed distance field + * (SDF) bitmaps. Each pixel in the SDF grid is the value from the + * pixel's position to the nearest glyph's outline. The distances are + * calculated from the center of the pixel and are positive if they are + * filled by the outline (i.e., inside the outline) and negative + * otherwise. Check the note below on how to convert the output values + * to usable data. + * + * @note: + * The selected render mode only affects vector glyphs of a font. + * Embedded bitmaps often have a different pixel mode like + * @FT_PIXEL_MODE_MONO. You can use @FT_Bitmap_Convert to transform them + * into 8-bit pixmaps. + * + * For @FT_RENDER_MODE_SDF the output bitmap buffer contains normalized + * distances that are packed into unsigned 8-bit values. To get pixel + * values in floating point representation use the following pseudo-C + * code for the conversion. + * + * ``` + * // Load glyph and render using FT_RENDER_MODE_SDF, + * // then use the output buffer as follows. + * + * ... + * FT_Byte buffer = glyph->bitmap->buffer; + * + * + * for pixel in buffer + * { + * // `sd` is the signed distance and `spread` is the current spread; + * // the default spread is 2 and can be changed. + * + * float sd = (float)pixel - 128.0f; + * + * + * // Convert to pixel values. + * sd = ( sd / 128.0f ) * spread; + * + * // Store `sd` in a buffer or use as required. + * } + * + * ``` + * + * FreeType has two rasterizers for generating SDF, namely: + * + * 1. `sdf` for generating SDF directly from glyph's outline, and + * + * 2. `bsdf` for generating SDF from rasterized bitmaps. + * + * Depending on the glyph type (i.e., outline or bitmap), one of the two + * rasterizers is chosen at runtime and used for generating SDFs. To + * force the use of `bsdf` you should render the glyph with any of the + * FreeType's other rendering modes (e.g., `FT_RENDER_MODE_NORMAL`) and + * then re-render with `FT_RENDER_MODE_SDF`. + * + * There are some issues with stability and possible failures of the SDF + * renderers (specifically `sdf`). + * + * 1. The `sdf` rasterizer is sensitive to really small features (e.g., + * sharp turns that are less than 1~pixel) and imperfections in the + * glyph's outline, causing artifacts in the final output. + * + * 2. The `sdf` rasterizer has limited support for handling intersecting + * contours and *cannot* handle self-intersecting contours whatsoever. + * Self-intersection happens when a single connected contour intersect + * itself at some point; having these in your font definitely pose a + * problem to the rasterizer and cause artifacts, too. + * + * 3. Generating SDF for really small glyphs may result in undesirable + * output; the pixel grid (which stores distance information) becomes + * too coarse. + * + * 4. Since the output buffer is normalized, precision at smaller spreads + * is greater than precision at larger spread values because the + * output range of [0..255] gets mapped to a smaller SDF range. A + * spread of~2 should be sufficient in most cases. + * + * Points (1) and (2) can be avoided by using the `bsdf` rasterizer, + * which is more stable than the `sdf` rasterizer in general. + * + */ + typedef enum FT_Render_Mode_ + { + FT_RENDER_MODE_NORMAL = 0, + FT_RENDER_MODE_LIGHT, + FT_RENDER_MODE_MONO, + FT_RENDER_MODE_LCD, + FT_RENDER_MODE_LCD_V, + FT_RENDER_MODE_SDF, + + FT_RENDER_MODE_MAX + + } FT_Render_Mode; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Render_Mode` values instead */ +#define ft_render_mode_normal FT_RENDER_MODE_NORMAL +#define ft_render_mode_mono FT_RENDER_MODE_MONO + + + /************************************************************************** + * + * @function: + * FT_Render_Glyph + * + * @description: + * Convert a given glyph image to a bitmap. It does so by inspecting the + * glyph image format, finding the relevant renderer, and invoking it. + * + * @inout: + * slot :: + * A handle to the glyph slot containing the image to convert. + * + * @input: + * render_mode :: + * The render mode used to render the glyph image into a bitmap. See + * @FT_Render_Mode for a list of possible values. + * + * If @FT_RENDER_MODE_NORMAL is used, a previous call of @FT_Load_Glyph + * with flag @FT_LOAD_COLOR makes `FT_Render_Glyph` provide a default + * blending of colored glyph layers associated with the current glyph + * slot (provided the font contains such layers) instead of rendering + * the glyph slot's outline. This is an experimental feature; see + * @FT_LOAD_COLOR for more information. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * When FreeType outputs a bitmap of a glyph, it really outputs an alpha + * coverage map. If a pixel is completely covered by a filled-in + * outline, the bitmap contains 0xFF at that pixel, meaning that + * 0xFF/0xFF fraction of that pixel is covered, meaning the pixel is 100% + * black (or 0% bright). If a pixel is only 50% covered (value 0x80), + * the pixel is made 50% black (50% bright or a middle shade of grey). + * 0% covered means 0% black (100% bright or white). + * + * On high-DPI screens like on smartphones and tablets, the pixels are so + * small that their chance of being completely covered and therefore + * completely black are fairly good. On the low-DPI screens, however, + * the situation is different. The pixels are too large for most of the + * details of a glyph and shades of gray are the norm rather than the + * exception. + * + * This is relevant because all our screens have a second problem: they + * are not linear. 1~+~1 is not~2. Twice the value does not result in + * twice the brightness. When a pixel is only 50% covered, the coverage + * map says 50% black, and this translates to a pixel value of 128 when + * you use 8~bits per channel (0-255). However, this does not translate + * to 50% brightness for that pixel on our sRGB and gamma~2.2 screens. + * Due to their non-linearity, they dwell longer in the darks and only a + * pixel value of about 186 results in 50% brightness -- 128 ends up too + * dark on both bright and dark backgrounds. The net result is that dark + * text looks burnt-out, pixely and blotchy on bright background, bright + * text too frail on dark backgrounds, and colored text on colored + * background (for example, red on green) seems to have dark halos or + * 'dirt' around it. The situation is especially ugly for diagonal stems + * like in 'w' glyph shapes where the quality of FreeType's anti-aliasing + * depends on the correct display of grays. On high-DPI screens where + * smaller, fully black pixels reign supreme, this doesn't matter, but on + * our low-DPI screens with all the gray shades, it does. 0% and 100% + * brightness are the same things in linear and non-linear space, just + * all the shades in-between aren't. + * + * The blending function for placing text over a background is + * + * ``` + * dst = alpha * src + (1 - alpha) * dst , + * ``` + * + * which is known as the OVER operator. + * + * To correctly composite an anti-aliased pixel of a glyph onto a + * surface, + * + * 1. take the foreground and background colors (e.g., in sRGB space) + * and apply gamma to get them in a linear space, + * + * 2. use OVER to blend the two linear colors using the glyph pixel + * as the alpha value (remember, the glyph bitmap is an alpha coverage + * bitmap), and + * + * 3. apply inverse gamma to the blended pixel and write it back to + * the image. + * + * Internal testing at Adobe found that a target inverse gamma of~1.8 for + * step~3 gives good results across a wide range of displays with an sRGB + * gamma curve or a similar one. + * + * This process can cost performance. There is an approximation that + * does not need to know about the background color; see + * https://bel.fi/alankila/lcd/ and + * https://bel.fi/alankila/lcd/alpcor.html for details. + * + * **ATTENTION**: Linear blending is even more important when dealing + * with subpixel-rendered glyphs to prevent color-fringing! A + * subpixel-rendered glyph must first be filtered with a filter that + * gives equal weight to the three color primaries and does not exceed a + * sum of 0x100, see section @lcd_rendering. Then the only difference to + * gray linear blending is that subpixel-rendered linear blending is done + * 3~times per pixel: red foreground subpixel to red background subpixel + * and so on for green and blue. + */ + FT_EXPORT( FT_Error ) + FT_Render_Glyph( FT_GlyphSlot slot, + FT_Render_Mode render_mode ); + + + /************************************************************************** + * + * @enum: + * FT_Kerning_Mode + * + * @description: + * An enumeration to specify the format of kerning values returned by + * @FT_Get_Kerning. + * + * @values: + * FT_KERNING_DEFAULT :: + * Return grid-fitted kerning distances in 26.6 fractional pixels. + * + * FT_KERNING_UNFITTED :: + * Return un-grid-fitted kerning distances in 26.6 fractional pixels. + * + * FT_KERNING_UNSCALED :: + * Return the kerning vector in original font units. + * + * @note: + * `FT_KERNING_DEFAULT` returns full pixel values; it also makes FreeType + * heuristically scale down kerning distances at small ppem values so + * that they don't become too big. + * + * Both `FT_KERNING_DEFAULT` and `FT_KERNING_UNFITTED` use the current + * horizontal scaling factor (as set e.g. with @FT_Set_Char_Size) to + * convert font units to pixels. + */ + typedef enum FT_Kerning_Mode_ + { + FT_KERNING_DEFAULT = 0, + FT_KERNING_UNFITTED, + FT_KERNING_UNSCALED + + } FT_Kerning_Mode; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Kerning_Mode` values instead */ +#define ft_kerning_default FT_KERNING_DEFAULT +#define ft_kerning_unfitted FT_KERNING_UNFITTED +#define ft_kerning_unscaled FT_KERNING_UNSCALED + + + /************************************************************************** + * + * @function: + * FT_Get_Kerning + * + * @description: + * Return the kerning vector between two glyphs of the same face. + * + * @input: + * face :: + * A handle to a source face object. + * + * left_glyph :: + * The index of the left glyph in the kern pair. + * + * right_glyph :: + * The index of the right glyph in the kern pair. + * + * kern_mode :: + * See @FT_Kerning_Mode for more information. Determines the scale and + * dimension of the returned kerning vector. + * + * @output: + * akerning :: + * The kerning vector. This is either in font units, fractional pixels + * (26.6 format), or pixels for scalable formats, and in pixels for + * fixed-sizes formats. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Only horizontal layouts (left-to-right & right-to-left) are supported + * by this method. Other layouts, or more sophisticated kernings, are + * out of the scope of this API function -- they can be implemented + * through format-specific interfaces. + * + * Kerning for OpenType fonts implemented in a 'GPOS' table is not + * supported; use @FT_HAS_KERNING to find out whether a font has data + * that can be extracted with `FT_Get_Kerning`. + */ + FT_EXPORT( FT_Error ) + FT_Get_Kerning( FT_Face face, + FT_UInt left_glyph, + FT_UInt right_glyph, + FT_UInt kern_mode, + FT_Vector *akerning ); + + + /************************************************************************** + * + * @function: + * FT_Get_Track_Kerning + * + * @description: + * Return the track kerning for a given face object at a given size. + * + * @input: + * face :: + * A handle to a source face object. + * + * point_size :: + * The point size in 16.16 fractional points. + * + * degree :: + * The degree of tightness. Increasingly negative values represent + * tighter track kerning, while increasingly positive values represent + * looser track kerning. Value zero means no track kerning. + * + * @output: + * akerning :: + * The kerning in 16.16 fractional points, to be uniformly applied + * between all glyphs. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Currently, only the Type~1 font driver supports track kerning, using + * data from AFM files (if attached with @FT_Attach_File or + * @FT_Attach_Stream). + * + * Only very few AFM files come with track kerning data; please refer to + * Adobe's AFM specification for more details. + */ + FT_EXPORT( FT_Error ) + FT_Get_Track_Kerning( FT_Face face, + FT_Fixed point_size, + FT_Int degree, + FT_Fixed* akerning ); + + + /************************************************************************** + * + * @function: + * FT_Get_Glyph_Name + * + * @description: + * Retrieve the ASCII name of a given glyph in a face. This only works + * for those faces where @FT_HAS_GLYPH_NAMES(face) returns~1. + * + * @input: + * face :: + * A handle to a source face object. + * + * glyph_index :: + * The glyph index. + * + * buffer_max :: + * The maximum number of bytes available in the buffer. + * + * @output: + * buffer :: + * A pointer to a target buffer where the name is copied to. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * An error is returned if the face doesn't provide glyph names or if the + * glyph index is invalid. In all cases of failure, the first byte of + * `buffer` is set to~0 to indicate an empty name. + * + * The glyph name is truncated to fit within the buffer if it is too + * long. The returned string is always zero-terminated. + * + * Be aware that FreeType reorders glyph indices internally so that glyph + * index~0 always corresponds to the 'missing glyph' (called '.notdef'). + * + * This function always returns an error if the config macro + * `FT_CONFIG_OPTION_NO_GLYPH_NAMES` is not defined in `ftoption.h`. + */ + FT_EXPORT( FT_Error ) + FT_Get_Glyph_Name( FT_Face face, + FT_UInt glyph_index, + FT_Pointer buffer, + FT_UInt buffer_max ); + + + /************************************************************************** + * + * @function: + * FT_Get_Postscript_Name + * + * @description: + * Retrieve the ASCII PostScript name of a given face, if available. + * This only works with PostScript, TrueType, and OpenType fonts. + * + * @input: + * face :: + * A handle to the source face object. + * + * @return: + * A pointer to the face's PostScript name. `NULL` if unavailable. + * + * @note: + * The returned pointer is owned by the face and is destroyed with it. + * + * For variation fonts, this string changes if you select a different + * instance, and you have to call `FT_Get_PostScript_Name` again to + * retrieve it. FreeType follows Adobe TechNote #5902, 'Generating + * PostScript Names for Fonts Using OpenType Font Variations'. + * + * https://download.macromedia.com/pub/developer/opentype/tech-notes/5902.AdobePSNameGeneration.html + * + * [Since 2.9] Special PostScript names for named instances are only + * returned if the named instance is set with @FT_Set_Named_Instance (and + * the font has corresponding entries in its 'fvar' table). If + * @FT_IS_VARIATION returns true, the algorithmically derived PostScript + * name is provided, not looking up special entries for named instances. + */ + FT_EXPORT( const char* ) + FT_Get_Postscript_Name( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Select_Charmap + * + * @description: + * Select a given charmap by its encoding tag (as listed in + * `freetype.h`). + * + * @inout: + * face :: + * A handle to the source face object. + * + * @input: + * encoding :: + * A handle to the selected encoding. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function returns an error if no charmap in the face corresponds + * to the encoding queried here. + * + * Because many fonts contain more than a single cmap for Unicode + * encoding, this function has some special code to select the one that + * covers Unicode best ('best' in the sense that a UCS-4 cmap is + * preferred to a UCS-2 cmap). It is thus preferable to @FT_Set_Charmap + * in this case. + */ + FT_EXPORT( FT_Error ) + FT_Select_Charmap( FT_Face face, + FT_Encoding encoding ); + + + /************************************************************************** + * + * @function: + * FT_Set_Charmap + * + * @description: + * Select a given charmap for character code to glyph index mapping. + * + * @inout: + * face :: + * A handle to the source face object. + * + * @input: + * charmap :: + * A handle to the selected charmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function returns an error if the charmap is not part of the face + * (i.e., if it is not listed in the `face->charmaps` table). + * + * It also fails if an OpenType type~14 charmap is selected (which + * doesn't map character codes to glyph indices at all). + */ + FT_EXPORT( FT_Error ) + FT_Set_Charmap( FT_Face face, + FT_CharMap charmap ); + + + /************************************************************************** + * + * @function: + * FT_Get_Charmap_Index + * + * @description: + * Retrieve index of a given charmap. + * + * @input: + * charmap :: + * A handle to a charmap. + * + * @return: + * The index into the array of character maps within the face to which + * `charmap` belongs. If an error occurs, -1 is returned. + * + */ + FT_EXPORT( FT_Int ) + FT_Get_Charmap_Index( FT_CharMap charmap ); + + + /************************************************************************** + * + * @function: + * FT_Get_Char_Index + * + * @description: + * Return the glyph index of a given character code. This function uses + * the currently selected charmap to do the mapping. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character code. + * + * @return: + * The glyph index. 0~means 'undefined character code'. + * + * @note: + * If you use FreeType to manipulate the contents of font files directly, + * be aware that the glyph index returned by this function doesn't always + * correspond to the internal indices used within the file. This is done + * to ensure that value~0 always corresponds to the 'missing glyph'. If + * the first glyph is not named '.notdef', then for Type~1 and Type~42 + * fonts, '.notdef' will be moved into the glyph ID~0 position, and + * whatever was there will be moved to the position '.notdef' had. For + * Type~1 fonts, if there is no '.notdef' glyph at all, then one will be + * created at index~0 and whatever was there will be moved to the last + * index -- Type~42 fonts are considered invalid under this condition. + */ + FT_EXPORT( FT_UInt ) + FT_Get_Char_Index( FT_Face face, + FT_ULong charcode ); + + + /************************************************************************** + * + * @function: + * FT_Get_First_Char + * + * @description: + * Return the first character code in the current charmap of a given + * face, together with its corresponding glyph index. + * + * @input: + * face :: + * A handle to the source face object. + * + * @output: + * agindex :: + * Glyph index of first character code. 0~if charmap is empty. + * + * @return: + * The charmap's first character code. + * + * @note: + * You should use this function together with @FT_Get_Next_Char to parse + * all character codes available in a given charmap. The code should + * look like this: + * + * ``` + * FT_ULong charcode; + * FT_UInt gindex; + * + * + * charcode = FT_Get_First_Char( face, &gindex ); + * while ( gindex != 0 ) + * { + * ... do something with (charcode,gindex) pair ... + * + * charcode = FT_Get_Next_Char( face, charcode, &gindex ); + * } + * ``` + * + * Be aware that character codes can have values up to 0xFFFFFFFF; this + * might happen for non-Unicode or malformed cmaps. However, even with + * regular Unicode encoding, so-called 'last resort fonts' (using SFNT + * cmap format 13, see function @FT_Get_CMap_Format) normally have + * entries for all Unicode characters up to 0x1FFFFF, which can cause *a + * lot* of iterations. + * + * Note that `*agindex` is set to~0 if the charmap is empty. The result + * itself can be~0 in two cases: if the charmap is empty or if the + * value~0 is the first valid character code. + */ + FT_EXPORT( FT_ULong ) + FT_Get_First_Char( FT_Face face, + FT_UInt *agindex ); + + + /************************************************************************** + * + * @function: + * FT_Get_Next_Char + * + * @description: + * Return the next character code in the current charmap of a given face + * following the value `char_code`, as well as the corresponding glyph + * index. + * + * @input: + * face :: + * A handle to the source face object. + * + * char_code :: + * The starting character code. + * + * @output: + * agindex :: + * Glyph index of next character code. 0~if charmap is empty. + * + * @return: + * The charmap's next character code. + * + * @note: + * You should use this function with @FT_Get_First_Char to walk over all + * character codes available in a given charmap. See the note for that + * function for a simple code example. + * + * Note that `*agindex` is set to~0 when there are no more codes in the + * charmap. + */ + FT_EXPORT( FT_ULong ) + FT_Get_Next_Char( FT_Face face, + FT_ULong char_code, + FT_UInt *agindex ); + + + /************************************************************************** + * + * @function: + * FT_Face_Properties + * + * @description: + * Set or override certain (library or module-wide) properties on a + * face-by-face basis. Useful for finer-grained control and avoiding + * locks on shared structures (threads can modify their own faces as they + * see fit). + * + * Contrary to @FT_Property_Set, this function uses @FT_Parameter so that + * you can pass multiple properties to the target face in one call. Note + * that only a subset of the available properties can be controlled. + * + * * @FT_PARAM_TAG_STEM_DARKENING (stem darkening, corresponding to the + * property `no-stem-darkening` provided by the 'autofit', 'cff', + * 'type1', and 't1cid' modules; see @no-stem-darkening). + * + * * @FT_PARAM_TAG_LCD_FILTER_WEIGHTS (LCD filter weights, corresponding + * to function @FT_Library_SetLcdFilterWeights). + * + * * @FT_PARAM_TAG_RANDOM_SEED (seed value for the CFF, Type~1, and CID + * 'random' operator, corresponding to the `random-seed` property + * provided by the 'cff', 'type1', and 't1cid' modules; see + * @random-seed). + * + * Pass `NULL` as `data` in @FT_Parameter for a given tag to reset the + * option and use the library or module default again. + * + * @input: + * face :: + * A handle to the source face object. + * + * num_properties :: + * The number of properties that follow. + * + * properties :: + * A handle to an @FT_Parameter array with `num_properties` elements. + * + * @return: + * FreeType error code. 0~means success. + * + * @example: + * Here is an example that sets three properties. You must define + * `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` to make the LCD filter examples + * work. + * + * ``` + * FT_Parameter property1; + * FT_Bool darken_stems = 1; + * + * FT_Parameter property2; + * FT_LcdFiveTapFilter custom_weight = + * { 0x11, 0x44, 0x56, 0x44, 0x11 }; + * + * FT_Parameter property3; + * FT_Int32 random_seed = 314159265; + * + * FT_Parameter properties[3] = { property1, + * property2, + * property3 }; + * + * + * property1.tag = FT_PARAM_TAG_STEM_DARKENING; + * property1.data = &darken_stems; + * + * property2.tag = FT_PARAM_TAG_LCD_FILTER_WEIGHTS; + * property2.data = custom_weight; + * + * property3.tag = FT_PARAM_TAG_RANDOM_SEED; + * property3.data = &random_seed; + * + * FT_Face_Properties( face, 3, properties ); + * ``` + * + * The next example resets a single property to its default value. + * + * ``` + * FT_Parameter property; + * + * + * property.tag = FT_PARAM_TAG_LCD_FILTER_WEIGHTS; + * property.data = NULL; + * + * FT_Face_Properties( face, 1, &property ); + * ``` + * + * @since: + * 2.8 + * + */ + FT_EXPORT( FT_Error ) + FT_Face_Properties( FT_Face face, + FT_UInt num_properties, + FT_Parameter* properties ); + + + /************************************************************************** + * + * @function: + * FT_Get_Name_Index + * + * @description: + * Return the glyph index of a given glyph name. + * + * @input: + * face :: + * A handle to the source face object. + * + * glyph_name :: + * The glyph name. + * + * @return: + * The glyph index. 0~means 'undefined character code'. + */ + FT_EXPORT( FT_UInt ) + FT_Get_Name_Index( FT_Face face, + const FT_String* glyph_name ); + + + /************************************************************************** + * + * @enum: + * FT_SUBGLYPH_FLAG_XXX + * + * @description: + * A list of constants describing subglyphs. Please refer to the 'glyf' + * table description in the OpenType specification for the meaning of the + * various flags (which get synthesized for non-OpenType subglyphs). + * + * https://docs.microsoft.com/en-us/typography/opentype/spec/glyf#composite-glyph-description + * + * @values: + * FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS :: + * FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES :: + * FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID :: + * FT_SUBGLYPH_FLAG_SCALE :: + * FT_SUBGLYPH_FLAG_XY_SCALE :: + * FT_SUBGLYPH_FLAG_2X2 :: + * FT_SUBGLYPH_FLAG_USE_MY_METRICS :: + * + */ +#define FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS 1 +#define FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES 2 +#define FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID 4 +#define FT_SUBGLYPH_FLAG_SCALE 8 +#define FT_SUBGLYPH_FLAG_XY_SCALE 0x40 +#define FT_SUBGLYPH_FLAG_2X2 0x80 +#define FT_SUBGLYPH_FLAG_USE_MY_METRICS 0x200 + + + /************************************************************************** + * + * @function: + * FT_Get_SubGlyph_Info + * + * @description: + * Retrieve a description of a given subglyph. Only use it if + * `glyph->format` is @FT_GLYPH_FORMAT_COMPOSITE; an error is returned + * otherwise. + * + * @input: + * glyph :: + * The source glyph slot. + * + * sub_index :: + * The index of the subglyph. Must be less than + * `glyph->num_subglyphs`. + * + * @output: + * p_index :: + * The glyph index of the subglyph. + * + * p_flags :: + * The subglyph flags, see @FT_SUBGLYPH_FLAG_XXX. + * + * p_arg1 :: + * The subglyph's first argument (if any). + * + * p_arg2 :: + * The subglyph's second argument (if any). + * + * p_transform :: + * The subglyph transformation (if any). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The values of `*p_arg1`, `*p_arg2`, and `*p_transform` must be + * interpreted depending on the flags returned in `*p_flags`. See the + * OpenType specification for details. + * + * https://docs.microsoft.com/en-us/typography/opentype/spec/glyf#composite-glyph-description + * + */ + FT_EXPORT( FT_Error ) + FT_Get_SubGlyph_Info( FT_GlyphSlot glyph, + FT_UInt sub_index, + FT_Int *p_index, + FT_UInt *p_flags, + FT_Int *p_arg1, + FT_Int *p_arg2, + FT_Matrix *p_transform ); + + + /************************************************************************** + * + * @section: + * base_interface + * + */ + + /************************************************************************** + * + * @enum: + * FT_FSTYPE_XXX + * + * @description: + * A list of bit flags used in the `fsType` field of the OS/2 table in a + * TrueType or OpenType font and the `FSType` entry in a PostScript font. + * These bit flags are returned by @FT_Get_FSType_Flags; they inform + * client applications of embedding and subsetting restrictions + * associated with a font. + * + * See + * https://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/FontPolicies.pdf + * for more details. + * + * @values: + * FT_FSTYPE_INSTALLABLE_EMBEDDING :: + * Fonts with no fsType bit set may be embedded and permanently + * installed on the remote system by an application. + * + * FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING :: + * Fonts that have only this bit set must not be modified, embedded or + * exchanged in any manner without first obtaining permission of the + * font software copyright owner. + * + * FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING :: + * The font may be embedded and temporarily loaded on the remote + * system. Documents containing Preview & Print fonts must be opened + * 'read-only'; no edits can be applied to the document. + * + * FT_FSTYPE_EDITABLE_EMBEDDING :: + * The font may be embedded but must only be installed temporarily on + * other systems. In contrast to Preview & Print fonts, documents + * containing editable fonts may be opened for reading, editing is + * permitted, and changes may be saved. + * + * FT_FSTYPE_NO_SUBSETTING :: + * The font may not be subsetted prior to embedding. + * + * FT_FSTYPE_BITMAP_EMBEDDING_ONLY :: + * Only bitmaps contained in the font may be embedded; no outline data + * may be embedded. If there are no bitmaps available in the font, + * then the font is unembeddable. + * + * @note: + * The flags are ORed together, thus more than a single value can be + * returned. + * + * While the `fsType` flags can indicate that a font may be embedded, a + * license with the font vendor may be separately required to use the + * font in this way. + */ +#define FT_FSTYPE_INSTALLABLE_EMBEDDING 0x0000 +#define FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING 0x0002 +#define FT_FSTYPE_PREVIEW_AND_PRINT_EMBEDDING 0x0004 +#define FT_FSTYPE_EDITABLE_EMBEDDING 0x0008 +#define FT_FSTYPE_NO_SUBSETTING 0x0100 +#define FT_FSTYPE_BITMAP_EMBEDDING_ONLY 0x0200 + + + /************************************************************************** + * + * @function: + * FT_Get_FSType_Flags + * + * @description: + * Return the `fsType` flags for a font. + * + * @input: + * face :: + * A handle to the source face object. + * + * @return: + * The `fsType` flags, see @FT_FSTYPE_XXX. + * + * @note: + * Use this function rather than directly reading the `fs_type` field in + * the @PS_FontInfoRec structure, which is only guaranteed to return the + * correct results for Type~1 fonts. + * + * @since: + * 2.3.8 + * + */ + FT_EXPORT( FT_UShort ) + FT_Get_FSType_Flags( FT_Face face ); + + + /************************************************************************** + * + * @section: + * glyph_variants + * + * @title: + * Unicode Variation Sequences + * + * @abstract: + * The FreeType~2 interface to Unicode Variation Sequences (UVS), using + * the SFNT cmap format~14. + * + * @description: + * Many characters, especially for CJK scripts, have variant forms. They + * are a sort of grey area somewhere between being totally irrelevant and + * semantically distinct; for this reason, the Unicode consortium decided + * to introduce Variation Sequences (VS), consisting of a Unicode base + * character and a variation selector instead of further extending the + * already huge number of characters. + * + * Unicode maintains two different sets, namely 'Standardized Variation + * Sequences' and registered 'Ideographic Variation Sequences' (IVS), + * collected in the 'Ideographic Variation Database' (IVD). + * + * https://unicode.org/Public/UCD/latest/ucd/StandardizedVariants.txt + * https://unicode.org/reports/tr37/ https://unicode.org/ivd/ + * + * To date (January 2017), the character with the most ideographic + * variations is U+9089, having 32 such IVS. + * + * Three Mongolian Variation Selectors have the values U+180B-U+180D; 256 + * generic Variation Selectors are encoded in the ranges U+FE00-U+FE0F + * and U+E0100-U+E01EF. IVS currently use Variation Selectors from the + * range U+E0100-U+E01EF only. + * + * A VS consists of the base character value followed by a single + * Variation Selector. For example, to get the first variation of + * U+9089, you have to write the character sequence `U+9089 U+E0100`. + * + * Adobe and MS decided to support both standardized and ideographic VS + * with a new cmap subtable (format~14). It is an odd subtable because + * it is not a mapping of input code points to glyphs, but contains lists + * of all variations supported by the font. + * + * A variation may be either 'default' or 'non-default' for a given font. + * A default variation is the one you will get for that code point if you + * look it up in the standard Unicode cmap. A non-default variation is a + * different glyph. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Face_GetCharVariantIndex + * + * @description: + * Return the glyph index of a given character code as modified by the + * variation selector. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character code point in Unicode. + * + * variantSelector :: + * The Unicode code point of the variation selector. + * + * @return: + * The glyph index. 0~means either 'undefined character code', or + * 'undefined selector code', or 'no variation selector cmap subtable', + * or 'current CharMap is not Unicode'. + * + * @note: + * If you use FreeType to manipulate the contents of font files directly, + * be aware that the glyph index returned by this function doesn't always + * correspond to the internal indices used within the file. This is done + * to ensure that value~0 always corresponds to the 'missing glyph'. + * + * This function is only meaningful if + * a) the font has a variation selector cmap sub table, and + * b) the current charmap has a Unicode encoding. + * + * @since: + * 2.3.6 + * + */ + FT_EXPORT( FT_UInt ) + FT_Face_GetCharVariantIndex( FT_Face face, + FT_ULong charcode, + FT_ULong variantSelector ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetCharVariantIsDefault + * + * @description: + * Check whether this variation of this Unicode character is the one to + * be found in the charmap. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character codepoint in Unicode. + * + * variantSelector :: + * The Unicode codepoint of the variation selector. + * + * @return: + * 1~if found in the standard (Unicode) cmap, 0~if found in the variation + * selector cmap, or -1 if it is not a variation. + * + * @note: + * This function is only meaningful if the font has a variation selector + * cmap subtable. + * + * @since: + * 2.3.6 + * + */ + FT_EXPORT( FT_Int ) + FT_Face_GetCharVariantIsDefault( FT_Face face, + FT_ULong charcode, + FT_ULong variantSelector ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetVariantSelectors + * + * @description: + * Return a zero-terminated list of Unicode variation selectors found in + * the font. + * + * @input: + * face :: + * A handle to the source face object. + * + * @return: + * A pointer to an array of selector code points, or `NULL` if there is + * no valid variation selector cmap subtable. + * + * @note: + * The last item in the array is~0; the array is owned by the @FT_Face + * object but can be overwritten or released on the next call to a + * FreeType function. + * + * @since: + * 2.3.6 + * + */ + FT_EXPORT( FT_UInt32* ) + FT_Face_GetVariantSelectors( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetVariantsOfChar + * + * @description: + * Return a zero-terminated list of Unicode variation selectors found for + * the specified character code. + * + * @input: + * face :: + * A handle to the source face object. + * + * charcode :: + * The character codepoint in Unicode. + * + * @return: + * A pointer to an array of variation selector code points that are + * active for the given character, or `NULL` if the corresponding list is + * empty. + * + * @note: + * The last item in the array is~0; the array is owned by the @FT_Face + * object but can be overwritten or released on the next call to a + * FreeType function. + * + * @since: + * 2.3.6 + * + */ + FT_EXPORT( FT_UInt32* ) + FT_Face_GetVariantsOfChar( FT_Face face, + FT_ULong charcode ); + + + /************************************************************************** + * + * @function: + * FT_Face_GetCharsOfVariant + * + * @description: + * Return a zero-terminated list of Unicode character codes found for the + * specified variation selector. + * + * @input: + * face :: + * A handle to the source face object. + * + * variantSelector :: + * The variation selector code point in Unicode. + * + * @return: + * A list of all the code points that are specified by this selector + * (both default and non-default codes are returned) or `NULL` if there + * is no valid cmap or the variation selector is invalid. + * + * @note: + * The last item in the array is~0; the array is owned by the @FT_Face + * object but can be overwritten or released on the next call to a + * FreeType function. + * + * @since: + * 2.3.6 + * + */ + FT_EXPORT( FT_UInt32* ) + FT_Face_GetCharsOfVariant( FT_Face face, + FT_ULong variantSelector ); + + + /************************************************************************** + * + * @section: + * computations + * + * @title: + * Computations + * + * @abstract: + * Crunching fixed numbers and vectors. + * + * @description: + * This section contains various functions used to perform computations + * on 16.16 fixed-float numbers or 2d vectors. + * + * **Attention**: Most arithmetic functions take `FT_Long` as arguments. + * For historical reasons, FreeType was designed under the assumption + * that `FT_Long` is a 32-bit integer; results can thus be undefined if + * the arguments don't fit into 32 bits. + * + * @order: + * FT_MulDiv + * FT_MulFix + * FT_DivFix + * FT_RoundFix + * FT_CeilFix + * FT_FloorFix + * FT_Vector_Transform + * FT_Matrix_Multiply + * FT_Matrix_Invert + * + */ + + + /************************************************************************** + * + * @function: + * FT_MulDiv + * + * @description: + * Compute `(a*b)/c` with maximum accuracy, using a 64-bit intermediate + * integer whenever necessary. + * + * This function isn't necessarily as fast as some processor-specific + * operations, but is at least completely portable. + * + * @input: + * a :: + * The first multiplier. + * + * b :: + * The second multiplier. + * + * c :: + * The divisor. + * + * @return: + * The result of `(a*b)/c`. This function never traps when trying to + * divide by zero; it simply returns 'MaxInt' or 'MinInt' depending on + * the signs of `a` and `b`. + */ + FT_EXPORT( FT_Long ) + FT_MulDiv( FT_Long a, + FT_Long b, + FT_Long c ); + + + /************************************************************************** + * + * @function: + * FT_MulFix + * + * @description: + * Compute `(a*b)/0x10000` with maximum accuracy. Its main use is to + * multiply a given value by a 16.16 fixed-point factor. + * + * @input: + * a :: + * The first multiplier. + * + * b :: + * The second multiplier. Use a 16.16 factor here whenever possible + * (see note below). + * + * @return: + * The result of `(a*b)/0x10000`. + * + * @note: + * This function has been optimized for the case where the absolute value + * of `a` is less than 2048, and `b` is a 16.16 scaling factor. As this + * happens mainly when scaling from notional units to fractional pixels + * in FreeType, it resulted in noticeable speed improvements between + * versions 2.x and 1.x. + * + * As a conclusion, always try to place a 16.16 factor as the _second_ + * argument of this function; this can make a great difference. + */ + FT_EXPORT( FT_Long ) + FT_MulFix( FT_Long a, + FT_Long b ); + + + /************************************************************************** + * + * @function: + * FT_DivFix + * + * @description: + * Compute `(a*0x10000)/b` with maximum accuracy. Its main use is to + * divide a given value by a 16.16 fixed-point factor. + * + * @input: + * a :: + * The numerator. + * + * b :: + * The denominator. Use a 16.16 factor here. + * + * @return: + * The result of `(a*0x10000)/b`. + */ + FT_EXPORT( FT_Long ) + FT_DivFix( FT_Long a, + FT_Long b ); + + + /************************************************************************** + * + * @function: + * FT_RoundFix + * + * @description: + * Round a 16.16 fixed number. + * + * @input: + * a :: + * The number to be rounded. + * + * @return: + * `a` rounded to the nearest 16.16 fixed integer, halfway cases away + * from zero. + * + * @note: + * The function uses wrap-around arithmetic. + */ + FT_EXPORT( FT_Fixed ) + FT_RoundFix( FT_Fixed a ); + + + /************************************************************************** + * + * @function: + * FT_CeilFix + * + * @description: + * Compute the smallest following integer of a 16.16 fixed number. + * + * @input: + * a :: + * The number for which the ceiling function is to be computed. + * + * @return: + * `a` rounded towards plus infinity. + * + * @note: + * The function uses wrap-around arithmetic. + */ + FT_EXPORT( FT_Fixed ) + FT_CeilFix( FT_Fixed a ); + + + /************************************************************************** + * + * @function: + * FT_FloorFix + * + * @description: + * Compute the largest previous integer of a 16.16 fixed number. + * + * @input: + * a :: + * The number for which the floor function is to be computed. + * + * @return: + * `a` rounded towards minus infinity. + */ + FT_EXPORT( FT_Fixed ) + FT_FloorFix( FT_Fixed a ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Transform + * + * @description: + * Transform a single vector through a 2x2 matrix. + * + * @inout: + * vector :: + * The target vector to transform. + * + * @input: + * matrix :: + * A pointer to the source 2x2 matrix. + * + * @note: + * The result is undefined if either `vector` or `matrix` is invalid. + */ + FT_EXPORT( void ) + FT_Vector_Transform( FT_Vector* vector, + const FT_Matrix* matrix ); + + + /************************************************************************** + * + * @section: + * version + * + * @title: + * FreeType Version + * + * @abstract: + * Functions and macros related to FreeType versions. + * + * @description: + * Note that those functions and macros are of limited use because even a + * new release of FreeType with only documentation changes increases the + * version number. + * + * @order: + * FT_Library_Version + * + * FREETYPE_MAJOR + * FREETYPE_MINOR + * FREETYPE_PATCH + * + * FT_Face_CheckTrueTypePatents + * FT_Face_SetUnpatentedHinting + * + */ + + + /************************************************************************** + * + * @enum: + * FREETYPE_XXX + * + * @description: + * These three macros identify the FreeType source code version. Use + * @FT_Library_Version to access them at runtime. + * + * @values: + * FREETYPE_MAJOR :: + * The major version number. + * FREETYPE_MINOR :: + * The minor version number. + * FREETYPE_PATCH :: + * The patch level. + * + * @note: + * The version number of FreeType if built as a dynamic link library with + * the 'libtool' package is _not_ controlled by these three macros. + * + */ +#define FREETYPE_MAJOR 2 +#define FREETYPE_MINOR 12 +#define FREETYPE_PATCH 1 + + + /************************************************************************** + * + * @function: + * FT_Library_Version + * + * @description: + * Return the version of the FreeType library being used. This is useful + * when dynamically linking to the library, since one cannot use the + * macros @FREETYPE_MAJOR, @FREETYPE_MINOR, and @FREETYPE_PATCH. + * + * @input: + * library :: + * A source library handle. + * + * @output: + * amajor :: + * The major version number. + * + * aminor :: + * The minor version number. + * + * apatch :: + * The patch version number. + * + * @note: + * The reason why this function takes a `library` argument is because + * certain programs implement library initialization in a custom way that + * doesn't use @FT_Init_FreeType. + * + * In such cases, the library version might not be available before the + * library object has been created. + */ + FT_EXPORT( void ) + FT_Library_Version( FT_Library library, + FT_Int *amajor, + FT_Int *aminor, + FT_Int *apatch ); + + + /************************************************************************** + * + * @function: + * FT_Face_CheckTrueTypePatents + * + * @description: + * Deprecated, does nothing. + * + * @input: + * face :: + * A face handle. + * + * @return: + * Always returns false. + * + * @note: + * Since May 2010, TrueType hinting is no longer patented. + * + * @since: + * 2.3.5 + * + */ + FT_EXPORT( FT_Bool ) + FT_Face_CheckTrueTypePatents( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Face_SetUnpatentedHinting + * + * @description: + * Deprecated, does nothing. + * + * @input: + * face :: + * A face handle. + * + * value :: + * New boolean setting. + * + * @return: + * Always returns false. + * + * @note: + * Since May 2010, TrueType hinting is no longer patented. + * + * @since: + * 2.3.5 + * + */ + FT_EXPORT( FT_Bool ) + FT_Face_SetUnpatentedHinting( FT_Face face, + FT_Bool value ); + + /* */ + + +FT_END_HEADER + +#endif /* FREETYPE_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftadvanc.h b/external/lumin/thirdparty/freetype/include/freetype/ftadvanc.h new file mode 100644 index 0000000..8ce4846 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftadvanc.h @@ -0,0 +1,188 @@ +/**************************************************************************** + * + * ftadvanc.h + * + * Quick computation of advance widths (specification only). + * + * Copyright (C) 2008-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTADVANC_H_ +#define FTADVANC_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * quick_advance + * + * @title: + * Quick retrieval of advance values + * + * @abstract: + * Retrieve horizontal and vertical advance values without processing + * glyph outlines, if possible. + * + * @description: + * This section contains functions to quickly extract advance values + * without handling glyph outlines, if possible. + * + * @order: + * FT_Get_Advance + * FT_Get_Advances + * + */ + + + /************************************************************************** + * + * @enum: + * FT_ADVANCE_FLAG_FAST_ONLY + * + * @description: + * A bit-flag to be OR-ed with the `flags` parameter of the + * @FT_Get_Advance and @FT_Get_Advances functions. + * + * If set, it indicates that you want these functions to fail if the + * corresponding hinting mode or font driver doesn't allow for very quick + * advance computation. + * + * Typically, glyphs that are either unscaled, unhinted, bitmapped, or + * light-hinted can have their advance width computed very quickly. + * + * Normal and bytecode hinted modes that require loading, scaling, and + * hinting of the glyph outline, are extremely slow by comparison. + */ +#define FT_ADVANCE_FLAG_FAST_ONLY 0x20000000L + + + /************************************************************************** + * + * @function: + * FT_Get_Advance + * + * @description: + * Retrieve the advance value of a given glyph outline in an @FT_Face. + * + * @input: + * face :: + * The source @FT_Face handle. + * + * gindex :: + * The glyph index. + * + * load_flags :: + * A set of bit flags similar to those used when calling + * @FT_Load_Glyph, used to determine what kind of advances you need. + * + * @output: + * padvance :: + * The advance value. If scaling is performed (based on the value of + * `load_flags`), the advance value is in 16.16 format. Otherwise, it + * is in font units. + * + * If @FT_LOAD_VERTICAL_LAYOUT is set, this is the vertical advance + * corresponding to a vertical layout. Otherwise, it is the horizontal + * advance in a horizontal layout. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * This function may fail if you use @FT_ADVANCE_FLAG_FAST_ONLY and if + * the corresponding font backend doesn't have a quick way to retrieve + * the advances. + * + * A scaled advance is returned in 16.16 format but isn't transformed by + * the affine transformation specified by @FT_Set_Transform. + */ + FT_EXPORT( FT_Error ) + FT_Get_Advance( FT_Face face, + FT_UInt gindex, + FT_Int32 load_flags, + FT_Fixed *padvance ); + + + /************************************************************************** + * + * @function: + * FT_Get_Advances + * + * @description: + * Retrieve the advance values of several glyph outlines in an @FT_Face. + * + * @input: + * face :: + * The source @FT_Face handle. + * + * start :: + * The first glyph index. + * + * count :: + * The number of advance values you want to retrieve. + * + * load_flags :: + * A set of bit flags similar to those used when calling + * @FT_Load_Glyph. + * + * @output: + * padvance :: + * The advance values. This array, to be provided by the caller, must + * contain at least `count` elements. + * + * If scaling is performed (based on the value of `load_flags`), the + * advance values are in 16.16 format. Otherwise, they are in font + * units. + * + * If @FT_LOAD_VERTICAL_LAYOUT is set, these are the vertical advances + * corresponding to a vertical layout. Otherwise, they are the + * horizontal advances in a horizontal layout. + * + * @return: + * FreeType error code. 0 means success. + * + * @note: + * This function may fail if you use @FT_ADVANCE_FLAG_FAST_ONLY and if + * the corresponding font backend doesn't have a quick way to retrieve + * the advances. + * + * Scaled advances are returned in 16.16 format but aren't transformed by + * the affine transformation specified by @FT_Set_Transform. + */ + FT_EXPORT( FT_Error ) + FT_Get_Advances( FT_Face face, + FT_UInt start, + FT_UInt count, + FT_Int32 load_flags, + FT_Fixed *padvances ); + + /* */ + + +FT_END_HEADER + +#endif /* FTADVANC_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftbbox.h b/external/lumin/thirdparty/freetype/include/freetype/ftbbox.h new file mode 100644 index 0000000..768478f --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftbbox.h @@ -0,0 +1,101 @@ +/**************************************************************************** + * + * ftbbox.h + * + * FreeType exact bbox computation (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This component has a _single_ role: to compute exact outline bounding + * boxes. + * + * It is separated from the rest of the engine for various technical + * reasons. It may well be integrated in 'ftoutln' later. + * + */ + + +#ifndef FTBBOX_H_ +#define FTBBOX_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * outline_processing + * + */ + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_BBox + * + * @description: + * Compute the exact bounding box of an outline. This is slower than + * computing the control box. However, it uses an advanced algorithm + * that returns _very_ quickly when the two boxes coincide. Otherwise, + * the outline Bezier arcs are traversed to extract their extrema. + * + * @input: + * outline :: + * A pointer to the source outline. + * + * @output: + * abbox :: + * The outline's exact bounding box. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If the font is tricky and the glyph has been loaded with + * @FT_LOAD_NO_SCALE, the resulting BBox is meaningless. To get + * reasonable values for the BBox it is necessary to load the glyph at a + * large ppem value (so that the hinting instructions can properly shift + * and scale the subglyphs), then extracting the BBox, which can be + * eventually converted back to font units. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Get_BBox( FT_Outline* outline, + FT_BBox *abbox ); + + /* */ + + +FT_END_HEADER + +#endif /* FTBBOX_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftbdf.h b/external/lumin/thirdparty/freetype/include/freetype/ftbdf.h new file mode 100644 index 0000000..04d6094 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftbdf.h @@ -0,0 +1,212 @@ +/**************************************************************************** + * + * ftbdf.h + * + * FreeType API for accessing BDF-specific strings (specification). + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTBDF_H_ +#define FTBDF_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * bdf_fonts + * + * @title: + * BDF and PCF Files + * + * @abstract: + * BDF and PCF specific API. + * + * @description: + * This section contains the declaration of functions specific to BDF and + * PCF fonts. + * + */ + + + /************************************************************************** + * + * @enum: + * BDF_PropertyType + * + * @description: + * A list of BDF property types. + * + * @values: + * BDF_PROPERTY_TYPE_NONE :: + * Value~0 is used to indicate a missing property. + * + * BDF_PROPERTY_TYPE_ATOM :: + * Property is a string atom. + * + * BDF_PROPERTY_TYPE_INTEGER :: + * Property is a 32-bit signed integer. + * + * BDF_PROPERTY_TYPE_CARDINAL :: + * Property is a 32-bit unsigned integer. + */ + typedef enum BDF_PropertyType_ + { + BDF_PROPERTY_TYPE_NONE = 0, + BDF_PROPERTY_TYPE_ATOM = 1, + BDF_PROPERTY_TYPE_INTEGER = 2, + BDF_PROPERTY_TYPE_CARDINAL = 3 + + } BDF_PropertyType; + + + /************************************************************************** + * + * @type: + * BDF_Property + * + * @description: + * A handle to a @BDF_PropertyRec structure to model a given BDF/PCF + * property. + */ + typedef struct BDF_PropertyRec_* BDF_Property; + + + /************************************************************************** + * + * @struct: + * BDF_PropertyRec + * + * @description: + * This structure models a given BDF/PCF property. + * + * @fields: + * type :: + * The property type. + * + * u.atom :: + * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. May be + * `NULL`, indicating an empty string. + * + * u.integer :: + * A signed integer, if type is @BDF_PROPERTY_TYPE_INTEGER. + * + * u.cardinal :: + * An unsigned integer, if type is @BDF_PROPERTY_TYPE_CARDINAL. + */ + typedef struct BDF_PropertyRec_ + { + BDF_PropertyType type; + union { + const char* atom; + FT_Int32 integer; + FT_UInt32 cardinal; + + } u; + + } BDF_PropertyRec; + + + /************************************************************************** + * + * @function: + * FT_Get_BDF_Charset_ID + * + * @description: + * Retrieve a BDF font character set identity, according to the BDF + * specification. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * acharset_encoding :: + * Charset encoding, as a C~string, owned by the face. + * + * acharset_registry :: + * Charset registry, as a C~string, owned by the face. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with BDF faces, returning an error otherwise. + */ + FT_EXPORT( FT_Error ) + FT_Get_BDF_Charset_ID( FT_Face face, + const char* *acharset_encoding, + const char* *acharset_registry ); + + + /************************************************************************** + * + * @function: + * FT_Get_BDF_Property + * + * @description: + * Retrieve a BDF property from a BDF or PCF font file. + * + * @input: + * face :: + * A handle to the input face. + * + * name :: + * The property name. + * + * @output: + * aproperty :: + * The property. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function works with BDF _and_ PCF fonts. It returns an error + * otherwise. It also returns an error if the property is not in the + * font. + * + * A 'property' is a either key-value pair within the STARTPROPERTIES + * ... ENDPROPERTIES block of a BDF font or a key-value pair from the + * `info->props` array within a `FontRec` structure of a PCF font. + * + * Integer properties are always stored as 'signed' within PCF fonts; + * consequently, @BDF_PROPERTY_TYPE_CARDINAL is a possible return value + * for BDF fonts only. + * + * In case of error, `aproperty->type` is always set to + * @BDF_PROPERTY_TYPE_NONE. + */ + FT_EXPORT( FT_Error ) + FT_Get_BDF_Property( FT_Face face, + const char* prop_name, + BDF_PropertyRec *aproperty ); + + /* */ + +FT_END_HEADER + +#endif /* FTBDF_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftbitmap.h b/external/lumin/thirdparty/freetype/include/freetype/ftbitmap.h new file mode 100644 index 0000000..c3462da --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftbitmap.h @@ -0,0 +1,329 @@ +/**************************************************************************** + * + * ftbitmap.h + * + * FreeType utility functions for bitmaps (specification). + * + * Copyright (C) 2004-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTBITMAP_H_ +#define FTBITMAP_H_ + + +#include +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * bitmap_handling + * + * @title: + * Bitmap Handling + * + * @abstract: + * Handling FT_Bitmap objects. + * + * @description: + * This section contains functions for handling @FT_Bitmap objects, + * automatically adjusting the target's bitmap buffer size as needed. + * + * Note that none of the functions changes the bitmap's 'flow' (as + * indicated by the sign of the `pitch` field in @FT_Bitmap). + * + * To set the flow, assign an appropriate positive or negative value to + * the `pitch` field of the target @FT_Bitmap object after calling + * @FT_Bitmap_Init but before calling any of the other functions + * described here. + */ + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Init + * + * @description: + * Initialize a pointer to an @FT_Bitmap structure. + * + * @inout: + * abitmap :: + * A pointer to the bitmap structure. + * + * @note: + * A deprecated name for the same function is `FT_Bitmap_New`. + */ + FT_EXPORT( void ) + FT_Bitmap_Init( FT_Bitmap *abitmap ); + + + /* deprecated */ + FT_EXPORT( void ) + FT_Bitmap_New( FT_Bitmap *abitmap ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Copy + * + * @description: + * Copy a bitmap into another one. + * + * @input: + * library :: + * A handle to a library object. + * + * source :: + * A handle to the source bitmap. + * + * @output: + * target :: + * A handle to the target bitmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * `source->buffer` and `target->buffer` must neither be equal nor + * overlap. + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Copy( FT_Library library, + const FT_Bitmap *source, + FT_Bitmap *target ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Embolden + * + * @description: + * Embolden a bitmap. The new bitmap will be about `xStrength` pixels + * wider and `yStrength` pixels higher. The left and bottom borders are + * kept unchanged. + * + * @input: + * library :: + * A handle to a library object. + * + * xStrength :: + * How strong the glyph is emboldened horizontally. Expressed in 26.6 + * pixel format. + * + * yStrength :: + * How strong the glyph is emboldened vertically. Expressed in 26.6 + * pixel format. + * + * @inout: + * bitmap :: + * A handle to the target bitmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The current implementation restricts `xStrength` to be less than or + * equal to~8 if bitmap is of pixel_mode @FT_PIXEL_MODE_MONO. + * + * If you want to embolden the bitmap owned by a @FT_GlyphSlotRec, you + * should call @FT_GlyphSlot_Own_Bitmap on the slot first. + * + * Bitmaps in @FT_PIXEL_MODE_GRAY2 and @FT_PIXEL_MODE_GRAY@ format are + * converted to @FT_PIXEL_MODE_GRAY format (i.e., 8bpp). + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Embolden( FT_Library library, + FT_Bitmap* bitmap, + FT_Pos xStrength, + FT_Pos yStrength ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Convert + * + * @description: + * Convert a bitmap object with depth 1bpp, 2bpp, 4bpp, 8bpp or 32bpp to + * a bitmap object with depth 8bpp, making the number of used bytes per + * line (a.k.a. the 'pitch') a multiple of `alignment`. + * + * @input: + * library :: + * A handle to a library object. + * + * source :: + * The source bitmap. + * + * alignment :: + * The pitch of the bitmap is a multiple of this argument. Common + * values are 1, 2, or 4. + * + * @output: + * target :: + * The target bitmap. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * It is possible to call @FT_Bitmap_Convert multiple times without + * calling @FT_Bitmap_Done (the memory is simply reallocated). + * + * Use @FT_Bitmap_Done to finally remove the bitmap object. + * + * The `library` argument is taken to have access to FreeType's memory + * handling functions. + * + * `source->buffer` and `target->buffer` must neither be equal nor + * overlap. + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Convert( FT_Library library, + const FT_Bitmap *source, + FT_Bitmap *target, + FT_Int alignment ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Blend + * + * @description: + * Blend a bitmap onto another bitmap, using a given color. + * + * @input: + * library :: + * A handle to a library object. + * + * source :: + * The source bitmap, which can have any @FT_Pixel_Mode format. + * + * source_offset :: + * The offset vector to the upper left corner of the source bitmap in + * 26.6 pixel format. It should represent an integer offset; the + * function will set the lowest six bits to zero to enforce that. + * + * color :: + * The color used to draw `source` onto `target`. + * + * @inout: + * target :: + * A handle to an `FT_Bitmap` object. It should be either initialized + * as empty with a call to @FT_Bitmap_Init, or it should be of type + * @FT_PIXEL_MODE_BGRA. + * + * atarget_offset :: + * The offset vector to the upper left corner of the target bitmap in + * 26.6 pixel format. It should represent an integer offset; the + * function will set the lowest six bits to zero to enforce that. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function doesn't perform clipping. + * + * The bitmap in `target` gets allocated or reallocated as needed; the + * vector `atarget_offset` is updated accordingly. + * + * In case of allocation or reallocation, the bitmap's pitch is set to + * `4 * width`. Both `source` and `target` must have the same bitmap + * flow (as indicated by the sign of the `pitch` field). + * + * `source->buffer` and `target->buffer` must neither be equal nor + * overlap. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Blend( FT_Library library, + const FT_Bitmap* source, + const FT_Vector source_offset, + FT_Bitmap* target, + FT_Vector *atarget_offset, + FT_Color color ); + + + /************************************************************************** + * + * @function: + * FT_GlyphSlot_Own_Bitmap + * + * @description: + * Make sure that a glyph slot owns `slot->bitmap`. + * + * @input: + * slot :: + * The glyph slot. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function is to be used in combination with @FT_Bitmap_Embolden. + */ + FT_EXPORT( FT_Error ) + FT_GlyphSlot_Own_Bitmap( FT_GlyphSlot slot ); + + + /************************************************************************** + * + * @function: + * FT_Bitmap_Done + * + * @description: + * Destroy a bitmap object initialized with @FT_Bitmap_Init. + * + * @input: + * library :: + * A handle to a library object. + * + * bitmap :: + * The bitmap object to be freed. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The `library` argument is taken to have access to FreeType's memory + * handling functions. + */ + FT_EXPORT( FT_Error ) + FT_Bitmap_Done( FT_Library library, + FT_Bitmap *bitmap ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTBITMAP_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftbzip2.h b/external/lumin/thirdparty/freetype/include/freetype/ftbzip2.h new file mode 100644 index 0000000..c853058 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftbzip2.h @@ -0,0 +1,102 @@ +/**************************************************************************** + * + * ftbzip2.h + * + * Bzip2-compressed stream support. + * + * Copyright (C) 2010-2022 by + * Joel Klinghed. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTBZIP2_H_ +#define FTBZIP2_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * bzip2 + * + * @title: + * BZIP2 Streams + * + * @abstract: + * Using bzip2-compressed font files. + * + * @description: + * In certain builds of the library, bzip2 compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a bzip2 compressed + * stream from it and re-open the face with it. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream, + * which significantly undermines the performance. + * + * This section contains the declaration of Bzip2-specific functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Stream_OpenBzip2 + * + * @description: + * Open a new stream to parse bzip2-compressed font files. This is + * mainly used to support the compressed `*.pcf.bz2` fonts that come with + * XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close` on the new stream will + * **not** call `FT_Stream_Close` on the source stream. None of the + * stream objects will be released to the heap. + * + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with bzip2 support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenBzip2( FT_Stream stream, + FT_Stream source ); + + /* */ + + +FT_END_HEADER + +#endif /* FTBZIP2_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftcache.h b/external/lumin/thirdparty/freetype/include/freetype/ftcache.h new file mode 100644 index 0000000..ecbbd7b --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftcache.h @@ -0,0 +1,1087 @@ +/**************************************************************************** + * + * ftcache.h + * + * FreeType Cache subsystem (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTCACHE_H_ +#define FTCACHE_H_ + + +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * cache_subsystem + * + * @title: + * Cache Sub-System + * + * @abstract: + * How to cache face, size, and glyph data with FreeType~2. + * + * @description: + * This section describes the FreeType~2 cache sub-system, which is used + * to limit the number of concurrently opened @FT_Face and @FT_Size + * objects, as well as caching information like character maps and glyph + * images while limiting their maximum memory usage. + * + * Note that all types and functions begin with the `FTC_` prefix. + * + * The cache is highly portable and thus doesn't know anything about the + * fonts installed on your system, or how to access them. This implies + * the following scheme: + * + * First, available or installed font faces are uniquely identified by + * @FTC_FaceID values, provided to the cache by the client. Note that + * the cache only stores and compares these values, and doesn't try to + * interpret them in any way. + * + * Second, the cache calls, only when needed, a client-provided function + * to convert an @FTC_FaceID into a new @FT_Face object. The latter is + * then completely managed by the cache, including its termination + * through @FT_Done_Face. To monitor termination of face objects, the + * finalizer callback in the `generic` field of the @FT_Face object can + * be used, which might also be used to store the @FTC_FaceID of the + * face. + * + * Clients are free to map face IDs to anything else. The most simple + * usage is to associate them to a (pathname,face_index) pair that is + * used to call @FT_New_Face. However, more complex schemes are also + * possible. + * + * Note that for the cache to work correctly, the face ID values must be + * **persistent**, which means that the contents they point to should not + * change at runtime, or that their value should not become invalid. + * + * If this is unavoidable (e.g., when a font is uninstalled at runtime), + * you should call @FTC_Manager_RemoveFaceID as soon as possible, to let + * the cache get rid of any references to the old @FTC_FaceID it may keep + * internally. Failure to do so will lead to incorrect behaviour or even + * crashes. + * + * To use the cache, start with calling @FTC_Manager_New to create a new + * @FTC_Manager object, which models a single cache instance. You can + * then look up @FT_Face and @FT_Size objects with + * @FTC_Manager_LookupFace and @FTC_Manager_LookupSize, respectively. + * + * If you want to use the charmap caching, call @FTC_CMapCache_New, then + * later use @FTC_CMapCache_Lookup to perform the equivalent of + * @FT_Get_Char_Index, only much faster. + * + * If you want to use the @FT_Glyph caching, call @FTC_ImageCache_New, + * then later use @FTC_ImageCache_Lookup to retrieve the corresponding + * @FT_Glyph objects from the cache. + * + * If you need lots of small bitmaps, it is much more memory efficient to + * call @FTC_SBitCache_New followed by @FTC_SBitCache_Lookup. This + * returns @FTC_SBitRec structures, which are used to store small bitmaps + * directly. (A small bitmap is one whose metrics and dimensions all fit + * into 8-bit integers). + * + * We hope to also provide a kerning cache in the near future. + * + * + * @order: + * FTC_Manager + * FTC_FaceID + * FTC_Face_Requester + * + * FTC_Manager_New + * FTC_Manager_Reset + * FTC_Manager_Done + * FTC_Manager_LookupFace + * FTC_Manager_LookupSize + * FTC_Manager_RemoveFaceID + * + * FTC_Node + * FTC_Node_Unref + * + * FTC_ImageCache + * FTC_ImageCache_New + * FTC_ImageCache_Lookup + * + * FTC_SBit + * FTC_SBitCache + * FTC_SBitCache_New + * FTC_SBitCache_Lookup + * + * FTC_CMapCache + * FTC_CMapCache_New + * FTC_CMapCache_Lookup + * + *************************************************************************/ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** BASIC TYPE DEFINITIONS *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @type: + * FTC_FaceID + * + * @description: + * An opaque pointer type that is used to identity face objects. The + * contents of such objects is application-dependent. + * + * These pointers are typically used to point to a user-defined structure + * containing a font file path, and face index. + * + * @note: + * Never use `NULL` as a valid @FTC_FaceID. + * + * Face IDs are passed by the client to the cache manager that calls, + * when needed, the @FTC_Face_Requester to translate them into new + * @FT_Face objects. + * + * If the content of a given face ID changes at runtime, or if the value + * becomes invalid (e.g., when uninstalling a font), you should + * immediately call @FTC_Manager_RemoveFaceID before any other cache + * function. + * + * Failure to do so will result in incorrect behaviour or even memory + * leaks and crashes. + */ + typedef FT_Pointer FTC_FaceID; + + + /************************************************************************** + * + * @functype: + * FTC_Face_Requester + * + * @description: + * A callback function provided by client applications. It is used by + * the cache manager to translate a given @FTC_FaceID into a new valid + * @FT_Face object, on demand. + * + * @input: + * face_id :: + * The face ID to resolve. + * + * library :: + * A handle to a FreeType library object. + * + * req_data :: + * Application-provided request data (see note below). + * + * @output: + * aface :: + * A new @FT_Face handle. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The third parameter `req_data` is the same as the one passed by the + * client when @FTC_Manager_New is called. + * + * The face requester should not perform funny things on the returned + * face object, like creating a new @FT_Size for it, or setting a + * transformation through @FT_Set_Transform! + */ + typedef FT_Error + (*FTC_Face_Requester)( FTC_FaceID face_id, + FT_Library library, + FT_Pointer req_data, + FT_Face* aface ); + + /* */ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** CACHE MANAGER OBJECT *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @type: + * FTC_Manager + * + * @description: + * This object corresponds to one instance of the cache-subsystem. It is + * used to cache one or more @FT_Face objects, along with corresponding + * @FT_Size objects. + * + * The manager intentionally limits the total number of opened @FT_Face + * and @FT_Size objects to control memory usage. See the `max_faces` and + * `max_sizes` parameters of @FTC_Manager_New. + * + * The manager is also used to cache 'nodes' of various types while + * limiting their total memory usage. + * + * All limitations are enforced by keeping lists of managed objects in + * most-recently-used order, and flushing old nodes to make room for new + * ones. + */ + typedef struct FTC_ManagerRec_* FTC_Manager; + + + /************************************************************************** + * + * @type: + * FTC_Node + * + * @description: + * An opaque handle to a cache node object. Each cache node is + * reference-counted. A node with a count of~0 might be flushed out of a + * full cache whenever a lookup request is performed. + * + * If you look up nodes, you have the ability to 'acquire' them, i.e., to + * increment their reference count. This will prevent the node from + * being flushed out of the cache until you explicitly 'release' it (see + * @FTC_Node_Unref). + * + * See also @FTC_SBitCache_Lookup and @FTC_ImageCache_Lookup. + */ + typedef struct FTC_NodeRec_* FTC_Node; + + + /************************************************************************** + * + * @function: + * FTC_Manager_New + * + * @description: + * Create a new cache manager. + * + * @input: + * library :: + * The parent FreeType library handle to use. + * + * max_faces :: + * Maximum number of opened @FT_Face objects managed by this cache + * instance. Use~0 for defaults. + * + * max_sizes :: + * Maximum number of opened @FT_Size objects managed by this cache + * instance. Use~0 for defaults. + * + * max_bytes :: + * Maximum number of bytes to use for cached data nodes. Use~0 for + * defaults. Note that this value does not account for managed + * @FT_Face and @FT_Size objects. + * + * requester :: + * An application-provided callback used to translate face IDs into + * real @FT_Face objects. + * + * req_data :: + * A generic pointer that is passed to the requester each time it is + * called (see @FTC_Face_Requester). + * + * @output: + * amanager :: + * A handle to a new manager object. 0~in case of failure. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FTC_Manager_New( FT_Library library, + FT_UInt max_faces, + FT_UInt max_sizes, + FT_ULong max_bytes, + FTC_Face_Requester requester, + FT_Pointer req_data, + FTC_Manager *amanager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_Reset + * + * @description: + * Empty a given cache manager. This simply gets rid of all the + * currently cached @FT_Face and @FT_Size objects within the manager. + * + * @inout: + * manager :: + * A handle to the manager. + */ + FT_EXPORT( void ) + FTC_Manager_Reset( FTC_Manager manager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_Done + * + * @description: + * Destroy a given manager after emptying it. + * + * @input: + * manager :: + * A handle to the target cache manager object. + */ + FT_EXPORT( void ) + FTC_Manager_Done( FTC_Manager manager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_LookupFace + * + * @description: + * Retrieve the @FT_Face object that corresponds to a given face ID + * through a cache manager. + * + * @input: + * manager :: + * A handle to the cache manager. + * + * face_id :: + * The ID of the face object. + * + * @output: + * aface :: + * A handle to the face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned @FT_Face object is always owned by the manager. You + * should never try to discard it yourself. + * + * The @FT_Face object doesn't necessarily have a current size object + * (i.e., face->size can be~0). If you need a specific 'font size', use + * @FTC_Manager_LookupSize instead. + * + * Never change the face's transformation matrix (i.e., never call the + * @FT_Set_Transform function) on a returned face! If you need to + * transform glyphs, do it yourself after glyph loading. + * + * When you perform a lookup, out-of-memory errors are detected _within_ + * the lookup and force incremental flushes of the cache until enough + * memory is released for the lookup to succeed. + * + * If a lookup fails with `FT_Err_Out_Of_Memory` the cache has already + * been completely flushed, and still no memory was available for the + * operation. + */ + FT_EXPORT( FT_Error ) + FTC_Manager_LookupFace( FTC_Manager manager, + FTC_FaceID face_id, + FT_Face *aface ); + + + /************************************************************************** + * + * @struct: + * FTC_ScalerRec + * + * @description: + * A structure used to describe a given character size in either pixels + * or points to the cache manager. See @FTC_Manager_LookupSize. + * + * @fields: + * face_id :: + * The source face ID. + * + * width :: + * The character width. + * + * height :: + * The character height. + * + * pixel :: + * A Boolean. If 1, the `width` and `height` fields are interpreted as + * integer pixel character sizes. Otherwise, they are expressed as + * 1/64th of points. + * + * x_res :: + * Only used when `pixel` is value~0 to indicate the horizontal + * resolution in dpi. + * + * y_res :: + * Only used when `pixel` is value~0 to indicate the vertical + * resolution in dpi. + * + * @note: + * This type is mainly used to retrieve @FT_Size objects through the + * cache manager. + */ + typedef struct FTC_ScalerRec_ + { + FTC_FaceID face_id; + FT_UInt width; + FT_UInt height; + FT_Int pixel; + FT_UInt x_res; + FT_UInt y_res; + + } FTC_ScalerRec; + + + /************************************************************************** + * + * @struct: + * FTC_Scaler + * + * @description: + * A handle to an @FTC_ScalerRec structure. + */ + typedef struct FTC_ScalerRec_* FTC_Scaler; + + + /************************************************************************** + * + * @function: + * FTC_Manager_LookupSize + * + * @description: + * Retrieve the @FT_Size object that corresponds to a given + * @FTC_ScalerRec pointer through a cache manager. + * + * @input: + * manager :: + * A handle to the cache manager. + * + * scaler :: + * A scaler handle. + * + * @output: + * asize :: + * A handle to the size object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned @FT_Size object is always owned by the manager. You + * should never try to discard it by yourself. + * + * You can access the parent @FT_Face object simply as `size->face` if + * you need it. Note that this object is also owned by the manager. + * + * @note: + * When you perform a lookup, out-of-memory errors are detected _within_ + * the lookup and force incremental flushes of the cache until enough + * memory is released for the lookup to succeed. + * + * If a lookup fails with `FT_Err_Out_Of_Memory` the cache has already + * been completely flushed, and still no memory is available for the + * operation. + */ + FT_EXPORT( FT_Error ) + FTC_Manager_LookupSize( FTC_Manager manager, + FTC_Scaler scaler, + FT_Size *asize ); + + + /************************************************************************** + * + * @function: + * FTC_Node_Unref + * + * @description: + * Decrement a cache node's internal reference count. When the count + * reaches 0, it is not destroyed but becomes eligible for subsequent + * cache flushes. + * + * @input: + * node :: + * The cache node handle. + * + * manager :: + * The cache manager handle. + */ + FT_EXPORT( void ) + FTC_Node_Unref( FTC_Node node, + FTC_Manager manager ); + + + /************************************************************************** + * + * @function: + * FTC_Manager_RemoveFaceID + * + * @description: + * A special function used to indicate to the cache manager that a given + * @FTC_FaceID is no longer valid, either because its content changed, or + * because it was deallocated or uninstalled. + * + * @input: + * manager :: + * The cache manager handle. + * + * face_id :: + * The @FTC_FaceID to be removed. + * + * @note: + * This function flushes all nodes from the cache corresponding to this + * `face_id`, with the exception of nodes with a non-null reference + * count. + * + * Such nodes are however modified internally so as to never appear in + * later lookups with the same `face_id` value, and to be immediately + * destroyed when released by all their users. + * + */ + FT_EXPORT( void ) + FTC_Manager_RemoveFaceID( FTC_Manager manager, + FTC_FaceID face_id ); + + + /************************************************************************** + * + * @type: + * FTC_CMapCache + * + * @description: + * An opaque handle used to model a charmap cache. This cache is to hold + * character codes -> glyph indices mappings. + * + */ + typedef struct FTC_CMapCacheRec_* FTC_CMapCache; + + + /************************************************************************** + * + * @function: + * FTC_CMapCache_New + * + * @description: + * Create a new charmap cache. + * + * @input: + * manager :: + * A handle to the cache manager. + * + * @output: + * acache :: + * A new cache handle. `NULL` in case of error. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Like all other caches, this one will be destroyed with the cache + * manager. + * + */ + FT_EXPORT( FT_Error ) + FTC_CMapCache_New( FTC_Manager manager, + FTC_CMapCache *acache ); + + + /************************************************************************** + * + * @function: + * FTC_CMapCache_Lookup + * + * @description: + * Translate a character code into a glyph index, using the charmap + * cache. + * + * @input: + * cache :: + * A charmap cache handle. + * + * face_id :: + * The source face ID. + * + * cmap_index :: + * The index of the charmap in the source face. Any negative value + * means to use the cache @FT_Face's default charmap. + * + * char_code :: + * The character code (in the corresponding charmap). + * + * @return: + * Glyph index. 0~means 'no glyph'. + * + */ + FT_EXPORT( FT_UInt ) + FTC_CMapCache_Lookup( FTC_CMapCache cache, + FTC_FaceID face_id, + FT_Int cmap_index, + FT_UInt32 char_code ); + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** IMAGE CACHE OBJECT *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @struct: + * FTC_ImageTypeRec + * + * @description: + * A structure used to model the type of images in a glyph cache. + * + * @fields: + * face_id :: + * The face ID. + * + * width :: + * The width in pixels. + * + * height :: + * The height in pixels. + * + * flags :: + * The load flags, as in @FT_Load_Glyph. + * + */ + typedef struct FTC_ImageTypeRec_ + { + FTC_FaceID face_id; + FT_UInt width; + FT_UInt height; + FT_Int32 flags; + + } FTC_ImageTypeRec; + + + /************************************************************************** + * + * @type: + * FTC_ImageType + * + * @description: + * A handle to an @FTC_ImageTypeRec structure. + * + */ + typedef struct FTC_ImageTypeRec_* FTC_ImageType; + + + /* */ + + +#define FTC_IMAGE_TYPE_COMPARE( d1, d2 ) \ + ( (d1)->face_id == (d2)->face_id && \ + (d1)->width == (d2)->width && \ + (d1)->flags == (d2)->flags ) + + + /************************************************************************** + * + * @type: + * FTC_ImageCache + * + * @description: + * A handle to a glyph image cache object. They are designed to hold + * many distinct glyph images while not exceeding a certain memory + * threshold. + */ + typedef struct FTC_ImageCacheRec_* FTC_ImageCache; + + + /************************************************************************** + * + * @function: + * FTC_ImageCache_New + * + * @description: + * Create a new glyph image cache. + * + * @input: + * manager :: + * The parent manager for the image cache. + * + * @output: + * acache :: + * A handle to the new glyph image cache object. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_New( FTC_Manager manager, + FTC_ImageCache *acache ); + + + /************************************************************************** + * + * @function: + * FTC_ImageCache_Lookup + * + * @description: + * Retrieve a given glyph image from a glyph image cache. + * + * @input: + * cache :: + * A handle to the source glyph image cache. + * + * type :: + * A pointer to a glyph image type descriptor. + * + * gindex :: + * The glyph index to retrieve. + * + * @output: + * aglyph :: + * The corresponding @FT_Glyph object. 0~in case of failure. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned glyph is owned and managed by the glyph image cache. + * Never try to transform or discard it manually! You can however create + * a copy with @FT_Glyph_Copy and modify the new one. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the glyph image, after increasing its reference count. + * This ensures that the node (as well as the @FT_Glyph) will always be + * kept in the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the @FT_Glyph could be flushed out of the cache on the next call + * to one of the caching sub-system APIs. Don't assume that it is + * persistent! + */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_Lookup( FTC_ImageCache cache, + FTC_ImageType type, + FT_UInt gindex, + FT_Glyph *aglyph, + FTC_Node *anode ); + + + /************************************************************************** + * + * @function: + * FTC_ImageCache_LookupScaler + * + * @description: + * A variant of @FTC_ImageCache_Lookup that uses an @FTC_ScalerRec to + * specify the face ID and its size. + * + * @input: + * cache :: + * A handle to the source glyph image cache. + * + * scaler :: + * A pointer to a scaler descriptor. + * + * load_flags :: + * The corresponding load flags. + * + * gindex :: + * The glyph index to retrieve. + * + * @output: + * aglyph :: + * The corresponding @FT_Glyph object. 0~in case of failure. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The returned glyph is owned and managed by the glyph image cache. + * Never try to transform or discard it manually! You can however create + * a copy with @FT_Glyph_Copy and modify the new one. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the glyph image, after increasing its reference count. + * This ensures that the node (as well as the @FT_Glyph) will always be + * kept in the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the @FT_Glyph could be flushed out of the cache on the next call + * to one of the caching sub-system APIs. Don't assume that it is + * persistent! + * + * Calls to @FT_Set_Char_Size and friends have no effect on cached + * glyphs; you should always use the FreeType cache API instead. + */ + FT_EXPORT( FT_Error ) + FTC_ImageCache_LookupScaler( FTC_ImageCache cache, + FTC_Scaler scaler, + FT_ULong load_flags, + FT_UInt gindex, + FT_Glyph *aglyph, + FTC_Node *anode ); + + + /************************************************************************** + * + * @type: + * FTC_SBit + * + * @description: + * A handle to a small bitmap descriptor. See the @FTC_SBitRec structure + * for details. + */ + typedef struct FTC_SBitRec_* FTC_SBit; + + + /************************************************************************** + * + * @struct: + * FTC_SBitRec + * + * @description: + * A very compact structure used to describe a small glyph bitmap. + * + * @fields: + * width :: + * The bitmap width in pixels. + * + * height :: + * The bitmap height in pixels. + * + * left :: + * The horizontal distance from the pen position to the left bitmap + * border (a.k.a. 'left side bearing', or 'lsb'). + * + * top :: + * The vertical distance from the pen position (on the baseline) to the + * upper bitmap border (a.k.a. 'top side bearing'). The distance is + * positive for upwards y~coordinates. + * + * format :: + * The format of the glyph bitmap (monochrome or gray). + * + * max_grays :: + * Maximum gray level value (in the range 1 to~255). + * + * pitch :: + * The number of bytes per bitmap line. May be positive or negative. + * + * xadvance :: + * The horizontal advance width in pixels. + * + * yadvance :: + * The vertical advance height in pixels. + * + * buffer :: + * A pointer to the bitmap pixels. + */ + typedef struct FTC_SBitRec_ + { + FT_Byte width; + FT_Byte height; + FT_Char left; + FT_Char top; + + FT_Byte format; + FT_Byte max_grays; + FT_Short pitch; + FT_Char xadvance; + FT_Char yadvance; + + FT_Byte* buffer; + + } FTC_SBitRec; + + + /************************************************************************** + * + * @type: + * FTC_SBitCache + * + * @description: + * A handle to a small bitmap cache. These are special cache objects + * used to store small glyph bitmaps (and anti-aliased pixmaps) in a much + * more efficient way than the traditional glyph image cache implemented + * by @FTC_ImageCache. + */ + typedef struct FTC_SBitCacheRec_* FTC_SBitCache; + + + /************************************************************************** + * + * @function: + * FTC_SBitCache_New + * + * @description: + * Create a new cache to store small glyph bitmaps. + * + * @input: + * manager :: + * A handle to the source cache manager. + * + * @output: + * acache :: + * A handle to the new sbit cache. `NULL` in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_New( FTC_Manager manager, + FTC_SBitCache *acache ); + + + /************************************************************************** + * + * @function: + * FTC_SBitCache_Lookup + * + * @description: + * Look up a given small glyph bitmap in a given sbit cache and 'lock' it + * to prevent its flushing from the cache until needed. + * + * @input: + * cache :: + * A handle to the source sbit cache. + * + * type :: + * A pointer to the glyph image type descriptor. + * + * gindex :: + * The glyph index. + * + * @output: + * sbit :: + * A handle to a small bitmap descriptor. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The small bitmap descriptor and its bit buffer are owned by the cache + * and should never be freed by the application. They might as well + * disappear from memory on the next cache lookup, so don't treat them as + * persistent data. + * + * The descriptor's `buffer` field is set to~0 to indicate a missing + * glyph bitmap. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the bitmap, after increasing its reference count. This + * ensures that the node (as well as the image) will always be kept in + * the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the bitmap could be flushed out of the cache on the next call to + * one of the caching sub-system APIs. Don't assume that it is + * persistent! + */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_Lookup( FTC_SBitCache cache, + FTC_ImageType type, + FT_UInt gindex, + FTC_SBit *sbit, + FTC_Node *anode ); + + + /************************************************************************** + * + * @function: + * FTC_SBitCache_LookupScaler + * + * @description: + * A variant of @FTC_SBitCache_Lookup that uses an @FTC_ScalerRec to + * specify the face ID and its size. + * + * @input: + * cache :: + * A handle to the source sbit cache. + * + * scaler :: + * A pointer to the scaler descriptor. + * + * load_flags :: + * The corresponding load flags. + * + * gindex :: + * The glyph index. + * + * @output: + * sbit :: + * A handle to a small bitmap descriptor. + * + * anode :: + * Used to return the address of the corresponding cache node after + * incrementing its reference count (see note below). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The small bitmap descriptor and its bit buffer are owned by the cache + * and should never be freed by the application. They might as well + * disappear from memory on the next cache lookup, so don't treat them as + * persistent data. + * + * The descriptor's `buffer` field is set to~0 to indicate a missing + * glyph bitmap. + * + * If `anode` is _not_ `NULL`, it receives the address of the cache node + * containing the bitmap, after increasing its reference count. This + * ensures that the node (as well as the image) will always be kept in + * the cache until you call @FTC_Node_Unref to 'release' it. + * + * If `anode` is `NULL`, the cache node is left unchanged, which means + * that the bitmap could be flushed out of the cache on the next call to + * one of the caching sub-system APIs. Don't assume that it is + * persistent! + */ + FT_EXPORT( FT_Error ) + FTC_SBitCache_LookupScaler( FTC_SBitCache cache, + FTC_Scaler scaler, + FT_ULong load_flags, + FT_UInt gindex, + FTC_SBit *sbit, + FTC_Node *anode ); + + /* */ + + +FT_END_HEADER + +#endif /* FTCACHE_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftchapters.h b/external/lumin/thirdparty/freetype/include/freetype/ftchapters.h new file mode 100644 index 0000000..6a9733a --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftchapters.h @@ -0,0 +1,149 @@ +/**************************************************************************** + * + * This file defines the structure of the FreeType reference. + * It is used by the python script that generates the HTML files. + * + */ + + + /************************************************************************** + * + * @chapter: + * general_remarks + * + * @title: + * General Remarks + * + * @sections: + * preamble + * header_inclusion + * user_allocation + * + */ + + + /************************************************************************** + * + * @chapter: + * core_api + * + * @title: + * Core API + * + * @sections: + * version + * basic_types + * base_interface + * glyph_variants + * color_management + * layer_management + * glyph_management + * mac_specific + * sizes_management + * header_file_macros + * + */ + + + /************************************************************************** + * + * @chapter: + * format_specific + * + * @title: + * Format-Specific API + * + * @sections: + * multiple_masters + * truetype_tables + * type1_tables + * sfnt_names + * bdf_fonts + * cid_fonts + * pfr_fonts + * winfnt_fonts + * svg_fonts + * font_formats + * gasp_table + * + */ + + + /************************************************************************** + * + * @chapter: + * module_specific + * + * @title: + * Controlling FreeType Modules + * + * @sections: + * auto_hinter + * cff_driver + * t1_cid_driver + * tt_driver + * pcf_driver + * ot_svg_driver + * properties + * parameter_tags + * lcd_rendering + * + */ + + + /************************************************************************** + * + * @chapter: + * cache_subsystem + * + * @title: + * Cache Sub-System + * + * @sections: + * cache_subsystem + * + */ + + + /************************************************************************** + * + * @chapter: + * support_api + * + * @title: + * Support API + * + * @sections: + * computations + * list_processing + * outline_processing + * quick_advance + * bitmap_handling + * raster + * glyph_stroker + * system_interface + * module_management + * gzip + * lzw + * bzip2 + * debugging_apis + * + */ + + + /************************************************************************** + * + * @chapter: + * error_codes + * + * @title: + * Error Codes + * + * @sections: + * error_enumerations + * error_code_values + * + */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftcid.h b/external/lumin/thirdparty/freetype/include/freetype/ftcid.h new file mode 100644 index 0000000..d801083 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftcid.h @@ -0,0 +1,167 @@ +/**************************************************************************** + * + * ftcid.h + * + * FreeType API for accessing CID font information (specification). + * + * Copyright (C) 2007-2022 by + * Dereg Clegg and Michael Toftdal. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTCID_H_ +#define FTCID_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * cid_fonts + * + * @title: + * CID Fonts + * + * @abstract: + * CID-keyed font-specific API. + * + * @description: + * This section contains the declaration of CID-keyed font-specific + * functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Get_CID_Registry_Ordering_Supplement + * + * @description: + * Retrieve the Registry/Ordering/Supplement triple (also known as the + * "R/O/S") from a CID-keyed font. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * registry :: + * The registry, as a C~string, owned by the face. + * + * ordering :: + * The ordering, as a C~string, owned by the face. + * + * supplement :: + * The supplement. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces, returning an error + * otherwise. + * + * @since: + * 2.3.6 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_Registry_Ordering_Supplement( FT_Face face, + const char* *registry, + const char* *ordering, + FT_Int *supplement ); + + + /************************************************************************** + * + * @function: + * FT_Get_CID_Is_Internally_CID_Keyed + * + * @description: + * Retrieve the type of the input face, CID keyed or not. In contrast + * to the @FT_IS_CID_KEYED macro this function returns successfully also + * for CID-keyed fonts in an SFNT wrapper. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * is_cid :: + * The type of the face as an @FT_Bool. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces and OpenType fonts, returning + * an error otherwise. + * + * @since: + * 2.3.9 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_Is_Internally_CID_Keyed( FT_Face face, + FT_Bool *is_cid ); + + + /************************************************************************** + * + * @function: + * FT_Get_CID_From_Glyph_Index + * + * @description: + * Retrieve the CID of the input glyph index. + * + * @input: + * face :: + * A handle to the input face. + * + * glyph_index :: + * The input glyph index. + * + * @output: + * cid :: + * The CID as an @FT_UInt. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with CID faces and OpenType fonts, returning + * an error otherwise. + * + * @since: + * 2.3.9 + */ + FT_EXPORT( FT_Error ) + FT_Get_CID_From_Glyph_Index( FT_Face face, + FT_UInt glyph_index, + FT_UInt *cid ); + + /* */ + + +FT_END_HEADER + +#endif /* FTCID_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftcolor.h b/external/lumin/thirdparty/freetype/include/freetype/ftcolor.h new file mode 100644 index 0000000..3edaee4 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftcolor.h @@ -0,0 +1,1718 @@ +/**************************************************************************** + * + * ftcolor.h + * + * FreeType's glyph color management (specification). + * + * Copyright (C) 2018-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTCOLOR_H_ +#define FTCOLOR_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * color_management + * + * @title: + * Glyph Color Management + * + * @abstract: + * Retrieving and manipulating OpenType's 'CPAL' table data. + * + * @description: + * The functions described here allow access and manipulation of color + * palette entries in OpenType's 'CPAL' tables. + */ + + + /************************************************************************** + * + * @struct: + * FT_Color + * + * @description: + * This structure models a BGRA color value of a 'CPAL' palette entry. + * + * The used color space is sRGB; the colors are not pre-multiplied, and + * alpha values must be explicitly set. + * + * @fields: + * blue :: + * Blue value. + * + * green :: + * Green value. + * + * red :: + * Red value. + * + * alpha :: + * Alpha value, giving the red, green, and blue color's opacity. + * + * @since: + * 2.10 + */ + typedef struct FT_Color_ + { + FT_Byte blue; + FT_Byte green; + FT_Byte red; + FT_Byte alpha; + + } FT_Color; + + + /************************************************************************** + * + * @enum: + * FT_PALETTE_XXX + * + * @description: + * A list of bit field constants used in the `palette_flags` array of the + * @FT_Palette_Data structure to indicate for which background a palette + * with a given index is usable. + * + * @values: + * FT_PALETTE_FOR_LIGHT_BACKGROUND :: + * The palette is appropriate to use when displaying the font on a + * light background such as white. + * + * FT_PALETTE_FOR_DARK_BACKGROUND :: + * The palette is appropriate to use when displaying the font on a dark + * background such as black. + * + * @since: + * 2.10 + */ +#define FT_PALETTE_FOR_LIGHT_BACKGROUND 0x01 +#define FT_PALETTE_FOR_DARK_BACKGROUND 0x02 + + + /************************************************************************** + * + * @struct: + * FT_Palette_Data + * + * @description: + * This structure holds the data of the 'CPAL' table. + * + * @fields: + * num_palettes :: + * The number of palettes. + * + * palette_name_ids :: + * An optional read-only array of palette name IDs with `num_palettes` + * elements, corresponding to entries like 'dark' or 'light' in the + * font's 'name' table. + * + * An empty name ID in the 'CPAL' table gets represented as value + * 0xFFFF. + * + * `NULL` if the font's 'CPAL' table doesn't contain appropriate data. + * + * palette_flags :: + * An optional read-only array of palette flags with `num_palettes` + * elements. Possible values are an ORed combination of + * @FT_PALETTE_FOR_LIGHT_BACKGROUND and + * @FT_PALETTE_FOR_DARK_BACKGROUND. + * + * `NULL` if the font's 'CPAL' table doesn't contain appropriate data. + * + * num_palette_entries :: + * The number of entries in a single palette. All palettes have the + * same size. + * + * palette_entry_name_ids :: + * An optional read-only array of palette entry name IDs with + * `num_palette_entries`. In each palette, entries with the same index + * have the same function. For example, index~0 might correspond to + * string 'outline' in the font's 'name' table to indicate that this + * palette entry is used for outlines, index~1 might correspond to + * 'fill' to indicate the filling color palette entry, etc. + * + * An empty entry name ID in the 'CPAL' table gets represented as value + * 0xFFFF. + * + * `NULL` if the font's 'CPAL' table doesn't contain appropriate data. + * + * @note: + * Use function @FT_Get_Sfnt_Name to map name IDs and entry name IDs to + * name strings. + * + * Use function @FT_Palette_Select to get the colors associated with a + * palette entry. + * + * @since: + * 2.10 + */ + typedef struct FT_Palette_Data_ { + FT_UShort num_palettes; + const FT_UShort* palette_name_ids; + const FT_UShort* palette_flags; + + FT_UShort num_palette_entries; + const FT_UShort* palette_entry_name_ids; + + } FT_Palette_Data; + + + /************************************************************************** + * + * @function: + * FT_Palette_Data_Get + * + * @description: + * Retrieve the face's color palette data. + * + * @input: + * face :: + * The source face handle. + * + * @output: + * apalette :: + * A pointer to an @FT_Palette_Data structure. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * All arrays in the returned @FT_Palette_Data structure are read-only. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_COLOR_LAYERS` is not defined in `ftoption.h`. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Palette_Data_Get( FT_Face face, + FT_Palette_Data *apalette ); + + + /************************************************************************** + * + * @function: + * FT_Palette_Select + * + * @description: + * This function has two purposes. + * + * (1) It activates a palette for rendering color glyphs, and + * + * (2) it retrieves all (unmodified) color entries of this palette. This + * function returns a read-write array, which means that a calling + * application can modify the palette entries on demand. + * + * A corollary of (2) is that calling the function, then modifying some + * values, then calling the function again with the same arguments resets + * all color entries to the original 'CPAL' values; all user modifications + * are lost. + * + * @input: + * face :: + * The source face handle. + * + * palette_index :: + * The palette index. + * + * @output: + * apalette :: + * An array of color entries for a palette with index `palette_index`, + * having `num_palette_entries` elements (as found in the + * `FT_Palette_Data` structure). If `apalette` is set to `NULL`, no + * array gets returned (and no color entries can be modified). + * + * In case the font doesn't support color palettes, `NULL` is returned. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The array pointed to by `apalette_entries` is owned and managed by + * FreeType. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_COLOR_LAYERS` is not defined in `ftoption.h`. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Palette_Select( FT_Face face, + FT_UShort palette_index, + FT_Color* *apalette ); + + + /************************************************************************** + * + * @function: + * FT_Palette_Set_Foreground_Color + * + * @description: + * 'COLR' uses palette index 0xFFFF to indicate a 'text foreground + * color'. This function sets this value. + * + * @input: + * face :: + * The source face handle. + * + * foreground_color :: + * An `FT_Color` structure to define the text foreground color. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If this function isn't called, the text foreground color is set to + * white opaque (BGRA value 0xFFFFFFFF) if + * @FT_PALETTE_FOR_DARK_BACKGROUND is present for the current palette, + * and black opaque (BGRA value 0x000000FF) otherwise, including the case + * that no palette types are available in the 'CPAL' table. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_COLOR_LAYERS` is not defined in `ftoption.h`. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Palette_Set_Foreground_Color( FT_Face face, + FT_Color foreground_color ); + + + /************************************************************************** + * + * @section: + * layer_management + * + * @title: + * Glyph Layer Management + * + * @abstract: + * Retrieving and manipulating OpenType's 'COLR' table data. + * + * @description: + * The functions described here allow access of colored glyph layer data + * in OpenType's 'COLR' tables. + */ + + + /************************************************************************** + * + * @struct: + * FT_LayerIterator + * + * @description: + * This iterator object is needed for @FT_Get_Color_Glyph_Layer. + * + * @fields: + * num_layers :: + * The number of glyph layers for the requested glyph index. Will be + * set by @FT_Get_Color_Glyph_Layer. + * + * layer :: + * The current layer. Will be set by @FT_Get_Color_Glyph_Layer. + * + * p :: + * An opaque pointer into 'COLR' table data. The caller must set this + * to `NULL` before the first call of @FT_Get_Color_Glyph_Layer. + */ + typedef struct FT_LayerIterator_ + { + FT_UInt num_layers; + FT_UInt layer; + FT_Byte* p; + + } FT_LayerIterator; + + + /************************************************************************** + * + * @function: + * FT_Get_Color_Glyph_Layer + * + * @description: + * This is an interface to the 'COLR' table in OpenType fonts to + * iteratively retrieve the colored glyph layers associated with the + * current glyph slot. + * + * https://docs.microsoft.com/en-us/typography/opentype/spec/colr + * + * The glyph layer data for a given glyph index, if present, provides an + * alternative, multi-color glyph representation: Instead of rendering + * the outline or bitmap with the given glyph index, glyphs with the + * indices and colors returned by this function are rendered layer by + * layer. + * + * The returned elements are ordered in the z~direction from bottom to + * top; the 'n'th element should be rendered with the associated palette + * color and blended on top of the already rendered layers (elements 0, + * 1, ..., n-1). + * + * @input: + * face :: + * A handle to the parent face object. + * + * base_glyph :: + * The glyph index the colored glyph layers are associated with. + * + * @inout: + * iterator :: + * An @FT_LayerIterator object. For the first call you should set + * `iterator->p` to `NULL`. For all following calls, simply use the + * same object again. + * + * @output: + * aglyph_index :: + * The glyph index of the current layer. + * + * acolor_index :: + * The color index into the font face's color palette of the current + * layer. The value 0xFFFF is special; it doesn't reference a palette + * entry but indicates that the text foreground color should be used + * instead (to be set up by the application outside of FreeType). + * + * The color palette can be retrieved with @FT_Palette_Select. + * + * @return: + * Value~1 if everything is OK. If there are no more layers (or if there + * are no layers at all), value~0 gets returned. In case of an error, + * value~0 is returned also. + * + * @note: + * This function is necessary if you want to handle glyph layers by + * yourself. In particular, functions that operate with @FT_GlyphRec + * objects (like @FT_Get_Glyph or @FT_Glyph_To_Bitmap) don't have access + * to this information. + * + * Note that @FT_Render_Glyph is able to handle colored glyph layers + * automatically if the @FT_LOAD_COLOR flag is passed to a previous call + * to @FT_Load_Glyph. [This is an experimental feature.] + * + * @example: + * ``` + * FT_Color* palette; + * FT_LayerIterator iterator; + * + * FT_Bool have_layers; + * FT_UInt layer_glyph_index; + * FT_UInt layer_color_index; + * + * + * error = FT_Palette_Select( face, palette_index, &palette ); + * if ( error ) + * palette = NULL; + * + * iterator.p = NULL; + * have_layers = FT_Get_Color_Glyph_Layer( face, + * glyph_index, + * &layer_glyph_index, + * &layer_color_index, + * &iterator ); + * + * if ( palette && have_layers ) + * { + * do + * { + * FT_Color layer_color; + * + * + * if ( layer_color_index == 0xFFFF ) + * layer_color = text_foreground_color; + * else + * layer_color = palette[layer_color_index]; + * + * // Load and render glyph `layer_glyph_index', then + * // blend resulting pixmap (using color `layer_color') + * // with previously created pixmaps. + * + * } while ( FT_Get_Color_Glyph_Layer( face, + * glyph_index, + * &layer_glyph_index, + * &layer_color_index, + * &iterator ) ); + * } + * ``` + */ + FT_EXPORT( FT_Bool ) + FT_Get_Color_Glyph_Layer( FT_Face face, + FT_UInt base_glyph, + FT_UInt *aglyph_index, + FT_UInt *acolor_index, + FT_LayerIterator* iterator ); + + + /************************************************************************** + * + * @enum: + * FT_PaintFormat + * + * @description: + * Enumeration describing the different paint format types of the v1 + * extensions to the 'COLR' table, see + * 'https://github.com/googlefonts/colr-gradients-spec'. + * + * The enumeration values losely correspond with the format numbers of + * the specification: FreeType always returns a fully specified 'Paint' + * structure for the 'Transform', 'Translate', 'Scale', 'Rotate', and + * 'Skew' table types even though the specification has different formats + * depending on whether or not a center is specified, whether the scale + * is uniform in x and y~direction or not, etc. Also, only non-variable + * format identifiers are listed in this enumeration; as soon as support + * for variable 'COLR' v1 fonts is implemented, interpolation is + * performed dependent on axis coordinates, which are configured on the + * @FT_Face through @FT_Set_Var_Design_Coordinates. This implies that + * always static, readily interpolated values are returned in the 'Paint' + * structures. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef enum FT_PaintFormat_ + { + FT_COLR_PAINTFORMAT_COLR_LAYERS = 1, + FT_COLR_PAINTFORMAT_SOLID = 2, + FT_COLR_PAINTFORMAT_LINEAR_GRADIENT = 4, + FT_COLR_PAINTFORMAT_RADIAL_GRADIENT = 6, + FT_COLR_PAINTFORMAT_SWEEP_GRADIENT = 8, + FT_COLR_PAINTFORMAT_GLYPH = 10, + FT_COLR_PAINTFORMAT_COLR_GLYPH = 11, + FT_COLR_PAINTFORMAT_TRANSFORM = 12, + FT_COLR_PAINTFORMAT_TRANSLATE = 14, + FT_COLR_PAINTFORMAT_SCALE = 16, + FT_COLR_PAINTFORMAT_ROTATE = 24, + FT_COLR_PAINTFORMAT_SKEW = 28, + FT_COLR_PAINTFORMAT_COMPOSITE = 32, + FT_COLR_PAINT_FORMAT_MAX = 33, + FT_COLR_PAINTFORMAT_UNSUPPORTED = 255 + + } FT_PaintFormat; + + + /************************************************************************** + * + * @struct: + * FT_ColorStopIterator + * + * @description: + * This iterator object is needed for @FT_Get_Colorline_Stops. It keeps + * state while iterating over the stops of an @FT_ColorLine, + * representing the `ColorLine` struct of the v1 extensions to 'COLR', + * see 'https://github.com/googlefonts/colr-gradients-spec'. + * + * @fields: + * num_color_stops :: + * The number of color stops for the requested glyph index. Set by + * @FT_Get_Paint. + * + * current_color_stop :: + * The current color stop. Set by @FT_Get_Colorline_Stops. + * + * p :: + * An opaque pointer into 'COLR' table data. Set by @FT_Get_Paint. + * Updated by @FT_Get_Colorline_Stops. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_ColorStopIterator_ + { + FT_UInt num_color_stops; + FT_UInt current_color_stop; + + FT_Byte* p; + + } FT_ColorStopIterator; + + + /************************************************************************** + * + * @struct: + * FT_ColorIndex + * + * @description: + * A structure representing a `ColorIndex` value of the 'COLR' v1 + * extensions, see 'https://github.com/googlefonts/colr-gradients-spec'. + * + * @fields: + * palette_index :: + * The palette index into a 'CPAL' palette. + * + * alpha :: + * Alpha transparency value multiplied with the value from 'CPAL'. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_ColorIndex_ + { + FT_UInt16 palette_index; + FT_F2Dot14 alpha; + + } FT_ColorIndex; + + + /************************************************************************** + * + * @struct: + * FT_ColorStop + * + * @description: + * A structure representing a `ColorStop` value of the 'COLR' v1 + * extensions, see 'https://github.com/googlefonts/colr-gradients-spec'. + * + * @fields: + * stop_offset :: + * The stop offset between 0 and 1 along the gradient. + * + * color :: + * The color information for this stop, see @FT_ColorIndex. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_ColorStop_ + { + FT_F2Dot14 stop_offset; + FT_ColorIndex color; + + } FT_ColorStop; + + + /************************************************************************** + * + * @enum: + * FT_PaintExtend + * + * @description: + * An enumeration representing the 'Extend' mode of the 'COLR' v1 + * extensions, see 'https://github.com/googlefonts/colr-gradients-spec'. + * It describes how the gradient fill continues at the other boundaries. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef enum FT_PaintExtend_ + { + FT_COLR_PAINT_EXTEND_PAD = 0, + FT_COLR_PAINT_EXTEND_REPEAT = 1, + FT_COLR_PAINT_EXTEND_REFLECT = 2 + + } FT_PaintExtend; + + + /************************************************************************** + * + * @struct: + * FT_ColorLine + * + * @description: + * A structure representing a `ColorLine` value of the 'COLR' v1 + * extensions, see 'https://github.com/googlefonts/colr-gradients-spec'. + * It describes a list of color stops along the defined gradient. + * + * @fields: + * extend :: + * The extend mode at the outer boundaries, see @FT_PaintExtend. + * + * color_stop_iterator :: + * The @FT_ColorStopIterator used to enumerate and retrieve the + * actual @FT_ColorStop's. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_ColorLine_ + { + FT_PaintExtend extend; + FT_ColorStopIterator color_stop_iterator; + + } FT_ColorLine; + + + /************************************************************************** + * + * @struct: + * FT_Affine23 + * + * @description: + * A structure used to store a 2x3 matrix. Coefficients are in + * 16.16 fixed-point format. The computation performed is + * + * ``` + * x' = x*xx + y*xy + dx + * y' = x*yx + y*yy + dy + * ``` + * + * @fields: + * xx :: + * Matrix coefficient. + * + * xy :: + * Matrix coefficient. + * + * dx :: + * x translation. + * + * yx :: + * Matrix coefficient. + * + * yy :: + * Matrix coefficient. + * + * dy :: + * y translation. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_Affine_23_ + { + FT_Fixed xx, xy, dx; + FT_Fixed yx, yy, dy; + + } FT_Affine23; + + + /************************************************************************** + * + * @enum: + * FT_Composite_Mode + * + * @description: + * An enumeration listing the 'COLR' v1 composite modes used in + * @FT_PaintComposite. For more details on each paint mode, see + * 'https://www.w3.org/TR/compositing-1/#porterduffcompositingoperators'. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef enum FT_Composite_Mode_ + { + FT_COLR_COMPOSITE_CLEAR = 0, + FT_COLR_COMPOSITE_SRC = 1, + FT_COLR_COMPOSITE_DEST = 2, + FT_COLR_COMPOSITE_SRC_OVER = 3, + FT_COLR_COMPOSITE_DEST_OVER = 4, + FT_COLR_COMPOSITE_SRC_IN = 5, + FT_COLR_COMPOSITE_DEST_IN = 6, + FT_COLR_COMPOSITE_SRC_OUT = 7, + FT_COLR_COMPOSITE_DEST_OUT = 8, + FT_COLR_COMPOSITE_SRC_ATOP = 9, + FT_COLR_COMPOSITE_DEST_ATOP = 10, + FT_COLR_COMPOSITE_XOR = 11, + FT_COLR_COMPOSITE_PLUS = 12, + FT_COLR_COMPOSITE_SCREEN = 13, + FT_COLR_COMPOSITE_OVERLAY = 14, + FT_COLR_COMPOSITE_DARKEN = 15, + FT_COLR_COMPOSITE_LIGHTEN = 16, + FT_COLR_COMPOSITE_COLOR_DODGE = 17, + FT_COLR_COMPOSITE_COLOR_BURN = 18, + FT_COLR_COMPOSITE_HARD_LIGHT = 19, + FT_COLR_COMPOSITE_SOFT_LIGHT = 20, + FT_COLR_COMPOSITE_DIFFERENCE = 21, + FT_COLR_COMPOSITE_EXCLUSION = 22, + FT_COLR_COMPOSITE_MULTIPLY = 23, + FT_COLR_COMPOSITE_HSL_HUE = 24, + FT_COLR_COMPOSITE_HSL_SATURATION = 25, + FT_COLR_COMPOSITE_HSL_COLOR = 26, + FT_COLR_COMPOSITE_HSL_LUMINOSITY = 27, + FT_COLR_COMPOSITE_MAX = 28 + + } FT_Composite_Mode; + + + /************************************************************************** + * + * @struct: + * FT_OpaquePaint + * + * @description: + * A structure representing an offset to a `Paint` value stored in any + * of the paint tables of a 'COLR' v1 font. Compare Offset<24> there. + * When 'COLR' v1 paint tables represented by FreeType objects such as + * @FT_PaintColrLayers, @FT_PaintComposite, or @FT_PaintTransform + * reference downstream nested paint tables, we do not immediately + * retrieve them but encapsulate their location in this type. Use + * @FT_Get_Paint to retrieve the actual @FT_COLR_Paint object that + * describes the details of the respective paint table. + * + * @fields: + * p :: + * An internal offset to a Paint table, needs to be set to NULL before + * passing this struct as an argument to @FT_Get_Paint. + * + * insert_root_transform :: + * An internal boolean to track whether an initial root transform is + * to be provided. Do not set this value. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_Opaque_Paint_ + { + FT_Byte* p; + FT_Bool insert_root_transform; + } FT_OpaquePaint; + + + /************************************************************************** + * + * @struct: + * FT_PaintColrLayers + * + * @description: + * A structure representing a `PaintColrLayers` table of a 'COLR' v1 + * font. This table describes a set of layers that are to be composited + * with composite mode `FT_COLR_COMPOSITE_SRC_OVER`. The return value + * of this function is an @FT_LayerIterator initialized so that it can + * be used with @FT_Get_Paint_Layers to retrieve the @FT_OpaquePaint + * objects as references to each layer. + * + * @fields: + * layer_iterator :: + * The layer iterator that describes the layers of this paint. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintColrLayers_ + { + FT_LayerIterator layer_iterator; + + } FT_PaintColrLayers; + + + /************************************************************************** + * + * @struct: + * FT_PaintSolid + * + * @description: + * A structure representing a `PaintSolid` value of the 'COLR' v1 + * extensions, see 'https://github.com/googlefonts/colr-gradients-spec'. + * Using a `PaintSolid` value means that the glyph layer filled with + * this paint is solid-colored and does not contain a gradient. + * + * @fields: + * color :: + * The color information for this solid paint, see @FT_ColorIndex. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintSolid_ + { + FT_ColorIndex color; + + } FT_PaintSolid; + + + /************************************************************************** + * + * @struct: + * FT_PaintLinearGradient + * + * @description: + * A structure representing a `PaintLinearGradient` value of the 'COLR' + * v1 extensions, see + * 'https://github.com/googlefonts/colr-gradients-spec'. The glyph + * layer filled with this paint is drawn filled with a linear gradient. + * + * @fields: + * colorline :: + * The @FT_ColorLine information for this paint, i.e., the list of + * color stops along the gradient. + * + * p0 :: + * The starting point of the gradient definition in font units + * represented as a 16.16 fixed-point `FT_Vector`. + * + * p1 :: + * The end point of the gradient definition in font units + * represented as a 16.16 fixed-point `FT_Vector`. + * + * p2 :: + * Optional point~p2 to rotate the gradient in font units + * represented as a 16.16 fixed-point `FT_Vector`. + * Otherwise equal to~p0. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintLinearGradient_ + { + FT_ColorLine colorline; + + /* TODO: Potentially expose those as x0, y0 etc. */ + FT_Vector p0; + FT_Vector p1; + FT_Vector p2; + + } FT_PaintLinearGradient; + + + /************************************************************************** + * + * @struct: + * FT_PaintRadialGradient + * + * @description: + * A structure representing a `PaintRadialGradient` value of the 'COLR' + * v1 extensions, see + * 'https://github.com/googlefonts/colr-gradients-spec'. The glyph + * layer filled with this paint is drawn filled filled with a radial + * gradient. + * + * @fields: + * colorline :: + * The @FT_ColorLine information for this paint, i.e., the list of + * color stops along the gradient. + * + * c0 :: + * The center of the starting point of the radial gradient in font + * units represented as a 16.16 fixed-point `FT_Vector`. + * + * r0 :: + * The radius of the starting circle of the radial gradient in font + * units represented as a 16.16 fixed-point value. + * + * c1 :: + * The center of the end point of the radial gradient in font units + * represented as a 16.16 fixed-point `FT_Vector`. + * + * r1 :: + * The radius of the end circle of the radial gradient in font + * units represented as a 16.16 fixed-point value. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintRadialGradient_ + { + FT_ColorLine colorline; + + FT_Vector c0; + FT_Pos r0; + FT_Vector c1; + FT_Pos r1; + + } FT_PaintRadialGradient; + + + /************************************************************************** + * + * @struct: + * FT_PaintSweepGradient + * + * @description: + * A structure representing a `PaintSweepGradient` value of the 'COLR' + * v1 extensions, see + * 'https://github.com/googlefonts/colr-gradients-spec'. The glyph + * layer filled with this paint is drawn filled with a sweep gradient + * from `start_angle` to `end_angle`. + * + * @fields: + * colorline :: + * The @FT_ColorLine information for this paint, i.e., the list of + * color stops along the gradient. + * + * center :: + * The center of the sweep gradient in font units represented as a + * vector of 16.16 fixed-point values. + * + * start_angle :: + * The start angle of the sweep gradient in 16.16 fixed-point + * format specifying degrees divided by 180.0 (as in the + * spec). Multiply by 180.0f to receive degrees value. Values are + * given counter-clockwise, starting from the (positive) y~axis. + * + * end_angle :: + * The end angle of the sweep gradient in 16.16 fixed-point + * format specifying degrees divided by 180.0 (as in the + * spec). Multiply by 180.0f to receive degrees value. Values are + * given counter-clockwise, starting from the (positive) y~axis. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintSweepGradient_ + { + FT_ColorLine colorline; + + FT_Vector center; + FT_Fixed start_angle; + FT_Fixed end_angle; + + } FT_PaintSweepGradient; + + + /************************************************************************** + * + * @struct: + * FT_PaintGlyph + * + * @description: + * A structure representing a 'COLR' v1 `PaintGlyph` paint table. + * + * @fields: + * paint :: + * An opaque paint object pointing to a `Paint` table that serves as + * the fill for the glyph ID. + * + * glyphID :: + * The glyph ID from the 'glyf' table, which serves as the contour + * information that is filled with paint. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintGlyph_ + { + FT_OpaquePaint paint; + FT_UInt glyphID; + + } FT_PaintGlyph; + + + /************************************************************************** + * + * @struct: + * FT_PaintColrGlyph + * + * @description: + * A structure representing a 'COLR' v1 `PaintColorGlyph` paint table. + * + * @fields: + * glyphID :: + * The glyph ID from the `BaseGlyphV1List` table that is drawn for + * this paint. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintColrGlyph_ + { + FT_UInt glyphID; + + } FT_PaintColrGlyph; + + + /************************************************************************** + * + * @struct: + * FT_PaintTransform + * + * @description: + * A structure representing a 'COLR' v1 `PaintTransform` paint table. + * + * @fields: + * paint :: + * An opaque paint that is subject to being transformed. + * + * affine :: + * A 2x3 transformation matrix in @FT_Affine23 format containing + * 16.16 fixed-point values. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintTransform_ + { + FT_OpaquePaint paint; + FT_Affine23 affine; + + } FT_PaintTransform; + + + /************************************************************************** + * + * @struct: + * FT_PaintTranslate + * + * @description: + * A structure representing a 'COLR' v1 `PaintTranslate` paint table. + * Used for translating downstream paints by a given x and y~delta. + * + * @fields: + * paint :: + * An @FT_OpaquePaint object referencing the paint that is to be + * rotated. + * + * dx :: + * Translation in x~direction in font units represented as a + * 16.16 fixed-point value. + * + * dy :: + * Translation in y~direction in font units represented as a + * 16.16 fixed-point value. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintTranslate_ + { + FT_OpaquePaint paint; + + FT_Fixed dx; + FT_Fixed dy; + + } FT_PaintTranslate; + + + /************************************************************************** + * + * @struct: + * FT_PaintScale + * + * @description: + * A structure representing all of the 'COLR' v1 'PaintScale*' paint + * tables. Used for scaling downstream paints by a given x and y~scale, + * with a given center. This structure is used for all 'PaintScale*' + * types that are part of specification; fields of this structure are + * filled accordingly. If there is a center, the center values are set, + * otherwise they are set to the zero coordinate. If the source font + * file has 'PaintScaleUniform*' set, the scale values are set + * accordingly to the same value. + * + * @fields: + * paint :: + * An @FT_OpaquePaint object referencing the paint that is to be + * scaled. + * + * scale_x :: + * Scale factor in x~direction represented as a + * 16.16 fixed-point value. + * + * scale_y :: + * Scale factor in y~direction represented as a + * 16.16 fixed-point value. + * + * center_x :: + * x~coordinate of center point to scale from represented as a + * 16.16 fixed-point value. + * + * center_y :: + * y~coordinate of center point to scale from represented as a + * 16.16 fixed-point value. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward-compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintScale_ + { + FT_OpaquePaint paint; + + FT_Fixed scale_x; + FT_Fixed scale_y; + + FT_Fixed center_x; + FT_Fixed center_y; + + } FT_PaintScale; + + + /************************************************************************** + * + * @struct: + * FT_PaintRotate + * + * @description: + * A structure representing a 'COLR' v1 `PaintRotate` paint table. Used + * for rotating downstream paints with a given center and angle. + * + * @fields: + * paint :: + * An @FT_OpaquePaint object referencing the paint that is to be + * rotated. + * + * angle :: + * The rotation angle that is to be applied in degrees divided by + * 180.0 (as in the spec) represented as a 16.16 fixed-point + * value. Multiply by 180.0f to receive degrees value. + * + * center_x :: + * The x~coordinate of the pivot point of the rotation in font + * units) represented as a 16.16 fixed-point value. + * + * center_y :: + * The y~coordinate of the pivot point of the rotation in font + * units represented as a 16.16 fixed-point value. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + + typedef struct FT_PaintRotate_ + { + FT_OpaquePaint paint; + + FT_Fixed angle; + + FT_Fixed center_x; + FT_Fixed center_y; + + } FT_PaintRotate; + + + /************************************************************************** + * + * @struct: + * FT_PaintSkew + * + * @description: + * A structure representing a 'COLR' v1 `PaintSkew` paint table. Used + * for skewing or shearing downstream paints by a given center and + * angle. + * + * @fields: + * paint :: + * An @FT_OpaquePaint object referencing the paint that is to be + * skewed. + * + * x_skew_angle :: + * The skewing angle in x~direction in degrees divided by 180.0 + * (as in the spec) represented as a 16.16 fixed-point + * value. Multiply by 180.0f to receive degrees. + * + * y_skew_angle :: + * The skewing angle in y~direction in degrees divided by 180.0 + * (as in the spec) represented as a 16.16 fixed-point + * value. Multiply by 180.0f to receive degrees. + * + * center_x :: + * The x~coordinate of the pivot point of the skew in font units + * represented as a 16.16 fixed-point value. + * + * center_y :: + * The y~coordinate of the pivot point of the skew in font units + * represented as a 16.16 fixed-point value. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintSkew_ + { + FT_OpaquePaint paint; + + FT_Fixed x_skew_angle; + FT_Fixed y_skew_angle; + + FT_Fixed center_x; + FT_Fixed center_y; + + } FT_PaintSkew; + + + /************************************************************************** + * + * @struct: + * FT_PaintComposite + * + * @description: + * A structure representing a 'COLR'v1 `PaintComposite` paint table. + * Used for compositing two paints in a 'COLR' v1 directed acycling + * graph. + * + * @fields: + * source_paint :: + * An @FT_OpaquePaint object referencing the source that is to be + * composited. + * + * composite_mode :: + * An @FT_Composite_Mode enum value determining the composition + * operation. + * + * backdrop_paint :: + * An @FT_OpaquePaint object referencing the backdrop paint that + * `source_paint` is composited onto. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_PaintComposite_ + { + FT_OpaquePaint source_paint; + FT_Composite_Mode composite_mode; + FT_OpaquePaint backdrop_paint; + + } FT_PaintComposite; + + + /************************************************************************** + * + * @union: + * FT_COLR_Paint + * + * @description: + * A union object representing format and details of a paint table of a + * 'COLR' v1 font, see + * 'https://github.com/googlefonts/colr-gradients-spec'. Use + * @FT_Get_Paint to retrieve a @FT_COLR_Paint for an @FT_OpaquePaint + * object. + * + * @fields: + * format :: + * The gradient format for this Paint structure. + * + * u :: + * Union of all paint table types: + * + * * @FT_PaintColrLayers + * * @FT_PaintGlyph + * * @FT_PaintSolid + * * @FT_PaintLinearGradient + * * @FT_PaintRadialGradient + * * @FT_PaintSweepGradient + * * @FT_PaintTransform + * * @FT_PaintTranslate + * * @FT_PaintRotate + * * @FT_PaintSkew + * * @FT_PaintComposite + * * @FT_PaintColrGlyph + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_COLR_Paint_ + { + FT_PaintFormat format; + + union + { + FT_PaintColrLayers colr_layers; + FT_PaintGlyph glyph; + FT_PaintSolid solid; + FT_PaintLinearGradient linear_gradient; + FT_PaintRadialGradient radial_gradient; + FT_PaintSweepGradient sweep_gradient; + FT_PaintTransform transform; + FT_PaintTranslate translate; + FT_PaintScale scale; + FT_PaintRotate rotate; + FT_PaintSkew skew; + FT_PaintComposite composite; + FT_PaintColrGlyph colr_glyph; + + } u; + + } FT_COLR_Paint; + + + /************************************************************************** + * + * @enum: + * FT_Color_Root_Transform + * + * @description: + * An enumeration to specify whether @FT_Get_Color_Glyph_Paint is to + * return a root transform to configure the client's graphics context + * matrix. + * + * @values: + * FT_COLOR_INCLUDE_ROOT_TRANSFORM :: + * Do include the root transform as the initial @FT_COLR_Paint object. + * + * FT_COLOR_NO_ROOT_TRANSFORM :: + * Do not output an initial root transform. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef enum FT_Color_Root_Transform_ + { + FT_COLOR_INCLUDE_ROOT_TRANSFORM, + FT_COLOR_NO_ROOT_TRANSFORM, + + FT_COLOR_ROOT_TRANSFORM_MAX + + } FT_Color_Root_Transform; + + + /************************************************************************** + * + * @struct: + * FT_ClipBox + * + * @description: + * A structure representing a 'COLR' v1 'ClipBox' table. 'COLR' v1 + * glyphs may optionally define a clip box for aiding allocation or + * defining a maximum drawable region. Use @FT_Get_Color_Glyph_ClipBox + * to retrieve it. + * + * @fields: + * bottom_left :: + * The bottom left corner of the clip box as an @FT_Vector with + * fixed-point coordinates in 26.6 format. + * + * top_left :: + * The top left corner of the clip box as an @FT_Vector with + * fixed-point coordinates in 26.6 format. + * + * top_right :: + * The top right corner of the clip box as an @FT_Vector with + * fixed-point coordinates in 26.6 format. + * + * bottom_right :: + * The bottom right corner of the clip box as an @FT_Vector with + * fixed-point coordinates in 26.6 format. + * + * @since: + * 2.12 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + typedef struct FT_ClipBox_ + { + FT_Vector bottom_left; + FT_Vector top_left; + FT_Vector top_right; + FT_Vector bottom_right; + + } FT_ClipBox; + + + /************************************************************************** + * + * @function: + * FT_Get_Color_Glyph_Paint + * + * @description: + * This is the starting point and interface to color gradient + * information in a 'COLR' v1 table in OpenType fonts to recursively + * retrieve the paint tables for the directed acyclic graph of a colored + * glyph, given a glyph ID. + * + * https://github.com/googlefonts/colr-gradients-spec + * + * In a 'COLR' v1 font, each color glyph defines a directed acyclic + * graph of nested paint tables, such as `PaintGlyph`, `PaintSolid`, + * `PaintLinearGradient`, `PaintRadialGradient`, and so on. Using this + * function and specifying a glyph ID, one retrieves the root paint + * table for this glyph ID. + * + * This function allows control whether an initial root transform is + * returned to configure scaling, transform, and translation correctly + * on the client's graphics context. The initial root transform is + * computed and returned according to the values configured for @FT_Size + * and @FT_Set_Transform on the @FT_Face object, see below for details + * of the `root_transform` parameter. This has implications for a + * client 'COLR' v1 implementation: When this function returns an + * initially computed root transform, at the time of executing the + * @FT_PaintGlyph operation, the contours should be retrieved using + * @FT_Load_Glyph at unscaled, untransformed size. This is because the + * root transform applied to the graphics context will take care of + * correct scaling. + * + * Alternatively, to allow hinting of contours, at the time of executing + * @FT_Load_Glyph, the current graphics context transformation matrix + * can be decomposed into a scaling matrix and a remainder, and + * @FT_Load_Glyph can be used to retrieve the contours at scaled size. + * Care must then be taken to blit or clip to the graphics context with + * taking this remainder transformation into account. + * + * @input: + * face :: + * A handle to the parent face object. + * + * base_glyph :: + * The glyph index for which to retrieve the root paint table. + * + * root_transform :: + * Specifies whether an initially computed root is returned by the + * @FT_PaintTransform operation to account for the activated size + * (see @FT_Activate_Size) and the configured transform and translate + * (see @FT_Set_Transform). + * + * This root transform is returned before nodes of the glyph graph of + * the font are returned. Subsequent @FT_COLR_Paint structures + * contain unscaled and untransformed values. The inserted root + * transform enables the client application to apply an initial + * transform to its graphics context. When executing subsequent + * FT_COLR_Paint operations, values from @FT_COLR_Paint operations + * will ultimately be correctly scaled because of the root transform + * applied to the graphics context. Use + * @FT_COLOR_INCLUDE_ROOT_TRANSFORM to include the root transform, use + * @FT_COLOR_NO_ROOT_TRANSFORM to not include it. The latter may be + * useful when traversing the 'COLR' v1 glyph graph and reaching a + * @FT_PaintColrGlyph. When recursing into @FT_PaintColrGlyph and + * painting that inline, no additional root transform is needed as it + * has already been applied to the graphics context at the beginning + * of drawing this glyph. + * + * @output: + * paint :: + * The @FT_OpaquePaint object that references the actual paint table. + * + * The respective actual @FT_COLR_Paint object is retrieved via + * @FT_Get_Paint. + * + * @return: + * Value~1 if everything is OK. If no color glyph is found, or the root + * paint could not be retrieved, value~0 gets returned. In case of an + * error, value~0 is returned also. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + FT_EXPORT( FT_Bool ) + FT_Get_Color_Glyph_Paint( FT_Face face, + FT_UInt base_glyph, + FT_Color_Root_Transform root_transform, + FT_OpaquePaint* paint ); + + + /************************************************************************** + * + * @function: + * FT_Get_Color_Glyph_ClipBox + * + * @description: + * Search for a 'COLR' v1 clip box for the specified `base_glyph` and + * fill the `clip_box` parameter with the 'COLR' v1 'ClipBox' information + * if one is found. + * + * @input: + * face :: + * A handle to the parent face object. + * + * base_glyph :: + * The glyph index for which to retrieve the clip box. + * + * @output: + * clip_box :: + * The clip box for the requested `base_glyph` if one is found. The + * clip box is computed taking scale and transformations configured on + * the @FT_Face into account. @FT_ClipBox contains @FT_Vector values + * in 26.6 format. + * + * @return: + * Value~1 if a clip box is found. If no clip box is found or an error + * occured, value~0 is returned. + * + * @note: + * To retrieve the clip box in font units, reset scale to units-per-em + * and remove transforms configured using @FT_Set_Transform. + * + * @since: + * 2.12 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + FT_EXPORT( FT_Bool ) + FT_Get_Color_Glyph_ClipBox( FT_Face face, + FT_UInt base_glyph, + FT_ClipBox* clip_box ); + + + /************************************************************************** + * + * @function: + * FT_Get_Paint_Layers + * + * @description: + * Access the layers of a `PaintColrLayers` table. + * + * If the root paint of a color glyph, or a nested paint of a 'COLR' + * glyph is a `PaintColrLayers` table, this function retrieves the + * layers of the `PaintColrLayers` table. + * + * The @FT_PaintColrLayers object contains an @FT_LayerIterator, which + * is used here to iterate over the layers. Each layer is returned as + * an @FT_OpaquePaint object, which then can be used with @FT_Get_Paint + * to retrieve the actual paint object. + * + * @input: + * face :: + * A handle to the parent face object. + * + * @inout: + * iterator :: + * The @FT_LayerIterator from an @FT_PaintColrLayers object, for which + * the layers are to be retrieved. The internal state of the iterator + * is incremented after one call to this function for retrieving one + * layer. + * + * @output: + * paint :: + * The @FT_OpaquePaint object that references the actual paint table. + * The respective actual @FT_COLR_Paint object is retrieved via + * @FT_Get_Paint. + * + * @return: + * Value~1 if everything is OK. Value~0 gets returned when the paint + * object can not be retrieved or any other error occurs. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + FT_EXPORT( FT_Bool ) + FT_Get_Paint_Layers( FT_Face face, + FT_LayerIterator* iterator, + FT_OpaquePaint* paint ); + + + /************************************************************************** + * + * @function: + * FT_Get_Colorline_Stops + * + * @description: + * This is an interface to color gradient information in a 'COLR' v1 + * table in OpenType fonts to iteratively retrieve the gradient and + * solid fill information for colored glyph layers for a specified glyph + * ID. + * + * https://github.com/googlefonts/colr-gradients-spec + * + * @input: + * face :: + * A handle to the parent face object. + * + * @inout: + * iterator :: + * The retrieved @FT_ColorStopIterator, configured on an @FT_ColorLine, + * which in turn got retrieved via paint information in + * @FT_PaintLinearGradient or @FT_PaintRadialGradient. + * + * @output: + * color_stop :: + * Color index and alpha value for the retrieved color stop. + * + * @return: + * Value~1 if everything is OK. If there are no more color stops, + * value~0 gets returned. In case of an error, value~0 is returned + * also. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + FT_EXPORT( FT_Bool ) + FT_Get_Colorline_Stops( FT_Face face, + FT_ColorStop* color_stop, + FT_ColorStopIterator* iterator ); + + + /************************************************************************** + * + * @function: + * FT_Get_Paint + * + * @description: + * Access the details of a paint using an @FT_OpaquePaint opaque paint + * object, which internally stores the offset to the respective `Paint` + * object in the 'COLR' table. + * + * @input: + * face :: + * A handle to the parent face object. + * + * opaque_paint :: + * The opaque paint object for which the underlying @FT_COLR_Paint + * data is to be retrieved. + * + * @output: + * paint :: + * The specific @FT_COLR_Paint object containing information coming + * from one of the font's `Paint*` tables. + * + * @return: + * Value~1 if everything is OK. Value~0 if no details can be found for + * this paint or any other error occured. + * + * @since: + * 2.11 -- **currently experimental only!** There might be changes + * without retaining backward compatibility of both the API and ABI. + * + */ + FT_EXPORT( FT_Bool ) + FT_Get_Paint( FT_Face face, + FT_OpaquePaint opaque_paint, + FT_COLR_Paint* paint ); + + /* */ + + +FT_END_HEADER + +#endif /* FTCOLOR_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftdriver.h b/external/lumin/thirdparty/freetype/include/freetype/ftdriver.h new file mode 100644 index 0000000..0dc91e8 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftdriver.h @@ -0,0 +1,1250 @@ +/**************************************************************************** + * + * ftdriver.h + * + * FreeType API for controlling driver modules (specification only). + * + * Copyright (C) 2017-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTDRIVER_H_ +#define FTDRIVER_H_ + +#include +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * auto_hinter + * + * @title: + * The auto-hinter + * + * @abstract: + * Controlling the auto-hinting module. + * + * @description: + * While FreeType's auto-hinter doesn't expose API functions by itself, + * it is possible to control its behaviour with @FT_Property_Set and + * @FT_Property_Get. The following lists the available properties + * together with the necessary macros and structures. + * + * Note that the auto-hinter's module name is 'autofitter' for historical + * reasons. + * + * Available properties are @increase-x-height, @no-stem-darkening + * (experimental), @darkening-parameters (experimental), + * @glyph-to-script-map (experimental), @fallback-script (experimental), + * and @default-script (experimental), as documented in the @properties + * section. + * + */ + + + /************************************************************************** + * + * @section: + * cff_driver + * + * @title: + * The CFF driver + * + * @abstract: + * Controlling the CFF driver module. + * + * @description: + * While FreeType's CFF driver doesn't expose API functions by itself, it + * is possible to control its behaviour with @FT_Property_Set and + * @FT_Property_Get. + * + * The CFF driver's module name is 'cff'. + * + * Available properties are @hinting-engine, @no-stem-darkening, + * @darkening-parameters, and @random-seed, as documented in the + * @properties section. + * + * + * **Hinting and anti-aliasing principles of the new engine** + * + * The rasterizer is positioning horizontal features (e.g., ascender + * height & x-height, or crossbars) on the pixel grid and minimizing the + * amount of anti-aliasing applied to them, while placing vertical + * features (vertical stems) on the pixel grid without hinting, thus + * representing the stem position and weight accurately. Sometimes the + * vertical stems may be only partially black. In this context, + * 'anti-aliasing' means that stems are not positioned exactly on pixel + * borders, causing a fuzzy appearance. + * + * There are two principles behind this approach. + * + * 1) No hinting in the horizontal direction: Unlike 'superhinted' + * TrueType, which changes glyph widths to accommodate regular + * inter-glyph spacing, Adobe's approach is 'faithful to the design' in + * representing both the glyph width and the inter-glyph spacing designed + * for the font. This makes the screen display as close as it can be to + * the result one would get with infinite resolution, while preserving + * what is considered the key characteristics of each glyph. Note that + * the distances between unhinted and grid-fitted positions at small + * sizes are comparable to kerning values and thus would be noticeable + * (and distracting) while reading if hinting were applied. + * + * One of the reasons to not hint horizontally is anti-aliasing for LCD + * screens: The pixel geometry of modern displays supplies three vertical + * subpixels as the eye moves horizontally across each visible pixel. On + * devices where we can be certain this characteristic is present a + * rasterizer can take advantage of the subpixels to add increments of + * weight. In Western writing systems this turns out to be the more + * critical direction anyway; the weights and spacing of vertical stems + * (see above) are central to Armenian, Cyrillic, Greek, and Latin type + * designs. Even when the rasterizer uses greyscale anti-aliasing instead + * of color (a necessary compromise when one doesn't know the screen + * characteristics), the unhinted vertical features preserve the design's + * weight and spacing much better than aliased type would. + * + * 2) Alignment in the vertical direction: Weights and spacing along the + * y~axis are less critical; what is much more important is the visual + * alignment of related features (like cap-height and x-height). The + * sense of alignment for these is enhanced by the sharpness of grid-fit + * edges, while the cruder vertical resolution (full pixels instead of + * 1/3 pixels) is less of a problem. + * + * On the technical side, horizontal alignment zones for ascender, + * x-height, and other important height values (traditionally called + * 'blue zones') as defined in the font are positioned independently, + * each being rounded to the nearest pixel edge, taking care of overshoot + * suppression at small sizes, stem darkening, and scaling. + * + * Hstems (this is, hint values defined in the font to help align + * horizontal features) that fall within a blue zone are said to be + * 'captured' and are aligned to that zone. Uncaptured stems are moved + * in one of four ways, top edge up or down, bottom edge up or down. + * Unless there are conflicting hstems, the smallest movement is taken to + * minimize distortion. + * + */ + + + /************************************************************************** + * + * @section: + * pcf_driver + * + * @title: + * The PCF driver + * + * @abstract: + * Controlling the PCF driver module. + * + * @description: + * While FreeType's PCF driver doesn't expose API functions by itself, it + * is possible to control its behaviour with @FT_Property_Set and + * @FT_Property_Get. Right now, there is a single property + * @no-long-family-names available if FreeType is compiled with + * PCF_CONFIG_OPTION_LONG_FAMILY_NAMES. + * + * The PCF driver's module name is 'pcf'. + * + */ + + + /************************************************************************** + * + * @section: + * t1_cid_driver + * + * @title: + * The Type 1 and CID drivers + * + * @abstract: + * Controlling the Type~1 and CID driver modules. + * + * @description: + * It is possible to control the behaviour of FreeType's Type~1 and + * Type~1 CID drivers with @FT_Property_Set and @FT_Property_Get. + * + * Behind the scenes, both drivers use the Adobe CFF engine for hinting; + * however, the used properties must be specified separately. + * + * The Type~1 driver's module name is 'type1'; the CID driver's module + * name is 't1cid'. + * + * Available properties are @hinting-engine, @no-stem-darkening, + * @darkening-parameters, and @random-seed, as documented in the + * @properties section. + * + * Please see the @cff_driver section for more details on the new hinting + * engine. + * + */ + + + /************************************************************************** + * + * @section: + * tt_driver + * + * @title: + * The TrueType driver + * + * @abstract: + * Controlling the TrueType driver module. + * + * @description: + * While FreeType's TrueType driver doesn't expose API functions by + * itself, it is possible to control its behaviour with @FT_Property_Set + * and @FT_Property_Get. + * + * The TrueType driver's module name is 'truetype'; a single property + * @interpreter-version is available, as documented in the @properties + * section. + * + * To help understand the differences between interpreter versions, we + * introduce a list of definitions, kindly provided by Greg Hitchcock. + * + * _Bi-Level Rendering_ + * + * Monochromatic rendering, exclusively used in the early days of + * TrueType by both Apple and Microsoft. Microsoft's GDI interface + * supported hinting of the right-side bearing point, such that the + * advance width could be non-linear. Most often this was done to + * achieve some level of glyph symmetry. To enable reasonable + * performance (e.g., not having to run hinting on all glyphs just to get + * the widths) there was a bit in the head table indicating if the side + * bearing was hinted, and additional tables, 'hdmx' and 'LTSH', to cache + * hinting widths across multiple sizes and device aspect ratios. + * + * _Font Smoothing_ + * + * Microsoft's GDI implementation of anti-aliasing. Not traditional + * anti-aliasing as the outlines were hinted before the sampling. The + * widths matched the bi-level rendering. + * + * _ClearType Rendering_ + * + * Technique that uses physical subpixels to improve rendering on LCD + * (and other) displays. Because of the higher resolution, many methods + * of improving symmetry in glyphs through hinting the right-side bearing + * were no longer necessary. This lead to what GDI calls 'natural + * widths' ClearType, see + * http://rastertragedy.com/RTRCh4.htm#Sec21. Since hinting + * has extra resolution, most non-linearity went away, but it is still + * possible for hints to change the advance widths in this mode. + * + * _ClearType Compatible Widths_ + * + * One of the earliest challenges with ClearType was allowing the + * implementation in GDI to be selected without requiring all UI and + * documents to reflow. To address this, a compatible method of + * rendering ClearType was added where the font hints are executed once + * to determine the width in bi-level rendering, and then re-run in + * ClearType, with the difference in widths being absorbed in the font + * hints for ClearType (mostly in the white space of hints); see + * http://rastertragedy.com/RTRCh4.htm#Sec20. Somewhat by + * definition, compatible width ClearType allows for non-linear widths, + * but only when the bi-level version has non-linear widths. + * + * _ClearType Subpixel Positioning_ + * + * One of the nice benefits of ClearType is the ability to more crisply + * display fractional widths; unfortunately, the GDI model of integer + * bitmaps did not support this. However, the WPF and Direct Write + * frameworks do support fractional widths. DWrite calls this 'natural + * mode', not to be confused with GDI's 'natural widths'. Subpixel + * positioning, in the current implementation of Direct Write, + * unfortunately does not support hinted advance widths, see + * http://rastertragedy.com/RTRCh4.htm#Sec22. Note that the + * TrueType interpreter fully allows the advance width to be adjusted in + * this mode, just the DWrite client will ignore those changes. + * + * _ClearType Backward Compatibility_ + * + * This is a set of exceptions made in the TrueType interpreter to + * minimize hinting techniques that were problematic with the extra + * resolution of ClearType; see + * http://rastertragedy.com/RTRCh4.htm#Sec1 and + * https://www.microsoft.com/typography/cleartype/truetypecleartype.aspx. + * This technique is not to be confused with ClearType compatible widths. + * ClearType backward compatibility has no direct impact on changing + * advance widths, but there might be an indirect impact on disabling + * some deltas. This could be worked around in backward compatibility + * mode. + * + * _Native ClearType Mode_ + * + * (Not to be confused with 'natural widths'.) This mode removes all the + * exceptions in the TrueType interpreter when running with ClearType. + * Any issues on widths would still apply, though. + * + */ + + + /************************************************************************** + * + * @section: + * ot_svg_driver + * + * @title: + * The SVG driver + * + * @abstract: + * Controlling the external rendering of OT-SVG glyphs. + * + * @description: + * By default, FreeType can only load the 'SVG~' table of OpenType fonts + * if configuration macro `FT_CONFIG_OPTION_SVG` is defined. To make it + * render SVG glyphs, an external SVG rendering library is needed. All + * details on the interface between FreeType and the external library + * via function hooks can be found in section @svg_fonts. + * + * The OT-SVG driver's module name is 'ot-svg'; it supports a single + * property called @svg-hooks, documented below in the @properties + * section. + * + */ + + + /************************************************************************** + * + * @section: + * properties + * + * @title: + * Driver properties + * + * @abstract: + * Controlling driver modules. + * + * @description: + * Driver modules can be controlled by setting and unsetting properties, + * using the functions @FT_Property_Set and @FT_Property_Get. This + * section documents the available properties, together with auxiliary + * macros and structures. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_HINTING_XXX + * + * @description: + * A list of constants used for the @hinting-engine property to select + * the hinting engine for CFF, Type~1, and CID fonts. + * + * @values: + * FT_HINTING_FREETYPE :: + * Use the old FreeType hinting engine. + * + * FT_HINTING_ADOBE :: + * Use the hinting engine contributed by Adobe. + * + * @since: + * 2.9 + * + */ +#define FT_HINTING_FREETYPE 0 +#define FT_HINTING_ADOBE 1 + + /* these constants (introduced in 2.4.12) are deprecated */ +#define FT_CFF_HINTING_FREETYPE FT_HINTING_FREETYPE +#define FT_CFF_HINTING_ADOBE FT_HINTING_ADOBE + + + /************************************************************************** + * + * @property: + * hinting-engine + * + * @description: + * Thanks to Adobe, which contributed a new hinting (and parsing) engine, + * an application can select between 'freetype' and 'adobe' if compiled + * with `CFF_CONFIG_OPTION_OLD_ENGINE`. If this configuration macro + * isn't defined, 'hinting-engine' does nothing. + * + * The same holds for the Type~1 and CID modules if compiled with + * `T1_CONFIG_OPTION_OLD_ENGINE`. + * + * For the 'cff' module, the default engine is 'adobe'. For both the + * 'type1' and 't1cid' modules, the default engine is 'adobe', too. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values 'adobe' or 'freetype'). + * + * @example: + * The following example code demonstrates how to select Adobe's hinting + * engine for the 'cff' module (omitting the error handling). + * + * ``` + * FT_Library library; + * FT_UInt hinting_engine = FT_HINTING_ADOBE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "cff", + * "hinting-engine", &hinting_engine ); + * ``` + * + * @since: + * 2.4.12 (for 'cff' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * no-stem-darkening + * + * @description: + * All glyphs that pass through the auto-hinter will be emboldened unless + * this property is set to TRUE. The same is true for the CFF, Type~1, + * and CID font modules if the 'Adobe' engine is selected (which is the + * default). + * + * Stem darkening emboldens glyphs at smaller sizes to make them more + * readable on common low-DPI screens when using linear alpha blending + * and gamma correction, see @FT_Render_Glyph. When not using linear + * alpha blending and gamma correction, glyphs will appear heavy and + * fuzzy! + * + * Gamma correction essentially lightens fonts since shades of grey are + * shifted to higher pixel values (=~higher brightness) to match the + * original intention to the reality of our screens. The side-effect is + * that glyphs 'thin out'. Mac OS~X and Adobe's proprietary font + * rendering library implement a counter-measure: stem darkening at + * smaller sizes where shades of gray dominate. By emboldening a glyph + * slightly in relation to its pixel size, individual pixels get higher + * coverage of filled-in outlines and are therefore 'blacker'. This + * counteracts the 'thinning out' of glyphs, making text remain readable + * at smaller sizes. + * + * For the auto-hinter, stem-darkening is experimental currently and thus + * switched off by default (this is, `no-stem-darkening` is set to TRUE + * by default). Total consistency with the CFF driver is not achieved + * right now because the emboldening method differs and glyphs must be + * scaled down on the Y-axis to keep outline points inside their + * precomputed blue zones. The smaller the size (especially 9ppem and + * down), the higher the loss of emboldening versus the CFF driver. + * + * Note that stem darkening is never applied if @FT_LOAD_NO_SCALE is set. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values 1 and 0 for 'on' and 'off', respectively). It + * can also be set per face using @FT_Face_Properties with + * @FT_PARAM_TAG_STEM_DARKENING. + * + * @example: + * ``` + * FT_Library library; + * FT_Bool no_stem_darkening = TRUE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "cff", + * "no-stem-darkening", &no_stem_darkening ); + * ``` + * + * @since: + * 2.4.12 (for 'cff' module) + * + * 2.6.2 (for 'autofitter' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * darkening-parameters + * + * @description: + * By default, the Adobe hinting engine, as used by the CFF, Type~1, and + * CID font drivers, darkens stems as follows (if the `no-stem-darkening` + * property isn't set): + * + * ``` + * stem width <= 0.5px: darkening amount = 0.4px + * stem width = 1px: darkening amount = 0.275px + * stem width = 1.667px: darkening amount = 0.275px + * stem width >= 2.333px: darkening amount = 0px + * ``` + * + * and piecewise linear in-between. At configuration time, these four + * control points can be set with the macro + * `CFF_CONFIG_OPTION_DARKENING_PARAMETERS`; the CFF, Type~1, and CID + * drivers share these values. At runtime, the control points can be + * changed using the `darkening-parameters` property (see the example + * below that demonstrates this for the Type~1 driver). + * + * The x~values give the stem width, and the y~values the darkening + * amount. The unit is 1000th of pixels. All coordinate values must be + * positive; the x~values must be monotonically increasing; the y~values + * must be monotonically decreasing and smaller than or equal to 500 + * (corresponding to half a pixel); the slope of each linear piece must + * be shallower than -1 (e.g., -.4). + * + * The auto-hinter provides this property, too, as an experimental + * feature. See @no-stem-darkening for more. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable, using eight comma-separated integers without spaces. Here + * the above example, using `\` to break the line for readability. + * + * ``` + * FREETYPE_PROPERTIES=\ + * type1:darkening-parameters=500,300,1000,200,1500,100,2000,0 + * ``` + * + * @example: + * ``` + * FT_Library library; + * FT_Int darken_params[8] = { 500, 300, // x1, y1 + * 1000, 200, // x2, y2 + * 1500, 100, // x3, y3 + * 2000, 0 }; // x4, y4 + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "type1", + * "darkening-parameters", darken_params ); + * ``` + * + * @since: + * 2.5.1 (for 'cff' module) + * + * 2.6.2 (for 'autofitter' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * random-seed + * + * @description: + * By default, the seed value for the CFF 'random' operator and the + * similar '0 28 callothersubr pop' command for the Type~1 and CID + * drivers is set to a random value. However, mainly for debugging + * purposes, it is often necessary to use a known value as a seed so that + * the pseudo-random number sequences generated by 'random' are + * repeatable. + * + * The `random-seed` property does that. Its argument is a signed 32bit + * integer; if the value is zero or negative, the seed given by the + * `intitialRandomSeed` private DICT operator in a CFF file gets used (or + * a default value if there is no such operator). If the value is + * positive, use it instead of `initialRandomSeed`, which is consequently + * ignored. + * + * @note: + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable. It can also be set per face using @FT_Face_Properties with + * @FT_PARAM_TAG_RANDOM_SEED. + * + * @since: + * 2.8 (for 'cff' module) + * + * 2.9 (for 'type1' and 't1cid' modules) + * + */ + + + /************************************************************************** + * + * @property: + * no-long-family-names + * + * @description: + * If `PCF_CONFIG_OPTION_LONG_FAMILY_NAMES` is active while compiling + * FreeType, the PCF driver constructs long family names. + * + * There are many PCF fonts just called 'Fixed' which look completely + * different, and which have nothing to do with each other. When + * selecting 'Fixed' in KDE or Gnome one gets results that appear rather + * random, the style changes often if one changes the size and one cannot + * select some fonts at all. The improve this situation, the PCF module + * prepends the foundry name (plus a space) to the family name. It also + * checks whether there are 'wide' characters; all put together, family + * names like 'Sony Fixed' or 'Misc Fixed Wide' are constructed. + * + * If `no-long-family-names` is set, this feature gets switched off. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values 1 and 0 for 'on' and 'off', respectively). + * + * @example: + * ``` + * FT_Library library; + * FT_Bool no_long_family_names = TRUE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "pcf", + * "no-long-family-names", + * &no_long_family_names ); + * ``` + * + * @since: + * 2.8 + */ + + + /************************************************************************** + * + * @enum: + * TT_INTERPRETER_VERSION_XXX + * + * @description: + * A list of constants used for the @interpreter-version property to + * select the hinting engine for Truetype fonts. + * + * The numeric value in the constant names represents the version number + * as returned by the 'GETINFO' bytecode instruction. + * + * @values: + * TT_INTERPRETER_VERSION_35 :: + * Version~35 corresponds to MS rasterizer v.1.7 as used e.g. in + * Windows~98; only grayscale and B/W rasterizing is supported. + * + * TT_INTERPRETER_VERSION_38 :: + * Version~38 corresponds to MS rasterizer v.1.9; it is roughly + * equivalent to the hinting provided by DirectWrite ClearType (as can + * be found, for example, in the Internet Explorer~9 running on + * Windows~7). It is used in FreeType to select the 'Infinality' + * subpixel hinting code. The code may be removed in a future version. + * + * TT_INTERPRETER_VERSION_40 :: + * Version~40 corresponds to MS rasterizer v.2.1; it is roughly + * equivalent to the hinting provided by DirectWrite ClearType (as can + * be found, for example, in Microsoft's Edge Browser on Windows~10). + * It is used in FreeType to select the 'minimal' subpixel hinting + * code, a stripped-down and higher performance version of the + * 'Infinality' code. + * + * @note: + * This property controls the behaviour of the bytecode interpreter and + * thus how outlines get hinted. It does **not** control how glyph get + * rasterized! In particular, it does not control subpixel color + * filtering. + * + * If FreeType has not been compiled with the configuration option + * `TT_CONFIG_OPTION_SUBPIXEL_HINTING`, selecting version~38 or~40 causes + * an `FT_Err_Unimplemented_Feature` error. + * + * Depending on the graphics framework, Microsoft uses different bytecode + * and rendering engines. As a consequence, the version numbers returned + * by a call to the 'GETINFO' bytecode instruction are more convoluted + * than desired. + * + * Here are two tables that try to shed some light on the possible values + * for the MS rasterizer engine, together with the additional features + * introduced by it. + * + * ``` + * GETINFO framework version feature + * ------------------------------------------------------------------- + * 3 GDI (Win 3.1), v1.0 16-bit, first version + * TrueImage + * 33 GDI (Win NT 3.1), v1.5 32-bit + * HP Laserjet + * 34 GDI (Win 95) v1.6 font smoothing, + * new SCANTYPE opcode + * 35 GDI (Win 98/2000) v1.7 (UN)SCALED_COMPONENT_OFFSET + * bits in composite glyphs + * 36 MGDI (Win CE 2) v1.6+ classic ClearType + * 37 GDI (XP and later), v1.8 ClearType + * GDI+ old (before Vista) + * 38 GDI+ old (Vista, Win 7), v1.9 subpixel ClearType, + * WPF Y-direction ClearType, + * additional error checking + * 39 DWrite (before Win 8) v2.0 subpixel ClearType flags + * in GETINFO opcode, + * bug fixes + * 40 GDI+ (after Win 7), v2.1 Y-direction ClearType flag + * DWrite (Win 8) in GETINFO opcode, + * Gray ClearType + * ``` + * + * The 'version' field gives a rough orientation only, since some + * applications provided certain features much earlier (as an example, + * Microsoft Reader used subpixel and Y-direction ClearType already in + * Windows 2000). Similarly, updates to a given framework might include + * improved hinting support. + * + * ``` + * version sampling rendering comment + * x y x y + * -------------------------------------------------------------- + * v1.0 normal normal B/W B/W bi-level + * v1.6 high high gray gray grayscale + * v1.8 high normal color-filter B/W (GDI) ClearType + * v1.9 high high color-filter gray Color ClearType + * v2.1 high normal gray B/W Gray ClearType + * v2.1 high high gray gray Gray ClearType + * ``` + * + * Color and Gray ClearType are the two available variants of + * 'Y-direction ClearType', meaning grayscale rasterization along the + * Y-direction; the name used in the TrueType specification for this + * feature is 'symmetric smoothing'. 'Classic ClearType' is the original + * algorithm used before introducing a modified version in Win~XP. + * Another name for v1.6's grayscale rendering is 'font smoothing', and + * 'Color ClearType' is sometimes also called 'DWrite ClearType'. To + * differentiate between today's Color ClearType and the earlier + * ClearType variant with B/W rendering along the vertical axis, the + * latter is sometimes called 'GDI ClearType'. + * + * 'Normal' and 'high' sampling describe the (virtual) resolution to + * access the rasterized outline after the hinting process. 'Normal' + * means 1 sample per grid line (i.e., B/W). In the current Microsoft + * implementation, 'high' means an extra virtual resolution of 16x16 (or + * 16x1) grid lines per pixel for bytecode instructions like 'MIRP'. + * After hinting, these 16 grid lines are mapped to 6x5 (or 6x1) grid + * lines for color filtering if Color ClearType is activated. + * + * Note that 'Gray ClearType' is essentially the same as v1.6's grayscale + * rendering. However, the GETINFO instruction handles it differently: + * v1.6 returns bit~12 (hinting for grayscale), while v2.1 returns + * bits~13 (hinting for ClearType), 18 (symmetrical smoothing), and~19 + * (Gray ClearType). Also, this mode respects bits 2 and~3 for the + * version~1 gasp table exclusively (like Color ClearType), while v1.6 + * only respects the values of version~0 (bits 0 and~1). + * + * Keep in mind that the features of the above interpreter versions might + * not map exactly to FreeType features or behavior because it is a + * fundamentally different library with different internals. + * + */ +#define TT_INTERPRETER_VERSION_35 35 +#define TT_INTERPRETER_VERSION_38 38 +#define TT_INTERPRETER_VERSION_40 40 + + + /************************************************************************** + * + * @property: + * interpreter-version + * + * @description: + * Currently, three versions are available, two representing the bytecode + * interpreter with subpixel hinting support (old 'Infinality' code and + * new stripped-down and higher performance 'minimal' code) and one + * without, respectively. The default is subpixel support if + * `TT_CONFIG_OPTION_SUBPIXEL_HINTING` is defined, and no subpixel + * support otherwise (since it isn't available then). + * + * If subpixel hinting is on, many TrueType bytecode instructions behave + * differently compared to B/W or grayscale rendering (except if 'native + * ClearType' is selected by the font). Microsoft's main idea is to + * render at a much increased horizontal resolution, then sampling down + * the created output to subpixel precision. However, many older fonts + * are not suited to this and must be specially taken care of by applying + * (hardcoded) tweaks in Microsoft's interpreter. + * + * Details on subpixel hinting and some of the necessary tweaks can be + * found in Greg Hitchcock's whitepaper at + * 'https://www.microsoft.com/typography/cleartype/truetypecleartype.aspx'. + * Note that FreeType currently doesn't really 'subpixel hint' (6x1, 6x2, + * or 6x5 supersampling) like discussed in the paper. Depending on the + * chosen interpreter, it simply ignores instructions on vertical stems + * to arrive at very similar results. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * This property can be set via the `FREETYPE_PROPERTIES` environment + * variable (using values '35', '38', or '40'). + * + * @example: + * The following example code demonstrates how to deactivate subpixel + * hinting (omitting the error handling). + * + * ``` + * FT_Library library; + * FT_Face face; + * FT_UInt interpreter_version = TT_INTERPRETER_VERSION_35; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "truetype", + * "interpreter-version", + * &interpreter_version ); + * ``` + * + * @since: + * 2.5 + */ + + + /************************************************************************** + * + * @property: + * svg-hooks + * + * @description: + * Set up the interface between FreeType and an extern SVG rendering + * library like 'librsvg'. All details on the function hooks can be + * found in section @svg_fonts. + * + * @example: + * The following example code expects that the four hook functions + * `svg_*` are defined elsewhere. Error handling is omitted, too. + * + * ``` + * FT_Library library; + * SVG_RendererHooks hooks = { + * (SVG_Lib_Init_Func)svg_init, + * (SVG_Lib_Free_Func)svg_free, + * (SVG_Lib_Render_Func)svg_render, + * (SVG_Lib_Preset_Slot_Func)svg_preset_slot }; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "ot-svg", + * "svg-hooks", &hooks ); + * ``` + * + * @since: + * 2.12 + */ + + + /************************************************************************** + * + * @property: + * glyph-to-script-map + * + * @description: + * **Experimental only** + * + * The auto-hinter provides various script modules to hint glyphs. + * Examples of supported scripts are Latin or CJK. Before a glyph is + * auto-hinted, the Unicode character map of the font gets examined, and + * the script is then determined based on Unicode character ranges, see + * below. + * + * OpenType fonts, however, often provide much more glyphs than character + * codes (small caps, superscripts, ligatures, swashes, etc.), to be + * controlled by so-called 'features'. Handling OpenType features can be + * quite complicated and thus needs a separate library on top of + * FreeType. + * + * The mapping between glyph indices and scripts (in the auto-hinter + * sense, see the @FT_AUTOHINTER_SCRIPT_XXX values) is stored as an array + * with `num_glyphs` elements, as found in the font's @FT_Face structure. + * The `glyph-to-script-map` property returns a pointer to this array, + * which can be modified as needed. Note that the modification should + * happen before the first glyph gets processed by the auto-hinter so + * that the global analysis of the font shapes actually uses the modified + * mapping. + * + * @example: + * The following example code demonstrates how to access it (omitting the + * error handling). + * + * ``` + * FT_Library library; + * FT_Face face; + * FT_Prop_GlyphToScriptMap prop; + * + * + * FT_Init_FreeType( &library ); + * FT_New_Face( library, "foo.ttf", 0, &face ); + * + * prop.face = face; + * + * FT_Property_Get( library, "autofitter", + * "glyph-to-script-map", &prop ); + * + * // adjust `prop.map' as needed right here + * + * FT_Load_Glyph( face, ..., FT_LOAD_FORCE_AUTOHINT ); + * ``` + * + * @since: + * 2.4.11 + * + */ + + + /************************************************************************** + * + * @enum: + * FT_AUTOHINTER_SCRIPT_XXX + * + * @description: + * **Experimental only** + * + * A list of constants used for the @glyph-to-script-map property to + * specify the script submodule the auto-hinter should use for hinting a + * particular glyph. + * + * @values: + * FT_AUTOHINTER_SCRIPT_NONE :: + * Don't auto-hint this glyph. + * + * FT_AUTOHINTER_SCRIPT_LATIN :: + * Apply the latin auto-hinter. For the auto-hinter, 'latin' is a very + * broad term, including Cyrillic and Greek also since characters from + * those scripts share the same design constraints. + * + * By default, characters from the following Unicode ranges are + * assigned to this submodule. + * + * ``` + * U+0020 - U+007F // Basic Latin (no control characters) + * U+00A0 - U+00FF // Latin-1 Supplement (no control characters) + * U+0100 - U+017F // Latin Extended-A + * U+0180 - U+024F // Latin Extended-B + * U+0250 - U+02AF // IPA Extensions + * U+02B0 - U+02FF // Spacing Modifier Letters + * U+0300 - U+036F // Combining Diacritical Marks + * U+0370 - U+03FF // Greek and Coptic + * U+0400 - U+04FF // Cyrillic + * U+0500 - U+052F // Cyrillic Supplement + * U+1D00 - U+1D7F // Phonetic Extensions + * U+1D80 - U+1DBF // Phonetic Extensions Supplement + * U+1DC0 - U+1DFF // Combining Diacritical Marks Supplement + * U+1E00 - U+1EFF // Latin Extended Additional + * U+1F00 - U+1FFF // Greek Extended + * U+2000 - U+206F // General Punctuation + * U+2070 - U+209F // Superscripts and Subscripts + * U+20A0 - U+20CF // Currency Symbols + * U+2150 - U+218F // Number Forms + * U+2460 - U+24FF // Enclosed Alphanumerics + * U+2C60 - U+2C7F // Latin Extended-C + * U+2DE0 - U+2DFF // Cyrillic Extended-A + * U+2E00 - U+2E7F // Supplemental Punctuation + * U+A640 - U+A69F // Cyrillic Extended-B + * U+A720 - U+A7FF // Latin Extended-D + * U+FB00 - U+FB06 // Alphab. Present. Forms (Latin Ligatures) + * U+1D400 - U+1D7FF // Mathematical Alphanumeric Symbols + * U+1F100 - U+1F1FF // Enclosed Alphanumeric Supplement + * ``` + * + * FT_AUTOHINTER_SCRIPT_CJK :: + * Apply the CJK auto-hinter, covering Chinese, Japanese, Korean, old + * Vietnamese, and some other scripts. + * + * By default, characters from the following Unicode ranges are + * assigned to this submodule. + * + * ``` + * U+1100 - U+11FF // Hangul Jamo + * U+2E80 - U+2EFF // CJK Radicals Supplement + * U+2F00 - U+2FDF // Kangxi Radicals + * U+2FF0 - U+2FFF // Ideographic Description Characters + * U+3000 - U+303F // CJK Symbols and Punctuation + * U+3040 - U+309F // Hiragana + * U+30A0 - U+30FF // Katakana + * U+3100 - U+312F // Bopomofo + * U+3130 - U+318F // Hangul Compatibility Jamo + * U+3190 - U+319F // Kanbun + * U+31A0 - U+31BF // Bopomofo Extended + * U+31C0 - U+31EF // CJK Strokes + * U+31F0 - U+31FF // Katakana Phonetic Extensions + * U+3200 - U+32FF // Enclosed CJK Letters and Months + * U+3300 - U+33FF // CJK Compatibility + * U+3400 - U+4DBF // CJK Unified Ideographs Extension A + * U+4DC0 - U+4DFF // Yijing Hexagram Symbols + * U+4E00 - U+9FFF // CJK Unified Ideographs + * U+A960 - U+A97F // Hangul Jamo Extended-A + * U+AC00 - U+D7AF // Hangul Syllables + * U+D7B0 - U+D7FF // Hangul Jamo Extended-B + * U+F900 - U+FAFF // CJK Compatibility Ideographs + * U+FE10 - U+FE1F // Vertical forms + * U+FE30 - U+FE4F // CJK Compatibility Forms + * U+FF00 - U+FFEF // Halfwidth and Fullwidth Forms + * U+1B000 - U+1B0FF // Kana Supplement + * U+1D300 - U+1D35F // Tai Xuan Hing Symbols + * U+1F200 - U+1F2FF // Enclosed Ideographic Supplement + * U+20000 - U+2A6DF // CJK Unified Ideographs Extension B + * U+2A700 - U+2B73F // CJK Unified Ideographs Extension C + * U+2B740 - U+2B81F // CJK Unified Ideographs Extension D + * U+2F800 - U+2FA1F // CJK Compatibility Ideographs Supplement + * ``` + * + * FT_AUTOHINTER_SCRIPT_INDIC :: + * Apply the indic auto-hinter, covering all major scripts from the + * Indian sub-continent and some other related scripts like Thai, Lao, + * or Tibetan. + * + * By default, characters from the following Unicode ranges are + * assigned to this submodule. + * + * ``` + * U+0900 - U+0DFF // Indic Range + * U+0F00 - U+0FFF // Tibetan + * U+1900 - U+194F // Limbu + * U+1B80 - U+1BBF // Sundanese + * U+A800 - U+A82F // Syloti Nagri + * U+ABC0 - U+ABFF // Meetei Mayek + * U+11800 - U+118DF // Sharada + * ``` + * + * Note that currently Indic support is rudimentary only, missing blue + * zone support. + * + * @since: + * 2.4.11 + * + */ +#define FT_AUTOHINTER_SCRIPT_NONE 0 +#define FT_AUTOHINTER_SCRIPT_LATIN 1 +#define FT_AUTOHINTER_SCRIPT_CJK 2 +#define FT_AUTOHINTER_SCRIPT_INDIC 3 + + + /************************************************************************** + * + * @struct: + * FT_Prop_GlyphToScriptMap + * + * @description: + * **Experimental only** + * + * The data exchange structure for the @glyph-to-script-map property. + * + * @since: + * 2.4.11 + * + */ + typedef struct FT_Prop_GlyphToScriptMap_ + { + FT_Face face; + FT_UShort* map; + + } FT_Prop_GlyphToScriptMap; + + + /************************************************************************** + * + * @property: + * fallback-script + * + * @description: + * **Experimental only** + * + * If no auto-hinter script module can be assigned to a glyph, a fallback + * script gets assigned to it (see also the @glyph-to-script-map + * property). By default, this is @FT_AUTOHINTER_SCRIPT_CJK. Using the + * `fallback-script` property, this fallback value can be changed. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * It's important to use the right timing for changing this value: The + * creation of the glyph-to-script map that eventually uses the fallback + * script value gets triggered either by setting or reading a + * face-specific property like @glyph-to-script-map, or by auto-hinting + * any glyph from that face. In particular, if you have already created + * an @FT_Face structure but not loaded any glyph (using the + * auto-hinter), a change of the fallback script will affect this face. + * + * @example: + * ``` + * FT_Library library; + * FT_UInt fallback_script = FT_AUTOHINTER_SCRIPT_NONE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "autofitter", + * "fallback-script", &fallback_script ); + * ``` + * + * @since: + * 2.4.11 + * + */ + + + /************************************************************************** + * + * @property: + * default-script + * + * @description: + * **Experimental only** + * + * If FreeType gets compiled with `FT_CONFIG_OPTION_USE_HARFBUZZ` to make + * the HarfBuzz library access OpenType features for getting better glyph + * coverages, this property sets the (auto-fitter) script to be used for + * the default (OpenType) script data of a font's GSUB table. Features + * for the default script are intended for all scripts not explicitly + * handled in GSUB; an example is a 'dlig' feature, containing the + * combination of the characters 'T', 'E', and 'L' to form a 'TEL' + * ligature. + * + * By default, this is @FT_AUTOHINTER_SCRIPT_LATIN. Using the + * `default-script` property, this default value can be changed. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * It's important to use the right timing for changing this value: The + * creation of the glyph-to-script map that eventually uses the default + * script value gets triggered either by setting or reading a + * face-specific property like @glyph-to-script-map, or by auto-hinting + * any glyph from that face. In particular, if you have already created + * an @FT_Face structure but not loaded any glyph (using the + * auto-hinter), a change of the default script will affect this face. + * + * @example: + * ``` + * FT_Library library; + * FT_UInt default_script = FT_AUTOHINTER_SCRIPT_NONE; + * + * + * FT_Init_FreeType( &library ); + * + * FT_Property_Set( library, "autofitter", + * "default-script", &default_script ); + * ``` + * + * @since: + * 2.5.3 + * + */ + + + /************************************************************************** + * + * @property: + * increase-x-height + * + * @description: + * For ppem values in the range 6~<= ppem <= `increase-x-height`, round + * up the font's x~height much more often than normally. If the value is + * set to~0, which is the default, this feature is switched off. Use + * this property to improve the legibility of small font sizes if + * necessary. + * + * @note: + * This property can be used with @FT_Property_Get also. + * + * Set this value right after calling @FT_Set_Char_Size, but before + * loading any glyph (using the auto-hinter). + * + * @example: + * ``` + * FT_Library library; + * FT_Face face; + * FT_Prop_IncreaseXHeight prop; + * + * + * FT_Init_FreeType( &library ); + * FT_New_Face( library, "foo.ttf", 0, &face ); + * FT_Set_Char_Size( face, 10 * 64, 0, 72, 0 ); + * + * prop.face = face; + * prop.limit = 14; + * + * FT_Property_Set( library, "autofitter", + * "increase-x-height", &prop ); + * ``` + * + * @since: + * 2.4.11 + * + */ + + + /************************************************************************** + * + * @struct: + * FT_Prop_IncreaseXHeight + * + * @description: + * The data exchange structure for the @increase-x-height property. + * + */ + typedef struct FT_Prop_IncreaseXHeight_ + { + FT_Face face; + FT_UInt limit; + + } FT_Prop_IncreaseXHeight; + + + /************************************************************************** + * + * @property: + * warping + * + * @description: + * **Obsolete** + * + * This property was always experimental and probably never worked + * correctly. It was entirely removed from the FreeType~2 sources. This + * entry is only here for historical reference. + * + * Warping only worked in 'normal' auto-hinting mode replacing it. The + * idea of the code was to slightly scale and shift a glyph along the + * non-hinted dimension (which is usually the horizontal axis) so that as + * much of its segments were aligned (more or less) to the grid. To find + * out a glyph's optimal scaling and shifting value, various parameter + * combinations were tried and scored. + * + * @since: + * 2.6 + * + */ + + + /* */ + + +FT_END_HEADER + + +#endif /* FTDRIVER_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/fterrdef.h b/external/lumin/thirdparty/freetype/include/freetype/fterrdef.h new file mode 100644 index 0000000..a3acfce --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/fterrdef.h @@ -0,0 +1,283 @@ +/**************************************************************************** + * + * fterrdef.h + * + * FreeType error codes (specification). + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * @section: + * error_code_values + * + * @title: + * Error Code Values + * + * @abstract: + * All possible error codes returned by FreeType functions. + * + * @description: + * The list below is taken verbatim from the file `fterrdef.h` (loaded + * automatically by including `FT_FREETYPE_H`). The first argument of the + * `FT_ERROR_DEF_` macro is the error label; by default, the prefix + * `FT_Err_` gets added so that you get error names like + * `FT_Err_Cannot_Open_Resource`. The second argument is the error code, + * and the last argument an error string, which is not used by FreeType. + * + * Within your application you should **only** use error names and + * **never** its numeric values! The latter might (and actually do) + * change in forthcoming FreeType versions. + * + * Macro `FT_NOERRORDEF_` defines `FT_Err_Ok`, which is always zero. See + * the 'Error Enumerations' subsection how to automatically generate a + * list of error strings. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_Err_XXX + * + */ + + /* generic errors */ + + FT_NOERRORDEF_( Ok, 0x00, + "no error" ) + + FT_ERRORDEF_( Cannot_Open_Resource, 0x01, + "cannot open resource" ) + FT_ERRORDEF_( Unknown_File_Format, 0x02, + "unknown file format" ) + FT_ERRORDEF_( Invalid_File_Format, 0x03, + "broken file" ) + FT_ERRORDEF_( Invalid_Version, 0x04, + "invalid FreeType version" ) + FT_ERRORDEF_( Lower_Module_Version, 0x05, + "module version is too low" ) + FT_ERRORDEF_( Invalid_Argument, 0x06, + "invalid argument" ) + FT_ERRORDEF_( Unimplemented_Feature, 0x07, + "unimplemented feature" ) + FT_ERRORDEF_( Invalid_Table, 0x08, + "broken table" ) + FT_ERRORDEF_( Invalid_Offset, 0x09, + "broken offset within table" ) + FT_ERRORDEF_( Array_Too_Large, 0x0A, + "array allocation size too large" ) + FT_ERRORDEF_( Missing_Module, 0x0B, + "missing module" ) + FT_ERRORDEF_( Missing_Property, 0x0C, + "missing property" ) + + /* glyph/character errors */ + + FT_ERRORDEF_( Invalid_Glyph_Index, 0x10, + "invalid glyph index" ) + FT_ERRORDEF_( Invalid_Character_Code, 0x11, + "invalid character code" ) + FT_ERRORDEF_( Invalid_Glyph_Format, 0x12, + "unsupported glyph image format" ) + FT_ERRORDEF_( Cannot_Render_Glyph, 0x13, + "cannot render this glyph format" ) + FT_ERRORDEF_( Invalid_Outline, 0x14, + "invalid outline" ) + FT_ERRORDEF_( Invalid_Composite, 0x15, + "invalid composite glyph" ) + FT_ERRORDEF_( Too_Many_Hints, 0x16, + "too many hints" ) + FT_ERRORDEF_( Invalid_Pixel_Size, 0x17, + "invalid pixel size" ) + FT_ERRORDEF_( Invalid_SVG_Document, 0x18, + "invalid SVG document" ) + + /* handle errors */ + + FT_ERRORDEF_( Invalid_Handle, 0x20, + "invalid object handle" ) + FT_ERRORDEF_( Invalid_Library_Handle, 0x21, + "invalid library handle" ) + FT_ERRORDEF_( Invalid_Driver_Handle, 0x22, + "invalid module handle" ) + FT_ERRORDEF_( Invalid_Face_Handle, 0x23, + "invalid face handle" ) + FT_ERRORDEF_( Invalid_Size_Handle, 0x24, + "invalid size handle" ) + FT_ERRORDEF_( Invalid_Slot_Handle, 0x25, + "invalid glyph slot handle" ) + FT_ERRORDEF_( Invalid_CharMap_Handle, 0x26, + "invalid charmap handle" ) + FT_ERRORDEF_( Invalid_Cache_Handle, 0x27, + "invalid cache manager handle" ) + FT_ERRORDEF_( Invalid_Stream_Handle, 0x28, + "invalid stream handle" ) + + /* driver errors */ + + FT_ERRORDEF_( Too_Many_Drivers, 0x30, + "too many modules" ) + FT_ERRORDEF_( Too_Many_Extensions, 0x31, + "too many extensions" ) + + /* memory errors */ + + FT_ERRORDEF_( Out_Of_Memory, 0x40, + "out of memory" ) + FT_ERRORDEF_( Unlisted_Object, 0x41, + "unlisted object" ) + + /* stream errors */ + + FT_ERRORDEF_( Cannot_Open_Stream, 0x51, + "cannot open stream" ) + FT_ERRORDEF_( Invalid_Stream_Seek, 0x52, + "invalid stream seek" ) + FT_ERRORDEF_( Invalid_Stream_Skip, 0x53, + "invalid stream skip" ) + FT_ERRORDEF_( Invalid_Stream_Read, 0x54, + "invalid stream read" ) + FT_ERRORDEF_( Invalid_Stream_Operation, 0x55, + "invalid stream operation" ) + FT_ERRORDEF_( Invalid_Frame_Operation, 0x56, + "invalid frame operation" ) + FT_ERRORDEF_( Nested_Frame_Access, 0x57, + "nested frame access" ) + FT_ERRORDEF_( Invalid_Frame_Read, 0x58, + "invalid frame read" ) + + /* raster errors */ + + FT_ERRORDEF_( Raster_Uninitialized, 0x60, + "raster uninitialized" ) + FT_ERRORDEF_( Raster_Corrupted, 0x61, + "raster corrupted" ) + FT_ERRORDEF_( Raster_Overflow, 0x62, + "raster overflow" ) + FT_ERRORDEF_( Raster_Negative_Height, 0x63, + "negative height while rastering" ) + + /* cache errors */ + + FT_ERRORDEF_( Too_Many_Caches, 0x70, + "too many registered caches" ) + + /* TrueType and SFNT errors */ + + FT_ERRORDEF_( Invalid_Opcode, 0x80, + "invalid opcode" ) + FT_ERRORDEF_( Too_Few_Arguments, 0x81, + "too few arguments" ) + FT_ERRORDEF_( Stack_Overflow, 0x82, + "stack overflow" ) + FT_ERRORDEF_( Code_Overflow, 0x83, + "code overflow" ) + FT_ERRORDEF_( Bad_Argument, 0x84, + "bad argument" ) + FT_ERRORDEF_( Divide_By_Zero, 0x85, + "division by zero" ) + FT_ERRORDEF_( Invalid_Reference, 0x86, + "invalid reference" ) + FT_ERRORDEF_( Debug_OpCode, 0x87, + "found debug opcode" ) + FT_ERRORDEF_( ENDF_In_Exec_Stream, 0x88, + "found ENDF opcode in execution stream" ) + FT_ERRORDEF_( Nested_DEFS, 0x89, + "nested DEFS" ) + FT_ERRORDEF_( Invalid_CodeRange, 0x8A, + "invalid code range" ) + FT_ERRORDEF_( Execution_Too_Long, 0x8B, + "execution context too long" ) + FT_ERRORDEF_( Too_Many_Function_Defs, 0x8C, + "too many function definitions" ) + FT_ERRORDEF_( Too_Many_Instruction_Defs, 0x8D, + "too many instruction definitions" ) + FT_ERRORDEF_( Table_Missing, 0x8E, + "SFNT font table missing" ) + FT_ERRORDEF_( Horiz_Header_Missing, 0x8F, + "horizontal header (hhea) table missing" ) + FT_ERRORDEF_( Locations_Missing, 0x90, + "locations (loca) table missing" ) + FT_ERRORDEF_( Name_Table_Missing, 0x91, + "name table missing" ) + FT_ERRORDEF_( CMap_Table_Missing, 0x92, + "character map (cmap) table missing" ) + FT_ERRORDEF_( Hmtx_Table_Missing, 0x93, + "horizontal metrics (hmtx) table missing" ) + FT_ERRORDEF_( Post_Table_Missing, 0x94, + "PostScript (post) table missing" ) + FT_ERRORDEF_( Invalid_Horiz_Metrics, 0x95, + "invalid horizontal metrics" ) + FT_ERRORDEF_( Invalid_CharMap_Format, 0x96, + "invalid character map (cmap) format" ) + FT_ERRORDEF_( Invalid_PPem, 0x97, + "invalid ppem value" ) + FT_ERRORDEF_( Invalid_Vert_Metrics, 0x98, + "invalid vertical metrics" ) + FT_ERRORDEF_( Could_Not_Find_Context, 0x99, + "could not find context" ) + FT_ERRORDEF_( Invalid_Post_Table_Format, 0x9A, + "invalid PostScript (post) table format" ) + FT_ERRORDEF_( Invalid_Post_Table, 0x9B, + "invalid PostScript (post) table" ) + FT_ERRORDEF_( DEF_In_Glyf_Bytecode, 0x9C, + "found FDEF or IDEF opcode in glyf bytecode" ) + FT_ERRORDEF_( Missing_Bitmap, 0x9D, + "missing bitmap in strike" ) + FT_ERRORDEF_( Missing_SVG_Hooks, 0x9E, + "SVG hooks have not been set" ) + + /* CFF, CID, and Type 1 errors */ + + FT_ERRORDEF_( Syntax_Error, 0xA0, + "opcode syntax error" ) + FT_ERRORDEF_( Stack_Underflow, 0xA1, + "argument stack underflow" ) + FT_ERRORDEF_( Ignore, 0xA2, + "ignore" ) + FT_ERRORDEF_( No_Unicode_Glyph_Name, 0xA3, + "no Unicode glyph name found" ) + FT_ERRORDEF_( Glyph_Too_Big, 0xA4, + "glyph too big for hinting" ) + + /* BDF errors */ + + FT_ERRORDEF_( Missing_Startfont_Field, 0xB0, + "`STARTFONT' field missing" ) + FT_ERRORDEF_( Missing_Font_Field, 0xB1, + "`FONT' field missing" ) + FT_ERRORDEF_( Missing_Size_Field, 0xB2, + "`SIZE' field missing" ) + FT_ERRORDEF_( Missing_Fontboundingbox_Field, 0xB3, + "`FONTBOUNDINGBOX' field missing" ) + FT_ERRORDEF_( Missing_Chars_Field, 0xB4, + "`CHARS' field missing" ) + FT_ERRORDEF_( Missing_Startchar_Field, 0xB5, + "`STARTCHAR' field missing" ) + FT_ERRORDEF_( Missing_Encoding_Field, 0xB6, + "`ENCODING' field missing" ) + FT_ERRORDEF_( Missing_Bbx_Field, 0xB7, + "`BBX' field missing" ) + FT_ERRORDEF_( Bbx_Too_Big, 0xB8, + "`BBX' too big" ) + FT_ERRORDEF_( Corrupted_Font_Header, 0xB9, + "Font header corrupted or missing fields" ) + FT_ERRORDEF_( Corrupted_Font_Glyphs, 0xBA, + "Font glyphs corrupted or missing fields" ) + + /* */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/fterrors.h b/external/lumin/thirdparty/freetype/include/freetype/fterrors.h new file mode 100644 index 0000000..ff1b375 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/fterrors.h @@ -0,0 +1,296 @@ +/**************************************************************************** + * + * fterrors.h + * + * FreeType error code handling (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * @section: + * error_enumerations + * + * @title: + * Error Enumerations + * + * @abstract: + * How to handle errors and error strings. + * + * @description: + * The header file `fterrors.h` (which is automatically included by + * `freetype.h` defines the handling of FreeType's enumeration + * constants. It can also be used to generate error message strings + * with a small macro trick explained below. + * + * **Error Formats** + * + * The configuration macro `FT_CONFIG_OPTION_USE_MODULE_ERRORS` can be + * defined in `ftoption.h` in order to make the higher byte indicate the + * module where the error has happened (this is not compatible with + * standard builds of FreeType~2, however). See the file `ftmoderr.h` + * for more details. + * + * **Error Message Strings** + * + * Error definitions are set up with special macros that allow client + * applications to build a table of error message strings. The strings + * are not included in a normal build of FreeType~2 to save space (most + * client applications do not use them). + * + * To do so, you have to define the following macros before including + * this file. + * + * ``` + * FT_ERROR_START_LIST + * ``` + * + * This macro is called before anything else to define the start of the + * error list. It is followed by several `FT_ERROR_DEF` calls. + * + * ``` + * FT_ERROR_DEF( e, v, s ) + * ``` + * + * This macro is called to define one single error. 'e' is the error + * code identifier (e.g., `Invalid_Argument`), 'v' is the error's + * numerical value, and 's' is the corresponding error string. + * + * ``` + * FT_ERROR_END_LIST + * ``` + * + * This macro ends the list. + * + * Additionally, you have to undefine `FTERRORS_H_` before #including + * this file. + * + * Here is a simple example. + * + * ``` + * #undef FTERRORS_H_ + * #define FT_ERRORDEF( e, v, s ) { e, s }, + * #define FT_ERROR_START_LIST { + * #define FT_ERROR_END_LIST { 0, NULL } }; + * + * const struct + * { + * int err_code; + * const char* err_msg; + * } ft_errors[] = + * + * #include + * ``` + * + * An alternative to using an array is a switch statement. + * + * ``` + * #undef FTERRORS_H_ + * #define FT_ERROR_START_LIST switch ( error_code ) { + * #define FT_ERRORDEF( e, v, s ) case v: return s; + * #define FT_ERROR_END_LIST } + * ``` + * + * If you use `FT_CONFIG_OPTION_USE_MODULE_ERRORS`, `error_code` should + * be replaced with `FT_ERROR_BASE(error_code)` in the last example. + */ + + /* */ + + /* In previous FreeType versions we used `__FTERRORS_H__`. However, */ + /* using two successive underscores in a non-system symbol name */ + /* violates the C (and C++) standard, so it was changed to the */ + /* current form. In spite of this, we have to make */ + /* */ + /* ``` */ + /* #undefine __FTERRORS_H__ */ + /* ``` */ + /* */ + /* work for backward compatibility. */ + /* */ +#if !( defined( FTERRORS_H_ ) && defined ( __FTERRORS_H__ ) ) +#define FTERRORS_H_ +#define __FTERRORS_H__ + + + /* include module base error codes */ +#include + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SETUP MACROS *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#undef FT_NEED_EXTERN_C + + + /* FT_ERR_PREFIX is used as a prefix for error identifiers. */ + /* By default, we use `FT_Err_`. */ + /* */ +#ifndef FT_ERR_PREFIX +#define FT_ERR_PREFIX FT_Err_ +#endif + + + /* FT_ERR_BASE is used as the base for module-specific errors. */ + /* */ +#ifdef FT_CONFIG_OPTION_USE_MODULE_ERRORS + +#ifndef FT_ERR_BASE +#define FT_ERR_BASE FT_Mod_Err_Base +#endif + +#else + +#undef FT_ERR_BASE +#define FT_ERR_BASE 0 + +#endif /* FT_CONFIG_OPTION_USE_MODULE_ERRORS */ + + + /* If FT_ERRORDEF is not defined, we need to define a simple */ + /* enumeration type. */ + /* */ +#ifndef FT_ERRORDEF + +#define FT_INCLUDE_ERR_PROTOS + +#define FT_ERRORDEF( e, v, s ) e = v, +#define FT_ERROR_START_LIST enum { +#define FT_ERROR_END_LIST FT_ERR_CAT( FT_ERR_PREFIX, Max ) }; + +#ifdef __cplusplus +#define FT_NEED_EXTERN_C + extern "C" { +#endif + +#endif /* !FT_ERRORDEF */ + + + /* this macro is used to define an error */ +#define FT_ERRORDEF_( e, v, s ) \ + FT_ERRORDEF( FT_ERR_CAT( FT_ERR_PREFIX, e ), v + FT_ERR_BASE, s ) + + /* this is only used for _Err_Ok, which must be 0! */ +#define FT_NOERRORDEF_( e, v, s ) \ + FT_ERRORDEF( FT_ERR_CAT( FT_ERR_PREFIX, e ), v, s ) + + +#ifdef FT_ERROR_START_LIST + FT_ERROR_START_LIST +#endif + + + /* now include the error codes */ +#include + + +#ifdef FT_ERROR_END_LIST + FT_ERROR_END_LIST +#endif + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SIMPLE CLEANUP *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + +#ifdef FT_NEED_EXTERN_C + } +#endif + +#undef FT_ERROR_START_LIST +#undef FT_ERROR_END_LIST + +#undef FT_ERRORDEF +#undef FT_ERRORDEF_ +#undef FT_NOERRORDEF_ + +#undef FT_NEED_EXTERN_C +#undef FT_ERR_BASE + + /* FT_ERR_PREFIX is needed internally */ +#ifndef FT2_BUILD_LIBRARY +#undef FT_ERR_PREFIX +#endif + + /* FT_INCLUDE_ERR_PROTOS: Control whether function prototypes should be */ + /* included with */ + /* */ + /* #include */ + /* */ + /* This is only true where `FT_ERRORDEF` is */ + /* undefined. */ + /* */ + /* FT_ERR_PROTOS_DEFINED: Actual multiple-inclusion protection of */ + /* `fterrors.h`. */ +#ifdef FT_INCLUDE_ERR_PROTOS +#undef FT_INCLUDE_ERR_PROTOS + +#ifndef FT_ERR_PROTOS_DEFINED +#define FT_ERR_PROTOS_DEFINED + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @function: + * FT_Error_String + * + * @description: + * Retrieve the description of a valid FreeType error code. + * + * @input: + * error_code :: + * A valid FreeType error code. + * + * @return: + * A C~string or `NULL`, if any error occurred. + * + * @note: + * FreeType has to be compiled with `FT_CONFIG_OPTION_ERROR_STRINGS` or + * `FT_DEBUG_LEVEL_ERROR` to get meaningful descriptions. + * 'error_string' will be `NULL` otherwise. + * + * Module identification will be ignored: + * + * ```c + * strcmp( FT_Error_String( FT_Err_Unknown_File_Format ), + * FT_Error_String( BDF_Err_Unknown_File_Format ) ) == 0; + * ``` + */ + FT_EXPORT( const char* ) + FT_Error_String( FT_Error error_code ); + + /* */ + +FT_END_HEADER + + +#endif /* FT_ERR_PROTOS_DEFINED */ + +#endif /* FT_INCLUDE_ERR_PROTOS */ + +#endif /* !(FTERRORS_H_ && __FTERRORS_H__) */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftfntfmt.h b/external/lumin/thirdparty/freetype/include/freetype/ftfntfmt.h new file mode 100644 index 0000000..77d5535 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftfntfmt.h @@ -0,0 +1,93 @@ +/**************************************************************************** + * + * ftfntfmt.h + * + * Support functions for font formats. + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTFNTFMT_H_ +#define FTFNTFMT_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * font_formats + * + * @title: + * Font Formats + * + * @abstract: + * Getting the font format. + * + * @description: + * The single function in this section can be used to get the font format. + * Note that this information is not needed normally; however, there are + * special cases (like in PDF devices) where it is important to + * differentiate, in spite of FreeType's uniform API. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Get_Font_Format + * + * @description: + * Return a string describing the format of a given face. Possible values + * are 'TrueType', 'Type~1', 'BDF', 'PCF', 'Type~42', 'CID~Type~1', 'CFF', + * 'PFR', and 'Windows~FNT'. + * + * The return value is suitable to be used as an X11 FONT_PROPERTY. + * + * @input: + * face :: + * Input face handle. + * + * @return: + * Font format string. `NULL` in case of error. + * + * @note: + * A deprecated name for the same function is `FT_Get_X11_Font_Format`. + */ + FT_EXPORT( const char* ) + FT_Get_Font_Format( FT_Face face ); + + + /* deprecated */ + FT_EXPORT( const char* ) + FT_Get_X11_Font_Format( FT_Face face ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTFNTFMT_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftgasp.h b/external/lumin/thirdparty/freetype/include/freetype/ftgasp.h new file mode 100644 index 0000000..d4ab9b3 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftgasp.h @@ -0,0 +1,143 @@ +/**************************************************************************** + * + * ftgasp.h + * + * Access of TrueType's 'gasp' table (specification). + * + * Copyright (C) 2007-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTGASP_H_ +#define FTGASP_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * gasp_table + * + * @title: + * Gasp Table + * + * @abstract: + * Retrieving TrueType 'gasp' table entries. + * + * @description: + * The function @FT_Get_Gasp can be used to query a TrueType or OpenType + * font for specific entries in its 'gasp' table, if any. This is mainly + * useful when implementing native TrueType hinting with the bytecode + * interpreter to duplicate the Windows text rendering results. + */ + + /************************************************************************** + * + * @enum: + * FT_GASP_XXX + * + * @description: + * A list of values and/or bit-flags returned by the @FT_Get_Gasp + * function. + * + * @values: + * FT_GASP_NO_TABLE :: + * This special value means that there is no GASP table in this face. + * It is up to the client to decide what to do. + * + * FT_GASP_DO_GRIDFIT :: + * Grid-fitting and hinting should be performed at the specified ppem. + * This **really** means TrueType bytecode interpretation. If this bit + * is not set, no hinting gets applied. + * + * FT_GASP_DO_GRAY :: + * Anti-aliased rendering should be performed at the specified ppem. + * If not set, do monochrome rendering. + * + * FT_GASP_SYMMETRIC_SMOOTHING :: + * If set, smoothing along multiple axes must be used with ClearType. + * + * FT_GASP_SYMMETRIC_GRIDFIT :: + * Grid-fitting must be used with ClearType's symmetric smoothing. + * + * @note: + * The bit-flags `FT_GASP_DO_GRIDFIT` and `FT_GASP_DO_GRAY` are to be + * used for standard font rasterization only. Independently of that, + * `FT_GASP_SYMMETRIC_SMOOTHING` and `FT_GASP_SYMMETRIC_GRIDFIT` are to + * be used if ClearType is enabled (and `FT_GASP_DO_GRIDFIT` and + * `FT_GASP_DO_GRAY` are consequently ignored). + * + * 'ClearType' is Microsoft's implementation of LCD rendering, partly + * protected by patents. + * + * @since: + * 2.3.0 + */ +#define FT_GASP_NO_TABLE -1 +#define FT_GASP_DO_GRIDFIT 0x01 +#define FT_GASP_DO_GRAY 0x02 +#define FT_GASP_SYMMETRIC_GRIDFIT 0x04 +#define FT_GASP_SYMMETRIC_SMOOTHING 0x08 + + + /************************************************************************** + * + * @function: + * FT_Get_Gasp + * + * @description: + * For a TrueType or OpenType font file, return the rasterizer behaviour + * flags from the font's 'gasp' table corresponding to a given character + * pixel size. + * + * @input: + * face :: + * The source face handle. + * + * ppem :: + * The vertical character pixel size. + * + * @return: + * Bit flags (see @FT_GASP_XXX), or @FT_GASP_NO_TABLE if there is no + * 'gasp' table in the face. + * + * @note: + * If you want to use the MM functionality of OpenType variation fonts + * (i.e., using @FT_Set_Var_Design_Coordinates and friends), call this + * function **after** setting an instance since the return values can + * change. + * + * @since: + * 2.3.0 + */ + FT_EXPORT( FT_Int ) + FT_Get_Gasp( FT_Face face, + FT_UInt ppem ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGASP_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftglyph.h b/external/lumin/thirdparty/freetype/include/freetype/ftglyph.h new file mode 100644 index 0000000..6b77bd3 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftglyph.h @@ -0,0 +1,750 @@ +/**************************************************************************** + * + * ftglyph.h + * + * FreeType convenience functions to handle glyphs (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file contains the definition of several convenience functions that + * can be used by client applications to easily retrieve glyph bitmaps and + * outlines from a given face. + * + * These functions should be optional if you are writing a font server or + * text layout engine on top of FreeType. However, they are pretty handy + * for many other simple uses of the library. + * + */ + + +#ifndef FTGLYPH_H_ +#define FTGLYPH_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * glyph_management + * + * @title: + * Glyph Management + * + * @abstract: + * Generic interface to manage individual glyph data. + * + * @description: + * This section contains definitions used to manage glyph data through + * generic @FT_Glyph objects. Each of them can contain a bitmap, + * a vector outline, or even images in other formats. These objects are + * detached from @FT_Face, contrary to @FT_GlyphSlot. + * + */ + + + /* forward declaration to a private type */ + typedef struct FT_Glyph_Class_ FT_Glyph_Class; + + + /************************************************************************** + * + * @type: + * FT_Glyph + * + * @description: + * Handle to an object used to model generic glyph images. It is a + * pointer to the @FT_GlyphRec structure and can contain a glyph bitmap + * or pointer. + * + * @note: + * Glyph objects are not owned by the library. You must thus release + * them manually (through @FT_Done_Glyph) _before_ calling + * @FT_Done_FreeType. + */ + typedef struct FT_GlyphRec_* FT_Glyph; + + + /************************************************************************** + * + * @struct: + * FT_GlyphRec + * + * @description: + * The root glyph structure contains a given glyph image plus its advance + * width in 16.16 fixed-point format. + * + * @fields: + * library :: + * A handle to the FreeType library object. + * + * clazz :: + * A pointer to the glyph's class. Private. + * + * format :: + * The format of the glyph's image. + * + * advance :: + * A 16.16 vector that gives the glyph's advance width. + */ + typedef struct FT_GlyphRec_ + { + FT_Library library; + const FT_Glyph_Class* clazz; + FT_Glyph_Format format; + FT_Vector advance; + + } FT_GlyphRec; + + + /************************************************************************** + * + * @type: + * FT_BitmapGlyph + * + * @description: + * A handle to an object used to model a bitmap glyph image. This is a + * 'sub-class' of @FT_Glyph, and a pointer to @FT_BitmapGlyphRec. + */ + typedef struct FT_BitmapGlyphRec_* FT_BitmapGlyph; + + + /************************************************************************** + * + * @struct: + * FT_BitmapGlyphRec + * + * @description: + * A structure used for bitmap glyph images. This really is a + * 'sub-class' of @FT_GlyphRec. + * + * @fields: + * root :: + * The root fields of @FT_Glyph. + * + * left :: + * The left-side bearing, i.e., the horizontal distance from the + * current pen position to the left border of the glyph bitmap. + * + * top :: + * The top-side bearing, i.e., the vertical distance from the current + * pen position to the top border of the glyph bitmap. This distance + * is positive for upwards~y! + * + * bitmap :: + * A descriptor for the bitmap. + * + * @note: + * You can typecast an @FT_Glyph to @FT_BitmapGlyph if you have + * `glyph->format == FT_GLYPH_FORMAT_BITMAP`. This lets you access the + * bitmap's contents easily. + * + * The corresponding pixel buffer is always owned by @FT_BitmapGlyph and + * is thus created and destroyed with it. + */ + typedef struct FT_BitmapGlyphRec_ + { + FT_GlyphRec root; + FT_Int left; + FT_Int top; + FT_Bitmap bitmap; + + } FT_BitmapGlyphRec; + + + /************************************************************************** + * + * @type: + * FT_OutlineGlyph + * + * @description: + * A handle to an object used to model an outline glyph image. This is a + * 'sub-class' of @FT_Glyph, and a pointer to @FT_OutlineGlyphRec. + */ + typedef struct FT_OutlineGlyphRec_* FT_OutlineGlyph; + + + /************************************************************************** + * + * @struct: + * FT_OutlineGlyphRec + * + * @description: + * A structure used for outline (vectorial) glyph images. This really is + * a 'sub-class' of @FT_GlyphRec. + * + * @fields: + * root :: + * The root @FT_Glyph fields. + * + * outline :: + * A descriptor for the outline. + * + * @note: + * You can typecast an @FT_Glyph to @FT_OutlineGlyph if you have + * `glyph->format == FT_GLYPH_FORMAT_OUTLINE`. This lets you access the + * outline's content easily. + * + * As the outline is extracted from a glyph slot, its coordinates are + * expressed normally in 26.6 pixels, unless the flag @FT_LOAD_NO_SCALE + * was used in @FT_Load_Glyph or @FT_Load_Char. + * + * The outline's tables are always owned by the object and are destroyed + * with it. + */ + typedef struct FT_OutlineGlyphRec_ + { + FT_GlyphRec root; + FT_Outline outline; + + } FT_OutlineGlyphRec; + + + /************************************************************************** + * + * @type: + * FT_SvgGlyph + * + * @description: + * A handle to an object used to model an SVG glyph. This is a + * 'sub-class' of @FT_Glyph, and a pointer to @FT_SvgGlyphRec. + * + * @since: + * 2.12 + */ + typedef struct FT_SvgGlyphRec_* FT_SvgGlyph; + + + /************************************************************************** + * + * @struct: + * FT_SvgGlyphRec + * + * @description: + * A structure used for OT-SVG glyphs. This is a 'sub-class' of + * @FT_GlyphRec. + * + * @fields: + * root :: + * The root @FT_GlyphRec fields. + * + * svg_document :: + * A pointer to the SVG document. + * + * svg_document_length :: + * The length of `svg_document`. + * + * glyph_index :: + * The index of the glyph to be rendered. + * + * metrics :: + * A metrics object storing the size information. + * + * units_per_EM :: + * The size of the EM square. + * + * start_glyph_id :: + * The first glyph ID in the glyph range covered by this document. + * + * end_glyph_id :: + * The last glyph ID in the glyph range covered by this document. + * + * transform :: + * A 2x2 transformation matrix to apply to the glyph while rendering + * it. + * + * delta :: + * Translation to apply to the glyph while rendering. + * + * @note: + * The Glyph Management API requires @FT_Glyph or its 'sub-class' to have + * all the information needed to completely define the glyph's rendering. + * Outline-based glyphs can directly apply transformations to the outline + * but this is not possible for an SVG document that hasn't been parsed. + * Therefore, the transformation is stored along with the document. In + * the absence of a 'ViewBox' or 'Width'/'Height' attribute, the size of + * the ViewPort should be assumed to be 'units_per_EM'. + */ + typedef struct FT_SvgGlyphRec_ + { + FT_GlyphRec root; + + FT_Byte* svg_document; + FT_ULong svg_document_length; + + FT_UInt glyph_index; + + FT_Size_Metrics metrics; + FT_UShort units_per_EM; + + FT_UShort start_glyph_id; + FT_UShort end_glyph_id; + + FT_Matrix transform; + FT_Vector delta; + + } FT_SvgGlyphRec; + + + /************************************************************************** + * + * @function: + * FT_New_Glyph + * + * @description: + * A function used to create a new empty glyph image. Note that the + * created @FT_Glyph object must be released with @FT_Done_Glyph. + * + * @input: + * library :: + * A handle to the FreeType library object. + * + * format :: + * The format of the glyph's image. + * + * @output: + * aglyph :: + * A handle to the glyph object. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_New_Glyph( FT_Library library, + FT_Glyph_Format format, + FT_Glyph *aglyph ); + + + /************************************************************************** + * + * @function: + * FT_Get_Glyph + * + * @description: + * A function used to extract a glyph image from a slot. Note that the + * created @FT_Glyph object must be released with @FT_Done_Glyph. + * + * @input: + * slot :: + * A handle to the source glyph slot. + * + * @output: + * aglyph :: + * A handle to the glyph object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Because `*aglyph->advance.x` and `*aglyph->advance.y` are 16.16 + * fixed-point numbers, `slot->advance.x` and `slot->advance.y` (which + * are in 26.6 fixed-point format) must be in the range ]-32768;32768[. + */ + FT_EXPORT( FT_Error ) + FT_Get_Glyph( FT_GlyphSlot slot, + FT_Glyph *aglyph ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_Copy + * + * @description: + * A function used to copy a glyph image. Note that the created + * @FT_Glyph object must be released with @FT_Done_Glyph. + * + * @input: + * source :: + * A handle to the source glyph object. + * + * @output: + * target :: + * A handle to the target glyph object. 0~in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_Copy( FT_Glyph source, + FT_Glyph *target ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_Transform + * + * @description: + * Transform a glyph image if its format is scalable. + * + * @inout: + * glyph :: + * A handle to the target glyph object. + * + * @input: + * matrix :: + * A pointer to a 2x2 matrix to apply. + * + * delta :: + * A pointer to a 2d vector to apply. Coordinates are expressed in + * 1/64th of a pixel. + * + * @return: + * FreeType error code (if not 0, the glyph format is not scalable). + * + * @note: + * The 2x2 transformation matrix is also applied to the glyph's advance + * vector. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_Transform( FT_Glyph glyph, + const FT_Matrix* matrix, + const FT_Vector* delta ); + + + /************************************************************************** + * + * @enum: + * FT_Glyph_BBox_Mode + * + * @description: + * The mode how the values of @FT_Glyph_Get_CBox are returned. + * + * @values: + * FT_GLYPH_BBOX_UNSCALED :: + * Return unscaled font units. + * + * FT_GLYPH_BBOX_SUBPIXELS :: + * Return unfitted 26.6 coordinates. + * + * FT_GLYPH_BBOX_GRIDFIT :: + * Return grid-fitted 26.6 coordinates. + * + * FT_GLYPH_BBOX_TRUNCATE :: + * Return coordinates in integer pixels. + * + * FT_GLYPH_BBOX_PIXELS :: + * Return grid-fitted pixel coordinates. + */ + typedef enum FT_Glyph_BBox_Mode_ + { + FT_GLYPH_BBOX_UNSCALED = 0, + FT_GLYPH_BBOX_SUBPIXELS = 0, + FT_GLYPH_BBOX_GRIDFIT = 1, + FT_GLYPH_BBOX_TRUNCATE = 2, + FT_GLYPH_BBOX_PIXELS = 3 + + } FT_Glyph_BBox_Mode; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Glyph_BBox_Mode` values instead */ +#define ft_glyph_bbox_unscaled FT_GLYPH_BBOX_UNSCALED +#define ft_glyph_bbox_subpixels FT_GLYPH_BBOX_SUBPIXELS +#define ft_glyph_bbox_gridfit FT_GLYPH_BBOX_GRIDFIT +#define ft_glyph_bbox_truncate FT_GLYPH_BBOX_TRUNCATE +#define ft_glyph_bbox_pixels FT_GLYPH_BBOX_PIXELS + + + /************************************************************************** + * + * @function: + * FT_Glyph_Get_CBox + * + * @description: + * Return a glyph's 'control box'. The control box encloses all the + * outline's points, including Bezier control points. Though it + * coincides with the exact bounding box for most glyphs, it can be + * slightly larger in some situations (like when rotating an outline that + * contains Bezier outside arcs). + * + * Computing the control box is very fast, while getting the bounding box + * can take much more time as it needs to walk over all segments and arcs + * in the outline. To get the latter, you can use the 'ftbbox' + * component, which is dedicated to this single task. + * + * @input: + * glyph :: + * A handle to the source glyph object. + * + * mode :: + * The mode that indicates how to interpret the returned bounding box + * values. + * + * @output: + * acbox :: + * The glyph coordinate bounding box. Coordinates are expressed in + * 1/64th of pixels if it is grid-fitted. + * + * @note: + * Coordinates are relative to the glyph origin, using the y~upwards + * convention. + * + * If the glyph has been loaded with @FT_LOAD_NO_SCALE, `bbox_mode` must + * be set to @FT_GLYPH_BBOX_UNSCALED to get unscaled font units in 26.6 + * pixel format. The value @FT_GLYPH_BBOX_SUBPIXELS is another name for + * this constant. + * + * If the font is tricky and the glyph has been loaded with + * @FT_LOAD_NO_SCALE, the resulting CBox is meaningless. To get + * reasonable values for the CBox it is necessary to load the glyph at a + * large ppem value (so that the hinting instructions can properly shift + * and scale the subglyphs), then extracting the CBox, which can be + * eventually converted back to font units. + * + * Note that the maximum coordinates are exclusive, which means that one + * can compute the width and height of the glyph image (be it in integer + * or 26.6 pixels) as: + * + * ``` + * width = bbox.xMax - bbox.xMin; + * height = bbox.yMax - bbox.yMin; + * ``` + * + * Note also that for 26.6 coordinates, if `bbox_mode` is set to + * @FT_GLYPH_BBOX_GRIDFIT, the coordinates will also be grid-fitted, + * which corresponds to: + * + * ``` + * bbox.xMin = FLOOR(bbox.xMin); + * bbox.yMin = FLOOR(bbox.yMin); + * bbox.xMax = CEILING(bbox.xMax); + * bbox.yMax = CEILING(bbox.yMax); + * ``` + * + * To get the bbox in pixel coordinates, set `bbox_mode` to + * @FT_GLYPH_BBOX_TRUNCATE. + * + * To get the bbox in grid-fitted pixel coordinates, set `bbox_mode` to + * @FT_GLYPH_BBOX_PIXELS. + */ + FT_EXPORT( void ) + FT_Glyph_Get_CBox( FT_Glyph glyph, + FT_UInt bbox_mode, + FT_BBox *acbox ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_To_Bitmap + * + * @description: + * Convert a given glyph object to a bitmap glyph object. + * + * @inout: + * the_glyph :: + * A pointer to a handle to the target glyph. + * + * @input: + * render_mode :: + * An enumeration that describes how the data is rendered. + * + * origin :: + * A pointer to a vector used to translate the glyph image before + * rendering. Can be~0 (if no translation). The origin is expressed + * in 26.6 pixels. + * + * destroy :: + * A boolean that indicates that the original glyph image should be + * destroyed by this function. It is never destroyed in case of error. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function does nothing if the glyph format isn't scalable. + * + * The glyph image is translated with the `origin` vector before + * rendering. + * + * The first parameter is a pointer to an @FT_Glyph handle that will be + * _replaced_ by this function (with newly allocated data). Typically, + * you would do something like the following (omitting error handling). + * + * ``` + * FT_Glyph glyph; + * FT_BitmapGlyph glyph_bitmap; + * + * + * // load glyph + * error = FT_Load_Char( face, glyph_index, FT_LOAD_DEFAULT ); + * + * // extract glyph image + * error = FT_Get_Glyph( face->glyph, &glyph ); + * + * // convert to a bitmap (default render mode + destroying old) + * if ( glyph->format != FT_GLYPH_FORMAT_BITMAP ) + * { + * error = FT_Glyph_To_Bitmap( &glyph, FT_RENDER_MODE_NORMAL, + * 0, 1 ); + * if ( error ) // `glyph' unchanged + * ... + * } + * + * // access bitmap content by typecasting + * glyph_bitmap = (FT_BitmapGlyph)glyph; + * + * // do funny stuff with it, like blitting/drawing + * ... + * + * // discard glyph image (bitmap or not) + * FT_Done_Glyph( glyph ); + * ``` + * + * Here is another example, again without error handling. + * + * ``` + * FT_Glyph glyphs[MAX_GLYPHS] + * + * + * ... + * + * for ( idx = 0; i < MAX_GLYPHS; i++ ) + * error = FT_Load_Glyph( face, idx, FT_LOAD_DEFAULT ) || + * FT_Get_Glyph ( face->glyph, &glyphs[idx] ); + * + * ... + * + * for ( idx = 0; i < MAX_GLYPHS; i++ ) + * { + * FT_Glyph bitmap = glyphs[idx]; + * + * + * ... + * + * // after this call, `bitmap' no longer points into + * // the `glyphs' array (and the old value isn't destroyed) + * FT_Glyph_To_Bitmap( &bitmap, FT_RENDER_MODE_MONO, 0, 0 ); + * + * ... + * + * FT_Done_Glyph( bitmap ); + * } + * + * ... + * + * for ( idx = 0; i < MAX_GLYPHS; i++ ) + * FT_Done_Glyph( glyphs[idx] ); + * ``` + */ + FT_EXPORT( FT_Error ) + FT_Glyph_To_Bitmap( FT_Glyph* the_glyph, + FT_Render_Mode render_mode, + const FT_Vector* origin, + FT_Bool destroy ); + + + /************************************************************************** + * + * @function: + * FT_Done_Glyph + * + * @description: + * Destroy a given glyph. + * + * @input: + * glyph :: + * A handle to the target glyph object. + */ + FT_EXPORT( void ) + FT_Done_Glyph( FT_Glyph glyph ); + + /* */ + + + /* other helpful functions */ + + /************************************************************************** + * + * @section: + * computations + * + */ + + + /************************************************************************** + * + * @function: + * FT_Matrix_Multiply + * + * @description: + * Perform the matrix operation `b = a*b`. + * + * @input: + * a :: + * A pointer to matrix `a`. + * + * @inout: + * b :: + * A pointer to matrix `b`. + * + * @note: + * The result is undefined if either `a` or `b` is zero. + * + * Since the function uses wrap-around arithmetic, results become + * meaningless if the arguments are very large. + */ + FT_EXPORT( void ) + FT_Matrix_Multiply( const FT_Matrix* a, + FT_Matrix* b ); + + + /************************************************************************** + * + * @function: + * FT_Matrix_Invert + * + * @description: + * Invert a 2x2 matrix. Return an error if it can't be inverted. + * + * @inout: + * matrix :: + * A pointer to the target matrix. Remains untouched in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Matrix_Invert( FT_Matrix* matrix ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGLYPH_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftgxval.h b/external/lumin/thirdparty/freetype/include/freetype/ftgxval.h new file mode 100644 index 0000000..2d3f382 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftgxval.h @@ -0,0 +1,354 @@ +/**************************************************************************** + * + * ftgxval.h + * + * FreeType API for validating TrueTypeGX/AAT tables (specification). + * + * Copyright (C) 2004-2022 by + * Masatake YAMATO, Redhat K.K, + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + +/**************************************************************************** + * + * gxvalid is derived from both gxlayout module and otvalid module. + * Development of gxlayout is supported by the Information-technology + * Promotion Agency(IPA), Japan. + * + */ + + +#ifndef FTGXVAL_H_ +#define FTGXVAL_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * gx_validation + * + * @title: + * TrueTypeGX/AAT Validation + * + * @abstract: + * An API to validate TrueTypeGX/AAT tables. + * + * @description: + * This section contains the declaration of functions to validate some + * TrueTypeGX tables (feat, mort, morx, bsln, just, kern, opbd, trak, + * prop, lcar). + * + * @order: + * FT_TrueTypeGX_Validate + * FT_TrueTypeGX_Free + * + * FT_ClassicKern_Validate + * FT_ClassicKern_Free + * + * FT_VALIDATE_GX_LENGTH + * FT_VALIDATE_GXXXX + * FT_VALIDATE_CKERNXXX + * + */ + + /************************************************************************** + * + * + * Warning: Use `FT_VALIDATE_XXX` to validate a table. + * Following definitions are for gxvalid developers. + * + * + */ + +#define FT_VALIDATE_feat_INDEX 0 +#define FT_VALIDATE_mort_INDEX 1 +#define FT_VALIDATE_morx_INDEX 2 +#define FT_VALIDATE_bsln_INDEX 3 +#define FT_VALIDATE_just_INDEX 4 +#define FT_VALIDATE_kern_INDEX 5 +#define FT_VALIDATE_opbd_INDEX 6 +#define FT_VALIDATE_trak_INDEX 7 +#define FT_VALIDATE_prop_INDEX 8 +#define FT_VALIDATE_lcar_INDEX 9 +#define FT_VALIDATE_GX_LAST_INDEX FT_VALIDATE_lcar_INDEX + + + /************************************************************************** + * + * @macro: + * FT_VALIDATE_GX_LENGTH + * + * @description: + * The number of tables checked in this module. Use it as a parameter + * for the `table-length` argument of function @FT_TrueTypeGX_Validate. + */ +#define FT_VALIDATE_GX_LENGTH ( FT_VALIDATE_GX_LAST_INDEX + 1 ) + + /* */ + + /* Up to 0x1000 is used by otvalid. + Ox2xxx is reserved for feature OT extension. */ +#define FT_VALIDATE_GX_START 0x4000 +#define FT_VALIDATE_GX_BITFIELD( tag ) \ + ( FT_VALIDATE_GX_START << FT_VALIDATE_##tag##_INDEX ) + + + /************************************************************************** + * + * @enum: + * FT_VALIDATE_GXXXX + * + * @description: + * A list of bit-field constants used with @FT_TrueTypeGX_Validate to + * indicate which TrueTypeGX/AAT Type tables should be validated. + * + * @values: + * FT_VALIDATE_feat :: + * Validate 'feat' table. + * + * FT_VALIDATE_mort :: + * Validate 'mort' table. + * + * FT_VALIDATE_morx :: + * Validate 'morx' table. + * + * FT_VALIDATE_bsln :: + * Validate 'bsln' table. + * + * FT_VALIDATE_just :: + * Validate 'just' table. + * + * FT_VALIDATE_kern :: + * Validate 'kern' table. + * + * FT_VALIDATE_opbd :: + * Validate 'opbd' table. + * + * FT_VALIDATE_trak :: + * Validate 'trak' table. + * + * FT_VALIDATE_prop :: + * Validate 'prop' table. + * + * FT_VALIDATE_lcar :: + * Validate 'lcar' table. + * + * FT_VALIDATE_GX :: + * Validate all TrueTypeGX tables (feat, mort, morx, bsln, just, kern, + * opbd, trak, prop and lcar). + * + */ + +#define FT_VALIDATE_feat FT_VALIDATE_GX_BITFIELD( feat ) +#define FT_VALIDATE_mort FT_VALIDATE_GX_BITFIELD( mort ) +#define FT_VALIDATE_morx FT_VALIDATE_GX_BITFIELD( morx ) +#define FT_VALIDATE_bsln FT_VALIDATE_GX_BITFIELD( bsln ) +#define FT_VALIDATE_just FT_VALIDATE_GX_BITFIELD( just ) +#define FT_VALIDATE_kern FT_VALIDATE_GX_BITFIELD( kern ) +#define FT_VALIDATE_opbd FT_VALIDATE_GX_BITFIELD( opbd ) +#define FT_VALIDATE_trak FT_VALIDATE_GX_BITFIELD( trak ) +#define FT_VALIDATE_prop FT_VALIDATE_GX_BITFIELD( prop ) +#define FT_VALIDATE_lcar FT_VALIDATE_GX_BITFIELD( lcar ) + +#define FT_VALIDATE_GX ( FT_VALIDATE_feat | \ + FT_VALIDATE_mort | \ + FT_VALIDATE_morx | \ + FT_VALIDATE_bsln | \ + FT_VALIDATE_just | \ + FT_VALIDATE_kern | \ + FT_VALIDATE_opbd | \ + FT_VALIDATE_trak | \ + FT_VALIDATE_prop | \ + FT_VALIDATE_lcar ) + + + /************************************************************************** + * + * @function: + * FT_TrueTypeGX_Validate + * + * @description: + * Validate various TrueTypeGX tables to assure that all offsets and + * indices are valid. The idea is that a higher-level library that + * actually does the text layout can access those tables without error + * checking (which can be quite time consuming). + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field that specifies the tables to be validated. See + * @FT_VALIDATE_GXXXX for possible values. + * + * table_length :: + * The size of the `tables` array. Normally, @FT_VALIDATE_GX_LENGTH + * should be passed. + * + * @output: + * tables :: + * The array where all validated sfnt tables are stored. The array + * itself must be allocated by a client. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with TrueTypeGX fonts, returning an error + * otherwise. + * + * After use, the application should deallocate the buffers pointed to by + * each `tables` element, by calling @FT_TrueTypeGX_Free. A `NULL` value + * indicates that the table either doesn't exist in the font, the + * application hasn't asked for validation, or the validator doesn't have + * the ability to validate the sfnt table. + */ + FT_EXPORT( FT_Error ) + FT_TrueTypeGX_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes tables[FT_VALIDATE_GX_LENGTH], + FT_UInt table_length ); + + + /************************************************************************** + * + * @function: + * FT_TrueTypeGX_Free + * + * @description: + * Free the buffer allocated by TrueTypeGX validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer allocated by @FT_TrueTypeGX_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_TrueTypeGX_Validate only. + */ + FT_EXPORT( void ) + FT_TrueTypeGX_Free( FT_Face face, + FT_Bytes table ); + + + /************************************************************************** + * + * @enum: + * FT_VALIDATE_CKERNXXX + * + * @description: + * A list of bit-field constants used with @FT_ClassicKern_Validate to + * indicate the classic kern dialect or dialects. If the selected type + * doesn't fit, @FT_ClassicKern_Validate regards the table as invalid. + * + * @values: + * FT_VALIDATE_MS :: + * Handle the 'kern' table as a classic Microsoft kern table. + * + * FT_VALIDATE_APPLE :: + * Handle the 'kern' table as a classic Apple kern table. + * + * FT_VALIDATE_CKERN :: + * Handle the 'kern' as either classic Apple or Microsoft kern table. + */ +#define FT_VALIDATE_MS ( FT_VALIDATE_GX_START << 0 ) +#define FT_VALIDATE_APPLE ( FT_VALIDATE_GX_START << 1 ) + +#define FT_VALIDATE_CKERN ( FT_VALIDATE_MS | FT_VALIDATE_APPLE ) + + + /************************************************************************** + * + * @function: + * FT_ClassicKern_Validate + * + * @description: + * Validate classic (16-bit format) kern table to assure that the + * offsets and indices are valid. The idea is that a higher-level + * library that actually does the text layout can access those tables + * without error checking (which can be quite time consuming). + * + * The 'kern' table validator in @FT_TrueTypeGX_Validate deals with both + * the new 32-bit format and the classic 16-bit format, while + * FT_ClassicKern_Validate only supports the classic 16-bit format. + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field that specifies the dialect to be validated. See + * @FT_VALIDATE_CKERNXXX for possible values. + * + * @output: + * ckern_table :: + * A pointer to the kern table. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * After use, the application should deallocate the buffers pointed to by + * `ckern_table`, by calling @FT_ClassicKern_Free. A `NULL` value + * indicates that the table doesn't exist in the font. + */ + FT_EXPORT( FT_Error ) + FT_ClassicKern_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes *ckern_table ); + + + /************************************************************************** + * + * @function: + * FT_ClassicKern_Free + * + * @description: + * Free the buffer allocated by classic Kern validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer that is allocated by + * @FT_ClassicKern_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_ClassicKern_Validate only. + */ + FT_EXPORT( void ) + FT_ClassicKern_Free( FT_Face face, + FT_Bytes table ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGXVAL_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftgzip.h b/external/lumin/thirdparty/freetype/include/freetype/ftgzip.h new file mode 100644 index 0000000..0880290 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftgzip.h @@ -0,0 +1,151 @@ +/**************************************************************************** + * + * ftgzip.h + * + * Gzip-compressed stream support. + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTGZIP_H_ +#define FTGZIP_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * gzip + * + * @title: + * GZIP Streams + * + * @abstract: + * Using gzip-compressed font files. + * + * @description: + * In certain builds of the library, gzip compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a gzipped stream from it + * and re-open the face with it. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream, + * which significantly undermines the performance. + * + * This section contains the declaration of Gzip-specific functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Stream_OpenGzip + * + * @description: + * Open a new stream to parse gzip-compressed font files. This is mainly + * used to support the compressed `*.pcf.gz` fonts that come with + * XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close` on the new stream will + * **not** call `FT_Stream_Close` on the source stream. None of the + * stream objects will be released to the heap. + * + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with zlib support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenGzip( FT_Stream stream, + FT_Stream source ); + + + /************************************************************************** + * + * @function: + * FT_Gzip_Uncompress + * + * @description: + * Decompress a zipped input buffer into an output buffer. This function + * is modeled after zlib's `uncompress` function. + * + * @input: + * memory :: + * A FreeType memory handle. + * + * input :: + * The input buffer. + * + * input_len :: + * The length of the input buffer. + * + * @output: + * output :: + * The output buffer. + * + * @inout: + * output_len :: + * Before calling the function, this is the total size of the output + * buffer, which must be large enough to hold the entire uncompressed + * data (so the size of the uncompressed data must be known in + * advance). After calling the function, `output_len` is the size of + * the used data in `output`. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with zlib support. + * + * @since: + * 2.5.1 + */ + FT_EXPORT( FT_Error ) + FT_Gzip_Uncompress( FT_Memory memory, + FT_Byte* output, + FT_ULong* output_len, + const FT_Byte* input, + FT_ULong input_len ); + + /* */ + + +FT_END_HEADER + +#endif /* FTGZIP_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftimage.h b/external/lumin/thirdparty/freetype/include/freetype/ftimage.h new file mode 100644 index 0000000..7f2d721 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftimage.h @@ -0,0 +1,1278 @@ +/**************************************************************************** + * + * ftimage.h + * + * FreeType glyph image formats and default raster interface + * (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + /************************************************************************** + * + * Note: A 'raster' is simply a scan-line converter, used to render + * FT_Outlines into FT_Bitmaps. + * + */ + + +#ifndef FTIMAGE_H_ +#define FTIMAGE_H_ + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * basic_types + * + */ + + + /************************************************************************** + * + * @type: + * FT_Pos + * + * @description: + * The type FT_Pos is used to store vectorial coordinates. Depending on + * the context, these can represent distances in integer font units, or + * 16.16, or 26.6 fixed-point pixel coordinates. + */ + typedef signed long FT_Pos; + + + /************************************************************************** + * + * @struct: + * FT_Vector + * + * @description: + * A simple structure used to store a 2D vector; coordinates are of the + * FT_Pos type. + * + * @fields: + * x :: + * The horizontal coordinate. + * y :: + * The vertical coordinate. + */ + typedef struct FT_Vector_ + { + FT_Pos x; + FT_Pos y; + + } FT_Vector; + + + /************************************************************************** + * + * @struct: + * FT_BBox + * + * @description: + * A structure used to hold an outline's bounding box, i.e., the + * coordinates of its extrema in the horizontal and vertical directions. + * + * @fields: + * xMin :: + * The horizontal minimum (left-most). + * + * yMin :: + * The vertical minimum (bottom-most). + * + * xMax :: + * The horizontal maximum (right-most). + * + * yMax :: + * The vertical maximum (top-most). + * + * @note: + * The bounding box is specified with the coordinates of the lower left + * and the upper right corner. In PostScript, those values are often + * called (llx,lly) and (urx,ury), respectively. + * + * If `yMin` is negative, this value gives the glyph's descender. + * Otherwise, the glyph doesn't descend below the baseline. Similarly, + * if `ymax` is positive, this value gives the glyph's ascender. + * + * `xMin` gives the horizontal distance from the glyph's origin to the + * left edge of the glyph's bounding box. If `xMin` is negative, the + * glyph extends to the left of the origin. + */ + typedef struct FT_BBox_ + { + FT_Pos xMin, yMin; + FT_Pos xMax, yMax; + + } FT_BBox; + + + /************************************************************************** + * + * @enum: + * FT_Pixel_Mode + * + * @description: + * An enumeration type used to describe the format of pixels in a given + * bitmap. Note that additional formats may be added in the future. + * + * @values: + * FT_PIXEL_MODE_NONE :: + * Value~0 is reserved. + * + * FT_PIXEL_MODE_MONO :: + * A monochrome bitmap, using 1~bit per pixel. Note that pixels are + * stored in most-significant order (MSB), which means that the + * left-most pixel in a byte has value 128. + * + * FT_PIXEL_MODE_GRAY :: + * An 8-bit bitmap, generally used to represent anti-aliased glyph + * images. Each pixel is stored in one byte. Note that the number of + * 'gray' levels is stored in the `num_grays` field of the @FT_Bitmap + * structure (it generally is 256). + * + * FT_PIXEL_MODE_GRAY2 :: + * A 2-bit per pixel bitmap, used to represent embedded anti-aliased + * bitmaps in font files according to the OpenType specification. We + * haven't found a single font using this format, however. + * + * FT_PIXEL_MODE_GRAY4 :: + * A 4-bit per pixel bitmap, representing embedded anti-aliased bitmaps + * in font files according to the OpenType specification. We haven't + * found a single font using this format, however. + * + * FT_PIXEL_MODE_LCD :: + * An 8-bit bitmap, representing RGB or BGR decimated glyph images used + * for display on LCD displays; the bitmap is three times wider than + * the original glyph image. See also @FT_RENDER_MODE_LCD. + * + * FT_PIXEL_MODE_LCD_V :: + * An 8-bit bitmap, representing RGB or BGR decimated glyph images used + * for display on rotated LCD displays; the bitmap is three times + * taller than the original glyph image. See also + * @FT_RENDER_MODE_LCD_V. + * + * FT_PIXEL_MODE_BGRA :: + * [Since 2.5] An image with four 8-bit channels per pixel, + * representing a color image (such as emoticons) with alpha channel. + * For each pixel, the format is BGRA, which means, the blue channel + * comes first in memory. The color channels are pre-multiplied and in + * the sRGB colorspace. For example, full red at half-translucent + * opacity will be represented as '00,00,80,80', not '00,00,FF,80'. + * See also @FT_LOAD_COLOR. + */ + typedef enum FT_Pixel_Mode_ + { + FT_PIXEL_MODE_NONE = 0, + FT_PIXEL_MODE_MONO, + FT_PIXEL_MODE_GRAY, + FT_PIXEL_MODE_GRAY2, + FT_PIXEL_MODE_GRAY4, + FT_PIXEL_MODE_LCD, + FT_PIXEL_MODE_LCD_V, + FT_PIXEL_MODE_BGRA, + + FT_PIXEL_MODE_MAX /* do not remove */ + + } FT_Pixel_Mode; + + + /* these constants are deprecated; use the corresponding `FT_Pixel_Mode` */ + /* values instead. */ +#define ft_pixel_mode_none FT_PIXEL_MODE_NONE +#define ft_pixel_mode_mono FT_PIXEL_MODE_MONO +#define ft_pixel_mode_grays FT_PIXEL_MODE_GRAY +#define ft_pixel_mode_pal2 FT_PIXEL_MODE_GRAY2 +#define ft_pixel_mode_pal4 FT_PIXEL_MODE_GRAY4 + + /* */ + + /* For debugging, the @FT_Pixel_Mode enumeration must stay in sync */ + /* with the `pixel_modes` array in file `ftobjs.c`. */ + + + /************************************************************************** + * + * @struct: + * FT_Bitmap + * + * @description: + * A structure used to describe a bitmap or pixmap to the raster. Note + * that we now manage pixmaps of various depths through the `pixel_mode` + * field. + * + * @fields: + * rows :: + * The number of bitmap rows. + * + * width :: + * The number of pixels in bitmap row. + * + * pitch :: + * The pitch's absolute value is the number of bytes taken by one + * bitmap row, including padding. However, the pitch is positive when + * the bitmap has a 'down' flow, and negative when it has an 'up' flow. + * In all cases, the pitch is an offset to add to a bitmap pointer in + * order to go down one row. + * + * Note that 'padding' means the alignment of a bitmap to a byte + * border, and FreeType functions normally align to the smallest + * possible integer value. + * + * For the B/W rasterizer, `pitch` is always an even number. + * + * To change the pitch of a bitmap (say, to make it a multiple of 4), + * use @FT_Bitmap_Convert. Alternatively, you might use callback + * functions to directly render to the application's surface; see the + * file `example2.cpp` in the tutorial for a demonstration. + * + * buffer :: + * A typeless pointer to the bitmap buffer. This value should be + * aligned on 32-bit boundaries in most cases. + * + * num_grays :: + * This field is only used with @FT_PIXEL_MODE_GRAY; it gives the + * number of gray levels used in the bitmap. + * + * pixel_mode :: + * The pixel mode, i.e., how pixel bits are stored. See @FT_Pixel_Mode + * for possible values. + * + * palette_mode :: + * This field is intended for paletted pixel modes; it indicates how + * the palette is stored. Not used currently. + * + * palette :: + * A typeless pointer to the bitmap palette; this field is intended for + * paletted pixel modes. Not used currently. + */ + typedef struct FT_Bitmap_ + { + unsigned int rows; + unsigned int width; + int pitch; + unsigned char* buffer; + unsigned short num_grays; + unsigned char pixel_mode; + unsigned char palette_mode; + void* palette; + + } FT_Bitmap; + + + /************************************************************************** + * + * @section: + * outline_processing + * + */ + + + /************************************************************************** + * + * @struct: + * FT_Outline + * + * @description: + * This structure is used to describe an outline to the scan-line + * converter. + * + * @fields: + * n_contours :: + * The number of contours in the outline. + * + * n_points :: + * The number of points in the outline. + * + * points :: + * A pointer to an array of `n_points` @FT_Vector elements, giving the + * outline's point coordinates. + * + * tags :: + * A pointer to an array of `n_points` chars, giving each outline + * point's type. + * + * If bit~0 is unset, the point is 'off' the curve, i.e., a Bezier + * control point, while it is 'on' if set. + * + * Bit~1 is meaningful for 'off' points only. If set, it indicates a + * third-order Bezier arc control point; and a second-order control + * point if unset. + * + * If bit~2 is set, bits 5-7 contain the drop-out mode (as defined in + * the OpenType specification; the value is the same as the argument to + * the 'SCANMODE' instruction). + * + * Bits 3 and~4 are reserved for internal purposes. + * + * contours :: + * An array of `n_contours` shorts, giving the end point of each + * contour within the outline. For example, the first contour is + * defined by the points '0' to `contours[0]`, the second one is + * defined by the points `contours[0]+1` to `contours[1]`, etc. + * + * flags :: + * A set of bit flags used to characterize the outline and give hints + * to the scan-converter and hinter on how to convert/grid-fit it. See + * @FT_OUTLINE_XXX. + * + * @note: + * The B/W rasterizer only checks bit~2 in the `tags` array for the first + * point of each contour. The drop-out mode as given with + * @FT_OUTLINE_IGNORE_DROPOUTS, @FT_OUTLINE_SMART_DROPOUTS, and + * @FT_OUTLINE_INCLUDE_STUBS in `flags` is then overridden. + */ + typedef struct FT_Outline_ + { + short n_contours; /* number of contours in glyph */ + short n_points; /* number of points in the glyph */ + + FT_Vector* points; /* the outline's points */ + char* tags; /* the points flags */ + short* contours; /* the contour end points */ + + int flags; /* outline masks */ + + } FT_Outline; + + /* */ + + /* Following limits must be consistent with */ + /* FT_Outline.{n_contours,n_points} */ +#define FT_OUTLINE_CONTOURS_MAX SHRT_MAX +#define FT_OUTLINE_POINTS_MAX SHRT_MAX + + + /************************************************************************** + * + * @enum: + * FT_OUTLINE_XXX + * + * @description: + * A list of bit-field constants used for the flags in an outline's + * `flags` field. + * + * @values: + * FT_OUTLINE_NONE :: + * Value~0 is reserved. + * + * FT_OUTLINE_OWNER :: + * If set, this flag indicates that the outline's field arrays (i.e., + * `points`, `flags`, and `contours`) are 'owned' by the outline + * object, and should thus be freed when it is destroyed. + * + * FT_OUTLINE_EVEN_ODD_FILL :: + * By default, outlines are filled using the non-zero winding rule. If + * set to 1, the outline will be filled using the even-odd fill rule + * (only works with the smooth rasterizer). + * + * FT_OUTLINE_REVERSE_FILL :: + * By default, outside contours of an outline are oriented in + * clock-wise direction, as defined in the TrueType specification. + * This flag is set if the outline uses the opposite direction + * (typically for Type~1 fonts). This flag is ignored by the scan + * converter. + * + * FT_OUTLINE_IGNORE_DROPOUTS :: + * By default, the scan converter will try to detect drop-outs in an + * outline and correct the glyph bitmap to ensure consistent shape + * continuity. If set, this flag hints the scan-line converter to + * ignore such cases. See below for more information. + * + * FT_OUTLINE_SMART_DROPOUTS :: + * Select smart dropout control. If unset, use simple dropout control. + * Ignored if @FT_OUTLINE_IGNORE_DROPOUTS is set. See below for more + * information. + * + * FT_OUTLINE_INCLUDE_STUBS :: + * If set, turn pixels on for 'stubs', otherwise exclude them. Ignored + * if @FT_OUTLINE_IGNORE_DROPOUTS is set. See below for more + * information. + * + * FT_OUTLINE_OVERLAP :: + * [Since 2.10.3] This flag indicates that this outline contains + * overlapping contours and the anti-aliased renderer should perform + * oversampling to mitigate possible artifacts. This flag should _not_ + * be set for well designed glyphs without overlaps because it quadruples + * the rendering time. + * + * FT_OUTLINE_HIGH_PRECISION :: + * This flag indicates that the scan-line converter should try to + * convert this outline to bitmaps with the highest possible quality. + * It is typically set for small character sizes. Note that this is + * only a hint that might be completely ignored by a given + * scan-converter. + * + * FT_OUTLINE_SINGLE_PASS :: + * This flag is set to force a given scan-converter to only use a + * single pass over the outline to render a bitmap glyph image. + * Normally, it is set for very large character sizes. It is only a + * hint that might be completely ignored by a given scan-converter. + * + * @note: + * The flags @FT_OUTLINE_IGNORE_DROPOUTS, @FT_OUTLINE_SMART_DROPOUTS, and + * @FT_OUTLINE_INCLUDE_STUBS are ignored by the smooth rasterizer. + * + * There exists a second mechanism to pass the drop-out mode to the B/W + * rasterizer; see the `tags` field in @FT_Outline. + * + * Please refer to the description of the 'SCANTYPE' instruction in the + * OpenType specification (in file `ttinst1.doc`) how simple drop-outs, + * smart drop-outs, and stubs are defined. + */ +#define FT_OUTLINE_NONE 0x0 +#define FT_OUTLINE_OWNER 0x1 +#define FT_OUTLINE_EVEN_ODD_FILL 0x2 +#define FT_OUTLINE_REVERSE_FILL 0x4 +#define FT_OUTLINE_IGNORE_DROPOUTS 0x8 +#define FT_OUTLINE_SMART_DROPOUTS 0x10 +#define FT_OUTLINE_INCLUDE_STUBS 0x20 +#define FT_OUTLINE_OVERLAP 0x40 + +#define FT_OUTLINE_HIGH_PRECISION 0x100 +#define FT_OUTLINE_SINGLE_PASS 0x200 + + + /* these constants are deprecated; use the corresponding */ + /* `FT_OUTLINE_XXX` values instead */ +#define ft_outline_none FT_OUTLINE_NONE +#define ft_outline_owner FT_OUTLINE_OWNER +#define ft_outline_even_odd_fill FT_OUTLINE_EVEN_ODD_FILL +#define ft_outline_reverse_fill FT_OUTLINE_REVERSE_FILL +#define ft_outline_ignore_dropouts FT_OUTLINE_IGNORE_DROPOUTS +#define ft_outline_high_precision FT_OUTLINE_HIGH_PRECISION +#define ft_outline_single_pass FT_OUTLINE_SINGLE_PASS + + /* */ + +#define FT_CURVE_TAG( flag ) ( flag & 0x03 ) + + /* see the `tags` field in `FT_Outline` for a description of the values */ +#define FT_CURVE_TAG_ON 0x01 +#define FT_CURVE_TAG_CONIC 0x00 +#define FT_CURVE_TAG_CUBIC 0x02 + +#define FT_CURVE_TAG_HAS_SCANMODE 0x04 + +#define FT_CURVE_TAG_TOUCH_X 0x08 /* reserved for TrueType hinter */ +#define FT_CURVE_TAG_TOUCH_Y 0x10 /* reserved for TrueType hinter */ + +#define FT_CURVE_TAG_TOUCH_BOTH ( FT_CURVE_TAG_TOUCH_X | \ + FT_CURVE_TAG_TOUCH_Y ) + /* values 0x20, 0x40, and 0x80 are reserved */ + + + /* these constants are deprecated; use the corresponding */ + /* `FT_CURVE_TAG_XXX` values instead */ +#define FT_Curve_Tag_On FT_CURVE_TAG_ON +#define FT_Curve_Tag_Conic FT_CURVE_TAG_CONIC +#define FT_Curve_Tag_Cubic FT_CURVE_TAG_CUBIC +#define FT_Curve_Tag_Touch_X FT_CURVE_TAG_TOUCH_X +#define FT_Curve_Tag_Touch_Y FT_CURVE_TAG_TOUCH_Y + + + /************************************************************************** + * + * @functype: + * FT_Outline_MoveToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'move to' + * function during outline walking/decomposition. + * + * A 'move to' is emitted to start a new contour in an outline. + * + * @input: + * to :: + * A pointer to the target point of the 'move to'. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_MoveToFunc)( const FT_Vector* to, + void* user ); + +#define FT_Outline_MoveTo_Func FT_Outline_MoveToFunc + + + /************************************************************************** + * + * @functype: + * FT_Outline_LineToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'line to' + * function during outline walking/decomposition. + * + * A 'line to' is emitted to indicate a segment in the outline. + * + * @input: + * to :: + * A pointer to the target point of the 'line to'. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_LineToFunc)( const FT_Vector* to, + void* user ); + +#define FT_Outline_LineTo_Func FT_Outline_LineToFunc + + + /************************************************************************** + * + * @functype: + * FT_Outline_ConicToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'conic to' + * function during outline walking or decomposition. + * + * A 'conic to' is emitted to indicate a second-order Bezier arc in the + * outline. + * + * @input: + * control :: + * An intermediate control point between the last position and the new + * target in `to`. + * + * to :: + * A pointer to the target end point of the conic arc. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_ConicToFunc)( const FT_Vector* control, + const FT_Vector* to, + void* user ); + +#define FT_Outline_ConicTo_Func FT_Outline_ConicToFunc + + + /************************************************************************** + * + * @functype: + * FT_Outline_CubicToFunc + * + * @description: + * A function pointer type used to describe the signature of a 'cubic to' + * function during outline walking or decomposition. + * + * A 'cubic to' is emitted to indicate a third-order Bezier arc. + * + * @input: + * control1 :: + * A pointer to the first Bezier control point. + * + * control2 :: + * A pointer to the second Bezier control point. + * + * to :: + * A pointer to the target end point. + * + * user :: + * A typeless pointer, which is passed from the caller of the + * decomposition function. + * + * @return: + * Error code. 0~means success. + */ + typedef int + (*FT_Outline_CubicToFunc)( const FT_Vector* control1, + const FT_Vector* control2, + const FT_Vector* to, + void* user ); + +#define FT_Outline_CubicTo_Func FT_Outline_CubicToFunc + + + /************************************************************************** + * + * @struct: + * FT_Outline_Funcs + * + * @description: + * A structure to hold various function pointers used during outline + * decomposition in order to emit segments, conic, and cubic Beziers. + * + * @fields: + * move_to :: + * The 'move to' emitter. + * + * line_to :: + * The segment emitter. + * + * conic_to :: + * The second-order Bezier arc emitter. + * + * cubic_to :: + * The third-order Bezier arc emitter. + * + * shift :: + * The shift that is applied to coordinates before they are sent to the + * emitter. + * + * delta :: + * The delta that is applied to coordinates before they are sent to the + * emitter, but after the shift. + * + * @note: + * The point coordinates sent to the emitters are the transformed version + * of the original coordinates (this is important for high accuracy + * during scan-conversion). The transformation is simple: + * + * ``` + * x' = (x << shift) - delta + * y' = (y << shift) - delta + * ``` + * + * Set the values of `shift` and `delta` to~0 to get the original point + * coordinates. + */ + typedef struct FT_Outline_Funcs_ + { + FT_Outline_MoveToFunc move_to; + FT_Outline_LineToFunc line_to; + FT_Outline_ConicToFunc conic_to; + FT_Outline_CubicToFunc cubic_to; + + int shift; + FT_Pos delta; + + } FT_Outline_Funcs; + + + /************************************************************************** + * + * @section: + * basic_types + * + */ + + + /************************************************************************** + * + * @macro: + * FT_IMAGE_TAG + * + * @description: + * This macro converts four-letter tags to an unsigned long type. + * + * @note: + * Since many 16-bit compilers don't like 32-bit enumerations, you should + * redefine this macro in case of problems to something like this: + * + * ``` + * #define FT_IMAGE_TAG( value, _x1, _x2, _x3, _x4 ) value + * ``` + * + * to get a simple enumeration without assigning special numbers. + */ +#ifndef FT_IMAGE_TAG + +#define FT_IMAGE_TAG( value, _x1, _x2, _x3, _x4 ) \ + value = ( ( FT_STATIC_BYTE_CAST( unsigned long, _x1 ) << 24 ) | \ + ( FT_STATIC_BYTE_CAST( unsigned long, _x2 ) << 16 ) | \ + ( FT_STATIC_BYTE_CAST( unsigned long, _x3 ) << 8 ) | \ + FT_STATIC_BYTE_CAST( unsigned long, _x4 ) ) + +#endif /* FT_IMAGE_TAG */ + + + /************************************************************************** + * + * @enum: + * FT_Glyph_Format + * + * @description: + * An enumeration type used to describe the format of a given glyph + * image. Note that this version of FreeType only supports two image + * formats, even though future font drivers will be able to register + * their own format. + * + * @values: + * FT_GLYPH_FORMAT_NONE :: + * The value~0 is reserved. + * + * FT_GLYPH_FORMAT_COMPOSITE :: + * The glyph image is a composite of several other images. This format + * is _only_ used with @FT_LOAD_NO_RECURSE, and is used to report + * compound glyphs (like accented characters). + * + * FT_GLYPH_FORMAT_BITMAP :: + * The glyph image is a bitmap, and can be described as an @FT_Bitmap. + * You generally need to access the `bitmap` field of the + * @FT_GlyphSlotRec structure to read it. + * + * FT_GLYPH_FORMAT_OUTLINE :: + * The glyph image is a vectorial outline made of line segments and + * Bezier arcs; it can be described as an @FT_Outline; you generally + * want to access the `outline` field of the @FT_GlyphSlotRec structure + * to read it. + * + * FT_GLYPH_FORMAT_PLOTTER :: + * The glyph image is a vectorial path with no inside and outside + * contours. Some Type~1 fonts, like those in the Hershey family, + * contain glyphs in this format. These are described as @FT_Outline, + * but FreeType isn't currently capable of rendering them correctly. + * + * FT_GLYPH_FORMAT_SVG :: + * [Since 2.12] The glyph is represented by an SVG document in the + * 'SVG~' table. + */ + typedef enum FT_Glyph_Format_ + { + FT_IMAGE_TAG( FT_GLYPH_FORMAT_NONE, 0, 0, 0, 0 ), + + FT_IMAGE_TAG( FT_GLYPH_FORMAT_COMPOSITE, 'c', 'o', 'm', 'p' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_BITMAP, 'b', 'i', 't', 's' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_OUTLINE, 'o', 'u', 't', 'l' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_PLOTTER, 'p', 'l', 'o', 't' ), + FT_IMAGE_TAG( FT_GLYPH_FORMAT_SVG, 'S', 'V', 'G', ' ' ) + + } FT_Glyph_Format; + + + /* these constants are deprecated; use the corresponding */ + /* `FT_Glyph_Format` values instead. */ +#define ft_glyph_format_none FT_GLYPH_FORMAT_NONE +#define ft_glyph_format_composite FT_GLYPH_FORMAT_COMPOSITE +#define ft_glyph_format_bitmap FT_GLYPH_FORMAT_BITMAP +#define ft_glyph_format_outline FT_GLYPH_FORMAT_OUTLINE +#define ft_glyph_format_plotter FT_GLYPH_FORMAT_PLOTTER + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /***** *****/ + /***** R A S T E R D E F I N I T I O N S *****/ + /***** *****/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + + /************************************************************************** + * + * @section: + * raster + * + * @title: + * Scanline Converter + * + * @abstract: + * How vectorial outlines are converted into bitmaps and pixmaps. + * + * @description: + * A raster or a rasterizer is a scan converter in charge of producing a + * pixel coverage bitmap that can be used as an alpha channel when + * compositing a glyph with a background. FreeType comes with two + * rasterizers: bilevel `raster1` and anti-aliased `smooth` are two + * separate modules. They are usually called from the high-level + * @FT_Load_Glyph or @FT_Render_Glyph functions and produce the entire + * coverage bitmap at once, while staying largely invisible to users. + * + * Instead of working with complete coverage bitmaps, it is also possible + * to intercept consecutive pixel runs on the same scanline with the same + * coverage, called _spans_, and process them individually. Only the + * `smooth` rasterizer permits this when calling @FT_Outline_Render with + * @FT_Raster_Params as described below. + * + * Working with either complete bitmaps or spans it is important to think + * of them as colorless coverage objects suitable as alpha channels to + * blend arbitrary colors with a background. For best results, it is + * recommended to use gamma correction, too. + * + * This section also describes the public API needed to set up alternative + * @FT_Renderer modules. + * + * @order: + * FT_Span + * FT_SpanFunc + * FT_Raster_Params + * FT_RASTER_FLAG_XXX + * + * FT_Raster + * FT_Raster_NewFunc + * FT_Raster_DoneFunc + * FT_Raster_ResetFunc + * FT_Raster_SetModeFunc + * FT_Raster_RenderFunc + * FT_Raster_Funcs + * + */ + + + /************************************************************************** + * + * @struct: + * FT_Span + * + * @description: + * A structure to model a single span of consecutive pixels when + * rendering an anti-aliased bitmap. + * + * @fields: + * x :: + * The span's horizontal start position. + * + * len :: + * The span's length in pixels. + * + * coverage :: + * The span color/coverage, ranging from 0 (background) to 255 + * (foreground). + * + * @note: + * This structure is used by the span drawing callback type named + * @FT_SpanFunc that takes the y~coordinate of the span as a parameter. + * + * The anti-aliased rasterizer produces coverage values from 0 to 255, + * this is, from completely transparent to completely opaque. + */ + typedef struct FT_Span_ + { + short x; + unsigned short len; + unsigned char coverage; + + } FT_Span; + + + /************************************************************************** + * + * @functype: + * FT_SpanFunc + * + * @description: + * A function used as a call-back by the anti-aliased renderer in order + * to let client applications draw themselves the pixel spans on each + * scan line. + * + * @input: + * y :: + * The scanline's upward y~coordinate. + * + * count :: + * The number of spans to draw on this scanline. + * + * spans :: + * A table of `count` spans to draw on the scanline. + * + * user :: + * User-supplied data that is passed to the callback. + * + * @note: + * This callback allows client applications to directly render the spans + * of the anti-aliased bitmap to any kind of surfaces. + * + * This can be used to write anti-aliased outlines directly to a given + * background bitmap using alpha compositing. It can also be used for + * oversampling and averaging. + */ + typedef void + (*FT_SpanFunc)( int y, + int count, + const FT_Span* spans, + void* user ); + +#define FT_Raster_Span_Func FT_SpanFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_BitTest_Func + * + * @description: + * Deprecated, unimplemented. + */ + typedef int + (*FT_Raster_BitTest_Func)( int y, + int x, + void* user ); + + + /************************************************************************** + * + * @functype: + * FT_Raster_BitSet_Func + * + * @description: + * Deprecated, unimplemented. + */ + typedef void + (*FT_Raster_BitSet_Func)( int y, + int x, + void* user ); + + + /************************************************************************** + * + * @enum: + * FT_RASTER_FLAG_XXX + * + * @description: + * A list of bit flag constants as used in the `flags` field of a + * @FT_Raster_Params structure. + * + * @values: + * FT_RASTER_FLAG_DEFAULT :: + * This value is 0. + * + * FT_RASTER_FLAG_AA :: + * This flag is set to indicate that an anti-aliased glyph image should + * be generated. Otherwise, it will be monochrome (1-bit). + * + * FT_RASTER_FLAG_DIRECT :: + * This flag is set to indicate direct rendering. In this mode, client + * applications must provide their own span callback. This lets them + * directly draw or compose over an existing bitmap. If this bit is + * _not_ set, the target pixmap's buffer _must_ be zeroed before + * rendering and the output will be clipped to its size. + * + * Direct rendering is only possible with anti-aliased glyphs. + * + * FT_RASTER_FLAG_CLIP :: + * This flag is only used in direct rendering mode. If set, the output + * will be clipped to a box specified in the `clip_box` field of the + * @FT_Raster_Params structure. Otherwise, the `clip_box` is + * effectively set to the bounding box and all spans are generated. + * + * FT_RASTER_FLAG_SDF :: + * This flag is set to indicate that a signed distance field glyph + * image should be generated. This is only used while rendering with + * the @FT_RENDER_MODE_SDF render mode. + */ +#define FT_RASTER_FLAG_DEFAULT 0x0 +#define FT_RASTER_FLAG_AA 0x1 +#define FT_RASTER_FLAG_DIRECT 0x2 +#define FT_RASTER_FLAG_CLIP 0x4 +#define FT_RASTER_FLAG_SDF 0x8 + + /* these constants are deprecated; use the corresponding */ + /* `FT_RASTER_FLAG_XXX` values instead */ +#define ft_raster_flag_default FT_RASTER_FLAG_DEFAULT +#define ft_raster_flag_aa FT_RASTER_FLAG_AA +#define ft_raster_flag_direct FT_RASTER_FLAG_DIRECT +#define ft_raster_flag_clip FT_RASTER_FLAG_CLIP + + + /************************************************************************** + * + * @struct: + * FT_Raster_Params + * + * @description: + * A structure to hold the parameters used by a raster's render function, + * passed as an argument to @FT_Outline_Render. + * + * @fields: + * target :: + * The target bitmap. + * + * source :: + * A pointer to the source glyph image (e.g., an @FT_Outline). + * + * flags :: + * The rendering flags. + * + * gray_spans :: + * The gray span drawing callback. + * + * black_spans :: + * Unused. + * + * bit_test :: + * Unused. + * + * bit_set :: + * Unused. + * + * user :: + * User-supplied data that is passed to each drawing callback. + * + * clip_box :: + * An optional span clipping box expressed in _integer_ pixels + * (not in 26.6 fixed-point units). + * + * @note: + * The @FT_RASTER_FLAG_AA bit flag must be set in the `flags` to + * generate an anti-aliased glyph bitmap, otherwise a monochrome bitmap + * is generated. The `target` should have appropriate pixel mode and its + * dimensions define the clipping region. + * + * If both @FT_RASTER_FLAG_AA and @FT_RASTER_FLAG_DIRECT bit flags + * are set in `flags`, the raster calls an @FT_SpanFunc callback + * `gray_spans` with `user` data as an argument ignoring `target`. This + * allows direct composition over a pre-existing user surface to perform + * the span drawing and composition. To optionally clip the spans, set + * the @FT_RASTER_FLAG_CLIP flag and `clip_box`. The monochrome raster + * does not support the direct mode. + * + * The gray-level rasterizer always uses 256 gray levels. If you want + * fewer gray levels, you have to use @FT_RASTER_FLAG_DIRECT and reduce + * the levels in the callback function. + */ + typedef struct FT_Raster_Params_ + { + const FT_Bitmap* target; + const void* source; + int flags; + FT_SpanFunc gray_spans; + FT_SpanFunc black_spans; /* unused */ + FT_Raster_BitTest_Func bit_test; /* unused */ + FT_Raster_BitSet_Func bit_set; /* unused */ + void* user; + FT_BBox clip_box; + + } FT_Raster_Params; + + + /************************************************************************** + * + * @type: + * FT_Raster + * + * @description: + * An opaque handle (pointer) to a raster object. Each object can be + * used independently to convert an outline into a bitmap or pixmap. + * + * @note: + * In FreeType 2, all rasters are now encapsulated within specific + * @FT_Renderer modules and only used in their context. + * + */ + typedef struct FT_RasterRec_* FT_Raster; + + + /************************************************************************** + * + * @functype: + * FT_Raster_NewFunc + * + * @description: + * A function used to create a new raster object. + * + * @input: + * memory :: + * A handle to the memory allocator. + * + * @output: + * raster :: + * A handle to the new raster object. + * + * @return: + * Error code. 0~means success. + * + * @note: + * The `memory` parameter is a typeless pointer in order to avoid + * un-wanted dependencies on the rest of the FreeType code. In practice, + * it is an @FT_Memory object, i.e., a handle to the standard FreeType + * memory allocator. However, this field can be completely ignored by a + * given raster implementation. + */ + typedef int + (*FT_Raster_NewFunc)( void* memory, + FT_Raster* raster ); + +#define FT_Raster_New_Func FT_Raster_NewFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_DoneFunc + * + * @description: + * A function used to destroy a given raster object. + * + * @input: + * raster :: + * A handle to the raster object. + */ + typedef void + (*FT_Raster_DoneFunc)( FT_Raster raster ); + +#define FT_Raster_Done_Func FT_Raster_DoneFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_ResetFunc + * + * @description: + * FreeType used to provide an area of memory called the 'render pool' + * available to all registered rasterizers. This was not thread safe, + * however, and now FreeType never allocates this pool. + * + * This function is called after a new raster object is created. + * + * @input: + * raster :: + * A handle to the new raster object. + * + * pool_base :: + * Previously, the address in memory of the render pool. Set this to + * `NULL`. + * + * pool_size :: + * Previously, the size in bytes of the render pool. Set this to 0. + * + * @note: + * Rasterizers should rely on dynamic or stack allocation if they want to + * (a handle to the memory allocator is passed to the rasterizer + * constructor). + */ + typedef void + (*FT_Raster_ResetFunc)( FT_Raster raster, + unsigned char* pool_base, + unsigned long pool_size ); + +#define FT_Raster_Reset_Func FT_Raster_ResetFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_SetModeFunc + * + * @description: + * This function is a generic facility to change modes or attributes in a + * given raster. This can be used for debugging purposes, or simply to + * allow implementation-specific 'features' in a given raster module. + * + * @input: + * raster :: + * A handle to the new raster object. + * + * mode :: + * A 4-byte tag used to name the mode or property. + * + * args :: + * A pointer to the new mode/property to use. + */ + typedef int + (*FT_Raster_SetModeFunc)( FT_Raster raster, + unsigned long mode, + void* args ); + +#define FT_Raster_Set_Mode_Func FT_Raster_SetModeFunc + + + /************************************************************************** + * + * @functype: + * FT_Raster_RenderFunc + * + * @description: + * Invoke a given raster to scan-convert a given glyph image into a + * target bitmap. + * + * @input: + * raster :: + * A handle to the raster object. + * + * params :: + * A pointer to an @FT_Raster_Params structure used to store the + * rendering parameters. + * + * @return: + * Error code. 0~means success. + * + * @note: + * The exact format of the source image depends on the raster's glyph + * format defined in its @FT_Raster_Funcs structure. It can be an + * @FT_Outline or anything else in order to support a large array of + * glyph formats. + * + * Note also that the render function can fail and return a + * `FT_Err_Unimplemented_Feature` error code if the raster used does not + * support direct composition. + */ + typedef int + (*FT_Raster_RenderFunc)( FT_Raster raster, + const FT_Raster_Params* params ); + +#define FT_Raster_Render_Func FT_Raster_RenderFunc + + + /************************************************************************** + * + * @struct: + * FT_Raster_Funcs + * + * @description: + * A structure used to describe a given raster class to the library. + * + * @fields: + * glyph_format :: + * The supported glyph format for this raster. + * + * raster_new :: + * The raster constructor. + * + * raster_reset :: + * Used to reset the render pool within the raster. + * + * raster_render :: + * A function to render a glyph into a given bitmap. + * + * raster_done :: + * The raster destructor. + */ + typedef struct FT_Raster_Funcs_ + { + FT_Glyph_Format glyph_format; + + FT_Raster_NewFunc raster_new; + FT_Raster_ResetFunc raster_reset; + FT_Raster_SetModeFunc raster_set_mode; + FT_Raster_RenderFunc raster_render; + FT_Raster_DoneFunc raster_done; + + } FT_Raster_Funcs; + + /* */ + + +FT_END_HEADER + +#endif /* FTIMAGE_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftincrem.h b/external/lumin/thirdparty/freetype/include/freetype/ftincrem.h new file mode 100644 index 0000000..3b3d93c --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftincrem.h @@ -0,0 +1,348 @@ +/**************************************************************************** + * + * ftincrem.h + * + * FreeType incremental loading (specification). + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTINCREM_H_ +#define FTINCREM_H_ + +#include +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * incremental + * + * @title: + * Incremental Loading + * + * @abstract: + * Custom Glyph Loading. + * + * @description: + * This section contains various functions used to perform so-called + * 'incremental' glyph loading. This is a mode where all glyphs loaded + * from a given @FT_Face are provided by the client application. + * + * Apart from that, all other tables are loaded normally from the font + * file. This mode is useful when FreeType is used within another + * engine, e.g., a PostScript Imaging Processor. + * + * To enable this mode, you must use @FT_Open_Face, passing an + * @FT_Parameter with the @FT_PARAM_TAG_INCREMENTAL tag and an + * @FT_Incremental_Interface value. See the comments for + * @FT_Incremental_InterfaceRec for an example. + * + */ + + + /************************************************************************** + * + * @type: + * FT_Incremental + * + * @description: + * An opaque type describing a user-provided object used to implement + * 'incremental' glyph loading within FreeType. This is used to support + * embedded fonts in certain environments (e.g., PostScript + * interpreters), where the glyph data isn't in the font file, or must be + * overridden by different values. + * + * @note: + * It is up to client applications to create and implement + * @FT_Incremental objects, as long as they provide implementations for + * the methods @FT_Incremental_GetGlyphDataFunc, + * @FT_Incremental_FreeGlyphDataFunc and + * @FT_Incremental_GetGlyphMetricsFunc. + * + * See the description of @FT_Incremental_InterfaceRec to understand how + * to use incremental objects with FreeType. + * + */ + typedef struct FT_IncrementalRec_* FT_Incremental; + + + /************************************************************************** + * + * @struct: + * FT_Incremental_MetricsRec + * + * @description: + * A small structure used to contain the basic glyph metrics returned by + * the @FT_Incremental_GetGlyphMetricsFunc method. + * + * @fields: + * bearing_x :: + * Left bearing, in font units. + * + * bearing_y :: + * Top bearing, in font units. + * + * advance :: + * Horizontal component of glyph advance, in font units. + * + * advance_v :: + * Vertical component of glyph advance, in font units. + * + * @note: + * These correspond to horizontal or vertical metrics depending on the + * value of the `vertical` argument to the function + * @FT_Incremental_GetGlyphMetricsFunc. + * + */ + typedef struct FT_Incremental_MetricsRec_ + { + FT_Long bearing_x; + FT_Long bearing_y; + FT_Long advance; + FT_Long advance_v; /* since 2.3.12 */ + + } FT_Incremental_MetricsRec; + + + /************************************************************************** + * + * @struct: + * FT_Incremental_Metrics + * + * @description: + * A handle to an @FT_Incremental_MetricsRec structure. + * + */ + typedef struct FT_Incremental_MetricsRec_* FT_Incremental_Metrics; + + + /************************************************************************** + * + * @type: + * FT_Incremental_GetGlyphDataFunc + * + * @description: + * A function called by FreeType to access a given glyph's data bytes + * during @FT_Load_Glyph or @FT_Load_Char if incremental loading is + * enabled. + * + * Note that the format of the glyph's data bytes depends on the font + * file format. For TrueType, it must correspond to the raw bytes within + * the 'glyf' table. For PostScript formats, it must correspond to the + * **unencrypted** charstring bytes, without any `lenIV` header. It is + * undefined for any other format. + * + * @input: + * incremental :: + * Handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * glyph_index :: + * Index of relevant glyph. + * + * @output: + * adata :: + * A structure describing the returned glyph data bytes (which will be + * accessed as a read-only byte block). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If this function returns successfully the method + * @FT_Incremental_FreeGlyphDataFunc will be called later to release the + * data bytes. + * + * Nested calls to @FT_Incremental_GetGlyphDataFunc can happen for + * compound glyphs. + * + */ + typedef FT_Error + (*FT_Incremental_GetGlyphDataFunc)( FT_Incremental incremental, + FT_UInt glyph_index, + FT_Data* adata ); + + + /************************************************************************** + * + * @type: + * FT_Incremental_FreeGlyphDataFunc + * + * @description: + * A function used to release the glyph data bytes returned by a + * successful call to @FT_Incremental_GetGlyphDataFunc. + * + * @input: + * incremental :: + * A handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * data :: + * A structure describing the glyph data bytes (which will be accessed + * as a read-only byte block). + * + */ + typedef void + (*FT_Incremental_FreeGlyphDataFunc)( FT_Incremental incremental, + FT_Data* data ); + + + /************************************************************************** + * + * @type: + * FT_Incremental_GetGlyphMetricsFunc + * + * @description: + * A function used to retrieve the basic metrics of a given glyph index + * before accessing its data. This allows for handling font types such + * as PCL~XL Format~1, Class~2 downloaded TrueType fonts, where the glyph + * metrics (`hmtx` and `vmtx` tables) are permitted to be omitted from + * the font, and the relevant metrics included in the header of the glyph + * outline data. Importantly, this is not intended to allow custom glyph + * metrics (for example, Postscript Metrics dictionaries), because that + * conflicts with the requirements of outline hinting. Such custom + * metrics must be handled separately, by the calling application. + * + * @input: + * incremental :: + * A handle to an opaque @FT_Incremental handle provided by the client + * application. + * + * glyph_index :: + * Index of relevant glyph. + * + * vertical :: + * If true, return vertical metrics. + * + * ametrics :: + * This parameter is used for both input and output. The original + * glyph metrics, if any, in font units. If metrics are not available + * all the values must be set to zero. + * + * @output: + * ametrics :: + * The glyph metrics in font units. + * + */ + typedef FT_Error + (*FT_Incremental_GetGlyphMetricsFunc) + ( FT_Incremental incremental, + FT_UInt glyph_index, + FT_Bool vertical, + FT_Incremental_MetricsRec *ametrics ); + + + /************************************************************************** + * + * @struct: + * FT_Incremental_FuncsRec + * + * @description: + * A table of functions for accessing fonts that load data incrementally. + * Used in @FT_Incremental_InterfaceRec. + * + * @fields: + * get_glyph_data :: + * The function to get glyph data. Must not be null. + * + * free_glyph_data :: + * The function to release glyph data. Must not be null. + * + * get_glyph_metrics :: + * The function to get glyph metrics. May be null if the font does not + * require it. + * + */ + typedef struct FT_Incremental_FuncsRec_ + { + FT_Incremental_GetGlyphDataFunc get_glyph_data; + FT_Incremental_FreeGlyphDataFunc free_glyph_data; + FT_Incremental_GetGlyphMetricsFunc get_glyph_metrics; + + } FT_Incremental_FuncsRec; + + + /************************************************************************** + * + * @struct: + * FT_Incremental_InterfaceRec + * + * @description: + * A structure to be used with @FT_Open_Face to indicate that the user + * wants to support incremental glyph loading. You should use it with + * @FT_PARAM_TAG_INCREMENTAL as in the following example: + * + * ``` + * FT_Incremental_InterfaceRec inc_int; + * FT_Parameter parameter; + * FT_Open_Args open_args; + * + * + * // set up incremental descriptor + * inc_int.funcs = my_funcs; + * inc_int.object = my_object; + * + * // set up optional parameter + * parameter.tag = FT_PARAM_TAG_INCREMENTAL; + * parameter.data = &inc_int; + * + * // set up FT_Open_Args structure + * open_args.flags = FT_OPEN_PATHNAME | FT_OPEN_PARAMS; + * open_args.pathname = my_font_pathname; + * open_args.num_params = 1; + * open_args.params = ¶meter; // we use one optional argument + * + * // open the font + * error = FT_Open_Face( library, &open_args, index, &face ); + * ... + * ``` + * + */ + typedef struct FT_Incremental_InterfaceRec_ + { + const FT_Incremental_FuncsRec* funcs; + FT_Incremental object; + + } FT_Incremental_InterfaceRec; + + + /************************************************************************** + * + * @type: + * FT_Incremental_Interface + * + * @description: + * A pointer to an @FT_Incremental_InterfaceRec structure. + * + */ + typedef FT_Incremental_InterfaceRec* FT_Incremental_Interface; + + + /* */ + + +FT_END_HEADER + +#endif /* FTINCREM_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftlcdfil.h b/external/lumin/thirdparty/freetype/include/freetype/ftlcdfil.h new file mode 100644 index 0000000..c767c6c --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftlcdfil.h @@ -0,0 +1,323 @@ +/**************************************************************************** + * + * ftlcdfil.h + * + * FreeType API for color filtering of subpixel bitmap glyphs + * (specification). + * + * Copyright (C) 2006-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTLCDFIL_H_ +#define FTLCDFIL_H_ + +#include +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * lcd_rendering + * + * @title: + * Subpixel Rendering + * + * @abstract: + * API to control subpixel rendering. + * + * @description: + * FreeType provides two alternative subpixel rendering technologies. + * Should you define `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` in your + * `ftoption.h` file, this enables ClearType-style rendering. + * Otherwise, Harmony LCD rendering is enabled. These technologies are + * controlled differently and API described below, although always + * available, performs its function when appropriate method is enabled + * and does nothing otherwise. + * + * ClearType-style LCD rendering exploits the color-striped structure of + * LCD pixels, increasing the available resolution in the direction of + * the stripe (usually horizontal RGB) by a factor of~3. Using the + * subpixel coverages unfiltered can create severe color fringes + * especially when rendering thin features. Indeed, to produce + * black-on-white text, the nearby color subpixels must be dimmed + * evenly. Therefore, an equalizing 5-tap FIR filter should be applied + * to subpixel coverages regardless of pixel boundaries and should have + * these properties: + * + * 1. It should be symmetrical, like {~a, b, c, b, a~}, to avoid + * any shifts in appearance. + * + * 2. It should be color-balanced, meaning a~+ b~=~c, to reduce color + * fringes by distributing the computed coverage for one subpixel to + * all subpixels equally. + * + * 3. It should be normalized, meaning 2a~+ 2b~+ c~=~1.0 to maintain + * overall brightness. + * + * Boxy 3-tap filter {0, 1/3, 1/3, 1/3, 0} is sharper but is less + * forgiving of non-ideal gamma curves of a screen (and viewing angles), + * beveled filters are fuzzier but more tolerant. + * + * Use the @FT_Library_SetLcdFilter or @FT_Library_SetLcdFilterWeights + * API to specify a low-pass filter, which is then applied to + * subpixel-rendered bitmaps generated through @FT_Render_Glyph. + * + * Harmony LCD rendering is suitable to panels with any regular subpixel + * structure, not just monitors with 3 color striped subpixels, as long + * as the color subpixels have fixed positions relative to the pixel + * center. In this case, each color channel can be rendered separately + * after shifting the outline opposite to the subpixel shift so that the + * coverage maps are aligned. This method is immune to color fringes + * because the shifts do not change integral coverage. + * + * The subpixel geometry must be specified by xy-coordinates for each + * subpixel. By convention they may come in the RGB order: {{-1/3, 0}, + * {0, 0}, {1/3, 0}} for standard RGB striped panel or {{-1/6, 1/4}, + * {-1/6, -1/4}, {1/3, 0}} for a certain PenTile panel. + * + * Use the @FT_Library_SetLcdGeometry API to specify subpixel positions. + * If one follows the RGB order convention, the same order applies to the + * resulting @FT_PIXEL_MODE_LCD and @FT_PIXEL_MODE_LCD_V bitmaps. Note, + * however, that the coordinate frame for the latter must be rotated + * clockwise. Harmony with default LCD geometry is equivalent to + * ClearType with light filter. + * + * As a result of ClearType filtering or Harmony shifts, the resulting + * dimensions of LCD bitmaps can be slightly wider or taller than the + * dimensions the original outline with regard to the pixel grid. + * For example, for @FT_RENDER_MODE_LCD, the filter adds 2~subpixels to + * the left, and 2~subpixels to the right. The bitmap offset values are + * adjusted accordingly, so clients shouldn't need to modify their layout + * and glyph positioning code when enabling the filter. + * + * The ClearType and Harmony rendering is applicable to glyph bitmaps + * rendered through @FT_Render_Glyph, @FT_Load_Glyph, @FT_Load_Char, and + * @FT_Glyph_To_Bitmap, when @FT_RENDER_MODE_LCD or @FT_RENDER_MODE_LCD_V + * is specified. This API does not control @FT_Outline_Render and + * @FT_Outline_Get_Bitmap. + * + * The described algorithms can completely remove color artefacts when + * combined with gamma-corrected alpha blending in linear space. Each of + * the 3~alpha values (subpixels) must by independently used to blend one + * color channel. That is, red alpha blends the red channel of the text + * color with the red channel of the background pixel. + */ + + + /************************************************************************** + * + * @enum: + * FT_LcdFilter + * + * @description: + * A list of values to identify various types of LCD filters. + * + * @values: + * FT_LCD_FILTER_NONE :: + * Do not perform filtering. When used with subpixel rendering, this + * results in sometimes severe color fringes. + * + * FT_LCD_FILTER_DEFAULT :: + * This is a beveled, normalized, and color-balanced five-tap filter + * with weights of [0x08 0x4D 0x56 0x4D 0x08] in 1/256th units. + * + * FT_LCD_FILTER_LIGHT :: + * this is a boxy, normalized, and color-balanced three-tap filter with + * weights of [0x00 0x55 0x56 0x55 0x00] in 1/256th units. + * + * FT_LCD_FILTER_LEGACY :: + * FT_LCD_FILTER_LEGACY1 :: + * This filter corresponds to the original libXft color filter. It + * provides high contrast output but can exhibit really bad color + * fringes if glyphs are not extremely well hinted to the pixel grid. + * This filter is only provided for comparison purposes, and might be + * disabled or stay unsupported in the future. The second value is + * provided for compatibility with FontConfig, which historically used + * different enumeration, sometimes incorrectly forwarded to FreeType. + * + * @since: + * 2.3.0 (`FT_LCD_FILTER_LEGACY1` since 2.6.2) + */ + typedef enum FT_LcdFilter_ + { + FT_LCD_FILTER_NONE = 0, + FT_LCD_FILTER_DEFAULT = 1, + FT_LCD_FILTER_LIGHT = 2, + FT_LCD_FILTER_LEGACY1 = 3, + FT_LCD_FILTER_LEGACY = 16, + + FT_LCD_FILTER_MAX /* do not remove */ + + } FT_LcdFilter; + + + /************************************************************************** + * + * @function: + * FT_Library_SetLcdFilter + * + * @description: + * This function is used to change filter applied to LCD decimated + * bitmaps, like the ones used when calling @FT_Render_Glyph with + * @FT_RENDER_MODE_LCD or @FT_RENDER_MODE_LCD_V. + * + * @input: + * library :: + * A handle to the target library instance. + * + * filter :: + * The filter type. + * + * You can use @FT_LCD_FILTER_NONE here to disable this feature, or + * @FT_LCD_FILTER_DEFAULT to use a default filter that should work well + * on most LCD screens. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Since 2.10.3 the LCD filtering is enabled with @FT_LCD_FILTER_DEFAULT. + * It is no longer necessary to call this function explicitly except + * to choose a different filter or disable filtering altogether with + * @FT_LCD_FILTER_NONE. + * + * This function does nothing but returns `FT_Err_Unimplemented_Feature` + * if the configuration macro `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` is + * not defined in your build of the library. + * + * @since: + * 2.3.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdFilter( FT_Library library, + FT_LcdFilter filter ); + + + /************************************************************************** + * + * @function: + * FT_Library_SetLcdFilterWeights + * + * @description: + * This function can be used to enable LCD filter with custom weights, + * instead of using presets in @FT_Library_SetLcdFilter. + * + * @input: + * library :: + * A handle to the target library instance. + * + * weights :: + * A pointer to an array; the function copies the first five bytes and + * uses them to specify the filter weights in 1/256th units. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function does nothing but returns `FT_Err_Unimplemented_Feature` + * if the configuration macro `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` is + * not defined in your build of the library. + * + * LCD filter weights can also be set per face using @FT_Face_Properties + * with @FT_PARAM_TAG_LCD_FILTER_WEIGHTS. + * + * @since: + * 2.4.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdFilterWeights( FT_Library library, + unsigned char *weights ); + + + /************************************************************************** + * + * @type: + * FT_LcdFiveTapFilter + * + * @description: + * A typedef for passing the five LCD filter weights to + * @FT_Face_Properties within an @FT_Parameter structure. + * + * @since: + * 2.8 + * + */ +#define FT_LCD_FILTER_FIVE_TAPS 5 + + typedef FT_Byte FT_LcdFiveTapFilter[FT_LCD_FILTER_FIVE_TAPS]; + + + /************************************************************************** + * + * @function: + * FT_Library_SetLcdGeometry + * + * @description: + * This function can be used to modify default positions of color + * subpixels, which controls Harmony LCD rendering. + * + * @input: + * library :: + * A handle to the target library instance. + * + * sub :: + * A pointer to an array of 3 vectors in 26.6 fractional pixel format; + * the function modifies the default values, see the note below. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Subpixel geometry examples: + * + * - {{-21, 0}, {0, 0}, {21, 0}} is the default, corresponding to 3 color + * stripes shifted by a third of a pixel. This could be an RGB panel. + * + * - {{21, 0}, {0, 0}, {-21, 0}} looks the same as the default but can + * specify a BGR panel instead, while keeping the bitmap in the same + * RGB888 format. + * + * - {{0, 21}, {0, 0}, {0, -21}} is the vertical RGB, but the bitmap + * stays RGB888 as a result. + * + * - {{-11, 16}, {-11, -16}, {22, 0}} is a certain PenTile arrangement. + * + * This function does nothing and returns `FT_Err_Unimplemented_Feature` + * in the context of ClearType-style subpixel rendering when + * `FT_CONFIG_OPTION_SUBPIXEL_RENDERING` is defined in your build of the + * library. + * + * @since: + * 2.10.0 + */ + FT_EXPORT( FT_Error ) + FT_Library_SetLcdGeometry( FT_Library library, + FT_Vector sub[3] ); + + /* */ + + +FT_END_HEADER + +#endif /* FTLCDFIL_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftlist.h b/external/lumin/thirdparty/freetype/include/freetype/ftlist.h new file mode 100644 index 0000000..4dca2bf --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftlist.h @@ -0,0 +1,296 @@ +/**************************************************************************** + * + * ftlist.h + * + * Generic list support for FreeType (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file implements functions relative to list processing. Its data + * structures are defined in `freetype.h`. + * + */ + + +#ifndef FTLIST_H_ +#define FTLIST_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * list_processing + * + * @title: + * List Processing + * + * @abstract: + * Simple management of lists. + * + * @description: + * This section contains various definitions related to list processing + * using doubly-linked nodes. + * + * @order: + * FT_List + * FT_ListNode + * FT_ListRec + * FT_ListNodeRec + * + * FT_List_Add + * FT_List_Insert + * FT_List_Find + * FT_List_Remove + * FT_List_Up + * FT_List_Iterate + * FT_List_Iterator + * FT_List_Finalize + * FT_List_Destructor + * + */ + + + /************************************************************************** + * + * @function: + * FT_List_Find + * + * @description: + * Find the list node for a given listed object. + * + * @input: + * list :: + * A pointer to the parent list. + * data :: + * The address of the listed object. + * + * @return: + * List node. `NULL` if it wasn't found. + */ + FT_EXPORT( FT_ListNode ) + FT_List_Find( FT_List list, + void* data ); + + + /************************************************************************** + * + * @function: + * FT_List_Add + * + * @description: + * Append an element to the end of a list. + * + * @inout: + * list :: + * A pointer to the parent list. + * node :: + * The node to append. + */ + FT_EXPORT( void ) + FT_List_Add( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @function: + * FT_List_Insert + * + * @description: + * Insert an element at the head of a list. + * + * @inout: + * list :: + * A pointer to parent list. + * node :: + * The node to insert. + */ + FT_EXPORT( void ) + FT_List_Insert( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @function: + * FT_List_Remove + * + * @description: + * Remove a node from a list. This function doesn't check whether the + * node is in the list! + * + * @input: + * node :: + * The node to remove. + * + * @inout: + * list :: + * A pointer to the parent list. + */ + FT_EXPORT( void ) + FT_List_Remove( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @function: + * FT_List_Up + * + * @description: + * Move a node to the head/top of a list. Used to maintain LRU lists. + * + * @inout: + * list :: + * A pointer to the parent list. + * node :: + * The node to move. + */ + FT_EXPORT( void ) + FT_List_Up( FT_List list, + FT_ListNode node ); + + + /************************************************************************** + * + * @functype: + * FT_List_Iterator + * + * @description: + * An FT_List iterator function that is called during a list parse by + * @FT_List_Iterate. + * + * @input: + * node :: + * The current iteration list node. + * + * user :: + * A typeless pointer passed to @FT_List_Iterate. Can be used to point + * to the iteration's state. + */ + typedef FT_Error + (*FT_List_Iterator)( FT_ListNode node, + void* user ); + + + /************************************************************************** + * + * @function: + * FT_List_Iterate + * + * @description: + * Parse a list and calls a given iterator function on each element. + * Note that parsing is stopped as soon as one of the iterator calls + * returns a non-zero value. + * + * @input: + * list :: + * A handle to the list. + * iterator :: + * An iterator function, called on each node of the list. + * user :: + * A user-supplied field that is passed as the second argument to the + * iterator. + * + * @return: + * The result (a FreeType error code) of the last iterator call. + */ + FT_EXPORT( FT_Error ) + FT_List_Iterate( FT_List list, + FT_List_Iterator iterator, + void* user ); + + + /************************************************************************** + * + * @functype: + * FT_List_Destructor + * + * @description: + * An @FT_List iterator function that is called during a list + * finalization by @FT_List_Finalize to destroy all elements in a given + * list. + * + * @input: + * system :: + * The current system object. + * + * data :: + * The current object to destroy. + * + * user :: + * A typeless pointer passed to @FT_List_Iterate. It can be used to + * point to the iteration's state. + */ + typedef void + (*FT_List_Destructor)( FT_Memory memory, + void* data, + void* user ); + + + /************************************************************************** + * + * @function: + * FT_List_Finalize + * + * @description: + * Destroy all elements in the list as well as the list itself. + * + * @input: + * list :: + * A handle to the list. + * + * destroy :: + * A list destructor that will be applied to each element of the list. + * Set this to `NULL` if not needed. + * + * memory :: + * The current memory object that handles deallocation. + * + * user :: + * A user-supplied field that is passed as the last argument to the + * destructor. + * + * @note: + * This function expects that all nodes added by @FT_List_Add or + * @FT_List_Insert have been dynamically allocated. + */ + FT_EXPORT( void ) + FT_List_Finalize( FT_List list, + FT_List_Destructor destroy, + FT_Memory memory, + void* user ); + + /* */ + + +FT_END_HEADER + +#endif /* FTLIST_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftlogging.h b/external/lumin/thirdparty/freetype/include/freetype/ftlogging.h new file mode 100644 index 0000000..7213dc3 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftlogging.h @@ -0,0 +1,184 @@ +/**************************************************************************** + * + * ftlogging.h + * + * Additional debugging APIs. + * + * Copyright (C) 2020-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTLOGGING_H_ +#define FTLOGGING_H_ + + +#include +#include FT_CONFIG_CONFIG_H + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * debugging_apis + * + * @title: + * External Debugging APIs + * + * @abstract: + * Public APIs to control the `FT_DEBUG_LOGGING` macro. + * + * @description: + * This section contains the declarations of public functions that + * enables fine control of what the `FT_DEBUG_LOGGING` macro outputs. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Trace_Set_Level + * + * @description: + * Change the levels of tracing components of FreeType at run time. + * + * @input: + * tracing_level :: + * New tracing value. + * + * @example: + * The following call makes FreeType trace everything but the 'memory' + * component. + * + * ``` + * FT_Trace_Set_Level( "any:7 memory:0 ); + * ``` + * + * @note: + * This function does nothing if compilation option `FT_DEBUG_LOGGING` + * isn't set. + * + * @since: + * 2.11 + * + */ + FT_EXPORT( void ) + FT_Trace_Set_Level( const char* tracing_level ); + + + /************************************************************************** + * + * @function: + * FT_Trace_Set_Default_Level + * + * @description: + * Reset tracing value of FreeType's components to the default value + * (i.e., to the value of the `FT2_DEBUG` environment value or to NULL + * if `FT2_DEBUG` is not set). + * + * @note: + * This function does nothing if compilation option `FT_DEBUG_LOGGING` + * isn't set. + * + * @since: + * 2.11 + * + */ + FT_EXPORT( void ) + FT_Trace_Set_Default_Level( void ); + + + /************************************************************************** + * + * @functype: + * FT_Custom_Log_Handler + * + * @description: + * A function typedef that is used to handle the logging of tracing and + * debug messages on a file system. + * + * @input: + * ft_component :: + * The name of `FT_COMPONENT` from which the current debug or error + * message is produced. + * + * fmt :: + * Actual debug or tracing message. + * + * args:: + * Arguments of debug or tracing messages. + * + * @since: + * 2.11 + * + */ + typedef void + (*FT_Custom_Log_Handler)( const char* ft_component, + const char* fmt, + va_list args ); + + + /************************************************************************** + * + * @function: + * FT_Set_Log_Handler + * + * @description: + * A function to set a custom log handler. + * + * @input: + * handler :: + * New logging function. + * + * @note: + * This function does nothing if compilation option `FT_DEBUG_LOGGING` + * isn't set. + * + * @since: + * 2.11 + * + */ + FT_EXPORT( void ) + FT_Set_Log_Handler( FT_Custom_Log_Handler handler ); + + + /************************************************************************** + * + * @function: + * FT_Set_Default_Log_Handler + * + * @description: + * A function to undo the effect of @FT_Set_Log_Handler, resetting the + * log handler to FreeType's built-in version. + * + * @note: + * This function does nothing if compilation option `FT_DEBUG_LOGGING` + * isn't set. + * + * @since: + * 2.11 + * + */ + FT_EXPORT( void ) + FT_Set_Default_Log_Handler( void ); + + /* */ + + +FT_END_HEADER + +#endif /* FTLOGGING_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftlzw.h b/external/lumin/thirdparty/freetype/include/freetype/ftlzw.h new file mode 100644 index 0000000..3d7cfd5 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftlzw.h @@ -0,0 +1,100 @@ +/**************************************************************************** + * + * ftlzw.h + * + * LZW-compressed stream support. + * + * Copyright (C) 2004-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTLZW_H_ +#define FTLZW_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * lzw + * + * @title: + * LZW Streams + * + * @abstract: + * Using LZW-compressed font files. + * + * @description: + * In certain builds of the library, LZW compression recognition is + * automatically handled when calling @FT_New_Face or @FT_Open_Face. + * This means that if no font driver is capable of handling the raw + * compressed file, the library will try to open a LZW stream from it and + * re-open the face with it. + * + * The stream implementation is very basic and resets the decompression + * process each time seeking backwards is needed within the stream, + * which significantly undermines the performance. + * + * This section contains the declaration of LZW-specific functions. + * + */ + + /************************************************************************** + * + * @function: + * FT_Stream_OpenLZW + * + * @description: + * Open a new stream to parse LZW-compressed font files. This is mainly + * used to support the compressed `*.pcf.Z` fonts that come with XFree86. + * + * @input: + * stream :: + * The target embedding stream. + * + * source :: + * The source stream. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source stream must be opened _before_ calling this function. + * + * Calling the internal function `FT_Stream_Close` on the new stream will + * **not** call `FT_Stream_Close` on the source stream. None of the + * stream objects will be released to the heap. + * + * This function may return `FT_Err_Unimplemented_Feature` if your build + * of FreeType was not compiled with LZW support. + */ + FT_EXPORT( FT_Error ) + FT_Stream_OpenLZW( FT_Stream stream, + FT_Stream source ); + + /* */ + + +FT_END_HEADER + +#endif /* FTLZW_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftmac.h b/external/lumin/thirdparty/freetype/include/freetype/ftmac.h new file mode 100644 index 0000000..3dd61d0 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftmac.h @@ -0,0 +1,289 @@ +/**************************************************************************** + * + * ftmac.h + * + * Additional Mac-specific API. + * + * Copyright (C) 1996-2022 by + * Just van Rossum, David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +/**************************************************************************** + * + * NOTE: Include this file after `FT_FREETYPE_H` and after any + * Mac-specific headers (because this header uses Mac types such as + * 'Handle', 'FSSpec', 'FSRef', etc.) + * + */ + + +#ifndef FTMAC_H_ +#define FTMAC_H_ + + + + +FT_BEGIN_HEADER + + + /* gcc-3.1 and later can warn about functions tagged as deprecated */ +#ifndef FT_DEPRECATED_ATTRIBUTE +#if defined( __GNUC__ ) && \ + ( ( __GNUC__ >= 4 ) || \ + ( ( __GNUC__ == 3 ) && ( __GNUC_MINOR__ >= 1 ) ) ) +#define FT_DEPRECATED_ATTRIBUTE __attribute__(( deprecated )) +#else +#define FT_DEPRECATED_ATTRIBUTE +#endif +#endif + + + /************************************************************************** + * + * @section: + * mac_specific + * + * @title: + * Mac Specific Interface + * + * @abstract: + * Only available on the Macintosh. + * + * @description: + * The following definitions are only available if FreeType is compiled + * on a Macintosh. + * + */ + + + /************************************************************************** + * + * @function: + * FT_New_Face_From_FOND + * + * @description: + * Create a new face object from a FOND resource. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * fond :: + * A FOND resource. + * + * face_index :: + * Only supported for the -1 'sanity check' special case. + * + * @output: + * aface :: + * A handle to a new face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @example: + * This function can be used to create @FT_Face objects from fonts that + * are installed in the system as follows. + * + * ``` + * fond = GetResource( 'FOND', fontName ); + * error = FT_New_Face_From_FOND( library, fond, 0, &face ); + * ``` + */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FOND( FT_Library library, + Handle fond, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_GetFile_From_Mac_Name + * + * @description: + * Return an FSSpec for the disk file containing the named font. + * + * @input: + * fontName :: + * Mac OS name of the font (e.g., Times New Roman Bold). + * + * @output: + * pathSpec :: + * FSSpec to the file. For passing to @FT_New_Face_From_FSSpec. + * + * face_index :: + * Index of the face. For passing to @FT_New_Face_From_FSSpec. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_GetFile_From_Mac_Name( const char* fontName, + FSSpec* pathSpec, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_GetFile_From_Mac_ATS_Name + * + * @description: + * Return an FSSpec for the disk file containing the named font. + * + * @input: + * fontName :: + * Mac OS name of the font in ATS framework. + * + * @output: + * pathSpec :: + * FSSpec to the file. For passing to @FT_New_Face_From_FSSpec. + * + * face_index :: + * Index of the face. For passing to @FT_New_Face_From_FSSpec. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_GetFile_From_Mac_ATS_Name( const char* fontName, + FSSpec* pathSpec, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_GetFilePath_From_Mac_ATS_Name + * + * @description: + * Return a pathname of the disk file and face index for given font name + * that is handled by ATS framework. + * + * @input: + * fontName :: + * Mac OS name of the font in ATS framework. + * + * @output: + * path :: + * Buffer to store pathname of the file. For passing to @FT_New_Face. + * The client must allocate this buffer before calling this function. + * + * maxPathSize :: + * Lengths of the buffer `path` that client allocated. + * + * face_index :: + * Index of the face. For passing to @FT_New_Face. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_GetFilePath_From_Mac_ATS_Name( const char* fontName, + UInt8* path, + UInt32 maxPathSize, + FT_Long* face_index ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_New_Face_From_FSSpec + * + * @description: + * Create a new face object from a given resource and typeface index + * using an FSSpec to the font file. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * spec :: + * FSSpec to the font file. + * + * face_index :: + * The index of the face within the resource. The first face has + * index~0. + * @output: + * aface :: + * A handle to a new face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * @FT_New_Face_From_FSSpec is identical to @FT_New_Face except it + * accepts an FSSpec instead of a path. + */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FSSpec( FT_Library library, + const FSSpec *spec, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + + /************************************************************************** + * + * @function: + * FT_New_Face_From_FSRef + * + * @description: + * Create a new face object from a given resource and typeface index + * using an FSRef to the font file. + * + * @inout: + * library :: + * A handle to the library resource. + * + * @input: + * spec :: + * FSRef to the font file. + * + * face_index :: + * The index of the face within the resource. The first face has + * index~0. + * @output: + * aface :: + * A handle to a new face object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * @FT_New_Face_From_FSRef is identical to @FT_New_Face except it accepts + * an FSRef instead of a path. + */ + FT_EXPORT( FT_Error ) + FT_New_Face_From_FSRef( FT_Library library, + const FSRef *ref, + FT_Long face_index, + FT_Face *aface ) + FT_DEPRECATED_ATTRIBUTE; + + /* */ + + +FT_END_HEADER + + +#endif /* FTMAC_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftmm.h b/external/lumin/thirdparty/freetype/include/freetype/ftmm.h new file mode 100644 index 0000000..c74ce61 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftmm.h @@ -0,0 +1,755 @@ +/**************************************************************************** + * + * ftmm.h + * + * FreeType Multiple Master font interface (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTMM_H_ +#define FTMM_H_ + + +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * multiple_masters + * + * @title: + * Multiple Masters + * + * @abstract: + * How to manage Multiple Masters fonts. + * + * @description: + * The following types and functions are used to manage Multiple Master + * fonts, i.e., the selection of specific design instances by setting + * design axis coordinates. + * + * Besides Adobe MM fonts, the interface supports Apple's TrueType GX and + * OpenType variation fonts. Some of the routines only work with Adobe + * MM fonts, others will work with all three types. They are similar + * enough that a consistent interface makes sense. + * + * For Adobe MM fonts, macro @FT_IS_SFNT returns false. For GX and + * OpenType variation fonts, it returns true. + * + */ + + + /************************************************************************** + * + * @struct: + * FT_MM_Axis + * + * @description: + * A structure to model a given axis in design space for Multiple Masters + * fonts. + * + * This structure can't be used for TrueType GX or OpenType variation + * fonts. + * + * @fields: + * name :: + * The axis's name. + * + * minimum :: + * The axis's minimum design coordinate. + * + * maximum :: + * The axis's maximum design coordinate. + */ + typedef struct FT_MM_Axis_ + { + FT_String* name; + FT_Long minimum; + FT_Long maximum; + + } FT_MM_Axis; + + + /************************************************************************** + * + * @struct: + * FT_Multi_Master + * + * @description: + * A structure to model the axes and space of a Multiple Masters font. + * + * This structure can't be used for TrueType GX or OpenType variation + * fonts. + * + * @fields: + * num_axis :: + * Number of axes. Cannot exceed~4. + * + * num_designs :: + * Number of designs; should be normally 2^num_axis even though the + * Type~1 specification strangely allows for intermediate designs to be + * present. This number cannot exceed~16. + * + * axis :: + * A table of axis descriptors. + */ + typedef struct FT_Multi_Master_ + { + FT_UInt num_axis; + FT_UInt num_designs; + FT_MM_Axis axis[T1_MAX_MM_AXIS]; + + } FT_Multi_Master; + + + /************************************************************************** + * + * @struct: + * FT_Var_Axis + * + * @description: + * A structure to model a given axis in design space for Multiple + * Masters, TrueType GX, and OpenType variation fonts. + * + * @fields: + * name :: + * The axis's name. Not always meaningful for TrueType GX or OpenType + * variation fonts. + * + * minimum :: + * The axis's minimum design coordinate. + * + * def :: + * The axis's default design coordinate. FreeType computes meaningful + * default values for Adobe MM fonts. + * + * maximum :: + * The axis's maximum design coordinate. + * + * tag :: + * The axis's tag (the equivalent to 'name' for TrueType GX and + * OpenType variation fonts). FreeType provides default values for + * Adobe MM fonts if possible. + * + * strid :: + * The axis name entry in the font's 'name' table. This is another + * (and often better) version of the 'name' field for TrueType GX or + * OpenType variation fonts. Not meaningful for Adobe MM fonts. + * + * @note: + * The fields `minimum`, `def`, and `maximum` are 16.16 fractional values + * for TrueType GX and OpenType variation fonts. For Adobe MM fonts, the + * values are integers. + */ + typedef struct FT_Var_Axis_ + { + FT_String* name; + + FT_Fixed minimum; + FT_Fixed def; + FT_Fixed maximum; + + FT_ULong tag; + FT_UInt strid; + + } FT_Var_Axis; + + + /************************************************************************** + * + * @struct: + * FT_Var_Named_Style + * + * @description: + * A structure to model a named instance in a TrueType GX or OpenType + * variation font. + * + * This structure can't be used for Adobe MM fonts. + * + * @fields: + * coords :: + * The design coordinates for this instance. This is an array with one + * entry for each axis. + * + * strid :: + * The entry in 'name' table identifying this instance. + * + * psid :: + * The entry in 'name' table identifying a PostScript name for this + * instance. Value 0xFFFF indicates a missing entry. + */ + typedef struct FT_Var_Named_Style_ + { + FT_Fixed* coords; + FT_UInt strid; + FT_UInt psid; /* since 2.7.1 */ + + } FT_Var_Named_Style; + + + /************************************************************************** + * + * @struct: + * FT_MM_Var + * + * @description: + * A structure to model the axes and space of an Adobe MM, TrueType GX, + * or OpenType variation font. + * + * Some fields are specific to one format and not to the others. + * + * @fields: + * num_axis :: + * The number of axes. The maximum value is~4 for Adobe MM fonts; no + * limit in TrueType GX or OpenType variation fonts. + * + * num_designs :: + * The number of designs; should be normally 2^num_axis for Adobe MM + * fonts. Not meaningful for TrueType GX or OpenType variation fonts + * (where every glyph could have a different number of designs). + * + * num_namedstyles :: + * The number of named styles; a 'named style' is a tuple of design + * coordinates that has a string ID (in the 'name' table) associated + * with it. The font can tell the user that, for example, + * [Weight=1.5,Width=1.1] is 'Bold'. Another name for 'named style' is + * 'named instance'. + * + * For Adobe Multiple Masters fonts, this value is always zero because + * the format does not support named styles. + * + * axis :: + * An axis descriptor table. TrueType GX and OpenType variation fonts + * contain slightly more data than Adobe MM fonts. Memory management + * of this pointer is done internally by FreeType. + * + * namedstyle :: + * A named style (instance) table. Only meaningful for TrueType GX and + * OpenType variation fonts. Memory management of this pointer is done + * internally by FreeType. + */ + typedef struct FT_MM_Var_ + { + FT_UInt num_axis; + FT_UInt num_designs; + FT_UInt num_namedstyles; + FT_Var_Axis* axis; + FT_Var_Named_Style* namedstyle; + + } FT_MM_Var; + + + /************************************************************************** + * + * @function: + * FT_Get_Multi_Master + * + * @description: + * Retrieve a variation descriptor of a given Adobe MM font. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @input: + * face :: + * A handle to the source face. + * + * @output: + * amaster :: + * The Multiple Masters descriptor. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Get_Multi_Master( FT_Face face, + FT_Multi_Master *amaster ); + + + /************************************************************************** + * + * @function: + * FT_Get_MM_Var + * + * @description: + * Retrieve a variation descriptor for a given font. + * + * This function works with all supported variation formats. + * + * @input: + * face :: + * A handle to the source face. + * + * @output: + * amaster :: + * The variation descriptor. Allocates a data structure, which the + * user must deallocate with a call to @FT_Done_MM_Var after use. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Get_MM_Var( FT_Face face, + FT_MM_Var* *amaster ); + + + /************************************************************************** + * + * @function: + * FT_Done_MM_Var + * + * @description: + * Free the memory allocated by @FT_Get_MM_Var. + * + * @input: + * library :: + * A handle of the face's parent library object that was used in the + * call to @FT_Get_MM_Var to create `amaster`. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Done_MM_Var( FT_Library library, + FT_MM_Var *amaster ); + + + /************************************************************************** + * + * @function: + * FT_Set_MM_Design_Coordinates + * + * @description: + * For Adobe MM fonts, choose an interpolated font design through design + * coordinates. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * num_coords :: + * The number of available design coordinates. If it is larger than + * the number of axes, ignore the excess values. If it is smaller than + * the number of axes, use default values for the remaining axes. + * + * coords :: + * An array of design coordinates. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * [Since 2.8.1] To reset all axes to the default values, call the + * function with `num_coords` set to zero and `coords` set to `NULL`. + * + * [Since 2.9] If `num_coords` is larger than zero, this function sets + * the @FT_FACE_FLAG_VARIATION bit in @FT_Face's `face_flags` field + * (i.e., @FT_IS_VARIATION will return true). If `num_coords` is zero, + * this bit flag gets unset. + */ + FT_EXPORT( FT_Error ) + FT_Set_MM_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Long* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_Var_Design_Coordinates + * + * @description: + * Choose an interpolated font design through design coordinates. + * + * This function works with all supported variation formats. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * num_coords :: + * The number of available design coordinates. If it is larger than + * the number of axes, ignore the excess values. If it is smaller than + * the number of axes, use default values for the remaining axes. + * + * coords :: + * An array of design coordinates. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * [Since 2.8.1] To reset all axes to the default values, call the + * function with `num_coords` set to zero and `coords` set to `NULL`. + * [Since 2.9] 'Default values' means the currently selected named + * instance (or the base font if no named instance is selected). + * + * [Since 2.9] If `num_coords` is larger than zero, this function sets + * the @FT_FACE_FLAG_VARIATION bit in @FT_Face's `face_flags` field + * (i.e., @FT_IS_VARIATION will return true). If `num_coords` is zero, + * this bit flag gets unset. + */ + FT_EXPORT( FT_Error ) + FT_Set_Var_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Get_Var_Design_Coordinates + * + * @description: + * Get the design coordinates of the currently selected interpolated + * font. + * + * This function works with all supported variation formats. + * + * @input: + * face :: + * A handle to the source face. + * + * num_coords :: + * The number of design coordinates to retrieve. If it is larger than + * the number of axes, set the excess values to~0. + * + * @output: + * coords :: + * The design coordinates array. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.7.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_Var_Design_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_MM_Blend_Coordinates + * + * @description: + * Choose an interpolated font design through normalized blend + * coordinates. + * + * This function works with all supported variation formats. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * num_coords :: + * The number of available design coordinates. If it is larger than + * the number of axes, ignore the excess values. If it is smaller than + * the number of axes, use default values for the remaining axes. + * + * coords :: + * The design coordinates array (each element must be between 0 and 1.0 + * for Adobe MM fonts, and between -1.0 and 1.0 for TrueType GX and + * OpenType variation fonts). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * [Since 2.8.1] To reset all axes to the default values, call the + * function with `num_coords` set to zero and `coords` set to `NULL`. + * [Since 2.9] 'Default values' means the currently selected named + * instance (or the base font if no named instance is selected). + * + * [Since 2.9] If `num_coords` is larger than zero, this function sets + * the @FT_FACE_FLAG_VARIATION bit in @FT_Face's `face_flags` field + * (i.e., @FT_IS_VARIATION will return true). If `num_coords` is zero, + * this bit flag gets unset. + */ + FT_EXPORT( FT_Error ) + FT_Set_MM_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Get_MM_Blend_Coordinates + * + * @description: + * Get the normalized blend coordinates of the currently selected + * interpolated font. + * + * This function works with all supported variation formats. + * + * @input: + * face :: + * A handle to the source face. + * + * num_coords :: + * The number of normalized blend coordinates to retrieve. If it is + * larger than the number of axes, set the excess values to~0.5 for + * Adobe MM fonts, and to~0 for TrueType GX and OpenType variation + * fonts. + * + * @output: + * coords :: + * The normalized blend coordinates array. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.7.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_MM_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_Var_Blend_Coordinates + * + * @description: + * This is another name of @FT_Set_MM_Blend_Coordinates. + */ + FT_EXPORT( FT_Error ) + FT_Set_Var_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Get_Var_Blend_Coordinates + * + * @description: + * This is another name of @FT_Get_MM_Blend_Coordinates. + * + * @since: + * 2.7.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_Var_Blend_Coordinates( FT_Face face, + FT_UInt num_coords, + FT_Fixed* coords ); + + + /************************************************************************** + * + * @function: + * FT_Set_MM_WeightVector + * + * @description: + * For Adobe MM fonts, choose an interpolated font design by directly + * setting the weight vector. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @inout: + * face :: + * A handle to the source face. + * + * @input: + * len :: + * The length of the weight vector array. If it is larger than the + * number of designs, the extra values are ignored. If it is less than + * the number of designs, the remaining values are set to zero. + * + * weightvector :: + * An array representing the weight vector. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Adobe Multiple Master fonts limit the number of designs, and thus the + * length of the weight vector to~16. + * + * If `len` is zero and `weightvector` is `NULL`, the weight vector array + * is reset to the default values. + * + * The Adobe documentation also states that the values in the + * WeightVector array must total 1.0 +/-~0.001. In practice this does + * not seem to be enforced, so is not enforced here, either. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Set_MM_WeightVector( FT_Face face, + FT_UInt len, + FT_Fixed* weightvector ); + + + /************************************************************************** + * + * @function: + * FT_Get_MM_WeightVector + * + * @description: + * For Adobe MM fonts, retrieve the current weight vector of the font. + * + * This function can't be used with TrueType GX or OpenType variation + * fonts. + * + * @inout: + * face :: + * A handle to the source face. + * + * len :: + * A pointer to the size of the array to be filled. If the size of the + * array is less than the number of designs, `FT_Err_Invalid_Argument` + * is returned, and `len` is set to the required size (the number of + * designs). If the size of the array is greater than the number of + * designs, the remaining entries are set to~0. On successful + * completion, `len` is set to the number of designs (i.e., the number + * of values written to the array). + * + * @output: + * weightvector :: + * An array to be filled. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Adobe Multiple Master fonts limit the number of designs, and thus the + * length of the WeightVector to~16. + * + * @since: + * 2.10 + */ + FT_EXPORT( FT_Error ) + FT_Get_MM_WeightVector( FT_Face face, + FT_UInt* len, + FT_Fixed* weightvector ); + + + /************************************************************************** + * + * @enum: + * FT_VAR_AXIS_FLAG_XXX + * + * @description: + * A list of bit flags used in the return value of + * @FT_Get_Var_Axis_Flags. + * + * @values: + * FT_VAR_AXIS_FLAG_HIDDEN :: + * The variation axis should not be exposed to user interfaces. + * + * @since: + * 2.8.1 + */ +#define FT_VAR_AXIS_FLAG_HIDDEN 1 + + + /************************************************************************** + * + * @function: + * FT_Get_Var_Axis_Flags + * + * @description: + * Get the 'flags' field of an OpenType Variation Axis Record. + * + * Not meaningful for Adobe MM fonts (`*flags` is always zero). + * + * @input: + * master :: + * The variation descriptor. + * + * axis_index :: + * The index of the requested variation axis. + * + * @output: + * flags :: + * The 'flags' field. See @FT_VAR_AXIS_FLAG_XXX for possible values. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.8.1 + */ + FT_EXPORT( FT_Error ) + FT_Get_Var_Axis_Flags( FT_MM_Var* master, + FT_UInt axis_index, + FT_UInt* flags ); + + + /************************************************************************** + * + * @function: + * FT_Set_Named_Instance + * + * @description: + * Set or change the current named instance. + * + * @input: + * face :: + * A handle to the source face. + * + * instance_index :: + * The index of the requested instance, starting with value 1. If set + * to value 0, FreeType switches to font access without a named + * instance. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The function uses the value of `instance_index` to set bits 16-30 of + * the face's `face_index` field. It also resets any variation applied + * to the font, and the @FT_FACE_FLAG_VARIATION bit of the face's + * `face_flags` field gets reset to zero (i.e., @FT_IS_VARIATION will + * return false). + * + * For Adobe MM fonts (which don't have named instances) this function + * simply resets the current face to the default instance. + * + * @since: + * 2.9 + */ + FT_EXPORT( FT_Error ) + FT_Set_Named_Instance( FT_Face face, + FT_UInt instance_index ); + + /* */ + + +FT_END_HEADER + +#endif /* FTMM_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftmodapi.h b/external/lumin/thirdparty/freetype/include/freetype/ftmodapi.h new file mode 100644 index 0000000..b78db72 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftmodapi.h @@ -0,0 +1,807 @@ +/**************************************************************************** + * + * ftmodapi.h + * + * FreeType modules public interface (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTMODAPI_H_ +#define FTMODAPI_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * module_management + * + * @title: + * Module Management + * + * @abstract: + * How to add, upgrade, remove, and control modules from FreeType. + * + * @description: + * The definitions below are used to manage modules within FreeType. + * Internal and external modules can be added, upgraded, and removed at + * runtime. For example, an alternative renderer or proprietary font + * driver can be registered and prioritized. Additionally, some module + * properties can also be controlled. + * + * Here is a list of existing values of the `module_name` field in the + * @FT_Module_Class structure. + * + * ``` + * autofitter + * bdf + * cff + * gxvalid + * otvalid + * pcf + * pfr + * psaux + * pshinter + * psnames + * raster1 + * sfnt + * smooth + * truetype + * type1 + * type42 + * t1cid + * winfonts + * ``` + * + * Note that the FreeType Cache sub-system is not a FreeType module. + * + * @order: + * FT_Module + * FT_Module_Constructor + * FT_Module_Destructor + * FT_Module_Requester + * FT_Module_Class + * + * FT_Add_Module + * FT_Get_Module + * FT_Remove_Module + * FT_Add_Default_Modules + * + * FT_FACE_DRIVER_NAME + * FT_Property_Set + * FT_Property_Get + * FT_Set_Default_Properties + * + * FT_New_Library + * FT_Done_Library + * FT_Reference_Library + * + * FT_Renderer + * FT_Renderer_Class + * + * FT_Get_Renderer + * FT_Set_Renderer + * + * FT_Set_Debug_Hook + * + */ + + + /* module bit flags */ +#define FT_MODULE_FONT_DRIVER 1 /* this module is a font driver */ +#define FT_MODULE_RENDERER 2 /* this module is a renderer */ +#define FT_MODULE_HINTER 4 /* this module is a glyph hinter */ +#define FT_MODULE_STYLER 8 /* this module is a styler */ + +#define FT_MODULE_DRIVER_SCALABLE 0x100 /* the driver supports */ + /* scalable fonts */ +#define FT_MODULE_DRIVER_NO_OUTLINES 0x200 /* the driver does not */ + /* support vector outlines */ +#define FT_MODULE_DRIVER_HAS_HINTER 0x400 /* the driver provides its */ + /* own hinter */ +#define FT_MODULE_DRIVER_HINTS_LIGHTLY 0x800 /* the driver's hinter */ + /* produces LIGHT hints */ + + + /* deprecated values */ +#define ft_module_font_driver FT_MODULE_FONT_DRIVER +#define ft_module_renderer FT_MODULE_RENDERER +#define ft_module_hinter FT_MODULE_HINTER +#define ft_module_styler FT_MODULE_STYLER + +#define ft_module_driver_scalable FT_MODULE_DRIVER_SCALABLE +#define ft_module_driver_no_outlines FT_MODULE_DRIVER_NO_OUTLINES +#define ft_module_driver_has_hinter FT_MODULE_DRIVER_HAS_HINTER +#define ft_module_driver_hints_lightly FT_MODULE_DRIVER_HINTS_LIGHTLY + + + typedef FT_Pointer FT_Module_Interface; + + + /************************************************************************** + * + * @functype: + * FT_Module_Constructor + * + * @description: + * A function used to initialize (not create) a new module object. + * + * @input: + * module :: + * The module to initialize. + */ + typedef FT_Error + (*FT_Module_Constructor)( FT_Module module ); + + + /************************************************************************** + * + * @functype: + * FT_Module_Destructor + * + * @description: + * A function used to finalize (not destroy) a given module object. + * + * @input: + * module :: + * The module to finalize. + */ + typedef void + (*FT_Module_Destructor)( FT_Module module ); + + + /************************************************************************** + * + * @functype: + * FT_Module_Requester + * + * @description: + * A function used to query a given module for a specific interface. + * + * @input: + * module :: + * The module to be searched. + * + * name :: + * The name of the interface in the module. + */ + typedef FT_Module_Interface + (*FT_Module_Requester)( FT_Module module, + const char* name ); + + + /************************************************************************** + * + * @struct: + * FT_Module_Class + * + * @description: + * The module class descriptor. While being a public structure necessary + * for FreeType's module bookkeeping, most of the fields are essentially + * internal, not to be used directly by an application. + * + * @fields: + * module_flags :: + * Bit flags describing the module. + * + * module_size :: + * The size of one module object/instance in bytes. + * + * module_name :: + * The name of the module. + * + * module_version :: + * The version, as a 16.16 fixed number (major.minor). + * + * module_requires :: + * The version of FreeType this module requires, as a 16.16 fixed + * number (major.minor). Starts at version 2.0, i.e., 0x20000. + * + * module_interface :: + * A typeless pointer to a structure (which varies between different + * modules) that holds the module's interface functions. This is + * essentially what `get_interface` returns. + * + * module_init :: + * The initializing function. + * + * module_done :: + * The finalizing function. + * + * get_interface :: + * The interface requesting function. + */ + typedef struct FT_Module_Class_ + { + FT_ULong module_flags; + FT_Long module_size; + const FT_String* module_name; + FT_Fixed module_version; + FT_Fixed module_requires; + + const void* module_interface; + + FT_Module_Constructor module_init; + FT_Module_Destructor module_done; + FT_Module_Requester get_interface; + + } FT_Module_Class; + + + /************************************************************************** + * + * @function: + * FT_Add_Module + * + * @description: + * Add a new module to a given library instance. + * + * @inout: + * library :: + * A handle to the library object. + * + * @input: + * clazz :: + * A pointer to class descriptor for the module. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * An error will be returned if a module already exists by that name, or + * if the module requires a version of FreeType that is too great. + */ + FT_EXPORT( FT_Error ) + FT_Add_Module( FT_Library library, + const FT_Module_Class* clazz ); + + + /************************************************************************** + * + * @function: + * FT_Get_Module + * + * @description: + * Find a module by its name. + * + * @input: + * library :: + * A handle to the library object. + * + * module_name :: + * The module's name (as an ASCII string). + * + * @return: + * A module handle. 0~if none was found. + * + * @note: + * FreeType's internal modules aren't documented very well, and you + * should look up the source code for details. + */ + FT_EXPORT( FT_Module ) + FT_Get_Module( FT_Library library, + const char* module_name ); + + + /************************************************************************** + * + * @function: + * FT_Remove_Module + * + * @description: + * Remove a given module from a library instance. + * + * @inout: + * library :: + * A handle to a library object. + * + * @input: + * module :: + * A handle to a module object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The module object is destroyed by the function in case of success. + */ + FT_EXPORT( FT_Error ) + FT_Remove_Module( FT_Library library, + FT_Module module ); + + + /************************************************************************** + * + * @macro: + * FT_FACE_DRIVER_NAME + * + * @description: + * A macro that retrieves the name of a font driver from a face object. + * + * @note: + * The font driver name is a valid `module_name` for @FT_Property_Set + * and @FT_Property_Get. This is not the same as @FT_Get_Font_Format. + * + * @since: + * 2.11 + * + */ +#define FT_FACE_DRIVER_NAME( face ) \ + ( ( *FT_REINTERPRET_CAST( FT_Module_Class**, \ + ( face )->driver ) )->module_name ) + + + /************************************************************************** + * + * @function: + * FT_Property_Set + * + * @description: + * Set a property for a given module. + * + * @input: + * library :: + * A handle to the library the module is part of. + * + * module_name :: + * The module name. + * + * property_name :: + * The property name. Properties are described in section + * @properties. + * + * Note that only a few modules have properties. + * + * value :: + * A generic pointer to a variable or structure that gives the new + * value of the property. The exact definition of `value` is + * dependent on the property; see section @properties. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `module_name` isn't a valid module name, or `property_name` + * doesn't specify a valid property, or if `value` doesn't represent a + * valid value for the given property, an error is returned. + * + * The following example sets property 'bar' (a simple integer) in + * module 'foo' to value~1. + * + * ``` + * FT_UInt bar; + * + * + * bar = 1; + * FT_Property_Set( library, "foo", "bar", &bar ); + * ``` + * + * Note that the FreeType Cache sub-system doesn't recognize module + * property changes. To avoid glyph lookup confusion within the cache + * you should call @FTC_Manager_Reset to completely flush the cache if a + * module property gets changed after @FTC_Manager_New has been called. + * + * It is not possible to set properties of the FreeType Cache sub-system + * itself with FT_Property_Set; use @FTC_Property_Set instead. + * + * @since: + * 2.4.11 + * + */ + FT_EXPORT( FT_Error ) + FT_Property_Set( FT_Library library, + const FT_String* module_name, + const FT_String* property_name, + const void* value ); + + + /************************************************************************** + * + * @function: + * FT_Property_Get + * + * @description: + * Get a module's property value. + * + * @input: + * library :: + * A handle to the library the module is part of. + * + * module_name :: + * The module name. + * + * property_name :: + * The property name. Properties are described in section + * @properties. + * + * @inout: + * value :: + * A generic pointer to a variable or structure that gives the value + * of the property. The exact definition of `value` is dependent on + * the property; see section @properties. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `module_name` isn't a valid module name, or `property_name` + * doesn't specify a valid property, or if `value` doesn't represent a + * valid value for the given property, an error is returned. + * + * The following example gets property 'baz' (a range) in module 'foo'. + * + * ``` + * typedef range_ + * { + * FT_Int32 min; + * FT_Int32 max; + * + * } range; + * + * range baz; + * + * + * FT_Property_Get( library, "foo", "baz", &baz ); + * ``` + * + * It is not possible to retrieve properties of the FreeType Cache + * sub-system with FT_Property_Get; use @FTC_Property_Get instead. + * + * @since: + * 2.4.11 + * + */ + FT_EXPORT( FT_Error ) + FT_Property_Get( FT_Library library, + const FT_String* module_name, + const FT_String* property_name, + void* value ); + + + /************************************************************************** + * + * @function: + * FT_Set_Default_Properties + * + * @description: + * If compilation option `FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES` is + * set, this function reads the `FREETYPE_PROPERTIES` environment + * variable to control driver properties. See section @properties for + * more. + * + * If the compilation option is not set, this function does nothing. + * + * `FREETYPE_PROPERTIES` has the following syntax form (broken here into + * multiple lines for better readability). + * + * ``` + * + * ':' + * '=' + * + * ':' + * '=' + * ... + * ``` + * + * Example: + * + * ``` + * FREETYPE_PROPERTIES=truetype:interpreter-version=35 \ + * cff:no-stem-darkening=0 + * ``` + * + * @inout: + * library :: + * A handle to a new library object. + * + * @since: + * 2.8 + */ + FT_EXPORT( void ) + FT_Set_Default_Properties( FT_Library library ); + + + /************************************************************************** + * + * @function: + * FT_Reference_Library + * + * @description: + * A counter gets initialized to~1 at the time an @FT_Library structure + * is created. This function increments the counter. @FT_Done_Library + * then only destroys a library if the counter is~1, otherwise it simply + * decrements the counter. + * + * This function helps in managing life-cycles of structures that + * reference @FT_Library objects. + * + * @input: + * library :: + * A handle to a target library object. + * + * @return: + * FreeType error code. 0~means success. + * + * @since: + * 2.4.2 + */ + FT_EXPORT( FT_Error ) + FT_Reference_Library( FT_Library library ); + + + /************************************************************************** + * + * @function: + * FT_New_Library + * + * @description: + * This function is used to create a new FreeType library instance from a + * given memory object. It is thus possible to use libraries with + * distinct memory allocators within the same program. Note, however, + * that the used @FT_Memory structure is expected to remain valid for the + * life of the @FT_Library object. + * + * Normally, you would call this function (followed by a call to + * @FT_Add_Default_Modules or a series of calls to @FT_Add_Module, and a + * call to @FT_Set_Default_Properties) instead of @FT_Init_FreeType to + * initialize the FreeType library. + * + * Don't use @FT_Done_FreeType but @FT_Done_Library to destroy a library + * instance. + * + * @input: + * memory :: + * A handle to the original memory object. + * + * @output: + * alibrary :: + * A pointer to handle of a new library object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * See the discussion of reference counters in the description of + * @FT_Reference_Library. + */ + FT_EXPORT( FT_Error ) + FT_New_Library( FT_Memory memory, + FT_Library *alibrary ); + + + /************************************************************************** + * + * @function: + * FT_Done_Library + * + * @description: + * Discard a given library object. This closes all drivers and discards + * all resource objects. + * + * @input: + * library :: + * A handle to the target library. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * See the discussion of reference counters in the description of + * @FT_Reference_Library. + */ + FT_EXPORT( FT_Error ) + FT_Done_Library( FT_Library library ); + + + /************************************************************************** + * + * @functype: + * FT_DebugHook_Func + * + * @description: + * A drop-in replacement (or rather a wrapper) for the bytecode or + * charstring interpreter's main loop function. + * + * Its job is essentially + * + * - to activate debug mode to enforce single-stepping, + * + * - to call the main loop function to interpret the next opcode, and + * + * - to show the changed context to the user. + * + * An example for such a main loop function is `TT_RunIns` (declared in + * FreeType's internal header file `src/truetype/ttinterp.h`). + * + * Have a look at the source code of the `ttdebug` FreeType demo program + * for an example of a drop-in replacement. + * + * @inout: + * arg :: + * A typeless pointer, to be cast to the main loop function's data + * structure (which depends on the font module). For TrueType fonts + * it is bytecode interpreter's execution context, `TT_ExecContext`, + * which is declared in FreeType's internal header file `tttypes.h`. + */ + typedef FT_Error + (*FT_DebugHook_Func)( void* arg ); + + + /************************************************************************** + * + * @enum: + * FT_DEBUG_HOOK_XXX + * + * @description: + * A list of named debug hook indices. + * + * @values: + * FT_DEBUG_HOOK_TRUETYPE:: + * This hook index identifies the TrueType bytecode debugger. + */ +#define FT_DEBUG_HOOK_TRUETYPE 0 + + + /************************************************************************** + * + * @function: + * FT_Set_Debug_Hook + * + * @description: + * Set a debug hook function for debugging the interpreter of a font + * format. + * + * While this is a public API function, an application needs access to + * FreeType's internal header files to do something useful. + * + * Have a look at the source code of the `ttdebug` FreeType demo program + * for an example of its usage. + * + * @inout: + * library :: + * A handle to the library object. + * + * @input: + * hook_index :: + * The index of the debug hook. You should use defined enumeration + * macros like @FT_DEBUG_HOOK_TRUETYPE. + * + * debug_hook :: + * The function used to debug the interpreter. + * + * @note: + * Currently, four debug hook slots are available, but only one (for the + * TrueType interpreter) is defined. + */ + FT_EXPORT( void ) + FT_Set_Debug_Hook( FT_Library library, + FT_UInt hook_index, + FT_DebugHook_Func debug_hook ); + + + /************************************************************************** + * + * @function: + * FT_Add_Default_Modules + * + * @description: + * Add the set of default drivers to a given library object. This is + * only useful when you create a library object with @FT_New_Library + * (usually to plug a custom memory manager). + * + * @inout: + * library :: + * A handle to a new library object. + */ + FT_EXPORT( void ) + FT_Add_Default_Modules( FT_Library library ); + + + + /************************************************************************** + * + * @section: + * truetype_engine + * + * @title: + * The TrueType Engine + * + * @abstract: + * TrueType bytecode support. + * + * @description: + * This section contains a function used to query the level of TrueType + * bytecode support compiled in this version of the library. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_TrueTypeEngineType + * + * @description: + * A list of values describing which kind of TrueType bytecode engine is + * implemented in a given FT_Library instance. It is used by the + * @FT_Get_TrueType_Engine_Type function. + * + * @values: + * FT_TRUETYPE_ENGINE_TYPE_NONE :: + * The library doesn't implement any kind of bytecode interpreter. + * + * FT_TRUETYPE_ENGINE_TYPE_UNPATENTED :: + * Deprecated and removed. + * + * FT_TRUETYPE_ENGINE_TYPE_PATENTED :: + * The library implements a bytecode interpreter that covers the full + * instruction set of the TrueType virtual machine (this was governed + * by patents until May 2010, hence the name). + * + * @since: + * 2.2 + * + */ + typedef enum FT_TrueTypeEngineType_ + { + FT_TRUETYPE_ENGINE_TYPE_NONE = 0, + FT_TRUETYPE_ENGINE_TYPE_UNPATENTED, + FT_TRUETYPE_ENGINE_TYPE_PATENTED + + } FT_TrueTypeEngineType; + + + /************************************************************************** + * + * @function: + * FT_Get_TrueType_Engine_Type + * + * @description: + * Return an @FT_TrueTypeEngineType value to indicate which level of the + * TrueType virtual machine a given library instance supports. + * + * @input: + * library :: + * A library instance. + * + * @return: + * A value indicating which level is supported. + * + * @since: + * 2.2 + * + */ + FT_EXPORT( FT_TrueTypeEngineType ) + FT_Get_TrueType_Engine_Type( FT_Library library ); + + /* */ + + +FT_END_HEADER + +#endif /* FTMODAPI_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftmoderr.h b/external/lumin/thirdparty/freetype/include/freetype/ftmoderr.h new file mode 100644 index 0000000..88d2917 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftmoderr.h @@ -0,0 +1,204 @@ +/**************************************************************************** + * + * ftmoderr.h + * + * FreeType module error offsets (specification). + * + * Copyright (C) 2001-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This file is used to define the FreeType module error codes. + * + * If the macro `FT_CONFIG_OPTION_USE_MODULE_ERRORS` in `ftoption.h` is + * set, the lower byte of an error value identifies the error code as + * usual. In addition, the higher byte identifies the module. For + * example, the error `FT_Err_Invalid_File_Format` has value 0x0003, the + * error `TT_Err_Invalid_File_Format` has value 0x1303, the error + * `T1_Err_Invalid_File_Format` has value 0x1403, etc. + * + * Note that `FT_Err_Ok`, `TT_Err_Ok`, etc. are always equal to zero, + * including the high byte. + * + * If `FT_CONFIG_OPTION_USE_MODULE_ERRORS` isn't set, the higher byte of an + * error value is set to zero. + * + * To hide the various `XXX_Err_` prefixes in the source code, FreeType + * provides some macros in `fttypes.h`. + * + * FT_ERR( err ) + * + * Add current error module prefix (as defined with the `FT_ERR_PREFIX` + * macro) to `err`. For example, in the BDF module the line + * + * ``` + * error = FT_ERR( Invalid_Outline ); + * ``` + * + * expands to + * + * ``` + * error = BDF_Err_Invalid_Outline; + * ``` + * + * For simplicity, you can always use `FT_Err_Ok` directly instead of + * `FT_ERR( Ok )`. + * + * FT_ERR_EQ( errcode, err ) + * FT_ERR_NEQ( errcode, err ) + * + * Compare error code `errcode` with the error `err` for equality and + * inequality, respectively. Example: + * + * ``` + * if ( FT_ERR_EQ( error, Invalid_Outline ) ) + * ... + * ``` + * + * Using this macro you don't have to think about error prefixes. Of + * course, if module errors are not active, the above example is the + * same as + * + * ``` + * if ( error == FT_Err_Invalid_Outline ) + * ... + * ``` + * + * FT_ERROR_BASE( errcode ) + * FT_ERROR_MODULE( errcode ) + * + * Get base error and module error code, respectively. + * + * It can also be used to create a module error message table easily with + * something like + * + * ``` + * #undef FTMODERR_H_ + * #define FT_MODERRDEF( e, v, s ) { FT_Mod_Err_ ## e, s }, + * #define FT_MODERR_START_LIST { + * #define FT_MODERR_END_LIST { 0, 0 } }; + * + * const struct + * { + * int mod_err_offset; + * const char* mod_err_msg + * } ft_mod_errors[] = + * + * #include + * ``` + * + */ + + +#ifndef FTMODERR_H_ +#define FTMODERR_H_ + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** SETUP MACROS *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#undef FT_NEED_EXTERN_C + +#ifndef FT_MODERRDEF + +#ifdef FT_CONFIG_OPTION_USE_MODULE_ERRORS +#define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = v, +#else +#define FT_MODERRDEF( e, v, s ) FT_Mod_Err_ ## e = 0, +#endif + +#define FT_MODERR_START_LIST enum { +#define FT_MODERR_END_LIST FT_Mod_Err_Max }; + +#ifdef __cplusplus +#define FT_NEED_EXTERN_C + extern "C" { +#endif + +#endif /* !FT_MODERRDEF */ + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** LIST MODULE ERROR BASES *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#ifdef FT_MODERR_START_LIST + FT_MODERR_START_LIST +#endif + + + FT_MODERRDEF( Base, 0x000, "base module" ) + FT_MODERRDEF( Autofit, 0x100, "autofitter module" ) + FT_MODERRDEF( BDF, 0x200, "BDF module" ) + FT_MODERRDEF( Bzip2, 0x300, "Bzip2 module" ) + FT_MODERRDEF( Cache, 0x400, "cache module" ) + FT_MODERRDEF( CFF, 0x500, "CFF module" ) + FT_MODERRDEF( CID, 0x600, "CID module" ) + FT_MODERRDEF( Gzip, 0x700, "Gzip module" ) + FT_MODERRDEF( LZW, 0x800, "LZW module" ) + FT_MODERRDEF( OTvalid, 0x900, "OpenType validation module" ) + FT_MODERRDEF( PCF, 0xA00, "PCF module" ) + FT_MODERRDEF( PFR, 0xB00, "PFR module" ) + FT_MODERRDEF( PSaux, 0xC00, "PS auxiliary module" ) + FT_MODERRDEF( PShinter, 0xD00, "PS hinter module" ) + FT_MODERRDEF( PSnames, 0xE00, "PS names module" ) + FT_MODERRDEF( Raster, 0xF00, "raster module" ) + FT_MODERRDEF( SFNT, 0x1000, "SFNT module" ) + FT_MODERRDEF( Smooth, 0x1100, "smooth raster module" ) + FT_MODERRDEF( TrueType, 0x1200, "TrueType module" ) + FT_MODERRDEF( Type1, 0x1300, "Type 1 module" ) + FT_MODERRDEF( Type42, 0x1400, "Type 42 module" ) + FT_MODERRDEF( Winfonts, 0x1500, "Windows FON/FNT module" ) + FT_MODERRDEF( GXvalid, 0x1600, "GX validation module" ) + FT_MODERRDEF( Sdf, 0x1700, "Signed distance field raster module" ) + + +#ifdef FT_MODERR_END_LIST + FT_MODERR_END_LIST +#endif + + + /*******************************************************************/ + /*******************************************************************/ + /***** *****/ + /***** CLEANUP *****/ + /***** *****/ + /*******************************************************************/ + /*******************************************************************/ + + +#ifdef FT_NEED_EXTERN_C + } +#endif + +#undef FT_MODERR_START_LIST +#undef FT_MODERR_END_LIST +#undef FT_MODERRDEF +#undef FT_NEED_EXTERN_C + + +#endif /* FTMODERR_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftotval.h b/external/lumin/thirdparty/freetype/include/freetype/ftotval.h new file mode 100644 index 0000000..172fcf2 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftotval.h @@ -0,0 +1,206 @@ +/**************************************************************************** + * + * ftotval.h + * + * FreeType API for validating OpenType tables (specification). + * + * Copyright (C) 2004-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +/**************************************************************************** + * + * + * Warning: This module might be moved to a different library in the + * future to avoid a tight dependency between FreeType and the + * OpenType specification. + * + * + */ + + +#ifndef FTOTVAL_H_ +#define FTOTVAL_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * ot_validation + * + * @title: + * OpenType Validation + * + * @abstract: + * An API to validate OpenType tables. + * + * @description: + * This section contains the declaration of functions to validate some + * OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). + * + * @order: + * FT_OpenType_Validate + * FT_OpenType_Free + * + * FT_VALIDATE_OTXXX + * + */ + + + /************************************************************************** + * + * @enum: + * FT_VALIDATE_OTXXX + * + * @description: + * A list of bit-field constants used with @FT_OpenType_Validate to + * indicate which OpenType tables should be validated. + * + * @values: + * FT_VALIDATE_BASE :: + * Validate BASE table. + * + * FT_VALIDATE_GDEF :: + * Validate GDEF table. + * + * FT_VALIDATE_GPOS :: + * Validate GPOS table. + * + * FT_VALIDATE_GSUB :: + * Validate GSUB table. + * + * FT_VALIDATE_JSTF :: + * Validate JSTF table. + * + * FT_VALIDATE_MATH :: + * Validate MATH table. + * + * FT_VALIDATE_OT :: + * Validate all OpenType tables (BASE, GDEF, GPOS, GSUB, JSTF, MATH). + * + */ +#define FT_VALIDATE_BASE 0x0100 +#define FT_VALIDATE_GDEF 0x0200 +#define FT_VALIDATE_GPOS 0x0400 +#define FT_VALIDATE_GSUB 0x0800 +#define FT_VALIDATE_JSTF 0x1000 +#define FT_VALIDATE_MATH 0x2000 + +#define FT_VALIDATE_OT ( FT_VALIDATE_BASE | \ + FT_VALIDATE_GDEF | \ + FT_VALIDATE_GPOS | \ + FT_VALIDATE_GSUB | \ + FT_VALIDATE_JSTF | \ + FT_VALIDATE_MATH ) + + + /************************************************************************** + * + * @function: + * FT_OpenType_Validate + * + * @description: + * Validate various OpenType tables to assure that all offsets and + * indices are valid. The idea is that a higher-level library that + * actually does the text layout can access those tables without error + * checking (which can be quite time consuming). + * + * @input: + * face :: + * A handle to the input face. + * + * validation_flags :: + * A bit field that specifies the tables to be validated. See + * @FT_VALIDATE_OTXXX for possible values. + * + * @output: + * BASE_table :: + * A pointer to the BASE table. + * + * GDEF_table :: + * A pointer to the GDEF table. + * + * GPOS_table :: + * A pointer to the GPOS table. + * + * GSUB_table :: + * A pointer to the GSUB table. + * + * JSTF_table :: + * A pointer to the JSTF table. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with OpenType fonts, returning an error + * otherwise. + * + * After use, the application should deallocate the five tables with + * @FT_OpenType_Free. A `NULL` value indicates that the table either + * doesn't exist in the font, or the application hasn't asked for + * validation. + */ + FT_EXPORT( FT_Error ) + FT_OpenType_Validate( FT_Face face, + FT_UInt validation_flags, + FT_Bytes *BASE_table, + FT_Bytes *GDEF_table, + FT_Bytes *GPOS_table, + FT_Bytes *GSUB_table, + FT_Bytes *JSTF_table ); + + + /************************************************************************** + * + * @function: + * FT_OpenType_Free + * + * @description: + * Free the buffer allocated by OpenType validator. + * + * @input: + * face :: + * A handle to the input face. + * + * table :: + * The pointer to the buffer that is allocated by + * @FT_OpenType_Validate. + * + * @note: + * This function must be used to free the buffer allocated by + * @FT_OpenType_Validate only. + */ + FT_EXPORT( void ) + FT_OpenType_Free( FT_Face face, + FT_Bytes table ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTOTVAL_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftoutln.h b/external/lumin/thirdparty/freetype/include/freetype/ftoutln.h new file mode 100644 index 0000000..46ebf93 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftoutln.h @@ -0,0 +1,588 @@ +/**************************************************************************** + * + * ftoutln.h + * + * Support for the FT_Outline type used to store glyph shapes of + * most scalable font formats (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTOUTLN_H_ +#define FTOUTLN_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * outline_processing + * + * @title: + * Outline Processing + * + * @abstract: + * Functions to create, transform, and render vectorial glyph images. + * + * @description: + * This section contains routines used to create and destroy scalable + * glyph images known as 'outlines'. These can also be measured, + * transformed, and converted into bitmaps and pixmaps. + * + * @order: + * FT_Outline + * FT_Outline_New + * FT_Outline_Done + * FT_Outline_Copy + * FT_Outline_Translate + * FT_Outline_Transform + * FT_Outline_Embolden + * FT_Outline_EmboldenXY + * FT_Outline_Reverse + * FT_Outline_Check + * + * FT_Outline_Get_CBox + * FT_Outline_Get_BBox + * + * FT_Outline_Get_Bitmap + * FT_Outline_Render + * FT_Outline_Decompose + * FT_Outline_Funcs + * FT_Outline_MoveToFunc + * FT_Outline_LineToFunc + * FT_Outline_ConicToFunc + * FT_Outline_CubicToFunc + * + * FT_Orientation + * FT_Outline_Get_Orientation + * + * FT_OUTLINE_XXX + * + */ + + + /************************************************************************** + * + * @function: + * FT_Outline_Decompose + * + * @description: + * Walk over an outline's structure to decompose it into individual + * segments and Bezier arcs. This function also emits 'move to' + * operations to indicate the start of new contours in the outline. + * + * @input: + * outline :: + * A pointer to the source target. + * + * func_interface :: + * A table of 'emitters', i.e., function pointers called during + * decomposition to indicate path operations. + * + * @inout: + * user :: + * A typeless pointer that is passed to each emitter during the + * decomposition. It can be used to store the state during the + * decomposition. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * Degenerate contours, segments, and Bezier arcs may be reported. In + * most cases, it is best to filter these out before using the outline + * for stroking or other path modification purposes (which may cause + * degenerate segments to become non-degenrate and visible, like when + * stroke caps are used or the path is otherwise outset). Some glyph + * outlines may contain deliberate degenerate single points for mark + * attachement. + * + * Similarly, the function returns success for an empty outline also + * (doing nothing, this is, not calling any emitter); if necessary, you + * should filter this out, too. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Decompose( FT_Outline* outline, + const FT_Outline_Funcs* func_interface, + void* user ); + + + /************************************************************************** + * + * @function: + * FT_Outline_New + * + * @description: + * Create a new outline of a given size. + * + * @input: + * library :: + * A handle to the library object from where the outline is allocated. + * Note however that the new outline will **not** necessarily be + * **freed**, when destroying the library, by @FT_Done_FreeType. + * + * numPoints :: + * The maximum number of points within the outline. Must be smaller + * than or equal to 0xFFFF (65535). + * + * numContours :: + * The maximum number of contours within the outline. This value must + * be in the range 0 to `numPoints`. + * + * @output: + * anoutline :: + * A handle to the new outline. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The reason why this function takes a `library` parameter is simply to + * use the library's memory allocator. + */ + FT_EXPORT( FT_Error ) + FT_Outline_New( FT_Library library, + FT_UInt numPoints, + FT_Int numContours, + FT_Outline *anoutline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Done + * + * @description: + * Destroy an outline created with @FT_Outline_New. + * + * @input: + * library :: + * A handle of the library object used to allocate the outline. + * + * outline :: + * A pointer to the outline object to be discarded. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If the outline's 'owner' field is not set, only the outline descriptor + * will be released. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Done( FT_Library library, + FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Check + * + * @description: + * Check the contents of an outline descriptor. + * + * @input: + * outline :: + * A handle to a source outline. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * An empty outline, or an outline with a single point only is also + * valid. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Check( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_CBox + * + * @description: + * Return an outline's 'control box'. The control box encloses all the + * outline's points, including Bezier control points. Though it + * coincides with the exact bounding box for most glyphs, it can be + * slightly larger in some situations (like when rotating an outline that + * contains Bezier outside arcs). + * + * Computing the control box is very fast, while getting the bounding box + * can take much more time as it needs to walk over all segments and arcs + * in the outline. To get the latter, you can use the 'ftbbox' + * component, which is dedicated to this single task. + * + * @input: + * outline :: + * A pointer to the source outline descriptor. + * + * @output: + * acbox :: + * The outline's control box. + * + * @note: + * See @FT_Glyph_Get_CBox for a discussion of tricky fonts. + */ + FT_EXPORT( void ) + FT_Outline_Get_CBox( const FT_Outline* outline, + FT_BBox *acbox ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Translate + * + * @description: + * Apply a simple translation to the points of an outline. + * + * @inout: + * outline :: + * A pointer to the target outline descriptor. + * + * @input: + * xOffset :: + * The horizontal offset. + * + * yOffset :: + * The vertical offset. + */ + FT_EXPORT( void ) + FT_Outline_Translate( const FT_Outline* outline, + FT_Pos xOffset, + FT_Pos yOffset ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Copy + * + * @description: + * Copy an outline into another one. Both objects must have the same + * sizes (number of points & number of contours) when this function is + * called. + * + * @input: + * source :: + * A handle to the source outline. + * + * @output: + * target :: + * A handle to the target outline. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Copy( const FT_Outline* source, + FT_Outline *target ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Transform + * + * @description: + * Apply a simple 2x2 matrix to all of an outline's points. Useful for + * applying rotations, slanting, flipping, etc. + * + * @inout: + * outline :: + * A pointer to the target outline descriptor. + * + * @input: + * matrix :: + * A pointer to the transformation matrix. + * + * @note: + * You can use @FT_Outline_Translate if you need to translate the + * outline's points. + */ + FT_EXPORT( void ) + FT_Outline_Transform( const FT_Outline* outline, + const FT_Matrix* matrix ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Embolden + * + * @description: + * Embolden an outline. The new outline will be at most 4~times + * `strength` pixels wider and higher. You may think of the left and + * bottom borders as unchanged. + * + * Negative `strength` values to reduce the outline thickness are + * possible also. + * + * @inout: + * outline :: + * A handle to the target outline. + * + * @input: + * strength :: + * How strong the glyph is emboldened. Expressed in 26.6 pixel format. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The used algorithm to increase or decrease the thickness of the glyph + * doesn't change the number of points; this means that certain + * situations like acute angles or intersections are sometimes handled + * incorrectly. + * + * If you need 'better' metrics values you should call + * @FT_Outline_Get_CBox or @FT_Outline_Get_BBox. + * + * To get meaningful results, font scaling values must be set with + * functions like @FT_Set_Char_Size before calling FT_Render_Glyph. + * + * @example: + * ``` + * FT_Load_Glyph( face, index, FT_LOAD_DEFAULT ); + * + * if ( face->glyph->format == FT_GLYPH_FORMAT_OUTLINE ) + * FT_Outline_Embolden( &face->glyph->outline, strength ); + * ``` + * + */ + FT_EXPORT( FT_Error ) + FT_Outline_Embolden( FT_Outline* outline, + FT_Pos strength ); + + + /************************************************************************** + * + * @function: + * FT_Outline_EmboldenXY + * + * @description: + * Embolden an outline. The new outline will be `xstrength` pixels wider + * and `ystrength` pixels higher. Otherwise, it is similar to + * @FT_Outline_Embolden, which uses the same strength in both directions. + * + * @since: + * 2.4.10 + */ + FT_EXPORT( FT_Error ) + FT_Outline_EmboldenXY( FT_Outline* outline, + FT_Pos xstrength, + FT_Pos ystrength ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Reverse + * + * @description: + * Reverse the drawing direction of an outline. This is used to ensure + * consistent fill conventions for mirrored glyphs. + * + * @inout: + * outline :: + * A pointer to the target outline descriptor. + * + * @note: + * This function toggles the bit flag @FT_OUTLINE_REVERSE_FILL in the + * outline's `flags` field. + * + * It shouldn't be used by a normal client application, unless it knows + * what it is doing. + */ + FT_EXPORT( void ) + FT_Outline_Reverse( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_Bitmap + * + * @description: + * Render an outline within a bitmap. The outline's image is simply + * OR-ed to the target bitmap. + * + * @input: + * library :: + * A handle to a FreeType library object. + * + * outline :: + * A pointer to the source outline descriptor. + * + * @inout: + * abitmap :: + * A pointer to the target bitmap descriptor. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function does **not create** the bitmap, it only renders an + * outline image within the one you pass to it! Consequently, the + * various fields in `abitmap` should be set accordingly. + * + * It will use the raster corresponding to the default glyph format. + * + * The value of the `num_grays` field in `abitmap` is ignored. If you + * select the gray-level rasterizer, and you want less than 256 gray + * levels, you have to use @FT_Outline_Render directly. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Get_Bitmap( FT_Library library, + FT_Outline* outline, + const FT_Bitmap *abitmap ); + + + /************************************************************************** + * + * @function: + * FT_Outline_Render + * + * @description: + * Render an outline within a bitmap using the current scan-convert. + * + * @input: + * library :: + * A handle to a FreeType library object. + * + * outline :: + * A pointer to the source outline descriptor. + * + * @inout: + * params :: + * A pointer to an @FT_Raster_Params structure used to describe the + * rendering operation. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This advanced function uses @FT_Raster_Params as an argument. + * The field `params.source` will be set to `outline` before the scan + * converter is called, which means that the value you give to it is + * actually ignored. Either `params.target` must point to preallocated + * bitmap, or @FT_RASTER_FLAG_DIRECT must be set in `params.flags` + * allowing FreeType rasterizer to be used for direct composition, + * translucency, etc. See @FT_Raster_Params for more details. + */ + FT_EXPORT( FT_Error ) + FT_Outline_Render( FT_Library library, + FT_Outline* outline, + FT_Raster_Params* params ); + + + /************************************************************************** + * + * @enum: + * FT_Orientation + * + * @description: + * A list of values used to describe an outline's contour orientation. + * + * The TrueType and PostScript specifications use different conventions + * to determine whether outline contours should be filled or unfilled. + * + * @values: + * FT_ORIENTATION_TRUETYPE :: + * According to the TrueType specification, clockwise contours must be + * filled, and counter-clockwise ones must be unfilled. + * + * FT_ORIENTATION_POSTSCRIPT :: + * According to the PostScript specification, counter-clockwise + * contours must be filled, and clockwise ones must be unfilled. + * + * FT_ORIENTATION_FILL_RIGHT :: + * This is identical to @FT_ORIENTATION_TRUETYPE, but is used to + * remember that in TrueType, everything that is to the right of the + * drawing direction of a contour must be filled. + * + * FT_ORIENTATION_FILL_LEFT :: + * This is identical to @FT_ORIENTATION_POSTSCRIPT, but is used to + * remember that in PostScript, everything that is to the left of the + * drawing direction of a contour must be filled. + * + * FT_ORIENTATION_NONE :: + * The orientation cannot be determined. That is, different parts of + * the glyph have different orientation. + * + */ + typedef enum FT_Orientation_ + { + FT_ORIENTATION_TRUETYPE = 0, + FT_ORIENTATION_POSTSCRIPT = 1, + FT_ORIENTATION_FILL_RIGHT = FT_ORIENTATION_TRUETYPE, + FT_ORIENTATION_FILL_LEFT = FT_ORIENTATION_POSTSCRIPT, + FT_ORIENTATION_NONE + + } FT_Orientation; + + + /************************************************************************** + * + * @function: + * FT_Outline_Get_Orientation + * + * @description: + * This function analyzes a glyph outline and tries to compute its fill + * orientation (see @FT_Orientation). This is done by integrating the + * total area covered by the outline. The positive integral corresponds + * to the clockwise orientation and @FT_ORIENTATION_POSTSCRIPT is + * returned. The negative integral corresponds to the counter-clockwise + * orientation and @FT_ORIENTATION_TRUETYPE is returned. + * + * Note that this will return @FT_ORIENTATION_TRUETYPE for empty + * outlines. + * + * @input: + * outline :: + * A handle to the source outline. + * + * @return: + * The orientation. + * + */ + FT_EXPORT( FT_Orientation ) + FT_Outline_Get_Orientation( FT_Outline* outline ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTOUTLN_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftparams.h b/external/lumin/thirdparty/freetype/include/freetype/ftparams.h new file mode 100644 index 0000000..72080f3 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftparams.h @@ -0,0 +1,218 @@ +/**************************************************************************** + * + * ftparams.h + * + * FreeType API for possible FT_Parameter tags (specification only). + * + * Copyright (C) 2017-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTPARAMS_H_ +#define FTPARAMS_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * parameter_tags + * + * @title: + * Parameter Tags + * + * @abstract: + * Macros for driver property and font loading parameter tags. + * + * @description: + * This section contains macros for the @FT_Parameter structure that are + * used with various functions to activate some special functionality or + * different behaviour of various components of FreeType. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY + * + * @description: + * A tag for @FT_Parameter to make @FT_Open_Face ignore typographic + * family names in the 'name' table (introduced in OpenType version 1.4). + * Use this for backward compatibility with legacy systems that have a + * four-faces-per-family restriction. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY \ + FT_MAKE_TAG( 'i', 'g', 'p', 'f' ) + + + /* this constant is deprecated */ +#define FT_PARAM_TAG_IGNORE_PREFERRED_FAMILY \ + FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_FAMILY + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY + * + * @description: + * A tag for @FT_Parameter to make @FT_Open_Face ignore typographic + * subfamily names in the 'name' table (introduced in OpenType version + * 1.4). Use this for backward compatibility with legacy systems that + * have a four-faces-per-family restriction. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY \ + FT_MAKE_TAG( 'i', 'g', 'p', 's' ) + + + /* this constant is deprecated */ +#define FT_PARAM_TAG_IGNORE_PREFERRED_SUBFAMILY \ + FT_PARAM_TAG_IGNORE_TYPOGRAPHIC_SUBFAMILY + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_INCREMENTAL + * + * @description: + * An @FT_Parameter tag to be used with @FT_Open_Face to indicate + * incremental glyph loading. + * + */ +#define FT_PARAM_TAG_INCREMENTAL \ + FT_MAKE_TAG( 'i', 'n', 'c', 'r' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_IGNORE_SBIX + * + * @description: + * A tag for @FT_Parameter to make @FT_Open_Face ignore an 'sbix' table + * while loading a font. Use this if @FT_FACE_FLAG_SBIX is set and you + * want to access the outline glyphs in the font. + * + */ +#define FT_PARAM_TAG_IGNORE_SBIX \ + FT_MAKE_TAG( 'i', 's', 'b', 'x' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_LCD_FILTER_WEIGHTS + * + * @description: + * An @FT_Parameter tag to be used with @FT_Face_Properties. The + * corresponding argument specifies the five LCD filter weights for a + * given face (if using @FT_LOAD_TARGET_LCD, for example), overriding the + * global default values or the values set up with + * @FT_Library_SetLcdFilterWeights. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_LCD_FILTER_WEIGHTS \ + FT_MAKE_TAG( 'l', 'c', 'd', 'f' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_RANDOM_SEED + * + * @description: + * An @FT_Parameter tag to be used with @FT_Face_Properties. The + * corresponding 32bit signed integer argument overrides the font + * driver's random seed value with a face-specific one; see @random-seed. + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_RANDOM_SEED \ + FT_MAKE_TAG( 's', 'e', 'e', 'd' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_STEM_DARKENING + * + * @description: + * An @FT_Parameter tag to be used with @FT_Face_Properties. The + * corresponding Boolean argument specifies whether to apply stem + * darkening, overriding the global default values or the values set up + * with @FT_Property_Set (see @no-stem-darkening). + * + * This is a passive setting that only takes effect if the font driver or + * autohinter honors it, which the CFF, Type~1, and CID drivers always + * do, but the autohinter only in 'light' hinting mode (as of version + * 2.9). + * + * @since: + * 2.8 + * + */ +#define FT_PARAM_TAG_STEM_DARKENING \ + FT_MAKE_TAG( 'd', 'a', 'r', 'k' ) + + + /************************************************************************** + * + * @enum: + * FT_PARAM_TAG_UNPATENTED_HINTING + * + * @description: + * Deprecated, no effect. + * + * Previously: A constant used as the tag of an @FT_Parameter structure + * to indicate that unpatented methods only should be used by the + * TrueType bytecode interpreter for a typeface opened by @FT_Open_Face. + * + */ +#define FT_PARAM_TAG_UNPATENTED_HINTING \ + FT_MAKE_TAG( 'u', 'n', 'p', 'a' ) + + + /* */ + + +FT_END_HEADER + + +#endif /* FTPARAMS_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftpfr.h b/external/lumin/thirdparty/freetype/include/freetype/ftpfr.h new file mode 100644 index 0000000..428e327 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftpfr.h @@ -0,0 +1,179 @@ +/**************************************************************************** + * + * ftpfr.h + * + * FreeType API for accessing PFR-specific data (specification only). + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTPFR_H_ +#define FTPFR_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * pfr_fonts + * + * @title: + * PFR Fonts + * + * @abstract: + * PFR/TrueDoc-specific API. + * + * @description: + * This section contains the declaration of PFR-specific functions. + * + */ + + + /************************************************************************** + * + * @function: + * FT_Get_PFR_Metrics + * + * @description: + * Return the outline and metrics resolutions of a given PFR face. + * + * @input: + * face :: + * Handle to the input face. It can be a non-PFR face. + * + * @output: + * aoutline_resolution :: + * Outline resolution. This is equivalent to `face->units_per_EM` for + * non-PFR fonts. Optional (parameter can be `NULL`). + * + * ametrics_resolution :: + * Metrics resolution. This is equivalent to `outline_resolution` for + * non-PFR fonts. Optional (parameter can be `NULL`). + * + * ametrics_x_scale :: + * A 16.16 fixed-point number used to scale distance expressed in + * metrics units to device subpixels. This is equivalent to + * `face->size->x_scale`, but for metrics only. Optional (parameter + * can be `NULL`). + * + * ametrics_y_scale :: + * Same as `ametrics_x_scale` but for the vertical direction. + * optional (parameter can be `NULL`). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If the input face is not a PFR, this function will return an error. + * However, in all cases, it will return valid values. + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Metrics( FT_Face face, + FT_UInt *aoutline_resolution, + FT_UInt *ametrics_resolution, + FT_Fixed *ametrics_x_scale, + FT_Fixed *ametrics_y_scale ); + + + /************************************************************************** + * + * @function: + * FT_Get_PFR_Kerning + * + * @description: + * Return the kerning pair corresponding to two glyphs in a PFR face. + * The distance is expressed in metrics units, unlike the result of + * @FT_Get_Kerning. + * + * @input: + * face :: + * A handle to the input face. + * + * left :: + * Index of the left glyph. + * + * right :: + * Index of the right glyph. + * + * @output: + * avector :: + * A kerning vector. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function always return distances in original PFR metrics units. + * This is unlike @FT_Get_Kerning with the @FT_KERNING_UNSCALED mode, + * which always returns distances converted to outline units. + * + * You can use the value of the `x_scale` and `y_scale` parameters + * returned by @FT_Get_PFR_Metrics to scale these to device subpixels. + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Kerning( FT_Face face, + FT_UInt left, + FT_UInt right, + FT_Vector *avector ); + + + /************************************************************************** + * + * @function: + * FT_Get_PFR_Advance + * + * @description: + * Return a given glyph advance, expressed in original metrics units, + * from a PFR font. + * + * @input: + * face :: + * A handle to the input face. + * + * gindex :: + * The glyph index. + * + * @output: + * aadvance :: + * The glyph advance in metrics units. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You can use the `x_scale` or `y_scale` results of @FT_Get_PFR_Metrics + * to convert the advance to device subpixels (i.e., 1/64th of pixels). + */ + FT_EXPORT( FT_Error ) + FT_Get_PFR_Advance( FT_Face face, + FT_UInt gindex, + FT_Pos *aadvance ); + + /* */ + + +FT_END_HEADER + +#endif /* FTPFR_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftrender.h b/external/lumin/thirdparty/freetype/include/freetype/ftrender.h new file mode 100644 index 0000000..0fab3f8 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftrender.h @@ -0,0 +1,244 @@ +/**************************************************************************** + * + * ftrender.h + * + * FreeType renderer modules public interface (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTRENDER_H_ +#define FTRENDER_H_ + + +#include +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * module_management + * + */ + + + /* create a new glyph object */ + typedef FT_Error + (*FT_Glyph_InitFunc)( FT_Glyph glyph, + FT_GlyphSlot slot ); + + /* destroys a given glyph object */ + typedef void + (*FT_Glyph_DoneFunc)( FT_Glyph glyph ); + + typedef void + (*FT_Glyph_TransformFunc)( FT_Glyph glyph, + const FT_Matrix* matrix, + const FT_Vector* delta ); + + typedef void + (*FT_Glyph_GetBBoxFunc)( FT_Glyph glyph, + FT_BBox* abbox ); + + typedef FT_Error + (*FT_Glyph_CopyFunc)( FT_Glyph source, + FT_Glyph target ); + + typedef FT_Error + (*FT_Glyph_PrepareFunc)( FT_Glyph glyph, + FT_GlyphSlot slot ); + +/* deprecated */ +#define FT_Glyph_Init_Func FT_Glyph_InitFunc +#define FT_Glyph_Done_Func FT_Glyph_DoneFunc +#define FT_Glyph_Transform_Func FT_Glyph_TransformFunc +#define FT_Glyph_BBox_Func FT_Glyph_GetBBoxFunc +#define FT_Glyph_Copy_Func FT_Glyph_CopyFunc +#define FT_Glyph_Prepare_Func FT_Glyph_PrepareFunc + + + struct FT_Glyph_Class_ + { + FT_Long glyph_size; + FT_Glyph_Format glyph_format; + + FT_Glyph_InitFunc glyph_init; + FT_Glyph_DoneFunc glyph_done; + FT_Glyph_CopyFunc glyph_copy; + FT_Glyph_TransformFunc glyph_transform; + FT_Glyph_GetBBoxFunc glyph_bbox; + FT_Glyph_PrepareFunc glyph_prepare; + }; + + + typedef FT_Error + (*FT_Renderer_RenderFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + FT_Render_Mode mode, + const FT_Vector* origin ); + + typedef FT_Error + (*FT_Renderer_TransformFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + const FT_Matrix* matrix, + const FT_Vector* delta ); + + + typedef void + (*FT_Renderer_GetCBoxFunc)( FT_Renderer renderer, + FT_GlyphSlot slot, + FT_BBox* cbox ); + + + typedef FT_Error + (*FT_Renderer_SetModeFunc)( FT_Renderer renderer, + FT_ULong mode_tag, + FT_Pointer mode_ptr ); + +/* deprecated identifiers */ +#define FTRenderer_render FT_Renderer_RenderFunc +#define FTRenderer_transform FT_Renderer_TransformFunc +#define FTRenderer_getCBox FT_Renderer_GetCBoxFunc +#define FTRenderer_setMode FT_Renderer_SetModeFunc + + + /************************************************************************** + * + * @struct: + * FT_Renderer_Class + * + * @description: + * The renderer module class descriptor. + * + * @fields: + * root :: + * The root @FT_Module_Class fields. + * + * glyph_format :: + * The glyph image format this renderer handles. + * + * render_glyph :: + * A method used to render the image that is in a given glyph slot into + * a bitmap. + * + * transform_glyph :: + * A method used to transform the image that is in a given glyph slot. + * + * get_glyph_cbox :: + * A method used to access the glyph's cbox. + * + * set_mode :: + * A method used to pass additional parameters. + * + * raster_class :: + * For @FT_GLYPH_FORMAT_OUTLINE renderers only. This is a pointer to + * its raster's class. + */ + typedef struct FT_Renderer_Class_ + { + FT_Module_Class root; + + FT_Glyph_Format glyph_format; + + FT_Renderer_RenderFunc render_glyph; + FT_Renderer_TransformFunc transform_glyph; + FT_Renderer_GetCBoxFunc get_glyph_cbox; + FT_Renderer_SetModeFunc set_mode; + + FT_Raster_Funcs* raster_class; + + } FT_Renderer_Class; + + + /************************************************************************** + * + * @function: + * FT_Get_Renderer + * + * @description: + * Retrieve the current renderer for a given glyph format. + * + * @input: + * library :: + * A handle to the library object. + * + * format :: + * The glyph format. + * + * @return: + * A renderer handle. 0~if none found. + * + * @note: + * An error will be returned if a module already exists by that name, or + * if the module requires a version of FreeType that is too great. + * + * To add a new renderer, simply use @FT_Add_Module. To retrieve a + * renderer by its name, use @FT_Get_Module. + */ + FT_EXPORT( FT_Renderer ) + FT_Get_Renderer( FT_Library library, + FT_Glyph_Format format ); + + + /************************************************************************** + * + * @function: + * FT_Set_Renderer + * + * @description: + * Set the current renderer to use, and set additional mode. + * + * @inout: + * library :: + * A handle to the library object. + * + * @input: + * renderer :: + * A handle to the renderer object. + * + * num_params :: + * The number of additional parameters. + * + * parameters :: + * Additional parameters. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * In case of success, the renderer will be used to convert glyph images + * in the renderer's known format into bitmaps. + * + * This doesn't change the current renderer for other formats. + * + * Currently, no FreeType renderer module uses `parameters`; you should + * thus always pass `NULL` as the value. + */ + FT_EXPORT( FT_Error ) + FT_Set_Renderer( FT_Library library, + FT_Renderer renderer, + FT_UInt num_params, + FT_Parameter* parameters ); + + /* */ + + +FT_END_HEADER + +#endif /* FTRENDER_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftsizes.h b/external/lumin/thirdparty/freetype/include/freetype/ftsizes.h new file mode 100644 index 0000000..e30938d --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftsizes.h @@ -0,0 +1,159 @@ +/**************************************************************************** + * + * ftsizes.h + * + * FreeType size objects management (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * Typical application would normally not need to use these functions. + * However, they have been placed in a public API for the rare cases where + * they are needed. + * + */ + + +#ifndef FTSIZES_H_ +#define FTSIZES_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * sizes_management + * + * @title: + * Size Management + * + * @abstract: + * Managing multiple sizes per face. + * + * @description: + * When creating a new face object (e.g., with @FT_New_Face), an @FT_Size + * object is automatically created and used to store all pixel-size + * dependent information, available in the `face->size` field. + * + * It is however possible to create more sizes for a given face, mostly + * in order to manage several character pixel sizes of the same font + * family and style. See @FT_New_Size and @FT_Done_Size. + * + * Note that @FT_Set_Pixel_Sizes and @FT_Set_Char_Size only modify the + * contents of the current 'active' size; you thus need to use + * @FT_Activate_Size to change it. + * + * 99% of applications won't need the functions provided here, especially + * if they use the caching sub-system, so be cautious when using these. + * + */ + + + /************************************************************************** + * + * @function: + * FT_New_Size + * + * @description: + * Create a new size object from a given face object. + * + * @input: + * face :: + * A handle to a parent face object. + * + * @output: + * asize :: + * A handle to a new size object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You need to call @FT_Activate_Size in order to select the new size for + * upcoming calls to @FT_Set_Pixel_Sizes, @FT_Set_Char_Size, + * @FT_Load_Glyph, @FT_Load_Char, etc. + */ + FT_EXPORT( FT_Error ) + FT_New_Size( FT_Face face, + FT_Size* size ); + + + /************************************************************************** + * + * @function: + * FT_Done_Size + * + * @description: + * Discard a given size object. Note that @FT_Done_Face automatically + * discards all size objects allocated with @FT_New_Size. + * + * @input: + * size :: + * A handle to a target size object. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Done_Size( FT_Size size ); + + + /************************************************************************** + * + * @function: + * FT_Activate_Size + * + * @description: + * Even though it is possible to create several size objects for a given + * face (see @FT_New_Size for details), functions like @FT_Load_Glyph or + * @FT_Load_Char only use the one that has been activated last to + * determine the 'current character pixel size'. + * + * This function can be used to 'activate' a previously created size + * object. + * + * @input: + * size :: + * A handle to a target size object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `face` is the size's parent face object, this function changes the + * value of `face->size` to the input size handle. + */ + FT_EXPORT( FT_Error ) + FT_Activate_Size( FT_Size size ); + + /* */ + + +FT_END_HEADER + +#endif /* FTSIZES_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftsnames.h b/external/lumin/thirdparty/freetype/include/freetype/ftsnames.h new file mode 100644 index 0000000..384096a --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftsnames.h @@ -0,0 +1,272 @@ +/**************************************************************************** + * + * ftsnames.h + * + * Simple interface to access SFNT 'name' tables (which are used + * to hold font names, copyright info, notices, etc.) (specification). + * + * This is _not_ used to retrieve glyph names! + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTSNAMES_H_ +#define FTSNAMES_H_ + + +#include +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * sfnt_names + * + * @title: + * SFNT Names + * + * @abstract: + * Access the names embedded in TrueType and OpenType files. + * + * @description: + * The TrueType and OpenType specifications allow the inclusion of a + * special names table ('name') in font files. This table contains + * textual (and internationalized) information regarding the font, like + * family name, copyright, version, etc. + * + * The definitions below are used to access them if available. + * + * Note that this has nothing to do with glyph names! + * + */ + + + /************************************************************************** + * + * @struct: + * FT_SfntName + * + * @description: + * A structure used to model an SFNT 'name' table entry. + * + * @fields: + * platform_id :: + * The platform ID for `string`. See @TT_PLATFORM_XXX for possible + * values. + * + * encoding_id :: + * The encoding ID for `string`. See @TT_APPLE_ID_XXX, @TT_MAC_ID_XXX, + * @TT_ISO_ID_XXX, @TT_MS_ID_XXX, and @TT_ADOBE_ID_XXX for possible + * values. + * + * language_id :: + * The language ID for `string`. See @TT_MAC_LANGID_XXX and + * @TT_MS_LANGID_XXX for possible values. + * + * Registered OpenType values for `language_id` are always smaller than + * 0x8000; values equal or larger than 0x8000 usually indicate a + * language tag string (introduced in OpenType version 1.6). Use + * function @FT_Get_Sfnt_LangTag with `language_id` as its argument to + * retrieve the associated language tag. + * + * name_id :: + * An identifier for `string`. See @TT_NAME_ID_XXX for possible + * values. + * + * string :: + * The 'name' string. Note that its format differs depending on the + * (platform,encoding) pair, being either a string of bytes (without a + * terminating `NULL` byte) or containing UTF-16BE entities. + * + * string_len :: + * The length of `string` in bytes. + * + * @note: + * Please refer to the TrueType or OpenType specification for more + * details. + */ + typedef struct FT_SfntName_ + { + FT_UShort platform_id; + FT_UShort encoding_id; + FT_UShort language_id; + FT_UShort name_id; + + FT_Byte* string; /* this string is *not* null-terminated! */ + FT_UInt string_len; /* in bytes */ + + } FT_SfntName; + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_Name_Count + * + * @description: + * Retrieve the number of name strings in the SFNT 'name' table. + * + * @input: + * face :: + * A handle to the source face. + * + * @return: + * The number of strings in the 'name' table. + * + * @note: + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_SFNT_NAMES` is not defined in `ftoption.h`. + */ + FT_EXPORT( FT_UInt ) + FT_Get_Sfnt_Name_Count( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_Name + * + * @description: + * Retrieve a string of the SFNT 'name' table for a given index. + * + * @input: + * face :: + * A handle to the source face. + * + * idx :: + * The index of the 'name' string. + * + * @output: + * aname :: + * The indexed @FT_SfntName structure. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The `string` array returned in the `aname` structure is not + * null-terminated. Note that you don't have to deallocate `string` by + * yourself; FreeType takes care of it if you call @FT_Done_Face. + * + * Use @FT_Get_Sfnt_Name_Count to get the total number of available + * 'name' table entries, then do a loop until you get the right platform, + * encoding, and name ID. + * + * 'name' table format~1 entries can use language tags also, see + * @FT_Get_Sfnt_LangTag. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_SFNT_NAMES` is not defined in `ftoption.h`. + */ + FT_EXPORT( FT_Error ) + FT_Get_Sfnt_Name( FT_Face face, + FT_UInt idx, + FT_SfntName *aname ); + + + /************************************************************************** + * + * @struct: + * FT_SfntLangTag + * + * @description: + * A structure to model a language tag entry from an SFNT 'name' table. + * + * @fields: + * string :: + * The language tag string, encoded in UTF-16BE (without trailing + * `NULL` bytes). + * + * string_len :: + * The length of `string` in **bytes**. + * + * @note: + * Please refer to the TrueType or OpenType specification for more + * details. + * + * @since: + * 2.8 + */ + typedef struct FT_SfntLangTag_ + { + FT_Byte* string; /* this string is *not* null-terminated! */ + FT_UInt string_len; /* in bytes */ + + } FT_SfntLangTag; + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_LangTag + * + * @description: + * Retrieve the language tag associated with a language ID of an SFNT + * 'name' table entry. + * + * @input: + * face :: + * A handle to the source face. + * + * langID :: + * The language ID, as returned by @FT_Get_Sfnt_Name. This is always a + * value larger than 0x8000. + * + * @output: + * alangTag :: + * The language tag associated with the 'name' table entry's language + * ID. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The `string` array returned in the `alangTag` structure is not + * null-terminated. Note that you don't have to deallocate `string` by + * yourself; FreeType takes care of it if you call @FT_Done_Face. + * + * Only 'name' table format~1 supports language tags. For format~0 + * tables, this function always returns FT_Err_Invalid_Table. For + * invalid format~1 language ID values, FT_Err_Invalid_Argument is + * returned. + * + * This function always returns an error if the config macro + * `TT_CONFIG_OPTION_SFNT_NAMES` is not defined in `ftoption.h`. + * + * @since: + * 2.8 + */ + FT_EXPORT( FT_Error ) + FT_Get_Sfnt_LangTag( FT_Face face, + FT_UInt langID, + FT_SfntLangTag *alangTag ); + + + /* */ + + +FT_END_HEADER + +#endif /* FTSNAMES_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftstroke.h b/external/lumin/thirdparty/freetype/include/freetype/ftstroke.h new file mode 100644 index 0000000..12c006d --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftstroke.h @@ -0,0 +1,773 @@ +/**************************************************************************** + * + * ftstroke.h + * + * FreeType path stroker (specification). + * + * Copyright (C) 2002-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTSTROKE_H_ +#define FTSTROKE_H_ + +#include +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * glyph_stroker + * + * @title: + * Glyph Stroker + * + * @abstract: + * Generating bordered and stroked glyphs. + * + * @description: + * This component generates stroked outlines of a given vectorial glyph. + * It also allows you to retrieve the 'outside' and/or the 'inside' + * borders of the stroke. + * + * This can be useful to generate 'bordered' glyph, i.e., glyphs + * displayed with a colored (and anti-aliased) border around their + * shape. + * + * @order: + * FT_Stroker + * + * FT_Stroker_LineJoin + * FT_Stroker_LineCap + * FT_StrokerBorder + * + * FT_Outline_GetInsideBorder + * FT_Outline_GetOutsideBorder + * + * FT_Glyph_Stroke + * FT_Glyph_StrokeBorder + * + * FT_Stroker_New + * FT_Stroker_Set + * FT_Stroker_Rewind + * FT_Stroker_ParseOutline + * FT_Stroker_Done + * + * FT_Stroker_BeginSubPath + * FT_Stroker_EndSubPath + * + * FT_Stroker_LineTo + * FT_Stroker_ConicTo + * FT_Stroker_CubicTo + * + * FT_Stroker_GetBorderCounts + * FT_Stroker_ExportBorder + * FT_Stroker_GetCounts + * FT_Stroker_Export + * + */ + + + /************************************************************************** + * + * @type: + * FT_Stroker + * + * @description: + * Opaque handle to a path stroker object. + */ + typedef struct FT_StrokerRec_* FT_Stroker; + + + /************************************************************************** + * + * @enum: + * FT_Stroker_LineJoin + * + * @description: + * These values determine how two joining lines are rendered in a + * stroker. + * + * @values: + * FT_STROKER_LINEJOIN_ROUND :: + * Used to render rounded line joins. Circular arcs are used to join + * two lines smoothly. + * + * FT_STROKER_LINEJOIN_BEVEL :: + * Used to render beveled line joins. The outer corner of the joined + * lines is filled by enclosing the triangular region of the corner + * with a straight line between the outer corners of each stroke. + * + * FT_STROKER_LINEJOIN_MITER_FIXED :: + * Used to render mitered line joins, with fixed bevels if the miter + * limit is exceeded. The outer edges of the strokes for the two + * segments are extended until they meet at an angle. A bevel join + * (see above) is used if the segments meet at too sharp an angle and + * the outer edges meet beyond a distance corresponding to the meter + * limit. This prevents long spikes being created. + * `FT_STROKER_LINEJOIN_MITER_FIXED` generates a miter line join as + * used in PostScript and PDF. + * + * FT_STROKER_LINEJOIN_MITER_VARIABLE :: + * FT_STROKER_LINEJOIN_MITER :: + * Used to render mitered line joins, with variable bevels if the miter + * limit is exceeded. The intersection of the strokes is clipped + * perpendicularly to the bisector, at a distance corresponding to + * the miter limit. This prevents long spikes being created. + * `FT_STROKER_LINEJOIN_MITER_VARIABLE` generates a mitered line join + * as used in XPS. `FT_STROKER_LINEJOIN_MITER` is an alias for + * `FT_STROKER_LINEJOIN_MITER_VARIABLE`, retained for backward + * compatibility. + */ + typedef enum FT_Stroker_LineJoin_ + { + FT_STROKER_LINEJOIN_ROUND = 0, + FT_STROKER_LINEJOIN_BEVEL = 1, + FT_STROKER_LINEJOIN_MITER_VARIABLE = 2, + FT_STROKER_LINEJOIN_MITER = FT_STROKER_LINEJOIN_MITER_VARIABLE, + FT_STROKER_LINEJOIN_MITER_FIXED = 3 + + } FT_Stroker_LineJoin; + + + /************************************************************************** + * + * @enum: + * FT_Stroker_LineCap + * + * @description: + * These values determine how the end of opened sub-paths are rendered in + * a stroke. + * + * @values: + * FT_STROKER_LINECAP_BUTT :: + * The end of lines is rendered as a full stop on the last point + * itself. + * + * FT_STROKER_LINECAP_ROUND :: + * The end of lines is rendered as a half-circle around the last point. + * + * FT_STROKER_LINECAP_SQUARE :: + * The end of lines is rendered as a square around the last point. + */ + typedef enum FT_Stroker_LineCap_ + { + FT_STROKER_LINECAP_BUTT = 0, + FT_STROKER_LINECAP_ROUND, + FT_STROKER_LINECAP_SQUARE + + } FT_Stroker_LineCap; + + + /************************************************************************** + * + * @enum: + * FT_StrokerBorder + * + * @description: + * These values are used to select a given stroke border in + * @FT_Stroker_GetBorderCounts and @FT_Stroker_ExportBorder. + * + * @values: + * FT_STROKER_BORDER_LEFT :: + * Select the left border, relative to the drawing direction. + * + * FT_STROKER_BORDER_RIGHT :: + * Select the right border, relative to the drawing direction. + * + * @note: + * Applications are generally interested in the 'inside' and 'outside' + * borders. However, there is no direct mapping between these and the + * 'left' and 'right' ones, since this really depends on the glyph's + * drawing orientation, which varies between font formats. + * + * You can however use @FT_Outline_GetInsideBorder and + * @FT_Outline_GetOutsideBorder to get these. + */ + typedef enum FT_StrokerBorder_ + { + FT_STROKER_BORDER_LEFT = 0, + FT_STROKER_BORDER_RIGHT + + } FT_StrokerBorder; + + + /************************************************************************** + * + * @function: + * FT_Outline_GetInsideBorder + * + * @description: + * Retrieve the @FT_StrokerBorder value corresponding to the 'inside' + * borders of a given outline. + * + * @input: + * outline :: + * The source outline handle. + * + * @return: + * The border index. @FT_STROKER_BORDER_RIGHT for empty or invalid + * outlines. + */ + FT_EXPORT( FT_StrokerBorder ) + FT_Outline_GetInsideBorder( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Outline_GetOutsideBorder + * + * @description: + * Retrieve the @FT_StrokerBorder value corresponding to the 'outside' + * borders of a given outline. + * + * @input: + * outline :: + * The source outline handle. + * + * @return: + * The border index. @FT_STROKER_BORDER_LEFT for empty or invalid + * outlines. + */ + FT_EXPORT( FT_StrokerBorder ) + FT_Outline_GetOutsideBorder( FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_New + * + * @description: + * Create a new stroker object. + * + * @input: + * library :: + * FreeType library handle. + * + * @output: + * astroker :: + * A new stroker object handle. `NULL` in case of error. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_New( FT_Library library, + FT_Stroker *astroker ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Set + * + * @description: + * Reset a stroker object's attributes. + * + * @input: + * stroker :: + * The target stroker handle. + * + * radius :: + * The border radius. + * + * line_cap :: + * The line cap style. + * + * line_join :: + * The line join style. + * + * miter_limit :: + * The maximum reciprocal sine of half-angle at the miter join, + * expressed as 16.16 fixed point value. + * + * @note: + * The `radius` is expressed in the same units as the outline + * coordinates. + * + * The `miter_limit` multiplied by the `radius` gives the maximum size + * of a miter spike, at which it is clipped for + * @FT_STROKER_LINEJOIN_MITER_VARIABLE or replaced with a bevel join for + * @FT_STROKER_LINEJOIN_MITER_FIXED. + * + * This function calls @FT_Stroker_Rewind automatically. + */ + FT_EXPORT( void ) + FT_Stroker_Set( FT_Stroker stroker, + FT_Fixed radius, + FT_Stroker_LineCap line_cap, + FT_Stroker_LineJoin line_join, + FT_Fixed miter_limit ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Rewind + * + * @description: + * Reset a stroker object without changing its attributes. You should + * call this function before beginning a new series of calls to + * @FT_Stroker_BeginSubPath or @FT_Stroker_EndSubPath. + * + * @input: + * stroker :: + * The target stroker handle. + */ + FT_EXPORT( void ) + FT_Stroker_Rewind( FT_Stroker stroker ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_ParseOutline + * + * @description: + * A convenience function used to parse a whole outline with the stroker. + * The resulting outline(s) can be retrieved later by functions like + * @FT_Stroker_GetCounts and @FT_Stroker_Export. + * + * @input: + * stroker :: + * The target stroker handle. + * + * outline :: + * The source outline. + * + * opened :: + * A boolean. If~1, the outline is treated as an open path instead of + * a closed one. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If `opened` is~0 (the default), the outline is treated as a closed + * path, and the stroker generates two distinct 'border' outlines. + * + * If `opened` is~1, the outline is processed as an open path, and the + * stroker generates a single 'stroke' outline. + * + * This function calls @FT_Stroker_Rewind automatically. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_ParseOutline( FT_Stroker stroker, + FT_Outline* outline, + FT_Bool opened ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_BeginSubPath + * + * @description: + * Start a new sub-path in the stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * to :: + * A pointer to the start vector. + * + * open :: + * A boolean. If~1, the sub-path is treated as an open one. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function is useful when you need to stroke a path that is not + * stored as an @FT_Outline object. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_BeginSubPath( FT_Stroker stroker, + FT_Vector* to, + FT_Bool open ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_EndSubPath + * + * @description: + * Close the current sub-path in the stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function after @FT_Stroker_BeginSubPath. If the + * subpath was not 'opened', this function 'draws' a single line segment + * to the start position when needed. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_EndSubPath( FT_Stroker stroker ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_LineTo + * + * @description: + * 'Draw' a single line segment in the stroker's current sub-path, from + * the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_LineTo( FT_Stroker stroker, + FT_Vector* to ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_ConicTo + * + * @description: + * 'Draw' a single quadratic Bezier in the stroker's current sub-path, + * from the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * control :: + * A pointer to a Bezier control point. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_ConicTo( FT_Stroker stroker, + FT_Vector* control, + FT_Vector* to ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_CubicTo + * + * @description: + * 'Draw' a single cubic Bezier in the stroker's current sub-path, from + * the last position. + * + * @input: + * stroker :: + * The target stroker handle. + * + * control1 :: + * A pointer to the first Bezier control point. + * + * control2 :: + * A pointer to second Bezier control point. + * + * to :: + * A pointer to the destination point. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * You should call this function between @FT_Stroker_BeginSubPath and + * @FT_Stroker_EndSubPath. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_CubicTo( FT_Stroker stroker, + FT_Vector* control1, + FT_Vector* control2, + FT_Vector* to ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_GetBorderCounts + * + * @description: + * Call this function once you have finished parsing your paths with the + * stroker. It returns the number of points and contours necessary to + * export one of the 'border' or 'stroke' outlines generated by the + * stroker. + * + * @input: + * stroker :: + * The target stroker handle. + * + * border :: + * The border index. + * + * @output: + * anum_points :: + * The number of points. + * + * anum_contours :: + * The number of contours. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * When an outline, or a sub-path, is 'closed', the stroker generates two + * independent 'border' outlines, named 'left' and 'right'. + * + * When the outline, or a sub-path, is 'opened', the stroker merges the + * 'border' outlines with caps. The 'left' border receives all points, + * while the 'right' border becomes empty. + * + * Use the function @FT_Stroker_GetCounts instead if you want to retrieve + * the counts associated to both borders. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_GetBorderCounts( FT_Stroker stroker, + FT_StrokerBorder border, + FT_UInt *anum_points, + FT_UInt *anum_contours ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_ExportBorder + * + * @description: + * Call this function after @FT_Stroker_GetBorderCounts to export the + * corresponding border to your own @FT_Outline structure. + * + * Note that this function appends the border points and contours to your + * outline, but does not try to resize its arrays. + * + * @input: + * stroker :: + * The target stroker handle. + * + * border :: + * The border index. + * + * outline :: + * The target outline handle. + * + * @note: + * Always call this function after @FT_Stroker_GetBorderCounts to get + * sure that there is enough room in your @FT_Outline object to receive + * all new data. + * + * When an outline, or a sub-path, is 'closed', the stroker generates two + * independent 'border' outlines, named 'left' and 'right'. + * + * When the outline, or a sub-path, is 'opened', the stroker merges the + * 'border' outlines with caps. The 'left' border receives all points, + * while the 'right' border becomes empty. + * + * Use the function @FT_Stroker_Export instead if you want to retrieve + * all borders at once. + */ + FT_EXPORT( void ) + FT_Stroker_ExportBorder( FT_Stroker stroker, + FT_StrokerBorder border, + FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_GetCounts + * + * @description: + * Call this function once you have finished parsing your paths with the + * stroker. It returns the number of points and contours necessary to + * export all points/borders from the stroked outline/path. + * + * @input: + * stroker :: + * The target stroker handle. + * + * @output: + * anum_points :: + * The number of points. + * + * anum_contours :: + * The number of contours. + * + * @return: + * FreeType error code. 0~means success. + */ + FT_EXPORT( FT_Error ) + FT_Stroker_GetCounts( FT_Stroker stroker, + FT_UInt *anum_points, + FT_UInt *anum_contours ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Export + * + * @description: + * Call this function after @FT_Stroker_GetBorderCounts to export all + * borders to your own @FT_Outline structure. + * + * Note that this function appends the border points and contours to your + * outline, but does not try to resize its arrays. + * + * @input: + * stroker :: + * The target stroker handle. + * + * outline :: + * The target outline handle. + */ + FT_EXPORT( void ) + FT_Stroker_Export( FT_Stroker stroker, + FT_Outline* outline ); + + + /************************************************************************** + * + * @function: + * FT_Stroker_Done + * + * @description: + * Destroy a stroker object. + * + * @input: + * stroker :: + * A stroker handle. Can be `NULL`. + */ + FT_EXPORT( void ) + FT_Stroker_Done( FT_Stroker stroker ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_Stroke + * + * @description: + * Stroke a given outline glyph object with a given stroker. + * + * @inout: + * pglyph :: + * Source glyph handle on input, new glyph handle on output. + * + * @input: + * stroker :: + * A stroker handle. + * + * destroy :: + * A Boolean. If~1, the source glyph object is destroyed on success. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source glyph is untouched in case of error. + * + * Adding stroke may yield a significantly wider and taller glyph + * depending on how large of a radius was used to stroke the glyph. You + * may need to manually adjust horizontal and vertical advance amounts to + * account for this added size. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_Stroke( FT_Glyph *pglyph, + FT_Stroker stroker, + FT_Bool destroy ); + + + /************************************************************************** + * + * @function: + * FT_Glyph_StrokeBorder + * + * @description: + * Stroke a given outline glyph object with a given stroker, but only + * return either its inside or outside border. + * + * @inout: + * pglyph :: + * Source glyph handle on input, new glyph handle on output. + * + * @input: + * stroker :: + * A stroker handle. + * + * inside :: + * A Boolean. If~1, return the inside border, otherwise the outside + * border. + * + * destroy :: + * A Boolean. If~1, the source glyph object is destroyed on success. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The source glyph is untouched in case of error. + * + * Adding stroke may yield a significantly wider and taller glyph + * depending on how large of a radius was used to stroke the glyph. You + * may need to manually adjust horizontal and vertical advance amounts to + * account for this added size. + */ + FT_EXPORT( FT_Error ) + FT_Glyph_StrokeBorder( FT_Glyph *pglyph, + FT_Stroker stroker, + FT_Bool inside, + FT_Bool destroy ); + + /* */ + +FT_END_HEADER + +#endif /* FTSTROKE_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftsynth.h b/external/lumin/thirdparty/freetype/include/freetype/ftsynth.h new file mode 100644 index 0000000..afc40b1 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftsynth.h @@ -0,0 +1,83 @@ +/**************************************************************************** + * + * ftsynth.h + * + * FreeType synthesizing code for emboldening and slanting + * (specification). + * + * Copyright (C) 2000-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /********* *********/ + /********* WARNING, THIS IS ALPHA CODE! THIS API *********/ + /********* IS DUE TO CHANGE UNTIL STRICTLY NOTIFIED BY THE *********/ + /********* FREETYPE DEVELOPMENT TEAM *********/ + /********* *********/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + /*************************************************************************/ + + + /* Main reason for not lifting the functions in this module to a */ + /* 'standard' API is that the used parameters for emboldening and */ + /* slanting are not configurable. Consider the functions as a */ + /* code resource that should be copied into the application and */ + /* adapted to the particular needs. */ + + +#ifndef FTSYNTH_H_ +#define FTSYNTH_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /* Embolden a glyph by a 'reasonable' value (which is highly a matter of */ + /* taste). This function is actually a convenience function, providing */ + /* a wrapper for @FT_Outline_Embolden and @FT_Bitmap_Embolden. */ + /* */ + /* For emboldened outlines the height, width, and advance metrics are */ + /* increased by the strength of the emboldening -- this even affects */ + /* mono-width fonts! */ + /* */ + /* You can also call @FT_Outline_Get_CBox to get precise values. */ + FT_EXPORT( void ) + FT_GlyphSlot_Embolden( FT_GlyphSlot slot ); + + /* Slant an outline glyph to the right by about 12 degrees. */ + FT_EXPORT( void ) + FT_GlyphSlot_Oblique( FT_GlyphSlot slot ); + + /* */ + + +FT_END_HEADER + +#endif /* FTSYNTH_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftsystem.h b/external/lumin/thirdparty/freetype/include/freetype/ftsystem.h new file mode 100644 index 0000000..5f8aec7 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftsystem.h @@ -0,0 +1,352 @@ +/**************************************************************************** + * + * ftsystem.h + * + * FreeType low-level system interface definition (specification). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTSYSTEM_H_ +#define FTSYSTEM_H_ + + + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * system_interface + * + * @title: + * System Interface + * + * @abstract: + * How FreeType manages memory and i/o. + * + * @description: + * This section contains various definitions related to memory management + * and i/o access. You need to understand this information if you want to + * use a custom memory manager or you own i/o streams. + * + */ + + + /************************************************************************** + * + * M E M O R Y M A N A G E M E N T + * + */ + + + /************************************************************************** + * + * @type: + * FT_Memory + * + * @description: + * A handle to a given memory manager object, defined with an + * @FT_MemoryRec structure. + * + */ + typedef struct FT_MemoryRec_* FT_Memory; + + + /************************************************************************** + * + * @functype: + * FT_Alloc_Func + * + * @description: + * A function used to allocate `size` bytes from `memory`. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * size :: + * The size in bytes to allocate. + * + * @return: + * Address of new memory block. 0~in case of failure. + * + */ + typedef void* + (*FT_Alloc_Func)( FT_Memory memory, + long size ); + + + /************************************************************************** + * + * @functype: + * FT_Free_Func + * + * @description: + * A function used to release a given block of memory. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * block :: + * The address of the target memory block. + * + */ + typedef void + (*FT_Free_Func)( FT_Memory memory, + void* block ); + + + /************************************************************************** + * + * @functype: + * FT_Realloc_Func + * + * @description: + * A function used to re-allocate a given block of memory. + * + * @input: + * memory :: + * A handle to the source memory manager. + * + * cur_size :: + * The block's current size in bytes. + * + * new_size :: + * The block's requested new size. + * + * block :: + * The block's current address. + * + * @return: + * New block address. 0~in case of memory shortage. + * + * @note: + * In case of error, the old block must still be available. + * + */ + typedef void* + (*FT_Realloc_Func)( FT_Memory memory, + long cur_size, + long new_size, + void* block ); + + + /************************************************************************** + * + * @struct: + * FT_MemoryRec + * + * @description: + * A structure used to describe a given memory manager to FreeType~2. + * + * @fields: + * user :: + * A generic typeless pointer for user data. + * + * alloc :: + * A pointer type to an allocation function. + * + * free :: + * A pointer type to an memory freeing function. + * + * realloc :: + * A pointer type to a reallocation function. + * + */ + struct FT_MemoryRec_ + { + void* user; + FT_Alloc_Func alloc; + FT_Free_Func free; + FT_Realloc_Func realloc; + }; + + + /************************************************************************** + * + * I / O M A N A G E M E N T + * + */ + + + /************************************************************************** + * + * @type: + * FT_Stream + * + * @description: + * A handle to an input stream. + * + * @also: + * See @FT_StreamRec for the publicly accessible fields of a given stream + * object. + * + */ + typedef struct FT_StreamRec_* FT_Stream; + + + /************************************************************************** + * + * @struct: + * FT_StreamDesc + * + * @description: + * A union type used to store either a long or a pointer. This is used + * to store a file descriptor or a `FILE*` in an input stream. + * + */ + typedef union FT_StreamDesc_ + { + long value; + void* pointer; + + } FT_StreamDesc; + + + /************************************************************************** + * + * @functype: + * FT_Stream_IoFunc + * + * @description: + * A function used to seek and read data from a given input stream. + * + * @input: + * stream :: + * A handle to the source stream. + * + * offset :: + * The offset of read in stream (always from start). + * + * buffer :: + * The address of the read buffer. + * + * count :: + * The number of bytes to read from the stream. + * + * @return: + * The number of bytes effectively read by the stream. + * + * @note: + * This function might be called to perform a seek or skip operation with + * a `count` of~0. A non-zero return value then indicates an error. + * + */ + typedef unsigned long + (*FT_Stream_IoFunc)( FT_Stream stream, + unsigned long offset, + unsigned char* buffer, + unsigned long count ); + + + /************************************************************************** + * + * @functype: + * FT_Stream_CloseFunc + * + * @description: + * A function used to close a given input stream. + * + * @input: + * stream :: + * A handle to the target stream. + * + */ + typedef void + (*FT_Stream_CloseFunc)( FT_Stream stream ); + + + /************************************************************************** + * + * @struct: + * FT_StreamRec + * + * @description: + * A structure used to describe an input stream. + * + * @input: + * base :: + * For memory-based streams, this is the address of the first stream + * byte in memory. This field should always be set to `NULL` for + * disk-based streams. + * + * size :: + * The stream size in bytes. + * + * In case of compressed streams where the size is unknown before + * actually doing the decompression, the value is set to 0x7FFFFFFF. + * (Note that this size value can occur for normal streams also; it is + * thus just a hint.) + * + * pos :: + * The current position within the stream. + * + * descriptor :: + * This field is a union that can hold an integer or a pointer. It is + * used by stream implementations to store file descriptors or `FILE*` + * pointers. + * + * pathname :: + * This field is completely ignored by FreeType. However, it is often + * useful during debugging to use it to store the stream's filename + * (where available). + * + * read :: + * The stream's input function. + * + * close :: + * The stream's close function. + * + * memory :: + * The memory manager to use to preload frames. This is set internally + * by FreeType and shouldn't be touched by stream implementations. + * + * cursor :: + * This field is set and used internally by FreeType when parsing + * frames. In particular, the `FT_GET_XXX` macros use this instead of + * the `pos` field. + * + * limit :: + * This field is set and used internally by FreeType when parsing + * frames. + * + */ + typedef struct FT_StreamRec_ + { + unsigned char* base; + unsigned long size; + unsigned long pos; + + FT_StreamDesc descriptor; + FT_StreamDesc pathname; + FT_Stream_IoFunc read; + FT_Stream_CloseFunc close; + + FT_Memory memory; + unsigned char* cursor; + unsigned char* limit; + + } FT_StreamRec; + + /* */ + + +FT_END_HEADER + +#endif /* FTSYSTEM_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/fttrigon.h b/external/lumin/thirdparty/freetype/include/freetype/fttrigon.h new file mode 100644 index 0000000..4e8d871 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/fttrigon.h @@ -0,0 +1,350 @@ +/**************************************************************************** + * + * fttrigon.h + * + * FreeType trigonometric functions (specification). + * + * Copyright (C) 2001-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTTRIGON_H_ +#define FTTRIGON_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * computations + * + */ + + + /************************************************************************** + * + * @type: + * FT_Angle + * + * @description: + * This type is used to model angle values in FreeType. Note that the + * angle is a 16.16 fixed-point value expressed in degrees. + * + */ + typedef FT_Fixed FT_Angle; + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_PI + * + * @description: + * The angle pi expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI ( 180L << 16 ) + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_2PI + * + * @description: + * The angle 2*pi expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_2PI ( FT_ANGLE_PI * 2 ) + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_PI2 + * + * @description: + * The angle pi/2 expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI2 ( FT_ANGLE_PI / 2 ) + + + /************************************************************************** + * + * @macro: + * FT_ANGLE_PI4 + * + * @description: + * The angle pi/4 expressed in @FT_Angle units. + * + */ +#define FT_ANGLE_PI4 ( FT_ANGLE_PI / 4 ) + + + /************************************************************************** + * + * @function: + * FT_Sin + * + * @description: + * Return the sinus of a given angle in fixed-point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The sinus value. + * + * @note: + * If you need both the sinus and cosinus for a given angle, use the + * function @FT_Vector_Unit. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Sin( FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Cos + * + * @description: + * Return the cosinus of a given angle in fixed-point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The cosinus value. + * + * @note: + * If you need both the sinus and cosinus for a given angle, use the + * function @FT_Vector_Unit. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Cos( FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Tan + * + * @description: + * Return the tangent of a given angle in fixed-point format. + * + * @input: + * angle :: + * The input angle. + * + * @return: + * The tangent value. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Tan( FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Atan2 + * + * @description: + * Return the arc-tangent corresponding to a given vector (x,y) in the 2d + * plane. + * + * @input: + * x :: + * The horizontal vector coordinate. + * + * y :: + * The vertical vector coordinate. + * + * @return: + * The arc-tangent value (i.e. angle). + * + */ + FT_EXPORT( FT_Angle ) + FT_Atan2( FT_Fixed x, + FT_Fixed y ); + + + /************************************************************************** + * + * @function: + * FT_Angle_Diff + * + * @description: + * Return the difference between two angles. The result is always + * constrained to the ]-PI..PI] interval. + * + * @input: + * angle1 :: + * First angle. + * + * angle2 :: + * Second angle. + * + * @return: + * Constrained value of `angle2-angle1`. + * + */ + FT_EXPORT( FT_Angle ) + FT_Angle_Diff( FT_Angle angle1, + FT_Angle angle2 ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Unit + * + * @description: + * Return the unit vector corresponding to a given angle. After the + * call, the value of `vec.x` will be `cos(angle)`, and the value of + * `vec.y` will be `sin(angle)`. + * + * This function is useful to retrieve both the sinus and cosinus of a + * given angle quickly. + * + * @output: + * vec :: + * The address of target vector. + * + * @input: + * angle :: + * The input angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Unit( FT_Vector* vec, + FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Rotate + * + * @description: + * Rotate a vector by a given angle. + * + * @inout: + * vec :: + * The address of target vector. + * + * @input: + * angle :: + * The input angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Rotate( FT_Vector* vec, + FT_Angle angle ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Length + * + * @description: + * Return the length of a given vector. + * + * @input: + * vec :: + * The address of target vector. + * + * @return: + * The vector length, expressed in the same units that the original + * vector coordinates. + * + */ + FT_EXPORT( FT_Fixed ) + FT_Vector_Length( FT_Vector* vec ); + + + /************************************************************************** + * + * @function: + * FT_Vector_Polarize + * + * @description: + * Compute both the length and angle of a given vector. + * + * @input: + * vec :: + * The address of source vector. + * + * @output: + * length :: + * The vector length. + * + * angle :: + * The vector angle. + * + */ + FT_EXPORT( void ) + FT_Vector_Polarize( FT_Vector* vec, + FT_Fixed *length, + FT_Angle *angle ); + + + /************************************************************************** + * + * @function: + * FT_Vector_From_Polar + * + * @description: + * Compute vector coordinates from a length and angle. + * + * @output: + * vec :: + * The address of source vector. + * + * @input: + * length :: + * The vector length. + * + * angle :: + * The vector angle. + * + */ + FT_EXPORT( void ) + FT_Vector_From_Polar( FT_Vector* vec, + FT_Fixed length, + FT_Angle angle ); + + /* */ + + +FT_END_HEADER + +#endif /* FTTRIGON_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/fttypes.h b/external/lumin/thirdparty/freetype/include/freetype/fttypes.h new file mode 100644 index 0000000..29f32fb --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/fttypes.h @@ -0,0 +1,614 @@ +/**************************************************************************** + * + * fttypes.h + * + * FreeType simple types definitions (specification only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTTYPES_H_ +#define FTTYPES_H_ + + +#include +#include FT_CONFIG_CONFIG_H +#include +#include + +#include + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * basic_types + * + * @title: + * Basic Data Types + * + * @abstract: + * The basic data types defined by the library. + * + * @description: + * This section contains the basic data types defined by FreeType~2, + * ranging from simple scalar types to bitmap descriptors. More + * font-specific structures are defined in a different section. + * + * @order: + * FT_Byte + * FT_Bytes + * FT_Char + * FT_Int + * FT_UInt + * FT_Int16 + * FT_UInt16 + * FT_Int32 + * FT_UInt32 + * FT_Int64 + * FT_UInt64 + * FT_Short + * FT_UShort + * FT_Long + * FT_ULong + * FT_Bool + * FT_Offset + * FT_PtrDist + * FT_String + * FT_Tag + * FT_Error + * FT_Fixed + * FT_Pointer + * FT_Pos + * FT_Vector + * FT_BBox + * FT_Matrix + * FT_FWord + * FT_UFWord + * FT_F2Dot14 + * FT_UnitVector + * FT_F26Dot6 + * FT_Data + * + * FT_MAKE_TAG + * + * FT_Generic + * FT_Generic_Finalizer + * + * FT_Bitmap + * FT_Pixel_Mode + * FT_Palette_Mode + * FT_Glyph_Format + * FT_IMAGE_TAG + * + */ + + + /************************************************************************** + * + * @type: + * FT_Bool + * + * @description: + * A typedef of unsigned char, used for simple booleans. As usual, + * values 1 and~0 represent true and false, respectively. + */ + typedef unsigned char FT_Bool; + + + /************************************************************************** + * + * @type: + * FT_FWord + * + * @description: + * A signed 16-bit integer used to store a distance in original font + * units. + */ + typedef signed short FT_FWord; /* distance in FUnits */ + + + /************************************************************************** + * + * @type: + * FT_UFWord + * + * @description: + * An unsigned 16-bit integer used to store a distance in original font + * units. + */ + typedef unsigned short FT_UFWord; /* unsigned distance */ + + + /************************************************************************** + * + * @type: + * FT_Char + * + * @description: + * A simple typedef for the _signed_ char type. + */ + typedef signed char FT_Char; + + + /************************************************************************** + * + * @type: + * FT_Byte + * + * @description: + * A simple typedef for the _unsigned_ char type. + */ + typedef unsigned char FT_Byte; + + + /************************************************************************** + * + * @type: + * FT_Bytes + * + * @description: + * A typedef for constant memory areas. + */ + typedef const FT_Byte* FT_Bytes; + + + /************************************************************************** + * + * @type: + * FT_Tag + * + * @description: + * A typedef for 32-bit tags (as used in the SFNT format). + */ + typedef FT_UInt32 FT_Tag; + + + /************************************************************************** + * + * @type: + * FT_String + * + * @description: + * A simple typedef for the char type, usually used for strings. + */ + typedef char FT_String; + + + /************************************************************************** + * + * @type: + * FT_Short + * + * @description: + * A typedef for signed short. + */ + typedef signed short FT_Short; + + + /************************************************************************** + * + * @type: + * FT_UShort + * + * @description: + * A typedef for unsigned short. + */ + typedef unsigned short FT_UShort; + + + /************************************************************************** + * + * @type: + * FT_Int + * + * @description: + * A typedef for the int type. + */ + typedef signed int FT_Int; + + + /************************************************************************** + * + * @type: + * FT_UInt + * + * @description: + * A typedef for the unsigned int type. + */ + typedef unsigned int FT_UInt; + + + /************************************************************************** + * + * @type: + * FT_Long + * + * @description: + * A typedef for signed long. + */ + typedef signed long FT_Long; + + + /************************************************************************** + * + * @type: + * FT_ULong + * + * @description: + * A typedef for unsigned long. + */ + typedef unsigned long FT_ULong; + + + /************************************************************************** + * + * @type: + * FT_F2Dot14 + * + * @description: + * A signed 2.14 fixed-point type used for unit vectors. + */ + typedef signed short FT_F2Dot14; + + + /************************************************************************** + * + * @type: + * FT_F26Dot6 + * + * @description: + * A signed 26.6 fixed-point type used for vectorial pixel coordinates. + */ + typedef signed long FT_F26Dot6; + + + /************************************************************************** + * + * @type: + * FT_Fixed + * + * @description: + * This type is used to store 16.16 fixed-point values, like scaling + * values or matrix coefficients. + */ + typedef signed long FT_Fixed; + + + /************************************************************************** + * + * @type: + * FT_Error + * + * @description: + * The FreeType error code type. A value of~0 is always interpreted as a + * successful operation. + */ + typedef int FT_Error; + + + /************************************************************************** + * + * @type: + * FT_Pointer + * + * @description: + * A simple typedef for a typeless pointer. + */ + typedef void* FT_Pointer; + + + /************************************************************************** + * + * @type: + * FT_Offset + * + * @description: + * This is equivalent to the ANSI~C `size_t` type, i.e., the largest + * _unsigned_ integer type used to express a file size or position, or a + * memory block size. + */ + typedef size_t FT_Offset; + + + /************************************************************************** + * + * @type: + * FT_PtrDist + * + * @description: + * This is equivalent to the ANSI~C `ptrdiff_t` type, i.e., the largest + * _signed_ integer type used to express the distance between two + * pointers. + */ + typedef ft_ptrdiff_t FT_PtrDist; + + + /************************************************************************** + * + * @struct: + * FT_UnitVector + * + * @description: + * A simple structure used to store a 2D vector unit vector. Uses + * FT_F2Dot14 types. + * + * @fields: + * x :: + * Horizontal coordinate. + * + * y :: + * Vertical coordinate. + */ + typedef struct FT_UnitVector_ + { + FT_F2Dot14 x; + FT_F2Dot14 y; + + } FT_UnitVector; + + + /************************************************************************** + * + * @struct: + * FT_Matrix + * + * @description: + * A simple structure used to store a 2x2 matrix. Coefficients are in + * 16.16 fixed-point format. The computation performed is: + * + * ``` + * x' = x*xx + y*xy + * y' = x*yx + y*yy + * ``` + * + * @fields: + * xx :: + * Matrix coefficient. + * + * xy :: + * Matrix coefficient. + * + * yx :: + * Matrix coefficient. + * + * yy :: + * Matrix coefficient. + */ + typedef struct FT_Matrix_ + { + FT_Fixed xx, xy; + FT_Fixed yx, yy; + + } FT_Matrix; + + + /************************************************************************** + * + * @struct: + * FT_Data + * + * @description: + * Read-only binary data represented as a pointer and a length. + * + * @fields: + * pointer :: + * The data. + * + * length :: + * The length of the data in bytes. + */ + typedef struct FT_Data_ + { + const FT_Byte* pointer; + FT_UInt length; + + } FT_Data; + + + /************************************************************************** + * + * @functype: + * FT_Generic_Finalizer + * + * @description: + * Describe a function used to destroy the 'client' data of any FreeType + * object. See the description of the @FT_Generic type for details of + * usage. + * + * @input: + * The address of the FreeType object that is under finalization. Its + * client data is accessed through its `generic` field. + */ + typedef void (*FT_Generic_Finalizer)( void* object ); + + + /************************************************************************** + * + * @struct: + * FT_Generic + * + * @description: + * Client applications often need to associate their own data to a + * variety of FreeType core objects. For example, a text layout API + * might want to associate a glyph cache to a given size object. + * + * Some FreeType object contains a `generic` field, of type `FT_Generic`, + * which usage is left to client applications and font servers. + * + * It can be used to store a pointer to client-specific data, as well as + * the address of a 'finalizer' function, which will be called by + * FreeType when the object is destroyed (for example, the previous + * client example would put the address of the glyph cache destructor in + * the `finalizer` field). + * + * @fields: + * data :: + * A typeless pointer to any client-specified data. This field is + * completely ignored by the FreeType library. + * + * finalizer :: + * A pointer to a 'generic finalizer' function, which will be called + * when the object is destroyed. If this field is set to `NULL`, no + * code will be called. + */ + typedef struct FT_Generic_ + { + void* data; + FT_Generic_Finalizer finalizer; + + } FT_Generic; + + + /************************************************************************** + * + * @macro: + * FT_MAKE_TAG + * + * @description: + * This macro converts four-letter tags that are used to label TrueType + * tables into an `FT_Tag` type, to be used within FreeType. + * + * @note: + * The produced values **must** be 32-bit integers. Don't redefine this + * macro. + */ +#define FT_MAKE_TAG( _x1, _x2, _x3, _x4 ) \ + ( ( FT_STATIC_BYTE_CAST( FT_Tag, _x1 ) << 24 ) | \ + ( FT_STATIC_BYTE_CAST( FT_Tag, _x2 ) << 16 ) | \ + ( FT_STATIC_BYTE_CAST( FT_Tag, _x3 ) << 8 ) | \ + FT_STATIC_BYTE_CAST( FT_Tag, _x4 ) ) + + + /*************************************************************************/ + /*************************************************************************/ + /* */ + /* L I S T M A N A G E M E N T */ + /* */ + /*************************************************************************/ + /*************************************************************************/ + + + /************************************************************************** + * + * @section: + * list_processing + * + */ + + + /************************************************************************** + * + * @type: + * FT_ListNode + * + * @description: + * Many elements and objects in FreeType are listed through an @FT_List + * record (see @FT_ListRec). As its name suggests, an FT_ListNode is a + * handle to a single list element. + */ + typedef struct FT_ListNodeRec_* FT_ListNode; + + + /************************************************************************** + * + * @type: + * FT_List + * + * @description: + * A handle to a list record (see @FT_ListRec). + */ + typedef struct FT_ListRec_* FT_List; + + + /************************************************************************** + * + * @struct: + * FT_ListNodeRec + * + * @description: + * A structure used to hold a single list element. + * + * @fields: + * prev :: + * The previous element in the list. `NULL` if first. + * + * next :: + * The next element in the list. `NULL` if last. + * + * data :: + * A typeless pointer to the listed object. + */ + typedef struct FT_ListNodeRec_ + { + FT_ListNode prev; + FT_ListNode next; + void* data; + + } FT_ListNodeRec; + + + /************************************************************************** + * + * @struct: + * FT_ListRec + * + * @description: + * A structure used to hold a simple doubly-linked list. These are used + * in many parts of FreeType. + * + * @fields: + * head :: + * The head (first element) of doubly-linked list. + * + * tail :: + * The tail (last element) of doubly-linked list. + */ + typedef struct FT_ListRec_ + { + FT_ListNode head; + FT_ListNode tail; + + } FT_ListRec; + + /* */ + + +#define FT_IS_EMPTY( list ) ( (list).head == 0 ) +#define FT_BOOL( x ) FT_STATIC_CAST( FT_Bool, (x) != 0 ) + + /* concatenate C tokens */ +#define FT_ERR_XCAT( x, y ) x ## y +#define FT_ERR_CAT( x, y ) FT_ERR_XCAT( x, y ) + + /* see `ftmoderr.h` for descriptions of the following macros */ + +#define FT_ERR( e ) FT_ERR_CAT( FT_ERR_PREFIX, e ) + +#define FT_ERROR_BASE( x ) ( (x) & 0xFF ) +#define FT_ERROR_MODULE( x ) ( (x) & 0xFF00U ) + +#define FT_ERR_EQ( x, e ) \ + ( FT_ERROR_BASE( x ) == FT_ERROR_BASE( FT_ERR( e ) ) ) +#define FT_ERR_NEQ( x, e ) \ + ( FT_ERROR_BASE( x ) != FT_ERROR_BASE( FT_ERR( e ) ) ) + + +FT_END_HEADER + +#endif /* FTTYPES_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ftwinfnt.h b/external/lumin/thirdparty/freetype/include/freetype/ftwinfnt.h new file mode 100644 index 0000000..294f85a --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ftwinfnt.h @@ -0,0 +1,276 @@ +/**************************************************************************** + * + * ftwinfnt.h + * + * FreeType API for accessing Windows fnt-specific data. + * + * Copyright (C) 2003-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef FTWINFNT_H_ +#define FTWINFNT_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * winfnt_fonts + * + * @title: + * Window FNT Files + * + * @abstract: + * Windows FNT-specific API. + * + * @description: + * This section contains the declaration of Windows FNT-specific + * functions. + * + */ + + + /************************************************************************** + * + * @enum: + * FT_WinFNT_ID_XXX + * + * @description: + * A list of valid values for the `charset` byte in @FT_WinFNT_HeaderRec. + * Exact mapping tables for the various 'cpXXXX' encodings (except for + * 'cp1361') can be found at 'ftp://ftp.unicode.org/Public/' in the + * `MAPPINGS/VENDORS/MICSFT/WINDOWS` subdirectory. 'cp1361' is roughly a + * superset of `MAPPINGS/OBSOLETE/EASTASIA/KSC/JOHAB.TXT`. + * + * @values: + * FT_WinFNT_ID_DEFAULT :: + * This is used for font enumeration and font creation as a 'don't + * care' value. Valid font files don't contain this value. When + * querying for information about the character set of the font that is + * currently selected into a specified device context, this return + * value (of the related Windows API) simply denotes failure. + * + * FT_WinFNT_ID_SYMBOL :: + * There is no known mapping table available. + * + * FT_WinFNT_ID_MAC :: + * Mac Roman encoding. + * + * FT_WinFNT_ID_OEM :: + * From Michael Poettgen : + * + * The 'Windows Font Mapping' article says that `FT_WinFNT_ID_OEM` is + * used for the charset of vector fonts, like `modern.fon`, + * `roman.fon`, and `script.fon` on Windows. + * + * The 'CreateFont' documentation says: The `FT_WinFNT_ID_OEM` value + * specifies a character set that is operating-system dependent. + * + * The 'IFIMETRICS' documentation from the 'Windows Driver Development + * Kit' says: This font supports an OEM-specific character set. The + * OEM character set is system dependent. + * + * In general OEM, as opposed to ANSI (i.e., 'cp1252'), denotes the + * second default codepage that most international versions of Windows + * have. It is one of the OEM codepages from + * + * https://docs.microsoft.com/en-us/windows/desktop/intl/code-page-identifiers + * , + * + * and is used for the 'DOS boxes', to support legacy applications. A + * German Windows version for example usually uses ANSI codepage 1252 + * and OEM codepage 850. + * + * FT_WinFNT_ID_CP874 :: + * A superset of Thai TIS 620 and ISO 8859-11. + * + * FT_WinFNT_ID_CP932 :: + * A superset of Japanese Shift-JIS (with minor deviations). + * + * FT_WinFNT_ID_CP936 :: + * A superset of simplified Chinese GB 2312-1980 (with different + * ordering and minor deviations). + * + * FT_WinFNT_ID_CP949 :: + * A superset of Korean Hangul KS~C 5601-1987 (with different ordering + * and minor deviations). + * + * FT_WinFNT_ID_CP950 :: + * A superset of traditional Chinese Big~5 ETen (with different + * ordering and minor deviations). + * + * FT_WinFNT_ID_CP1250 :: + * A superset of East European ISO 8859-2 (with slightly different + * ordering). + * + * FT_WinFNT_ID_CP1251 :: + * A superset of Russian ISO 8859-5 (with different ordering). + * + * FT_WinFNT_ID_CP1252 :: + * ANSI encoding. A superset of ISO 8859-1. + * + * FT_WinFNT_ID_CP1253 :: + * A superset of Greek ISO 8859-7 (with minor modifications). + * + * FT_WinFNT_ID_CP1254 :: + * A superset of Turkish ISO 8859-9. + * + * FT_WinFNT_ID_CP1255 :: + * A superset of Hebrew ISO 8859-8 (with some modifications). + * + * FT_WinFNT_ID_CP1256 :: + * A superset of Arabic ISO 8859-6 (with different ordering). + * + * FT_WinFNT_ID_CP1257 :: + * A superset of Baltic ISO 8859-13 (with some deviations). + * + * FT_WinFNT_ID_CP1258 :: + * For Vietnamese. This encoding doesn't cover all necessary + * characters. + * + * FT_WinFNT_ID_CP1361 :: + * Korean (Johab). + */ + +#define FT_WinFNT_ID_CP1252 0 +#define FT_WinFNT_ID_DEFAULT 1 +#define FT_WinFNT_ID_SYMBOL 2 +#define FT_WinFNT_ID_MAC 77 +#define FT_WinFNT_ID_CP932 128 +#define FT_WinFNT_ID_CP949 129 +#define FT_WinFNT_ID_CP1361 130 +#define FT_WinFNT_ID_CP936 134 +#define FT_WinFNT_ID_CP950 136 +#define FT_WinFNT_ID_CP1253 161 +#define FT_WinFNT_ID_CP1254 162 +#define FT_WinFNT_ID_CP1258 163 +#define FT_WinFNT_ID_CP1255 177 +#define FT_WinFNT_ID_CP1256 178 +#define FT_WinFNT_ID_CP1257 186 +#define FT_WinFNT_ID_CP1251 204 +#define FT_WinFNT_ID_CP874 222 +#define FT_WinFNT_ID_CP1250 238 +#define FT_WinFNT_ID_OEM 255 + + + /************************************************************************** + * + * @struct: + * FT_WinFNT_HeaderRec + * + * @description: + * Windows FNT Header info. + */ + typedef struct FT_WinFNT_HeaderRec_ + { + FT_UShort version; + FT_ULong file_size; + FT_Byte copyright[60]; + FT_UShort file_type; + FT_UShort nominal_point_size; + FT_UShort vertical_resolution; + FT_UShort horizontal_resolution; + FT_UShort ascent; + FT_UShort internal_leading; + FT_UShort external_leading; + FT_Byte italic; + FT_Byte underline; + FT_Byte strike_out; + FT_UShort weight; + FT_Byte charset; + FT_UShort pixel_width; + FT_UShort pixel_height; + FT_Byte pitch_and_family; + FT_UShort avg_width; + FT_UShort max_width; + FT_Byte first_char; + FT_Byte last_char; + FT_Byte default_char; + FT_Byte break_char; + FT_UShort bytes_per_row; + FT_ULong device_offset; + FT_ULong face_name_offset; + FT_ULong bits_pointer; + FT_ULong bits_offset; + FT_Byte reserved; + FT_ULong flags; + FT_UShort A_space; + FT_UShort B_space; + FT_UShort C_space; + FT_UShort color_table_offset; + FT_ULong reserved1[4]; + + } FT_WinFNT_HeaderRec; + + + /************************************************************************** + * + * @struct: + * FT_WinFNT_Header + * + * @description: + * A handle to an @FT_WinFNT_HeaderRec structure. + */ + typedef struct FT_WinFNT_HeaderRec_* FT_WinFNT_Header; + + + /************************************************************************** + * + * @function: + * FT_Get_WinFNT_Header + * + * @description: + * Retrieve a Windows FNT font info header. + * + * @input: + * face :: + * A handle to the input face. + * + * @output: + * aheader :: + * The WinFNT header. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * This function only works with Windows FNT faces, returning an error + * otherwise. + */ + FT_EXPORT( FT_Error ) + FT_Get_WinFNT_Header( FT_Face face, + FT_WinFNT_HeaderRec *aheader ); + + /* */ + + +FT_END_HEADER + +#endif /* FTWINFNT_H_ */ + + +/* END */ + + +/* Local Variables: */ +/* coding: utf-8 */ +/* End: */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/otsvg.h b/external/lumin/thirdparty/freetype/include/freetype/otsvg.h new file mode 100644 index 0000000..2caadfd --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/otsvg.h @@ -0,0 +1,336 @@ +/**************************************************************************** + * + * otsvg.h + * + * Interface for OT-SVG support related things (specification). + * + * Copyright (C) 2022 by + * David Turner, Robert Wilhelm, Werner Lemberg, and Moazin Khatti. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef OTSVG_H_ +#define OTSVG_H_ + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * svg_fonts + * + * @title: + * OpenType SVG Fonts + * + * @abstract: + * OT-SVG API between FreeType and an external SVG rendering library. + * + * @description: + * This section describes the four hooks necessary to render SVG + * 'documents' that are contained in an OpenType font's 'SVG~' table. + * + * For more information on the implementation, see our standard hooks + * based on 'librsvg' in the [FreeType Demo + * Programs](https://gitlab.freedesktop.org/freetype/freetype-demos) + * repository. + * + */ + + + /************************************************************************** + * + * @functype: + * SVG_Lib_Init_Func + * + * @description: + * A callback that is called when the first OT-SVG glyph is rendered in + * the lifetime of an @FT_Library object. In a typical implementation, + * one would want to allocate a structure and point the `data_pointer` + * to it and perform any library initializations that might be needed. + * + * @inout: + * data_pointer :: + * The SVG rendering module stores a pointer variable that can be used + * by clients to store any data that needs to be shared across + * different hooks. `data_pointer` is essentially a pointer to that + * pointer such that it can be written to as well as read from. + * + * @return: + * FreeType error code. 0 means success. + * + * @since: + * 2.12 + */ + typedef FT_Error + (*SVG_Lib_Init_Func)( FT_Pointer *data_pointer ); + + + /************************************************************************** + * + * @functype: + * SVG_Lib_Free_Func + * + * @description: + * A callback that is called when the `ot-svg` module is being freed. + * It is only called if the init hook was called earlier. This means + * that neither the init nor the free hook is called if no OT-SVG glyph + * is rendered. + * + * In a typical implementation, one would want to free any state + * structure that was allocated in the init hook and perform any + * library-related closure that might be needed. + * + * @inout: + * data_pointer :: + * The SVG rendering module stores a pointer variable that can be used + * by clients to store any data that needs to be shared across + * different hooks. `data_pointer` is essentially a pointer to that + * pointer such that it can be written to as well as read from. + * + * @since: + * 2.12 + */ + typedef void + (*SVG_Lib_Free_Func)( FT_Pointer *data_pointer ); + + + /************************************************************************** + * + * @functype: + * SVG_Lib_Render_Func + * + * @description: + * A callback that is called to render an OT-SVG glyph. This callback + * hook is called right after the preset hook @SVG_Lib_Preset_Slot_Func + * has been called with `cache` set to `TRUE`. The data necessary to + * render is available through the handle @FT_SVG_Document, which is set + * in the `other` field of @FT_GlyphSlotRec. + * + * The render hook is expected to render the SVG glyph to the bitmap + * buffer that is allocated already at `slot->bitmap.buffer`. It also + * sets the `num_grays` value as well as `slot->format`. + * + * @input: + * slot :: + * The slot to render. + * + * @inout: + * data_pointer :: + * The SVG rendering module stores a pointer variable that can be used + * by clients to store any data that needs to be shared across + * different hooks. `data_pointer` is essentially a pointer to that + * pointer such that it can be written to as well as read from. + * + * @return: + * FreeType error code. 0 means success. + * + * @since: + * 2.12 + */ + typedef FT_Error + (*SVG_Lib_Render_Func)( FT_GlyphSlot slot, + FT_Pointer *data_pointer ); + + + /************************************************************************** + * + * @functype: + * SVG_Lib_Preset_Slot_Func + * + * @description: + * A callback that is called to preset the glyph slot. It is called from + * two places. + * + * 1. When `FT_Load_Glyph` needs to preset the glyph slot. + * + * 2. Right before the `svg` module calls the render callback hook. + * + * When it is the former, the argument `cache` is set to `FALSE`. When + * it is the latter, the argument `cache` is set to `TRUE`. This + * distinction has been made because many calculations that are necessary + * for presetting a glyph slot are the same needed later for the render + * callback hook. Thus, if `cache` is `TRUE`, the hook can _cache_ those + * calculations in a memory block referenced by the state pointer. + * + * This hook is expected to preset the slot by setting parameters such as + * `bitmap_left`, `bitmap_top`, `width`, `rows`, `pitch`, and + * `pixel_mode`. It is also expected to set all the metrics for the slot + * including the vertical advance if it is not already set. Typically, + * fonts have horizontal advances but not vertical ones. If those are + * available, they had already been set, otherwise they have to be + * estimated and set manually. The hook must take into account the + * transformations that have been set, and translate the transformation + * matrices into the SVG coordinate system, as the original matrix is + * intended for the TTF/CFF coordinate system. + * + * @input: + * slot :: + * The glyph slot that has the SVG document loaded. + * + * cache :: + * See description. + * + * @inout: + * data_pointer :: + * The SVG rendering module stores a pointer variable that can be used + * by clients to store any data that needs to be shared across + * different hooks. `data_pointer` is essentially a pointer to that + * pointer such that it can be written to as well as read from. + * + * @return: + * FreeType error code. 0 means success. + * + * @since: + * 2.12 + */ + typedef FT_Error + (*SVG_Lib_Preset_Slot_Func)( FT_GlyphSlot slot, + FT_Bool cache, + FT_Pointer *state ); + + + /************************************************************************** + * + * @struct: + * SVG_RendererHooks + * + * @description: + * A structure that stores the four hooks needed to render OT-SVG glyphs + * properly. The structure is publicly used to set the hooks via the + * @svg-hooks driver property. + * + * The behavior of each hook is described in its documentation. One + * thing to note is that the preset hook and the render hook often need + * to do the same operations; therefore, it's better to cache the + * intermediate data in a state structure to avoid calculating it twice. + * For example, in the preset hook one can draw the glyph on a recorder + * surface and later create a bitmap surface from it in the render hook. + * + * All four hooks must be non-NULL. + * + * @fields: + * init_svg :: + * The initialization hook. + * + * free_svg :: + * The cleanup hook. + * + * render_hook :: + * The render hook. + * + * preset_slot :: + * The preset hook. + * + * @since: + * 2.12 + */ + typedef struct SVG_RendererHooks_ + { + SVG_Lib_Init_Func init_svg; + SVG_Lib_Free_Func free_svg; + SVG_Lib_Render_Func render_svg; + + SVG_Lib_Preset_Slot_Func preset_slot; + + } SVG_RendererHooks; + + + /************************************************************************** + * + * @struct: + * FT_SVG_DocumentRec + * + * @description: + * A structure that models one SVG document. + * + * @fields: + * svg_document :: + * A pointer to the SVG document. + * + * svg_document_length :: + * The length of `svg_document`. + * + * metrics :: + * A metrics object storing the size information. + * + * units_per_EM :: + * The size of the EM square. + * + * start_glyph_id :: + * The first glyph ID in the glyph range covered by this document. + * + * end_glyph_id :: + * The last glyph ID in the glyph range covered by this document. + * + * transform :: + * A 2x2 transformation matrix to apply to the glyph while rendering + * it. + * + * delta :: + * The translation to apply to the glyph while rendering. + * + * @note: + * When an @FT_GlyphSlot object `slot` is passed down to a renderer, the + * renderer can only access the `metrics` and `units_per_EM` fields via + * `slot->face`. However, when @FT_Glyph_To_Bitmap sets up a dummy + * object, it has no way to set a `face` object. Thus, metrics + * information and `units_per_EM` (which is necessary for OT-SVG) has to + * be stored separately. + * + * @since: + * 2.12 + */ + typedef struct FT_SVG_DocumentRec_ + { + FT_Byte* svg_document; + FT_ULong svg_document_length; + + FT_Size_Metrics metrics; + FT_UShort units_per_EM; + + FT_UShort start_glyph_id; + FT_UShort end_glyph_id; + + FT_Matrix transform; + FT_Vector delta; + + } FT_SVG_DocumentRec; + + + /************************************************************************** + * + * @type: + * FT_SVG_Document + * + * @description: + * A handle to an @FT_SVG_DocumentRec object. + * + * @since: + * 2.12 + */ + typedef struct FT_SVG_DocumentRec_* FT_SVG_Document; + + +FT_END_HEADER + +#endif /* OTSVG_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/t1tables.h b/external/lumin/thirdparty/freetype/include/freetype/t1tables.h new file mode 100644 index 0000000..4068b20 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/t1tables.h @@ -0,0 +1,793 @@ +/**************************************************************************** + * + * t1tables.h + * + * Basic Type 1/Type 2 tables definitions and interface (specification + * only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef T1TABLES_H_ +#define T1TABLES_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * type1_tables + * + * @title: + * Type 1 Tables + * + * @abstract: + * Type~1-specific font tables. + * + * @description: + * This section contains the definition of Type~1-specific tables, + * including structures related to other PostScript font formats. + * + * @order: + * PS_FontInfoRec + * PS_FontInfo + * PS_PrivateRec + * PS_Private + * + * CID_FaceDictRec + * CID_FaceDict + * CID_FaceInfoRec + * CID_FaceInfo + * + * FT_Has_PS_Glyph_Names + * FT_Get_PS_Font_Info + * FT_Get_PS_Font_Private + * FT_Get_PS_Font_Value + * + * T1_Blend_Flags + * T1_EncodingType + * PS_Dict_Keys + * + */ + + + /* Note that we separate font data in PS_FontInfoRec and PS_PrivateRec */ + /* structures in order to support Multiple Master fonts. */ + + + /************************************************************************** + * + * @struct: + * PS_FontInfoRec + * + * @description: + * A structure used to model a Type~1 or Type~2 FontInfo dictionary. + * Note that for Multiple Master fonts, each instance has its own + * FontInfo dictionary. + */ + typedef struct PS_FontInfoRec_ + { + FT_String* version; + FT_String* notice; + FT_String* full_name; + FT_String* family_name; + FT_String* weight; + FT_Long italic_angle; + FT_Bool is_fixed_pitch; + FT_Short underline_position; + FT_UShort underline_thickness; + + } PS_FontInfoRec; + + + /************************************************************************** + * + * @struct: + * PS_FontInfo + * + * @description: + * A handle to a @PS_FontInfoRec structure. + */ + typedef struct PS_FontInfoRec_* PS_FontInfo; + + + /************************************************************************** + * + * @struct: + * T1_FontInfo + * + * @description: + * This type is equivalent to @PS_FontInfoRec. It is deprecated but kept + * to maintain source compatibility between various versions of FreeType. + */ + typedef PS_FontInfoRec T1_FontInfo; + + + /************************************************************************** + * + * @struct: + * PS_PrivateRec + * + * @description: + * A structure used to model a Type~1 or Type~2 private dictionary. Note + * that for Multiple Master fonts, each instance has its own Private + * dictionary. + */ + typedef struct PS_PrivateRec_ + { + FT_Int unique_id; + FT_Int lenIV; + + FT_Byte num_blue_values; + FT_Byte num_other_blues; + FT_Byte num_family_blues; + FT_Byte num_family_other_blues; + + FT_Short blue_values[14]; + FT_Short other_blues[10]; + + FT_Short family_blues [14]; + FT_Short family_other_blues[10]; + + FT_Fixed blue_scale; + FT_Int blue_shift; + FT_Int blue_fuzz; + + FT_UShort standard_width[1]; + FT_UShort standard_height[1]; + + FT_Byte num_snap_widths; + FT_Byte num_snap_heights; + FT_Bool force_bold; + FT_Bool round_stem_up; + + FT_Short snap_widths [13]; /* including std width */ + FT_Short snap_heights[13]; /* including std height */ + + FT_Fixed expansion_factor; + + FT_Long language_group; + FT_Long password; + + FT_Short min_feature[2]; + + } PS_PrivateRec; + + + /************************************************************************** + * + * @struct: + * PS_Private + * + * @description: + * A handle to a @PS_PrivateRec structure. + */ + typedef struct PS_PrivateRec_* PS_Private; + + + /************************************************************************** + * + * @struct: + * T1_Private + * + * @description: + * This type is equivalent to @PS_PrivateRec. It is deprecated but kept + * to maintain source compatibility between various versions of FreeType. + */ + typedef PS_PrivateRec T1_Private; + + + /************************************************************************** + * + * @enum: + * T1_Blend_Flags + * + * @description: + * A set of flags used to indicate which fields are present in a given + * blend dictionary (font info or private). Used to support Multiple + * Masters fonts. + * + * @values: + * T1_BLEND_UNDERLINE_POSITION :: + * T1_BLEND_UNDERLINE_THICKNESS :: + * T1_BLEND_ITALIC_ANGLE :: + * T1_BLEND_BLUE_VALUES :: + * T1_BLEND_OTHER_BLUES :: + * T1_BLEND_STANDARD_WIDTH :: + * T1_BLEND_STANDARD_HEIGHT :: + * T1_BLEND_STEM_SNAP_WIDTHS :: + * T1_BLEND_STEM_SNAP_HEIGHTS :: + * T1_BLEND_BLUE_SCALE :: + * T1_BLEND_BLUE_SHIFT :: + * T1_BLEND_FAMILY_BLUES :: + * T1_BLEND_FAMILY_OTHER_BLUES :: + * T1_BLEND_FORCE_BOLD :: + */ + typedef enum T1_Blend_Flags_ + { + /* required fields in a FontInfo blend dictionary */ + T1_BLEND_UNDERLINE_POSITION = 0, + T1_BLEND_UNDERLINE_THICKNESS, + T1_BLEND_ITALIC_ANGLE, + + /* required fields in a Private blend dictionary */ + T1_BLEND_BLUE_VALUES, + T1_BLEND_OTHER_BLUES, + T1_BLEND_STANDARD_WIDTH, + T1_BLEND_STANDARD_HEIGHT, + T1_BLEND_STEM_SNAP_WIDTHS, + T1_BLEND_STEM_SNAP_HEIGHTS, + T1_BLEND_BLUE_SCALE, + T1_BLEND_BLUE_SHIFT, + T1_BLEND_FAMILY_BLUES, + T1_BLEND_FAMILY_OTHER_BLUES, + T1_BLEND_FORCE_BOLD, + + T1_BLEND_MAX /* do not remove */ + + } T1_Blend_Flags; + + + /* these constants are deprecated; use the corresponding */ + /* `T1_Blend_Flags` values instead */ +#define t1_blend_underline_position T1_BLEND_UNDERLINE_POSITION +#define t1_blend_underline_thickness T1_BLEND_UNDERLINE_THICKNESS +#define t1_blend_italic_angle T1_BLEND_ITALIC_ANGLE +#define t1_blend_blue_values T1_BLEND_BLUE_VALUES +#define t1_blend_other_blues T1_BLEND_OTHER_BLUES +#define t1_blend_standard_widths T1_BLEND_STANDARD_WIDTH +#define t1_blend_standard_height T1_BLEND_STANDARD_HEIGHT +#define t1_blend_stem_snap_widths T1_BLEND_STEM_SNAP_WIDTHS +#define t1_blend_stem_snap_heights T1_BLEND_STEM_SNAP_HEIGHTS +#define t1_blend_blue_scale T1_BLEND_BLUE_SCALE +#define t1_blend_blue_shift T1_BLEND_BLUE_SHIFT +#define t1_blend_family_blues T1_BLEND_FAMILY_BLUES +#define t1_blend_family_other_blues T1_BLEND_FAMILY_OTHER_BLUES +#define t1_blend_force_bold T1_BLEND_FORCE_BOLD +#define t1_blend_max T1_BLEND_MAX + + /* */ + + + /* maximum number of Multiple Masters designs, as defined in the spec */ +#define T1_MAX_MM_DESIGNS 16 + + /* maximum number of Multiple Masters axes, as defined in the spec */ +#define T1_MAX_MM_AXIS 4 + + /* maximum number of elements in a design map */ +#define T1_MAX_MM_MAP_POINTS 20 + + + /* this structure is used to store the BlendDesignMap entry for an axis */ + typedef struct PS_DesignMap_ + { + FT_Byte num_points; + FT_Long* design_points; + FT_Fixed* blend_points; + + } PS_DesignMapRec, *PS_DesignMap; + + /* backward compatible definition */ + typedef PS_DesignMapRec T1_DesignMap; + + + typedef struct PS_BlendRec_ + { + FT_UInt num_designs; + FT_UInt num_axis; + + FT_String* axis_names[T1_MAX_MM_AXIS]; + FT_Fixed* design_pos[T1_MAX_MM_DESIGNS]; + PS_DesignMapRec design_map[T1_MAX_MM_AXIS]; + + FT_Fixed* weight_vector; + FT_Fixed* default_weight_vector; + + PS_FontInfo font_infos[T1_MAX_MM_DESIGNS + 1]; + PS_Private privates [T1_MAX_MM_DESIGNS + 1]; + + FT_ULong blend_bitflags; + + FT_BBox* bboxes [T1_MAX_MM_DESIGNS + 1]; + + /* since 2.3.0 */ + + /* undocumented, optional: the default design instance; */ + /* corresponds to default_weight_vector -- */ + /* num_default_design_vector == 0 means it is not present */ + /* in the font and associated metrics files */ + FT_UInt default_design_vector[T1_MAX_MM_DESIGNS]; + FT_UInt num_default_design_vector; + + } PS_BlendRec, *PS_Blend; + + + /* backward compatible definition */ + typedef PS_BlendRec T1_Blend; + + + /************************************************************************** + * + * @struct: + * CID_FaceDictRec + * + * @description: + * A structure used to represent data in a CID top-level dictionary. In + * most cases, they are part of the font's '/FDArray' array. Within a + * CID font file, such (internal) subfont dictionaries are enclosed by + * '%ADOBeginFontDict' and '%ADOEndFontDict' comments. + * + * Note that `CID_FaceDictRec` misses a field for the '/FontName' + * keyword, specifying the subfont's name (the top-level font name is + * given by the '/CIDFontName' keyword). This is an oversight, but it + * doesn't limit the 'cid' font module's functionality because FreeType + * neither needs this entry nor gives access to CID subfonts. + */ + typedef struct CID_FaceDictRec_ + { + PS_PrivateRec private_dict; + + FT_UInt len_buildchar; + FT_Fixed forcebold_threshold; + FT_Pos stroke_width; + FT_Fixed expansion_factor; /* this is a duplicate of */ + /* `private_dict->expansion_factor' */ + FT_Byte paint_type; + FT_Byte font_type; + FT_Matrix font_matrix; + FT_Vector font_offset; + + FT_UInt num_subrs; + FT_ULong subrmap_offset; + FT_UInt sd_bytes; + + } CID_FaceDictRec; + + + /************************************************************************** + * + * @struct: + * CID_FaceDict + * + * @description: + * A handle to a @CID_FaceDictRec structure. + */ + typedef struct CID_FaceDictRec_* CID_FaceDict; + + + /************************************************************************** + * + * @struct: + * CID_FontDict + * + * @description: + * This type is equivalent to @CID_FaceDictRec. It is deprecated but + * kept to maintain source compatibility between various versions of + * FreeType. + */ + typedef CID_FaceDictRec CID_FontDict; + + + /************************************************************************** + * + * @struct: + * CID_FaceInfoRec + * + * @description: + * A structure used to represent CID Face information. + */ + typedef struct CID_FaceInfoRec_ + { + FT_String* cid_font_name; + FT_Fixed cid_version; + FT_Int cid_font_type; + + FT_String* registry; + FT_String* ordering; + FT_Int supplement; + + PS_FontInfoRec font_info; + FT_BBox font_bbox; + FT_ULong uid_base; + + FT_Int num_xuid; + FT_ULong xuid[16]; + + FT_ULong cidmap_offset; + FT_UInt fd_bytes; + FT_UInt gd_bytes; + FT_ULong cid_count; + + FT_UInt num_dicts; + CID_FaceDict font_dicts; + + FT_ULong data_offset; + + } CID_FaceInfoRec; + + + /************************************************************************** + * + * @struct: + * CID_FaceInfo + * + * @description: + * A handle to a @CID_FaceInfoRec structure. + */ + typedef struct CID_FaceInfoRec_* CID_FaceInfo; + + + /************************************************************************** + * + * @struct: + * CID_Info + * + * @description: + * This type is equivalent to @CID_FaceInfoRec. It is deprecated but kept + * to maintain source compatibility between various versions of FreeType. + */ + typedef CID_FaceInfoRec CID_Info; + + + /************************************************************************** + * + * @function: + * FT_Has_PS_Glyph_Names + * + * @description: + * Return true if a given face provides reliable PostScript glyph names. + * This is similar to using the @FT_HAS_GLYPH_NAMES macro, except that + * certain fonts (mostly TrueType) contain incorrect glyph name tables. + * + * When this function returns true, the caller is sure that the glyph + * names returned by @FT_Get_Glyph_Name are reliable. + * + * @input: + * face :: + * face handle + * + * @return: + * Boolean. True if glyph names are reliable. + * + */ + FT_EXPORT( FT_Int ) + FT_Has_PS_Glyph_Names( FT_Face face ); + + + /************************************************************************** + * + * @function: + * FT_Get_PS_Font_Info + * + * @description: + * Retrieve the @PS_FontInfoRec structure corresponding to a given + * PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * @output: + * afont_info :: + * A pointer to a @PS_FontInfoRec object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * String pointers within the @PS_FontInfoRec structure are owned by the + * face and don't need to be freed by the caller. Missing entries in the + * font's FontInfo dictionary are represented by `NULL` pointers. + * + * The following font formats support this feature: 'Type~1', 'Type~42', + * 'CFF', 'CID~Type~1'. For other font formats this function returns the + * `FT_Err_Invalid_Argument` error code. + * + * @example: + * ``` + * PS_FontInfoRec font_info; + * + * + * error = FT_Get_PS_Font_Info( face, &font_info ); + * ... + * ``` + * + */ + FT_EXPORT( FT_Error ) + FT_Get_PS_Font_Info( FT_Face face, + PS_FontInfo afont_info ); + + + /************************************************************************** + * + * @function: + * FT_Get_PS_Font_Private + * + * @description: + * Retrieve the @PS_PrivateRec structure corresponding to a given + * PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * @output: + * afont_private :: + * A pointer to a @PS_PrivateRec object. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * The string pointers within the @PS_PrivateRec structure are owned by + * the face and don't need to be freed by the caller. + * + * Only the 'Type~1' font format supports this feature. For other font + * formats this function returns the `FT_Err_Invalid_Argument` error + * code. + * + * @example: + * ``` + * PS_PrivateRec font_private; + * + * + * error = FT_Get_PS_Font_Private( face, &font_private ); + * ... + * ``` + * + */ + FT_EXPORT( FT_Error ) + FT_Get_PS_Font_Private( FT_Face face, + PS_Private afont_private ); + + + /************************************************************************** + * + * @enum: + * T1_EncodingType + * + * @description: + * An enumeration describing the 'Encoding' entry in a Type 1 dictionary. + * + * @values: + * T1_ENCODING_TYPE_NONE :: + * T1_ENCODING_TYPE_ARRAY :: + * T1_ENCODING_TYPE_STANDARD :: + * T1_ENCODING_TYPE_ISOLATIN1 :: + * T1_ENCODING_TYPE_EXPERT :: + * + * @since: + * 2.4.8 + */ + typedef enum T1_EncodingType_ + { + T1_ENCODING_TYPE_NONE = 0, + T1_ENCODING_TYPE_ARRAY, + T1_ENCODING_TYPE_STANDARD, + T1_ENCODING_TYPE_ISOLATIN1, + T1_ENCODING_TYPE_EXPERT + + } T1_EncodingType; + + + /************************************************************************** + * + * @enum: + * PS_Dict_Keys + * + * @description: + * An enumeration used in calls to @FT_Get_PS_Font_Value to identify the + * Type~1 dictionary entry to retrieve. + * + * @values: + * PS_DICT_FONT_TYPE :: + * PS_DICT_FONT_MATRIX :: + * PS_DICT_FONT_BBOX :: + * PS_DICT_PAINT_TYPE :: + * PS_DICT_FONT_NAME :: + * PS_DICT_UNIQUE_ID :: + * PS_DICT_NUM_CHAR_STRINGS :: + * PS_DICT_CHAR_STRING_KEY :: + * PS_DICT_CHAR_STRING :: + * PS_DICT_ENCODING_TYPE :: + * PS_DICT_ENCODING_ENTRY :: + * PS_DICT_NUM_SUBRS :: + * PS_DICT_SUBR :: + * PS_DICT_STD_HW :: + * PS_DICT_STD_VW :: + * PS_DICT_NUM_BLUE_VALUES :: + * PS_DICT_BLUE_VALUE :: + * PS_DICT_BLUE_FUZZ :: + * PS_DICT_NUM_OTHER_BLUES :: + * PS_DICT_OTHER_BLUE :: + * PS_DICT_NUM_FAMILY_BLUES :: + * PS_DICT_FAMILY_BLUE :: + * PS_DICT_NUM_FAMILY_OTHER_BLUES :: + * PS_DICT_FAMILY_OTHER_BLUE :: + * PS_DICT_BLUE_SCALE :: + * PS_DICT_BLUE_SHIFT :: + * PS_DICT_NUM_STEM_SNAP_H :: + * PS_DICT_STEM_SNAP_H :: + * PS_DICT_NUM_STEM_SNAP_V :: + * PS_DICT_STEM_SNAP_V :: + * PS_DICT_FORCE_BOLD :: + * PS_DICT_RND_STEM_UP :: + * PS_DICT_MIN_FEATURE :: + * PS_DICT_LEN_IV :: + * PS_DICT_PASSWORD :: + * PS_DICT_LANGUAGE_GROUP :: + * PS_DICT_VERSION :: + * PS_DICT_NOTICE :: + * PS_DICT_FULL_NAME :: + * PS_DICT_FAMILY_NAME :: + * PS_DICT_WEIGHT :: + * PS_DICT_IS_FIXED_PITCH :: + * PS_DICT_UNDERLINE_POSITION :: + * PS_DICT_UNDERLINE_THICKNESS :: + * PS_DICT_FS_TYPE :: + * PS_DICT_ITALIC_ANGLE :: + * + * @since: + * 2.4.8 + */ + typedef enum PS_Dict_Keys_ + { + /* conventionally in the font dictionary */ + PS_DICT_FONT_TYPE, /* FT_Byte */ + PS_DICT_FONT_MATRIX, /* FT_Fixed */ + PS_DICT_FONT_BBOX, /* FT_Fixed */ + PS_DICT_PAINT_TYPE, /* FT_Byte */ + PS_DICT_FONT_NAME, /* FT_String* */ + PS_DICT_UNIQUE_ID, /* FT_Int */ + PS_DICT_NUM_CHAR_STRINGS, /* FT_Int */ + PS_DICT_CHAR_STRING_KEY, /* FT_String* */ + PS_DICT_CHAR_STRING, /* FT_String* */ + PS_DICT_ENCODING_TYPE, /* T1_EncodingType */ + PS_DICT_ENCODING_ENTRY, /* FT_String* */ + + /* conventionally in the font Private dictionary */ + PS_DICT_NUM_SUBRS, /* FT_Int */ + PS_DICT_SUBR, /* FT_String* */ + PS_DICT_STD_HW, /* FT_UShort */ + PS_DICT_STD_VW, /* FT_UShort */ + PS_DICT_NUM_BLUE_VALUES, /* FT_Byte */ + PS_DICT_BLUE_VALUE, /* FT_Short */ + PS_DICT_BLUE_FUZZ, /* FT_Int */ + PS_DICT_NUM_OTHER_BLUES, /* FT_Byte */ + PS_DICT_OTHER_BLUE, /* FT_Short */ + PS_DICT_NUM_FAMILY_BLUES, /* FT_Byte */ + PS_DICT_FAMILY_BLUE, /* FT_Short */ + PS_DICT_NUM_FAMILY_OTHER_BLUES, /* FT_Byte */ + PS_DICT_FAMILY_OTHER_BLUE, /* FT_Short */ + PS_DICT_BLUE_SCALE, /* FT_Fixed */ + PS_DICT_BLUE_SHIFT, /* FT_Int */ + PS_DICT_NUM_STEM_SNAP_H, /* FT_Byte */ + PS_DICT_STEM_SNAP_H, /* FT_Short */ + PS_DICT_NUM_STEM_SNAP_V, /* FT_Byte */ + PS_DICT_STEM_SNAP_V, /* FT_Short */ + PS_DICT_FORCE_BOLD, /* FT_Bool */ + PS_DICT_RND_STEM_UP, /* FT_Bool */ + PS_DICT_MIN_FEATURE, /* FT_Short */ + PS_DICT_LEN_IV, /* FT_Int */ + PS_DICT_PASSWORD, /* FT_Long */ + PS_DICT_LANGUAGE_GROUP, /* FT_Long */ + + /* conventionally in the font FontInfo dictionary */ + PS_DICT_VERSION, /* FT_String* */ + PS_DICT_NOTICE, /* FT_String* */ + PS_DICT_FULL_NAME, /* FT_String* */ + PS_DICT_FAMILY_NAME, /* FT_String* */ + PS_DICT_WEIGHT, /* FT_String* */ + PS_DICT_IS_FIXED_PITCH, /* FT_Bool */ + PS_DICT_UNDERLINE_POSITION, /* FT_Short */ + PS_DICT_UNDERLINE_THICKNESS, /* FT_UShort */ + PS_DICT_FS_TYPE, /* FT_UShort */ + PS_DICT_ITALIC_ANGLE, /* FT_Long */ + + PS_DICT_MAX = PS_DICT_ITALIC_ANGLE + + } PS_Dict_Keys; + + + /************************************************************************** + * + * @function: + * FT_Get_PS_Font_Value + * + * @description: + * Retrieve the value for the supplied key from a PostScript font. + * + * @input: + * face :: + * PostScript face handle. + * + * key :: + * An enumeration value representing the dictionary key to retrieve. + * + * idx :: + * For array values, this specifies the index to be returned. + * + * value :: + * A pointer to memory into which to write the value. + * + * valen_len :: + * The size, in bytes, of the memory supplied for the value. + * + * @output: + * value :: + * The value matching the above key, if it exists. + * + * @return: + * The amount of memory (in bytes) required to hold the requested value + * (if it exists, -1 otherwise). + * + * @note: + * The values returned are not pointers into the internal structures of + * the face, but are 'fresh' copies, so that the memory containing them + * belongs to the calling application. This also enforces the + * 'read-only' nature of these values, i.e., this function cannot be + * used to manipulate the face. + * + * `value` is a void pointer because the values returned can be of + * various types. + * + * If either `value` is `NULL` or `value_len` is too small, just the + * required memory size for the requested entry is returned. + * + * The `idx` parameter is used, not only to retrieve elements of, for + * example, the FontMatrix or FontBBox, but also to retrieve name keys + * from the CharStrings dictionary, and the charstrings themselves. It + * is ignored for atomic values. + * + * `PS_DICT_BLUE_SCALE` returns a value that is scaled up by 1000. To + * get the value as in the font stream, you need to divide by 65536000.0 + * (to remove the FT_Fixed scale, and the x1000 scale). + * + * IMPORTANT: Only key/value pairs read by the FreeType interpreter can + * be retrieved. So, for example, PostScript procedures such as NP, ND, + * and RD are not available. Arbitrary keys are, obviously, not be + * available either. + * + * If the font's format is not PostScript-based, this function returns + * the `FT_Err_Invalid_Argument` error code. + * + * @since: + * 2.4.8 + * + */ + FT_EXPORT( FT_Long ) + FT_Get_PS_Font_Value( FT_Face face, + PS_Dict_Keys key, + FT_UInt idx, + void *value, + FT_Long value_len ); + + /* */ + +FT_END_HEADER + +#endif /* T1TABLES_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/ttnameid.h b/external/lumin/thirdparty/freetype/include/freetype/ttnameid.h new file mode 100644 index 0000000..37b505a --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/ttnameid.h @@ -0,0 +1,1235 @@ +/**************************************************************************** + * + * ttnameid.h + * + * TrueType name ID definitions (specification only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef TTNAMEID_H_ +#define TTNAMEID_H_ + + + + +FT_BEGIN_HEADER + + + /************************************************************************** + * + * @section: + * truetype_tables + */ + + + /************************************************************************** + * + * Possible values for the 'platform' identifier code in the name records + * of an SFNT 'name' table. + * + */ + + + /************************************************************************** + * + * @enum: + * TT_PLATFORM_XXX + * + * @description: + * A list of valid values for the `platform_id` identifier code in + * @FT_CharMapRec and @FT_SfntName structures. + * + * @values: + * TT_PLATFORM_APPLE_UNICODE :: + * Used by Apple to indicate a Unicode character map and/or name entry. + * See @TT_APPLE_ID_XXX for corresponding `encoding_id` values. Note + * that name entries in this format are coded as big-endian UCS-2 + * character codes _only_. + * + * TT_PLATFORM_MACINTOSH :: + * Used by Apple to indicate a MacOS-specific charmap and/or name + * entry. See @TT_MAC_ID_XXX for corresponding `encoding_id` values. + * Note that most TrueType fonts contain an Apple roman charmap to be + * usable on MacOS systems (even if they contain a Microsoft charmap as + * well). + * + * TT_PLATFORM_ISO :: + * This value was used to specify ISO/IEC 10646 charmaps. It is + * however now deprecated. See @TT_ISO_ID_XXX for a list of + * corresponding `encoding_id` values. + * + * TT_PLATFORM_MICROSOFT :: + * Used by Microsoft to indicate Windows-specific charmaps. See + * @TT_MS_ID_XXX for a list of corresponding `encoding_id` values. + * Note that most fonts contain a Unicode charmap using + * (`TT_PLATFORM_MICROSOFT`, @TT_MS_ID_UNICODE_CS). + * + * TT_PLATFORM_CUSTOM :: + * Used to indicate application-specific charmaps. + * + * TT_PLATFORM_ADOBE :: + * This value isn't part of any font format specification, but is used + * by FreeType to report Adobe-specific charmaps in an @FT_CharMapRec + * structure. See @TT_ADOBE_ID_XXX. + */ + +#define TT_PLATFORM_APPLE_UNICODE 0 +#define TT_PLATFORM_MACINTOSH 1 +#define TT_PLATFORM_ISO 2 /* deprecated */ +#define TT_PLATFORM_MICROSOFT 3 +#define TT_PLATFORM_CUSTOM 4 +#define TT_PLATFORM_ADOBE 7 /* artificial */ + + + /************************************************************************** + * + * @enum: + * TT_APPLE_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for + * @TT_PLATFORM_APPLE_UNICODE charmaps and name entries. + * + * @values: + * TT_APPLE_ID_DEFAULT :: + * Unicode version 1.0. + * + * TT_APPLE_ID_UNICODE_1_1 :: + * Unicode 1.1; specifies Hangul characters starting at U+34xx. + * + * TT_APPLE_ID_ISO_10646 :: + * Deprecated (identical to preceding). + * + * TT_APPLE_ID_UNICODE_2_0 :: + * Unicode 2.0 and beyond (UTF-16 BMP only). + * + * TT_APPLE_ID_UNICODE_32 :: + * Unicode 3.1 and beyond, using UTF-32. + * + * TT_APPLE_ID_VARIANT_SELECTOR :: + * From Adobe, not Apple. Not a normal cmap. Specifies variations on + * a real cmap. + * + * TT_APPLE_ID_FULL_UNICODE :: + * Used for fallback fonts that provide complete Unicode coverage with + * a type~13 cmap. + */ + +#define TT_APPLE_ID_DEFAULT 0 /* Unicode 1.0 */ +#define TT_APPLE_ID_UNICODE_1_1 1 /* specify Hangul at U+34xx */ +#define TT_APPLE_ID_ISO_10646 2 /* deprecated */ +#define TT_APPLE_ID_UNICODE_2_0 3 /* or later */ +#define TT_APPLE_ID_UNICODE_32 4 /* 2.0 or later, full repertoire */ +#define TT_APPLE_ID_VARIANT_SELECTOR 5 /* variation selector data */ +#define TT_APPLE_ID_FULL_UNICODE 6 /* used with type 13 cmaps */ + + + /************************************************************************** + * + * @enum: + * TT_MAC_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for + * @TT_PLATFORM_MACINTOSH charmaps and name entries. + */ + +#define TT_MAC_ID_ROMAN 0 +#define TT_MAC_ID_JAPANESE 1 +#define TT_MAC_ID_TRADITIONAL_CHINESE 2 +#define TT_MAC_ID_KOREAN 3 +#define TT_MAC_ID_ARABIC 4 +#define TT_MAC_ID_HEBREW 5 +#define TT_MAC_ID_GREEK 6 +#define TT_MAC_ID_RUSSIAN 7 +#define TT_MAC_ID_RSYMBOL 8 +#define TT_MAC_ID_DEVANAGARI 9 +#define TT_MAC_ID_GURMUKHI 10 +#define TT_MAC_ID_GUJARATI 11 +#define TT_MAC_ID_ORIYA 12 +#define TT_MAC_ID_BENGALI 13 +#define TT_MAC_ID_TAMIL 14 +#define TT_MAC_ID_TELUGU 15 +#define TT_MAC_ID_KANNADA 16 +#define TT_MAC_ID_MALAYALAM 17 +#define TT_MAC_ID_SINHALESE 18 +#define TT_MAC_ID_BURMESE 19 +#define TT_MAC_ID_KHMER 20 +#define TT_MAC_ID_THAI 21 +#define TT_MAC_ID_LAOTIAN 22 +#define TT_MAC_ID_GEORGIAN 23 +#define TT_MAC_ID_ARMENIAN 24 +#define TT_MAC_ID_MALDIVIAN 25 +#define TT_MAC_ID_SIMPLIFIED_CHINESE 25 +#define TT_MAC_ID_TIBETAN 26 +#define TT_MAC_ID_MONGOLIAN 27 +#define TT_MAC_ID_GEEZ 28 +#define TT_MAC_ID_SLAVIC 29 +#define TT_MAC_ID_VIETNAMESE 30 +#define TT_MAC_ID_SINDHI 31 +#define TT_MAC_ID_UNINTERP 32 + + + /************************************************************************** + * + * @enum: + * TT_ISO_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for @TT_PLATFORM_ISO + * charmaps and name entries. + * + * Their use is now deprecated. + * + * @values: + * TT_ISO_ID_7BIT_ASCII :: + * ASCII. + * TT_ISO_ID_10646 :: + * ISO/10646. + * TT_ISO_ID_8859_1 :: + * Also known as Latin-1. + */ + +#define TT_ISO_ID_7BIT_ASCII 0 +#define TT_ISO_ID_10646 1 +#define TT_ISO_ID_8859_1 2 + + + /************************************************************************** + * + * @enum: + * TT_MS_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for + * @TT_PLATFORM_MICROSOFT charmaps and name entries. + * + * @values: + * TT_MS_ID_SYMBOL_CS :: + * Microsoft symbol encoding. See @FT_ENCODING_MS_SYMBOL. + * + * TT_MS_ID_UNICODE_CS :: + * Microsoft WGL4 charmap, matching Unicode. See @FT_ENCODING_UNICODE. + * + * TT_MS_ID_SJIS :: + * Shift JIS Japanese encoding. See @FT_ENCODING_SJIS. + * + * TT_MS_ID_PRC :: + * Chinese encodings as used in the People's Republic of China (PRC). + * This means the encodings GB~2312 and its supersets GBK and GB~18030. + * See @FT_ENCODING_PRC. + * + * TT_MS_ID_BIG_5 :: + * Traditional Chinese as used in Taiwan and Hong Kong. See + * @FT_ENCODING_BIG5. + * + * TT_MS_ID_WANSUNG :: + * Korean Extended Wansung encoding. See @FT_ENCODING_WANSUNG. + * + * TT_MS_ID_JOHAB :: + * Korean Johab encoding. See @FT_ENCODING_JOHAB. + * + * TT_MS_ID_UCS_4 :: + * UCS-4 or UTF-32 charmaps. This has been added to the OpenType + * specification version 1.4 (mid-2001). + */ + +#define TT_MS_ID_SYMBOL_CS 0 +#define TT_MS_ID_UNICODE_CS 1 +#define TT_MS_ID_SJIS 2 +#define TT_MS_ID_PRC 3 +#define TT_MS_ID_BIG_5 4 +#define TT_MS_ID_WANSUNG 5 +#define TT_MS_ID_JOHAB 6 +#define TT_MS_ID_UCS_4 10 + + /* this value is deprecated */ +#define TT_MS_ID_GB2312 TT_MS_ID_PRC + + + /************************************************************************** + * + * @enum: + * TT_ADOBE_ID_XXX + * + * @description: + * A list of valid values for the `encoding_id` for @TT_PLATFORM_ADOBE + * charmaps. This is a FreeType-specific extension! + * + * @values: + * TT_ADOBE_ID_STANDARD :: + * Adobe standard encoding. + * TT_ADOBE_ID_EXPERT :: + * Adobe expert encoding. + * TT_ADOBE_ID_CUSTOM :: + * Adobe custom encoding. + * TT_ADOBE_ID_LATIN_1 :: + * Adobe Latin~1 encoding. + */ + +#define TT_ADOBE_ID_STANDARD 0 +#define TT_ADOBE_ID_EXPERT 1 +#define TT_ADOBE_ID_CUSTOM 2 +#define TT_ADOBE_ID_LATIN_1 3 + + + /************************************************************************** + * + * @enum: + * TT_MAC_LANGID_XXX + * + * @description: + * Possible values of the language identifier field in the name records + * of the SFNT 'name' table if the 'platform' identifier code is + * @TT_PLATFORM_MACINTOSH. These values are also used as return values + * for function @FT_Get_CMap_Language_ID. + * + * The canonical source for Apple's IDs is + * + * https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6name.html + */ + +#define TT_MAC_LANGID_ENGLISH 0 +#define TT_MAC_LANGID_FRENCH 1 +#define TT_MAC_LANGID_GERMAN 2 +#define TT_MAC_LANGID_ITALIAN 3 +#define TT_MAC_LANGID_DUTCH 4 +#define TT_MAC_LANGID_SWEDISH 5 +#define TT_MAC_LANGID_SPANISH 6 +#define TT_MAC_LANGID_DANISH 7 +#define TT_MAC_LANGID_PORTUGUESE 8 +#define TT_MAC_LANGID_NORWEGIAN 9 +#define TT_MAC_LANGID_HEBREW 10 +#define TT_MAC_LANGID_JAPANESE 11 +#define TT_MAC_LANGID_ARABIC 12 +#define TT_MAC_LANGID_FINNISH 13 +#define TT_MAC_LANGID_GREEK 14 +#define TT_MAC_LANGID_ICELANDIC 15 +#define TT_MAC_LANGID_MALTESE 16 +#define TT_MAC_LANGID_TURKISH 17 +#define TT_MAC_LANGID_CROATIAN 18 +#define TT_MAC_LANGID_CHINESE_TRADITIONAL 19 +#define TT_MAC_LANGID_URDU 20 +#define TT_MAC_LANGID_HINDI 21 +#define TT_MAC_LANGID_THAI 22 +#define TT_MAC_LANGID_KOREAN 23 +#define TT_MAC_LANGID_LITHUANIAN 24 +#define TT_MAC_LANGID_POLISH 25 +#define TT_MAC_LANGID_HUNGARIAN 26 +#define TT_MAC_LANGID_ESTONIAN 27 +#define TT_MAC_LANGID_LETTISH 28 +#define TT_MAC_LANGID_SAAMISK 29 +#define TT_MAC_LANGID_FAEROESE 30 +#define TT_MAC_LANGID_FARSI 31 +#define TT_MAC_LANGID_RUSSIAN 32 +#define TT_MAC_LANGID_CHINESE_SIMPLIFIED 33 +#define TT_MAC_LANGID_FLEMISH 34 +#define TT_MAC_LANGID_IRISH 35 +#define TT_MAC_LANGID_ALBANIAN 36 +#define TT_MAC_LANGID_ROMANIAN 37 +#define TT_MAC_LANGID_CZECH 38 +#define TT_MAC_LANGID_SLOVAK 39 +#define TT_MAC_LANGID_SLOVENIAN 40 +#define TT_MAC_LANGID_YIDDISH 41 +#define TT_MAC_LANGID_SERBIAN 42 +#define TT_MAC_LANGID_MACEDONIAN 43 +#define TT_MAC_LANGID_BULGARIAN 44 +#define TT_MAC_LANGID_UKRAINIAN 45 +#define TT_MAC_LANGID_BYELORUSSIAN 46 +#define TT_MAC_LANGID_UZBEK 47 +#define TT_MAC_LANGID_KAZAKH 48 +#define TT_MAC_LANGID_AZERBAIJANI 49 +#define TT_MAC_LANGID_AZERBAIJANI_CYRILLIC_SCRIPT 49 +#define TT_MAC_LANGID_AZERBAIJANI_ARABIC_SCRIPT 50 +#define TT_MAC_LANGID_ARMENIAN 51 +#define TT_MAC_LANGID_GEORGIAN 52 +#define TT_MAC_LANGID_MOLDAVIAN 53 +#define TT_MAC_LANGID_KIRGHIZ 54 +#define TT_MAC_LANGID_TAJIKI 55 +#define TT_MAC_LANGID_TURKMEN 56 +#define TT_MAC_LANGID_MONGOLIAN 57 +#define TT_MAC_LANGID_MONGOLIAN_MONGOLIAN_SCRIPT 57 +#define TT_MAC_LANGID_MONGOLIAN_CYRILLIC_SCRIPT 58 +#define TT_MAC_LANGID_PASHTO 59 +#define TT_MAC_LANGID_KURDISH 60 +#define TT_MAC_LANGID_KASHMIRI 61 +#define TT_MAC_LANGID_SINDHI 62 +#define TT_MAC_LANGID_TIBETAN 63 +#define TT_MAC_LANGID_NEPALI 64 +#define TT_MAC_LANGID_SANSKRIT 65 +#define TT_MAC_LANGID_MARATHI 66 +#define TT_MAC_LANGID_BENGALI 67 +#define TT_MAC_LANGID_ASSAMESE 68 +#define TT_MAC_LANGID_GUJARATI 69 +#define TT_MAC_LANGID_PUNJABI 70 +#define TT_MAC_LANGID_ORIYA 71 +#define TT_MAC_LANGID_MALAYALAM 72 +#define TT_MAC_LANGID_KANNADA 73 +#define TT_MAC_LANGID_TAMIL 74 +#define TT_MAC_LANGID_TELUGU 75 +#define TT_MAC_LANGID_SINHALESE 76 +#define TT_MAC_LANGID_BURMESE 77 +#define TT_MAC_LANGID_KHMER 78 +#define TT_MAC_LANGID_LAO 79 +#define TT_MAC_LANGID_VIETNAMESE 80 +#define TT_MAC_LANGID_INDONESIAN 81 +#define TT_MAC_LANGID_TAGALOG 82 +#define TT_MAC_LANGID_MALAY_ROMAN_SCRIPT 83 +#define TT_MAC_LANGID_MALAY_ARABIC_SCRIPT 84 +#define TT_MAC_LANGID_AMHARIC 85 +#define TT_MAC_LANGID_TIGRINYA 86 +#define TT_MAC_LANGID_GALLA 87 +#define TT_MAC_LANGID_SOMALI 88 +#define TT_MAC_LANGID_SWAHILI 89 +#define TT_MAC_LANGID_RUANDA 90 +#define TT_MAC_LANGID_RUNDI 91 +#define TT_MAC_LANGID_CHEWA 92 +#define TT_MAC_LANGID_MALAGASY 93 +#define TT_MAC_LANGID_ESPERANTO 94 +#define TT_MAC_LANGID_WELSH 128 +#define TT_MAC_LANGID_BASQUE 129 +#define TT_MAC_LANGID_CATALAN 130 +#define TT_MAC_LANGID_LATIN 131 +#define TT_MAC_LANGID_QUECHUA 132 +#define TT_MAC_LANGID_GUARANI 133 +#define TT_MAC_LANGID_AYMARA 134 +#define TT_MAC_LANGID_TATAR 135 +#define TT_MAC_LANGID_UIGHUR 136 +#define TT_MAC_LANGID_DZONGKHA 137 +#define TT_MAC_LANGID_JAVANESE 138 +#define TT_MAC_LANGID_SUNDANESE 139 + + /* The following codes are new as of 2000-03-10 */ +#define TT_MAC_LANGID_GALICIAN 140 +#define TT_MAC_LANGID_AFRIKAANS 141 +#define TT_MAC_LANGID_BRETON 142 +#define TT_MAC_LANGID_INUKTITUT 143 +#define TT_MAC_LANGID_SCOTTISH_GAELIC 144 +#define TT_MAC_LANGID_MANX_GAELIC 145 +#define TT_MAC_LANGID_IRISH_GAELIC 146 +#define TT_MAC_LANGID_TONGAN 147 +#define TT_MAC_LANGID_GREEK_POLYTONIC 148 +#define TT_MAC_LANGID_GREELANDIC 149 +#define TT_MAC_LANGID_AZERBAIJANI_ROMAN_SCRIPT 150 + + + /************************************************************************** + * + * @enum: + * TT_MS_LANGID_XXX + * + * @description: + * Possible values of the language identifier field in the name records + * of the SFNT 'name' table if the 'platform' identifier code is + * @TT_PLATFORM_MICROSOFT. These values are also used as return values + * for function @FT_Get_CMap_Language_ID. + * + * The canonical source for Microsoft's IDs is + * + * https://docs.microsoft.com/en-us/windows/desktop/Intl/language-identifier-constants-and-strings , + * + * however, we only provide macros for language identifiers present in + * the OpenType specification: Microsoft has abandoned the concept of + * LCIDs (language code identifiers), and format~1 of the 'name' table + * provides a better mechanism for languages not covered here. + * + * More legacy values not listed in the reference can be found in the + * @FT_TRUETYPE_IDS_H header file. + */ + +#define TT_MS_LANGID_ARABIC_SAUDI_ARABIA 0x0401 +#define TT_MS_LANGID_ARABIC_IRAQ 0x0801 +#define TT_MS_LANGID_ARABIC_EGYPT 0x0C01 +#define TT_MS_LANGID_ARABIC_LIBYA 0x1001 +#define TT_MS_LANGID_ARABIC_ALGERIA 0x1401 +#define TT_MS_LANGID_ARABIC_MOROCCO 0x1801 +#define TT_MS_LANGID_ARABIC_TUNISIA 0x1C01 +#define TT_MS_LANGID_ARABIC_OMAN 0x2001 +#define TT_MS_LANGID_ARABIC_YEMEN 0x2401 +#define TT_MS_LANGID_ARABIC_SYRIA 0x2801 +#define TT_MS_LANGID_ARABIC_JORDAN 0x2C01 +#define TT_MS_LANGID_ARABIC_LEBANON 0x3001 +#define TT_MS_LANGID_ARABIC_KUWAIT 0x3401 +#define TT_MS_LANGID_ARABIC_UAE 0x3801 +#define TT_MS_LANGID_ARABIC_BAHRAIN 0x3C01 +#define TT_MS_LANGID_ARABIC_QATAR 0x4001 +#define TT_MS_LANGID_BULGARIAN_BULGARIA 0x0402 +#define TT_MS_LANGID_CATALAN_CATALAN 0x0403 +#define TT_MS_LANGID_CHINESE_TAIWAN 0x0404 +#define TT_MS_LANGID_CHINESE_PRC 0x0804 +#define TT_MS_LANGID_CHINESE_HONG_KONG 0x0C04 +#define TT_MS_LANGID_CHINESE_SINGAPORE 0x1004 +#define TT_MS_LANGID_CHINESE_MACAO 0x1404 +#define TT_MS_LANGID_CZECH_CZECH_REPUBLIC 0x0405 +#define TT_MS_LANGID_DANISH_DENMARK 0x0406 +#define TT_MS_LANGID_GERMAN_GERMANY 0x0407 +#define TT_MS_LANGID_GERMAN_SWITZERLAND 0x0807 +#define TT_MS_LANGID_GERMAN_AUSTRIA 0x0C07 +#define TT_MS_LANGID_GERMAN_LUXEMBOURG 0x1007 +#define TT_MS_LANGID_GERMAN_LIECHTENSTEIN 0x1407 +#define TT_MS_LANGID_GREEK_GREECE 0x0408 +#define TT_MS_LANGID_ENGLISH_UNITED_STATES 0x0409 +#define TT_MS_LANGID_ENGLISH_UNITED_KINGDOM 0x0809 +#define TT_MS_LANGID_ENGLISH_AUSTRALIA 0x0C09 +#define TT_MS_LANGID_ENGLISH_CANADA 0x1009 +#define TT_MS_LANGID_ENGLISH_NEW_ZEALAND 0x1409 +#define TT_MS_LANGID_ENGLISH_IRELAND 0x1809 +#define TT_MS_LANGID_ENGLISH_SOUTH_AFRICA 0x1C09 +#define TT_MS_LANGID_ENGLISH_JAMAICA 0x2009 +#define TT_MS_LANGID_ENGLISH_CARIBBEAN 0x2409 +#define TT_MS_LANGID_ENGLISH_BELIZE 0x2809 +#define TT_MS_LANGID_ENGLISH_TRINIDAD 0x2C09 +#define TT_MS_LANGID_ENGLISH_ZIMBABWE 0x3009 +#define TT_MS_LANGID_ENGLISH_PHILIPPINES 0x3409 +#define TT_MS_LANGID_ENGLISH_INDIA 0x4009 +#define TT_MS_LANGID_ENGLISH_MALAYSIA 0x4409 +#define TT_MS_LANGID_ENGLISH_SINGAPORE 0x4809 +#define TT_MS_LANGID_SPANISH_SPAIN_TRADITIONAL_SORT 0x040A +#define TT_MS_LANGID_SPANISH_MEXICO 0x080A +#define TT_MS_LANGID_SPANISH_SPAIN_MODERN_SORT 0x0C0A +#define TT_MS_LANGID_SPANISH_GUATEMALA 0x100A +#define TT_MS_LANGID_SPANISH_COSTA_RICA 0x140A +#define TT_MS_LANGID_SPANISH_PANAMA 0x180A +#define TT_MS_LANGID_SPANISH_DOMINICAN_REPUBLIC 0x1C0A +#define TT_MS_LANGID_SPANISH_VENEZUELA 0x200A +#define TT_MS_LANGID_SPANISH_COLOMBIA 0x240A +#define TT_MS_LANGID_SPANISH_PERU 0x280A +#define TT_MS_LANGID_SPANISH_ARGENTINA 0x2C0A +#define TT_MS_LANGID_SPANISH_ECUADOR 0x300A +#define TT_MS_LANGID_SPANISH_CHILE 0x340A +#define TT_MS_LANGID_SPANISH_URUGUAY 0x380A +#define TT_MS_LANGID_SPANISH_PARAGUAY 0x3C0A +#define TT_MS_LANGID_SPANISH_BOLIVIA 0x400A +#define TT_MS_LANGID_SPANISH_EL_SALVADOR 0x440A +#define TT_MS_LANGID_SPANISH_HONDURAS 0x480A +#define TT_MS_LANGID_SPANISH_NICARAGUA 0x4C0A +#define TT_MS_LANGID_SPANISH_PUERTO_RICO 0x500A +#define TT_MS_LANGID_SPANISH_UNITED_STATES 0x540A +#define TT_MS_LANGID_FINNISH_FINLAND 0x040B +#define TT_MS_LANGID_FRENCH_FRANCE 0x040C +#define TT_MS_LANGID_FRENCH_BELGIUM 0x080C +#define TT_MS_LANGID_FRENCH_CANADA 0x0C0C +#define TT_MS_LANGID_FRENCH_SWITZERLAND 0x100C +#define TT_MS_LANGID_FRENCH_LUXEMBOURG 0x140C +#define TT_MS_LANGID_FRENCH_MONACO 0x180C +#define TT_MS_LANGID_HEBREW_ISRAEL 0x040D +#define TT_MS_LANGID_HUNGARIAN_HUNGARY 0x040E +#define TT_MS_LANGID_ICELANDIC_ICELAND 0x040F +#define TT_MS_LANGID_ITALIAN_ITALY 0x0410 +#define TT_MS_LANGID_ITALIAN_SWITZERLAND 0x0810 +#define TT_MS_LANGID_JAPANESE_JAPAN 0x0411 +#define TT_MS_LANGID_KOREAN_KOREA 0x0412 +#define TT_MS_LANGID_DUTCH_NETHERLANDS 0x0413 +#define TT_MS_LANGID_DUTCH_BELGIUM 0x0813 +#define TT_MS_LANGID_NORWEGIAN_NORWAY_BOKMAL 0x0414 +#define TT_MS_LANGID_NORWEGIAN_NORWAY_NYNORSK 0x0814 +#define TT_MS_LANGID_POLISH_POLAND 0x0415 +#define TT_MS_LANGID_PORTUGUESE_BRAZIL 0x0416 +#define TT_MS_LANGID_PORTUGUESE_PORTUGAL 0x0816 +#define TT_MS_LANGID_ROMANSH_SWITZERLAND 0x0417 +#define TT_MS_LANGID_ROMANIAN_ROMANIA 0x0418 +#define TT_MS_LANGID_RUSSIAN_RUSSIA 0x0419 +#define TT_MS_LANGID_CROATIAN_CROATIA 0x041A +#define TT_MS_LANGID_SERBIAN_SERBIA_LATIN 0x081A +#define TT_MS_LANGID_SERBIAN_SERBIA_CYRILLIC 0x0C1A +#define TT_MS_LANGID_CROATIAN_BOSNIA_HERZEGOVINA 0x101A +#define TT_MS_LANGID_BOSNIAN_BOSNIA_HERZEGOVINA 0x141A +#define TT_MS_LANGID_SERBIAN_BOSNIA_HERZ_LATIN 0x181A +#define TT_MS_LANGID_SERBIAN_BOSNIA_HERZ_CYRILLIC 0x1C1A +#define TT_MS_LANGID_BOSNIAN_BOSNIA_HERZ_CYRILLIC 0x201A +#define TT_MS_LANGID_SLOVAK_SLOVAKIA 0x041B +#define TT_MS_LANGID_ALBANIAN_ALBANIA 0x041C +#define TT_MS_LANGID_SWEDISH_SWEDEN 0x041D +#define TT_MS_LANGID_SWEDISH_FINLAND 0x081D +#define TT_MS_LANGID_THAI_THAILAND 0x041E +#define TT_MS_LANGID_TURKISH_TURKEY 0x041F +#define TT_MS_LANGID_URDU_PAKISTAN 0x0420 +#define TT_MS_LANGID_INDONESIAN_INDONESIA 0x0421 +#define TT_MS_LANGID_UKRAINIAN_UKRAINE 0x0422 +#define TT_MS_LANGID_BELARUSIAN_BELARUS 0x0423 +#define TT_MS_LANGID_SLOVENIAN_SLOVENIA 0x0424 +#define TT_MS_LANGID_ESTONIAN_ESTONIA 0x0425 +#define TT_MS_LANGID_LATVIAN_LATVIA 0x0426 +#define TT_MS_LANGID_LITHUANIAN_LITHUANIA 0x0427 +#define TT_MS_LANGID_TAJIK_TAJIKISTAN 0x0428 +#define TT_MS_LANGID_VIETNAMESE_VIET_NAM 0x042A +#define TT_MS_LANGID_ARMENIAN_ARMENIA 0x042B +#define TT_MS_LANGID_AZERI_AZERBAIJAN_LATIN 0x042C +#define TT_MS_LANGID_AZERI_AZERBAIJAN_CYRILLIC 0x082C +#define TT_MS_LANGID_BASQUE_BASQUE 0x042D +#define TT_MS_LANGID_UPPER_SORBIAN_GERMANY 0x042E +#define TT_MS_LANGID_LOWER_SORBIAN_GERMANY 0x082E +#define TT_MS_LANGID_MACEDONIAN_MACEDONIA 0x042F +#define TT_MS_LANGID_SETSWANA_SOUTH_AFRICA 0x0432 +#define TT_MS_LANGID_ISIXHOSA_SOUTH_AFRICA 0x0434 +#define TT_MS_LANGID_ISIZULU_SOUTH_AFRICA 0x0435 +#define TT_MS_LANGID_AFRIKAANS_SOUTH_AFRICA 0x0436 +#define TT_MS_LANGID_GEORGIAN_GEORGIA 0x0437 +#define TT_MS_LANGID_FAEROESE_FAEROE_ISLANDS 0x0438 +#define TT_MS_LANGID_HINDI_INDIA 0x0439 +#define TT_MS_LANGID_MALTESE_MALTA 0x043A +#define TT_MS_LANGID_SAMI_NORTHERN_NORWAY 0x043B +#define TT_MS_LANGID_SAMI_NORTHERN_SWEDEN 0x083B +#define TT_MS_LANGID_SAMI_NORTHERN_FINLAND 0x0C3B +#define TT_MS_LANGID_SAMI_LULE_NORWAY 0x103B +#define TT_MS_LANGID_SAMI_LULE_SWEDEN 0x143B +#define TT_MS_LANGID_SAMI_SOUTHERN_NORWAY 0x183B +#define TT_MS_LANGID_SAMI_SOUTHERN_SWEDEN 0x1C3B +#define TT_MS_LANGID_SAMI_SKOLT_FINLAND 0x203B +#define TT_MS_LANGID_SAMI_INARI_FINLAND 0x243B +#define TT_MS_LANGID_IRISH_IRELAND 0x083C +#define TT_MS_LANGID_MALAY_MALAYSIA 0x043E +#define TT_MS_LANGID_MALAY_BRUNEI_DARUSSALAM 0x083E +#define TT_MS_LANGID_KAZAKH_KAZAKHSTAN 0x043F +#define TT_MS_LANGID_KYRGYZ_KYRGYZSTAN /* Cyrillic */ 0x0440 +#define TT_MS_LANGID_KISWAHILI_KENYA 0x0441 +#define TT_MS_LANGID_TURKMEN_TURKMENISTAN 0x0442 +#define TT_MS_LANGID_UZBEK_UZBEKISTAN_LATIN 0x0443 +#define TT_MS_LANGID_UZBEK_UZBEKISTAN_CYRILLIC 0x0843 +#define TT_MS_LANGID_TATAR_RUSSIA 0x0444 +#define TT_MS_LANGID_BENGALI_INDIA 0x0445 +#define TT_MS_LANGID_BENGALI_BANGLADESH 0x0845 +#define TT_MS_LANGID_PUNJABI_INDIA 0x0446 +#define TT_MS_LANGID_GUJARATI_INDIA 0x0447 +#define TT_MS_LANGID_ODIA_INDIA 0x0448 +#define TT_MS_LANGID_TAMIL_INDIA 0x0449 +#define TT_MS_LANGID_TELUGU_INDIA 0x044A +#define TT_MS_LANGID_KANNADA_INDIA 0x044B +#define TT_MS_LANGID_MALAYALAM_INDIA 0x044C +#define TT_MS_LANGID_ASSAMESE_INDIA 0x044D +#define TT_MS_LANGID_MARATHI_INDIA 0x044E +#define TT_MS_LANGID_SANSKRIT_INDIA 0x044F +#define TT_MS_LANGID_MONGOLIAN_MONGOLIA /* Cyrillic */ 0x0450 +#define TT_MS_LANGID_MONGOLIAN_PRC 0x0850 +#define TT_MS_LANGID_TIBETAN_PRC 0x0451 +#define TT_MS_LANGID_WELSH_UNITED_KINGDOM 0x0452 +#define TT_MS_LANGID_KHMER_CAMBODIA 0x0453 +#define TT_MS_LANGID_LAO_LAOS 0x0454 +#define TT_MS_LANGID_GALICIAN_GALICIAN 0x0456 +#define TT_MS_LANGID_KONKANI_INDIA 0x0457 +#define TT_MS_LANGID_SYRIAC_SYRIA 0x045A +#define TT_MS_LANGID_SINHALA_SRI_LANKA 0x045B +#define TT_MS_LANGID_INUKTITUT_CANADA 0x045D +#define TT_MS_LANGID_INUKTITUT_CANADA_LATIN 0x085D +#define TT_MS_LANGID_AMHARIC_ETHIOPIA 0x045E +#define TT_MS_LANGID_TAMAZIGHT_ALGERIA 0x085F +#define TT_MS_LANGID_NEPALI_NEPAL 0x0461 +#define TT_MS_LANGID_FRISIAN_NETHERLANDS 0x0462 +#define TT_MS_LANGID_PASHTO_AFGHANISTAN 0x0463 +#define TT_MS_LANGID_FILIPINO_PHILIPPINES 0x0464 +#define TT_MS_LANGID_DHIVEHI_MALDIVES 0x0465 +#define TT_MS_LANGID_HAUSA_NIGERIA 0x0468 +#define TT_MS_LANGID_YORUBA_NIGERIA 0x046A +#define TT_MS_LANGID_QUECHUA_BOLIVIA 0x046B +#define TT_MS_LANGID_QUECHUA_ECUADOR 0x086B +#define TT_MS_LANGID_QUECHUA_PERU 0x0C6B +#define TT_MS_LANGID_SESOTHO_SA_LEBOA_SOUTH_AFRICA 0x046C +#define TT_MS_LANGID_BASHKIR_RUSSIA 0x046D +#define TT_MS_LANGID_LUXEMBOURGISH_LUXEMBOURG 0x046E +#define TT_MS_LANGID_GREENLANDIC_GREENLAND 0x046F +#define TT_MS_LANGID_IGBO_NIGERIA 0x0470 +#define TT_MS_LANGID_YI_PRC 0x0478 +#define TT_MS_LANGID_MAPUDUNGUN_CHILE 0x047A +#define TT_MS_LANGID_MOHAWK_MOHAWK 0x047C +#define TT_MS_LANGID_BRETON_FRANCE 0x047E +#define TT_MS_LANGID_UIGHUR_PRC 0x0480 +#define TT_MS_LANGID_MAORI_NEW_ZEALAND 0x0481 +#define TT_MS_LANGID_OCCITAN_FRANCE 0x0482 +#define TT_MS_LANGID_CORSICAN_FRANCE 0x0483 +#define TT_MS_LANGID_ALSATIAN_FRANCE 0x0484 +#define TT_MS_LANGID_YAKUT_RUSSIA 0x0485 +#define TT_MS_LANGID_KICHE_GUATEMALA 0x0486 +#define TT_MS_LANGID_KINYARWANDA_RWANDA 0x0487 +#define TT_MS_LANGID_WOLOF_SENEGAL 0x0488 +#define TT_MS_LANGID_DARI_AFGHANISTAN 0x048C + + /* */ + + + /* legacy macro definitions not present in OpenType 1.8.1 */ +#define TT_MS_LANGID_ARABIC_GENERAL 0x0001 +#define TT_MS_LANGID_CATALAN_SPAIN \ + TT_MS_LANGID_CATALAN_CATALAN +#define TT_MS_LANGID_CHINESE_GENERAL 0x0004 +#define TT_MS_LANGID_CHINESE_MACAU \ + TT_MS_LANGID_CHINESE_MACAO +#define TT_MS_LANGID_GERMAN_LIECHTENSTEI \ + TT_MS_LANGID_GERMAN_LIECHTENSTEIN +#define TT_MS_LANGID_ENGLISH_GENERAL 0x0009 +#define TT_MS_LANGID_ENGLISH_INDONESIA 0x3809 +#define TT_MS_LANGID_ENGLISH_HONG_KONG 0x3C09 +#define TT_MS_LANGID_SPANISH_SPAIN_INTERNATIONAL_SORT \ + TT_MS_LANGID_SPANISH_SPAIN_MODERN_SORT +#define TT_MS_LANGID_SPANISH_LATIN_AMERICA 0xE40AU +#define TT_MS_LANGID_FRENCH_WEST_INDIES 0x1C0C +#define TT_MS_LANGID_FRENCH_REUNION 0x200C +#define TT_MS_LANGID_FRENCH_CONGO 0x240C + /* which was formerly: */ +#define TT_MS_LANGID_FRENCH_ZAIRE \ + TT_MS_LANGID_FRENCH_CONGO +#define TT_MS_LANGID_FRENCH_SENEGAL 0x280C +#define TT_MS_LANGID_FRENCH_CAMEROON 0x2C0C +#define TT_MS_LANGID_FRENCH_COTE_D_IVOIRE 0x300C +#define TT_MS_LANGID_FRENCH_MALI 0x340C +#define TT_MS_LANGID_FRENCH_MOROCCO 0x380C +#define TT_MS_LANGID_FRENCH_HAITI 0x3C0C +#define TT_MS_LANGID_FRENCH_NORTH_AFRICA 0xE40CU +#define TT_MS_LANGID_KOREAN_EXTENDED_WANSUNG_KOREA \ + TT_MS_LANGID_KOREAN_KOREA +#define TT_MS_LANGID_KOREAN_JOHAB_KOREA 0x0812 +#define TT_MS_LANGID_RHAETO_ROMANIC_SWITZERLAND \ + TT_MS_LANGID_ROMANSH_SWITZERLAND +#define TT_MS_LANGID_MOLDAVIAN_MOLDAVIA 0x0818 +#define TT_MS_LANGID_RUSSIAN_MOLDAVIA 0x0819 +#define TT_MS_LANGID_URDU_INDIA 0x0820 +#define TT_MS_LANGID_CLASSIC_LITHUANIAN_LITHUANIA 0x0827 +#define TT_MS_LANGID_SLOVENE_SLOVENIA \ + TT_MS_LANGID_SLOVENIAN_SLOVENIA +#define TT_MS_LANGID_FARSI_IRAN 0x0429 +#define TT_MS_LANGID_BASQUE_SPAIN \ + TT_MS_LANGID_BASQUE_BASQUE +#define TT_MS_LANGID_SORBIAN_GERMANY \ + TT_MS_LANGID_UPPER_SORBIAN_GERMANY +#define TT_MS_LANGID_SUTU_SOUTH_AFRICA 0x0430 +#define TT_MS_LANGID_TSONGA_SOUTH_AFRICA 0x0431 +#define TT_MS_LANGID_TSWANA_SOUTH_AFRICA \ + TT_MS_LANGID_SETSWANA_SOUTH_AFRICA +#define TT_MS_LANGID_VENDA_SOUTH_AFRICA 0x0433 +#define TT_MS_LANGID_XHOSA_SOUTH_AFRICA \ + TT_MS_LANGID_ISIXHOSA_SOUTH_AFRICA +#define TT_MS_LANGID_ZULU_SOUTH_AFRICA \ + TT_MS_LANGID_ISIZULU_SOUTH_AFRICA +#define TT_MS_LANGID_SAAMI_LAPONIA 0x043B + /* the next two values are incorrectly inverted */ +#define TT_MS_LANGID_IRISH_GAELIC_IRELAND 0x043C +#define TT_MS_LANGID_SCOTTISH_GAELIC_UNITED_KINGDOM 0x083C +#define TT_MS_LANGID_YIDDISH_GERMANY 0x043D +#define TT_MS_LANGID_KAZAK_KAZAKSTAN \ + TT_MS_LANGID_KAZAKH_KAZAKHSTAN +#define TT_MS_LANGID_KIRGHIZ_KIRGHIZ_REPUBLIC \ + TT_MS_LANGID_KYRGYZ_KYRGYZSTAN +#define TT_MS_LANGID_KIRGHIZ_KIRGHIZSTAN \ + TT_MS_LANGID_KYRGYZ_KYRGYZSTAN +#define TT_MS_LANGID_SWAHILI_KENYA \ + TT_MS_LANGID_KISWAHILI_KENYA +#define TT_MS_LANGID_TATAR_TATARSTAN \ + TT_MS_LANGID_TATAR_RUSSIA +#define TT_MS_LANGID_PUNJABI_ARABIC_PAKISTAN 0x0846 +#define TT_MS_LANGID_ORIYA_INDIA \ + TT_MS_LANGID_ODIA_INDIA +#define TT_MS_LANGID_MONGOLIAN_MONGOLIA_MONGOLIAN \ + TT_MS_LANGID_MONGOLIAN_PRC +#define TT_MS_LANGID_TIBETAN_CHINA \ + TT_MS_LANGID_TIBETAN_PRC +#define TT_MS_LANGID_DZONGHKA_BHUTAN 0x0851 +#define TT_MS_LANGID_TIBETAN_BHUTAN \ + TT_MS_LANGID_DZONGHKA_BHUTAN +#define TT_MS_LANGID_WELSH_WALES \ + TT_MS_LANGID_WELSH_UNITED_KINGDOM +#define TT_MS_LANGID_BURMESE_MYANMAR 0x0455 +#define TT_MS_LANGID_GALICIAN_SPAIN \ + TT_MS_LANGID_GALICIAN_GALICIAN +#define TT_MS_LANGID_MANIPURI_INDIA /* Bengali */ 0x0458 +#define TT_MS_LANGID_SINDHI_INDIA /* Arabic */ 0x0459 +#define TT_MS_LANGID_SINDHI_PAKISTAN 0x0859 +#define TT_MS_LANGID_SINHALESE_SRI_LANKA \ + TT_MS_LANGID_SINHALA_SRI_LANKA +#define TT_MS_LANGID_CHEROKEE_UNITED_STATES 0x045C +#define TT_MS_LANGID_TAMAZIGHT_MOROCCO /* Arabic */ 0x045F +#define TT_MS_LANGID_TAMAZIGHT_MOROCCO_LATIN \ + TT_MS_LANGID_TAMAZIGHT_ALGERIA +#define TT_MS_LANGID_KASHMIRI_PAKISTAN /* Arabic */ 0x0460 +#define TT_MS_LANGID_KASHMIRI_SASIA 0x0860 +#define TT_MS_LANGID_KASHMIRI_INDIA \ + TT_MS_LANGID_KASHMIRI_SASIA +#define TT_MS_LANGID_NEPALI_INDIA 0x0861 +#define TT_MS_LANGID_DIVEHI_MALDIVES \ + TT_MS_LANGID_DHIVEHI_MALDIVES +#define TT_MS_LANGID_EDO_NIGERIA 0x0466 +#define TT_MS_LANGID_FULFULDE_NIGERIA 0x0467 +#define TT_MS_LANGID_IBIBIO_NIGERIA 0x0469 +#define TT_MS_LANGID_SEPEDI_SOUTH_AFRICA \ + TT_MS_LANGID_SESOTHO_SA_LEBOA_SOUTH_AFRICA +#define TT_MS_LANGID_SOTHO_SOUTHERN_SOUTH_AFRICA \ + TT_MS_LANGID_SESOTHO_SA_LEBOA_SOUTH_AFRICA +#define TT_MS_LANGID_KANURI_NIGERIA 0x0471 +#define TT_MS_LANGID_OROMO_ETHIOPIA 0x0472 +#define TT_MS_LANGID_TIGRIGNA_ETHIOPIA 0x0473 +#define TT_MS_LANGID_TIGRIGNA_ERYTHREA 0x0873 +#define TT_MS_LANGID_TIGRIGNA_ERYTREA \ + TT_MS_LANGID_TIGRIGNA_ERYTHREA +#define TT_MS_LANGID_GUARANI_PARAGUAY 0x0474 +#define TT_MS_LANGID_HAWAIIAN_UNITED_STATES 0x0475 +#define TT_MS_LANGID_LATIN 0x0476 +#define TT_MS_LANGID_SOMALI_SOMALIA 0x0477 +#define TT_MS_LANGID_YI_CHINA \ + TT_MS_LANGID_YI_PRC +#define TT_MS_LANGID_PAPIAMENTU_NETHERLANDS_ANTILLES 0x0479 +#define TT_MS_LANGID_UIGHUR_CHINA \ + TT_MS_LANGID_UIGHUR_PRC + + + /************************************************************************** + * + * @enum: + * TT_NAME_ID_XXX + * + * @description: + * Possible values of the 'name' identifier field in the name records of + * an SFNT 'name' table. These values are platform independent. + */ + +#define TT_NAME_ID_COPYRIGHT 0 +#define TT_NAME_ID_FONT_FAMILY 1 +#define TT_NAME_ID_FONT_SUBFAMILY 2 +#define TT_NAME_ID_UNIQUE_ID 3 +#define TT_NAME_ID_FULL_NAME 4 +#define TT_NAME_ID_VERSION_STRING 5 +#define TT_NAME_ID_PS_NAME 6 +#define TT_NAME_ID_TRADEMARK 7 + + /* the following values are from the OpenType spec */ +#define TT_NAME_ID_MANUFACTURER 8 +#define TT_NAME_ID_DESIGNER 9 +#define TT_NAME_ID_DESCRIPTION 10 +#define TT_NAME_ID_VENDOR_URL 11 +#define TT_NAME_ID_DESIGNER_URL 12 +#define TT_NAME_ID_LICENSE 13 +#define TT_NAME_ID_LICENSE_URL 14 + /* number 15 is reserved */ +#define TT_NAME_ID_TYPOGRAPHIC_FAMILY 16 +#define TT_NAME_ID_TYPOGRAPHIC_SUBFAMILY 17 +#define TT_NAME_ID_MAC_FULL_NAME 18 + + /* The following code is new as of 2000-01-21 */ +#define TT_NAME_ID_SAMPLE_TEXT 19 + + /* This is new in OpenType 1.3 */ +#define TT_NAME_ID_CID_FINDFONT_NAME 20 + + /* This is new in OpenType 1.5 */ +#define TT_NAME_ID_WWS_FAMILY 21 +#define TT_NAME_ID_WWS_SUBFAMILY 22 + + /* This is new in OpenType 1.7 */ +#define TT_NAME_ID_LIGHT_BACKGROUND 23 +#define TT_NAME_ID_DARK_BACKGROUND 24 + + /* This is new in OpenType 1.8 */ +#define TT_NAME_ID_VARIATIONS_PREFIX 25 + + /* these two values are deprecated */ +#define TT_NAME_ID_PREFERRED_FAMILY TT_NAME_ID_TYPOGRAPHIC_FAMILY +#define TT_NAME_ID_PREFERRED_SUBFAMILY TT_NAME_ID_TYPOGRAPHIC_SUBFAMILY + + + /************************************************************************** + * + * @enum: + * TT_UCR_XXX + * + * @description: + * Possible bit mask values for the `ulUnicodeRangeX` fields in an SFNT + * 'OS/2' table. + */ + + /* ulUnicodeRange1 */ + /* --------------- */ + + /* Bit 0 Basic Latin */ +#define TT_UCR_BASIC_LATIN (1L << 0) /* U+0020-U+007E */ + /* Bit 1 C1 Controls and Latin-1 Supplement */ +#define TT_UCR_LATIN1_SUPPLEMENT (1L << 1) /* U+0080-U+00FF */ + /* Bit 2 Latin Extended-A */ +#define TT_UCR_LATIN_EXTENDED_A (1L << 2) /* U+0100-U+017F */ + /* Bit 3 Latin Extended-B */ +#define TT_UCR_LATIN_EXTENDED_B (1L << 3) /* U+0180-U+024F */ + /* Bit 4 IPA Extensions */ + /* Phonetic Extensions */ + /* Phonetic Extensions Supplement */ +#define TT_UCR_IPA_EXTENSIONS (1L << 4) /* U+0250-U+02AF */ + /* U+1D00-U+1D7F */ + /* U+1D80-U+1DBF */ + /* Bit 5 Spacing Modifier Letters */ + /* Modifier Tone Letters */ +#define TT_UCR_SPACING_MODIFIER (1L << 5) /* U+02B0-U+02FF */ + /* U+A700-U+A71F */ + /* Bit 6 Combining Diacritical Marks */ + /* Combining Diacritical Marks Supplement */ +#define TT_UCR_COMBINING_DIACRITICAL_MARKS (1L << 6) /* U+0300-U+036F */ + /* U+1DC0-U+1DFF */ + /* Bit 7 Greek and Coptic */ +#define TT_UCR_GREEK (1L << 7) /* U+0370-U+03FF */ + /* Bit 8 Coptic */ +#define TT_UCR_COPTIC (1L << 8) /* U+2C80-U+2CFF */ + /* Bit 9 Cyrillic */ + /* Cyrillic Supplement */ + /* Cyrillic Extended-A */ + /* Cyrillic Extended-B */ +#define TT_UCR_CYRILLIC (1L << 9) /* U+0400-U+04FF */ + /* U+0500-U+052F */ + /* U+2DE0-U+2DFF */ + /* U+A640-U+A69F */ + /* Bit 10 Armenian */ +#define TT_UCR_ARMENIAN (1L << 10) /* U+0530-U+058F */ + /* Bit 11 Hebrew */ +#define TT_UCR_HEBREW (1L << 11) /* U+0590-U+05FF */ + /* Bit 12 Vai */ +#define TT_UCR_VAI (1L << 12) /* U+A500-U+A63F */ + /* Bit 13 Arabic */ + /* Arabic Supplement */ +#define TT_UCR_ARABIC (1L << 13) /* U+0600-U+06FF */ + /* U+0750-U+077F */ + /* Bit 14 NKo */ +#define TT_UCR_NKO (1L << 14) /* U+07C0-U+07FF */ + /* Bit 15 Devanagari */ +#define TT_UCR_DEVANAGARI (1L << 15) /* U+0900-U+097F */ + /* Bit 16 Bengali */ +#define TT_UCR_BENGALI (1L << 16) /* U+0980-U+09FF */ + /* Bit 17 Gurmukhi */ +#define TT_UCR_GURMUKHI (1L << 17) /* U+0A00-U+0A7F */ + /* Bit 18 Gujarati */ +#define TT_UCR_GUJARATI (1L << 18) /* U+0A80-U+0AFF */ + /* Bit 19 Oriya */ +#define TT_UCR_ORIYA (1L << 19) /* U+0B00-U+0B7F */ + /* Bit 20 Tamil */ +#define TT_UCR_TAMIL (1L << 20) /* U+0B80-U+0BFF */ + /* Bit 21 Telugu */ +#define TT_UCR_TELUGU (1L << 21) /* U+0C00-U+0C7F */ + /* Bit 22 Kannada */ +#define TT_UCR_KANNADA (1L << 22) /* U+0C80-U+0CFF */ + /* Bit 23 Malayalam */ +#define TT_UCR_MALAYALAM (1L << 23) /* U+0D00-U+0D7F */ + /* Bit 24 Thai */ +#define TT_UCR_THAI (1L << 24) /* U+0E00-U+0E7F */ + /* Bit 25 Lao */ +#define TT_UCR_LAO (1L << 25) /* U+0E80-U+0EFF */ + /* Bit 26 Georgian */ + /* Georgian Supplement */ +#define TT_UCR_GEORGIAN (1L << 26) /* U+10A0-U+10FF */ + /* U+2D00-U+2D2F */ + /* Bit 27 Balinese */ +#define TT_UCR_BALINESE (1L << 27) /* U+1B00-U+1B7F */ + /* Bit 28 Hangul Jamo */ +#define TT_UCR_HANGUL_JAMO (1L << 28) /* U+1100-U+11FF */ + /* Bit 29 Latin Extended Additional */ + /* Latin Extended-C */ + /* Latin Extended-D */ +#define TT_UCR_LATIN_EXTENDED_ADDITIONAL (1L << 29) /* U+1E00-U+1EFF */ + /* U+2C60-U+2C7F */ + /* U+A720-U+A7FF */ + /* Bit 30 Greek Extended */ +#define TT_UCR_GREEK_EXTENDED (1L << 30) /* U+1F00-U+1FFF */ + /* Bit 31 General Punctuation */ + /* Supplemental Punctuation */ +#define TT_UCR_GENERAL_PUNCTUATION (1L << 31) /* U+2000-U+206F */ + /* U+2E00-U+2E7F */ + + /* ulUnicodeRange2 */ + /* --------------- */ + + /* Bit 32 Superscripts And Subscripts */ +#define TT_UCR_SUPERSCRIPTS_SUBSCRIPTS (1L << 0) /* U+2070-U+209F */ + /* Bit 33 Currency Symbols */ +#define TT_UCR_CURRENCY_SYMBOLS (1L << 1) /* U+20A0-U+20CF */ + /* Bit 34 Combining Diacritical Marks For Symbols */ +#define TT_UCR_COMBINING_DIACRITICAL_MARKS_SYMB \ + (1L << 2) /* U+20D0-U+20FF */ + /* Bit 35 Letterlike Symbols */ +#define TT_UCR_LETTERLIKE_SYMBOLS (1L << 3) /* U+2100-U+214F */ + /* Bit 36 Number Forms */ +#define TT_UCR_NUMBER_FORMS (1L << 4) /* U+2150-U+218F */ + /* Bit 37 Arrows */ + /* Supplemental Arrows-A */ + /* Supplemental Arrows-B */ + /* Miscellaneous Symbols and Arrows */ +#define TT_UCR_ARROWS (1L << 5) /* U+2190-U+21FF */ + /* U+27F0-U+27FF */ + /* U+2900-U+297F */ + /* U+2B00-U+2BFF */ + /* Bit 38 Mathematical Operators */ + /* Supplemental Mathematical Operators */ + /* Miscellaneous Mathematical Symbols-A */ + /* Miscellaneous Mathematical Symbols-B */ +#define TT_UCR_MATHEMATICAL_OPERATORS (1L << 6) /* U+2200-U+22FF */ + /* U+2A00-U+2AFF */ + /* U+27C0-U+27EF */ + /* U+2980-U+29FF */ + /* Bit 39 Miscellaneous Technical */ +#define TT_UCR_MISCELLANEOUS_TECHNICAL (1L << 7) /* U+2300-U+23FF */ + /* Bit 40 Control Pictures */ +#define TT_UCR_CONTROL_PICTURES (1L << 8) /* U+2400-U+243F */ + /* Bit 41 Optical Character Recognition */ +#define TT_UCR_OCR (1L << 9) /* U+2440-U+245F */ + /* Bit 42 Enclosed Alphanumerics */ +#define TT_UCR_ENCLOSED_ALPHANUMERICS (1L << 10) /* U+2460-U+24FF */ + /* Bit 43 Box Drawing */ +#define TT_UCR_BOX_DRAWING (1L << 11) /* U+2500-U+257F */ + /* Bit 44 Block Elements */ +#define TT_UCR_BLOCK_ELEMENTS (1L << 12) /* U+2580-U+259F */ + /* Bit 45 Geometric Shapes */ +#define TT_UCR_GEOMETRIC_SHAPES (1L << 13) /* U+25A0-U+25FF */ + /* Bit 46 Miscellaneous Symbols */ +#define TT_UCR_MISCELLANEOUS_SYMBOLS (1L << 14) /* U+2600-U+26FF */ + /* Bit 47 Dingbats */ +#define TT_UCR_DINGBATS (1L << 15) /* U+2700-U+27BF */ + /* Bit 48 CJK Symbols and Punctuation */ +#define TT_UCR_CJK_SYMBOLS (1L << 16) /* U+3000-U+303F */ + /* Bit 49 Hiragana */ +#define TT_UCR_HIRAGANA (1L << 17) /* U+3040-U+309F */ + /* Bit 50 Katakana */ + /* Katakana Phonetic Extensions */ +#define TT_UCR_KATAKANA (1L << 18) /* U+30A0-U+30FF */ + /* U+31F0-U+31FF */ + /* Bit 51 Bopomofo */ + /* Bopomofo Extended */ +#define TT_UCR_BOPOMOFO (1L << 19) /* U+3100-U+312F */ + /* U+31A0-U+31BF */ + /* Bit 52 Hangul Compatibility Jamo */ +#define TT_UCR_HANGUL_COMPATIBILITY_JAMO (1L << 20) /* U+3130-U+318F */ + /* Bit 53 Phags-Pa */ +#define TT_UCR_CJK_MISC (1L << 21) /* U+A840-U+A87F */ +#define TT_UCR_KANBUN TT_UCR_CJK_MISC /* deprecated */ +#define TT_UCR_PHAGSPA + /* Bit 54 Enclosed CJK Letters and Months */ +#define TT_UCR_ENCLOSED_CJK_LETTERS_MONTHS (1L << 22) /* U+3200-U+32FF */ + /* Bit 55 CJK Compatibility */ +#define TT_UCR_CJK_COMPATIBILITY (1L << 23) /* U+3300-U+33FF */ + /* Bit 56 Hangul Syllables */ +#define TT_UCR_HANGUL (1L << 24) /* U+AC00-U+D7A3 */ + /* Bit 57 High Surrogates */ + /* High Private Use Surrogates */ + /* Low Surrogates */ + + /* According to OpenType specs v.1.3+, */ + /* setting bit 57 implies that there is */ + /* at least one codepoint beyond the */ + /* Basic Multilingual Plane that is */ + /* supported by this font. So it really */ + /* means >= U+10000. */ +#define TT_UCR_SURROGATES (1L << 25) /* U+D800-U+DB7F */ + /* U+DB80-U+DBFF */ + /* U+DC00-U+DFFF */ +#define TT_UCR_NON_PLANE_0 TT_UCR_SURROGATES + /* Bit 58 Phoenician */ +#define TT_UCR_PHOENICIAN (1L << 26) /*U+10900-U+1091F*/ + /* Bit 59 CJK Unified Ideographs */ + /* CJK Radicals Supplement */ + /* Kangxi Radicals */ + /* Ideographic Description Characters */ + /* CJK Unified Ideographs Extension A */ + /* CJK Unified Ideographs Extension B */ + /* Kanbun */ +#define TT_UCR_CJK_UNIFIED_IDEOGRAPHS (1L << 27) /* U+4E00-U+9FFF */ + /* U+2E80-U+2EFF */ + /* U+2F00-U+2FDF */ + /* U+2FF0-U+2FFF */ + /* U+3400-U+4DB5 */ + /*U+20000-U+2A6DF*/ + /* U+3190-U+319F */ + /* Bit 60 Private Use */ +#define TT_UCR_PRIVATE_USE (1L << 28) /* U+E000-U+F8FF */ + /* Bit 61 CJK Strokes */ + /* CJK Compatibility Ideographs */ + /* CJK Compatibility Ideographs Supplement */ +#define TT_UCR_CJK_COMPATIBILITY_IDEOGRAPHS (1L << 29) /* U+31C0-U+31EF */ + /* U+F900-U+FAFF */ + /*U+2F800-U+2FA1F*/ + /* Bit 62 Alphabetic Presentation Forms */ +#define TT_UCR_ALPHABETIC_PRESENTATION_FORMS (1L << 30) /* U+FB00-U+FB4F */ + /* Bit 63 Arabic Presentation Forms-A */ +#define TT_UCR_ARABIC_PRESENTATION_FORMS_A (1L << 31) /* U+FB50-U+FDFF */ + + /* ulUnicodeRange3 */ + /* --------------- */ + + /* Bit 64 Combining Half Marks */ +#define TT_UCR_COMBINING_HALF_MARKS (1L << 0) /* U+FE20-U+FE2F */ + /* Bit 65 Vertical forms */ + /* CJK Compatibility Forms */ +#define TT_UCR_CJK_COMPATIBILITY_FORMS (1L << 1) /* U+FE10-U+FE1F */ + /* U+FE30-U+FE4F */ + /* Bit 66 Small Form Variants */ +#define TT_UCR_SMALL_FORM_VARIANTS (1L << 2) /* U+FE50-U+FE6F */ + /* Bit 67 Arabic Presentation Forms-B */ +#define TT_UCR_ARABIC_PRESENTATION_FORMS_B (1L << 3) /* U+FE70-U+FEFE */ + /* Bit 68 Halfwidth and Fullwidth Forms */ +#define TT_UCR_HALFWIDTH_FULLWIDTH_FORMS (1L << 4) /* U+FF00-U+FFEF */ + /* Bit 69 Specials */ +#define TT_UCR_SPECIALS (1L << 5) /* U+FFF0-U+FFFD */ + /* Bit 70 Tibetan */ +#define TT_UCR_TIBETAN (1L << 6) /* U+0F00-U+0FFF */ + /* Bit 71 Syriac */ +#define TT_UCR_SYRIAC (1L << 7) /* U+0700-U+074F */ + /* Bit 72 Thaana */ +#define TT_UCR_THAANA (1L << 8) /* U+0780-U+07BF */ + /* Bit 73 Sinhala */ +#define TT_UCR_SINHALA (1L << 9) /* U+0D80-U+0DFF */ + /* Bit 74 Myanmar */ +#define TT_UCR_MYANMAR (1L << 10) /* U+1000-U+109F */ + /* Bit 75 Ethiopic */ + /* Ethiopic Supplement */ + /* Ethiopic Extended */ +#define TT_UCR_ETHIOPIC (1L << 11) /* U+1200-U+137F */ + /* U+1380-U+139F */ + /* U+2D80-U+2DDF */ + /* Bit 76 Cherokee */ +#define TT_UCR_CHEROKEE (1L << 12) /* U+13A0-U+13FF */ + /* Bit 77 Unified Canadian Aboriginal Syllabics */ +#define TT_UCR_CANADIAN_ABORIGINAL_SYLLABICS (1L << 13) /* U+1400-U+167F */ + /* Bit 78 Ogham */ +#define TT_UCR_OGHAM (1L << 14) /* U+1680-U+169F */ + /* Bit 79 Runic */ +#define TT_UCR_RUNIC (1L << 15) /* U+16A0-U+16FF */ + /* Bit 80 Khmer */ + /* Khmer Symbols */ +#define TT_UCR_KHMER (1L << 16) /* U+1780-U+17FF */ + /* U+19E0-U+19FF */ + /* Bit 81 Mongolian */ +#define TT_UCR_MONGOLIAN (1L << 17) /* U+1800-U+18AF */ + /* Bit 82 Braille Patterns */ +#define TT_UCR_BRAILLE (1L << 18) /* U+2800-U+28FF */ + /* Bit 83 Yi Syllables */ + /* Yi Radicals */ +#define TT_UCR_YI (1L << 19) /* U+A000-U+A48F */ + /* U+A490-U+A4CF */ + /* Bit 84 Tagalog */ + /* Hanunoo */ + /* Buhid */ + /* Tagbanwa */ +#define TT_UCR_PHILIPPINE (1L << 20) /* U+1700-U+171F */ + /* U+1720-U+173F */ + /* U+1740-U+175F */ + /* U+1760-U+177F */ + /* Bit 85 Old Italic */ +#define TT_UCR_OLD_ITALIC (1L << 21) /*U+10300-U+1032F*/ + /* Bit 86 Gothic */ +#define TT_UCR_GOTHIC (1L << 22) /*U+10330-U+1034F*/ + /* Bit 87 Deseret */ +#define TT_UCR_DESERET (1L << 23) /*U+10400-U+1044F*/ + /* Bit 88 Byzantine Musical Symbols */ + /* Musical Symbols */ + /* Ancient Greek Musical Notation */ +#define TT_UCR_MUSICAL_SYMBOLS (1L << 24) /*U+1D000-U+1D0FF*/ + /*U+1D100-U+1D1FF*/ + /*U+1D200-U+1D24F*/ + /* Bit 89 Mathematical Alphanumeric Symbols */ +#define TT_UCR_MATH_ALPHANUMERIC_SYMBOLS (1L << 25) /*U+1D400-U+1D7FF*/ + /* Bit 90 Private Use (plane 15) */ + /* Private Use (plane 16) */ +#define TT_UCR_PRIVATE_USE_SUPPLEMENTARY (1L << 26) /*U+F0000-U+FFFFD*/ + /*U+100000-U+10FFFD*/ + /* Bit 91 Variation Selectors */ + /* Variation Selectors Supplement */ +#define TT_UCR_VARIATION_SELECTORS (1L << 27) /* U+FE00-U+FE0F */ + /*U+E0100-U+E01EF*/ + /* Bit 92 Tags */ +#define TT_UCR_TAGS (1L << 28) /*U+E0000-U+E007F*/ + /* Bit 93 Limbu */ +#define TT_UCR_LIMBU (1L << 29) /* U+1900-U+194F */ + /* Bit 94 Tai Le */ +#define TT_UCR_TAI_LE (1L << 30) /* U+1950-U+197F */ + /* Bit 95 New Tai Lue */ +#define TT_UCR_NEW_TAI_LUE (1L << 31) /* U+1980-U+19DF */ + + /* ulUnicodeRange4 */ + /* --------------- */ + + /* Bit 96 Buginese */ +#define TT_UCR_BUGINESE (1L << 0) /* U+1A00-U+1A1F */ + /* Bit 97 Glagolitic */ +#define TT_UCR_GLAGOLITIC (1L << 1) /* U+2C00-U+2C5F */ + /* Bit 98 Tifinagh */ +#define TT_UCR_TIFINAGH (1L << 2) /* U+2D30-U+2D7F */ + /* Bit 99 Yijing Hexagram Symbols */ +#define TT_UCR_YIJING (1L << 3) /* U+4DC0-U+4DFF */ + /* Bit 100 Syloti Nagri */ +#define TT_UCR_SYLOTI_NAGRI (1L << 4) /* U+A800-U+A82F */ + /* Bit 101 Linear B Syllabary */ + /* Linear B Ideograms */ + /* Aegean Numbers */ +#define TT_UCR_LINEAR_B (1L << 5) /*U+10000-U+1007F*/ + /*U+10080-U+100FF*/ + /*U+10100-U+1013F*/ + /* Bit 102 Ancient Greek Numbers */ +#define TT_UCR_ANCIENT_GREEK_NUMBERS (1L << 6) /*U+10140-U+1018F*/ + /* Bit 103 Ugaritic */ +#define TT_UCR_UGARITIC (1L << 7) /*U+10380-U+1039F*/ + /* Bit 104 Old Persian */ +#define TT_UCR_OLD_PERSIAN (1L << 8) /*U+103A0-U+103DF*/ + /* Bit 105 Shavian */ +#define TT_UCR_SHAVIAN (1L << 9) /*U+10450-U+1047F*/ + /* Bit 106 Osmanya */ +#define TT_UCR_OSMANYA (1L << 10) /*U+10480-U+104AF*/ + /* Bit 107 Cypriot Syllabary */ +#define TT_UCR_CYPRIOT_SYLLABARY (1L << 11) /*U+10800-U+1083F*/ + /* Bit 108 Kharoshthi */ +#define TT_UCR_KHAROSHTHI (1L << 12) /*U+10A00-U+10A5F*/ + /* Bit 109 Tai Xuan Jing Symbols */ +#define TT_UCR_TAI_XUAN_JING (1L << 13) /*U+1D300-U+1D35F*/ + /* Bit 110 Cuneiform */ + /* Cuneiform Numbers and Punctuation */ +#define TT_UCR_CUNEIFORM (1L << 14) /*U+12000-U+123FF*/ + /*U+12400-U+1247F*/ + /* Bit 111 Counting Rod Numerals */ +#define TT_UCR_COUNTING_ROD_NUMERALS (1L << 15) /*U+1D360-U+1D37F*/ + /* Bit 112 Sundanese */ +#define TT_UCR_SUNDANESE (1L << 16) /* U+1B80-U+1BBF */ + /* Bit 113 Lepcha */ +#define TT_UCR_LEPCHA (1L << 17) /* U+1C00-U+1C4F */ + /* Bit 114 Ol Chiki */ +#define TT_UCR_OL_CHIKI (1L << 18) /* U+1C50-U+1C7F */ + /* Bit 115 Saurashtra */ +#define TT_UCR_SAURASHTRA (1L << 19) /* U+A880-U+A8DF */ + /* Bit 116 Kayah Li */ +#define TT_UCR_KAYAH_LI (1L << 20) /* U+A900-U+A92F */ + /* Bit 117 Rejang */ +#define TT_UCR_REJANG (1L << 21) /* U+A930-U+A95F */ + /* Bit 118 Cham */ +#define TT_UCR_CHAM (1L << 22) /* U+AA00-U+AA5F */ + /* Bit 119 Ancient Symbols */ +#define TT_UCR_ANCIENT_SYMBOLS (1L << 23) /*U+10190-U+101CF*/ + /* Bit 120 Phaistos Disc */ +#define TT_UCR_PHAISTOS_DISC (1L << 24) /*U+101D0-U+101FF*/ + /* Bit 121 Carian */ + /* Lycian */ + /* Lydian */ +#define TT_UCR_OLD_ANATOLIAN (1L << 25) /*U+102A0-U+102DF*/ + /*U+10280-U+1029F*/ + /*U+10920-U+1093F*/ + /* Bit 122 Domino Tiles */ + /* Mahjong Tiles */ +#define TT_UCR_GAME_TILES (1L << 26) /*U+1F030-U+1F09F*/ + /*U+1F000-U+1F02F*/ + /* Bit 123-127 Reserved for process-internal usage */ + + /* */ + + /* for backward compatibility with older FreeType versions */ +#define TT_UCR_ARABIC_PRESENTATION_A \ + TT_UCR_ARABIC_PRESENTATION_FORMS_A +#define TT_UCR_ARABIC_PRESENTATION_B \ + TT_UCR_ARABIC_PRESENTATION_FORMS_B + +#define TT_UCR_COMBINING_DIACRITICS \ + TT_UCR_COMBINING_DIACRITICAL_MARKS +#define TT_UCR_COMBINING_DIACRITICS_SYMB \ + TT_UCR_COMBINING_DIACRITICAL_MARKS_SYMB + + +FT_END_HEADER + +#endif /* TTNAMEID_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/tttables.h b/external/lumin/thirdparty/freetype/include/freetype/tttables.h new file mode 100644 index 0000000..21664df --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/tttables.h @@ -0,0 +1,855 @@ +/**************************************************************************** + * + * tttables.h + * + * Basic SFNT/TrueType tables definitions and interface + * (specification only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef TTTABLES_H_ +#define TTTABLES_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + /************************************************************************** + * + * @section: + * truetype_tables + * + * @title: + * TrueType Tables + * + * @abstract: + * TrueType-specific table types and functions. + * + * @description: + * This section contains definitions of some basic tables specific to + * TrueType and OpenType as well as some routines used to access and + * process them. + * + * @order: + * TT_Header + * TT_HoriHeader + * TT_VertHeader + * TT_OS2 + * TT_Postscript + * TT_PCLT + * TT_MaxProfile + * + * FT_Sfnt_Tag + * FT_Get_Sfnt_Table + * FT_Load_Sfnt_Table + * FT_Sfnt_Table_Info + * + * FT_Get_CMap_Language_ID + * FT_Get_CMap_Format + * + * FT_PARAM_TAG_UNPATENTED_HINTING + * + */ + + + /************************************************************************** + * + * @struct: + * TT_Header + * + * @description: + * A structure to model a TrueType font header table. All fields follow + * the OpenType specification. The 64-bit timestamps are stored in + * two-element arrays `Created` and `Modified`, first the upper then + * the lower 32~bits. + */ + typedef struct TT_Header_ + { + FT_Fixed Table_Version; + FT_Fixed Font_Revision; + + FT_Long CheckSum_Adjust; + FT_Long Magic_Number; + + FT_UShort Flags; + FT_UShort Units_Per_EM; + + FT_ULong Created [2]; + FT_ULong Modified[2]; + + FT_Short xMin; + FT_Short yMin; + FT_Short xMax; + FT_Short yMax; + + FT_UShort Mac_Style; + FT_UShort Lowest_Rec_PPEM; + + FT_Short Font_Direction; + FT_Short Index_To_Loc_Format; + FT_Short Glyph_Data_Format; + + } TT_Header; + + + /************************************************************************** + * + * @struct: + * TT_HoriHeader + * + * @description: + * A structure to model a TrueType horizontal header, the 'hhea' table, + * as well as the corresponding horizontal metrics table, 'hmtx'. + * + * @fields: + * Version :: + * The table version. + * + * Ascender :: + * The font's ascender, i.e., the distance from the baseline to the + * top-most of all glyph points found in the font. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoAscender` field of the 'OS/2' table instead + * if you want the correct one. + * + * Descender :: + * The font's descender, i.e., the distance from the baseline to the + * bottom-most of all glyph points found in the font. It is negative. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoDescender` field of the 'OS/2' table + * instead if you want the correct one. + * + * Line_Gap :: + * The font's line gap, i.e., the distance to add to the ascender and + * descender to get the BTB, i.e., the baseline-to-baseline distance + * for the font. + * + * advance_Width_Max :: + * This field is the maximum of all advance widths found in the font. + * It can be used to compute the maximum width of an arbitrary string + * of text. + * + * min_Left_Side_Bearing :: + * The minimum left side bearing of all glyphs within the font. + * + * min_Right_Side_Bearing :: + * The minimum right side bearing of all glyphs within the font. + * + * xMax_Extent :: + * The maximum horizontal extent (i.e., the 'width' of a glyph's + * bounding box) for all glyphs in the font. + * + * caret_Slope_Rise :: + * The rise coefficient of the cursor's slope of the cursor + * (slope=rise/run). + * + * caret_Slope_Run :: + * The run coefficient of the cursor's slope. + * + * caret_Offset :: + * The cursor's offset for slanted fonts. + * + * Reserved :: + * 8~reserved bytes. + * + * metric_Data_Format :: + * Always~0. + * + * number_Of_HMetrics :: + * Number of HMetrics entries in the 'hmtx' table -- this value can be + * smaller than the total number of glyphs in the font. + * + * long_metrics :: + * A pointer into the 'hmtx' table. + * + * short_metrics :: + * A pointer into the 'hmtx' table. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `caret_Slope_Rise`, + * `caret_Slope_Run`, and `caret_Offset`. + */ + typedef struct TT_HoriHeader_ + { + FT_Fixed Version; + FT_Short Ascender; + FT_Short Descender; + FT_Short Line_Gap; + + FT_UShort advance_Width_Max; /* advance width maximum */ + + FT_Short min_Left_Side_Bearing; /* minimum left-sb */ + FT_Short min_Right_Side_Bearing; /* minimum right-sb */ + FT_Short xMax_Extent; /* xmax extents */ + FT_Short caret_Slope_Rise; + FT_Short caret_Slope_Run; + FT_Short caret_Offset; + + FT_Short Reserved[4]; + + FT_Short metric_Data_Format; + FT_UShort number_Of_HMetrics; + + /* The following fields are not defined by the OpenType specification */ + /* but they are used to connect the metrics header to the relevant */ + /* 'hmtx' table. */ + + void* long_metrics; + void* short_metrics; + + } TT_HoriHeader; + + + /************************************************************************** + * + * @struct: + * TT_VertHeader + * + * @description: + * A structure used to model a TrueType vertical header, the 'vhea' + * table, as well as the corresponding vertical metrics table, 'vmtx'. + * + * @fields: + * Version :: + * The table version. + * + * Ascender :: + * The font's ascender, i.e., the distance from the baseline to the + * top-most of all glyph points found in the font. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoAscender` field of the 'OS/2' table instead + * if you want the correct one. + * + * Descender :: + * The font's descender, i.e., the distance from the baseline to the + * bottom-most of all glyph points found in the font. It is negative. + * + * This value is invalid in many fonts, as it is usually set by the + * font designer, and often reflects only a portion of the glyphs found + * in the font (maybe ASCII). + * + * You should use the `sTypoDescender` field of the 'OS/2' table + * instead if you want the correct one. + * + * Line_Gap :: + * The font's line gap, i.e., the distance to add to the ascender and + * descender to get the BTB, i.e., the baseline-to-baseline distance + * for the font. + * + * advance_Height_Max :: + * This field is the maximum of all advance heights found in the font. + * It can be used to compute the maximum height of an arbitrary string + * of text. + * + * min_Top_Side_Bearing :: + * The minimum top side bearing of all glyphs within the font. + * + * min_Bottom_Side_Bearing :: + * The minimum bottom side bearing of all glyphs within the font. + * + * yMax_Extent :: + * The maximum vertical extent (i.e., the 'height' of a glyph's + * bounding box) for all glyphs in the font. + * + * caret_Slope_Rise :: + * The rise coefficient of the cursor's slope of the cursor + * (slope=rise/run). + * + * caret_Slope_Run :: + * The run coefficient of the cursor's slope. + * + * caret_Offset :: + * The cursor's offset for slanted fonts. + * + * Reserved :: + * 8~reserved bytes. + * + * metric_Data_Format :: + * Always~0. + * + * number_Of_VMetrics :: + * Number of VMetrics entries in the 'vmtx' table -- this value can be + * smaller than the total number of glyphs in the font. + * + * long_metrics :: + * A pointer into the 'vmtx' table. + * + * short_metrics :: + * A pointer into the 'vmtx' table. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `Ascender`, `Descender`, + * `Line_Gap`, `caret_Slope_Rise`, `caret_Slope_Run`, and `caret_Offset`. + */ + typedef struct TT_VertHeader_ + { + FT_Fixed Version; + FT_Short Ascender; + FT_Short Descender; + FT_Short Line_Gap; + + FT_UShort advance_Height_Max; /* advance height maximum */ + + FT_Short min_Top_Side_Bearing; /* minimum top-sb */ + FT_Short min_Bottom_Side_Bearing; /* minimum bottom-sb */ + FT_Short yMax_Extent; /* ymax extents */ + FT_Short caret_Slope_Rise; + FT_Short caret_Slope_Run; + FT_Short caret_Offset; + + FT_Short Reserved[4]; + + FT_Short metric_Data_Format; + FT_UShort number_Of_VMetrics; + + /* The following fields are not defined by the OpenType specification */ + /* but they are used to connect the metrics header to the relevant */ + /* 'vmtx' table. */ + + void* long_metrics; + void* short_metrics; + + } TT_VertHeader; + + + /************************************************************************** + * + * @struct: + * TT_OS2 + * + * @description: + * A structure to model a TrueType 'OS/2' table. All fields comply to + * the OpenType specification. + * + * Note that we now support old Mac fonts that do not include an 'OS/2' + * table. In this case, the `version` field is always set to 0xFFFF. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `sCapHeight`, `sTypoAscender`, + * `sTypoDescender`, `sTypoLineGap`, `sxHeight`, `usWinAscent`, + * `usWinDescent`, `yStrikeoutPosition`, `yStrikeoutSize`, + * `ySubscriptXOffset`, `ySubScriptXSize`, `ySubscriptYOffset`, + * `ySubscriptYSize`, `ySuperscriptXOffset`, `ySuperscriptXSize`, + * `ySuperscriptYOffset`, and `ySuperscriptYSize`. + * + * Possible values for bits in the `ulUnicodeRangeX` fields are given by + * the @TT_UCR_XXX macros. + */ + + typedef struct TT_OS2_ + { + FT_UShort version; /* 0x0001 - more or 0xFFFF */ + FT_Short xAvgCharWidth; + FT_UShort usWeightClass; + FT_UShort usWidthClass; + FT_UShort fsType; + FT_Short ySubscriptXSize; + FT_Short ySubscriptYSize; + FT_Short ySubscriptXOffset; + FT_Short ySubscriptYOffset; + FT_Short ySuperscriptXSize; + FT_Short ySuperscriptYSize; + FT_Short ySuperscriptXOffset; + FT_Short ySuperscriptYOffset; + FT_Short yStrikeoutSize; + FT_Short yStrikeoutPosition; + FT_Short sFamilyClass; + + FT_Byte panose[10]; + + FT_ULong ulUnicodeRange1; /* Bits 0-31 */ + FT_ULong ulUnicodeRange2; /* Bits 32-63 */ + FT_ULong ulUnicodeRange3; /* Bits 64-95 */ + FT_ULong ulUnicodeRange4; /* Bits 96-127 */ + + FT_Char achVendID[4]; + + FT_UShort fsSelection; + FT_UShort usFirstCharIndex; + FT_UShort usLastCharIndex; + FT_Short sTypoAscender; + FT_Short sTypoDescender; + FT_Short sTypoLineGap; + FT_UShort usWinAscent; + FT_UShort usWinDescent; + + /* only version 1 and higher: */ + + FT_ULong ulCodePageRange1; /* Bits 0-31 */ + FT_ULong ulCodePageRange2; /* Bits 32-63 */ + + /* only version 2 and higher: */ + + FT_Short sxHeight; + FT_Short sCapHeight; + FT_UShort usDefaultChar; + FT_UShort usBreakChar; + FT_UShort usMaxContext; + + /* only version 5 and higher: */ + + FT_UShort usLowerOpticalPointSize; /* in twips (1/20th points) */ + FT_UShort usUpperOpticalPointSize; /* in twips (1/20th points) */ + + } TT_OS2; + + + /************************************************************************** + * + * @struct: + * TT_Postscript + * + * @description: + * A structure to model a TrueType 'post' table. All fields comply to + * the OpenType specification. This structure does not reference a + * font's PostScript glyph names; use @FT_Get_Glyph_Name to retrieve + * them. + * + * @note: + * For an OpenType variation font, the values of the following fields can + * change after a call to @FT_Set_Var_Design_Coordinates (and friends) if + * the font contains an 'MVAR' table: `underlinePosition` and + * `underlineThickness`. + */ + typedef struct TT_Postscript_ + { + FT_Fixed FormatType; + FT_Fixed italicAngle; + FT_Short underlinePosition; + FT_Short underlineThickness; + FT_ULong isFixedPitch; + FT_ULong minMemType42; + FT_ULong maxMemType42; + FT_ULong minMemType1; + FT_ULong maxMemType1; + + /* Glyph names follow in the 'post' table, but we don't */ + /* load them by default. */ + + } TT_Postscript; + + + /************************************************************************** + * + * @struct: + * TT_PCLT + * + * @description: + * A structure to model a TrueType 'PCLT' table. All fields comply to + * the OpenType specification. + */ + typedef struct TT_PCLT_ + { + FT_Fixed Version; + FT_ULong FontNumber; + FT_UShort Pitch; + FT_UShort xHeight; + FT_UShort Style; + FT_UShort TypeFamily; + FT_UShort CapHeight; + FT_UShort SymbolSet; + FT_Char TypeFace[16]; + FT_Char CharacterComplement[8]; + FT_Char FileName[6]; + FT_Char StrokeWeight; + FT_Char WidthType; + FT_Byte SerifStyle; + FT_Byte Reserved; + + } TT_PCLT; + + + /************************************************************************** + * + * @struct: + * TT_MaxProfile + * + * @description: + * The maximum profile ('maxp') table contains many max values, which can + * be used to pre-allocate arrays for speeding up glyph loading and + * hinting. + * + * @fields: + * version :: + * The version number. + * + * numGlyphs :: + * The number of glyphs in this TrueType font. + * + * maxPoints :: + * The maximum number of points in a non-composite TrueType glyph. See + * also `maxCompositePoints`. + * + * maxContours :: + * The maximum number of contours in a non-composite TrueType glyph. + * See also `maxCompositeContours`. + * + * maxCompositePoints :: + * The maximum number of points in a composite TrueType glyph. See + * also `maxPoints`. + * + * maxCompositeContours :: + * The maximum number of contours in a composite TrueType glyph. See + * also `maxContours`. + * + * maxZones :: + * The maximum number of zones used for glyph hinting. + * + * maxTwilightPoints :: + * The maximum number of points in the twilight zone used for glyph + * hinting. + * + * maxStorage :: + * The maximum number of elements in the storage area used for glyph + * hinting. + * + * maxFunctionDefs :: + * The maximum number of function definitions in the TrueType bytecode + * for this font. + * + * maxInstructionDefs :: + * The maximum number of instruction definitions in the TrueType + * bytecode for this font. + * + * maxStackElements :: + * The maximum number of stack elements used during bytecode + * interpretation. + * + * maxSizeOfInstructions :: + * The maximum number of TrueType opcodes used for glyph hinting. + * + * maxComponentElements :: + * The maximum number of simple (i.e., non-composite) glyphs in a + * composite glyph. + * + * maxComponentDepth :: + * The maximum nesting depth of composite glyphs. + * + * @note: + * This structure is only used during font loading. + */ + typedef struct TT_MaxProfile_ + { + FT_Fixed version; + FT_UShort numGlyphs; + FT_UShort maxPoints; + FT_UShort maxContours; + FT_UShort maxCompositePoints; + FT_UShort maxCompositeContours; + FT_UShort maxZones; + FT_UShort maxTwilightPoints; + FT_UShort maxStorage; + FT_UShort maxFunctionDefs; + FT_UShort maxInstructionDefs; + FT_UShort maxStackElements; + FT_UShort maxSizeOfInstructions; + FT_UShort maxComponentElements; + FT_UShort maxComponentDepth; + + } TT_MaxProfile; + + + /************************************************************************** + * + * @enum: + * FT_Sfnt_Tag + * + * @description: + * An enumeration to specify indices of SFNT tables loaded and parsed by + * FreeType during initialization of an SFNT font. Used in the + * @FT_Get_Sfnt_Table API function. + * + * @values: + * FT_SFNT_HEAD :: + * To access the font's @TT_Header structure. + * + * FT_SFNT_MAXP :: + * To access the font's @TT_MaxProfile structure. + * + * FT_SFNT_OS2 :: + * To access the font's @TT_OS2 structure. + * + * FT_SFNT_HHEA :: + * To access the font's @TT_HoriHeader structure. + * + * FT_SFNT_VHEA :: + * To access the font's @TT_VertHeader structure. + * + * FT_SFNT_POST :: + * To access the font's @TT_Postscript structure. + * + * FT_SFNT_PCLT :: + * To access the font's @TT_PCLT structure. + */ + typedef enum FT_Sfnt_Tag_ + { + FT_SFNT_HEAD, + FT_SFNT_MAXP, + FT_SFNT_OS2, + FT_SFNT_HHEA, + FT_SFNT_VHEA, + FT_SFNT_POST, + FT_SFNT_PCLT, + + FT_SFNT_MAX + + } FT_Sfnt_Tag; + + /* these constants are deprecated; use the corresponding `FT_Sfnt_Tag` */ + /* values instead */ +#define ft_sfnt_head FT_SFNT_HEAD +#define ft_sfnt_maxp FT_SFNT_MAXP +#define ft_sfnt_os2 FT_SFNT_OS2 +#define ft_sfnt_hhea FT_SFNT_HHEA +#define ft_sfnt_vhea FT_SFNT_VHEA +#define ft_sfnt_post FT_SFNT_POST +#define ft_sfnt_pclt FT_SFNT_PCLT + + + /************************************************************************** + * + * @function: + * FT_Get_Sfnt_Table + * + * @description: + * Return a pointer to a given SFNT table stored within a face. + * + * @input: + * face :: + * A handle to the source. + * + * tag :: + * The index of the SFNT table. + * + * @return: + * A type-less pointer to the table. This will be `NULL` in case of + * error, or if the corresponding table was not found **OR** loaded from + * the file. + * + * Use a typecast according to `tag` to access the structure elements. + * + * @note: + * The table is owned by the face object and disappears with it. + * + * This function is only useful to access SFNT tables that are loaded by + * the sfnt, truetype, and opentype drivers. See @FT_Sfnt_Tag for a + * list. + * + * @example: + * Here is an example demonstrating access to the 'vhea' table. + * + * ``` + * TT_VertHeader* vert_header; + * + * + * vert_header = + * (TT_VertHeader*)FT_Get_Sfnt_Table( face, FT_SFNT_VHEA ); + * ``` + */ + FT_EXPORT( void* ) + FT_Get_Sfnt_Table( FT_Face face, + FT_Sfnt_Tag tag ); + + + /************************************************************************** + * + * @function: + * FT_Load_Sfnt_Table + * + * @description: + * Load any SFNT font table into client memory. + * + * @input: + * face :: + * A handle to the source face. + * + * tag :: + * The four-byte tag of the table to load. Use value~0 if you want to + * access the whole font file. Otherwise, you can use one of the + * definitions found in the @FT_TRUETYPE_TAGS_H file, or forge a new + * one with @FT_MAKE_TAG. + * + * offset :: + * The starting offset in the table (or file if tag~==~0). + * + * @output: + * buffer :: + * The target buffer address. The client must ensure that the memory + * array is big enough to hold the data. + * + * @inout: + * length :: + * If the `length` parameter is `NULL`, try to load the whole table. + * Return an error code if it fails. + * + * Else, if `*length` is~0, exit immediately while returning the + * table's (or file) full size in it. + * + * Else the number of bytes to read from the table or file, from the + * starting offset. + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * If you need to determine the table's length you should first call this + * function with `*length` set to~0, as in the following example: + * + * ``` + * FT_ULong length = 0; + * + * + * error = FT_Load_Sfnt_Table( face, tag, 0, NULL, &length ); + * if ( error ) { ... table does not exist ... } + * + * buffer = malloc( length ); + * if ( buffer == NULL ) { ... not enough memory ... } + * + * error = FT_Load_Sfnt_Table( face, tag, 0, buffer, &length ); + * if ( error ) { ... could not load table ... } + * ``` + * + * Note that structures like @TT_Header or @TT_OS2 can't be used with + * this function; they are limited to @FT_Get_Sfnt_Table. Reason is that + * those structures depend on the processor architecture, with varying + * size (e.g. 32bit vs. 64bit) or order (big endian vs. little endian). + * + */ + FT_EXPORT( FT_Error ) + FT_Load_Sfnt_Table( FT_Face face, + FT_ULong tag, + FT_Long offset, + FT_Byte* buffer, + FT_ULong* length ); + + + /************************************************************************** + * + * @function: + * FT_Sfnt_Table_Info + * + * @description: + * Return information on an SFNT table. + * + * @input: + * face :: + * A handle to the source face. + * + * table_index :: + * The index of an SFNT table. The function returns + * FT_Err_Table_Missing for an invalid value. + * + * @inout: + * tag :: + * The name tag of the SFNT table. If the value is `NULL`, + * `table_index` is ignored, and `length` returns the number of SFNT + * tables in the font. + * + * @output: + * length :: + * The length of the SFNT table (or the number of SFNT tables, + * depending on `tag`). + * + * @return: + * FreeType error code. 0~means success. + * + * @note: + * While parsing fonts, FreeType handles SFNT tables with length zero as + * missing. + * + */ + FT_EXPORT( FT_Error ) + FT_Sfnt_Table_Info( FT_Face face, + FT_UInt table_index, + FT_ULong *tag, + FT_ULong *length ); + + + /************************************************************************** + * + * @function: + * FT_Get_CMap_Language_ID + * + * @description: + * Return cmap language ID as specified in the OpenType standard. + * Definitions of language ID values are in file @FT_TRUETYPE_IDS_H. + * + * @input: + * charmap :: + * The target charmap. + * + * @return: + * The language ID of `charmap`. If `charmap` doesn't belong to an SFNT + * face, just return~0 as the default value. + * + * For a format~14 cmap (to access Unicode IVS), the return value is + * 0xFFFFFFFF. + */ + FT_EXPORT( FT_ULong ) + FT_Get_CMap_Language_ID( FT_CharMap charmap ); + + + /************************************************************************** + * + * @function: + * FT_Get_CMap_Format + * + * @description: + * Return the format of an SFNT 'cmap' table. + * + * @input: + * charmap :: + * The target charmap. + * + * @return: + * The format of `charmap`. If `charmap` doesn't belong to an SFNT face, + * return -1. + */ + FT_EXPORT( FT_Long ) + FT_Get_CMap_Format( FT_CharMap charmap ); + + /* */ + + +FT_END_HEADER + +#endif /* TTTABLES_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/freetype/tttags.h b/external/lumin/thirdparty/freetype/include/freetype/tttags.h new file mode 100644 index 0000000..8b80764 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/freetype/tttags.h @@ -0,0 +1,124 @@ +/**************************************************************************** + * + * tttags.h + * + * Tags for TrueType and OpenType tables (specification only). + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + +#ifndef TTAGS_H_ +#define TTAGS_H_ + + +#include + +#ifdef FREETYPE_H +#error "freetype.h of FreeType 1 has been loaded!" +#error "Please fix the directory search order for header files" +#error "so that freetype.h of FreeType 2 is found first." +#endif + + +FT_BEGIN_HEADER + + +#define TTAG_avar FT_MAKE_TAG( 'a', 'v', 'a', 'r' ) +#define TTAG_BASE FT_MAKE_TAG( 'B', 'A', 'S', 'E' ) +#define TTAG_bdat FT_MAKE_TAG( 'b', 'd', 'a', 't' ) +#define TTAG_BDF FT_MAKE_TAG( 'B', 'D', 'F', ' ' ) +#define TTAG_bhed FT_MAKE_TAG( 'b', 'h', 'e', 'd' ) +#define TTAG_bloc FT_MAKE_TAG( 'b', 'l', 'o', 'c' ) +#define TTAG_bsln FT_MAKE_TAG( 'b', 's', 'l', 'n' ) +#define TTAG_CBDT FT_MAKE_TAG( 'C', 'B', 'D', 'T' ) +#define TTAG_CBLC FT_MAKE_TAG( 'C', 'B', 'L', 'C' ) +#define TTAG_CFF FT_MAKE_TAG( 'C', 'F', 'F', ' ' ) +#define TTAG_CFF2 FT_MAKE_TAG( 'C', 'F', 'F', '2' ) +#define TTAG_CID FT_MAKE_TAG( 'C', 'I', 'D', ' ' ) +#define TTAG_cmap FT_MAKE_TAG( 'c', 'm', 'a', 'p' ) +#define TTAG_COLR FT_MAKE_TAG( 'C', 'O', 'L', 'R' ) +#define TTAG_CPAL FT_MAKE_TAG( 'C', 'P', 'A', 'L' ) +#define TTAG_cvar FT_MAKE_TAG( 'c', 'v', 'a', 'r' ) +#define TTAG_cvt FT_MAKE_TAG( 'c', 'v', 't', ' ' ) +#define TTAG_DSIG FT_MAKE_TAG( 'D', 'S', 'I', 'G' ) +#define TTAG_EBDT FT_MAKE_TAG( 'E', 'B', 'D', 'T' ) +#define TTAG_EBLC FT_MAKE_TAG( 'E', 'B', 'L', 'C' ) +#define TTAG_EBSC FT_MAKE_TAG( 'E', 'B', 'S', 'C' ) +#define TTAG_feat FT_MAKE_TAG( 'f', 'e', 'a', 't' ) +#define TTAG_FOND FT_MAKE_TAG( 'F', 'O', 'N', 'D' ) +#define TTAG_fpgm FT_MAKE_TAG( 'f', 'p', 'g', 'm' ) +#define TTAG_fvar FT_MAKE_TAG( 'f', 'v', 'a', 'r' ) +#define TTAG_gasp FT_MAKE_TAG( 'g', 'a', 's', 'p' ) +#define TTAG_GDEF FT_MAKE_TAG( 'G', 'D', 'E', 'F' ) +#define TTAG_glyf FT_MAKE_TAG( 'g', 'l', 'y', 'f' ) +#define TTAG_GPOS FT_MAKE_TAG( 'G', 'P', 'O', 'S' ) +#define TTAG_GSUB FT_MAKE_TAG( 'G', 'S', 'U', 'B' ) +#define TTAG_gvar FT_MAKE_TAG( 'g', 'v', 'a', 'r' ) +#define TTAG_HVAR FT_MAKE_TAG( 'H', 'V', 'A', 'R' ) +#define TTAG_hdmx FT_MAKE_TAG( 'h', 'd', 'm', 'x' ) +#define TTAG_head FT_MAKE_TAG( 'h', 'e', 'a', 'd' ) +#define TTAG_hhea FT_MAKE_TAG( 'h', 'h', 'e', 'a' ) +#define TTAG_hmtx FT_MAKE_TAG( 'h', 'm', 't', 'x' ) +#define TTAG_JSTF FT_MAKE_TAG( 'J', 'S', 'T', 'F' ) +#define TTAG_just FT_MAKE_TAG( 'j', 'u', 's', 't' ) +#define TTAG_kern FT_MAKE_TAG( 'k', 'e', 'r', 'n' ) +#define TTAG_lcar FT_MAKE_TAG( 'l', 'c', 'a', 'r' ) +#define TTAG_loca FT_MAKE_TAG( 'l', 'o', 'c', 'a' ) +#define TTAG_LTSH FT_MAKE_TAG( 'L', 'T', 'S', 'H' ) +#define TTAG_LWFN FT_MAKE_TAG( 'L', 'W', 'F', 'N' ) +#define TTAG_MATH FT_MAKE_TAG( 'M', 'A', 'T', 'H' ) +#define TTAG_maxp FT_MAKE_TAG( 'm', 'a', 'x', 'p' ) +#define TTAG_META FT_MAKE_TAG( 'M', 'E', 'T', 'A' ) +#define TTAG_MMFX FT_MAKE_TAG( 'M', 'M', 'F', 'X' ) +#define TTAG_MMSD FT_MAKE_TAG( 'M', 'M', 'S', 'D' ) +#define TTAG_mort FT_MAKE_TAG( 'm', 'o', 'r', 't' ) +#define TTAG_morx FT_MAKE_TAG( 'm', 'o', 'r', 'x' ) +#define TTAG_MVAR FT_MAKE_TAG( 'M', 'V', 'A', 'R' ) +#define TTAG_name FT_MAKE_TAG( 'n', 'a', 'm', 'e' ) +#define TTAG_opbd FT_MAKE_TAG( 'o', 'p', 'b', 'd' ) +#define TTAG_OS2 FT_MAKE_TAG( 'O', 'S', '/', '2' ) +#define TTAG_OTTO FT_MAKE_TAG( 'O', 'T', 'T', 'O' ) +#define TTAG_PCLT FT_MAKE_TAG( 'P', 'C', 'L', 'T' ) +#define TTAG_POST FT_MAKE_TAG( 'P', 'O', 'S', 'T' ) +#define TTAG_post FT_MAKE_TAG( 'p', 'o', 's', 't' ) +#define TTAG_prep FT_MAKE_TAG( 'p', 'r', 'e', 'p' ) +#define TTAG_prop FT_MAKE_TAG( 'p', 'r', 'o', 'p' ) +#define TTAG_sbix FT_MAKE_TAG( 's', 'b', 'i', 'x' ) +#define TTAG_sfnt FT_MAKE_TAG( 's', 'f', 'n', 't' ) +#define TTAG_SING FT_MAKE_TAG( 'S', 'I', 'N', 'G' ) +#define TTAG_SVG FT_MAKE_TAG( 'S', 'V', 'G', ' ' ) +#define TTAG_trak FT_MAKE_TAG( 't', 'r', 'a', 'k' ) +#define TTAG_true FT_MAKE_TAG( 't', 'r', 'u', 'e' ) +#define TTAG_ttc FT_MAKE_TAG( 't', 't', 'c', ' ' ) +#define TTAG_ttcf FT_MAKE_TAG( 't', 't', 'c', 'f' ) +#define TTAG_TYP1 FT_MAKE_TAG( 'T', 'Y', 'P', '1' ) +#define TTAG_typ1 FT_MAKE_TAG( 't', 'y', 'p', '1' ) +#define TTAG_VDMX FT_MAKE_TAG( 'V', 'D', 'M', 'X' ) +#define TTAG_vhea FT_MAKE_TAG( 'v', 'h', 'e', 'a' ) +#define TTAG_vmtx FT_MAKE_TAG( 'v', 'm', 't', 'x' ) +#define TTAG_VVAR FT_MAKE_TAG( 'V', 'V', 'A', 'R' ) +#define TTAG_wOFF FT_MAKE_TAG( 'w', 'O', 'F', 'F' ) +#define TTAG_wOF2 FT_MAKE_TAG( 'w', 'O', 'F', '2' ) + +/* used by "Keyboard.dfont" on legacy Mac OS X */ +#define TTAG_0xA5kbd FT_MAKE_TAG( 0xA5, 'k', 'b', 'd' ) + +/* used by "LastResort.dfont" on legacy Mac OS X */ +#define TTAG_0xA5lst FT_MAKE_TAG( 0xA5, 'l', 's', 't' ) + + +FT_END_HEADER + +#endif /* TTAGS_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/include/ft2build.h b/external/lumin/thirdparty/freetype/include/ft2build.h new file mode 100644 index 0000000..2543ac4 --- /dev/null +++ b/external/lumin/thirdparty/freetype/include/ft2build.h @@ -0,0 +1,42 @@ +/**************************************************************************** + * + * ft2build.h + * + * FreeType 2 build and setup macros. + * + * Copyright (C) 1996-2022 by + * David Turner, Robert Wilhelm, and Werner Lemberg. + * + * This file is part of the FreeType project, and may only be used, + * modified, and distributed under the terms of the FreeType project + * license, LICENSE.TXT. By continuing to use, modify, or distribute + * this file you indicate that you have read the license and + * understand and accept it fully. + * + */ + + + /************************************************************************** + * + * This is the 'entry point' for FreeType header file inclusions, to be + * loaded before all other header files. + * + * A typical example is + * + * ``` + * #include + * #include + * ``` + * + */ + + +#ifndef FT2BUILD_H_ +#define FT2BUILD_H_ + +#include + +#endif /* FT2BUILD_H_ */ + + +/* END */ diff --git a/external/lumin/thirdparty/freetype/win64/freetype.lib b/external/lumin/thirdparty/freetype/win64/freetype.lib new file mode 100644 index 0000000000000000000000000000000000000000..6710317d9420f89265fc31513b48f8cb38c86e64 GIT binary patch literal 4592880 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

    aQ=SMFWu1w)`Bf~LL75r6}Pmf|i7AB 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

    nxZ^p^80Iu%5cV>L;1G-j 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ΝcZ01>w1<&!a1r7cc6#JUkae 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
  1. u<)=@VJA(Q>$0{xzDLY*; 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п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

    F(zuRst{L9^2i|~CU9{XQzz*bbm-e!1>BM8VO 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

    k+4Aop5@Qe)ovemalaSZlPuq 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 z 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�J4)Ps*^aCyLMg4Je9qD>iN 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

    ASuA5GC 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≷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 $Sn+>5B^D0X* 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%0ATLeY~-k6!(P`&!2W})T|?EGqupkc(m|@( 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
    T=JPW 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. +// 2021-05-19: DirectX11: Replaced direct access to ImDrawCmd::TextureId with a call to ImDrawCmd::GetTexID(). (will become a requirement) +// 2021-02-18: DirectX11: Change blending equation to preserve alpha in output buffer. +// 2019-08-01: DirectX11: Fixed code querying the Geometry Shader state (would generally error with Debug layer enabled). +// 2019-07-21: DirectX11: Backup, clear and restore Geometry Shader is any is bound when calling ImGui_ImplDX10_RenderDrawData. Clearing Hull/Domain/Compute shaders without backup/restore. +// 2019-05-29: DirectX11: Added support for large mesh (64K+ vertices), enable ImGuiBackendFlags_RendererHasVtxOffset flag. +// 2019-04-30: DirectX11: Added support for special ImDrawCallback_ResetRenderState callback to reset render state. +// 2018-12-03: Misc: Added #pragma comment statement to automatically link with d3dcompiler.lib when using D3DCompile(). +// 2018-11-30: Misc: Setting up io.BackendRendererName so it can be displayed in the About Window. +// 2018-08-01: DirectX11: Querying for IDXGIFactory instead of IDXGIFactory1 to increase compatibility. +// 2018-07-13: DirectX11: Fixed unreleased resources in Init and Shutdown functions. +// 2018-06-08: Misc: Extracted imgui_impl_dx11.cpp/.h away from the old combined DX11+Win32 example. +// 2018-06-08: DirectX11: Use draw_data->DisplayPos and draw_data->DisplaySize to setup projection matrix and clipping rectangle. +// 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplDX11_RenderDrawData() in the .h file so you can call it yourself. +// 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves. +// 2016-05-07: DirectX11: Disabling depth-write. + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_impl_dx11.h" + +// DirectX +#include +#include +#include +#ifdef _MSC_VER +#pragma comment(lib, "d3dcompiler") // Automatically link with d3dcompiler.lib as we are using D3DCompile() below. +#endif + +// DirectX11 data +struct ImGui_ImplDX11_Data +{ + ID3D11Device* pd3dDevice; + ID3D11DeviceContext* pd3dDeviceContext; + IDXGIFactory* pFactory; + ID3D11Buffer* pVB; + ID3D11Buffer* pIB; + ID3D11VertexShader* pVertexShader; + ID3D11InputLayout* pInputLayout; + ID3D11Buffer* pVertexConstantBuffer; + ID3D11PixelShader* pPixelShader; + ID3D11SamplerState* pFontSampler; + ID3D11ShaderResourceView* pFontTextureView; + ID3D11RasterizerState* pRasterizerState; + ID3D11BlendState* pBlendState; + ID3D11DepthStencilState* pDepthStencilState; + int VertexBufferSize; + int IndexBufferSize; + + ImGui_ImplDX11_Data() { memset((void*)this, 0, sizeof(*this)); VertexBufferSize = 5000; IndexBufferSize = 10000; } +}; + +struct VERTEX_CONSTANT_BUFFER_DX11 +{ + float mvp[4][4]; +}; + +// Backend data stored in io.BackendRendererUserData to allow support for multiple Dear ImGui contexts +// It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts. +static ImGui_ImplDX11_Data* ImGui_ImplDX11_GetBackendData() +{ + return ImGui::GetCurrentContext() ? (ImGui_ImplDX11_Data*)ImGui::GetIO().BackendRendererUserData : nullptr; +} + +// Functions +static void ImGui_ImplDX11_SetupRenderState(ImDrawData* draw_data, ID3D11DeviceContext* ctx) +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + + // Setup viewport + D3D11_VIEWPORT vp; + memset(&vp, 0, sizeof(D3D11_VIEWPORT)); + vp.Width = draw_data->DisplaySize.x; + vp.Height = draw_data->DisplaySize.y; + vp.MinDepth = 0.0f; + vp.MaxDepth = 1.0f; + vp.TopLeftX = vp.TopLeftY = 0; + ctx->RSSetViewports(1, &vp); + + // Setup shader and vertex buffers + unsigned int stride = sizeof(ImDrawVert); + unsigned int offset = 0; + ctx->IASetInputLayout(bd->pInputLayout); + ctx->IASetVertexBuffers(0, 1, &bd->pVB, &stride, &offset); + ctx->IASetIndexBuffer(bd->pIB, sizeof(ImDrawIdx) == 2 ? DXGI_FORMAT_R16_UINT : DXGI_FORMAT_R32_UINT, 0); + ctx->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); + ctx->VSSetShader(bd->pVertexShader, nullptr, 0); + ctx->VSSetConstantBuffers(0, 1, &bd->pVertexConstantBuffer); + ctx->PSSetShader(bd->pPixelShader, nullptr, 0); + ctx->PSSetSamplers(0, 1, &bd->pFontSampler); + ctx->GSSetShader(nullptr, nullptr, 0); + ctx->HSSetShader(nullptr, nullptr, 0); // In theory we should backup and restore this as well.. very infrequently used.. + ctx->DSSetShader(nullptr, nullptr, 0); // In theory we should backup and restore this as well.. very infrequently used.. + ctx->CSSetShader(nullptr, nullptr, 0); // In theory we should backup and restore this as well.. very infrequently used.. + + // Setup blend state + const float blend_factor[4] = { 0.f, 0.f, 0.f, 0.f }; + ctx->OMSetBlendState(bd->pBlendState, blend_factor, 0xffffffff); + ctx->OMSetDepthStencilState(bd->pDepthStencilState, 0); + ctx->RSSetState(bd->pRasterizerState); +} + +// Render function +void ImGui_ImplDX11_RenderDrawData(ImDrawData* draw_data) +{ + // Avoid rendering when minimized + if (draw_data->DisplaySize.x <= 0.0f || draw_data->DisplaySize.y <= 0.0f) + return; + + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + ID3D11DeviceContext* ctx = bd->pd3dDeviceContext; + + // Create and grow vertex/index buffers if needed + if (!bd->pVB || bd->VertexBufferSize < draw_data->TotalVtxCount) + { + if (bd->pVB) { bd->pVB->Release(); bd->pVB = nullptr; } + bd->VertexBufferSize = draw_data->TotalVtxCount + 5000; + D3D11_BUFFER_DESC desc; + memset(&desc, 0, sizeof(D3D11_BUFFER_DESC)); + desc.Usage = D3D11_USAGE_DYNAMIC; + desc.ByteWidth = bd->VertexBufferSize * sizeof(ImDrawVert); + desc.BindFlags = D3D11_BIND_VERTEX_BUFFER; + desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + desc.MiscFlags = 0; + if (bd->pd3dDevice->CreateBuffer(&desc, nullptr, &bd->pVB) < 0) + return; + } + if (!bd->pIB || bd->IndexBufferSize < draw_data->TotalIdxCount) + { + if (bd->pIB) { bd->pIB->Release(); bd->pIB = nullptr; } + bd->IndexBufferSize = draw_data->TotalIdxCount + 10000; + D3D11_BUFFER_DESC desc; + memset(&desc, 0, sizeof(D3D11_BUFFER_DESC)); + desc.Usage = D3D11_USAGE_DYNAMIC; + desc.ByteWidth = bd->IndexBufferSize * sizeof(ImDrawIdx); + desc.BindFlags = D3D11_BIND_INDEX_BUFFER; + desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + if (bd->pd3dDevice->CreateBuffer(&desc, nullptr, &bd->pIB) < 0) + return; + } + + // Upload vertex/index data into a single contiguous GPU buffer + D3D11_MAPPED_SUBRESOURCE vtx_resource, idx_resource; + if (ctx->Map(bd->pVB, 0, D3D11_MAP_WRITE_DISCARD, 0, &vtx_resource) != S_OK) + return; + if (ctx->Map(bd->pIB, 0, D3D11_MAP_WRITE_DISCARD, 0, &idx_resource) != S_OK) + return; + ImDrawVert* vtx_dst = (ImDrawVert*)vtx_resource.pData; + ImDrawIdx* idx_dst = (ImDrawIdx*)idx_resource.pData; + for (int n = 0; n < draw_data->CmdListsCount; n++) + { + const ImDrawList* cmd_list = draw_data->CmdLists[n]; + memcpy(vtx_dst, cmd_list->VtxBuffer.Data, cmd_list->VtxBuffer.Size * sizeof(ImDrawVert)); + memcpy(idx_dst, cmd_list->IdxBuffer.Data, cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx)); + vtx_dst += cmd_list->VtxBuffer.Size; + idx_dst += cmd_list->IdxBuffer.Size; + } + ctx->Unmap(bd->pVB, 0); + ctx->Unmap(bd->pIB, 0); + + // Setup orthographic projection matrix into our constant buffer + // 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. + { + D3D11_MAPPED_SUBRESOURCE mapped_resource; + if (ctx->Map(bd->pVertexConstantBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped_resource) != S_OK) + return; + VERTEX_CONSTANT_BUFFER_DX11* constant_buffer = (VERTEX_CONSTANT_BUFFER_DX11*)mapped_resource.pData; + 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; + float mvp[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, 0.5f, 0.0f }, + { (R+L)/(L-R), (T+B)/(B-T), 0.5f, 1.0f }, + }; + memcpy(&constant_buffer->mvp, mvp, sizeof(mvp)); + ctx->Unmap(bd->pVertexConstantBuffer, 0); + } + + // Backup DX state that will be modified to restore it afterwards (unfortunately this is very ugly looking and verbose. Close your eyes!) + struct BACKUP_DX11_STATE + { + UINT ScissorRectsCount, ViewportsCount; + D3D11_RECT ScissorRects[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE]; + D3D11_VIEWPORT Viewports[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE]; + ID3D11RasterizerState* RS; + ID3D11BlendState* BlendState; + FLOAT BlendFactor[4]; + UINT SampleMask; + UINT StencilRef; + ID3D11DepthStencilState* DepthStencilState; + ID3D11ShaderResourceView* PSShaderResource; + ID3D11SamplerState* PSSampler; + ID3D11PixelShader* PS; + ID3D11VertexShader* VS; + ID3D11GeometryShader* GS; + UINT PSInstancesCount, VSInstancesCount, GSInstancesCount; + ID3D11ClassInstance *PSInstances[256], *VSInstances[256], *GSInstances[256]; // 256 is max according to PSSetShader documentation + D3D11_PRIMITIVE_TOPOLOGY PrimitiveTopology; + ID3D11Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer; + UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset; + DXGI_FORMAT IndexBufferFormat; + ID3D11InputLayout* InputLayout; + }; + BACKUP_DX11_STATE old = {}; + old.ScissorRectsCount = old.ViewportsCount = D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE; + ctx->RSGetScissorRects(&old.ScissorRectsCount, old.ScissorRects); + ctx->RSGetViewports(&old.ViewportsCount, old.Viewports); + ctx->RSGetState(&old.RS); + ctx->OMGetBlendState(&old.BlendState, old.BlendFactor, &old.SampleMask); + ctx->OMGetDepthStencilState(&old.DepthStencilState, &old.StencilRef); + ctx->PSGetShaderResources(0, 1, &old.PSShaderResource); + ctx->PSGetSamplers(0, 1, &old.PSSampler); + old.PSInstancesCount = old.VSInstancesCount = old.GSInstancesCount = 256; + ctx->PSGetShader(&old.PS, old.PSInstances, &old.PSInstancesCount); + ctx->VSGetShader(&old.VS, old.VSInstances, &old.VSInstancesCount); + ctx->VSGetConstantBuffers(0, 1, &old.VSConstantBuffer); + ctx->GSGetShader(&old.GS, old.GSInstances, &old.GSInstancesCount); + + ctx->IAGetPrimitiveTopology(&old.PrimitiveTopology); + ctx->IAGetIndexBuffer(&old.IndexBuffer, &old.IndexBufferFormat, &old.IndexBufferOffset); + ctx->IAGetVertexBuffers(0, 1, &old.VertexBuffer, &old.VertexBufferStride, &old.VertexBufferOffset); + ctx->IAGetInputLayout(&old.InputLayout); + + // Setup desired DX state + ImGui_ImplDX11_SetupRenderState(draw_data, ctx); + + // Render command lists + // (Because we merged all buffers into a single one, we maintain our own offset into them) + int global_idx_offset = 0; + int global_vtx_offset = 0; + ImVec2 clip_off = draw_data->DisplayPos; + for (int n = 0; n < draw_data->CmdListsCount; n++) + { + const ImDrawList* cmd_list = draw_data->CmdLists[n]; + for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) + { + const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; + if (pcmd->UserCallback != nullptr) + { + // 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_ImplDX11_SetupRenderState(draw_data, ctx); + else + pcmd->UserCallback(cmd_list, pcmd); + } + else + { + // Project scissor/clipping rectangles into framebuffer space + ImVec2 clip_min(pcmd->ClipRect.x - clip_off.x, pcmd->ClipRect.y - clip_off.y); + ImVec2 clip_max(pcmd->ClipRect.z - clip_off.x, pcmd->ClipRect.w - clip_off.y); + if (clip_max.x <= clip_min.x || clip_max.y <= clip_min.y) + continue; + + // Apply scissor/clipping rectangle + const D3D11_RECT r = { (LONG)clip_min.x, (LONG)clip_min.y, (LONG)clip_max.x, (LONG)clip_max.y }; + ctx->RSSetScissorRects(1, &r); + + // Bind texture, Draw + ID3D11ShaderResourceView* texture_srv = (ID3D11ShaderResourceView*)pcmd->GetTexID(); + ctx->PSSetShaderResources(0, 1, &texture_srv); + ctx->DrawIndexed(pcmd->ElemCount, pcmd->IdxOffset + global_idx_offset, pcmd->VtxOffset + global_vtx_offset); + } + } + global_idx_offset += cmd_list->IdxBuffer.Size; + global_vtx_offset += cmd_list->VtxBuffer.Size; + } + + // Restore modified DX state + ctx->RSSetScissorRects(old.ScissorRectsCount, old.ScissorRects); + ctx->RSSetViewports(old.ViewportsCount, old.Viewports); + ctx->RSSetState(old.RS); if (old.RS) old.RS->Release(); + ctx->OMSetBlendState(old.BlendState, old.BlendFactor, old.SampleMask); if (old.BlendState) old.BlendState->Release(); + ctx->OMSetDepthStencilState(old.DepthStencilState, old.StencilRef); if (old.DepthStencilState) old.DepthStencilState->Release(); + ctx->PSSetShaderResources(0, 1, &old.PSShaderResource); if (old.PSShaderResource) old.PSShaderResource->Release(); + ctx->PSSetSamplers(0, 1, &old.PSSampler); if (old.PSSampler) old.PSSampler->Release(); + ctx->PSSetShader(old.PS, old.PSInstances, old.PSInstancesCount); if (old.PS) old.PS->Release(); + for (UINT i = 0; i < old.PSInstancesCount; i++) if (old.PSInstances[i]) old.PSInstances[i]->Release(); + ctx->VSSetShader(old.VS, old.VSInstances, old.VSInstancesCount); if (old.VS) old.VS->Release(); + ctx->VSSetConstantBuffers(0, 1, &old.VSConstantBuffer); if (old.VSConstantBuffer) old.VSConstantBuffer->Release(); + ctx->GSSetShader(old.GS, old.GSInstances, old.GSInstancesCount); if (old.GS) old.GS->Release(); + for (UINT i = 0; i < old.VSInstancesCount; i++) if (old.VSInstances[i]) old.VSInstances[i]->Release(); + ctx->IASetPrimitiveTopology(old.PrimitiveTopology); + ctx->IASetIndexBuffer(old.IndexBuffer, old.IndexBufferFormat, old.IndexBufferOffset); if (old.IndexBuffer) old.IndexBuffer->Release(); + ctx->IASetVertexBuffers(0, 1, &old.VertexBuffer, &old.VertexBufferStride, &old.VertexBufferOffset); if (old.VertexBuffer) old.VertexBuffer->Release(); + ctx->IASetInputLayout(old.InputLayout); if (old.InputLayout) old.InputLayout->Release(); +} + +static void ImGui_ImplDX11_CreateFontsTexture() +{ + // Build texture atlas + ImGuiIO& io = ImGui::GetIO(); + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + unsigned char* pixels; + int width, height; + io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); + + // Upload texture to graphics system + { + D3D11_TEXTURE2D_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.Width = width; + desc.Height = height; + desc.MipLevels = 1; + desc.ArraySize = 1; + desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + desc.SampleDesc.Count = 1; + desc.Usage = D3D11_USAGE_DEFAULT; + desc.BindFlags = D3D11_BIND_SHADER_RESOURCE; + desc.CPUAccessFlags = 0; + + ID3D11Texture2D* pTexture = nullptr; + D3D11_SUBRESOURCE_DATA subResource; + subResource.pSysMem = pixels; + subResource.SysMemPitch = desc.Width * 4; + subResource.SysMemSlicePitch = 0; + bd->pd3dDevice->CreateTexture2D(&desc, &subResource, &pTexture); + IM_ASSERT(pTexture != nullptr); + + // Create texture view + D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc; + ZeroMemory(&srvDesc, sizeof(srvDesc)); + srvDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + srvDesc.ViewDimension = D3D11_SRV_DIMENSION_TEXTURE2D; + srvDesc.Texture2D.MipLevels = desc.MipLevels; + srvDesc.Texture2D.MostDetailedMip = 0; + bd->pd3dDevice->CreateShaderResourceView(pTexture, &srvDesc, &bd->pFontTextureView); + pTexture->Release(); + } + + // Store our identifier + io.Fonts->SetTexID((ImTextureID)bd->pFontTextureView); + + // Create texture sampler + // (Bilinear sampling is required by default. Set 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines' or 'style.AntiAliasedLinesUseTex = false' to allow point/nearest sampling) + { + D3D11_SAMPLER_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; + desc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; + desc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; + desc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; + desc.MipLODBias = 0.f; + desc.ComparisonFunc = D3D11_COMPARISON_ALWAYS; + desc.MinLOD = 0.f; + desc.MaxLOD = 0.f; + bd->pd3dDevice->CreateSamplerState(&desc, &bd->pFontSampler); + } +} + +bool ImGui_ImplDX11_CreateDeviceObjects() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + if (!bd->pd3dDevice) + return false; + if (bd->pFontSampler) + ImGui_ImplDX11_InvalidateDeviceObjects(); + + // By using D3DCompile() from / d3dcompiler.lib, we introduce a dependency to a given version of d3dcompiler_XX.dll (see D3DCOMPILER_DLL_A) + // If you would like to use this DX11 sample code but remove this dependency you can: + // 1) compile once, save the compiled shader blobs into a file or source code and pass them to CreateVertexShader()/CreatePixelShader() [preferred solution] + // 2) use code to detect any version of the DLL and grab a pointer to D3DCompile from the DLL. + // See https://github.com/ocornut/imgui/pull/638 for sources and details. + + // Create the vertex shader + { + static const char* vertexShader = + "cbuffer vertexBuffer : register(b0) \ + {\ + float4x4 ProjectionMatrix; \ + };\ + struct VS_INPUT\ + {\ + float2 pos : POSITION;\ + float4 col : COLOR0;\ + float2 uv : TEXCOORD0;\ + };\ + \ + struct PS_INPUT\ + {\ + float4 pos : SV_POSITION;\ + float4 col : COLOR0;\ + float2 uv : TEXCOORD0;\ + };\ + \ + PS_INPUT main(VS_INPUT input)\ + {\ + PS_INPUT output;\ + output.pos = mul( ProjectionMatrix, float4(input.pos.xy, 0.f, 1.f));\ + output.col = input.col;\ + output.uv = input.uv;\ + return output;\ + }"; + + ID3DBlob* vertexShaderBlob; + if (FAILED(D3DCompile(vertexShader, strlen(vertexShader), nullptr, nullptr, nullptr, "main", "vs_4_0", 0, 0, &vertexShaderBlob, nullptr))) + return false; // NB: Pass ID3DBlob* pErrorBlob to D3DCompile() to get error showing in (const char*)pErrorBlob->GetBufferPointer(). Make sure to Release() the blob! + if (bd->pd3dDevice->CreateVertexShader(vertexShaderBlob->GetBufferPointer(), vertexShaderBlob->GetBufferSize(), nullptr, &bd->pVertexShader) != S_OK) + { + vertexShaderBlob->Release(); + return false; + } + + // Create the input layout + D3D11_INPUT_ELEMENT_DESC local_layout[] = + { + { "POSITION", 0, DXGI_FORMAT_R32G32_FLOAT, 0, (UINT)offsetof(ImDrawVert, pos), D3D11_INPUT_PER_VERTEX_DATA, 0 }, + { "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, (UINT)offsetof(ImDrawVert, uv), D3D11_INPUT_PER_VERTEX_DATA, 0 }, + { "COLOR", 0, DXGI_FORMAT_R8G8B8A8_UNORM, 0, (UINT)offsetof(ImDrawVert, col), D3D11_INPUT_PER_VERTEX_DATA, 0 }, + }; + if (bd->pd3dDevice->CreateInputLayout(local_layout, 3, vertexShaderBlob->GetBufferPointer(), vertexShaderBlob->GetBufferSize(), &bd->pInputLayout) != S_OK) + { + vertexShaderBlob->Release(); + return false; + } + vertexShaderBlob->Release(); + + // Create the constant buffer + { + D3D11_BUFFER_DESC desc; + desc.ByteWidth = sizeof(VERTEX_CONSTANT_BUFFER_DX11); + desc.Usage = D3D11_USAGE_DYNAMIC; + desc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; + desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; + desc.MiscFlags = 0; + bd->pd3dDevice->CreateBuffer(&desc, nullptr, &bd->pVertexConstantBuffer); + } + } + + // Create the pixel shader + { + static const char* pixelShader = + "struct PS_INPUT\ + {\ + float4 pos : SV_POSITION;\ + float4 col : COLOR0;\ + float2 uv : TEXCOORD0;\ + };\ + sampler sampler0;\ + Texture2D texture0;\ + \ + float4 main(PS_INPUT input) : SV_Target\ + {\ + float4 out_col = input.col * texture0.Sample(sampler0, input.uv); \ + return out_col; \ + }"; + + ID3DBlob* pixelShaderBlob; + if (FAILED(D3DCompile(pixelShader, strlen(pixelShader), nullptr, nullptr, nullptr, "main", "ps_4_0", 0, 0, &pixelShaderBlob, nullptr))) + return false; // NB: Pass ID3DBlob* pErrorBlob to D3DCompile() to get error showing in (const char*)pErrorBlob->GetBufferPointer(). Make sure to Release() the blob! + if (bd->pd3dDevice->CreatePixelShader(pixelShaderBlob->GetBufferPointer(), pixelShaderBlob->GetBufferSize(), nullptr, &bd->pPixelShader) != S_OK) + { + pixelShaderBlob->Release(); + return false; + } + pixelShaderBlob->Release(); + } + + // Create the blending setup + { + D3D11_BLEND_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.AlphaToCoverageEnable = false; + desc.RenderTarget[0].BlendEnable = true; + desc.RenderTarget[0].SrcBlend = D3D11_BLEND_SRC_ALPHA; + desc.RenderTarget[0].DestBlend = D3D11_BLEND_INV_SRC_ALPHA; + desc.RenderTarget[0].BlendOp = D3D11_BLEND_OP_ADD; + desc.RenderTarget[0].SrcBlendAlpha = D3D11_BLEND_ONE; + desc.RenderTarget[0].DestBlendAlpha = D3D11_BLEND_INV_SRC_ALPHA; + desc.RenderTarget[0].BlendOpAlpha = D3D11_BLEND_OP_ADD; + desc.RenderTarget[0].RenderTargetWriteMask = D3D11_COLOR_WRITE_ENABLE_ALL; + bd->pd3dDevice->CreateBlendState(&desc, &bd->pBlendState); + } + + // Create the rasterizer state + { + D3D11_RASTERIZER_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.FillMode = D3D11_FILL_SOLID; + desc.CullMode = D3D11_CULL_NONE; + desc.ScissorEnable = true; + desc.DepthClipEnable = true; + bd->pd3dDevice->CreateRasterizerState(&desc, &bd->pRasterizerState); + } + + // Create depth-stencil State + { + D3D11_DEPTH_STENCIL_DESC desc; + ZeroMemory(&desc, sizeof(desc)); + desc.DepthEnable = false; + desc.DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ALL; + desc.DepthFunc = D3D11_COMPARISON_ALWAYS; + desc.StencilEnable = false; + desc.FrontFace.StencilFailOp = desc.FrontFace.StencilDepthFailOp = desc.FrontFace.StencilPassOp = D3D11_STENCIL_OP_KEEP; + desc.FrontFace.StencilFunc = D3D11_COMPARISON_ALWAYS; + desc.BackFace = desc.FrontFace; + bd->pd3dDevice->CreateDepthStencilState(&desc, &bd->pDepthStencilState); + } + + ImGui_ImplDX11_CreateFontsTexture(); + + return true; +} + +void ImGui_ImplDX11_InvalidateDeviceObjects() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + if (!bd->pd3dDevice) + return; + + if (bd->pFontSampler) { bd->pFontSampler->Release(); bd->pFontSampler = nullptr; } + if (bd->pFontTextureView) { bd->pFontTextureView->Release(); bd->pFontTextureView = nullptr; ImGui::GetIO().Fonts->SetTexID(0); } // We copied data->pFontTextureView to io.Fonts->TexID so let's clear that as well. + if (bd->pIB) { bd->pIB->Release(); bd->pIB = nullptr; } + if (bd->pVB) { bd->pVB->Release(); bd->pVB = nullptr; } + if (bd->pBlendState) { bd->pBlendState->Release(); bd->pBlendState = nullptr; } + if (bd->pDepthStencilState) { bd->pDepthStencilState->Release(); bd->pDepthStencilState = nullptr; } + if (bd->pRasterizerState) { bd->pRasterizerState->Release(); bd->pRasterizerState = nullptr; } + if (bd->pPixelShader) { bd->pPixelShader->Release(); bd->pPixelShader = nullptr; } + if (bd->pVertexConstantBuffer) { bd->pVertexConstantBuffer->Release(); bd->pVertexConstantBuffer = nullptr; } + if (bd->pInputLayout) { bd->pInputLayout->Release(); bd->pInputLayout = nullptr; } + if (bd->pVertexShader) { bd->pVertexShader->Release(); bd->pVertexShader = nullptr; } +} + +bool ImGui_ImplDX11_Init(ID3D11Device* device, ID3D11DeviceContext* device_context) +{ + ImGuiIO& io = ImGui::GetIO(); + IMGUI_CHECKVERSION(); + IM_ASSERT(io.BackendRendererUserData == nullptr && "Already initialized a renderer backend!"); + + // Setup backend capabilities flags + ImGui_ImplDX11_Data* bd = IM_NEW(ImGui_ImplDX11_Data)(); + io.BackendRendererUserData = (void*)bd; + io.BackendRendererName = "imgui_impl_dx11"; + io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset; // We can honor the ImDrawCmd::VtxOffset field, allowing for large meshes. + + // Get factory from device + IDXGIDevice* pDXGIDevice = nullptr; + IDXGIAdapter* pDXGIAdapter = nullptr; + IDXGIFactory* pFactory = nullptr; + + if (device->QueryInterface(IID_PPV_ARGS(&pDXGIDevice)) == S_OK) + if (pDXGIDevice->GetParent(IID_PPV_ARGS(&pDXGIAdapter)) == S_OK) + if (pDXGIAdapter->GetParent(IID_PPV_ARGS(&pFactory)) == S_OK) + { + bd->pd3dDevice = device; + bd->pd3dDeviceContext = device_context; + bd->pFactory = pFactory; + } + if (pDXGIDevice) pDXGIDevice->Release(); + if (pDXGIAdapter) pDXGIAdapter->Release(); + bd->pd3dDevice->AddRef(); + bd->pd3dDeviceContext->AddRef(); + + return true; +} + +void ImGui_ImplDX11_Shutdown() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + IM_ASSERT(bd != nullptr && "No renderer backend to shutdown, or already shutdown?"); + ImGuiIO& io = ImGui::GetIO(); + + ImGui_ImplDX11_InvalidateDeviceObjects(); + if (bd->pFactory) { bd->pFactory->Release(); } + if (bd->pd3dDevice) { bd->pd3dDevice->Release(); } + if (bd->pd3dDeviceContext) { bd->pd3dDeviceContext->Release(); } + io.BackendRendererName = nullptr; + io.BackendRendererUserData = nullptr; + io.BackendFlags &= ~ImGuiBackendFlags_RendererHasVtxOffset; + IM_DELETE(bd); +} + +void ImGui_ImplDX11_NewFrame() +{ + ImGui_ImplDX11_Data* bd = ImGui_ImplDX11_GetBackendData(); + IM_ASSERT(bd != nullptr && "Context or backend not initialized! Did you call ImGui_ImplDX11_Init()?"); + + if (!bd->pFontSampler) + ImGui_ImplDX11_CreateDeviceObjects(); +} + +//----------------------------------------------------------------------------- + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/backends/imgui_impl_dx11.h b/external/lumin/thirdparty/imgui/backends/imgui_impl_dx11.h new file mode 100644 index 0000000..20887f3 --- /dev/null +++ b/external/lumin/thirdparty/imgui/backends/imgui_impl_dx11.h @@ -0,0 +1,32 @@ +// dear imgui: Renderer Backend for DirectX11 +// This needs to be used along with a Platform Backend (e.g. Win32) + +// Implemented features: +// [X] Renderer: User texture binding. Use 'ID3D11ShaderResourceView*' as ImTextureID. Read the FAQ about ImTextureID! +// [X] Renderer: Large meshes support (64k+ vertices) with 16-bit indices. + +// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. +// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need. +// Learn about Dear ImGui: +// - FAQ https://dearimgui.com/faq +// - Getting Started https://dearimgui.com/getting-started +// - Documentation https://dearimgui.com/docs (same as your local docs/ folder). +// - Introduction, links and more at the top of imgui.cpp + +#pragma once +#include "imgui.h" // IMGUI_IMPL_API +#ifndef IMGUI_DISABLE + +struct ID3D11Device; +struct ID3D11DeviceContext; + +IMGUI_IMPL_API bool ImGui_ImplDX11_Init(ID3D11Device* device, ID3D11DeviceContext* device_context); +IMGUI_IMPL_API void ImGui_ImplDX11_Shutdown(); +IMGUI_IMPL_API void ImGui_ImplDX11_NewFrame(); +IMGUI_IMPL_API void ImGui_ImplDX11_RenderDrawData(ImDrawData* draw_data); + +// Use if you want to reset your rendering device without losing Dear ImGui state. +IMGUI_IMPL_API void ImGui_ImplDX11_InvalidateDeviceObjects(); +IMGUI_IMPL_API bool ImGui_ImplDX11_CreateDeviceObjects(); + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/backends/imgui_impl_win32.cpp b/external/lumin/thirdparty/imgui/backends/imgui_impl_win32.cpp new file mode 100644 index 0000000..9416b32 --- /dev/null +++ b/external/lumin/thirdparty/imgui/backends/imgui_impl_win32.cpp @@ -0,0 +1,933 @@ +// dear imgui: Platform Backend for Windows (standard windows API for 32-bits AND 64-bits applications) +// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..) + +// Implemented features: +// [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui) +// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen. +// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy VK_* values will also be supported unless IMGUI_DISABLE_OBSOLETE_KEYIO is set] +// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. +// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. + +// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. +// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need. +// Learn about Dear ImGui: +// - FAQ https://dearimgui.com/faq +// - Getting Started https://dearimgui.com/getting-started +// - Documentation https://dearimgui.com/docs (same as your local docs/ folder). +// - Introduction, links and more at the top of imgui.cpp + +// Configuration flags to add in your imconfig file: +//#define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD // Disable gamepad support. This was meaningful before <1.81 but we now load XInput dynamically so the option is now less relevant. + +// CHANGELOG +// (minor and older changes stripped away, please see git history for details) +// 2024-07-08: Inputs: Fixed ImGuiMod_Super being mapped to VK_APPS instead of VK_LWIN||VK_RWIN. (#7768) +// 2023-10-05: Inputs: Added support for extra ImGuiKey values: F13 to F24 function keys, app back/forward keys. +// 2023-09-25: Inputs: Synthesize key-down event on key-up for VK_SNAPSHOT / ImGuiKey_PrintScreen as Windows doesn't emit it (same behavior as GLFW/SDL). +// 2023-09-07: Inputs: Added support for keyboard codepage conversion for when application is compiled in MBCS mode and using a non-Unicode window. +// 2023-04-19: Added ImGui_ImplWin32_InitForOpenGL() to facilitate combining raw Win32/Winapi with OpenGL. (#3218) +// 2023-04-04: Inputs: Added support for io.AddMouseSourceEvent() to discriminate ImGuiMouseSource_Mouse/ImGuiMouseSource_TouchScreen/ImGuiMouseSource_Pen. (#2702) +// 2023-02-15: Inputs: Use WM_NCMOUSEMOVE / WM_NCMOUSELEAVE to track mouse position over non-client area (e.g. OS decorations) when app is not focused. (#6045, #6162) +// 2023-02-02: Inputs: Flipping WM_MOUSEHWHEEL (horizontal mouse-wheel) value to match other backends and offer consistent horizontal scrolling direction. (#4019, #6096, #1463) +// 2022-10-11: Using 'nullptr' instead of 'NULL' as per our switch to C++11. +// 2022-09-28: Inputs: Convert WM_CHAR values with MultiByteToWideChar() when window class was registered as MBCS (not Unicode). +// 2022-09-26: Inputs: Renamed ImGuiKey_ModXXX introduced in 1.87 to ImGuiMod_XXX (old names still supported). +// 2022-01-26: Inputs: replaced short-lived io.AddKeyModsEvent() (added two weeks ago) with io.AddKeyEvent() using ImGuiKey_ModXXX flags. Sorry for the confusion. +// 2021-01-20: Inputs: calling new io.AddKeyAnalogEvent() for gamepad support, instead of writing directly to io.NavInputs[]. +// 2022-01-17: Inputs: calling new io.AddMousePosEvent(), io.AddMouseButtonEvent(), io.AddMouseWheelEvent() API (1.87+). +// 2022-01-17: Inputs: always update key mods next and before a key event (not in NewFrame) to fix input queue with very low framerates. +// 2022-01-12: Inputs: Update mouse inputs using WM_MOUSEMOVE/WM_MOUSELEAVE + fallback to provide it when focused but not hovered/captured. More standard and will allow us to pass it to future input queue API. +// 2022-01-12: Inputs: Maintain our own copy of MouseButtonsDown mask instead of using ImGui::IsAnyMouseDown() which will be obsoleted. +// 2022-01-10: Inputs: calling new io.AddKeyEvent(), io.AddKeyModsEvent() + io.SetKeyEventNativeData() API (1.87+). Support for full ImGuiKey range. +// 2021-12-16: Inputs: Fill VK_LCONTROL/VK_RCONTROL/VK_LSHIFT/VK_RSHIFT/VK_LMENU/VK_RMENU for completeness. +// 2021-08-17: Calling io.AddFocusEvent() on WM_SETFOCUS/WM_KILLFOCUS messages. +// 2021-08-02: Inputs: Fixed keyboard modifiers being reported when host window doesn't have focus. +// 2021-07-29: Inputs: MousePos is correctly reported when the host platform window is hovered but not focused (using TrackMouseEvent() to receive WM_MOUSELEAVE events). +// 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX). +// 2021-06-08: Fixed ImGui_ImplWin32_EnableDpiAwareness() and ImGui_ImplWin32_GetDpiScaleForMonitor() to handle Windows 8.1/10 features without a manifest (per-monitor DPI, and properly calls SetProcessDpiAwareness() on 8.1). +// 2021-03-23: Inputs: Clearing keyboard down array when losing focus (WM_KILLFOCUS). +// 2021-02-18: Added ImGui_ImplWin32_EnableAlphaCompositing(). Non Visual Studio users will need to link with dwmapi.lib (MinGW/gcc: use -ldwmapi). +// 2021-02-17: Fixed ImGui_ImplWin32_EnableDpiAwareness() attempting to get SetProcessDpiAwareness from shcore.dll on Windows 8 whereas it is only supported on Windows 8.1. +// 2021-01-25: Inputs: Dynamically loading XInput DLL. +// 2020-12-04: Misc: Fixed setting of io.DisplaySize to invalid/uninitialized data when after hwnd has been closed. +// 2020-03-03: Inputs: Calling AddInputCharacterUTF16() to support surrogate pairs leading to codepoint >= 0x10000 (for more complete CJK inputs) +// 2020-02-17: Added ImGui_ImplWin32_EnableDpiAwareness(), ImGui_ImplWin32_GetDpiScaleForHwnd(), ImGui_ImplWin32_GetDpiScaleForMonitor() helper functions. +// 2020-01-14: Inputs: Added support for #define IMGUI_IMPL_WIN32_DISABLE_GAMEPAD/IMGUI_IMPL_WIN32_DISABLE_LINKING_XINPUT. +// 2019-12-05: Inputs: Added support for ImGuiMouseCursor_NotAllowed mouse cursor. +// 2019-05-11: Inputs: Don't filter value from WM_CHAR before calling AddInputCharacter(). +// 2019-01-17: Misc: Using GetForegroundWindow()+IsChild() instead of GetActiveWindow() to be compatible with windows created in a different thread or parent. +// 2019-01-17: Inputs: Added support for mouse buttons 4 and 5 via WM_XBUTTON* messages. +// 2019-01-15: Inputs: Added support for XInput gamepads (if ImGuiConfigFlags_NavEnableGamepad is set by user application). +// 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window. +// 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor. +// 2018-06-10: Inputs: Fixed handling of mouse wheel messages to support fine position messages (typically sent by track-pads). +// 2018-06-08: Misc: Extracted imgui_impl_win32.cpp/.h away from the old combined DX9/DX10/DX11/DX12 examples. +// 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors and ImGuiBackendFlags_HasSetMousePos flags + honor ImGuiConfigFlags_NoMouseCursorChange flag. +// 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value and WM_SETCURSOR message handling). +// 2018-02-06: Inputs: Added mapping for ImGuiKey_Space. +// 2018-02-06: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set). +// 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-01-20: Inputs: Added Horizontal Mouse Wheel support. +// 2018-01-08: Inputs: Added mapping for ImGuiKey_Insert. +// 2018-01-05: Inputs: Added WM_LBUTTONDBLCLK double-click handlers for window classes with the CS_DBLCLKS flag. +// 2017-10-23: Inputs: Added WM_SYSKEYDOWN / WM_SYSKEYUP handlers so e.g. the VK_MENU key can be read. +// 2017-10-23: Inputs: Using Win32 ::SetCapture/::GetCapture() to retrieve mouse positions outside the client area when dragging. +// 2016-11-12: Inputs: Only call Win32 ::SetCursor(nullptr) when io.MouseDrawCursor is set. + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_impl_win32.h" +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include +#include // GET_X_LPARAM(), GET_Y_LPARAM() +#include +#include + +// Using XInput for gamepad (will load DLL dynamically) +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD +#include +typedef DWORD(WINAPI* PFN_XInputGetCapabilities)(DWORD, DWORD, XINPUT_CAPABILITIES*); +typedef DWORD(WINAPI* PFN_XInputGetState)(DWORD, XINPUT_STATE*); +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wcast-function-type" // warning: cast between incompatible function types (for loader) +#endif +#if defined(__GNUC__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wcast-function-type" // warning: cast between incompatible function types (for loader) +#endif + +struct ImGui_ImplWin32_Data +{ + HWND hWnd; + HWND MouseHwnd; + int MouseTrackedArea; // 0: not tracked, 1: client area, 2: non-client area + int MouseButtonsDown; + INT64 Time; + INT64 TicksPerSecond; + ImGuiMouseCursor LastMouseCursor; + UINT32 KeyboardCodePage; + +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + bool HasGamepad; + bool WantUpdateHasGamepad; + HMODULE XInputDLL; + PFN_XInputGetCapabilities XInputGetCapabilities; + PFN_XInputGetState XInputGetState; +#endif + + ImGui_ImplWin32_Data() { memset((void*)this, 0, sizeof(*this)); } +}; + +// Backend data stored in io.BackendPlatformUserData to allow support for multiple Dear ImGui contexts +// It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts. +// FIXME: multi-context support is not well tested and probably dysfunctional in this backend. +// FIXME: some shared resources (mouse cursor shape, gamepad) are mishandled when using multi-context. +static ImGui_ImplWin32_Data* ImGui_ImplWin32_GetBackendData() +{ + return ImGui::GetCurrentContext() ? (ImGui_ImplWin32_Data*)ImGui::GetIO().BackendPlatformUserData : nullptr; +} + +// Functions +static void ImGui_ImplWin32_UpdateKeyboardCodePage() +{ + // Retrieve keyboard code page, required for handling of non-Unicode Windows. + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + HKL keyboard_layout = ::GetKeyboardLayout(0); + LCID keyboard_lcid = MAKELCID(HIWORD(keyboard_layout), SORT_DEFAULT); + if (::GetLocaleInfoA(keyboard_lcid, (LOCALE_RETURN_NUMBER | LOCALE_IDEFAULTANSICODEPAGE), (LPSTR)&bd->KeyboardCodePage, sizeof(bd->KeyboardCodePage)) == 0) + bd->KeyboardCodePage = CP_ACP; // Fallback to default ANSI code page when fails. +} + +static bool ImGui_ImplWin32_InitEx(void* hwnd, bool platform_has_own_dc) +{ + ImGuiIO& io = ImGui::GetIO(); + IMGUI_CHECKVERSION(); + IM_ASSERT(io.BackendPlatformUserData == nullptr && "Already initialized a platform backend!"); + + INT64 perf_frequency, perf_counter; + if (!::QueryPerformanceFrequency((LARGE_INTEGER*)&perf_frequency)) + return false; + if (!::QueryPerformanceCounter((LARGE_INTEGER*)&perf_counter)) + return false; + + // Setup backend capabilities flags + ImGui_ImplWin32_Data* bd = IM_NEW(ImGui_ImplWin32_Data)(); + io.BackendPlatformUserData = (void*)bd; + io.BackendPlatformName = "imgui_impl_win32"; + io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) + io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used) + + bd->hWnd = (HWND)hwnd; + bd->TicksPerSecond = perf_frequency; + bd->Time = perf_counter; + bd->LastMouseCursor = ImGuiMouseCursor_COUNT; + ImGui_ImplWin32_UpdateKeyboardCodePage(); + + // Set platform dependent data in viewport + ImGuiViewport* main_viewport = ImGui::GetMainViewport(); + main_viewport->PlatformHandle = main_viewport->PlatformHandleRaw = (void*)bd->hWnd; + IM_UNUSED(platform_has_own_dc); // Used in 'docking' branch + + // Dynamically load XInput library +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + bd->WantUpdateHasGamepad = true; + const char* xinput_dll_names[] = + { + "xinput1_4.dll", // Windows 8+ + "xinput1_3.dll", // DirectX SDK + "xinput9_1_0.dll", // Windows Vista, Windows 7 + "xinput1_2.dll", // DirectX SDK + "xinput1_1.dll" // DirectX SDK + }; + for (int n = 0; n < IM_ARRAYSIZE(xinput_dll_names); n++) + if (HMODULE dll = ::LoadLibraryA(xinput_dll_names[n])) + { + bd->XInputDLL = dll; + bd->XInputGetCapabilities = (PFN_XInputGetCapabilities)::GetProcAddress(dll, "XInputGetCapabilities"); + bd->XInputGetState = (PFN_XInputGetState)::GetProcAddress(dll, "XInputGetState"); + break; + } +#endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + + return true; +} + +IMGUI_IMPL_API bool ImGui_ImplWin32_Init(void* hwnd) +{ + return ImGui_ImplWin32_InitEx(hwnd, false); +} + +IMGUI_IMPL_API bool ImGui_ImplWin32_InitForOpenGL(void* hwnd) +{ + // OpenGL needs CS_OWNDC + return ImGui_ImplWin32_InitEx(hwnd, true); +} + +void ImGui_ImplWin32_Shutdown() +{ + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + IM_ASSERT(bd != nullptr && "No platform backend to shutdown, or already shutdown?"); + ImGuiIO& io = ImGui::GetIO(); + + // Unload XInput library +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + if (bd->XInputDLL) + ::FreeLibrary(bd->XInputDLL); +#endif // IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + + io.BackendPlatformName = nullptr; + io.BackendPlatformUserData = nullptr; + io.BackendFlags &= ~(ImGuiBackendFlags_HasMouseCursors | ImGuiBackendFlags_HasSetMousePos | ImGuiBackendFlags_HasGamepad); + IM_DELETE(bd); +} + +static bool ImGui_ImplWin32_UpdateMouseCursor() +{ + ImGuiIO& io = ImGui::GetIO(); + if (io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) + return false; + + ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); + if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor) + { + // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor + ::SetCursor(nullptr); + } + else + { + // Show OS mouse cursor + LPTSTR win32_cursor = IDC_ARROW; + switch (imgui_cursor) + { + case ImGuiMouseCursor_Arrow: win32_cursor = IDC_ARROW; break; + case ImGuiMouseCursor_TextInput: win32_cursor = IDC_IBEAM; break; + case ImGuiMouseCursor_ResizeAll: win32_cursor = IDC_SIZEALL; break; + case ImGuiMouseCursor_ResizeEW: win32_cursor = IDC_SIZEWE; break; + case ImGuiMouseCursor_ResizeNS: win32_cursor = IDC_SIZENS; break; + case ImGuiMouseCursor_ResizeNESW: win32_cursor = IDC_SIZENESW; break; + case ImGuiMouseCursor_ResizeNWSE: win32_cursor = IDC_SIZENWSE; break; + case ImGuiMouseCursor_Hand: win32_cursor = IDC_HAND; break; + case ImGuiMouseCursor_NotAllowed: win32_cursor = IDC_NO; break; + } + ::SetCursor(::LoadCursor(nullptr, win32_cursor)); + } + return true; +} + +static bool IsVkDown(int vk) +{ + return (::GetKeyState(vk) & 0x8000) != 0; +} + +static void ImGui_ImplWin32_AddKeyEvent(ImGuiKey key, bool down, int native_keycode, int native_scancode = -1) +{ + ImGuiIO& io = ImGui::GetIO(); + io.AddKeyEvent(key, down); + io.SetKeyEventNativeData(key, native_keycode, native_scancode); // To support legacy indexing (<1.87 user code) + IM_UNUSED(native_scancode); +} + +static void ImGui_ImplWin32_ProcessKeyEventsWorkarounds() +{ + // Left & right Shift keys: when both are pressed together, Windows tend to not generate the WM_KEYUP event for the first released one. + if (ImGui::IsKeyDown(ImGuiKey_LeftShift) && !IsVkDown(VK_LSHIFT)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftShift, false, VK_LSHIFT); + if (ImGui::IsKeyDown(ImGuiKey_RightShift) && !IsVkDown(VK_RSHIFT)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightShift, false, VK_RSHIFT); + + // Sometimes WM_KEYUP for Win key is not passed down to the app (e.g. for Win+V on some setups, according to GLFW). + if (ImGui::IsKeyDown(ImGuiKey_LeftSuper) && !IsVkDown(VK_LWIN)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftSuper, false, VK_LWIN); + if (ImGui::IsKeyDown(ImGuiKey_RightSuper) && !IsVkDown(VK_RWIN)) + ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightSuper, false, VK_RWIN); +} + +static void ImGui_ImplWin32_UpdateKeyModifiers() +{ + ImGuiIO& io = ImGui::GetIO(); + io.AddKeyEvent(ImGuiMod_Ctrl, IsVkDown(VK_CONTROL)); + io.AddKeyEvent(ImGuiMod_Shift, IsVkDown(VK_SHIFT)); + io.AddKeyEvent(ImGuiMod_Alt, IsVkDown(VK_MENU)); + io.AddKeyEvent(ImGuiMod_Super, IsVkDown(VK_LWIN) || IsVkDown(VK_RWIN)); +} + +static void ImGui_ImplWin32_UpdateMouseData() +{ + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + ImGuiIO& io = ImGui::GetIO(); + IM_ASSERT(bd->hWnd != 0); + + HWND focused_window = ::GetForegroundWindow(); + const bool is_app_focused = (focused_window == bd->hWnd); + if (is_app_focused) + { + // (Optional) Set OS mouse position from Dear ImGui if requested (rarely used, only when io.ConfigNavMoveSetMousePos is enabled by user) + if (io.WantSetMousePos) + { + POINT pos = { (int)io.MousePos.x, (int)io.MousePos.y }; + if (::ClientToScreen(bd->hWnd, &pos)) + ::SetCursorPos(pos.x, pos.y); + } + + // (Optional) Fallback to provide mouse position when focused (WM_MOUSEMOVE already provides this when hovered or captured) + // This also fills a short gap when clicking non-client area: WM_NCMOUSELEAVE -> modal OS move -> gap -> WM_NCMOUSEMOVE + if (!io.WantSetMousePos && bd->MouseTrackedArea == 0) + { + POINT pos; + if (::GetCursorPos(&pos) && ::ScreenToClient(bd->hWnd, &pos)) + io.AddMousePosEvent((float)pos.x, (float)pos.y); + } + } +} + +// Gamepad navigation mapping +static void ImGui_ImplWin32_UpdateGamepads() +{ +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + ImGuiIO& io = ImGui::GetIO(); + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + //if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) // FIXME: Technically feeding gamepad shouldn't depend on this now that they are regular inputs. + // return; + + // Calling XInputGetState() every frame on disconnected gamepads is unfortunately too slow. + // Instead we refresh gamepad availability by calling XInputGetCapabilities() _only_ after receiving WM_DEVICECHANGE. + if (bd->WantUpdateHasGamepad) + { + XINPUT_CAPABILITIES caps = {}; + bd->HasGamepad = bd->XInputGetCapabilities ? (bd->XInputGetCapabilities(0, XINPUT_FLAG_GAMEPAD, &caps) == ERROR_SUCCESS) : false; + bd->WantUpdateHasGamepad = false; + } + + io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad; + XINPUT_STATE xinput_state; + XINPUT_GAMEPAD& gamepad = xinput_state.Gamepad; + if (!bd->HasGamepad || bd->XInputGetState == nullptr || bd->XInputGetState(0, &xinput_state) != ERROR_SUCCESS) + return; + io.BackendFlags |= ImGuiBackendFlags_HasGamepad; + +#define IM_SATURATE(V) (V < 0.0f ? 0.0f : V > 1.0f ? 1.0f : V) +#define MAP_BUTTON(KEY_NO, BUTTON_ENUM) { io.AddKeyEvent(KEY_NO, (gamepad.wButtons & BUTTON_ENUM) != 0); } +#define MAP_ANALOG(KEY_NO, VALUE, V0, V1) { float vn = (float)(VALUE - V0) / (float)(V1 - V0); io.AddKeyAnalogEvent(KEY_NO, vn > 0.10f, IM_SATURATE(vn)); } + MAP_BUTTON(ImGuiKey_GamepadStart, XINPUT_GAMEPAD_START); + MAP_BUTTON(ImGuiKey_GamepadBack, XINPUT_GAMEPAD_BACK); + MAP_BUTTON(ImGuiKey_GamepadFaceLeft, XINPUT_GAMEPAD_X); + MAP_BUTTON(ImGuiKey_GamepadFaceRight, XINPUT_GAMEPAD_B); + MAP_BUTTON(ImGuiKey_GamepadFaceUp, XINPUT_GAMEPAD_Y); + MAP_BUTTON(ImGuiKey_GamepadFaceDown, XINPUT_GAMEPAD_A); + MAP_BUTTON(ImGuiKey_GamepadDpadLeft, XINPUT_GAMEPAD_DPAD_LEFT); + MAP_BUTTON(ImGuiKey_GamepadDpadRight, XINPUT_GAMEPAD_DPAD_RIGHT); + MAP_BUTTON(ImGuiKey_GamepadDpadUp, XINPUT_GAMEPAD_DPAD_UP); + MAP_BUTTON(ImGuiKey_GamepadDpadDown, XINPUT_GAMEPAD_DPAD_DOWN); + MAP_BUTTON(ImGuiKey_GamepadL1, XINPUT_GAMEPAD_LEFT_SHOULDER); + MAP_BUTTON(ImGuiKey_GamepadR1, XINPUT_GAMEPAD_RIGHT_SHOULDER); + MAP_ANALOG(ImGuiKey_GamepadL2, gamepad.bLeftTrigger, XINPUT_GAMEPAD_TRIGGER_THRESHOLD, 255); + MAP_ANALOG(ImGuiKey_GamepadR2, gamepad.bRightTrigger, XINPUT_GAMEPAD_TRIGGER_THRESHOLD, 255); + MAP_BUTTON(ImGuiKey_GamepadL3, XINPUT_GAMEPAD_LEFT_THUMB); + MAP_BUTTON(ImGuiKey_GamepadR3, XINPUT_GAMEPAD_RIGHT_THUMB); + MAP_ANALOG(ImGuiKey_GamepadLStickLeft, gamepad.sThumbLX, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); + MAP_ANALOG(ImGuiKey_GamepadLStickRight, gamepad.sThumbLX, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadLStickUp, gamepad.sThumbLY, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadLStickDown, gamepad.sThumbLY, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); + MAP_ANALOG(ImGuiKey_GamepadRStickLeft, gamepad.sThumbRX, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); + MAP_ANALOG(ImGuiKey_GamepadRStickRight, gamepad.sThumbRX, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadRStickUp, gamepad.sThumbRY, +XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, +32767); + MAP_ANALOG(ImGuiKey_GamepadRStickDown, gamepad.sThumbRY, -XINPUT_GAMEPAD_LEFT_THUMB_DEADZONE, -32768); +#undef MAP_BUTTON +#undef MAP_ANALOG +#endif // #ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD +} + +void ImGui_ImplWin32_NewFrame() +{ + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + IM_ASSERT(bd != nullptr && "Context or backend not initialized? Did you call ImGui_ImplWin32_Init()?"); + ImGuiIO& io = ImGui::GetIO(); + + // Setup display size (every frame to accommodate for window resizing) + RECT rect = { 0, 0, 0, 0 }; + ::GetClientRect(bd->hWnd, &rect); + io.DisplaySize = ImVec2((float)(rect.right - rect.left), (float)(rect.bottom - rect.top)); + + // Setup time step + INT64 current_time = 0; + ::QueryPerformanceCounter((LARGE_INTEGER*)¤t_time); + io.DeltaTime = (float)(current_time - bd->Time) / bd->TicksPerSecond; + bd->Time = current_time; + + // Update OS mouse position + ImGui_ImplWin32_UpdateMouseData(); + + // Process workarounds for known Windows key handling issues + ImGui_ImplWin32_ProcessKeyEventsWorkarounds(); + + // Update OS mouse cursor with the cursor requested by imgui + ImGuiMouseCursor mouse_cursor = io.MouseDrawCursor ? ImGuiMouseCursor_None : ImGui::GetMouseCursor(); + if (bd->LastMouseCursor != mouse_cursor) + { + bd->LastMouseCursor = mouse_cursor; + ImGui_ImplWin32_UpdateMouseCursor(); + } + + // Update game controllers (if enabled and available) + ImGui_ImplWin32_UpdateGamepads(); +} + +// Map VK_xxx to ImGuiKey_xxx. +// Not static to allow third-party code to use that if they want to (but undocumented) +ImGuiKey ImGui_ImplWin32_KeyEventToImGuiKey(WPARAM wParam, LPARAM lParam) +{ + // There is no distinct VK_xxx for keypad enter, instead it is VK_RETURN + KF_EXTENDED. + if ((wParam == VK_RETURN) && (HIWORD(lParam) & KF_EXTENDED)) + return ImGuiKey_KeypadEnter; + + switch (wParam) + { + case VK_TAB: return ImGuiKey_Tab; + case VK_LEFT: return ImGuiKey_LeftArrow; + case VK_RIGHT: return ImGuiKey_RightArrow; + case VK_UP: return ImGuiKey_UpArrow; + case VK_DOWN: return ImGuiKey_DownArrow; + case VK_PRIOR: return ImGuiKey_PageUp; + case VK_NEXT: return ImGuiKey_PageDown; + case VK_HOME: return ImGuiKey_Home; + case VK_END: return ImGuiKey_End; + case VK_INSERT: return ImGuiKey_Insert; + case VK_DELETE: return ImGuiKey_Delete; + case VK_BACK: return ImGuiKey_Backspace; + case VK_SPACE: return ImGuiKey_Space; + case VK_RETURN: return ImGuiKey_Enter; + case VK_ESCAPE: return ImGuiKey_Escape; + case VK_OEM_7: return ImGuiKey_Apostrophe; + case VK_OEM_COMMA: return ImGuiKey_Comma; + case VK_OEM_MINUS: return ImGuiKey_Minus; + case VK_OEM_PERIOD: return ImGuiKey_Period; + case VK_OEM_2: return ImGuiKey_Slash; + case VK_OEM_1: return ImGuiKey_Semicolon; + case VK_OEM_PLUS: return ImGuiKey_Equal; + case VK_OEM_4: return ImGuiKey_LeftBracket; + case VK_OEM_5: return ImGuiKey_Backslash; + case VK_OEM_6: return ImGuiKey_RightBracket; + case VK_OEM_3: return ImGuiKey_GraveAccent; + case VK_CAPITAL: return ImGuiKey_CapsLock; + case VK_SCROLL: return ImGuiKey_ScrollLock; + case VK_NUMLOCK: return ImGuiKey_NumLock; + case VK_SNAPSHOT: return ImGuiKey_PrintScreen; + case VK_PAUSE: return ImGuiKey_Pause; + case VK_NUMPAD0: return ImGuiKey_Keypad0; + case VK_NUMPAD1: return ImGuiKey_Keypad1; + case VK_NUMPAD2: return ImGuiKey_Keypad2; + case VK_NUMPAD3: return ImGuiKey_Keypad3; + case VK_NUMPAD4: return ImGuiKey_Keypad4; + case VK_NUMPAD5: return ImGuiKey_Keypad5; + case VK_NUMPAD6: return ImGuiKey_Keypad6; + case VK_NUMPAD7: return ImGuiKey_Keypad7; + case VK_NUMPAD8: return ImGuiKey_Keypad8; + case VK_NUMPAD9: return ImGuiKey_Keypad9; + case VK_DECIMAL: return ImGuiKey_KeypadDecimal; + case VK_DIVIDE: return ImGuiKey_KeypadDivide; + case VK_MULTIPLY: return ImGuiKey_KeypadMultiply; + case VK_SUBTRACT: return ImGuiKey_KeypadSubtract; + case VK_ADD: return ImGuiKey_KeypadAdd; + case VK_LSHIFT: return ImGuiKey_LeftShift; + case VK_LCONTROL: return ImGuiKey_LeftCtrl; + case VK_LMENU: return ImGuiKey_LeftAlt; + case VK_LWIN: return ImGuiKey_LeftSuper; + case VK_RSHIFT: return ImGuiKey_RightShift; + case VK_RCONTROL: return ImGuiKey_RightCtrl; + case VK_RMENU: return ImGuiKey_RightAlt; + case VK_RWIN: return ImGuiKey_RightSuper; + case VK_APPS: return ImGuiKey_Menu; + case '0': return ImGuiKey_0; + case '1': return ImGuiKey_1; + case '2': return ImGuiKey_2; + case '3': return ImGuiKey_3; + case '4': return ImGuiKey_4; + case '5': return ImGuiKey_5; + case '6': return ImGuiKey_6; + case '7': return ImGuiKey_7; + case '8': return ImGuiKey_8; + case '9': return ImGuiKey_9; + case 'A': return ImGuiKey_A; + case 'B': return ImGuiKey_B; + case 'C': return ImGuiKey_C; + case 'D': return ImGuiKey_D; + case 'E': return ImGuiKey_E; + case 'F': return ImGuiKey_F; + case 'G': return ImGuiKey_G; + case 'H': return ImGuiKey_H; + case 'I': return ImGuiKey_I; + case 'J': return ImGuiKey_J; + case 'K': return ImGuiKey_K; + case 'L': return ImGuiKey_L; + case 'M': return ImGuiKey_M; + case 'N': return ImGuiKey_N; + case 'O': return ImGuiKey_O; + case 'P': return ImGuiKey_P; + case 'Q': return ImGuiKey_Q; + case 'R': return ImGuiKey_R; + case 'S': return ImGuiKey_S; + case 'T': return ImGuiKey_T; + case 'U': return ImGuiKey_U; + case 'V': return ImGuiKey_V; + case 'W': return ImGuiKey_W; + case 'X': return ImGuiKey_X; + case 'Y': return ImGuiKey_Y; + case 'Z': return ImGuiKey_Z; + case VK_F1: return ImGuiKey_F1; + case VK_F2: return ImGuiKey_F2; + case VK_F3: return ImGuiKey_F3; + case VK_F4: return ImGuiKey_F4; + case VK_F5: return ImGuiKey_F5; + case VK_F6: return ImGuiKey_F6; + case VK_F7: return ImGuiKey_F7; + case VK_F8: return ImGuiKey_F8; + case VK_F9: return ImGuiKey_F9; + case VK_F10: return ImGuiKey_F10; + case VK_F11: return ImGuiKey_F11; + case VK_F12: return ImGuiKey_F12; + case VK_F13: return ImGuiKey_F13; + case VK_F14: return ImGuiKey_F14; + case VK_F15: return ImGuiKey_F15; + case VK_F16: return ImGuiKey_F16; + case VK_F17: return ImGuiKey_F17; + case VK_F18: return ImGuiKey_F18; + case VK_F19: return ImGuiKey_F19; + case VK_F20: return ImGuiKey_F20; + case VK_F21: return ImGuiKey_F21; + case VK_F22: return ImGuiKey_F22; + case VK_F23: return ImGuiKey_F23; + case VK_F24: return ImGuiKey_F24; + case VK_BROWSER_BACK: return ImGuiKey_AppBack; + case VK_BROWSER_FORWARD: return ImGuiKey_AppForward; + default: return ImGuiKey_None; + } +} + +// Allow compilation with old Windows SDK. MinGW doesn't have default _WIN32_WINNT/WINVER versions. +#ifndef WM_MOUSEHWHEEL +#define WM_MOUSEHWHEEL 0x020E +#endif +#ifndef DBT_DEVNODES_CHANGED +#define DBT_DEVNODES_CHANGED 0x0007 +#endif + +// Win32 message handler (process Win32 mouse/keyboard inputs, etc.) +// Call from your application's message handler. Keep calling your message handler unless this function returns TRUE. +// When implementing your own backend, 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, or clear/overwrite your copy of the mouse data. +// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application, or clear/overwrite your copy of the keyboard data. +// Generally you may always pass all inputs to Dear ImGui, and hide them from your application based on those two flags. +// PS: In this Win32 handler, we use the capture API (GetCapture/SetCapture/ReleaseCapture) to be able to read mouse coordinates when dragging mouse outside of our window bounds. +// PS: We treat DBLCLK messages as regular mouse down messages, so this code will work on windows classes that have the CS_DBLCLKS flag set. Our own example app code doesn't set this flag. +#if 0 +// Copy this line into your .cpp file to forward declare the function. +extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); +#endif + +// See https://learn.microsoft.com/en-us/windows/win32/tablet/system-events-and-mouse-messages +// Prefer to call this at the top of the message handler to avoid the possibility of other Win32 calls interfering with this. +static ImGuiMouseSource GetMouseSourceFromMessageExtraInfo() +{ + LPARAM extra_info = ::GetMessageExtraInfo(); + if ((extra_info & 0xFFFFFF80) == 0xFF515700) + return ImGuiMouseSource_Pen; + if ((extra_info & 0xFFFFFF80) == 0xFF515780) + return ImGuiMouseSource_TouchScreen; + return ImGuiMouseSource_Mouse; +} + +IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) +{ + // Most backends don't have silent checks like this one, but we need it because WndProc are called early in CreateWindow(). + // We silently allow both context or just only backend data to be nullptr. + ImGui_ImplWin32_Data* bd = ImGui_ImplWin32_GetBackendData(); + if (bd == nullptr) + return 0; + ImGuiIO& io = ImGui::GetIO(); + + switch (msg) + { + case WM_MOUSEMOVE: + case WM_NCMOUSEMOVE: + { + // We need to call TrackMouseEvent in order to receive WM_MOUSELEAVE events + ImGuiMouseSource mouse_source = GetMouseSourceFromMessageExtraInfo(); + const int area = (msg == WM_MOUSEMOVE) ? 1 : 2; + bd->MouseHwnd = hwnd; + if (bd->MouseTrackedArea != area) + { + TRACKMOUSEEVENT tme_cancel = { sizeof(tme_cancel), TME_CANCEL, hwnd, 0 }; + TRACKMOUSEEVENT tme_track = { sizeof(tme_track), (DWORD)((area == 2) ? (TME_LEAVE | TME_NONCLIENT) : TME_LEAVE), hwnd, 0 }; + if (bd->MouseTrackedArea != 0) + ::TrackMouseEvent(&tme_cancel); + ::TrackMouseEvent(&tme_track); + bd->MouseTrackedArea = area; + } + POINT mouse_pos = { (LONG)GET_X_LPARAM(lParam), (LONG)GET_Y_LPARAM(lParam) }; + if (msg == WM_NCMOUSEMOVE && ::ScreenToClient(hwnd, &mouse_pos) == FALSE) // WM_NCMOUSEMOVE are provided in absolute coordinates. + return 0; + io.AddMouseSourceEvent(mouse_source); + io.AddMousePosEvent((float)mouse_pos.x, (float)mouse_pos.y); + return 0; + } + case WM_MOUSELEAVE: + case WM_NCMOUSELEAVE: + { + const int area = (msg == WM_MOUSELEAVE) ? 1 : 2; + if (bd->MouseTrackedArea == area) + { + if (bd->MouseHwnd == hwnd) + bd->MouseHwnd = nullptr; + bd->MouseTrackedArea = 0; + io.AddMousePosEvent(-FLT_MAX, -FLT_MAX); + } + return 0; + } + case WM_DESTROY: + if (bd->MouseHwnd == hwnd && bd->MouseTrackedArea != 0) + { + TRACKMOUSEEVENT tme_cancel = { sizeof(tme_cancel), TME_CANCEL, hwnd, 0 }; + ::TrackMouseEvent(&tme_cancel); + bd->MouseHwnd = nullptr; + bd->MouseTrackedArea = 0; + io.AddMousePosEvent(-FLT_MAX, -FLT_MAX); + } + return 0; + case WM_LBUTTONDOWN: case WM_LBUTTONDBLCLK: + case WM_RBUTTONDOWN: case WM_RBUTTONDBLCLK: + case WM_MBUTTONDOWN: case WM_MBUTTONDBLCLK: + case WM_XBUTTONDOWN: case WM_XBUTTONDBLCLK: + { + ImGuiMouseSource mouse_source = GetMouseSourceFromMessageExtraInfo(); + int button = 0; + if (msg == WM_LBUTTONDOWN || msg == WM_LBUTTONDBLCLK) { button = 0; } + if (msg == WM_RBUTTONDOWN || msg == WM_RBUTTONDBLCLK) { button = 1; } + if (msg == WM_MBUTTONDOWN || msg == WM_MBUTTONDBLCLK) { button = 2; } + if (msg == WM_XBUTTONDOWN || msg == WM_XBUTTONDBLCLK) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; } + if (bd->MouseButtonsDown == 0 && ::GetCapture() == nullptr) + ::SetCapture(hwnd); + bd->MouseButtonsDown |= 1 << button; + io.AddMouseSourceEvent(mouse_source); + io.AddMouseButtonEvent(button, true); + return 0; + } + case WM_LBUTTONUP: + case WM_RBUTTONUP: + case WM_MBUTTONUP: + case WM_XBUTTONUP: + { + ImGuiMouseSource mouse_source = GetMouseSourceFromMessageExtraInfo(); + int button = 0; + if (msg == WM_LBUTTONUP) { button = 0; } + if (msg == WM_RBUTTONUP) { button = 1; } + if (msg == WM_MBUTTONUP) { button = 2; } + if (msg == WM_XBUTTONUP) { button = (GET_XBUTTON_WPARAM(wParam) == XBUTTON1) ? 3 : 4; } + bd->MouseButtonsDown &= ~(1 << button); + if (bd->MouseButtonsDown == 0 && ::GetCapture() == hwnd) + ::ReleaseCapture(); + io.AddMouseSourceEvent(mouse_source); + io.AddMouseButtonEvent(button, false); + return 0; + } + case WM_MOUSEWHEEL: + io.AddMouseWheelEvent(0.0f, (float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA); + return 0; + case WM_MOUSEHWHEEL: + io.AddMouseWheelEvent(-(float)GET_WHEEL_DELTA_WPARAM(wParam) / (float)WHEEL_DELTA, 0.0f); + return 0; + case WM_KEYDOWN: + case WM_KEYUP: + case WM_SYSKEYDOWN: + case WM_SYSKEYUP: + { + const bool is_key_down = (msg == WM_KEYDOWN || msg == WM_SYSKEYDOWN); + if (wParam < 256) + { + // Submit modifiers + ImGui_ImplWin32_UpdateKeyModifiers(); + + // Obtain virtual key code and convert to ImGuiKey + const ImGuiKey key = ImGui_ImplWin32_KeyEventToImGuiKey(wParam, lParam); + const int vk = (int)wParam; + const int scancode = (int)LOBYTE(HIWORD(lParam)); + + // Special behavior for VK_SNAPSHOT / ImGuiKey_PrintScreen as Windows doesn't emit the key down event. + if (key == ImGuiKey_PrintScreen && !is_key_down) + ImGui_ImplWin32_AddKeyEvent(key, true, vk, scancode); + + // Submit key event + if (key != ImGuiKey_None) + ImGui_ImplWin32_AddKeyEvent(key, is_key_down, vk, scancode); + + // Submit individual left/right modifier events + if (vk == VK_SHIFT) + { + // Important: Shift keys tend to get stuck when pressed together, missing key-up events are corrected in ImGui_ImplWin32_ProcessKeyEventsWorkarounds() + if (IsVkDown(VK_LSHIFT) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftShift, is_key_down, VK_LSHIFT, scancode); } + if (IsVkDown(VK_RSHIFT) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightShift, is_key_down, VK_RSHIFT, scancode); } + } + else if (vk == VK_CONTROL) + { + if (IsVkDown(VK_LCONTROL) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftCtrl, is_key_down, VK_LCONTROL, scancode); } + if (IsVkDown(VK_RCONTROL) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightCtrl, is_key_down, VK_RCONTROL, scancode); } + } + else if (vk == VK_MENU) + { + if (IsVkDown(VK_LMENU) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_LeftAlt, is_key_down, VK_LMENU, scancode); } + if (IsVkDown(VK_RMENU) == is_key_down) { ImGui_ImplWin32_AddKeyEvent(ImGuiKey_RightAlt, is_key_down, VK_RMENU, scancode); } + } + } + return 0; + } + case WM_SETFOCUS: + case WM_KILLFOCUS: + io.AddFocusEvent(msg == WM_SETFOCUS); + return 0; + case WM_INPUTLANGCHANGE: + ImGui_ImplWin32_UpdateKeyboardCodePage(); + return 0; + case WM_CHAR: + if (::IsWindowUnicode(hwnd)) + { + // You can also use ToAscii()+GetKeyboardState() to retrieve characters. + if (wParam > 0 && wParam < 0x10000) + io.AddInputCharacterUTF16((unsigned short)wParam); + } + else + { + wchar_t wch = 0; + ::MultiByteToWideChar(bd->KeyboardCodePage, MB_PRECOMPOSED, (char*)&wParam, 1, &wch, 1); + io.AddInputCharacter(wch); + } + return 0; + case WM_SETCURSOR: + // This is required to restore cursor when transitioning from e.g resize borders to client area. + if (LOWORD(lParam) == HTCLIENT && ImGui_ImplWin32_UpdateMouseCursor()) + return 1; + return 0; + case WM_DEVICECHANGE: +#ifndef IMGUI_IMPL_WIN32_DISABLE_GAMEPAD + if ((UINT)wParam == DBT_DEVNODES_CHANGED) + bd->WantUpdateHasGamepad = true; +#endif + return 0; + } + return 0; +} + + +//-------------------------------------------------------------------------------------------------------- +// DPI-related helpers (optional) +//-------------------------------------------------------------------------------------------------------- +// - Use to enable DPI awareness without having to create an application manifest. +// - Your own app may already do this via a manifest or explicit calls. This is mostly useful for our examples/ apps. +// - In theory we could call simple functions from Windows SDK such as SetProcessDPIAware(), SetProcessDpiAwareness(), etc. +// but most of the functions provided by Microsoft require Windows 8.1/10+ SDK at compile time and Windows 8/10+ at runtime, +// neither we want to require the user to have. So we dynamically select and load those functions to avoid dependencies. +//--------------------------------------------------------------------------------------------------------- +// This is the scheme successfully used by GLFW (from which we borrowed some of the code) and other apps aiming to be highly portable. +// ImGui_ImplWin32_EnableDpiAwareness() is just a helper called by main.cpp, we don't call it automatically. +// If you are trying to implement your own backend for your own engine, you may ignore that noise. +//--------------------------------------------------------------------------------------------------------- + +// Perform our own check with RtlVerifyVersionInfo() instead of using functions from as they +// require a manifest to be functional for checks above 8.1. See https://github.com/ocornut/imgui/issues/4200 +static BOOL _IsWindowsVersionOrGreater(WORD major, WORD minor, WORD) +{ + typedef LONG(WINAPI* PFN_RtlVerifyVersionInfo)(OSVERSIONINFOEXW*, ULONG, ULONGLONG); + static PFN_RtlVerifyVersionInfo RtlVerifyVersionInfoFn = nullptr; + if (RtlVerifyVersionInfoFn == nullptr) + if (HMODULE ntdllModule = ::GetModuleHandleA("ntdll.dll")) + RtlVerifyVersionInfoFn = (PFN_RtlVerifyVersionInfo)GetProcAddress(ntdllModule, "RtlVerifyVersionInfo"); + if (RtlVerifyVersionInfoFn == nullptr) + return FALSE; + + RTL_OSVERSIONINFOEXW versionInfo = { }; + ULONGLONG conditionMask = 0; + versionInfo.dwOSVersionInfoSize = sizeof(RTL_OSVERSIONINFOEXW); + versionInfo.dwMajorVersion = major; + versionInfo.dwMinorVersion = minor; + VER_SET_CONDITION(conditionMask, VER_MAJORVERSION, VER_GREATER_EQUAL); + VER_SET_CONDITION(conditionMask, VER_MINORVERSION, VER_GREATER_EQUAL); + return (RtlVerifyVersionInfoFn(&versionInfo, VER_MAJORVERSION | VER_MINORVERSION, conditionMask) == 0) ? TRUE : FALSE; +} + +#define _IsWindowsVistaOrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0600), LOBYTE(0x0600), 0) // _WIN32_WINNT_VISTA +#define _IsWindows8OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0602), LOBYTE(0x0602), 0) // _WIN32_WINNT_WIN8 +#define _IsWindows8Point1OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0603), LOBYTE(0x0603), 0) // _WIN32_WINNT_WINBLUE +#define _IsWindows10OrGreater() _IsWindowsVersionOrGreater(HIBYTE(0x0A00), LOBYTE(0x0A00), 0) // _WIN32_WINNT_WINTHRESHOLD / _WIN32_WINNT_WIN10 + +#ifndef DPI_ENUMS_DECLARED +typedef enum { PROCESS_DPI_UNAWARE = 0, PROCESS_SYSTEM_DPI_AWARE = 1, PROCESS_PER_MONITOR_DPI_AWARE = 2 } PROCESS_DPI_AWARENESS; +typedef enum { MDT_EFFECTIVE_DPI = 0, MDT_ANGULAR_DPI = 1, MDT_RAW_DPI = 2, MDT_DEFAULT = MDT_EFFECTIVE_DPI } MONITOR_DPI_TYPE; +#endif +#ifndef _DPI_AWARENESS_CONTEXTS_ +DECLARE_HANDLE(DPI_AWARENESS_CONTEXT); +#define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE (DPI_AWARENESS_CONTEXT)-3 +#endif +#ifndef DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 +#define DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 (DPI_AWARENESS_CONTEXT)-4 +#endif +typedef HRESULT(WINAPI* PFN_SetProcessDpiAwareness)(PROCESS_DPI_AWARENESS); // Shcore.lib + dll, Windows 8.1+ +typedef HRESULT(WINAPI* PFN_GetDpiForMonitor)(HMONITOR, MONITOR_DPI_TYPE, UINT*, UINT*); // Shcore.lib + dll, Windows 8.1+ +typedef DPI_AWARENESS_CONTEXT(WINAPI* PFN_SetThreadDpiAwarenessContext)(DPI_AWARENESS_CONTEXT); // User32.lib + dll, Windows 10 v1607+ (Creators Update) + +// Helper function to enable DPI awareness without setting up a manifest +void ImGui_ImplWin32_EnableDpiAwareness() +{ + if (_IsWindows10OrGreater()) + { + static HINSTANCE user32_dll = ::LoadLibraryA("user32.dll"); // Reference counted per-process + if (PFN_SetThreadDpiAwarenessContext SetThreadDpiAwarenessContextFn = (PFN_SetThreadDpiAwarenessContext)::GetProcAddress(user32_dll, "SetThreadDpiAwarenessContext")) + { + SetThreadDpiAwarenessContextFn(DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2); + return; + } + } + if (_IsWindows8Point1OrGreater()) + { + static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process + if (PFN_SetProcessDpiAwareness SetProcessDpiAwarenessFn = (PFN_SetProcessDpiAwareness)::GetProcAddress(shcore_dll, "SetProcessDpiAwareness")) + { + SetProcessDpiAwarenessFn(PROCESS_PER_MONITOR_DPI_AWARE); + return; + } + } +#if _WIN32_WINNT >= 0x0600 + ::SetProcessDPIAware(); +#endif +} + +#if defined(_MSC_VER) && !defined(NOGDI) +#pragma comment(lib, "gdi32") // Link with gdi32.lib for GetDeviceCaps(). MinGW will require linking with '-lgdi32' +#endif + +float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor) +{ + UINT xdpi = 96, ydpi = 96; + if (_IsWindows8Point1OrGreater()) + { + static HINSTANCE shcore_dll = ::LoadLibraryA("shcore.dll"); // Reference counted per-process + static PFN_GetDpiForMonitor GetDpiForMonitorFn = nullptr; + if (GetDpiForMonitorFn == nullptr && shcore_dll != nullptr) + GetDpiForMonitorFn = (PFN_GetDpiForMonitor)::GetProcAddress(shcore_dll, "GetDpiForMonitor"); + if (GetDpiForMonitorFn != nullptr) + { + GetDpiForMonitorFn((HMONITOR)monitor, MDT_EFFECTIVE_DPI, &xdpi, &ydpi); + IM_ASSERT(xdpi == ydpi); // Please contact me if you hit this assert! + return xdpi / 96.0f; + } + } +#ifndef NOGDI + const HDC dc = ::GetDC(nullptr); + xdpi = ::GetDeviceCaps(dc, LOGPIXELSX); + ydpi = ::GetDeviceCaps(dc, LOGPIXELSY); + IM_ASSERT(xdpi == ydpi); // Please contact me if you hit this assert! + ::ReleaseDC(nullptr, dc); +#endif + return xdpi / 96.0f; +} + +float ImGui_ImplWin32_GetDpiScaleForHwnd(void* hwnd) +{ + HMONITOR monitor = ::MonitorFromWindow((HWND)hwnd, MONITOR_DEFAULTTONEAREST); + return ImGui_ImplWin32_GetDpiScaleForMonitor(monitor); +} + +//--------------------------------------------------------------------------------------------------------- +// Transparency related helpers (optional) +//-------------------------------------------------------------------------------------------------------- + +#if defined(_MSC_VER) +#pragma comment(lib, "dwmapi") // Link with dwmapi.lib. MinGW will require linking with '-ldwmapi' +#endif + +// [experimental] +// Borrowed from GLFW's function updateFramebufferTransparency() in src/win32_window.c +// (the Dwm* functions are Vista era functions but we are borrowing logic from GLFW) +void ImGui_ImplWin32_EnableAlphaCompositing(void* hwnd) +{ + if (!_IsWindowsVistaOrGreater()) + return; + + BOOL composition; + if (FAILED(::DwmIsCompositionEnabled(&composition)) || !composition) + return; + + BOOL opaque; + DWORD color; + if (_IsWindows8OrGreater() || (SUCCEEDED(::DwmGetColorizationColor(&color, &opaque)) && !opaque)) + { + HRGN region = ::CreateRectRgn(0, 0, -1, -1); + DWM_BLURBEHIND bb = {}; + bb.dwFlags = DWM_BB_ENABLE | DWM_BB_BLURREGION; + bb.hRgnBlur = region; + bb.fEnable = TRUE; + ::DwmEnableBlurBehindWindow((HWND)hwnd, &bb); + ::DeleteObject(region); + } + else + { + DWM_BLURBEHIND bb = {}; + bb.dwFlags = DWM_BB_ENABLE; + ::DwmEnableBlurBehindWindow((HWND)hwnd, &bb); + } +} + +//--------------------------------------------------------------------------------------------------------- + +#if defined(__GNUC__) +#pragma GCC diagnostic pop +#endif +#if defined(__clang__) +#pragma clang diagnostic pop +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/backends/imgui_impl_win32.h b/external/lumin/thirdparty/imgui/backends/imgui_impl_win32.h new file mode 100644 index 0000000..be56271 --- /dev/null +++ b/external/lumin/thirdparty/imgui/backends/imgui_impl_win32.h @@ -0,0 +1,52 @@ +// dear imgui: Platform Backend for Windows (standard windows API for 32-bits AND 64-bits applications) +// This needs to be used along with a Renderer (e.g. DirectX11, OpenGL3, Vulkan..) + +// Implemented features: +// [X] Platform: Clipboard support (for Win32 this is actually part of core dear imgui) +// [X] Platform: Mouse support. Can discriminate Mouse/TouchScreen/Pen. +// [X] Platform: Keyboard support. Since 1.87 we are using the io.AddKeyEvent() function. Pass ImGuiKey values to all key functions e.g. ImGui::IsKeyPressed(ImGuiKey_Space). [Legacy VK_* values will also be supported unless IMGUI_DISABLE_OBSOLETE_KEYIO is set] +// [X] Platform: Gamepad support. Enabled with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. +// [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange'. + +// You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this. +// Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need. +// Learn about Dear ImGui: +// - FAQ https://dearimgui.com/faq +// - Getting Started https://dearimgui.com/getting-started +// - Documentation https://dearimgui.com/docs (same as your local docs/ folder). +// - Introduction, links and more at the top of imgui.cpp + +#pragma once +#include "imgui.h" // IMGUI_IMPL_API +#ifndef IMGUI_DISABLE + +IMGUI_IMPL_API bool ImGui_ImplWin32_Init(void* hwnd); +IMGUI_IMPL_API bool ImGui_ImplWin32_InitForOpenGL(void* hwnd); +IMGUI_IMPL_API void ImGui_ImplWin32_Shutdown(); +IMGUI_IMPL_API void ImGui_ImplWin32_NewFrame(); + +// Win32 message handler your application need to call. +// - Intentionally commented out in a '#if 0' block to avoid dragging dependencies on from this helper. +// - You should COPY the line below into your .cpp code to forward declare the function and then you can call it. +// - Call from your application's message handler. Keep calling your message handler unless this function returns TRUE. + +#if 0 +extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); +#endif + +// DPI-related helpers (optional) +// - Use to enable DPI awareness without having to create an application manifest. +// - Your own app may already do this via a manifest or explicit calls. This is mostly useful for our examples/ apps. +// - In theory we could call simple functions from Windows SDK such as SetProcessDPIAware(), SetProcessDpiAwareness(), etc. +// but most of the functions provided by Microsoft require Windows 8.1/10+ SDK at compile time and Windows 8/10+ at runtime, +// neither we want to require the user to have. So we dynamically select and load those functions to avoid dependencies. +IMGUI_IMPL_API void ImGui_ImplWin32_EnableDpiAwareness(); +IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForHwnd(void* hwnd); // HWND hwnd +IMGUI_IMPL_API float ImGui_ImplWin32_GetDpiScaleForMonitor(void* monitor); // HMONITOR monitor + +// Transparency related helpers (optional) [experimental] +// - Use to enable alpha compositing transparency with the desktop. +// - Use together with e.g. clearing your framebuffer with zero-alpha. +IMGUI_IMPL_API void ImGui_ImplWin32_EnableAlphaCompositing(void* hwnd); // HWND hwnd + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj b/external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj new file mode 100644 index 0000000..5243f24 --- /dev/null +++ b/external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj @@ -0,0 +1,205 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {9F316E83-5AE5-4939-A723-305A94F48005} + example_win32_directx11 + lumin_ui_demo + 10.0 + false + + + + Application + true + Unicode + v143 + + + Application + true + Unicode + v143 + + + Application + false + true + Unicode + v143 + + + Application + false + true + Unicode + v143 + + + + + + + + + + + + + + + + + + + $(ProjectDir)$(Configuration)\ + $(ProjectDir)$(Configuration)\ + + + $(ProjectDir)$(Configuration)\ + $(ProjectDir)$(Configuration)\ + + + $(ProjectDir)$(Configuration)\ + $(ProjectDir)$(Configuration)\ + + + $(ProjectDir)$(Configuration)\ + $(ProjectDir)$(Configuration)\ + $(SolutionDir)\thirdparty\imgui;$(SolutionDir)\thirdparty\freetype\include;$(IncludePath) + $(SolutionDir)\thirdparty\freetype\win64;$(LibraryPath) + + + + Level4 + Disabled + ..\..;..\..\backends;%(AdditionalIncludeDirectories); + /utf-8 /sdl /guard:cf %(AdditionalOptions) + + + true + d3d11.lib;d3dcompiler.lib;dxgi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + Windows + mainCRTStartup + + + + + Level4 + Disabled + ..\..;..\..\backends;%(AdditionalIncludeDirectories); + /utf-8 %(AdditionalOptions) + + + true + d3d11.lib;d3dcompiler.lib;dxgi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + Windows + mainCRTStartup + + + + + Level4 + MaxSpeed + true + true + ..\..;..\..\backends;%(AdditionalIncludeDirectories); + true + /utf-8 %(AdditionalOptions) + + + true + true + true + /DYNAMICBASE /NXCOMPAT /guard:cf %(AdditionalOptions) + d3d11.lib;d3dcompiler.lib;dxgi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + Windows + mainCRTStartup + + + + + Level4 + MaxSpeed + true + true + ..\..;..\..\backends;%(AdditionalIncludeDirectories); + true + /utf-8 /Zm1500 /sdl /guard:cf %(AdditionalOptions) + stdcpp20 + false + + + true + true + true + /DYNAMICBASE /NXCOMPAT /guard:cf %(AdditionalOptions) + d3d11.lib;d3dcompiler.lib;dxgi.lib;%(AdditionalDependencies) + %(AdditionalLibraryDirectories) + Windows + mainCRTStartup + + + + + + diff --git a/external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters b/external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters new file mode 100644 index 0000000..7bcf8ef --- /dev/null +++ b/external/lumin/thirdparty/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj.filters @@ -0,0 +1,138 @@ + + + + + + thirdparty\imgui\impl + + + thirdparty\imgui\impl + + + thirdparty\imgui + + + thirdparty\imgui + + + thirdparty\imgui + + + thirdparty\imgui + + + thirdparty\imgui + + + framework + + + framework\helpers + + + framework\helpers + + + framework\widgets + + + framework\widgets + + + framework\widgets + + + framework\widgets + + + framework\widgets + + + + + {ccc54d96-72f7-4436-8a83-fa3c95630349} + + + {92aa3f18-0f62-4ee8-bc64-9dd79c9c15cc} + + + {8e6165f3-0e1c-4cfc-a3c2-72543f8ca897} + + + {2516b7d7-b875-48cb-8877-76225056bfb1} + + + {f5b951e6-7363-43f2-a23d-fda1ec066176} + + + {a7ae9947-5960-4576-bffd-459ce63ce2e3} + + + {3f5fea1a-9455-4e99-aadf-662fa3810326} + + + {bea8460b-cb50-498c-97a6-0c3de2303e3f} + + + {294a9fd1-581b-4a05-a2d7-a217904f82cd} + + + {5dce1686-af54-4490-b0af-91f3d85e0a73} + + + + + thirdparty\freetype + + + + + thirdparty\imgui\impl + + + thirdparty\imgui\impl + + + thirdparty\imgui + + + thirdparty\imgui + + + thirdparty\imgui + + + thirdparty\imgui + + + framework\data + + + framework\headers + + + framework\headers + + + framework\headers + + + framework\headers + + + framework\headers + + + framework\headers + + + framework\settings + + + framework\settings + + + framework\settings + + + diff --git a/external/lumin/thirdparty/imgui/examples/example_win32_directx11/main.cpp b/external/lumin/thirdparty/imgui/examples/example_win32_directx11/main.cpp new file mode 100644 index 0000000..e294b44 --- /dev/null +++ b/external/lumin/thirdparty/imgui/examples/example_win32_directx11/main.cpp @@ -0,0 +1,322 @@ +// Dear ImGui: standalone example application for DirectX 11 + +// Learn about Dear ImGui: +// - FAQ https://dearimgui.com/faq +// - Getting Started https://dearimgui.com/getting-started +// - Documentation https://dearimgui.com/docs (same as your local docs/ folder). +// - Introduction, links and more at the top of imgui.cpp + +#include "../../framework/headers/includes.h" +#include "../../framework/data/fonts.h" +#include "imgui.h" +#include "imgui_impl_win32.h" +#include "imgui_impl_dx11.h" +#include "imgui_freetype.h" +#include +#include +#include +#pragma comment(lib, "dwmapi.lib") + +// Data +static ID3D11Device* g_pd3dDevice = nullptr; +static ID3D11DeviceContext* g_pd3dDeviceContext = nullptr; +static IDXGISwapChain* g_pSwapChain = nullptr; +static bool g_SwapChainOccluded = false; +static UINT g_ResizeWidth = 0, g_ResizeHeight = 0; +static ID3D11RenderTargetView* g_mainRenderTargetView = nullptr; + +// Forward declarations of helper functions +bool CreateDeviceD3D(HWND hWnd); +void CleanupDeviceD3D(); +void CreateRenderTarget(); +void CleanupRenderTarget(); +void WarmFonts(); +void MoveHostWindowFromImGui(HWND hWnd); +void ResizeHostWindowToGui(HWND hWnd); +LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); + +// Main code +int main(int, char**) +{ + { + wchar_t exe_path[MAX_PATH]; + if (::GetModuleFileNameW(nullptr, exe_path, MAX_PATH)) + { + wchar_t* last_sep = wcsrchr(exe_path, L'\\'); + if (last_sep) { *last_sep = L'\0'; ::SetCurrentDirectoryW(exe_path); } + } + } + + // Create application window + //ImGui_ImplWin32_EnableDpiAwareness(); + WNDCLASSEXW wc = { sizeof(wc), CS_CLASSDC, WndProc, 0L, 0L, GetModuleHandle(nullptr), nullptr, nullptr, nullptr, nullptr, L"ImGui Example", nullptr }; + ::RegisterClassExW(&wc); + const int window_width = 570; + const int window_height = 354; + const int window_x = (::GetSystemMetrics(SM_CXSCREEN) - window_width) / 2; + const int window_y = (::GetSystemMetrics(SM_CYSCREEN) - window_height) / 2; + HWND hwnd = ::CreateWindowExW(WS_EX_LAYERED, wc.lpszClassName, L"Lumin UI Demo", WS_POPUP, window_x, window_y, window_width, window_height, nullptr, nullptr, wc.hInstance, nullptr); + + ::SetLayeredWindowAttributes(hwnd, RGB(0, 0, 0), 255, LWA_ALPHA); + MARGINS margins = { -1 }; + ::DwmExtendFrameIntoClientArea(hwnd, &margins); + + // Initialize Direct3D + if (!CreateDeviceD3D(hwnd)) + { + CleanupDeviceD3D(); + ::UnregisterClassW(wc.lpszClassName, wc.hInstance); + return 1; + } + + // Show the window + ::ShowWindow(hwnd, SW_SHOWDEFAULT); + ::UpdateWindow(hwnd); + + // Setup Dear ImGui context + IMGUI_CHECKVERSION(); + ImGui::CreateContext(); + ImGuiIO& io = ImGui::GetIO(); (void)io; + io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls + io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls + + // Setup Dear ImGui style + ImGui::StyleColorsDark(); + //ImGui::StyleColorsLight(); + + // Setup Platform/Renderer backends + ImGui_ImplWin32_Init(hwnd); + ImGui_ImplDX11_Init(g_pd3dDevice, g_pd3dDeviceContext); + WarmFonts(); + font->update(); + + // Load Fonts + + // Main loop + bool done = false; + while (!done) + { + // Poll and handle messages (inputs, window resize, etc.) + // See the WndProc() function below for our to dispatch events to the Win32 backend. + MSG msg; + while (::PeekMessage(&msg, nullptr, 0U, 0U, PM_REMOVE)) + { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + if (msg.message == WM_QUIT) + done = true; + } + if (done) + break; + + // Handle window being minimized or screen locked + if (g_SwapChainOccluded && g_pSwapChain->Present(0, DXGI_PRESENT_TEST) == DXGI_STATUS_OCCLUDED) + { + ::Sleep(10); + continue; + } + g_SwapChainOccluded = false; + + // Handle window resize (we don't resize directly in the WM_SIZE handler) + if (g_ResizeWidth != 0 && g_ResizeHeight != 0) + { + CleanupRenderTarget(); + g_pSwapChain->ResizeBuffers(0, g_ResizeWidth, g_ResizeHeight, DXGI_FORMAT_UNKNOWN, 0); + g_ResizeWidth = g_ResizeHeight = 0; + CreateRenderTarget(); + } + + font->update(); + + // Start the Dear ImGui frame + ImGui_ImplDX11_NewFrame(); + ImGui_ImplWin32_NewFrame(); + ImGui::NewFrame(); + + gui->render(); + MoveHostWindowFromImGui(hwnd); + ResizeHostWindowToGui(hwnd); + + // Rendering + ImGui::Render(); + const float clear_color_with_alpha[4] = { 0.f, 0.f, 0.f, 0.f }; + g_pd3dDeviceContext->OMSetRenderTargets(1, &g_mainRenderTargetView, nullptr); + g_pd3dDeviceContext->ClearRenderTargetView(g_mainRenderTargetView, clear_color_with_alpha); + ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData()); + + // Present + HRESULT hr = g_pSwapChain->Present(1, 0); // Present with vsync + //HRESULT hr = g_pSwapChain->Present(0, 0); // Present without vsync + g_SwapChainOccluded = (hr == DXGI_STATUS_OCCLUDED); + } + + // Cleanup + ImGui_ImplDX11_Shutdown(); + ImGui_ImplWin32_Shutdown(); + ImGui::DestroyContext(); + + CleanupDeviceD3D(); + ::DestroyWindow(hwnd); + ::UnregisterClassW(wc.lpszClassName, wc.hInstance); + + return 0; +} + +// Helper functions + +bool CreateDeviceD3D(HWND hWnd) +{ + // Setup swap chain + DXGI_SWAP_CHAIN_DESC sd; + ZeroMemory(&sd, sizeof(sd)); + sd.BufferCount = 2; + sd.BufferDesc.Width = 0; + sd.BufferDesc.Height = 0; + sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + sd.BufferDesc.RefreshRate.Numerator = 60; + sd.BufferDesc.RefreshRate.Denominator = 1; + sd.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH; + sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; + sd.OutputWindow = hWnd; + sd.SampleDesc.Count = 1; + sd.SampleDesc.Quality = 0; + sd.Windowed = TRUE; + sd.SwapEffect = DXGI_SWAP_EFFECT_DISCARD; + + UINT createDeviceFlags = 0; + //createDeviceFlags |= D3D11_CREATE_DEVICE_DEBUG; + D3D_FEATURE_LEVEL featureLevel; + const D3D_FEATURE_LEVEL featureLevelArray[2] = { D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_0, }; + HRESULT res = D3D11CreateDeviceAndSwapChain(nullptr, D3D_DRIVER_TYPE_HARDWARE, nullptr, createDeviceFlags, featureLevelArray, 2, D3D11_SDK_VERSION, &sd, &g_pSwapChain, &g_pd3dDevice, &featureLevel, &g_pd3dDeviceContext); + if (res == DXGI_ERROR_UNSUPPORTED) // Try high-performance WARP software driver if hardware is not available. + res = D3D11CreateDeviceAndSwapChain(nullptr, D3D_DRIVER_TYPE_WARP, nullptr, createDeviceFlags, featureLevelArray, 2, D3D11_SDK_VERSION, &sd, &g_pSwapChain, &g_pd3dDevice, &featureLevel, &g_pd3dDeviceContext); + if (res != S_OK) + return false; + + CreateRenderTarget(); + return true; +} + +void CleanupDeviceD3D() +{ + CleanupRenderTarget(); + if (g_pSwapChain) { g_pSwapChain->Release(); g_pSwapChain = nullptr; } + if (g_pd3dDeviceContext) { g_pd3dDeviceContext->Release(); g_pd3dDeviceContext = nullptr; } + if (g_pd3dDevice) { g_pd3dDevice->Release(); g_pd3dDevice = nullptr; } +} + +void CreateRenderTarget() +{ + ID3D11Texture2D* pBackBuffer; + g_pSwapChain->GetBuffer(0, IID_PPV_ARGS(&pBackBuffer)); + g_pd3dDevice->CreateRenderTargetView(pBackBuffer, nullptr, &g_mainRenderTargetView); + pBackBuffer->Release(); +} + +void CleanupRenderTarget() +{ + if (g_mainRenderTargetView) { g_mainRenderTargetView->Release(); g_mainRenderTargetView = nullptr; } +} + +void WarmFonts() +{ + font->get(inter_medium, 10); + font->get(inter_medium, 11); + font->get(inter_semibold, 10); + font->get(inter_semibold, 11); + font->get(inter_semibold, 12); + font->get(inter_semibold, 13); + font->get(inter_semibold, 16); + font->get(inter_semibold, 18); + font->get(inter_semibold, 40); + font->get(icon_font, 14); + font->get(icon_font, 15); + font->get_file(flaticon_uicons_regular_rounded_path, 10.5f, true); + font->get_file(flaticon_uicons_regular_rounded_path, 13.5f, true); + font->get_file("C:\\Windows\\Fonts\\segmdl2.ttf", 11.f, true); +} + +void MoveHostWindowFromImGui(HWND hWnd) +{ + static bool dragging = false; + static POINT drag_start_cursor = {}; + static RECT drag_start_rect = {}; + + const bool can_start_drag = ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow) && !ImGui::IsAnyItemHovered() && !ImGui::IsAnyItemActive(); + + if (can_start_drag && ImGui::IsMouseClicked(ImGuiMouseButton_Left)) + { + dragging = true; + ::GetCursorPos(&drag_start_cursor); + ::GetWindowRect(hWnd, &drag_start_rect); + } + + if (!ImGui::IsMouseDown(ImGuiMouseButton_Left)) + dragging = false; + + if (!dragging) + return; + + POINT cursor = {}; + ::GetCursorPos(&cursor); + + const int next_x = drag_start_rect.left + (cursor.x - drag_start_cursor.x); + const int next_y = drag_start_rect.top + (cursor.y - drag_start_cursor.y); + + ::SetWindowPos(hWnd, nullptr, next_x, next_y, 0, 0, SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE); +} + +void ResizeHostWindowToGui(HWND hWnd) +{ + const int width = elements->window.size.x > 1.f ? static_cast(elements->window.size.x + 0.5f) : 1; + const int height = elements->window.size.y > 1.f ? static_cast(elements->window.size.y + 0.5f) : 1; + + RECT client_rect; + ::GetClientRect(hWnd, &client_rect); + const int current_width = client_rect.right - client_rect.left; + const int current_height = client_rect.bottom - client_rect.top; + + if (current_width == width && current_height == height) + return; + + ::SetWindowPos(hWnd, nullptr, 0, 0, width, height, SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE); +} + +// Forward declare message handler from imgui_impl_win32.cpp +extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); + +// Win32 message handler +// 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, or clear/overwrite your copy of the mouse data. +// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application, or clear/overwrite your copy of the keyboard data. +// Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags. +LRESULT WINAPI WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) +{ + if (ImGui_ImplWin32_WndProcHandler(hWnd, msg, wParam, lParam)) + return true; + + switch (msg) + { + case WM_SIZE: + if (wParam == SIZE_MINIMIZED) + return 0; + g_ResizeWidth = (UINT)LOWORD(lParam); // Queue resize + g_ResizeHeight = (UINT)HIWORD(lParam); + return 0; + case WM_SYSCOMMAND: + if ((wParam & 0xfff0) == SC_KEYMENU) // Disable ALT application menu + return 0; + break; + case WM_KEYDOWN: + if (wParam == VK_ESCAPE) + { + ::PostMessageW(hWnd, WM_CLOSE, 0, 0); + return 0; + } + break; + case WM_DESTROY: + ::PostQuitMessage(0); + return 0; + } + return ::DefWindowProcW(hWnd, msg, wParam, lParam); +} diff --git a/external/lumin/thirdparty/imgui/imconfig.h b/external/lumin/thirdparty/imgui/imconfig.h new file mode 100644 index 0000000..6114eb2 --- /dev/null +++ b/external/lumin/thirdparty/imgui/imconfig.h @@ -0,0 +1,140 @@ +//----------------------------------------------------------------------------- +// DEAR IMGUI COMPILE-TIME OPTIONS +// Runtime options (clipboard callbacks, enabling various features, etc.) can generally be set via the ImGuiIO structure. +// You can use ImGui::SetAllocatorFunctions() before calling ImGui::CreateContext() to rewire memory allocation functions. +//----------------------------------------------------------------------------- +// A) You may edit imconfig.h (and not overwrite it when updating Dear ImGui, or maintain a patch/rebased branch with your modifications to it) +// B) or '#define IMGUI_USER_CONFIG "my_imgui_config.h"' in your project and then add directives in your own file without touching this template. +//----------------------------------------------------------------------------- +// You need to make sure that configuration settings are defined consistently _everywhere_ Dear ImGui is used, which include the imgui*.cpp +// files but also _any_ of your code that uses Dear ImGui. This is because some compile-time options have an affect on data structures. +// Defining those options in imconfig.h will ensure every compilation unit gets to see the same data structure layouts. +// Call IMGUI_CHECKVERSION() from your .cpp file to verify that the data structures your files are using are matching the ones imgui.cpp is using. +//----------------------------------------------------------------------------- + +#pragma once + +//---- DayZ overlay integration: build the font atlas with FreeType (required by +// the Lumin framework font system, which sets ImGuiFreeTypeBuilderFlags). +#define IMGUI_ENABLE_FREETYPE + +//---- Define assertion handler. Defaults to calling assert(). +// If your macro uses multiple statements, make sure is enclosed in a 'do { .. } while (0)' block so it can be used as a single statement. +//#define IM_ASSERT(_EXPR) MyAssert(_EXPR) +//#define IM_ASSERT(_EXPR) ((void)(_EXPR)) // Disable asserts + +//---- Define attributes of all API symbols declarations, e.g. for DLL under Windows +// Using Dear ImGui via a shared library is not recommended, because of function call overhead and because we don't guarantee backward nor forward ABI compatibility. +// - Windows DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() +// for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for more details. +//#define IMGUI_API __declspec(dllexport) // MSVC Windows: DLL export +//#define IMGUI_API __declspec(dllimport) // MSVC Windows: DLL import +//#define IMGUI_API __attribute__((visibility("default"))) // GCC/Clang: override visibility when set is hidden + +//---- Don't define obsolete functions/enums/behaviors. Consider enabling from time to time after updating to clean your code of obsolete function/names. +//#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS +//#define IMGUI_DISABLE_OBSOLETE_KEYIO // 1.87+ disable legacy io.KeyMap[]+io.KeysDown[] in favor io.AddKeyEvent(). This is automatically done by IMGUI_DISABLE_OBSOLETE_FUNCTIONS. + +//---- Disable all of Dear ImGui or don't implement standard windows/tools. +// It is very strongly recommended to NOT disable the demo windows and debug tool during development. They are extremely useful in day to day work. Please read comments in imgui_demo.cpp. +//#define IMGUI_DISABLE // Disable everything: all headers and source files will be empty. +//#define IMGUI_DISABLE_DEMO_WINDOWS // Disable demo windows: ShowDemoWindow()/ShowStyleEditor() will be empty. +//#define IMGUI_DISABLE_DEBUG_TOOLS // Disable metrics/debugger and other debug tools: ShowMetricsWindow(), ShowDebugLogWindow() and ShowIDStackToolWindow() will be empty. + +//---- Don't implement some functions to reduce linkage requirements. +//#define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS // [Win32] Don't implement default clipboard handler. Won't use and link with OpenClipboard/GetClipboardData/CloseClipboard etc. (user32.lib/.a, kernel32.lib/.a) +//#define IMGUI_ENABLE_WIN32_DEFAULT_IME_FUNCTIONS // [Win32] [Default with Visual Studio] Implement default IME handler (require imm32.lib/.a, auto-link for Visual Studio, -limm32 on command-line for MinGW) +//#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS // [Win32] [Default with non-Visual Studio compilers] Don't implement default IME handler (won't require imm32.lib/.a) +//#define IMGUI_DISABLE_WIN32_FUNCTIONS // [Win32] Won't use and link with any Win32 function (clipboard, IME). +//#define IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS // [OSX] Implement default OSX clipboard handler (need to link with '-framework ApplicationServices', this is why this is not the default). +//#define IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS // Don't implement default platform_io.Platform_OpenInShellFn() handler (Win32: ShellExecute(), require shell32.lib/.a, Mac/Linux: use system("")). +//#define IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS // Don't implement ImFormatString/ImFormatStringV so you can implement them yourself (e.g. if you don't want to link with vsnprintf) +//#define IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS // Don't implement ImFabs/ImSqrt/ImPow/ImFmod/ImCos/ImSin/ImAcos/ImAtan2 so you can implement them yourself. +//#define IMGUI_DISABLE_FILE_FUNCTIONS // Don't implement ImFileOpen/ImFileClose/ImFileRead/ImFileWrite and ImFileHandle at all (replace them with dummies) +//#define IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS // Don't implement ImFileOpen/ImFileClose/ImFileRead/ImFileWrite and ImFileHandle so you can implement them yourself if you don't want to link with fopen/fclose/fread/fwrite. This will also disable the LogToTTY() function. +//#define IMGUI_DISABLE_DEFAULT_ALLOCATORS // Don't implement default allocators calling malloc()/free() to avoid linking with them. You will need to call ImGui::SetAllocatorFunctions(). +//#define IMGUI_DISABLE_SSE // Disable use of SSE intrinsics even if available + +//---- Enable Test Engine / Automation features. +//#define IMGUI_ENABLE_TEST_ENGINE // Enable imgui_test_engine hooks. Generally set automatically by include "imgui_te_config.h", see Test Engine for details. + +//---- Include imgui_user.h at the end of imgui.h as a convenience +// May be convenient for some users to only explicitly include vanilla imgui.h and have extra stuff included. +//#define IMGUI_INCLUDE_IMGUI_USER_H +//#define IMGUI_USER_H_FILENAME "my_folder/my_imgui_user.h" + +//---- Pack colors to BGRA8 instead of RGBA8 (to avoid converting from one to another) +//#define IMGUI_USE_BGRA_PACKED_COLOR + +//---- Use 32-bit for ImWchar (default is 16-bit) to support Unicode planes 1-16. (e.g. point beyond 0xFFFF like emoticons, dingbats, symbols, shapes, ancient languages, etc...) +//#define IMGUI_USE_WCHAR32 + +//---- Avoid multiple STB libraries implementations, or redefine path/filenames to prioritize another version +// By default the embedded implementations are declared static and not available outside of Dear ImGui sources files. +//#define IMGUI_STB_TRUETYPE_FILENAME "my_folder/stb_truetype.h" +//#define IMGUI_STB_RECT_PACK_FILENAME "my_folder/stb_rect_pack.h" +//#define IMGUI_STB_SPRINTF_FILENAME "my_folder/stb_sprintf.h" // only used if IMGUI_USE_STB_SPRINTF is defined. +//#define IMGUI_DISABLE_STB_TRUETYPE_IMPLEMENTATION +//#define IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION +//#define IMGUI_DISABLE_STB_SPRINTF_IMPLEMENTATION // only disabled if IMGUI_USE_STB_SPRINTF is defined. + +//---- Use stb_sprintf.h for a faster implementation of vsnprintf instead of the one from libc (unless IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS is defined) +// Compatibility checks of arguments and formats done by clang and GCC will be disabled in order to support the extra formats provided by stb_sprintf.h. +//#define IMGUI_USE_STB_SPRINTF + +//---- Use FreeType to build and rasterize the font atlas (instead of stb_truetype which is embedded by default in Dear ImGui) +// Requires FreeType headers to be available in the include path. Requires program to be compiled with 'misc/freetype/imgui_freetype.cpp' (in this repository) + the FreeType library (not provided). +// On Windows you may use vcpkg with 'vcpkg install freetype --triplet=x64-windows' + 'vcpkg integrate install'. +//#define IMGUI_ENABLE_FREETYPE + +//---- Use FreeType+lunasvg library to render OpenType SVG fonts (SVGinOT) +// Requires lunasvg headers to be available in the include path + program to be linked with the lunasvg library (not provided). +// Only works in combination with IMGUI_ENABLE_FREETYPE. +// (implementation is based on Freetype's rsvg-port.c which is licensed under CeCILL-C Free Software License Agreement) +//#define IMGUI_ENABLE_FREETYPE_LUNASVG + +//---- Use stb_truetype to build and rasterize the font atlas (default) +// The only purpose of this define is if you want force compilation of the stb_truetype backend ALONG with the FreeType backend. +//#define IMGUI_ENABLE_STB_TRUETYPE + +//---- Define constructor and implicit cast operators to convert back<>forth between your math types and ImVec2/ImVec4. +// This will be inlined as part of ImVec2 and ImVec4 class declarations. +/* +#define IM_VEC2_CLASS_EXTRA \ + constexpr ImVec2(const MyVec2& f) : x(f.x), y(f.y) {} \ + operator MyVec2() const { return MyVec2(x,y); } + +#define IM_VEC4_CLASS_EXTRA \ + constexpr ImVec4(const MyVec4& f) : x(f.x), y(f.y), z(f.z), w(f.w) {} \ + operator MyVec4() const { return MyVec4(x,y,z,w); } +*/ +//---- ...Or use Dear ImGui's own very basic math operators. +//#define IMGUI_DEFINE_MATH_OPERATORS + +//---- Use 32-bit vertex indices (default is 16-bit) is one way to allow large meshes with more than 64K vertices. +// Your renderer backend will need to support it (most example renderer backends support both 16/32-bit indices). +// Another way to allow large meshes while keeping 16-bit indices is to handle ImDrawCmd::VtxOffset in your renderer. +// Read about ImGuiBackendFlags_RendererHasVtxOffset for details. +//#define ImDrawIdx unsigned int + +//---- Override ImDrawCallback signature (will need to modify renderer backends accordingly) +//struct ImDrawList; +//struct ImDrawCmd; +//typedef void (*MyImDrawCallback)(const ImDrawList* draw_list, const ImDrawCmd* cmd, void* my_renderer_user_data); +//#define ImDrawCallback MyImDrawCallback + +//---- Debug Tools: Macro to break in Debugger (we provide a default implementation of this in the codebase) +// (use 'Metrics->Tools->Item Picker' to pick widgets with the mouse and break into them for easy debugging.) +//#define IM_DEBUG_BREAK IM_ASSERT(0) +//#define IM_DEBUG_BREAK __debugbreak() + +//---- Debug Tools: Enable slower asserts +//#define IMGUI_DEBUG_PARANOID + +//---- Tip: You can add extra functions within the ImGui:: namespace from anywhere (e.g. your own sources/header files) +/* +namespace ImGui +{ + void MyFunction(const char* name, MyMatrix44* mtx); +} +*/ diff --git a/external/lumin/thirdparty/imgui/imgui.cpp b/external/lumin/thirdparty/imgui/imgui.cpp new file mode 100644 index 0000000..df3246e --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui.cpp @@ -0,0 +1,16684 @@ +// dear imgui, v1.91.3 WIP +// (main code and documentation) + +// Help: +// - See links below. +// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that. +// - Read top of imgui.cpp for more details, links and comments. + +// Resources: +// - FAQ ........................ https://dearimgui.com/faq (in repository as docs/FAQ.md) +// - Homepage ................... https://github.com/ocornut/imgui +// - Releases & changelog ....... https://github.com/ocornut/imgui/releases +// - Gallery .................... https://github.com/ocornut/imgui/issues?q=label%3Agallery (please post your screenshots/video there!) +// - Wiki ....................... https://github.com/ocornut/imgui/wiki (lots of good stuff there) +// - Getting Started https://github.com/ocornut/imgui/wiki/Getting-Started (how to integrate in an existing app by adding ~25 lines of code) +// - Third-party Extensions https://github.com/ocornut/imgui/wiki/Useful-Extensions (ImPlot & many more) +// - Bindings/Backends https://github.com/ocornut/imgui/wiki/Bindings (language bindings, backends for various tech/engines) +// - Glossary https://github.com/ocornut/imgui/wiki/Glossary +// - Debug Tools https://github.com/ocornut/imgui/wiki/Debug-Tools +// - Software using Dear ImGui https://github.com/ocornut/imgui/wiki/Software-using-dear-imgui +// - Issues & support ........... https://github.com/ocornut/imgui/issues +// - Test Engine & Automation ... https://github.com/ocornut/imgui_test_engine (test suite, test engine to automate your apps) + +// For first-time users having issues compiling/linking/running/loading fonts: +// please post in https://github.com/ocornut/imgui/discussions if you cannot find a solution in resources above. +// Everything else should be asked in 'Issues'! We are building a database of cross-linked knowledge there. + +// Copyright (c) 2014-2024 Omar Cornut +// Developed by Omar Cornut and every direct or indirect contributors to the GitHub. +// See LICENSE.txt for copyright and licensing details (standard MIT License). +// This library is free but needs your support to sustain development and maintenance. +// Businesses: you can support continued development via B2B invoiced technical support, maintenance and sponsoring contracts. +// PLEASE reach out at omar AT dearimgui DOT com. See https://github.com/ocornut/imgui/wiki/Funding +// Businesses: you can also purchase licenses for the Dear ImGui Automation/Test Engine. + +// It is recommended that you don't modify imgui.cpp! It will become difficult for you to update the library. +// Note that 'ImGui::' being a namespace, you can add functions into the namespace from your own source files, without +// modifying imgui.h or imgui.cpp. You may include imgui_internal.h to access internal data structures, but it doesn't +// come with any guarantee of forward compatibility. Discussing your changes on the GitHub Issue Tracker may lead you +// to a better solution or official support for them. + +/* + +Index of this file: + +DOCUMENTATION + +- MISSION STATEMENT +- CONTROLS GUIDE +- PROGRAMMER GUIDE + - READ FIRST + - HOW TO UPDATE TO A NEWER VERSION OF DEAR IMGUI + - GETTING STARTED WITH INTEGRATING DEAR IMGUI IN YOUR CODE/ENGINE + - HOW A SIMPLE APPLICATION MAY LOOK LIKE + - HOW A SIMPLE RENDERING FUNCTION MAY LOOK LIKE +- API BREAKING CHANGES (read me when you update!) +- FREQUENTLY ASKED QUESTIONS (FAQ) + - Read all answers online: https://www.dearimgui.com/faq, or in docs/FAQ.md (with a Markdown viewer) + +CODE +(search for "[SECTION]" in the code to find them) + +// [SECTION] INCLUDES +// [SECTION] FORWARD DECLARATIONS +// [SECTION] CONTEXT AND MEMORY ALLOCATORS +// [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO, ImGuiPlatformIO) +// [SECTION] MISC HELPERS/UTILITIES (Geometry functions) +// [SECTION] MISC HELPERS/UTILITIES (String, Format, Hash functions) +// [SECTION] MISC HELPERS/UTILITIES (File functions) +// [SECTION] MISC HELPERS/UTILITIES (ImText* functions) +// [SECTION] MISC HELPERS/UTILITIES (Color functions) +// [SECTION] ImGuiStorage +// [SECTION] ImGuiTextFilter +// [SECTION] ImGuiTextBuffer, ImGuiTextIndex +// [SECTION] ImGuiListClipper +// [SECTION] STYLING +// [SECTION] RENDER HELPERS +// [SECTION] INITIALIZATION, SHUTDOWN +// [SECTION] MAIN CODE (most of the code! lots of stuff, needs tidying up!) +// [SECTION] ID STACK +// [SECTION] INPUTS +// [SECTION] ERROR CHECKING, STATE RECOVERY +// [SECTION] ITEM SUBMISSION +// [SECTION] LAYOUT +// [SECTION] SCROLLING +// [SECTION] TOOLTIPS +// [SECTION] POPUPS +// [SECTION] KEYBOARD/GAMEPAD NAVIGATION +// [SECTION] DRAG AND DROP +// [SECTION] LOGGING/CAPTURING +// [SECTION] SETTINGS +// [SECTION] LOCALIZATION +// [SECTION] VIEWPORTS, PLATFORM WINDOWS +// [SECTION] PLATFORM DEPENDENT HELPERS +// [SECTION] METRICS/DEBUGGER WINDOW +// [SECTION] DEBUG LOG WINDOW +// [SECTION] OTHER DEBUG TOOLS (ITEM PICKER, ID STACK TOOL) + +*/ + +//----------------------------------------------------------------------------- +// DOCUMENTATION +//----------------------------------------------------------------------------- + +/* + + MISSION STATEMENT + ================= + + - Easy to use to create code-driven and data-driven tools. + - Easy to use to create ad hoc short-lived tools and long-lived, more elaborate tools. + - Easy to hack and improve. + - Minimize setup and maintenance. + - Minimize state storage on user side. + - Minimize state synchronization. + - Portable, minimize dependencies, run on target (consoles, phones, etc.). + - Efficient runtime and memory consumption. + + Designed primarily for developers and content-creators, not the typical end-user! + Some of the current weaknesses (which we aim to address in the future) includes: + + - Doesn't look fancy. + - Limited layout features, intricate layouts are typically crafted in code. + + + CONTROLS GUIDE + ============== + + - MOUSE CONTROLS + - Mouse wheel: Scroll vertically. + - SHIFT+Mouse wheel: Scroll horizontally. + - Click [X]: Close a window, available when 'bool* p_open' is passed to ImGui::Begin(). + - Click ^, Double-Click title: Collapse window. + - Drag on corner/border: Resize window (double-click to auto fit window to its contents). + - Drag on any empty space: Move window (unless io.ConfigWindowsMoveFromTitleBarOnly = true). + - Left-click outside popup: Close popup stack (right-click over underlying popup: Partially close popup stack). + + - TEXT EDITOR + - Hold SHIFT or Drag Mouse: Select text. + - CTRL+Left/Right: Word jump. + - CTRL+Shift+Left/Right: Select words. + - CTRL+A or Double-Click: Select All. + - CTRL+X, CTRL+C, CTRL+V: Use OS clipboard. + - CTRL+Z, CTRL+Y: Undo, Redo. + - ESCAPE: Revert text to its original value. + - On OSX, controls are automatically adjusted to match standard OSX text editing 2ts and behaviors. + + - KEYBOARD CONTROLS + - Basic: + - Tab, SHIFT+Tab Cycle through text editable fields. + - CTRL+Tab, CTRL+Shift+Tab Cycle through windows. + - CTRL+Click Input text into a Slider or Drag widget. + - Extended features with `io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard`: + - Tab, SHIFT+Tab: Cycle through every items. + - Arrow keys Move through items using directional navigation. Tweak value. + - Arrow keys + Alt, Shift Tweak slower, tweak faster (when using arrow keys). + - Enter Activate item (prefer text input when possible). + - Space Activate item (prefer tweaking with arrows when possible). + - Escape Deactivate item, leave child window, close popup. + - Page Up, Page Down Previous page, next page. + - Home, End Scroll to top, scroll to bottom. + - Alt Toggle between scrolling layer and menu layer. + - CTRL+Tab then Ctrl+Arrows Move window. Hold SHIFT to resize instead of moving. + - Output when ImGuiConfigFlags_NavEnableKeyboard set, + - io.WantCaptureKeyboard flag is set when keyboard is claimed. + - io.NavActive: true when a window is focused and it doesn't have the ImGuiWindowFlags_NoNavInputs flag set. + - io.NavVisible: true when the navigation cursor is visible (usually goes to back false when mouse is used). + + - GAMEPAD CONTROLS + - Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. + - Particularly useful to use Dear ImGui on a console system (e.g. PlayStation, Switch, Xbox) without a mouse! + - Download controller mapping PNG/PSD at http://dearimgui.com/controls_sheets + - Backend support: backend needs to: + - Set 'io.BackendFlags |= ImGuiBackendFlags_HasGamepad' + call io.AddKeyEvent/AddKeyAnalogEvent() with ImGuiKey_Gamepad_XXX keys. + - For analog values (0.0f to 1.0f), backend is responsible to handling a dead-zone and rescaling inputs accordingly. + Backend code will probably need to transform your raw inputs (such as e.g. remapping your 0.2..0.9 raw input range to 0.0..1.0 imgui range, etc.). + - BEFORE 1.87, BACKENDS USED TO WRITE TO io.NavInputs[]. This is now obsolete. Please call io functions instead! + - If you need to share inputs between your game and the Dear ImGui interface, the easiest approach is to go all-or-nothing, + with a buttons combo to toggle the target. Please reach out if you think the game vs navigation input sharing could be improved. + + - REMOTE INPUTS SHARING & MOUSE EMULATION + - PS4/PS5 users: Consider emulating a mouse cursor with DualShock touch pad or a spare analog stick as a mouse-emulation fallback. + - Consoles/Tablet/Phone users: Consider using a Synergy 1.x server (on your PC) + run examples/libs/synergy/uSynergy.c (on your console/tablet/phone app) + in order to share your PC mouse/keyboard. + - See https://github.com/ocornut/imgui/wiki/Useful-Extensions#remoting for other remoting solutions. + - On a TV/console system where readability may be lower or mouse inputs may be awkward, you may want to set the ImGuiConfigFlags_NavEnableSetMousePos flag. + Enabling ImGuiConfigFlags_NavEnableSetMousePos + ImGuiBackendFlags_HasSetMousePos instructs Dear ImGui to move your mouse cursor along with navigation movements. + When enabled, the NewFrame() function may alter 'io.MousePos' and set 'io.WantSetMousePos' to notify you that it wants the mouse cursor to be moved. + When that happens your backend NEEDS to move the OS or underlying mouse cursor on the next frame. Some of the backends in examples/ do that. + (If you set the NavEnableSetMousePos flag but don't honor 'io.WantSetMousePos' properly, Dear ImGui will misbehave as it will see your mouse moving back & forth!) + (In a setup when you may not have easy control over the mouse cursor, e.g. uSynergy.c doesn't expose moving remote mouse cursor, you may want + to set a boolean to ignore your other external mouse positions until the external source is moved again.) + + + PROGRAMMER GUIDE + ================ + + READ FIRST + ---------- + - Remember to check the wonderful Wiki (https://github.com/ocornut/imgui/wiki) + - Your code creates the UI every frame of your application loop, if your code doesn't run the UI is gone! + The UI can be highly dynamic, there are no construction or destruction steps, less superfluous + data retention on your side, less state duplication, less state synchronization, fewer bugs. + - Call and read ImGui::ShowDemoWindow() for demo code demonstrating most features. + Or browse https://pthom.github.io/imgui_manual_online/manual/imgui_manual.html for interactive web version. + - The library is designed to be built from sources. Avoid pre-compiled binaries and packaged versions. See imconfig.h to configure your build. + - Dear ImGui is an implementation of the IMGUI paradigm (immediate-mode graphical user interface, a term coined by Casey Muratori). + You can learn about IMGUI principles at http://www.johno.se/book/imgui.html, http://mollyrocket.com/861 & more links in Wiki. + - Dear ImGui is a "single pass" rasterizing implementation of the IMGUI paradigm, aimed at ease of use and high-performances. + For every application frame, your UI code will be called only once. This is in contrast to e.g. Unity's implementation of an IMGUI, + where the UI code is called multiple times ("multiple passes") from a single entry point. There are pros and cons to both approaches. + - Our origin is on the top-left. In axis aligned bounding boxes, Min = top-left, Max = bottom-right. + - Please make sure you have asserts enabled (IM_ASSERT redirects to assert() by default, but can be redirected). + If you get an assert, read the messages and comments around the assert. + - This codebase aims to be highly optimized: + - A typical idle frame should never call malloc/free. + - We rely on a maximum of constant-time or O(N) algorithms. Limiting searches/scans as much as possible. + - We put particular energy in making sure performances are decent with typical "Debug" build settings as well. + Which mean we tend to avoid over-relying on "zero-cost abstraction" as they aren't zero-cost at all. + - This codebase aims to be both highly opinionated and highly flexible: + - This code works because of the things it choose to solve or not solve. + - C++: this is a pragmatic C-ish codebase: we don't use fancy C++ features, we don't include C++ headers, + and ImGui:: is a namespace. We rarely use member functions (and when we did, I am mostly regretting it now). + This is to increase compatibility, increase maintainability and facilitate use from other languages. + - C++: ImVec2/ImVec4 do not expose math operators by default, because it is expected that you use your own math types. + See FAQ "How can I use my own math types instead of ImVec2/ImVec4?" for details about setting up imconfig.h for that. + We can can optionally export math operators for ImVec2/ImVec4 using IMGUI_DEFINE_MATH_OPERATORS, which we use internally. + - C++: pay attention that ImVector<> manipulates plain-old-data and does not honor construction/destruction + (so don't use ImVector in your code or at our own risk!). + - Building: We don't use nor mandate a build system for the main library. + This is in an effort to ensure that it works in the real world aka with any esoteric build setup. + This is also because providing a build system for the main library would be of little-value. + The build problems are almost never coming from the main library but from specific backends. + + + HOW TO UPDATE TO A NEWER VERSION OF DEAR IMGUI + ---------------------------------------------- + - Update submodule or copy/overwrite every file. + - About imconfig.h: + - You may modify your copy of imconfig.h, in this case don't overwrite it. + - or you may locally branch to modify imconfig.h and merge/rebase latest. + - or you may '#define IMGUI_USER_CONFIG "my_config_file.h"' globally from your build system to + specify a custom path for your imconfig.h file and instead not have to modify the default one. + + - Overwrite all the sources files except for imconfig.h (if you have modified your copy of imconfig.h) + - Or maintain your own branch where you have imconfig.h modified as a top-most commit which you can regularly rebase over "master". + - You can also use '#define IMGUI_USER_CONFIG "my_config_file.h" to redirect configuration to your own file. + - Read the "API BREAKING CHANGES" section (below). This is where we list occasional API breaking changes. + If a function/type has been renamed / or marked obsolete, try to fix the name in your code before it is permanently removed + from the public API. If you have a problem with a missing function/symbols, search for its name in the code, there will + likely be a comment about it. Please report any issue to the GitHub page! + - To find out usage of old API, you can add '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' in your configuration file. + - Try to keep your copy of Dear ImGui reasonably up to date! + + + GETTING STARTED WITH INTEGRATING DEAR IMGUI IN YOUR CODE/ENGINE + --------------------------------------------------------------- + - See https://github.com/ocornut/imgui/wiki/Getting-Started. + - Run and study the examples and demo in imgui_demo.cpp to get acquainted with the library. + - In the majority of cases you should be able to use unmodified backends files available in the backends/ folder. + - Add the Dear ImGui source files + selected backend source files to your projects or using your preferred build system. + It is recommended you build and statically link the .cpp files as part of your project and NOT as a shared library (DLL). + - You can later customize the imconfig.h file to tweak some compile-time behavior, such as integrating Dear ImGui types with your own maths types. + - When using Dear ImGui, your programming IDE is your friend: follow the declaration of variables, functions and types to find comments about them. + - Dear ImGui never touches or knows about your GPU state. The only function that knows about GPU is the draw function that you provide. + Effectively it means you can create widgets at any time in your code, regardless of considerations of being in "update" vs "render" + phases of your own application. All rendering information is stored into command-lists that you will retrieve after calling ImGui::Render(). + - Refer to the backends and demo applications in the examples/ folder for instruction on how to setup your code. + - If you are running over a standard OS with a common graphics API, you should be able to use unmodified imgui_impl_*** files from the examples/ folder. + + + HOW A SIMPLE APPLICATION MAY LOOK LIKE + -------------------------------------- + EXHIBIT 1: USING THE EXAMPLE BACKENDS (= imgui_impl_XXX.cpp files from the backends/ folder). + The sub-folders in examples/ contain examples applications following this structure. + + // Application init: create a dear imgui context, setup some options, load fonts + ImGui::CreateContext(); + ImGuiIO& io = ImGui::GetIO(); + // TODO: Set optional io.ConfigFlags values, e.g. 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard' to enable keyboard controls. + // TODO: Fill optional fields of the io structure later. + // TODO: Load TTF/OTF fonts if you don't want to use the default font. + + // Initialize helper Platform and Renderer backends (here we are using imgui_impl_win32.cpp and imgui_impl_dx11.cpp) + ImGui_ImplWin32_Init(hwnd); + ImGui_ImplDX11_Init(g_pd3dDevice, g_pd3dDeviceContext); + + // Application main loop + while (true) + { + // Feed inputs to dear imgui, start new frame + ImGui_ImplDX11_NewFrame(); + ImGui_ImplWin32_NewFrame(); + ImGui::NewFrame(); + + // Any application code here + ImGui::Text("Hello, world!"); + + // Render dear imgui into screen + ImGui::Render(); + ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData()); + g_pSwapChain->Present(1, 0); + } + + // Shutdown + ImGui_ImplDX11_Shutdown(); + ImGui_ImplWin32_Shutdown(); + ImGui::DestroyContext(); + + EXHIBIT 2: IMPLEMENTING CUSTOM BACKEND / CUSTOM ENGINE + + // Application init: create a dear imgui context, setup some options, load fonts + ImGui::CreateContext(); + ImGuiIO& io = ImGui::GetIO(); + // TODO: Set optional io.ConfigFlags values, e.g. 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard' to enable keyboard controls. + // TODO: Fill optional fields of the io structure later. + // TODO: Load TTF/OTF fonts if you don't want to use the default font. + + // Build and load the texture atlas into a texture + // (In the examples/ app this is usually done within the ImGui_ImplXXX_Init() function from one of the demo Renderer) + int width, height; + unsigned char* pixels = nullptr; + io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); + + // At this point you've got the texture data and you need to upload that to your graphic system: + // After we have created the texture, store its pointer/identifier (_in whichever format your engine uses_) in 'io.Fonts->TexID'. + // This will be passed back to your via the renderer. Basically ImTextureID == void*. Read FAQ for details about ImTextureID. + MyTexture* texture = MyEngine::CreateTextureFromMemoryPixels(pixels, width, height, TEXTURE_TYPE_RGBA32) + io.Fonts->SetTexID((void*)texture); + + // Application main loop + while (true) + { + // Setup low-level inputs, e.g. on Win32: calling GetKeyboardState(), or write to those fields from your Windows message handlers, etc. + // (In the examples/ app this is usually done within the ImGui_ImplXXX_NewFrame() function from one of the demo Platform Backends) + io.DeltaTime = 1.0f/60.0f; // set the time elapsed since the previous frame (in seconds) + io.DisplaySize.x = 1920.0f; // set the current display width + io.DisplaySize.y = 1280.0f; // set the current display height here + io.AddMousePosEvent(mouse_x, mouse_y); // update mouse position + io.AddMouseButtonEvent(0, mouse_b[0]); // update mouse button states + io.AddMouseButtonEvent(1, mouse_b[1]); // update mouse button states + + // Call NewFrame(), after this point you can use ImGui::* functions anytime + // (So you want to try calling NewFrame() as early as you can in your main loop to be able to use Dear ImGui everywhere) + ImGui::NewFrame(); + + // Most of your application code here + ImGui::Text("Hello, world!"); + MyGameUpdate(); // may use any Dear ImGui functions, e.g. ImGui::Begin("My window"); ImGui::Text("Hello, world!"); ImGui::End(); + MyGameRender(); // may use any Dear ImGui functions as well! + + // Render dear imgui, swap buffers + // (You want to try calling EndFrame/Render as late as you can, to be able to use Dear ImGui in your own game rendering code) + ImGui::EndFrame(); + ImGui::Render(); + ImDrawData* draw_data = ImGui::GetDrawData(); + MyImGuiRenderFunction(draw_data); + SwapBuffers(); + } + + // Shutdown + ImGui::DestroyContext(); + + To decide whether to dispatch mouse/keyboard inputs to Dear ImGui to the rest of your application, + you should read the 'io.WantCaptureMouse', 'io.WantCaptureKeyboard' and 'io.WantTextInput' flags! + Please read the FAQ entry "How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application?" about this. + + + HOW A SIMPLE RENDERING FUNCTION MAY LOOK LIKE + --------------------------------------------- + The backends in impl_impl_XXX.cpp files contain many working implementations of a rendering function. + + void MyImGuiRenderFunction(ImDrawData* draw_data) + { + // TODO: Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled + // TODO: Setup texture sampling state: sample with bilinear filtering (NOT point/nearest filtering). Use 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines;' to allow point/nearest filtering. + // TODO: Setup viewport covering draw_data->DisplayPos to draw_data->DisplayPos + draw_data->DisplaySize + // TODO: Setup orthographic projection matrix cover draw_data->DisplayPos to draw_data->DisplayPos + draw_data->DisplaySize + // TODO: Setup shader: vertex { float2 pos, float2 uv, u32 color }, fragment shader sample color from 1 texture, multiply by vertex color. + ImVec2 clip_off = draw_data->DisplayPos; + for (int n = 0; n < draw_data->CmdListsCount; n++) + { + const ImDrawList* cmd_list = draw_data->CmdLists[n]; + const ImDrawVert* vtx_buffer = cmd_list->VtxBuffer.Data; // vertex buffer generated by Dear ImGui + const ImDrawIdx* idx_buffer = cmd_list->IdxBuffer.Data; // index buffer generated by Dear ImGui + for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++) + { + const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i]; + if (pcmd->UserCallback) + { + pcmd->UserCallback(cmd_list, pcmd); + } + else + { + // Project scissor/clipping rectangles into framebuffer space + ImVec2 clip_min(pcmd->ClipRect.x - clip_off.x, pcmd->ClipRect.y - clip_off.y); + ImVec2 clip_max(pcmd->ClipRect.z - clip_off.x, pcmd->ClipRect.w - clip_off.y); + if (clip_max.x <= clip_min.x || clip_max.y <= clip_min.y) + continue; + + // We are using scissoring to clip some objects. All low-level graphics API should support it. + // - If your engine doesn't support scissoring yet, you may ignore this at first. You will get some small glitches + // (some elements visible outside their bounds) but you can fix that once everything else works! + // - Clipping coordinates are provided in imgui coordinates space: + // - For a given viewport, draw_data->DisplayPos == viewport->Pos and draw_data->DisplaySize == viewport->Size + // - In a single viewport application, draw_data->DisplayPos == (0,0) and draw_data->DisplaySize == io.DisplaySize, but always use GetMainViewport()->Pos/Size instead of hardcoding those values. + // - In the interest of supporting multi-viewport applications (see 'docking' branch on github), + // always subtract draw_data->DisplayPos from clipping bounds to convert them to your viewport space. + // - Note that pcmd->ClipRect contains Min+Max bounds. Some graphics API may use Min+Max, other may use Min+Size (size being Max-Min) + MyEngineSetScissor(clip_min.x, clip_min.y, clip_max.x, clip_max.y); + + // The texture for the draw call is specified by pcmd->GetTexID(). + // The vast majority of draw calls will use the Dear ImGui texture atlas, which value you have set yourself during initialization. + MyEngineBindTexture((MyTexture*)pcmd->GetTexID()); + + // Render 'pcmd->ElemCount/3' indexed triangles. + // By default the indices ImDrawIdx are 16-bit, you can change them to 32-bit in imconfig.h if your engine doesn't support 16-bit indices. + MyEngineDrawIndexedTriangles(pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, idx_buffer + pcmd->IdxOffset, vtx_buffer, pcmd->VtxOffset); + } + } + } + } + + + API BREAKING CHANGES + ==================== + + Occasionally introducing changes that are breaking the API. We try to make the breakage minor and easy to fix. + Below is a change-log of API breaking changes only. If you are using one of the functions listed, expect to have to fix some code. + When you are not sure about an old symbol or function name, try using the Search/Find function of your IDE to look for comments or references in all imgui files. + You can read releases logs https://github.com/ocornut/imgui/releases for more details. + + - 2024/08/23 (1.91.1) - renamed ImGuiChildFlags_Border to ImGuiChildFlags_Borders for consistency. kept inline redirection flag. + - 2024/08/22 (1.91.1) - moved some functions from ImGuiIO to ImGuiPlatformIO structure: + - io.GetClipboardTextFn -> platform_io.Platform_GetClipboardTextFn + changed 'void* user_data' to 'ImGuiContext* ctx'. Pull your user data from platform_io.ClipboardUserData. + - io.SetClipboardTextFn -> platform_io.Platform_SetClipboardTextFn + same as above line. + - io.PlatformOpenInShellFn -> platform_io.Platform_OpenInShellFn (#7660) + - io.PlatformSetImeDataFn -> platform_io.Platform_SetImeDataFn + - io.PlatformLocaleDecimalPoint -> platform_io.Platform_LocaleDecimalPoint (#7389, #6719, #2278) + - access those via GetPlatformIO() instead of GetIO(). + some were introduced very recently and often automatically setup by core library and backends, so for those we are exceptionally not maintaining a legacy redirection symbol. + - commented the old ImageButton() signature obsoleted in 1.89 (~August 2022). As a reminder: + - old ImageButton() before 1.89 used ImTextureId as item id (created issue with e.g. multiple buttons in same scope, transient texture id values, opaque computation of ID) + - new ImageButton() since 1.89 requires an explicit 'const char* str_id' + - old ImageButton() before 1.89 had frame_padding' override argument. + - new ImageButton() since 1.89 always use style.FramePadding, which you can freely override with PushStyleVar()/PopStyleVar(). + - 2024/07/25 (1.91.0) - obsoleted GetContentRegionMax(), GetWindowContentRegionMin() and GetWindowContentRegionMax(). (see #7838 on GitHub for more info) + you should never need those functions. you can do everything with GetCursorScreenPos() and GetContentRegionAvail() in a more simple way. + - instead of: GetWindowContentRegionMax().x - GetCursorPos().x + - you can use: GetContentRegionAvail().x + - instead of: GetWindowContentRegionMax().x + GetWindowPos().x + - you can use: GetCursorScreenPos().x + GetContentRegionAvail().x // when called from left edge of window + - instead of: GetContentRegionMax() + - you can use: GetContentRegionAvail() + GetCursorScreenPos() - GetWindowPos() // right edge in local coordinates + - instead of: GetWindowContentRegionMax().x - GetWindowContentRegionMin().x + - you can use: GetContentRegionAvail() // when called from left edge of window + - 2024/07/15 (1.91.0) - renamed ImGuiSelectableFlags_DontClosePopups to ImGuiSelectableFlags_NoAutoClosePopups. (#1379, #1468, #2200, #4936, #5216, #7302, #7573) + (internals: also renamed ImGuiItemFlags_SelectableDontClosePopup into ImGuiItemFlags_AutoClosePopups with inverted behaviors) + - 2024/07/15 (1.91.0) - obsoleted PushButtonRepeat()/PopButtonRepeat() in favor of using new PushItemFlag(ImGuiItemFlags_ButtonRepeat, ...)/PopItemFlag(). + - 2024/07/02 (1.91.0) - commented out obsolete ImGuiModFlags (renamed to ImGuiKeyChord in 1.89). (#4921, #456) + - commented out obsolete ImGuiModFlags_XXX values (renamed to ImGuiMod_XXX in 1.89). (#4921, #456) + - ImGuiModFlags_Ctrl -> ImGuiMod_Ctrl, ImGuiModFlags_Shift -> ImGuiMod_Shift etc. + - 2024/07/02 (1.91.0) - IO, IME: renamed platform IME hook and added explicit context for consistency and future-proofness. + - old: io.SetPlatformImeDataFn(ImGuiViewport* viewport, ImGuiPlatformImeData* data); + - new: io.PlatformSetImeDataFn(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); + - 2024/06/21 (1.90.9) - BeginChild: added ImGuiChildFlags_NavFlattened as a replacement for the window flag ImGuiWindowFlags_NavFlattened: the feature only ever made sense for BeginChild() anyhow. + - old: BeginChild("Name", size, 0, ImGuiWindowFlags_NavFlattened); + - new: BeginChild("Name", size, ImGuiChildFlags_NavFlattened, 0); + - 2024/06/21 (1.90.9) - io: ClearInputKeys() (first exposed in 1.89.8) doesn't clear mouse data, newly added ClearInputMouse() does. + - 2024/06/20 (1.90.9) - renamed ImGuiDragDropFlags_SourceAutoExpirePayload to ImGuiDragDropFlags_PayloadAutoExpire. + - 2024/06/18 (1.90.9) - style: renamed ImGuiCol_TabActive -> ImGuiCol_TabSelected, ImGuiCol_TabUnfocused -> ImGuiCol_TabDimmed, ImGuiCol_TabUnfocusedActive -> ImGuiCol_TabDimmedSelected. + - 2024/06/10 (1.90.9) - removed old nested structure: renaming ImGuiStorage::ImGuiStoragePair type to ImGuiStoragePair (simpler for many languages). + - 2024/06/06 (1.90.8) - reordered ImGuiInputTextFlags values. This should not be breaking unless you are using generated headers that have values not matching the main library. + - 2024/06/06 (1.90.8) - removed 'ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft', was mostly unused and misleading. + - 2024/05/27 (1.90.7) - commented out obsolete symbols marked obsolete in 1.88 (May 2022): + - old: CaptureKeyboardFromApp(bool) + - new: SetNextFrameWantCaptureKeyboard(bool) + - old: CaptureMouseFromApp(bool) + - new: SetNextFrameWantCaptureMouse(bool) + - 2024/05/22 (1.90.7) - inputs (internals): renamed ImGuiKeyOwner_None to ImGuiKeyOwner_NoOwner, to make use more explicit and reduce confusion with the default it is a non-zero value and cannot be the default value (never made public, but disclosing as I expect a few users caught on owner-aware inputs). + - inputs (internals): renamed ImGuiInputFlags_RouteGlobalLow -> ImGuiInputFlags_RouteGlobal, ImGuiInputFlags_RouteGlobal -> ImGuiInputFlags_RouteGlobalOverFocused, ImGuiInputFlags_RouteGlobalHigh -> ImGuiInputFlags_RouteGlobalHighest. + - inputs (internals): Shortcut(), SetShortcutRouting(): swapped last two parameters order in function signatures: + - old: Shortcut(ImGuiKeyChord key_chord, ImGuiID owner_id = 0, ImGuiInputFlags flags = 0); + - new: Shortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags = 0, ImGuiID owner_id = 0); + - inputs (internals): owner-aware versions of IsKeyPressed(), IsKeyChordPressed(), IsMouseClicked(): swapped last two parameters order in function signatures. + - old: IsKeyPressed(ImGuiKey key, ImGuiID owner_id, ImGuiInputFlags flags = 0); + - new: IsKeyPressed(ImGuiKey key, ImGuiInputFlags flags, ImGuiID owner_id = 0); + - old: IsMouseClicked(ImGuiMouseButton button, ImGuiID owner_id, ImGuiInputFlags flags = 0); + - new: IsMouseClicked(ImGuiMouseButton button, ImGuiInputFlags flags, ImGuiID owner_id = 0); + for various reasons those changes makes sense. They are being made because making some of those API public. + only past users of imgui_internal.h with the extra parameters will be affected. Added asserts for valid flags in various functions to detect _some_ misuses, BUT NOT ALL. + - 2024/05/16 (1.90.7) - inputs: on macOS X, Cmd and Ctrl keys are now automatically swapped by io.AddKeyEvent() as this naturally align with how macOS X uses those keys. + - it shouldn't really affect you unless you had custom shortcut swapping in place for macOS X apps. + - removed ImGuiMod_Shortcut which was previously dynamically remapping to Ctrl or Cmd/Super. It is now unnecessary to specific cross-platform idiomatic shortcuts. (#2343, #4084, #5923, #456) + - 2024/05/14 (1.90.7) - backends: SDL_Renderer2 and SDL_Renderer3 backend now take a SDL_Renderer* in their RenderDrawData() functions. + - 2024/04/18 (1.90.6) - TreeNode: Fixed a layout inconsistency when using an empty/hidden label followed by a SameLine() call. (#7505, #282) + - old: TreeNode("##Hidden"); SameLine(); Text("Hello"); // <-- This was actually incorrect! BUT appeared to look ok with the default style where ItemSpacing.x == FramePadding.x * 2 (it didn't look aligned otherwise). + - new: TreeNode("##Hidden"); SameLine(0, 0); Text("Hello"); // <-- This is correct for all styles values. + with the fix, IF you were successfully using TreeNode("")+SameLine(); you will now have extra spacing between your TreeNode and the following item. + You'll need to change the SameLine() call to SameLine(0,0) to remove this extraneous spacing. This seemed like the more sensible fix that's not making things less consistent. + (Note: when using this idiom you are likely to also use ImGuiTreeNodeFlags_SpanAvailWidth). + - 2024/03/18 (1.90.5) - merged the radius_x/radius_y parameters in ImDrawList::AddEllipse(), AddEllipseFilled() and PathEllipticalArcTo() into a single ImVec2 parameter. Exceptionally, because those functions were added in 1.90, we are not adding inline redirection functions. The transition is easy and should affect few users. (#2743, #7417) + - 2024/03/08 (1.90.5) - inputs: more formally obsoleted GetKeyIndex() when IMGUI_DISABLE_OBSOLETE_FUNCTIONS is set. It has been unnecessary and a no-op since 1.87 (it returns the same value as passed when used with a 1.87+ backend using io.AddKeyEvent() function). (#4921) + - IsKeyPressed(GetKeyIndex(ImGuiKey_XXX)) -> use IsKeyPressed(ImGuiKey_XXX) + - 2024/01/15 (1.90.2) - commented out obsolete ImGuiIO::ImeWindowHandle marked obsolete in 1.87, favor of writing to 'void* ImGuiViewport::PlatformHandleRaw'. + - 2023/12/19 (1.90.1) - commented out obsolete ImGuiKey_KeyPadEnter redirection to ImGuiKey_KeypadEnter. + - 2023/11/06 (1.90.1) - removed CalcListClipping() marked obsolete in 1.86. Prefer using ImGuiListClipper which can return non-contiguous ranges. + - 2023/11/05 (1.90.1) - imgui_freetype: commented out ImGuiFreeType::BuildFontAtlas() obsoleted in 1.81. prefer using #define IMGUI_ENABLE_FREETYPE or see commented code for manual calls. + - 2023/11/05 (1.90.1) - internals,columns: commented out legacy ImGuiColumnsFlags_XXX symbols redirecting to ImGuiOldColumnsFlags_XXX, obsoleted from imgui_internal.h in 1.80. + - 2023/11/09 (1.90.0) - removed IM_OFFSETOF() macro in favor of using offsetof() available in C++11. Kept redirection define (will obsolete). + - 2023/11/07 (1.90.0) - removed BeginChildFrame()/EndChildFrame() in favor of using BeginChild() with the ImGuiChildFlags_FrameStyle flag. kept inline redirection function (will obsolete). + those functions were merely PushStyle/PopStyle helpers, the removal isn't so much motivated by needing to add the feature in BeginChild(), but by the necessity to avoid BeginChildFrame() signature mismatching BeginChild() signature and features. + - 2023/11/02 (1.90.0) - BeginChild: upgraded 'bool border = true' parameter to 'ImGuiChildFlags flags' type, added ImGuiChildFlags_Border equivalent. As with our prior "bool-to-flags" API updates, the ImGuiChildFlags_Border value is guaranteed to be == true forever to ensure a smoother transition, meaning all existing calls will still work. + - old: BeginChild("Name", size, true) + - new: BeginChild("Name", size, ImGuiChildFlags_Border) + - old: BeginChild("Name", size, false) + - new: BeginChild("Name", size) or BeginChild("Name", 0) or BeginChild("Name", size, ImGuiChildFlags_None) + **AMEND FROM THE FUTURE: from 1.91.1, 'ImGuiChildFlags_Border' is called 'ImGuiChildFlags_Borders'** + - 2023/11/02 (1.90.0) - BeginChild: added child-flag ImGuiChildFlags_AlwaysUseWindowPadding as a replacement for the window-flag ImGuiWindowFlags_AlwaysUseWindowPadding: the feature only ever made sense for BeginChild() anyhow. + - old: BeginChild("Name", size, 0, ImGuiWindowFlags_AlwaysUseWindowPadding); + - new: BeginChild("Name", size, ImGuiChildFlags_AlwaysUseWindowPadding, 0); + - 2023/09/27 (1.90.0) - io: removed io.MetricsActiveAllocations introduced in 1.63. Same as 'g.DebugMemAllocCount - g.DebugMemFreeCount' (still displayed in Metrics, unlikely to be accessed by end-user). + - 2023/09/26 (1.90.0) - debug tools: Renamed ShowStackToolWindow() ("Stack Tool") to ShowIDStackToolWindow() ("ID Stack Tool"), as earlier name was misleading. Kept inline redirection function. (#4631) + - 2023/09/15 (1.90.0) - ListBox, Combo: changed signature of "name getter" callback in old one-liner ListBox()/Combo() apis. kept inline redirection function (will obsolete). + - old: bool Combo(const char* label, int* current_item, bool (*getter)(void* user_data, int idx, const char** out_text), ...) + - new: bool Combo(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), ...); + - old: bool ListBox(const char* label, int* current_item, bool (*getting)(void* user_data, int idx, const char** out_text), ...); + - new: bool ListBox(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), ...); + - 2023/09/08 (1.90.0) - commented out obsolete redirecting functions: + - GetWindowContentRegionWidth() -> use GetWindowContentRegionMax().x - GetWindowContentRegionMin().x. Consider that generally 'GetContentRegionAvail().x' is more useful. + - ImDrawCornerFlags_XXX -> use ImDrawFlags_RoundCornersXXX flags. Read 1.82 Changelog for details + grep commented names in sources. + - commented out runtime support for hardcoded ~0 or 0x01..0x0F rounding flags values for AddRect()/AddRectFilled()/PathRect()/AddImageRounded() -> use ImDrawFlags_RoundCornersXXX flags. Read 1.82 Changelog for details + - 2023/08/25 (1.89.9) - clipper: Renamed IncludeRangeByIndices() (also called ForceDisplayRangeByIndices() before 1.89.6) to IncludeItemsByIndex(). Kept inline redirection function. Sorry! + - 2023/07/12 (1.89.8) - ImDrawData: CmdLists now owned, changed from ImDrawList** to ImVector. Majority of users shouldn't be affected, but you cannot compare to NULL nor reassign manually anymore. Instead use AddDrawList(). (#6406, #4879, #1878) + - 2023/06/28 (1.89.7) - overlapping items: obsoleted 'SetItemAllowOverlap()' (called after item) in favor of calling 'SetNextItemAllowOverlap()' (called before item). 'SetItemAllowOverlap()' didn't and couldn't work reliably since 1.89 (2022-11-15). + - 2023/06/28 (1.89.7) - overlapping items: renamed 'ImGuiTreeNodeFlags_AllowItemOverlap' to 'ImGuiTreeNodeFlags_AllowOverlap', 'ImGuiSelectableFlags_AllowItemOverlap' to 'ImGuiSelectableFlags_AllowOverlap'. Kept redirecting enums (will obsolete). + - 2023/06/28 (1.89.7) - overlapping items: IsItemHovered() now by default return false when querying an item using AllowOverlap mode which is being overlapped. Use ImGuiHoveredFlags_AllowWhenOverlappedByItem to revert to old behavior. + - 2023/06/28 (1.89.7) - overlapping items: Selectable and TreeNode don't allow overlap when active so overlapping widgets won't appear as hovered. While this fixes a common small visual issue, it also means that calling IsItemHovered() after a non-reactive elements - e.g. Text() - overlapping an active one may fail if you don't use IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem). (#6610) + - 2023/06/20 (1.89.7) - moved io.HoverDelayShort/io.HoverDelayNormal to style.HoverDelayShort/style.HoverDelayNormal. As the fields were added in 1.89 and expected to be left unchanged by most users, or only tweaked once during app initialization, we are exceptionally accepting the breakage. + - 2023/05/30 (1.89.6) - backends: renamed "imgui_impl_sdlrenderer.cpp" to "imgui_impl_sdlrenderer2.cpp" and "imgui_impl_sdlrenderer.h" to "imgui_impl_sdlrenderer2.h". This is in prevision for the future release of SDL3. + - 2023/05/22 (1.89.6) - listbox: commented out obsolete/redirecting functions that were marked obsolete more than two years ago: + - ListBoxHeader() -> use BeginListBox() (note how two variants of ListBoxHeader() existed. Check commented versions in imgui.h for reference) + - ListBoxFooter() -> use EndListBox() + - 2023/05/15 (1.89.6) - clipper: commented out obsolete redirection constructor 'ImGuiListClipper(int items_count, float items_height = -1.0f)' that was marked obsolete in 1.79. Use default constructor + clipper.Begin(). + - 2023/05/15 (1.89.6) - clipper: renamed ImGuiListClipper::ForceDisplayRangeByIndices() to ImGuiListClipper::IncludeRangeByIndices(). + - 2023/03/14 (1.89.4) - commented out redirecting enums/functions names that were marked obsolete two years ago: + - ImGuiSliderFlags_ClampOnInput -> use ImGuiSliderFlags_AlwaysClamp + - ImGuiInputTextFlags_AlwaysInsertMode -> use ImGuiInputTextFlags_AlwaysOverwrite + - ImDrawList::AddBezierCurve() -> use ImDrawList::AddBezierCubic() + - ImDrawList::PathBezierCurveTo() -> use ImDrawList::PathBezierCubicCurveTo() + - 2023/03/09 (1.89.4) - renamed PushAllowKeyboardFocus()/PopAllowKeyboardFocus() to PushTabStop()/PopTabStop(). Kept inline redirection functions (will obsolete). + - 2023/03/09 (1.89.4) - tooltips: Added 'bool' return value to BeginTooltip() for API consistency. Please only submit contents and call EndTooltip() if BeginTooltip() returns true. In reality the function will _currently_ always return true, but further changes down the line may change this, best to clarify API sooner. + - 2023/02/15 (1.89.4) - moved the optional "courtesy maths operators" implementation from imgui_internal.h in imgui.h. + Even though we encourage using your own maths types and operators by setting up IM_VEC2_CLASS_EXTRA, + it has been frequently requested by people to use our own. We had an opt-in define which was + previously fulfilled in imgui_internal.h. It is now fulfilled in imgui.h. (#6164) + - OK: #define IMGUI_DEFINE_MATH_OPERATORS / #include "imgui.h" / #include "imgui_internal.h" + - Error: #include "imgui.h" / #define IMGUI_DEFINE_MATH_OPERATORS / #include "imgui_internal.h" + - 2023/02/07 (1.89.3) - backends: renamed "imgui_impl_sdl.cpp" to "imgui_impl_sdl2.cpp" and "imgui_impl_sdl.h" to "imgui_impl_sdl2.h". (#6146) This is in prevision for the future release of SDL3. + - 2022/10/26 (1.89) - commented out redirecting OpenPopupContextItem() which was briefly the name of OpenPopupOnItemClick() from 1.77 to 1.79. + - 2022/10/12 (1.89) - removed runtime patching of invalid "%f"/"%0.f" format strings for DragInt()/SliderInt(). This was obsoleted in 1.61 (May 2018). See 1.61 changelog for details. + - 2022/09/26 (1.89) - renamed and merged keyboard modifiers key enums and flags into a same set. Kept inline redirection enums (will obsolete). + - ImGuiKey_ModCtrl and ImGuiModFlags_Ctrl -> ImGuiMod_Ctrl + - ImGuiKey_ModShift and ImGuiModFlags_Shift -> ImGuiMod_Shift + - ImGuiKey_ModAlt and ImGuiModFlags_Alt -> ImGuiMod_Alt + - ImGuiKey_ModSuper and ImGuiModFlags_Super -> ImGuiMod_Super + the ImGuiKey_ModXXX were introduced in 1.87 and mostly used by backends. + the ImGuiModFlags_XXX have been exposed in imgui.h but not really used by any public api only by third-party extensions. + exceptionally commenting out the older ImGuiKeyModFlags_XXX names ahead of obsolescence schedule to reduce confusion and because they were not meant to be used anyway. + - 2022/09/20 (1.89) - ImGuiKey is now a typed enum, allowing ImGuiKey_XXX symbols to be named in debuggers. + this will require uses of legacy backend-dependent indices to be casted, e.g. + - with imgui_impl_glfw: IsKeyPressed(GLFW_KEY_A) -> IsKeyPressed((ImGuiKey)GLFW_KEY_A); + - with imgui_impl_win32: IsKeyPressed('A') -> IsKeyPressed((ImGuiKey)'A') + - etc. However if you are upgrading code you might well use the better, backend-agnostic IsKeyPressed(ImGuiKey_A) now! + - 2022/09/12 (1.89) - removed the bizarre legacy default argument for 'TreePush(const void* ptr = NULL)', always pass a pointer value explicitly. NULL/nullptr is ok but require cast, e.g. TreePush((void*)nullptr); + - 2022/09/05 (1.89) - commented out redirecting functions/enums names that were marked obsolete in 1.77 and 1.78 (June 2020): + - DragScalar(), DragScalarN(), DragFloat(), DragFloat2(), DragFloat3(), DragFloat4(): For old signatures ending with (..., const char* format, float power = 1.0f) -> use (..., format ImGuiSliderFlags_Logarithmic) if power != 1.0f. + - SliderScalar(), SliderScalarN(), SliderFloat(), SliderFloat2(), SliderFloat3(), SliderFloat4(): For old signatures ending with (..., const char* format, float power = 1.0f) -> use (..., format ImGuiSliderFlags_Logarithmic) if power != 1.0f. + - BeginPopupContextWindow(const char*, ImGuiMouseButton, bool) -> use BeginPopupContextWindow(const char*, ImGuiPopupFlags) + - 2022/09/02 (1.89) - obsoleted using SetCursorPos()/SetCursorScreenPos() to extend parent window/cell boundaries. + this relates to when moving the cursor position beyond current boundaries WITHOUT submitting an item. + - previously this would make the window content size ~200x200: + Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + End(); + - instead, please submit an item: + Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + Dummy(ImVec2(0,0)) + End(); + - alternative: + Begin(...) + Dummy(ImVec2(200,200)) + End(); + - content size is now only extended when submitting an item! + - with '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' this will now be detected and assert. + - without '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' this will silently be fixed until we obsolete it. + - 2022/08/03 (1.89) - changed signature of ImageButton() function. Kept redirection function (will obsolete). + - added 'const char* str_id' parameter + removed 'int frame_padding = -1' parameter. + - old signature: bool ImageButton(ImTextureID tex_id, ImVec2 size, ImVec2 uv0 = ImVec2(0,0), ImVec2 uv1 = ImVec2(1,1), int frame_padding = -1, ImVec4 bg_col = ImVec4(0,0,0,0), ImVec4 tint_col = ImVec4(1,1,1,1)); + - used the ImTextureID value to create an ID. This was inconsistent with other functions, led to ID conflicts, and caused problems with engines using transient ImTextureID values. + - had a FramePadding override which was inconsistent with other functions and made the already-long signature even longer. + - new signature: bool ImageButton(const char* str_id, ImTextureID tex_id, ImVec2 size, ImVec2 uv0 = ImVec2(0,0), ImVec2 uv1 = ImVec2(1,1), ImVec4 bg_col = ImVec4(0,0,0,0), ImVec4 tint_col = ImVec4(1,1,1,1)); + - requires an explicit identifier. You may still use e.g. PushID() calls and then pass an empty identifier. + - always uses style.FramePadding for padding, to be consistent with other buttons. You may use PushStyleVar() to alter this. + - 2022/07/08 (1.89) - inputs: removed io.NavInputs[] and ImGuiNavInput enum (following 1.87 changes). + - Official backends from 1.87+ -> no issue. + - Official backends from 1.60 to 1.86 -> will build and convert gamepad inputs, unless IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Need updating! + - Custom backends not writing to io.NavInputs[] -> no issue. + - Custom backends writing to io.NavInputs[] -> will build and convert gamepad inputs, unless IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Need fixing! + - TL;DR: Backends should call io.AddKeyEvent()/io.AddKeyAnalogEvent() with ImGuiKey_GamepadXXX values instead of filling io.NavInput[]. + - 2022/06/15 (1.88) - renamed IMGUI_DISABLE_METRICS_WINDOW to IMGUI_DISABLE_DEBUG_TOOLS for correctness. kept support for old define (will obsolete). + - 2022/05/03 (1.88) - backends: osx: removed ImGui_ImplOSX_HandleEvent() from backend API in favor of backend automatically handling event capture. All ImGui_ImplOSX_HandleEvent() calls should be removed as they are now unnecessary. + - 2022/04/05 (1.88) - inputs: renamed ImGuiKeyModFlags to ImGuiModFlags. Kept inline redirection enums (will obsolete). This was never used in public API functions but technically present in imgui.h and ImGuiIO. + - 2022/01/20 (1.87) - inputs: reworded gamepad IO. + - Backend writing to io.NavInputs[] -> backend should call io.AddKeyEvent()/io.AddKeyAnalogEvent() with ImGuiKey_GamepadXXX values. + - 2022/01/19 (1.87) - sliders, drags: removed support for legacy arithmetic operators (+,+-,*,/) when inputing text. This doesn't break any api/code but a feature that used to be accessible by end-users (which seemingly no one used). + - 2022/01/17 (1.87) - inputs: reworked mouse IO. + - Backend writing to io.MousePos -> backend should call io.AddMousePosEvent() + - Backend writing to io.MouseDown[] -> backend should call io.AddMouseButtonEvent() + - Backend writing to io.MouseWheel -> backend should call io.AddMouseWheelEvent() + - Backend writing to io.MouseHoveredViewport -> backend should call io.AddMouseViewportEvent() [Docking branch w/ multi-viewports only] + note: for all calls to IO new functions, the Dear ImGui context should be bound/current. + read https://github.com/ocornut/imgui/issues/4921 for details. + - 2022/01/10 (1.87) - inputs: reworked keyboard IO. Removed io.KeyMap[], io.KeysDown[] in favor of calling io.AddKeyEvent(). Removed GetKeyIndex(), now unnecessary. All IsKeyXXX() functions now take ImGuiKey values. All features are still functional until IMGUI_DISABLE_OBSOLETE_KEYIO is defined. Read Changelog and Release Notes for details. + - IsKeyPressed(MY_NATIVE_KEY_XXX) -> use IsKeyPressed(ImGuiKey_XXX) + - IsKeyPressed(GetKeyIndex(ImGuiKey_XXX)) -> use IsKeyPressed(ImGuiKey_XXX) + - Backend writing to io.KeyMap[],io.KeysDown[] -> backend should call io.AddKeyEvent() (+ call io.SetKeyEventNativeData() if you want legacy user code to stil function with legacy key codes). + - Backend writing to io.KeyCtrl, io.KeyShift.. -> backend should call io.AddKeyEvent() with ImGuiMod_XXX values. *IF YOU PULLED CODE BETWEEN 2021/01/10 and 2021/01/27: We used to have a io.AddKeyModsEvent() function which was now replaced by io.AddKeyEvent() with ImGuiMod_XXX values.* + - one case won't work with backward compatibility: if your custom backend used ImGuiKey as mock native indices (e.g. "io.KeyMap[ImGuiKey_A] = ImGuiKey_A") because those values are now larger than the legacy KeyDown[] array. Will assert. + - inputs: added ImGuiKey_ModCtrl/ImGuiKey_ModShift/ImGuiKey_ModAlt/ImGuiKey_ModSuper values to submit keyboard modifiers using io.AddKeyEvent(), instead of writing directly to io.KeyCtrl, io.KeyShift, io.KeyAlt, io.KeySuper. + - 2022/01/05 (1.87) - inputs: renamed ImGuiKey_KeyPadEnter to ImGuiKey_KeypadEnter to align with new symbols. Kept redirection enum. + - 2022/01/05 (1.87) - removed io.ImeSetInputScreenPosFn() in favor of more flexible io.SetPlatformImeDataFn(). Removed 'void* io.ImeWindowHandle' in favor of writing to 'void* ImGuiViewport::PlatformHandleRaw'. + - 2022/01/01 (1.87) - commented out redirecting functions/enums names that were marked obsolete in 1.69, 1.70, 1.71, 1.72 (March-July 2019) + - ImGui::SetNextTreeNodeOpen() -> use ImGui::SetNextItemOpen() + - ImGui::GetContentRegionAvailWidth() -> use ImGui::GetContentRegionAvail().x + - ImGui::TreeAdvanceToLabelPos() -> use ImGui::SetCursorPosX(ImGui::GetCursorPosX() + ImGui::GetTreeNodeToLabelSpacing()); + - ImFontAtlas::CustomRect -> use ImFontAtlasCustomRect + - ImGuiColorEditFlags_RGB/HSV/HEX -> use ImGuiColorEditFlags_DisplayRGB/HSV/Hex + - 2021/12/20 (1.86) - backends: removed obsolete Marmalade backend (imgui_impl_marmalade.cpp) + example. Find last supported version at https://github.com/ocornut/imgui/wiki/Bindings + - 2021/11/04 (1.86) - removed CalcListClipping() function. Prefer using ImGuiListClipper which can return non-contiguous ranges. Please open an issue if you think you really need this function. + - 2021/08/23 (1.85) - removed GetWindowContentRegionWidth() function. keep inline redirection helper. can use 'GetWindowContentRegionMax().x - GetWindowContentRegionMin().x' instead for generally 'GetContentRegionAvail().x' is more useful. + - 2021/07/26 (1.84) - commented out redirecting functions/enums names that were marked obsolete in 1.67 and 1.69 (March 2019): + - ImGui::GetOverlayDrawList() -> use ImGui::GetForegroundDrawList() + - ImFont::GlyphRangesBuilder -> use ImFontGlyphRangesBuilder + - 2021/05/19 (1.83) - backends: obsoleted direct access to ImDrawCmd::TextureId in favor of calling ImDrawCmd::GetTexID(). + - if you are using official backends from the source tree: you have nothing to do. + - if you have copied old backend code or using your own: change access to draw_cmd->TextureId to draw_cmd->GetTexID(). + - 2021/03/12 (1.82) - upgraded ImDrawList::AddRect(), AddRectFilled(), PathRect() to use ImDrawFlags instead of ImDrawCornersFlags. + - ImDrawCornerFlags_TopLeft -> use ImDrawFlags_RoundCornersTopLeft + - ImDrawCornerFlags_BotRight -> use ImDrawFlags_RoundCornersBottomRight + - ImDrawCornerFlags_None -> use ImDrawFlags_RoundCornersNone etc. + flags now sanely defaults to 0 instead of 0x0F, consistent with all other flags in the API. + breaking: the default with rounding > 0.0f is now "round all corners" vs old implicit "round no corners": + - rounding == 0.0f + flags == 0 --> meant no rounding --> unchanged (common use) + - rounding > 0.0f + flags != 0 --> meant rounding --> unchanged (common use) + - rounding == 0.0f + flags != 0 --> meant no rounding --> unchanged (unlikely use) + - rounding > 0.0f + flags == 0 --> meant no rounding --> BREAKING (unlikely use): will now round all corners --> use ImDrawFlags_RoundCornersNone or rounding == 0.0f. + this ONLY matters for hard coded use of 0 + rounding > 0.0f. Use of named ImDrawFlags_RoundCornersNone (new) or ImDrawCornerFlags_None (old) are ok. + the old ImDrawCornersFlags used awkward default values of ~0 or 0xF (4 lower bits set) to signify "round all corners" and we sometimes encouraged using them as shortcuts. + legacy path still support use of hard coded ~0 or any value from 0x1 or 0xF. They will behave the same with legacy paths enabled (will assert otherwise). + - 2021/03/11 (1.82) - removed redirecting functions/enums names that were marked obsolete in 1.66 (September 2018): + - ImGui::SetScrollHere() -> use ImGui::SetScrollHereY() + - 2021/03/11 (1.82) - clarified that ImDrawList::PathArcTo(), ImDrawList::PathArcToFast() won't render with radius < 0.0f. Previously it sorts of accidentally worked but would generally lead to counter-clockwise paths and have an effect on anti-aliasing. + - 2021/03/10 (1.82) - upgraded ImDrawList::AddPolyline() and PathStroke() "bool closed" parameter to "ImDrawFlags flags". The matching ImDrawFlags_Closed value is guaranteed to always stay == 1 in the future. + - 2021/02/22 (1.82) - (*undone in 1.84*) win32+mingw: Re-enabled IME functions by default even under MinGW. In July 2016, issue #738 had me incorrectly disable those default functions for MinGW. MinGW users should: either link with -limm32, either set their imconfig file with '#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS'. + - 2021/02/17 (1.82) - renamed rarely used style.CircleSegmentMaxError (old default = 1.60f) to style.CircleTessellationMaxError (new default = 0.30f) as the meaning of the value changed. + - 2021/02/03 (1.81) - renamed ListBoxHeader(const char* label, ImVec2 size) to BeginListBox(). Kept inline redirection function (will obsolete). + - removed ListBoxHeader(const char* label, int items_count, int height_in_items = -1) in favor of specifying size. Kept inline redirection function (will obsolete). + - renamed ListBoxFooter() to EndListBox(). Kept inline redirection function (will obsolete). + - 2021/01/26 (1.81) - removed ImGuiFreeType::BuildFontAtlas(). Kept inline redirection function. Prefer using '#define IMGUI_ENABLE_FREETYPE', but there's a runtime selection path available too. The shared extra flags parameters (very rarely used) are now stored in ImFontAtlas::FontBuilderFlags. + - renamed ImFontConfig::RasterizerFlags (used by FreeType) to ImFontConfig::FontBuilderFlags. + - renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API. + - 2020/10/12 (1.80) - removed redirecting functions/enums that were marked obsolete in 1.63 (August 2018): + - ImGui::IsItemDeactivatedAfterChange() -> use ImGui::IsItemDeactivatedAfterEdit(). + - ImGuiCol_ModalWindowDarkening -> use ImGuiCol_ModalWindowDimBg + - ImGuiInputTextCallback -> use ImGuiTextEditCallback + - ImGuiInputTextCallbackData -> use ImGuiTextEditCallbackData + - 2020/12/21 (1.80) - renamed ImDrawList::AddBezierCurve() to AddBezierCubic(), and PathBezierCurveTo() to PathBezierCubicCurveTo(). Kept inline redirection function (will obsolete). + - 2020/12/04 (1.80) - added imgui_tables.cpp file! Manually constructed project files will need the new file added! + - 2020/11/18 (1.80) - renamed undocumented/internals ImGuiColumnsFlags_* to ImGuiOldColumnFlags_* in prevision of incoming Tables API. + - 2020/11/03 (1.80) - renamed io.ConfigWindowsMemoryCompactTimer to io.ConfigMemoryCompactTimer as the feature will apply to other data structures + - 2020/10/14 (1.80) - backends: moved all backends files (imgui_impl_XXXX.cpp, imgui_impl_XXXX.h) from examples/ to backends/. + - 2020/10/12 (1.80) - removed redirecting functions/enums that were marked obsolete in 1.60 (April 2018): + - io.RenderDrawListsFn pointer -> use ImGui::GetDrawData() value and call the render function of your backend + - ImGui::IsAnyWindowFocused() -> use ImGui::IsWindowFocused(ImGuiFocusedFlags_AnyWindow) + - ImGui::IsAnyWindowHovered() -> use ImGui::IsWindowHovered(ImGuiHoveredFlags_AnyWindow) + - ImGuiStyleVar_Count_ -> use ImGuiStyleVar_COUNT + - ImGuiMouseCursor_Count_ -> use ImGuiMouseCursor_COUNT + - removed redirecting functions names that were marked obsolete in 1.61 (May 2018): + - InputFloat (... int decimal_precision ...) -> use InputFloat (... const char* format ...) with format = "%.Xf" where X is your value for decimal_precision. + - same for InputFloat2()/InputFloat3()/InputFloat4() variants taking a `int decimal_precision` parameter. + - 2020/10/05 (1.79) - removed ImGuiListClipper: Renamed constructor parameters which created an ambiguous alternative to using the ImGuiListClipper::Begin() function, with misleading edge cases (note: imgui_memory_editor <0.40 from imgui_club/ used this old clipper API. Update your copy if needed). + - 2020/09/25 (1.79) - renamed ImGuiSliderFlags_ClampOnInput to ImGuiSliderFlags_AlwaysClamp. Kept redirection enum (will obsolete sooner because previous name was added recently). + - 2020/09/25 (1.79) - renamed style.TabMinWidthForUnselectedCloseButton to style.TabMinWidthForCloseButton. + - 2020/09/21 (1.79) - renamed OpenPopupContextItem() back to OpenPopupOnItemClick(), reverting the change from 1.77. For varieties of reason this is more self-explanatory. + - 2020/09/21 (1.79) - removed return value from OpenPopupOnItemClick() - returned true on mouse release on an item - because it is inconsistent with other popup APIs and makes others misleading. It's also and unnecessary: you can use IsWindowAppearing() after BeginPopup() for a similar result. + - 2020/09/17 (1.79) - removed ImFont::DisplayOffset in favor of ImFontConfig::GlyphOffset. DisplayOffset was applied after scaling and not very meaningful/useful outside of being needed by the default ProggyClean font. If you scaled this value after calling AddFontDefault(), this is now done automatically. It was also getting in the way of better font scaling, so let's get rid of it now! + - 2020/08/17 (1.78) - obsoleted use of the trailing 'float power=1.0f' parameter for DragFloat(), DragFloat2(), DragFloat3(), DragFloat4(), DragFloatRange2(), DragScalar(), DragScalarN(), SliderFloat(), SliderFloat2(), SliderFloat3(), SliderFloat4(), SliderScalar(), SliderScalarN(), VSliderFloat() and VSliderScalar(). + replaced the 'float power=1.0f' argument with integer-based flags defaulting to 0 (as with all our flags). + worked out a backward-compatibility scheme so hopefully most C++ codebase should not be affected. in short, when calling those functions: + - if you omitted the 'power' parameter (likely!), you are not affected. + - if you set the 'power' parameter to 1.0f (same as previous default value): 1/ your compiler may warn on float>int conversion, 2/ everything else will work. 3/ you can replace the 1.0f value with 0 to fix the warning, and be technically correct. + - if you set the 'power' parameter to >1.0f (to enable non-linear editing): 1/ your compiler may warn on float>int conversion, 2/ code will assert at runtime, 3/ in case asserts are disabled, the code will not crash and enable the _Logarithmic flag. 4/ you can replace the >1.0f value with ImGuiSliderFlags_Logarithmic to fix the warning/assert and get a _similar_ effect as previous uses of power >1.0f. + see https://github.com/ocornut/imgui/issues/3361 for all details. + kept inline redirection functions (will obsolete) apart for: DragFloatRange2(), VSliderFloat(), VSliderScalar(). For those three the 'float power=1.0f' version was removed directly as they were most unlikely ever used. + for shared code, you can version check at compile-time with `#if IMGUI_VERSION_NUM >= 17704`. + - obsoleted use of v_min > v_max in DragInt, DragFloat, DragScalar to lock edits (introduced in 1.73, was not demoed nor documented very), will be replaced by a more generic ReadOnly feature. You may use the ImGuiSliderFlags_ReadOnly internal flag in the meantime. + - 2020/06/23 (1.77) - removed BeginPopupContextWindow(const char*, int mouse_button, bool also_over_items) in favor of BeginPopupContextWindow(const char*, ImGuiPopupFlags flags) with ImGuiPopupFlags_NoOverItems. + - 2020/06/15 (1.77) - renamed OpenPopupOnItemClick() to OpenPopupContextItem(). Kept inline redirection function (will obsolete). [NOTE: THIS WAS REVERTED IN 1.79] + - 2020/06/15 (1.77) - removed CalcItemRectClosestPoint() entry point which was made obsolete and asserting in December 2017. + - 2020/04/23 (1.77) - removed unnecessary ID (first arg) of ImFontAtlas::AddCustomRectRegular(). + - 2020/01/22 (1.75) - ImDrawList::AddCircle()/AddCircleFilled() functions don't accept negative radius any more. + - 2019/12/17 (1.75) - [undid this change in 1.76] made Columns() limited to 64 columns by asserting above that limit. While the current code technically supports it, future code may not so we're putting the restriction ahead. + - 2019/12/13 (1.75) - [imgui_internal.h] changed ImRect() default constructor initializes all fields to 0.0f instead of (FLT_MAX,FLT_MAX,-FLT_MAX,-FLT_MAX). If you used ImRect::Add() to create bounding boxes by adding multiple points into it, you may need to fix your initial value. + - 2019/12/08 (1.75) - removed redirecting functions/enums that were marked obsolete in 1.53 (December 2017): + - ShowTestWindow() -> use ShowDemoWindow() + - IsRootWindowFocused() -> use IsWindowFocused(ImGuiFocusedFlags_RootWindow) + - IsRootWindowOrAnyChildFocused() -> use IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows) + - SetNextWindowContentWidth(w) -> use SetNextWindowContentSize(ImVec2(w, 0.0f) + - GetItemsLineHeightWithSpacing() -> use GetFrameHeightWithSpacing() + - ImGuiCol_ChildWindowBg -> use ImGuiCol_ChildBg + - ImGuiStyleVar_ChildWindowRounding -> use ImGuiStyleVar_ChildRounding + - ImGuiTreeNodeFlags_AllowOverlapMode -> use ImGuiTreeNodeFlags_AllowItemOverlap + - IMGUI_DISABLE_TEST_WINDOWS -> use IMGUI_DISABLE_DEMO_WINDOWS + - 2019/12/08 (1.75) - obsoleted calling ImDrawList::PrimReserve() with a negative count (which was vaguely documented and rarely if ever used). Instead, we added an explicit PrimUnreserve() API. + - 2019/12/06 (1.75) - removed implicit default parameter to IsMouseDragging(int button = 0) to be consistent with other mouse functions (none of the other functions have it). + - 2019/11/21 (1.74) - ImFontAtlas::AddCustomRectRegular() now requires an ID larger than 0x110000 (instead of 0x10000) to conform with supporting Unicode planes 1-16 in a future update. ID below 0x110000 will now assert. + - 2019/11/19 (1.74) - renamed IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS to IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS for consistency. + - 2019/11/19 (1.74) - renamed IMGUI_DISABLE_MATH_FUNCTIONS to IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS for consistency. + - 2019/10/22 (1.74) - removed redirecting functions/enums that were marked obsolete in 1.52 (October 2017): + - Begin() [old 5 args version] -> use Begin() [3 args], use SetNextWindowSize() SetNextWindowBgAlpha() if needed + - IsRootWindowOrAnyChildHovered() -> use IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows) + - AlignFirstTextHeightToWidgets() -> use AlignTextToFramePadding() + - SetNextWindowPosCenter() -> use SetNextWindowPos() with a pivot of (0.5f, 0.5f) + - ImFont::Glyph -> use ImFontGlyph + - 2019/10/14 (1.74) - inputs: Fixed a miscalculation in the keyboard/mouse "typematic" repeat delay/rate calculation, used by keys and e.g. repeating mouse buttons as well as the GetKeyPressedAmount() function. + if you were using a non-default value for io.KeyRepeatRate (previous default was 0.250), you can add +io.KeyRepeatDelay to it to compensate for the fix. + The function was triggering on: 0.0 and (delay+rate*N) where (N>=1). Fixed formula responds to (N>=0). Effectively it made io.KeyRepeatRate behave like it was set to (io.KeyRepeatRate + io.KeyRepeatDelay). + If you never altered io.KeyRepeatRate nor used GetKeyPressedAmount() this won't affect you. + - 2019/07/15 (1.72) - removed TreeAdvanceToLabelPos() which is rarely used and only does SetCursorPosX(GetCursorPosX() + GetTreeNodeToLabelSpacing()). Kept redirection function (will obsolete). + - 2019/07/12 (1.72) - renamed ImFontAtlas::CustomRect to ImFontAtlasCustomRect. Kept redirection typedef (will obsolete). + - 2019/06/14 (1.72) - removed redirecting functions/enums names that were marked obsolete in 1.51 (June 2017): ImGuiCol_Column*, ImGuiSetCond_*, IsItemHoveredRect(), IsPosHoveringAnyWindow(), IsMouseHoveringAnyWindow(), IsMouseHoveringWindow(), IMGUI_ONCE_UPON_A_FRAME. Grep this log for details and new names, or see how they were implemented until 1.71. + - 2019/06/07 (1.71) - rendering of child window outer decorations (bg color, border, scrollbars) is now performed as part of the parent window. If you have + overlapping child windows in a same parent, and relied on their relative z-order to be mapped to their submission order, this will affect your rendering. + This optimization is disabled if the parent window has no visual output, because it appears to be the most common situation leading to the creation of overlapping child windows. + Please reach out if you are affected. + - 2019/05/13 (1.71) - renamed SetNextTreeNodeOpen() to SetNextItemOpen(). Kept inline redirection function (will obsolete). + - 2019/05/11 (1.71) - changed io.AddInputCharacter(unsigned short c) signature to io.AddInputCharacter(unsigned int c). + - 2019/04/29 (1.70) - improved ImDrawList thick strokes (>1.0f) preserving correct thickness up to 90 degrees angles (e.g. rectangles). If you have custom rendering using thick lines, they will appear thicker now. + - 2019/04/29 (1.70) - removed GetContentRegionAvailWidth(), use GetContentRegionAvail().x instead. Kept inline redirection function (will obsolete). + - 2019/03/04 (1.69) - renamed GetOverlayDrawList() to GetForegroundDrawList(). Kept redirection function (will obsolete). + - 2019/02/26 (1.69) - renamed ImGuiColorEditFlags_RGB/ImGuiColorEditFlags_HSV/ImGuiColorEditFlags_HEX to ImGuiColorEditFlags_DisplayRGB/ImGuiColorEditFlags_DisplayHSV/ImGuiColorEditFlags_DisplayHex. Kept redirection enums (will obsolete). + - 2019/02/14 (1.68) - made it illegal/assert when io.DisplayTime == 0.0f (with an exception for the first frame). If for some reason your time step calculation gives you a zero value, replace it with an arbitrarily small value! + - 2019/02/01 (1.68) - removed io.DisplayVisibleMin/DisplayVisibleMax (which were marked obsolete and removed from viewport/docking branch already). + - 2019/01/06 (1.67) - renamed io.InputCharacters[], marked internal as was always intended. Please don't access directly, and use AddInputCharacter() instead! + - 2019/01/06 (1.67) - renamed ImFontAtlas::GlyphRangesBuilder to ImFontGlyphRangesBuilder. Kept redirection typedef (will obsolete). + - 2018/12/20 (1.67) - made it illegal to call Begin("") with an empty string. This somehow half-worked before but had various undesirable side-effects. + - 2018/12/10 (1.67) - renamed io.ConfigResizeWindowsFromEdges to io.ConfigWindowsResizeFromEdges as we are doing a large pass on configuration flags. + - 2018/10/12 (1.66) - renamed misc/stl/imgui_stl.* to misc/cpp/imgui_stdlib.* in prevision for other C++ helper files. + - 2018/09/28 (1.66) - renamed SetScrollHere() to SetScrollHereY(). Kept redirection function (will obsolete). + - 2018/09/06 (1.65) - renamed stb_truetype.h to imstb_truetype.h, stb_textedit.h to imstb_textedit.h, and stb_rect_pack.h to imstb_rectpack.h. + If you were conveniently using the imgui copy of those STB headers in your project you will have to update your include paths. + - 2018/09/05 (1.65) - renamed io.OptCursorBlink/io.ConfigCursorBlink to io.ConfigInputTextCursorBlink. (#1427) + - 2018/08/31 (1.64) - added imgui_widgets.cpp file, extracted and moved widgets code out of imgui.cpp into imgui_widgets.cpp. Re-ordered some of the code remaining in imgui.cpp. + NONE OF THE FUNCTIONS HAVE CHANGED. THE CODE IS SEMANTICALLY 100% IDENTICAL, BUT _EVERY_ FUNCTION HAS BEEN MOVED. + Because of this, any local modifications to imgui.cpp will likely conflict when you update. Read docs/CHANGELOG.txt for suggestions. + - 2018/08/22 (1.63) - renamed IsItemDeactivatedAfterChange() to IsItemDeactivatedAfterEdit() for consistency with new IsItemEdited() API. Kept redirection function (will obsolete soonish as IsItemDeactivatedAfterChange() is very recent). + - 2018/08/21 (1.63) - renamed ImGuiTextEditCallback to ImGuiInputTextCallback, ImGuiTextEditCallbackData to ImGuiInputTextCallbackData for consistency. Kept redirection types (will obsolete). + - 2018/08/21 (1.63) - removed ImGuiInputTextCallbackData::ReadOnly since it is a duplication of (ImGuiInputTextCallbackData::Flags & ImGuiInputTextFlags_ReadOnly). + - 2018/08/01 (1.63) - removed per-window ImGuiWindowFlags_ResizeFromAnySide beta flag in favor of a global io.ConfigResizeWindowsFromEdges [update 1.67 renamed to ConfigWindowsResizeFromEdges] to enable the feature. + - 2018/08/01 (1.63) - renamed io.OptCursorBlink to io.ConfigCursorBlink [-> io.ConfigInputTextCursorBlink in 1.65], io.OptMacOSXBehaviors to ConfigMacOSXBehaviors for consistency. + - 2018/07/22 (1.63) - changed ImGui::GetTime() return value from float to double to avoid accumulating floating point imprecisions over time. + - 2018/07/08 (1.63) - style: renamed ImGuiCol_ModalWindowDarkening to ImGuiCol_ModalWindowDimBg for consistency with other features. Kept redirection enum (will obsolete). + - 2018/06/08 (1.62) - examples: the imgui_impl_XXX files have been split to separate platform (Win32, GLFW, SDL2, etc.) from renderer (DX11, OpenGL, Vulkan, etc.). + old backends will still work as is, however prefer using the separated backends as they will be updated to support multi-viewports. + when adopting new backends follow the main.cpp code of your preferred examples/ folder to know which functions to call. + in particular, note that old backends called ImGui::NewFrame() at the end of their ImGui_ImplXXXX_NewFrame() function. + - 2018/06/06 (1.62) - renamed GetGlyphRangesChinese() to GetGlyphRangesChineseFull() to distinguish other variants and discourage using the full set. + - 2018/06/06 (1.62) - TreeNodeEx()/TreeNodeBehavior(): the ImGuiTreeNodeFlags_CollapsingHeader helper now include the ImGuiTreeNodeFlags_NoTreePushOnOpen flag. See Changelog for details. + - 2018/05/03 (1.61) - DragInt(): the default compile-time format string has been changed from "%.0f" to "%d", as we are not using integers internally any more. + If you used DragInt() with custom format strings, make sure you change them to use %d or an integer-compatible format. + To honor backward-compatibility, the DragInt() code will currently parse and modify format strings to replace %*f with %d, giving time to users to upgrade their code. + If you have IMGUI_DISABLE_OBSOLETE_FUNCTIONS enabled, the code will instead assert! You may run a reg-exp search on your codebase for e.g. "DragInt.*%f" to help you find them. + - 2018/04/28 (1.61) - obsoleted InputFloat() functions taking an optional "int decimal_precision" in favor of an equivalent and more flexible "const char* format", + consistent with other functions. Kept redirection functions (will obsolete). + - 2018/04/09 (1.61) - IM_DELETE() helper function added in 1.60 doesn't clear the input _pointer_ reference, more consistent with expectation and allows passing r-value. + - 2018/03/20 (1.60) - renamed io.WantMoveMouse to io.WantSetMousePos for consistency and ease of understanding (was added in 1.52, _not_ used by core and only honored by some backend ahead of merging the Nav branch). + - 2018/03/12 (1.60) - removed ImGuiCol_CloseButton, ImGuiCol_CloseButtonActive, ImGuiCol_CloseButtonHovered as the closing cross uses regular button colors now. + - 2018/03/08 (1.60) - changed ImFont::DisplayOffset.y to default to 0 instead of +1. Fixed rounding of Ascent/Descent to match TrueType renderer. If you were adding or subtracting to ImFont::DisplayOffset check if your fonts are correctly aligned vertically. + - 2018/03/03 (1.60) - renamed ImGuiStyleVar_Count_ to ImGuiStyleVar_COUNT and ImGuiMouseCursor_Count_ to ImGuiMouseCursor_COUNT for consistency with other public enums. + - 2018/02/18 (1.60) - BeginDragDropSource(): temporarily removed the optional mouse_button=0 parameter because it is not really usable in many situations at the moment. + - 2018/02/16 (1.60) - obsoleted the io.RenderDrawListsFn callback, you can call your graphics engine render function after ImGui::Render(). Use ImGui::GetDrawData() to retrieve the ImDrawData* to display. + - 2018/02/07 (1.60) - reorganized context handling to be more explicit, + - YOU NOW NEED TO CALL ImGui::CreateContext() AT THE BEGINNING OF YOUR APP, AND CALL ImGui::DestroyContext() AT THE END. + - removed Shutdown() function, as DestroyContext() serve this purpose. + - you may pass a ImFontAtlas* pointer to CreateContext() to share a font atlas between contexts. Otherwise CreateContext() will create its own font atlas instance. + - removed allocator parameters from CreateContext(), they are now setup with SetAllocatorFunctions(), and shared by all contexts. + - removed the default global context and font atlas instance, which were confusing for users of DLL reloading and users of multiple contexts. + - 2018/01/31 (1.60) - moved sample TTF files from extra_fonts/ to misc/fonts/. If you loaded files directly from the imgui repo you may need to update your paths. + - 2018/01/11 (1.60) - obsoleted IsAnyWindowHovered() in favor of IsWindowHovered(ImGuiHoveredFlags_AnyWindow). Kept redirection function (will obsolete). + - 2018/01/11 (1.60) - obsoleted IsAnyWindowFocused() in favor of IsWindowFocused(ImGuiFocusedFlags_AnyWindow). Kept redirection function (will obsolete). + - 2018/01/03 (1.60) - renamed ImGuiSizeConstraintCallback to ImGuiSizeCallback, ImGuiSizeConstraintCallbackData to ImGuiSizeCallbackData. + - 2017/12/29 (1.60) - removed CalcItemRectClosestPoint() which was weird and not really used by anyone except demo code. If you need it it's easy to replicate on your side. + - 2017/12/24 (1.53) - renamed the emblematic ShowTestWindow() function to ShowDemoWindow(). Kept redirection function (will obsolete). + - 2017/12/21 (1.53) - ImDrawList: renamed style.AntiAliasedShapes to style.AntiAliasedFill for consistency and as a way to explicitly break code that manipulate those flag at runtime. You can now manipulate ImDrawList::Flags + - 2017/12/21 (1.53) - ImDrawList: removed 'bool anti_aliased = true' final parameter of ImDrawList::AddPolyline() and ImDrawList::AddConvexPolyFilled(). Prefer manipulating ImDrawList::Flags if you need to toggle them during the frame. + - 2017/12/14 (1.53) - using the ImGuiWindowFlags_NoScrollWithMouse flag on a child window forwards the mouse wheel event to the parent window, unless either ImGuiWindowFlags_NoInputs or ImGuiWindowFlags_NoScrollbar are also set. + - 2017/12/13 (1.53) - renamed GetItemsLineHeightWithSpacing() to GetFrameHeightWithSpacing(). Kept redirection function (will obsolete). + - 2017/12/13 (1.53) - obsoleted IsRootWindowFocused() in favor of using IsWindowFocused(ImGuiFocusedFlags_RootWindow). Kept redirection function (will obsolete). + - obsoleted IsRootWindowOrAnyChildFocused() in favor of using IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows). Kept redirection function (will obsolete). + - 2017/12/12 (1.53) - renamed ImGuiTreeNodeFlags_AllowOverlapMode to ImGuiTreeNodeFlags_AllowItemOverlap. Kept redirection enum (will obsolete). + - 2017/12/10 (1.53) - removed SetNextWindowContentWidth(), prefer using SetNextWindowContentSize(). Kept redirection function (will obsolete). + - 2017/11/27 (1.53) - renamed ImGuiTextBuffer::append() helper to appendf(), appendv() to appendfv(). If you copied the 'Log' demo in your code, it uses appendv() so that needs to be renamed. + - 2017/11/18 (1.53) - Style, Begin: removed ImGuiWindowFlags_ShowBorders window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. style.FrameBorderSize, style.WindowBorderSize). Use ImGui::ShowStyleEditor() to look them up. + Please note that the style system will keep evolving (hopefully stabilizing in Q1 2018), and so custom styles will probably subtly break over time. It is recommended you use the StyleColorsClassic(), StyleColorsDark(), StyleColorsLight() functions. + - 2017/11/18 (1.53) - Style: removed ImGuiCol_ComboBg in favor of combo boxes using ImGuiCol_PopupBg for consistency. + - 2017/11/18 (1.53) - Style: renamed ImGuiCol_ChildWindowBg to ImGuiCol_ChildBg. + - 2017/11/18 (1.53) - Style: renamed style.ChildWindowRounding to style.ChildRounding, ImGuiStyleVar_ChildWindowRounding to ImGuiStyleVar_ChildRounding. + - 2017/11/02 (1.53) - obsoleted IsRootWindowOrAnyChildHovered() in favor of using IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows); + - 2017/10/24 (1.52) - renamed IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS to IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS/IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS for consistency. + - 2017/10/20 (1.52) - changed IsWindowHovered() default parameters behavior to return false if an item is active in another window (e.g. click-dragging item from another window to this window). You can use the newly introduced IsWindowHovered() flags to requests this specific behavior if you need it. + - 2017/10/20 (1.52) - marked IsItemHoveredRect()/IsMouseHoveringWindow() as obsolete, in favor of using the newly introduced flags for IsItemHovered() and IsWindowHovered(). See https://github.com/ocornut/imgui/issues/1382 for details. + removed the IsItemRectHovered()/IsWindowRectHovered() names introduced in 1.51 since they were merely more consistent names for the two functions we are now obsoleting. + IsItemHoveredRect() --> IsItemHovered(ImGuiHoveredFlags_RectOnly) + IsMouseHoveringAnyWindow() --> IsWindowHovered(ImGuiHoveredFlags_AnyWindow) + IsMouseHoveringWindow() --> IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem) [weird, old behavior] + - 2017/10/17 (1.52) - marked the old 5-parameters version of Begin() as obsolete (still available). Use SetNextWindowSize()+Begin() instead! + - 2017/10/11 (1.52) - renamed AlignFirstTextHeightToWidgets() to AlignTextToFramePadding(). Kept inline redirection function (will obsolete). + - 2017/09/26 (1.52) - renamed ImFont::Glyph to ImFontGlyph. Kept redirection typedef (will obsolete). + - 2017/09/25 (1.52) - removed SetNextWindowPosCenter() because SetNextWindowPos() now has the optional pivot information to do the same and more. Kept redirection function (will obsolete). + - 2017/08/25 (1.52) - io.MousePos needs to be set to ImVec2(-FLT_MAX,-FLT_MAX) when mouse is unavailable/missing. Previously ImVec2(-1,-1) was enough but we now accept negative mouse coordinates. In your backend if you need to support unavailable mouse, make sure to replace "io.MousePos = ImVec2(-1,-1)" with "io.MousePos = ImVec2(-FLT_MAX,-FLT_MAX)". + - 2017/08/22 (1.51) - renamed IsItemHoveredRect() to IsItemRectHovered(). Kept inline redirection function (will obsolete). -> (1.52) use IsItemHovered(ImGuiHoveredFlags_RectOnly)! + - renamed IsMouseHoveringAnyWindow() to IsAnyWindowHovered() for consistency. Kept inline redirection function (will obsolete). + - renamed IsMouseHoveringWindow() to IsWindowRectHovered() for consistency. Kept inline redirection function (will obsolete). + - 2017/08/20 (1.51) - renamed GetStyleColName() to GetStyleColorName() for consistency. + - 2017/08/20 (1.51) - added PushStyleColor(ImGuiCol idx, ImU32 col) overload, which _might_ cause an "ambiguous call" compilation error if you are using ImColor() with implicit cast. Cast to ImU32 or ImVec4 explicily to fix. + - 2017/08/15 (1.51) - marked the weird IMGUI_ONCE_UPON_A_FRAME helper macro as obsolete. prefer using the more explicit ImGuiOnceUponAFrame type. + - 2017/08/15 (1.51) - changed parameter order for BeginPopupContextWindow() from (const char*,int buttons,bool also_over_items) to (const char*,int buttons,bool also_over_items). Note that most calls relied on default parameters completely. + - 2017/08/13 (1.51) - renamed ImGuiCol_Column to ImGuiCol_Separator, ImGuiCol_ColumnHovered to ImGuiCol_SeparatorHovered, ImGuiCol_ColumnActive to ImGuiCol_SeparatorActive. Kept redirection enums (will obsolete). + - 2017/08/11 (1.51) - renamed ImGuiSetCond_Always to ImGuiCond_Always, ImGuiSetCond_Once to ImGuiCond_Once, ImGuiSetCond_FirstUseEver to ImGuiCond_FirstUseEver, ImGuiSetCond_Appearing to ImGuiCond_Appearing. Kept redirection enums (will obsolete). + - 2017/08/09 (1.51) - removed ValueColor() helpers, they are equivalent to calling Text(label) + SameLine() + ColorButton(). + - 2017/08/08 (1.51) - removed ColorEditMode() and ImGuiColorEditMode in favor of ImGuiColorEditFlags and parameters to the various Color*() functions. The SetColorEditOptions() allows to initialize default but the user can still change them with right-click context menu. + - changed prototype of 'ColorEdit4(const char* label, float col[4], bool show_alpha = true)' to 'ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0)', where passing flags = 0x01 is a safe no-op (hello dodgy backward compatibility!). - check and run the demo window, under "Color/Picker Widgets", to understand the various new options. + - changed prototype of rarely used 'ColorButton(ImVec4 col, bool small_height = false, bool outline_border = true)' to 'ColorButton(const char* desc_id, ImVec4 col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0, 0))' + - 2017/07/20 (1.51) - removed IsPosHoveringAnyWindow(ImVec2), which was partly broken and misleading. ASSERT + redirect user to io.WantCaptureMouse + - 2017/05/26 (1.50) - removed ImFontConfig::MergeGlyphCenterV in favor of a more multipurpose ImFontConfig::GlyphOffset. + - 2017/05/01 (1.50) - renamed ImDrawList::PathFill() (rarely used directly) to ImDrawList::PathFillConvex() for clarity. + - 2016/11/06 (1.50) - BeginChild(const char*) now applies the stack id to the provided label, consistently with other functions as it should always have been. It shouldn't affect you unless (extremely unlikely) you were appending multiple times to a same child from different locations of the stack id. If that's the case, generate an id with GetID() and use it instead of passing string to BeginChild(). + - 2016/10/15 (1.50) - avoid 'void* user_data' parameter to io.SetClipboardTextFn/io.GetClipboardTextFn pointers. We pass io.ClipboardUserData to it. + - 2016/09/25 (1.50) - style.WindowTitleAlign is now a ImVec2 (ImGuiAlign enum was removed). set to (0.5f,0.5f) for horizontal+vertical centering, (0.0f,0.0f) for upper-left, etc. + - 2016/07/30 (1.50) - SameLine(x) with x>0.0f is now relative to left of column/group if any, and not always to left of window. This was sort of always the intent and hopefully, breakage should be minimal. + - 2016/05/12 (1.49) - title bar (using ImGuiCol_TitleBg/ImGuiCol_TitleBgActive colors) isn't rendered over a window background (ImGuiCol_WindowBg color) anymore. + If your TitleBg/TitleBgActive alpha was 1.0f or you are using the default theme it will not affect you, otherwise if <1.0f you need to tweak your custom theme to readjust for the fact that we don't draw a WindowBg background behind the title bar. + This helper function will convert an old TitleBg/TitleBgActive color into a new one with the same visual output, given the OLD color and the OLD WindowBg color: + ImVec4 ConvertTitleBgCol(const ImVec4& win_bg_col, const ImVec4& title_bg_col) { float new_a = 1.0f - ((1.0f - win_bg_col.w) * (1.0f - title_bg_col.w)), k = title_bg_col.w / new_a; return ImVec4((win_bg_col.x * win_bg_col.w + title_bg_col.x) * k, (win_bg_col.y * win_bg_col.w + title_bg_col.y) * k, (win_bg_col.z * win_bg_col.w + title_bg_col.z) * k, new_a); } + If this is confusing, pick the RGB value from title bar from an old screenshot and apply this as TitleBg/TitleBgActive. Or you may just create TitleBgActive from a tweaked TitleBg color. + - 2016/05/07 (1.49) - removed confusing set of GetInternalState(), GetInternalStateSize(), SetInternalState() functions. Now using CreateContext(), DestroyContext(), GetCurrentContext(), SetCurrentContext(). + - 2016/05/02 (1.49) - renamed SetNextTreeNodeOpened() to SetNextTreeNodeOpen(), no redirection. + - 2016/05/01 (1.49) - obsoleted old signature of CollapsingHeader(const char* label, const char* str_id = NULL, bool display_frame = true, bool default_open = false) as extra parameters were badly designed and rarely used. You can replace the "default_open = true" flag in new API with CollapsingHeader(label, ImGuiTreeNodeFlags_DefaultOpen). + - 2016/04/26 (1.49) - changed ImDrawList::PushClipRect(ImVec4 rect) to ImDrawList::PushClipRect(Imvec2 min,ImVec2 max,bool intersect_with_current_clip_rect=false). Note that higher-level ImGui::PushClipRect() is preferable because it will clip at logic/widget level, whereas ImDrawList::PushClipRect() only affect your renderer. + - 2016/04/03 (1.48) - removed style.WindowFillAlphaDefault setting which was redundant. Bake default BG alpha inside style.Colors[ImGuiCol_WindowBg] and all other Bg color values. (ref GitHub issue #337). + - 2016/04/03 (1.48) - renamed ImGuiCol_TooltipBg to ImGuiCol_PopupBg, used by popups/menus and tooltips. popups/menus were previously using ImGuiCol_WindowBg. (ref github issue #337) + - 2016/03/21 (1.48) - renamed GetWindowFont() to GetFont(), GetWindowFontSize() to GetFontSize(). Kept inline redirection function (will obsolete). + - 2016/03/02 (1.48) - InputText() completion/history/always callbacks: if you modify the text buffer manually (without using DeleteChars()/InsertChars() helper) you need to maintain the BufTextLen field. added an assert. + - 2016/01/23 (1.48) - fixed not honoring exact width passed to PushItemWidth(), previously it would add extra FramePadding.x*2 over that width. if you had manual pixel-perfect alignment in place it might affect you. + - 2015/12/27 (1.48) - fixed ImDrawList::AddRect() which used to render a rectangle 1 px too large on each axis. + - 2015/12/04 (1.47) - renamed Color() helpers to ValueColor() - dangerously named, rarely used and probably to be made obsolete. + - 2015/08/29 (1.45) - with the addition of horizontal scrollbar we made various fixes to inconsistencies with dealing with cursor position. + GetCursorPos()/SetCursorPos() functions now include the scrolled amount. It shouldn't affect the majority of users, but take note that SetCursorPosX(100.0f) puts you at +100 from the starting x position which may include scrolling, not at +100 from the window left side. + GetContentRegionMax()/GetWindowContentRegionMin()/GetWindowContentRegionMax() functions allow include the scrolled amount. Typically those were used in cases where no scrolling would happen so it may not be a problem, but watch out! + - 2015/08/29 (1.45) - renamed style.ScrollbarWidth to style.ScrollbarSize + - 2015/08/05 (1.44) - split imgui.cpp into extra files: imgui_demo.cpp imgui_draw.cpp imgui_internal.h that you need to add to your project. + - 2015/07/18 (1.44) - fixed angles in ImDrawList::PathArcTo(), PathArcToFast() (introduced in 1.43) being off by an extra PI for no justifiable reason + - 2015/07/14 (1.43) - add new ImFontAtlas::AddFont() API. For the old AddFont***, moved the 'font_no' parameter of ImFontAtlas::AddFont** functions to the ImFontConfig structure. + you need to render your textured triangles with bilinear filtering to benefit from sub-pixel positioning of text. + - 2015/07/08 (1.43) - switched rendering data to use indexed rendering. this is saving a fair amount of CPU/GPU and enables us to get anti-aliasing for a marginal cost. + this necessary change will break your rendering function! the fix should be very easy. sorry for that :( + - if you are using a vanilla copy of one of the imgui_impl_XXX.cpp provided in the example, you just need to update your copy and you can ignore the rest. + - the signature of the io.RenderDrawListsFn handler has changed! + old: ImGui_XXXX_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_lists_count) + new: ImGui_XXXX_RenderDrawLists(ImDrawData* draw_data). + parameters: 'cmd_lists' becomes 'draw_data->CmdLists', 'cmd_lists_count' becomes 'draw_data->CmdListsCount' + ImDrawList: 'commands' becomes 'CmdBuffer', 'vtx_buffer' becomes 'VtxBuffer', 'IdxBuffer' is new. + ImDrawCmd: 'vtx_count' becomes 'ElemCount', 'clip_rect' becomes 'ClipRect', 'user_callback' becomes 'UserCallback', 'texture_id' becomes 'TextureId'. + - each ImDrawList now contains both a vertex buffer and an index buffer. For each command, render ElemCount/3 triangles using indices from the index buffer. + - if you REALLY cannot render indexed primitives, you can call the draw_data->DeIndexAllBuffers() method to de-index the buffers. This is slow and a waste of CPU/GPU. Prefer using indexed rendering! + - refer to code in the examples/ folder or ask on the GitHub if you are unsure of how to upgrade. please upgrade! + - 2015/07/10 (1.43) - changed SameLine() parameters from int to float. + - 2015/07/02 (1.42) - renamed SetScrollPosHere() to SetScrollFromCursorPos(). Kept inline redirection function (will obsolete). + - 2015/07/02 (1.42) - renamed GetScrollPosY() to GetScrollY(). Necessary to reduce confusion along with other scrolling functions, because positions (e.g. cursor position) are not equivalent to scrolling amount. + - 2015/06/14 (1.41) - changed ImageButton() default bg_col parameter from (0,0,0,1) (black) to (0,0,0,0) (transparent) - makes a difference when texture have transparence + - 2015/06/14 (1.41) - changed Selectable() API from (label, selected, size) to (label, selected, flags, size). Size override should have been rarely used. Sorry! + - 2015/05/31 (1.40) - renamed GetWindowCollapsed() to IsWindowCollapsed() for consistency. Kept inline redirection function (will obsolete). + - 2015/05/31 (1.40) - renamed IsRectClipped() to IsRectVisible() for consistency. Note that return value is opposite! Kept inline redirection function (will obsolete). + - 2015/05/27 (1.40) - removed the third 'repeat_if_held' parameter from Button() - sorry! it was rarely used and inconsistent. Use PushButtonRepeat(true) / PopButtonRepeat() to enable repeat on desired buttons. + - 2015/05/11 (1.40) - changed BeginPopup() API, takes a string identifier instead of a bool. ImGui needs to manage the open/closed state of popups. Call OpenPopup() to actually set the "open" state of a popup. BeginPopup() returns true if the popup is opened. + - 2015/05/03 (1.40) - removed style.AutoFitPadding, using style.WindowPadding makes more sense (the default values were already the same). + - 2015/04/13 (1.38) - renamed IsClipped() to IsRectClipped(). Kept inline redirection function until 1.50. + - 2015/04/09 (1.38) - renamed ImDrawList::AddArc() to ImDrawList::AddArcFast() for compatibility with future API + - 2015/04/03 (1.38) - removed ImGuiCol_CheckHovered, ImGuiCol_CheckActive, replaced with the more general ImGuiCol_FrameBgHovered, ImGuiCol_FrameBgActive. + - 2014/04/03 (1.38) - removed support for passing -FLT_MAX..+FLT_MAX as the range for a SliderFloat(). Use DragFloat() or Inputfloat() instead. + - 2015/03/17 (1.36) - renamed GetItemBoxMin()/GetItemBoxMax()/IsMouseHoveringBox() to GetItemRectMin()/GetItemRectMax()/IsMouseHoveringRect(). Kept inline redirection function until 1.50. + - 2015/03/15 (1.36) - renamed style.TreeNodeSpacing to style.IndentSpacing, ImGuiStyleVar_TreeNodeSpacing to ImGuiStyleVar_IndentSpacing + - 2015/03/13 (1.36) - renamed GetWindowIsFocused() to IsWindowFocused(). Kept inline redirection function until 1.50. + - 2015/03/08 (1.35) - renamed style.ScrollBarWidth to style.ScrollbarWidth (casing) + - 2015/02/27 (1.34) - renamed OpenNextNode(bool) to SetNextTreeNodeOpened(bool, ImGuiSetCond). Kept inline redirection function until 1.50. + - 2015/02/27 (1.34) - renamed ImGuiSetCondition_*** to ImGuiSetCond_***, and _FirstUseThisSession becomes _Once. + - 2015/02/11 (1.32) - changed text input callback ImGuiTextEditCallback return type from void-->int. reserved for future use, return 0 for now. + - 2015/02/10 (1.32) - renamed GetItemWidth() to CalcItemWidth() to clarify its evolving behavior + - 2015/02/08 (1.31) - renamed GetTextLineSpacing() to GetTextLineHeightWithSpacing() + - 2015/02/01 (1.31) - removed IO.MemReallocFn (unused) + - 2015/01/19 (1.30) - renamed ImGuiStorage::GetIntPtr()/GetFloatPtr() to GetIntRef()/GetIntRef() because Ptr was conflicting with actual pointer storage functions. + - 2015/01/11 (1.30) - big font/image API change! now loads TTF file. allow for multiple fonts. no need for a PNG loader. + - 2015/01/11 (1.30) - removed GetDefaultFontData(). uses io.Fonts->GetTextureData*() API to retrieve uncompressed pixels. + - old: const void* png_data; unsigned int png_size; ImGui::GetDefaultFontData(NULL, NULL, &png_data, &png_size); [..Upload texture to GPU..]; + - new: unsigned char* pixels; int width, height; io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height); [..Upload texture to GPU..]; io.Fonts->SetTexID(YourTexIdentifier); + you now have more flexibility to load multiple TTF fonts and manage the texture buffer for internal needs. It is now recommended that you sample the font texture with bilinear interpolation. + - 2015/01/11 (1.30) - added texture identifier in ImDrawCmd passed to your render function (we can now render images). make sure to call io.Fonts->SetTexID() + - 2015/01/11 (1.30) - removed IO.PixelCenterOffset (unnecessary, can be handled in user projection matrix) + - 2015/01/11 (1.30) - removed ImGui::IsItemFocused() in favor of ImGui::IsItemActive() which handles all widgets + - 2014/12/10 (1.18) - removed SetNewWindowDefaultPos() in favor of new generic API SetNextWindowPos(pos, ImGuiSetCondition_FirstUseEver) + - 2014/11/28 (1.17) - moved IO.Font*** options to inside the IO.Font-> structure (FontYOffset, FontTexUvForWhite, FontBaseScale, FontFallbackGlyph) + - 2014/11/26 (1.17) - reworked syntax of IMGUI_ONCE_UPON_A_FRAME helper macro to increase compiler compatibility + - 2014/11/07 (1.15) - renamed IsHovered() to IsItemHovered() + - 2014/10/02 (1.14) - renamed IMGUI_INCLUDE_IMGUI_USER_CPP to IMGUI_INCLUDE_IMGUI_USER_INL and imgui_user.cpp to imgui_user.inl (more IDE friendly) + - 2014/09/25 (1.13) - removed 'text_end' parameter from IO.SetClipboardTextFn (the string is now always zero-terminated for simplicity) + - 2014/09/24 (1.12) - renamed SetFontScale() to SetWindowFontScale() + - 2014/09/24 (1.12) - moved IM_MALLOC/IM_REALLOC/IM_FREE preprocessor defines to IO.MemAllocFn/IO.MemReallocFn/IO.MemFreeFn + - 2014/08/30 (1.09) - removed IO.FontHeight (now computed automatically) + - 2014/08/30 (1.09) - moved IMGUI_FONT_TEX_UV_FOR_WHITE preprocessor define to IO.FontTexUvForWhite + - 2014/08/28 (1.09) - changed the behavior of IO.PixelCenterOffset following various rendering fixes + + + FREQUENTLY ASKED QUESTIONS (FAQ) + ================================ + + Read all answers online: + https://www.dearimgui.com/faq or https://github.com/ocornut/imgui/blob/master/docs/FAQ.md (same url) + Read all answers locally (with a text editor or ideally a Markdown viewer): + docs/FAQ.md + Some answers are copied down here to facilitate searching in code. + + Q&A: Basics + =========== + + Q: Where is the documentation? + A: This library is poorly documented at the moment and expects the user to be acquainted with C/C++. + - Run the examples/ applications and explore them. + - Read Getting Started (https://github.com/ocornut/imgui/wiki/Getting-Started) guide. + - See demo code in imgui_demo.cpp and particularly the ImGui::ShowDemoWindow() function. + - The demo covers most features of Dear ImGui, so you can read the code and see its output. + - See documentation and comments at the top of imgui.cpp + effectively imgui.h. + - 20+ standalone example applications using e.g. OpenGL/DirectX are provided in the + examples/ folder to explain how to integrate Dear ImGui with your own engine/application. + - The Wiki (https://github.com/ocornut/imgui/wiki) has many resources and links. + - The Glossary (https://github.com/ocornut/imgui/wiki/Glossary) page also may be useful. + - Your programming IDE is your friend, find the type or function declaration to find comments + associated with it. + + Q: What is this library called? + Q: Which version should I get? + >> This library is called "Dear ImGui", please don't call it "ImGui" :) + >> See https://www.dearimgui.com/faq for details. + + Q&A: Integration + ================ + + Q: How to get started? + A: Read https://github.com/ocornut/imgui/wiki/Getting-Started. Read 'PROGRAMMER GUIDE' above. Read examples/README.txt. + + Q: How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application? + A: You should read the 'io.WantCaptureMouse', 'io.WantCaptureKeyboard' and 'io.WantTextInput' flags! + >> See https://www.dearimgui.com/faq for a fully detailed answer. You really want to read this. + + Q. How can I enable keyboard or gamepad controls? + Q: How can I use this on a machine without mouse, keyboard or screen? (input share, remote display) + Q: I integrated Dear ImGui in my engine and little squares are showing instead of text... + Q: I integrated Dear ImGui in my engine and some elements are clipping or disappearing when I move windows around... + Q: I integrated Dear ImGui in my engine and some elements are displaying outside their expected windows boundaries... + >> See https://www.dearimgui.com/faq + + Q&A: Usage + ---------- + + Q: About the ID Stack system.. + - Why is my widget not reacting when I click on it? + - How can I have widgets with an empty label? + - How can I have multiple widgets with the same label? + - How can I have multiple windows with the same label? + Q: How can I display an image? What is ImTextureID, how does it work? + Q: How can I use my own math types instead of ImVec2? + Q: How can I interact with standard C++ types (such as std::string and std::vector)? + Q: How can I display custom shapes? (using low-level ImDrawList API) + >> See https://www.dearimgui.com/faq + + Q&A: Fonts, Text + ================ + + Q: How should I handle DPI in my application? + Q: How can I load a different font than the default? + Q: How can I easily use icons in my application? + Q: How can I load multiple fonts? + Q: How can I display and input non-Latin characters such as Chinese, Japanese, Korean, Cyrillic? + >> See https://www.dearimgui.com/faq and https://github.com/ocornut/imgui/blob/master/docs/FONTS.md + + Q&A: Concerns + ============= + + Q: Who uses Dear ImGui? + Q: Can you create elaborate/serious tools with Dear ImGui? + Q: Can you reskin the look of Dear ImGui? + Q: Why using C++ (as opposed to C)? + >> See https://www.dearimgui.com/faq + + Q&A: Community + ============== + + Q: How can I help? + A: - Businesses: please reach out to "omar AT dearimgui DOT com" if you work in a place using Dear ImGui! + We can discuss ways for your company to fund development via invoiced technical support, maintenance or sponsoring contacts. + This is among the most useful thing you can do for Dear ImGui. With increased funding, we sustain and grow work on this project. + >>> See https://github.com/ocornut/imgui/wiki/Funding + - Businesses: you can also purchase licenses for the Dear ImGui Automation/Test Engine. + - If you are experienced with Dear ImGui and C++, look at the GitHub issues, look at the Wiki, and see how you want to help and can help! + - Disclose your usage of Dear ImGui via a dev blog post, a tweet, a screenshot, a mention somewhere etc. + You may post screenshot or links in the gallery threads. Visuals are ideal as they inspire other programmers. + But even without visuals, disclosing your use of dear imgui helps the library grow credibility, and help other teams and programmers with taking decisions. + - If you have issues or if you need to hack into the library, even if you don't expect any support it is useful that you share your issues (on GitHub or privately). + +*/ + +//------------------------------------------------------------------------- +// [SECTION] INCLUDES +//------------------------------------------------------------------------- + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" + +// System includes +#include // vsnprintf, sscanf, printf +#include // intptr_t + +// [Windows] On non-Visual Studio compilers, we default to IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS unless explicitly enabled +#if defined(_WIN32) && !defined(_MSC_VER) && !defined(IMGUI_ENABLE_WIN32_DEFAULT_IME_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) +#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS +#endif + +// [Windows] OS specific includes (optional) +#if defined(_WIN32) && defined(IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) && defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) +#define IMGUI_DISABLE_WIN32_FUNCTIONS +#endif +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#ifndef __MINGW32__ +#include // _wfopen, OpenClipboard +#else +#include +#endif +#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP || WINAPI_FAMILY == WINAPI_FAMILY_GAMES) +// The UWP and GDK Win32 API subsets don't support clipboard nor IME functions +#define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS +#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS +#define IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS +#endif +#endif + +// [Apple] OS specific includes +#if defined(__APPLE__) +#include +#endif + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to an 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok. +#pragma clang diagnostic ignored "-Wformat-nonliteral" // warning: format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code. +#pragma clang diagnostic ignored "-Wexit-time-destructors" // warning: declaration requires an exit-time destructor // exit-time destruction order is undefined. if MemFree() leads to users code that has been disabled before exit it might cause problems. ImGui coding style welcomes static/globals. +#pragma clang diagnostic ignored "-Wglobal-constructors" // warning: declaration requires a global destructor // similar to above, not sure what the exact difference is. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wformat-pedantic" // warning: format specifies type 'void *' but the argument has type 'xxxx *' // unreasonable, would lead to casting every %p arg to void*. probably enabled by -pedantic. +#pragma clang diagnostic ignored "-Wint-to-void-pointer-cast" // warning: cast to 'void *' from smaller integer type 'int' +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" // warning: 'xxx' is an unsafe pointer used for buffer access +#elif defined(__GNUC__) +// We disable -Wpragmas because GCC doesn't provide a has_warning equivalent and some forks/patches may not follow the warning/version association. +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used +#pragma GCC diagnostic ignored "-Wint-to-pointer-cast" // warning: cast to pointer from integer of different size +#pragma GCC diagnostic ignored "-Wformat" // warning: format '%p' expects argument of type 'void*', but argument 6 has type 'ImGuiWindow*' +#pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function +#pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value +#pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked +#pragma GCC diagnostic ignored "-Wstrict-overflow" // warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +// Debug options +#define IMGUI_DEBUG_NAV_SCORING 0 // Display navigation scoring preview when hovering items. Hold CTRL to display for all candidates. CTRL+Arrow to change last direction. +#define IMGUI_DEBUG_NAV_RECTS 0 // Display the reference navigation rectangle for each window + +// When using CTRL+TAB (or Gamepad Square+L/R) we delay the visual a little in order to reduce visual noise doing a fast switch. +static const float NAV_WINDOWING_HIGHLIGHT_DELAY = 0.20f; // Time before the highlight and screen dimming starts fading in +static const float NAV_WINDOWING_LIST_APPEAR_DELAY = 0.15f; // Time before the window list starts to appear + +static const float NAV_ACTIVATE_HIGHLIGHT_TIMER = 0.10f; // Time to highlight an item activated by a shortcut. + +// Window resizing from edges (when io.ConfigWindowsResizeFromEdges = true and ImGuiBackendFlags_HasMouseCursors is set in io.BackendFlags by backend) +static const float WINDOWS_HOVER_PADDING = 4.0f; // Extend outside window for hovering/resizing (maxxed with TouchPadding) and inside windows for borders. Affect FindHoveredWindow(). +static const float WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER = 0.04f; // Reduce visual noise by only highlighting the border after a certain time. +static const float WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER = 0.70f; // Lock scrolled window (so it doesn't pick child windows that are scrolling through) for a certain time, unless mouse moved. + +// Tooltip offset +static const ImVec2 TOOLTIP_DEFAULT_OFFSET = ImVec2(16, 10); // Multiplied by g.Style.MouseCursorScale + +//------------------------------------------------------------------------- +// [SECTION] FORWARD DECLARATIONS +//------------------------------------------------------------------------- + +static void SetCurrentWindow(ImGuiWindow* window); +static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags); +static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window); + +static void AddWindowToSortBuffer(ImVector* out_sorted_windows, ImGuiWindow* window); + +// Settings +static void WindowSettingsHandler_ClearAll(ImGuiContext*, ImGuiSettingsHandler*); +static void* WindowSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name); +static void WindowSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line); +static void WindowSettingsHandler_ApplyAll(ImGuiContext*, ImGuiSettingsHandler*); +static void WindowSettingsHandler_WriteAll(ImGuiContext*, ImGuiSettingsHandler*, ImGuiTextBuffer* buf); + +// Platform Dependents default implementation for ImGuiPlatformIO functions +static const char* Platform_GetClipboardTextFn_DefaultImpl(ImGuiContext* ctx); +static void Platform_SetClipboardTextFn_DefaultImpl(ImGuiContext* ctx, const char* text); +static void Platform_SetImeDataFn_DefaultImpl(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); +static bool Platform_OpenInShellFn_DefaultImpl(ImGuiContext* ctx, const char* path); + +namespace ImGui +{ +// Item +static void ItemHandleShortcut(ImGuiID id); + +// Navigation +static void NavUpdate(); +static void NavUpdateWindowing(); +static void NavUpdateWindowingOverlay(); +static void NavUpdateCancelRequest(); +static void NavUpdateCreateMoveRequest(); +static void NavUpdateCreateTabbingRequest(); +static float NavUpdatePageUpPageDown(); +static inline void NavUpdateAnyRequestFlag(); +static void NavUpdateCreateWrappingRequest(); +static void NavEndFrame(); +static bool NavScoreItem(ImGuiNavItemData* result); +static void NavApplyItemToResult(ImGuiNavItemData* result); +static void NavProcessItem(); +static void NavProcessItemForTabbingRequest(ImGuiID id, ImGuiItemFlags item_flags, ImGuiNavMoveFlags move_flags); +static ImVec2 NavCalcPreferredRefPos(); +static void NavSaveLastChildNavWindowIntoParent(ImGuiWindow* nav_window); +static ImGuiWindow* NavRestoreLastChildNavWindow(ImGuiWindow* window); +static void NavRestoreLayer(ImGuiNavLayer layer); +static int FindWindowFocusIndex(ImGuiWindow* window); + +// Error Checking and Debug Tools +static void ErrorCheckNewFrameSanityChecks(); +static void ErrorCheckEndFrameSanityChecks(); +static void UpdateDebugToolItemPicker(); +static void UpdateDebugToolStackQueries(); +static void UpdateDebugToolFlashStyleColor(); + +// Inputs +static void UpdateKeyboardInputs(); +static void UpdateMouseInputs(); +static void UpdateMouseWheel(); +static void UpdateKeyRoutingTable(ImGuiKeyRoutingTable* rt); + +// Misc +static void UpdateSettings(); +static int UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* border_hovered, int* border_held, int resize_grip_count, ImU32 resize_grip_col[4], const ImRect& visibility_rect); +static void RenderWindowShadow(ImGuiWindow* window); +static void RenderWindowOuterBorders(ImGuiWindow* window); +static void RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool title_bar_is_highlight, bool handle_borders_and_resize_grips, int resize_grip_count, const ImU32 resize_grip_col[4], float resize_grip_draw_size); +static void RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open); +static void RenderDimmedBackgroundBehindWindow(ImGuiWindow* window, ImU32 col); +static void RenderDimmedBackgrounds(); +static void SetLastItemDataForWindow(ImGuiWindow* window, const ImRect& rect); + +// Viewports +const ImGuiID IMGUI_VIEWPORT_DEFAULT_ID = 0x11111111; // Using an arbitrary constant instead of e.g. ImHashStr("ViewportDefault", 0); so it's easier to spot in the debugger. The exact value doesn't matter. +static void UpdateViewportsNewFrame(); + +} + +//----------------------------------------------------------------------------- +// [SECTION] CONTEXT AND MEMORY ALLOCATORS +//----------------------------------------------------------------------------- + +// DLL users: +// - Heaps and globals are not shared across DLL boundaries! +// - You will need to call SetCurrentContext() + SetAllocatorFunctions() for each static/DLL boundary you are calling from. +// - Same applies for hot-reloading mechanisms that are reliant on reloading DLL (note that many hot-reloading mechanisms work without DLL). +// - Using Dear ImGui via a shared library is not recommended, because of function call overhead and because we don't guarantee backward nor forward ABI compatibility. +// - Confused? In a debugger: add GImGui to your watch window and notice how its value changes depending on your current location (which DLL boundary you are in). + +// Current context pointer. Implicitly used by all Dear ImGui functions. Always assumed to be != NULL. +// - ImGui::CreateContext() will automatically set this pointer if it is NULL. +// Change to a different context by calling ImGui::SetCurrentContext(). +// - Important: Dear ImGui functions are not thread-safe because of this pointer. +// If you want thread-safety to allow N threads to access N different contexts: +// - Change this variable to use thread local storage so each thread can refer to a different context, in your imconfig.h: +// struct ImGuiContext; +// extern thread_local ImGuiContext* MyImGuiTLS; +// #define GImGui MyImGuiTLS +// And then define MyImGuiTLS in one of your cpp files. Note that thread_local is a C++11 keyword, earlier C++ uses compiler-specific keyword. +// - Future development aims to make this context pointer explicit to all calls. Also read https://github.com/ocornut/imgui/issues/586 +// - If you need a finite number of contexts, you may compile and use multiple instances of the ImGui code from a different namespace. +// - DLL users: read comments above. +#ifndef GImGui +ImGuiContext* GImGui = NULL; +#endif + +// Memory Allocator functions. Use SetAllocatorFunctions() to change them. +// - You probably don't want to modify that mid-program, and if you use global/static e.g. ImVector<> instances you may need to keep them accessible during program destruction. +// - DLL users: read comments above. +#ifndef IMGUI_DISABLE_DEFAULT_ALLOCATORS +static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); return malloc(size); } +static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); free(ptr); } +#else +static void* MallocWrapper(size_t size, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(size); IM_ASSERT(0); return NULL; } +static void FreeWrapper(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_UNUSED(ptr); IM_ASSERT(0); } +#endif +static ImGuiMemAllocFunc GImAllocatorAllocFunc = MallocWrapper; +static ImGuiMemFreeFunc GImAllocatorFreeFunc = FreeWrapper; +static void* GImAllocatorUserData = NULL; + +//----------------------------------------------------------------------------- +// [SECTION] USER FACING STRUCTURES (ImGuiStyle, ImGuiIO, ImGuiPlatformIO) +//----------------------------------------------------------------------------- + +ImGuiStyle::ImGuiStyle() +{ + Alpha = 1.0f; // Global alpha applies to everything in Dear ImGui. + DisabledAlpha = 0.60f; // Additional alpha multiplier applied by BeginDisabled(). Multiply over current value of Alpha. + WindowPadding = ImVec2(8,8); // Padding within a window + WindowRounding = 0.0f; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended. + WindowBorderSize = 1.0f; // Thickness of border around windows. Generally set to 0.0f or 1.0f. Other values not well tested. + WindowMinSize = ImVec2(32,32); // Minimum window size + WindowTitleAlign = ImVec2(0.0f,0.5f);// Alignment for title bar text + WindowMenuButtonPosition = ImGuiDir_Left; // Position of the collapsing/docking button in the title bar (left/right). Defaults to ImGuiDir_Left. + ChildRounding = 0.0f; // Radius of child window corners rounding. Set to 0.0f to have rectangular child windows + ChildBorderSize = 1.0f; // Thickness of border around child windows. Generally set to 0.0f or 1.0f. Other values not well tested. + PopupRounding = 0.0f; // Radius of popup window corners rounding. Set to 0.0f to have rectangular child windows + PopupBorderSize = 1.0f; // Thickness of border around popup or tooltip windows. Generally set to 0.0f or 1.0f. Other values not well tested. + FramePadding = ImVec2(4,3); // Padding within a framed rectangle (used by most widgets) + FrameRounding = 0.0f; // Radius of frame corners rounding. Set to 0.0f to have rectangular frames (used by most widgets). + FrameBorderSize = 0.0f; // Thickness of border around frames. Generally set to 0.0f or 1.0f. Other values not well tested. + ItemSpacing = ImVec2(8,4); // Horizontal and vertical spacing between widgets/lines + ItemInnerSpacing = ImVec2(4,4); // Horizontal and vertical spacing between within elements of a composed widget (e.g. a slider and its label) + CellPadding = ImVec2(4,2); // Padding within a table cell. Cellpadding.x is locked for entire table. CellPadding.y may be altered between different rows. + TouchExtraPadding = ImVec2(0,0); // Expand reactive bounding box for touch-based system where touch position is not accurate enough. Unfortunately we don't sort widgets so priority on overlap will always be given to the first widget. So don't grow this too much! + IndentSpacing = 21.0f; // Horizontal spacing when e.g. entering a tree node. Generally == (FontSize + FramePadding.x*2). + ColumnsMinSpacing = 6.0f; // Minimum horizontal spacing between two columns. Preferably > (FramePadding.x + 1). + ScrollbarSize = 14.0f; // Width of the vertical scrollbar, Height of the horizontal scrollbar + ScrollbarRounding = 9.0f; // Radius of grab corners rounding for scrollbar + GrabMinSize = 12.0f; // Minimum width/height of a grab box for slider/scrollbar + GrabRounding = 0.0f; // Radius of grabs corners rounding. Set to 0.0f to have rectangular slider grabs. + LogSliderDeadzone = 4.0f; // The size in pixels of the dead-zone around zero on logarithmic sliders that cross zero. + TabRounding = 4.0f; // Radius of upper corners of a tab. Set to 0.0f to have rectangular tabs. + TabBorderSize = 0.0f; // Thickness of border around tabs. + TabMinWidthForCloseButton = 0.0f; // Minimum width for close button to appear on an unselected tab when hovered. Set to 0.0f to always show when hovering, set to FLT_MAX to never show close button unless selected. + TabBarBorderSize = 1.0f; // Thickness of tab-bar separator, which takes on the tab active color to denote focus. + TabBarOverlineSize = 2.0f; // Thickness of tab-bar overline, which highlights the selected tab-bar. + TableAngledHeadersAngle = 35.0f * (IM_PI / 180.0f); // Angle of angled headers (supported values range from -50 degrees to +50 degrees). + TableAngledHeadersTextAlign = ImVec2(0.5f,0.0f);// Alignment of angled headers within the cell + ColorButtonPosition = ImGuiDir_Right; // Side of the color button in the ColorEdit4 widget (left/right). Defaults to ImGuiDir_Right. + ButtonTextAlign = ImVec2(0.5f,0.5f);// Alignment of button text when button is larger than text. + SelectableTextAlign = ImVec2(0.0f,0.0f);// Alignment of selectable text. Defaults to (0.0f, 0.0f) (top-left aligned). It's generally important to keep this left-aligned if you want to lay multiple items on a same line. + SeparatorTextBorderSize = 3.0f; // Thickness of border in SeparatorText() + SeparatorTextAlign = ImVec2(0.0f,0.5f);// Alignment of text within the separator. Defaults to (0.0f, 0.5f) (left aligned, center). + SeparatorTextPadding = ImVec2(20.0f,3.f);// Horizontal offset of text from each edge of the separator + spacing on other axis. Generally small values. .y is recommended to be == FramePadding.y. + DisplayWindowPadding = ImVec2(19,19); // Window position are clamped to be visible within the display area or monitors by at least this amount. Only applies to regular windows. + DisplaySafeAreaPadding = ImVec2(3,3); // If you cannot see the edge of your screen (e.g. on a TV) increase the safe area padding. Covers popups/tooltips as well regular windows. + MouseCursorScale = 1.0f; // Scale software rendered mouse cursor (when io.MouseDrawCursor is enabled). May be removed later. + AntiAliasedLines = true; // Enable anti-aliased lines/borders. Disable if you are really tight on CPU/GPU. + AntiAliasedLinesUseTex = true; // Enable anti-aliased lines/borders using textures where possible. Require backend to render with bilinear filtering (NOT point/nearest filtering). + AntiAliasedFill = true; // Enable anti-aliased filled shapes (rounded rectangles, circles, etc.). + CurveTessellationTol = 1.25f; // Tessellation tolerance when using PathBezierCurveTo() without a specific number of segments. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality. + CircleTessellationMaxError = 0.30f; // Maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry. + WindowShadowSize = 100.0f; // Size (in pixels) of window shadows. + WindowShadowOffsetDist = 0.0f; // Offset distance (in pixels) of window shadows from casting window. + WindowShadowOffsetAngle = IM_PI * 0.25f; // Offset angle of window shadows from casting window (0.0f = left, 0.5f*PI = bottom, 1.0f*PI = right, 1.5f*PI = top). + + // Behaviors + HoverStationaryDelay = 0.15f; // Delay for IsItemHovered(ImGuiHoveredFlags_Stationary). Time required to consider mouse stationary. + HoverDelayShort = 0.15f; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayShort). Usually used along with HoverStationaryDelay. + HoverDelayNormal = 0.40f; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayNormal). " + HoverFlagsForTooltipMouse = ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_AllowWhenDisabled; // Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using mouse. + HoverFlagsForTooltipNav = ImGuiHoveredFlags_NoSharedDelay | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_AllowWhenDisabled; // Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using keyboard/gamepad. + + // Default theme + ImGui::StyleColorsDark(this); +} + +// To scale your entire UI (e.g. if you want your app to use High DPI or generally be DPI aware) you may use this helper function. Scaling the fonts is done separately and is up to you. +// Important: This operation is lossy because we round all sizes to integer. If you need to change your scale multiples, call this over a freshly initialized ImGuiStyle structure rather than scaling multiple times. +void ImGuiStyle::ScaleAllSizes(float scale_factor) +{ + WindowPadding = ImTrunc(WindowPadding * scale_factor); + WindowRounding = ImTrunc(WindowRounding * scale_factor); + WindowMinSize = ImTrunc(WindowMinSize * scale_factor); + ChildRounding = ImTrunc(ChildRounding * scale_factor); + PopupRounding = ImTrunc(PopupRounding * scale_factor); + FramePadding = ImTrunc(FramePadding * scale_factor); + FrameRounding = ImTrunc(FrameRounding * scale_factor); + ItemSpacing = ImTrunc(ItemSpacing * scale_factor); + ItemInnerSpacing = ImTrunc(ItemInnerSpacing * scale_factor); + CellPadding = ImTrunc(CellPadding * scale_factor); + TouchExtraPadding = ImTrunc(TouchExtraPadding * scale_factor); + IndentSpacing = ImTrunc(IndentSpacing * scale_factor); + ColumnsMinSpacing = ImTrunc(ColumnsMinSpacing * scale_factor); + ScrollbarSize = ImTrunc(ScrollbarSize * scale_factor); + ScrollbarRounding = ImTrunc(ScrollbarRounding * scale_factor); + GrabMinSize = ImTrunc(GrabMinSize * scale_factor); + GrabRounding = ImTrunc(GrabRounding * scale_factor); + LogSliderDeadzone = ImTrunc(LogSliderDeadzone * scale_factor); + TabRounding = ImTrunc(TabRounding * scale_factor); + TabMinWidthForCloseButton = (TabMinWidthForCloseButton != FLT_MAX) ? ImTrunc(TabMinWidthForCloseButton * scale_factor) : FLT_MAX; + TabBarOverlineSize = ImTrunc(TabBarOverlineSize * scale_factor); + SeparatorTextPadding = ImTrunc(SeparatorTextPadding * scale_factor); + DisplayWindowPadding = ImTrunc(DisplayWindowPadding * scale_factor); + DisplaySafeAreaPadding = ImTrunc(DisplaySafeAreaPadding * scale_factor); + MouseCursorScale = ImTrunc(MouseCursorScale * scale_factor); +} + +ImGuiIO::ImGuiIO() +{ + // Most fields are initialized with zero + memset(this, 0, sizeof(*this)); + IM_STATIC_ASSERT(IM_ARRAYSIZE(ImGuiIO::MouseDown) == ImGuiMouseButton_COUNT && IM_ARRAYSIZE(ImGuiIO::MouseClicked) == ImGuiMouseButton_COUNT); + + // Settings + ConfigFlags = ImGuiConfigFlags_None; + BackendFlags = ImGuiBackendFlags_None; + DisplaySize = ImVec2(-1.0f, -1.0f); + DeltaTime = 1.0f / 60.0f; + IniSavingRate = 5.0f; + IniFilename = "imgui.ini"; // Important: "imgui.ini" is relative to current working dir, most apps will want to lock this to an absolute path (e.g. same path as executables). + LogFilename = "imgui_log.txt"; +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + for (int i = 0; i < ImGuiKey_COUNT; i++) + KeyMap[i] = -1; +#endif + UserData = NULL; + + Fonts = NULL; + FontGlobalScale = 1.0f; + FontDefault = NULL; + FontAllowUserScaling = false; + DisplayFramebufferScale = ImVec2(1.0f, 1.0f); + + // Miscellaneous options + MouseDrawCursor = false; +#ifdef __APPLE__ + ConfigMacOSXBehaviors = true; // Set Mac OS X style defaults based on __APPLE__ compile time flag +#else + ConfigMacOSXBehaviors = false; +#endif + ConfigNavSwapGamepadButtons = false; + ConfigInputTrickleEventQueue = true; + ConfigInputTextCursorBlink = true; + ConfigInputTextEnterKeepActive = false; + ConfigDragClickToInputText = false; + ConfigWindowsResizeFromEdges = true; + ConfigWindowsMoveFromTitleBarOnly = false; + ConfigScrollbarScrollByPage = true; + ConfigMemoryCompactTimer = 60.0f; + ConfigDebugIsDebuggerPresent = false; + ConfigDebugHighlightIdConflicts = true; + ConfigDebugBeginReturnValueOnce = false; + ConfigDebugBeginReturnValueLoop = false; + + // Inputs Behaviors + MouseDoubleClickTime = 0.30f; + MouseDoubleClickMaxDist = 6.0f; + MouseDragThreshold = 6.0f; + KeyRepeatDelay = 0.275f; + KeyRepeatRate = 0.050f; + + // Platform Functions + // Note: Initialize() will setup default clipboard/ime handlers. + BackendPlatformName = BackendRendererName = NULL; + BackendPlatformUserData = BackendRendererUserData = BackendLanguageUserData = NULL; + + // Input (NB: we already have memset zero the entire structure!) + MousePos = ImVec2(-FLT_MAX, -FLT_MAX); + MousePosPrev = ImVec2(-FLT_MAX, -FLT_MAX); + MouseSource = ImGuiMouseSource_Mouse; + for (int i = 0; i < IM_ARRAYSIZE(MouseDownDuration); i++) MouseDownDuration[i] = MouseDownDurationPrev[i] = -1.0f; + for (int i = 0; i < IM_ARRAYSIZE(KeysData); i++) { KeysData[i].DownDuration = KeysData[i].DownDurationPrev = -1.0f; } + AppAcceptingEvents = true; + BackendUsingLegacyKeyArrays = (ImS8)-1; + BackendUsingLegacyNavInputArray = true; // assume using legacy array until proven wrong +} + +// Pass in translated ASCII characters for text input. +// - with glfw you can get those from the callback set in glfwSetCharCallback() +// - on Windows you can get those using ToAscii+keyboard state, or via the WM_CHAR message +// FIXME: Should in theory be called "AddCharacterEvent()" to be consistent with new API +void ImGuiIO::AddInputCharacter(unsigned int c) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + if (c == 0 || !AppAcceptingEvents) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_Text; + e.Source = ImGuiInputSource_Keyboard; + e.EventId = g.InputEventsNextEventId++; + e.Text.Char = c; + g.InputEventsQueue.push_back(e); +} + +// UTF16 strings use surrogate pairs to encode codepoints >= 0x10000, so +// we should save the high surrogate. +void ImGuiIO::AddInputCharacterUTF16(ImWchar16 c) +{ + if ((c == 0 && InputQueueSurrogate == 0) || !AppAcceptingEvents) + return; + + if ((c & 0xFC00) == 0xD800) // High surrogate, must save + { + if (InputQueueSurrogate != 0) + AddInputCharacter(IM_UNICODE_CODEPOINT_INVALID); + InputQueueSurrogate = c; + return; + } + + ImWchar cp = c; + if (InputQueueSurrogate != 0) + { + if ((c & 0xFC00) != 0xDC00) // Invalid low surrogate + { + AddInputCharacter(IM_UNICODE_CODEPOINT_INVALID); + } + else + { +#if IM_UNICODE_CODEPOINT_MAX == 0xFFFF + cp = IM_UNICODE_CODEPOINT_INVALID; // Codepoint will not fit in ImWchar +#else + cp = (ImWchar)(((InputQueueSurrogate - 0xD800) << 10) + (c - 0xDC00) + 0x10000); +#endif + } + + InputQueueSurrogate = 0; + } + AddInputCharacter((unsigned)cp); +} + +void ImGuiIO::AddInputCharactersUTF8(const char* utf8_chars) +{ + if (!AppAcceptingEvents) + return; + while (*utf8_chars != 0) + { + unsigned int c = 0; + utf8_chars += ImTextCharFromUtf8(&c, utf8_chars, NULL); + AddInputCharacter(c); + } +} + +// Clear all incoming events. +void ImGuiIO::ClearEventsQueue() +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + g.InputEventsQueue.clear(); +} + +// Clear current keyboard/gamepad state + current frame text input buffer. Equivalent to releasing all keys/buttons. +void ImGuiIO::ClearInputKeys() +{ +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + memset(KeysDown, 0, sizeof(KeysDown)); +#endif + for (int n = 0; n < IM_ARRAYSIZE(KeysData); n++) + { + if (ImGui::IsMouseKey((ImGuiKey)(n + ImGuiKey_KeysData_OFFSET))) + continue; + KeysData[n].Down = false; + KeysData[n].DownDuration = -1.0f; + KeysData[n].DownDurationPrev = -1.0f; + } + KeyCtrl = KeyShift = KeyAlt = KeySuper = false; + KeyMods = ImGuiMod_None; + InputQueueCharacters.resize(0); // Behavior of old ClearInputCharacters(). +} + +void ImGuiIO::ClearInputMouse() +{ + for (ImGuiKey key = ImGuiKey_Mouse_BEGIN; key < ImGuiKey_Mouse_END; key = (ImGuiKey)(key + 1)) + { + ImGuiKeyData* key_data = &KeysData[key - ImGuiKey_KeysData_OFFSET]; + key_data->Down = false; + key_data->DownDuration = -1.0f; + key_data->DownDurationPrev = -1.0f; + } + MousePos = ImVec2(-FLT_MAX, -FLT_MAX); + for (int n = 0; n < IM_ARRAYSIZE(MouseDown); n++) + { + MouseDown[n] = false; + MouseDownDuration[n] = MouseDownDurationPrev[n] = -1.0f; + } + MouseWheel = MouseWheelH = 0.0f; +} + +// Removed this as it is ambiguous/misleading and generally incorrect to use with the existence of a higher-level input queue. +// Current frame character buffer is now also cleared by ClearInputKeys(). +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +void ImGuiIO::ClearInputCharacters() +{ + InputQueueCharacters.resize(0); +} +#endif + +static ImGuiInputEvent* FindLatestInputEvent(ImGuiContext* ctx, ImGuiInputEventType type, int arg = -1) +{ + ImGuiContext& g = *ctx; + for (int n = g.InputEventsQueue.Size - 1; n >= 0; n--) + { + ImGuiInputEvent* e = &g.InputEventsQueue[n]; + if (e->Type != type) + continue; + if (type == ImGuiInputEventType_Key && e->Key.Key != arg) + continue; + if (type == ImGuiInputEventType_MouseButton && e->MouseButton.Button != arg) + continue; + return e; + } + return NULL; +} + +// Queue a new key down/up event. +// - ImGuiKey key: Translated key (as in, generally ImGuiKey_A matches the key end-user would use to emit an 'A' character) +// - bool down: Is the key down? use false to signify a key release. +// - float analog_value: 0.0f..1.0f +// IMPORTANT: THIS FUNCTION AND OTHER "ADD" GRABS THE CONTEXT FROM OUR INSTANCE. +// WE NEED TO ENSURE THAT ALL FUNCTION CALLS ARE FULFILLING THIS, WHICH IS WHY GetKeyData() HAS AN EXPLICIT CONTEXT. +void ImGuiIO::AddKeyAnalogEvent(ImGuiKey key, bool down, float analog_value) +{ + //if (e->Down) { IMGUI_DEBUG_LOG_IO("AddKeyEvent() Key='%s' %d, NativeKeycode = %d, NativeScancode = %d\n", ImGui::GetKeyName(e->Key), e->Down, e->NativeKeycode, e->NativeScancode); } + IM_ASSERT(Ctx != NULL); + if (key == ImGuiKey_None || !AppAcceptingEvents) + return; + ImGuiContext& g = *Ctx; + IM_ASSERT(ImGui::IsNamedKeyOrMod(key)); // Backend needs to pass a valid ImGuiKey_ constant. 0..511 values are legacy native key codes which are not accepted by this API. + IM_ASSERT(ImGui::IsAliasKey(key) == false); // Backend cannot submit ImGuiKey_MouseXXX values they are automatically inferred from AddMouseXXX() events. + + // MacOS: swap Cmd(Super) and Ctrl + if (g.IO.ConfigMacOSXBehaviors) + { + if (key == ImGuiMod_Super) { key = ImGuiMod_Ctrl; } + else if (key == ImGuiMod_Ctrl) { key = ImGuiMod_Super; } + else if (key == ImGuiKey_LeftSuper) { key = ImGuiKey_LeftCtrl; } + else if (key == ImGuiKey_RightSuper){ key = ImGuiKey_RightCtrl; } + else if (key == ImGuiKey_LeftCtrl) { key = ImGuiKey_LeftSuper; } + else if (key == ImGuiKey_RightCtrl) { key = ImGuiKey_RightSuper; } + } + + // Verify that backend isn't mixing up using new io.AddKeyEvent() api and old io.KeysDown[] + io.KeyMap[] data. +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + IM_ASSERT((BackendUsingLegacyKeyArrays == -1 || BackendUsingLegacyKeyArrays == 0) && "Backend needs to either only use io.AddKeyEvent(), either only fill legacy io.KeysDown[] + io.KeyMap[]. Not both!"); + if (BackendUsingLegacyKeyArrays == -1) + for (int n = ImGuiKey_NamedKey_BEGIN; n < ImGuiKey_NamedKey_END; n++) + IM_ASSERT(KeyMap[n] == -1 && "Backend needs to either only use io.AddKeyEvent(), either only fill legacy io.KeysDown[] + io.KeyMap[]. Not both!"); + BackendUsingLegacyKeyArrays = 0; +#endif + if (ImGui::IsGamepadKey(key)) + BackendUsingLegacyNavInputArray = false; + + // Filter duplicate (in particular: key mods and gamepad analog values are commonly spammed) + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_Key, (int)key); + const ImGuiKeyData* key_data = ImGui::GetKeyData(&g, key); + const bool latest_key_down = latest_event ? latest_event->Key.Down : key_data->Down; + const float latest_key_analog = latest_event ? latest_event->Key.AnalogValue : key_data->AnalogValue; + if (latest_key_down == down && latest_key_analog == analog_value) + return; + + // Add event + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_Key; + e.Source = ImGui::IsGamepadKey(key) ? ImGuiInputSource_Gamepad : ImGuiInputSource_Keyboard; + e.EventId = g.InputEventsNextEventId++; + e.Key.Key = key; + e.Key.Down = down; + e.Key.AnalogValue = analog_value; + g.InputEventsQueue.push_back(e); +} + +void ImGuiIO::AddKeyEvent(ImGuiKey key, bool down) +{ + if (!AppAcceptingEvents) + return; + AddKeyAnalogEvent(key, down, down ? 1.0f : 0.0f); +} + +// [Optional] Call after AddKeyEvent(). +// Specify native keycode, scancode + Specify index for legacy <1.87 IsKeyXXX() functions with native indices. +// If you are writing a backend in 2022 or don't use IsKeyXXX() with native values that are not ImGuiKey values, you can avoid calling this. +void ImGuiIO::SetKeyEventNativeData(ImGuiKey key, int native_keycode, int native_scancode, int native_legacy_index) +{ + if (key == ImGuiKey_None) + return; + IM_ASSERT(ImGui::IsNamedKey(key)); // >= 512 + IM_ASSERT(native_legacy_index == -1 || ImGui::IsLegacyKey((ImGuiKey)native_legacy_index)); // >= 0 && <= 511 + IM_UNUSED(native_keycode); // Yet unused + IM_UNUSED(native_scancode); // Yet unused + + // Build native->imgui map so old user code can still call key functions with native 0..511 values. +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + const int legacy_key = (native_legacy_index != -1) ? native_legacy_index : native_keycode; + if (!ImGui::IsLegacyKey((ImGuiKey)legacy_key)) + return; + KeyMap[legacy_key] = key; + KeyMap[key] = legacy_key; +#else + IM_UNUSED(key); + IM_UNUSED(native_legacy_index); +#endif +} + +// Set master flag for accepting key/mouse/text events (default to true). Useful if you have native dialog boxes that are interrupting your application loop/refresh, and you want to disable events being queued while your app is frozen. +void ImGuiIO::SetAppAcceptingEvents(bool accepting_events) +{ + AppAcceptingEvents = accepting_events; +} + +// Queue a mouse move event +void ImGuiIO::AddMousePosEvent(float x, float y) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + if (!AppAcceptingEvents) + return; + + // Apply same flooring as UpdateMouseInputs() + ImVec2 pos((x > -FLT_MAX) ? ImFloor(x) : x, (y > -FLT_MAX) ? ImFloor(y) : y); + + // Filter duplicate + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_MousePos); + const ImVec2 latest_pos = latest_event ? ImVec2(latest_event->MousePos.PosX, latest_event->MousePos.PosY) : g.IO.MousePos; + if (latest_pos.x == pos.x && latest_pos.y == pos.y) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_MousePos; + e.Source = ImGuiInputSource_Mouse; + e.EventId = g.InputEventsNextEventId++; + e.MousePos.PosX = pos.x; + e.MousePos.PosY = pos.y; + e.MousePos.MouseSource = g.InputEventsNextMouseSource; + g.InputEventsQueue.push_back(e); +} + +void ImGuiIO::AddMouseButtonEvent(int mouse_button, bool down) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + IM_ASSERT(mouse_button >= 0 && mouse_button < ImGuiMouseButton_COUNT); + if (!AppAcceptingEvents) + return; + + // On MacOS X: Convert Ctrl(Super)+Left click into Right-click: handle held button. + if (ConfigMacOSXBehaviors && mouse_button == 0 && MouseCtrlLeftAsRightClick) + { + // Order of both statements matterns: this event will still release mouse button 1 + mouse_button = 1; + if (!down) + MouseCtrlLeftAsRightClick = false; + } + + // Filter duplicate + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_MouseButton, (int)mouse_button); + const bool latest_button_down = latest_event ? latest_event->MouseButton.Down : g.IO.MouseDown[mouse_button]; + if (latest_button_down == down) + return; + + // On MacOS X: Convert Ctrl(Super)+Left click into Right-click. + // - Note that this is actual physical Ctrl which is ImGuiMod_Super for us. + // - At this point we want from !down to down, so this is handling the initial press. + if (ConfigMacOSXBehaviors && mouse_button == 0 && down) + { + const ImGuiInputEvent* latest_super_event = FindLatestInputEvent(&g, ImGuiInputEventType_Key, (int)ImGuiMod_Super); + if (latest_super_event ? latest_super_event->Key.Down : g.IO.KeySuper) + { + IMGUI_DEBUG_LOG_IO("[io] Super+Left Click aliased into Right Click\n"); + MouseCtrlLeftAsRightClick = true; + AddMouseButtonEvent(1, true); // This is just quicker to write that passing through, as we need to filter duplicate again. + return; + } + } + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_MouseButton; + e.Source = ImGuiInputSource_Mouse; + e.EventId = g.InputEventsNextEventId++; + e.MouseButton.Button = mouse_button; + e.MouseButton.Down = down; + e.MouseButton.MouseSource = g.InputEventsNextMouseSource; + g.InputEventsQueue.push_back(e); +} + +// Queue a mouse wheel event (some mouse/API may only have a Y component) +void ImGuiIO::AddMouseWheelEvent(float wheel_x, float wheel_y) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + + // Filter duplicate (unlike most events, wheel values are relative and easy to filter) + if (!AppAcceptingEvents || (wheel_x == 0.0f && wheel_y == 0.0f)) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_MouseWheel; + e.Source = ImGuiInputSource_Mouse; + e.EventId = g.InputEventsNextEventId++; + e.MouseWheel.WheelX = wheel_x; + e.MouseWheel.WheelY = wheel_y; + e.MouseWheel.MouseSource = g.InputEventsNextMouseSource; + g.InputEventsQueue.push_back(e); +} + +// This is not a real event, the data is latched in order to be stored in actual Mouse events. +// This is so that duplicate events (e.g. Windows sending extraneous WM_MOUSEMOVE) gets filtered and are not leading to actual source changes. +void ImGuiIO::AddMouseSourceEvent(ImGuiMouseSource source) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + g.InputEventsNextMouseSource = source; +} + +void ImGuiIO::AddFocusEvent(bool focused) +{ + IM_ASSERT(Ctx != NULL); + ImGuiContext& g = *Ctx; + + // Filter duplicate + const ImGuiInputEvent* latest_event = FindLatestInputEvent(&g, ImGuiInputEventType_Focus); + const bool latest_focused = latest_event ? latest_event->AppFocused.Focused : !g.IO.AppFocusLost; + if (latest_focused == focused || (ConfigDebugIgnoreFocusLoss && !focused)) + return; + + ImGuiInputEvent e; + e.Type = ImGuiInputEventType_Focus; + e.EventId = g.InputEventsNextEventId++; + e.AppFocused.Focused = focused; + g.InputEventsQueue.push_back(e); +} + +ImGuiPlatformIO::ImGuiPlatformIO() +{ + // Most fields are initialized with zero + memset(this, 0, sizeof(*this)); + Platform_LocaleDecimalPoint = '.'; +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (Geometry functions) +//----------------------------------------------------------------------------- + +ImVec2 ImBezierCubicClosestPoint(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, int num_segments) +{ + IM_ASSERT(num_segments > 0); // Use ImBezierCubicClosestPointCasteljau() + ImVec2 p_last = p1; + ImVec2 p_closest; + float p_closest_dist2 = FLT_MAX; + float t_step = 1.0f / (float)num_segments; + for (int i_step = 1; i_step <= num_segments; i_step++) + { + ImVec2 p_current = ImBezierCubicCalc(p1, p2, p3, p4, t_step * i_step); + ImVec2 p_line = ImLineClosestPoint(p_last, p_current, p); + float dist2 = ImLengthSqr(p - p_line); + if (dist2 < p_closest_dist2) + { + p_closest = p_line; + p_closest_dist2 = dist2; + } + p_last = p_current; + } + return p_closest; +} + +// Closely mimics PathBezierToCasteljau() in imgui_draw.cpp +static void ImBezierCubicClosestPointCasteljauStep(const ImVec2& p, ImVec2& p_closest, ImVec2& p_last, float& p_closest_dist2, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, float tess_tol, int level) +{ + float dx = x4 - x1; + float dy = y4 - y1; + float d2 = ((x2 - x4) * dy - (y2 - y4) * dx); + float d3 = ((x3 - x4) * dy - (y3 - y4) * dx); + d2 = (d2 >= 0) ? d2 : -d2; + d3 = (d3 >= 0) ? d3 : -d3; + if ((d2 + d3) * (d2 + d3) < tess_tol * (dx * dx + dy * dy)) + { + ImVec2 p_current(x4, y4); + ImVec2 p_line = ImLineClosestPoint(p_last, p_current, p); + float dist2 = ImLengthSqr(p - p_line); + if (dist2 < p_closest_dist2) + { + p_closest = p_line; + p_closest_dist2 = dist2; + } + p_last = p_current; + } + else if (level < 10) + { + float x12 = (x1 + x2)*0.5f, y12 = (y1 + y2)*0.5f; + float x23 = (x2 + x3)*0.5f, y23 = (y2 + y3)*0.5f; + float x34 = (x3 + x4)*0.5f, y34 = (y3 + y4)*0.5f; + float x123 = (x12 + x23)*0.5f, y123 = (y12 + y23)*0.5f; + float x234 = (x23 + x34)*0.5f, y234 = (y23 + y34)*0.5f; + float x1234 = (x123 + x234)*0.5f, y1234 = (y123 + y234)*0.5f; + ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, x1, y1, x12, y12, x123, y123, x1234, y1234, tess_tol, level + 1); + ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, x1234, y1234, x234, y234, x34, y34, x4, y4, tess_tol, level + 1); + } +} + +// tess_tol is generally the same value you would find in ImGui::GetStyle().CurveTessellationTol +// Because those ImXXX functions are lower-level than ImGui:: we cannot access this value automatically. +ImVec2 ImBezierCubicClosestPointCasteljau(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, float tess_tol) +{ + IM_ASSERT(tess_tol > 0.0f); + ImVec2 p_last = p1; + ImVec2 p_closest; + float p_closest_dist2 = FLT_MAX; + ImBezierCubicClosestPointCasteljauStep(p, p_closest, p_last, p_closest_dist2, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, tess_tol, 0); + return p_closest; +} + +ImVec2 ImLineClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& p) +{ + ImVec2 ap = p - a; + ImVec2 ab_dir = b - a; + float dot = ap.x * ab_dir.x + ap.y * ab_dir.y; + if (dot < 0.0f) + return a; + float ab_len_sqr = ab_dir.x * ab_dir.x + ab_dir.y * ab_dir.y; + if (dot > ab_len_sqr) + return b; + return a + ab_dir * dot / ab_len_sqr; +} + +bool ImTriangleContainsPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p) +{ + bool b1 = ((p.x - b.x) * (a.y - b.y) - (p.y - b.y) * (a.x - b.x)) < 0.0f; + bool b2 = ((p.x - c.x) * (b.y - c.y) - (p.y - c.y) * (b.x - c.x)) < 0.0f; + bool b3 = ((p.x - a.x) * (c.y - a.y) - (p.y - a.y) * (c.x - a.x)) < 0.0f; + return ((b1 == b2) && (b2 == b3)); +} + +void ImTriangleBarycentricCoords(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p, float& out_u, float& out_v, float& out_w) +{ + ImVec2 v0 = b - a; + ImVec2 v1 = c - a; + ImVec2 v2 = p - a; + const float denom = v0.x * v1.y - v1.x * v0.y; + out_v = (v2.x * v1.y - v1.x * v2.y) / denom; + out_w = (v0.x * v2.y - v2.x * v0.y) / denom; + out_u = 1.0f - out_v - out_w; +} + +ImVec2 ImTriangleClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p) +{ + ImVec2 proj_ab = ImLineClosestPoint(a, b, p); + ImVec2 proj_bc = ImLineClosestPoint(b, c, p); + ImVec2 proj_ca = ImLineClosestPoint(c, a, p); + float dist2_ab = ImLengthSqr(p - proj_ab); + float dist2_bc = ImLengthSqr(p - proj_bc); + float dist2_ca = ImLengthSqr(p - proj_ca); + float m = ImMin(dist2_ab, ImMin(dist2_bc, dist2_ca)); + if (m == dist2_ab) + return proj_ab; + if (m == dist2_bc) + return proj_bc; + return proj_ca; +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (String, Format, Hash functions) +//----------------------------------------------------------------------------- + +// Consider using _stricmp/_strnicmp under Windows or strcasecmp/strncasecmp. We don't actually use either ImStricmp/ImStrnicmp in the codebase any more. +int ImStricmp(const char* str1, const char* str2) +{ + int d; + while ((d = ImToUpper(*str2) - ImToUpper(*str1)) == 0 && *str1) { str1++; str2++; } + return d; +} + +int ImStrnicmp(const char* str1, const char* str2, size_t count) +{ + int d = 0; + while (count > 0 && (d = ImToUpper(*str2) - ImToUpper(*str1)) == 0 && *str1) { str1++; str2++; count--; } + return d; +} + +void ImStrncpy(char* dst, const char* src, size_t count) +{ + if (count < 1) + return; + if (count > 1) + strncpy(dst, src, count - 1); + dst[count - 1] = 0; +} + +char* ImStrdup(const char* str) +{ + size_t len = strlen(str); + void* buf = IM_ALLOC(len + 1); + return (char*)memcpy(buf, (const void*)str, len + 1); +} + +char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* src) +{ + size_t dst_buf_size = p_dst_size ? *p_dst_size : strlen(dst) + 1; + size_t src_size = strlen(src) + 1; + if (dst_buf_size < src_size) + { + IM_FREE(dst); + dst = (char*)IM_ALLOC(src_size); + if (p_dst_size) + *p_dst_size = src_size; + } + return (char*)memcpy(dst, (const void*)src, src_size); +} + +const char* ImStrchrRange(const char* str, const char* str_end, char c) +{ + const char* p = (const char*)memchr(str, (int)c, str_end - str); + return p; +} + +int ImStrlenW(const ImWchar* str) +{ + //return (int)wcslen((const wchar_t*)str); // FIXME-OPT: Could use this when wchar_t are 16-bit + int n = 0; + while (*str++) n++; + return n; +} + +// Find end-of-line. Return pointer will point to either first \n, either str_end. +const char* ImStreolRange(const char* str, const char* str_end) +{ + const char* p = (const char*)memchr(str, '\n', str_end - str); + return p ? p : str_end; +} + +const char* ImStrbol(const char* buf_mid_line, const char* buf_begin) // find beginning-of-line +{ + while (buf_mid_line > buf_begin && buf_mid_line[-1] != '\n') + buf_mid_line--; + return buf_mid_line; +} + +const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const char* needle_end) +{ + if (!needle_end) + needle_end = needle + strlen(needle); + + const char un0 = (char)ImToUpper(*needle); + while ((!haystack_end && *haystack) || (haystack_end && haystack < haystack_end)) + { + if (ImToUpper(*haystack) == un0) + { + const char* b = needle + 1; + for (const char* a = haystack + 1; b < needle_end; a++, b++) + if (ImToUpper(*a) != ImToUpper(*b)) + break; + if (b == needle_end) + return haystack; + } + haystack++; + } + return NULL; +} + +// Trim str by offsetting contents when there's leading data + writing a \0 at the trailing position. We use this in situation where the cost is negligible. +void ImStrTrimBlanks(char* buf) +{ + char* p = buf; + while (p[0] == ' ' || p[0] == '\t') // Leading blanks + p++; + char* p_start = p; + while (*p != 0) // Find end of string + p++; + while (p > p_start && (p[-1] == ' ' || p[-1] == '\t')) // Trailing blanks + p--; + if (p_start != buf) // Copy memory if we had leading blanks + memmove(buf, p_start, p - p_start); + buf[p - p_start] = 0; // Zero terminate +} + +const char* ImStrSkipBlank(const char* str) +{ + while (str[0] == ' ' || str[0] == '\t') + str++; + return str; +} + +// A) MSVC version appears to return -1 on overflow, whereas glibc appears to return total count (which may be >= buf_size). +// Ideally we would test for only one of those limits at runtime depending on the behavior the vsnprintf(), but trying to deduct it at compile time sounds like a pandora can of worm. +// B) When buf==NULL vsnprintf() will return the output size. +#ifndef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS + +// We support stb_sprintf which is much faster (see: https://github.com/nothings/stb/blob/master/stb_sprintf.h) +// You may set IMGUI_USE_STB_SPRINTF to use our default wrapper, or set IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS +// and setup the wrapper yourself. (FIXME-OPT: Some of our high-level operations such as ImGuiTextBuffer::appendfv() are +// designed using two-passes worst case, which probably could be improved using the stbsp_vsprintfcb() function.) +#ifdef IMGUI_USE_STB_SPRINTF +#ifndef IMGUI_DISABLE_STB_SPRINTF_IMPLEMENTATION +#define STB_SPRINTF_IMPLEMENTATION +#endif +#ifdef IMGUI_STB_SPRINTF_FILENAME +#include IMGUI_STB_SPRINTF_FILENAME +#else +#include "stb_sprintf.h" +#endif +#endif // #ifdef IMGUI_USE_STB_SPRINTF + +#if defined(_MSC_VER) && !defined(vsnprintf) +#define vsnprintf _vsnprintf +#endif + +int ImFormatString(char* buf, size_t buf_size, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); +#ifdef IMGUI_USE_STB_SPRINTF + int w = stbsp_vsnprintf(buf, (int)buf_size, fmt, args); +#else + int w = vsnprintf(buf, buf_size, fmt, args); +#endif + va_end(args); + if (buf == NULL) + return w; + if (w == -1 || w >= (int)buf_size) + w = (int)buf_size - 1; + buf[w] = 0; + return w; +} + +int ImFormatStringV(char* buf, size_t buf_size, const char* fmt, va_list args) +{ +#ifdef IMGUI_USE_STB_SPRINTF + int w = stbsp_vsnprintf(buf, (int)buf_size, fmt, args); +#else + int w = vsnprintf(buf, buf_size, fmt, args); +#endif + if (buf == NULL) + return w; + if (w == -1 || w >= (int)buf_size) + w = (int)buf_size - 1; + buf[w] = 0; + return w; +} +#endif // #ifdef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS + +void ImFormatStringToTempBuffer(const char** out_buf, const char** out_buf_end, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + ImFormatStringToTempBufferV(out_buf, out_buf_end, fmt, args); + va_end(args); +} + +// FIXME: Should rework API toward allowing multiple in-flight temp buffers (easier and safer for caller) +// by making the caller acquire a temp buffer token, with either explicit or destructor release, e.g. +// ImGuiTempBufferToken token; +// ImFormatStringToTempBuffer(token, ...); +void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + if (fmt[0] == '%' && fmt[1] == 's' && fmt[2] == 0) + { + const char* buf = va_arg(args, const char*); // Skip formatting when using "%s" + if (buf == NULL) + buf = "(null)"; + *out_buf = buf; + if (out_buf_end) { *out_buf_end = buf + strlen(buf); } + } + else if (fmt[0] == '%' && fmt[1] == '.' && fmt[2] == '*' && fmt[3] == 's' && fmt[4] == 0) + { + int buf_len = va_arg(args, int); // Skip formatting when using "%.*s" + const char* buf = va_arg(args, const char*); + if (buf == NULL) + { + buf = "(null)"; + buf_len = ImMin(buf_len, 6); + } + *out_buf = buf; + *out_buf_end = buf + buf_len; // Disallow not passing 'out_buf_end' here. User is expected to use it. + } + else + { + int buf_len = ImFormatStringV(g.TempBuffer.Data, g.TempBuffer.Size, fmt, args); + *out_buf = g.TempBuffer.Data; + if (out_buf_end) { *out_buf_end = g.TempBuffer.Data + buf_len; } + } +} + +// CRC32 needs a 1KB lookup table (not cache friendly) +// Although the code to generate the table is simple and shorter than the table itself, using a const table allows us to easily: +// - avoid an unnecessary branch/memory tap, - keep the ImHashXXX functions usable by static constructors, - make it thread-safe. +static const ImU32 GCrc32LookupTable[256] = +{ + 0x00000000,0x77073096,0xEE0E612C,0x990951BA,0x076DC419,0x706AF48F,0xE963A535,0x9E6495A3,0x0EDB8832,0x79DCB8A4,0xE0D5E91E,0x97D2D988,0x09B64C2B,0x7EB17CBD,0xE7B82D07,0x90BF1D91, + 0x1DB71064,0x6AB020F2,0xF3B97148,0x84BE41DE,0x1ADAD47D,0x6DDDE4EB,0xF4D4B551,0x83D385C7,0x136C9856,0x646BA8C0,0xFD62F97A,0x8A65C9EC,0x14015C4F,0x63066CD9,0xFA0F3D63,0x8D080DF5, + 0x3B6E20C8,0x4C69105E,0xD56041E4,0xA2677172,0x3C03E4D1,0x4B04D447,0xD20D85FD,0xA50AB56B,0x35B5A8FA,0x42B2986C,0xDBBBC9D6,0xACBCF940,0x32D86CE3,0x45DF5C75,0xDCD60DCF,0xABD13D59, + 0x26D930AC,0x51DE003A,0xC8D75180,0xBFD06116,0x21B4F4B5,0x56B3C423,0xCFBA9599,0xB8BDA50F,0x2802B89E,0x5F058808,0xC60CD9B2,0xB10BE924,0x2F6F7C87,0x58684C11,0xC1611DAB,0xB6662D3D, + 0x76DC4190,0x01DB7106,0x98D220BC,0xEFD5102A,0x71B18589,0x06B6B51F,0x9FBFE4A5,0xE8B8D433,0x7807C9A2,0x0F00F934,0x9609A88E,0xE10E9818,0x7F6A0DBB,0x086D3D2D,0x91646C97,0xE6635C01, + 0x6B6B51F4,0x1C6C6162,0x856530D8,0xF262004E,0x6C0695ED,0x1B01A57B,0x8208F4C1,0xF50FC457,0x65B0D9C6,0x12B7E950,0x8BBEB8EA,0xFCB9887C,0x62DD1DDF,0x15DA2D49,0x8CD37CF3,0xFBD44C65, + 0x4DB26158,0x3AB551CE,0xA3BC0074,0xD4BB30E2,0x4ADFA541,0x3DD895D7,0xA4D1C46D,0xD3D6F4FB,0x4369E96A,0x346ED9FC,0xAD678846,0xDA60B8D0,0x44042D73,0x33031DE5,0xAA0A4C5F,0xDD0D7CC9, + 0x5005713C,0x270241AA,0xBE0B1010,0xC90C2086,0x5768B525,0x206F85B3,0xB966D409,0xCE61E49F,0x5EDEF90E,0x29D9C998,0xB0D09822,0xC7D7A8B4,0x59B33D17,0x2EB40D81,0xB7BD5C3B,0xC0BA6CAD, + 0xEDB88320,0x9ABFB3B6,0x03B6E20C,0x74B1D29A,0xEAD54739,0x9DD277AF,0x04DB2615,0x73DC1683,0xE3630B12,0x94643B84,0x0D6D6A3E,0x7A6A5AA8,0xE40ECF0B,0x9309FF9D,0x0A00AE27,0x7D079EB1, + 0xF00F9344,0x8708A3D2,0x1E01F268,0x6906C2FE,0xF762575D,0x806567CB,0x196C3671,0x6E6B06E7,0xFED41B76,0x89D32BE0,0x10DA7A5A,0x67DD4ACC,0xF9B9DF6F,0x8EBEEFF9,0x17B7BE43,0x60B08ED5, + 0xD6D6A3E8,0xA1D1937E,0x38D8C2C4,0x4FDFF252,0xD1BB67F1,0xA6BC5767,0x3FB506DD,0x48B2364B,0xD80D2BDA,0xAF0A1B4C,0x36034AF6,0x41047A60,0xDF60EFC3,0xA867DF55,0x316E8EEF,0x4669BE79, + 0xCB61B38C,0xBC66831A,0x256FD2A0,0x5268E236,0xCC0C7795,0xBB0B4703,0x220216B9,0x5505262F,0xC5BA3BBE,0xB2BD0B28,0x2BB45A92,0x5CB36A04,0xC2D7FFA7,0xB5D0CF31,0x2CD99E8B,0x5BDEAE1D, + 0x9B64C2B0,0xEC63F226,0x756AA39C,0x026D930A,0x9C0906A9,0xEB0E363F,0x72076785,0x05005713,0x95BF4A82,0xE2B87A14,0x7BB12BAE,0x0CB61B38,0x92D28E9B,0xE5D5BE0D,0x7CDCEFB7,0x0BDBDF21, + 0x86D3D2D4,0xF1D4E242,0x68DDB3F8,0x1FDA836E,0x81BE16CD,0xF6B9265B,0x6FB077E1,0x18B74777,0x88085AE6,0xFF0F6A70,0x66063BCA,0x11010B5C,0x8F659EFF,0xF862AE69,0x616BFFD3,0x166CCF45, + 0xA00AE278,0xD70DD2EE,0x4E048354,0x3903B3C2,0xA7672661,0xD06016F7,0x4969474D,0x3E6E77DB,0xAED16A4A,0xD9D65ADC,0x40DF0B66,0x37D83BF0,0xA9BCAE53,0xDEBB9EC5,0x47B2CF7F,0x30B5FFE9, + 0xBDBDF21C,0xCABAC28A,0x53B39330,0x24B4A3A6,0xBAD03605,0xCDD70693,0x54DE5729,0x23D967BF,0xB3667A2E,0xC4614AB8,0x5D681B02,0x2A6F2B94,0xB40BBE37,0xC30C8EA1,0x5A05DF1B,0x2D02EF8D, +}; + +// Known size hash +// It is ok to call ImHashData on a string with known length but the ### operator won't be supported. +// FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. +ImGuiID ImHashData(const void* data_p, size_t data_size, ImGuiID seed) +{ + ImU32 crc = ~seed; + const unsigned char* data = (const unsigned char*)data_p; + const ImU32* crc32_lut = GCrc32LookupTable; + while (data_size-- != 0) + crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ *data++]; + return ~crc; +} + +// Zero-terminated string hash, with support for ### to reset back to seed value +// We support a syntax of "label###id" where only "###id" is included in the hash, and only "label" gets displayed. +// Because this syntax is rarely used we are optimizing for the common case. +// - If we reach ### in the string we discard the hash so far and reset to the seed. +// - We don't do 'current += 2; continue;' after handling ### to keep the code smaller/faster (measured ~10% diff in Debug build) +// FIXME-OPT: Replace with e.g. FNV1a hash? CRC32 pretty much randomly access 1KB. Need to do proper measurements. +ImGuiID ImHashStr(const char* data_p, size_t data_size, ImGuiID seed) +{ + seed = ~seed; + ImU32 crc = seed; + const unsigned char* data = (const unsigned char*)data_p; + const ImU32* crc32_lut = GCrc32LookupTable; + if (data_size != 0) + { + while (data_size-- != 0) + { + unsigned char c = *data++; + if (c == '#' && data_size >= 2 && data[0] == '#' && data[1] == '#') + crc = seed; + crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; + } + } + else + { + while (unsigned char c = *data++) + { + if (c == '#' && data[0] == '#' && data[1] == '#') + crc = seed; + crc = (crc >> 8) ^ crc32_lut[(crc & 0xFF) ^ c]; + } + } + return ~crc; +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (File functions) +//----------------------------------------------------------------------------- + +// Default file functions +#ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS + +ImFileHandle ImFileOpen(const char* filename, const char* mode) +{ +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(__CYGWIN__) && !defined(__GNUC__) + // We need a fopen() wrapper because MSVC/Windows fopen doesn't handle UTF-8 filenames. + // Previously we used ImTextCountCharsFromUtf8/ImTextStrFromUtf8 here but we now need to support ImWchar16 and ImWchar32! + const int filename_wsize = ::MultiByteToWideChar(CP_UTF8, 0, filename, -1, NULL, 0); + const int mode_wsize = ::MultiByteToWideChar(CP_UTF8, 0, mode, -1, NULL, 0); + + // Use stack buffer if possible, otherwise heap buffer. Sizes include zero terminator. + // We don't rely on current ImGuiContext as this is implied to be a helper function which doesn't depend on it (see #7314). + wchar_t local_temp_stack[FILENAME_MAX]; + ImVector local_temp_heap; + if (filename_wsize + mode_wsize > IM_ARRAYSIZE(local_temp_stack)) + local_temp_heap.resize(filename_wsize + mode_wsize); + wchar_t* filename_wbuf = local_temp_heap.Data ? local_temp_heap.Data : local_temp_stack; + wchar_t* mode_wbuf = filename_wbuf + filename_wsize; + ::MultiByteToWideChar(CP_UTF8, 0, filename, -1, filename_wbuf, filename_wsize); + ::MultiByteToWideChar(CP_UTF8, 0, mode, -1, mode_wbuf, mode_wsize); + return ::_wfopen(filename_wbuf, mode_wbuf); +#else + return fopen(filename, mode); +#endif +} + +// We should in theory be using fseeko()/ftello() with off_t and _fseeki64()/_ftelli64() with __int64, waiting for the PR that does that in a very portable pre-C++11 zero-warnings way. +bool ImFileClose(ImFileHandle f) { return fclose(f) == 0; } +ImU64 ImFileGetSize(ImFileHandle f) { long off = 0, sz = 0; return ((off = ftell(f)) != -1 && !fseek(f, 0, SEEK_END) && (sz = ftell(f)) != -1 && !fseek(f, off, SEEK_SET)) ? (ImU64)sz : (ImU64)-1; } +ImU64 ImFileRead(void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fread(data, (size_t)sz, (size_t)count, f); } +ImU64 ImFileWrite(const void* data, ImU64 sz, ImU64 count, ImFileHandle f) { return fwrite(data, (size_t)sz, (size_t)count, f); } +#endif // #ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS + +// Helper: Load file content into memory +// Memory allocated with IM_ALLOC(), must be freed by user using IM_FREE() == ImGui::MemFree() +// This can't really be used with "rt" because fseek size won't match read size. +void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size, int padding_bytes) +{ + IM_ASSERT(filename && mode); + if (out_file_size) + *out_file_size = 0; + + ImFileHandle f; + if ((f = ImFileOpen(filename, mode)) == NULL) + return NULL; + + size_t file_size = (size_t)ImFileGetSize(f); + if (file_size == (size_t)-1) + { + ImFileClose(f); + return NULL; + } + + void* file_data = IM_ALLOC(file_size + padding_bytes); + if (file_data == NULL) + { + ImFileClose(f); + return NULL; + } + if (ImFileRead(file_data, 1, file_size, f) != file_size) + { + ImFileClose(f); + IM_FREE(file_data); + return NULL; + } + if (padding_bytes > 0) + memset((void*)(((char*)file_data) + file_size), 0, (size_t)padding_bytes); + + ImFileClose(f); + if (out_file_size) + *out_file_size = file_size; + + return file_data; +} + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (ImText* functions) +//----------------------------------------------------------------------------- + +IM_MSVC_RUNTIME_CHECKS_OFF + +// Convert UTF-8 to 32-bit character, process single character input. +// A nearly-branchless UTF-8 decoder, based on work of Christopher Wellons (https://github.com/skeeto/branchless-utf8). +// We handle UTF-8 decoding error by skipping forward. +int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end) +{ + static const char lengths[32] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 3, 3, 4, 0 }; + static const int masks[] = { 0x00, 0x7f, 0x1f, 0x0f, 0x07 }; + static const uint32_t mins[] = { 0x400000, 0, 0x80, 0x800, 0x10000 }; + static const int shiftc[] = { 0, 18, 12, 6, 0 }; + static const int shifte[] = { 0, 6, 4, 2, 0 }; + int len = lengths[*(const unsigned char*)in_text >> 3]; + int wanted = len + (len ? 0 : 1); + + if (in_text_end == NULL) + in_text_end = in_text + wanted; // Max length, nulls will be taken into account. + + // Copy at most 'len' bytes, stop copying at 0 or past in_text_end. Branch predictor does a good job here, + // so it is fast even with excessive branching. + unsigned char s[4]; + s[0] = in_text + 0 < in_text_end ? in_text[0] : 0; + s[1] = in_text + 1 < in_text_end ? in_text[1] : 0; + s[2] = in_text + 2 < in_text_end ? in_text[2] : 0; + s[3] = in_text + 3 < in_text_end ? in_text[3] : 0; + + // Assume a four-byte character and load four bytes. Unused bits are shifted out. + *out_char = (uint32_t)(s[0] & masks[len]) << 18; + *out_char |= (uint32_t)(s[1] & 0x3f) << 12; + *out_char |= (uint32_t)(s[2] & 0x3f) << 6; + *out_char |= (uint32_t)(s[3] & 0x3f) << 0; + *out_char >>= shiftc[len]; + + // Accumulate the various error conditions. + int e = 0; + e = (*out_char < mins[len]) << 6; // non-canonical encoding + e |= ((*out_char >> 11) == 0x1b) << 7; // surrogate half? + e |= (*out_char > IM_UNICODE_CODEPOINT_MAX) << 8; // out of range? + e |= (s[1] & 0xc0) >> 2; + e |= (s[2] & 0xc0) >> 4; + e |= (s[3] ) >> 6; + e ^= 0x2a; // top two bits of each tail byte correct? + e >>= shifte[len]; + + if (e) + { + // No bytes are consumed when *in_text == 0 || in_text == in_text_end. + // One byte is consumed in case of invalid first byte of in_text. + // All available bytes (at most `len` bytes) are consumed on incomplete/invalid second to last bytes. + // Invalid or incomplete input may consume less bytes than wanted, therefore every byte has to be inspected in s. + wanted = ImMin(wanted, !!s[0] + !!s[1] + !!s[2] + !!s[3]); + *out_char = IM_UNICODE_CODEPOINT_INVALID; + } + + return wanted; +} + +int ImTextStrFromUtf8(ImWchar* buf, int buf_size, const char* in_text, const char* in_text_end, const char** in_text_remaining) +{ + ImWchar* buf_out = buf; + ImWchar* buf_end = buf + buf_size; + while (buf_out < buf_end - 1 && (!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c; + in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); + *buf_out++ = (ImWchar)c; + } + *buf_out = 0; + if (in_text_remaining) + *in_text_remaining = in_text; + return (int)(buf_out - buf); +} + +int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end) +{ + int char_count = 0; + while ((!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c; + in_text += ImTextCharFromUtf8(&c, in_text, in_text_end); + char_count++; + } + return char_count; +} + +// Based on stb_to_utf8() from github.com/nothings/stb/ +static inline int ImTextCharToUtf8_inline(char* buf, int buf_size, unsigned int c) +{ + if (c < 0x80) + { + buf[0] = (char)c; + return 1; + } + if (c < 0x800) + { + if (buf_size < 2) return 0; + buf[0] = (char)(0xc0 + (c >> 6)); + buf[1] = (char)(0x80 + (c & 0x3f)); + return 2; + } + if (c < 0x10000) + { + if (buf_size < 3) return 0; + buf[0] = (char)(0xe0 + (c >> 12)); + buf[1] = (char)(0x80 + ((c >> 6) & 0x3f)); + buf[2] = (char)(0x80 + ((c ) & 0x3f)); + return 3; + } + if (c <= 0x10FFFF) + { + if (buf_size < 4) return 0; + buf[0] = (char)(0xf0 + (c >> 18)); + buf[1] = (char)(0x80 + ((c >> 12) & 0x3f)); + buf[2] = (char)(0x80 + ((c >> 6) & 0x3f)); + buf[3] = (char)(0x80 + ((c ) & 0x3f)); + return 4; + } + // Invalid code point, the max unicode is 0x10FFFF + return 0; +} + +const char* ImTextCharToUtf8(char out_buf[5], unsigned int c) +{ + int count = ImTextCharToUtf8_inline(out_buf, 5, c); + out_buf[count] = 0; + return out_buf; +} + +// Not optimal but we very rarely use this function. +int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end) +{ + unsigned int unused = 0; + return ImTextCharFromUtf8(&unused, in_text, in_text_end); +} + +static inline int ImTextCountUtf8BytesFromChar(unsigned int c) +{ + if (c < 0x80) return 1; + if (c < 0x800) return 2; + if (c < 0x10000) return 3; + if (c <= 0x10FFFF) return 4; + return 3; +} + +int ImTextStrToUtf8(char* out_buf, int out_buf_size, const ImWchar* in_text, const ImWchar* in_text_end) +{ + char* buf_p = out_buf; + const char* buf_end = out_buf + out_buf_size; + while (buf_p < buf_end - 1 && (!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c = (unsigned int)(*in_text++); + if (c < 0x80) + *buf_p++ = (char)c; + else + buf_p += ImTextCharToUtf8_inline(buf_p, (int)(buf_end - buf_p - 1), c); + } + *buf_p = 0; + return (int)(buf_p - out_buf); +} + +int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end) +{ + int bytes_count = 0; + while ((!in_text_end || in_text < in_text_end) && *in_text) + { + unsigned int c = (unsigned int)(*in_text++); + if (c < 0x80) + bytes_count++; + else + bytes_count += ImTextCountUtf8BytesFromChar(c); + } + return bytes_count; +} + +const char* ImTextFindPreviousUtf8Codepoint(const char* in_text_start, const char* in_text_curr) +{ + while (in_text_curr > in_text_start) + { + in_text_curr--; + if ((*in_text_curr & 0xC0) != 0x80) + return in_text_curr; + } + return in_text_start; +} + +int ImTextCountLines(const char* in_text, const char* in_text_end) +{ + if (in_text_end == NULL) + in_text_end = in_text + strlen(in_text); // FIXME-OPT: Not optimal approach, discourage use for now. + int count = 0; + while (in_text < in_text_end) + { + const char* line_end = (const char*)memchr(in_text, '\n', in_text_end - in_text); + in_text = line_end ? line_end + 1 : in_text_end; + count++; + } + return count; +} + +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] MISC HELPERS/UTILITIES (Color functions) +// Note: The Convert functions are early design which are not consistent with other API. +//----------------------------------------------------------------------------- + +IMGUI_API ImU32 ImAlphaBlendColors(ImU32 col_a, ImU32 col_b) +{ + float t = ((col_b >> IM_COL32_A_SHIFT) & 0xFF) / 255.f; + int r = ImLerp((int)(col_a >> IM_COL32_R_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_R_SHIFT) & 0xFF, t); + int g = ImLerp((int)(col_a >> IM_COL32_G_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_G_SHIFT) & 0xFF, t); + int b = ImLerp((int)(col_a >> IM_COL32_B_SHIFT) & 0xFF, (int)(col_b >> IM_COL32_B_SHIFT) & 0xFF, t); + return IM_COL32(r, g, b, 0xFF); +} + +ImVec4 ImGui::ColorConvertU32ToFloat4(ImU32 in) +{ + float s = 1.0f / 255.0f; + return ImVec4( + ((in >> IM_COL32_R_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_G_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_B_SHIFT) & 0xFF) * s, + ((in >> IM_COL32_A_SHIFT) & 0xFF) * s); +} + +ImU32 ImGui::ColorConvertFloat4ToU32(const ImVec4& in) +{ + ImU32 out; + out = ((ImU32)IM_F32_TO_INT8_SAT(in.x)) << IM_COL32_R_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.y)) << IM_COL32_G_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.z)) << IM_COL32_B_SHIFT; + out |= ((ImU32)IM_F32_TO_INT8_SAT(in.w)) << IM_COL32_A_SHIFT; + return out; +} + +// Convert rgb floats ([0-1],[0-1],[0-1]) to hsv floats ([0-1],[0-1],[0-1]), from Foley & van Dam p592 +// Optimized http://lolengine.net/blog/2013/01/13/fast-rgb-to-hsv +void ImGui::ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v) +{ + float K = 0.f; + if (g < b) + { + ImSwap(g, b); + K = -1.f; + } + if (r < g) + { + ImSwap(r, g); + K = -2.f / 6.f - K; + } + + const float chroma = r - (g < b ? g : b); + out_h = ImFabs(K + (g - b) / (6.f * chroma + 1e-20f)); + out_s = chroma / (r + 1e-20f); + out_v = r; +} + +// Convert hsv floats ([0-1],[0-1],[0-1]) to rgb floats ([0-1],[0-1],[0-1]), from Foley & van Dam p593 +// also http://en.wikipedia.org/wiki/HSL_and_HSV +void ImGui::ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b) +{ + if (s == 0.0f) + { + // gray + out_r = out_g = out_b = v; + return; + } + + h = ImFmod(h, 1.0f) / (60.0f / 360.0f); + int i = (int)h; + float f = h - (float)i; + float p = v * (1.0f - s); + float q = v * (1.0f - s * f); + float t = v * (1.0f - s * (1.0f - f)); + + switch (i) + { + case 0: out_r = v; out_g = t; out_b = p; break; + case 1: out_r = q; out_g = v; out_b = p; break; + case 2: out_r = p; out_g = v; out_b = t; break; + case 3: out_r = p; out_g = q; out_b = v; break; + case 4: out_r = t; out_g = p; out_b = v; break; + case 5: default: out_r = v; out_g = p; out_b = q; break; + } +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiStorage +// Helper: Key->value storage +//----------------------------------------------------------------------------- + +// std::lower_bound but without the bullshit +ImGuiStoragePair* ImLowerBound(ImGuiStoragePair* in_begin, ImGuiStoragePair* in_end, ImGuiID key) +{ + ImGuiStoragePair* in_p = in_begin; + for (size_t count = (size_t)(in_end - in_p); count > 0; ) + { + size_t count2 = count >> 1; + ImGuiStoragePair* mid = in_p + count2; + if (mid->key < key) + { + in_p = ++mid; + count -= count2 + 1; + } + else + { + count = count2; + } + } + return in_p; +} + +IM_MSVC_RUNTIME_CHECKS_OFF +static int IMGUI_CDECL PairComparerByID(const void* lhs, const void* rhs) +{ + // We can't just do a subtraction because qsort uses signed integers and subtracting our ID doesn't play well with that. + ImGuiID lhs_v = ((const ImGuiStoragePair*)lhs)->key; + ImGuiID rhs_v = ((const ImGuiStoragePair*)rhs)->key; + return (lhs_v > rhs_v ? +1 : lhs_v < rhs_v ? -1 : 0); +} + +// For quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once. +void ImGuiStorage::BuildSortByKey() +{ + ImQsort(Data.Data, (size_t)Data.Size, sizeof(ImGuiStoragePair), PairComparerByID); +} + +int ImGuiStorage::GetInt(ImGuiID key, int default_val) const +{ + ImGuiStoragePair* it = ImLowerBound(const_cast(Data.Data), const_cast(Data.Data + Data.Size), key); + if (it == Data.Data + Data.Size || it->key != key) + return default_val; + return it->val_i; +} + +bool ImGuiStorage::GetBool(ImGuiID key, bool default_val) const +{ + return GetInt(key, default_val ? 1 : 0) != 0; +} + +float ImGuiStorage::GetFloat(ImGuiID key, float default_val) const +{ + ImGuiStoragePair* it = ImLowerBound(const_cast(Data.Data), const_cast(Data.Data + Data.Size), key); + if (it == Data.Data + Data.Size || it->key != key) + return default_val; + return it->val_f; +} + +void* ImGuiStorage::GetVoidPtr(ImGuiID key) const +{ + ImGuiStoragePair* it = ImLowerBound(const_cast(Data.Data), const_cast(Data.Data + Data.Size), key); + if (it == Data.Data + Data.Size || it->key != key) + return NULL; + return it->val_p; +} + +// References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer. +int* ImGuiStorage::GetIntRef(ImGuiID key, int default_val) +{ + ImGuiStoragePair* it = ImLowerBound(Data.Data, Data.Data + Data.Size, key); + if (it == Data.Data + Data.Size || it->key != key) + it = Data.insert(it, ImGuiStoragePair(key, default_val)); + return &it->val_i; +} + +bool* ImGuiStorage::GetBoolRef(ImGuiID key, bool default_val) +{ + return (bool*)GetIntRef(key, default_val ? 1 : 0); +} + +float* ImGuiStorage::GetFloatRef(ImGuiID key, float default_val) +{ + ImGuiStoragePair* it = ImLowerBound(Data.Data, Data.Data + Data.Size, key); + if (it == Data.Data + Data.Size || it->key != key) + it = Data.insert(it, ImGuiStoragePair(key, default_val)); + return &it->val_f; +} + +void** ImGuiStorage::GetVoidPtrRef(ImGuiID key, void* default_val) +{ + ImGuiStoragePair* it = ImLowerBound(Data.Data, Data.Data + Data.Size, key); + if (it == Data.Data + Data.Size || it->key != key) + it = Data.insert(it, ImGuiStoragePair(key, default_val)); + return &it->val_p; +} + +// FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame) +void ImGuiStorage::SetInt(ImGuiID key, int val) +{ + ImGuiStoragePair* it = ImLowerBound(Data.Data, Data.Data + Data.Size, key); + if (it == Data.Data + Data.Size || it->key != key) + Data.insert(it, ImGuiStoragePair(key, val)); + else + it->val_i = val; +} + +void ImGuiStorage::SetBool(ImGuiID key, bool val) +{ + SetInt(key, val ? 1 : 0); +} + +void ImGuiStorage::SetFloat(ImGuiID key, float val) +{ + ImGuiStoragePair* it = ImLowerBound(Data.Data, Data.Data + Data.Size, key); + if (it == Data.Data + Data.Size || it->key != key) + Data.insert(it, ImGuiStoragePair(key, val)); + else + it->val_f = val; +} + +void ImGuiStorage::SetVoidPtr(ImGuiID key, void* val) +{ + ImGuiStoragePair* it = ImLowerBound(Data.Data, Data.Data + Data.Size, key); + if (it == Data.Data + Data.Size || it->key != key) + Data.insert(it, ImGuiStoragePair(key, val)); + else + it->val_p = val; +} + +void ImGuiStorage::SetAllInt(int v) +{ + for (int i = 0; i < Data.Size; i++) + Data[i].val_i = v; +} +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiTextFilter +//----------------------------------------------------------------------------- + +// Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]" +ImGuiTextFilter::ImGuiTextFilter(const char* default_filter) //-V1077 +{ + InputBuf[0] = 0; + CountGrep = 0; + if (default_filter) + { + ImStrncpy(InputBuf, default_filter, IM_ARRAYSIZE(InputBuf)); + Build(); + } +} + +bool ImGuiTextFilter::Draw(const char* label, float width) +{ + if (width != 0.0f) + ImGui::SetNextItemWidth(width); + bool value_changed = ImGui::InputText(label, InputBuf, IM_ARRAYSIZE(InputBuf)); + if (value_changed) + Build(); + return value_changed; +} + +void ImGuiTextFilter::ImGuiTextRange::split(char separator, ImVector* out) const +{ + out->resize(0); + const char* wb = b; + const char* we = wb; + while (we < e) + { + if (*we == separator) + { + out->push_back(ImGuiTextRange(wb, we)); + wb = we + 1; + } + we++; + } + if (wb != we) + out->push_back(ImGuiTextRange(wb, we)); +} + +void ImGuiTextFilter::Build() +{ + Filters.resize(0); + ImGuiTextRange input_range(InputBuf, InputBuf + strlen(InputBuf)); + input_range.split(',', &Filters); + + CountGrep = 0; + for (ImGuiTextRange& f : Filters) + { + while (f.b < f.e && ImCharIsBlankA(f.b[0])) + f.b++; + while (f.e > f.b && ImCharIsBlankA(f.e[-1])) + f.e--; + if (f.empty()) + continue; + if (f.b[0] != '-') + CountGrep += 1; + } +} + +bool ImGuiTextFilter::PassFilter(const char* text, const char* text_end) const +{ + if (Filters.Size == 0) + return true; + + if (text == NULL) + text = text_end = ""; + + for (const ImGuiTextRange& f : Filters) + { + if (f.b == f.e) + continue; + if (f.b[0] == '-') + { + // Subtract + if (ImStristr(text, text_end, f.b + 1, f.e) != NULL) + return false; + } + else + { + // Grep + if (ImStristr(text, text_end, f.b, f.e) != NULL) + return true; + } + } + + // Implicit * grep + if (CountGrep == 0) + return true; + + return false; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiTextBuffer, ImGuiTextIndex +//----------------------------------------------------------------------------- + +// On some platform vsnprintf() takes va_list by reference and modifies it. +// va_copy is the 'correct' way to copy a va_list but Visual Studio prior to 2013 doesn't have it. +#ifndef va_copy +#if defined(__GNUC__) || defined(__clang__) +#define va_copy(dest, src) __builtin_va_copy(dest, src) +#else +#define va_copy(dest, src) (dest = src) +#endif +#endif + +char ImGuiTextBuffer::EmptyString[1] = { 0 }; + +void ImGuiTextBuffer::append(const char* str, const char* str_end) +{ + int len = str_end ? (int)(str_end - str) : (int)strlen(str); + + // Add zero-terminator the first time + const int write_off = (Buf.Size != 0) ? Buf.Size : 1; + const int needed_sz = write_off + len; + if (write_off + len >= Buf.Capacity) + { + int new_capacity = Buf.Capacity * 2; + Buf.reserve(needed_sz > new_capacity ? needed_sz : new_capacity); + } + + Buf.resize(needed_sz); + memcpy(&Buf[write_off - 1], str, (size_t)len); + Buf[write_off - 1 + len] = 0; +} + +void ImGuiTextBuffer::appendf(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + appendfv(fmt, args); + va_end(args); +} + +// Helper: Text buffer for logging/accumulating text +void ImGuiTextBuffer::appendfv(const char* fmt, va_list args) +{ + va_list args_copy; + va_copy(args_copy, args); + + int len = ImFormatStringV(NULL, 0, fmt, args); // FIXME-OPT: could do a first pass write attempt, likely successful on first pass. + if (len <= 0) + { + va_end(args_copy); + return; + } + + // Add zero-terminator the first time + const int write_off = (Buf.Size != 0) ? Buf.Size : 1; + const int needed_sz = write_off + len; + if (write_off + len >= Buf.Capacity) + { + int new_capacity = Buf.Capacity * 2; + Buf.reserve(needed_sz > new_capacity ? needed_sz : new_capacity); + } + + Buf.resize(needed_sz); + ImFormatStringV(&Buf[write_off - 1], (size_t)len + 1, fmt, args_copy); + va_end(args_copy); +} + +void ImGuiTextIndex::append(const char* base, int old_size, int new_size) +{ + IM_ASSERT(old_size >= 0 && new_size >= old_size && new_size >= EndOffset); + if (old_size == new_size) + return; + if (EndOffset == 0 || base[EndOffset - 1] == '\n') + LineOffsets.push_back(EndOffset); + const char* base_end = base + new_size; + for (const char* p = base + old_size; (p = (const char*)memchr(p, '\n', base_end - p)) != 0; ) + if (++p < base_end) // Don't push a trailing offset on last \n + LineOffsets.push_back((int)(intptr_t)(p - base)); + EndOffset = ImMax(EndOffset, new_size); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiListClipper +//----------------------------------------------------------------------------- + +// FIXME-TABLE: This prevents us from using ImGuiListClipper _inside_ a table cell. +// The problem we have is that without a Begin/End scheme for rows using the clipper is ambiguous. +static bool GetSkipItemForListClipping() +{ + ImGuiContext& g = *GImGui; + return (g.CurrentTable ? g.CurrentTable->HostSkipItems : g.CurrentWindow->SkipItems); +} + +static void ImGuiListClipper_SortAndFuseRanges(ImVector& ranges, int offset = 0) +{ + if (ranges.Size - offset <= 1) + return; + + // Helper to order ranges and fuse them together if possible (bubble sort is fine as we are only sorting 2-3 entries) + for (int sort_end = ranges.Size - offset - 1; sort_end > 0; --sort_end) + for (int i = offset; i < sort_end + offset; ++i) + if (ranges[i].Min > ranges[i + 1].Min) + ImSwap(ranges[i], ranges[i + 1]); + + // Now fuse ranges together as much as possible. + for (int i = 1 + offset; i < ranges.Size; i++) + { + IM_ASSERT(!ranges[i].PosToIndexConvert && !ranges[i - 1].PosToIndexConvert); + if (ranges[i - 1].Max < ranges[i].Min) + continue; + ranges[i - 1].Min = ImMin(ranges[i - 1].Min, ranges[i].Min); + ranges[i - 1].Max = ImMax(ranges[i - 1].Max, ranges[i].Max); + ranges.erase(ranges.Data + i); + i--; + } +} + +static void ImGuiListClipper_SeekCursorAndSetupPrevLine(float pos_y, float line_height) +{ + // Set cursor position and a few other things so that SetScrollHereY() and Columns() can work when seeking cursor. + // FIXME: It is problematic that we have to do that here, because custom/equivalent end-user code would stumble on the same issue. + // The clipper should probably have a final step to display the last item in a regular manner, maybe with an opt-out flag for data sets which may have costly seek? + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float off_y = pos_y - window->DC.CursorPos.y; + window->DC.CursorPos.y = pos_y; + window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, pos_y - g.Style.ItemSpacing.y); + window->DC.CursorPosPrevLine.y = window->DC.CursorPos.y - line_height; // Setting those fields so that SetScrollHereY() can properly function after the end of our clipper usage. + window->DC.PrevLineSize.y = (line_height - g.Style.ItemSpacing.y); // If we end up needing more accurate data (to e.g. use SameLine) we may as well make the clipper have a fourth step to let user process and display the last item in their list. + if (ImGuiOldColumns* columns = window->DC.CurrentColumns) + columns->LineMinY = window->DC.CursorPos.y; // Setting this so that cell Y position are set properly + if (ImGuiTable* table = g.CurrentTable) + { + if (table->IsInsideRow) + ImGui::TableEndRow(table); + table->RowPosY2 = window->DC.CursorPos.y; + const int row_increase = (int)((off_y / line_height) + 0.5f); + //table->CurrentRow += row_increase; // Can't do without fixing TableEndRow() + table->RowBgColorCounter += row_increase; + } +} + +ImGuiListClipper::ImGuiListClipper() +{ + memset(this, 0, sizeof(*this)); +} + +ImGuiListClipper::~ImGuiListClipper() +{ + End(); +} + +void ImGuiListClipper::Begin(int items_count, float items_height) +{ + if (Ctx == NULL) + Ctx = ImGui::GetCurrentContext(); + + ImGuiContext& g = *Ctx; + ImGuiWindow* window = g.CurrentWindow; + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Begin(%d,%.2f) in '%s'\n", items_count, items_height, window->Name); + + if (ImGuiTable* table = g.CurrentTable) + if (table->IsInsideRow) + ImGui::TableEndRow(table); + + StartPosY = window->DC.CursorPos.y; + ItemsHeight = items_height; + ItemsCount = items_count; + DisplayStart = -1; + DisplayEnd = 0; + + // Acquire temporary buffer + if (++g.ClipperTempDataStacked > g.ClipperTempData.Size) + g.ClipperTempData.resize(g.ClipperTempDataStacked, ImGuiListClipperData()); + ImGuiListClipperData* data = &g.ClipperTempData[g.ClipperTempDataStacked - 1]; + data->Reset(this); + data->LossynessOffset = window->DC.CursorStartPosLossyness.y; + TempData = data; + StartSeekOffsetY = data->LossynessOffset; +} + +void ImGuiListClipper::End() +{ + if (ImGuiListClipperData* data = (ImGuiListClipperData*)TempData) + { + // In theory here we should assert that we are already at the right position, but it seems saner to just seek at the end and not assert/crash the user. + ImGuiContext& g = *Ctx; + IMGUI_DEBUG_LOG_CLIPPER("Clipper: End() in '%s'\n", g.CurrentWindow->Name); + if (ItemsCount >= 0 && ItemsCount < INT_MAX && DisplayStart >= 0) + SeekCursorForItem(ItemsCount); + + // Restore temporary buffer and fix back pointers which may be invalidated when nesting + IM_ASSERT(data->ListClipper == this); + data->StepNo = data->Ranges.Size; + if (--g.ClipperTempDataStacked > 0) + { + data = &g.ClipperTempData[g.ClipperTempDataStacked - 1]; + data->ListClipper->TempData = data; + } + TempData = NULL; + } + ItemsCount = -1; +} + +void ImGuiListClipper::IncludeItemsByIndex(int item_begin, int item_end) +{ + ImGuiListClipperData* data = (ImGuiListClipperData*)TempData; + IM_ASSERT(DisplayStart < 0); // Only allowed after Begin() and if there has not been a specified range yet. + IM_ASSERT(item_begin <= item_end); + if (item_begin < item_end) + data->Ranges.push_back(ImGuiListClipperRange::FromIndices(item_begin, item_end)); +} + +// This is already called while stepping. +// The ONLY reason you may want to call this is if you passed INT_MAX to ImGuiListClipper::Begin() because you couldn't step item count beforehand. +void ImGuiListClipper::SeekCursorForItem(int item_n) +{ + // - Perform the add and multiply with double to allow seeking through larger ranges. + // - StartPosY starts from ItemsFrozen, by adding SeekOffsetY we generally cancel that out (SeekOffsetY == LossynessOffset - ItemsFrozen * ItemsHeight). + // - The reason we store SeekOffsetY instead of inferring it, is because we want to allow user to perform Seek after the last step, where ImGuiListClipperData is already done. + float pos_y = (float)((double)StartPosY + StartSeekOffsetY + (double)item_n * ItemsHeight); + ImGuiListClipper_SeekCursorAndSetupPrevLine(pos_y, ItemsHeight); +} + +static bool ImGuiListClipper_StepInternal(ImGuiListClipper* clipper) +{ + ImGuiContext& g = *clipper->Ctx; + ImGuiWindow* window = g.CurrentWindow; + ImGuiListClipperData* data = (ImGuiListClipperData*)clipper->TempData; + IM_ASSERT(data != NULL && "Called ImGuiListClipper::Step() too many times, or before ImGuiListClipper::Begin() ?"); + + ImGuiTable* table = g.CurrentTable; + if (table && table->IsInsideRow) + ImGui::TableEndRow(table); + + // No items + if (clipper->ItemsCount == 0 || GetSkipItemForListClipping()) + return false; + + // While we are in frozen row state, keep displaying items one by one, unclipped + // FIXME: Could be stored as a table-agnostic state. + if (data->StepNo == 0 && table != NULL && !table->IsUnfrozenRows) + { + clipper->DisplayStart = data->ItemsFrozen; + clipper->DisplayEnd = ImMin(data->ItemsFrozen + 1, clipper->ItemsCount); + if (clipper->DisplayStart < clipper->DisplayEnd) + data->ItemsFrozen++; + return true; + } + + // Step 0: Let you process the first element (regardless of it being visible or not, so we can measure the element height) + bool calc_clipping = false; + if (data->StepNo == 0) + { + clipper->StartPosY = window->DC.CursorPos.y; + if (clipper->ItemsHeight <= 0.0f) + { + // Submit the first item (or range) so we can measure its height (generally the first range is 0..1) + data->Ranges.push_front(ImGuiListClipperRange::FromIndices(data->ItemsFrozen, data->ItemsFrozen + 1)); + clipper->DisplayStart = ImMax(data->Ranges[0].Min, data->ItemsFrozen); + clipper->DisplayEnd = ImMin(data->Ranges[0].Max, clipper->ItemsCount); + data->StepNo = 1; + return true; + } + calc_clipping = true; // If on the first step with known item height, calculate clipping. + } + + // Step 1: Let the clipper infer height from first range + if (clipper->ItemsHeight <= 0.0f) + { + IM_ASSERT(data->StepNo == 1); + if (table) + IM_ASSERT(table->RowPosY1 == clipper->StartPosY && table->RowPosY2 == window->DC.CursorPos.y); + + clipper->ItemsHeight = (window->DC.CursorPos.y - clipper->StartPosY) / (float)(clipper->DisplayEnd - clipper->DisplayStart); + bool affected_by_floating_point_precision = ImIsFloatAboveGuaranteedIntegerPrecision(clipper->StartPosY) || ImIsFloatAboveGuaranteedIntegerPrecision(window->DC.CursorPos.y); + if (affected_by_floating_point_precision) + clipper->ItemsHeight = window->DC.PrevLineSize.y + g.Style.ItemSpacing.y; // FIXME: Technically wouldn't allow multi-line entries. + if (clipper->ItemsHeight == 0.0f && clipper->ItemsCount == INT_MAX) // Accept that no item have been submitted if in indeterminate mode. + return false; + IM_ASSERT(clipper->ItemsHeight > 0.0f && "Unable to calculate item height! First item hasn't moved the cursor vertically!"); + calc_clipping = true; // If item height had to be calculated, calculate clipping afterwards. + } + + // Step 0 or 1: Calculate the actual ranges of visible elements. + const int already_submitted = clipper->DisplayEnd; + if (calc_clipping) + { + // Record seek offset, this is so ImGuiListClipper::Seek() can be called after ImGuiListClipperData is done + clipper->StartSeekOffsetY = (double)data->LossynessOffset - data->ItemsFrozen * (double)clipper->ItemsHeight; + + if (g.LogEnabled) + { + // If logging is active, do not perform any clipping + data->Ranges.push_back(ImGuiListClipperRange::FromIndices(0, clipper->ItemsCount)); + } + else + { + // Add range selected to be included for navigation + const bool is_nav_request = (g.NavMoveScoringItems && g.NavWindow && g.NavWindow->RootWindowForNav == window->RootWindowForNav); + if (is_nav_request) + data->Ranges.push_back(ImGuiListClipperRange::FromPositions(g.NavScoringNoClipRect.Min.y, g.NavScoringNoClipRect.Max.y, 0, 0)); + if (is_nav_request && (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) && g.NavTabbingDir == -1) + data->Ranges.push_back(ImGuiListClipperRange::FromIndices(clipper->ItemsCount - 1, clipper->ItemsCount)); + + // Add focused/active item + ImRect nav_rect_abs = ImGui::WindowRectRelToAbs(window, window->NavRectRel[0]); + if (g.NavId != 0 && window->NavLastIds[0] == g.NavId) + data->Ranges.push_back(ImGuiListClipperRange::FromPositions(nav_rect_abs.Min.y, nav_rect_abs.Max.y, 0, 0)); + + // Add visible range + float min_y = window->ClipRect.Min.y; + float max_y = window->ClipRect.Max.y; + + // Add box selection range + ImGuiBoxSelectState* bs = &g.BoxSelectState; + if (bs->IsActive && bs->Window == window) + { + // FIXME: Selectable() use of half-ItemSpacing isn't consistent in matter of layout, as ItemAdd(bb) stray above ItemSize()'s CursorPos. + // RangeSelect's BoxSelect relies on comparing overlap of previous and current rectangle and is sensitive to that. + // As a workaround we currently half ItemSpacing worth on each side. + min_y -= g.Style.ItemSpacing.y; + max_y += g.Style.ItemSpacing.y; + + // Box-select on 2D area requires different clipping. + if (bs->UnclipMode) + data->Ranges.push_back(ImGuiListClipperRange::FromPositions(bs->UnclipRect.Min.y, bs->UnclipRect.Max.y, 0, 0)); + } + + const int off_min = (is_nav_request && g.NavMoveClipDir == ImGuiDir_Up) ? -1 : 0; + const int off_max = (is_nav_request && g.NavMoveClipDir == ImGuiDir_Down) ? 1 : 0; + data->Ranges.push_back(ImGuiListClipperRange::FromPositions(min_y, max_y, off_min, off_max)); + } + + // Convert position ranges to item index ranges + // - Very important: when a starting position is after our maximum item, we set Min to (ItemsCount - 1). This allows us to handle most forms of wrapping. + // - Due to how Selectable extra padding they tend to be "unaligned" with exact unit in the item list, + // which with the flooring/ceiling tend to lead to 2 items instead of one being submitted. + for (ImGuiListClipperRange& range : data->Ranges) + if (range.PosToIndexConvert) + { + int m1 = (int)(((double)range.Min - window->DC.CursorPos.y - data->LossynessOffset) / clipper->ItemsHeight); + int m2 = (int)((((double)range.Max - window->DC.CursorPos.y - data->LossynessOffset) / clipper->ItemsHeight) + 0.999999f); + range.Min = ImClamp(already_submitted + m1 + range.PosToIndexOffsetMin, already_submitted, clipper->ItemsCount - 1); + range.Max = ImClamp(already_submitted + m2 + range.PosToIndexOffsetMax, range.Min + 1, clipper->ItemsCount); + range.PosToIndexConvert = false; + } + ImGuiListClipper_SortAndFuseRanges(data->Ranges, data->StepNo); + } + + // Step 0+ (if item height is given in advance) or 1+: Display the next range in line. + while (data->StepNo < data->Ranges.Size) + { + clipper->DisplayStart = ImMax(data->Ranges[data->StepNo].Min, already_submitted); + clipper->DisplayEnd = ImMin(data->Ranges[data->StepNo].Max, clipper->ItemsCount); + if (clipper->DisplayStart > already_submitted) //-V1051 + clipper->SeekCursorForItem(clipper->DisplayStart); + data->StepNo++; + if (clipper->DisplayStart == clipper->DisplayEnd && data->StepNo < data->Ranges.Size) + continue; + return true; + } + + // After the last step: Let the clipper validate that we have reached the expected Y position (corresponding to element DisplayEnd), + // Advance the cursor to the end of the list and then returns 'false' to end the loop. + if (clipper->ItemsCount < INT_MAX) + clipper->SeekCursorForItem(clipper->ItemsCount); + + return false; +} + +bool ImGuiListClipper::Step() +{ + ImGuiContext& g = *Ctx; + bool need_items_height = (ItemsHeight <= 0.0f); + bool ret = ImGuiListClipper_StepInternal(this); + if (ret && (DisplayStart == DisplayEnd)) + ret = false; + if (g.CurrentTable && g.CurrentTable->IsUnfrozenRows == false) + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): inside frozen table row.\n"); + if (need_items_height && ItemsHeight > 0.0f) + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): computed ItemsHeight: %.2f.\n", ItemsHeight); + if (ret) + { + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): display %d to %d.\n", DisplayStart, DisplayEnd); + } + else + { + IMGUI_DEBUG_LOG_CLIPPER("Clipper: Step(): End.\n"); + End(); + } + return ret; +} + +//----------------------------------------------------------------------------- +// [SECTION] STYLING +//----------------------------------------------------------------------------- + +ImGuiStyle& ImGui::GetStyle() +{ + IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?"); + return GImGui->Style; +} + +ImU32 ImGui::GetColorU32(ImGuiCol idx, float alpha_mul) +{ + ImGuiStyle& style = GImGui->Style; + ImVec4 c = style.Colors[idx]; + c.w *= style.Alpha * alpha_mul; + return ColorConvertFloat4ToU32(c); +} + +ImU32 ImGui::GetColorU32(const ImVec4& col) +{ + ImGuiStyle& style = GImGui->Style; + ImVec4 c = col; + c.w *= style.Alpha; + return ColorConvertFloat4ToU32(c); +} + +const ImVec4& ImGui::GetStyleColorVec4(ImGuiCol idx) +{ + ImGuiStyle& style = GImGui->Style; + return style.Colors[idx]; +} + +ImU32 ImGui::GetColorU32(ImU32 col, float alpha_mul) +{ + ImGuiStyle& style = GImGui->Style; + alpha_mul *= style.Alpha; + if (alpha_mul >= 1.0f) + return col; + ImU32 a = (col & IM_COL32_A_MASK) >> IM_COL32_A_SHIFT; + a = (ImU32)(a * alpha_mul); // We don't need to clamp 0..255 because alpha is in 0..1 range. + return (col & ~IM_COL32_A_MASK) | (a << IM_COL32_A_SHIFT); +} + +// FIXME: This may incur a round-trip (if the end user got their data from a float4) but eventually we aim to store the in-flight colors as ImU32 +void ImGui::PushStyleColor(ImGuiCol idx, ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiColorMod backup; + backup.Col = idx; + backup.BackupValue = g.Style.Colors[idx]; + g.ColorStack.push_back(backup); + if (g.DebugFlashStyleColorIdx != idx) + g.Style.Colors[idx] = ColorConvertU32ToFloat4(col); +} + +void ImGui::PushStyleColor(ImGuiCol idx, const ImVec4& col) +{ + ImGuiContext& g = *GImGui; + ImGuiColorMod backup; + backup.Col = idx; + backup.BackupValue = g.Style.Colors[idx]; + g.ColorStack.push_back(backup); + if (g.DebugFlashStyleColorIdx != idx) + g.Style.Colors[idx] = col; +} + +void ImGui::PopStyleColor(int count) +{ + ImGuiContext& g = *GImGui; + if (g.ColorStack.Size < count) + { + IM_ASSERT_USER_ERROR(g.ColorStack.Size > count, "Calling PopStyleColor() too many times!"); + count = g.ColorStack.Size; + } + while (count > 0) + { + ImGuiColorMod& backup = g.ColorStack.back(); + g.Style.Colors[backup.Col] = backup.BackupValue; + g.ColorStack.pop_back(); + count--; + } +} + +static const ImGuiDataVarInfo GStyleVarInfo[] = +{ + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, Alpha) }, // ImGuiStyleVar_Alpha + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, DisabledAlpha) }, // ImGuiStyleVar_DisabledAlpha + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, WindowPadding) }, // ImGuiStyleVar_WindowPadding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, WindowRounding) }, // ImGuiStyleVar_WindowRounding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, WindowBorderSize) }, // ImGuiStyleVar_WindowBorderSize + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, WindowMinSize) }, // ImGuiStyleVar_WindowMinSize + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, WindowTitleAlign) }, // ImGuiStyleVar_WindowTitleAlign + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, ChildRounding) }, // ImGuiStyleVar_ChildRounding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, ChildBorderSize) }, // ImGuiStyleVar_ChildBorderSize + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, PopupRounding) }, // ImGuiStyleVar_PopupRounding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, PopupBorderSize) }, // ImGuiStyleVar_PopupBorderSize + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, FramePadding) }, // ImGuiStyleVar_FramePadding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, FrameRounding) }, // ImGuiStyleVar_FrameRounding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, FrameBorderSize) }, // ImGuiStyleVar_FrameBorderSize + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, ItemSpacing) }, // ImGuiStyleVar_ItemSpacing + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, ItemInnerSpacing) }, // ImGuiStyleVar_ItemInnerSpacing + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, IndentSpacing) }, // ImGuiStyleVar_IndentSpacing + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, CellPadding) }, // ImGuiStyleVar_CellPadding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, ScrollbarSize) }, // ImGuiStyleVar_ScrollbarSize + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, ScrollbarRounding) }, // ImGuiStyleVar_ScrollbarRounding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, GrabMinSize) }, // ImGuiStyleVar_GrabMinSize + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, GrabRounding) }, // ImGuiStyleVar_GrabRounding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, TabRounding) }, // ImGuiStyleVar_TabRounding + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, TabBorderSize) }, // ImGuiStyleVar_TabBorderSize + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, TabBarBorderSize) }, // ImGuiStyleVar_TabBarBorderSize + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, TabBarOverlineSize) }, // ImGuiStyleVar_TabBarOverlineSize + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, TableAngledHeadersAngle)}, // ImGuiStyleVar_TableAngledHeadersAngle + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, TableAngledHeadersTextAlign)},// ImGuiStyleVar_TableAngledHeadersTextAlign + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, ButtonTextAlign) }, // ImGuiStyleVar_ButtonTextAlign + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, SelectableTextAlign) }, // ImGuiStyleVar_SelectableTextAlign + { ImGuiDataType_Float, 1, (ImU32)offsetof(ImGuiStyle, SeparatorTextBorderSize)}, // ImGuiStyleVar_SeparatorTextBorderSize + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, SeparatorTextAlign) }, // ImGuiStyleVar_SeparatorTextAlign + { ImGuiDataType_Float, 2, (ImU32)offsetof(ImGuiStyle, SeparatorTextPadding) }, // ImGuiStyleVar_SeparatorTextPadding +}; + +const ImGuiDataVarInfo* ImGui::GetStyleVarInfo(ImGuiStyleVar idx) +{ + IM_ASSERT(idx >= 0 && idx < ImGuiStyleVar_COUNT); + IM_STATIC_ASSERT(IM_ARRAYSIZE(GStyleVarInfo) == ImGuiStyleVar_COUNT); + return &GStyleVarInfo[idx]; +} + +void ImGui::PushStyleVar(ImGuiStyleVar idx, float val) +{ + ImGuiContext& g = *GImGui; + const ImGuiDataVarInfo* var_info = GetStyleVarInfo(idx); + if (var_info->Type != ImGuiDataType_Float || var_info->Count != 1) + { + IM_ASSERT_USER_ERROR(0, "Calling PushStyleVar() variant with wrong type!"); + return; + } + float* pvar = (float*)var_info->GetVarPtr(&g.Style); + g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar)); + *pvar = val; +} + +void ImGui::PushStyleVarX(ImGuiStyleVar idx, float val_x) +{ + ImGuiContext& g = *GImGui; + const ImGuiDataVarInfo* var_info = GetStyleVarInfo(idx); + if (var_info->Type != ImGuiDataType_Float || var_info->Count != 2) + { + IM_ASSERT_USER_ERROR(0, "Calling PushStyleVar() variant with wrong type!"); + return; + } + ImVec2* pvar = (ImVec2*)var_info->GetVarPtr(&g.Style); + g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar)); + pvar->x = val_x; +} + +void ImGui::PushStyleVarY(ImGuiStyleVar idx, float val_y) +{ + ImGuiContext& g = *GImGui; + const ImGuiDataVarInfo* var_info = GetStyleVarInfo(idx); + if (var_info->Type != ImGuiDataType_Float || var_info->Count != 2) + { + IM_ASSERT_USER_ERROR(0, "Calling PushStyleVar() variant with wrong type!"); + return; + } + ImVec2* pvar = (ImVec2*)var_info->GetVarPtr(&g.Style); + g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar)); + pvar->y = val_y; +} + +void ImGui::PushStyleVar(ImGuiStyleVar idx, const ImVec2& val) +{ + ImGuiContext& g = *GImGui; + const ImGuiDataVarInfo* var_info = GetStyleVarInfo(idx); + if (var_info->Type != ImGuiDataType_Float || var_info->Count != 2) + { + IM_ASSERT_USER_ERROR(0, "Calling PushStyleVar() variant with wrong type!"); + return; + } + ImVec2* pvar = (ImVec2*)var_info->GetVarPtr(&g.Style); + g.StyleVarStack.push_back(ImGuiStyleMod(idx, *pvar)); + *pvar = val; +} + +void ImGui::PopStyleVar(int count) +{ + ImGuiContext& g = *GImGui; + if (g.StyleVarStack.Size < count) + { + IM_ASSERT_USER_ERROR(g.StyleVarStack.Size > count, "Calling PopStyleVar() too many times!"); + count = g.StyleVarStack.Size; + } + while (count > 0) + { + // We avoid a generic memcpy(data, &backup.Backup.., GDataTypeSize[info->Type] * info->Count), the overhead in Debug is not worth it. + ImGuiStyleMod& backup = g.StyleVarStack.back(); + const ImGuiDataVarInfo* info = GetStyleVarInfo(backup.VarIdx); + void* data = info->GetVarPtr(&g.Style); + if (info->Type == ImGuiDataType_Float && info->Count == 1) { ((float*)data)[0] = backup.BackupFloat[0]; } + else if (info->Type == ImGuiDataType_Float && info->Count == 2) { ((float*)data)[0] = backup.BackupFloat[0]; ((float*)data)[1] = backup.BackupFloat[1]; } + g.StyleVarStack.pop_back(); + count--; + } +} + +const char* ImGui::GetStyleColorName(ImGuiCol idx) +{ + // Create switch-case from enum with regexp: ImGuiCol_{.*}, --> case ImGuiCol_\1: return "\1"; + switch (idx) + { + case ImGuiCol_Text: return "Text"; + case ImGuiCol_TextDisabled: return "TextDisabled"; + case ImGuiCol_WindowBg: return "WindowBg"; + case ImGuiCol_ChildBg: return "ChildBg"; + case ImGuiCol_PopupBg: return "PopupBg"; + case ImGuiCol_Border: return "Border"; + case ImGuiCol_BorderShadow: return "BorderShadow"; + case ImGuiCol_FrameBg: return "FrameBg"; + case ImGuiCol_FrameBgHovered: return "FrameBgHovered"; + case ImGuiCol_FrameBgActive: return "FrameBgActive"; + case ImGuiCol_TitleBg: return "TitleBg"; + case ImGuiCol_TitleBgActive: return "TitleBgActive"; + case ImGuiCol_TitleBgCollapsed: return "TitleBgCollapsed"; + case ImGuiCol_MenuBarBg: return "MenuBarBg"; + case ImGuiCol_ScrollbarBg: return "ScrollbarBg"; + case ImGuiCol_ScrollbarGrab: return "ScrollbarGrab"; + case ImGuiCol_ScrollbarGrabHovered: return "ScrollbarGrabHovered"; + case ImGuiCol_ScrollbarGrabActive: return "ScrollbarGrabActive"; + case ImGuiCol_CheckMark: return "CheckMark"; + case ImGuiCol_SliderGrab: return "SliderGrab"; + case ImGuiCol_SliderGrabActive: return "SliderGrabActive"; + case ImGuiCol_Button: return "Button"; + case ImGuiCol_ButtonHovered: return "ButtonHovered"; + case ImGuiCol_ButtonActive: return "ButtonActive"; + case ImGuiCol_Header: return "Header"; + case ImGuiCol_HeaderHovered: return "HeaderHovered"; + case ImGuiCol_HeaderActive: return "HeaderActive"; + case ImGuiCol_Separator: return "Separator"; + case ImGuiCol_SeparatorHovered: return "SeparatorHovered"; + case ImGuiCol_SeparatorActive: return "SeparatorActive"; + case ImGuiCol_ResizeGrip: return "ResizeGrip"; + case ImGuiCol_ResizeGripHovered: return "ResizeGripHovered"; + case ImGuiCol_ResizeGripActive: return "ResizeGripActive"; + case ImGuiCol_TabHovered: return "TabHovered"; + case ImGuiCol_Tab: return "Tab"; + case ImGuiCol_TabSelected: return "TabSelected"; + case ImGuiCol_TabSelectedOverline: return "TabSelectedOverline"; + case ImGuiCol_TabDimmed: return "TabDimmed"; + case ImGuiCol_TabDimmedSelected: return "TabDimmedSelected"; + case ImGuiCol_TabDimmedSelectedOverline: return "TabDimmedSelectedOverline"; + case ImGuiCol_PlotLines: return "PlotLines"; + case ImGuiCol_PlotLinesHovered: return "PlotLinesHovered"; + case ImGuiCol_PlotHistogram: return "PlotHistogram"; + case ImGuiCol_PlotHistogramHovered: return "PlotHistogramHovered"; + case ImGuiCol_TableHeaderBg: return "TableHeaderBg"; + case ImGuiCol_TableBorderStrong: return "TableBorderStrong"; + case ImGuiCol_TableBorderLight: return "TableBorderLight"; + case ImGuiCol_TableRowBg: return "TableRowBg"; + case ImGuiCol_TableRowBgAlt: return "TableRowBgAlt"; + case ImGuiCol_TextLink: return "TextLink"; + case ImGuiCol_TextSelectedBg: return "TextSelectedBg"; + case ImGuiCol_DragDropTarget: return "DragDropTarget"; + case ImGuiCol_NavHighlight: return "NavHighlight"; + case ImGuiCol_NavWindowingHighlight: return "NavWindowingHighlight"; + case ImGuiCol_NavWindowingDimBg: return "NavWindowingDimBg"; + case ImGuiCol_ModalWindowDimBg: return "ModalWindowDimBg"; + case ImGuiCol_WindowShadow: return "WindowShadow"; + } + IM_ASSERT(0); + return "Unknown"; +} + + +//----------------------------------------------------------------------------- +// [SECTION] RENDER HELPERS +// Some of those (internal) functions are currently quite a legacy mess - their signature and behavior will change, +// we need a nicer separation between low-level functions and high-level functions relying on the ImGui context. +// Also see imgui_draw.cpp for some more which have been reworked to not rely on ImGui:: context. +//----------------------------------------------------------------------------- + +const char* ImGui::FindRenderedTextEnd(const char* text, const char* text_end) +{ + const char* text_display_end = text; + if (!text_end) + text_end = (const char*)-1; + + while (text_display_end < text_end && *text_display_end != '\0' && (text_display_end[0] != '#' || text_display_end[1] != '#')) + text_display_end++; + return text_display_end; +} + +// Internal ImGui functions to render text +// RenderText***() functions calls ImDrawList::AddText() calls ImBitmapFont::RenderText() +void ImGui::RenderText(ImVec2 pos, const char* text, const char* text_end, bool hide_text_after_hash) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Hide anything after a '##' string + const char* text_display_end; + if (hide_text_after_hash) + { + text_display_end = FindRenderedTextEnd(text, text_end); + } + else + { + if (!text_end) + text_end = text + strlen(text); // FIXME-OPT + text_display_end = text_end; + } + + if (text != text_display_end) + { + window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_display_end); + if (g.LogEnabled) + LogRenderedText(&pos, text, text_display_end); + } +} + +void ImGui::RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + if (!text_end) + text_end = text + strlen(text); // FIXME-OPT + + if (text != text_end) + { + window->DrawList->AddText(g.Font, g.FontSize, pos, GetColorU32(ImGuiCol_Text), text, text_end, wrap_width); + if (g.LogEnabled) + LogRenderedText(&pos, text, text_end); + } +} + +// Default clip_rect uses (pos_min,pos_max) +// Handle clipping on CPU immediately (vs typically let the GPU clip the triangles that are overlapping the clipping rectangle edges) +// FIXME-OPT: Since we have or calculate text_size we could coarse clip whole block immediately, especally for text above draw_list->DrawList. +// Effectively as this is called from widget doing their own coarse clipping it's not very valuable presently. Next time function will take +// better advantage of the render function taking size into account for coarse clipping. +void ImGui::RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_display_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) +{ + // Perform CPU side clipping for single clipped element to avoid using scissor state + ImVec2 pos = pos_min; + const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_display_end, false, 0.0f); + + const ImVec2* clip_min = clip_rect ? &clip_rect->Min : &pos_min; + const ImVec2* clip_max = clip_rect ? &clip_rect->Max : &pos_max; + bool need_clipping = (pos.x + text_size.x >= clip_max->x) || (pos.y + text_size.y >= clip_max->y); + if (clip_rect) // If we had no explicit clipping rectangle then pos==clip_min + need_clipping |= (pos.x < clip_min->x) || (pos.y < clip_min->y); + + // Align whole block. We should defer that to the better rendering function when we'll have support for individual line alignment. + if (align.x > 0.0f) pos.x = ImMax(pos.x, pos.x + (pos_max.x - pos.x - text_size.x) * align.x); + if (align.y > 0.0f) pos.y = ImMax(pos.y, pos.y + (pos_max.y - pos.y - text_size.y) * align.y); + + // Render + if (need_clipping) + { + ImVec4 fine_clip_rect(clip_min->x, clip_min->y, clip_max->x, clip_max->y); + draw_list->AddText(NULL, 0.0f, pos, GetColorU32(ImGuiCol_Text), text, text_display_end, 0.0f, &fine_clip_rect); + } + else + { + draw_list->AddText(NULL, 0.0f, pos, GetColorU32(ImGuiCol_Text), text, text_display_end, 0.0f, NULL); + } +} + +void ImGui::RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align, const ImRect* clip_rect) +{ + // Hide anything after a '##' string + const char* text_display_end = FindRenderedTextEnd(text, text_end); + const int text_len = (int)(text_display_end - text); + if (text_len == 0) + return; + + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + RenderTextClippedEx(window->DrawList, pos_min, pos_max, text, text_display_end, text_size_if_known, align, clip_rect); + if (g.LogEnabled) + LogRenderedText(&pos_min, text, text_display_end); +} + +// Another overly complex function until we reorganize everything into a nice all-in-one helper. +// This is made more complex because we have dissociated the layout rectangle (pos_min..pos_max) which define _where_ the ellipsis is, from actual clipping of text and limit of the ellipsis display. +// This is because in the context of tabs we selectively hide part of the text when the Close Button appears, but we don't want the ellipsis to move. +void ImGui::RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end_full, const ImVec2* text_size_if_known) +{ + ImGuiContext& g = *GImGui; + if (text_end_full == NULL) + text_end_full = FindRenderedTextEnd(text); + const ImVec2 text_size = text_size_if_known ? *text_size_if_known : CalcTextSize(text, text_end_full, false, 0.0f); + + //draw_list->AddLine(ImVec2(pos_max.x, pos_min.y - 4), ImVec2(pos_max.x, pos_max.y + 4), IM_COL32(0, 0, 255, 255)); + //draw_list->AddLine(ImVec2(ellipsis_max_x, pos_min.y-2), ImVec2(ellipsis_max_x, pos_max.y+2), IM_COL32(0, 255, 0, 255)); + //draw_list->AddLine(ImVec2(clip_max_x, pos_min.y), ImVec2(clip_max_x, pos_max.y), IM_COL32(255, 0, 0, 255)); + // FIXME: We could technically remove (last_glyph->AdvanceX - last_glyph->X1) from text_size.x here and save a few pixels. + if (text_size.x > pos_max.x - pos_min.x) + { + // Hello wo... + // | | | + // min max ellipsis_max + // <-> this is generally some padding value + + const ImFont* font = draw_list->_Data->Font; + const float font_size = draw_list->_Data->FontSize; + const float font_scale = draw_list->_Data->FontScale; + const char* text_end_ellipsis = NULL; + const float ellipsis_width = font->EllipsisWidth * font_scale; + + // We can now claim the space between pos_max.x and ellipsis_max.x + const float text_avail_width = ImMax((ImMax(pos_max.x, ellipsis_max_x) - ellipsis_width) - pos_min.x, 1.0f); + float text_size_clipped_x = font->CalcTextSizeA(font_size, text_avail_width, 0.0f, text, text_end_full, &text_end_ellipsis).x; + if (text == text_end_ellipsis && text_end_ellipsis < text_end_full) + { + // Always display at least 1 character if there's no room for character + ellipsis + text_end_ellipsis = text + ImTextCountUtf8BytesFromChar(text, text_end_full); + text_size_clipped_x = font->CalcTextSizeA(font_size, FLT_MAX, 0.0f, text, text_end_ellipsis).x; + } + while (text_end_ellipsis > text && ImCharIsBlankA(text_end_ellipsis[-1])) + { + // Trim trailing space before ellipsis (FIXME: Supporting non-ascii blanks would be nice, for this we need a function to backtrack in UTF-8 text) + text_end_ellipsis--; + text_size_clipped_x -= font->CalcTextSizeA(font_size, FLT_MAX, 0.0f, text_end_ellipsis, text_end_ellipsis + 1).x; // Ascii blanks are always 1 byte + } + + // Render text, render ellipsis + RenderTextClippedEx(draw_list, pos_min, ImVec2(clip_max_x, pos_max.y), text, text_end_ellipsis, &text_size, ImVec2(0.0f, 0.0f)); + ImVec2 ellipsis_pos = ImTrunc(ImVec2(pos_min.x + text_size_clipped_x, pos_min.y)); + if (ellipsis_pos.x + ellipsis_width <= ellipsis_max_x) + for (int i = 0; i < font->EllipsisCharCount; i++, ellipsis_pos.x += font->EllipsisCharStep * font_scale) + font->RenderChar(draw_list, font_size, ellipsis_pos, GetColorU32(ImGuiCol_Text), font->EllipsisChar); + } + else + { + RenderTextClippedEx(draw_list, pos_min, ImVec2(clip_max_x, pos_max.y), text, text_end_full, &text_size, ImVec2(0.0f, 0.0f)); + } + + if (g.LogEnabled) + LogRenderedText(&pos_min, text, text_end_full); +} + +// Render a rectangle shaped with optional rounding and borders +void ImGui::RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool borders, float rounding) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + window->DrawList->AddRectFilled(p_min, p_max, fill_col, rounding); + const float border_size = g.Style.FrameBorderSize; + if (borders && border_size > 0.0f) + { + window->DrawList->AddRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImGuiCol_BorderShadow), rounding, 0, border_size); + window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, 0, border_size); + } +} + +void ImGui::RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const float border_size = g.Style.FrameBorderSize; + if (border_size > 0.0f) + { + window->DrawList->AddRect(p_min + ImVec2(1, 1), p_max + ImVec2(1, 1), GetColorU32(ImGuiCol_BorderShadow), rounding, 0, border_size); + window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, 0, border_size); + } +} + +void ImGui::RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags) +{ + ImGuiContext& g = *GImGui; + if (id != g.NavId) + return; + if (g.NavDisableHighlight && !(flags & ImGuiNavHighlightFlags_AlwaysDraw)) + return; + ImGuiWindow* window = g.CurrentWindow; + if (window->DC.NavHideHighlightOneFrame) + return; + + float rounding = (flags & ImGuiNavHighlightFlags_NoRounding) ? 0.0f : g.Style.FrameRounding; + ImRect display_rect = bb; + display_rect.ClipWith(window->ClipRect); + const float thickness = 2.0f; + if (flags & ImGuiNavHighlightFlags_Compact) + { + window->DrawList->AddRect(display_rect.Min, display_rect.Max, GetColorU32(ImGuiCol_NavHighlight), rounding, 0, thickness); + } + else + { + const float distance = 3.0f + thickness * 0.5f; + display_rect.Expand(ImVec2(distance, distance)); + bool fully_visible = window->ClipRect.Contains(display_rect); + if (!fully_visible) + window->DrawList->PushClipRect(display_rect.Min, display_rect.Max); + window->DrawList->AddRect(display_rect.Min, display_rect.Max, GetColorU32(ImGuiCol_NavHighlight), rounding, 0, thickness); + if (!fully_visible) + window->DrawList->PopClipRect(); + } +} + +void ImGui::RenderMouseCursor(ImVec2 base_pos, float base_scale, ImGuiMouseCursor mouse_cursor, ImU32 col_fill, ImU32 col_border, ImU32 col_shadow) +{ + ImGuiContext& g = *GImGui; + if (mouse_cursor <= ImGuiMouseCursor_None || mouse_cursor >= ImGuiMouseCursor_COUNT) // We intentionally accept out of bound values. + mouse_cursor = ImGuiMouseCursor_Arrow; + ImFontAtlas* font_atlas = g.DrawListSharedData.Font->ContainerAtlas; + for (ImGuiViewportP* viewport : g.Viewports) + { + // We scale cursor with current viewport/monitor, however Windows 10 for its own hardware cursor seems to be using a different scale factor. + ImVec2 offset, size, uv[4]; + if (!font_atlas->GetMouseCursorTexData(mouse_cursor, &offset, &size, &uv[0], &uv[2])) + continue; + const ImVec2 pos = base_pos - offset; + const float scale = base_scale; + if (!viewport->GetMainRect().Overlaps(ImRect(pos, pos + ImVec2(size.x + 2, size.y + 2) * scale))) + continue; + ImDrawList* draw_list = GetForegroundDrawList(viewport); + ImTextureID tex_id = font_atlas->TexID; + draw_list->PushTextureID(tex_id); + draw_list->AddImage(tex_id, pos + ImVec2(1, 0) * scale, pos + (ImVec2(1, 0) + size) * scale, uv[2], uv[3], col_shadow); + draw_list->AddImage(tex_id, pos + ImVec2(2, 0) * scale, pos + (ImVec2(2, 0) + size) * scale, uv[2], uv[3], col_shadow); + draw_list->AddImage(tex_id, pos, pos + size * scale, uv[2], uv[3], col_border); + draw_list->AddImage(tex_id, pos, pos + size * scale, uv[0], uv[1], col_fill); + draw_list->PopTextureID(); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] INITIALIZATION, SHUTDOWN +//----------------------------------------------------------------------------- + +// Internal state access - if you want to share Dear ImGui state between modules (e.g. DLL) or allocate it yourself +// Note that we still point to some static data and members (such as GFontAtlas), so the state instance you end up using will point to the static data within its module +ImGuiContext* ImGui::GetCurrentContext() +{ + return GImGui; +} + +void ImGui::SetCurrentContext(ImGuiContext* ctx) +{ +#ifdef IMGUI_SET_CURRENT_CONTEXT_FUNC + IMGUI_SET_CURRENT_CONTEXT_FUNC(ctx); // For custom thread-based hackery you may want to have control over this. +#else + GImGui = ctx; +#endif +} + +void ImGui::SetAllocatorFunctions(ImGuiMemAllocFunc alloc_func, ImGuiMemFreeFunc free_func, void* user_data) +{ + GImAllocatorAllocFunc = alloc_func; + GImAllocatorFreeFunc = free_func; + GImAllocatorUserData = user_data; +} + +// This is provided to facilitate copying allocators from one static/DLL boundary to another (e.g. retrieve default allocator of your executable address space) +void ImGui::GetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func, ImGuiMemFreeFunc* p_free_func, void** p_user_data) +{ + *p_alloc_func = GImAllocatorAllocFunc; + *p_free_func = GImAllocatorFreeFunc; + *p_user_data = GImAllocatorUserData; +} + +ImGuiContext* ImGui::CreateContext(ImFontAtlas* shared_font_atlas) +{ + ImGuiContext* prev_ctx = GetCurrentContext(); + ImGuiContext* ctx = IM_NEW(ImGuiContext)(shared_font_atlas); + SetCurrentContext(ctx); + Initialize(); + if (prev_ctx != NULL) + SetCurrentContext(prev_ctx); // Restore previous context if any, else keep new one. + return ctx; +} + +void ImGui::DestroyContext(ImGuiContext* ctx) +{ + ImGuiContext* prev_ctx = GetCurrentContext(); + if (ctx == NULL) //-V1051 + ctx = prev_ctx; + SetCurrentContext(ctx); + Shutdown(); + SetCurrentContext((prev_ctx != ctx) ? prev_ctx : NULL); + IM_DELETE(ctx); +} + +// IMPORTANT: interactive elements requires a fixed ###xxx suffix, it must be same in ALL languages to allow for automation. +static const ImGuiLocEntry GLocalizationEntriesEnUS[] = +{ + { ImGuiLocKey_VersionStr, "Dear ImGui " IMGUI_VERSION " (" IM_STRINGIFY(IMGUI_VERSION_NUM) ")" }, + { ImGuiLocKey_TableSizeOne, "Size column to fit###SizeOne" }, + { ImGuiLocKey_TableSizeAllFit, "Size all columns to fit###SizeAll" }, + { ImGuiLocKey_TableSizeAllDefault, "Size all columns to default###SizeAll" }, + { ImGuiLocKey_TableResetOrder, "Reset order###ResetOrder" }, + { ImGuiLocKey_WindowingMainMenuBar, "(Main menu bar)" }, + { ImGuiLocKey_WindowingPopup, "(Popup)" }, + { ImGuiLocKey_WindowingUntitled, "(Untitled)" }, + { ImGuiLocKey_OpenLink_s, "Open '%s'" }, + { ImGuiLocKey_CopyLink, "Copy Link###CopyLink" }, +}; + +ImGuiContext::ImGuiContext(ImFontAtlas* shared_font_atlas) +{ + IO.Ctx = this; + InputTextState.Ctx = this; + + Initialized = false; + FontAtlasOwnedByContext = shared_font_atlas ? false : true; + Font = NULL; + FontSize = FontBaseSize = FontScale = CurrentDpiScale = 0.0f; + IO.Fonts = shared_font_atlas ? shared_font_atlas : IM_NEW(ImFontAtlas)(); + Time = 0.0f; + FrameCount = 0; + FrameCountEnded = FrameCountRendered = -1; + WithinFrameScope = WithinFrameScopeWithImplicitWindow = WithinEndChild = false; + GcCompactAll = false; + TestEngineHookItems = false; + TestEngine = NULL; + memset(ContextName, 0, sizeof(ContextName)); + + InputEventsNextMouseSource = ImGuiMouseSource_Mouse; + InputEventsNextEventId = 1; + + WindowsActiveCount = 0; + CurrentWindow = NULL; + HoveredWindow = NULL; + HoveredWindowUnderMovingWindow = NULL; + HoveredWindowBeforeClear = NULL; + MovingWindow = NULL; + WheelingWindow = NULL; + WheelingWindowStartFrame = WheelingWindowScrolledFrame = -1; + WheelingWindowReleaseTimer = 0.0f; + + DebugDrawIdConflicts = 0; + DebugHookIdInfo = 0; + HoveredId = HoveredIdPreviousFrame = 0; + HoveredIdPreviousFrameItemCount = 0; + HoveredIdAllowOverlap = false; + HoveredIdIsDisabled = false; + HoveredIdTimer = HoveredIdNotActiveTimer = 0.0f; + ItemUnclipByLog = false; + ActiveId = 0; + ActiveIdIsAlive = 0; + ActiveIdTimer = 0.0f; + ActiveIdIsJustActivated = false; + ActiveIdAllowOverlap = false; + ActiveIdNoClearOnFocusLoss = false; + ActiveIdHasBeenPressedBefore = false; + ActiveIdHasBeenEditedBefore = false; + ActiveIdHasBeenEditedThisFrame = false; + ActiveIdFromShortcut = false; + ActiveIdClickOffset = ImVec2(-1, -1); + ActiveIdWindow = NULL; + ActiveIdSource = ImGuiInputSource_None; + ActiveIdMouseButton = -1; + ActiveIdPreviousFrame = 0; + ActiveIdPreviousFrameIsAlive = false; + ActiveIdPreviousFrameHasBeenEditedBefore = false; + ActiveIdPreviousFrameWindow = NULL; + LastActiveId = 0; + LastActiveIdTimer = 0.0f; + + LastKeyboardKeyPressTime = LastKeyModsChangeTime = LastKeyModsChangeFromNoneTime = -1.0; + + ActiveIdUsingNavDirMask = 0x00; + ActiveIdUsingAllKeyboardKeys = false; + + CurrentFocusScopeId = 0; + CurrentItemFlags = ImGuiItemFlags_None; + DebugShowGroupRects = false; + + NavWindow = NULL; + NavId = NavFocusScopeId = NavActivateId = NavActivateDownId = NavActivatePressedId = 0; + NavLayer = ImGuiNavLayer_Main; + NavNextActivateId = 0; + NavActivateFlags = NavNextActivateFlags = ImGuiActivateFlags_None; + NavHighlightActivatedId = 0; + NavHighlightActivatedTimer = 0.0f; + NavInputSource = ImGuiInputSource_Keyboard; + NavLastValidSelectionUserData = ImGuiSelectionUserData_Invalid; + NavIdIsAlive = false; + NavMousePosDirty = false; + NavDisableHighlight = true; + NavDisableMouseHover = false; + + NavAnyRequest = false; + NavInitRequest = false; + NavInitRequestFromMove = false; + NavMoveSubmitted = false; + NavMoveScoringItems = false; + NavMoveForwardToNextFrame = false; + NavMoveFlags = ImGuiNavMoveFlags_None; + NavMoveScrollFlags = ImGuiScrollFlags_None; + NavMoveKeyMods = ImGuiMod_None; + NavMoveDir = NavMoveDirForDebug = NavMoveClipDir = ImGuiDir_None; + NavScoringDebugCount = 0; + NavTabbingDir = 0; + NavTabbingCounter = 0; + + NavJustMovedFromFocusScopeId = NavJustMovedToId = NavJustMovedToFocusScopeId = 0; + NavJustMovedToKeyMods = ImGuiMod_None; + NavJustMovedToIsTabbing = false; + NavJustMovedToHasSelectionData = false; + + // All platforms use Ctrl+Tab but Ctrl<>Super are swapped on Mac... + // FIXME: Because this value is stored, it annoyingly interfere with toggling io.ConfigMacOSXBehaviors updating this.. + ConfigNavWindowingKeyNext = IO.ConfigMacOSXBehaviors ? (ImGuiMod_Super | ImGuiKey_Tab) : (ImGuiMod_Ctrl | ImGuiKey_Tab); + ConfigNavWindowingKeyPrev = IO.ConfigMacOSXBehaviors ? (ImGuiMod_Super | ImGuiMod_Shift | ImGuiKey_Tab) : (ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab); + NavWindowingTarget = NavWindowingTargetAnim = NavWindowingListWindow = NULL; + NavWindowingTimer = NavWindowingHighlightAlpha = 0.0f; + NavWindowingToggleLayer = false; + NavWindowingToggleKey = ImGuiKey_None; + + DimBgRatio = 0.0f; + + DragDropActive = DragDropWithinSource = DragDropWithinTarget = false; + DragDropSourceFlags = ImGuiDragDropFlags_None; + DragDropSourceFrameCount = -1; + DragDropMouseButton = -1; + DragDropTargetId = 0; + DragDropAcceptFlags = ImGuiDragDropFlags_None; + DragDropAcceptIdCurrRectSurface = 0.0f; + DragDropAcceptIdPrev = DragDropAcceptIdCurr = 0; + DragDropAcceptFrameCount = -1; + DragDropHoldJustPressedId = 0; + memset(DragDropPayloadBufLocal, 0, sizeof(DragDropPayloadBufLocal)); + + ClipperTempDataStacked = 0; + + CurrentTable = NULL; + TablesTempDataStacked = 0; + CurrentTabBar = NULL; + CurrentMultiSelect = NULL; + MultiSelectTempDataStacked = 0; + + HoverItemDelayId = HoverItemDelayIdPreviousFrame = HoverItemUnlockedStationaryId = HoverWindowUnlockedStationaryId = 0; + HoverItemDelayTimer = HoverItemDelayClearTimer = 0.0f; + + MouseCursor = ImGuiMouseCursor_Arrow; + MouseStationaryTimer = 0.0f; + + TempInputId = 0; + memset(&DataTypeZeroValue, 0, sizeof(DataTypeZeroValue)); + BeginMenuDepth = BeginComboDepth = 0; + ColorEditOptions = ImGuiColorEditFlags_DefaultOptions_; + ColorEditCurrentID = ColorEditSavedID = 0; + ColorEditSavedHue = ColorEditSavedSat = 0.0f; + ColorEditSavedColor = 0; + WindowResizeRelativeMode = false; + ScrollbarSeekMode = 0; + ScrollbarClickDeltaToGrabCenter = 0.0f; + SliderGrabClickOffset = 0.0f; + SliderCurrentAccum = 0.0f; + SliderCurrentAccumDirty = false; + DragCurrentAccumDirty = false; + DragCurrentAccum = 0.0f; + DragSpeedDefaultRatio = 1.0f / 100.0f; + DisabledAlphaBackup = 0.0f; + DisabledStackSize = 0; + LockMarkEdited = 0; + TooltipOverrideCount = 0; + + PlatformImeData.InputPos = ImVec2(0.0f, 0.0f); + PlatformImeDataPrev.InputPos = ImVec2(-1.0f, -1.0f); // Different to ensure initial submission + + SettingsLoaded = false; + SettingsDirtyTimer = 0.0f; + HookIdNext = 0; + + memset(LocalizationTable, 0, sizeof(LocalizationTable)); + + LogEnabled = false; + LogType = ImGuiLogType_None; + LogNextPrefix = LogNextSuffix = NULL; + LogFile = NULL; + LogLinePosY = FLT_MAX; + LogLineFirstItem = false; + LogDepthRef = 0; + LogDepthToExpand = LogDepthToExpandDefault = 2; + + DebugLogFlags = ImGuiDebugLogFlags_OutputToTTY; + DebugLocateId = 0; + DebugLogAutoDisableFlags = ImGuiDebugLogFlags_None; + DebugLogAutoDisableFrames = 0; + DebugLocateFrames = 0; + DebugBeginReturnValueCullDepth = -1; + DebugItemPickerActive = false; + DebugItemPickerMouseButton = ImGuiMouseButton_Left; + DebugItemPickerBreakId = 0; + DebugFlashStyleColorTime = 0.0f; + DebugFlashStyleColorIdx = ImGuiCol_COUNT; + + // Same as DebugBreakClearData(). Those fields are scattered in their respective subsystem to stay in hot-data locations + DebugBreakInWindow = 0; + DebugBreakInTable = 0; + DebugBreakInLocateId = false; + DebugBreakKeyChord = ImGuiKey_Pause; + DebugBreakInShortcutRouting = ImGuiKey_None; + + memset(FramerateSecPerFrame, 0, sizeof(FramerateSecPerFrame)); + FramerateSecPerFrameIdx = FramerateSecPerFrameCount = 0; + FramerateSecPerFrameAccum = 0.0f; + WantCaptureMouseNextFrame = WantCaptureKeyboardNextFrame = WantTextInputNextFrame = -1; + memset(TempKeychordName, 0, sizeof(TempKeychordName)); +} + +void ImGui::Initialize() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(!g.Initialized && !g.SettingsLoaded); + + // Add .ini handle for ImGuiWindow and ImGuiTable types + { + ImGuiSettingsHandler ini_handler; + ini_handler.TypeName = "Window"; + ini_handler.TypeHash = ImHashStr("Window"); + ini_handler.ClearAllFn = WindowSettingsHandler_ClearAll; + ini_handler.ReadOpenFn = WindowSettingsHandler_ReadOpen; + ini_handler.ReadLineFn = WindowSettingsHandler_ReadLine; + ini_handler.ApplyAllFn = WindowSettingsHandler_ApplyAll; + ini_handler.WriteAllFn = WindowSettingsHandler_WriteAll; + AddSettingsHandler(&ini_handler); + } + TableSettingsAddSettingsHandler(); + + // Setup default localization table + LocalizeRegisterEntries(GLocalizationEntriesEnUS, IM_ARRAYSIZE(GLocalizationEntriesEnUS)); + + // Setup default ImGuiPlatformIO clipboard/IME handlers. + g.PlatformIO.Platform_GetClipboardTextFn = Platform_GetClipboardTextFn_DefaultImpl; // Platform dependent default implementations + g.PlatformIO.Platform_SetClipboardTextFn = Platform_SetClipboardTextFn_DefaultImpl; + g.PlatformIO.Platform_OpenInShellFn = Platform_OpenInShellFn_DefaultImpl; + g.PlatformIO.Platform_SetImeDataFn = Platform_SetImeDataFn_DefaultImpl; + + // Create default viewport + ImGuiViewportP* viewport = IM_NEW(ImGuiViewportP)(); + viewport->ID = IMGUI_VIEWPORT_DEFAULT_ID; + g.Viewports.push_back(viewport); + g.TempBuffer.resize(1024 * 3 + 1, 0); + + // Build KeysMayBeCharInput[] lookup table (1 bool per named key) + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + if ((key >= ImGuiKey_0 && key <= ImGuiKey_9) || (key >= ImGuiKey_A && key <= ImGuiKey_Z) || (key >= ImGuiKey_Keypad0 && key <= ImGuiKey_Keypad9) + || key == ImGuiKey_Tab || key == ImGuiKey_Space || key == ImGuiKey_Apostrophe || key == ImGuiKey_Comma || key == ImGuiKey_Minus || key == ImGuiKey_Period + || key == ImGuiKey_Slash || key == ImGuiKey_Semicolon || key == ImGuiKey_Equal || key == ImGuiKey_LeftBracket || key == ImGuiKey_RightBracket || key == ImGuiKey_GraveAccent + || key == ImGuiKey_KeypadDecimal || key == ImGuiKey_KeypadDivide || key == ImGuiKey_KeypadMultiply || key == ImGuiKey_KeypadSubtract || key == ImGuiKey_KeypadAdd || key == ImGuiKey_KeypadEqual) + g.KeysMayBeCharInput.SetBit(key); + +#ifdef IMGUI_HAS_DOCK +#endif + + g.Initialized = true; +} + +// This function is merely here to free heap allocations. +void ImGui::Shutdown() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT_USER_ERROR(g.IO.BackendPlatformUserData == NULL, "Forgot to shutdown Platform backend?"); + IM_ASSERT_USER_ERROR(g.IO.BackendRendererUserData == NULL, "Forgot to shutdown Renderer backend?"); + + // The fonts atlas can be used prior to calling NewFrame(), so we clear it even if g.Initialized is FALSE (which would happen if we never called NewFrame) + if (g.IO.Fonts && g.FontAtlasOwnedByContext) + { + g.IO.Fonts->Locked = false; + IM_DELETE(g.IO.Fonts); + } + g.IO.Fonts = NULL; + g.DrawListSharedData.TempBuffer.clear(); + + // Cleanup of other data are conditional on actually having initialized Dear ImGui. + if (!g.Initialized) + return; + + // Save settings (unless we haven't attempted to load them: CreateContext/DestroyContext without a call to NewFrame shouldn't save an empty file) + if (g.SettingsLoaded && g.IO.IniFilename != NULL) + SaveIniSettingsToDisk(g.IO.IniFilename); + + CallContextHooks(&g, ImGuiContextHookType_Shutdown); + + // Clear everything else + g.Windows.clear_delete(); + g.WindowsFocusOrder.clear(); + g.WindowsTempSortBuffer.clear(); + g.CurrentWindow = NULL; + g.CurrentWindowStack.clear(); + g.WindowsById.Clear(); + g.NavWindow = NULL; + g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL; + g.ActiveIdWindow = g.ActiveIdPreviousFrameWindow = NULL; + g.MovingWindow = NULL; + + g.KeysRoutingTable.Clear(); + + g.ColorStack.clear(); + g.StyleVarStack.clear(); + g.FontStack.clear(); + g.OpenPopupStack.clear(); + g.BeginPopupStack.clear(); + g.TreeNodeStack.clear(); + + g.Viewports.clear_delete(); + + g.TabBars.Clear(); + g.CurrentTabBarStack.clear(); + g.ShrinkWidthBuffer.clear(); + + g.ClipperTempData.clear_destruct(); + + g.Tables.Clear(); + g.TablesTempData.clear_destruct(); + g.DrawChannelsTempMergeBuffer.clear(); + + g.MultiSelectStorage.Clear(); + g.MultiSelectTempData.clear_destruct(); + + g.ClipboardHandlerData.clear(); + g.MenusIdSubmittedThisFrame.clear(); + g.InputTextState.ClearFreeMemory(); + g.InputTextDeactivatedState.ClearFreeMemory(); + + g.SettingsWindows.clear(); + g.SettingsHandlers.clear(); + + if (g.LogFile) + { +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + if (g.LogFile != stdout) +#endif + ImFileClose(g.LogFile); + g.LogFile = NULL; + } + g.LogBuffer.clear(); + g.DebugLogBuf.clear(); + g.DebugLogIndex.clear(); + + g.Initialized = false; +} + +// No specific ordering/dependency support, will see as needed +ImGuiID ImGui::AddContextHook(ImGuiContext* ctx, const ImGuiContextHook* hook) +{ + ImGuiContext& g = *ctx; + IM_ASSERT(hook->Callback != NULL && hook->HookId == 0 && hook->Type != ImGuiContextHookType_PendingRemoval_); + g.Hooks.push_back(*hook); + g.Hooks.back().HookId = ++g.HookIdNext; + return g.HookIdNext; +} + +// Deferred removal, avoiding issue with changing vector while iterating it +void ImGui::RemoveContextHook(ImGuiContext* ctx, ImGuiID hook_id) +{ + ImGuiContext& g = *ctx; + IM_ASSERT(hook_id != 0); + for (ImGuiContextHook& hook : g.Hooks) + if (hook.HookId == hook_id) + hook.Type = ImGuiContextHookType_PendingRemoval_; +} + +// Call context hooks (used by e.g. test engine) +// We assume a small number of hooks so all stored in same array +void ImGui::CallContextHooks(ImGuiContext* ctx, ImGuiContextHookType hook_type) +{ + ImGuiContext& g = *ctx; + for (ImGuiContextHook& hook : g.Hooks) + if (hook.Type == hook_type) + hook.Callback(&g, &hook); +} + + +//----------------------------------------------------------------------------- +// [SECTION] MAIN CODE (most of the code! lots of stuff, needs tidying up!) +//----------------------------------------------------------------------------- + +// ImGuiWindow is mostly a dumb struct. It merely has a constructor and a few helper methods +ImGuiWindow::ImGuiWindow(ImGuiContext* ctx, const char* name) : DrawListInst(NULL) +{ + memset(this, 0, sizeof(*this)); + Ctx = ctx; + Name = ImStrdup(name); + NameBufLen = (int)strlen(name) + 1; + ID = ImHashStr(name); + IDStack.push_back(ID); + MoveId = GetID("#MOVE"); + ScrollTarget = ImVec2(FLT_MAX, FLT_MAX); + ScrollTargetCenterRatio = ImVec2(0.5f, 0.5f); + AutoFitFramesX = AutoFitFramesY = -1; + AutoPosLastDirection = ImGuiDir_None; + SetWindowPosAllowFlags = SetWindowSizeAllowFlags = SetWindowCollapsedAllowFlags = 0; + SetWindowPosVal = SetWindowPosPivot = ImVec2(FLT_MAX, FLT_MAX); + LastFrameActive = -1; + LastTimeActive = -1.0f; + FontWindowScale = 1.0f; + SettingsOffset = -1; + DrawList = &DrawListInst; + DrawList->_Data = &Ctx->DrawListSharedData; + DrawList->_OwnerName = Name; + NavPreferredScoringPosRel[0] = NavPreferredScoringPosRel[1] = ImVec2(FLT_MAX, FLT_MAX); +} + +ImGuiWindow::~ImGuiWindow() +{ + IM_ASSERT(DrawList == &DrawListInst); + IM_DELETE(Name); + ColumnsStorage.clear_destruct(); +} + +static void SetCurrentWindow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + g.CurrentWindow = window; + g.CurrentTable = window && window->DC.CurrentTableIdx != -1 ? g.Tables.GetByIndex(window->DC.CurrentTableIdx) : NULL; + g.CurrentDpiScale = 1.0f; // FIXME-DPI: WIP this is modified in docking + if (window) + { + g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize(); + g.FontScale = g.DrawListSharedData.FontScale = g.FontSize / g.Font->FontSize; + ImGui::NavUpdateCurrentWindowIsScrollPushableX(); + } +} + +void ImGui::GcCompactTransientMiscBuffers() +{ + ImGuiContext& g = *GImGui; + g.ItemFlagsStack.clear(); + g.GroupStack.clear(); + g.MultiSelectTempDataStacked = 0; + g.MultiSelectTempData.clear_destruct(); + TableGcCompactSettings(); +} + +// Free up/compact internal window buffers, we can use this when a window becomes unused. +// Not freed: +// - ImGuiWindow, ImGuiWindowSettings, Name, StateStorage, ColumnsStorage (may hold useful data) +// This should have no noticeable visual effect. When the window reappear however, expect new allocation/buffer growth/copy cost. +void ImGui::GcCompactTransientWindowBuffers(ImGuiWindow* window) +{ + window->MemoryCompacted = true; + window->MemoryDrawListIdxCapacity = window->DrawList->IdxBuffer.Capacity; + window->MemoryDrawListVtxCapacity = window->DrawList->VtxBuffer.Capacity; + window->IDStack.clear(); + window->DrawList->_ClearFreeMemory(); + window->DC.ChildWindows.clear(); + window->DC.ItemWidthStack.clear(); + window->DC.TextWrapPosStack.clear(); +} + +void ImGui::GcAwakeTransientWindowBuffers(ImGuiWindow* window) +{ + // We stored capacity of the ImDrawList buffer to reduce growth-caused allocation/copy when awakening. + // The other buffers tends to amortize much faster. + window->MemoryCompacted = false; + window->DrawList->IdxBuffer.reserve(window->MemoryDrawListIdxCapacity); + window->DrawList->VtxBuffer.reserve(window->MemoryDrawListVtxCapacity); + window->MemoryDrawListIdxCapacity = window->MemoryDrawListVtxCapacity = 0; +} + +void ImGui::SetActiveID(ImGuiID id, ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + + // Clear previous active id + if (g.ActiveId != 0) + { + // While most behaved code would make an effort to not steal active id during window move/drag operations, + // we at least need to be resilient to it. Canceling the move is rather aggressive and users of 'master' branch + // may prefer the weird ill-defined half working situation ('docking' did assert), so may need to rework that. + if (g.MovingWindow != NULL && g.ActiveId == g.MovingWindow->MoveId) + { + IMGUI_DEBUG_LOG_ACTIVEID("SetActiveID() cancel MovingWindow\n"); + g.MovingWindow = NULL; + } + + // This could be written in a more general way (e.g associate a hook to ActiveId), + // but since this is currently quite an exception we'll leave it as is. + // One common scenario leading to this is: pressing Key ->NavMoveRequestApplyResult() -> ClearActiveId() + if (g.InputTextState.ID == g.ActiveId) + InputTextDeactivateHook(g.ActiveId); + } + + // Set active id + g.ActiveIdIsJustActivated = (g.ActiveId != id); + if (g.ActiveIdIsJustActivated) + { + IMGUI_DEBUG_LOG_ACTIVEID("SetActiveID() old:0x%08X (window \"%s\") -> new:0x%08X (window \"%s\")\n", g.ActiveId, g.ActiveIdWindow ? g.ActiveIdWindow->Name : "", id, window ? window->Name : ""); + g.ActiveIdTimer = 0.0f; + g.ActiveIdHasBeenPressedBefore = false; + g.ActiveIdHasBeenEditedBefore = false; + g.ActiveIdMouseButton = -1; + if (id != 0) + { + g.LastActiveId = id; + g.LastActiveIdTimer = 0.0f; + } + } + g.ActiveId = id; + g.ActiveIdAllowOverlap = false; + g.ActiveIdNoClearOnFocusLoss = false; + g.ActiveIdWindow = window; + g.ActiveIdHasBeenEditedThisFrame = false; + g.ActiveIdFromShortcut = false; + if (id) + { + g.ActiveIdIsAlive = id; + g.ActiveIdSource = (g.NavActivateId == id || g.NavJustMovedToId == id) ? g.NavInputSource : ImGuiInputSource_Mouse; + IM_ASSERT(g.ActiveIdSource != ImGuiInputSource_None); + } + + // Clear declaration of inputs claimed by the widget + // (Please note that this is WIP and not all keys/inputs are thoroughly declared by all widgets yet) + g.ActiveIdUsingNavDirMask = 0x00; + g.ActiveIdUsingAllKeyboardKeys = false; +} + +void ImGui::ClearActiveID() +{ + SetActiveID(0, NULL); // g.ActiveId = 0; +} + +void ImGui::SetHoveredID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + g.HoveredId = id; + g.HoveredIdAllowOverlap = false; + if (id != 0 && g.HoveredIdPreviousFrame != id) + g.HoveredIdTimer = g.HoveredIdNotActiveTimer = 0.0f; +} + +ImGuiID ImGui::GetHoveredID() +{ + ImGuiContext& g = *GImGui; + return g.HoveredId ? g.HoveredId : g.HoveredIdPreviousFrame; +} + +void ImGui::MarkItemEdited(ImGuiID id) +{ + // This marking is solely to be able to provide info for IsItemDeactivatedAfterEdit(). + // ActiveId might have been released by the time we call this (as in the typical press/release button behavior) but still need to fill the data. + ImGuiContext& g = *GImGui; + if (g.LockMarkEdited > 0) + return; + if (g.ActiveId == id || g.ActiveId == 0) + { + g.ActiveIdHasBeenEditedThisFrame = true; + g.ActiveIdHasBeenEditedBefore = true; + } + + // We accept a MarkItemEdited() on drag and drop targets (see https://github.com/ocornut/imgui/issues/1875#issuecomment-978243343) + // We accept 'ActiveIdPreviousFrame == id' for InputText() returning an edit after it has been taken ActiveId away (#4714) + IM_ASSERT(g.DragDropActive || g.ActiveId == id || g.ActiveId == 0 || g.ActiveIdPreviousFrame == id || (g.CurrentMultiSelect != NULL && g.BoxSelectState.IsActive)); + + //IM_ASSERT(g.CurrentWindow->DC.LastItemId == id); + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Edited; +} + +bool ImGui::IsWindowContentHoverable(ImGuiWindow* window, ImGuiHoveredFlags flags) +{ + // An active popup disable hovering on other windows (apart from its own children) + // FIXME-OPT: This could be cached/stored within the window. + ImGuiContext& g = *GImGui; + if (g.NavWindow) + if (ImGuiWindow* focused_root_window = g.NavWindow->RootWindow) + if (focused_root_window->WasActive && focused_root_window != window->RootWindow) + { + // For the purpose of those flags we differentiate "standard popup" from "modal popup" + // NB: The 'else' is important because Modal windows are also Popups. + bool want_inhibit = false; + if (focused_root_window->Flags & ImGuiWindowFlags_Modal) + want_inhibit = true; + else if ((focused_root_window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + want_inhibit = true; + + // Inhibit hover unless the window is within the stack of our modal/popup + if (want_inhibit) + if (!IsWindowWithinBeginStackOf(window->RootWindow, focused_root_window)) + return false; + } + return true; +} + +static inline float CalcDelayFromHoveredFlags(ImGuiHoveredFlags flags) +{ + ImGuiContext& g = *GImGui; + if (flags & ImGuiHoveredFlags_DelayNormal) + return g.Style.HoverDelayNormal; + if (flags & ImGuiHoveredFlags_DelayShort) + return g.Style.HoverDelayShort; + return 0.0f; +} + +static ImGuiHoveredFlags ApplyHoverFlagsForTooltip(ImGuiHoveredFlags user_flags, ImGuiHoveredFlags shared_flags) +{ + // Allow instance flags to override shared flags + if (user_flags & (ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal)) + shared_flags &= ~(ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal); + return user_flags | shared_flags; +} + +// This is roughly matching the behavior of internal-facing ItemHoverable() +// - we allow hovering to be true when ActiveId==window->MoveID, so that clicking on non-interactive items such as a Text() item still returns true with IsItemHovered() +// - this should work even for non-interactive items that have no ID, so we cannot use LastItemId +bool ImGui::IsItemHovered(ImGuiHoveredFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT((flags & ~ImGuiHoveredFlags_AllowedMaskForIsItemHovered) == 0 && "Invalid flags for IsItemHovered()!"); + + if (g.NavDisableMouseHover && !g.NavDisableHighlight && !(flags & ImGuiHoveredFlags_NoNavOverride)) + { + if ((g.LastItemData.InFlags & ImGuiItemFlags_Disabled) && !(flags & ImGuiHoveredFlags_AllowWhenDisabled)) + return false; + if (!IsItemFocused()) + return false; + + if (flags & ImGuiHoveredFlags_ForTooltip) + flags = ApplyHoverFlagsForTooltip(flags, g.Style.HoverFlagsForTooltipNav); + } + else + { + // Test for bounding box overlap, as updated as ItemAdd() + ImGuiItemStatusFlags status_flags = g.LastItemData.StatusFlags; + if (!(status_flags & ImGuiItemStatusFlags_HoveredRect)) + return false; + + if (flags & ImGuiHoveredFlags_ForTooltip) + flags = ApplyHoverFlagsForTooltip(flags, g.Style.HoverFlagsForTooltipMouse); + + IM_ASSERT((flags & (ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_NoPopupHierarchy)) == 0); // Flags not supported by this function + + // Done with rectangle culling so we can perform heavier checks now + // Test if we are hovering the right window (our window could be behind another window) + // [2021/03/02] Reworked / reverted the revert, finally. Note we want e.g. BeginGroup/ItemAdd/EndGroup to work as well. (#3851) + // [2017/10/16] Reverted commit 344d48be3 and testing RootWindow instead. I believe it is correct to NOT test for RootWindow but this leaves us unable + // to use IsItemHovered() after EndChild() itself. Until a solution is found I believe reverting to the test from 2017/09/27 is safe since this was + // the test that has been running for a long while. + if (g.HoveredWindow != window && (status_flags & ImGuiItemStatusFlags_HoveredWindow) == 0) + if ((flags & ImGuiHoveredFlags_AllowWhenOverlappedByWindow) == 0) + return false; + + // Test if another item is active (e.g. being dragged) + const ImGuiID id = g.LastItemData.ID; + if ((flags & ImGuiHoveredFlags_AllowWhenBlockedByActiveItem) == 0) + if (g.ActiveId != 0 && g.ActiveId != id && !g.ActiveIdAllowOverlap) + if (g.ActiveId != window->MoveId) + return false; + + // Test if interactions on this window are blocked by an active popup or modal. + // The ImGuiHoveredFlags_AllowWhenBlockedByPopup flag will be tested here. + if (!IsWindowContentHoverable(window, flags) && !(g.LastItemData.InFlags & ImGuiItemFlags_NoWindowHoverableCheck)) + return false; + + // Test if the item is disabled + if ((g.LastItemData.InFlags & ImGuiItemFlags_Disabled) && !(flags & ImGuiHoveredFlags_AllowWhenDisabled)) + return false; + + // Special handling for calling after Begin() which represent the title bar or tab. + // When the window is skipped/collapsed (SkipItems==true) that last item (always ->MoveId submitted by Begin) + // will never be overwritten so we need to detect the case. + if (id == window->MoveId && window->WriteAccessed) + return false; + + // Test if using AllowOverlap and overlapped + if ((g.LastItemData.InFlags & ImGuiItemFlags_AllowOverlap) && id != 0) + if ((flags & ImGuiHoveredFlags_AllowWhenOverlappedByItem) == 0) + if (g.HoveredIdPreviousFrame != g.LastItemData.ID) + return false; + } + + // Handle hover delay + // (some ideas: https://www.nngroup.com/articles/timing-exposing-content) + const float delay = CalcDelayFromHoveredFlags(flags); + if (delay > 0.0f || (flags & ImGuiHoveredFlags_Stationary)) + { + ImGuiID hover_delay_id = (g.LastItemData.ID != 0) ? g.LastItemData.ID : window->GetIDFromPos(g.LastItemData.Rect.Min); + if ((flags & ImGuiHoveredFlags_NoSharedDelay) && (g.HoverItemDelayIdPreviousFrame != hover_delay_id)) + g.HoverItemDelayTimer = 0.0f; + g.HoverItemDelayId = hover_delay_id; + + // When changing hovered item we requires a bit of stationary delay before activating hover timer, + // but once unlocked on a given item we also moving. + //if (g.HoverDelayTimer >= delay && (g.HoverDelayTimer - g.IO.DeltaTime < delay || g.MouseStationaryTimer - g.IO.DeltaTime < g.Style.HoverStationaryDelay)) { IMGUI_DEBUG_LOG("HoverDelayTimer = %f/%f, MouseStationaryTimer = %f\n", g.HoverDelayTimer, delay, g.MouseStationaryTimer); } + if ((flags & ImGuiHoveredFlags_Stationary) != 0 && g.HoverItemUnlockedStationaryId != hover_delay_id) + return false; + + if (g.HoverItemDelayTimer < delay) + return false; + } + + return true; +} + +// Internal facing ItemHoverable() used when submitting widgets. Differs slightly from IsItemHovered(). +// (this does not rely on LastItemData it can be called from a ButtonBehavior() call not following an ItemAdd() call) +// FIXME-LEGACY: the 'ImGuiItemFlags item_flags' parameter was added on 2023-06-28. +// If you used this in your legacy/custom widgets code: +// - Commonly: if your ItemHoverable() call comes after an ItemAdd() call: pass 'item_flags = g.LastItemData.InFlags'. +// - Rare: otherwise you may pass 'item_flags = 0' (ImGuiItemFlags_None) unless you want to benefit from special behavior handled by ItemHoverable. +bool ImGui::ItemHoverable(const ImRect& bb, ImGuiID id, ImGuiItemFlags item_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Detect ID conflicts +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (id != 0 && g.HoveredIdPreviousFrame == id && (item_flags & ImGuiItemFlags_AllowDuplicateId) == 0) + { + g.HoveredIdPreviousFrameItemCount++; + if (g.DebugDrawIdConflicts == id) + window->DrawList->AddRect(bb.Min - ImVec2(1,1), bb.Max + ImVec2(1,1), IM_COL32(255, 0, 0, 255), 0.0f, ImDrawFlags_None, 2.0f); + } +#endif + + if (g.HoveredWindow != window) + return false; + if (!IsMouseHoveringRect(bb.Min, bb.Max)) + return false; + + if (g.HoveredId != 0 && g.HoveredId != id && !g.HoveredIdAllowOverlap) + return false; + if (g.ActiveId != 0 && g.ActiveId != id && !g.ActiveIdAllowOverlap) + if (!g.ActiveIdFromShortcut) + return false; + + // Done with rectangle culling so we can perform heavier checks now. + if (!(item_flags & ImGuiItemFlags_NoWindowHoverableCheck) && !IsWindowContentHoverable(window, ImGuiHoveredFlags_None)) + { + g.HoveredIdIsDisabled = true; + return false; + } + + // We exceptionally allow this function to be called with id==0 to allow using it for easy high-level + // hover test in widgets code. We could also decide to split this function is two. + if (id != 0) + { + // Drag source doesn't report as hovered + if (g.DragDropActive && g.DragDropPayload.SourceId == id && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoDisableHover)) + return false; + + SetHoveredID(id); + + // AllowOverlap mode (rarely used) requires previous frame HoveredId to be null or to match. + // This allows using patterns where a later submitted widget overlaps a previous one. Generally perceived as a front-to-back hit-test. + if (item_flags & ImGuiItemFlags_AllowOverlap) + { + g.HoveredIdAllowOverlap = true; + if (g.HoveredIdPreviousFrame != id) + return false; + } + + // Display shortcut (only works with mouse) + // (ImGuiItemStatusFlags_HasShortcut in LastItemData denotes we want a tooltip) + if (id == g.LastItemData.ID && (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasShortcut) && g.ActiveId != id) + if (IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_DelayNormal)) + SetTooltip("%s", GetKeyChordName(g.LastItemData.Shortcut)); + } + + // When disabled we'll return false but still set HoveredId + if (item_flags & ImGuiItemFlags_Disabled) + { + // Release active id if turning disabled + if (g.ActiveId == id && id != 0) + ClearActiveID(); + g.HoveredIdIsDisabled = true; + return false; + } + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (id != 0) + { + // [DEBUG] Item Picker tool! + // We perform the check here because reaching is path is rare (1~ time a frame), + // making the cost of this tool near-zero! We could get better call-stack and support picking non-hovered + // items if we performed the test in ItemAdd(), but that would incur a bigger runtime cost. + if (g.DebugItemPickerActive && g.HoveredIdPreviousFrame == id) + GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(255, 255, 0, 255)); + if (g.DebugItemPickerBreakId == id) + IM_DEBUG_BREAK(); + } +#endif + + if (g.NavDisableMouseHover) + return false; + + return true; +} + +// FIXME: This is inlined/duplicated in ItemAdd() +// FIXME: The id != 0 path is not used by our codebase, may get rid of it? +bool ImGui::IsClippedEx(const ImRect& bb, ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!bb.Overlaps(window->ClipRect)) + if (id == 0 || (id != g.ActiveId && id != g.ActiveIdPreviousFrame && id != g.NavId && id != g.NavActivateId)) + if (!g.ItemUnclipByLog) + return true; + return false; +} + +// This is also inlined in ItemAdd() +// Note: if ImGuiItemStatusFlags_HasDisplayRect is set, user needs to set g.LastItemData.DisplayRect. +void ImGui::SetLastItemData(ImGuiID item_id, ImGuiItemFlags in_flags, ImGuiItemStatusFlags item_flags, const ImRect& item_rect) +{ + ImGuiContext& g = *GImGui; + g.LastItemData.ID = item_id; + g.LastItemData.InFlags = in_flags; + g.LastItemData.StatusFlags = item_flags; + g.LastItemData.Rect = g.LastItemData.NavRect = item_rect; +} + +float ImGui::CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x) +{ + if (wrap_pos_x < 0.0f) + return 0.0f; + + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (wrap_pos_x == 0.0f) + { + // We could decide to setup a default wrapping max point for auto-resizing windows, + // or have auto-wrap (with unspecified wrapping pos) behave as a ContentSize extending function? + //if (window->Hidden && (window->Flags & ImGuiWindowFlags_AlwaysAutoResize)) + // wrap_pos_x = ImMax(window->WorkRect.Min.x + g.FontSize * 10.0f, window->WorkRect.Max.x); + //else + wrap_pos_x = window->WorkRect.Max.x; + } + else if (wrap_pos_x > 0.0f) + { + wrap_pos_x += window->Pos.x - window->Scroll.x; // wrap_pos_x is provided is window local space + } + + return ImMax(wrap_pos_x - pos.x, 1.0f); +} + +// IM_ALLOC() == ImGui::MemAlloc() +void* ImGui::MemAlloc(size_t size) +{ + void* ptr = (*GImAllocatorAllocFunc)(size, GImAllocatorUserData); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (ImGuiContext* ctx = GImGui) + DebugAllocHook(&ctx->DebugAllocInfo, ctx->FrameCount, ptr, size); +#endif + return ptr; +} + +// IM_FREE() == ImGui::MemFree() +void ImGui::MemFree(void* ptr) +{ +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (ptr != NULL) + if (ImGuiContext* ctx = GImGui) + DebugAllocHook(&ctx->DebugAllocInfo, ctx->FrameCount, ptr, (size_t)-1); +#endif + return (*GImAllocatorFreeFunc)(ptr, GImAllocatorUserData); +} + +// We record the number of allocation in recent frames, as a way to audit/sanitize our guiding principles of "no allocations on idle/repeating frames" +void ImGui::DebugAllocHook(ImGuiDebugAllocInfo* info, int frame_count, void* ptr, size_t size) +{ + ImGuiDebugAllocEntry* entry = &info->LastEntriesBuf[info->LastEntriesIdx]; + IM_UNUSED(ptr); + if (entry->FrameCount != frame_count) + { + info->LastEntriesIdx = (info->LastEntriesIdx + 1) % IM_ARRAYSIZE(info->LastEntriesBuf); + entry = &info->LastEntriesBuf[info->LastEntriesIdx]; + entry->FrameCount = frame_count; + entry->AllocCount = entry->FreeCount = 0; + } + if (size != (size_t)-1) + { + entry->AllocCount++; + info->TotalAllocCount++; + //printf("[%05d] MemAlloc(%d) -> 0x%p\n", frame_count, size, ptr); + } + else + { + entry->FreeCount++; + info->TotalFreeCount++; + //printf("[%05d] MemFree(0x%p)\n", frame_count, ptr); + } +} + +const char* ImGui::GetClipboardText() +{ + ImGuiContext& g = *GImGui; + return g.PlatformIO.Platform_GetClipboardTextFn ? g.PlatformIO.Platform_GetClipboardTextFn(&g) : ""; +} + +void ImGui::SetClipboardText(const char* text) +{ + ImGuiContext& g = *GImGui; + if (g.PlatformIO.Platform_SetClipboardTextFn != NULL) + g.PlatformIO.Platform_SetClipboardTextFn(&g, text); +} + +const char* ImGui::GetVersion() +{ + return IMGUI_VERSION; +} + +ImGuiIO& ImGui::GetIO() +{ + IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?"); + return GImGui->IO; +} + +ImGuiPlatformIO& ImGui::GetPlatformIO() +{ + IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext()?"); + return GImGui->PlatformIO; +} + +// Pass this to your backend rendering function! Valid after Render() and until the next call to NewFrame() +ImDrawData* ImGui::GetDrawData() +{ + ImGuiContext& g = *GImGui; + ImGuiViewportP* viewport = g.Viewports[0]; + return viewport->DrawDataP.Valid ? &viewport->DrawDataP : NULL; +} + +double ImGui::GetTime() +{ + return GImGui->Time; +} + +int ImGui::GetFrameCount() +{ + return GImGui->FrameCount; +} + +static ImDrawList* GetViewportBgFgDrawList(ImGuiViewportP* viewport, size_t drawlist_no, const char* drawlist_name) +{ + // Create the draw list on demand, because they are not frequently used for all viewports + ImGuiContext& g = *GImGui; + IM_ASSERT(drawlist_no < IM_ARRAYSIZE(viewport->BgFgDrawLists)); + ImDrawList* draw_list = viewport->BgFgDrawLists[drawlist_no]; + if (draw_list == NULL) + { + draw_list = IM_NEW(ImDrawList)(&g.DrawListSharedData); + draw_list->_OwnerName = drawlist_name; + viewport->BgFgDrawLists[drawlist_no] = draw_list; + } + + // Our ImDrawList system requires that there is always a command + if (viewport->BgFgDrawListsLastFrame[drawlist_no] != g.FrameCount) + { + draw_list->_ResetForNewFrame(); + draw_list->PushTextureID(g.IO.Fonts->TexID); + draw_list->PushClipRect(viewport->Pos, viewport->Pos + viewport->Size, false); + viewport->BgFgDrawListsLastFrame[drawlist_no] = g.FrameCount; + } + return draw_list; +} + +ImDrawList* ImGui::GetBackgroundDrawList(ImGuiViewport* viewport) +{ + return GetViewportBgFgDrawList((ImGuiViewportP*)viewport, 0, "##Background"); +} + +ImDrawList* ImGui::GetBackgroundDrawList() +{ + ImGuiContext& g = *GImGui; + return GetBackgroundDrawList(g.Viewports[0]); +} + +ImDrawList* ImGui::GetForegroundDrawList(ImGuiViewport* viewport) +{ + return GetViewportBgFgDrawList((ImGuiViewportP*)viewport, 1, "##Foreground"); +} + +ImDrawList* ImGui::GetForegroundDrawList() +{ + ImGuiContext& g = *GImGui; + return GetForegroundDrawList(g.Viewports[0]); +} + +ImDrawListSharedData* ImGui::GetDrawListSharedData() +{ + return &GImGui->DrawListSharedData; +} + +void ImGui::StartMouseMovingWindow(ImGuiWindow* window) +{ + // Set ActiveId even if the _NoMove flag is set. Without it, dragging away from a window with _NoMove would activate hover on other windows. + // We _also_ call this when clicking in a window empty space when io.ConfigWindowsMoveFromTitleBarOnly is set, but clear g.MovingWindow afterward. + // This is because we want ActiveId to be set even when the window is not permitted to move. + ImGuiContext& g = *GImGui; + FocusWindow(window); + SetActiveID(window->MoveId, window); + g.NavDisableHighlight = true; + g.ActiveIdClickOffset = g.IO.MouseClickedPos[0] - window->RootWindow->Pos; + g.ActiveIdNoClearOnFocusLoss = true; + SetActiveIdUsingAllKeyboardKeys(); + + bool can_move_window = true; + if ((window->Flags & ImGuiWindowFlags_NoMove) || (window->RootWindow->Flags & ImGuiWindowFlags_NoMove)) + can_move_window = false; + if (can_move_window) + g.MovingWindow = window; +} + +// Handle mouse moving window +// Note: moving window with the navigation keys (Square + d-pad / CTRL+TAB + Arrows) are processed in NavUpdateWindowing() +// FIXME: We don't have strong guarantee that g.MovingWindow stay synched with g.ActiveId == g.MovingWindow->MoveId. +// This is currently enforced by the fact that BeginDragDropSource() is setting all g.ActiveIdUsingXXXX flags to inhibit navigation inputs, +// but if we should more thoroughly test cases where g.ActiveId or g.MovingWindow gets changed and not the other. +void ImGui::UpdateMouseMovingWindowNewFrame() +{ + ImGuiContext& g = *GImGui; + if (g.MovingWindow != NULL) + { + // We actually want to move the root window. g.MovingWindow == window we clicked on (could be a child window). + // We track it to preserve Focus and so that generally ActiveIdWindow == MovingWindow and ActiveId == MovingWindow->MoveId for consistency. + KeepAliveID(g.ActiveId); + IM_ASSERT(g.MovingWindow && g.MovingWindow->RootWindow); + ImGuiWindow* moving_window = g.MovingWindow->RootWindow; + if (g.IO.MouseDown[0] && IsMousePosValid(&g.IO.MousePos)) + { + ImVec2 pos = g.IO.MousePos - g.ActiveIdClickOffset; + SetWindowPos(moving_window, pos, ImGuiCond_Always); + FocusWindow(g.MovingWindow); + } + else + { + g.MovingWindow = NULL; + ClearActiveID(); + } + } + else + { + // When clicking/dragging from a window that has the _NoMove flag, we still set the ActiveId in order to prevent hovering others. + if (g.ActiveIdWindow && g.ActiveIdWindow->MoveId == g.ActiveId) + { + KeepAliveID(g.ActiveId); + if (!g.IO.MouseDown[0]) + ClearActiveID(); + } + } +} + +// Initiate moving window when clicking on empty space or title bar. +// Handle left-click and right-click focus. +void ImGui::UpdateMouseMovingWindowEndFrame() +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId != 0 || g.HoveredId != 0) + return; + + // Unless we just made a window/popup appear + if (g.NavWindow && g.NavWindow->Appearing) + return; + + // Click on empty space to focus window and start moving + // (after we're done with all our widgets) + if (g.IO.MouseClicked[0]) + { + // Handle the edge case of a popup being closed while clicking in its empty space. + // If we try to focus it, FocusWindow() > ClosePopupsOverWindow() will accidentally close any parent popups because they are not linked together any more. + ImGuiWindow* root_window = g.HoveredWindow ? g.HoveredWindow->RootWindow : NULL; + const bool is_closed_popup = root_window && (root_window->Flags & ImGuiWindowFlags_Popup) && !IsPopupOpen(root_window->PopupId, ImGuiPopupFlags_AnyPopupLevel); + + if (root_window != NULL && !is_closed_popup) + { + StartMouseMovingWindow(g.HoveredWindow); //-V595 + + // Cancel moving if clicked outside of title bar + if (g.IO.ConfigWindowsMoveFromTitleBarOnly) + if (!(root_window->Flags & ImGuiWindowFlags_NoTitleBar)) + if (!root_window->TitleBarRect().Contains(g.IO.MouseClickedPos[0])) + g.MovingWindow = NULL; + + // Cancel moving if clicked over an item which was disabled or inhibited by popups (note that we know HoveredId == 0 already) + if (g.HoveredIdIsDisabled) + g.MovingWindow = NULL; + } + else if (root_window == NULL && g.NavWindow != NULL) + { + // Clicking on void disable focus + FocusWindow(NULL, ImGuiFocusRequestFlags_UnlessBelowModal); + } + } + + // With right mouse button we close popups without changing focus based on where the mouse is aimed + // Instead, focus will be restored to the window under the bottom-most closed popup. + // (The left mouse button path calls FocusWindow on the hovered window, which will lead NewFrame->ClosePopupsOverWindow to trigger) + if (g.IO.MouseClicked[1]) + { + // Find the top-most window between HoveredWindow and the top-most Modal Window. + // This is where we can trim the popup stack. + ImGuiWindow* modal = GetTopMostPopupModal(); + bool hovered_window_above_modal = g.HoveredWindow && (modal == NULL || IsWindowAbove(g.HoveredWindow, modal)); + ClosePopupsOverWindow(hovered_window_above_modal ? g.HoveredWindow : modal, true); + } +} + +static bool IsWindowActiveAndVisible(ImGuiWindow* window) +{ + return (window->Active) && (!window->Hidden); +} + +// The reason this is exposed in imgui_internal.h is: on touch-based system that don't have hovering, we want to dispatch inputs to the right target (imgui vs imgui+app) +void ImGui::UpdateHoveredWindowAndCaptureFlags() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + // FIXME-DPI: This storage was added on 2021/03/31 for test engine, but if we want to multiply WINDOWS_HOVER_PADDING + // by DpiScale, we need to make this window-agnostic anyhow, maybe need storing inside ImGuiWindow. + g.WindowsHoverPadding = ImMax(g.Style.TouchExtraPadding, ImVec2(WINDOWS_HOVER_PADDING, WINDOWS_HOVER_PADDING)); + + // Find the window hovered by mouse: + // - Child windows can extend beyond the limit of their parent so we need to derive HoveredRootWindow from HoveredWindow. + // - When moving a window we can skip the search, which also conveniently bypasses the fact that window->WindowRectClipped is lagging as this point of the frame. + // - We also support the moved window toggling the NoInputs flag after moving has started in order to be able to detect windows below it, which is useful for e.g. docking mechanisms. + bool clear_hovered_windows = false; + FindHoveredWindowEx(g.IO.MousePos, false, &g.HoveredWindow, &g.HoveredWindowUnderMovingWindow); + g.HoveredWindowBeforeClear = g.HoveredWindow; + + // Modal windows prevents mouse from hovering behind them. + ImGuiWindow* modal_window = GetTopMostPopupModal(); + if (modal_window && g.HoveredWindow && !IsWindowWithinBeginStackOf(g.HoveredWindow->RootWindow, modal_window)) + clear_hovered_windows = true; + + // Disabled mouse hovering (we don't currently clear MousePos, we could) + if (io.ConfigFlags & ImGuiConfigFlags_NoMouse) + clear_hovered_windows = true; + + // We track click ownership. When clicked outside of a window the click is owned by the application and + // won't report hovering nor request capture even while dragging over our windows afterward. + const bool has_open_popup = (g.OpenPopupStack.Size > 0); + const bool has_open_modal = (modal_window != NULL); + int mouse_earliest_down = -1; + bool mouse_any_down = false; + for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) + { + if (io.MouseClicked[i]) + { + io.MouseDownOwned[i] = (g.HoveredWindow != NULL) || has_open_popup; + io.MouseDownOwnedUnlessPopupClose[i] = (g.HoveredWindow != NULL) || has_open_modal; + } + mouse_any_down |= io.MouseDown[i]; + if (io.MouseDown[i] || io.MouseReleased[i]) // Increase release frame for our evaluation of earliest button (#1392) + if (mouse_earliest_down == -1 || io.MouseClickedTime[i] < io.MouseClickedTime[mouse_earliest_down]) + mouse_earliest_down = i; + } + const bool mouse_avail = (mouse_earliest_down == -1) || io.MouseDownOwned[mouse_earliest_down]; + const bool mouse_avail_unless_popup_close = (mouse_earliest_down == -1) || io.MouseDownOwnedUnlessPopupClose[mouse_earliest_down]; + + // If mouse was first clicked outside of ImGui bounds we also cancel out hovering. + // FIXME: For patterns of drag and drop across OS windows, we may need to rework/remove this test (first committed 311c0ca9 on 2015/02) + const bool mouse_dragging_extern_payload = g.DragDropActive && (g.DragDropSourceFlags & ImGuiDragDropFlags_SourceExtern) != 0; + if (!mouse_avail && !mouse_dragging_extern_payload) + clear_hovered_windows = true; + + if (clear_hovered_windows) + g.HoveredWindow = g.HoveredWindowUnderMovingWindow = NULL; + + // Update io.WantCaptureMouse for the user application (true = dispatch mouse info to Dear ImGui only, false = dispatch mouse to Dear ImGui + underlying app) + // Update io.WantCaptureMouseAllowPopupClose (experimental) to give a chance for app to react to popup closure with a drag + if (g.WantCaptureMouseNextFrame != -1) + { + io.WantCaptureMouse = io.WantCaptureMouseUnlessPopupClose = (g.WantCaptureMouseNextFrame != 0); + } + else + { + io.WantCaptureMouse = (mouse_avail && (g.HoveredWindow != NULL || mouse_any_down)) || has_open_popup; + io.WantCaptureMouseUnlessPopupClose = (mouse_avail_unless_popup_close && (g.HoveredWindow != NULL || mouse_any_down)) || has_open_modal; + } + + // Update io.WantCaptureKeyboard for the user application (true = dispatch keyboard info to Dear ImGui only, false = dispatch keyboard info to Dear ImGui + underlying app) + io.WantCaptureKeyboard = (g.ActiveId != 0) || (modal_window != NULL); + if (io.NavActive && (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) && !(io.ConfigFlags & ImGuiConfigFlags_NavNoCaptureKeyboard)) + io.WantCaptureKeyboard = true; + if (g.WantCaptureKeyboardNextFrame != -1) // Manual override + io.WantCaptureKeyboard = (g.WantCaptureKeyboardNextFrame != 0); + + // Update io.WantTextInput flag, this is to allow systems without a keyboard (e.g. mobile, hand-held) to show a software keyboard if possible + io.WantTextInput = (g.WantTextInputNextFrame != -1) ? (g.WantTextInputNextFrame != 0) : false; +} + +// Calling SetupDrawListSharedData() is followed by SetCurrentFont() which sets up the remaining data. +static void SetupDrawListSharedData() +{ + ImGuiContext& g = *GImGui; + ImRect virtual_space(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX); + for (ImGuiViewportP* viewport : g.Viewports) + virtual_space.Add(viewport->GetMainRect()); + g.DrawListSharedData.ClipRectFullscreen = virtual_space.ToVec4(); + g.DrawListSharedData.CurveTessellationTol = g.Style.CurveTessellationTol; + g.DrawListSharedData.SetCircleTessellationMaxError(g.Style.CircleTessellationMaxError); + g.DrawListSharedData.InitialFlags = ImDrawListFlags_None; + if (g.Style.AntiAliasedLines) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedLines; + if (g.Style.AntiAliasedLinesUseTex && !(g.IO.Fonts->Flags & ImFontAtlasFlags_NoBakedLines)) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedLinesUseTex; + if (g.Style.AntiAliasedFill) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AntiAliasedFill; + if (g.IO.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset) + g.DrawListSharedData.InitialFlags |= ImDrawListFlags_AllowVtxOffset; +} + +void ImGui::NewFrame() +{ + IM_ASSERT(GImGui != NULL && "No current context. Did you call ImGui::CreateContext() and ImGui::SetCurrentContext() ?"); + ImGuiContext& g = *GImGui; + + // Remove pending delete hooks before frame start. + // This deferred removal avoid issues of removal while iterating the hook vector + for (int n = g.Hooks.Size - 1; n >= 0; n--) + if (g.Hooks[n].Type == ImGuiContextHookType_PendingRemoval_) + g.Hooks.erase(&g.Hooks[n]); + + CallContextHooks(&g, ImGuiContextHookType_NewFramePre); + + // Check and assert for various common IO and Configuration mistakes + ErrorCheckNewFrameSanityChecks(); + + // Load settings on first frame, save settings when modified (after a delay) + UpdateSettings(); + + g.Time += g.IO.DeltaTime; + g.WithinFrameScope = true; + g.FrameCount += 1; + g.TooltipOverrideCount = 0; + g.WindowsActiveCount = 0; + g.MenusIdSubmittedThisFrame.resize(0); + + // Calculate frame-rate for the user, as a purely luxurious feature + g.FramerateSecPerFrameAccum += g.IO.DeltaTime - g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx]; + g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx] = g.IO.DeltaTime; + g.FramerateSecPerFrameIdx = (g.FramerateSecPerFrameIdx + 1) % IM_ARRAYSIZE(g.FramerateSecPerFrame); + g.FramerateSecPerFrameCount = ImMin(g.FramerateSecPerFrameCount + 1, IM_ARRAYSIZE(g.FramerateSecPerFrame)); + g.IO.Framerate = (g.FramerateSecPerFrameAccum > 0.0f) ? (1.0f / (g.FramerateSecPerFrameAccum / (float)g.FramerateSecPerFrameCount)) : FLT_MAX; + + // Process input queue (trickle as many events as possible), turn events into writes to IO structure + g.InputEventsTrail.resize(0); + UpdateInputEvents(g.IO.ConfigInputTrickleEventQueue); + + // Update viewports (after processing input queue, so io.MouseHoveredViewport is set) + UpdateViewportsNewFrame(); + + // Setup current font and draw list shared data + g.IO.Fonts->Locked = true; + SetupDrawListSharedData(); + SetCurrentFont(GetDefaultFont()); + IM_ASSERT(g.Font->IsLoaded()); + + // Mark rendering data as invalid to prevent user who may have a handle on it to use it. + for (ImGuiViewportP* viewport : g.Viewports) + viewport->DrawDataP.Valid = false; + + // Drag and drop keep the source ID alive so even if the source disappear our state is consistent + if (g.DragDropActive && g.DragDropPayload.SourceId == g.ActiveId) + KeepAliveID(g.DragDropPayload.SourceId); + + // [DEBUG] + g.DebugDrawIdConflicts = 0; + if (g.IO.ConfigDebugHighlightIdConflicts && g.HoveredIdPreviousFrameItemCount > 1) + g.DebugDrawIdConflicts = g.HoveredIdPreviousFrame; + + // Update HoveredId data + if (!g.HoveredIdPreviousFrame) + g.HoveredIdTimer = 0.0f; + if (!g.HoveredIdPreviousFrame || (g.HoveredId && g.ActiveId == g.HoveredId)) + g.HoveredIdNotActiveTimer = 0.0f; + if (g.HoveredId) + g.HoveredIdTimer += g.IO.DeltaTime; + if (g.HoveredId && g.ActiveId != g.HoveredId) + g.HoveredIdNotActiveTimer += g.IO.DeltaTime; + g.HoveredIdPreviousFrame = g.HoveredId; + g.HoveredIdPreviousFrameItemCount = 0; + g.HoveredId = 0; + g.HoveredIdAllowOverlap = false; + g.HoveredIdIsDisabled = false; + + // Clear ActiveID if the item is not alive anymore. + // In 1.87, the common most call to KeepAliveID() was moved from GetID() to ItemAdd(). + // As a result, custom widget using ButtonBehavior() _without_ ItemAdd() need to call KeepAliveID() themselves. + if (g.ActiveId != 0 && g.ActiveIdIsAlive != g.ActiveId && g.ActiveIdPreviousFrame == g.ActiveId) + { + IMGUI_DEBUG_LOG_ACTIVEID("NewFrame(): ClearActiveID() because it isn't marked alive anymore!\n"); + ClearActiveID(); + } + + // Update ActiveId data (clear reference to active widget if the widget isn't alive anymore) + if (g.ActiveId) + g.ActiveIdTimer += g.IO.DeltaTime; + g.LastActiveIdTimer += g.IO.DeltaTime; + g.ActiveIdPreviousFrame = g.ActiveId; + g.ActiveIdPreviousFrameWindow = g.ActiveIdWindow; + g.ActiveIdPreviousFrameHasBeenEditedBefore = g.ActiveIdHasBeenEditedBefore; + g.ActiveIdIsAlive = 0; + g.ActiveIdHasBeenEditedThisFrame = false; + g.ActiveIdPreviousFrameIsAlive = false; + g.ActiveIdIsJustActivated = false; + if (g.TempInputId != 0 && g.ActiveId != g.TempInputId) + g.TempInputId = 0; + if (g.ActiveId == 0) + { + g.ActiveIdUsingNavDirMask = 0x00; + g.ActiveIdUsingAllKeyboardKeys = false; + } + + // Record when we have been stationary as this state is preserved while over same item. + // FIXME: The way this is expressed means user cannot alter HoverStationaryDelay during the frame to use varying values. + // To allow this we should store HoverItemMaxStationaryTime+ID and perform the >= check in IsItemHovered() function. + if (g.HoverItemDelayId != 0 && g.MouseStationaryTimer >= g.Style.HoverStationaryDelay) + g.HoverItemUnlockedStationaryId = g.HoverItemDelayId; + else if (g.HoverItemDelayId == 0) + g.HoverItemUnlockedStationaryId = 0; + if (g.HoveredWindow != NULL && g.MouseStationaryTimer >= g.Style.HoverStationaryDelay) + g.HoverWindowUnlockedStationaryId = g.HoveredWindow->ID; + else if (g.HoveredWindow == NULL) + g.HoverWindowUnlockedStationaryId = 0; + + // Update hover delay for IsItemHovered() with delays and tooltips + g.HoverItemDelayIdPreviousFrame = g.HoverItemDelayId; + if (g.HoverItemDelayId != 0) + { + g.HoverItemDelayTimer += g.IO.DeltaTime; + g.HoverItemDelayClearTimer = 0.0f; + g.HoverItemDelayId = 0; + } + else if (g.HoverItemDelayTimer > 0.0f) + { + // This gives a little bit of leeway before clearing the hover timer, allowing mouse to cross gaps + // We could expose 0.25f as style.HoverClearDelay but I am not sure of the logic yet, this is particularly subtle. + g.HoverItemDelayClearTimer += g.IO.DeltaTime; + if (g.HoverItemDelayClearTimer >= ImMax(0.25f, g.IO.DeltaTime * 2.0f)) // ~7 frames at 30 Hz + allow for low framerate + g.HoverItemDelayTimer = g.HoverItemDelayClearTimer = 0.0f; // May want a decaying timer, in which case need to clamp at max first, based on max of caller last requested timer. + } + + // Drag and drop + g.DragDropAcceptIdPrev = g.DragDropAcceptIdCurr; + g.DragDropAcceptIdCurr = 0; + g.DragDropAcceptIdCurrRectSurface = FLT_MAX; + g.DragDropWithinSource = false; + g.DragDropWithinTarget = false; + g.DragDropHoldJustPressedId = 0; + + // Close popups on focus lost (currently wip/opt-in) + //if (g.IO.AppFocusLost) + // ClosePopupsExceptModals(); + + // Update keyboard input state + UpdateKeyboardInputs(); + + //IM_ASSERT(g.IO.KeyCtrl == IsKeyDown(ImGuiKey_LeftCtrl) || IsKeyDown(ImGuiKey_RightCtrl)); + //IM_ASSERT(g.IO.KeyShift == IsKeyDown(ImGuiKey_LeftShift) || IsKeyDown(ImGuiKey_RightShift)); + //IM_ASSERT(g.IO.KeyAlt == IsKeyDown(ImGuiKey_LeftAlt) || IsKeyDown(ImGuiKey_RightAlt)); + //IM_ASSERT(g.IO.KeySuper == IsKeyDown(ImGuiKey_LeftSuper) || IsKeyDown(ImGuiKey_RightSuper)); + + // Update gamepad/keyboard navigation + NavUpdate(); + + // Update mouse input state + UpdateMouseInputs(); + + // Find hovered window + // (needs to be before UpdateMouseMovingWindowNewFrame so we fill g.HoveredWindowUnderMovingWindow on the mouse release frame) + UpdateHoveredWindowAndCaptureFlags(); + + // Handle user moving window with mouse (at the beginning of the frame to avoid input lag or sheering) + UpdateMouseMovingWindowNewFrame(); + + // Background darkening/whitening + if (GetTopMostPopupModal() != NULL || (g.NavWindowingTarget != NULL && g.NavWindowingHighlightAlpha > 0.0f)) + g.DimBgRatio = ImMin(g.DimBgRatio + g.IO.DeltaTime * 6.0f, 1.0f); + else + g.DimBgRatio = ImMax(g.DimBgRatio - g.IO.DeltaTime * 10.0f, 0.0f); + + g.MouseCursor = ImGuiMouseCursor_Arrow; + g.WantCaptureMouseNextFrame = g.WantCaptureKeyboardNextFrame = g.WantTextInputNextFrame = -1; + + // Platform IME data: reset for the frame + g.PlatformImeDataPrev = g.PlatformImeData; + g.PlatformImeData.WantVisible = false; + + // Mouse wheel scrolling, scale + UpdateMouseWheel(); + + // Mark all windows as not visible and compact unused memory. + IM_ASSERT(g.WindowsFocusOrder.Size <= g.Windows.Size); + const float memory_compact_start_time = (g.GcCompactAll || g.IO.ConfigMemoryCompactTimer < 0.0f) ? FLT_MAX : (float)g.Time - g.IO.ConfigMemoryCompactTimer; + for (ImGuiWindow* window : g.Windows) + { + window->WasActive = window->Active; + window->Active = false; + window->WriteAccessed = false; + window->BeginCountPreviousFrame = window->BeginCount; + window->BeginCount = 0; + + // Garbage collect transient buffers of recently unused windows + if (!window->WasActive && !window->MemoryCompacted && window->LastTimeActive < memory_compact_start_time) + GcCompactTransientWindowBuffers(window); + } + + // Garbage collect transient buffers of recently unused tables + for (int i = 0; i < g.TablesLastTimeActive.Size; i++) + if (g.TablesLastTimeActive[i] >= 0.0f && g.TablesLastTimeActive[i] < memory_compact_start_time) + TableGcCompactTransientBuffers(g.Tables.GetByIndex(i)); + for (ImGuiTableTempData& table_temp_data : g.TablesTempData) + if (table_temp_data.LastTimeActive >= 0.0f && table_temp_data.LastTimeActive < memory_compact_start_time) + TableGcCompactTransientBuffers(&table_temp_data); + if (g.GcCompactAll) + GcCompactTransientMiscBuffers(); + g.GcCompactAll = false; + + // Closing the focused window restore focus to the first active root window in descending z-order + if (g.NavWindow && !g.NavWindow->WasActive) + FocusTopMostWindowUnderOne(NULL, NULL, NULL, ImGuiFocusRequestFlags_RestoreFocusedChild); + + // No window should be open at the beginning of the frame. + // But in order to allow the user to call NewFrame() multiple times without calling Render(), we are doing an explicit clear. + g.CurrentWindowStack.resize(0); + g.BeginPopupStack.resize(0); + g.ItemFlagsStack.resize(0); + g.ItemFlagsStack.push_back(ImGuiItemFlags_AutoClosePopups); // Default flags + g.CurrentItemFlags = g.ItemFlagsStack.back(); + g.GroupStack.resize(0); + + // [DEBUG] Update debug features +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + UpdateDebugToolItemPicker(); + UpdateDebugToolStackQueries(); + UpdateDebugToolFlashStyleColor(); + if (g.DebugLocateFrames > 0 && --g.DebugLocateFrames == 0) + { + g.DebugLocateId = 0; + g.DebugBreakInLocateId = false; + } + if (g.DebugLogAutoDisableFrames > 0 && --g.DebugLogAutoDisableFrames == 0) + { + DebugLog("(Debug Log: Auto-disabled some ImGuiDebugLogFlags after 2 frames)\n"); + g.DebugLogFlags &= ~g.DebugLogAutoDisableFlags; + g.DebugLogAutoDisableFlags = ImGuiDebugLogFlags_None; + } +#endif + + // Create implicit/fallback window - which we will only render it if the user has added something to it. + // We don't use "Debug" to avoid colliding with user trying to create a "Debug" window with custom flags. + // This fallback is particularly important as it prevents ImGui:: calls from crashing. + g.WithinFrameScopeWithImplicitWindow = true; + SetNextWindowSize(ImVec2(400, 400), ImGuiCond_FirstUseEver); + Begin("Debug##Default"); + IM_ASSERT(g.CurrentWindow->IsFallbackWindow == true); + + // [DEBUG] When io.ConfigDebugBeginReturnValue is set, we make Begin()/BeginChild() return false at different level of the window-stack, + // allowing to validate correct Begin/End behavior in user code. +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (g.IO.ConfigDebugBeginReturnValueLoop) + g.DebugBeginReturnValueCullDepth = (g.DebugBeginReturnValueCullDepth == -1) ? 0 : ((g.DebugBeginReturnValueCullDepth + ((g.FrameCount % 4) == 0 ? 1 : 0)) % 10); + else + g.DebugBeginReturnValueCullDepth = -1; +#endif + + CallContextHooks(&g, ImGuiContextHookType_NewFramePost); +} + +// FIXME: Add a more explicit sort order in the window structure. +static int IMGUI_CDECL ChildWindowComparer(const void* lhs, const void* rhs) +{ + const ImGuiWindow* const a = *(const ImGuiWindow* const *)lhs; + const ImGuiWindow* const b = *(const ImGuiWindow* const *)rhs; + if (int d = (a->Flags & ImGuiWindowFlags_Popup) - (b->Flags & ImGuiWindowFlags_Popup)) + return d; + if (int d = (a->Flags & ImGuiWindowFlags_Tooltip) - (b->Flags & ImGuiWindowFlags_Tooltip)) + return d; + return (a->BeginOrderWithinParent - b->BeginOrderWithinParent); +} + +static void AddWindowToSortBuffer(ImVector* out_sorted_windows, ImGuiWindow* window) +{ + out_sorted_windows->push_back(window); + if (window->Active) + { + int count = window->DC.ChildWindows.Size; + ImQsort(window->DC.ChildWindows.Data, (size_t)count, sizeof(ImGuiWindow*), ChildWindowComparer); + for (int i = 0; i < count; i++) + { + ImGuiWindow* child = window->DC.ChildWindows[i]; + if (child->Active) + AddWindowToSortBuffer(out_sorted_windows, child); + } + } +} + +static void AddWindowToDrawData(ImGuiWindow* window, int layer) +{ + ImGuiContext& g = *GImGui; + ImGuiViewportP* viewport = g.Viewports[0]; + g.IO.MetricsRenderWindows++; + if (window->DrawList->_Splitter._Count > 1) + window->DrawList->ChannelsMerge(); // Merge if user forgot to merge back. Also required in Docking branch for ImGuiWindowFlags_DockNodeHost windows. + ImGui::AddDrawListToDrawDataEx(&viewport->DrawDataP, viewport->DrawDataBuilder.Layers[layer], window->DrawList); + for (ImGuiWindow* child : window->DC.ChildWindows) + if (IsWindowActiveAndVisible(child)) // Clipped children may have been marked not active + AddWindowToDrawData(child, layer); +} + +static inline int GetWindowDisplayLayer(ImGuiWindow* window) +{ + return (window->Flags & ImGuiWindowFlags_Tooltip) ? 1 : 0; +} + +// Layer is locked for the root window, however child windows may use a different viewport (e.g. extruding menu) +static inline void AddRootWindowToDrawData(ImGuiWindow* window) +{ + AddWindowToDrawData(window, GetWindowDisplayLayer(window)); +} + +static void FlattenDrawDataIntoSingleLayer(ImDrawDataBuilder* builder) +{ + int n = builder->Layers[0]->Size; + int full_size = n; + for (int i = 1; i < IM_ARRAYSIZE(builder->Layers); i++) + full_size += builder->Layers[i]->Size; + builder->Layers[0]->resize(full_size); + for (int layer_n = 1; layer_n < IM_ARRAYSIZE(builder->Layers); layer_n++) + { + ImVector* layer = builder->Layers[layer_n]; + if (layer->empty()) + continue; + memcpy(builder->Layers[0]->Data + n, layer->Data, layer->Size * sizeof(ImDrawList*)); + n += layer->Size; + layer->resize(0); + } +} + +static void InitViewportDrawData(ImGuiViewportP* viewport) +{ + ImGuiIO& io = ImGui::GetIO(); + ImDrawData* draw_data = &viewport->DrawDataP; + + viewport->DrawDataBuilder.Layers[0] = &draw_data->CmdLists; + viewport->DrawDataBuilder.Layers[1] = &viewport->DrawDataBuilder.LayerData1; + viewport->DrawDataBuilder.Layers[0]->resize(0); + viewport->DrawDataBuilder.Layers[1]->resize(0); + + draw_data->Valid = true; + draw_data->CmdListsCount = 0; + draw_data->TotalVtxCount = draw_data->TotalIdxCount = 0; + draw_data->DisplayPos = viewport->Pos; + draw_data->DisplaySize = viewport->Size; + draw_data->FramebufferScale = io.DisplayFramebufferScale; + draw_data->OwnerViewport = viewport; +} + +// Push a clipping rectangle for both ImGui logic (hit-testing etc.) and low-level ImDrawList rendering. +// - When using this function it is sane to ensure that float are perfectly rounded to integer values, +// so that e.g. (int)(max.x-min.x) in user's render produce correct result. +// - If the code here changes, may need to update code of functions like NextColumn() and PushColumnClipRect(): +// some frequently called functions which to modify both channels and clipping simultaneously tend to use the +// more specialized SetWindowClipRectBeforeSetChannel() to avoid extraneous updates of underlying ImDrawCmds. +// - This is analoguous to PushFont()/PopFont() in the sense that are a mixing a global stack and a window stack, +// which in the case of ClipRect is not so problematic but tends to be more restrictive for fonts. +void ImGui::PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DrawList->PushClipRect(clip_rect_min, clip_rect_max, intersect_with_current_clip_rect); + window->ClipRect = window->DrawList->_ClipRectStack.back(); +} + +void ImGui::PopClipRect() +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DrawList->PopClipRect(); + window->ClipRect = window->DrawList->_ClipRectStack.back(); +} + +static void ImGui::RenderDimmedBackgroundBehindWindow(ImGuiWindow* window, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + ImGuiViewportP* viewport = (ImGuiViewportP*)GetMainViewport(); + ImRect viewport_rect = viewport->GetMainRect(); + + // Draw behind window by moving the draw command at the FRONT of the draw list + { + // We've already called AddWindowToDrawData() which called DrawList->ChannelsMerge() on DockNodeHost windows, + // and draw list have been trimmed already, hence the explicit recreation of a draw command if missing. + // FIXME: This is creating complication, might be simpler if we could inject a drawlist in drawdata at a given position and not attempt to manipulate ImDrawCmd order. + ImDrawList* draw_list = window->RootWindow->DrawList; + if (draw_list->CmdBuffer.Size == 0) + draw_list->AddDrawCmd(); + draw_list->PushClipRect(viewport_rect.Min - ImVec2(1, 1), viewport_rect.Max + ImVec2(1, 1), false); // FIXME: Need to stricty ensure ImDrawCmd are not merged (ElemCount==6 checks below will verify that) + draw_list->AddRectFilled(viewport_rect.Min, viewport_rect.Max, col); + ImDrawCmd cmd = draw_list->CmdBuffer.back(); + IM_ASSERT(cmd.ElemCount == 6); + draw_list->CmdBuffer.pop_back(); + draw_list->CmdBuffer.push_front(cmd); + draw_list->AddDrawCmd(); // We need to create a command as CmdBuffer.back().IdxOffset won't be correct if we append to same command. + draw_list->PopClipRect(); + } +} + +ImGuiWindow* ImGui::FindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* parent_window) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* bottom_most_visible_window = parent_window; + for (int i = FindWindowDisplayIndex(parent_window); i >= 0; i--) + { + ImGuiWindow* window = g.Windows[i]; + if (window->Flags & ImGuiWindowFlags_ChildWindow) + continue; + if (!IsWindowWithinBeginStackOf(window, parent_window)) + break; + if (IsWindowActiveAndVisible(window) && GetWindowDisplayLayer(window) <= GetWindowDisplayLayer(parent_window)) + bottom_most_visible_window = window; + } + return bottom_most_visible_window; +} + +static void ImGui::RenderDimmedBackgrounds() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* modal_window = GetTopMostAndVisiblePopupModal(); + if (g.DimBgRatio <= 0.0f && g.NavWindowingHighlightAlpha <= 0.0f) + return; + const bool dim_bg_for_modal = (modal_window != NULL); + const bool dim_bg_for_window_list = (g.NavWindowingTargetAnim != NULL && g.NavWindowingTargetAnim->Active); + if (!dim_bg_for_modal && !dim_bg_for_window_list) + return; + + if (dim_bg_for_modal) + { + // Draw dimming behind modal or a begin stack child, whichever comes first in draw order. + ImGuiWindow* dim_behind_window = FindBottomMostVisibleWindowWithinBeginStack(modal_window); + RenderDimmedBackgroundBehindWindow(dim_behind_window, GetColorU32(modal_window->DC.ModalDimBgColor, g.DimBgRatio)); + } + else if (dim_bg_for_window_list) + { + // Draw dimming behind CTRL+Tab target window and behind CTRL+Tab UI window + RenderDimmedBackgroundBehindWindow(g.NavWindowingTargetAnim, GetColorU32(ImGuiCol_NavWindowingDimBg, g.DimBgRatio)); + + // Draw border around CTRL+Tab target window + ImGuiWindow* window = g.NavWindowingTargetAnim; + ImGuiViewport* viewport = GetMainViewport(); + float distance = g.FontSize; + ImRect bb = window->Rect(); + bb.Expand(distance); + if (bb.GetWidth() >= viewport->Size.x && bb.GetHeight() >= viewport->Size.y) + bb.Expand(-distance - 1.0f); // If a window fits the entire viewport, adjust its highlight inward + if (window->DrawList->CmdBuffer.Size == 0) + window->DrawList->AddDrawCmd(); + window->DrawList->PushClipRect(viewport->Pos, viewport->Pos + viewport->Size); + window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_NavWindowingHighlight, g.NavWindowingHighlightAlpha), window->WindowRounding, 0, 3.0f); + window->DrawList->PopClipRect(); + } +} + +// This is normally called by Render(). You may want to call it directly if you want to avoid calling Render() but the gain will be very minimal. +void ImGui::EndFrame() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Initialized); + + // Don't process EndFrame() multiple times. + if (g.FrameCountEnded == g.FrameCount) + return; + IM_ASSERT(g.WithinFrameScope && "Forgot to call ImGui::NewFrame()?"); + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (g.DebugDrawIdConflicts != 0) + { + PushStyleColor(ImGuiCol_PopupBg, ImLerp(g.Style.Colors[ImGuiCol_PopupBg], ImVec4(1.0f, 0.0f, 0.0f, 1.0f), 0.10f)); + if (g.DebugItemPickerActive == false && BeginTooltipEx(ImGuiTooltipFlags_OverridePrevious, ImGuiWindowFlags_None)) + { + SeparatorText("MESSAGE FROM DEAR IMGUI"); + Text("Programmer error: %d visible items with conflicting ID!", g.HoveredIdPreviousFrameItemCount); + BulletText("Code should use PushID()/PopID() in loops, or append \"##xx\" to same-label identifiers!"); + BulletText("Empty label e.g. Button(\"\") == same ID as parent widget/node. Use Button(\"##xx\") instead!"); + BulletText("Press F1 to open \"FAQ -> About the ID Stack System\" and read details."); + BulletText("Press CTRL+P to activate Item Picker and debug-break in item call-stack."); + BulletText("Set io.ConfigDebugDetectIdConflicts=false to disable this warning in non-programmers builds."); + EndTooltip(); + } + PopStyleColor(); + if (Shortcut(ImGuiMod_Ctrl | ImGuiKey_P, ImGuiInputFlags_RouteGlobal)) + DebugStartItemPicker(); + if (Shortcut(ImGuiKey_F1, ImGuiInputFlags_RouteGlobal) && g.PlatformIO.Platform_OpenInShellFn != NULL) + g.PlatformIO.Platform_OpenInShellFn(&g, "https://github.com/ocornut/imgui/blob/master/docs/FAQ.md#qa-usage"); + } +#endif + + CallContextHooks(&g, ImGuiContextHookType_EndFramePre); + + ErrorCheckEndFrameSanityChecks(); + + // Notify Platform/OS when our Input Method Editor cursor has moved (e.g. CJK inputs using Microsoft IME) + ImGuiPlatformImeData* ime_data = &g.PlatformImeData; + if (g.PlatformIO.Platform_SetImeDataFn != NULL && memcmp(ime_data, &g.PlatformImeDataPrev, sizeof(ImGuiPlatformImeData)) != 0) + { + IMGUI_DEBUG_LOG_IO("[io] Calling Platform_SetImeDataFn(): WantVisible: %d, InputPos (%.2f,%.2f)\n", ime_data->WantVisible, ime_data->InputPos.x, ime_data->InputPos.y); + ImGuiViewport* viewport = GetMainViewport(); + g.PlatformIO.Platform_SetImeDataFn(&g, viewport, ime_data); + } + + // Hide implicit/fallback "Debug" window if it hasn't been used + g.WithinFrameScopeWithImplicitWindow = false; + if (g.CurrentWindow && !g.CurrentWindow->WriteAccessed) + g.CurrentWindow->Active = false; + End(); + + // Update navigation: CTRL+Tab, wrap-around requests + NavEndFrame(); + + // Drag and Drop: Elapse payload (if delivered, or if source stops being submitted) + if (g.DragDropActive) + { + bool is_delivered = g.DragDropPayload.Delivery; + bool is_elapsed = (g.DragDropSourceFrameCount + 1 < g.FrameCount) && ((g.DragDropSourceFlags & ImGuiDragDropFlags_PayloadAutoExpire) || g.DragDropMouseButton == -1 || !IsMouseDown(g.DragDropMouseButton)); + if (is_delivered || is_elapsed) + ClearDragDrop(); + } + + // Drag and Drop: Fallback for missing source tooltip. This is not ideal but better than nothing. + // If you want to handle source item disappearing: instead of submitting your description tooltip + // in the BeginDragDropSource() block of the dragged item, you can submit them from a safe single spot + // (e.g. end of your item loop, or before EndFrame) by reading payload data. + // In the typical case, the contents of drag tooltip should be possible to infer solely from payload data. + if (g.DragDropActive && g.DragDropSourceFrameCount < g.FrameCount && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoPreviewTooltip)) + { + g.DragDropWithinSource = true; + SetTooltip("..."); + g.DragDropWithinSource = false; + } + + // End frame + g.WithinFrameScope = false; + g.FrameCountEnded = g.FrameCount; + + // Initiate moving window + handle left-click and right-click focus + UpdateMouseMovingWindowEndFrame(); + + // Sort the window list so that all child windows are after their parent + // We cannot do that on FocusWindow() because children may not exist yet + g.WindowsTempSortBuffer.resize(0); + g.WindowsTempSortBuffer.reserve(g.Windows.Size); + for (ImGuiWindow* window : g.Windows) + { + if (window->Active && (window->Flags & ImGuiWindowFlags_ChildWindow)) // if a child is active its parent will add it + continue; + AddWindowToSortBuffer(&g.WindowsTempSortBuffer, window); + } + + // This usually assert if there is a mismatch between the ImGuiWindowFlags_ChildWindow / ParentWindow values and DC.ChildWindows[] in parents, aka we've done something wrong. + IM_ASSERT(g.Windows.Size == g.WindowsTempSortBuffer.Size); + g.Windows.swap(g.WindowsTempSortBuffer); + g.IO.MetricsActiveWindows = g.WindowsActiveCount; + + // Unlock font atlas + g.IO.Fonts->Locked = false; + + // Clear Input data for next frame + g.IO.MousePosPrev = g.IO.MousePos; + g.IO.AppFocusLost = false; + g.IO.MouseWheel = g.IO.MouseWheelH = 0.0f; + g.IO.InputQueueCharacters.resize(0); + + CallContextHooks(&g, ImGuiContextHookType_EndFramePost); +} + +// Prepare the data for rendering so you can call GetDrawData() +// (As with anything within the ImGui:: namspace this doesn't touch your GPU or graphics API at all: +// it is the role of the ImGui_ImplXXXX_RenderDrawData() function provided by the renderer backend) +void ImGui::Render() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Initialized); + + if (g.FrameCountEnded != g.FrameCount) + EndFrame(); + if (g.FrameCountRendered == g.FrameCount) + return; + g.FrameCountRendered = g.FrameCount; + + g.IO.MetricsRenderWindows = 0; + CallContextHooks(&g, ImGuiContextHookType_RenderPre); + + // Add background ImDrawList (for each active viewport) + for (ImGuiViewportP* viewport : g.Viewports) + { + InitViewportDrawData(viewport); + if (viewport->BgFgDrawLists[0] != NULL) + AddDrawListToDrawDataEx(&viewport->DrawDataP, viewport->DrawDataBuilder.Layers[0], GetBackgroundDrawList(viewport)); + } + + // Draw modal/window whitening backgrounds + RenderDimmedBackgrounds(); + + // Add ImDrawList to render + ImGuiWindow* windows_to_render_top_most[2]; + windows_to_render_top_most[0] = (g.NavWindowingTarget && !(g.NavWindowingTarget->Flags & ImGuiWindowFlags_NoBringToFrontOnFocus)) ? g.NavWindowingTarget->RootWindow : NULL; + windows_to_render_top_most[1] = (g.NavWindowingTarget ? g.NavWindowingListWindow : NULL); + for (ImGuiWindow* window : g.Windows) + { + IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'" + if (IsWindowActiveAndVisible(window) && (window->Flags & ImGuiWindowFlags_ChildWindow) == 0 && window != windows_to_render_top_most[0] && window != windows_to_render_top_most[1]) + AddRootWindowToDrawData(window); + } + for (int n = 0; n < IM_ARRAYSIZE(windows_to_render_top_most); n++) + if (windows_to_render_top_most[n] && IsWindowActiveAndVisible(windows_to_render_top_most[n])) // NavWindowingTarget is always temporarily displayed as the top-most window + AddRootWindowToDrawData(windows_to_render_top_most[n]); + + // Draw software mouse cursor if requested by io.MouseDrawCursor flag + if (g.IO.MouseDrawCursor && g.MouseCursor != ImGuiMouseCursor_None) + RenderMouseCursor(g.IO.MousePos, g.Style.MouseCursorScale, g.MouseCursor, IM_COL32_WHITE, IM_COL32_BLACK, IM_COL32(0, 0, 0, 48)); + + // Setup ImDrawData structures for end-user + g.IO.MetricsRenderVertices = g.IO.MetricsRenderIndices = 0; + for (ImGuiViewportP* viewport : g.Viewports) + { + FlattenDrawDataIntoSingleLayer(&viewport->DrawDataBuilder); + + // Add foreground ImDrawList (for each active viewport) + if (viewport->BgFgDrawLists[1] != NULL) + AddDrawListToDrawDataEx(&viewport->DrawDataP, viewport->DrawDataBuilder.Layers[0], GetForegroundDrawList(viewport)); + + // We call _PopUnusedDrawCmd() last thing, as RenderDimmedBackgrounds() rely on a valid command being there (especially in docking branch). + ImDrawData* draw_data = &viewport->DrawDataP; + IM_ASSERT(draw_data->CmdLists.Size == draw_data->CmdListsCount); + for (ImDrawList* draw_list : draw_data->CmdLists) + draw_list->_PopUnusedDrawCmd(); + + g.IO.MetricsRenderVertices += draw_data->TotalVtxCount; + g.IO.MetricsRenderIndices += draw_data->TotalIdxCount; + } + + CallContextHooks(&g, ImGuiContextHookType_RenderPost); +} + +// Calculate text size. Text can be multi-line. Optionally ignore text after a ## marker. +// CalcTextSize("") should return ImVec2(0.0f, g.FontSize) +ImVec2 ImGui::CalcTextSize(const char* text, const char* text_end, bool hide_text_after_double_hash, float wrap_width) +{ + ImGuiContext& g = *GImGui; + + const char* text_display_end; + if (hide_text_after_double_hash) + text_display_end = FindRenderedTextEnd(text, text_end); // Hide anything after a '##' string + else + text_display_end = text_end; + + ImFont* font = g.Font; + const float font_size = g.FontSize; + if (text == text_display_end) + return ImVec2(0.0f, font_size); + ImVec2 text_size = font->CalcTextSizeA(font_size, FLT_MAX, wrap_width, text, text_display_end, NULL); + + // Round + // FIXME: This has been here since Dec 2015 (7b0bf230) but down the line we want this out. + // FIXME: Investigate using ceilf or e.g. + // - https://git.musl-libc.org/cgit/musl/tree/src/math/ceilf.c + // - https://embarkstudios.github.io/rust-gpu/api/src/libm/math/ceilf.rs.html + text_size.x = IM_TRUNC(text_size.x + 0.99999f); + + return text_size; +} + +// Find window given position, search front-to-back +// - Typically write output back to g.HoveredWindow and g.HoveredWindowUnderMovingWindow. +// - FIXME: Note that we have an inconsequential lag here: OuterRectClipped is updated in Begin(), so windows moved programmatically +// with SetWindowPos() and not SetNextWindowPos() will have that rectangle lagging by a frame at the time FindHoveredWindow() is +// called, aka before the next Begin(). Moving window isn't affected. +// - The 'find_first_and_in_any_viewport = true' mode is only used by TestEngine. It is simpler to maintain here. +void ImGui::FindHoveredWindowEx(const ImVec2& pos, bool find_first_and_in_any_viewport, ImGuiWindow** out_hovered_window, ImGuiWindow** out_hovered_window_under_moving_window) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* hovered_window = NULL; + ImGuiWindow* hovered_window_under_moving_window = NULL; + + if (find_first_and_in_any_viewport == false && g.MovingWindow && !(g.MovingWindow->Flags & ImGuiWindowFlags_NoMouseInputs)) + hovered_window = g.MovingWindow; + + ImVec2 padding_regular = g.Style.TouchExtraPadding; + ImVec2 padding_for_resize = g.IO.ConfigWindowsResizeFromEdges ? g.WindowsHoverPadding : padding_regular; + for (int i = g.Windows.Size - 1; i >= 0; i--) + { + ImGuiWindow* window = g.Windows[i]; + IM_MSVC_WARNING_SUPPRESS(28182); // [Static Analyzer] Dereferencing NULL pointer. + if (!window->Active || window->Hidden) + continue; + if (window->Flags & ImGuiWindowFlags_NoMouseInputs) + continue; + + // Using the clipped AABB, a child window will typically be clipped by its parent (not always) + ImVec2 hit_padding = (window->Flags & (ImGuiWindowFlags_NoResize | ImGuiWindowFlags_AlwaysAutoResize)) ? padding_regular : padding_for_resize; + if (!window->OuterRectClipped.ContainsWithPad(pos, hit_padding)) + continue; + + // Support for one rectangular hole in any given window + // FIXME: Consider generalizing hit-testing override (with more generic data, callback, etc.) (#1512) + if (window->HitTestHoleSize.x != 0) + { + ImVec2 hole_pos(window->Pos.x + (float)window->HitTestHoleOffset.x, window->Pos.y + (float)window->HitTestHoleOffset.y); + ImVec2 hole_size((float)window->HitTestHoleSize.x, (float)window->HitTestHoleSize.y); + if (ImRect(hole_pos, hole_pos + hole_size).Contains(pos)) + continue; + } + + if (find_first_and_in_any_viewport) + { + hovered_window = window; + break; + } + else + { + if (hovered_window == NULL) + hovered_window = window; + IM_MSVC_WARNING_SUPPRESS(28182); // [Static Analyzer] Dereferencing NULL pointer. + if (hovered_window_under_moving_window == NULL && (!g.MovingWindow || window->RootWindow != g.MovingWindow->RootWindow)) + hovered_window_under_moving_window = window; + if (hovered_window && hovered_window_under_moving_window) + break; + } + } + + *out_hovered_window = hovered_window; + if (out_hovered_window_under_moving_window != NULL) + *out_hovered_window_under_moving_window = hovered_window_under_moving_window; +} + +bool ImGui::IsItemActive() +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId) + return g.ActiveId == g.LastItemData.ID; + return false; +} + +bool ImGui::IsItemActivated() +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId) + if (g.ActiveId == g.LastItemData.ID && g.ActiveIdPreviousFrame != g.LastItemData.ID) + return true; + return false; +} + +bool ImGui::IsItemDeactivated() +{ + ImGuiContext& g = *GImGui; + if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasDeactivated) + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Deactivated) != 0; + return (g.ActiveIdPreviousFrame == g.LastItemData.ID && g.ActiveIdPreviousFrame != 0 && g.ActiveId != g.LastItemData.ID); +} + +bool ImGui::IsItemDeactivatedAfterEdit() +{ + ImGuiContext& g = *GImGui; + return IsItemDeactivated() && (g.ActiveIdPreviousFrameHasBeenEditedBefore || (g.ActiveId == 0 && g.ActiveIdHasBeenEditedBefore)); +} + +// == GetItemID() == GetFocusID() +bool ImGui::IsItemFocused() +{ + ImGuiContext& g = *GImGui; + if (g.NavId != g.LastItemData.ID || g.NavId == 0) + return false; + return true; +} + +// Important: this can be useful but it is NOT equivalent to the behavior of e.g.Button()! +// Most widgets have specific reactions based on mouse-up/down state, mouse position etc. +bool ImGui::IsItemClicked(ImGuiMouseButton mouse_button) +{ + return IsMouseClicked(mouse_button) && IsItemHovered(ImGuiHoveredFlags_None); +} + +bool ImGui::IsItemToggledOpen() +{ + ImGuiContext& g = *GImGui; + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_ToggledOpen) ? true : false; +} + +// Call after a Selectable() or TreeNode() involved in multi-selection. +// Useful if you need the per-item information before reaching EndMultiSelect(), e.g. for rendering purpose. +// This is only meant to be called inside a BeginMultiSelect()/EndMultiSelect() block. +// (Outside of multi-select, it would be misleading/ambiguous to report this signal, as widgets +// return e.g. a pressed event and user code is in charge of altering selection in ways we cannot predict.) +bool ImGui::IsItemToggledSelection() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.CurrentMultiSelect != NULL); // Can only be used inside a BeginMultiSelect()/EndMultiSelect() + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_ToggledSelection) ? true : false; +} + +// IMPORTANT: If you are trying to check whether your mouse should be dispatched to Dear ImGui or to your underlying app, +// you should not use this function! Use the 'io.WantCaptureMouse' boolean for that! +// Refer to FAQ entry "How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application?" for details. +bool ImGui::IsAnyItemHovered() +{ + ImGuiContext& g = *GImGui; + return g.HoveredId != 0 || g.HoveredIdPreviousFrame != 0; +} + +bool ImGui::IsAnyItemActive() +{ + ImGuiContext& g = *GImGui; + return g.ActiveId != 0; +} + +bool ImGui::IsAnyItemFocused() +{ + ImGuiContext& g = *GImGui; + return g.NavId != 0 && !g.NavDisableHighlight; +} + +bool ImGui::IsItemVisible() +{ + ImGuiContext& g = *GImGui; + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible) != 0; +} + +bool ImGui::IsItemEdited() +{ + ImGuiContext& g = *GImGui; + return (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Edited) != 0; +} + +// Allow next item to be overlapped by subsequent items. +// This works by requiring HoveredId to match for two subsequent frames, +// so if a following items overwrite it our interactions will naturally be disabled. +void ImGui::SetNextItemAllowOverlap() +{ + ImGuiContext& g = *GImGui; + g.NextItemData.ItemFlags |= ImGuiItemFlags_AllowOverlap; +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +// Allow last item to be overlapped by a subsequent item. Both may be activated during the same frame before the later one takes priority. +// FIXME-LEGACY: Use SetNextItemAllowOverlap() *before* your item instead. +void ImGui::SetItemAllowOverlap() +{ + ImGuiContext& g = *GImGui; + ImGuiID id = g.LastItemData.ID; + if (g.HoveredId == id) + g.HoveredIdAllowOverlap = true; + if (g.ActiveId == id) // Before we made this obsolete, most calls to SetItemAllowOverlap() used to avoid this path by testing g.ActiveId != id. + g.ActiveIdAllowOverlap = true; +} +#endif + +// This is a shortcut for not taking ownership of 100+ keys, frequently used by drag operations. +// FIXME: It might be undesirable that this will likely disable KeyOwner-aware shortcuts systems. Consider a more fine-tuned version if needed? +void ImGui::SetActiveIdUsingAllKeyboardKeys() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ActiveId != 0); + g.ActiveIdUsingNavDirMask = (1 << ImGuiDir_COUNT) - 1; + g.ActiveIdUsingAllKeyboardKeys = true; + NavMoveRequestCancel(); +} + +ImGuiID ImGui::GetItemID() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.ID; +} + +ImVec2 ImGui::GetItemRectMin() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.Rect.Min; +} + +ImVec2 ImGui::GetItemRectMax() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.Rect.Max; +} + +ImVec2 ImGui::GetItemRectSize() +{ + ImGuiContext& g = *GImGui; + return g.LastItemData.Rect.GetSize(); +} + +// Prior to v1.90 2023/10/16, the BeginChild() function took a 'bool border = false' parameter instead of 'ImGuiChildFlags child_flags = 0'. +// ImGuiChildFlags_Borders is defined as always == 1 in order to allow old code passing 'true'. Read comments in imgui.h for details! +bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) +{ + ImGuiID id = GetCurrentWindow()->GetID(str_id); + return BeginChildEx(str_id, id, size_arg, child_flags, window_flags); +} + +bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) +{ + return BeginChildEx(NULL, id, size_arg, child_flags, window_flags); +} + +bool ImGui::BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* parent_window = g.CurrentWindow; + IM_ASSERT(id != 0); + + // Sanity check as it is likely that some user will accidentally pass ImGuiWindowFlags into the ImGuiChildFlags argument. + const ImGuiChildFlags ImGuiChildFlags_SupportedMask_ = ImGuiChildFlags_Borders | ImGuiChildFlags_AlwaysUseWindowPadding | ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY | ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY | ImGuiChildFlags_AlwaysAutoResize | ImGuiChildFlags_FrameStyle | ImGuiChildFlags_NavFlattened; + IM_UNUSED(ImGuiChildFlags_SupportedMask_); + IM_ASSERT((child_flags & ~ImGuiChildFlags_SupportedMask_) == 0 && "Illegal ImGuiChildFlags value. Did you pass ImGuiWindowFlags values instead of ImGuiChildFlags?"); + IM_ASSERT((window_flags & ImGuiWindowFlags_AlwaysAutoResize) == 0 && "Cannot specify ImGuiWindowFlags_AlwaysAutoResize for BeginChild(). Use ImGuiChildFlags_AlwaysAutoResize!"); + if (child_flags & ImGuiChildFlags_AlwaysAutoResize) + { + IM_ASSERT((child_flags & (ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY)) == 0 && "Cannot use ImGuiChildFlags_ResizeX or ImGuiChildFlags_ResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + IM_ASSERT((child_flags & (ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY)) != 0 && "Must use ImGuiChildFlags_AutoResizeX or ImGuiChildFlags_AutoResizeY with ImGuiChildFlags_AlwaysAutoResize!"); + } +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + if (window_flags & ImGuiWindowFlags_AlwaysUseWindowPadding) + child_flags |= ImGuiChildFlags_AlwaysUseWindowPadding; + if (window_flags & ImGuiWindowFlags_NavFlattened) + child_flags |= ImGuiChildFlags_NavFlattened; +#endif + if (child_flags & ImGuiChildFlags_AutoResizeX) + child_flags &= ~ImGuiChildFlags_ResizeX; + if (child_flags & ImGuiChildFlags_AutoResizeY) + child_flags &= ~ImGuiChildFlags_ResizeY; + + // Set window flags + window_flags |= ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_NoTitleBar; + window_flags |= (parent_window->Flags & ImGuiWindowFlags_NoMove); // Inherit the NoMove flag + if (child_flags & (ImGuiChildFlags_AutoResizeX | ImGuiChildFlags_AutoResizeY | ImGuiChildFlags_AlwaysAutoResize)) + window_flags |= ImGuiWindowFlags_AlwaysAutoResize; + if ((child_flags & (ImGuiChildFlags_ResizeX | ImGuiChildFlags_ResizeY)) == 0) + window_flags |= ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings; + + // Special framed style + if (child_flags & ImGuiChildFlags_FrameStyle) + { + PushStyleColor(ImGuiCol_ChildBg, g.Style.Colors[ImGuiCol_FrameBg]); + PushStyleVar(ImGuiStyleVar_ChildRounding, g.Style.FrameRounding); + PushStyleVar(ImGuiStyleVar_ChildBorderSize, g.Style.FrameBorderSize); + PushStyleVar(ImGuiStyleVar_WindowPadding, g.Style.FramePadding); + child_flags |= ImGuiChildFlags_Borders | ImGuiChildFlags_AlwaysUseWindowPadding; + window_flags |= ImGuiWindowFlags_NoMove; + } + + // Forward child flags + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasChildFlags; + g.NextWindowData.ChildFlags = child_flags; + + // Forward size + // Important: Begin() has special processing to switch condition to ImGuiCond_FirstUseEver for a given axis when ImGuiChildFlags_ResizeXXX is set. + // (the alternative would to store conditional flags per axis, which is possible but more code) + const ImVec2 size_avail = GetContentRegionAvail(); + const ImVec2 size_default((child_flags & ImGuiChildFlags_AutoResizeX) ? 0.0f : size_avail.x, (child_flags & ImGuiChildFlags_AutoResizeY) ? 0.0f : size_avail.y); + const ImVec2 size = CalcItemSize(size_arg, size_default.x, size_default.y); + SetNextWindowSize(size); + + // Build up name. If you need to append to a same child from multiple location in the ID stack, use BeginChild(ImGuiID id) with a stable value. + // FIXME: 2023/11/14: commented out shorted version. We had an issue with multiple ### in child window path names, which the trailing hash helped workaround. + // e.g. "ParentName###ParentIdentifier/ChildName###ChildIdentifier" would get hashed incorrectly by ImHashStr(), trailing _%08X somehow fixes it. + const char* temp_window_name; + /*if (name && parent_window->IDStack.back() == parent_window->ID) + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%s", parent_window->Name, name); // May omit ID if in root of ID stack + else*/ + if (name) + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%s_%08X", parent_window->Name, name, id); + else + ImFormatStringToTempBuffer(&temp_window_name, NULL, "%s/%08X", parent_window->Name, id); + + // Set style + const float backup_border_size = g.Style.ChildBorderSize; + if ((child_flags & ImGuiChildFlags_Borders) == 0) + g.Style.ChildBorderSize = 0.0f; + + // Begin into window + const bool ret = Begin(temp_window_name, NULL, window_flags); + + // Restore style + g.Style.ChildBorderSize = backup_border_size; + if (child_flags & ImGuiChildFlags_FrameStyle) + { + PopStyleVar(3); + PopStyleColor(); + } + + ImGuiWindow* child_window = g.CurrentWindow; + child_window->ChildId = id; + + // Set the cursor to handle case where the user called SetNextWindowPos()+BeginChild() manually. + // While this is not really documented/defined, it seems that the expected thing to do. + if (child_window->BeginCount == 1) + parent_window->DC.CursorPos = child_window->Pos; + + // Process navigation-in immediately so NavInit can run on first frame + // Can enter a child if (A) it has navigable items or (B) it can be scrolled. + const ImGuiID temp_id_for_activation = ImHashStr("##Child", 0, id); + if (g.ActiveId == temp_id_for_activation) + ClearActiveID(); + if (g.NavActivateId == id && !(child_flags & ImGuiChildFlags_NavFlattened) && (child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY)) + { + FocusWindow(child_window); + NavInitWindow(child_window, false); + SetActiveID(temp_id_for_activation, child_window); // Steal ActiveId with another arbitrary id so that key-press won't activate child item + g.ActiveIdSource = g.NavInputSource; + } + return ret; +} + +void ImGui::EndChild() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* child_window = g.CurrentWindow; + + IM_ASSERT(g.WithinEndChild == false); + IM_ASSERT(child_window->Flags & ImGuiWindowFlags_ChildWindow); // Mismatched BeginChild()/EndChild() calls + + g.WithinEndChild = true; + ImVec2 child_size = child_window->Size; + End(); + if (child_window->BeginCount == 1) + { + ImGuiWindow* parent_window = g.CurrentWindow; + ImRect bb(parent_window->DC.CursorPos, parent_window->DC.CursorPos + child_size); + ItemSize(child_size); + const bool nav_flattened = (child_window->ChildFlags & ImGuiChildFlags_NavFlattened) != 0; + if ((child_window->DC.NavLayersActiveMask != 0 || child_window->DC.NavWindowHasScrollY) && !nav_flattened) + { + ItemAdd(bb, child_window->ChildId); + RenderNavHighlight(bb, child_window->ChildId); + + // When browsing a window that has no activable items (scroll only) we keep a highlight on the child (pass g.NavId to trick into always displaying) + if (child_window->DC.NavLayersActiveMask == 0 && child_window == g.NavWindow) + RenderNavHighlight(ImRect(bb.Min - ImVec2(2, 2), bb.Max + ImVec2(2, 2)), g.NavId, ImGuiNavHighlightFlags_Compact); + } + else + { + // Not navigable into + // - This is a bit of a fringe use case, mostly useful for undecorated, non-scrolling contents childs, or empty childs. + // - We could later decide to not apply this path if ImGuiChildFlags_FrameStyle or ImGuiChildFlags_Borders is set. + ItemAdd(bb, child_window->ChildId, NULL, ImGuiItemFlags_NoNav); + + // But when flattened we directly reach items, adjust active layer mask accordingly + if (nav_flattened) + parent_window->DC.NavLayersActiveMaskNext |= child_window->DC.NavLayersActiveMaskNext; + } + if (g.HoveredWindow == child_window) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + } + g.WithinEndChild = false; + g.LogLinePosY = -FLT_MAX; // To enforce a carriage return +} + +static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled) +{ + window->SetWindowPosAllowFlags = enabled ? (window->SetWindowPosAllowFlags | flags) : (window->SetWindowPosAllowFlags & ~flags); + window->SetWindowSizeAllowFlags = enabled ? (window->SetWindowSizeAllowFlags | flags) : (window->SetWindowSizeAllowFlags & ~flags); + window->SetWindowCollapsedAllowFlags = enabled ? (window->SetWindowCollapsedAllowFlags | flags) : (window->SetWindowCollapsedAllowFlags & ~flags); +} + +ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); +} + +ImGuiWindow* ImGui::FindWindowByName(const char* name) +{ + ImGuiID id = ImHashStr(name); + return FindWindowByID(id); +} + +static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) +{ + window->Pos = ImTrunc(ImVec2(settings->Pos.x, settings->Pos.y)); + if (settings->Size.x > 0 && settings->Size.y > 0) + window->Size = window->SizeFull = ImTrunc(ImVec2(settings->Size.x, settings->Size.y)); + window->Collapsed = settings->Collapsed; +} + +static void UpdateWindowInFocusOrderList(ImGuiWindow* window, bool just_created, ImGuiWindowFlags new_flags) +{ + ImGuiContext& g = *GImGui; + + const bool new_is_explicit_child = (new_flags & ImGuiWindowFlags_ChildWindow) != 0 && ((new_flags & ImGuiWindowFlags_Popup) == 0 || (new_flags & ImGuiWindowFlags_ChildMenu) != 0); + const bool child_flag_changed = new_is_explicit_child != window->IsExplicitChild; + if ((just_created || child_flag_changed) && !new_is_explicit_child) + { + IM_ASSERT(!g.WindowsFocusOrder.contains(window)); + g.WindowsFocusOrder.push_back(window); + window->FocusOrder = (short)(g.WindowsFocusOrder.Size - 1); + } + else if (!just_created && child_flag_changed && new_is_explicit_child) + { + IM_ASSERT(g.WindowsFocusOrder[window->FocusOrder] == window); + for (int n = window->FocusOrder + 1; n < g.WindowsFocusOrder.Size; n++) + g.WindowsFocusOrder[n]->FocusOrder--; + g.WindowsFocusOrder.erase(g.WindowsFocusOrder.Data + window->FocusOrder); + window->FocusOrder = -1; + } + window->IsExplicitChild = new_is_explicit_child; +} + +static void InitOrLoadWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) +{ + // Initial window state with e.g. default/arbitrary window position + // Use SetNextWindowPos() with the appropriate condition flag to change the initial position of a window. + const ImGuiViewport* main_viewport = ImGui::GetMainViewport(); + window->Pos = main_viewport->Pos + ImVec2(60, 60); + window->Size = window->SizeFull = ImVec2(0, 0); + window->SetWindowPosAllowFlags = window->SetWindowSizeAllowFlags = window->SetWindowCollapsedAllowFlags = ImGuiCond_Always | ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing; + + if (settings != NULL) + { + SetWindowConditionAllowFlags(window, ImGuiCond_FirstUseEver, false); + ApplyWindowSettings(window, settings); + } + window->DC.CursorStartPos = window->DC.CursorMaxPos = window->DC.IdealMaxPos = window->Pos; // So first call to CalcWindowContentSizes() doesn't return crazy values + + if ((window->Flags & ImGuiWindowFlags_AlwaysAutoResize) != 0) + { + window->AutoFitFramesX = window->AutoFitFramesY = 2; + window->AutoFitOnlyGrows = false; + } + else + { + if (window->Size.x <= 0.0f) + window->AutoFitFramesX = 2; + if (window->Size.y <= 0.0f) + window->AutoFitFramesY = 2; + window->AutoFitOnlyGrows = (window->AutoFitFramesX > 0) || (window->AutoFitFramesY > 0); + } +} + +static ImGuiWindow* CreateNewWindow(const char* name, ImGuiWindowFlags flags) +{ + // Create window the first time + //IMGUI_DEBUG_LOG("CreateNewWindow '%s', flags = 0x%08X\n", name, flags); + ImGuiContext& g = *GImGui; + ImGuiWindow* window = IM_NEW(ImGuiWindow)(&g, name); + window->Flags = flags; + g.WindowsById.SetVoidPtr(window->ID, window); + + ImGuiWindowSettings* settings = NULL; + if (!(flags & ImGuiWindowFlags_NoSavedSettings)) + if ((settings = ImGui::FindWindowSettingsByWindow(window)) != 0) + window->SettingsOffset = g.SettingsWindows.offset_from_ptr(settings); + + InitOrLoadWindowSettings(window, settings); + + if (flags & ImGuiWindowFlags_NoBringToFrontOnFocus) + g.Windows.push_front(window); // Quite slow but rare and only once + else + g.Windows.push_back(window); + + return window; +} + +static inline ImVec2 CalcWindowMinSize(ImGuiWindow* window) +{ + // We give windows non-zero minimum size to facilitate understanding problematic cases (e.g. empty popups) + // FIXME: Essentially we want to restrict manual resizing to WindowMinSize+Decoration, and allow api resizing to be smaller. + // Perhaps should tend further a neater test for this. + ImGuiContext& g = *GImGui; + ImVec2 size_min; + if ((window->Flags & ImGuiWindowFlags_ChildWindow) && !(window->Flags & ImGuiWindowFlags_Popup)) + { + size_min.x = (window->ChildFlags & ImGuiChildFlags_ResizeX) ? g.Style.WindowMinSize.x : 4.0f; + size_min.y = (window->ChildFlags & ImGuiChildFlags_ResizeY) ? g.Style.WindowMinSize.y : 4.0f; + } + else + { + size_min.x = ((window->Flags & ImGuiWindowFlags_AlwaysAutoResize) == 0) ? g.Style.WindowMinSize.x : 4.0f; + size_min.y = ((window->Flags & ImGuiWindowFlags_AlwaysAutoResize) == 0) ? g.Style.WindowMinSize.y : 4.0f; + } + + // Reduce artifacts with very small windows + ImGuiWindow* window_for_height = window; + size_min.y = ImMax(size_min.y, window_for_height->TitleBarHeight + window_for_height->MenuBarHeight + ImMax(0.0f, g.Style.WindowRounding - 1.0f)); + return size_min; +} + +static ImVec2 CalcWindowSizeAfterConstraint(ImGuiWindow* window, const ImVec2& size_desired) +{ + ImGuiContext& g = *GImGui; + ImVec2 new_size = size_desired; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint) + { + // See comments in SetNextWindowSizeConstraints() for details about setting size_min an size_max. + ImRect cr = g.NextWindowData.SizeConstraintRect; + new_size.x = (cr.Min.x >= 0 && cr.Max.x >= 0) ? ImClamp(new_size.x, cr.Min.x, cr.Max.x) : window->SizeFull.x; + new_size.y = (cr.Min.y >= 0 && cr.Max.y >= 0) ? ImClamp(new_size.y, cr.Min.y, cr.Max.y) : window->SizeFull.y; + if (g.NextWindowData.SizeCallback) + { + ImGuiSizeCallbackData data; + data.UserData = g.NextWindowData.SizeCallbackUserData; + data.Pos = window->Pos; + data.CurrentSize = window->SizeFull; + data.DesiredSize = new_size; + g.NextWindowData.SizeCallback(&data); + new_size = data.DesiredSize; + } + new_size.x = IM_TRUNC(new_size.x); + new_size.y = IM_TRUNC(new_size.y); + } + + // Minimum size + ImVec2 size_min = CalcWindowMinSize(window); + return ImMax(new_size, size_min); +} + +static void CalcWindowContentSizes(ImGuiWindow* window, ImVec2* content_size_current, ImVec2* content_size_ideal) +{ + bool preserve_old_content_sizes = false; + if (window->Collapsed && window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0) + preserve_old_content_sizes = true; + else if (window->Hidden && window->HiddenFramesCannotSkipItems == 0 && window->HiddenFramesCanSkipItems > 0) + preserve_old_content_sizes = true; + if (preserve_old_content_sizes) + { + *content_size_current = window->ContentSize; + *content_size_ideal = window->ContentSizeIdeal; + return; + } + + content_size_current->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_TRUNC(window->DC.CursorMaxPos.x - window->DC.CursorStartPos.x); + content_size_current->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_TRUNC(window->DC.CursorMaxPos.y - window->DC.CursorStartPos.y); + content_size_ideal->x = (window->ContentSizeExplicit.x != 0.0f) ? window->ContentSizeExplicit.x : IM_TRUNC(ImMax(window->DC.CursorMaxPos.x, window->DC.IdealMaxPos.x) - window->DC.CursorStartPos.x); + content_size_ideal->y = (window->ContentSizeExplicit.y != 0.0f) ? window->ContentSizeExplicit.y : IM_TRUNC(ImMax(window->DC.CursorMaxPos.y, window->DC.IdealMaxPos.y) - window->DC.CursorStartPos.y); +} + +static ImVec2 CalcWindowAutoFitSize(ImGuiWindow* window, const ImVec2& size_contents) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + const float decoration_w_without_scrollbars = window->DecoOuterSizeX1 + window->DecoOuterSizeX2 - window->ScrollbarSizes.x; + const float decoration_h_without_scrollbars = window->DecoOuterSizeY1 + window->DecoOuterSizeY2 - window->ScrollbarSizes.y; + ImVec2 size_pad = window->WindowPadding * 2.0f; + ImVec2 size_desired = size_contents + size_pad + ImVec2(decoration_w_without_scrollbars, decoration_h_without_scrollbars); + if (window->Flags & ImGuiWindowFlags_Tooltip) + { + // Tooltip always resize + return size_desired; + } + else + { + // Maximum window size is determined by the viewport size or monitor size + ImVec2 size_min = CalcWindowMinSize(window); + ImVec2 size_max = ((window->Flags & ImGuiWindowFlags_ChildWindow) && !(window->Flags & ImGuiWindowFlags_Popup)) ? ImVec2(FLT_MAX, FLT_MAX) : ImGui::GetMainViewport()->WorkSize - style.DisplaySafeAreaPadding * 2.0f; + ImVec2 size_auto_fit = ImClamp(size_desired, size_min, size_max); + + // FIXME: CalcWindowAutoFitSize() doesn't take into account that only one axis may be auto-fit when calculating scrollbars, + // we may need to compute/store three variants of size_auto_fit, for x/y/xy. + // Here we implement a workaround for child windows only, but a full solution would apply to normal windows as well: + if ((window->ChildFlags & ImGuiChildFlags_ResizeX) && !(window->ChildFlags & ImGuiChildFlags_ResizeY)) + size_auto_fit.y = window->SizeFull.y; + else if (!(window->ChildFlags & ImGuiChildFlags_ResizeX) && (window->ChildFlags & ImGuiChildFlags_ResizeY)) + size_auto_fit.x = window->SizeFull.x; + + // When the window cannot fit all contents (either because of constraints, either because screen is too small), + // we are growing the size on the other axis to compensate for expected scrollbar. FIXME: Might turn bigger than ViewportSize-WindowPadding. + ImVec2 size_auto_fit_after_constraint = CalcWindowSizeAfterConstraint(window, size_auto_fit); + bool will_have_scrollbar_x = (size_auto_fit_after_constraint.x - size_pad.x - decoration_w_without_scrollbars < size_contents.x && !(window->Flags & ImGuiWindowFlags_NoScrollbar) && (window->Flags & ImGuiWindowFlags_HorizontalScrollbar)) || (window->Flags & ImGuiWindowFlags_AlwaysHorizontalScrollbar); + bool will_have_scrollbar_y = (size_auto_fit_after_constraint.y - size_pad.y - decoration_h_without_scrollbars < size_contents.y && !(window->Flags & ImGuiWindowFlags_NoScrollbar)) || (window->Flags & ImGuiWindowFlags_AlwaysVerticalScrollbar); + if (will_have_scrollbar_x) + size_auto_fit.y += style.ScrollbarSize; + if (will_have_scrollbar_y) + size_auto_fit.x += style.ScrollbarSize; + return size_auto_fit; + } +} + +ImVec2 ImGui::CalcWindowNextAutoFitSize(ImGuiWindow* window) +{ + ImVec2 size_contents_current; + ImVec2 size_contents_ideal; + CalcWindowContentSizes(window, &size_contents_current, &size_contents_ideal); + ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, size_contents_ideal); + ImVec2 size_final = CalcWindowSizeAfterConstraint(window, size_auto_fit); + return size_final; +} + +static ImGuiCol GetWindowBgColorIdx(ImGuiWindow* window) +{ + if (window->Flags & (ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_Popup)) + return ImGuiCol_PopupBg; + if (window->Flags & ImGuiWindowFlags_ChildWindow) + return ImGuiCol_ChildBg; + return ImGuiCol_WindowBg; +} + +static void CalcResizePosSizeFromAnyCorner(ImGuiWindow* window, const ImVec2& corner_target, const ImVec2& corner_norm, ImVec2* out_pos, ImVec2* out_size) +{ + ImVec2 pos_min = ImLerp(corner_target, window->Pos, corner_norm); // Expected window upper-left + ImVec2 pos_max = ImLerp(window->Pos + window->Size, corner_target, corner_norm); // Expected window lower-right + ImVec2 size_expected = pos_max - pos_min; + ImVec2 size_constrained = CalcWindowSizeAfterConstraint(window, size_expected); + *out_pos = pos_min; + if (corner_norm.x == 0.0f) + out_pos->x -= (size_constrained.x - size_expected.x); + if (corner_norm.y == 0.0f) + out_pos->y -= (size_constrained.y - size_expected.y); + *out_size = size_constrained; +} + +// Data for resizing from resize grip / corner +struct ImGuiResizeGripDef +{ + ImVec2 CornerPosN; + ImVec2 InnerDir; + int AngleMin12, AngleMax12; +}; +static const ImGuiResizeGripDef resize_grip_def[4] = +{ + { ImVec2(1, 1), ImVec2(-1, -1), 0, 3 }, // Lower-right + { ImVec2(0, 1), ImVec2(+1, -1), 3, 6 }, // Lower-left + { ImVec2(0, 0), ImVec2(+1, +1), 6, 9 }, // Upper-left (Unused) + { ImVec2(1, 0), ImVec2(-1, +1), 9, 12 } // Upper-right (Unused) +}; + +// Data for resizing from borders +struct ImGuiResizeBorderDef +{ + ImVec2 InnerDir; // Normal toward inside + ImVec2 SegmentN1, SegmentN2; // End positions, normalized (0,0: upper left) + float OuterAngle; // Angle toward outside +}; +static const ImGuiResizeBorderDef resize_border_def[4] = +{ + { ImVec2(+1, 0), ImVec2(0, 1), ImVec2(0, 0), IM_PI * 1.00f }, // Left + { ImVec2(-1, 0), ImVec2(1, 0), ImVec2(1, 1), IM_PI * 0.00f }, // Right + { ImVec2(0, +1), ImVec2(0, 0), ImVec2(1, 0), IM_PI * 1.50f }, // Up + { ImVec2(0, -1), ImVec2(1, 1), ImVec2(0, 1), IM_PI * 0.50f } // Down +}; + +static ImRect GetResizeBorderRect(ImGuiWindow* window, int border_n, float perp_padding, float thickness) +{ + ImRect rect = window->Rect(); + if (thickness == 0.0f) + rect.Max -= ImVec2(1, 1); + if (border_n == ImGuiDir_Left) { return ImRect(rect.Min.x - thickness, rect.Min.y + perp_padding, rect.Min.x + thickness, rect.Max.y - perp_padding); } + if (border_n == ImGuiDir_Right) { return ImRect(rect.Max.x - thickness, rect.Min.y + perp_padding, rect.Max.x + thickness, rect.Max.y - perp_padding); } + if (border_n == ImGuiDir_Up) { return ImRect(rect.Min.x + perp_padding, rect.Min.y - thickness, rect.Max.x - perp_padding, rect.Min.y + thickness); } + if (border_n == ImGuiDir_Down) { return ImRect(rect.Min.x + perp_padding, rect.Max.y - thickness, rect.Max.x - perp_padding, rect.Max.y + thickness); } + IM_ASSERT(0); + return ImRect(); +} + +// 0..3: corners (Lower-right, Lower-left, Unused, Unused) +ImGuiID ImGui::GetWindowResizeCornerID(ImGuiWindow* window, int n) +{ + IM_ASSERT(n >= 0 && n < 4); + ImGuiID id = window->ID; + id = ImHashStr("#RESIZE", 0, id); + id = ImHashData(&n, sizeof(int), id); + return id; +} + +// Borders (Left, Right, Up, Down) +ImGuiID ImGui::GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir) +{ + IM_ASSERT(dir >= 0 && dir < 4); + int n = (int)dir + 4; + ImGuiID id = window->ID; + id = ImHashStr("#RESIZE", 0, id); + id = ImHashData(&n, sizeof(int), id); + return id; +} + +// Handle resize for: Resize Grips, Borders, Gamepad +// Return true when using auto-fit (double-click on resize grip) +static int ImGui::UpdateWindowManualResize(ImGuiWindow* window, const ImVec2& size_auto_fit, int* border_hovered, int* border_held, int resize_grip_count, ImU32 resize_grip_col[4], const ImRect& visibility_rect) +{ + ImGuiContext& g = *GImGui; + ImGuiWindowFlags flags = window->Flags; + + if ((flags & ImGuiWindowFlags_NoResize) || (flags & ImGuiWindowFlags_AlwaysAutoResize) || window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + return false; + if (window->WasActive == false) // Early out to avoid running this code for e.g. a hidden implicit/fallback Debug window. + return false; + + int ret_auto_fit_mask = 0x00; + const float grip_draw_size = IM_TRUNC(ImMax(g.FontSize * 1.35f, window->WindowRounding + 1.0f + g.FontSize * 0.2f)); + const float grip_hover_inner_size = (resize_grip_count > 0) ? IM_TRUNC(grip_draw_size * 0.75f) : 0.0f; + const float grip_hover_outer_size = g.IO.ConfigWindowsResizeFromEdges ? WINDOWS_HOVER_PADDING : 0.0f; + + ImRect clamp_rect = visibility_rect; + const bool window_move_from_title_bar = g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & ImGuiWindowFlags_NoTitleBar); + if (window_move_from_title_bar) + clamp_rect.Min.y -= window->TitleBarHeight; + + ImVec2 pos_target(FLT_MAX, FLT_MAX); + ImVec2 size_target(FLT_MAX, FLT_MAX); + + // Resize grips and borders are on layer 1 + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + + // Manual resize grips + PushID("#RESIZE"); + for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++) + { + const ImGuiResizeGripDef& def = resize_grip_def[resize_grip_n]; + const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, def.CornerPosN); + + // Using the FlattenChilds button flag we make the resize button accessible even if we are hovering over a child window + bool hovered, held; + ImRect resize_rect(corner - def.InnerDir * grip_hover_outer_size, corner + def.InnerDir * grip_hover_inner_size); + if (resize_rect.Min.x > resize_rect.Max.x) ImSwap(resize_rect.Min.x, resize_rect.Max.x); + if (resize_rect.Min.y > resize_rect.Max.y) ImSwap(resize_rect.Min.y, resize_rect.Max.y); + ImGuiID resize_grip_id = window->GetID(resize_grip_n); // == GetWindowResizeCornerID() + ItemAdd(resize_rect, resize_grip_id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(resize_rect, resize_grip_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); + //GetForegroundDrawList(window)->AddRect(resize_rect.Min, resize_rect.Max, IM_COL32(255, 255, 0, 255)); + if (hovered || held) + SetMouseCursor((resize_grip_n & 1) ? ImGuiMouseCursor_ResizeNESW : ImGuiMouseCursor_ResizeNWSE); + + if (held && g.IO.MouseDoubleClicked[0]) + { + // Auto-fit when double-clicking + size_target = CalcWindowSizeAfterConstraint(window, size_auto_fit); + ret_auto_fit_mask = 0x03; // Both axises + ClearActiveID(); + } + else if (held) + { + // Resize from any of the four corners + // We don't use an incremental MouseDelta but rather compute an absolute target size based on mouse position + ImVec2 clamp_min = ImVec2(def.CornerPosN.x == 1.0f ? clamp_rect.Min.x : -FLT_MAX, (def.CornerPosN.y == 1.0f || (def.CornerPosN.y == 0.0f && window_move_from_title_bar)) ? clamp_rect.Min.y : -FLT_MAX); + ImVec2 clamp_max = ImVec2(def.CornerPosN.x == 0.0f ? clamp_rect.Max.x : +FLT_MAX, def.CornerPosN.y == 0.0f ? clamp_rect.Max.y : +FLT_MAX); + ImVec2 corner_target = g.IO.MousePos - g.ActiveIdClickOffset + ImLerp(def.InnerDir * grip_hover_outer_size, def.InnerDir * -grip_hover_inner_size, def.CornerPosN); // Corner of the window corresponding to our corner grip + corner_target = ImClamp(corner_target, clamp_min, clamp_max); + CalcResizePosSizeFromAnyCorner(window, corner_target, def.CornerPosN, &pos_target, &size_target); + } + + // Only lower-left grip is visible before hovering/activating + if (resize_grip_n == 0 || held || hovered) + resize_grip_col[resize_grip_n] = GetColorU32(held ? ImGuiCol_ResizeGripActive : hovered ? ImGuiCol_ResizeGripHovered : ImGuiCol_ResizeGrip); + } + + int resize_border_mask = 0x00; + if (window->Flags & ImGuiWindowFlags_ChildWindow) + resize_border_mask |= ((window->ChildFlags & ImGuiChildFlags_ResizeX) ? 0x02 : 0) | ((window->ChildFlags & ImGuiChildFlags_ResizeY) ? 0x08 : 0); + else + resize_border_mask = g.IO.ConfigWindowsResizeFromEdges ? 0x0F : 0x00; + for (int border_n = 0; border_n < 4; border_n++) + { + if ((resize_border_mask & (1 << border_n)) == 0) + continue; + const ImGuiResizeBorderDef& def = resize_border_def[border_n]; + const ImGuiAxis axis = (border_n == ImGuiDir_Left || border_n == ImGuiDir_Right) ? ImGuiAxis_X : ImGuiAxis_Y; + + bool hovered, held; + ImRect border_rect = GetResizeBorderRect(window, border_n, grip_hover_inner_size, WINDOWS_HOVER_PADDING); + ImGuiID border_id = window->GetID(border_n + 4); // == GetWindowResizeBorderID() + ItemAdd(border_rect, border_id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(border_rect, border_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_NoNavFocus); + //GetForegroundDrawList(window)->AddRect(border_rect.Min, border_rect.Max, IM_COL32(255, 255, 0, 255)); + if (hovered && g.HoveredIdTimer <= WINDOWS_RESIZE_FROM_EDGES_FEEDBACK_TIMER) + hovered = false; + if (hovered || held) + SetMouseCursor((axis == ImGuiAxis_X) ? ImGuiMouseCursor_ResizeEW : ImGuiMouseCursor_ResizeNS); + if (held && g.IO.MouseDoubleClicked[0]) + { + // Double-clicking bottom or right border auto-fit on this axis + // FIXME: CalcWindowAutoFitSize() doesn't take into account that only one side may be auto-fit when calculating scrollbars. + // FIXME: Support top and right borders: rework CalcResizePosSizeFromAnyCorner() to be reusable in both cases. + if (border_n == 1 || border_n == 3) // Right and bottom border + { + size_target[axis] = CalcWindowSizeAfterConstraint(window, size_auto_fit)[axis]; + ret_auto_fit_mask |= (1 << axis); + hovered = held = false; // So border doesn't show highlighted at new position + } + ClearActiveID(); + } + else if (held) + { + // Switch to relative resizing mode when border geometry moved (e.g. resizing a child altering parent scroll), in order to avoid resizing feedback loop. + // Currently only using relative mode on resizable child windows, as the problem to solve is more likely noticeable for them, but could apply for all windows eventually. + // FIXME: May want to generalize this idiom at lower-level, so more widgets can use it! + const bool just_scrolled_manually_while_resizing = (g.WheelingWindow != NULL && g.WheelingWindowScrolledFrame == g.FrameCount && IsWindowChildOf(window, g.WheelingWindow, false)); + if (g.ActiveIdIsJustActivated || just_scrolled_manually_while_resizing) + { + g.WindowResizeBorderExpectedRect = border_rect; + g.WindowResizeRelativeMode = false; + } + if ((window->Flags & ImGuiWindowFlags_ChildWindow) && memcmp(&g.WindowResizeBorderExpectedRect, &border_rect, sizeof(ImRect)) != 0) + g.WindowResizeRelativeMode = true; + + const ImVec2 border_curr = (window->Pos + ImMin(def.SegmentN1, def.SegmentN2) * window->Size); + const float border_target_rel_mode_for_axis = border_curr[axis] + g.IO.MouseDelta[axis]; + const float border_target_abs_mode_for_axis = g.IO.MousePos[axis] - g.ActiveIdClickOffset[axis] + WINDOWS_HOVER_PADDING; // Match ButtonBehavior() padding above. + + // Use absolute mode position + ImVec2 border_target = window->Pos; + border_target[axis] = border_target_abs_mode_for_axis; + + // Use relative mode target for child window, ignore resize when moving back toward the ideal absolute position. + bool ignore_resize = false; + if (g.WindowResizeRelativeMode) + { + //GetForegroundDrawList()->AddText(GetMainViewport()->WorkPos, IM_COL32_WHITE, "Relative Mode"); + border_target[axis] = border_target_rel_mode_for_axis; + if (g.IO.MouseDelta[axis] == 0.0f || (g.IO.MouseDelta[axis] > 0.0f) == (border_target_rel_mode_for_axis > border_target_abs_mode_for_axis)) + ignore_resize = true; + } + + // Clamp, apply + ImVec2 clamp_min(border_n == ImGuiDir_Right ? clamp_rect.Min.x : -FLT_MAX, border_n == ImGuiDir_Down || (border_n == ImGuiDir_Up && window_move_from_title_bar) ? clamp_rect.Min.y : -FLT_MAX); + ImVec2 clamp_max(border_n == ImGuiDir_Left ? clamp_rect.Max.x : +FLT_MAX, border_n == ImGuiDir_Up ? clamp_rect.Max.y : +FLT_MAX); + border_target = ImClamp(border_target, clamp_min, clamp_max); + if (flags & ImGuiWindowFlags_ChildWindow) // Clamp resizing of childs within parent + { + ImGuiWindow* parent_window = window->ParentWindow; + ImGuiWindowFlags parent_flags = parent_window->Flags; + ImRect border_limit_rect = parent_window->InnerRect; + border_limit_rect.Expand(ImVec2(-ImMax(parent_window->WindowPadding.x, parent_window->WindowBorderSize), -ImMax(parent_window->WindowPadding.y, parent_window->WindowBorderSize))); + if ((axis == ImGuiAxis_X) && ((parent_flags & (ImGuiWindowFlags_HorizontalScrollbar | ImGuiWindowFlags_AlwaysHorizontalScrollbar)) == 0 || (parent_flags & ImGuiWindowFlags_NoScrollbar))) + border_target.x = ImClamp(border_target.x, border_limit_rect.Min.x, border_limit_rect.Max.x); + if ((axis == ImGuiAxis_Y) && (parent_flags & ImGuiWindowFlags_NoScrollbar)) + border_target.y = ImClamp(border_target.y, border_limit_rect.Min.y, border_limit_rect.Max.y); + } + if (!ignore_resize) + CalcResizePosSizeFromAnyCorner(window, border_target, ImMin(def.SegmentN1, def.SegmentN2), &pos_target, &size_target); + } + if (hovered) + *border_hovered = border_n; + if (held) + *border_held = border_n; + } + PopID(); + + // Restore nav layer + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + + // Navigation resize (keyboard/gamepad) + // FIXME: This cannot be moved to NavUpdateWindowing() because CalcWindowSizeAfterConstraint() need to callback into user. + // Not even sure the callback works here. + if (g.NavWindowingTarget && g.NavWindowingTarget->RootWindow == window) + { + ImVec2 nav_resize_dir; + if (g.NavInputSource == ImGuiInputSource_Keyboard && g.IO.KeyShift) + nav_resize_dir = GetKeyMagnitude2d(ImGuiKey_LeftArrow, ImGuiKey_RightArrow, ImGuiKey_UpArrow, ImGuiKey_DownArrow); + if (g.NavInputSource == ImGuiInputSource_Gamepad) + nav_resize_dir = GetKeyMagnitude2d(ImGuiKey_GamepadDpadLeft, ImGuiKey_GamepadDpadRight, ImGuiKey_GamepadDpadUp, ImGuiKey_GamepadDpadDown); + if (nav_resize_dir.x != 0.0f || nav_resize_dir.y != 0.0f) + { + const float NAV_RESIZE_SPEED = 600.0f; + const float resize_step = NAV_RESIZE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale.x, g.IO.DisplayFramebufferScale.y); + g.NavWindowingAccumDeltaSize += nav_resize_dir * resize_step; + g.NavWindowingAccumDeltaSize = ImMax(g.NavWindowingAccumDeltaSize, clamp_rect.Min - window->Pos - window->Size); // We need Pos+Size >= clmap_rect.Min, so Size >= clmap_rect.Min - Pos, so size_delta >= clmap_rect.Min - window->Pos - window->Size + g.NavWindowingToggleLayer = false; + g.NavDisableMouseHover = true; + resize_grip_col[0] = GetColorU32(ImGuiCol_ResizeGripActive); + ImVec2 accum_floored = ImTrunc(g.NavWindowingAccumDeltaSize); + if (accum_floored.x != 0.0f || accum_floored.y != 0.0f) + { + // FIXME-NAV: Should store and accumulate into a separate size buffer to handle sizing constraints properly, right now a constraint will make us stuck. + size_target = CalcWindowSizeAfterConstraint(window, window->SizeFull + accum_floored); + g.NavWindowingAccumDeltaSize -= accum_floored; + } + } + } + + // Apply back modified position/size to window + const ImVec2 curr_pos = window->Pos; + const ImVec2 curr_size = window->SizeFull; + if (size_target.x != FLT_MAX && (window->Size.x != size_target.x || window->SizeFull.x != size_target.x)) + window->Size.x = window->SizeFull.x = size_target.x; + if (size_target.y != FLT_MAX && (window->Size.y != size_target.y || window->SizeFull.y != size_target.y)) + window->Size.y = window->SizeFull.y = size_target.y; + if (pos_target.x != FLT_MAX && window->Pos.x != ImTrunc(pos_target.x)) + window->Pos.x = ImTrunc(pos_target.x); + if (pos_target.y != FLT_MAX && window->Pos.y != ImTrunc(pos_target.y)) + window->Pos.y = ImTrunc(pos_target.y); + if (curr_pos.x != window->Pos.x || curr_pos.y != window->Pos.y || curr_size.x != window->SizeFull.x || curr_size.y != window->SizeFull.y) + MarkIniSettingsDirty(window); + + // Recalculate next expected border expected coordinates + if (*border_held != -1) + g.WindowResizeBorderExpectedRect = GetResizeBorderRect(window, *border_held, grip_hover_inner_size, WINDOWS_HOVER_PADDING); + + return ret_auto_fit_mask; +} + +static inline void ClampWindowPos(ImGuiWindow* window, const ImRect& visibility_rect) +{ + ImGuiContext& g = *GImGui; + ImVec2 size_for_clamping = window->Size; + if (g.IO.ConfigWindowsMoveFromTitleBarOnly && !(window->Flags & ImGuiWindowFlags_NoTitleBar)) + size_for_clamping.y = window->TitleBarHeight; + window->Pos = ImClamp(window->Pos, visibility_rect.Min - size_for_clamping, visibility_rect.Max); +} + +static void RenderWindowOuterSingleBorder(ImGuiWindow* window, int border_n, ImU32 border_col, float border_size) +{ + const ImGuiResizeBorderDef& def = resize_border_def[border_n]; + const float rounding = window->WindowRounding; + const ImRect border_r = GetResizeBorderRect(window, border_n, rounding, 0.0f); + window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN1) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle - IM_PI * 0.25f, def.OuterAngle); + window->DrawList->PathArcTo(ImLerp(border_r.Min, border_r.Max, def.SegmentN2) + ImVec2(0.5f, 0.5f) + def.InnerDir * rounding, rounding, def.OuterAngle, def.OuterAngle + IM_PI * 0.25f); + window->DrawList->PathStroke(border_col, ImDrawFlags_None, border_size); +} + +static void ImGui::RenderWindowOuterBorders(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + const float border_size = window->WindowBorderSize; + const ImU32 border_col = GetColorU32(ImGuiCol_Border); + if (border_size > 0.0f && (window->Flags & ImGuiWindowFlags_NoBackground) == 0) + window->DrawList->AddRect(window->Pos, window->Pos + window->Size, border_col, window->WindowRounding, 0, window->WindowBorderSize); + else if (border_size > 0.0f) + { + if (window->ChildFlags & ImGuiChildFlags_ResizeX) // Similar code as 'resize_border_mask' computation in UpdateWindowManualResize() but we specifically only always draw explicit child resize border. + RenderWindowOuterSingleBorder(window, 1, border_col, border_size); + if (window->ChildFlags & ImGuiChildFlags_ResizeY) + RenderWindowOuterSingleBorder(window, 3, border_col, border_size); + } + if (window->ResizeBorderHovered != -1 || window->ResizeBorderHeld != -1) + { + const int border_n = (window->ResizeBorderHeld != -1) ? window->ResizeBorderHeld : window->ResizeBorderHovered; + const ImU32 border_col_resizing = GetColorU32((window->ResizeBorderHeld != -1) ? ImGuiCol_SeparatorActive : ImGuiCol_SeparatorHovered); + RenderWindowOuterSingleBorder(window, border_n, border_col_resizing, ImMax(2.0f, window->WindowBorderSize)); // Thicker than usual + } + if (g.Style.FrameBorderSize > 0 && !(window->Flags & ImGuiWindowFlags_NoTitleBar)) + { + float y = window->Pos.y + window->TitleBarHeight - 1; + window->DrawList->AddLine(ImVec2(window->Pos.x + border_size, y), ImVec2(window->Pos.x + window->Size.x - border_size, y), border_col, g.Style.FrameBorderSize); + } +} + +// Draw background and borders +// Draw and handle scrollbars +void ImGui::RenderWindowDecorations(ImGuiWindow* window, const ImRect& title_bar_rect, bool title_bar_is_highlight, bool handle_borders_and_resize_grips, int resize_grip_count, const ImU32 resize_grip_col[4], float resize_grip_draw_size) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + ImGuiWindowFlags flags = window->Flags; + + // Ensure that ScrollBar doesn't read last frame's SkipItems + IM_ASSERT(window->BeginCount == 0); + window->SkipItems = false; + + // Draw window + handle manual resize + // As we highlight the title bar when want_focus is set, multiple reappearing windows will have their title bar highlighted on their reappearing frame. + const float window_rounding = window->WindowRounding; + const float window_border_size = window->WindowBorderSize; + if (window->Collapsed) + { + // Title bar only + const float backup_border_size = style.FrameBorderSize; + g.Style.FrameBorderSize = window->WindowBorderSize; + ImU32 title_bar_col = GetColorU32((title_bar_is_highlight && !g.NavDisableHighlight) ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBgCollapsed); + RenderFrame(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, true, window_rounding); + g.Style.FrameBorderSize = backup_border_size; + } + else + { + // Window background + if (!(flags & ImGuiWindowFlags_NoBackground)) + { + ImU32 bg_col = GetColorU32(GetWindowBgColorIdx(window)); + bool override_alpha = false; + float alpha = 1.0f; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasBgAlpha) + { + alpha = g.NextWindowData.BgAlphaVal; + override_alpha = true; + } + if (override_alpha) + bg_col = (bg_col & ~IM_COL32_A_MASK) | (IM_F32_TO_INT8_SAT(alpha) << IM_COL32_A_SHIFT); + window->DrawList->AddRectFilled(window->Pos + ImVec2(0, window->TitleBarHeight), window->Pos + window->Size, bg_col, window_rounding, (flags & ImGuiWindowFlags_NoTitleBar) ? 0 : ImDrawFlags_RoundCornersBottom); + } + + // Draw window shadow + if (style.WindowShadowSize > 0.0f && (!(flags & ImGuiWindowFlags_ChildWindow) || (flags & ImGuiWindowFlags_Popup))) + if (style.Colors[ImGuiCol_WindowShadow].w > 0.0f) + RenderWindowShadow(window); + + // Title bar + if (!(flags & ImGuiWindowFlags_NoTitleBar)) + { + ImU32 title_bar_col = GetColorU32(title_bar_is_highlight ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBg); + window->DrawList->AddRectFilled(title_bar_rect.Min, title_bar_rect.Max, title_bar_col, window_rounding, ImDrawFlags_RoundCornersTop); + } + + // Menu bar + if (flags & ImGuiWindowFlags_MenuBar) + { + ImRect menu_bar_rect = window->MenuBarRect(); + menu_bar_rect.ClipWith(window->Rect()); // Soft clipping, in particular child window don't have minimum size covering the menu bar so this is useful for them. + window->DrawList->AddRectFilled(menu_bar_rect.Min + ImVec2(window_border_size, 0), menu_bar_rect.Max - ImVec2(window_border_size, 0), GetColorU32(ImGuiCol_MenuBarBg), (flags & ImGuiWindowFlags_NoTitleBar) ? window_rounding : 0.0f, ImDrawFlags_RoundCornersTop); + if (style.FrameBorderSize > 0.0f && menu_bar_rect.Max.y < window->Pos.y + window->Size.y) + window->DrawList->AddLine(menu_bar_rect.GetBL(), menu_bar_rect.GetBR(), GetColorU32(ImGuiCol_Border), style.FrameBorderSize); + } + + // Scrollbars + if (window->ScrollbarX) + Scrollbar(ImGuiAxis_X); + if (window->ScrollbarY) + Scrollbar(ImGuiAxis_Y); + + // Render resize grips (after their input handling so we don't have a frame of latency) + if (handle_borders_and_resize_grips && !(flags & ImGuiWindowFlags_NoResize)) + { + for (int resize_grip_n = 0; resize_grip_n < resize_grip_count; resize_grip_n++) + { + const ImU32 col = resize_grip_col[resize_grip_n]; + if ((col & IM_COL32_A_MASK) == 0) + continue; + const ImGuiResizeGripDef& grip = resize_grip_def[resize_grip_n]; + const ImVec2 corner = ImLerp(window->Pos, window->Pos + window->Size, grip.CornerPosN); + window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(window_border_size, resize_grip_draw_size) : ImVec2(resize_grip_draw_size, window_border_size))); + window->DrawList->PathLineTo(corner + grip.InnerDir * ((resize_grip_n & 1) ? ImVec2(resize_grip_draw_size, window_border_size) : ImVec2(window_border_size, resize_grip_draw_size))); + window->DrawList->PathArcToFast(ImVec2(corner.x + grip.InnerDir.x * (window_rounding + window_border_size), corner.y + grip.InnerDir.y * (window_rounding + window_border_size)), window_rounding, grip.AngleMin12, grip.AngleMax12); + window->DrawList->PathFillConvex(col); + } + } + + // Borders + if (handle_borders_and_resize_grips) + RenderWindowOuterBorders(window); + } +} + +void ImGui::RenderWindowShadow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + float shadow_size = style.WindowShadowSize; + ImU32 shadow_col = GetColorU32(ImGuiCol_WindowShadow); + ImVec2 shadow_offset = ImVec2(ImCos(style.WindowShadowOffsetAngle), ImSin(style.WindowShadowOffsetAngle)) * style.WindowShadowOffsetDist; + window->DrawList->AddShadowRect(window->Pos, window->Pos + window->Size, shadow_col, shadow_size, shadow_offset, ImDrawFlags_ShadowCutOutShapeBackground, window->WindowRounding); +} + +// Render title text, collapse button, close button +void ImGui::RenderWindowTitleBarContents(ImGuiWindow* window, const ImRect& title_bar_rect, const char* name, bool* p_open) +{ + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + ImGuiWindowFlags flags = window->Flags; + + const bool has_close_button = (p_open != NULL); + const bool has_collapse_button = !(flags & ImGuiWindowFlags_NoCollapse) && (style.WindowMenuButtonPosition != ImGuiDir_None); + + // Close & Collapse button are on the Menu NavLayer and don't default focus (unless there's nothing else on that layer) + // FIXME-NAV: Might want (or not?) to set the equivalent of ImGuiButtonFlags_NoNavFocus so that mouse clicks on standard title bar items don't necessarily set nav/keyboard ref? + const ImGuiItemFlags item_flags_backup = g.CurrentItemFlags; + g.CurrentItemFlags |= ImGuiItemFlags_NoNavDefaultFocus; + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + + // Layout buttons + // FIXME: Would be nice to generalize the subtleties expressed here into reusable code. + float pad_l = style.FramePadding.x; + float pad_r = style.FramePadding.x; + float button_sz = g.FontSize; + ImVec2 close_button_pos; + ImVec2 collapse_button_pos; + if (has_close_button) + { + close_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - button_sz, title_bar_rect.Min.y + style.FramePadding.y); + pad_r += button_sz + style.ItemInnerSpacing.x; + } + if (has_collapse_button && style.WindowMenuButtonPosition == ImGuiDir_Right) + { + collapse_button_pos = ImVec2(title_bar_rect.Max.x - pad_r - button_sz, title_bar_rect.Min.y + style.FramePadding.y); + pad_r += button_sz + style.ItemInnerSpacing.x; + } + if (has_collapse_button && style.WindowMenuButtonPosition == ImGuiDir_Left) + { + collapse_button_pos = ImVec2(title_bar_rect.Min.x + pad_l, title_bar_rect.Min.y + style.FramePadding.y); + pad_l += button_sz + style.ItemInnerSpacing.x; + } + + // Collapse button (submitting first so it gets priority when choosing a navigation init fallback) + if (has_collapse_button) + if (CollapseButton(window->GetID("#COLLAPSE"), collapse_button_pos)) + window->WantCollapseToggle = true; // Defer actual collapsing to next frame as we are too far in the Begin() function + + // Close button + if (has_close_button) + if (CloseButton(window->GetID("#CLOSE"), close_button_pos)) + *p_open = false; + + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + g.CurrentItemFlags = item_flags_backup; + + // Title bar text (with: horizontal alignment, avoiding collapse/close button, optional "unsaved document" marker) + // FIXME: Refactor text alignment facilities along with RenderText helpers, this is WAY too much messy code.. + const float marker_size_x = (flags & ImGuiWindowFlags_UnsavedDocument) ? button_sz * 0.80f : 0.0f; + const ImVec2 text_size = CalcTextSize(name, NULL, true) + ImVec2(marker_size_x, 0.0f); + + // As a nice touch we try to ensure that centered title text doesn't get affected by visibility of Close/Collapse button, + // while uncentered title text will still reach edges correctly. + if (pad_l > style.FramePadding.x) + pad_l += g.Style.ItemInnerSpacing.x; + if (pad_r > style.FramePadding.x) + pad_r += g.Style.ItemInnerSpacing.x; + if (style.WindowTitleAlign.x > 0.0f && style.WindowTitleAlign.x < 1.0f) + { + float centerness = ImSaturate(1.0f - ImFabs(style.WindowTitleAlign.x - 0.5f) * 2.0f); // 0.0f on either edges, 1.0f on center + float pad_extend = ImMin(ImMax(pad_l, pad_r), title_bar_rect.GetWidth() - pad_l - pad_r - text_size.x); + pad_l = ImMax(pad_l, pad_extend * centerness); + pad_r = ImMax(pad_r, pad_extend * centerness); + } + + ImRect layout_r(title_bar_rect.Min.x + pad_l, title_bar_rect.Min.y, title_bar_rect.Max.x - pad_r, title_bar_rect.Max.y); + ImRect clip_r(layout_r.Min.x, layout_r.Min.y, ImMin(layout_r.Max.x + g.Style.ItemInnerSpacing.x, title_bar_rect.Max.x), layout_r.Max.y); + if (flags & ImGuiWindowFlags_UnsavedDocument) + { + ImVec2 marker_pos; + marker_pos.x = ImClamp(layout_r.Min.x + (layout_r.GetWidth() - text_size.x) * style.WindowTitleAlign.x + text_size.x, layout_r.Min.x, layout_r.Max.x); + marker_pos.y = (layout_r.Min.y + layout_r.Max.y) * 0.5f; + if (marker_pos.x > layout_r.Min.x) + { + RenderBullet(window->DrawList, marker_pos, GetColorU32(ImGuiCol_Text)); + clip_r.Max.x = ImMin(clip_r.Max.x, marker_pos.x - (int)(marker_size_x * 0.5f)); + } + } + //if (g.IO.KeyShift) window->DrawList->AddRect(layout_r.Min, layout_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG] + //if (g.IO.KeyCtrl) window->DrawList->AddRect(clip_r.Min, clip_r.Max, IM_COL32(255, 128, 0, 255)); // [DEBUG] + RenderTextClipped(layout_r.Min, layout_r.Max, name, NULL, &text_size, style.WindowTitleAlign, &clip_r); +} + +void ImGui::UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWindow* parent_window) +{ + window->ParentWindow = parent_window; + window->RootWindow = window->RootWindowPopupTree = window->RootWindowForTitleBarHighlight = window->RootWindowForNav = window; + if (parent_window && (flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Tooltip)) + window->RootWindow = parent_window->RootWindow; + if (parent_window && (flags & ImGuiWindowFlags_Popup)) + window->RootWindowPopupTree = parent_window->RootWindowPopupTree; + if (parent_window && !(flags & ImGuiWindowFlags_Modal) && (flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Popup))) + window->RootWindowForTitleBarHighlight = parent_window->RootWindowForTitleBarHighlight; + while (window->RootWindowForNav->ChildFlags & ImGuiChildFlags_NavFlattened) + { + IM_ASSERT(window->RootWindowForNav->ParentWindow != NULL); + window->RootWindowForNav = window->RootWindowForNav->ParentWindow; + } +} + +// [EXPERIMENTAL] Called by Begin(). NextWindowData is valid at this point. +// This is designed as a toy/test-bed for +void ImGui::UpdateWindowSkipRefresh(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + window->SkipRefresh = false; + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasRefreshPolicy) == 0) + return; + if (g.NextWindowData.RefreshFlagsVal & ImGuiWindowRefreshFlags_TryToAvoidRefresh) + { + // FIXME-IDLE: Tests for e.g. mouse clicks or keyboard while focused. + if (window->Appearing) // If currently appearing + return; + if (window->Hidden) // If was hidden (previous frame) + return; + if ((g.NextWindowData.RefreshFlagsVal & ImGuiWindowRefreshFlags_RefreshOnHover) && g.HoveredWindow) + if (window->RootWindow == g.HoveredWindow->RootWindow || IsWindowWithinBeginStackOf(g.HoveredWindow->RootWindow, window)) + return; + if ((g.NextWindowData.RefreshFlagsVal & ImGuiWindowRefreshFlags_RefreshOnFocus) && g.NavWindow) + if (window->RootWindow == g.NavWindow->RootWindow || IsWindowWithinBeginStackOf(g.NavWindow->RootWindow, window)) + return; + window->DrawList = NULL; + window->SkipRefresh = true; + } +} + +static void SetWindowActiveForSkipRefresh(ImGuiWindow* window) +{ + window->Active = true; + for (ImGuiWindow* child : window->DC.ChildWindows) + if (!child->Hidden) + { + child->Active = child->SkipRefresh = true; + SetWindowActiveForSkipRefresh(child); + } +} + +// When a modal popup is open, newly created windows that want focus (i.e. are not popups and do not specify ImGuiWindowFlags_NoFocusOnAppearing) +// should be positioned behind that modal window, unless the window was created inside the modal begin-stack. +// In case of multiple stacked modals newly created window honors begin stack order and does not go below its own modal parent. +// - WindowA // FindBlockingModal() returns Modal1 +// - WindowB // .. returns Modal1 +// - Modal1 // .. returns Modal2 +// - WindowC // .. returns Modal2 +// - WindowD // .. returns Modal2 +// - Modal2 // .. returns Modal2 +// - WindowE // .. returns NULL +// Notes: +// - FindBlockingModal(NULL) == NULL is generally equivalent to GetTopMostPopupModal() == NULL. +// Only difference is here we check for ->Active/WasActive but it may be unnecessary. +ImGuiWindow* ImGui::FindBlockingModal(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (g.OpenPopupStack.Size <= 0) + return NULL; + + // Find a modal that has common parent with specified window. Specified window should be positioned behind that modal. + for (ImGuiPopupData& popup_data : g.OpenPopupStack) + { + ImGuiWindow* popup_window = popup_data.Window; + if (popup_window == NULL || !(popup_window->Flags & ImGuiWindowFlags_Modal)) + continue; + if (!popup_window->Active && !popup_window->WasActive) // Check WasActive, because this code may run before popup renders on current frame, also check Active to handle newly created windows. + continue; + if (window == NULL) // FindBlockingModal(NULL) test for if FocusWindow(NULL) is naturally possible via a mouse click. + return popup_window; + if (IsWindowWithinBeginStackOf(window, popup_window)) // Window may be over modal + continue; + return popup_window; // Place window right below first block modal + } + return NULL; +} + +// Push a new Dear ImGui window to add widgets to. +// - A default window called "Debug" is automatically stacked at the beginning of every frame so you can use widgets without explicitly calling a Begin/End pair. +// - Begin/End can be called multiple times during the frame with the same window name to append content. +// - The window name is used as a unique identifier to preserve window information across frames (and save rudimentary information to the .ini file). +// You can use the "##" or "###" markers to use the same label with different id, or same id with different label. See documentation at the top of this file. +// - Return false when window is collapsed, so you can early out in your code. You always need to call ImGui::End() even if false is returned. +// - Passing 'bool* p_open' displays a Close button on the upper-right corner of the window, the pointed value will be set to false when the button is pressed. +bool ImGui::Begin(const char* name, bool* p_open, ImGuiWindowFlags flags) +{ + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + IM_ASSERT(name != NULL && name[0] != '\0'); // Window name required + IM_ASSERT(g.WithinFrameScope); // Forgot to call ImGui::NewFrame() + IM_ASSERT(g.FrameCountEnded != g.FrameCount); // Called ImGui::Render() or ImGui::EndFrame() and haven't called ImGui::NewFrame() again yet + + // Find or create + ImGuiWindow* window = FindWindowByName(name); + const bool window_just_created = (window == NULL); + if (window_just_created) + window = CreateNewWindow(name, flags); + + // [DEBUG] Debug break requested by user + if (g.DebugBreakInWindow == window->ID) + IM_DEBUG_BREAK(); + + // Automatically disable manual moving/resizing when NoInputs is set + if ((flags & ImGuiWindowFlags_NoInputs) == ImGuiWindowFlags_NoInputs) + flags |= ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize; + + const int current_frame = g.FrameCount; + const bool first_begin_of_the_frame = (window->LastFrameActive != current_frame); + window->IsFallbackWindow = (g.CurrentWindowStack.Size == 0 && g.WithinFrameScopeWithImplicitWindow); + + // Update the Appearing flag + bool window_just_activated_by_user = (window->LastFrameActive < current_frame - 1); // Not using !WasActive because the implicit "Debug" window would always toggle off->on + if (flags & ImGuiWindowFlags_Popup) + { + ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; + window_just_activated_by_user |= (window->PopupId != popup_ref.PopupId); // We recycle popups so treat window as activated if popup id changed + window_just_activated_by_user |= (window != popup_ref.Window); + } + window->Appearing = window_just_activated_by_user; + if (window->Appearing) + SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, true); + + // Update Flags, LastFrameActive, BeginOrderXXX fields + if (first_begin_of_the_frame) + { + UpdateWindowInFocusOrderList(window, window_just_created, flags); + window->Flags = (ImGuiWindowFlags)flags; + window->ChildFlags = (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasChildFlags) ? g.NextWindowData.ChildFlags : 0; + window->LastFrameActive = current_frame; + window->LastTimeActive = (float)g.Time; + window->BeginOrderWithinParent = 0; + window->BeginOrderWithinContext = (short)(g.WindowsActiveCount++); + } + else + { + flags = window->Flags; + } + + // Parent window is latched only on the first call to Begin() of the frame, so further append-calls can be done from a different window stack + ImGuiWindow* parent_window_in_stack = g.CurrentWindowStack.empty() ? NULL : g.CurrentWindowStack.back().Window; + ImGuiWindow* parent_window = first_begin_of_the_frame ? ((flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Popup)) ? parent_window_in_stack : NULL) : window->ParentWindow; + IM_ASSERT(parent_window != NULL || !(flags & ImGuiWindowFlags_ChildWindow)); + + // We allow window memory to be compacted so recreate the base stack when needed. + if (window->IDStack.Size == 0) + window->IDStack.push_back(window->ID); + + // Add to stack + g.CurrentWindow = window; + ImGuiWindowStackData window_stack_data; + window_stack_data.Window = window; + window_stack_data.ParentLastItemDataBackup = g.LastItemData; + window_stack_data.StackSizesOnBegin.SetToContextState(&g); + window_stack_data.DisabledOverrideReenable = (flags & ImGuiWindowFlags_Tooltip) && (g.CurrentItemFlags & ImGuiItemFlags_Disabled); + g.CurrentWindowStack.push_back(window_stack_data); + if (flags & ImGuiWindowFlags_ChildMenu) + g.BeginMenuDepth++; + + // Update ->RootWindow and others pointers (before any possible call to FocusWindow) + if (first_begin_of_the_frame) + { + UpdateWindowParentAndRootLinks(window, flags, parent_window); + window->ParentWindowInBeginStack = parent_window_in_stack; + + // There's little point to expose a flag to set this: because the interesting cases won't be using parent_window_in_stack, + // e.g. linking a tool window in a standalone viewport to a document window, regardless of their Begin() stack parenting. (#6798) + window->ParentWindowForFocusRoute = (flags & ImGuiWindowFlags_ChildWindow) ? parent_window_in_stack : NULL; + } + + // Add to focus scope stack + PushFocusScope((window->ChildFlags & ImGuiChildFlags_NavFlattened) ? g.CurrentFocusScopeId : window->ID); + window->NavRootFocusScopeId = g.CurrentFocusScopeId; + + // Add to popup stacks: update OpenPopupStack[] data, push to BeginPopupStack[] + if (flags & ImGuiWindowFlags_Popup) + { + ImGuiPopupData& popup_ref = g.OpenPopupStack[g.BeginPopupStack.Size]; + popup_ref.Window = window; + popup_ref.ParentNavLayer = parent_window_in_stack->DC.NavLayerCurrent; + g.BeginPopupStack.push_back(popup_ref); + window->PopupId = popup_ref.PopupId; + } + + // Process SetNextWindow***() calls + // (FIXME: Consider splitting the HasXXX flags into X/Y components + bool window_pos_set_by_api = false; + bool window_size_x_set_by_api = false, window_size_y_set_by_api = false; + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) + { + window_pos_set_by_api = (window->SetWindowPosAllowFlags & g.NextWindowData.PosCond) != 0; + if (window_pos_set_by_api && ImLengthSqr(g.NextWindowData.PosPivotVal) > 0.00001f) + { + // May be processed on the next frame if this is our first frame and we are measuring size + // FIXME: Look into removing the branch so everything can go through this same code path for consistency. + window->SetWindowPosVal = g.NextWindowData.PosVal; + window->SetWindowPosPivot = g.NextWindowData.PosPivotVal; + window->SetWindowPosAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + } + else + { + SetWindowPos(window, g.NextWindowData.PosVal, g.NextWindowData.PosCond); + } + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) + { + window_size_x_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.x > 0.0f); + window_size_y_set_by_api = (window->SetWindowSizeAllowFlags & g.NextWindowData.SizeCond) != 0 && (g.NextWindowData.SizeVal.y > 0.0f); + if ((window->ChildFlags & ImGuiChildFlags_ResizeX) && (window->SetWindowSizeAllowFlags & ImGuiCond_FirstUseEver) == 0) // Axis-specific conditions for BeginChild() + g.NextWindowData.SizeVal.x = window->SizeFull.x; + if ((window->ChildFlags & ImGuiChildFlags_ResizeY) && (window->SetWindowSizeAllowFlags & ImGuiCond_FirstUseEver) == 0) + g.NextWindowData.SizeVal.y = window->SizeFull.y; + SetWindowSize(window, g.NextWindowData.SizeVal, g.NextWindowData.SizeCond); + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasScroll) + { + if (g.NextWindowData.ScrollVal.x >= 0.0f) + { + window->ScrollTarget.x = g.NextWindowData.ScrollVal.x; + window->ScrollTargetCenterRatio.x = 0.0f; + } + if (g.NextWindowData.ScrollVal.y >= 0.0f) + { + window->ScrollTarget.y = g.NextWindowData.ScrollVal.y; + window->ScrollTargetCenterRatio.y = 0.0f; + } + } + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasContentSize) + window->ContentSizeExplicit = g.NextWindowData.ContentSizeVal; + else if (first_begin_of_the_frame) + window->ContentSizeExplicit = ImVec2(0.0f, 0.0f); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasCollapsed) + SetWindowCollapsed(window, g.NextWindowData.CollapsedVal, g.NextWindowData.CollapsedCond); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasFocus) + FocusWindow(window); + if (window->Appearing) + SetWindowConditionAllowFlags(window, ImGuiCond_Appearing, false); + + // [EXPERIMENTAL] Skip Refresh mode + UpdateWindowSkipRefresh(window); + + // Nested root windows (typically tooltips) override disabled state + if (window_stack_data.DisabledOverrideReenable && window->RootWindow == window) + BeginDisabledOverrideReenable(); + + // We intentionally set g.CurrentWindow to NULL to prevent usage until when the viewport is set, then will call SetCurrentWindow() + g.CurrentWindow = NULL; + + // When reusing window again multiple times a frame, just append content (don't need to setup again) + if (first_begin_of_the_frame && !window->SkipRefresh) + { + // Initialize + const bool window_is_child_tooltip = (flags & ImGuiWindowFlags_ChildWindow) && (flags & ImGuiWindowFlags_Tooltip); // FIXME-WIP: Undocumented behavior of Child+Tooltip for pinned tooltip (#1345) + const bool window_just_appearing_after_hidden_for_resize = (window->HiddenFramesCannotSkipItems > 0); + window->Active = true; + window->HasCloseButton = (p_open != NULL); + window->ClipRect = ImVec4(-FLT_MAX, -FLT_MAX, +FLT_MAX, +FLT_MAX); + window->IDStack.resize(1); + window->DrawList->_ResetForNewFrame(); + window->DC.CurrentTableIdx = -1; + + // Restore buffer capacity when woken from a compacted state, to avoid + if (window->MemoryCompacted) + GcAwakeTransientWindowBuffers(window); + + // Update stored window name when it changes (which can _only_ happen with the "###" operator, so the ID would stay unchanged). + // The title bar always display the 'name' parameter, so we only update the string storage if it needs to be visible to the end-user elsewhere. + bool window_title_visible_elsewhere = false; + if (g.NavWindowingListWindow != NULL && (window->Flags & ImGuiWindowFlags_NoNavFocus) == 0) // Window titles visible when using CTRL+TAB + window_title_visible_elsewhere = true; + if (window_title_visible_elsewhere && !window_just_created && strcmp(name, window->Name) != 0) + { + size_t buf_len = (size_t)window->NameBufLen; + window->Name = ImStrdupcpy(window->Name, &buf_len, name); + window->NameBufLen = (int)buf_len; + } + + // UPDATE CONTENTS SIZE, UPDATE HIDDEN STATUS + + // Update contents size from last frame for auto-fitting (or use explicit size) + CalcWindowContentSizes(window, &window->ContentSize, &window->ContentSizeIdeal); + if (window->HiddenFramesCanSkipItems > 0) + window->HiddenFramesCanSkipItems--; + if (window->HiddenFramesCannotSkipItems > 0) + window->HiddenFramesCannotSkipItems--; + if (window->HiddenFramesForRenderOnly > 0) + window->HiddenFramesForRenderOnly--; + + // Hide new windows for one frame until they calculate their size + if (window_just_created && (!window_size_x_set_by_api || !window_size_y_set_by_api)) + window->HiddenFramesCannotSkipItems = 1; + + // Hide popup/tooltip window when re-opening while we measure size (because we recycle the windows) + // We reset Size/ContentSize for reappearing popups/tooltips early in this function, so further code won't be tempted to use the old size. + if (window_just_activated_by_user && (flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_Tooltip)) != 0) + { + window->HiddenFramesCannotSkipItems = 1; + if (flags & ImGuiWindowFlags_AlwaysAutoResize) + { + if (!window_size_x_set_by_api) + window->Size.x = window->SizeFull.x = 0.f; + if (!window_size_y_set_by_api) + window->Size.y = window->SizeFull.y = 0.f; + window->ContentSize = window->ContentSizeIdeal = ImVec2(0.f, 0.f); + } + } + + // SELECT VIEWPORT + // FIXME-VIEWPORT: In the docking/viewport branch, this is the point where we select the current viewport (which may affect the style) + + ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)GetMainViewport(); + SetWindowViewport(window, viewport); + SetCurrentWindow(window); + + // LOCK BORDER SIZE AND PADDING FOR THE FRAME (so that altering them doesn't cause inconsistencies) + + if (flags & ImGuiWindowFlags_ChildWindow) + window->WindowBorderSize = style.ChildBorderSize; + else + window->WindowBorderSize = ((flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_Tooltip)) && !(flags & ImGuiWindowFlags_Modal)) ? style.PopupBorderSize : style.WindowBorderSize; + window->WindowPadding = style.WindowPadding; + if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup) && !(window->ChildFlags & ImGuiChildFlags_AlwaysUseWindowPadding) && window->WindowBorderSize == 0.0f) + window->WindowPadding = ImVec2(0.0f, (flags & ImGuiWindowFlags_MenuBar) ? style.WindowPadding.y : 0.0f); + + // Lock menu offset so size calculation can use it as menu-bar windows need a minimum size. + window->DC.MenuBarOffset.x = ImMax(ImMax(window->WindowPadding.x, style.ItemSpacing.x), g.NextWindowData.MenuBarOffsetMinVal.x); + window->DC.MenuBarOffset.y = g.NextWindowData.MenuBarOffsetMinVal.y; + window->TitleBarHeight = (flags & ImGuiWindowFlags_NoTitleBar) ? 0.0f : g.FontSize + g.Style.FramePadding.y * 2.0f; + window->MenuBarHeight = (flags & ImGuiWindowFlags_MenuBar) ? window->DC.MenuBarOffset.y + g.FontSize + g.Style.FramePadding.y * 2.0f : 0.0f; + + // Depending on condition we use previous or current window size to compare against contents size to decide if a scrollbar should be visible. + // Those flags will be altered further down in the function depending on more conditions. + bool use_current_size_for_scrollbar_x = window_just_created; + bool use_current_size_for_scrollbar_y = window_just_created; + if (window_size_x_set_by_api && window->ContentSizeExplicit.x != 0.0f) + use_current_size_for_scrollbar_x = true; + if (window_size_y_set_by_api && window->ContentSizeExplicit.y != 0.0f) // #7252 + use_current_size_for_scrollbar_y = true; + + // Collapse window by double-clicking on title bar + // At this point we don't have a clipping rectangle setup yet, so we can use the title bar area for hit detection and drawing + if (!(flags & ImGuiWindowFlags_NoTitleBar) && !(flags & ImGuiWindowFlags_NoCollapse)) + { + // We don't use a regular button+id to test for double-click on title bar (mostly due to legacy reason, could be fixed), + // so verify that we don't have items over the title bar. + ImRect title_bar_rect = window->TitleBarRect(); + if (g.HoveredWindow == window && g.HoveredId == 0 && g.HoveredIdPreviousFrame == 0 && g.ActiveId == 0 && IsMouseHoveringRect(title_bar_rect.Min, title_bar_rect.Max)) + if (g.IO.MouseClickedCount[0] == 2 && GetKeyOwner(ImGuiKey_MouseLeft) == ImGuiKeyOwner_NoOwner) + window->WantCollapseToggle = true; + if (window->WantCollapseToggle) + { + window->Collapsed = !window->Collapsed; + if (!window->Collapsed) + use_current_size_for_scrollbar_y = true; + MarkIniSettingsDirty(window); + } + } + else + { + window->Collapsed = false; + } + window->WantCollapseToggle = false; + + // SIZE + + // Outer Decoration Sizes + // (we need to clear ScrollbarSize immediately as CalcWindowAutoFitSize() needs it and can be called from other locations). + const ImVec2 scrollbar_sizes_from_last_frame = window->ScrollbarSizes; + window->DecoOuterSizeX1 = 0.0f; + window->DecoOuterSizeX2 = 0.0f; + window->DecoOuterSizeY1 = window->TitleBarHeight + window->MenuBarHeight; + window->DecoOuterSizeY2 = 0.0f; + window->ScrollbarSizes = ImVec2(0.0f, 0.0f); + + // Calculate auto-fit size, handle automatic resize + const ImVec2 size_auto_fit = CalcWindowAutoFitSize(window, window->ContentSizeIdeal); + if ((flags & ImGuiWindowFlags_AlwaysAutoResize) && !window->Collapsed) + { + // Using SetNextWindowSize() overrides ImGuiWindowFlags_AlwaysAutoResize, so it can be used on tooltips/popups, etc. + if (!window_size_x_set_by_api) + { + window->SizeFull.x = size_auto_fit.x; + use_current_size_for_scrollbar_x = true; + } + if (!window_size_y_set_by_api) + { + window->SizeFull.y = size_auto_fit.y; + use_current_size_for_scrollbar_y = true; + } + } + else if (window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + { + // Auto-fit may only grow window during the first few frames + // We still process initial auto-fit on collapsed windows to get a window width, but otherwise don't honor ImGuiWindowFlags_AlwaysAutoResize when collapsed. + if (!window_size_x_set_by_api && window->AutoFitFramesX > 0) + { + window->SizeFull.x = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.x, size_auto_fit.x) : size_auto_fit.x; + use_current_size_for_scrollbar_x = true; + } + if (!window_size_y_set_by_api && window->AutoFitFramesY > 0) + { + window->SizeFull.y = window->AutoFitOnlyGrows ? ImMax(window->SizeFull.y, size_auto_fit.y) : size_auto_fit.y; + use_current_size_for_scrollbar_y = true; + } + if (!window->Collapsed) + MarkIniSettingsDirty(window); + } + + // Apply minimum/maximum window size constraints and final size + window->SizeFull = CalcWindowSizeAfterConstraint(window, window->SizeFull); + window->Size = window->Collapsed && !(flags & ImGuiWindowFlags_ChildWindow) ? window->TitleBarRect().GetSize() : window->SizeFull; + + // POSITION + + // Popup latch its initial position, will position itself when it appears next frame + if (window_just_activated_by_user) + { + window->AutoPosLastDirection = ImGuiDir_None; + if ((flags & ImGuiWindowFlags_Popup) != 0 && !(flags & ImGuiWindowFlags_Modal) && !window_pos_set_by_api) // FIXME: BeginPopup() could use SetNextWindowPos() + window->Pos = g.BeginPopupStack.back().OpenPopupPos; + } + + // Position child window + if (flags & ImGuiWindowFlags_ChildWindow) + { + IM_ASSERT(parent_window && parent_window->Active); + window->BeginOrderWithinParent = (short)parent_window->DC.ChildWindows.Size; + parent_window->DC.ChildWindows.push_back(window); + if (!(flags & ImGuiWindowFlags_Popup) && !window_pos_set_by_api && !window_is_child_tooltip) + window->Pos = parent_window->DC.CursorPos; + } + + const bool window_pos_with_pivot = (window->SetWindowPosVal.x != FLT_MAX && window->HiddenFramesCannotSkipItems == 0); + if (window_pos_with_pivot) + SetWindowPos(window, window->SetWindowPosVal - window->Size * window->SetWindowPosPivot, 0); // Position given a pivot (e.g. for centering) + else if ((flags & ImGuiWindowFlags_ChildMenu) != 0) + window->Pos = FindBestWindowPosForPopup(window); + else if ((flags & ImGuiWindowFlags_Popup) != 0 && !window_pos_set_by_api && window_just_appearing_after_hidden_for_resize) + window->Pos = FindBestWindowPosForPopup(window); + else if ((flags & ImGuiWindowFlags_Tooltip) != 0 && !window_pos_set_by_api && !window_is_child_tooltip) + window->Pos = FindBestWindowPosForPopup(window); + + // Calculate the range of allowed position for that window (to be movable and visible past safe area padding) + // When clamping to stay visible, we will enforce that window->Pos stays inside of visibility_rect. + ImRect viewport_rect(viewport->GetMainRect()); + ImRect viewport_work_rect(viewport->GetWorkRect()); + ImVec2 visibility_padding = ImMax(style.DisplayWindowPadding, style.DisplaySafeAreaPadding); + ImRect visibility_rect(viewport_work_rect.Min + visibility_padding, viewport_work_rect.Max - visibility_padding); + + // Clamp position/size so window stays visible within its viewport or monitor + // Ignore zero-sized display explicitly to avoid losing positions if a window manager reports zero-sized window when initializing or minimizing. + if (!window_pos_set_by_api && !(flags & ImGuiWindowFlags_ChildWindow)) + if (viewport_rect.GetWidth() > 0.0f && viewport_rect.GetHeight() > 0.0f) + ClampWindowPos(window, visibility_rect); + window->Pos = ImTrunc(window->Pos); + + // Lock window rounding for the frame (so that altering them doesn't cause inconsistencies) + // Large values tend to lead to variety of artifacts and are not recommended. + window->WindowRounding = (flags & ImGuiWindowFlags_ChildWindow) ? style.ChildRounding : ((flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiWindowFlags_Modal)) ? style.PopupRounding : style.WindowRounding; + + // For windows with title bar or menu bar, we clamp to FrameHeight(FontSize + FramePadding.y * 2.0f) to completely hide artifacts. + //if ((window->Flags & ImGuiWindowFlags_MenuBar) || !(window->Flags & ImGuiWindowFlags_NoTitleBar)) + // window->WindowRounding = ImMin(window->WindowRounding, g.FontSize + style.FramePadding.y * 2.0f); + + // Apply window focus (new and reactivated windows are moved to front) + bool want_focus = false; + if (window_just_activated_by_user && !(flags & ImGuiWindowFlags_NoFocusOnAppearing)) + { + if (flags & ImGuiWindowFlags_Popup) + want_focus = true; + else if ((flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Tooltip)) == 0) + want_focus = true; + } + + // [Test Engine] Register whole window in the item system (before submitting further decorations) +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (g.TestEngineHookItems) + { + IM_ASSERT(window->IDStack.Size == 1); + window->IDStack.Size = 0; // As window->IDStack[0] == window->ID here, make sure TestEngine doesn't erroneously see window as parent of itself. + IMGUI_TEST_ENGINE_ITEM_ADD(window->ID, window->Rect(), NULL); + IMGUI_TEST_ENGINE_ITEM_INFO(window->ID, window->Name, (g.HoveredWindow == window) ? ImGuiItemStatusFlags_HoveredRect : 0); + window->IDStack.Size = 1; + } +#endif + + // Handle manual resize: Resize Grips, Borders, Gamepad + int border_hovered = -1, border_held = -1; + ImU32 resize_grip_col[4] = {}; + const int resize_grip_count = ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup)) ? 0 : g.IO.ConfigWindowsResizeFromEdges ? 2 : 1; // Allow resize from lower-left if we have the mouse cursor feedback for it. + const float resize_grip_draw_size = IM_TRUNC(ImMax(g.FontSize * 1.10f, window->WindowRounding + 1.0f + g.FontSize * 0.2f)); + if (!window->Collapsed) + if (int auto_fit_mask = UpdateWindowManualResize(window, size_auto_fit, &border_hovered, &border_held, resize_grip_count, &resize_grip_col[0], visibility_rect)) + { + if (auto_fit_mask & (1 << ImGuiAxis_X)) + use_current_size_for_scrollbar_x = true; + if (auto_fit_mask & (1 << ImGuiAxis_Y)) + use_current_size_for_scrollbar_y = true; + } + window->ResizeBorderHovered = (signed char)border_hovered; + window->ResizeBorderHeld = (signed char)border_held; + + // SCROLLBAR VISIBILITY + + // Update scrollbar visibility (based on the Size that was effective during last frame or the auto-resized Size). + if (!window->Collapsed) + { + // When reading the current size we need to read it after size constraints have been applied. + // Intentionally use previous frame values for InnerRect and ScrollbarSizes. + // And when we use window->DecorationUp here it doesn't have ScrollbarSizes.y applied yet. + ImVec2 avail_size_from_current_frame = ImVec2(window->SizeFull.x, window->SizeFull.y - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2)); + ImVec2 avail_size_from_last_frame = window->InnerRect.GetSize() + scrollbar_sizes_from_last_frame; + ImVec2 needed_size_from_last_frame = window_just_created ? ImVec2(0, 0) : window->ContentSize + window->WindowPadding * 2.0f; + float size_x_for_scrollbars = use_current_size_for_scrollbar_x ? avail_size_from_current_frame.x : avail_size_from_last_frame.x; + float size_y_for_scrollbars = use_current_size_for_scrollbar_y ? avail_size_from_current_frame.y : avail_size_from_last_frame.y; + //bool scrollbar_y_from_last_frame = window->ScrollbarY; // FIXME: May want to use that in the ScrollbarX expression? How many pros vs cons? + window->ScrollbarY = (flags & ImGuiWindowFlags_AlwaysVerticalScrollbar) || ((needed_size_from_last_frame.y > size_y_for_scrollbars) && !(flags & ImGuiWindowFlags_NoScrollbar)); + window->ScrollbarX = (flags & ImGuiWindowFlags_AlwaysHorizontalScrollbar) || ((needed_size_from_last_frame.x > size_x_for_scrollbars - (window->ScrollbarY ? style.ScrollbarSize : 0.0f)) && !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar)); + if (window->ScrollbarX && !window->ScrollbarY) + window->ScrollbarY = (needed_size_from_last_frame.y > size_y_for_scrollbars - style.ScrollbarSize) && !(flags & ImGuiWindowFlags_NoScrollbar); + window->ScrollbarSizes = ImVec2(window->ScrollbarY ? style.ScrollbarSize : 0.0f, window->ScrollbarX ? style.ScrollbarSize : 0.0f); + + // Amend the partially filled window->DecorationXXX values. + window->DecoOuterSizeX2 += window->ScrollbarSizes.x; + window->DecoOuterSizeY2 += window->ScrollbarSizes.y; + } + + // UPDATE RECTANGLES (1- THOSE NOT AFFECTED BY SCROLLING) + // Update various regions. Variables they depend on should be set above in this function. + // We set this up after processing the resize grip so that our rectangles doesn't lag by a frame. + + // Outer rectangle + // Not affected by window border size. Used by: + // - FindHoveredWindow() (w/ extra padding when border resize is enabled) + // - Begin() initial clipping rect for drawing window background and borders. + // - Begin() clipping whole child + const ImRect host_rect = ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup) && !window_is_child_tooltip) ? parent_window->ClipRect : viewport_rect; + const ImRect outer_rect = window->Rect(); + const ImRect title_bar_rect = window->TitleBarRect(); + window->OuterRectClipped = outer_rect; + window->OuterRectClipped.ClipWith(host_rect); + + // Inner rectangle + // Not affected by window border size. Used by: + // - InnerClipRect + // - ScrollToRectEx() + // - NavUpdatePageUpPageDown() + // - Scrollbar() + window->InnerRect.Min.x = window->Pos.x + window->DecoOuterSizeX1; + window->InnerRect.Min.y = window->Pos.y + window->DecoOuterSizeY1; + window->InnerRect.Max.x = window->Pos.x + window->Size.x - window->DecoOuterSizeX2; + window->InnerRect.Max.y = window->Pos.y + window->Size.y - window->DecoOuterSizeY2; + + // Inner clipping rectangle. + // - Extend a outside of normal work region up to borders. + // - This is to allow e.g. Selectable or CollapsingHeader or some separators to cover that space. + // - It also makes clipped items be more noticeable. + // - And is consistent on both axis (prior to 2024/05/03 ClipRect used WindowPadding.x * 0.5f on left and right edge), see #3312 + // - Force round operator last to ensure that e.g. (int)(max.x-min.x) in user's render code produce correct result. + // Note that if our window is collapsed we will end up with an inverted (~null) clipping rectangle which is the correct behavior. + // Affected by window/frame border size. Used by: + // - Begin() initial clip rect + float top_border_size = (((flags & ImGuiWindowFlags_MenuBar) || !(flags & ImGuiWindowFlags_NoTitleBar)) ? style.FrameBorderSize : window->WindowBorderSize); + + // Try to match the fact that our border is drawn centered over the window rectangle, rather than inner. + // This is why we do a *0.5f here. We don't currently even technically support large values for WindowBorderSize, + // see e.g #7887 #7888, but may do after we move the window border to become an inner border (and then we can remove the 0.5f here). + window->InnerClipRect.Min.x = ImFloor(0.5f + window->InnerRect.Min.x + window->WindowBorderSize * 0.5f); + window->InnerClipRect.Min.y = ImFloor(0.5f + window->InnerRect.Min.y + top_border_size * 0.5f); + window->InnerClipRect.Max.x = ImFloor(window->InnerRect.Max.x - window->WindowBorderSize * 0.5f); + window->InnerClipRect.Max.y = ImFloor(window->InnerRect.Max.y - window->WindowBorderSize * 0.5f); + window->InnerClipRect.ClipWithFull(host_rect); + + // Default item width. Make it proportional to window size if window manually resizes + if (window->Size.x > 0.0f && !(flags & ImGuiWindowFlags_Tooltip) && !(flags & ImGuiWindowFlags_AlwaysAutoResize)) + window->ItemWidthDefault = ImTrunc(window->Size.x * 0.65f); + else + window->ItemWidthDefault = ImTrunc(g.FontSize * 16.0f); + + // SCROLLING + + // Lock down maximum scrolling + // The value of ScrollMax are ahead from ScrollbarX/ScrollbarY which is intentionally using InnerRect from previous rect in order to accommodate + // for right/bottom aligned items without creating a scrollbar. + window->ScrollMax.x = ImMax(0.0f, window->ContentSize.x + window->WindowPadding.x * 2.0f - window->InnerRect.GetWidth()); + window->ScrollMax.y = ImMax(0.0f, window->ContentSize.y + window->WindowPadding.y * 2.0f - window->InnerRect.GetHeight()); + + // Apply scrolling + window->Scroll = CalcNextScrollFromScrollTargetAndClamp(window); + window->ScrollTarget = ImVec2(FLT_MAX, FLT_MAX); + window->DecoInnerSizeX1 = window->DecoInnerSizeY1 = 0.0f; + + // DRAWING + + // Setup draw list and outer clipping rectangle + IM_ASSERT(window->DrawList->CmdBuffer.Size == 1 && window->DrawList->CmdBuffer[0].ElemCount == 0); + window->DrawList->PushTextureID(g.Font->ContainerAtlas->TexID); + PushClipRect(host_rect.Min, host_rect.Max, false); + + // Child windows can render their decoration (bg color, border, scrollbars, etc.) within their parent to save a draw call (since 1.71) + // When using overlapping child windows, this will break the assumption that child z-order is mapped to submission order. + // FIXME: User code may rely on explicit sorting of overlapping child window and would need to disable this somehow. Please get in contact if you are affected (github #4493) + { + bool render_decorations_in_parent = false; + if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_Popup) && !window_is_child_tooltip) + { + // - We test overlap with the previous child window only (testing all would end up being O(log N) not a good investment here) + // - We disable this when the parent window has zero vertices, which is a common pattern leading to laying out multiple overlapping childs + ImGuiWindow* previous_child = parent_window->DC.ChildWindows.Size >= 2 ? parent_window->DC.ChildWindows[parent_window->DC.ChildWindows.Size - 2] : NULL; + bool previous_child_overlapping = previous_child ? previous_child->Rect().Overlaps(window->Rect()) : false; + bool parent_is_empty = (parent_window->DrawList->VtxBuffer.Size == 0); + if (window->DrawList->CmdBuffer.back().ElemCount == 0 && !parent_is_empty && !previous_child_overlapping) + render_decorations_in_parent = true; + } + if (render_decorations_in_parent) + window->DrawList = parent_window->DrawList; + + // Handle title bar, scrollbar, resize grips and resize borders + const ImGuiWindow* window_to_highlight = g.NavWindowingTarget ? g.NavWindowingTarget : g.NavWindow; + const bool title_bar_is_highlight = want_focus || (window_to_highlight && window->RootWindowForTitleBarHighlight == window_to_highlight->RootWindowForTitleBarHighlight); + const bool handle_borders_and_resize_grips = true; // This exists to facilitate merge with 'docking' branch. + RenderWindowDecorations(window, title_bar_rect, title_bar_is_highlight, handle_borders_and_resize_grips, resize_grip_count, resize_grip_col, resize_grip_draw_size); + + if (render_decorations_in_parent) + window->DrawList = &window->DrawListInst; + } + + // UPDATE RECTANGLES (2- THOSE AFFECTED BY SCROLLING) + + // Work rectangle. + // Affected by window padding and border size. Used by: + // - Columns() for right-most edge + // - TreeNode(), CollapsingHeader() for right-most edge + // - BeginTabBar() for right-most edge + const bool allow_scrollbar_x = !(flags & ImGuiWindowFlags_NoScrollbar) && (flags & ImGuiWindowFlags_HorizontalScrollbar); + const bool allow_scrollbar_y = !(flags & ImGuiWindowFlags_NoScrollbar); + const float work_rect_size_x = (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : ImMax(allow_scrollbar_x ? window->ContentSize.x : 0.0f, window->Size.x - window->WindowPadding.x * 2.0f - (window->DecoOuterSizeX1 + window->DecoOuterSizeX2))); + const float work_rect_size_y = (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : ImMax(allow_scrollbar_y ? window->ContentSize.y : 0.0f, window->Size.y - window->WindowPadding.y * 2.0f - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2))); + window->WorkRect.Min.x = ImTrunc(window->InnerRect.Min.x - window->Scroll.x + ImMax(window->WindowPadding.x, window->WindowBorderSize)); + window->WorkRect.Min.y = ImTrunc(window->InnerRect.Min.y - window->Scroll.y + ImMax(window->WindowPadding.y, window->WindowBorderSize)); + window->WorkRect.Max.x = window->WorkRect.Min.x + work_rect_size_x; + window->WorkRect.Max.y = window->WorkRect.Min.y + work_rect_size_y; + window->ParentWorkRect = window->WorkRect; + + // [LEGACY] Content Region + // FIXME-OBSOLETE: window->ContentRegionRect.Max is currently very misleading / partly faulty, but some BeginChild() patterns relies on it. + // Unless explicit content size is specified by user, this currently represent the region leading to no scrolling. + // Used by: + // - Mouse wheel scrolling + many other things + window->ContentRegionRect.Min.x = window->Pos.x - window->Scroll.x + window->WindowPadding.x + window->DecoOuterSizeX1; + window->ContentRegionRect.Min.y = window->Pos.y - window->Scroll.y + window->WindowPadding.y + window->DecoOuterSizeY1; + window->ContentRegionRect.Max.x = window->ContentRegionRect.Min.x + (window->ContentSizeExplicit.x != 0.0f ? window->ContentSizeExplicit.x : (window->Size.x - window->WindowPadding.x * 2.0f - (window->DecoOuterSizeX1 + window->DecoOuterSizeX2))); + window->ContentRegionRect.Max.y = window->ContentRegionRect.Min.y + (window->ContentSizeExplicit.y != 0.0f ? window->ContentSizeExplicit.y : (window->Size.y - window->WindowPadding.y * 2.0f - (window->DecoOuterSizeY1 + window->DecoOuterSizeY2))); + + // Setup drawing context + // (NB: That term "drawing context / DC" lost its meaning a long time ago. Initially was meant to hold transient data only. Nowadays difference between window-> and window->DC-> is dubious.) + window->DC.Indent.x = window->DecoOuterSizeX1 + window->WindowPadding.x - window->Scroll.x; + window->DC.GroupOffset.x = 0.0f; + window->DC.ColumnsOffset.x = 0.0f; + + // Record the loss of precision of CursorStartPos which can happen due to really large scrolling amount. + // This is used by clipper to compensate and fix the most common use case of large scroll area. Easy and cheap, next best thing compared to switching everything to double or ImU64. + double start_pos_highp_x = (double)window->Pos.x + window->WindowPadding.x - (double)window->Scroll.x + window->DecoOuterSizeX1 + window->DC.ColumnsOffset.x; + double start_pos_highp_y = (double)window->Pos.y + window->WindowPadding.y - (double)window->Scroll.y + window->DecoOuterSizeY1; + window->DC.CursorStartPos = ImVec2((float)start_pos_highp_x, (float)start_pos_highp_y); + window->DC.CursorStartPosLossyness = ImVec2((float)(start_pos_highp_x - window->DC.CursorStartPos.x), (float)(start_pos_highp_y - window->DC.CursorStartPos.y)); + window->DC.CursorPos = window->DC.CursorStartPos; + window->DC.CursorPosPrevLine = window->DC.CursorPos; + window->DC.CursorMaxPos = window->DC.CursorStartPos; + window->DC.IdealMaxPos = window->DC.CursorStartPos; + window->DC.CurrLineSize = window->DC.PrevLineSize = ImVec2(0.0f, 0.0f); + window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset = 0.0f; + window->DC.IsSameLine = window->DC.IsSetPos = false; + + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + window->DC.NavLayersActiveMask = window->DC.NavLayersActiveMaskNext; + window->DC.NavLayersActiveMaskNext = 0x00; + window->DC.NavIsScrollPushableX = true; + window->DC.NavHideHighlightOneFrame = false; + window->DC.NavWindowHasScrollY = (window->ScrollMax.y > 0.0f); + + window->DC.MenuBarAppending = false; + window->DC.MenuColumns.Update(style.ItemSpacing.x, window_just_activated_by_user); + window->DC.TreeDepth = 0; + window->DC.TreeHasStackDataDepthMask = 0x00; + window->DC.ChildWindows.resize(0); + window->DC.StateStorage = &window->StateStorage; + window->DC.CurrentColumns = NULL; + window->DC.LayoutType = ImGuiLayoutType_Vertical; + window->DC.ParentLayoutType = parent_window ? parent_window->DC.LayoutType : ImGuiLayoutType_Vertical; + + window->DC.ItemWidth = window->ItemWidthDefault; + window->DC.TextWrapPos = -1.0f; // disabled + window->DC.ItemWidthStack.resize(0); + window->DC.TextWrapPosStack.resize(0); + if (flags & ImGuiWindowFlags_Modal) + window->DC.ModalDimBgColor = ColorConvertFloat4ToU32(GetStyleColorVec4(ImGuiCol_ModalWindowDimBg)); + + if (window->AutoFitFramesX > 0) + window->AutoFitFramesX--; + if (window->AutoFitFramesY > 0) + window->AutoFitFramesY--; + + // Apply focus (we need to call FocusWindow() AFTER setting DC.CursorStartPos so our initial navigation reference rectangle can start around there) + // We ImGuiFocusRequestFlags_UnlessBelowModal to: + // - Avoid focusing a window that is created outside of a modal. This will prevent active modal from being closed. + // - Position window behind the modal that is not a begin-parent of this window. + if (want_focus) + FocusWindow(window, ImGuiFocusRequestFlags_UnlessBelowModal); + if (want_focus && window == g.NavWindow) + NavInitWindow(window, false); // <-- this is in the way for us to be able to defer and sort reappearing FocusWindow() calls + + // Title bar + if (!(flags & ImGuiWindowFlags_NoTitleBar)) + RenderWindowTitleBarContents(window, ImRect(title_bar_rect.Min.x + window->WindowBorderSize, title_bar_rect.Min.y, title_bar_rect.Max.x - window->WindowBorderSize, title_bar_rect.Max.y), name, p_open); + + // Clear hit test shape every frame + window->HitTestHoleSize.x = window->HitTestHoleSize.y = 0; + + // Pressing CTRL+C while holding on a window copy its content to the clipboard + // This works but 1. doesn't handle multiple Begin/End pairs, 2. recursing into another Begin/End pair - so we need to work that out and add better logging scope. + // Maybe we can support CTRL+C on every element? + /* + //if (g.NavWindow == window && g.ActiveId == 0) + if (g.ActiveId == window->MoveId) + if (g.IO.KeyCtrl && IsKeyPressed(ImGuiKey_C)) + LogToClipboard(); + */ + + // We fill last item data based on Title Bar/Tab, in order for IsItemHovered() and IsItemActive() to be usable after Begin(). + // This is useful to allow creating context menus on title bar only, etc. + SetLastItemDataForWindow(window, title_bar_rect); + + // [DEBUG] +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (g.DebugLocateId != 0 && (window->ID == g.DebugLocateId || window->MoveId == g.DebugLocateId)) + DebugLocateItemResolveWithLastItem(); +#endif + + // [Test Engine] Register title bar / tab with MoveId. +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (!(window->Flags & ImGuiWindowFlags_NoTitleBar)) + IMGUI_TEST_ENGINE_ITEM_ADD(g.LastItemData.ID, g.LastItemData.Rect, &g.LastItemData); +#endif + } + else + { + // Skip refresh always mark active + if (window->SkipRefresh) + SetWindowActiveForSkipRefresh(window); + + // Append + SetCurrentWindow(window); + SetLastItemDataForWindow(window, window->TitleBarRect()); + } + + if (!window->SkipRefresh) + PushClipRect(window->InnerClipRect.Min, window->InnerClipRect.Max, true); + + // Clear 'accessed' flag last thing (After PushClipRect which will set the flag. We want the flag to stay false when the default "Debug" window is unused) + window->WriteAccessed = false; + window->BeginCount++; + g.NextWindowData.ClearFlags(); + + // Update visibility + if (first_begin_of_the_frame && !window->SkipRefresh) + { + if ((flags & ImGuiWindowFlags_ChildWindow) && !(flags & ImGuiWindowFlags_ChildMenu)) + { + // Child window can be out of sight and have "negative" clip windows. + // Mark them as collapsed so commands are skipped earlier (we can't manually collapse them because they have no title bar). + IM_ASSERT((flags & ImGuiWindowFlags_NoTitleBar) != 0); + const bool nav_request = (window->ChildFlags & ImGuiChildFlags_NavFlattened) && (g.NavAnyRequest && g.NavWindow && g.NavWindow->RootWindowForNav == window->RootWindowForNav); + if (!g.LogEnabled && !nav_request) + if (window->OuterRectClipped.Min.x >= window->OuterRectClipped.Max.x || window->OuterRectClipped.Min.y >= window->OuterRectClipped.Max.y) + { + if (window->AutoFitFramesX > 0 || window->AutoFitFramesY > 0) + window->HiddenFramesCannotSkipItems = 1; + else + window->HiddenFramesCanSkipItems = 1; + } + + // Hide along with parent or if parent is collapsed + if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCanSkipItems > 0)) + window->HiddenFramesCanSkipItems = 1; + if (parent_window && (parent_window->Collapsed || parent_window->HiddenFramesCannotSkipItems > 0)) + window->HiddenFramesCannotSkipItems = 1; + } + + // Don't render if style alpha is 0.0 at the time of Begin(). This is arbitrary and inconsistent but has been there for a long while (may remove at some point) + if (style.Alpha <= 0.0f) + window->HiddenFramesCanSkipItems = 1; + + // Update the Hidden flag + bool hidden_regular = (window->HiddenFramesCanSkipItems > 0) || (window->HiddenFramesCannotSkipItems > 0); + window->Hidden = hidden_regular || (window->HiddenFramesForRenderOnly > 0); + + // Disable inputs for requested number of frames + if (window->DisableInputsFrames > 0) + { + window->DisableInputsFrames--; + window->Flags |= ImGuiWindowFlags_NoInputs; + } + + // Update the SkipItems flag, used to early out of all items functions (no layout required) + bool skip_items = false; + if (window->Collapsed || !window->Active || hidden_regular) + if (window->AutoFitFramesX <= 0 && window->AutoFitFramesY <= 0 && window->HiddenFramesCannotSkipItems <= 0) + skip_items = true; + window->SkipItems = skip_items; + } + else if (first_begin_of_the_frame) + { + // Skip refresh mode + window->SkipItems = true; + } + + // [DEBUG] io.ConfigDebugBeginReturnValue override return value to test Begin/End and BeginChild/EndChild behaviors. + // (The implicit fallback window is NOT automatically ended allowing it to always be able to receive commands without crashing) +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (!window->IsFallbackWindow) + if ((g.IO.ConfigDebugBeginReturnValueOnce && window_just_created) || (g.IO.ConfigDebugBeginReturnValueLoop && g.DebugBeginReturnValueCullDepth == g.CurrentWindowStack.Size)) + { + if (window->AutoFitFramesX > 0) { window->AutoFitFramesX++; } + if (window->AutoFitFramesY > 0) { window->AutoFitFramesY++; } + return false; + } +#endif + + return !window->SkipItems; +} + +static void ImGui::SetLastItemDataForWindow(ImGuiWindow* window, const ImRect& rect) +{ + ImGuiContext& g = *GImGui; + SetLastItemData(window->MoveId, g.CurrentItemFlags, IsMouseHoveringRect(rect.Min, rect.Max, false) ? ImGuiItemStatusFlags_HoveredRect : 0, rect); +} + +void ImGui::End() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Error checking: verify that user hasn't called End() too many times! + if (g.CurrentWindowStack.Size <= 1 && g.WithinFrameScopeWithImplicitWindow) + { + IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size > 1, "Calling End() too many times!"); + return; + } + ImGuiWindowStackData& window_stack_data = g.CurrentWindowStack.back(); + + // Error checking: verify that user doesn't directly call End() on a child window. + if (window->Flags & ImGuiWindowFlags_ChildWindow) + IM_ASSERT_USER_ERROR(g.WithinEndChild, "Must call EndChild() and not End()!"); + + // Close anything that is open + if (window->DC.CurrentColumns) + EndColumns(); + if (!window->SkipRefresh) + PopClipRect(); // Inner window clip rectangle + PopFocusScope(); + if (window_stack_data.DisabledOverrideReenable && window->RootWindow == window) + EndDisabledOverrideReenable(); + + if (window->SkipRefresh) + { + IM_ASSERT(window->DrawList == NULL); + window->DrawList = &window->DrawListInst; + } + + // Stop logging + if (!(window->Flags & ImGuiWindowFlags_ChildWindow)) // FIXME: add more options for scope of logging + LogFinish(); + + if (window->DC.IsSetPos) + ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + // Pop from window stack + g.LastItemData = window_stack_data.ParentLastItemDataBackup; + if (window->Flags & ImGuiWindowFlags_ChildMenu) + g.BeginMenuDepth--; + if (window->Flags & ImGuiWindowFlags_Popup) + g.BeginPopupStack.pop_back(); + window_stack_data.StackSizesOnBegin.CompareWithContextState(&g); + g.CurrentWindowStack.pop_back(); + SetCurrentWindow(g.CurrentWindowStack.Size == 0 ? NULL : g.CurrentWindowStack.back().Window); +} + +void ImGui::BringWindowToFocusFront(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(window == window->RootWindow); + + const int cur_order = window->FocusOrder; + IM_ASSERT(g.WindowsFocusOrder[cur_order] == window); + if (g.WindowsFocusOrder.back() == window) + return; + + const int new_order = g.WindowsFocusOrder.Size - 1; + for (int n = cur_order; n < new_order; n++) + { + g.WindowsFocusOrder[n] = g.WindowsFocusOrder[n + 1]; + g.WindowsFocusOrder[n]->FocusOrder--; + IM_ASSERT(g.WindowsFocusOrder[n]->FocusOrder == n); + } + g.WindowsFocusOrder[new_order] = window; + window->FocusOrder = (short)new_order; +} + +void ImGui::BringWindowToDisplayFront(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* current_front_window = g.Windows.back(); + if (current_front_window == window || current_front_window->RootWindow == window) // Cheap early out (could be better) + return; + for (int i = g.Windows.Size - 2; i >= 0; i--) // We can ignore the top-most window + if (g.Windows[i] == window) + { + memmove(&g.Windows[i], &g.Windows[i + 1], (size_t)(g.Windows.Size - i - 1) * sizeof(ImGuiWindow*)); + g.Windows[g.Windows.Size - 1] = window; + break; + } +} + +void ImGui::BringWindowToDisplayBack(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (g.Windows[0] == window) + return; + for (int i = 0; i < g.Windows.Size; i++) + if (g.Windows[i] == window) + { + memmove(&g.Windows[1], &g.Windows[0], (size_t)i * sizeof(ImGuiWindow*)); + g.Windows[0] = window; + break; + } +} + +void ImGui::BringWindowToDisplayBehind(ImGuiWindow* window, ImGuiWindow* behind_window) +{ + IM_ASSERT(window != NULL && behind_window != NULL); + ImGuiContext& g = *GImGui; + window = window->RootWindow; + behind_window = behind_window->RootWindow; + int pos_wnd = FindWindowDisplayIndex(window); + int pos_beh = FindWindowDisplayIndex(behind_window); + if (pos_wnd < pos_beh) + { + size_t copy_bytes = (pos_beh - pos_wnd - 1) * sizeof(ImGuiWindow*); + memmove(&g.Windows.Data[pos_wnd], &g.Windows.Data[pos_wnd + 1], copy_bytes); + g.Windows[pos_beh - 1] = window; + } + else + { + size_t copy_bytes = (pos_wnd - pos_beh) * sizeof(ImGuiWindow*); + memmove(&g.Windows.Data[pos_beh + 1], &g.Windows.Data[pos_beh], copy_bytes); + g.Windows[pos_beh] = window; + } +} + +int ImGui::FindWindowDisplayIndex(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + return g.Windows.index_from_ptr(g.Windows.find(window)); +} + +// Moving window to front of display and set focus (which happens to be back of our sorted list) +void ImGui::FocusWindow(ImGuiWindow* window, ImGuiFocusRequestFlags flags) +{ + ImGuiContext& g = *GImGui; + + // Modal check? + if ((flags & ImGuiFocusRequestFlags_UnlessBelowModal) && (g.NavWindow != window)) // Early out in common case. + if (ImGuiWindow* blocking_modal = FindBlockingModal(window)) + { + // This block would typically be reached in two situations: + // - API call to FocusWindow() with a window under a modal and ImGuiFocusRequestFlags_UnlessBelowModal flag. + // - User clicking on void or anything behind a modal while a modal is open (window == NULL) + IMGUI_DEBUG_LOG_FOCUS("[focus] FocusWindow(\"%s\", UnlessBelowModal): prevented by \"%s\".\n", window ? window->Name : "", blocking_modal->Name); + if (window && window == window->RootWindow && (window->Flags & ImGuiWindowFlags_NoBringToFrontOnFocus) == 0) + BringWindowToDisplayBehind(window, blocking_modal); // Still bring right under modal. (FIXME: Could move in focus list too?) + ClosePopupsOverWindow(GetTopMostPopupModal(), false); // Note how we need to use GetTopMostPopupModal() aad NOT blocking_modal, to handle nested modals + return; + } + + // Find last focused child (if any) and focus it instead. + if ((flags & ImGuiFocusRequestFlags_RestoreFocusedChild) && window != NULL) + window = NavRestoreLastChildNavWindow(window); + + // Apply focus + if (g.NavWindow != window) + { + SetNavWindow(window); + if (window && g.NavDisableMouseHover) + g.NavMousePosDirty = true; + g.NavId = window ? window->NavLastIds[0] : 0; // Restore NavId + g.NavLayer = ImGuiNavLayer_Main; + SetNavFocusScope(window ? window->NavRootFocusScopeId : 0); + g.NavIdIsAlive = false; + g.NavLastValidSelectionUserData = ImGuiSelectionUserData_Invalid; + + // Close popups if any + ClosePopupsOverWindow(window, false); + } + + // Move the root window to the top of the pile + IM_ASSERT(window == NULL || window->RootWindow != NULL); + ImGuiWindow* focus_front_window = window ? window->RootWindow : NULL; // NB: In docking branch this is window->RootWindowDockStop + ImGuiWindow* display_front_window = window ? window->RootWindow : NULL; + + // Steal active widgets. Some of the cases it triggers includes: + // - Focus a window while an InputText in another window is active, if focus happens before the old InputText can run. + // - When using Nav to activate menu items (due to timing of activating on press->new window appears->losing ActiveId) + if (g.ActiveId != 0 && g.ActiveIdWindow && g.ActiveIdWindow->RootWindow != focus_front_window) + if (!g.ActiveIdNoClearOnFocusLoss) + ClearActiveID(); + + // Passing NULL allow to disable keyboard focus + if (!window) + return; + + // Bring to front + BringWindowToFocusFront(focus_front_window); + if (((window->Flags | display_front_window->Flags) & ImGuiWindowFlags_NoBringToFrontOnFocus) == 0) + BringWindowToDisplayFront(display_front_window); +} + +void ImGui::FocusTopMostWindowUnderOne(ImGuiWindow* under_this_window, ImGuiWindow* ignore_window, ImGuiViewport* filter_viewport, ImGuiFocusRequestFlags flags) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(filter_viewport); // Unused in master branch. + int start_idx = g.WindowsFocusOrder.Size - 1; + if (under_this_window != NULL) + { + // Aim at root window behind us, if we are in a child window that's our own root (see #4640) + int offset = -1; + while (under_this_window->Flags & ImGuiWindowFlags_ChildWindow) + { + under_this_window = under_this_window->ParentWindow; + offset = 0; + } + start_idx = FindWindowFocusIndex(under_this_window) + offset; + } + for (int i = start_idx; i >= 0; i--) + { + // We may later decide to test for different NoXXXInputs based on the active navigation input (mouse vs nav) but that may feel more confusing to the user. + ImGuiWindow* window = g.WindowsFocusOrder[i]; + if (window == ignore_window || !window->WasActive) + continue; + if ((window->Flags & (ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs)) != (ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs)) + { + FocusWindow(window, flags); + return; + } + } + FocusWindow(NULL, flags); +} + +// Important: this alone doesn't alter current ImDrawList state. This is called by PushFont/PopFont only. +void ImGui::SetCurrentFont(ImFont* font) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(font && font->IsLoaded()); // Font Atlas not created. Did you call io.Fonts->GetTexDataAsRGBA32 / GetTexDataAsAlpha8 ? + IM_ASSERT(font->Scale > 0.0f); + g.Font = font; + g.FontBaseSize = ImMax(1.0f, g.IO.FontGlobalScale * g.Font->FontSize * g.Font->Scale); + g.FontSize = g.CurrentWindow ? g.CurrentWindow->CalcFontSize() : 0.0f; + g.FontScale = g.FontSize / g.Font->FontSize; + + ImFontAtlas* atlas = g.Font->ContainerAtlas; + g.DrawListSharedData.TexUvWhitePixel = atlas->TexUvWhitePixel; + g.DrawListSharedData.TexUvLines = atlas->TexUvLines; + g.DrawListSharedData.Font = g.Font; + g.DrawListSharedData.FontSize = g.FontSize; + g.DrawListSharedData.FontScale = g.FontScale; + g.DrawListSharedData.ShadowRectIds = &atlas->ShadowRectIds[0]; + g.DrawListSharedData.ShadowRectUvs = &atlas->ShadowRectUvs[0]; +} + +// Use ImDrawList::_SetTextureID(), making our shared g.FontStack[] authorative against window-local ImDrawList. +// - Whereas ImDrawList::PushTextureID()/PopTextureID() is not to be used across Begin() calls. +// - Note that we don't propagate current texture id when e.g. Begin()-ing into a new window, we never really did... +// - Some code paths never really fully worked with multiple atlas textures. +// - The right-ish solution may be to remove _SetTextureID() and make AddText/RenderText lazily call PushTextureID()/PopTextureID() +// the same way AddImage() does, but then all other primitives would also need to? I don't think we should tackle this problem +// because we have a concrete need and a test bed for multiple atlas textures. +void ImGui::PushFont(ImFont* font) +{ + ImGuiContext& g = *GImGui; + if (font == NULL) + font = GetDefaultFont(); + g.FontStack.push_back(font); + SetCurrentFont(font); + g.CurrentWindow->DrawList->_SetTextureID(font->ContainerAtlas->TexID); +} + +void ImGui::PopFont() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.FontStack.Size > 0); + g.FontStack.pop_back(); + ImFont* font = g.FontStack.Size == 0 ? GetDefaultFont() : g.FontStack.back(); + SetCurrentFont(font); + g.CurrentWindow->DrawList->_SetTextureID(font->ContainerAtlas->TexID); +} + +void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) +{ + ImGuiContext& g = *GImGui; + ImGuiItemFlags item_flags = g.CurrentItemFlags; + IM_ASSERT(item_flags == g.ItemFlagsStack.back()); + if (enabled) + item_flags |= option; + else + item_flags &= ~option; + g.CurrentItemFlags = item_flags; + g.ItemFlagsStack.push_back(item_flags); +} + +void ImGui::PopItemFlag() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ItemFlagsStack.Size > 1); // Too many calls to PopItemFlag() - we always leave a 0 at the bottom of the stack. + g.ItemFlagsStack.pop_back(); + g.CurrentItemFlags = g.ItemFlagsStack.back(); +} + +// BeginDisabled()/EndDisabled() +// - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the stack is enough to keep everything disabled) +// - Visually this is currently altering alpha, but it is expected that in a future styling system this would work differently. +// - Feedback welcome at https://github.com/ocornut/imgui/issues/211 +// - BeginDisabled(false)/EndDisabled() essentially does nothing but is provided to facilitate use of boolean expressions. +// (as a micro-optimization: if you have tens of thousands of BeginDisabled(false)/EndDisabled() pairs, you might want to reformulate your code to avoid making those calls) +// - Note: mixing up BeginDisabled() and PushItemFlag(ImGuiItemFlags_Disabled) is currently NOT SUPPORTED. +void ImGui::BeginDisabled(bool disabled) +{ + ImGuiContext& g = *GImGui; + bool was_disabled = (g.CurrentItemFlags & ImGuiItemFlags_Disabled) != 0; + if (!was_disabled && disabled) + { + g.DisabledAlphaBackup = g.Style.Alpha; + g.Style.Alpha *= g.Style.DisabledAlpha; // PushStyleVar(ImGuiStyleVar_Alpha, g.Style.Alpha * g.Style.DisabledAlpha); + } + if (was_disabled || disabled) + g.CurrentItemFlags |= ImGuiItemFlags_Disabled; + g.ItemFlagsStack.push_back(g.CurrentItemFlags); // FIXME-OPT: can we simply skip this and use DisabledStackSize? + g.DisabledStackSize++; +} + +void ImGui::EndDisabled() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.DisabledStackSize > 0); + g.DisabledStackSize--; + bool was_disabled = (g.CurrentItemFlags & ImGuiItemFlags_Disabled) != 0; + //PopItemFlag(); + g.ItemFlagsStack.pop_back(); + g.CurrentItemFlags = g.ItemFlagsStack.back(); + if (was_disabled && (g.CurrentItemFlags & ImGuiItemFlags_Disabled) == 0) + g.Style.Alpha = g.DisabledAlphaBackup; //PopStyleVar(); +} + +// Could have been called BeginDisabledDisable() but it didn't want to be award nominated for most awkward function name. +// Ideally we would use a shared e.g. BeginDisabled()->BeginDisabledEx() but earlier needs to be optimal. +// The whole code for this is awkward, will reevaluate if we find a way to implement SetNextItemDisabled(). +void ImGui::BeginDisabledOverrideReenable() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.CurrentItemFlags & ImGuiItemFlags_Disabled); + g.Style.Alpha = g.DisabledAlphaBackup; + g.CurrentItemFlags &= ~ImGuiItemFlags_Disabled; + g.ItemFlagsStack.push_back(g.CurrentItemFlags); + g.DisabledStackSize++; +} + +void ImGui::EndDisabledOverrideReenable() +{ + ImGuiContext& g = *GImGui; + g.DisabledStackSize--; + IM_ASSERT(g.DisabledStackSize > 0); + g.ItemFlagsStack.pop_back(); + g.CurrentItemFlags = g.ItemFlagsStack.back(); + g.Style.Alpha = g.DisabledAlphaBackup * g.Style.DisabledAlpha; +} + +void ImGui::PushTextWrapPos(float wrap_pos_x) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.TextWrapPosStack.push_back(window->DC.TextWrapPos); + window->DC.TextWrapPos = wrap_pos_x; +} + +void ImGui::PopTextWrapPos() +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.TextWrapPos = window->DC.TextWrapPosStack.back(); + window->DC.TextWrapPosStack.pop_back(); +} + +static ImGuiWindow* GetCombinedRootWindow(ImGuiWindow* window, bool popup_hierarchy) +{ + ImGuiWindow* last_window = NULL; + while (last_window != window) + { + last_window = window; + window = window->RootWindow; + if (popup_hierarchy) + window = window->RootWindowPopupTree; + } + return window; +} + +bool ImGui::IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent, bool popup_hierarchy) +{ + ImGuiWindow* window_root = GetCombinedRootWindow(window, popup_hierarchy); + if (window_root == potential_parent) + return true; + while (window != NULL) + { + if (window == potential_parent) + return true; + if (window == window_root) // end of chain + return false; + window = window->ParentWindow; + } + return false; +} + +bool ImGui::IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent) +{ + if (window->RootWindow == potential_parent) + return true; + while (window != NULL) + { + if (window == potential_parent) + return true; + window = window->ParentWindowInBeginStack; + } + return false; +} + +bool ImGui::IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below) +{ + ImGuiContext& g = *GImGui; + + // It would be saner to ensure that display layer is always reflected in the g.Windows[] order, which would likely requires altering all manipulations of that array + const int display_layer_delta = GetWindowDisplayLayer(potential_above) - GetWindowDisplayLayer(potential_below); + if (display_layer_delta != 0) + return display_layer_delta > 0; + + for (int i = g.Windows.Size - 1; i >= 0; i--) + { + ImGuiWindow* candidate_window = g.Windows[i]; + if (candidate_window == potential_above) + return true; + if (candidate_window == potential_below) + return false; + } + return false; +} + +// Is current window hovered and hoverable (e.g. not blocked by a popup/modal)? See ImGuiHoveredFlags_ for options. +// IMPORTANT: If you are trying to check whether your mouse should be dispatched to Dear ImGui or to your underlying app, +// you should not use this function! Use the 'io.WantCaptureMouse' boolean for that! +// Refer to FAQ entry "How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application?" for details. +bool ImGui::IsWindowHovered(ImGuiHoveredFlags flags) +{ + IM_ASSERT((flags & ~ImGuiHoveredFlags_AllowedMaskForIsWindowHovered) == 0 && "Invalid flags for IsWindowHovered()!"); + + ImGuiContext& g = *GImGui; + ImGuiWindow* ref_window = g.HoveredWindow; + ImGuiWindow* cur_window = g.CurrentWindow; + if (ref_window == NULL) + return false; + + if ((flags & ImGuiHoveredFlags_AnyWindow) == 0) + { + IM_ASSERT(cur_window); // Not inside a Begin()/End() + const bool popup_hierarchy = (flags & ImGuiHoveredFlags_NoPopupHierarchy) == 0; + if (flags & ImGuiHoveredFlags_RootWindow) + cur_window = GetCombinedRootWindow(cur_window, popup_hierarchy); + + bool result; + if (flags & ImGuiHoveredFlags_ChildWindows) + result = IsWindowChildOf(ref_window, cur_window, popup_hierarchy); + else + result = (ref_window == cur_window); + if (!result) + return false; + } + + if (!IsWindowContentHoverable(ref_window, flags)) + return false; + if (!(flags & ImGuiHoveredFlags_AllowWhenBlockedByActiveItem)) + if (g.ActiveId != 0 && !g.ActiveIdAllowOverlap && g.ActiveId != ref_window->MoveId) + return false; + + // When changing hovered window we requires a bit of stationary delay before activating hover timer. + // FIXME: We don't support delay other than stationary one for now, other delay would need a way + // to fulfill the possibility that multiple IsWindowHovered() with varying flag could return true + // for different windows of the hierarchy. Possibly need a Hash(Current+Flags) ==> (Timer) cache. + // We can implement this for _Stationary because the data is linked to HoveredWindow rather than CurrentWindow. + if (flags & ImGuiHoveredFlags_ForTooltip) + flags = ApplyHoverFlagsForTooltip(flags, g.Style.HoverFlagsForTooltipMouse); + if ((flags & ImGuiHoveredFlags_Stationary) != 0 && g.HoverWindowUnlockedStationaryId != ref_window->ID) + return false; + + return true; +} + +bool ImGui::IsWindowFocused(ImGuiFocusedFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* ref_window = g.NavWindow; + ImGuiWindow* cur_window = g.CurrentWindow; + + if (ref_window == NULL) + return false; + if (flags & ImGuiFocusedFlags_AnyWindow) + return true; + + IM_ASSERT(cur_window); // Not inside a Begin()/End() + const bool popup_hierarchy = (flags & ImGuiFocusedFlags_NoPopupHierarchy) == 0; + if (flags & ImGuiHoveredFlags_RootWindow) + cur_window = GetCombinedRootWindow(cur_window, popup_hierarchy); + + if (flags & ImGuiHoveredFlags_ChildWindows) + return IsWindowChildOf(ref_window, cur_window, popup_hierarchy); + else + return (ref_window == cur_window); +} + +// Can we focus this window with CTRL+TAB (or PadMenu + PadFocusPrev/PadFocusNext) +// Note that NoNavFocus makes the window not reachable with CTRL+TAB but it can still be focused with mouse or programmatically. +// If you want a window to never be focused, you may use the e.g. NoInputs flag. +bool ImGui::IsWindowNavFocusable(ImGuiWindow* window) +{ + return window->WasActive && window == window->RootWindow && !(window->Flags & ImGuiWindowFlags_NoNavFocus); +} + +float ImGui::GetWindowWidth() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Size.x; +} + +float ImGui::GetWindowHeight() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Size.y; +} + +ImVec2 ImGui::GetWindowPos() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + return window->Pos; +} + +void ImGui::SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond) +{ + // Test condition (NB: bit 0 is always true) and clear flags for next time + if (cond && (window->SetWindowPosAllowFlags & cond) == 0) + return; + + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + window->SetWindowPosAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + window->SetWindowPosVal = ImVec2(FLT_MAX, FLT_MAX); + + // Set + const ImVec2 old_pos = window->Pos; + window->Pos = ImTrunc(pos); + ImVec2 offset = window->Pos - old_pos; + if (offset.x == 0.0f && offset.y == 0.0f) + return; + MarkIniSettingsDirty(window); + window->DC.CursorPos += offset; // As we happen to move the window while it is being appended to (which is a bad idea - will smear) let's at least offset the cursor + window->DC.CursorMaxPos += offset; // And more importantly we need to offset CursorMaxPos/CursorStartPos this so ContentSize calculation doesn't get affected. + window->DC.IdealMaxPos += offset; + window->DC.CursorStartPos += offset; +} + +void ImGui::SetWindowPos(const ImVec2& pos, ImGuiCond cond) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + SetWindowPos(window, pos, cond); +} + +void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond) +{ + if (ImGuiWindow* window = FindWindowByName(name)) + SetWindowPos(window, pos, cond); +} + +ImVec2 ImGui::GetWindowSize() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->Size; +} + +void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) +{ + // Test condition (NB: bit 0 is always true) and clear flags for next time + if (cond && (window->SetWindowSizeAllowFlags & cond) == 0) + return; + + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + window->SetWindowSizeAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + + // Enable auto-fit (not done in BeginChild() path unless appearing or combined with ImGuiChildFlags_AlwaysAutoResize) + if ((window->Flags & ImGuiWindowFlags_ChildWindow) == 0 || window->Appearing || (window->ChildFlags & ImGuiChildFlags_AlwaysAutoResize) != 0) + window->AutoFitFramesX = (size.x <= 0.0f) ? 2 : 0; + if ((window->Flags & ImGuiWindowFlags_ChildWindow) == 0 || window->Appearing || (window->ChildFlags & ImGuiChildFlags_AlwaysAutoResize) != 0) + window->AutoFitFramesY = (size.y <= 0.0f) ? 2 : 0; + + // Set + ImVec2 old_size = window->SizeFull; + if (size.x <= 0.0f) + window->AutoFitOnlyGrows = false; + else + window->SizeFull.x = IM_TRUNC(size.x); + if (size.y <= 0.0f) + window->AutoFitOnlyGrows = false; + else + window->SizeFull.y = IM_TRUNC(size.y); + if (old_size.x != window->SizeFull.x || old_size.y != window->SizeFull.y) + MarkIniSettingsDirty(window); +} + +void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) +{ + SetWindowSize(GImGui->CurrentWindow, size, cond); +} + +void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) +{ + if (ImGuiWindow* window = FindWindowByName(name)) + SetWindowSize(window, size, cond); +} + +void ImGui::SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond) +{ + // Test condition (NB: bit 0 is always true) and clear flags for next time + if (cond && (window->SetWindowCollapsedAllowFlags & cond) == 0) + return; + window->SetWindowCollapsedAllowFlags &= ~(ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing); + + // Set + window->Collapsed = collapsed; +} + +void ImGui::SetWindowHitTestHole(ImGuiWindow* window, const ImVec2& pos, const ImVec2& size) +{ + IM_ASSERT(window->HitTestHoleSize.x == 0); // We don't support multiple holes/hit test filters + window->HitTestHoleSize = ImVec2ih(size); + window->HitTestHoleOffset = ImVec2ih(pos - window->Pos); +} + +void ImGui::SetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window) +{ + window->Hidden = window->SkipItems = true; + window->HiddenFramesCanSkipItems = 1; +} + +void ImGui::SetWindowCollapsed(bool collapsed, ImGuiCond cond) +{ + SetWindowCollapsed(GImGui->CurrentWindow, collapsed, cond); +} + +bool ImGui::IsWindowCollapsed() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->Collapsed; +} + +bool ImGui::IsWindowAppearing() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->Appearing; +} + +void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond) +{ + if (ImGuiWindow* window = FindWindowByName(name)) + SetWindowCollapsed(window, collapsed, cond); +} + +void ImGui::SetWindowFocus() +{ + FocusWindow(GImGui->CurrentWindow); +} + +void ImGui::SetWindowFocus(const char* name) +{ + if (name) + { + if (ImGuiWindow* window = FindWindowByName(name)) + FocusWindow(window); + } + else + { + FocusWindow(NULL); + } +} + +void ImGui::SetNextWindowPos(const ImVec2& pos, ImGuiCond cond, const ImVec2& pivot) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasPos; + g.NextWindowData.PosVal = pos; + g.NextWindowData.PosPivotVal = pivot; + g.NextWindowData.PosCond = cond ? cond : ImGuiCond_Always; +} + +void ImGui::SetNextWindowSize(const ImVec2& size, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSize; + g.NextWindowData.SizeVal = size; + g.NextWindowData.SizeCond = cond ? cond : ImGuiCond_Always; +} + +// For each axis: +// - Use 0.0f as min or FLT_MAX as max if you don't want limits, e.g. size_min = (500.0f, 0.0f), size_max = (FLT_MAX, FLT_MAX) sets a minimum width. +// - Use -1 for both min and max of same axis to preserve current size which itself is a constraint. +// - See "Demo->Examples->Constrained-resizing window" for examples. +void ImGui::SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeCallback custom_callback, void* custom_callback_user_data) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasSizeConstraint; + g.NextWindowData.SizeConstraintRect = ImRect(size_min, size_max); + g.NextWindowData.SizeCallback = custom_callback; + g.NextWindowData.SizeCallbackUserData = custom_callback_user_data; +} + +// Content size = inner scrollable rectangle, padded with WindowPadding. +// SetNextWindowContentSize(ImVec2(100,100) + ImGuiWindowFlags_AlwaysAutoResize will always allow submitting a 100x100 item. +void ImGui::SetNextWindowContentSize(const ImVec2& size) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasContentSize; + g.NextWindowData.ContentSizeVal = ImTrunc(size); +} + +void ImGui::SetNextWindowScroll(const ImVec2& scroll) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasScroll; + g.NextWindowData.ScrollVal = scroll; +} + +void ImGui::SetNextWindowCollapsed(bool collapsed, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(cond == 0 || ImIsPowerOfTwo(cond)); // Make sure the user doesn't attempt to combine multiple condition flags. + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasCollapsed; + g.NextWindowData.CollapsedVal = collapsed; + g.NextWindowData.CollapsedCond = cond ? cond : ImGuiCond_Always; +} + +void ImGui::SetNextWindowFocus() +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasFocus; +} + +void ImGui::SetNextWindowBgAlpha(float alpha) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasBgAlpha; + g.NextWindowData.BgAlphaVal = alpha; +} + +// This is experimental and meant to be a toy for exploring a future/wider range of features. +void ImGui::SetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags) +{ + ImGuiContext& g = *GImGui; + g.NextWindowData.Flags |= ImGuiNextWindowDataFlags_HasRefreshPolicy; + g.NextWindowData.RefreshFlagsVal = flags; +} + +ImDrawList* ImGui::GetWindowDrawList() +{ + ImGuiWindow* window = GetCurrentWindow(); + return window->DrawList; +} + +ImFont* ImGui::GetFont() +{ + return GImGui->Font; +} + +float ImGui::GetFontSize() +{ + return GImGui->FontSize; +} + +ImVec2 ImGui::GetFontTexUvWhitePixel() +{ + return GImGui->DrawListSharedData.TexUvWhitePixel; +} + +void ImGui::SetWindowFontScale(float scale) +{ + IM_ASSERT(scale > 0.0f); + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + window->FontWindowScale = scale; + g.FontSize = g.DrawListSharedData.FontSize = window->CalcFontSize(); + g.FontScale = g.DrawListSharedData.FontScale = g.FontSize / g.Font->FontSize; +} + +void ImGui::PushFocusScope(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiFocusScopeData data; + data.ID = id; + data.WindowID = g.CurrentWindow->ID; + g.FocusScopeStack.push_back(data); + g.CurrentFocusScopeId = id; +} + +void ImGui::PopFocusScope() +{ + ImGuiContext& g = *GImGui; + if (g.FocusScopeStack.Size == 0) + { + IM_ASSERT_USER_ERROR(g.FocusScopeStack.Size > 0, "Calling PopFocusScope() too many times!"); + return; + } + g.FocusScopeStack.pop_back(); + g.CurrentFocusScopeId = g.FocusScopeStack.Size ? g.FocusScopeStack.back().ID : 0; +} + +void ImGui::SetNavFocusScope(ImGuiID focus_scope_id) +{ + ImGuiContext& g = *GImGui; + g.NavFocusScopeId = focus_scope_id; + g.NavFocusRoute.resize(0); // Invalidate + if (focus_scope_id == 0) + return; + IM_ASSERT(g.NavWindow != NULL); + + // Store current path (in reverse order) + if (focus_scope_id == g.CurrentFocusScopeId) + { + // Top of focus stack contains local focus scopes inside current window + for (int n = g.FocusScopeStack.Size - 1; n >= 0 && g.FocusScopeStack.Data[n].WindowID == g.CurrentWindow->ID; n--) + g.NavFocusRoute.push_back(g.FocusScopeStack.Data[n]); + } + else if (focus_scope_id == g.NavWindow->NavRootFocusScopeId) + g.NavFocusRoute.push_back({ focus_scope_id, g.NavWindow->ID }); + else + return; + + // Then follow on manually set ParentWindowForFocusRoute field (#6798) + for (ImGuiWindow* window = g.NavWindow->ParentWindowForFocusRoute; window != NULL; window = window->ParentWindowForFocusRoute) + g.NavFocusRoute.push_back({ window->NavRootFocusScopeId, window->ID }); + IM_ASSERT(g.NavFocusRoute.Size < 100); // Maximum depth is technically 251 as per CalcRoutingScore(): 254 - 3 +} + +// Focus = move navigation cursor, set scrolling, set focus window. +void ImGui::FocusItem() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IMGUI_DEBUG_LOG_FOCUS("FocusItem(0x%08x) in window \"%s\"\n", g.LastItemData.ID, window->Name); + if (g.DragDropActive || g.MovingWindow != NULL) // FIXME: Opt-in flags for this? + { + IMGUI_DEBUG_LOG_FOCUS("FocusItem() ignored while DragDropActive!\n"); + return; + } + + ImGuiNavMoveFlags move_flags = ImGuiNavMoveFlags_IsTabbing | ImGuiNavMoveFlags_FocusApi | ImGuiNavMoveFlags_NoSetNavHighlight | ImGuiNavMoveFlags_NoSelect; + ImGuiScrollFlags scroll_flags = window->Appearing ? ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleEdgeY; + SetNavWindow(window); + NavMoveRequestSubmit(ImGuiDir_None, ImGuiDir_Up, move_flags, scroll_flags); + NavMoveRequestResolveWithLastItem(&g.NavMoveResultLocal); +} + +void ImGui::ActivateItemByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + g.NavNextActivateId = id; + g.NavNextActivateFlags = ImGuiActivateFlags_None; +} + +// Note: this will likely be called ActivateItem() once we rework our Focus/Activation system! +// But ActivateItem() should function without altering scroll/focus? +void ImGui::SetKeyboardFocusHere(int offset) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(offset >= -1); // -1 is allowed but not below + IMGUI_DEBUG_LOG_FOCUS("SetKeyboardFocusHere(%d) in window \"%s\"\n", offset, window->Name); + + // It makes sense in the vast majority of cases to never interrupt a drag and drop. + // When we refactor this function into ActivateItem() we may want to make this an option. + // MovingWindow is protected from most user inputs using SetActiveIdUsingNavAndKeys(), but + // is also automatically dropped in the event g.ActiveId is stolen. + if (g.DragDropActive || g.MovingWindow != NULL) + { + IMGUI_DEBUG_LOG_FOCUS("SetKeyboardFocusHere() ignored while DragDropActive!\n"); + return; + } + + SetNavWindow(window); + + ImGuiNavMoveFlags move_flags = ImGuiNavMoveFlags_IsTabbing | ImGuiNavMoveFlags_Activate | ImGuiNavMoveFlags_FocusApi | ImGuiNavMoveFlags_NoSetNavHighlight; + ImGuiScrollFlags scroll_flags = window->Appearing ? ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleEdgeY; + NavMoveRequestSubmit(ImGuiDir_None, offset < 0 ? ImGuiDir_Up : ImGuiDir_Down, move_flags, scroll_flags); // FIXME-NAV: Once we refactor tabbing, add LegacyApi flag to not activate non-inputable. + if (offset == -1) + { + NavMoveRequestResolveWithLastItem(&g.NavMoveResultLocal); + } + else + { + g.NavTabbingDir = 1; + g.NavTabbingCounter = offset + 1; + } +} + +void ImGui::SetItemDefaultFocus() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!window->Appearing) + return; + if (g.NavWindow != window->RootWindowForNav || (!g.NavInitRequest && g.NavInitResult.ID == 0) || g.NavLayer != window->DC.NavLayerCurrent) + return; + + g.NavInitRequest = false; + NavApplyItemToResult(&g.NavInitResult); + NavUpdateAnyRequestFlag(); + + // Scroll could be done in NavInitRequestApplyResult() via an opt-in flag (we however don't want regular init requests to scroll) + if (!window->ClipRect.Contains(g.LastItemData.Rect)) + ScrollToRectEx(window, g.LastItemData.Rect, ImGuiScrollFlags_None); +} + +void ImGui::SetStateStorage(ImGuiStorage* tree) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + window->DC.StateStorage = tree ? tree : &window->StateStorage; +} + +ImGuiStorage* ImGui::GetStateStorage() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->DC.StateStorage; +} + +bool ImGui::IsRectVisible(const ImVec2& size) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ClipRect.Overlaps(ImRect(window->DC.CursorPos, window->DC.CursorPos + size)); +} + +bool ImGui::IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ClipRect.Overlaps(ImRect(rect_min, rect_max)); +} + +//----------------------------------------------------------------------------- +// [SECTION] ID STACK +//----------------------------------------------------------------------------- + +// This is one of the very rare legacy case where we use ImGuiWindow methods, +// it should ideally be flattened at some point but it's been used a lots by widgets. +IM_MSVC_RUNTIME_CHECKS_OFF +ImGuiID ImGuiWindow::GetID(const char* str, const char* str_end) +{ + ImGuiID seed = IDStack.back(); + ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_String, str, str_end); +#endif + return id; +} + +ImGuiID ImGuiWindow::GetID(const void* ptr) +{ + ImGuiID seed = IDStack.back(); + ImGuiID id = ImHashData(&ptr, sizeof(void*), seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_Pointer, ptr, NULL); +#endif + return id; +} + +ImGuiID ImGuiWindow::GetID(int n) +{ + ImGuiID seed = IDStack.back(); + ImGuiID id = ImHashData(&n, sizeof(n), seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *Ctx; + if (g.DebugHookIdInfo == id) + ImGui::DebugHookIdInfo(id, ImGuiDataType_S32, (void*)(intptr_t)n, NULL); +#endif + return id; +} + +// This is only used in rare/specific situations to manufacture an ID out of nowhere. +// FIXME: Consider instead storing last non-zero ID + count of successive zero-ID, and combine those? +ImGuiID ImGuiWindow::GetIDFromPos(const ImVec2& p_abs) +{ + ImGuiID seed = IDStack.back(); + ImVec2 p_rel = ImGui::WindowPosAbsToRel(this, p_abs); + ImGuiID id = ImHashData(&p_rel, sizeof(p_rel), seed); + return id; +} + +// " +ImGuiID ImGuiWindow::GetIDFromRectangle(const ImRect& r_abs) +{ + ImGuiID seed = IDStack.back(); + ImRect r_rel = ImGui::WindowRectAbsToRel(this, r_abs); + ImGuiID id = ImHashData(&r_rel, sizeof(r_rel), seed); + return id; +} + +void ImGui::PushID(const char* str_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(str_id); + window->IDStack.push_back(id); +} + +void ImGui::PushID(const char* str_id_begin, const char* str_id_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(str_id_begin, str_id_end); + window->IDStack.push_back(id); +} + +void ImGui::PushID(const void* ptr_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(ptr_id); + window->IDStack.push_back(id); +} + +void ImGui::PushID(int int_id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiID id = window->GetID(int_id); + window->IDStack.push_back(id); +} + +// Push a given id value ignoring the ID stack as a seed. +void ImGui::PushOverrideID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (g.DebugHookIdInfo == id) + DebugHookIdInfo(id, ImGuiDataType_ID, NULL, NULL); +#endif + window->IDStack.push_back(id); +} + +// Helper to avoid a common series of PushOverrideID -> GetID() -> PopID() call +// (note that when using this pattern, ID Stack Tool will tend to not display the intermediate stack level. +// for that to work we would need to do PushOverrideID() -> ItemAdd() -> PopID() which would alter widget code a little more) +ImGuiID ImGui::GetIDWithSeed(const char* str, const char* str_end, ImGuiID seed) +{ + ImGuiID id = ImHashStr(str, str_end ? (str_end - str) : 0, seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *GImGui; + if (g.DebugHookIdInfo == id) + DebugHookIdInfo(id, ImGuiDataType_String, str, str_end); +#endif + return id; +} + +ImGuiID ImGui::GetIDWithSeed(int n, ImGuiID seed) +{ + ImGuiID id = ImHashData(&n, sizeof(n), seed); +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *GImGui; + if (g.DebugHookIdInfo == id) + DebugHookIdInfo(id, ImGuiDataType_S32, (void*)(intptr_t)n, NULL); +#endif + return id; +} + +void ImGui::PopID() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + IM_ASSERT(window->IDStack.Size > 1); // Too many PopID(), or could be popping in a wrong/different window? + window->IDStack.pop_back(); +} + +ImGuiID ImGui::GetID(const char* str_id) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(str_id); +} + +ImGuiID ImGui::GetID(const char* str_id_begin, const char* str_id_end) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(str_id_begin, str_id_end); +} + +ImGuiID ImGui::GetID(const void* ptr_id) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(ptr_id); +} + +ImGuiID ImGui::GetID(int int_id) +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(int_id); +} +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] INPUTS +//----------------------------------------------------------------------------- +// - GetModForLRModKey() [Internal] +// - FixupKeyChord() [Internal] +// - GetKeyData() [Internal] +// - GetKeyIndex() [Internal] +// - GetKeyName() +// - GetKeyChordName() [Internal] +// - CalcTypematicRepeatAmount() [Internal] +// - GetTypematicRepeatRate() [Internal] +// - GetKeyPressedAmount() [Internal] +// - GetKeyMagnitude2d() [Internal] +//----------------------------------------------------------------------------- +// - UpdateKeyRoutingTable() [Internal] +// - GetRoutingIdFromOwnerId() [Internal] +// - GetShortcutRoutingData() [Internal] +// - CalcRoutingScore() [Internal] +// - SetShortcutRouting() [Internal] +// - TestShortcutRouting() [Internal] +//----------------------------------------------------------------------------- +// - IsKeyDown() +// - IsKeyPressed() +// - IsKeyReleased() +//----------------------------------------------------------------------------- +// - IsMouseDown() +// - IsMouseClicked() +// - IsMouseReleased() +// - IsMouseDoubleClicked() +// - GetMouseClickedCount() +// - IsMouseHoveringRect() [Internal] +// - IsMouseDragPastThreshold() [Internal] +// - IsMouseDragging() +// - GetMousePos() +// - SetMousePos() [Internal] +// - GetMousePosOnOpeningCurrentPopup() +// - IsMousePosValid() +// - IsAnyMouseDown() +// - GetMouseDragDelta() +// - ResetMouseDragDelta() +// - GetMouseCursor() +// - SetMouseCursor() +//----------------------------------------------------------------------------- +// - UpdateAliasKey() +// - GetMergedModsFromKeys() +// - UpdateKeyboardInputs() +// - UpdateMouseInputs() +//----------------------------------------------------------------------------- +// - LockWheelingWindow [Internal] +// - FindBestWheelingWindow [Internal] +// - UpdateMouseWheel() [Internal] +//----------------------------------------------------------------------------- +// - SetNextFrameWantCaptureKeyboard() +// - SetNextFrameWantCaptureMouse() +//----------------------------------------------------------------------------- +// - GetInputSourceName() [Internal] +// - DebugPrintInputEvent() [Internal] +// - UpdateInputEvents() [Internal] +//----------------------------------------------------------------------------- +// - GetKeyOwner() [Internal] +// - TestKeyOwner() [Internal] +// - SetKeyOwner() [Internal] +// - SetItemKeyOwner() [Internal] +// - Shortcut() [Internal] +//----------------------------------------------------------------------------- + +static ImGuiKeyChord GetModForLRModKey(ImGuiKey key) +{ + if (key == ImGuiKey_LeftCtrl || key == ImGuiKey_RightCtrl) + return ImGuiMod_Ctrl; + if (key == ImGuiKey_LeftShift || key == ImGuiKey_RightShift) + return ImGuiMod_Shift; + if (key == ImGuiKey_LeftAlt || key == ImGuiKey_RightAlt) + return ImGuiMod_Alt; + if (key == ImGuiKey_LeftSuper || key == ImGuiKey_RightSuper) + return ImGuiMod_Super; + return ImGuiMod_None; +} + +ImGuiKeyChord ImGui::FixupKeyChord(ImGuiKeyChord key_chord) +{ + // Add ImGuiMod_XXXX when a corresponding ImGuiKey_LeftXXX/ImGuiKey_RightXXX is specified. + ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + if (IsLRModKey(key)) + key_chord |= GetModForLRModKey(key); + return key_chord; +} + +ImGuiKeyData* ImGui::GetKeyData(ImGuiContext* ctx, ImGuiKey key) +{ + ImGuiContext& g = *ctx; + + // Special storage location for mods + if (key & ImGuiMod_Mask_) + key = ConvertSingleModFlagToKey(key); + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + IM_ASSERT(key >= ImGuiKey_LegacyNativeKey_BEGIN && key < ImGuiKey_NamedKey_END); + if (IsLegacyKey(key) && g.IO.KeyMap[key] != -1) + key = (ImGuiKey)g.IO.KeyMap[key]; // Remap native->imgui or imgui->native +#else + IM_ASSERT(IsNamedKey(key) && "Support for user key indices was dropped in favor of ImGuiKey. Please update backend & user code."); +#endif + return &g.IO.KeysData[key - ImGuiKey_KeysData_OFFSET]; +} + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO +// Formally moved to obsolete section in 1.90.5 in spite of documented as obsolete since 1.87 +ImGuiKey ImGui::GetKeyIndex(ImGuiKey key) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(IsNamedKey(key)); + const ImGuiKeyData* key_data = GetKeyData(key); + return (ImGuiKey)(key_data - g.IO.KeysData); +} +#endif + +// Those names a provided for debugging purpose and are not meant to be saved persistently not compared. +static const char* const GKeyNames[] = +{ + "Tab", "LeftArrow", "RightArrow", "UpArrow", "DownArrow", "PageUp", "PageDown", + "Home", "End", "Insert", "Delete", "Backspace", "Space", "Enter", "Escape", + "LeftCtrl", "LeftShift", "LeftAlt", "LeftSuper", "RightCtrl", "RightShift", "RightAlt", "RightSuper", "Menu", + "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", + "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", + "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12", + "F13", "F14", "F15", "F16", "F17", "F18", "F19", "F20", "F21", "F22", "F23", "F24", + "Apostrophe", "Comma", "Minus", "Period", "Slash", "Semicolon", "Equal", "LeftBracket", + "Backslash", "RightBracket", "GraveAccent", "CapsLock", "ScrollLock", "NumLock", "PrintScreen", + "Pause", "Keypad0", "Keypad1", "Keypad2", "Keypad3", "Keypad4", "Keypad5", "Keypad6", + "Keypad7", "Keypad8", "Keypad9", "KeypadDecimal", "KeypadDivide", "KeypadMultiply", + "KeypadSubtract", "KeypadAdd", "KeypadEnter", "KeypadEqual", + "AppBack", "AppForward", + "GamepadStart", "GamepadBack", + "GamepadFaceLeft", "GamepadFaceRight", "GamepadFaceUp", "GamepadFaceDown", + "GamepadDpadLeft", "GamepadDpadRight", "GamepadDpadUp", "GamepadDpadDown", + "GamepadL1", "GamepadR1", "GamepadL2", "GamepadR2", "GamepadL3", "GamepadR3", + "GamepadLStickLeft", "GamepadLStickRight", "GamepadLStickUp", "GamepadLStickDown", + "GamepadRStickLeft", "GamepadRStickRight", "GamepadRStickUp", "GamepadRStickDown", + "MouseLeft", "MouseRight", "MouseMiddle", "MouseX1", "MouseX2", "MouseWheelX", "MouseWheelY", + "ModCtrl", "ModShift", "ModAlt", "ModSuper", // ReservedForModXXX are showing the ModXXX names. +}; +IM_STATIC_ASSERT(ImGuiKey_NamedKey_COUNT == IM_ARRAYSIZE(GKeyNames)); + +const char* ImGui::GetKeyName(ImGuiKey key) +{ + if (key == ImGuiKey_None) + return "None"; +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + IM_ASSERT(IsNamedKeyOrMod(key) && "Support for user key indices was dropped in favor of ImGuiKey. Please update backend and user code."); +#else + ImGuiContext& g = *GImGui; + if (IsLegacyKey(key)) + { + if (g.IO.KeyMap[key] == -1) + return "N/A"; + IM_ASSERT(IsNamedKey((ImGuiKey)g.IO.KeyMap[key])); + key = (ImGuiKey)g.IO.KeyMap[key]; + } +#endif + if (key & ImGuiMod_Mask_) + key = ConvertSingleModFlagToKey(key); + if (!IsNamedKey(key)) + return "Unknown"; + + return GKeyNames[key - ImGuiKey_NamedKey_BEGIN]; +} + +// Return untranslated names: on macOS, Cmd key will show as Ctrl, Ctrl key will show as super. +// Lifetime of return value: valid until next call to same function. +const char* ImGui::GetKeyChordName(ImGuiKeyChord key_chord) +{ + ImGuiContext& g = *GImGui; + + const ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + if (IsLRModKey(key)) + key_chord &= ~GetModForLRModKey(key); // Return "Ctrl+LeftShift" instead of "Ctrl+Shift+LeftShift" + ImFormatString(g.TempKeychordName, IM_ARRAYSIZE(g.TempKeychordName), "%s%s%s%s%s", + (key_chord & ImGuiMod_Ctrl) ? "Ctrl+" : "", + (key_chord & ImGuiMod_Shift) ? "Shift+" : "", + (key_chord & ImGuiMod_Alt) ? "Alt+" : "", + (key_chord & ImGuiMod_Super) ? "Super+" : "", + (key != ImGuiKey_None || key_chord == ImGuiKey_None) ? GetKeyName(key) : ""); + size_t len; + if (key == ImGuiKey_None && key_chord != 0) + if ((len = strlen(g.TempKeychordName)) != 0) // Remove trailing '+' + g.TempKeychordName[len - 1] = 0; + return g.TempKeychordName; +} + +// t0 = previous time (e.g.: g.Time - g.IO.DeltaTime) +// t1 = current time (e.g.: g.Time) +// An event is triggered at: +// t = 0.0f t = repeat_delay, t = repeat_delay + repeat_rate*N +int ImGui::CalcTypematicRepeatAmount(float t0, float t1, float repeat_delay, float repeat_rate) +{ + if (t1 == 0.0f) + return 1; + if (t0 >= t1) + return 0; + if (repeat_rate <= 0.0f) + return (t0 < repeat_delay) && (t1 >= repeat_delay); + const int count_t0 = (t0 < repeat_delay) ? -1 : (int)((t0 - repeat_delay) / repeat_rate); + const int count_t1 = (t1 < repeat_delay) ? -1 : (int)((t1 - repeat_delay) / repeat_rate); + const int count = count_t1 - count_t0; + return count; +} + +void ImGui::GetTypematicRepeatRate(ImGuiInputFlags flags, float* repeat_delay, float* repeat_rate) +{ + ImGuiContext& g = *GImGui; + switch (flags & ImGuiInputFlags_RepeatRateMask_) + { + case ImGuiInputFlags_RepeatRateNavMove: *repeat_delay = g.IO.KeyRepeatDelay * 0.72f; *repeat_rate = g.IO.KeyRepeatRate * 0.80f; return; + case ImGuiInputFlags_RepeatRateNavTweak: *repeat_delay = g.IO.KeyRepeatDelay * 0.72f; *repeat_rate = g.IO.KeyRepeatRate * 0.30f; return; + case ImGuiInputFlags_RepeatRateDefault: default: *repeat_delay = g.IO.KeyRepeatDelay * 1.00f; *repeat_rate = g.IO.KeyRepeatRate * 1.00f; return; + } +} + +// Return value representing the number of presses in the last time period, for the given repeat rate +// (most often returns 0 or 1. The result is generally only >1 when RepeatRate is smaller than DeltaTime, aka large DeltaTime or fast RepeatRate) +int ImGui::GetKeyPressedAmount(ImGuiKey key, float repeat_delay, float repeat_rate) +{ + ImGuiContext& g = *GImGui; + const ImGuiKeyData* key_data = GetKeyData(key); + if (!key_data->Down) // In theory this should already be encoded as (DownDuration < 0.0f), but testing this facilitates eating mechanism (until we finish work on key ownership) + return 0; + const float t = key_data->DownDuration; + return CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, repeat_delay, repeat_rate); +} + +// Return 2D vector representing the combination of four cardinal direction, with analog value support (for e.g. ImGuiKey_GamepadLStick* values). +ImVec2 ImGui::GetKeyMagnitude2d(ImGuiKey key_left, ImGuiKey key_right, ImGuiKey key_up, ImGuiKey key_down) +{ + return ImVec2( + GetKeyData(key_right)->AnalogValue - GetKeyData(key_left)->AnalogValue, + GetKeyData(key_down)->AnalogValue - GetKeyData(key_up)->AnalogValue); +} + +// Rewrite routing data buffers to strip old entries + sort by key to make queries not touch scattered data. +// Entries D,A,B,B,A,C,B --> A,A,B,B,B,C,D +// Index A:1 B:2 C:5 D:0 --> A:0 B:2 C:5 D:6 +// See 'Metrics->Key Owners & Shortcut Routing' to visualize the result of that operation. +static void ImGui::UpdateKeyRoutingTable(ImGuiKeyRoutingTable* rt) +{ + ImGuiContext& g = *GImGui; + rt->EntriesNext.resize(0); + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + const int new_routing_start_idx = rt->EntriesNext.Size; + ImGuiKeyRoutingData* routing_entry; + for (int old_routing_idx = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; old_routing_idx != -1; old_routing_idx = routing_entry->NextEntryIndex) + { + routing_entry = &rt->Entries[old_routing_idx]; + routing_entry->RoutingCurrScore = routing_entry->RoutingNextScore; + routing_entry->RoutingCurr = routing_entry->RoutingNext; // Update entry + routing_entry->RoutingNext = ImGuiKeyOwner_NoOwner; + routing_entry->RoutingNextScore = 255; + if (routing_entry->RoutingCurr == ImGuiKeyOwner_NoOwner) + continue; + rt->EntriesNext.push_back(*routing_entry); // Write alive ones into new buffer + + // Apply routing to owner if there's no owner already (RoutingCurr == None at this point) + // This is the result of previous frame's SetShortcutRouting() call. + if (routing_entry->Mods == g.IO.KeyMods) + { + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + if (owner_data->OwnerCurr == ImGuiKeyOwner_NoOwner) + { + owner_data->OwnerCurr = routing_entry->RoutingCurr; + //IMGUI_DEBUG_LOG("SetKeyOwner(%s, owner_id=0x%08X) via Routing\n", GetKeyName(key), routing_entry->RoutingCurr); + } + } + } + + // Rewrite linked-list + rt->Index[key - ImGuiKey_NamedKey_BEGIN] = (ImGuiKeyRoutingIndex)(new_routing_start_idx < rt->EntriesNext.Size ? new_routing_start_idx : -1); + for (int n = new_routing_start_idx; n < rt->EntriesNext.Size; n++) + rt->EntriesNext[n].NextEntryIndex = (ImGuiKeyRoutingIndex)((n + 1 < rt->EntriesNext.Size) ? n + 1 : -1); + } + rt->Entries.swap(rt->EntriesNext); // Swap new and old indexes +} + +// owner_id may be None/Any, but routing_id needs to be always be set, so we default to GetCurrentFocusScope(). +static inline ImGuiID GetRoutingIdFromOwnerId(ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + return (owner_id != ImGuiKeyOwner_NoOwner && owner_id != ImGuiKeyOwner_Any) ? owner_id : g.CurrentFocusScopeId; +} + +ImGuiKeyRoutingData* ImGui::GetShortcutRoutingData(ImGuiKeyChord key_chord) +{ + // Majority of shortcuts will be Key + any number of Mods + // We accept _Single_ mod with ImGuiKey_None. + // - Shortcut(ImGuiKey_S | ImGuiMod_Ctrl); // Legal + // - Shortcut(ImGuiKey_S | ImGuiMod_Ctrl | ImGuiMod_Shift); // Legal + // - Shortcut(ImGuiMod_Ctrl); // Legal + // - Shortcut(ImGuiMod_Ctrl | ImGuiMod_Shift); // Not legal + ImGuiContext& g = *GImGui; + ImGuiKeyRoutingTable* rt = &g.KeysRoutingTable; + ImGuiKeyRoutingData* routing_data; + ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + ImGuiKey mods = (ImGuiKey)(key_chord & ImGuiMod_Mask_); + if (key == ImGuiKey_None) + key = ConvertSingleModFlagToKey(mods); + IM_ASSERT(IsNamedKey(key)); + + // Get (in the majority of case, the linked list will have one element so this should be 2 reads. + // Subsequent elements will be contiguous in memory as list is sorted/rebuilt in NewFrame). + for (ImGuiKeyRoutingIndex idx = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; idx != -1; idx = routing_data->NextEntryIndex) + { + routing_data = &rt->Entries[idx]; + if (routing_data->Mods == mods) + return routing_data; + } + + // Add to linked-list + ImGuiKeyRoutingIndex routing_data_idx = (ImGuiKeyRoutingIndex)rt->Entries.Size; + rt->Entries.push_back(ImGuiKeyRoutingData()); + routing_data = &rt->Entries[routing_data_idx]; + routing_data->Mods = (ImU16)mods; + routing_data->NextEntryIndex = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; // Setup linked list + rt->Index[key - ImGuiKey_NamedKey_BEGIN] = routing_data_idx; + return routing_data; +} + +// Current score encoding (lower is highest priority): +// - 0: ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteOverActive +// - 1: ImGuiInputFlags_ActiveItem or ImGuiInputFlags_RouteFocused (if item active) +// - 2: ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteOverFocused +// - 3+: ImGuiInputFlags_RouteFocused (if window in focus-stack) +// - 254: ImGuiInputFlags_RouteGlobal +// - 255: never route +// 'flags' should include an explicit routing policy +static int CalcRoutingScore(ImGuiID focus_scope_id, ImGuiID owner_id, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + if (flags & ImGuiInputFlags_RouteFocused) + { + // ActiveID gets top priority + // (we don't check g.ActiveIdUsingAllKeys here. Routing is applied but if input ownership is tested later it may discard it) + if (owner_id != 0 && g.ActiveId == owner_id) + return 1; + + // Score based on distance to focused window (lower is better) + // Assuming both windows are submitting a routing request, + // - When Window....... is focused -> Window scores 3 (best), Window/ChildB scores 255 (no match) + // - When Window/ChildB is focused -> Window scores 4, Window/ChildB scores 3 (best) + // Assuming only WindowA is submitting a routing request, + // - When Window/ChildB is focused -> Window scores 4 (best), Window/ChildB doesn't have a score. + // This essentially follow the window->ParentWindowForFocusRoute chain. + if (focus_scope_id == 0) + return 255; + for (int index_in_focus_path = 0; index_in_focus_path < g.NavFocusRoute.Size; index_in_focus_path++) + if (g.NavFocusRoute.Data[index_in_focus_path].ID == focus_scope_id) + return 3 + index_in_focus_path; + return 255; + } + else if (flags & ImGuiInputFlags_RouteActive) + { + if (owner_id != 0 && g.ActiveId == owner_id) + return 1; + return 255; + } + else if (flags & ImGuiInputFlags_RouteGlobal) + { + if (flags & ImGuiInputFlags_RouteOverActive) + return 0; + if (flags & ImGuiInputFlags_RouteOverFocused) + return 2; + return 254; + } + IM_ASSERT(0); + return 0; +} + +// - We need this to filter some Shortcut() routes when an item e.g. an InputText() is active +// e.g. ImGuiKey_G won't be considered a shortcut when item is active, but ImGuiMod|ImGuiKey_G can be. +// - This is also used by UpdateInputEvents() to avoid trickling in the most common case of e.g. pressing ImGuiKey_G also emitting a G character. +static bool IsKeyChordPotentiallyCharInput(ImGuiKeyChord key_chord) +{ + // Mimic 'ignore_char_inputs' logic in InputText() + ImGuiContext& g = *GImGui; + + // When the right mods are pressed it cannot be a char input so we won't filter the shortcut out. + ImGuiKey mods = (ImGuiKey)(key_chord & ImGuiMod_Mask_); + const bool ignore_char_inputs = ((mods & ImGuiMod_Ctrl) && !(mods & ImGuiMod_Alt)) || (g.IO.ConfigMacOSXBehaviors && (mods & ImGuiMod_Ctrl)); + if (ignore_char_inputs) + return false; + + // Return true for A-Z, 0-9 and other keys associated to char inputs. Other keys such as F1-F12 won't be filtered. + ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + if (key == ImGuiKey_None) + return false; + return g.KeysMayBeCharInput.TestBit(key); +} + +// Request a desired route for an input chord (key + mods). +// Return true if the route is available this frame. +// - Routes and key ownership are attributed at the beginning of next frame based on best score and mod state. +// (Conceptually this does a "Submit for next frame" + "Test for current frame". +// As such, it could be called TrySetXXX or SubmitXXX, or the Submit and Test operations should be separate.) +bool ImGui::SetShortcutRouting(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + if ((flags & ImGuiInputFlags_RouteTypeMask_) == 0) + flags |= ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive; // IMPORTANT: This is the default for SetShortcutRouting() but NOT Shortcut() + else + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiInputFlags_RouteTypeMask_)); // Check that only 1 routing flag is used + IM_ASSERT(owner_id != ImGuiKeyOwner_Any && owner_id != ImGuiKeyOwner_NoOwner); + if (flags & (ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused)) + IM_ASSERT(flags & ImGuiInputFlags_RouteGlobal); + + // Add ImGuiMod_XXXX when a corresponding ImGuiKey_LeftXXX/ImGuiKey_RightXXX is specified. + key_chord = FixupKeyChord(key_chord); + + // [DEBUG] Debug break requested by user + if (g.DebugBreakInShortcutRouting == key_chord) + IM_DEBUG_BREAK(); + + if (flags & ImGuiInputFlags_RouteUnlessBgFocused) + if (g.NavWindow == NULL) + return false; + + // Note how ImGuiInputFlags_RouteAlways won't set routing and thus won't set owner. May want to rework this? + if (flags & ImGuiInputFlags_RouteAlways) + { + IMGUI_DEBUG_LOG_INPUTROUTING("SetShortcutRouting(%s, flags=%04X, owner_id=0x%08X) -> always, no register\n", GetKeyChordName(key_chord), flags, owner_id); + return true; + } + + // Specific culling when there's an active item. + if (g.ActiveId != 0 && g.ActiveId != owner_id) + { + if (flags & ImGuiInputFlags_RouteActive) + return false; + + // Cull shortcuts with no modifiers when it could generate a character. + // e.g. Shortcut(ImGuiKey_G) also generates 'g' character, should not trigger when InputText() is active. + // but Shortcut(Ctrl+G) should generally trigger when InputText() is active. + // TL;DR: lettered shortcut with no mods or with only Alt mod will not trigger while an item reading text input is active. + // (We cannot filter based on io.InputQueueCharacters[] contents because of trickling and key<>chars submission order are undefined) + if (g.IO.WantTextInput && IsKeyChordPotentiallyCharInput(key_chord)) + { + IMGUI_DEBUG_LOG_INPUTROUTING("SetShortcutRouting(%s, flags=%04X, owner_id=0x%08X) -> filtered as potential char input\n", GetKeyChordName(key_chord), flags, owner_id); + return false; + } + + // ActiveIdUsingAllKeyboardKeys trumps all for ActiveId + if ((flags & ImGuiInputFlags_RouteOverActive) == 0 && g.ActiveIdUsingAllKeyboardKeys) + { + ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + if (key == ImGuiKey_None) + key = ConvertSingleModFlagToKey((ImGuiKey)(key_chord & ImGuiMod_Mask_)); + if (key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END) + return false; + } + } + + // Where do we evaluate route for? + ImGuiID focus_scope_id = g.CurrentFocusScopeId; + if (flags & ImGuiInputFlags_RouteFromRootWindow) + focus_scope_id = g.CurrentWindow->RootWindow->ID; // See PushFocusScope() call in Begin() + + const int score = CalcRoutingScore(focus_scope_id, owner_id, flags); + IMGUI_DEBUG_LOG_INPUTROUTING("SetShortcutRouting(%s, flags=%04X, owner_id=0x%08X) -> score %d\n", GetKeyChordName(key_chord), flags, owner_id, score); + if (score == 255) + return false; + + // Submit routing for NEXT frame (assuming score is sufficient) + // FIXME: Could expose a way to use a "serve last" policy for same score resolution (using <= instead of <). + ImGuiKeyRoutingData* routing_data = GetShortcutRoutingData(key_chord); + //const bool set_route = (flags & ImGuiInputFlags_ServeLast) ? (score <= routing_data->RoutingNextScore) : (score < routing_data->RoutingNextScore); + if (score < routing_data->RoutingNextScore) + { + routing_data->RoutingNext = owner_id; + routing_data->RoutingNextScore = (ImU8)score; + } + + // Return routing state for CURRENT frame + if (routing_data->RoutingCurr == owner_id) + IMGUI_DEBUG_LOG_INPUTROUTING("--> granting current route\n"); + return routing_data->RoutingCurr == owner_id; +} + +// Currently unused by core (but used by tests) +// Note: this cannot be turned into GetShortcutRouting() because we do the owner_id->routing_id translation, name would be more misleading. +bool ImGui::TestShortcutRouting(ImGuiKeyChord key_chord, ImGuiID owner_id) +{ + const ImGuiID routing_id = GetRoutingIdFromOwnerId(owner_id); + key_chord = FixupKeyChord(key_chord); + ImGuiKeyRoutingData* routing_data = GetShortcutRoutingData(key_chord); // FIXME: Could avoid creating entry. + return routing_data->RoutingCurr == routing_id; +} + +// Note that Dear ImGui doesn't know the meaning/semantic of ImGuiKey from 0..511: they are legacy native keycodes. +// Consider transitioning from 'IsKeyDown(MY_ENGINE_KEY_A)' (<1.87) to IsKeyDown(ImGuiKey_A) (>= 1.87) +bool ImGui::IsKeyDown(ImGuiKey key) +{ + return IsKeyDown(key, ImGuiKeyOwner_Any); +} + +bool ImGui::IsKeyDown(ImGuiKey key, ImGuiID owner_id) +{ + const ImGuiKeyData* key_data = GetKeyData(key); + if (!key_data->Down) + return false; + if (!TestKeyOwner(key, owner_id)) + return false; + return true; +} + +bool ImGui::IsKeyPressed(ImGuiKey key, bool repeat) +{ + return IsKeyPressed(key, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None, ImGuiKeyOwner_Any); +} + +// Important: unlike legacy IsKeyPressed(ImGuiKey, bool repeat=true) which DEFAULT to repeat, this requires EXPLICIT repeat. +bool ImGui::IsKeyPressed(ImGuiKey key, ImGuiInputFlags flags, ImGuiID owner_id) +{ + const ImGuiKeyData* key_data = GetKeyData(key); + if (!key_data->Down) // In theory this should already be encoded as (DownDuration < 0.0f), but testing this facilitates eating mechanism (until we finish work on key ownership) + return false; + const float t = key_data->DownDuration; + if (t < 0.0f) + return false; + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedByIsKeyPressed) == 0); // Passing flags not supported by this function! + if (flags & (ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_)) // Setting any _RepeatXXX option enables _Repeat + flags |= ImGuiInputFlags_Repeat; + + bool pressed = (t == 0.0f); + if (!pressed && (flags & ImGuiInputFlags_Repeat) != 0) + { + float repeat_delay, repeat_rate; + GetTypematicRepeatRate(flags, &repeat_delay, &repeat_rate); + pressed = (t > repeat_delay) && GetKeyPressedAmount(key, repeat_delay, repeat_rate) > 0; + if (pressed && (flags & ImGuiInputFlags_RepeatUntilMask_)) + { + // Slightly bias 'key_pressed_time' as DownDuration is an accumulation of DeltaTime which we compare to an absolute time value. + // Ideally we'd replace DownDuration with KeyPressedTime but it would break user's code. + ImGuiContext& g = *GImGui; + double key_pressed_time = g.Time - t + 0.00001f; + if ((flags & ImGuiInputFlags_RepeatUntilKeyModsChange) && (g.LastKeyModsChangeTime > key_pressed_time)) + pressed = false; + if ((flags & ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone) && (g.LastKeyModsChangeFromNoneTime > key_pressed_time)) + pressed = false; + if ((flags & ImGuiInputFlags_RepeatUntilOtherKeyPress) && (g.LastKeyboardKeyPressTime > key_pressed_time)) + pressed = false; + } + } + if (!pressed) + return false; + if (!TestKeyOwner(key, owner_id)) + return false; + return true; +} + +bool ImGui::IsKeyReleased(ImGuiKey key) +{ + return IsKeyReleased(key, ImGuiKeyOwner_Any); +} + +bool ImGui::IsKeyReleased(ImGuiKey key, ImGuiID owner_id) +{ + const ImGuiKeyData* key_data = GetKeyData(key); + if (key_data->DownDurationPrev < 0.0f || key_data->Down) + return false; + if (!TestKeyOwner(key, owner_id)) + return false; + return true; +} + +bool ImGui::IsMouseDown(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseDown[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); // should be same as IsKeyDown(MouseButtonToKey(button), ImGuiKeyOwner_Any), but this allows legacy code hijacking the io.Mousedown[] array. +} + +bool ImGui::IsMouseDown(ImGuiMouseButton button, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseDown[button] && TestKeyOwner(MouseButtonToKey(button), owner_id); // Should be same as IsKeyDown(MouseButtonToKey(button), owner_id), but this allows legacy code hijacking the io.Mousedown[] array. +} + +bool ImGui::IsMouseClicked(ImGuiMouseButton button, bool repeat) +{ + return IsMouseClicked(button, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None, ImGuiKeyOwner_Any); +} + +bool ImGui::IsMouseClicked(ImGuiMouseButton button, ImGuiInputFlags flags, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (!g.IO.MouseDown[button]) // In theory this should already be encoded as (DownDuration < 0.0f), but testing this facilitates eating mechanism (until we finish work on key ownership) + return false; + const float t = g.IO.MouseDownDuration[button]; + if (t < 0.0f) + return false; + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedByIsMouseClicked) == 0); // Passing flags not supported by this function! // FIXME: Could support RepeatRate and RepeatUntil flags here. + + const bool repeat = (flags & ImGuiInputFlags_Repeat) != 0; + const bool pressed = (t == 0.0f) || (repeat && t > g.IO.KeyRepeatDelay && CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0); + if (!pressed) + return false; + + if (!TestKeyOwner(MouseButtonToKey(button), owner_id)) + return false; + + return true; +} + +bool ImGui::IsMouseReleased(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseReleased[button] && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); // Should be same as IsKeyReleased(MouseButtonToKey(button), ImGuiKeyOwner_Any) +} + +bool ImGui::IsMouseReleased(ImGuiMouseButton button, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseReleased[button] && TestKeyOwner(MouseButtonToKey(button), owner_id); // Should be same as IsKeyReleased(MouseButtonToKey(button), owner_id) +} + +bool ImGui::IsMouseDoubleClicked(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseClickedCount[button] == 2 && TestKeyOwner(MouseButtonToKey(button), ImGuiKeyOwner_Any); +} + +bool ImGui::IsMouseDoubleClicked(ImGuiMouseButton button, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseClickedCount[button] == 2 && TestKeyOwner(MouseButtonToKey(button), owner_id); +} + +int ImGui::GetMouseClickedCount(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + return g.IO.MouseClickedCount[button]; +} + +// Test if mouse cursor is hovering given rectangle +// NB- Rectangle is clipped by our current clip setting +// NB- Expand the rectangle to be generous on imprecise inputs systems (g.Style.TouchExtraPadding) +bool ImGui::IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip) +{ + ImGuiContext& g = *GImGui; + + // Clip + ImRect rect_clipped(r_min, r_max); + if (clip) + rect_clipped.ClipWith(g.CurrentWindow->ClipRect); + + // Hit testing, expanded for touch input + if (!rect_clipped.ContainsWithPad(g.IO.MousePos, g.Style.TouchExtraPadding)) + return false; + return true; +} + +// Return if a mouse click/drag went past the given threshold. Valid to call during the MouseReleased frame. +// [Internal] This doesn't test if the button is pressed +bool ImGui::IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (lock_threshold < 0.0f) + lock_threshold = g.IO.MouseDragThreshold; + return g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold; +} + +bool ImGui::IsMouseDragging(ImGuiMouseButton button, float lock_threshold) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (!g.IO.MouseDown[button]) + return false; + return IsMouseDragPastThreshold(button, lock_threshold); +} + +ImVec2 ImGui::GetMousePos() +{ + ImGuiContext& g = *GImGui; + return g.IO.MousePos; +} + +// This is called TeleportMousePos() and not SetMousePos() to emphasis that setting MousePosPrev will effectively clear mouse delta as well. +// It is expected you only call this if (io.BackendFlags & ImGuiBackendFlags_HasSetMousePos) is set and supported by backend. +void ImGui::TeleportMousePos(const ImVec2& pos) +{ + ImGuiContext& g = *GImGui; + g.IO.MousePos = g.IO.MousePosPrev = pos; + g.IO.MouseDelta = ImVec2(0.0f, 0.0f); + g.IO.WantSetMousePos = true; + //IMGUI_DEBUG_LOG_IO("TeleportMousePos: (%.1f,%.1f)\n", io.MousePos.x, io.MousePos.y); +} + +// NB: prefer to call right after BeginPopup(). At the time Selectable/MenuItem is activated, the popup is already closed! +ImVec2 ImGui::GetMousePosOnOpeningCurrentPopup() +{ + ImGuiContext& g = *GImGui; + if (g.BeginPopupStack.Size > 0) + return g.OpenPopupStack[g.BeginPopupStack.Size - 1].OpenMousePos; + return g.IO.MousePos; +} + +// We typically use ImVec2(-FLT_MAX,-FLT_MAX) to denote an invalid mouse position. +bool ImGui::IsMousePosValid(const ImVec2* mouse_pos) +{ + // The assert is only to silence a false-positive in XCode Static Analysis. + // Because GImGui is not dereferenced in every code path, the static analyzer assume that it may be NULL (which it doesn't for other functions). + IM_ASSERT(GImGui != NULL); + const float MOUSE_INVALID = -256000.0f; + ImVec2 p = mouse_pos ? *mouse_pos : GImGui->IO.MousePos; + return p.x >= MOUSE_INVALID && p.y >= MOUSE_INVALID; +} + +// [WILL OBSOLETE] This was designed for backends, but prefer having backend maintain a mask of held mouse buttons, because upcoming input queue system will make this invalid. +bool ImGui::IsAnyMouseDown() +{ + ImGuiContext& g = *GImGui; + for (int n = 0; n < IM_ARRAYSIZE(g.IO.MouseDown); n++) + if (g.IO.MouseDown[n]) + return true; + return false; +} + +// Return the delta from the initial clicking position while the mouse button is clicked or was just released. +// This is locked and return 0.0f until the mouse moves past a distance threshold at least once. +// NB: This is only valid if IsMousePosValid(). backends in theory should always keep mouse position valid when dragging even outside the client window. +ImVec2 ImGui::GetMouseDragDelta(ImGuiMouseButton button, float lock_threshold) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + if (lock_threshold < 0.0f) + lock_threshold = g.IO.MouseDragThreshold; + if (g.IO.MouseDown[button] || g.IO.MouseReleased[button]) + if (g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold) + if (IsMousePosValid(&g.IO.MousePos) && IsMousePosValid(&g.IO.MouseClickedPos[button])) + return g.IO.MousePos - g.IO.MouseClickedPos[button]; + return ImVec2(0.0f, 0.0f); +} + +void ImGui::ResetMouseDragDelta(ImGuiMouseButton button) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(button >= 0 && button < IM_ARRAYSIZE(g.IO.MouseDown)); + // NB: We don't need to reset g.IO.MouseDragMaxDistanceSqr + g.IO.MouseClickedPos[button] = g.IO.MousePos; +} + +// Get desired mouse cursor shape. +// Important: this is meant to be used by a platform backend, it is reset in ImGui::NewFrame(), +// updated during the frame, and locked in EndFrame()/Render(). +// If you use software rendering by setting io.MouseDrawCursor then Dear ImGui will render those for you +ImGuiMouseCursor ImGui::GetMouseCursor() +{ + ImGuiContext& g = *GImGui; + return g.MouseCursor; +} + +// We intentionally accept values of ImGuiMouseCursor that are outside our bounds, in case users needs to hack-in a custom cursor value. +// Custom cursors may be handled by custom backends. If you are using a standard backend and want to hack in a custom cursor, you may +// handle it before the backend _NewFrame() call and temporarily set ImGuiConfigFlags_NoMouseCursorChange during the backend _NewFrame() call. +void ImGui::SetMouseCursor(ImGuiMouseCursor cursor_type) +{ + ImGuiContext& g = *GImGui; + g.MouseCursor = cursor_type; +} + +static void UpdateAliasKey(ImGuiKey key, bool v, float analog_value) +{ + IM_ASSERT(ImGui::IsAliasKey(key)); + ImGuiKeyData* key_data = ImGui::GetKeyData(key); + key_data->Down = v; + key_data->AnalogValue = analog_value; +} + +// [Internal] Do not use directly +static ImGuiKeyChord GetMergedModsFromKeys() +{ + ImGuiKeyChord mods = 0; + if (ImGui::IsKeyDown(ImGuiMod_Ctrl)) { mods |= ImGuiMod_Ctrl; } + if (ImGui::IsKeyDown(ImGuiMod_Shift)) { mods |= ImGuiMod_Shift; } + if (ImGui::IsKeyDown(ImGuiMod_Alt)) { mods |= ImGuiMod_Alt; } + if (ImGui::IsKeyDown(ImGuiMod_Super)) { mods |= ImGuiMod_Super; } + return mods; +} + +static void ImGui::UpdateKeyboardInputs() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + if (io.ConfigFlags & ImGuiConfigFlags_NoKeyboard) + io.ClearInputKeys(); + + // Import legacy keys or verify they are not used +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + if (io.BackendUsingLegacyKeyArrays == 0) + { + // Backend used new io.AddKeyEvent() API: Good! Verify that old arrays are never written to externally. + for (int n = 0; n < ImGuiKey_LegacyNativeKey_END; n++) + IM_ASSERT((io.KeysDown[n] == false || IsKeyDown((ImGuiKey)n)) && "Backend needs to either only use io.AddKeyEvent(), either only fill legacy io.KeysDown[] + io.KeyMap[]. Not both!"); + } + else + { + if (g.FrameCount == 0) + for (int n = ImGuiKey_LegacyNativeKey_BEGIN; n < ImGuiKey_LegacyNativeKey_END; n++) + IM_ASSERT(g.IO.KeyMap[n] == -1 && "Backend is not allowed to write to io.KeyMap[0..511]!"); + + // Build reverse KeyMap (Named -> Legacy) + for (int n = ImGuiKey_NamedKey_BEGIN; n < ImGuiKey_NamedKey_END; n++) + if (io.KeyMap[n] != -1) + { + IM_ASSERT(IsLegacyKey((ImGuiKey)io.KeyMap[n])); + io.KeyMap[io.KeyMap[n]] = n; + } + + // Import legacy keys into new ones + for (int n = ImGuiKey_LegacyNativeKey_BEGIN; n < ImGuiKey_LegacyNativeKey_END; n++) + if (io.KeysDown[n] || io.BackendUsingLegacyKeyArrays == 1) + { + const ImGuiKey key = (ImGuiKey)(io.KeyMap[n] != -1 ? io.KeyMap[n] : n); + IM_ASSERT(io.KeyMap[n] == -1 || IsNamedKey(key)); + io.KeysData[key].Down = io.KeysDown[n]; + if (key != n) + io.KeysDown[key] = io.KeysDown[n]; // Allow legacy code using io.KeysDown[GetKeyIndex()] with old backends + io.BackendUsingLegacyKeyArrays = 1; + } + if (io.BackendUsingLegacyKeyArrays == 1) + { + GetKeyData(ImGuiMod_Ctrl)->Down = io.KeyCtrl; + GetKeyData(ImGuiMod_Shift)->Down = io.KeyShift; + GetKeyData(ImGuiMod_Alt)->Down = io.KeyAlt; + GetKeyData(ImGuiMod_Super)->Down = io.KeySuper; + } + } +#endif + + // Import legacy ImGuiNavInput_ io inputs and convert to gamepad keys +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + if (io.BackendUsingLegacyNavInputArray && nav_gamepad_active) + { + #define MAP_LEGACY_NAV_INPUT_TO_KEY1(_KEY, _NAV1) do { io.KeysData[_KEY].Down = (io.NavInputs[_NAV1] > 0.0f); io.KeysData[_KEY].AnalogValue = io.NavInputs[_NAV1]; } while (0) + #define MAP_LEGACY_NAV_INPUT_TO_KEY2(_KEY, _NAV1, _NAV2) do { io.KeysData[_KEY].Down = (io.NavInputs[_NAV1] > 0.0f) || (io.NavInputs[_NAV2] > 0.0f); io.KeysData[_KEY].AnalogValue = ImMax(io.NavInputs[_NAV1], io.NavInputs[_NAV2]); } while (0) + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceDown, ImGuiNavInput_Activate); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceRight, ImGuiNavInput_Cancel); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceLeft, ImGuiNavInput_Menu); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadFaceUp, ImGuiNavInput_Input); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadLeft, ImGuiNavInput_DpadLeft); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadRight, ImGuiNavInput_DpadRight); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadUp, ImGuiNavInput_DpadUp); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadDpadDown, ImGuiNavInput_DpadDown); + MAP_LEGACY_NAV_INPUT_TO_KEY2(ImGuiKey_GamepadL1, ImGuiNavInput_FocusPrev, ImGuiNavInput_TweakSlow); + MAP_LEGACY_NAV_INPUT_TO_KEY2(ImGuiKey_GamepadR1, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakFast); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickLeft, ImGuiNavInput_LStickLeft); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickRight, ImGuiNavInput_LStickRight); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickUp, ImGuiNavInput_LStickUp); + MAP_LEGACY_NAV_INPUT_TO_KEY1(ImGuiKey_GamepadLStickDown, ImGuiNavInput_LStickDown); + #undef NAV_MAP_KEY + } +#endif + + // Update aliases + for (int n = 0; n < ImGuiMouseButton_COUNT; n++) + UpdateAliasKey(MouseButtonToKey(n), io.MouseDown[n], io.MouseDown[n] ? 1.0f : 0.0f); + UpdateAliasKey(ImGuiKey_MouseWheelX, io.MouseWheelH != 0.0f, io.MouseWheelH); + UpdateAliasKey(ImGuiKey_MouseWheelY, io.MouseWheel != 0.0f, io.MouseWheel); + + // Synchronize io.KeyMods and io.KeyCtrl/io.KeyShift/etc. values. + // - New backends (1.87+): send io.AddKeyEvent(ImGuiMod_XXX) -> -> (here) deriving io.KeyMods + io.KeyXXX from key array. + // - Legacy backends: set io.KeyXXX bools -> (above) set key array from io.KeyXXX -> (here) deriving io.KeyMods + io.KeyXXX from key array. + // So with legacy backends the 4 values will do a unnecessary back-and-forth but it makes the code simpler and future facing. + const ImGuiKeyChord prev_key_mods = io.KeyMods; + io.KeyMods = GetMergedModsFromKeys(); + io.KeyCtrl = (io.KeyMods & ImGuiMod_Ctrl) != 0; + io.KeyShift = (io.KeyMods & ImGuiMod_Shift) != 0; + io.KeyAlt = (io.KeyMods & ImGuiMod_Alt) != 0; + io.KeySuper = (io.KeyMods & ImGuiMod_Super) != 0; + if (prev_key_mods != io.KeyMods) + g.LastKeyModsChangeTime = g.Time; + if (prev_key_mods != io.KeyMods && prev_key_mods == 0) + g.LastKeyModsChangeFromNoneTime = g.Time; + + // Clear gamepad data if disabled + if ((io.BackendFlags & ImGuiBackendFlags_HasGamepad) == 0) + for (int i = ImGuiKey_Gamepad_BEGIN; i < ImGuiKey_Gamepad_END; i++) + { + io.KeysData[i - ImGuiKey_KeysData_OFFSET].Down = false; + io.KeysData[i - ImGuiKey_KeysData_OFFSET].AnalogValue = 0.0f; + } + + // Update keys + for (int i = 0; i < ImGuiKey_KeysData_SIZE; i++) + { + ImGuiKeyData* key_data = &io.KeysData[i]; + key_data->DownDurationPrev = key_data->DownDuration; + key_data->DownDuration = key_data->Down ? (key_data->DownDuration < 0.0f ? 0.0f : key_data->DownDuration + io.DeltaTime) : -1.0f; + if (key_data->DownDuration == 0.0f) + { + ImGuiKey key = (ImGuiKey)(ImGuiKey_KeysData_OFFSET + i); + if (IsKeyboardKey(key)) + g.LastKeyboardKeyPressTime = g.Time; + else if (key == ImGuiKey_ReservedForModCtrl || key == ImGuiKey_ReservedForModShift || key == ImGuiKey_ReservedForModAlt || key == ImGuiKey_ReservedForModSuper) + g.LastKeyboardKeyPressTime = g.Time; + } + } + + // Update keys/input owner (named keys only): one entry per key + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + ImGuiKeyData* key_data = &io.KeysData[key - ImGuiKey_KeysData_OFFSET]; + ImGuiKeyOwnerData* owner_data = &g.KeysOwnerData[key - ImGuiKey_NamedKey_BEGIN]; + owner_data->OwnerCurr = owner_data->OwnerNext; + if (!key_data->Down) // Important: ownership is released on the frame after a release. Ensure a 'MouseDown -> CloseWindow -> MouseUp' chain doesn't lead to someone else seeing the MouseUp. + owner_data->OwnerNext = ImGuiKeyOwner_NoOwner; + owner_data->LockThisFrame = owner_data->LockUntilRelease = owner_data->LockUntilRelease && key_data->Down; // Clear LockUntilRelease when key is not Down anymore + } + + // Update key routing (for e.g. shortcuts) + UpdateKeyRoutingTable(&g.KeysRoutingTable); +} + +static void ImGui::UpdateMouseInputs() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + // Mouse Wheel swapping flag + // As a standard behavior holding SHIFT while using Vertical Mouse Wheel triggers Horizontal scroll instead + // - We avoid doing it on OSX as it the OS input layer handles this already. + // - FIXME: However this means when running on OSX over Emscripten, Shift+WheelY will incur two swapping (1 in OS, 1 here), canceling the feature. + // - FIXME: When we can distinguish e.g. touchpad scroll events from mouse ones, we'll set this accordingly based on input source. + io.MouseWheelRequestAxisSwap = io.KeyShift && !io.ConfigMacOSXBehaviors; + + // Round mouse position to avoid spreading non-rounded position (e.g. UpdateManualResize doesn't support them well) + if (IsMousePosValid(&io.MousePos)) + io.MousePos = g.MouseLastValidPos = ImFloor(io.MousePos); + + // If mouse just appeared or disappeared (usually denoted by -FLT_MAX components) we cancel out movement in MouseDelta + if (IsMousePosValid(&io.MousePos) && IsMousePosValid(&io.MousePosPrev)) + io.MouseDelta = io.MousePos - io.MousePosPrev; + else + io.MouseDelta = ImVec2(0.0f, 0.0f); + + // Update stationary timer. + // FIXME: May need to rework again to have some tolerance for occasional small movement, while being functional on high-framerates. + const float mouse_stationary_threshold = (io.MouseSource == ImGuiMouseSource_Mouse) ? 2.0f : 3.0f; // Slightly higher threshold for ImGuiMouseSource_TouchScreen/ImGuiMouseSource_Pen, may need rework. + const bool mouse_stationary = (ImLengthSqr(io.MouseDelta) <= mouse_stationary_threshold * mouse_stationary_threshold); + g.MouseStationaryTimer = mouse_stationary ? (g.MouseStationaryTimer + io.DeltaTime) : 0.0f; + //IMGUI_DEBUG_LOG("%.4f\n", g.MouseStationaryTimer); + + // If mouse moved we re-enable mouse hovering in case it was disabled by gamepad/keyboard. In theory should use a >0.0f threshold but would need to reset in everywhere we set this to true. + if (io.MouseDelta.x != 0.0f || io.MouseDelta.y != 0.0f) + g.NavDisableMouseHover = false; + + for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) + { + io.MouseClicked[i] = io.MouseDown[i] && io.MouseDownDuration[i] < 0.0f; + io.MouseClickedCount[i] = 0; // Will be filled below + io.MouseReleased[i] = !io.MouseDown[i] && io.MouseDownDuration[i] >= 0.0f; + io.MouseDownDurationPrev[i] = io.MouseDownDuration[i]; + io.MouseDownDuration[i] = io.MouseDown[i] ? (io.MouseDownDuration[i] < 0.0f ? 0.0f : io.MouseDownDuration[i] + io.DeltaTime) : -1.0f; + if (io.MouseClicked[i]) + { + bool is_repeated_click = false; + if ((float)(g.Time - io.MouseClickedTime[i]) < io.MouseDoubleClickTime) + { + ImVec2 delta_from_click_pos = IsMousePosValid(&io.MousePos) ? (io.MousePos - io.MouseClickedPos[i]) : ImVec2(0.0f, 0.0f); + if (ImLengthSqr(delta_from_click_pos) < io.MouseDoubleClickMaxDist * io.MouseDoubleClickMaxDist) + is_repeated_click = true; + } + if (is_repeated_click) + io.MouseClickedLastCount[i]++; + else + io.MouseClickedLastCount[i] = 1; + io.MouseClickedTime[i] = g.Time; + io.MouseClickedPos[i] = io.MousePos; + io.MouseClickedCount[i] = io.MouseClickedLastCount[i]; + io.MouseDragMaxDistanceSqr[i] = 0.0f; + } + else if (io.MouseDown[i]) + { + // Maintain the maximum distance we reaching from the initial click position, which is used with dragging threshold + float delta_sqr_click_pos = IsMousePosValid(&io.MousePos) ? ImLengthSqr(io.MousePos - io.MouseClickedPos[i]) : 0.0f; + io.MouseDragMaxDistanceSqr[i] = ImMax(io.MouseDragMaxDistanceSqr[i], delta_sqr_click_pos); + } + + // We provide io.MouseDoubleClicked[] as a legacy service + io.MouseDoubleClicked[i] = (io.MouseClickedCount[i] == 2); + + // Clicking any mouse button reactivate mouse hovering which may have been deactivated by gamepad/keyboard navigation + if (io.MouseClicked[i]) + g.NavDisableMouseHover = false; + } +} + +static void LockWheelingWindow(ImGuiWindow* window, float wheel_amount) +{ + ImGuiContext& g = *GImGui; + if (window) + g.WheelingWindowReleaseTimer = ImMin(g.WheelingWindowReleaseTimer + ImAbs(wheel_amount) * WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER, WINDOWS_MOUSE_WHEEL_SCROLL_LOCK_TIMER); + else + g.WheelingWindowReleaseTimer = 0.0f; + if (g.WheelingWindow == window) + return; + IMGUI_DEBUG_LOG_IO("[io] LockWheelingWindow() \"%s\"\n", window ? window->Name : "NULL"); + g.WheelingWindow = window; + g.WheelingWindowRefMousePos = g.IO.MousePos; + if (window == NULL) + { + g.WheelingWindowStartFrame = -1; + g.WheelingAxisAvg = ImVec2(0.0f, 0.0f); + } +} + +static ImGuiWindow* FindBestWheelingWindow(const ImVec2& wheel) +{ + // For each axis, find window in the hierarchy that may want to use scrolling + ImGuiContext& g = *GImGui; + ImGuiWindow* windows[2] = { NULL, NULL }; + for (int axis = 0; axis < 2; axis++) + if (wheel[axis] != 0.0f) + for (ImGuiWindow* window = windows[axis] = g.HoveredWindow; window->Flags & ImGuiWindowFlags_ChildWindow; window = windows[axis] = window->ParentWindow) + { + // Bubble up into parent window if: + // - a child window doesn't allow any scrolling. + // - a child window has the ImGuiWindowFlags_NoScrollWithMouse flag. + //// - a child window doesn't need scrolling because it is already at the edge for the direction we are going in (FIXME-WIP) + const bool has_scrolling = (window->ScrollMax[axis] != 0.0f); + const bool inputs_disabled = (window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs); + //const bool scrolling_past_limits = (wheel_v < 0.0f) ? (window->Scroll[axis] <= 0.0f) : (window->Scroll[axis] >= window->ScrollMax[axis]); + if (has_scrolling && !inputs_disabled) // && !scrolling_past_limits) + break; // select this window + } + if (windows[0] == NULL && windows[1] == NULL) + return NULL; + + // If there's only one window or only one axis then there's no ambiguity + if (windows[0] == windows[1] || windows[0] == NULL || windows[1] == NULL) + return windows[1] ? windows[1] : windows[0]; + + // If candidate are different windows we need to decide which one to prioritize + // - First frame: only find a winner if one axis is zero. + // - Subsequent frames: only find a winner when one is more than the other. + if (g.WheelingWindowStartFrame == -1) + g.WheelingWindowStartFrame = g.FrameCount; + if ((g.WheelingWindowStartFrame == g.FrameCount && wheel.x != 0.0f && wheel.y != 0.0f) || (g.WheelingAxisAvg.x == g.WheelingAxisAvg.y)) + { + g.WheelingWindowWheelRemainder = wheel; + return NULL; + } + return (g.WheelingAxisAvg.x > g.WheelingAxisAvg.y) ? windows[0] : windows[1]; +} + +// Called by NewFrame() +void ImGui::UpdateMouseWheel() +{ + // Reset the locked window if we move the mouse or after the timer elapses. + // FIXME: Ideally we could refactor to have one timer for "changing window w/ same axis" and a shorter timer for "changing window or axis w/ other axis" (#3795) + ImGuiContext& g = *GImGui; + if (g.WheelingWindow != NULL) + { + g.WheelingWindowReleaseTimer -= g.IO.DeltaTime; + if (IsMousePosValid() && ImLengthSqr(g.IO.MousePos - g.WheelingWindowRefMousePos) > g.IO.MouseDragThreshold * g.IO.MouseDragThreshold) + g.WheelingWindowReleaseTimer = 0.0f; + if (g.WheelingWindowReleaseTimer <= 0.0f) + LockWheelingWindow(NULL, 0.0f); + } + + ImVec2 wheel; + wheel.x = TestKeyOwner(ImGuiKey_MouseWheelX, ImGuiKeyOwner_NoOwner) ? g.IO.MouseWheelH : 0.0f; + wheel.y = TestKeyOwner(ImGuiKey_MouseWheelY, ImGuiKeyOwner_NoOwner) ? g.IO.MouseWheel : 0.0f; + + //IMGUI_DEBUG_LOG("MouseWheel X:%.3f Y:%.3f\n", wheel_x, wheel_y); + ImGuiWindow* mouse_window = g.WheelingWindow ? g.WheelingWindow : g.HoveredWindow; + if (!mouse_window || mouse_window->Collapsed) + return; + + // Zoom / Scale window + // FIXME-OBSOLETE: This is an old feature, it still works but pretty much nobody is using it and may be best redesigned. + if (wheel.y != 0.0f && g.IO.KeyCtrl && g.IO.FontAllowUserScaling) + { + LockWheelingWindow(mouse_window, wheel.y); + ImGuiWindow* window = mouse_window; + const float new_font_scale = ImClamp(window->FontWindowScale + g.IO.MouseWheel * 0.10f, 0.50f, 2.50f); + const float scale = new_font_scale / window->FontWindowScale; + window->FontWindowScale = new_font_scale; + if (window == window->RootWindow) + { + const ImVec2 offset = window->Size * (1.0f - scale) * (g.IO.MousePos - window->Pos) / window->Size; + SetWindowPos(window, window->Pos + offset, 0); + window->Size = ImTrunc(window->Size * scale); + window->SizeFull = ImTrunc(window->SizeFull * scale); + } + return; + } + if (g.IO.KeyCtrl) + return; + + // Mouse wheel scrolling + // Read about io.MouseWheelRequestAxisSwap and its issue on Mac+Emscripten in UpdateMouseInputs() + if (g.IO.MouseWheelRequestAxisSwap) + wheel = ImVec2(wheel.y, 0.0f); + + // Maintain a rough average of moving magnitude on both axises + // FIXME: should by based on wall clock time rather than frame-counter + g.WheelingAxisAvg.x = ImExponentialMovingAverage(g.WheelingAxisAvg.x, ImAbs(wheel.x), 30); + g.WheelingAxisAvg.y = ImExponentialMovingAverage(g.WheelingAxisAvg.y, ImAbs(wheel.y), 30); + + // In the rare situation where FindBestWheelingWindow() had to defer first frame of wheeling due to ambiguous main axis, reinject it now. + wheel += g.WheelingWindowWheelRemainder; + g.WheelingWindowWheelRemainder = ImVec2(0.0f, 0.0f); + if (wheel.x == 0.0f && wheel.y == 0.0f) + return; + + // Mouse wheel scrolling: find target and apply + // - don't renew lock if axis doesn't apply on the window. + // - select a main axis when both axises are being moved. + if (ImGuiWindow* window = (g.WheelingWindow ? g.WheelingWindow : FindBestWheelingWindow(wheel))) + if (!(window->Flags & ImGuiWindowFlags_NoScrollWithMouse) && !(window->Flags & ImGuiWindowFlags_NoMouseInputs)) + { + bool do_scroll[2] = { wheel.x != 0.0f && window->ScrollMax.x != 0.0f, wheel.y != 0.0f && window->ScrollMax.y != 0.0f }; + if (do_scroll[ImGuiAxis_X] && do_scroll[ImGuiAxis_Y]) + do_scroll[(g.WheelingAxisAvg.x > g.WheelingAxisAvg.y) ? ImGuiAxis_Y : ImGuiAxis_X] = false; + if (do_scroll[ImGuiAxis_X]) + { + LockWheelingWindow(window, wheel.x); + float max_step = window->InnerRect.GetWidth() * 0.67f; + float scroll_step = ImTrunc(ImMin(2 * window->CalcFontSize(), max_step)); + SetScrollX(window, window->Scroll.x - wheel.x * scroll_step); + g.WheelingWindowScrolledFrame = g.FrameCount; + } + if (do_scroll[ImGuiAxis_Y]) + { + LockWheelingWindow(window, wheel.y); + float max_step = window->InnerRect.GetHeight() * 0.67f; + float scroll_step = ImTrunc(ImMin(5 * window->CalcFontSize(), max_step)); + SetScrollY(window, window->Scroll.y - wheel.y * scroll_step); + g.WheelingWindowScrolledFrame = g.FrameCount; + } + } +} + +void ImGui::SetNextFrameWantCaptureKeyboard(bool want_capture_keyboard) +{ + ImGuiContext& g = *GImGui; + g.WantCaptureKeyboardNextFrame = want_capture_keyboard ? 1 : 0; +} + +void ImGui::SetNextFrameWantCaptureMouse(bool want_capture_mouse) +{ + ImGuiContext& g = *GImGui; + g.WantCaptureMouseNextFrame = want_capture_mouse ? 1 : 0; +} + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS +static const char* GetInputSourceName(ImGuiInputSource source) +{ + const char* input_source_names[] = { "None", "Mouse", "Keyboard", "Gamepad" }; + IM_ASSERT(IM_ARRAYSIZE(input_source_names) == ImGuiInputSource_COUNT && source >= 0 && source < ImGuiInputSource_COUNT); + return input_source_names[source]; +} +static const char* GetMouseSourceName(ImGuiMouseSource source) +{ + const char* mouse_source_names[] = { "Mouse", "TouchScreen", "Pen" }; + IM_ASSERT(IM_ARRAYSIZE(mouse_source_names) == ImGuiMouseSource_COUNT && source >= 0 && source < ImGuiMouseSource_COUNT); + return mouse_source_names[source]; +} +static void DebugPrintInputEvent(const char* prefix, const ImGuiInputEvent* e) +{ + ImGuiContext& g = *GImGui; + if (e->Type == ImGuiInputEventType_MousePos) { if (e->MousePos.PosX == -FLT_MAX && e->MousePos.PosY == -FLT_MAX) IMGUI_DEBUG_LOG_IO("[io] %s: MousePos (-FLT_MAX, -FLT_MAX)\n", prefix); else IMGUI_DEBUG_LOG_IO("[io] %s: MousePos (%.1f, %.1f) (%s)\n", prefix, e->MousePos.PosX, e->MousePos.PosY, GetMouseSourceName(e->MousePos.MouseSource)); return; } + if (e->Type == ImGuiInputEventType_MouseButton) { IMGUI_DEBUG_LOG_IO("[io] %s: MouseButton %d %s (%s)\n", prefix, e->MouseButton.Button, e->MouseButton.Down ? "Down" : "Up", GetMouseSourceName(e->MouseButton.MouseSource)); return; } + if (e->Type == ImGuiInputEventType_MouseWheel) { IMGUI_DEBUG_LOG_IO("[io] %s: MouseWheel (%.3f, %.3f) (%s)\n", prefix, e->MouseWheel.WheelX, e->MouseWheel.WheelY, GetMouseSourceName(e->MouseWheel.MouseSource)); return; } + if (e->Type == ImGuiInputEventType_Key) { IMGUI_DEBUG_LOG_IO("[io] %s: Key \"%s\" %s\n", prefix, ImGui::GetKeyName(e->Key.Key), e->Key.Down ? "Down" : "Up"); return; } + if (e->Type == ImGuiInputEventType_Text) { IMGUI_DEBUG_LOG_IO("[io] %s: Text: %c (U+%08X)\n", prefix, e->Text.Char, e->Text.Char); return; } + if (e->Type == ImGuiInputEventType_Focus) { IMGUI_DEBUG_LOG_IO("[io] %s: AppFocused %d\n", prefix, e->AppFocused.Focused); return; } +} +#endif + +// Process input queue +// We always call this with the value of 'bool g.IO.ConfigInputTrickleEventQueue'. +// - trickle_fast_inputs = false : process all events, turn into flattened input state (e.g. successive down/up/down/up will be lost) +// - trickle_fast_inputs = true : process as many events as possible (successive down/up/down/up will be trickled over several frames so nothing is lost) (new feature in 1.87) +void ImGui::UpdateInputEvents(bool trickle_fast_inputs) +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + // Only trickle chars<>key when working with InputText() + // FIXME: InputText() could parse event trail? + // FIXME: Could specialize chars<>keys trickling rules for control keys (those not typically associated to characters) + const bool trickle_interleaved_nonchar_keys_and_text = (trickle_fast_inputs && g.WantTextInputNextFrame == 1); + + bool mouse_moved = false, mouse_wheeled = false, key_changed = false, key_changed_nonchar = false, text_inputted = false; + int mouse_button_changed = 0x00; + ImBitArray key_changed_mask; + + int event_n = 0; + for (; event_n < g.InputEventsQueue.Size; event_n++) + { + ImGuiInputEvent* e = &g.InputEventsQueue[event_n]; + if (e->Type == ImGuiInputEventType_MousePos) + { + if (g.IO.WantSetMousePos) + continue; + // Trickling Rule: Stop processing queued events if we already handled a mouse button change + ImVec2 event_pos(e->MousePos.PosX, e->MousePos.PosY); + if (trickle_fast_inputs && (mouse_button_changed != 0 || mouse_wheeled || key_changed || text_inputted)) + break; + io.MousePos = event_pos; + io.MouseSource = e->MousePos.MouseSource; + mouse_moved = true; + } + else if (e->Type == ImGuiInputEventType_MouseButton) + { + // Trickling Rule: Stop processing queued events if we got multiple action on the same button + const ImGuiMouseButton button = e->MouseButton.Button; + IM_ASSERT(button >= 0 && button < ImGuiMouseButton_COUNT); + if (trickle_fast_inputs && ((mouse_button_changed & (1 << button)) || mouse_wheeled)) + break; + if (trickle_fast_inputs && e->MouseButton.MouseSource == ImGuiMouseSource_TouchScreen && mouse_moved) // #2702: TouchScreen have no initial hover. + break; + io.MouseDown[button] = e->MouseButton.Down; + io.MouseSource = e->MouseButton.MouseSource; + mouse_button_changed |= (1 << button); + } + else if (e->Type == ImGuiInputEventType_MouseWheel) + { + // Trickling Rule: Stop processing queued events if we got multiple action on the event + if (trickle_fast_inputs && (mouse_moved || mouse_button_changed != 0)) + break; + io.MouseWheelH += e->MouseWheel.WheelX; + io.MouseWheel += e->MouseWheel.WheelY; + io.MouseSource = e->MouseWheel.MouseSource; + mouse_wheeled = true; + } + else if (e->Type == ImGuiInputEventType_Key) + { + // Trickling Rule: Stop processing queued events if we got multiple action on the same button + if (io.ConfigFlags & ImGuiConfigFlags_NoKeyboard) + continue; + ImGuiKey key = e->Key.Key; + IM_ASSERT(key != ImGuiKey_None); + ImGuiKeyData* key_data = GetKeyData(key); + const int key_data_index = (int)(key_data - g.IO.KeysData); + if (trickle_fast_inputs && key_data->Down != e->Key.Down && (key_changed_mask.TestBit(key_data_index) || mouse_button_changed != 0)) + break; + + const bool key_is_potentially_for_char_input = IsKeyChordPotentiallyCharInput(GetMergedModsFromKeys() | key); + if (trickle_interleaved_nonchar_keys_and_text && (text_inputted && !key_is_potentially_for_char_input)) + break; + + key_data->Down = e->Key.Down; + key_data->AnalogValue = e->Key.AnalogValue; + key_changed = true; + key_changed_mask.SetBit(key_data_index); + if (trickle_interleaved_nonchar_keys_and_text && !key_is_potentially_for_char_input) + key_changed_nonchar = true; + + // Allow legacy code using io.KeysDown[GetKeyIndex()] with new backends +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + io.KeysDown[key_data_index] = key_data->Down; + if (io.KeyMap[key_data_index] != -1) + io.KeysDown[io.KeyMap[key_data_index]] = key_data->Down; +#endif + } + else if (e->Type == ImGuiInputEventType_Text) + { + if (io.ConfigFlags & ImGuiConfigFlags_NoKeyboard) + continue; + // Trickling Rule: Stop processing queued events if keys/mouse have been interacted with + if (trickle_fast_inputs && (mouse_button_changed != 0 || mouse_moved || mouse_wheeled)) + break; + if (trickle_interleaved_nonchar_keys_and_text && key_changed_nonchar) + break; + unsigned int c = e->Text.Char; + io.InputQueueCharacters.push_back(c <= IM_UNICODE_CODEPOINT_MAX ? (ImWchar)c : IM_UNICODE_CODEPOINT_INVALID); + if (trickle_interleaved_nonchar_keys_and_text) + text_inputted = true; + } + else if (e->Type == ImGuiInputEventType_Focus) + { + // We intentionally overwrite this and process in NewFrame(), in order to give a chance + // to multi-viewports backends to queue AddFocusEvent(false) + AddFocusEvent(true) in same frame. + const bool focus_lost = !e->AppFocused.Focused; + io.AppFocusLost = focus_lost; + } + else + { + IM_ASSERT(0 && "Unknown event!"); + } + } + + // Record trail (for domain-specific applications wanting to access a precise trail) + //if (event_n != 0) IMGUI_DEBUG_LOG_IO("Processed: %d / Remaining: %d\n", event_n, g.InputEventsQueue.Size - event_n); + for (int n = 0; n < event_n; n++) + g.InputEventsTrail.push_back(g.InputEventsQueue[n]); + + // [DEBUG] +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (event_n != 0 && (g.DebugLogFlags & ImGuiDebugLogFlags_EventIO)) + for (int n = 0; n < g.InputEventsQueue.Size; n++) + DebugPrintInputEvent(n < event_n ? "Processed" : "Remaining", &g.InputEventsQueue[n]); +#endif + + // Remaining events will be processed on the next frame + if (event_n == g.InputEventsQueue.Size) + g.InputEventsQueue.resize(0); + else + g.InputEventsQueue.erase(g.InputEventsQueue.Data, g.InputEventsQueue.Data + event_n); + + // Clear buttons state when focus is lost + // - this is useful so e.g. releasing Alt after focus loss on Alt-Tab doesn't trigger the Alt menu toggle. + // - we clear in EndFrame() and not now in order allow application/user code polling this flag + // (e.g. custom backend may want to clear additional data, custom widgets may want to react with a "canceling" event). + if (g.IO.AppFocusLost) + { + g.IO.ClearInputKeys(); + g.IO.ClearInputMouse(); + } +} + +ImGuiID ImGui::GetKeyOwner(ImGuiKey key) +{ + if (!IsNamedKeyOrMod(key)) + return ImGuiKeyOwner_NoOwner; + + ImGuiContext& g = *GImGui; + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + ImGuiID owner_id = owner_data->OwnerCurr; + + if (g.ActiveIdUsingAllKeyboardKeys && owner_id != g.ActiveId && owner_id != ImGuiKeyOwner_Any) + if (key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END) + return ImGuiKeyOwner_NoOwner; + + return owner_id; +} + +// TestKeyOwner(..., ID) : (owner == None || owner == ID) +// TestKeyOwner(..., None) : (owner == None) +// TestKeyOwner(..., Any) : no owner test +// All paths are also testing for key not being locked, for the rare cases that key have been locked with using ImGuiInputFlags_LockXXX flags. +bool ImGui::TestKeyOwner(ImGuiKey key, ImGuiID owner_id) +{ + if (!IsNamedKeyOrMod(key)) + return true; + + ImGuiContext& g = *GImGui; + if (g.ActiveIdUsingAllKeyboardKeys && owner_id != g.ActiveId && owner_id != ImGuiKeyOwner_Any) + if (key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END) + return false; + + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + if (owner_id == ImGuiKeyOwner_Any) + return (owner_data->LockThisFrame == false); + + // Note: SetKeyOwner() sets OwnerCurr. It is not strictly required for most mouse routing overlap (because of ActiveId/HoveredId + // are acting as filter before this has a chance to filter), but sane as soon as user tries to look into things. + // Setting OwnerCurr in SetKeyOwner() is more consistent than testing OwnerNext here: would be inconsistent with getter and other functions. + if (owner_data->OwnerCurr != owner_id) + { + if (owner_data->LockThisFrame) + return false; + if (owner_data->OwnerCurr != ImGuiKeyOwner_NoOwner) + return false; + } + + return true; +} + +// _LockXXX flags are useful to lock keys away from code which is not input-owner aware. +// When using _LockXXX flags, you can use ImGuiKeyOwner_Any to lock keys from everyone. +// - SetKeyOwner(..., None) : clears owner +// - SetKeyOwner(..., Any, !Lock) : illegal (assert) +// - SetKeyOwner(..., Any or None, Lock) : set lock +void ImGui::SetKeyOwner(ImGuiKey key, ImGuiID owner_id, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(IsNamedKeyOrMod(key) && (owner_id != ImGuiKeyOwner_Any || (flags & (ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease)))); // Can only use _Any with _LockXXX flags (to eat a key away without an ID to retrieve it) + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedBySetKeyOwner) == 0); // Passing flags not supported by this function! + //IMGUI_DEBUG_LOG("SetKeyOwner(%s, owner_id=0x%08X, flags=%08X)\n", GetKeyName(key), owner_id, flags); + + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + owner_data->OwnerCurr = owner_data->OwnerNext = owner_id; + + // We cannot lock by default as it would likely break lots of legacy code. + // In the case of using LockUntilRelease while key is not down we still lock during the frame (no key_data->Down test) + owner_data->LockUntilRelease = (flags & ImGuiInputFlags_LockUntilRelease) != 0; + owner_data->LockThisFrame = (flags & ImGuiInputFlags_LockThisFrame) != 0 || (owner_data->LockUntilRelease); +} + +// Rarely used helper +void ImGui::SetKeyOwnersForKeyChord(ImGuiKeyChord key_chord, ImGuiID owner_id, ImGuiInputFlags flags) +{ + if (key_chord & ImGuiMod_Ctrl) { SetKeyOwner(ImGuiMod_Ctrl, owner_id, flags); } + if (key_chord & ImGuiMod_Shift) { SetKeyOwner(ImGuiMod_Shift, owner_id, flags); } + if (key_chord & ImGuiMod_Alt) { SetKeyOwner(ImGuiMod_Alt, owner_id, flags); } + if (key_chord & ImGuiMod_Super) { SetKeyOwner(ImGuiMod_Super, owner_id, flags); } + if (key_chord & ~ImGuiMod_Mask_) { SetKeyOwner((ImGuiKey)(key_chord & ~ImGuiMod_Mask_), owner_id, flags); } +} + +// This is more or less equivalent to: +// if (IsItemHovered() || IsItemActive()) +// SetKeyOwner(key, GetItemID()); +// Extensive uses of that (e.g. many calls for a single item) may want to manually perform the tests once and then call SetKeyOwner() multiple times. +// More advanced usage scenarios may want to call SetKeyOwner() manually based on different condition. +// Worth noting is that only one item can be hovered and only one item can be active, therefore this usage pattern doesn't need to bother with routing and priority. +void ImGui::SetItemKeyOwner(ImGuiKey key, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiID id = g.LastItemData.ID; + if (id == 0 || (g.HoveredId != id && g.ActiveId != id)) + return; + if ((flags & ImGuiInputFlags_CondMask_) == 0) + flags |= ImGuiInputFlags_CondDefault_; + if ((g.HoveredId == id && (flags & ImGuiInputFlags_CondHovered)) || (g.ActiveId == id && (flags & ImGuiInputFlags_CondActive))) + { + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedBySetItemKeyOwner) == 0); // Passing flags not supported by this function! + SetKeyOwner(key, id, flags & ~ImGuiInputFlags_CondMask_); + } +} + +void ImGui::SetItemKeyOwner(ImGuiKey key) +{ + SetItemKeyOwner(key, ImGuiInputFlags_None); +} + +// This is the only public API until we expose owner_id versions of the API as replacements. +bool ImGui::IsKeyChordPressed(ImGuiKeyChord key_chord) +{ + return IsKeyChordPressed(key_chord, ImGuiInputFlags_None, ImGuiKeyOwner_Any); +} + +// This is equivalent to comparing KeyMods + doing a IsKeyPressed() +bool ImGui::IsKeyChordPressed(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + key_chord = FixupKeyChord(key_chord); + ImGuiKey mods = (ImGuiKey)(key_chord & ImGuiMod_Mask_); + if (g.IO.KeyMods != mods) + return false; + + // Special storage location for mods + ImGuiKey key = (ImGuiKey)(key_chord & ~ImGuiMod_Mask_); + if (key == ImGuiKey_None) + key = ConvertSingleModFlagToKey(mods); + if (!IsKeyPressed(key, (flags & ImGuiInputFlags_RepeatMask_), owner_id)) + return false; + return true; +} + +void ImGui::SetNextItemShortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags) +{ + ImGuiContext& g = *GImGui; + g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasShortcut; + g.NextItemData.Shortcut = key_chord; + g.NextItemData.ShortcutFlags = flags; +} + +// Called from within ItemAdd: at this point we can read from NextItemData and write to LastItemData +void ImGui::ItemHandleShortcut(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiInputFlags flags = g.NextItemData.ShortcutFlags; + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedBySetNextItemShortcut) == 0); // Passing flags not supported by SetNextItemShortcut()! + + if (g.LastItemData.InFlags & ImGuiItemFlags_Disabled) + return; + if (flags & ImGuiInputFlags_Tooltip) + { + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasShortcut; + g.LastItemData.Shortcut = g.NextItemData.Shortcut; + } + if (!Shortcut(g.NextItemData.Shortcut, flags & ImGuiInputFlags_SupportedByShortcut, id) || g.NavActivateId != 0) + return; + + // FIXME: Generalize Activation queue? + g.NavActivateId = id; // Will effectively disable clipping. + g.NavActivateFlags = ImGuiActivateFlags_PreferInput | ImGuiActivateFlags_FromShortcut; + //if (g.ActiveId == 0 || g.ActiveId == id) + g.NavActivateDownId = g.NavActivatePressedId = id; + NavHighlightActivated(id); +} + +bool ImGui::Shortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags) +{ + return Shortcut(key_chord, flags, ImGuiKeyOwner_Any); +} + +bool ImGui::Shortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id) +{ + ImGuiContext& g = *GImGui; + //IMGUI_DEBUG_LOG("Shortcut(%s, flags=%X, owner_id=0x%08X)\n", GetKeyChordName(key_chord, g.TempBuffer.Data, g.TempBuffer.Size), flags, owner_id); + + // When using (owner_id == 0/Any): SetShortcutRouting() will use CurrentFocusScopeId and filter with this, so IsKeyPressed() is fine with he 0/Any. + if ((flags & ImGuiInputFlags_RouteTypeMask_) == 0) + flags |= ImGuiInputFlags_RouteFocused; + + // Using 'owner_id == ImGuiKeyOwner_Any/0': auto-assign an owner based on current focus scope (each window has its focus scope by default) + // Effectively makes Shortcut() always input-owner aware. + if (owner_id == ImGuiKeyOwner_Any || owner_id == ImGuiKeyOwner_NoOwner) + owner_id = GetRoutingIdFromOwnerId(owner_id); + + if (g.CurrentItemFlags & ImGuiItemFlags_Disabled) + return false; + + // Submit route + if (!SetShortcutRouting(key_chord, flags, owner_id)) + return false; + + // Default repeat behavior for Shortcut() + // So e.g. pressing Ctrl+W and releasing Ctrl while holding W will not trigger the W shortcut. + if ((flags & ImGuiInputFlags_Repeat) != 0 && (flags & ImGuiInputFlags_RepeatUntilMask_) == 0) + flags |= ImGuiInputFlags_RepeatUntilKeyModsChange; + + if (!IsKeyChordPressed(key_chord, flags, owner_id)) + return false; + + // Claim mods during the press + SetKeyOwnersForKeyChord(key_chord & ImGuiMod_Mask_, owner_id); + + IM_ASSERT((flags & ~ImGuiInputFlags_SupportedByShortcut) == 0); // Passing flags not supported by this function! + return true; +} + + +//----------------------------------------------------------------------------- +// [SECTION] ERROR CHECKING, STATE RECOVERY +//----------------------------------------------------------------------------- +// - DebugCheckVersionAndDataLayout() (called via IMGUI_CHECKVERSION() macros) +// - ErrorCheckUsingSetCursorPosToExtendParentBoundaries() +// - ErrorCheckNewFrameSanityChecks() +// - ErrorCheckEndFrameSanityChecks() +// - ErrorCheckEndFrameRecover() +// - ErrorCheckEndWindowRecover() +// - ImGuiStackSizes +//----------------------------------------------------------------------------- + +// Verify ABI compatibility between caller code and compiled version of Dear ImGui. This helps detects some build issues. +// Called by IMGUI_CHECKVERSION(). +// Verify that the type sizes are matching between the calling file's compilation unit and imgui.cpp's compilation unit +// If this triggers you have mismatched headers and compiled code versions. +// - It could be because of a build issue (using new headers with old compiled code) +// - It could be because of mismatched configuration #define, compilation settings, packing pragma etc. +// THE CONFIGURATION SETTINGS MENTIONED IN imconfig.h MUST BE SET FOR ALL COMPILATION UNITS INVOLVED WITH DEAR IMGUI. +// Which is why it is required you put them in your imconfig file (and NOT only before including imgui.h). +// Otherwise it is possible that different compilation units would see different structure layout. +// If you don't want to modify imconfig.h you can use the IMGUI_USER_CONFIG define to change filename. +bool ImGui::DebugCheckVersionAndDataLayout(const char* version, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_vert, size_t sz_idx) +{ + bool error = false; + if (strcmp(version, IMGUI_VERSION) != 0) { error = true; IM_ASSERT(strcmp(version, IMGUI_VERSION) == 0 && "Mismatched version string!"); } + if (sz_io != sizeof(ImGuiIO)) { error = true; IM_ASSERT(sz_io == sizeof(ImGuiIO) && "Mismatched struct layout!"); } + if (sz_style != sizeof(ImGuiStyle)) { error = true; IM_ASSERT(sz_style == sizeof(ImGuiStyle) && "Mismatched struct layout!"); } + if (sz_vec2 != sizeof(ImVec2)) { error = true; IM_ASSERT(sz_vec2 == sizeof(ImVec2) && "Mismatched struct layout!"); } + if (sz_vec4 != sizeof(ImVec4)) { error = true; IM_ASSERT(sz_vec4 == sizeof(ImVec4) && "Mismatched struct layout!"); } + if (sz_vert != sizeof(ImDrawVert)) { error = true; IM_ASSERT(sz_vert == sizeof(ImDrawVert) && "Mismatched struct layout!"); } + if (sz_idx != sizeof(ImDrawIdx)) { error = true; IM_ASSERT(sz_idx == sizeof(ImDrawIdx) && "Mismatched struct layout!"); } + return !error; +} + +// Until 1.89 (IMGUI_VERSION_NUM < 18814) it was legal to use SetCursorPos() to extend the boundary of a parent (e.g. window or table cell) +// This is causing issues and ambiguity and we need to retire that. +// See https://github.com/ocornut/imgui/issues/5548 for more details. +// [Scenario 1] +// Previously this would make the window content size ~200x200: +// Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + End(); // NOT OK +// Instead, please submit an item: +// Begin(...) + SetCursorScreenPos(GetCursorScreenPos() + ImVec2(200,200)) + Dummy(ImVec2(0,0)) + End(); // OK +// Alternative: +// Begin(...) + Dummy(ImVec2(200,200)) + End(); // OK +// [Scenario 2] +// For reference this is one of the issue what we aim to fix with this change: +// BeginGroup() + SomeItem("foobar") + SetCursorScreenPos(GetCursorScreenPos()) + EndGroup() +// The previous logic made SetCursorScreenPos(GetCursorScreenPos()) have a side-effect! It would erroneously incorporate ItemSpacing.y after the item into content size, making the group taller! +// While this code is a little twisted, no-one would expect SetXXX(GetXXX()) to have a side-effect. Using vertical alignment patterns could trigger this issue. +void ImGui::ErrorCheckUsingSetCursorPosToExtendParentBoundaries() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window->DC.IsSetPos); + window->DC.IsSetPos = false; +#ifdef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + if (window->DC.CursorPos.x <= window->DC.CursorMaxPos.x && window->DC.CursorPos.y <= window->DC.CursorMaxPos.y) + return; + if (window->SkipItems) + return; + IM_ASSERT(0 && "Code uses SetCursorPos()/SetCursorScreenPos() to extend window/parent boundaries. Please submit an item e.g. Dummy() to validate extent."); +#else + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); +#endif +} + +static void ImGui::ErrorCheckNewFrameSanityChecks() +{ + ImGuiContext& g = *GImGui; + + // Check user IM_ASSERT macro + // (IF YOU GET A WARNING OR COMPILE ERROR HERE: it means your assert macro is incorrectly defined! + // If your macro uses multiple statements, it NEEDS to be surrounded by a 'do { ... } while (0)' block. + // This is a common C/C++ idiom to allow multiple statements macros to be used in control flow blocks.) + // #define IM_ASSERT(EXPR) if (SomeCode(EXPR)) SomeMoreCode(); // Wrong! + // #define IM_ASSERT(EXPR) do { if (SomeCode(EXPR)) SomeMoreCode(); } while (0) // Correct! + if (true) IM_ASSERT(1); else IM_ASSERT(0); + + // Emscripten backends are often imprecise in their submission of DeltaTime. (#6114, #3644) + // Ideally the Emscripten app/backend should aim to fix or smooth this value and avoid feeding zero, but we tolerate it. +#ifdef __EMSCRIPTEN__ + if (g.IO.DeltaTime <= 0.0f && g.FrameCount > 0) + g.IO.DeltaTime = 0.00001f; +#endif + + // Check user data + // (We pass an error message in the assert expression to make it visible to programmers who are not using a debugger, as most assert handlers display their argument) + IM_ASSERT(g.Initialized); + IM_ASSERT((g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!"); + IM_ASSERT((g.FrameCount == 0 || g.FrameCountEnded == g.FrameCount) && "Forgot to call Render() or EndFrame() at the end of the previous frame?"); + IM_ASSERT(g.IO.DisplaySize.x >= 0.0f && g.IO.DisplaySize.y >= 0.0f && "Invalid DisplaySize value!"); + IM_ASSERT(g.IO.Fonts->IsBuilt() && "Font Atlas not built! Make sure you called ImGui_ImplXXXX_NewFrame() function for renderer backend, which should call io.Fonts->GetTexDataAsRGBA32() / GetTexDataAsAlpha8()"); + IM_ASSERT(g.Style.CurveTessellationTol > 0.0f && "Invalid style setting!"); + IM_ASSERT(g.Style.CircleTessellationMaxError > 0.0f && "Invalid style setting!"); + IM_ASSERT(g.Style.Alpha >= 0.0f && g.Style.Alpha <= 1.0f && "Invalid style setting!"); // Allows us to avoid a few clamps in color computations + IM_ASSERT(g.Style.WindowMinSize.x >= 1.0f && g.Style.WindowMinSize.y >= 1.0f && "Invalid style setting."); + IM_ASSERT(g.Style.WindowMenuButtonPosition == ImGuiDir_None || g.Style.WindowMenuButtonPosition == ImGuiDir_Left || g.Style.WindowMenuButtonPosition == ImGuiDir_Right); + IM_ASSERT(g.Style.ColorButtonPosition == ImGuiDir_Left || g.Style.ColorButtonPosition == ImGuiDir_Right); +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + for (int n = ImGuiKey_NamedKey_BEGIN; n < ImGuiKey_COUNT; n++) + IM_ASSERT(g.IO.KeyMap[n] >= -1 && g.IO.KeyMap[n] < ImGuiKey_LegacyNativeKey_END && "io.KeyMap[] contains an out of bound value (need to be 0..511, or -1 for unmapped key)"); + + // Check: required key mapping (we intentionally do NOT check all keys to not pressure user into setting up everything, but Space is required and was only added in 1.60 WIP) + if ((g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) && g.IO.BackendUsingLegacyKeyArrays == 1) + IM_ASSERT(g.IO.KeyMap[ImGuiKey_Space] != -1 && "ImGuiKey_Space is not mapped, required for keyboard navigation."); +#endif + + // Remap legacy clipboard handlers (OBSOLETED in 1.91.1, August 2024) +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + if (g.IO.GetClipboardTextFn != NULL && (g.PlatformIO.Platform_GetClipboardTextFn == NULL || g.PlatformIO.Platform_GetClipboardTextFn == Platform_GetClipboardTextFn_DefaultImpl)) + g.PlatformIO.Platform_GetClipboardTextFn = [](ImGuiContext* ctx) { return ctx->IO.GetClipboardTextFn(ctx->IO.ClipboardUserData); }; + if (g.IO.SetClipboardTextFn != NULL && (g.PlatformIO.Platform_SetClipboardTextFn == NULL || g.PlatformIO.Platform_SetClipboardTextFn == Platform_SetClipboardTextFn_DefaultImpl)) + g.PlatformIO.Platform_SetClipboardTextFn = [](ImGuiContext* ctx, const char* text) { return ctx->IO.SetClipboardTextFn(ctx->IO.ClipboardUserData, text); }; +#endif +} + +static void ImGui::ErrorCheckEndFrameSanityChecks() +{ + ImGuiContext& g = *GImGui; + + // Verify that io.KeyXXX fields haven't been tampered with. Key mods should not be modified between NewFrame() and EndFrame() + // One possible reason leading to this assert is that your backends update inputs _AFTER_ NewFrame(). + // It is known that when some modal native windows called mid-frame takes focus away, some backends such as GLFW will + // send key release events mid-frame. This would normally trigger this assertion and lead to sheared inputs. + // We silently accommodate for this case by ignoring the case where all io.KeyXXX modifiers were released (aka key_mod_flags == 0), + // while still correctly asserting on mid-frame key press events. + const ImGuiKeyChord key_mods = GetMergedModsFromKeys(); + IM_ASSERT((key_mods == 0 || g.IO.KeyMods == key_mods) && "Mismatching io.KeyCtrl/io.KeyShift/io.KeyAlt/io.KeySuper vs io.KeyMods"); + IM_UNUSED(key_mods); + + // [EXPERIMENTAL] Recover from errors: You may call this yourself before EndFrame(). + //ErrorCheckEndFrameRecover(); + + // Report when there is a mismatch of Begin/BeginChild vs End/EndChild calls. Important: Remember that the Begin/BeginChild API requires you + // to always call End/EndChild even if Begin/BeginChild returns false! (this is unfortunately inconsistent with most other Begin* API). + if (g.CurrentWindowStack.Size != 1) + { + if (g.CurrentWindowStack.Size > 1) + { + ImGuiWindow* window = g.CurrentWindowStack.back().Window; // <-- This window was not Ended! + IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size == 1, "Mismatched Begin/BeginChild vs End/EndChild calls: did you forget to call End/EndChild?"); + IM_UNUSED(window); + while (g.CurrentWindowStack.Size > 1) + End(); + } + else + { + IM_ASSERT_USER_ERROR(g.CurrentWindowStack.Size == 1, "Mismatched Begin/BeginChild vs End/EndChild calls: did you call End/EndChild too much?"); + } + } + + IM_ASSERT_USER_ERROR(g.GroupStack.Size == 0, "Missing EndGroup call!"); +} + +// Default implementation of ImGuiErrorLogCallback that pipe errors to DebugLog: appears in tty + Tools->DebugLog +void ImGui::ErrorLogCallbackToDebugLog(void*, const char* fmt, ...) +{ +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + va_list args; + va_start(args, fmt); + DebugLogV(fmt, args); + va_end(args); +#else + IM_UNUSED(fmt); +#endif +} + +// Experimental recovery from incorrect usage of BeginXXX/EndXXX/PushXXX/PopXXX calls. +// Must be called during or before EndFrame(). +// This is generally flawed as we are not necessarily End/Popping things in the right order. +// FIXME: Can't recover from inside BeginTabItem/EndTabItem yet. +void ImGui::ErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback, void* user_data) +{ + // PVS-Studio V1044 is "Loop break conditions do not depend on the number of iterations" + ImGuiContext& g = *GImGui; + while (g.CurrentWindowStack.Size > 0) //-V1044 + { + ErrorCheckEndWindowRecover(log_callback, user_data); + ImGuiWindow* window = g.CurrentWindow; + if (g.CurrentWindowStack.Size == 1) + { + IM_ASSERT(window->IsFallbackWindow); + break; + } + if (window->Flags & ImGuiWindowFlags_ChildWindow) + { + if (log_callback) log_callback(user_data, "Recovered from missing EndChild() for '%s'\n", window->Name); + EndChild(); + } + else + { + if (log_callback) log_callback(user_data, "Recovered from missing End() for '%s'\n", window->Name); + End(); + } + } +} + +// Must be called before End()/EndChild() +void ImGui::ErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback, void* user_data) +{ + ImGuiContext& g = *GImGui; + while (g.CurrentTable != NULL && g.CurrentTable->InnerWindow == g.CurrentWindow) + { + if (log_callback) log_callback(user_data, "Recovered from missing EndTable() in '%s'\n", g.CurrentTable->OuterWindow->Name); + EndTable(); + } + + ImGuiWindow* window = g.CurrentWindow; + ImGuiStackSizes* stack_sizes = &g.CurrentWindowStack.back().StackSizesOnBegin; + IM_ASSERT(window != NULL); + while (g.CurrentTabBar != NULL && g.CurrentTabBar->Window == window) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing EndTabBar() in '%s'\n", window->Name); + EndTabBar(); + } + while (g.CurrentMultiSelect != NULL && g.CurrentMultiSelect->Storage->Window == window) + { + if (log_callback) log_callback(user_data, "Recovered from missing EndMultiSelect() in '%s'\n", window->Name); + EndMultiSelect(); + } + while (window->DC.TreeDepth > 0) + { + if (log_callback) log_callback(user_data, "Recovered from missing TreePop() in '%s'\n", window->Name); + TreePop(); + } + while (g.GroupStack.Size > stack_sizes->SizeOfGroupStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing EndGroup() in '%s'\n", window->Name); + EndGroup(); + } + while (window->IDStack.Size > 1) + { + if (log_callback) log_callback(user_data, "Recovered from missing PopID() in '%s'\n", window->Name); + PopID(); + } + while (g.DisabledStackSize > stack_sizes->SizeOfDisabledStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing EndDisabled() in '%s'\n", window->Name); + if (g.CurrentItemFlags & ImGuiItemFlags_Disabled) + EndDisabled(); + else + { + EndDisabledOverrideReenable(); + g.CurrentWindowStack.back().DisabledOverrideReenable = false; + } + } + while (g.ColorStack.Size > stack_sizes->SizeOfColorStack) + { + if (log_callback) log_callback(user_data, "Recovered from missing PopStyleColor() in '%s' for ImGuiCol_%s\n", window->Name, GetStyleColorName(g.ColorStack.back().Col)); + PopStyleColor(); + } + while (g.ItemFlagsStack.Size > stack_sizes->SizeOfItemFlagsStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopItemFlag() in '%s'\n", window->Name); + PopItemFlag(); + } + while (g.StyleVarStack.Size > stack_sizes->SizeOfStyleVarStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopStyleVar() in '%s'\n", window->Name); + PopStyleVar(); + } + while (g.FontStack.Size > stack_sizes->SizeOfFontStack) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopFont() in '%s'\n", window->Name); + PopFont(); + } + while (g.FocusScopeStack.Size > stack_sizes->SizeOfFocusScopeStack + 1) //-V1044 + { + if (log_callback) log_callback(user_data, "Recovered from missing PopFocusScope() in '%s'\n", window->Name); + PopFocusScope(); + } +} + +// Save current stack sizes for later compare +void ImGuiStackSizes::SetToContextState(ImGuiContext* ctx) +{ + ImGuiContext& g = *ctx; + ImGuiWindow* window = g.CurrentWindow; + SizeOfIDStack = (short)window->IDStack.Size; + SizeOfColorStack = (short)g.ColorStack.Size; + SizeOfStyleVarStack = (short)g.StyleVarStack.Size; + SizeOfFontStack = (short)g.FontStack.Size; + SizeOfFocusScopeStack = (short)g.FocusScopeStack.Size; + SizeOfGroupStack = (short)g.GroupStack.Size; + SizeOfItemFlagsStack = (short)g.ItemFlagsStack.Size; + SizeOfBeginPopupStack = (short)g.BeginPopupStack.Size; + SizeOfDisabledStack = (short)g.DisabledStackSize; +} + +// Compare to detect usage errors +void ImGuiStackSizes::CompareWithContextState(ImGuiContext* ctx) +{ + ImGuiContext& g = *ctx; + ImGuiWindow* window = g.CurrentWindow; + IM_UNUSED(window); + + // Window stacks + // NOT checking: DC.ItemWidth, DC.TextWrapPos (per window) to allow user to conveniently push once and not pop (they are cleared on Begin) + IM_ASSERT(SizeOfIDStack == window->IDStack.Size && "PushID/PopID or TreeNode/TreePop Mismatch!"); + + // Global stacks + // For color, style and font stacks there is an incentive to use Push/Begin/Pop/.../End patterns, so we relax our checks a little to allow them. + IM_ASSERT(SizeOfGroupStack == g.GroupStack.Size && "BeginGroup/EndGroup Mismatch!"); + IM_ASSERT(SizeOfBeginPopupStack == g.BeginPopupStack.Size && "BeginPopup/EndPopup or BeginMenu/EndMenu Mismatch!"); + IM_ASSERT(SizeOfDisabledStack == g.DisabledStackSize && "BeginDisabled/EndDisabled Mismatch!"); + IM_ASSERT(SizeOfItemFlagsStack >= g.ItemFlagsStack.Size && "PushItemFlag/PopItemFlag Mismatch!"); + IM_ASSERT(SizeOfColorStack >= g.ColorStack.Size && "PushStyleColor/PopStyleColor Mismatch!"); + IM_ASSERT(SizeOfStyleVarStack >= g.StyleVarStack.Size && "PushStyleVar/PopStyleVar Mismatch!"); + IM_ASSERT(SizeOfFontStack >= g.FontStack.Size && "PushFont/PopFont Mismatch!"); + IM_ASSERT(SizeOfFocusScopeStack == g.FocusScopeStack.Size && "PushFocusScope/PopFocusScope Mismatch!"); +} + +//----------------------------------------------------------------------------- +// [SECTION] ITEM SUBMISSION +//----------------------------------------------------------------------------- +// - KeepAliveID() +// - ItemAdd() +//----------------------------------------------------------------------------- + +// Code not using ItemAdd() may need to call this manually otherwise ActiveId will be cleared. In IMGUI_VERSION_NUM < 18717 this was called by GetID(). +void ImGui::KeepAliveID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + if (g.ActiveId == id) + g.ActiveIdIsAlive = id; + if (g.ActiveIdPreviousFrame == id) + g.ActiveIdPreviousFrameIsAlive = true; +} + +// Declare item bounding box for clipping and interaction. +// Note that the size can be different than the one provided to ItemSize(). Typically, widgets that spread over available surface +// declare their minimum size requirement to ItemSize() and provide a larger region to ItemAdd() which is used drawing/interaction. +// THIS IS IN THE PERFORMANCE CRITICAL PATH (UNTIL THE CLIPPING TEST AND EARLY-RETURN) +IM_MSVC_RUNTIME_CHECKS_OFF +bool ImGui::ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb_arg, ImGuiItemFlags extra_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Set item data + // (DisplayRect is left untouched, made valid when ImGuiItemStatusFlags_HasDisplayRect is set) + g.LastItemData.ID = id; + g.LastItemData.Rect = bb; + g.LastItemData.NavRect = nav_bb_arg ? *nav_bb_arg : bb; + g.LastItemData.InFlags = g.CurrentItemFlags | g.NextItemData.ItemFlags | extra_flags; + g.LastItemData.StatusFlags = ImGuiItemStatusFlags_None; + // Note: we don't copy 'g.NextItemData.SelectionUserData' to an hypothetical g.LastItemData.SelectionUserData: since the former is not cleared. + + if (id != 0) + { + KeepAliveID(id); + + // Directional navigation processing + // Runs prior to clipping early-out + // (a) So that NavInitRequest can be honored, for newly opened windows to select a default widget + // (b) So that we can scroll up/down past clipped items. This adds a small O(N) cost to regular navigation requests + // unfortunately, but it is still limited to one window. It may not scale very well for windows with ten of + // thousands of item, but at least NavMoveRequest is only set on user interaction, aka maximum once a frame. + // We could early out with "if (is_clipped && !g.NavInitRequest) return false;" but when we wouldn't be able + // to reach unclipped widgets. This would work if user had explicit scrolling control (e.g. mapped on a stick). + // We intentionally don't check if g.NavWindow != NULL because g.NavAnyRequest should only be set when it is non null. + // If we crash on a NULL g.NavWindow we need to fix the bug elsewhere. + if (!(g.LastItemData.InFlags & ImGuiItemFlags_NoNav)) + { + // FIMXE-NAV: investigate changing the window tests into a simple 'if (g.NavFocusScopeId == g.CurrentFocusScopeId)' test. + window->DC.NavLayersActiveMaskNext |= (1 << window->DC.NavLayerCurrent); + if (g.NavId == id || g.NavAnyRequest) + if (g.NavWindow->RootWindowForNav == window->RootWindowForNav) + if (window == g.NavWindow || ((window->ChildFlags | g.NavWindow->ChildFlags) & ImGuiChildFlags_NavFlattened)) + NavProcessItem(); + } + + if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasShortcut) + ItemHandleShortcut(id); + } + + // Lightweight clear of SetNextItemXXX data. + g.NextItemData.Flags = ImGuiNextItemDataFlags_None; + g.NextItemData.ItemFlags = ImGuiItemFlags_None; + +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (id != 0) + IMGUI_TEST_ENGINE_ITEM_ADD(id, g.LastItemData.NavRect, &g.LastItemData); +#endif + + // Clipping test + // (this is an inline copy of IsClippedEx() so we can reuse the is_rect_visible value, otherwise we'd do 'if (IsClippedEx(bb, id)) return false') + // g.NavActivateId is not necessarily == g.NavId, in the case of remote activation (e.g. shortcuts) + const bool is_rect_visible = bb.Overlaps(window->ClipRect); + if (!is_rect_visible) + if (id == 0 || (id != g.ActiveId && id != g.ActiveIdPreviousFrame && id != g.NavId && id != g.NavActivateId)) + if (!g.ItemUnclipByLog) + return false; + + // [DEBUG] +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + if (id != 0) + { + if (id == g.DebugLocateId) + DebugLocateItemResolveWithLastItem(); + + // [DEBUG] People keep stumbling on this problem and using "" as identifier in the root of a window instead of "##something". + // Empty identifier are valid and useful in a small amount of cases, but 99.9% of the time you want to use "##something". + // READ THE FAQ: https://dearimgui.com/faq + IM_ASSERT(id != window->ID && "Cannot have an empty ID at the root of a window. If you need an empty label, use ## and read the FAQ about how the ID Stack works!"); + } + //if (g.IO.KeyAlt) window->DrawList->AddRect(bb.Min, bb.Max, IM_COL32(255,255,0,120)); // [DEBUG] + //if ((g.LastItemData.InFlags & ImGuiItemFlags_NoNav) == 0) + // window->DrawList->AddRect(g.LastItemData.NavRect.Min, g.LastItemData.NavRect.Max, IM_COL32(255,255,0,255)); // [DEBUG] +#endif + + // We need to calculate this now to take account of the current clipping rectangle (as items like Selectable may change them) + if (is_rect_visible) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Visible; + if (IsMouseHoveringRect(bb.Min, bb.Max)) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredRect; + return true; +} +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] LAYOUT +//----------------------------------------------------------------------------- +// - ItemSize() +// - SameLine() +// - GetCursorScreenPos() +// - SetCursorScreenPos() +// - GetCursorPos(), GetCursorPosX(), GetCursorPosY() +// - SetCursorPos(), SetCursorPosX(), SetCursorPosY() +// - GetCursorStartPos() +// - Indent() +// - Unindent() +// - SetNextItemWidth() +// - PushItemWidth() +// - PushMultiItemsWidths() +// - PopItemWidth() +// - CalcItemWidth() +// - CalcItemSize() +// - GetTextLineHeight() +// - GetTextLineHeightWithSpacing() +// - GetFrameHeight() +// - GetFrameHeightWithSpacing() +// - GetContentRegionMax() +// - GetContentRegionAvail(), +// - BeginGroup() +// - EndGroup() +// Also see in imgui_widgets: tab bars, and in imgui_tables: tables, columns. +//----------------------------------------------------------------------------- + +// Advance cursor given item size for layout. +// Register minimum needed size so it can extend the bounding box used for auto-fit calculation. +// See comments in ItemAdd() about how/why the size provided to ItemSize() vs ItemAdd() may often different. +// THIS IS IN THE PERFORMANCE CRITICAL PATH. +IM_MSVC_RUNTIME_CHECKS_OFF +void ImGui::ItemSize(const ImVec2& size, float text_baseline_y) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + // We increase the height in this function to accommodate for baseline offset. + // In theory we should be offsetting the starting position (window->DC.CursorPos), that will be the topic of a larger refactor, + // but since ItemSize() is not yet an API that moves the cursor (to handle e.g. wrapping) enlarging the height has the same effect. + const float offset_to_match_baseline_y = (text_baseline_y >= 0) ? ImMax(0.0f, window->DC.CurrLineTextBaseOffset - text_baseline_y) : 0.0f; + + const float line_y1 = window->DC.IsSameLine ? window->DC.CursorPosPrevLine.y : window->DC.CursorPos.y; + const float line_height = ImMax(window->DC.CurrLineSize.y, /*ImMax(*/window->DC.CursorPos.y - line_y1/*, 0.0f)*/ + size.y + offset_to_match_baseline_y); + + // Always align ourselves on pixel boundaries + //if (g.IO.KeyAlt) window->DrawList->AddRect(window->DC.CursorPos, window->DC.CursorPos + ImVec2(size.x, line_height), IM_COL32(255,0,0,200)); // [DEBUG] + window->DC.CursorPosPrevLine.x = window->DC.CursorPos.x + size.x; + window->DC.CursorPosPrevLine.y = line_y1; + window->DC.CursorPos.x = IM_TRUNC(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); // Next line + window->DC.CursorPos.y = IM_TRUNC(line_y1 + line_height + g.Style.ItemSpacing.y); // Next line + window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPosPrevLine.x); + window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y - g.Style.ItemSpacing.y); + //if (g.IO.KeyAlt) window->DrawList->AddCircle(window->DC.CursorMaxPos, 3.0f, IM_COL32(255,0,0,255), 4); // [DEBUG] + + window->DC.PrevLineSize.y = line_height; + window->DC.CurrLineSize.y = 0.0f; + window->DC.PrevLineTextBaseOffset = ImMax(window->DC.CurrLineTextBaseOffset, text_baseline_y); + window->DC.CurrLineTextBaseOffset = 0.0f; + window->DC.IsSameLine = window->DC.IsSetPos = false; + + // Horizontal layout mode + if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) + SameLine(); +} +IM_MSVC_RUNTIME_CHECKS_RESTORE + +// Gets back to previous line and continue with horizontal layout +// offset_from_start_x == 0 : follow right after previous item +// offset_from_start_x != 0 : align to specified x position (relative to window/group left) +// spacing_w < 0 : use default spacing if offset_from_start_x == 0, no spacing if offset_from_start_x != 0 +// spacing_w >= 0 : enforce spacing amount +void ImGui::SameLine(float offset_from_start_x, float spacing_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + if (offset_from_start_x != 0.0f) + { + if (spacing_w < 0.0f) + spacing_w = 0.0f; + window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + offset_from_start_x + spacing_w + window->DC.GroupOffset.x + window->DC.ColumnsOffset.x; + window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y; + } + else + { + if (spacing_w < 0.0f) + spacing_w = g.Style.ItemSpacing.x; + window->DC.CursorPos.x = window->DC.CursorPosPrevLine.x + spacing_w; + window->DC.CursorPos.y = window->DC.CursorPosPrevLine.y; + } + window->DC.CurrLineSize = window->DC.PrevLineSize; + window->DC.CurrLineTextBaseOffset = window->DC.PrevLineTextBaseOffset; + window->DC.IsSameLine = true; +} + +ImVec2 ImGui::GetCursorScreenPos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos; +} + +void ImGui::SetCursorScreenPos(const ImVec2& pos) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos = pos; + //window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); + window->DC.IsSetPos = true; +} + +// User generally sees positions in window coordinates. Internally we store CursorPos in absolute screen coordinates because it is more convenient. +// Conversion happens as we pass the value to user, but it makes our naming convention confusing because GetCursorPos() == (DC.CursorPos - window.Pos). May want to rename 'DC.CursorPos'. +ImVec2 ImGui::GetCursorPos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos - window->Pos + window->Scroll; +} + +float ImGui::GetCursorPosX() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos.x - window->Pos.x + window->Scroll.x; +} + +float ImGui::GetCursorPosY() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorPos.y - window->Pos.y + window->Scroll.y; +} + +void ImGui::SetCursorPos(const ImVec2& local_pos) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos = window->Pos - window->Scroll + local_pos; + //window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, window->DC.CursorPos); + window->DC.IsSetPos = true; +} + +void ImGui::SetCursorPosX(float x) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos.x = window->Pos.x - window->Scroll.x + x; + //window->DC.CursorMaxPos.x = ImMax(window->DC.CursorMaxPos.x, window->DC.CursorPos.x); + window->DC.IsSetPos = true; +} + +void ImGui::SetCursorPosY(float y) +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.CursorPos.y = window->Pos.y - window->Scroll.y + y; + //window->DC.CursorMaxPos.y = ImMax(window->DC.CursorMaxPos.y, window->DC.CursorPos.y); + window->DC.IsSetPos = true; +} + +ImVec2 ImGui::GetCursorStartPos() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CursorStartPos - window->Pos; +} + +void ImGui::Indent(float indent_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; + window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x; +} + +void ImGui::Unindent(float indent_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; + window->DC.CursorPos.x = window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x; +} + +// Affect large frame+labels widgets only. +void ImGui::SetNextItemWidth(float item_width) +{ + ImGuiContext& g = *GImGui; + g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasWidth; + g.NextItemData.Width = item_width; +} + +// FIXME: Remove the == 0.0f behavior? +void ImGui::PushItemWidth(float item_width) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); // Backup current width + window->DC.ItemWidth = (item_width == 0.0f ? window->ItemWidthDefault : item_width); + g.NextItemData.Flags &= ~ImGuiNextItemDataFlags_HasWidth; +} + +void ImGui::PushMultiItemsWidths(int components, float w_full) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(components > 0); + const ImGuiStyle& style = g.Style; + window->DC.ItemWidthStack.push_back(window->DC.ItemWidth); // Backup current width + float w_items = w_full - style.ItemInnerSpacing.x * (components - 1); + float prev_split = w_items; + for (int i = components - 1; i > 0; i--) + { + float next_split = IM_TRUNC(w_items * i / components); + window->DC.ItemWidthStack.push_back(ImMax(prev_split - next_split, 1.0f)); + prev_split = next_split; + } + window->DC.ItemWidth = ImMax(prev_split, 1.0f); + g.NextItemData.Flags &= ~ImGuiNextItemDataFlags_HasWidth; +} + +void ImGui::PopItemWidth() +{ + ImGuiWindow* window = GetCurrentWindow(); + window->DC.ItemWidth = window->DC.ItemWidthStack.back(); + window->DC.ItemWidthStack.pop_back(); +} + +// Calculate default item width given value passed to PushItemWidth() or SetNextItemWidth(). +// The SetNextItemWidth() data is generally cleared/consumed by ItemAdd() or NextItemData.ClearFlags() +float ImGui::CalcItemWidth() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float w; + if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasWidth) + w = g.NextItemData.Width; + else + w = window->DC.ItemWidth; + if (w < 0.0f) + { + float region_avail_x = GetContentRegionAvail().x; + w = ImMax(1.0f, region_avail_x + w); + } + w = IM_TRUNC(w); + return w; +} + +// [Internal] Calculate full item size given user provided 'size' parameter and default width/height. Default width is often == CalcItemWidth(). +// Those two functions CalcItemWidth vs CalcItemSize are awkwardly named because they are not fully symmetrical. +// Note that only CalcItemWidth() is publicly exposed. +// The 4.0f here may be changed to match CalcItemWidth() and/or BeginChild() (right now we have a mismatch which is harmless but undesirable) +ImVec2 ImGui::CalcItemSize(ImVec2 size, float default_w, float default_h) +{ + ImVec2 avail; + if (size.x < 0.0f || size.y < 0.0f) + avail = GetContentRegionAvail(); + + if (size.x == 0.0f) + size.x = default_w; + else if (size.x < 0.0f) + size.x = ImMax(4.0f, avail.x + size.x); // <-- size.x is negative here so we are subtracting + + if (size.y == 0.0f) + size.y = default_h; + else if (size.y < 0.0f) + size.y = ImMax(4.0f, avail.y + size.y); // <-- size.y is negative here so we are subtracting + + return size; +} + +float ImGui::GetTextLineHeight() +{ + ImGuiContext& g = *GImGui; + return g.FontSize; +} + +float ImGui::GetTextLineHeightWithSpacing() +{ + ImGuiContext& g = *GImGui; + return g.FontSize + g.Style.ItemSpacing.y; +} + +float ImGui::GetFrameHeight() +{ + ImGuiContext& g = *GImGui; + return g.FontSize + g.Style.FramePadding.y * 2.0f; +} + +float ImGui::GetFrameHeightWithSpacing() +{ + ImGuiContext& g = *GImGui; + return g.FontSize + g.Style.FramePadding.y * 2.0f + g.Style.ItemSpacing.y; +} + +ImVec2 ImGui::GetContentRegionAvail() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 mx = (window->DC.CurrentColumns || g.CurrentTable) ? window->WorkRect.Max : window->ContentRegionRect.Max; + return mx - window->DC.CursorPos; +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + +// You should never need those functions. Always use GetCursorScreenPos() and GetContentRegionAvail()! +// They are bizarre local-coordinates which don't play well with scrolling. +ImVec2 ImGui::GetContentRegionMax() +{ + return GetContentRegionAvail() + GetCursorScreenPos() - GetWindowPos(); +} + +ImVec2 ImGui::GetWindowContentRegionMin() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ContentRegionRect.Min - window->Pos; +} + +ImVec2 ImGui::GetWindowContentRegionMax() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ContentRegionRect.Max - window->Pos; +} +#endif + +// Lock horizontal starting position + capture group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.) +// Groups are currently a mishmash of functionalities which should perhaps be clarified and separated. +// FIXME-OPT: Could we safely early out on ->SkipItems? +void ImGui::BeginGroup() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + g.GroupStack.resize(g.GroupStack.Size + 1); + ImGuiGroupData& group_data = g.GroupStack.back(); + group_data.WindowID = window->ID; + group_data.BackupCursorPos = window->DC.CursorPos; + group_data.BackupCursorPosPrevLine = window->DC.CursorPosPrevLine; + group_data.BackupCursorMaxPos = window->DC.CursorMaxPos; + group_data.BackupIndent = window->DC.Indent; + group_data.BackupGroupOffset = window->DC.GroupOffset; + group_data.BackupCurrLineSize = window->DC.CurrLineSize; + group_data.BackupCurrLineTextBaseOffset = window->DC.CurrLineTextBaseOffset; + group_data.BackupActiveIdIsAlive = g.ActiveIdIsAlive; + group_data.BackupHoveredIdIsAlive = g.HoveredId != 0; + group_data.BackupIsSameLine = window->DC.IsSameLine; + group_data.BackupActiveIdPreviousFrameIsAlive = g.ActiveIdPreviousFrameIsAlive; + group_data.EmitItem = true; + + window->DC.GroupOffset.x = window->DC.CursorPos.x - window->Pos.x - window->DC.ColumnsOffset.x; + window->DC.Indent = window->DC.GroupOffset; + window->DC.CursorMaxPos = window->DC.CursorPos; + window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); + if (g.LogEnabled) + g.LogLinePosY = -FLT_MAX; // To enforce a carriage return +} + +void ImGui::EndGroup() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(g.GroupStack.Size > 0); // Mismatched BeginGroup()/EndGroup() calls + + ImGuiGroupData& group_data = g.GroupStack.back(); + IM_ASSERT(group_data.WindowID == window->ID); // EndGroup() in wrong window? + + if (window->DC.IsSetPos) + ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + // Include LastItemData.Rect.Max as a workaround for e.g. EndTable() undershooting with CursorMaxPos report. (#7543) + ImRect group_bb(group_data.BackupCursorPos, ImMax(ImMax(window->DC.CursorMaxPos, g.LastItemData.Rect.Max), group_data.BackupCursorPos)); + window->DC.CursorPos = group_data.BackupCursorPos; + window->DC.CursorPosPrevLine = group_data.BackupCursorPosPrevLine; + window->DC.CursorMaxPos = ImMax(group_data.BackupCursorMaxPos, group_bb.Max); + window->DC.Indent = group_data.BackupIndent; + window->DC.GroupOffset = group_data.BackupGroupOffset; + window->DC.CurrLineSize = group_data.BackupCurrLineSize; + window->DC.CurrLineTextBaseOffset = group_data.BackupCurrLineTextBaseOffset; + window->DC.IsSameLine = group_data.BackupIsSameLine; + if (g.LogEnabled) + g.LogLinePosY = -FLT_MAX; // To enforce a carriage return + + if (!group_data.EmitItem) + { + g.GroupStack.pop_back(); + return; + } + + window->DC.CurrLineTextBaseOffset = ImMax(window->DC.PrevLineTextBaseOffset, group_data.BackupCurrLineTextBaseOffset); // FIXME: Incorrect, we should grab the base offset from the *first line* of the group but it is hard to obtain now. + ItemSize(group_bb.GetSize()); + ItemAdd(group_bb, 0, NULL, ImGuiItemFlags_NoTabStop); + + // If the current ActiveId was declared within the boundary of our group, we copy it to LastItemId so IsItemActive(), IsItemDeactivated() etc. will be functional on the entire group. + // It would be neater if we replaced window.DC.LastItemId by e.g. 'bool LastItemIsActive', but would put a little more burden on individual widgets. + // Also if you grep for LastItemId you'll notice it is only used in that context. + // (The two tests not the same because ActiveIdIsAlive is an ID itself, in order to be able to handle ActiveId being overwritten during the frame.) + const bool group_contains_curr_active_id = (group_data.BackupActiveIdIsAlive != g.ActiveId) && (g.ActiveIdIsAlive == g.ActiveId) && g.ActiveId; + const bool group_contains_prev_active_id = (group_data.BackupActiveIdPreviousFrameIsAlive == false) && (g.ActiveIdPreviousFrameIsAlive == true); + if (group_contains_curr_active_id) + g.LastItemData.ID = g.ActiveId; + else if (group_contains_prev_active_id) + g.LastItemData.ID = g.ActiveIdPreviousFrame; + g.LastItemData.Rect = group_bb; + + // Forward Hovered flag + const bool group_contains_curr_hovered_id = (group_data.BackupHoveredIdIsAlive == false) && g.HoveredId != 0; + if (group_contains_curr_hovered_id) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + + // Forward Edited flag + if (group_contains_curr_active_id && g.ActiveIdHasBeenEditedThisFrame) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Edited; + + // Forward Deactivated flag + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasDeactivated; + if (group_contains_prev_active_id && g.ActiveId != g.ActiveIdPreviousFrame) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_Deactivated; + + g.GroupStack.pop_back(); + if (g.DebugShowGroupRects) + window->DrawList->AddRect(group_bb.Min, group_bb.Max, IM_COL32(255,0,255,255)); // [Debug] +} + + +//----------------------------------------------------------------------------- +// [SECTION] SCROLLING +//----------------------------------------------------------------------------- + +// Helper to snap on edges when aiming at an item very close to the edge, +// So the difference between WindowPadding and ItemSpacing will be in the visible area after scrolling. +// When we refactor the scrolling API this may be configurable with a flag? +// Note that the effect for this won't be visible on X axis with default Style settings as WindowPadding.x == ItemSpacing.x by default. +static float CalcScrollEdgeSnap(float target, float snap_min, float snap_max, float snap_threshold, float center_ratio) +{ + if (target <= snap_min + snap_threshold) + return ImLerp(snap_min, target, center_ratio); + if (target >= snap_max - snap_threshold) + return ImLerp(target, snap_max, center_ratio); + return target; +} + +static ImVec2 CalcNextScrollFromScrollTargetAndClamp(ImGuiWindow* window) +{ + ImVec2 scroll = window->Scroll; + ImVec2 decoration_size(window->DecoOuterSizeX1 + window->DecoInnerSizeX1 + window->DecoOuterSizeX2, window->DecoOuterSizeY1 + window->DecoInnerSizeY1 + window->DecoOuterSizeY2); + for (int axis = 0; axis < 2; axis++) + { + if (window->ScrollTarget[axis] < FLT_MAX) + { + float center_ratio = window->ScrollTargetCenterRatio[axis]; + float scroll_target = window->ScrollTarget[axis]; + if (window->ScrollTargetEdgeSnapDist[axis] > 0.0f) + { + float snap_min = 0.0f; + float snap_max = window->ScrollMax[axis] + window->SizeFull[axis] - decoration_size[axis]; + scroll_target = CalcScrollEdgeSnap(scroll_target, snap_min, snap_max, window->ScrollTargetEdgeSnapDist[axis], center_ratio); + } + scroll[axis] = scroll_target - center_ratio * (window->SizeFull[axis] - decoration_size[axis]); + } + scroll[axis] = IM_ROUND(ImMax(scroll[axis], 0.0f)); + if (!window->Collapsed && !window->SkipItems) + scroll[axis] = ImMin(scroll[axis], window->ScrollMax[axis]); + } + return scroll; +} + +void ImGui::ScrollToItem(ImGuiScrollFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ScrollToRectEx(window, g.LastItemData.NavRect, flags); +} + +void ImGui::ScrollToRect(ImGuiWindow* window, const ImRect& item_rect, ImGuiScrollFlags flags) +{ + ScrollToRectEx(window, item_rect, flags); +} + +// Scroll to keep newly navigated item fully into view +ImVec2 ImGui::ScrollToRectEx(ImGuiWindow* window, const ImRect& item_rect, ImGuiScrollFlags flags) +{ + ImGuiContext& g = *GImGui; + ImRect scroll_rect(window->InnerRect.Min - ImVec2(1, 1), window->InnerRect.Max + ImVec2(1, 1)); + scroll_rect.Min.x = ImMin(scroll_rect.Min.x + window->DecoInnerSizeX1, scroll_rect.Max.x); + scroll_rect.Min.y = ImMin(scroll_rect.Min.y + window->DecoInnerSizeY1, scroll_rect.Max.y); + //GetForegroundDrawList(window)->AddRect(item_rect.Min, item_rect.Max, IM_COL32(255,0,0,255), 0.0f, 0, 5.0f); // [DEBUG] + //GetForegroundDrawList(window)->AddRect(scroll_rect.Min, scroll_rect.Max, IM_COL32_WHITE); // [DEBUG] + + // Check that only one behavior is selected per axis + IM_ASSERT((flags & ImGuiScrollFlags_MaskX_) == 0 || ImIsPowerOfTwo(flags & ImGuiScrollFlags_MaskX_)); + IM_ASSERT((flags & ImGuiScrollFlags_MaskY_) == 0 || ImIsPowerOfTwo(flags & ImGuiScrollFlags_MaskY_)); + + // Defaults + ImGuiScrollFlags in_flags = flags; + if ((flags & ImGuiScrollFlags_MaskX_) == 0 && window->ScrollbarX) + flags |= ImGuiScrollFlags_KeepVisibleEdgeX; + if ((flags & ImGuiScrollFlags_MaskY_) == 0) + flags |= window->Appearing ? ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeY; + + const bool fully_visible_x = item_rect.Min.x >= scroll_rect.Min.x && item_rect.Max.x <= scroll_rect.Max.x; + const bool fully_visible_y = item_rect.Min.y >= scroll_rect.Min.y && item_rect.Max.y <= scroll_rect.Max.y; + const bool can_be_fully_visible_x = (item_rect.GetWidth() + g.Style.ItemSpacing.x * 2.0f) <= scroll_rect.GetWidth() || (window->AutoFitFramesX > 0) || (window->Flags & ImGuiWindowFlags_AlwaysAutoResize) != 0; + const bool can_be_fully_visible_y = (item_rect.GetHeight() + g.Style.ItemSpacing.y * 2.0f) <= scroll_rect.GetHeight() || (window->AutoFitFramesY > 0) || (window->Flags & ImGuiWindowFlags_AlwaysAutoResize) != 0; + + if ((flags & ImGuiScrollFlags_KeepVisibleEdgeX) && !fully_visible_x) + { + if (item_rect.Min.x < scroll_rect.Min.x || !can_be_fully_visible_x) + SetScrollFromPosX(window, item_rect.Min.x - g.Style.ItemSpacing.x - window->Pos.x, 0.0f); + else if (item_rect.Max.x >= scroll_rect.Max.x) + SetScrollFromPosX(window, item_rect.Max.x + g.Style.ItemSpacing.x - window->Pos.x, 1.0f); + } + else if (((flags & ImGuiScrollFlags_KeepVisibleCenterX) && !fully_visible_x) || (flags & ImGuiScrollFlags_AlwaysCenterX)) + { + if (can_be_fully_visible_x) + SetScrollFromPosX(window, ImTrunc((item_rect.Min.x + item_rect.Max.x) * 0.5f) - window->Pos.x, 0.5f); + else + SetScrollFromPosX(window, item_rect.Min.x - window->Pos.x, 0.0f); + } + + if ((flags & ImGuiScrollFlags_KeepVisibleEdgeY) && !fully_visible_y) + { + if (item_rect.Min.y < scroll_rect.Min.y || !can_be_fully_visible_y) + SetScrollFromPosY(window, item_rect.Min.y - g.Style.ItemSpacing.y - window->Pos.y, 0.0f); + else if (item_rect.Max.y >= scroll_rect.Max.y) + SetScrollFromPosY(window, item_rect.Max.y + g.Style.ItemSpacing.y - window->Pos.y, 1.0f); + } + else if (((flags & ImGuiScrollFlags_KeepVisibleCenterY) && !fully_visible_y) || (flags & ImGuiScrollFlags_AlwaysCenterY)) + { + if (can_be_fully_visible_y) + SetScrollFromPosY(window, ImTrunc((item_rect.Min.y + item_rect.Max.y) * 0.5f) - window->Pos.y, 0.5f); + else + SetScrollFromPosY(window, item_rect.Min.y - window->Pos.y, 0.0f); + } + + ImVec2 next_scroll = CalcNextScrollFromScrollTargetAndClamp(window); + ImVec2 delta_scroll = next_scroll - window->Scroll; + + // Also scroll parent window to keep us into view if necessary + if (!(flags & ImGuiScrollFlags_NoScrollParent) && (window->Flags & ImGuiWindowFlags_ChildWindow)) + { + // FIXME-SCROLL: May be an option? + if ((in_flags & (ImGuiScrollFlags_AlwaysCenterX | ImGuiScrollFlags_KeepVisibleCenterX)) != 0) + in_flags = (in_flags & ~ImGuiScrollFlags_MaskX_) | ImGuiScrollFlags_KeepVisibleEdgeX; + if ((in_flags & (ImGuiScrollFlags_AlwaysCenterY | ImGuiScrollFlags_KeepVisibleCenterY)) != 0) + in_flags = (in_flags & ~ImGuiScrollFlags_MaskY_) | ImGuiScrollFlags_KeepVisibleEdgeY; + delta_scroll += ScrollToRectEx(window->ParentWindow, ImRect(item_rect.Min - delta_scroll, item_rect.Max - delta_scroll), in_flags); + } + + return delta_scroll; +} + +float ImGui::GetScrollX() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Scroll.x; +} + +float ImGui::GetScrollY() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->Scroll.y; +} + +float ImGui::GetScrollMaxX() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ScrollMax.x; +} + +float ImGui::GetScrollMaxY() +{ + ImGuiWindow* window = GImGui->CurrentWindow; + return window->ScrollMax.y; +} + +void ImGui::SetScrollX(ImGuiWindow* window, float scroll_x) +{ + window->ScrollTarget.x = scroll_x; + window->ScrollTargetCenterRatio.x = 0.0f; + window->ScrollTargetEdgeSnapDist.x = 0.0f; +} + +void ImGui::SetScrollY(ImGuiWindow* window, float scroll_y) +{ + window->ScrollTarget.y = scroll_y; + window->ScrollTargetCenterRatio.y = 0.0f; + window->ScrollTargetEdgeSnapDist.y = 0.0f; +} + +void ImGui::SetScrollX(float scroll_x) +{ + ImGuiContext& g = *GImGui; + SetScrollX(g.CurrentWindow, scroll_x); +} + +void ImGui::SetScrollY(float scroll_y) +{ + ImGuiContext& g = *GImGui; + SetScrollY(g.CurrentWindow, scroll_y); +} + +// Note that a local position will vary depending on initial scroll value, +// This is a little bit confusing so bear with us: +// - local_pos = (absolution_pos - window->Pos) +// - So local_x/local_y are 0.0f for a position at the upper-left corner of a window, +// and generally local_x/local_y are >(padding+decoration) && <(size-padding-decoration) when in the visible area. +// - They mostly exist because of legacy API. +// Following the rules above, when trying to work with scrolling code, consider that: +// - SetScrollFromPosY(0.0f) == SetScrollY(0.0f + scroll.y) == has no effect! +// - SetScrollFromPosY(-scroll.y) == SetScrollY(-scroll.y + scroll.y) == SetScrollY(0.0f) == reset scroll. Of course writing SetScrollY(0.0f) directly then makes more sense +// We store a target position so centering and clamping can occur on the next frame when we are guaranteed to have a known window size +void ImGui::SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio) +{ + IM_ASSERT(center_x_ratio >= 0.0f && center_x_ratio <= 1.0f); + window->ScrollTarget.x = IM_TRUNC(local_x - window->DecoOuterSizeX1 - window->DecoInnerSizeX1 + window->Scroll.x); // Convert local position to scroll offset + window->ScrollTargetCenterRatio.x = center_x_ratio; + window->ScrollTargetEdgeSnapDist.x = 0.0f; +} + +void ImGui::SetScrollFromPosY(ImGuiWindow* window, float local_y, float center_y_ratio) +{ + IM_ASSERT(center_y_ratio >= 0.0f && center_y_ratio <= 1.0f); + window->ScrollTarget.y = IM_TRUNC(local_y - window->DecoOuterSizeY1 - window->DecoInnerSizeY1 + window->Scroll.y); // Convert local position to scroll offset + window->ScrollTargetCenterRatio.y = center_y_ratio; + window->ScrollTargetEdgeSnapDist.y = 0.0f; +} + +void ImGui::SetScrollFromPosX(float local_x, float center_x_ratio) +{ + ImGuiContext& g = *GImGui; + SetScrollFromPosX(g.CurrentWindow, local_x, center_x_ratio); +} + +void ImGui::SetScrollFromPosY(float local_y, float center_y_ratio) +{ + ImGuiContext& g = *GImGui; + SetScrollFromPosY(g.CurrentWindow, local_y, center_y_ratio); +} + +// center_x_ratio: 0.0f left of last item, 0.5f horizontal center of last item, 1.0f right of last item. +void ImGui::SetScrollHereX(float center_x_ratio) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float spacing_x = ImMax(window->WindowPadding.x, g.Style.ItemSpacing.x); + float target_pos_x = ImLerp(g.LastItemData.Rect.Min.x - spacing_x, g.LastItemData.Rect.Max.x + spacing_x, center_x_ratio); + SetScrollFromPosX(window, target_pos_x - window->Pos.x, center_x_ratio); // Convert from absolute to local pos + + // Tweak: snap on edges when aiming at an item very close to the edge + window->ScrollTargetEdgeSnapDist.x = ImMax(0.0f, window->WindowPadding.x - spacing_x); +} + +// center_y_ratio: 0.0f top of last item, 0.5f vertical center of last item, 1.0f bottom of last item. +void ImGui::SetScrollHereY(float center_y_ratio) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float spacing_y = ImMax(window->WindowPadding.y, g.Style.ItemSpacing.y); + float target_pos_y = ImLerp(window->DC.CursorPosPrevLine.y - spacing_y, window->DC.CursorPosPrevLine.y + window->DC.PrevLineSize.y + spacing_y, center_y_ratio); + SetScrollFromPosY(window, target_pos_y - window->Pos.y, center_y_ratio); // Convert from absolute to local pos + + // Tweak: snap on edges when aiming at an item very close to the edge + window->ScrollTargetEdgeSnapDist.y = ImMax(0.0f, window->WindowPadding.y - spacing_y); +} + +//----------------------------------------------------------------------------- +// [SECTION] TOOLTIPS +//----------------------------------------------------------------------------- + +bool ImGui::BeginTooltip() +{ + return BeginTooltipEx(ImGuiTooltipFlags_None, ImGuiWindowFlags_None); +} + +bool ImGui::BeginItemTooltip() +{ + if (!IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + return false; + return BeginTooltipEx(ImGuiTooltipFlags_None, ImGuiWindowFlags_None); +} + +bool ImGui::BeginTooltipEx(ImGuiTooltipFlags tooltip_flags, ImGuiWindowFlags extra_window_flags) +{ + ImGuiContext& g = *GImGui; + + if (g.DragDropWithinSource || g.DragDropWithinTarget) + { + // Drag and Drop tooltips are positioning differently than other tooltips: + // - offset visibility to increase visibility around mouse. + // - never clamp within outer viewport boundary. + // We call SetNextWindowPos() to enforce position and disable clamping. + // See FindBestWindowPosForPopup() for positionning logic of other tooltips (not drag and drop ones). + //ImVec2 tooltip_pos = g.IO.MousePos - g.ActiveIdClickOffset - g.Style.WindowPadding; + ImVec2 tooltip_pos = g.IO.MousePos + TOOLTIP_DEFAULT_OFFSET * g.Style.MouseCursorScale; + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) == 0) + SetNextWindowPos(tooltip_pos); + SetNextWindowBgAlpha(g.Style.Colors[ImGuiCol_PopupBg].w * 0.60f); + //PushStyleVar(ImGuiStyleVar_Alpha, g.Style.Alpha * 0.60f); // This would be nice but e.g ColorButton with checkboard has issue with transparent colors :( + tooltip_flags |= ImGuiTooltipFlags_OverridePrevious; + } + + char window_name[16]; + ImFormatString(window_name, IM_ARRAYSIZE(window_name), "##Tooltip_%02d", g.TooltipOverrideCount); + if (tooltip_flags & ImGuiTooltipFlags_OverridePrevious) + if (ImGuiWindow* window = FindWindowByName(window_name)) + if (window->Active) + { + // Hide previous tooltip from being displayed. We can't easily "reset" the content of a window so we create a new one. + SetWindowHiddenAndSkipItemsForCurrentFrame(window); + ImFormatString(window_name, IM_ARRAYSIZE(window_name), "##Tooltip_%02d", ++g.TooltipOverrideCount); + } + ImGuiWindowFlags flags = ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_AlwaysAutoResize; + Begin(window_name, NULL, flags | extra_window_flags); + // 2023-03-09: Added bool return value to the API, but currently always returning true. + // If this ever returns false we need to update BeginDragDropSource() accordingly. + //if (!ret) + // End(); + //return ret; + return true; +} + +void ImGui::EndTooltip() +{ + IM_ASSERT(GetCurrentWindowRead()->Flags & ImGuiWindowFlags_Tooltip); // Mismatched BeginTooltip()/EndTooltip() calls + End(); +} + +void ImGui::SetTooltip(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + SetTooltipV(fmt, args); + va_end(args); +} + +void ImGui::SetTooltipV(const char* fmt, va_list args) +{ + if (!BeginTooltipEx(ImGuiTooltipFlags_OverridePrevious, ImGuiWindowFlags_None)) + return; + TextV(fmt, args); + EndTooltip(); +} + +// Shortcut to use 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav'. +// Defaults to == ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort when using the mouse. +void ImGui::SetItemTooltip(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + if (IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + SetTooltipV(fmt, args); + va_end(args); +} + +void ImGui::SetItemTooltipV(const char* fmt, va_list args) +{ + if (IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + SetTooltipV(fmt, args); +} + + +//----------------------------------------------------------------------------- +// [SECTION] POPUPS +//----------------------------------------------------------------------------- + +// Supported flags: ImGuiPopupFlags_AnyPopupId, ImGuiPopupFlags_AnyPopupLevel +bool ImGui::IsPopupOpen(ImGuiID id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + if (popup_flags & ImGuiPopupFlags_AnyPopupId) + { + // Return true if any popup is open at the current BeginPopup() level of the popup stack + // This may be used to e.g. test for another popups already opened to handle popups priorities at the same level. + IM_ASSERT(id == 0); + if (popup_flags & ImGuiPopupFlags_AnyPopupLevel) + return g.OpenPopupStack.Size > 0; + else + return g.OpenPopupStack.Size > g.BeginPopupStack.Size; + } + else + { + if (popup_flags & ImGuiPopupFlags_AnyPopupLevel) + { + // Return true if the popup is open anywhere in the popup stack + for (int n = 0; n < g.OpenPopupStack.Size; n++) + if (g.OpenPopupStack[n].PopupId == id) + return true; + return false; + } + else + { + // Return true if the popup is open at the current BeginPopup() level of the popup stack (this is the most-common query) + return g.OpenPopupStack.Size > g.BeginPopupStack.Size && g.OpenPopupStack[g.BeginPopupStack.Size].PopupId == id; + } + } +} + +bool ImGui::IsPopupOpen(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiID id = (popup_flags & ImGuiPopupFlags_AnyPopupId) ? 0 : g.CurrentWindow->GetID(str_id); + if ((popup_flags & ImGuiPopupFlags_AnyPopupLevel) && id != 0) + IM_ASSERT(0 && "Cannot use IsPopupOpen() with a string id and ImGuiPopupFlags_AnyPopupLevel."); // But non-string version is legal and used internally + return IsPopupOpen(id, popup_flags); +} + +// Also see FindBlockingModal(NULL) +ImGuiWindow* ImGui::GetTopMostPopupModal() +{ + ImGuiContext& g = *GImGui; + for (int n = g.OpenPopupStack.Size - 1; n >= 0; n--) + if (ImGuiWindow* popup = g.OpenPopupStack.Data[n].Window) + if (popup->Flags & ImGuiWindowFlags_Modal) + return popup; + return NULL; +} + +// See Demo->Stacked Modal to confirm what this is for. +ImGuiWindow* ImGui::GetTopMostAndVisiblePopupModal() +{ + ImGuiContext& g = *GImGui; + for (int n = g.OpenPopupStack.Size - 1; n >= 0; n--) + if (ImGuiWindow* popup = g.OpenPopupStack.Data[n].Window) + if ((popup->Flags & ImGuiWindowFlags_Modal) && IsWindowActiveAndVisible(popup)) + return popup; + return NULL; +} + +void ImGui::OpenPopup(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiID id = g.CurrentWindow->GetID(str_id); + IMGUI_DEBUG_LOG_POPUP("[popup] OpenPopup(\"%s\" -> 0x%08X)\n", str_id, id); + OpenPopupEx(id, popup_flags); +} + +void ImGui::OpenPopup(ImGuiID id, ImGuiPopupFlags popup_flags) +{ + OpenPopupEx(id, popup_flags); +} + +// Mark popup as open (toggle toward open state). +// Popups are closed when user click outside, or activate a pressable item, or CloseCurrentPopup() is called within a BeginPopup()/EndPopup() block. +// Popup identifiers are relative to the current ID-stack (so OpenPopup and BeginPopup needs to be at the same level). +// One open popup per level of the popup hierarchy (NB: when assigning we reset the Window member of ImGuiPopupRef to NULL) +void ImGui::OpenPopupEx(ImGuiID id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* parent_window = g.CurrentWindow; + const int current_stack_size = g.BeginPopupStack.Size; + + if (popup_flags & ImGuiPopupFlags_NoOpenOverExistingPopup) + if (IsPopupOpen((ImGuiID)0, ImGuiPopupFlags_AnyPopupId)) + return; + + ImGuiPopupData popup_ref; // Tagged as new ref as Window will be set back to NULL if we write this into OpenPopupStack. + popup_ref.PopupId = id; + popup_ref.Window = NULL; + popup_ref.RestoreNavWindow = g.NavWindow; // When popup closes focus may be restored to NavWindow (depend on window type). + popup_ref.OpenFrameCount = g.FrameCount; + popup_ref.OpenParentId = parent_window->IDStack.back(); + popup_ref.OpenPopupPos = NavCalcPreferredRefPos(); + popup_ref.OpenMousePos = IsMousePosValid(&g.IO.MousePos) ? g.IO.MousePos : popup_ref.OpenPopupPos; + + IMGUI_DEBUG_LOG_POPUP("[popup] OpenPopupEx(0x%08X)\n", id); + if (g.OpenPopupStack.Size < current_stack_size + 1) + { + g.OpenPopupStack.push_back(popup_ref); + } + else + { + // Gently handle the user mistakenly calling OpenPopup() every frames: it is likely a programming mistake! + // However, if we were to run the regular code path, the ui would become completely unusable because the popup will always be + // in hidden-while-calculating-size state _while_ claiming focus. Which is extremely confusing situation for the programmer. + // Instead, for successive frames calls to OpenPopup(), we silently avoid reopening even if ImGuiPopupFlags_NoReopen is not specified. + bool keep_existing = false; + if (g.OpenPopupStack[current_stack_size].PopupId == id) + if ((g.OpenPopupStack[current_stack_size].OpenFrameCount == g.FrameCount - 1) || (popup_flags & ImGuiPopupFlags_NoReopen)) + keep_existing = true; + if (keep_existing) + { + // No reopen + g.OpenPopupStack[current_stack_size].OpenFrameCount = popup_ref.OpenFrameCount; + } + else + { + // Reopen: close child popups if any, then flag popup for open/reopen (set position, focus, init navigation) + ClosePopupToLevel(current_stack_size, true); + g.OpenPopupStack.push_back(popup_ref); + } + + // When reopening a popup we first refocus its parent, otherwise if its parent is itself a popup it would get closed by ClosePopupsOverWindow(). + // This is equivalent to what ClosePopupToLevel() does. + //if (g.OpenPopupStack[current_stack_size].PopupId == id) + // FocusWindow(parent_window); + } +} + +// When popups are stacked, clicking on a lower level popups puts focus back to it and close popups above it. +// This function closes any popups that are over 'ref_window'. +void ImGui::ClosePopupsOverWindow(ImGuiWindow* ref_window, bool restore_focus_to_window_under_popup) +{ + ImGuiContext& g = *GImGui; + if (g.OpenPopupStack.Size == 0) + return; + + // Don't close our own child popup windows. + //IMGUI_DEBUG_LOG_POPUP("[popup] ClosePopupsOverWindow(\"%s\") restore_under=%d\n", ref_window ? ref_window->Name : "", restore_focus_to_window_under_popup); + int popup_count_to_keep = 0; + if (ref_window) + { + // Find the highest popup which is a descendant of the reference window (generally reference window = NavWindow) + for (; popup_count_to_keep < g.OpenPopupStack.Size; popup_count_to_keep++) + { + ImGuiPopupData& popup = g.OpenPopupStack[popup_count_to_keep]; + if (!popup.Window) + continue; + IM_ASSERT((popup.Window->Flags & ImGuiWindowFlags_Popup) != 0); + + // Trim the stack unless the popup is a direct parent of the reference window (the reference window is often the NavWindow) + // - Clicking/Focusing Window2 won't close Popup1: + // Window -> Popup1 -> Window2(Ref) + // - Clicking/focusing Popup1 will close Popup2 and Popup3: + // Window -> Popup1(Ref) -> Popup2 -> Popup3 + // - Each popups may contain child windows, which is why we compare ->RootWindow! + // Window -> Popup1 -> Popup1_Child -> Popup2 -> Popup2_Child + // We step through every popup from bottom to top to validate their position relative to reference window. + bool ref_window_is_descendent_of_popup = false; + for (int n = popup_count_to_keep; n < g.OpenPopupStack.Size; n++) + if (ImGuiWindow* popup_window = g.OpenPopupStack[n].Window) + if (IsWindowWithinBeginStackOf(ref_window, popup_window)) + { + ref_window_is_descendent_of_popup = true; + break; + } + if (!ref_window_is_descendent_of_popup) + break; + } + } + if (popup_count_to_keep < g.OpenPopupStack.Size) // This test is not required but it allows to set a convenient breakpoint on the statement below + { + IMGUI_DEBUG_LOG_POPUP("[popup] ClosePopupsOverWindow(\"%s\")\n", ref_window ? ref_window->Name : ""); + ClosePopupToLevel(popup_count_to_keep, restore_focus_to_window_under_popup); + } +} + +void ImGui::ClosePopupsExceptModals() +{ + ImGuiContext& g = *GImGui; + + int popup_count_to_keep; + for (popup_count_to_keep = g.OpenPopupStack.Size; popup_count_to_keep > 0; popup_count_to_keep--) + { + ImGuiWindow* window = g.OpenPopupStack[popup_count_to_keep - 1].Window; + if (!window || (window->Flags & ImGuiWindowFlags_Modal)) + break; + } + if (popup_count_to_keep < g.OpenPopupStack.Size) // This test is not required but it allows to set a convenient breakpoint on the statement below + ClosePopupToLevel(popup_count_to_keep, true); +} + +void ImGui::ClosePopupToLevel(int remaining, bool restore_focus_to_window_under_popup) +{ + ImGuiContext& g = *GImGui; + IMGUI_DEBUG_LOG_POPUP("[popup] ClosePopupToLevel(%d), restore_under=%d\n", remaining, restore_focus_to_window_under_popup); + IM_ASSERT(remaining >= 0 && remaining < g.OpenPopupStack.Size); + if (g.DebugLogFlags & ImGuiDebugLogFlags_EventPopup) + for (int n = remaining; n < g.OpenPopupStack.Size; n++) + IMGUI_DEBUG_LOG_POPUP("[popup] - Closing PopupID 0x%08X Window \"%s\"\n", g.OpenPopupStack[n].PopupId, g.OpenPopupStack[n].Window ? g.OpenPopupStack[n].Window->Name : NULL); + + // Trim open popup stack + ImGuiPopupData prev_popup = g.OpenPopupStack[remaining]; + g.OpenPopupStack.resize(remaining); + + // Restore focus (unless popup window was not yet submitted, and didn't have a chance to take focus anyhow. See #7325 for an edge case) + if (restore_focus_to_window_under_popup && prev_popup.Window) + { + ImGuiWindow* popup_window = prev_popup.Window; + ImGuiWindow* focus_window = (popup_window->Flags & ImGuiWindowFlags_ChildMenu) ? popup_window->ParentWindow : prev_popup.RestoreNavWindow; + if (focus_window && !focus_window->WasActive) + FocusTopMostWindowUnderOne(popup_window, NULL, NULL, ImGuiFocusRequestFlags_RestoreFocusedChild); // Fallback + else + FocusWindow(focus_window, (g.NavLayer == ImGuiNavLayer_Main) ? ImGuiFocusRequestFlags_RestoreFocusedChild : ImGuiFocusRequestFlags_None); + } +} + +// Close the popup we have begin-ed into. +void ImGui::CloseCurrentPopup() +{ + ImGuiContext& g = *GImGui; + int popup_idx = g.BeginPopupStack.Size - 1; + if (popup_idx < 0 || popup_idx >= g.OpenPopupStack.Size || g.BeginPopupStack[popup_idx].PopupId != g.OpenPopupStack[popup_idx].PopupId) + return; + + // Closing a menu closes its top-most parent popup (unless a modal) + while (popup_idx > 0) + { + ImGuiWindow* popup_window = g.OpenPopupStack[popup_idx].Window; + ImGuiWindow* parent_popup_window = g.OpenPopupStack[popup_idx - 1].Window; + bool close_parent = false; + if (popup_window && (popup_window->Flags & ImGuiWindowFlags_ChildMenu)) + if (parent_popup_window && !(parent_popup_window->Flags & ImGuiWindowFlags_MenuBar)) + close_parent = true; + if (!close_parent) + break; + popup_idx--; + } + IMGUI_DEBUG_LOG_POPUP("[popup] CloseCurrentPopup %d -> %d\n", g.BeginPopupStack.Size - 1, popup_idx); + ClosePopupToLevel(popup_idx, true); + + // A common pattern is to close a popup when selecting a menu item/selectable that will open another window. + // To improve this usage pattern, we avoid nav highlight for a single frame in the parent window. + // Similarly, we could avoid mouse hover highlight in this window but it is less visually problematic. + if (ImGuiWindow* window = g.NavWindow) + window->DC.NavHideHighlightOneFrame = true; +} + +// Attention! BeginPopup() adds default flags when calling BeginPopupEx()! +bool ImGui::BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_window_flags) +{ + ImGuiContext& g = *GImGui; + if (!IsPopupOpen(id, ImGuiPopupFlags_None)) + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + return false; + } + + char name[20]; + if (extra_window_flags & ImGuiWindowFlags_ChildMenu) + ImFormatString(name, IM_ARRAYSIZE(name), "##Menu_%02d", g.BeginMenuDepth); // Recycle windows based on depth + else + ImFormatString(name, IM_ARRAYSIZE(name), "##Popup_%08x", id); // Not recycling, so we can close/open during the same frame + + bool is_open = Begin(name, NULL, extra_window_flags | ImGuiWindowFlags_Popup); + if (!is_open) // NB: Begin can return false when the popup is completely clipped (e.g. zero size display) + EndPopup(); + + //g.CurrentWindow->FocusRouteParentWindow = g.CurrentWindow->ParentWindowInBeginStack; + + return is_open; +} + +bool ImGui::BeginPopup(const char* str_id, ImGuiWindowFlags flags) +{ + ImGuiContext& g = *GImGui; + if (g.OpenPopupStack.Size <= g.BeginPopupStack.Size) // Early out for performance + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + return false; + } + flags |= ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings; + ImGuiID id = g.CurrentWindow->GetID(str_id); + return BeginPopupEx(id, flags); +} + +// If 'p_open' is specified for a modal popup window, the popup will have a regular close button which will close the popup. +// Note that popup visibility status is owned by Dear ImGui (and manipulated with e.g. OpenPopup). +// - *p_open set back to false in BeginPopupModal() when popup is not open. +// - if you set *p_open to false before calling BeginPopupModal(), it will close the popup. +bool ImGui::BeginPopupModal(const char* name, bool* p_open, ImGuiWindowFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiID id = window->GetID(name); + if (!IsPopupOpen(id, ImGuiPopupFlags_None)) + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + if (p_open && *p_open) + *p_open = false; + return false; + } + + // Center modal windows by default for increased visibility + // (this won't really last as settings will kick in, and is mostly for backward compatibility. user may do the same themselves) + // FIXME: Should test for (PosCond & window->SetWindowPosAllowFlags) with the upcoming window. + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasPos) == 0) + { + const ImGuiViewport* viewport = GetMainViewport(); + SetNextWindowPos(viewport->GetCenter(), ImGuiCond_FirstUseEver, ImVec2(0.5f, 0.5f)); + } + + flags |= ImGuiWindowFlags_Popup | ImGuiWindowFlags_Modal | ImGuiWindowFlags_NoCollapse; + const bool is_open = Begin(name, p_open, flags); + if (!is_open || (p_open && !*p_open)) // NB: is_open can be 'false' when the popup is completely clipped (e.g. zero size display) + { + EndPopup(); + if (is_open) + ClosePopupToLevel(g.BeginPopupStack.Size, true); + return false; + } + return is_open; +} + +void ImGui::EndPopup() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginPopup()/EndPopup() calls + IM_ASSERT(g.BeginPopupStack.Size > 0); + + // Make all menus and popups wrap around for now, may need to expose that policy (e.g. focus scope could include wrap/loop policy flags used by new move requests) + if (g.NavWindow == window) + NavMoveRequestTryWrapping(window, ImGuiNavMoveFlags_LoopY); + + // Child-popups don't need to be laid out + IM_ASSERT(g.WithinEndChild == false); + if (window->Flags & ImGuiWindowFlags_ChildWindow) + g.WithinEndChild = true; + End(); + g.WithinEndChild = false; +} + +// Helper to open a popup if mouse button is released over the item +// - This is essentially the same as BeginPopupContextItem() but without the trailing BeginPopup() +void ImGui::OpenPopupOnItemClick(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + { + ImGuiID id = str_id ? window->GetID(str_id) : g.LastItemData.ID; // If user hasn't passed an ID, we can use the LastItemID. Using LastItemID as a Popup ID won't conflict! + IM_ASSERT(id != 0); // You cannot pass a NULL str_id if the last item has no identifier (e.g. a Text() item) + OpenPopupEx(id, popup_flags); + } +} + +// This is a helper to handle the simplest case of associating one named popup to one given widget. +// - To create a popup associated to the last item, you generally want to pass a NULL value to str_id. +// - To create a popup with a specific identifier, pass it in str_id. +// - This is useful when using using BeginPopupContextItem() on an item which doesn't have an identifier, e.g. a Text() call. +// - This is useful when multiple code locations may want to manipulate/open the same popup, given an explicit id. +// - You may want to handle the whole on user side if you have specific needs (e.g. tweaking IsItemHovered() parameters). +// This is essentially the same as: +// id = str_id ? GetID(str_id) : GetItemID(); +// OpenPopupOnItemClick(str_id, ImGuiPopupFlags_MouseButtonRight); +// return BeginPopup(id); +// Which is essentially the same as: +// id = str_id ? GetID(str_id) : GetItemID(); +// if (IsItemHovered() && IsMouseReleased(ImGuiMouseButton_Right)) +// OpenPopup(id); +// return BeginPopup(id); +// The main difference being that this is tweaked to avoid computing the ID twice. +bool ImGui::BeginPopupContextItem(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + ImGuiID id = str_id ? window->GetID(str_id) : g.LastItemData.ID; // If user hasn't passed an ID, we can use the LastItemID. Using LastItemID as a Popup ID won't conflict! + IM_ASSERT(id != 0); // You cannot pass a NULL str_id if the last item has no identifier (e.g. a Text() item) + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + OpenPopupEx(id, popup_flags); + return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings); +} + +bool ImGui::BeginPopupContextWindow(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!str_id) + str_id = "window_context"; + ImGuiID id = window->GetID(str_id); + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + if (!(popup_flags & ImGuiPopupFlags_NoOpenOverItems) || !IsAnyItemHovered()) + OpenPopupEx(id, popup_flags); + return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings); +} + +bool ImGui::BeginPopupContextVoid(const char* str_id, ImGuiPopupFlags popup_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (!str_id) + str_id = "void_context"; + ImGuiID id = window->GetID(str_id); + int mouse_button = (popup_flags & ImGuiPopupFlags_MouseButtonMask_); + if (IsMouseReleased(mouse_button) && !IsWindowHovered(ImGuiHoveredFlags_AnyWindow)) + if (GetTopMostPopupModal() == NULL) + OpenPopupEx(id, popup_flags); + return BeginPopupEx(id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings); +} + +// r_avoid = the rectangle to avoid (e.g. for tooltip it is a rectangle around the mouse cursor which we want to avoid. for popups it's a small point around the cursor.) +// r_outer = the visible area rectangle, minus safe area padding. If our popup size won't fit because of safe area padding we ignore it. +// (r_outer is usually equivalent to the viewport rectangle minus padding, but when multi-viewports are enabled and monitor +// information are available, it may represent the entire platform monitor from the frame of reference of the current viewport. +// this allows us to have tooltips/popups displayed out of the parent viewport.) +ImVec2 ImGui::FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last_dir, const ImRect& r_outer, const ImRect& r_avoid, ImGuiPopupPositionPolicy policy) +{ + ImVec2 base_pos_clamped = ImClamp(ref_pos, r_outer.Min, r_outer.Max - size); + //GetForegroundDrawList()->AddRect(r_avoid.Min, r_avoid.Max, IM_COL32(255,0,0,255)); + //GetForegroundDrawList()->AddRect(r_outer.Min, r_outer.Max, IM_COL32(0,255,0,255)); + + // Combo Box policy (we want a connecting edge) + if (policy == ImGuiPopupPositionPolicy_ComboBox) + { + const ImGuiDir dir_prefered_order[ImGuiDir_COUNT] = { ImGuiDir_Down, ImGuiDir_Right, ImGuiDir_Left, ImGuiDir_Up }; + for (int n = (*last_dir != ImGuiDir_None) ? -1 : 0; n < ImGuiDir_COUNT; n++) + { + const ImGuiDir dir = (n == -1) ? *last_dir : dir_prefered_order[n]; + if (n != -1 && dir == *last_dir) // Already tried this direction? + continue; + ImVec2 pos; + if (dir == ImGuiDir_Down) pos = ImVec2(r_avoid.Min.x, r_avoid.Max.y); // Below, Toward Right (default) + if (dir == ImGuiDir_Right) pos = ImVec2(r_avoid.Min.x, r_avoid.Min.y - size.y); // Above, Toward Right + if (dir == ImGuiDir_Left) pos = ImVec2(r_avoid.Max.x - size.x, r_avoid.Max.y); // Below, Toward Left + if (dir == ImGuiDir_Up) pos = ImVec2(r_avoid.Max.x - size.x, r_avoid.Min.y - size.y); // Above, Toward Left + if (!r_outer.Contains(ImRect(pos, pos + size))) + continue; + *last_dir = dir; + return pos; + } + } + + // Tooltip and Default popup policy + // (Always first try the direction we used on the last frame, if any) + if (policy == ImGuiPopupPositionPolicy_Tooltip || policy == ImGuiPopupPositionPolicy_Default) + { + const ImGuiDir dir_prefered_order[ImGuiDir_COUNT] = { ImGuiDir_Right, ImGuiDir_Down, ImGuiDir_Up, ImGuiDir_Left }; + for (int n = (*last_dir != ImGuiDir_None) ? -1 : 0; n < ImGuiDir_COUNT; n++) + { + const ImGuiDir dir = (n == -1) ? *last_dir : dir_prefered_order[n]; + if (n != -1 && dir == *last_dir) // Already tried this direction? + continue; + + const float avail_w = (dir == ImGuiDir_Left ? r_avoid.Min.x : r_outer.Max.x) - (dir == ImGuiDir_Right ? r_avoid.Max.x : r_outer.Min.x); + const float avail_h = (dir == ImGuiDir_Up ? r_avoid.Min.y : r_outer.Max.y) - (dir == ImGuiDir_Down ? r_avoid.Max.y : r_outer.Min.y); + + // If there's not enough room on one axis, there's no point in positioning on a side on this axis (e.g. when not enough width, use a top/bottom position to maximize available width) + if (avail_w < size.x && (dir == ImGuiDir_Left || dir == ImGuiDir_Right)) + continue; + if (avail_h < size.y && (dir == ImGuiDir_Up || dir == ImGuiDir_Down)) + continue; + + ImVec2 pos; + pos.x = (dir == ImGuiDir_Left) ? r_avoid.Min.x - size.x : (dir == ImGuiDir_Right) ? r_avoid.Max.x : base_pos_clamped.x; + pos.y = (dir == ImGuiDir_Up) ? r_avoid.Min.y - size.y : (dir == ImGuiDir_Down) ? r_avoid.Max.y : base_pos_clamped.y; + + // Clamp top-left corner of popup + pos.x = ImMax(pos.x, r_outer.Min.x); + pos.y = ImMax(pos.y, r_outer.Min.y); + + *last_dir = dir; + return pos; + } + } + + // Fallback when not enough room: + *last_dir = ImGuiDir_None; + + // For tooltip we prefer avoiding the cursor at all cost even if it means that part of the tooltip won't be visible. + if (policy == ImGuiPopupPositionPolicy_Tooltip) + return ref_pos + ImVec2(2, 2); + + // Otherwise try to keep within display + ImVec2 pos = ref_pos; + pos.x = ImMax(ImMin(pos.x + size.x, r_outer.Max.x) - size.x, r_outer.Min.x); + pos.y = ImMax(ImMin(pos.y + size.y, r_outer.Max.y) - size.y, r_outer.Min.y); + return pos; +} + +// Note that this is used for popups, which can overlap the non work-area of individual viewports. +ImRect ImGui::GetPopupAllowedExtentRect(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(window); + ImRect r_screen = ((ImGuiViewportP*)(void*)GetMainViewport())->GetMainRect(); + ImVec2 padding = g.Style.DisplaySafeAreaPadding; + r_screen.Expand(ImVec2((r_screen.GetWidth() > padding.x * 2) ? -padding.x : 0.0f, (r_screen.GetHeight() > padding.y * 2) ? -padding.y : 0.0f)); + return r_screen; +} + +ImVec2 ImGui::FindBestWindowPosForPopup(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + + ImRect r_outer = GetPopupAllowedExtentRect(window); + if (window->Flags & ImGuiWindowFlags_ChildMenu) + { + // Child menus typically request _any_ position within the parent menu item, and then we move the new menu outside the parent bounds. + // This is how we end up with child menus appearing (most-commonly) on the right of the parent menu. + IM_ASSERT(g.CurrentWindow == window); + ImGuiWindow* parent_window = g.CurrentWindowStack[g.CurrentWindowStack.Size - 2].Window; + float horizontal_overlap = g.Style.ItemInnerSpacing.x; // We want some overlap to convey the relative depth of each menu (currently the amount of overlap is hard-coded to style.ItemSpacing.x). + ImRect r_avoid; + if (parent_window->DC.MenuBarAppending) + r_avoid = ImRect(-FLT_MAX, parent_window->ClipRect.Min.y, FLT_MAX, parent_window->ClipRect.Max.y); // Avoid parent menu-bar. If we wanted multi-line menu-bar, we may instead want to have the calling window setup e.g. a NextWindowData.PosConstraintAvoidRect field + else + r_avoid = ImRect(parent_window->Pos.x + horizontal_overlap, -FLT_MAX, parent_window->Pos.x + parent_window->Size.x - horizontal_overlap - parent_window->ScrollbarSizes.x, FLT_MAX); + return FindBestWindowPosForPopupEx(window->Pos, window->Size, &window->AutoPosLastDirection, r_outer, r_avoid, ImGuiPopupPositionPolicy_Default); + } + if (window->Flags & ImGuiWindowFlags_Popup) + { + return FindBestWindowPosForPopupEx(window->Pos, window->Size, &window->AutoPosLastDirection, r_outer, ImRect(window->Pos, window->Pos), ImGuiPopupPositionPolicy_Default); // Ideally we'd disable r_avoid here + } + if (window->Flags & ImGuiWindowFlags_Tooltip) + { + // Position tooltip (always follows mouse + clamp within outer boundaries) + // Note that drag and drop tooltips are NOT using this path: BeginTooltipEx() manually sets their position. + // In theory we could handle both cases in same location, but requires a bit of shuffling as drag and drop tooltips are calling SetWindowPos() leading to 'window_pos_set_by_api' being set in Begin() + IM_ASSERT(g.CurrentWindow == window); + const float scale = g.Style.MouseCursorScale; + const ImVec2 ref_pos = NavCalcPreferredRefPos(); + const ImVec2 tooltip_pos = ref_pos + TOOLTIP_DEFAULT_OFFSET * scale; + ImRect r_avoid; + if (!g.NavDisableHighlight && g.NavDisableMouseHover && !(g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos)) + r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 16, ref_pos.y + 8); + else + r_avoid = ImRect(ref_pos.x - 16, ref_pos.y - 8, ref_pos.x + 24 * scale, ref_pos.y + 24 * scale); // FIXME: Hard-coded based on mouse cursor shape expectation. Exact dimension not very important. + //GetForegroundDrawList()->AddRect(r_avoid.Min, r_avoid.Max, IM_COL32(255, 0, 255, 255)); + return FindBestWindowPosForPopupEx(tooltip_pos, window->Size, &window->AutoPosLastDirection, r_outer, r_avoid, ImGuiPopupPositionPolicy_Tooltip); + } + IM_ASSERT(0); + return window->Pos; +} + +//----------------------------------------------------------------------------- +// [SECTION] KEYBOARD/GAMEPAD NAVIGATION +//----------------------------------------------------------------------------- + +// FIXME-NAV: The existence of SetNavID vs SetFocusID vs FocusWindow() needs to be clarified/reworked. +// In our terminology those should be interchangeable, yet right now this is super confusing. +// Those two functions are merely a legacy artifact, so at minimum naming should be clarified. + +void ImGui::SetNavWindow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (g.NavWindow != window) + { + IMGUI_DEBUG_LOG_FOCUS("[focus] SetNavWindow(\"%s\")\n", window ? window->Name : ""); + g.NavWindow = window; + g.NavLastValidSelectionUserData = ImGuiSelectionUserData_Invalid; + } + g.NavInitRequest = g.NavMoveSubmitted = g.NavMoveScoringItems = false; + NavUpdateAnyRequestFlag(); +} + +void ImGui::NavHighlightActivated(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + g.NavHighlightActivatedId = id; + g.NavHighlightActivatedTimer = NAV_ACTIVATE_HIGHLIGHT_TIMER; +} + +void ImGui::NavClearPreferredPosForAxis(ImGuiAxis axis) +{ + ImGuiContext& g = *GImGui; + g.NavWindow->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer][axis] = FLT_MAX; +} + +void ImGui::SetNavID(ImGuiID id, ImGuiNavLayer nav_layer, ImGuiID focus_scope_id, const ImRect& rect_rel) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindow != NULL); + IM_ASSERT(nav_layer == ImGuiNavLayer_Main || nav_layer == ImGuiNavLayer_Menu); + g.NavId = id; + g.NavLayer = nav_layer; + SetNavFocusScope(focus_scope_id); + g.NavWindow->NavLastIds[nav_layer] = id; + g.NavWindow->NavRectRel[nav_layer] = rect_rel; + + // Clear preferred scoring position (NavMoveRequestApplyResult() will tend to restore it) + NavClearPreferredPosForAxis(ImGuiAxis_X); + NavClearPreferredPosForAxis(ImGuiAxis_Y); +} + +void ImGui::SetFocusID(ImGuiID id, ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(id != 0); + + if (g.NavWindow != window) + SetNavWindow(window); + + // Assume that SetFocusID() is called in the context where its window->DC.NavLayerCurrent and g.CurrentFocusScopeId are valid. + // Note that window may be != g.CurrentWindow (e.g. SetFocusID call in InputTextEx for multi-line text) + const ImGuiNavLayer nav_layer = window->DC.NavLayerCurrent; + g.NavId = id; + g.NavLayer = nav_layer; + SetNavFocusScope(g.CurrentFocusScopeId); + window->NavLastIds[nav_layer] = id; + if (g.LastItemData.ID == id) + window->NavRectRel[nav_layer] = WindowRectAbsToRel(window, g.LastItemData.NavRect); + + if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + g.NavDisableMouseHover = true; + else + g.NavDisableHighlight = true; + + // Clear preferred scoring position (NavMoveRequestApplyResult() will tend to restore it) + NavClearPreferredPosForAxis(ImGuiAxis_X); + NavClearPreferredPosForAxis(ImGuiAxis_Y); +} + +static ImGuiDir ImGetDirQuadrantFromDelta(float dx, float dy) +{ + if (ImFabs(dx) > ImFabs(dy)) + return (dx > 0.0f) ? ImGuiDir_Right : ImGuiDir_Left; + return (dy > 0.0f) ? ImGuiDir_Down : ImGuiDir_Up; +} + +static float inline NavScoreItemDistInterval(float cand_min, float cand_max, float curr_min, float curr_max) +{ + if (cand_max < curr_min) + return cand_max - curr_min; + if (curr_max < cand_min) + return cand_min - curr_max; + return 0.0f; +} + +// Scoring function for gamepad/keyboard directional navigation. Based on https://gist.github.com/rygorous/6981057 +static bool ImGui::NavScoreItem(ImGuiNavItemData* result) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (g.NavLayer != window->DC.NavLayerCurrent) + return false; + + // FIXME: Those are not good variables names + ImRect cand = g.LastItemData.NavRect; // Current item nav rectangle + const ImRect curr = g.NavScoringRect; // Current modified source rect (NB: we've applied Max.x = Min.x in NavUpdate() to inhibit the effect of having varied item width) + g.NavScoringDebugCount++; + + // When entering through a NavFlattened border, we consider child window items as fully clipped for scoring + if (window->ParentWindow == g.NavWindow) + { + IM_ASSERT((window->ChildFlags | g.NavWindow->ChildFlags) & ImGuiChildFlags_NavFlattened); + if (!window->ClipRect.Overlaps(cand)) + return false; + cand.ClipWithFull(window->ClipRect); // This allows the scored item to not overlap other candidates in the parent window + } + + // Compute distance between boxes + // FIXME-NAV: Introducing biases for vertical navigation, needs to be removed. + float dbx = NavScoreItemDistInterval(cand.Min.x, cand.Max.x, curr.Min.x, curr.Max.x); + float dby = NavScoreItemDistInterval(ImLerp(cand.Min.y, cand.Max.y, 0.2f), ImLerp(cand.Min.y, cand.Max.y, 0.8f), ImLerp(curr.Min.y, curr.Max.y, 0.2f), ImLerp(curr.Min.y, curr.Max.y, 0.8f)); // Scale down on Y to keep using box-distance for vertically touching items + if (dby != 0.0f && dbx != 0.0f) + dbx = (dbx / 1000.0f) + ((dbx > 0.0f) ? +1.0f : -1.0f); + float dist_box = ImFabs(dbx) + ImFabs(dby); + + // Compute distance between centers (this is off by a factor of 2, but we only compare center distances with each other so it doesn't matter) + float dcx = (cand.Min.x + cand.Max.x) - (curr.Min.x + curr.Max.x); + float dcy = (cand.Min.y + cand.Max.y) - (curr.Min.y + curr.Max.y); + float dist_center = ImFabs(dcx) + ImFabs(dcy); // L1 metric (need this for our connectedness guarantee) + + // Determine which quadrant of 'curr' our candidate item 'cand' lies in based on distance + ImGuiDir quadrant; + float dax = 0.0f, day = 0.0f, dist_axial = 0.0f; + if (dbx != 0.0f || dby != 0.0f) + { + // For non-overlapping boxes, use distance between boxes + // FIXME-NAV: Quadrant may be incorrect because of (1) dbx bias and (2) curr.Max.y bias applied by NavBiasScoringRect() where typically curr.Max.y==curr.Min.y + // One typical case where this happens, with style.WindowMenuButtonPosition == ImGuiDir_Right, pressing Left to navigate from Close to Collapse tends to fail. + // Also see #6344. Calling ImGetDirQuadrantFromDelta() with unbiased values may be good but side-effects are plenty. + dax = dbx; + day = dby; + dist_axial = dist_box; + quadrant = ImGetDirQuadrantFromDelta(dbx, dby); + } + else if (dcx != 0.0f || dcy != 0.0f) + { + // For overlapping boxes with different centers, use distance between centers + dax = dcx; + day = dcy; + dist_axial = dist_center; + quadrant = ImGetDirQuadrantFromDelta(dcx, dcy); + } + else + { + // Degenerate case: two overlapping buttons with same center, break ties arbitrarily (note that LastItemId here is really the _previous_ item order, but it doesn't matter) + quadrant = (g.LastItemData.ID < g.NavId) ? ImGuiDir_Left : ImGuiDir_Right; + } + + const ImGuiDir move_dir = g.NavMoveDir; +#if IMGUI_DEBUG_NAV_SCORING + char buf[200]; + if (g.IO.KeyCtrl) // Hold CTRL to preview score in matching quadrant. CTRL+Arrow to rotate. + { + if (quadrant == move_dir) + { + ImFormatString(buf, IM_ARRAYSIZE(buf), "%.0f/%.0f", dist_box, dist_center); + ImDrawList* draw_list = GetForegroundDrawList(window); + draw_list->AddRectFilled(cand.Min, cand.Max, IM_COL32(255, 0, 0, 80)); + draw_list->AddRectFilled(cand.Min, cand.Min + CalcTextSize(buf), IM_COL32(255, 0, 0, 200)); + draw_list->AddText(cand.Min, IM_COL32(255, 255, 255, 255), buf); + } + } + const bool debug_hovering = IsMouseHoveringRect(cand.Min, cand.Max); + const bool debug_tty = (g.IO.KeyCtrl && IsKeyPressed(ImGuiKey_Space)); + if (debug_hovering || debug_tty) + { + ImFormatString(buf, IM_ARRAYSIZE(buf), + "d-box (%7.3f,%7.3f) -> %7.3f\nd-center (%7.3f,%7.3f) -> %7.3f\nd-axial (%7.3f,%7.3f) -> %7.3f\nnav %c, quadrant %c", + dbx, dby, dist_box, dcx, dcy, dist_center, dax, day, dist_axial, "-WENS"[move_dir+1], "-WENS"[quadrant+1]); + if (debug_hovering) + { + ImDrawList* draw_list = GetForegroundDrawList(window); + draw_list->AddRect(curr.Min, curr.Max, IM_COL32(255, 200, 0, 100)); + draw_list->AddRect(cand.Min, cand.Max, IM_COL32(255, 255, 0, 200)); + draw_list->AddRectFilled(cand.Max - ImVec2(4, 4), cand.Max + CalcTextSize(buf) + ImVec2(4, 4), IM_COL32(40, 0, 0, 200)); + draw_list->AddText(cand.Max, ~0U, buf); + } + if (debug_tty) { IMGUI_DEBUG_LOG_NAV("id 0x%08X\n%s\n", g.LastItemData.ID, buf); } + } +#endif + + // Is it in the quadrant we're interested in moving to? + bool new_best = false; + if (quadrant == move_dir) + { + // Does it beat the current best candidate? + if (dist_box < result->DistBox) + { + result->DistBox = dist_box; + result->DistCenter = dist_center; + return true; + } + if (dist_box == result->DistBox) + { + // Try using distance between center points to break ties + if (dist_center < result->DistCenter) + { + result->DistCenter = dist_center; + new_best = true; + } + else if (dist_center == result->DistCenter) + { + // Still tied! we need to be extra-careful to make sure everything gets linked properly. We consistently break ties by symbolically moving "later" items + // (with higher index) to the right/downwards by an infinitesimal amount since we the current "best" button already (so it must have a lower index), + // this is fairly easy. This rule ensures that all buttons with dx==dy==0 will end up being linked in order of appearance along the x axis. + if (((move_dir == ImGuiDir_Up || move_dir == ImGuiDir_Down) ? dby : dbx) < 0.0f) // moving bj to the right/down decreases distance + new_best = true; + } + } + } + + // Axial check: if 'curr' has no link at all in some direction and 'cand' lies roughly in that direction, add a tentative link. This will only be kept if no "real" matches + // are found, so it only augments the graph produced by the above method using extra links. (important, since it doesn't guarantee strong connectedness) + // This is just to avoid buttons having no links in a particular direction when there's a suitable neighbor. you get good graphs without this too. + // 2017/09/29: FIXME: This now currently only enabled inside menu bars, ideally we'd disable it everywhere. Menus in particular need to catch failure. For general navigation it feels awkward. + // Disabling it may lead to disconnected graphs when nodes are very spaced out on different axis. Perhaps consider offering this as an option? + if (result->DistBox == FLT_MAX && dist_axial < result->DistAxial) // Check axial match + if (g.NavLayer == ImGuiNavLayer_Menu && !(g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu)) + if ((move_dir == ImGuiDir_Left && dax < 0.0f) || (move_dir == ImGuiDir_Right && dax > 0.0f) || (move_dir == ImGuiDir_Up && day < 0.0f) || (move_dir == ImGuiDir_Down && day > 0.0f)) + { + result->DistAxial = dist_axial; + new_best = true; + } + + return new_best; +} + +static void ImGui::NavApplyItemToResult(ImGuiNavItemData* result) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + result->Window = window; + result->ID = g.LastItemData.ID; + result->FocusScopeId = g.CurrentFocusScopeId; + result->InFlags = g.LastItemData.InFlags; + result->RectRel = WindowRectAbsToRel(window, g.LastItemData.NavRect); + if (result->InFlags & ImGuiItemFlags_HasSelectionUserData) + { + IM_ASSERT(g.NextItemData.SelectionUserData != ImGuiSelectionUserData_Invalid); + result->SelectionUserData = g.NextItemData.SelectionUserData; // INTENTIONAL: At this point this field is not cleared in NextItemData. Avoid unnecessary copy to LastItemData. + } +} + +// True when current work location may be scrolled horizontally when moving left / right. +// This is generally always true UNLESS within a column. We don't have a vertical equivalent. +void ImGui::NavUpdateCurrentWindowIsScrollPushableX() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + window->DC.NavIsScrollPushableX = (g.CurrentTable == NULL && window->DC.CurrentColumns == NULL); +} + +// We get there when either NavId == id, or when g.NavAnyRequest is set (which is updated by NavUpdateAnyRequestFlag above) +// This is called after LastItemData is set, but NextItemData is also still valid. +static void ImGui::NavProcessItem() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiID id = g.LastItemData.ID; + const ImGuiItemFlags item_flags = g.LastItemData.InFlags; + + // When inside a container that isn't scrollable with Left<>Right, clip NavRect accordingly (#2221) + if (window->DC.NavIsScrollPushableX == false) + { + g.LastItemData.NavRect.Min.x = ImClamp(g.LastItemData.NavRect.Min.x, window->ClipRect.Min.x, window->ClipRect.Max.x); + g.LastItemData.NavRect.Max.x = ImClamp(g.LastItemData.NavRect.Max.x, window->ClipRect.Min.x, window->ClipRect.Max.x); + } + const ImRect nav_bb = g.LastItemData.NavRect; + + // Process Init Request + if (g.NavInitRequest && g.NavLayer == window->DC.NavLayerCurrent && (item_flags & ImGuiItemFlags_Disabled) == 0) + { + // Even if 'ImGuiItemFlags_NoNavDefaultFocus' is on (typically collapse/close button) we record the first ResultId so they can be used as a fallback + const bool candidate_for_nav_default_focus = (item_flags & ImGuiItemFlags_NoNavDefaultFocus) == 0; + if (candidate_for_nav_default_focus || g.NavInitResult.ID == 0) + { + NavApplyItemToResult(&g.NavInitResult); + } + if (candidate_for_nav_default_focus) + { + g.NavInitRequest = false; // Found a match, clear request + NavUpdateAnyRequestFlag(); + } + } + + // Process Move Request (scoring for navigation) + // FIXME-NAV: Consider policy for double scoring (scoring from NavScoringRect + scoring from a rect wrapped according to current wrapping policy) + if (g.NavMoveScoringItems && (item_flags & ImGuiItemFlags_Disabled) == 0) + { + if ((g.NavMoveFlags & ImGuiNavMoveFlags_FocusApi) || (window->Flags & ImGuiWindowFlags_NoNavInputs) == 0) + { + const bool is_tabbing = (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) != 0; + if (is_tabbing) + { + NavProcessItemForTabbingRequest(id, item_flags, g.NavMoveFlags); + } + else if (g.NavId != id || (g.NavMoveFlags & ImGuiNavMoveFlags_AllowCurrentNavId)) + { + ImGuiNavItemData* result = (window == g.NavWindow) ? &g.NavMoveResultLocal : &g.NavMoveResultOther; + if (NavScoreItem(result)) + NavApplyItemToResult(result); + + // Features like PageUp/PageDown need to maintain a separate score for the visible set of items. + const float VISIBLE_RATIO = 0.70f; + if ((g.NavMoveFlags & ImGuiNavMoveFlags_AlsoScoreVisibleSet) && window->ClipRect.Overlaps(nav_bb)) + if (ImClamp(nav_bb.Max.y, window->ClipRect.Min.y, window->ClipRect.Max.y) - ImClamp(nav_bb.Min.y, window->ClipRect.Min.y, window->ClipRect.Max.y) >= (nav_bb.Max.y - nav_bb.Min.y) * VISIBLE_RATIO) + if (NavScoreItem(&g.NavMoveResultLocalVisible)) + NavApplyItemToResult(&g.NavMoveResultLocalVisible); + } + } + } + + // Update information for currently focused/navigated item + if (g.NavId == id) + { + if (g.NavWindow != window) + SetNavWindow(window); // Always refresh g.NavWindow, because some operations such as FocusItem() may not have a window. + g.NavLayer = window->DC.NavLayerCurrent; + SetNavFocusScope(g.CurrentFocusScopeId); // Will set g.NavFocusScopeId AND store g.NavFocusScopePath + g.NavFocusScopeId = g.CurrentFocusScopeId; + g.NavIdIsAlive = true; + if (g.LastItemData.InFlags & ImGuiItemFlags_HasSelectionUserData) + { + IM_ASSERT(g.NextItemData.SelectionUserData != ImGuiSelectionUserData_Invalid); + g.NavLastValidSelectionUserData = g.NextItemData.SelectionUserData; // INTENTIONAL: At this point this field is not cleared in NextItemData. Avoid unnecessary copy to LastItemData. + } + window->NavRectRel[window->DC.NavLayerCurrent] = WindowRectAbsToRel(window, nav_bb); // Store item bounding box (relative to window position) + } +} + +// Handle "scoring" of an item for a tabbing/focusing request initiated by NavUpdateCreateTabbingRequest(). +// Note that SetKeyboardFocusHere() API calls are considered tabbing requests! +// - Case 1: no nav/active id: set result to first eligible item, stop storing. +// - Case 2: tab forward: on ref id set counter, on counter elapse store result +// - Case 3: tab forward wrap: set result to first eligible item (preemptively), on ref id set counter, on next frame if counter hasn't elapsed store result. // FIXME-TABBING: Could be done as a next-frame forwarded request +// - Case 4: tab backward: store all results, on ref id pick prev, stop storing +// - Case 5: tab backward wrap: store all results, on ref id if no result keep storing until last // FIXME-TABBING: Could be done as next-frame forwarded requested +void ImGui::NavProcessItemForTabbingRequest(ImGuiID id, ImGuiItemFlags item_flags, ImGuiNavMoveFlags move_flags) +{ + ImGuiContext& g = *GImGui; + + if ((move_flags & ImGuiNavMoveFlags_FocusApi) == 0) + { + if (g.NavLayer != g.CurrentWindow->DC.NavLayerCurrent) + return; + if (g.NavFocusScopeId != g.CurrentFocusScopeId) + return; + } + + // - Can always land on an item when using API call. + // - Tabbing with _NavEnableKeyboard (space/enter/arrows): goes through every item. + // - Tabbing without _NavEnableKeyboard: goes through inputable items only. + bool can_stop; + if (move_flags & ImGuiNavMoveFlags_FocusApi) + can_stop = true; + else + can_stop = (item_flags & ImGuiItemFlags_NoTabStop) == 0 && ((g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) || (item_flags & ImGuiItemFlags_Inputable)); + + // Always store in NavMoveResultLocal (unlike directional request which uses NavMoveResultOther on sibling/flattened windows) + ImGuiNavItemData* result = &g.NavMoveResultLocal; + if (g.NavTabbingDir == +1) + { + // Tab Forward or SetKeyboardFocusHere() with >= 0 + if (can_stop && g.NavTabbingResultFirst.ID == 0) + NavApplyItemToResult(&g.NavTabbingResultFirst); + if (can_stop && g.NavTabbingCounter > 0 && --g.NavTabbingCounter == 0) + NavMoveRequestResolveWithLastItem(result); + else if (g.NavId == id) + g.NavTabbingCounter = 1; + } + else if (g.NavTabbingDir == -1) + { + // Tab Backward + if (g.NavId == id) + { + if (result->ID) + { + g.NavMoveScoringItems = false; + NavUpdateAnyRequestFlag(); + } + } + else if (can_stop) + { + // Keep applying until reaching NavId + NavApplyItemToResult(result); + } + } + else if (g.NavTabbingDir == 0) + { + if (can_stop && g.NavId == id) + NavMoveRequestResolveWithLastItem(result); + if (can_stop && g.NavTabbingResultFirst.ID == 0) // Tab init + NavApplyItemToResult(&g.NavTabbingResultFirst); + } +} + +bool ImGui::NavMoveRequestButNoResultYet() +{ + ImGuiContext& g = *GImGui; + return g.NavMoveScoringItems && g.NavMoveResultLocal.ID == 0 && g.NavMoveResultOther.ID == 0; +} + +// FIXME: ScoringRect is not set +void ImGui::NavMoveRequestSubmit(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindow != NULL); + //IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequestSubmit: dir %c, window \"%s\"\n", "-WENS"[move_dir + 1], g.NavWindow->Name); + + if (move_flags & ImGuiNavMoveFlags_IsTabbing) + move_flags |= ImGuiNavMoveFlags_AllowCurrentNavId; + + g.NavMoveSubmitted = g.NavMoveScoringItems = true; + g.NavMoveDir = move_dir; + g.NavMoveDirForDebug = move_dir; + g.NavMoveClipDir = clip_dir; + g.NavMoveFlags = move_flags; + g.NavMoveScrollFlags = scroll_flags; + g.NavMoveForwardToNextFrame = false; + g.NavMoveKeyMods = (move_flags & ImGuiNavMoveFlags_FocusApi) ? 0 : g.IO.KeyMods; + g.NavMoveResultLocal.Clear(); + g.NavMoveResultLocalVisible.Clear(); + g.NavMoveResultOther.Clear(); + g.NavTabbingCounter = 0; + g.NavTabbingResultFirst.Clear(); + NavUpdateAnyRequestFlag(); +} + +void ImGui::NavMoveRequestResolveWithLastItem(ImGuiNavItemData* result) +{ + ImGuiContext& g = *GImGui; + g.NavMoveScoringItems = false; // Ensure request doesn't need more processing + NavApplyItemToResult(result); + NavUpdateAnyRequestFlag(); +} + +// Called by TreePop() to implement ImGuiTreeNodeFlags_NavLeftJumpsBackHere +void ImGui::NavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result, ImGuiTreeNodeStackData* tree_node_data) +{ + ImGuiContext& g = *GImGui; + g.NavMoveScoringItems = false; + g.LastItemData.ID = tree_node_data->ID; + g.LastItemData.InFlags = tree_node_data->InFlags & ~ImGuiItemFlags_HasSelectionUserData; // Losing SelectionUserData, recovered next-frame (cheaper). + g.LastItemData.NavRect = tree_node_data->NavRect; + NavApplyItemToResult(result); // Result this instead of implementing a NavApplyPastTreeNodeToResult() + NavClearPreferredPosForAxis(ImGuiAxis_Y); + NavUpdateAnyRequestFlag(); +} + +void ImGui::NavMoveRequestCancel() +{ + ImGuiContext& g = *GImGui; + g.NavMoveSubmitted = g.NavMoveScoringItems = false; + NavUpdateAnyRequestFlag(); +} + +// Forward will reuse the move request again on the next frame (generally with modifications done to it) +void ImGui::NavMoveRequestForward(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavMoveForwardToNextFrame == false); + NavMoveRequestCancel(); + g.NavMoveForwardToNextFrame = true; + g.NavMoveDir = move_dir; + g.NavMoveClipDir = clip_dir; + g.NavMoveFlags = move_flags | ImGuiNavMoveFlags_Forwarded; + g.NavMoveScrollFlags = scroll_flags; +} + +// Navigation wrap-around logic is delayed to the end of the frame because this operation is only valid after entire +// popup is assembled and in case of appended popups it is not clear which EndPopup() call is final. +void ImGui::NavMoveRequestTryWrapping(ImGuiWindow* window, ImGuiNavMoveFlags wrap_flags) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT((wrap_flags & ImGuiNavMoveFlags_WrapMask_ ) != 0 && (wrap_flags & ~ImGuiNavMoveFlags_WrapMask_) == 0); // Call with _WrapX, _WrapY, _LoopX, _LoopY + + // In theory we should test for NavMoveRequestButNoResultYet() but there's no point doing it: + // as NavEndFrame() will do the same test. It will end up calling NavUpdateCreateWrappingRequest(). + if (g.NavWindow == window && g.NavMoveScoringItems && g.NavLayer == ImGuiNavLayer_Main) + g.NavMoveFlags = (g.NavMoveFlags & ~ImGuiNavMoveFlags_WrapMask_) | wrap_flags; +} + +// FIXME: This could be replaced by updating a frame number in each window when (window == NavWindow) and (NavLayer == 0). +// This way we could find the last focused window among our children. It would be much less confusing this way? +static void ImGui::NavSaveLastChildNavWindowIntoParent(ImGuiWindow* nav_window) +{ + ImGuiWindow* parent = nav_window; + while (parent && parent->RootWindow != parent && (parent->Flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_ChildMenu)) == 0) + parent = parent->ParentWindow; + if (parent && parent != nav_window) + parent->NavLastChildNavWindow = nav_window; +} + +// Restore the last focused child. +// Call when we are expected to land on the Main Layer (0) after FocusWindow() +static ImGuiWindow* ImGui::NavRestoreLastChildNavWindow(ImGuiWindow* window) +{ + if (window->NavLastChildNavWindow && window->NavLastChildNavWindow->WasActive) + return window->NavLastChildNavWindow; + return window; +} + +void ImGui::NavRestoreLayer(ImGuiNavLayer layer) +{ + ImGuiContext& g = *GImGui; + if (layer == ImGuiNavLayer_Main) + { + ImGuiWindow* prev_nav_window = g.NavWindow; + g.NavWindow = NavRestoreLastChildNavWindow(g.NavWindow); // FIXME-NAV: Should clear ongoing nav requests? + g.NavLastValidSelectionUserData = ImGuiSelectionUserData_Invalid; + if (prev_nav_window) + IMGUI_DEBUG_LOG_FOCUS("[focus] NavRestoreLayer: from \"%s\" to SetNavWindow(\"%s\")\n", prev_nav_window->Name, g.NavWindow->Name); + } + ImGuiWindow* window = g.NavWindow; + if (window->NavLastIds[layer] != 0) + { + SetNavID(window->NavLastIds[layer], layer, 0, window->NavRectRel[layer]); + } + else + { + g.NavLayer = layer; + NavInitWindow(window, true); + } +} + +void ImGui::NavRestoreHighlightAfterMove() +{ + ImGuiContext& g = *GImGui; + g.NavDisableHighlight = false; + g.NavDisableMouseHover = g.NavMousePosDirty = true; +} + +static inline void ImGui::NavUpdateAnyRequestFlag() +{ + ImGuiContext& g = *GImGui; + g.NavAnyRequest = g.NavMoveScoringItems || g.NavInitRequest || (IMGUI_DEBUG_NAV_SCORING && g.NavWindow != NULL); + if (g.NavAnyRequest) + IM_ASSERT(g.NavWindow != NULL); +} + +// This needs to be called before we submit any widget (aka in or before Begin) +void ImGui::NavInitWindow(ImGuiWindow* window, bool force_reinit) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(window == g.NavWindow); + + if (window->Flags & ImGuiWindowFlags_NoNavInputs) + { + g.NavId = 0; + SetNavFocusScope(window->NavRootFocusScopeId); + return; + } + + bool init_for_nav = false; + if (window == window->RootWindow || (window->Flags & ImGuiWindowFlags_Popup) || (window->NavLastIds[0] == 0) || force_reinit) + init_for_nav = true; + IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: from NavInitWindow(), init_for_nav=%d, window=\"%s\", layer=%d\n", init_for_nav, window->Name, g.NavLayer); + if (init_for_nav) + { + SetNavID(0, g.NavLayer, window->NavRootFocusScopeId, ImRect()); + g.NavInitRequest = true; + g.NavInitRequestFromMove = false; + g.NavInitResult.ID = 0; + NavUpdateAnyRequestFlag(); + } + else + { + g.NavId = window->NavLastIds[0]; + SetNavFocusScope(window->NavRootFocusScopeId); + } +} + +static ImVec2 ImGui::NavCalcPreferredRefPos() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + const bool activated_shortcut = g.ActiveId != 0 && g.ActiveIdFromShortcut && g.ActiveId == g.LastItemData.ID; + + // Testing for !activated_shortcut here could in theory be removed if we decided that activating a remote shortcut altered one of the g.NavDisableXXX flag. + if ((g.NavDisableHighlight || !g.NavDisableMouseHover || !window) && !activated_shortcut) + { + // Mouse (we need a fallback in case the mouse becomes invalid after being used) + // The +1.0f offset when stored by OpenPopupEx() allows reopening this or another popup (same or another mouse button) while not moving the mouse, it is pretty standard. + // In theory we could move that +1.0f offset in OpenPopupEx() + ImVec2 p = IsMousePosValid(&g.IO.MousePos) ? g.IO.MousePos : g.MouseLastValidPos; + return ImVec2(p.x + 1.0f, p.y); + } + else + { + // When navigation is active and mouse is disabled, pick a position around the bottom left of the currently navigated item + ImRect ref_rect; + if (activated_shortcut) + ref_rect = g.LastItemData.NavRect; + else + ref_rect = WindowRectRelToAbs(window, window->NavRectRel[g.NavLayer]); + + // Take account of upcoming scrolling (maybe set mouse pos should be done in EndFrame?) + if (window->LastFrameActive != g.FrameCount && (window->ScrollTarget.x != FLT_MAX || window->ScrollTarget.y != FLT_MAX)) + { + ImVec2 next_scroll = CalcNextScrollFromScrollTargetAndClamp(window); + ref_rect.Translate(window->Scroll - next_scroll); + } + ImVec2 pos = ImVec2(ref_rect.Min.x + ImMin(g.Style.FramePadding.x * 4, ref_rect.GetWidth()), ref_rect.Max.y - ImMin(g.Style.FramePadding.y, ref_rect.GetHeight())); + ImGuiViewport* viewport = GetMainViewport(); + return ImTrunc(ImClamp(pos, viewport->Pos, viewport->Pos + viewport->Size)); // ImTrunc() is important because non-integer mouse position application in backend might be lossy and result in undesirable non-zero delta. + } +} + +float ImGui::GetNavTweakPressedAmount(ImGuiAxis axis) +{ + ImGuiContext& g = *GImGui; + float repeat_delay, repeat_rate; + GetTypematicRepeatRate(ImGuiInputFlags_RepeatRateNavTweak, &repeat_delay, &repeat_rate); + + ImGuiKey key_less, key_more; + if (g.NavInputSource == ImGuiInputSource_Gamepad) + { + key_less = (axis == ImGuiAxis_X) ? ImGuiKey_GamepadDpadLeft : ImGuiKey_GamepadDpadUp; + key_more = (axis == ImGuiAxis_X) ? ImGuiKey_GamepadDpadRight : ImGuiKey_GamepadDpadDown; + } + else + { + key_less = (axis == ImGuiAxis_X) ? ImGuiKey_LeftArrow : ImGuiKey_UpArrow; + key_more = (axis == ImGuiAxis_X) ? ImGuiKey_RightArrow : ImGuiKey_DownArrow; + } + float amount = (float)GetKeyPressedAmount(key_more, repeat_delay, repeat_rate) - (float)GetKeyPressedAmount(key_less, repeat_delay, repeat_rate); + if (amount != 0.0f && IsKeyDown(key_less) && IsKeyDown(key_more)) // Cancel when opposite directions are held, regardless of repeat phase + amount = 0.0f; + return amount; +} + +static void ImGui::NavUpdate() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + io.WantSetMousePos = false; + //if (g.NavScoringDebugCount > 0) IMGUI_DEBUG_LOG_NAV("[nav] NavScoringDebugCount %d for '%s' layer %d (Init:%d, Move:%d)\n", g.NavScoringDebugCount, g.NavWindow ? g.NavWindow->Name : "NULL", g.NavLayer, g.NavInitRequest || g.NavInitResultId != 0, g.NavMoveRequest); + + // Set input source based on which keys are last pressed (as some features differs when used with Gamepad vs Keyboard) + // FIXME-NAV: Now that keys are separated maybe we can get rid of NavInputSource? + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const ImGuiKey nav_gamepad_keys_to_change_source[] = { ImGuiKey_GamepadFaceRight, ImGuiKey_GamepadFaceLeft, ImGuiKey_GamepadFaceUp, ImGuiKey_GamepadFaceDown, ImGuiKey_GamepadDpadRight, ImGuiKey_GamepadDpadLeft, ImGuiKey_GamepadDpadUp, ImGuiKey_GamepadDpadDown }; + if (nav_gamepad_active) + for (ImGuiKey key : nav_gamepad_keys_to_change_source) + if (IsKeyDown(key)) + g.NavInputSource = ImGuiInputSource_Gamepad; + const bool nav_keyboard_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + const ImGuiKey nav_keyboard_keys_to_change_source[] = { ImGuiKey_Space, ImGuiKey_Enter, ImGuiKey_Escape, ImGuiKey_RightArrow, ImGuiKey_LeftArrow, ImGuiKey_UpArrow, ImGuiKey_DownArrow }; + if (nav_keyboard_active) + for (ImGuiKey key : nav_keyboard_keys_to_change_source) + if (IsKeyDown(key)) + g.NavInputSource = ImGuiInputSource_Keyboard; + + // Process navigation init request (select first/default focus) + g.NavJustMovedToId = 0; + g.NavJustMovedToFocusScopeId = g.NavJustMovedFromFocusScopeId = 0; + if (g.NavInitResult.ID != 0) + NavInitRequestApplyResult(); + g.NavInitRequest = false; + g.NavInitRequestFromMove = false; + g.NavInitResult.ID = 0; + + // Process navigation move request + if (g.NavMoveSubmitted) + NavMoveRequestApplyResult(); + g.NavTabbingCounter = 0; + g.NavMoveSubmitted = g.NavMoveScoringItems = false; + + // Schedule mouse position update (will be done at the bottom of this function, after 1) processing all move requests and 2) updating scrolling) + bool set_mouse_pos = false; + if (g.NavMousePosDirty && g.NavIdIsAlive) + if (!g.NavDisableHighlight && g.NavDisableMouseHover && g.NavWindow) + set_mouse_pos = true; + g.NavMousePosDirty = false; + IM_ASSERT(g.NavLayer == ImGuiNavLayer_Main || g.NavLayer == ImGuiNavLayer_Menu); + + // Store our return window (for returning from Menu Layer to Main Layer) and clear it as soon as we step back in our own Layer 0 + if (g.NavWindow) + NavSaveLastChildNavWindowIntoParent(g.NavWindow); + if (g.NavWindow && g.NavWindow->NavLastChildNavWindow != NULL && g.NavLayer == ImGuiNavLayer_Main) + g.NavWindow->NavLastChildNavWindow = NULL; + + // Update CTRL+TAB and Windowing features (hold Square to move/resize/etc.) + NavUpdateWindowing(); + + // Set output flags for user application + io.NavActive = (nav_keyboard_active || nav_gamepad_active) && g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs); + io.NavVisible = (io.NavActive && g.NavId != 0 && !g.NavDisableHighlight) || (g.NavWindowingTarget != NULL); + + // Process NavCancel input (to close a popup, get back to parent, clear focus) + NavUpdateCancelRequest(); + + // Process manual activation request + g.NavActivateId = g.NavActivateDownId = g.NavActivatePressedId = 0; + g.NavActivateFlags = ImGuiActivateFlags_None; + if (g.NavId != 0 && !g.NavDisableHighlight && !g.NavWindowingTarget && g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs)) + { + const bool activate_down = (nav_keyboard_active && IsKeyDown(ImGuiKey_Space, ImGuiKeyOwner_NoOwner)) || (nav_gamepad_active && IsKeyDown(ImGuiKey_NavGamepadActivate, ImGuiKeyOwner_NoOwner)); + const bool activate_pressed = activate_down && ((nav_keyboard_active && IsKeyPressed(ImGuiKey_Space, 0, ImGuiKeyOwner_NoOwner)) || (nav_gamepad_active && IsKeyPressed(ImGuiKey_NavGamepadActivate, 0, ImGuiKeyOwner_NoOwner))); + const bool input_down = (nav_keyboard_active && (IsKeyDown(ImGuiKey_Enter, ImGuiKeyOwner_NoOwner) || IsKeyDown(ImGuiKey_KeypadEnter, ImGuiKeyOwner_NoOwner))) || (nav_gamepad_active && IsKeyDown(ImGuiKey_NavGamepadInput, ImGuiKeyOwner_NoOwner)); + const bool input_pressed = input_down && ((nav_keyboard_active && (IsKeyPressed(ImGuiKey_Enter, 0, ImGuiKeyOwner_NoOwner) || IsKeyPressed(ImGuiKey_KeypadEnter, 0, ImGuiKeyOwner_NoOwner))) || (nav_gamepad_active && IsKeyPressed(ImGuiKey_NavGamepadInput, 0, ImGuiKeyOwner_NoOwner))); + if (g.ActiveId == 0 && activate_pressed) + { + g.NavActivateId = g.NavId; + g.NavActivateFlags = ImGuiActivateFlags_PreferTweak; + } + if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && input_pressed) + { + g.NavActivateId = g.NavId; + g.NavActivateFlags = ImGuiActivateFlags_PreferInput; + } + if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && (activate_down || input_down)) + g.NavActivateDownId = g.NavId; + if ((g.ActiveId == 0 || g.ActiveId == g.NavId) && (activate_pressed || input_pressed)) + { + g.NavActivatePressedId = g.NavId; + NavHighlightActivated(g.NavId); + } + } + if (g.NavWindow && (g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs)) + g.NavDisableHighlight = true; + if (g.NavActivateId != 0) + IM_ASSERT(g.NavActivateDownId == g.NavActivateId); + + // Highlight + if (g.NavHighlightActivatedTimer > 0.0f) + g.NavHighlightActivatedTimer = ImMax(0.0f, g.NavHighlightActivatedTimer - io.DeltaTime); + if (g.NavHighlightActivatedTimer == 0.0f) + g.NavHighlightActivatedId = 0; + + // Process programmatic activation request + // FIXME-NAV: Those should eventually be queued (unlike focus they don't cancel each others) + if (g.NavNextActivateId != 0) + { + g.NavActivateId = g.NavActivateDownId = g.NavActivatePressedId = g.NavNextActivateId; + g.NavActivateFlags = g.NavNextActivateFlags; + } + g.NavNextActivateId = 0; + + // Process move requests + NavUpdateCreateMoveRequest(); + if (g.NavMoveDir == ImGuiDir_None) + NavUpdateCreateTabbingRequest(); + NavUpdateAnyRequestFlag(); + g.NavIdIsAlive = false; + + // Scrolling + if (g.NavWindow && !(g.NavWindow->Flags & ImGuiWindowFlags_NoNavInputs) && !g.NavWindowingTarget) + { + // *Fallback* manual-scroll with Nav directional keys when window has no navigable item + ImGuiWindow* window = g.NavWindow; + const float scroll_speed = IM_ROUND(window->CalcFontSize() * 100 * io.DeltaTime); // We need round the scrolling speed because sub-pixel scroll isn't reliably supported. + const ImGuiDir move_dir = g.NavMoveDir; + if (window->DC.NavLayersActiveMask == 0x00 && window->DC.NavWindowHasScrollY && move_dir != ImGuiDir_None) + { + if (move_dir == ImGuiDir_Left || move_dir == ImGuiDir_Right) + SetScrollX(window, ImTrunc(window->Scroll.x + ((move_dir == ImGuiDir_Left) ? -1.0f : +1.0f) * scroll_speed)); + if (move_dir == ImGuiDir_Up || move_dir == ImGuiDir_Down) + SetScrollY(window, ImTrunc(window->Scroll.y + ((move_dir == ImGuiDir_Up) ? -1.0f : +1.0f) * scroll_speed)); + } + + // *Normal* Manual scroll with LStick + // Next movement request will clamp the NavId reference rectangle to the visible area, so navigation will resume within those bounds. + if (nav_gamepad_active) + { + const ImVec2 scroll_dir = GetKeyMagnitude2d(ImGuiKey_GamepadLStickLeft, ImGuiKey_GamepadLStickRight, ImGuiKey_GamepadLStickUp, ImGuiKey_GamepadLStickDown); + const float tweak_factor = IsKeyDown(ImGuiKey_NavGamepadTweakSlow) ? 1.0f / 10.0f : IsKeyDown(ImGuiKey_NavGamepadTweakFast) ? 10.0f : 1.0f; + if (scroll_dir.x != 0.0f && window->ScrollbarX) + SetScrollX(window, ImTrunc(window->Scroll.x + scroll_dir.x * scroll_speed * tweak_factor)); + if (scroll_dir.y != 0.0f) + SetScrollY(window, ImTrunc(window->Scroll.y + scroll_dir.y * scroll_speed * tweak_factor)); + } + } + + // Always prioritize mouse highlight if navigation is disabled + if (!nav_keyboard_active && !nav_gamepad_active) + { + g.NavDisableHighlight = true; + g.NavDisableMouseHover = set_mouse_pos = false; + } + + // Update mouse position if requested + // (This will take into account the possibility that a Scroll was queued in the window to offset our absolute mouse position before scroll has been applied) + if (set_mouse_pos && (io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) && (io.BackendFlags & ImGuiBackendFlags_HasSetMousePos)) + TeleportMousePos(NavCalcPreferredRefPos()); + + // [DEBUG] + g.NavScoringDebugCount = 0; +#if IMGUI_DEBUG_NAV_RECTS + if (ImGuiWindow* debug_window = g.NavWindow) + { + ImDrawList* draw_list = GetForegroundDrawList(debug_window); + int layer = g.NavLayer; /* for (int layer = 0; layer < 2; layer++)*/ { ImRect r = WindowRectRelToAbs(debug_window, debug_window->NavRectRel[layer]); draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 200, 0, 255)); } + //if (1) { ImU32 col = (!debug_window->Hidden) ? IM_COL32(255,0,255,255) : IM_COL32(255,0,0,255); ImVec2 p = NavCalcPreferredRefPos(); char buf[32]; ImFormatString(buf, 32, "%d", g.NavLayer); draw_list->AddCircleFilled(p, 3.0f, col); draw_list->AddText(NULL, 13.0f, p + ImVec2(8,-4), col, buf); } + } +#endif +} + +void ImGui::NavInitRequestApplyResult() +{ + // In very rare cases g.NavWindow may be null (e.g. clearing focus after requesting an init request, which does happen when releasing Alt while clicking on void) + ImGuiContext& g = *GImGui; + if (!g.NavWindow) + return; + + ImGuiNavItemData* result = &g.NavInitResult; + if (g.NavId != result->ID) + { + g.NavJustMovedFromFocusScopeId = g.NavFocusScopeId; + g.NavJustMovedToId = result->ID; + g.NavJustMovedToFocusScopeId = result->FocusScopeId; + g.NavJustMovedToKeyMods = 0; + g.NavJustMovedToIsTabbing = false; + g.NavJustMovedToHasSelectionData = (result->InFlags & ImGuiItemFlags_HasSelectionUserData) != 0; + } + + // Apply result from previous navigation init request (will typically select the first item, unless SetItemDefaultFocus() has been called) + // FIXME-NAV: On _NavFlattened windows, g.NavWindow will only be updated during subsequent frame. Not a problem currently. + IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: ApplyResult: NavID 0x%08X in Layer %d Window \"%s\"\n", result->ID, g.NavLayer, g.NavWindow->Name); + SetNavID(result->ID, g.NavLayer, result->FocusScopeId, result->RectRel); + g.NavIdIsAlive = true; // Mark as alive from previous frame as we got a result + if (result->SelectionUserData != ImGuiSelectionUserData_Invalid) + g.NavLastValidSelectionUserData = result->SelectionUserData; + if (g.NavInitRequestFromMove) + NavRestoreHighlightAfterMove(); +} + +// Bias scoring rect ahead of scoring + update preferred pos (if missing) using source position +static void NavBiasScoringRect(ImRect& r, ImVec2& preferred_pos_rel, ImGuiDir move_dir, ImGuiNavMoveFlags move_flags) +{ + // Bias initial rect + ImGuiContext& g = *GImGui; + const ImVec2 rel_to_abs_offset = g.NavWindow->DC.CursorStartPos; + + // Initialize bias on departure if we don't have any. So mouse-click + arrow will record bias. + // - We default to L/U bias, so moving down from a large source item into several columns will land on left-most column. + // - But each successful move sets new bias on one axis, only cleared when using mouse. + if ((move_flags & ImGuiNavMoveFlags_Forwarded) == 0) + { + if (preferred_pos_rel.x == FLT_MAX) + preferred_pos_rel.x = ImMin(r.Min.x + 1.0f, r.Max.x) - rel_to_abs_offset.x; + if (preferred_pos_rel.y == FLT_MAX) + preferred_pos_rel.y = r.GetCenter().y - rel_to_abs_offset.y; + } + + // Apply general bias on the other axis + if ((move_dir == ImGuiDir_Up || move_dir == ImGuiDir_Down) && preferred_pos_rel.x != FLT_MAX) + r.Min.x = r.Max.x = preferred_pos_rel.x + rel_to_abs_offset.x; + else if ((move_dir == ImGuiDir_Left || move_dir == ImGuiDir_Right) && preferred_pos_rel.y != FLT_MAX) + r.Min.y = r.Max.y = preferred_pos_rel.y + rel_to_abs_offset.y; +} + +void ImGui::NavUpdateCreateMoveRequest() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + ImGuiWindow* window = g.NavWindow; + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool nav_keyboard_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + + if (g.NavMoveForwardToNextFrame && window != NULL) + { + // Forwarding previous request (which has been modified, e.g. wrap around menus rewrite the requests with a starting rectangle at the other side of the window) + // (preserve most state, which were already set by the NavMoveRequestForward() function) + IM_ASSERT(g.NavMoveDir != ImGuiDir_None && g.NavMoveClipDir != ImGuiDir_None); + IM_ASSERT(g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded); + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequestForward %d\n", g.NavMoveDir); + } + else + { + // Initiate directional inputs request + g.NavMoveDir = ImGuiDir_None; + g.NavMoveFlags = ImGuiNavMoveFlags_None; + g.NavMoveScrollFlags = ImGuiScrollFlags_None; + if (window && !g.NavWindowingTarget && !(window->Flags & ImGuiWindowFlags_NoNavInputs)) + { + const ImGuiInputFlags repeat_mode = ImGuiInputFlags_Repeat | (ImGuiInputFlags)ImGuiInputFlags_RepeatRateNavMove; + if (!IsActiveIdUsingNavDir(ImGuiDir_Left) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadLeft, repeat_mode, ImGuiKeyOwner_NoOwner)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_LeftArrow, repeat_mode, ImGuiKeyOwner_NoOwner)))) { g.NavMoveDir = ImGuiDir_Left; } + if (!IsActiveIdUsingNavDir(ImGuiDir_Right) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadRight, repeat_mode, ImGuiKeyOwner_NoOwner)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_RightArrow, repeat_mode, ImGuiKeyOwner_NoOwner)))) { g.NavMoveDir = ImGuiDir_Right; } + if (!IsActiveIdUsingNavDir(ImGuiDir_Up) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadUp, repeat_mode, ImGuiKeyOwner_NoOwner)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_UpArrow, repeat_mode, ImGuiKeyOwner_NoOwner)))) { g.NavMoveDir = ImGuiDir_Up; } + if (!IsActiveIdUsingNavDir(ImGuiDir_Down) && ((nav_gamepad_active && IsKeyPressed(ImGuiKey_GamepadDpadDown, repeat_mode, ImGuiKeyOwner_NoOwner)) || (nav_keyboard_active && IsKeyPressed(ImGuiKey_DownArrow, repeat_mode, ImGuiKeyOwner_NoOwner)))) { g.NavMoveDir = ImGuiDir_Down; } + } + g.NavMoveClipDir = g.NavMoveDir; + g.NavScoringNoClipRect = ImRect(+FLT_MAX, +FLT_MAX, -FLT_MAX, -FLT_MAX); + } + + // Update PageUp/PageDown/Home/End scroll + // FIXME-NAV: Consider enabling those keys even without the master ImGuiConfigFlags_NavEnableKeyboard flag? + float scoring_rect_offset_y = 0.0f; + if (window && g.NavMoveDir == ImGuiDir_None && nav_keyboard_active) + scoring_rect_offset_y = NavUpdatePageUpPageDown(); + if (scoring_rect_offset_y != 0.0f) + { + g.NavScoringNoClipRect = window->InnerRect; + g.NavScoringNoClipRect.TranslateY(scoring_rect_offset_y); + } + + // [DEBUG] Always send a request when holding CTRL. Hold CTRL + Arrow change the direction. +#if IMGUI_DEBUG_NAV_SCORING + //if (io.KeyCtrl && IsKeyPressed(ImGuiKey_C)) + // g.NavMoveDirForDebug = (ImGuiDir)((g.NavMoveDirForDebug + 1) & 3); + if (io.KeyCtrl) + { + if (g.NavMoveDir == ImGuiDir_None) + g.NavMoveDir = g.NavMoveDirForDebug; + g.NavMoveClipDir = g.NavMoveDir; + g.NavMoveFlags |= ImGuiNavMoveFlags_DebugNoResult; + } +#endif + + // Submit + g.NavMoveForwardToNextFrame = false; + if (g.NavMoveDir != ImGuiDir_None) + NavMoveRequestSubmit(g.NavMoveDir, g.NavMoveClipDir, g.NavMoveFlags, g.NavMoveScrollFlags); + + // Moving with no reference triggers an init request (will be used as a fallback if the direction fails to find a match) + if (g.NavMoveSubmitted && g.NavId == 0) + { + IMGUI_DEBUG_LOG_NAV("[nav] NavInitRequest: from move, window \"%s\", layer=%d\n", window ? window->Name : "", g.NavLayer); + g.NavInitRequest = g.NavInitRequestFromMove = true; + g.NavInitResult.ID = 0; + g.NavDisableHighlight = false; + } + + // When using gamepad, we project the reference nav bounding box into window visible area. + // This is to allow resuming navigation inside the visible area after doing a large amount of scrolling, + // since with gamepad all movements are relative (can't focus a visible object like we can with the mouse). + if (g.NavMoveSubmitted && g.NavInputSource == ImGuiInputSource_Gamepad && g.NavLayer == ImGuiNavLayer_Main && window != NULL)// && (g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded)) + { + bool clamp_x = (g.NavMoveFlags & (ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_WrapX)) == 0; + bool clamp_y = (g.NavMoveFlags & (ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapY)) == 0; + ImRect inner_rect_rel = WindowRectAbsToRel(window, ImRect(window->InnerRect.Min - ImVec2(1, 1), window->InnerRect.Max + ImVec2(1, 1))); + + // Take account of changing scroll to handle triggering a new move request on a scrolling frame. (#6171) + // Otherwise 'inner_rect_rel' would be off on the move result frame. + inner_rect_rel.Translate(CalcNextScrollFromScrollTargetAndClamp(window) - window->Scroll); + + if ((clamp_x || clamp_y) && !inner_rect_rel.Contains(window->NavRectRel[g.NavLayer])) + { + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequest: clamp NavRectRel for gamepad move\n"); + float pad_x = ImMin(inner_rect_rel.GetWidth(), window->CalcFontSize() * 0.5f); + float pad_y = ImMin(inner_rect_rel.GetHeight(), window->CalcFontSize() * 0.5f); // Terrible approximation for the intent of starting navigation from first fully visible item + inner_rect_rel.Min.x = clamp_x ? (inner_rect_rel.Min.x + pad_x) : -FLT_MAX; + inner_rect_rel.Max.x = clamp_x ? (inner_rect_rel.Max.x - pad_x) : +FLT_MAX; + inner_rect_rel.Min.y = clamp_y ? (inner_rect_rel.Min.y + pad_y) : -FLT_MAX; + inner_rect_rel.Max.y = clamp_y ? (inner_rect_rel.Max.y - pad_y) : +FLT_MAX; + window->NavRectRel[g.NavLayer].ClipWithFull(inner_rect_rel); + g.NavId = 0; + } + } + + // For scoring we use a single segment on the left side our current item bounding box (not touching the edge to avoid box overlap with zero-spaced items) + ImRect scoring_rect; + if (window != NULL) + { + ImRect nav_rect_rel = !window->NavRectRel[g.NavLayer].IsInverted() ? window->NavRectRel[g.NavLayer] : ImRect(0, 0, 0, 0); + scoring_rect = WindowRectRelToAbs(window, nav_rect_rel); + scoring_rect.TranslateY(scoring_rect_offset_y); + if (g.NavMoveSubmitted) + NavBiasScoringRect(scoring_rect, window->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer], g.NavMoveDir, g.NavMoveFlags); + IM_ASSERT(!scoring_rect.IsInverted()); // Ensure we have a non-inverted bounding box here will allow us to remove extraneous ImFabs() calls in NavScoreItem(). + //GetForegroundDrawList()->AddRect(scoring_rect.Min, scoring_rect.Max, IM_COL32(255,200,0,255)); // [DEBUG] + //if (!g.NavScoringNoClipRect.IsInverted()) { GetForegroundDrawList()->AddRect(g.NavScoringNoClipRect.Min, g.NavScoringNoClipRect.Max, IM_COL32(255, 200, 0, 255)); } // [DEBUG] + } + g.NavScoringRect = scoring_rect; + g.NavScoringNoClipRect.Add(scoring_rect); +} + +void ImGui::NavUpdateCreateTabbingRequest() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + IM_ASSERT(g.NavMoveDir == ImGuiDir_None); + if (window == NULL || g.NavWindowingTarget != NULL || (window->Flags & ImGuiWindowFlags_NoNavInputs)) + return; + + const bool tab_pressed = IsKeyPressed(ImGuiKey_Tab, ImGuiInputFlags_Repeat, ImGuiKeyOwner_NoOwner) && !g.IO.KeyCtrl && !g.IO.KeyAlt; + if (!tab_pressed) + return; + + // Initiate tabbing request + // (this is ALWAYS ENABLED, regardless of ImGuiConfigFlags_NavEnableKeyboard flag!) + // See NavProcessItemForTabbingRequest() for a description of the various forward/backward tabbing cases with and without wrapping. + const bool nav_keyboard_active = (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + if (nav_keyboard_active) + g.NavTabbingDir = g.IO.KeyShift ? -1 : (g.NavDisableHighlight == true && g.ActiveId == 0) ? 0 : +1; + else + g.NavTabbingDir = g.IO.KeyShift ? -1 : (g.ActiveId == 0) ? 0 : +1; + ImGuiNavMoveFlags move_flags = ImGuiNavMoveFlags_IsTabbing | ImGuiNavMoveFlags_Activate; + ImGuiScrollFlags scroll_flags = window->Appearing ? ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_AlwaysCenterY : ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleEdgeY; + ImGuiDir clip_dir = (g.NavTabbingDir < 0) ? ImGuiDir_Up : ImGuiDir_Down; + NavMoveRequestSubmit(ImGuiDir_None, clip_dir, move_flags, scroll_flags); // FIXME-NAV: Once we refactor tabbing, add LegacyApi flag to not activate non-inputable. + g.NavTabbingCounter = -1; +} + +// Apply result from previous frame navigation directional move request. Always called from NavUpdate() +void ImGui::NavMoveRequestApplyResult() +{ + ImGuiContext& g = *GImGui; +#if IMGUI_DEBUG_NAV_SCORING + if (g.NavMoveFlags & ImGuiNavMoveFlags_DebugNoResult) // [DEBUG] Scoring all items in NavWindow at all times + return; +#endif + + // Select which result to use + ImGuiNavItemData* result = (g.NavMoveResultLocal.ID != 0) ? &g.NavMoveResultLocal : (g.NavMoveResultOther.ID != 0) ? &g.NavMoveResultOther : NULL; + + // Tabbing forward wrap + if ((g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) && result == NULL) + if ((g.NavTabbingCounter == 1 || g.NavTabbingDir == 0) && g.NavTabbingResultFirst.ID) + result = &g.NavTabbingResultFirst; + + // In a situation when there are no results but NavId != 0, re-enable the Navigation highlight (because g.NavId is not considered as a possible result) + const ImGuiAxis axis = (g.NavMoveDir == ImGuiDir_Up || g.NavMoveDir == ImGuiDir_Down) ? ImGuiAxis_Y : ImGuiAxis_X; + if (result == NULL) + { + if (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) + g.NavMoveFlags |= ImGuiNavMoveFlags_NoSetNavHighlight; + if (g.NavId != 0 && (g.NavMoveFlags & ImGuiNavMoveFlags_NoSetNavHighlight) == 0) + NavRestoreHighlightAfterMove(); + NavClearPreferredPosForAxis(axis); // On a failed move, clear preferred pos for this axis. + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveSubmitted but not led to a result!\n"); + return; + } + + // PageUp/PageDown behavior first jumps to the bottom/top mostly visible item, _otherwise_ use the result from the previous/next page. + if (g.NavMoveFlags & ImGuiNavMoveFlags_AlsoScoreVisibleSet) + if (g.NavMoveResultLocalVisible.ID != 0 && g.NavMoveResultLocalVisible.ID != g.NavId) + result = &g.NavMoveResultLocalVisible; + + // Maybe entering a flattened child from the outside? In this case solve the tie using the regular scoring rules. + if (result != &g.NavMoveResultOther && g.NavMoveResultOther.ID != 0 && g.NavMoveResultOther.Window->ParentWindow == g.NavWindow) + if ((g.NavMoveResultOther.DistBox < result->DistBox) || (g.NavMoveResultOther.DistBox == result->DistBox && g.NavMoveResultOther.DistCenter < result->DistCenter)) + result = &g.NavMoveResultOther; + IM_ASSERT(g.NavWindow && result->Window); + + // Scroll to keep newly navigated item fully into view. + if (g.NavLayer == ImGuiNavLayer_Main) + { + ImRect rect_abs = WindowRectRelToAbs(result->Window, result->RectRel); + ScrollToRectEx(result->Window, rect_abs, g.NavMoveScrollFlags); + + if (g.NavMoveFlags & ImGuiNavMoveFlags_ScrollToEdgeY) + { + // FIXME: Should remove this? Or make more precise: use ScrollToRectEx() with edge? + float scroll_target = (g.NavMoveDir == ImGuiDir_Up) ? result->Window->ScrollMax.y : 0.0f; + SetScrollY(result->Window, scroll_target); + } + } + + if (g.NavWindow != result->Window) + { + IMGUI_DEBUG_LOG_FOCUS("[focus] NavMoveRequest: SetNavWindow(\"%s\")\n", result->Window->Name); + g.NavWindow = result->Window; + g.NavLastValidSelectionUserData = ImGuiSelectionUserData_Invalid; + } + + // Clear active id unless requested not to + // FIXME: ImGuiNavMoveFlags_NoClearActiveId is currently unused as we don't have a clear strategy to preserve active id after interaction, + // so this is mostly provided as a gateway for further experiments (see #1418, #2890) + if (g.ActiveId != result->ID && (g.NavMoveFlags & ImGuiNavMoveFlags_NoClearActiveId) == 0) + ClearActiveID(); + + // Don't set NavJustMovedToId if just landed on the same spot (which may happen with ImGuiNavMoveFlags_AllowCurrentNavId) + // PageUp/PageDown however sets always set NavJustMovedTo (vs Home/End which doesn't) mimicking Windows behavior. + if ((g.NavId != result->ID || (g.NavMoveFlags & ImGuiNavMoveFlags_IsPageMove)) && (g.NavMoveFlags & ImGuiNavMoveFlags_NoSelect) == 0) + { + g.NavJustMovedFromFocusScopeId = g.NavFocusScopeId; + g.NavJustMovedToId = result->ID; + g.NavJustMovedToFocusScopeId = result->FocusScopeId; + g.NavJustMovedToKeyMods = g.NavMoveKeyMods; + g.NavJustMovedToIsTabbing = (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) != 0; + g.NavJustMovedToHasSelectionData = (result->InFlags & ImGuiItemFlags_HasSelectionUserData) != 0; + //IMGUI_DEBUG_LOG_NAV("[nav] NavJustMovedFromFocusScopeId = 0x%08X, NavJustMovedToFocusScopeId = 0x%08X\n", g.NavJustMovedFromFocusScopeId, g.NavJustMovedToFocusScopeId); + } + + // Apply new NavID/Focus + IMGUI_DEBUG_LOG_NAV("[nav] NavMoveRequest: result NavID 0x%08X in Layer %d Window \"%s\"\n", result->ID, g.NavLayer, g.NavWindow->Name); + ImVec2 preferred_scoring_pos_rel = g.NavWindow->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer]; + SetNavID(result->ID, g.NavLayer, result->FocusScopeId, result->RectRel); + if (result->SelectionUserData != ImGuiSelectionUserData_Invalid) + g.NavLastValidSelectionUserData = result->SelectionUserData; + + // Restore last preferred position for current axis + // (storing in RootWindowForNav-> as the info is desirable at the beginning of a Move Request. In theory all storage should use RootWindowForNav..) + if ((g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) == 0) + { + preferred_scoring_pos_rel[axis] = result->RectRel.GetCenter()[axis]; + g.NavWindow->RootWindowForNav->NavPreferredScoringPosRel[g.NavLayer] = preferred_scoring_pos_rel; + } + + // Tabbing: Activates Inputable, otherwise only Focus + if ((g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) && (result->InFlags & ImGuiItemFlags_Inputable) == 0) + g.NavMoveFlags &= ~ImGuiNavMoveFlags_Activate; + + // Activate + if (g.NavMoveFlags & ImGuiNavMoveFlags_Activate) + { + g.NavNextActivateId = result->ID; + g.NavNextActivateFlags = ImGuiActivateFlags_None; + if (g.NavMoveFlags & ImGuiNavMoveFlags_IsTabbing) + g.NavNextActivateFlags |= ImGuiActivateFlags_PreferInput | ImGuiActivateFlags_TryToPreserveState | ImGuiActivateFlags_FromTabbing; + } + + // Enable nav highlight + if ((g.NavMoveFlags & ImGuiNavMoveFlags_NoSetNavHighlight) == 0) + NavRestoreHighlightAfterMove(); +} + +// Process NavCancel input (to close a popup, get back to parent, clear focus) +// FIXME: In order to support e.g. Escape to clear a selection we'll need: +// - either to store the equivalent of ActiveIdUsingKeyInputMask for a FocusScope and test for it. +// - either to move most/all of those tests to the epilogue/end functions of the scope they are dealing with (e.g. exit child window in EndChild()) or in EndFrame(), to allow an earlier intercept +static void ImGui::NavUpdateCancelRequest() +{ + ImGuiContext& g = *GImGui; + const bool nav_gamepad_active = (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (g.IO.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool nav_keyboard_active = (g.IO.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + if (!(nav_keyboard_active && IsKeyPressed(ImGuiKey_Escape, 0, ImGuiKeyOwner_NoOwner)) && !(nav_gamepad_active && IsKeyPressed(ImGuiKey_NavGamepadCancel, 0, ImGuiKeyOwner_NoOwner))) + return; + + IMGUI_DEBUG_LOG_NAV("[nav] NavUpdateCancelRequest()\n"); + if (g.ActiveId != 0) + { + ClearActiveID(); + } + else if (g.NavLayer != ImGuiNavLayer_Main) + { + // Leave the "menu" layer + NavRestoreLayer(ImGuiNavLayer_Main); + NavRestoreHighlightAfterMove(); + } + else if (g.NavWindow && g.NavWindow != g.NavWindow->RootWindow && !(g.NavWindow->RootWindowForNav->Flags & ImGuiWindowFlags_Popup) && g.NavWindow->RootWindowForNav->ParentWindow) + { + // Exit child window + ImGuiWindow* child_window = g.NavWindow->RootWindowForNav; + ImGuiWindow* parent_window = child_window->ParentWindow; + IM_ASSERT(child_window->ChildId != 0); + FocusWindow(parent_window); + SetNavID(child_window->ChildId, ImGuiNavLayer_Main, 0, WindowRectAbsToRel(parent_window, child_window->Rect())); + NavRestoreHighlightAfterMove(); + } + else if (g.OpenPopupStack.Size > 0 && g.OpenPopupStack.back().Window != NULL && !(g.OpenPopupStack.back().Window->Flags & ImGuiWindowFlags_Modal)) + { + // Close open popup/menu + ClosePopupToLevel(g.OpenPopupStack.Size - 1, true); + } + else + { + // Clear NavLastId for popups but keep it for regular child window so we can leave one and come back where we were + if (g.NavWindow && ((g.NavWindow->Flags & ImGuiWindowFlags_Popup) || !(g.NavWindow->Flags & ImGuiWindowFlags_ChildWindow))) + g.NavWindow->NavLastIds[0] = 0; + g.NavId = 0; + } +} + +// Handle PageUp/PageDown/Home/End keys +// Called from NavUpdateCreateMoveRequest() which will use our output to create a move request +// FIXME-NAV: This doesn't work properly with NavFlattened siblings as we use NavWindow rectangle for reference +// FIXME-NAV: how to get Home/End to aim at the beginning/end of a 2D grid? +static float ImGui::NavUpdatePageUpPageDown() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + if ((window->Flags & ImGuiWindowFlags_NoNavInputs) || g.NavWindowingTarget != NULL) + return 0.0f; + + const bool page_up_held = IsKeyDown(ImGuiKey_PageUp, ImGuiKeyOwner_NoOwner); + const bool page_down_held = IsKeyDown(ImGuiKey_PageDown, ImGuiKeyOwner_NoOwner); + const bool home_pressed = IsKeyPressed(ImGuiKey_Home, ImGuiInputFlags_Repeat, ImGuiKeyOwner_NoOwner); + const bool end_pressed = IsKeyPressed(ImGuiKey_End, ImGuiInputFlags_Repeat, ImGuiKeyOwner_NoOwner); + if (page_up_held == page_down_held && home_pressed == end_pressed) // Proceed if either (not both) are pressed, otherwise early out + return 0.0f; + + if (g.NavLayer != ImGuiNavLayer_Main) + NavRestoreLayer(ImGuiNavLayer_Main); + + if (window->DC.NavLayersActiveMask == 0x00 && window->DC.NavWindowHasScrollY) + { + // Fallback manual-scroll when window has no navigable item + if (IsKeyPressed(ImGuiKey_PageUp, ImGuiInputFlags_Repeat, ImGuiKeyOwner_NoOwner)) + SetScrollY(window, window->Scroll.y - window->InnerRect.GetHeight()); + else if (IsKeyPressed(ImGuiKey_PageDown, ImGuiInputFlags_Repeat, ImGuiKeyOwner_NoOwner)) + SetScrollY(window, window->Scroll.y + window->InnerRect.GetHeight()); + else if (home_pressed) + SetScrollY(window, 0.0f); + else if (end_pressed) + SetScrollY(window, window->ScrollMax.y); + } + else + { + ImRect& nav_rect_rel = window->NavRectRel[g.NavLayer]; + const float page_offset_y = ImMax(0.0f, window->InnerRect.GetHeight() - window->CalcFontSize() * 1.0f + nav_rect_rel.GetHeight()); + float nav_scoring_rect_offset_y = 0.0f; + if (IsKeyPressed(ImGuiKey_PageUp, true)) + { + nav_scoring_rect_offset_y = -page_offset_y; + g.NavMoveDir = ImGuiDir_Down; // Because our scoring rect is offset up, we request the down direction (so we can always land on the last item) + g.NavMoveClipDir = ImGuiDir_Up; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_AlsoScoreVisibleSet | ImGuiNavMoveFlags_IsPageMove; + } + else if (IsKeyPressed(ImGuiKey_PageDown, true)) + { + nav_scoring_rect_offset_y = +page_offset_y; + g.NavMoveDir = ImGuiDir_Up; // Because our scoring rect is offset down, we request the up direction (so we can always land on the last item) + g.NavMoveClipDir = ImGuiDir_Down; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_AlsoScoreVisibleSet | ImGuiNavMoveFlags_IsPageMove; + } + else if (home_pressed) + { + // FIXME-NAV: handling of Home/End is assuming that the top/bottom most item will be visible with Scroll.y == 0/ScrollMax.y + // Scrolling will be handled via the ImGuiNavMoveFlags_ScrollToEdgeY flag, we don't scroll immediately to avoid scrolling happening before nav result. + // Preserve current horizontal position if we have any. + nav_rect_rel.Min.y = nav_rect_rel.Max.y = 0.0f; + if (nav_rect_rel.IsInverted()) + nav_rect_rel.Min.x = nav_rect_rel.Max.x = 0.0f; + g.NavMoveDir = ImGuiDir_Down; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_ScrollToEdgeY; + // FIXME-NAV: MoveClipDir left to _None, intentional? + } + else if (end_pressed) + { + nav_rect_rel.Min.y = nav_rect_rel.Max.y = window->ContentSize.y; + if (nav_rect_rel.IsInverted()) + nav_rect_rel.Min.x = nav_rect_rel.Max.x = 0.0f; + g.NavMoveDir = ImGuiDir_Up; + g.NavMoveFlags = ImGuiNavMoveFlags_AllowCurrentNavId | ImGuiNavMoveFlags_ScrollToEdgeY; + // FIXME-NAV: MoveClipDir left to _None, intentional? + } + return nav_scoring_rect_offset_y; + } + return 0.0f; +} + +static void ImGui::NavEndFrame() +{ + ImGuiContext& g = *GImGui; + + // Show CTRL+TAB list window + if (g.NavWindowingTarget != NULL) + NavUpdateWindowingOverlay(); + + // Perform wrap-around in menus + // FIXME-NAV: Wrap may need to apply a weight bias on the other axis. e.g. 4x4 grid with 2 last items missing on last item won't handle LoopY/WrapY correctly. + // FIXME-NAV: Wrap (not Loop) support could be handled by the scoring function and then WrapX would function without an extra frame. + if (g.NavWindow && NavMoveRequestButNoResultYet() && (g.NavMoveFlags & ImGuiNavMoveFlags_WrapMask_) && (g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded) == 0) + NavUpdateCreateWrappingRequest(); +} + +static void ImGui::NavUpdateCreateWrappingRequest() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.NavWindow; + + bool do_forward = false; + ImRect bb_rel = window->NavRectRel[g.NavLayer]; + ImGuiDir clip_dir = g.NavMoveDir; + + const ImGuiNavMoveFlags move_flags = g.NavMoveFlags; + //const ImGuiAxis move_axis = (g.NavMoveDir == ImGuiDir_Up || g.NavMoveDir == ImGuiDir_Down) ? ImGuiAxis_Y : ImGuiAxis_X; + if (g.NavMoveDir == ImGuiDir_Left && (move_flags & (ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_LoopX))) + { + bb_rel.Min.x = bb_rel.Max.x = window->ContentSize.x + window->WindowPadding.x; + if (move_flags & ImGuiNavMoveFlags_WrapX) + { + bb_rel.TranslateY(-bb_rel.GetHeight()); // Previous row + clip_dir = ImGuiDir_Up; + } + do_forward = true; + } + if (g.NavMoveDir == ImGuiDir_Right && (move_flags & (ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_LoopX))) + { + bb_rel.Min.x = bb_rel.Max.x = -window->WindowPadding.x; + if (move_flags & ImGuiNavMoveFlags_WrapX) + { + bb_rel.TranslateY(+bb_rel.GetHeight()); // Next row + clip_dir = ImGuiDir_Down; + } + do_forward = true; + } + if (g.NavMoveDir == ImGuiDir_Up && (move_flags & (ImGuiNavMoveFlags_WrapY | ImGuiNavMoveFlags_LoopY))) + { + bb_rel.Min.y = bb_rel.Max.y = window->ContentSize.y + window->WindowPadding.y; + if (move_flags & ImGuiNavMoveFlags_WrapY) + { + bb_rel.TranslateX(-bb_rel.GetWidth()); // Previous column + clip_dir = ImGuiDir_Left; + } + do_forward = true; + } + if (g.NavMoveDir == ImGuiDir_Down && (move_flags & (ImGuiNavMoveFlags_WrapY | ImGuiNavMoveFlags_LoopY))) + { + bb_rel.Min.y = bb_rel.Max.y = -window->WindowPadding.y; + if (move_flags & ImGuiNavMoveFlags_WrapY) + { + bb_rel.TranslateX(+bb_rel.GetWidth()); // Next column + clip_dir = ImGuiDir_Right; + } + do_forward = true; + } + if (!do_forward) + return; + window->NavRectRel[g.NavLayer] = bb_rel; + NavClearPreferredPosForAxis(ImGuiAxis_X); + NavClearPreferredPosForAxis(ImGuiAxis_Y); + NavMoveRequestForward(g.NavMoveDir, clip_dir, move_flags, g.NavMoveScrollFlags); +} + +static int ImGui::FindWindowFocusIndex(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(g); + int order = window->FocusOrder; + IM_ASSERT(window->RootWindow == window); // No child window (not testing _ChildWindow because of docking) + IM_ASSERT(g.WindowsFocusOrder[order] == window); + return order; +} + +static ImGuiWindow* FindWindowNavFocusable(int i_start, int i_stop, int dir) // FIXME-OPT O(N) +{ + ImGuiContext& g = *GImGui; + for (int i = i_start; i >= 0 && i < g.WindowsFocusOrder.Size && i != i_stop; i += dir) + if (ImGui::IsWindowNavFocusable(g.WindowsFocusOrder[i])) + return g.WindowsFocusOrder[i]; + return NULL; +} + +static void NavUpdateWindowingHighlightWindow(int focus_change_dir) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindowingTarget); + if (g.NavWindowingTarget->Flags & ImGuiWindowFlags_Modal) + return; + + const int i_current = ImGui::FindWindowFocusIndex(g.NavWindowingTarget); + ImGuiWindow* window_target = FindWindowNavFocusable(i_current + focus_change_dir, -INT_MAX, focus_change_dir); + if (!window_target) + window_target = FindWindowNavFocusable((focus_change_dir < 0) ? (g.WindowsFocusOrder.Size - 1) : 0, i_current, focus_change_dir); + if (window_target) // Don't reset windowing target if there's a single window in the list + { + g.NavWindowingTarget = g.NavWindowingTargetAnim = window_target; + g.NavWindowingAccumDeltaPos = g.NavWindowingAccumDeltaSize = ImVec2(0.0f, 0.0f); + } + g.NavWindowingToggleLayer = false; +} + +// Windowing management mode +// Keyboard: CTRL+Tab (change focus/move/resize), Alt (toggle menu layer) +// Gamepad: Hold Menu/Square (change focus/move/resize), Tap Menu/Square (toggle menu layer) +static void ImGui::NavUpdateWindowing() +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + + ImGuiWindow* apply_focus_window = NULL; + bool apply_toggle_layer = false; + + ImGuiWindow* modal_window = GetTopMostPopupModal(); + bool allow_windowing = (modal_window == NULL); // FIXME: This prevent CTRL+TAB from being usable with windows that are inside the Begin-stack of that modal. + if (!allow_windowing) + g.NavWindowingTarget = NULL; + + // Fade out + if (g.NavWindowingTargetAnim && g.NavWindowingTarget == NULL) + { + g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha - io.DeltaTime * 10.0f, 0.0f); + if (g.DimBgRatio <= 0.0f && g.NavWindowingHighlightAlpha <= 0.0f) + g.NavWindowingTargetAnim = NULL; + } + + // Start CTRL+Tab or Square+L/R window selection + // (g.ConfigNavWindowingKeyNext/g.ConfigNavWindowingKeyPrev defaults are ImGuiMod_Ctrl|ImGuiKey_Tab and ImGuiMod_Ctrl|ImGuiMod_Shift|ImGuiKey_Tab) + const ImGuiID owner_id = ImHashStr("###NavUpdateWindowing"); + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool nav_keyboard_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableKeyboard) != 0; + const bool keyboard_next_window = allow_windowing && g.ConfigNavWindowingKeyNext && Shortcut(g.ConfigNavWindowingKeyNext, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteAlways, owner_id); + const bool keyboard_prev_window = allow_windowing && g.ConfigNavWindowingKeyPrev && Shortcut(g.ConfigNavWindowingKeyPrev, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteAlways, owner_id); + const bool start_windowing_with_gamepad = allow_windowing && nav_gamepad_active && !g.NavWindowingTarget && IsKeyPressed(ImGuiKey_NavGamepadMenu, ImGuiInputFlags_None); + const bool start_windowing_with_keyboard = allow_windowing && !g.NavWindowingTarget && (keyboard_next_window || keyboard_prev_window); // Note: enabled even without NavEnableKeyboard! + if (start_windowing_with_gamepad || start_windowing_with_keyboard) + if (ImGuiWindow* window = g.NavWindow ? g.NavWindow : FindWindowNavFocusable(g.WindowsFocusOrder.Size - 1, -INT_MAX, -1)) + { + g.NavWindowingTarget = g.NavWindowingTargetAnim = window->RootWindow; + g.NavWindowingTimer = g.NavWindowingHighlightAlpha = 0.0f; + g.NavWindowingAccumDeltaPos = g.NavWindowingAccumDeltaSize = ImVec2(0.0f, 0.0f); + g.NavWindowingToggleLayer = start_windowing_with_gamepad ? true : false; // Gamepad starts toggling layer + g.NavInputSource = start_windowing_with_keyboard ? ImGuiInputSource_Keyboard : ImGuiInputSource_Gamepad; + + // Manually register ownership of our mods. Using a global route in the Shortcut() calls instead would probably be correct but may have more side-effects. + if (keyboard_next_window || keyboard_prev_window) + SetKeyOwnersForKeyChord((g.ConfigNavWindowingKeyNext | g.ConfigNavWindowingKeyPrev) & ImGuiMod_Mask_, owner_id); + } + + // Gamepad update + g.NavWindowingTimer += io.DeltaTime; + if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Gamepad) + { + // Highlight only appears after a brief time holding the button, so that a fast tap on PadMenu (to toggle NavLayer) doesn't add visual noise + g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f)); + + // Select window to focus + const int focus_change_dir = (int)IsKeyPressed(ImGuiKey_GamepadL1) - (int)IsKeyPressed(ImGuiKey_GamepadR1); + if (focus_change_dir != 0) + { + NavUpdateWindowingHighlightWindow(focus_change_dir); + g.NavWindowingHighlightAlpha = 1.0f; + } + + // Single press toggles NavLayer, long press with L/R apply actual focus on release (until then the window was merely rendered top-most) + if (!IsKeyDown(ImGuiKey_NavGamepadMenu)) + { + g.NavWindowingToggleLayer &= (g.NavWindowingHighlightAlpha < 1.0f); // Once button was held long enough we don't consider it a tap-to-toggle-layer press anymore. + if (g.NavWindowingToggleLayer && g.NavWindow) + apply_toggle_layer = true; + else if (!g.NavWindowingToggleLayer) + apply_focus_window = g.NavWindowingTarget; + g.NavWindowingTarget = NULL; + } + } + + // Keyboard: Focus + if (g.NavWindowingTarget && g.NavInputSource == ImGuiInputSource_Keyboard) + { + // Visuals only appears after a brief time after pressing TAB the first time, so that a fast CTRL+TAB doesn't add visual noise + ImGuiKeyChord shared_mods = ((g.ConfigNavWindowingKeyNext ? g.ConfigNavWindowingKeyNext : ImGuiMod_Mask_) & (g.ConfigNavWindowingKeyPrev ? g.ConfigNavWindowingKeyPrev : ImGuiMod_Mask_)) & ImGuiMod_Mask_; + IM_ASSERT(shared_mods != 0); // Next/Prev shortcut currently needs a shared modifier to "hold", otherwise Prev actions would keep cycling between two windows. + g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha, ImSaturate((g.NavWindowingTimer - NAV_WINDOWING_HIGHLIGHT_DELAY) / 0.05f)); // 1.0f + if (keyboard_next_window || keyboard_prev_window) + NavUpdateWindowingHighlightWindow(keyboard_next_window ? -1 : +1); + else if ((io.KeyMods & shared_mods) != shared_mods) + apply_focus_window = g.NavWindowingTarget; + } + + // Keyboard: Press and Release ALT to toggle menu layer + const ImGuiKey windowing_toggle_keys[] = { ImGuiKey_LeftAlt, ImGuiKey_RightAlt }; + bool windowing_toggle_layer_start = false; + for (ImGuiKey windowing_toggle_key : windowing_toggle_keys) + if (nav_keyboard_active && IsKeyPressed(windowing_toggle_key, 0, ImGuiKeyOwner_NoOwner)) + { + windowing_toggle_layer_start = true; + g.NavWindowingToggleLayer = true; + g.NavWindowingToggleKey = windowing_toggle_key; + g.NavInputSource = ImGuiInputSource_Keyboard; + break; + } + if (g.NavWindowingToggleLayer && g.NavInputSource == ImGuiInputSource_Keyboard) + { + // We cancel toggling nav layer when any text has been typed (generally while holding Alt). (See #370) + // We cancel toggling nav layer when other modifiers are pressed. (See #4439) + // - AltGR is Alt+Ctrl on some layout but we can't reliably detect it (not all backends/systems/layout emit it as Alt+Ctrl). + // We cancel toggling nav layer if an owner has claimed the key. + if (io.InputQueueCharacters.Size > 0 || io.KeyCtrl || io.KeyShift || io.KeySuper) + g.NavWindowingToggleLayer = false; + else if (windowing_toggle_layer_start == false && g.LastKeyboardKeyPressTime == g.Time) + g.NavWindowingToggleLayer = false; + else if (TestKeyOwner(g.NavWindowingToggleKey, ImGuiKeyOwner_NoOwner) == false || TestKeyOwner(ImGuiMod_Alt, ImGuiKeyOwner_NoOwner) == false) + g.NavWindowingToggleLayer = false; + + // Apply layer toggle on Alt release + // Important: as before version <18314 we lacked an explicit IO event for focus gain/loss, we also compare mouse validity to detect old backends clearing mouse pos on focus loss. + if (IsKeyReleased(g.NavWindowingToggleKey) && g.NavWindowingToggleLayer) + if (g.ActiveId == 0 || g.ActiveIdAllowOverlap) + if (IsMousePosValid(&io.MousePos) == IsMousePosValid(&io.MousePosPrev)) + apply_toggle_layer = true; + if (!IsKeyDown(g.NavWindowingToggleKey)) + g.NavWindowingToggleLayer = false; + } + + // Move window + if (g.NavWindowingTarget && !(g.NavWindowingTarget->Flags & ImGuiWindowFlags_NoMove)) + { + ImVec2 nav_move_dir; + if (g.NavInputSource == ImGuiInputSource_Keyboard && !io.KeyShift) + nav_move_dir = GetKeyMagnitude2d(ImGuiKey_LeftArrow, ImGuiKey_RightArrow, ImGuiKey_UpArrow, ImGuiKey_DownArrow); + if (g.NavInputSource == ImGuiInputSource_Gamepad) + nav_move_dir = GetKeyMagnitude2d(ImGuiKey_GamepadLStickLeft, ImGuiKey_GamepadLStickRight, ImGuiKey_GamepadLStickUp, ImGuiKey_GamepadLStickDown); + if (nav_move_dir.x != 0.0f || nav_move_dir.y != 0.0f) + { + const float NAV_MOVE_SPEED = 800.0f; + const float move_step = NAV_MOVE_SPEED * io.DeltaTime * ImMin(io.DisplayFramebufferScale.x, io.DisplayFramebufferScale.y); + g.NavWindowingAccumDeltaPos += nav_move_dir * move_step; + g.NavDisableMouseHover = true; + ImVec2 accum_floored = ImTrunc(g.NavWindowingAccumDeltaPos); + if (accum_floored.x != 0.0f || accum_floored.y != 0.0f) + { + ImGuiWindow* moving_window = g.NavWindowingTarget->RootWindow; + SetWindowPos(moving_window, moving_window->Pos + accum_floored, ImGuiCond_Always); + g.NavWindowingAccumDeltaPos -= accum_floored; + } + } + } + + // Apply final focus + if (apply_focus_window && (g.NavWindow == NULL || apply_focus_window != g.NavWindow->RootWindow)) + { + ClearActiveID(); + NavRestoreHighlightAfterMove(); + ClosePopupsOverWindow(apply_focus_window, false); + FocusWindow(apply_focus_window, ImGuiFocusRequestFlags_RestoreFocusedChild); + apply_focus_window = g.NavWindow; + if (apply_focus_window->NavLastIds[0] == 0) + NavInitWindow(apply_focus_window, false); + + // If the window has ONLY a menu layer (no main layer), select it directly + // Use NavLayersActiveMaskNext since windows didn't have a chance to be Begin()-ed on this frame, + // so CTRL+Tab where the keys are only held for 1 frame will be able to use correct layers mask since + // the target window as already been previewed once. + // FIXME-NAV: This should be done in NavInit.. or in FocusWindow... However in both of those cases, + // we won't have a guarantee that windows has been visible before and therefore NavLayersActiveMask* + // won't be valid. + if (apply_focus_window->DC.NavLayersActiveMaskNext == (1 << ImGuiNavLayer_Menu)) + g.NavLayer = ImGuiNavLayer_Menu; + } + if (apply_focus_window) + g.NavWindowingTarget = NULL; + + // Apply menu/layer toggle + if (apply_toggle_layer && g.NavWindow) + { + ClearActiveID(); + + // Move to parent menu if necessary + ImGuiWindow* new_nav_window = g.NavWindow; + while (new_nav_window->ParentWindow + && (new_nav_window->DC.NavLayersActiveMask & (1 << ImGuiNavLayer_Menu)) == 0 + && (new_nav_window->Flags & ImGuiWindowFlags_ChildWindow) != 0 + && (new_nav_window->Flags & (ImGuiWindowFlags_Popup | ImGuiWindowFlags_ChildMenu)) == 0) + new_nav_window = new_nav_window->ParentWindow; + if (new_nav_window != g.NavWindow) + { + ImGuiWindow* old_nav_window = g.NavWindow; + FocusWindow(new_nav_window); + new_nav_window->NavLastChildNavWindow = old_nav_window; + } + + // Toggle layer + const ImGuiNavLayer new_nav_layer = (g.NavWindow->DC.NavLayersActiveMask & (1 << ImGuiNavLayer_Menu)) ? (ImGuiNavLayer)((int)g.NavLayer ^ 1) : ImGuiNavLayer_Main; + if (new_nav_layer != g.NavLayer) + { + // Reinitialize navigation when entering menu bar with the Alt key (FIXME: could be a properly of the layer?) + if (new_nav_layer == ImGuiNavLayer_Menu) + g.NavWindow->NavLastIds[new_nav_layer] = 0; + NavRestoreLayer(new_nav_layer); + NavRestoreHighlightAfterMove(); + } + } +} + +// Window has already passed the IsWindowNavFocusable() +static const char* GetFallbackWindowNameForWindowingList(ImGuiWindow* window) +{ + if (window->Flags & ImGuiWindowFlags_Popup) + return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingPopup); + if ((window->Flags & ImGuiWindowFlags_MenuBar) && strcmp(window->Name, "##MainMenuBar") == 0) + return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingMainMenuBar); + return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingUntitled); +} + +// Overlay displayed when using CTRL+TAB. Called by EndFrame(). +void ImGui::NavUpdateWindowingOverlay() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.NavWindowingTarget != NULL); + + if (g.NavWindowingTimer < NAV_WINDOWING_LIST_APPEAR_DELAY) + return; + + if (g.NavWindowingListWindow == NULL) + g.NavWindowingListWindow = FindWindowByName("###NavWindowingList"); + const ImGuiViewport* viewport = GetMainViewport(); + SetNextWindowSizeConstraints(ImVec2(viewport->Size.x * 0.20f, viewport->Size.y * 0.20f), ImVec2(FLT_MAX, FLT_MAX)); + SetNextWindowPos(viewport->GetCenter(), ImGuiCond_Always, ImVec2(0.5f, 0.5f)); + PushStyleVar(ImGuiStyleVar_WindowPadding, g.Style.WindowPadding * 2.0f); + Begin("###NavWindowingList", NULL, ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoSavedSettings); + if (g.ContextName[0] != 0) + SeparatorText(g.ContextName); + for (int n = g.WindowsFocusOrder.Size - 1; n >= 0; n--) + { + ImGuiWindow* window = g.WindowsFocusOrder[n]; + IM_ASSERT(window != NULL); // Fix static analyzers + if (!IsWindowNavFocusable(window)) + continue; + const char* label = window->Name; + if (label == FindRenderedTextEnd(label)) + label = GetFallbackWindowNameForWindowingList(window); + Selectable(label, g.NavWindowingTarget == window); + } + End(); + PopStyleVar(); +} + + +//----------------------------------------------------------------------------- +// [SECTION] DRAG AND DROP +//----------------------------------------------------------------------------- + +bool ImGui::IsDragDropActive() +{ + ImGuiContext& g = *GImGui; + return g.DragDropActive; +} + +void ImGui::ClearDragDrop() +{ + ImGuiContext& g = *GImGui; + if (g.DragDropActive) + IMGUI_DEBUG_LOG_ACTIVEID("[dragdrop] ClearDragDrop()\n"); + g.DragDropActive = false; + g.DragDropPayload.Clear(); + g.DragDropAcceptFlags = ImGuiDragDropFlags_None; + g.DragDropAcceptIdCurr = g.DragDropAcceptIdPrev = 0; + g.DragDropAcceptIdCurrRectSurface = FLT_MAX; + g.DragDropAcceptFrameCount = -1; + + g.DragDropPayloadBufHeap.clear(); + memset(&g.DragDropPayloadBufLocal, 0, sizeof(g.DragDropPayloadBufLocal)); +} + +bool ImGui::BeginTooltipHidden() +{ + ImGuiContext& g = *GImGui; + bool ret = Begin("##Tooltip_Hidden", NULL, ImGuiWindowFlags_Tooltip | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_AlwaysAutoResize); + SetWindowHiddenAndSkipItemsForCurrentFrame(g.CurrentWindow); + return ret; +} + +// When this returns true you need to: a) call SetDragDropPayload() exactly once, b) you may render the payload visual/description, c) call EndDragDropSource() +// If the item has an identifier: +// - This assume/require the item to be activated (typically via ButtonBehavior). +// - Therefore if you want to use this with a mouse button other than left mouse button, it is up to the item itself to activate with another button. +// - We then pull and use the mouse button that was used to activate the item and use it to carry on the drag. +// If the item has no identifier: +// - Currently always assume left mouse button. +bool ImGui::BeginDragDropSource(ImGuiDragDropFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // FIXME-DRAGDROP: While in the common-most "drag from non-zero active id" case we can tell the mouse button, + // in both SourceExtern and id==0 cases we may requires something else (explicit flags or some heuristic). + ImGuiMouseButton mouse_button = ImGuiMouseButton_Left; + + bool source_drag_active = false; + ImGuiID source_id = 0; + ImGuiID source_parent_id = 0; + if ((flags & ImGuiDragDropFlags_SourceExtern) == 0) + { + source_id = g.LastItemData.ID; + if (source_id != 0) + { + // Common path: items with ID + if (g.ActiveId != source_id) + return false; + if (g.ActiveIdMouseButton != -1) + mouse_button = g.ActiveIdMouseButton; + if (g.IO.MouseDown[mouse_button] == false || window->SkipItems) + return false; + g.ActiveIdAllowOverlap = false; + } + else + { + // Uncommon path: items without ID + if (g.IO.MouseDown[mouse_button] == false || window->SkipItems) + return false; + if ((g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredRect) == 0 && (g.ActiveId == 0 || g.ActiveIdWindow != window)) + return false; + + // If you want to use BeginDragDropSource() on an item with no unique identifier for interaction, such as Text() or Image(), you need to: + // A) Read the explanation below, B) Use the ImGuiDragDropFlags_SourceAllowNullID flag. + if (!(flags & ImGuiDragDropFlags_SourceAllowNullID)) + { + IM_ASSERT(0); + return false; + } + + // Magic fallback to handle items with no assigned ID, e.g. Text(), Image() + // We build a throwaway ID based on current ID stack + relative AABB of items in window. + // THE IDENTIFIER WON'T SURVIVE ANY REPOSITIONING/RESIZINGG OF THE WIDGET, so if your widget moves your dragging operation will be canceled. + // We don't need to maintain/call ClearActiveID() as releasing the button will early out this function and trigger !ActiveIdIsAlive. + // Rely on keeping other window->LastItemXXX fields intact. + source_id = g.LastItemData.ID = window->GetIDFromRectangle(g.LastItemData.Rect); + KeepAliveID(source_id); + bool is_hovered = ItemHoverable(g.LastItemData.Rect, source_id, g.LastItemData.InFlags); + if (is_hovered && g.IO.MouseClicked[mouse_button]) + { + SetActiveID(source_id, window); + FocusWindow(window); + } + if (g.ActiveId == source_id) // Allow the underlying widget to display/return hovered during the mouse release frame, else we would get a flicker. + g.ActiveIdAllowOverlap = is_hovered; + } + if (g.ActiveId != source_id) + return false; + source_parent_id = window->IDStack.back(); + source_drag_active = IsMouseDragging(mouse_button); + + // Disable navigation and key inputs while dragging + cancel existing request if any + SetActiveIdUsingAllKeyboardKeys(); + } + else + { + // When ImGuiDragDropFlags_SourceExtern is set: + window = NULL; + source_id = ImHashStr("#SourceExtern"); + source_drag_active = true; + mouse_button = g.IO.MouseDown[0] ? 0 : -1; + KeepAliveID(source_id); + SetActiveID(source_id, NULL); + } + + IM_ASSERT(g.DragDropWithinTarget == false); // Can't nest BeginDragDropSource() and BeginDragDropTarget() + if (!source_drag_active) + return false; + + // Activate drag and drop + if (!g.DragDropActive) + { + IM_ASSERT(source_id != 0); + ClearDragDrop(); + IMGUI_DEBUG_LOG_ACTIVEID("[dragdrop] BeginDragDropSource() DragDropActive = true, source_id = 0x%08X%s\n", + source_id, (flags & ImGuiDragDropFlags_SourceExtern) ? " (EXTERN)" : ""); + ImGuiPayload& payload = g.DragDropPayload; + payload.SourceId = source_id; + payload.SourceParentId = source_parent_id; + g.DragDropActive = true; + g.DragDropSourceFlags = flags; + g.DragDropMouseButton = mouse_button; + if (payload.SourceId == g.ActiveId) + g.ActiveIdNoClearOnFocusLoss = true; + } + g.DragDropSourceFrameCount = g.FrameCount; + g.DragDropWithinSource = true; + + if (!(flags & ImGuiDragDropFlags_SourceNoPreviewTooltip)) + { + // Target can request the Source to not display its tooltip (we use a dedicated flag to make this request explicit) + // We unfortunately can't just modify the source flags and skip the call to BeginTooltip, as caller may be emitting contents. + bool ret; + if (g.DragDropAcceptIdPrev && (g.DragDropAcceptFlags & ImGuiDragDropFlags_AcceptNoPreviewTooltip)) + ret = BeginTooltipHidden(); + else + ret = BeginTooltip(); + IM_ASSERT(ret); // FIXME-NEWBEGIN: If this ever becomes false, we need to Begin("##Hidden", NULL, ImGuiWindowFlags_NoSavedSettings) + SetWindowHiddendAndSkipItemsForCurrentFrame(). + IM_UNUSED(ret); + } + + if (!(flags & ImGuiDragDropFlags_SourceNoDisableHover) && !(flags & ImGuiDragDropFlags_SourceExtern)) + g.LastItemData.StatusFlags &= ~ImGuiItemStatusFlags_HoveredRect; + + return true; +} + +void ImGui::EndDragDropSource() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.DragDropActive); + IM_ASSERT(g.DragDropWithinSource && "Not after a BeginDragDropSource()?"); + + if (!(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoPreviewTooltip)) + EndTooltip(); + + // Discard the drag if have not called SetDragDropPayload() + if (g.DragDropPayload.DataFrameCount == -1) + ClearDragDrop(); + g.DragDropWithinSource = false; +} + +// Use 'cond' to choose to submit payload on drag start or every frame +bool ImGui::SetDragDropPayload(const char* type, const void* data, size_t data_size, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + ImGuiPayload& payload = g.DragDropPayload; + if (cond == 0) + cond = ImGuiCond_Always; + + IM_ASSERT(type != NULL); + IM_ASSERT(strlen(type) < IM_ARRAYSIZE(payload.DataType) && "Payload type can be at most 32 characters long"); + IM_ASSERT((data != NULL && data_size > 0) || (data == NULL && data_size == 0)); + IM_ASSERT(cond == ImGuiCond_Always || cond == ImGuiCond_Once); + IM_ASSERT(payload.SourceId != 0); // Not called between BeginDragDropSource() and EndDragDropSource() + + if (cond == ImGuiCond_Always || payload.DataFrameCount == -1) + { + // Copy payload + ImStrncpy(payload.DataType, type, IM_ARRAYSIZE(payload.DataType)); + g.DragDropPayloadBufHeap.resize(0); + if (data_size > sizeof(g.DragDropPayloadBufLocal)) + { + // Store in heap + g.DragDropPayloadBufHeap.resize((int)data_size); + payload.Data = g.DragDropPayloadBufHeap.Data; + memcpy(payload.Data, data, data_size); + } + else if (data_size > 0) + { + // Store locally + memset(&g.DragDropPayloadBufLocal, 0, sizeof(g.DragDropPayloadBufLocal)); + payload.Data = g.DragDropPayloadBufLocal; + memcpy(payload.Data, data, data_size); + } + else + { + payload.Data = NULL; + } + payload.DataSize = (int)data_size; + } + payload.DataFrameCount = g.FrameCount; + + // Return whether the payload has been accepted + return (g.DragDropAcceptFrameCount == g.FrameCount) || (g.DragDropAcceptFrameCount == g.FrameCount - 1); +} + +bool ImGui::BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id) +{ + ImGuiContext& g = *GImGui; + if (!g.DragDropActive) + return false; + + ImGuiWindow* window = g.CurrentWindow; + ImGuiWindow* hovered_window = g.HoveredWindowUnderMovingWindow; + if (hovered_window == NULL || window->RootWindow != hovered_window->RootWindow) + return false; + IM_ASSERT(id != 0); + if (!IsMouseHoveringRect(bb.Min, bb.Max) || (id == g.DragDropPayload.SourceId)) + return false; + if (window->SkipItems) + return false; + + IM_ASSERT(g.DragDropWithinTarget == false && g.DragDropWithinSource == false); // Can't nest BeginDragDropSource() and BeginDragDropTarget() + g.DragDropTargetRect = bb; + g.DragDropTargetClipRect = window->ClipRect; // May want to be overridden by user depending on use case? + g.DragDropTargetId = id; + g.DragDropWithinTarget = true; + return true; +} + +// We don't use BeginDragDropTargetCustom() and duplicate its code because: +// 1) we use LastItemData's ImGuiItemStatusFlags_HoveredRect which handles items that push a temporarily clip rectangle in their code. Calling BeginDragDropTargetCustom(LastItemRect) would not handle them. +// 2) and it's faster. as this code may be very frequently called, we want to early out as fast as we can. +// Also note how the HoveredWindow test is positioned differently in both functions (in both functions we optimize for the cheapest early out case) +bool ImGui::BeginDragDropTarget() +{ + ImGuiContext& g = *GImGui; + if (!g.DragDropActive) + return false; + + ImGuiWindow* window = g.CurrentWindow; + if (!(g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredRect)) + return false; + ImGuiWindow* hovered_window = g.HoveredWindowUnderMovingWindow; + if (hovered_window == NULL || window->RootWindow != hovered_window->RootWindow || window->SkipItems) + return false; + + const ImRect& display_rect = (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasDisplayRect) ? g.LastItemData.DisplayRect : g.LastItemData.Rect; + ImGuiID id = g.LastItemData.ID; + if (id == 0) + { + id = window->GetIDFromRectangle(display_rect); + KeepAliveID(id); + } + if (g.DragDropPayload.SourceId == id) + return false; + + IM_ASSERT(g.DragDropWithinTarget == false && g.DragDropWithinSource == false); // Can't nest BeginDragDropSource() and BeginDragDropTarget() + g.DragDropTargetRect = display_rect; + g.DragDropTargetClipRect = (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HasClipRect) ? g.LastItemData.ClipRect : window->ClipRect; + g.DragDropTargetId = id; + g.DragDropWithinTarget = true; + return true; +} + +bool ImGui::IsDragDropPayloadBeingAccepted() +{ + ImGuiContext& g = *GImGui; + return g.DragDropActive && g.DragDropAcceptIdPrev != 0; +} + +const ImGuiPayload* ImGui::AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiPayload& payload = g.DragDropPayload; + IM_ASSERT(g.DragDropActive); // Not called between BeginDragDropTarget() and EndDragDropTarget() ? + IM_ASSERT(payload.DataFrameCount != -1); // Forgot to call EndDragDropTarget() ? + if (type != NULL && !payload.IsDataType(type)) + return NULL; + + // Accept smallest drag target bounding box, this allows us to nest drag targets conveniently without ordering constraints. + // NB: We currently accept NULL id as target. However, overlapping targets requires a unique ID to function! + const bool was_accepted_previously = (g.DragDropAcceptIdPrev == g.DragDropTargetId); + ImRect r = g.DragDropTargetRect; + float r_surface = r.GetWidth() * r.GetHeight(); + if (r_surface > g.DragDropAcceptIdCurrRectSurface) + return NULL; + + g.DragDropAcceptFlags = flags; + g.DragDropAcceptIdCurr = g.DragDropTargetId; + g.DragDropAcceptIdCurrRectSurface = r_surface; + //IMGUI_DEBUG_LOG("AcceptDragDropPayload(): %08X: accept\n", g.DragDropTargetId); + + // Render default drop visuals + payload.Preview = was_accepted_previously; + flags |= (g.DragDropSourceFlags & ImGuiDragDropFlags_AcceptNoDrawDefaultRect); // Source can also inhibit the preview (useful for external sources that live for 1 frame) + if (!(flags & ImGuiDragDropFlags_AcceptNoDrawDefaultRect) && payload.Preview) + RenderDragDropTargetRect(r, g.DragDropTargetClipRect); + + g.DragDropAcceptFrameCount = g.FrameCount; + if ((g.DragDropSourceFlags & ImGuiDragDropFlags_SourceExtern) && g.DragDropMouseButton == -1) + payload.Delivery = was_accepted_previously && (g.DragDropSourceFrameCount < g.FrameCount); + else + payload.Delivery = was_accepted_previously && !IsMouseDown(g.DragDropMouseButton); // For extern drag sources affecting OS window focus, it's easier to just test !IsMouseDown() instead of IsMouseReleased() + if (!payload.Delivery && !(flags & ImGuiDragDropFlags_AcceptBeforeDelivery)) + return NULL; + + if (payload.Delivery) + IMGUI_DEBUG_LOG_ACTIVEID("[dragdrop] AcceptDragDropPayload(): 0x%08X: payload delivery\n", g.DragDropTargetId); + return &payload; +} + +// FIXME-STYLE FIXME-DRAGDROP: Settle on a proper default visuals for drop target. +void ImGui::RenderDragDropTargetRect(const ImRect& bb, const ImRect& item_clip_rect) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImRect bb_display = bb; + bb_display.ClipWith(item_clip_rect); // Clip THEN expand so we have a way to visualize that target is not entirely visible. + bb_display.Expand(3.5f); + bool push_clip_rect = !window->ClipRect.Contains(bb_display); + if (push_clip_rect) + window->DrawList->PushClipRectFullScreen(); + window->DrawList->AddRect(bb_display.Min, bb_display.Max, GetColorU32(ImGuiCol_DragDropTarget), 0.0f, 0, 2.0f); + if (push_clip_rect) + window->DrawList->PopClipRect(); +} + +const ImGuiPayload* ImGui::GetDragDropPayload() +{ + ImGuiContext& g = *GImGui; + return (g.DragDropActive && g.DragDropPayload.DataFrameCount != -1) ? &g.DragDropPayload : NULL; +} + +void ImGui::EndDragDropTarget() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.DragDropActive); + IM_ASSERT(g.DragDropWithinTarget); + g.DragDropWithinTarget = false; + + // Clear drag and drop state payload right after delivery + if (g.DragDropPayload.Delivery) + ClearDragDrop(); +} + +//----------------------------------------------------------------------------- +// [SECTION] LOGGING/CAPTURING +//----------------------------------------------------------------------------- +// All text output from the interface can be captured into tty/file/clipboard. +// By default, tree nodes are automatically opened during logging. +//----------------------------------------------------------------------------- + +// Pass text data straight to log (without being displayed) +static inline void LogTextV(ImGuiContext& g, const char* fmt, va_list args) +{ + if (g.LogFile) + { + g.LogBuffer.Buf.resize(0); + g.LogBuffer.appendfv(fmt, args); + ImFileWrite(g.LogBuffer.c_str(), sizeof(char), (ImU64)g.LogBuffer.size(), g.LogFile); + } + else + { + g.LogBuffer.appendfv(fmt, args); + } +} + +void ImGui::LogText(const char* fmt, ...) +{ + ImGuiContext& g = *GImGui; + if (!g.LogEnabled) + return; + + va_list args; + va_start(args, fmt); + LogTextV(g, fmt, args); + va_end(args); +} + +void ImGui::LogTextV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + if (!g.LogEnabled) + return; + + LogTextV(g, fmt, args); +} + +// Internal version that takes a position to decide on newline placement and pad items according to their depth. +// We split text into individual lines to add current tree level padding +// FIXME: This code is a little complicated perhaps, considering simplifying the whole system. +void ImGui::LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + const char* prefix = g.LogNextPrefix; + const char* suffix = g.LogNextSuffix; + g.LogNextPrefix = g.LogNextSuffix = NULL; + + if (!text_end) + text_end = FindRenderedTextEnd(text, text_end); + + const bool log_new_line = ref_pos && (ref_pos->y > g.LogLinePosY + g.Style.FramePadding.y + 1); + if (ref_pos) + g.LogLinePosY = ref_pos->y; + if (log_new_line) + { + LogText(IM_NEWLINE); + g.LogLineFirstItem = true; + } + + if (prefix) + LogRenderedText(ref_pos, prefix, prefix + strlen(prefix)); // Calculate end ourself to ensure "##" are included here. + + // Re-adjust padding if we have popped out of our starting depth + if (g.LogDepthRef > window->DC.TreeDepth) + g.LogDepthRef = window->DC.TreeDepth; + const int tree_depth = (window->DC.TreeDepth - g.LogDepthRef); + + const char* text_remaining = text; + for (;;) + { + // Split the string. Each new line (after a '\n') is followed by indentation corresponding to the current depth of our log entry. + // We don't add a trailing \n yet to allow a subsequent item on the same line to be captured. + const char* line_start = text_remaining; + const char* line_end = ImStreolRange(line_start, text_end); + const bool is_last_line = (line_end == text_end); + if (line_start != line_end || !is_last_line) + { + const int line_length = (int)(line_end - line_start); + const int indentation = g.LogLineFirstItem ? tree_depth * 4 : 1; + LogText("%*s%.*s", indentation, "", line_length, line_start); + g.LogLineFirstItem = false; + if (*line_end == '\n') + { + LogText(IM_NEWLINE); + g.LogLineFirstItem = true; + } + } + if (is_last_line) + break; + text_remaining = line_end + 1; + } + + if (suffix) + LogRenderedText(ref_pos, suffix, suffix + strlen(suffix)); +} + +// Start logging/capturing text output +void ImGui::LogBegin(ImGuiLogType type, int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(g.LogEnabled == false); + IM_ASSERT(g.LogFile == NULL); + IM_ASSERT(g.LogBuffer.empty()); + g.LogEnabled = g.ItemUnclipByLog = true; + g.LogType = type; + g.LogNextPrefix = g.LogNextSuffix = NULL; + g.LogDepthRef = window->DC.TreeDepth; + g.LogDepthToExpand = ((auto_open_depth >= 0) ? auto_open_depth : g.LogDepthToExpandDefault); + g.LogLinePosY = FLT_MAX; + g.LogLineFirstItem = true; +} + +// Important: doesn't copy underlying data, use carefully (prefix/suffix must be in scope at the time of the next LogRenderedText) +void ImGui::LogSetNextTextDecoration(const char* prefix, const char* suffix) +{ + ImGuiContext& g = *GImGui; + g.LogNextPrefix = prefix; + g.LogNextSuffix = suffix; +} + +void ImGui::LogToTTY(int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + IM_UNUSED(auto_open_depth); +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + LogBegin(ImGuiLogType_TTY, auto_open_depth); + g.LogFile = stdout; +#endif +} + +// Start logging/capturing text output to given file +void ImGui::LogToFile(int auto_open_depth, const char* filename) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + + // FIXME: We could probably open the file in text mode "at", however note that clipboard/buffer logging will still + // be subject to outputting OS-incompatible carriage return if within strings the user doesn't use IM_NEWLINE. + // By opening the file in binary mode "ab" we have consistent output everywhere. + if (!filename) + filename = g.IO.LogFilename; + if (!filename || !filename[0]) + return; + ImFileHandle f = ImFileOpen(filename, "ab"); + if (!f) + { + IM_ASSERT(0); + return; + } + + LogBegin(ImGuiLogType_File, auto_open_depth); + g.LogFile = f; +} + +// Start logging/capturing text output to clipboard +void ImGui::LogToClipboard(int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + LogBegin(ImGuiLogType_Clipboard, auto_open_depth); +} + +void ImGui::LogToBuffer(int auto_open_depth) +{ + ImGuiContext& g = *GImGui; + if (g.LogEnabled) + return; + LogBegin(ImGuiLogType_Buffer, auto_open_depth); +} + +void ImGui::LogFinish() +{ + ImGuiContext& g = *GImGui; + if (!g.LogEnabled) + return; + + LogText(IM_NEWLINE); + switch (g.LogType) + { + case ImGuiLogType_TTY: +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + fflush(g.LogFile); +#endif + break; + case ImGuiLogType_File: + ImFileClose(g.LogFile); + break; + case ImGuiLogType_Buffer: + break; + case ImGuiLogType_Clipboard: + if (!g.LogBuffer.empty()) + SetClipboardText(g.LogBuffer.begin()); + break; + case ImGuiLogType_None: + IM_ASSERT(0); + break; + } + + g.LogEnabled = g.ItemUnclipByLog = false; + g.LogType = ImGuiLogType_None; + g.LogFile = NULL; + g.LogBuffer.clear(); +} + +// Helper to display logging buttons +// FIXME-OBSOLETE: We should probably obsolete this and let the user have their own helper (this is one of the oldest function alive!) +void ImGui::LogButtons() +{ + ImGuiContext& g = *GImGui; + + PushID("LogButtons"); +#ifndef IMGUI_DISABLE_TTY_FUNCTIONS + const bool log_to_tty = Button("Log To TTY"); SameLine(); +#else + const bool log_to_tty = false; +#endif + const bool log_to_file = Button("Log To File"); SameLine(); + const bool log_to_clipboard = Button("Log To Clipboard"); SameLine(); + PushItemFlag(ImGuiItemFlags_NoTabStop, true); + SetNextItemWidth(80.0f); + SliderInt("Default Depth", &g.LogDepthToExpandDefault, 0, 9, NULL); + PopItemFlag(); + PopID(); + + // Start logging at the end of the function so that the buttons don't appear in the log + if (log_to_tty) + LogToTTY(); + if (log_to_file) + LogToFile(); + if (log_to_clipboard) + LogToClipboard(); +} + + +//----------------------------------------------------------------------------- +// [SECTION] SETTINGS +//----------------------------------------------------------------------------- +// - UpdateSettings() [Internal] +// - MarkIniSettingsDirty() [Internal] +// - FindSettingsHandler() [Internal] +// - ClearIniSettings() [Internal] +// - LoadIniSettingsFromDisk() +// - LoadIniSettingsFromMemory() +// - SaveIniSettingsToDisk() +// - SaveIniSettingsToMemory() +//----------------------------------------------------------------------------- +// - CreateNewWindowSettings() [Internal] +// - FindWindowSettingsByID() [Internal] +// - FindWindowSettingsByWindow() [Internal] +// - ClearWindowSettings() [Internal] +// - WindowSettingsHandler_***() [Internal] +//----------------------------------------------------------------------------- + +// Called by NewFrame() +void ImGui::UpdateSettings() +{ + // Load settings on first frame (if not explicitly loaded manually before) + ImGuiContext& g = *GImGui; + if (!g.SettingsLoaded) + { + IM_ASSERT(g.SettingsWindows.empty()); + if (g.IO.IniFilename) + LoadIniSettingsFromDisk(g.IO.IniFilename); + g.SettingsLoaded = true; + } + + // Save settings (with a delay after the last modification, so we don't spam disk too much) + if (g.SettingsDirtyTimer > 0.0f) + { + g.SettingsDirtyTimer -= g.IO.DeltaTime; + if (g.SettingsDirtyTimer <= 0.0f) + { + if (g.IO.IniFilename != NULL) + SaveIniSettingsToDisk(g.IO.IniFilename); + else + g.IO.WantSaveIniSettings = true; // Let user know they can call SaveIniSettingsToMemory(). user will need to clear io.WantSaveIniSettings themselves. + g.SettingsDirtyTimer = 0.0f; + } + } +} + +void ImGui::MarkIniSettingsDirty() +{ + ImGuiContext& g = *GImGui; + if (g.SettingsDirtyTimer <= 0.0f) + g.SettingsDirtyTimer = g.IO.IniSavingRate; +} + +void ImGui::MarkIniSettingsDirty(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (!(window->Flags & ImGuiWindowFlags_NoSavedSettings)) + if (g.SettingsDirtyTimer <= 0.0f) + g.SettingsDirtyTimer = g.IO.IniSavingRate; +} + +void ImGui::AddSettingsHandler(const ImGuiSettingsHandler* handler) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(FindSettingsHandler(handler->TypeName) == NULL); + g.SettingsHandlers.push_back(*handler); +} + +void ImGui::RemoveSettingsHandler(const char* type_name) +{ + ImGuiContext& g = *GImGui; + if (ImGuiSettingsHandler* handler = FindSettingsHandler(type_name)) + g.SettingsHandlers.erase(handler); +} + +ImGuiSettingsHandler* ImGui::FindSettingsHandler(const char* type_name) +{ + ImGuiContext& g = *GImGui; + const ImGuiID type_hash = ImHashStr(type_name); + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.TypeHash == type_hash) + return &handler; + return NULL; +} + +// Clear all settings (windows, tables, docking etc.) +void ImGui::ClearIniSettings() +{ + ImGuiContext& g = *GImGui; + g.SettingsIniData.clear(); + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.ClearAllFn != NULL) + handler.ClearAllFn(&g, &handler); +} + +void ImGui::LoadIniSettingsFromDisk(const char* ini_filename) +{ + size_t file_data_size = 0; + char* file_data = (char*)ImFileLoadToMemory(ini_filename, "rb", &file_data_size); + if (!file_data) + return; + if (file_data_size > 0) + LoadIniSettingsFromMemory(file_data, (size_t)file_data_size); + IM_FREE(file_data); +} + +// Zero-tolerance, no error reporting, cheap .ini parsing +// Set ini_size==0 to let us use strlen(ini_data). Do not call this function with a 0 if your buffer is actually empty! +void ImGui::LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Initialized); + //IM_ASSERT(!g.WithinFrameScope && "Cannot be called between NewFrame() and EndFrame()"); + //IM_ASSERT(g.SettingsLoaded == false && g.FrameCount == 0); + + // For user convenience, we allow passing a non zero-terminated string (hence the ini_size parameter). + // For our convenience and to make the code simpler, we'll also write zero-terminators within the buffer. So let's create a writable copy.. + if (ini_size == 0) + ini_size = strlen(ini_data); + g.SettingsIniData.Buf.resize((int)ini_size + 1); + char* const buf = g.SettingsIniData.Buf.Data; + char* const buf_end = buf + ini_size; + memcpy(buf, ini_data, ini_size); + buf_end[0] = 0; + + // Call pre-read handlers + // Some types will clear their data (e.g. dock information) some types will allow merge/override (window) + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.ReadInitFn != NULL) + handler.ReadInitFn(&g, &handler); + + void* entry_data = NULL; + ImGuiSettingsHandler* entry_handler = NULL; + + char* line_end = NULL; + for (char* line = buf; line < buf_end; line = line_end + 1) + { + // Skip new lines markers, then find end of the line + while (*line == '\n' || *line == '\r') + line++; + line_end = line; + while (line_end < buf_end && *line_end != '\n' && *line_end != '\r') + line_end++; + line_end[0] = 0; + if (line[0] == ';') + continue; + if (line[0] == '[' && line_end > line && line_end[-1] == ']') + { + // Parse "[Type][Name]". Note that 'Name' can itself contains [] characters, which is acceptable with the current format and parsing code. + line_end[-1] = 0; + const char* name_end = line_end - 1; + const char* type_start = line + 1; + char* type_end = (char*)(void*)ImStrchrRange(type_start, name_end, ']'); + const char* name_start = type_end ? ImStrchrRange(type_end + 1, name_end, '[') : NULL; + if (!type_end || !name_start) + continue; + *type_end = 0; // Overwrite first ']' + name_start++; // Skip second '[' + entry_handler = FindSettingsHandler(type_start); + entry_data = entry_handler ? entry_handler->ReadOpenFn(&g, entry_handler, name_start) : NULL; + } + else if (entry_handler != NULL && entry_data != NULL) + { + // Let type handler parse the line + entry_handler->ReadLineFn(&g, entry_handler, entry_data, line); + } + } + g.SettingsLoaded = true; + + // [DEBUG] Restore untouched copy so it can be browsed in Metrics (not strictly necessary) + memcpy(buf, ini_data, ini_size); + + // Call post-read handlers + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + if (handler.ApplyAllFn != NULL) + handler.ApplyAllFn(&g, &handler); +} + +void ImGui::SaveIniSettingsToDisk(const char* ini_filename) +{ + ImGuiContext& g = *GImGui; + g.SettingsDirtyTimer = 0.0f; + if (!ini_filename) + return; + + size_t ini_data_size = 0; + const char* ini_data = SaveIniSettingsToMemory(&ini_data_size); + ImFileHandle f = ImFileOpen(ini_filename, "wt"); + if (!f) + return; + ImFileWrite(ini_data, sizeof(char), ini_data_size, f); + ImFileClose(f); +} + +// Call registered handlers (e.g. SettingsHandlerWindow_WriteAll() + custom handlers) to write their stuff into a text buffer +const char* ImGui::SaveIniSettingsToMemory(size_t* out_size) +{ + ImGuiContext& g = *GImGui; + g.SettingsDirtyTimer = 0.0f; + g.SettingsIniData.Buf.resize(0); + g.SettingsIniData.Buf.push_back(0); + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + handler.WriteAllFn(&g, &handler, &g.SettingsIniData); + if (out_size) + *out_size = (size_t)g.SettingsIniData.size(); + return g.SettingsIniData.c_str(); +} + +ImGuiWindowSettings* ImGui::CreateNewWindowSettings(const char* name) +{ + ImGuiContext& g = *GImGui; + + if (g.IO.ConfigDebugIniSettings == false) + { + // Skip to the "###" marker if any. We don't skip past to match the behavior of GetID() + // Preserve the full string when ConfigDebugVerboseIniSettings is set to make .ini inspection easier. + if (const char* p = strstr(name, "###")) + name = p; + } + const size_t name_len = strlen(name); + + // Allocate chunk + const size_t chunk_size = sizeof(ImGuiWindowSettings) + name_len + 1; + ImGuiWindowSettings* settings = g.SettingsWindows.alloc_chunk(chunk_size); + IM_PLACEMENT_NEW(settings) ImGuiWindowSettings(); + settings->ID = ImHashStr(name, name_len); + memcpy(settings->GetName(), name, name_len + 1); // Store with zero terminator + + return settings; +} + +// We don't provide a FindWindowSettingsByName() because Docking system doesn't always hold on names. +// This is called once per window .ini entry + once per newly instantiated window. +ImGuiWindowSettings* ImGui::FindWindowSettingsByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + if (settings->ID == id && !settings->WantDelete) + return settings; + return NULL; +} + +// This is faster if you are holding on a Window already as we don't need to perform a search. +ImGuiWindowSettings* ImGui::FindWindowSettingsByWindow(ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (window->SettingsOffset != -1) + return g.SettingsWindows.ptr_from_offset(window->SettingsOffset); + return FindWindowSettingsByID(window->ID); +} + +// This will revert window to its initial state, including enabling the ImGuiCond_FirstUseEver/ImGuiCond_Once conditions once more. +void ImGui::ClearWindowSettings(const char* name) +{ + //IMGUI_DEBUG_LOG("ClearWindowSettings('%s')\n", name); + ImGuiWindow* window = FindWindowByName(name); + if (window != NULL) + { + window->Flags |= ImGuiWindowFlags_NoSavedSettings; + InitOrLoadWindowSettings(window, NULL); + } + if (ImGuiWindowSettings* settings = window ? FindWindowSettingsByWindow(window) : FindWindowSettingsByID(ImHashStr(name))) + settings->WantDelete = true; +} + +static void WindowSettingsHandler_ClearAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (ImGuiWindow* window : g.Windows) + window->SettingsOffset = -1; + g.SettingsWindows.clear(); +} + +static void* WindowSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name) +{ + ImGuiID id = ImHashStr(name); + ImGuiWindowSettings* settings = ImGui::FindWindowSettingsByID(id); + if (settings) + *settings = ImGuiWindowSettings(); // Clear existing if recycling previous entry + else + settings = ImGui::CreateNewWindowSettings(name); + settings->ID = id; + settings->WantApply = true; + return (void*)settings; +} + +static void WindowSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line) +{ + ImGuiWindowSettings* settings = (ImGuiWindowSettings*)entry; + int x, y; + int i; + if (sscanf(line, "Pos=%i,%i", &x, &y) == 2) { settings->Pos = ImVec2ih((short)x, (short)y); } + else if (sscanf(line, "Size=%i,%i", &x, &y) == 2) { settings->Size = ImVec2ih((short)x, (short)y); } + else if (sscanf(line, "Collapsed=%d", &i) == 1) { settings->Collapsed = (i != 0); } + else if (sscanf(line, "IsChild=%d", &i) == 1) { settings->IsChild = (i != 0); } +} + +// Apply to existing windows (if any) +static void WindowSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + if (settings->WantApply) + { + if (ImGuiWindow* window = ImGui::FindWindowByID(settings->ID)) + ApplyWindowSettings(window, settings); + settings->WantApply = false; + } +} + +static void WindowSettingsHandler_WriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* buf) +{ + // Gather data from windows that were active during this session + // (if a window wasn't opened in this session we preserve its settings) + ImGuiContext& g = *ctx; + for (ImGuiWindow* window : g.Windows) + { + if (window->Flags & ImGuiWindowFlags_NoSavedSettings) + continue; + + ImGuiWindowSettings* settings = ImGui::FindWindowSettingsByWindow(window); + if (!settings) + { + settings = ImGui::CreateNewWindowSettings(window->Name); + window->SettingsOffset = g.SettingsWindows.offset_from_ptr(settings); + } + IM_ASSERT(settings->ID == window->ID); + settings->Pos = ImVec2ih(window->Pos); + settings->Size = ImVec2ih(window->SizeFull); + settings->IsChild = (window->Flags & ImGuiWindowFlags_ChildWindow) != 0; + settings->Collapsed = window->Collapsed; + settings->WantDelete = false; + } + + // Write to text buffer + buf->reserve(buf->size() + g.SettingsWindows.size() * 6); // ballpark reserve + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + { + if (settings->WantDelete) + continue; + const char* settings_name = settings->GetName(); + buf->appendf("[%s][%s]\n", handler->TypeName, settings_name); + if (settings->IsChild) + { + buf->appendf("IsChild=1\n"); + buf->appendf("Size=%d,%d\n", settings->Size.x, settings->Size.y); + } + else + { + buf->appendf("Pos=%d,%d\n", settings->Pos.x, settings->Pos.y); + buf->appendf("Size=%d,%d\n", settings->Size.x, settings->Size.y); + if (settings->Collapsed) + buf->appendf("Collapsed=1\n"); + } + buf->append("\n"); + } +} + + +//----------------------------------------------------------------------------- +// [SECTION] LOCALIZATION +//----------------------------------------------------------------------------- + +void ImGui::LocalizeRegisterEntries(const ImGuiLocEntry* entries, int count) +{ + ImGuiContext& g = *GImGui; + for (int n = 0; n < count; n++) + g.LocalizationTable[entries[n].Key] = entries[n].Text; +} + + +//----------------------------------------------------------------------------- +// [SECTION] VIEWPORTS, PLATFORM WINDOWS +//----------------------------------------------------------------------------- +// - GetMainViewport() +// - SetWindowViewport() [Internal] +// - UpdateViewportsNewFrame() [Internal] +// (this section is more complete in the 'docking' branch) +//----------------------------------------------------------------------------- + +ImGuiViewport* ImGui::GetMainViewport() +{ + ImGuiContext& g = *GImGui; + return g.Viewports[0]; +} + +void ImGui::SetWindowViewport(ImGuiWindow* window, ImGuiViewportP* viewport) +{ + window->Viewport = viewport; +} + +// Update viewports and monitor infos +static void ImGui::UpdateViewportsNewFrame() +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.Viewports.Size == 1); + + // Update main viewport with current platform position. + // FIXME-VIEWPORT: Size is driven by backend/user code for backward-compatibility but we should aim to make this more consistent. + ImGuiViewportP* main_viewport = g.Viewports[0]; + main_viewport->Flags = ImGuiViewportFlags_IsPlatformWindow | ImGuiViewportFlags_OwnedByApp; + main_viewport->Pos = ImVec2(0.0f, 0.0f); + main_viewport->Size = g.IO.DisplaySize; + + for (ImGuiViewportP* viewport : g.Viewports) + { + // Lock down space taken by menu bars and status bars + // Setup initial value for functions like BeginMainMenuBar(), DockSpaceOverViewport() etc. + viewport->WorkInsetMin = viewport->BuildWorkInsetMin; + viewport->WorkInsetMax = viewport->BuildWorkInsetMax; + viewport->BuildWorkInsetMin = viewport->BuildWorkInsetMax = ImVec2(0.0f, 0.0f); + viewport->UpdateWorkRect(); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] DOCKING +//----------------------------------------------------------------------------- + +// (this section is filled in the 'docking' branch) + + +//----------------------------------------------------------------------------- +// [SECTION] PLATFORM DEPENDENT HELPERS +//----------------------------------------------------------------------------- +// - Default clipboard handlers +// - Default shell function handlers +// - Default IME handlers +//----------------------------------------------------------------------------- + +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS) + +#ifdef _MSC_VER +#pragma comment(lib, "user32") +#pragma comment(lib, "kernel32") +#endif + +// Win32 clipboard implementation +// We use g.ClipboardHandlerData for temporary storage to ensure it is freed on Shutdown() +static const char* Platform_GetClipboardTextFn_DefaultImpl(ImGuiContext* ctx) +{ + ImGuiContext& g = *ctx; + g.ClipboardHandlerData.clear(); + if (!::OpenClipboard(NULL)) + return NULL; + HANDLE wbuf_handle = ::GetClipboardData(CF_UNICODETEXT); + if (wbuf_handle == NULL) + { + ::CloseClipboard(); + return NULL; + } + if (const WCHAR* wbuf_global = (const WCHAR*)::GlobalLock(wbuf_handle)) + { + int buf_len = ::WideCharToMultiByte(CP_UTF8, 0, wbuf_global, -1, NULL, 0, NULL, NULL); + g.ClipboardHandlerData.resize(buf_len); + ::WideCharToMultiByte(CP_UTF8, 0, wbuf_global, -1, g.ClipboardHandlerData.Data, buf_len, NULL, NULL); + } + ::GlobalUnlock(wbuf_handle); + ::CloseClipboard(); + return g.ClipboardHandlerData.Data; +} + +static void Platform_SetClipboardTextFn_DefaultImpl(ImGuiContext*, const char* text) +{ + if (!::OpenClipboard(NULL)) + return; + const int wbuf_length = ::MultiByteToWideChar(CP_UTF8, 0, text, -1, NULL, 0); + HGLOBAL wbuf_handle = ::GlobalAlloc(GMEM_MOVEABLE, (SIZE_T)wbuf_length * sizeof(WCHAR)); + if (wbuf_handle == NULL) + { + ::CloseClipboard(); + return; + } + WCHAR* wbuf_global = (WCHAR*)::GlobalLock(wbuf_handle); + ::MultiByteToWideChar(CP_UTF8, 0, text, -1, wbuf_global, wbuf_length); + ::GlobalUnlock(wbuf_handle); + ::EmptyClipboard(); + if (::SetClipboardData(CF_UNICODETEXT, wbuf_handle) == NULL) + ::GlobalFree(wbuf_handle); + ::CloseClipboard(); +} + +#elif defined(__APPLE__) && TARGET_OS_OSX && defined(IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS) + +#include // Use old API to avoid need for separate .mm file +static PasteboardRef main_clipboard = 0; + +// OSX clipboard implementation +// If you enable this you will need to add '-framework ApplicationServices' to your linker command-line! +static void Platform_SetClipboardTextFn_DefaultImpl(ImGuiContext*, const char* text) +{ + if (!main_clipboard) + PasteboardCreate(kPasteboardClipboard, &main_clipboard); + PasteboardClear(main_clipboard); + CFDataRef cf_data = CFDataCreate(kCFAllocatorDefault, (const UInt8*)text, strlen(text)); + if (cf_data) + { + PasteboardPutItemFlavor(main_clipboard, (PasteboardItemID)1, CFSTR("public.utf8-plain-text"), cf_data, 0); + CFRelease(cf_data); + } +} + +static const char* Platform_GetClipboardTextFn_DefaultImpl(ImGuiContext* ctx) +{ + ImGuiContext& g = *ctx; + if (!main_clipboard) + PasteboardCreate(kPasteboardClipboard, &main_clipboard); + PasteboardSynchronize(main_clipboard); + + ItemCount item_count = 0; + PasteboardGetItemCount(main_clipboard, &item_count); + for (ItemCount i = 0; i < item_count; i++) + { + PasteboardItemID item_id = 0; + PasteboardGetItemIdentifier(main_clipboard, i + 1, &item_id); + CFArrayRef flavor_type_array = 0; + PasteboardCopyItemFlavors(main_clipboard, item_id, &flavor_type_array); + for (CFIndex j = 0, nj = CFArrayGetCount(flavor_type_array); j < nj; j++) + { + CFDataRef cf_data; + if (PasteboardCopyItemFlavorData(main_clipboard, item_id, CFSTR("public.utf8-plain-text"), &cf_data) == noErr) + { + g.ClipboardHandlerData.clear(); + int length = (int)CFDataGetLength(cf_data); + g.ClipboardHandlerData.resize(length + 1); + CFDataGetBytes(cf_data, CFRangeMake(0, length), (UInt8*)g.ClipboardHandlerData.Data); + g.ClipboardHandlerData[length] = 0; + CFRelease(cf_data); + return g.ClipboardHandlerData.Data; + } + } + } + return NULL; +} + +#else + +// Local Dear ImGui-only clipboard implementation, if user hasn't defined better clipboard handlers. +static const char* Platform_GetClipboardTextFn_DefaultImpl(ImGuiContext* ctx) +{ + ImGuiContext& g = *ctx; + return g.ClipboardHandlerData.empty() ? NULL : g.ClipboardHandlerData.begin(); +} + +static void Platform_SetClipboardTextFn_DefaultImpl(ImGuiContext* ctx, const char* text) +{ + ImGuiContext& g = *ctx; + g.ClipboardHandlerData.clear(); + const char* text_end = text + strlen(text); + g.ClipboardHandlerData.resize((int)(text_end - text) + 1); + memcpy(&g.ClipboardHandlerData[0], text, (size_t)(text_end - text)); + g.ClipboardHandlerData[(int)(text_end - text)] = 0; +} + +#endif // Default clipboard handlers + +//----------------------------------------------------------------------------- + +#ifndef IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS +#if defined(__APPLE__) && TARGET_OS_IPHONE +#define IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS +#endif + +#if defined(_WIN32) && defined(IMGUI_DISABLE_WIN32_FUNCTIONS) +#define IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS +#endif +#endif + +#ifndef IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS +#ifdef _WIN32 +#include // ShellExecuteA() +#ifdef _MSC_VER +#pragma comment(lib, "shell32") +#endif +static bool Platform_OpenInShellFn_DefaultImpl(ImGuiContext*, const char* path) +{ + return (INT_PTR)::ShellExecuteA(NULL, "open", path, NULL, NULL, SW_SHOWDEFAULT) > 32; +} +#else +#include +#include +static bool Platform_OpenInShellFn_DefaultImpl(ImGuiContext*, const char* path) +{ +#if defined(__APPLE__) + const char* args[] { "open", "--", path, NULL }; +#else + const char* args[] { "xdg-open", path, NULL }; +#endif + pid_t pid = fork(); + if (pid < 0) + return false; + if (!pid) + { + execvp(args[0], const_cast(args)); + exit(-1); + } + else + { + int status; + waitpid(pid, &status, 0); + return WEXITSTATUS(status) == 0; + } +} +#endif +#else +static bool Platform_OpenInShellFn_DefaultImpl(ImGuiContext*, const char*) { return false; } +#endif // Default shell handlers + +//----------------------------------------------------------------------------- + +// Win32 API IME support (for Asian languages, etc.) +#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) + +#include +#ifdef _MSC_VER +#pragma comment(lib, "imm32") +#endif + +static void Platform_SetImeDataFn_DefaultImpl(ImGuiContext*, ImGuiViewport* viewport, ImGuiPlatformImeData* data) +{ + // Notify OS Input Method Editor of text input position + HWND hwnd = (HWND)viewport->PlatformHandleRaw; + if (hwnd == 0) + return; + + //::ImmAssociateContextEx(hwnd, NULL, data->WantVisible ? IACE_DEFAULT : 0); + if (HIMC himc = ::ImmGetContext(hwnd)) + { + COMPOSITIONFORM composition_form = {}; + composition_form.ptCurrentPos.x = (LONG)data->InputPos.x; + composition_form.ptCurrentPos.y = (LONG)data->InputPos.y; + composition_form.dwStyle = CFS_FORCE_POSITION; + ::ImmSetCompositionWindow(himc, &composition_form); + CANDIDATEFORM candidate_form = {}; + candidate_form.dwStyle = CFS_CANDIDATEPOS; + candidate_form.ptCurrentPos.x = (LONG)data->InputPos.x; + candidate_form.ptCurrentPos.y = (LONG)data->InputPos.y; + ::ImmSetCandidateWindow(himc, &candidate_form); + ::ImmReleaseContext(hwnd, himc); + } +} + +#else + +static void Platform_SetImeDataFn_DefaultImpl(ImGuiContext*, ImGuiViewport*, ImGuiPlatformImeData*) {} + +#endif // Default IME handlers + +//----------------------------------------------------------------------------- +// [SECTION] METRICS/DEBUGGER WINDOW +//----------------------------------------------------------------------------- +// - DebugRenderViewportThumbnail() [Internal] +// - RenderViewportsThumbnails() [Internal] +// - DebugTextEncoding() +// - MetricsHelpMarker() [Internal] +// - ShowFontAtlas() [Internal] +// - ShowMetricsWindow() +// - DebugNodeColumns() [Internal] +// - DebugNodeDrawList() [Internal] +// - DebugNodeDrawCmdShowMeshAndBoundingBox() [Internal] +// - DebugNodeFont() [Internal] +// - DebugNodeFontGlyph() [Internal] +// - DebugNodeStorage() [Internal] +// - DebugNodeTabBar() [Internal] +// - DebugNodeViewport() [Internal] +// - DebugNodeWindow() [Internal] +// - DebugNodeWindowSettings() [Internal] +// - DebugNodeWindowsList() [Internal] +// - DebugNodeWindowsListByBeginStackParent() [Internal] +//----------------------------------------------------------------------------- + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + +void ImGui::DebugRenderViewportThumbnail(ImDrawList* draw_list, ImGuiViewportP* viewport, const ImRect& bb) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + ImVec2 scale = bb.GetSize() / viewport->Size; + ImVec2 off = bb.Min - viewport->Pos * scale; + float alpha_mul = 1.0f; + window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_Border, alpha_mul * 0.40f)); + for (ImGuiWindow* thumb_window : g.Windows) + { + if (!thumb_window->WasActive || (thumb_window->Flags & ImGuiWindowFlags_ChildWindow)) + continue; + + ImRect thumb_r = thumb_window->Rect(); + ImRect title_r = thumb_window->TitleBarRect(); + thumb_r = ImRect(ImTrunc(off + thumb_r.Min * scale), ImTrunc(off + thumb_r.Max * scale)); + title_r = ImRect(ImTrunc(off + title_r.Min * scale), ImTrunc(off + ImVec2(title_r.Max.x, title_r.Min.y + title_r.GetHeight() * 3.0f) * scale)); // Exaggerate title bar height + thumb_r.ClipWithFull(bb); + title_r.ClipWithFull(bb); + const bool window_is_focused = (g.NavWindow && thumb_window->RootWindowForTitleBarHighlight == g.NavWindow->RootWindowForTitleBarHighlight); + window->DrawList->AddRectFilled(thumb_r.Min, thumb_r.Max, GetColorU32(ImGuiCol_WindowBg, alpha_mul)); + window->DrawList->AddRectFilled(title_r.Min, title_r.Max, GetColorU32(window_is_focused ? ImGuiCol_TitleBgActive : ImGuiCol_TitleBg, alpha_mul)); + window->DrawList->AddRect(thumb_r.Min, thumb_r.Max, GetColorU32(ImGuiCol_Border, alpha_mul)); + window->DrawList->AddText(g.Font, g.FontSize * 1.0f, title_r.Min, GetColorU32(ImGuiCol_Text, alpha_mul), thumb_window->Name, FindRenderedTextEnd(thumb_window->Name)); + } + draw_list->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_Border, alpha_mul)); + if (viewport->ID == g.DebugMetricsConfig.HighlightViewportID) + window->DrawList->AddRect(bb.Min, bb.Max, IM_COL32(255, 255, 0, 255)); +} + +static void RenderViewportsThumbnails() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + float SCALE = 1.0f / 8.0f; + ImRect bb_full(g.Viewports[0]->Pos, g.Viewports[0]->Pos + g.Viewports[0]->Size); + ImVec2 p = window->DC.CursorPos; + ImVec2 off = p - bb_full.Min * SCALE; + + // Draw viewports + for (ImGuiViewportP* viewport : g.Viewports) + { + ImRect viewport_draw_bb(off + (viewport->Pos) * SCALE, off + (viewport->Pos + viewport->Size) * SCALE); + ImGui::DebugRenderViewportThumbnail(window->DrawList, viewport, viewport_draw_bb); + } + ImGui::Dummy(bb_full.GetSize() * SCALE); +} + +// Draw an arbitrary US keyboard layout to visualize translated keys +void ImGui::DebugRenderKeyboardPreview(ImDrawList* draw_list) +{ + const float scale = ImGui::GetFontSize() / 13.0f; + const ImVec2 key_size = ImVec2(35.0f, 35.0f) * scale; + const float key_rounding = 3.0f * scale; + const ImVec2 key_face_size = ImVec2(25.0f, 25.0f) * scale; + const ImVec2 key_face_pos = ImVec2(5.0f, 3.0f) * scale; + const float key_face_rounding = 2.0f * scale; + const ImVec2 key_label_pos = ImVec2(7.0f, 4.0f) * scale; + const ImVec2 key_step = ImVec2(key_size.x - 1.0f, key_size.y - 1.0f); + const float key_row_offset = 9.0f * scale; + + ImVec2 board_min = GetCursorScreenPos(); + ImVec2 board_max = ImVec2(board_min.x + 3 * key_step.x + 2 * key_row_offset + 10.0f, board_min.y + 3 * key_step.y + 10.0f); + ImVec2 start_pos = ImVec2(board_min.x + 5.0f - key_step.x, board_min.y); + + struct KeyLayoutData { int Row, Col; const char* Label; ImGuiKey Key; }; + const KeyLayoutData keys_to_display[] = + { + { 0, 0, "", ImGuiKey_Tab }, { 0, 1, "Q", ImGuiKey_Q }, { 0, 2, "W", ImGuiKey_W }, { 0, 3, "E", ImGuiKey_E }, { 0, 4, "R", ImGuiKey_R }, + { 1, 0, "", ImGuiKey_CapsLock }, { 1, 1, "A", ImGuiKey_A }, { 1, 2, "S", ImGuiKey_S }, { 1, 3, "D", ImGuiKey_D }, { 1, 4, "F", ImGuiKey_F }, + { 2, 0, "", ImGuiKey_LeftShift },{ 2, 1, "Z", ImGuiKey_Z }, { 2, 2, "X", ImGuiKey_X }, { 2, 3, "C", ImGuiKey_C }, { 2, 4, "V", ImGuiKey_V } + }; + + // Elements rendered manually via ImDrawList API are not clipped automatically. + // While not strictly necessary, here IsItemVisible() is used to avoid rendering these shapes when they are out of view. + Dummy(board_max - board_min); + if (!IsItemVisible()) + return; + draw_list->PushClipRect(board_min, board_max, true); + for (int n = 0; n < IM_ARRAYSIZE(keys_to_display); n++) + { + const KeyLayoutData* key_data = &keys_to_display[n]; + ImVec2 key_min = ImVec2(start_pos.x + key_data->Col * key_step.x + key_data->Row * key_row_offset, start_pos.y + key_data->Row * key_step.y); + ImVec2 key_max = key_min + key_size; + draw_list->AddRectFilled(key_min, key_max, IM_COL32(204, 204, 204, 255), key_rounding); + draw_list->AddRect(key_min, key_max, IM_COL32(24, 24, 24, 255), key_rounding); + ImVec2 face_min = ImVec2(key_min.x + key_face_pos.x, key_min.y + key_face_pos.y); + ImVec2 face_max = ImVec2(face_min.x + key_face_size.x, face_min.y + key_face_size.y); + draw_list->AddRect(face_min, face_max, IM_COL32(193, 193, 193, 255), key_face_rounding, ImDrawFlags_None, 2.0f); + draw_list->AddRectFilled(face_min, face_max, IM_COL32(252, 252, 252, 255), key_face_rounding); + ImVec2 label_min = ImVec2(key_min.x + key_label_pos.x, key_min.y + key_label_pos.y); + draw_list->AddText(label_min, IM_COL32(64, 64, 64, 255), key_data->Label); + if (IsKeyDown(key_data->Key)) + draw_list->AddRectFilled(key_min, key_max, IM_COL32(255, 0, 0, 128), key_rounding); + } + draw_list->PopClipRect(); +} + +// Helper tool to diagnose between text encoding issues and font loading issues. Pass your UTF-8 string and verify that there are correct. +void ImGui::DebugTextEncoding(const char* str) +{ + Text("Text: \"%s\"", str); + if (!BeginTable("##DebugTextEncoding", 4, ImGuiTableFlags_Borders | ImGuiTableFlags_RowBg | ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_Resizable)) + return; + TableSetupColumn("Offset"); + TableSetupColumn("UTF-8"); + TableSetupColumn("Glyph"); + TableSetupColumn("Codepoint"); + TableHeadersRow(); + for (const char* p = str; *p != 0; ) + { + unsigned int c; + const int c_utf8_len = ImTextCharFromUtf8(&c, p, NULL); + TableNextColumn(); + Text("%d", (int)(p - str)); + TableNextColumn(); + for (int byte_index = 0; byte_index < c_utf8_len; byte_index++) + { + if (byte_index > 0) + SameLine(); + Text("0x%02X", (int)(unsigned char)p[byte_index]); + } + TableNextColumn(); + if (GetFont()->FindGlyphNoFallback((ImWchar)c)) + TextUnformatted(p, p + c_utf8_len); + else + TextUnformatted((c == IM_UNICODE_CODEPOINT_INVALID) ? "[invalid]" : "[missing]"); + TableNextColumn(); + Text("U+%04X", (int)c); + p += c_utf8_len; + } + EndTable(); +} + +static void DebugFlashStyleColorStop() +{ + ImGuiContext& g = *GImGui; + if (g.DebugFlashStyleColorIdx != ImGuiCol_COUNT) + g.Style.Colors[g.DebugFlashStyleColorIdx] = g.DebugFlashStyleColorBackup; + g.DebugFlashStyleColorIdx = ImGuiCol_COUNT; +} + +// Flash a given style color for some + inhibit modifications of this color via PushStyleColor() calls. +void ImGui::DebugFlashStyleColor(ImGuiCol idx) +{ + ImGuiContext& g = *GImGui; + DebugFlashStyleColorStop(); + g.DebugFlashStyleColorTime = 0.5f; + g.DebugFlashStyleColorIdx = idx; + g.DebugFlashStyleColorBackup = g.Style.Colors[idx]; +} + +void ImGui::UpdateDebugToolFlashStyleColor() +{ + ImGuiContext& g = *GImGui; + if (g.DebugFlashStyleColorTime <= 0.0f) + return; + ColorConvertHSVtoRGB(ImCos(g.DebugFlashStyleColorTime * 6.0f) * 0.5f + 0.5f, 0.5f, 0.5f, g.Style.Colors[g.DebugFlashStyleColorIdx].x, g.Style.Colors[g.DebugFlashStyleColorIdx].y, g.Style.Colors[g.DebugFlashStyleColorIdx].z); + g.Style.Colors[g.DebugFlashStyleColorIdx].w = 1.0f; + if ((g.DebugFlashStyleColorTime -= g.IO.DeltaTime) <= 0.0f) + DebugFlashStyleColorStop(); +} + +// Avoid naming collision with imgui_demo.cpp's HelpMarker() for unity builds. +static void MetricsHelpMarker(const char* desc) +{ + ImGui::TextDisabled("(?)"); + if (ImGui::BeginItemTooltip()) + { + ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); + ImGui::TextUnformatted(desc); + ImGui::PopTextWrapPos(); + ImGui::EndTooltip(); + } +} + +// [DEBUG] List fonts in a font atlas and display its texture +void ImGui::ShowFontAtlas(ImFontAtlas* atlas) +{ + for (ImFont* font : atlas->Fonts) + { + PushID(font); + DebugNodeFont(font); + PopID(); + } + if (TreeNode("Font Atlas", "Font Atlas (%dx%d pixels)", atlas->TexWidth, atlas->TexHeight)) + { + ImGuiContext& g = *GImGui; + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; + Checkbox("Tint with Text Color", &cfg->ShowAtlasTintedWithTextColor); // Using text color ensure visibility of core atlas data, but will alter custom colored icons + ImVec4 tint_col = cfg->ShowAtlasTintedWithTextColor ? GetStyleColorVec4(ImGuiCol_Text) : ImVec4(1.0f, 1.0f, 1.0f, 1.0f); + ImVec4 border_col = GetStyleColorVec4(ImGuiCol_Border); + Image(atlas->TexID, ImVec2((float)atlas->TexWidth, (float)atlas->TexHeight), ImVec2(0.0f, 0.0f), ImVec2(1.0f, 1.0f), tint_col, border_col); + TreePop(); + } +} + +void ImGui::ShowMetricsWindow(bool* p_open) +{ + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; + if (cfg->ShowDebugLog) + ShowDebugLogWindow(&cfg->ShowDebugLog); + if (cfg->ShowIDStackTool) + ShowIDStackToolWindow(&cfg->ShowIDStackTool); + + if (!Begin("Dear ImGui Metrics/Debugger", p_open) || GetCurrentWindow()->BeginCount > 1) + { + End(); + return; + } + + // [DEBUG] Clear debug breaks hooks after exactly one cycle. + DebugBreakClearData(); + + // Basic info + Text("Dear ImGui %s", GetVersion()); + if (g.ContextName[0] != 0) + { + SameLine(); + Text("(Context Name: \"%s\")", g.ContextName); + } + Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate); + Text("%d vertices, %d indices (%d triangles)", io.MetricsRenderVertices, io.MetricsRenderIndices, io.MetricsRenderIndices / 3); + Text("%d visible windows, %d current allocations", io.MetricsRenderWindows, g.DebugAllocInfo.TotalAllocCount - g.DebugAllocInfo.TotalFreeCount); + //SameLine(); if (SmallButton("GC")) { g.GcCompactAll = true; } + + Separator(); + + // Debugging enums + enum { WRT_OuterRect, WRT_OuterRectClipped, WRT_InnerRect, WRT_InnerClipRect, WRT_WorkRect, WRT_Content, WRT_ContentIdeal, WRT_ContentRegionRect, WRT_Count }; // Windows Rect Type + const char* wrt_rects_names[WRT_Count] = { "OuterRect", "OuterRectClipped", "InnerRect", "InnerClipRect", "WorkRect", "Content", "ContentIdeal", "ContentRegionRect" }; + enum { TRT_OuterRect, TRT_InnerRect, TRT_WorkRect, TRT_HostClipRect, TRT_InnerClipRect, TRT_BackgroundClipRect, TRT_ColumnsRect, TRT_ColumnsWorkRect, TRT_ColumnsClipRect, TRT_ColumnsContentHeadersUsed, TRT_ColumnsContentHeadersIdeal, TRT_ColumnsContentFrozen, TRT_ColumnsContentUnfrozen, TRT_Count }; // Tables Rect Type + const char* trt_rects_names[TRT_Count] = { "OuterRect", "InnerRect", "WorkRect", "HostClipRect", "InnerClipRect", "BackgroundClipRect", "ColumnsRect", "ColumnsWorkRect", "ColumnsClipRect", "ColumnsContentHeadersUsed", "ColumnsContentHeadersIdeal", "ColumnsContentFrozen", "ColumnsContentUnfrozen" }; + if (cfg->ShowWindowsRectsType < 0) + cfg->ShowWindowsRectsType = WRT_WorkRect; + if (cfg->ShowTablesRectsType < 0) + cfg->ShowTablesRectsType = TRT_WorkRect; + + struct Funcs + { + static ImRect GetTableRect(ImGuiTable* table, int rect_type, int n) + { + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); // Always using last submitted instance + if (rect_type == TRT_OuterRect) { return table->OuterRect; } + else if (rect_type == TRT_InnerRect) { return table->InnerRect; } + else if (rect_type == TRT_WorkRect) { return table->WorkRect; } + else if (rect_type == TRT_HostClipRect) { return table->HostClipRect; } + else if (rect_type == TRT_InnerClipRect) { return table->InnerClipRect; } + else if (rect_type == TRT_BackgroundClipRect) { return table->BgClipRect; } + else if (rect_type == TRT_ColumnsRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->MinX, table->InnerClipRect.Min.y, c->MaxX, table->InnerClipRect.Min.y + table_instance->LastOuterHeight); } + else if (rect_type == TRT_ColumnsWorkRect) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->WorkRect.Min.y, c->WorkMaxX, table->WorkRect.Max.y); } + else if (rect_type == TRT_ColumnsClipRect) { ImGuiTableColumn* c = &table->Columns[n]; return c->ClipRect; } + else if (rect_type == TRT_ColumnsContentHeadersUsed){ ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersUsed, table->InnerClipRect.Min.y + table_instance->LastTopHeadersRowHeight); } // Note: y1/y2 not always accurate + else if (rect_type == TRT_ColumnsContentHeadersIdeal){ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXHeadersIdeal, table->InnerClipRect.Min.y + table_instance->LastTopHeadersRowHeight); } + else if (rect_type == TRT_ColumnsContentFrozen) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y, c->ContentMaxXFrozen, table->InnerClipRect.Min.y + table_instance->LastFrozenHeight); } + else if (rect_type == TRT_ColumnsContentUnfrozen) { ImGuiTableColumn* c = &table->Columns[n]; return ImRect(c->WorkMinX, table->InnerClipRect.Min.y + table_instance->LastFrozenHeight, c->ContentMaxXUnfrozen, table->InnerClipRect.Max.y); } + IM_ASSERT(0); + return ImRect(); + } + + static ImRect GetWindowRect(ImGuiWindow* window, int rect_type) + { + if (rect_type == WRT_OuterRect) { return window->Rect(); } + else if (rect_type == WRT_OuterRectClipped) { return window->OuterRectClipped; } + else if (rect_type == WRT_InnerRect) { return window->InnerRect; } + else if (rect_type == WRT_InnerClipRect) { return window->InnerClipRect; } + else if (rect_type == WRT_WorkRect) { return window->WorkRect; } + else if (rect_type == WRT_Content) { ImVec2 min = window->InnerRect.Min - window->Scroll + window->WindowPadding; return ImRect(min, min + window->ContentSize); } + else if (rect_type == WRT_ContentIdeal) { ImVec2 min = window->InnerRect.Min - window->Scroll + window->WindowPadding; return ImRect(min, min + window->ContentSizeIdeal); } + else if (rect_type == WRT_ContentRegionRect) { return window->ContentRegionRect; } + IM_ASSERT(0); + return ImRect(); + } + }; + + // Tools + if (TreeNode("Tools")) + { + // Debug Break features + // The Item Picker tool is super useful to visually select an item and break into the call-stack of where it was submitted. + SeparatorTextEx(0, "Debug breaks", NULL, CalcTextSize("(?)").x + g.Style.SeparatorTextPadding.x); + SameLine(); + MetricsHelpMarker("Will call the IM_DEBUG_BREAK() macro to break in debugger.\nWarning: If you don't have a debugger attached, this will probably crash."); + if (Checkbox("Show Item Picker", &g.DebugItemPickerActive) && g.DebugItemPickerActive) + DebugStartItemPicker(); + Checkbox("Show \"Debug Break\" buttons in other sections (io.ConfigDebugIsDebuggerPresent)", &g.IO.ConfigDebugIsDebuggerPresent); + + SeparatorText("Visualize"); + + Checkbox("Show Debug Log", &cfg->ShowDebugLog); + SameLine(); + MetricsHelpMarker("You can also call ImGui::ShowDebugLogWindow() from your code."); + + Checkbox("Show ID Stack Tool", &cfg->ShowIDStackTool); + SameLine(); + MetricsHelpMarker("You can also call ImGui::ShowIDStackToolWindow() from your code."); + + Checkbox("Show windows begin order", &cfg->ShowWindowsBeginOrder); + Checkbox("Show windows rectangles", &cfg->ShowWindowsRects); + SameLine(); + SetNextItemWidth(GetFontSize() * 12); + cfg->ShowWindowsRects |= Combo("##show_windows_rect_type", &cfg->ShowWindowsRectsType, wrt_rects_names, WRT_Count, WRT_Count); + if (cfg->ShowWindowsRects && g.NavWindow != NULL) + { + BulletText("'%s':", g.NavWindow->Name); + Indent(); + for (int rect_n = 0; rect_n < WRT_Count; rect_n++) + { + ImRect r = Funcs::GetWindowRect(g.NavWindow, rect_n); + Text("(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), wrt_rects_names[rect_n]); + } + Unindent(); + } + + Checkbox("Show tables rectangles", &cfg->ShowTablesRects); + SameLine(); + SetNextItemWidth(GetFontSize() * 12); + cfg->ShowTablesRects |= Combo("##show_table_rects_type", &cfg->ShowTablesRectsType, trt_rects_names, TRT_Count, TRT_Count); + if (cfg->ShowTablesRects && g.NavWindow != NULL) + { + for (int table_n = 0; table_n < g.Tables.GetMapSize(); table_n++) + { + ImGuiTable* table = g.Tables.TryGetMapData(table_n); + if (table == NULL || table->LastFrameActive < g.FrameCount - 1 || (table->OuterWindow != g.NavWindow && table->InnerWindow != g.NavWindow)) + continue; + + BulletText("Table 0x%08X (%d columns, in '%s')", table->ID, table->ColumnsCount, table->OuterWindow->Name); + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(table->OuterRect.Min - ImVec2(1, 1), table->OuterRect.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f); + Indent(); + char buf[128]; + for (int rect_n = 0; rect_n < TRT_Count; rect_n++) + { + if (rect_n >= TRT_ColumnsRect) + { + if (rect_n != TRT_ColumnsRect && rect_n != TRT_ColumnsClipRect) + continue; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImRect r = Funcs::GetTableRect(table, rect_n, column_n); + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) Col %d %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), column_n, trt_rects_names[rect_n]); + Selectable(buf); + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(r.Min - ImVec2(1, 1), r.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f); + } + } + else + { + ImRect r = Funcs::GetTableRect(table, rect_n, -1); + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%6.1f,%6.1f) (%6.1f,%6.1f) Size (%6.1f,%6.1f) %s", r.Min.x, r.Min.y, r.Max.x, r.Max.y, r.GetWidth(), r.GetHeight(), trt_rects_names[rect_n]); + Selectable(buf); + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(r.Min - ImVec2(1, 1), r.Max + ImVec2(1, 1), IM_COL32(255, 255, 0, 255), 0.0f, 0, 2.0f); + } + } + Unindent(); + } + } + Checkbox("Show groups rectangles", &g.DebugShowGroupRects); // Storing in context as this is used by group code and prefers to be in hot-data + + SeparatorText("Validate"); + + Checkbox("Debug Begin/BeginChild return value", &io.ConfigDebugBeginReturnValueLoop); + SameLine(); + MetricsHelpMarker("Some calls to Begin()/BeginChild() will return false.\n\nWill cycle through window depths then repeat. Windows should be flickering while running."); + + Checkbox("UTF-8 Encoding viewer", &cfg->ShowTextEncodingViewer); + SameLine(); + MetricsHelpMarker("You can also call ImGui::DebugTextEncoding() from your code with a given string to test that your UTF-8 encoding settings are correct."); + if (cfg->ShowTextEncodingViewer) + { + static char buf[64] = ""; + SetNextItemWidth(-FLT_MIN); + InputText("##DebugTextEncodingBuf", buf, IM_ARRAYSIZE(buf)); + if (buf[0] != 0) + DebugTextEncoding(buf); + } + + TreePop(); + } + + // Windows + if (TreeNode("Windows", "Windows (%d)", g.Windows.Size)) + { + //SetNextItemOpen(true, ImGuiCond_Once); + DebugNodeWindowsList(&g.Windows, "By display order"); + DebugNodeWindowsList(&g.WindowsFocusOrder, "By focus order (root windows)"); + if (TreeNode("By submission order (begin stack)")) + { + // Here we display windows in their submitted order/hierarchy, however note that the Begin stack doesn't constitute a Parent<>Child relationship! + ImVector& temp_buffer = g.WindowsTempSortBuffer; + temp_buffer.resize(0); + for (ImGuiWindow* window : g.Windows) + if (window->LastFrameActive + 1 >= g.FrameCount) + temp_buffer.push_back(window); + struct Func { static int IMGUI_CDECL WindowComparerByBeginOrder(const void* lhs, const void* rhs) { return ((int)(*(const ImGuiWindow* const *)lhs)->BeginOrderWithinContext - (*(const ImGuiWindow* const*)rhs)->BeginOrderWithinContext); } }; + ImQsort(temp_buffer.Data, (size_t)temp_buffer.Size, sizeof(ImGuiWindow*), Func::WindowComparerByBeginOrder); + DebugNodeWindowsListByBeginStackParent(temp_buffer.Data, temp_buffer.Size, NULL); + TreePop(); + } + + TreePop(); + } + + // DrawLists + int drawlist_count = 0; + for (ImGuiViewportP* viewport : g.Viewports) + drawlist_count += viewport->DrawDataP.CmdLists.Size; + if (TreeNode("DrawLists", "DrawLists (%d)", drawlist_count)) + { + Checkbox("Show ImDrawCmd mesh when hovering", &cfg->ShowDrawCmdMesh); + Checkbox("Show ImDrawCmd bounding boxes when hovering", &cfg->ShowDrawCmdBoundingBoxes); + for (ImGuiViewportP* viewport : g.Viewports) + for (ImDrawList* draw_list : viewport->DrawDataP.CmdLists) + DebugNodeDrawList(NULL, viewport, draw_list, "DrawList"); + TreePop(); + } + + // Viewports + if (TreeNode("Viewports", "Viewports (%d)", g.Viewports.Size)) + { + SetNextItemOpen(true, ImGuiCond_Once); + if (TreeNode("Windows Minimap")) + { + RenderViewportsThumbnails(); + TreePop(); + } + cfg->HighlightViewportID = 0; + + for (ImGuiViewportP* viewport : g.Viewports) + DebugNodeViewport(viewport); + TreePop(); + } + + // Details for Popups + if (TreeNode("Popups", "Popups (%d)", g.OpenPopupStack.Size)) + { + for (const ImGuiPopupData& popup_data : g.OpenPopupStack) + { + // As it's difficult to interact with tree nodes while popups are open, we display everything inline. + ImGuiWindow* window = popup_data.Window; + BulletText("PopupID: %08x, Window: '%s' (%s%s), RestoreNavWindow '%s', ParentWindow '%s'", + popup_data.PopupId, window ? window->Name : "NULL", window && (window->Flags & ImGuiWindowFlags_ChildWindow) ? "Child;" : "", window && (window->Flags & ImGuiWindowFlags_ChildMenu) ? "Menu;" : "", + popup_data.RestoreNavWindow ? popup_data.RestoreNavWindow->Name : "NULL", window && window->ParentWindow ? window->ParentWindow->Name : "NULL"); + } + TreePop(); + } + + // Details for TabBars + if (TreeNode("TabBars", "Tab Bars (%d)", g.TabBars.GetAliveCount())) + { + for (int n = 0; n < g.TabBars.GetMapSize(); n++) + if (ImGuiTabBar* tab_bar = g.TabBars.TryGetMapData(n)) + { + PushID(tab_bar); + DebugNodeTabBar(tab_bar, "TabBar"); + PopID(); + } + TreePop(); + } + + // Details for Tables + if (TreeNode("Tables", "Tables (%d)", g.Tables.GetAliveCount())) + { + for (int n = 0; n < g.Tables.GetMapSize(); n++) + if (ImGuiTable* table = g.Tables.TryGetMapData(n)) + DebugNodeTable(table); + TreePop(); + } + + // Details for Fonts + ImFontAtlas* atlas = g.IO.Fonts; + if (TreeNode("Fonts", "Fonts (%d)", atlas->Fonts.Size)) + { + ShowFontAtlas(atlas); + TreePop(); + } + + // Details for InputText + if (TreeNode("InputText")) + { + DebugNodeInputTextState(&g.InputTextState); + TreePop(); + } + + // Details for TypingSelect + if (TreeNode("TypingSelect", "TypingSelect (%d)", g.TypingSelectState.SearchBuffer[0] != 0 ? 1 : 0)) + { + DebugNodeTypingSelectState(&g.TypingSelectState); + TreePop(); + } + + // Details for MultiSelect + if (TreeNode("MultiSelect", "MultiSelect (%d)", g.MultiSelectStorage.GetAliveCount())) + { + ImGuiBoxSelectState* bs = &g.BoxSelectState; + BulletText("BoxSelect ID=0x%08X, Starting = %d, Active %d", bs->ID, bs->IsStarting, bs->IsActive); + for (int n = 0; n < g.MultiSelectStorage.GetMapSize(); n++) + if (ImGuiMultiSelectState* state = g.MultiSelectStorage.TryGetMapData(n)) + DebugNodeMultiSelectState(state); + TreePop(); + } + + // Details for Docking +#ifdef IMGUI_HAS_DOCK + if (TreeNode("Docking")) + { + TreePop(); + } +#endif // #ifdef IMGUI_HAS_DOCK + + // Settings + if (TreeNode("Settings")) + { + if (SmallButton("Clear")) + ClearIniSettings(); + SameLine(); + if (SmallButton("Save to memory")) + SaveIniSettingsToMemory(); + SameLine(); + if (SmallButton("Save to disk")) + SaveIniSettingsToDisk(g.IO.IniFilename); + SameLine(); + if (g.IO.IniFilename) + Text("\"%s\"", g.IO.IniFilename); + else + TextUnformatted(""); + Checkbox("io.ConfigDebugIniSettings", &io.ConfigDebugIniSettings); + Text("SettingsDirtyTimer %.2f", g.SettingsDirtyTimer); + if (TreeNode("SettingsHandlers", "Settings handlers: (%d)", g.SettingsHandlers.Size)) + { + for (ImGuiSettingsHandler& handler : g.SettingsHandlers) + BulletText("\"%s\"", handler.TypeName); + TreePop(); + } + if (TreeNode("SettingsWindows", "Settings packed data: Windows: %d bytes", g.SettingsWindows.size())) + { + for (ImGuiWindowSettings* settings = g.SettingsWindows.begin(); settings != NULL; settings = g.SettingsWindows.next_chunk(settings)) + DebugNodeWindowSettings(settings); + TreePop(); + } + + if (TreeNode("SettingsTables", "Settings packed data: Tables: %d bytes", g.SettingsTables.size())) + { + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + DebugNodeTableSettings(settings); + TreePop(); + } + +#ifdef IMGUI_HAS_DOCK +#endif // #ifdef IMGUI_HAS_DOCK + + if (TreeNode("SettingsIniData", "Settings unpacked data (.ini): %d bytes", g.SettingsIniData.size())) + { + InputTextMultiline("##Ini", (char*)(void*)g.SettingsIniData.c_str(), g.SettingsIniData.Buf.Size, ImVec2(-FLT_MIN, GetTextLineHeight() * 20), ImGuiInputTextFlags_ReadOnly); + TreePop(); + } + TreePop(); + } + + // Settings + if (TreeNode("Memory allocations")) + { + ImGuiDebugAllocInfo* info = &g.DebugAllocInfo; + Text("%d current allocations", info->TotalAllocCount - info->TotalFreeCount); + if (SmallButton("GC now")) { g.GcCompactAll = true; } + Text("Recent frames with allocations:"); + int buf_size = IM_ARRAYSIZE(info->LastEntriesBuf); + for (int n = buf_size - 1; n >= 0; n--) + { + ImGuiDebugAllocEntry* entry = &info->LastEntriesBuf[(info->LastEntriesIdx - n + buf_size) % buf_size]; + BulletText("Frame %06d: %+3d ( %2d alloc, %2d free )", entry->FrameCount, entry->AllocCount - entry->FreeCount, entry->AllocCount, entry->FreeCount); + if (n == 0) + { + SameLine(); + Text("<- %d frames ago", g.FrameCount - entry->FrameCount); + } + } + TreePop(); + } + + if (TreeNode("Inputs")) + { + Text("KEYBOARD/GAMEPAD/MOUSE KEYS"); + { + // We iterate both legacy native range and named ImGuiKey ranges, which is a little odd but this allows displaying the data for old/new backends. + // User code should never have to go through such hoops! You can generally iterate between ImGuiKey_NamedKey_BEGIN and ImGuiKey_NamedKey_END. + Indent(); +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + struct funcs { static bool IsLegacyNativeDupe(ImGuiKey) { return false; } }; +#else + struct funcs { static bool IsLegacyNativeDupe(ImGuiKey key) { return key >= 0 && key < 512 && GetIO().KeyMap[key] != -1; } }; // Hide Native<>ImGuiKey duplicates when both exists in the array + //Text("Legacy raw:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key++) { if (io.KeysDown[key]) { SameLine(); Text("\"%s\" %d", GetKeyName(key), key); } } +#endif + Text("Keys down:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key = (ImGuiKey)(key + 1)) { if (funcs::IsLegacyNativeDupe(key) || !IsKeyDown(key)) continue; SameLine(); Text(IsNamedKey(key) ? "\"%s\"" : "\"%s\" %d", GetKeyName(key), key); SameLine(); Text("(%.02f)", GetKeyData(key)->DownDuration); } + Text("Keys pressed:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key = (ImGuiKey)(key + 1)) { if (funcs::IsLegacyNativeDupe(key) || !IsKeyPressed(key)) continue; SameLine(); Text(IsNamedKey(key) ? "\"%s\"" : "\"%s\" %d", GetKeyName(key), key); } + Text("Keys released:"); for (ImGuiKey key = ImGuiKey_KeysData_OFFSET; key < ImGuiKey_COUNT; key = (ImGuiKey)(key + 1)) { if (funcs::IsLegacyNativeDupe(key) || !IsKeyReleased(key)) continue; SameLine(); Text(IsNamedKey(key) ? "\"%s\"" : "\"%s\" %d", GetKeyName(key), key); } + Text("Keys mods: %s%s%s%s", io.KeyCtrl ? "CTRL " : "", io.KeyShift ? "SHIFT " : "", io.KeyAlt ? "ALT " : "", io.KeySuper ? "SUPER " : ""); + Text("Chars queue:"); for (int i = 0; i < io.InputQueueCharacters.Size; i++) { ImWchar c = io.InputQueueCharacters[i]; SameLine(); Text("\'%c\' (0x%04X)", (c > ' ' && c <= 255) ? (char)c : '?', c); } // FIXME: We should convert 'c' to UTF-8 here but the functions are not public. + DebugRenderKeyboardPreview(GetWindowDrawList()); + Unindent(); + } + + Text("MOUSE STATE"); + { + Indent(); + if (IsMousePosValid()) + Text("Mouse pos: (%g, %g)", io.MousePos.x, io.MousePos.y); + else + Text("Mouse pos: "); + Text("Mouse delta: (%g, %g)", io.MouseDelta.x, io.MouseDelta.y); + int count = IM_ARRAYSIZE(io.MouseDown); + Text("Mouse down:"); for (int i = 0; i < count; i++) if (IsMouseDown(i)) { SameLine(); Text("b%d (%.02f secs)", i, io.MouseDownDuration[i]); } + Text("Mouse clicked:"); for (int i = 0; i < count; i++) if (IsMouseClicked(i)) { SameLine(); Text("b%d (%d)", i, io.MouseClickedCount[i]); } + Text("Mouse released:"); for (int i = 0; i < count; i++) if (IsMouseReleased(i)) { SameLine(); Text("b%d", i); } + Text("Mouse wheel: %.1f", io.MouseWheel); + Text("MouseStationaryTimer: %.2f", g.MouseStationaryTimer); + Text("Mouse source: %s", GetMouseSourceName(io.MouseSource)); + Text("Pen Pressure: %.1f", io.PenPressure); // Note: currently unused + Unindent(); + } + + Text("MOUSE WHEELING"); + { + Indent(); + Text("WheelingWindow: '%s'", g.WheelingWindow ? g.WheelingWindow->Name : "NULL"); + Text("WheelingWindowReleaseTimer: %.2f", g.WheelingWindowReleaseTimer); + Text("WheelingAxisAvg[] = { %.3f, %.3f }, Main Axis: %s", g.WheelingAxisAvg.x, g.WheelingAxisAvg.y, (g.WheelingAxisAvg.x > g.WheelingAxisAvg.y) ? "X" : (g.WheelingAxisAvg.x < g.WheelingAxisAvg.y) ? "Y" : ""); + Unindent(); + } + + Text("KEY OWNERS"); + { + Indent(); + if (BeginChild("##owners", ImVec2(-FLT_MIN, GetTextLineHeightWithSpacing() * 8), ImGuiChildFlags_FrameStyle | ImGuiChildFlags_ResizeY, ImGuiWindowFlags_NoSavedSettings)) + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + ImGuiKeyOwnerData* owner_data = GetKeyOwnerData(&g, key); + if (owner_data->OwnerCurr == ImGuiKeyOwner_NoOwner) + continue; + Text("%s: 0x%08X%s", GetKeyName(key), owner_data->OwnerCurr, + owner_data->LockUntilRelease ? " LockUntilRelease" : owner_data->LockThisFrame ? " LockThisFrame" : ""); + DebugLocateItemOnHover(owner_data->OwnerCurr); + } + EndChild(); + Unindent(); + } + Text("SHORTCUT ROUTING"); + SameLine(); + MetricsHelpMarker("Declared shortcut routes automatically set key owner when mods matches."); + { + Indent(); + if (BeginChild("##routes", ImVec2(-FLT_MIN, GetTextLineHeightWithSpacing() * 8), ImGuiChildFlags_FrameStyle | ImGuiChildFlags_ResizeY, ImGuiWindowFlags_NoSavedSettings)) + for (ImGuiKey key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; key = (ImGuiKey)(key + 1)) + { + ImGuiKeyRoutingTable* rt = &g.KeysRoutingTable; + for (ImGuiKeyRoutingIndex idx = rt->Index[key - ImGuiKey_NamedKey_BEGIN]; idx != -1; ) + { + ImGuiKeyRoutingData* routing_data = &rt->Entries[idx]; + ImGuiKeyChord key_chord = key | routing_data->Mods; + Text("%s: 0x%08X (scored %d)", GetKeyChordName(key_chord), routing_data->RoutingCurr, routing_data->RoutingCurrScore); + DebugLocateItemOnHover(routing_data->RoutingCurr); + if (g.IO.ConfigDebugIsDebuggerPresent) + { + SameLine(); + if (DebugBreakButton("**DebugBreak**", "in SetShortcutRouting() for this KeyChord")) + g.DebugBreakInShortcutRouting = key_chord; + } + idx = routing_data->NextEntryIndex; + } + } + EndChild(); + Text("(ActiveIdUsing: AllKeyboardKeys: %d, NavDirMask: 0x%X)", g.ActiveIdUsingAllKeyboardKeys, g.ActiveIdUsingNavDirMask); + Unindent(); + } + TreePop(); + } + + if (TreeNode("Internal state")) + { + Text("WINDOWING"); + Indent(); + Text("HoveredWindow: '%s'", g.HoveredWindow ? g.HoveredWindow->Name : "NULL"); + Text("HoveredWindow->Root: '%s'", g.HoveredWindow ? g.HoveredWindow->RootWindow->Name : "NULL"); + Text("HoveredWindowUnderMovingWindow: '%s'", g.HoveredWindowUnderMovingWindow ? g.HoveredWindowUnderMovingWindow->Name : "NULL"); + Text("MovingWindow: '%s'", g.MovingWindow ? g.MovingWindow->Name : "NULL"); + Unindent(); + + Text("ITEMS"); + Indent(); + Text("ActiveId: 0x%08X/0x%08X (%.2f sec), AllowOverlap: %d, Source: %s", g.ActiveId, g.ActiveIdPreviousFrame, g.ActiveIdTimer, g.ActiveIdAllowOverlap, GetInputSourceName(g.ActiveIdSource)); + DebugLocateItemOnHover(g.ActiveId); + Text("ActiveIdWindow: '%s'", g.ActiveIdWindow ? g.ActiveIdWindow->Name : "NULL"); + Text("ActiveIdUsing: AllKeyboardKeys: %d, NavDirMask: %X", g.ActiveIdUsingAllKeyboardKeys, g.ActiveIdUsingNavDirMask); + Text("HoveredId: 0x%08X (%.2f sec), AllowOverlap: %d", g.HoveredIdPreviousFrame, g.HoveredIdTimer, g.HoveredIdAllowOverlap); // Not displaying g.HoveredId as it is update mid-frame + Text("HoverItemDelayId: 0x%08X, Timer: %.2f, ClearTimer: %.2f", g.HoverItemDelayId, g.HoverItemDelayTimer, g.HoverItemDelayClearTimer); + Text("DragDrop: %d, SourceId = 0x%08X, Payload \"%s\" (%d bytes)", g.DragDropActive, g.DragDropPayload.SourceId, g.DragDropPayload.DataType, g.DragDropPayload.DataSize); + DebugLocateItemOnHover(g.DragDropPayload.SourceId); + Unindent(); + + Text("NAV,FOCUS"); + Indent(); + Text("NavWindow: '%s'", g.NavWindow ? g.NavWindow->Name : "NULL"); + Text("NavId: 0x%08X, NavLayer: %d", g.NavId, g.NavLayer); + DebugLocateItemOnHover(g.NavId); + Text("NavInputSource: %s", GetInputSourceName(g.NavInputSource)); + Text("NavLastValidSelectionUserData = %" IM_PRId64 " (0x%" IM_PRIX64 ")", g.NavLastValidSelectionUserData, g.NavLastValidSelectionUserData); + Text("NavActive: %d, NavVisible: %d", g.IO.NavActive, g.IO.NavVisible); + Text("NavActivateId/DownId/PressedId: %08X/%08X/%08X", g.NavActivateId, g.NavActivateDownId, g.NavActivatePressedId); + Text("NavActivateFlags: %04X", g.NavActivateFlags); + Text("NavDisableHighlight: %d, NavDisableMouseHover: %d", g.NavDisableHighlight, g.NavDisableMouseHover); + Text("NavFocusScopeId = 0x%08X", g.NavFocusScopeId); + Text("NavFocusRoute[] = "); + for (int path_n = g.NavFocusRoute.Size - 1; path_n >= 0; path_n--) + { + const ImGuiFocusScopeData& focus_scope = g.NavFocusRoute[path_n]; + SameLine(0.0f, 0.0f); + Text("0x%08X/", focus_scope.ID); + SetItemTooltip("In window \"%s\"", FindWindowByID(focus_scope.WindowID)->Name); + } + Text("NavWindowingTarget: '%s'", g.NavWindowingTarget ? g.NavWindowingTarget->Name : "NULL"); + Unindent(); + + TreePop(); + } + + // Overlay: Display windows Rectangles and Begin Order + if (cfg->ShowWindowsRects || cfg->ShowWindowsBeginOrder) + { + for (ImGuiWindow* window : g.Windows) + { + if (!window->WasActive) + continue; + ImDrawList* draw_list = GetForegroundDrawList(window); + if (cfg->ShowWindowsRects) + { + ImRect r = Funcs::GetWindowRect(window, cfg->ShowWindowsRectsType); + draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 0, 128, 255)); + } + if (cfg->ShowWindowsBeginOrder && !(window->Flags & ImGuiWindowFlags_ChildWindow)) + { + char buf[32]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "%d", window->BeginOrderWithinContext); + float font_size = GetFontSize(); + draw_list->AddRectFilled(window->Pos, window->Pos + ImVec2(font_size, font_size), IM_COL32(200, 100, 100, 255)); + draw_list->AddText(window->Pos, IM_COL32(255, 255, 255, 255), buf); + } + } + } + + // Overlay: Display Tables Rectangles + if (cfg->ShowTablesRects) + { + for (int table_n = 0; table_n < g.Tables.GetMapSize(); table_n++) + { + ImGuiTable* table = g.Tables.TryGetMapData(table_n); + if (table == NULL || table->LastFrameActive < g.FrameCount - 1) + continue; + ImDrawList* draw_list = GetForegroundDrawList(table->OuterWindow); + if (cfg->ShowTablesRectsType >= TRT_ColumnsRect) + { + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImRect r = Funcs::GetTableRect(table, cfg->ShowTablesRectsType, column_n); + ImU32 col = (table->HoveredColumnBody == column_n) ? IM_COL32(255, 255, 128, 255) : IM_COL32(255, 0, 128, 255); + float thickness = (table->HoveredColumnBody == column_n) ? 3.0f : 1.0f; + draw_list->AddRect(r.Min, r.Max, col, 0.0f, 0, thickness); + } + } + else + { + ImRect r = Funcs::GetTableRect(table, cfg->ShowTablesRectsType, -1); + draw_list->AddRect(r.Min, r.Max, IM_COL32(255, 0, 128, 255)); + } + } + } + +#ifdef IMGUI_HAS_DOCK + // Overlay: Display Docking info + if (show_docking_nodes && g.IO.KeyCtrl) + { + } +#endif // #ifdef IMGUI_HAS_DOCK + + End(); +} + +void ImGui::DebugBreakClearData() +{ + // Those fields are scattered in their respective subsystem to stay in hot-data locations + ImGuiContext& g = *GImGui; + g.DebugBreakInWindow = 0; + g.DebugBreakInTable = 0; + g.DebugBreakInShortcutRouting = ImGuiKey_None; +} + +void ImGui::DebugBreakButtonTooltip(bool keyboard_only, const char* description_of_location) +{ + if (!BeginItemTooltip()) + return; + Text("To call IM_DEBUG_BREAK() %s:", description_of_location); + Separator(); + TextUnformatted(keyboard_only ? "- Press 'Pause/Break' on keyboard." : "- Press 'Pause/Break' on keyboard.\n- or Click (may alter focus/active id).\n- or navigate using keyboard and press space."); + Separator(); + TextUnformatted("Choose one way that doesn't interfere with what you are trying to debug!\nYou need a debugger attached or this will crash!"); + EndTooltip(); +} + +// Special button that doesn't take focus, doesn't take input owner, and can be activated without a click etc. +// In order to reduce interferences with the contents we are trying to debug into. +bool ImGui::DebugBreakButton(const char* label, const char* description_of_location) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + ImVec2 pos = window->DC.CursorPos + ImVec2(0.0f, window->DC.CurrLineTextBaseOffset); + ImVec2 size = ImVec2(label_size.x + g.Style.FramePadding.x * 2.0f, label_size.y); + + const ImRect bb(pos, pos + size); + ItemSize(size, 0.0f); + if (!ItemAdd(bb, id)) + return false; + + // WE DO NOT USE ButtonEx() or ButtonBehavior() in order to reduce our side-effects. + bool hovered = ItemHoverable(bb, id, g.CurrentItemFlags); + bool pressed = hovered && (IsKeyChordPressed(g.DebugBreakKeyChord) || IsMouseClicked(0) || g.NavActivateId == id); + DebugBreakButtonTooltip(false, description_of_location); + + ImVec4 col4f = GetStyleColorVec4(hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + ImVec4 hsv; + ColorConvertRGBtoHSV(col4f.x, col4f.y, col4f.z, hsv.x, hsv.y, hsv.z); + ColorConvertHSVtoRGB(hsv.x + 0.20f, hsv.y, hsv.z, col4f.x, col4f.y, col4f.z); + + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, GetColorU32(col4f), true, g.Style.FrameRounding); + RenderTextClipped(bb.Min, bb.Max, label, NULL, &label_size, g.Style.ButtonTextAlign, &bb); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; +} + +// [DEBUG] Display contents of Columns +void ImGui::DebugNodeColumns(ImGuiOldColumns* columns) +{ + if (!TreeNode((void*)(uintptr_t)columns->ID, "Columns Id: 0x%08X, Count: %d, Flags: 0x%04X", columns->ID, columns->Count, columns->Flags)) + return; + BulletText("Width: %.1f (MinX: %.1f, MaxX: %.1f)", columns->OffMaxX - columns->OffMinX, columns->OffMinX, columns->OffMaxX); + for (ImGuiOldColumnData& column : columns->Columns) + BulletText("Column %02d: OffsetNorm %.3f (= %.1f px)", (int)columns->Columns.index_from_ptr(&column), column.OffsetNorm, GetColumnOffsetFromNorm(columns, column.OffsetNorm)); + TreePop(); +} + +static void FormatTextureIDForDebugDisplay(char* buf, int buf_size, ImTextureID tex_id) +{ + union { void* ptr; int integer; } tex_id_opaque; + memcpy(&tex_id_opaque, &tex_id, ImMin(sizeof(void*), sizeof(tex_id))); + if (sizeof(tex_id) >= sizeof(void*)) + ImFormatString(buf, buf_size, "0x%p", tex_id_opaque.ptr); + else + ImFormatString(buf, buf_size, "0x%04X", tex_id_opaque.integer); +} + +// [DEBUG] Display contents of ImDrawList +void ImGui::DebugNodeDrawList(ImGuiWindow* window, ImGuiViewportP* viewport, const ImDrawList* draw_list, const char* label) +{ + ImGuiContext& g = *GImGui; + IM_UNUSED(viewport); // Used in docking branch + ImGuiMetricsConfig* cfg = &g.DebugMetricsConfig; + int cmd_count = draw_list->CmdBuffer.Size; + if (cmd_count > 0 && draw_list->CmdBuffer.back().ElemCount == 0 && draw_list->CmdBuffer.back().UserCallback == NULL) + cmd_count--; + bool node_open = TreeNode(draw_list, "%s: '%s' %d vtx, %d indices, %d cmds", label, draw_list->_OwnerName ? draw_list->_OwnerName : "", draw_list->VtxBuffer.Size, draw_list->IdxBuffer.Size, cmd_count); + if (draw_list == GetWindowDrawList()) + { + SameLine(); + TextColored(ImVec4(1.0f, 0.4f, 0.4f, 1.0f), "CURRENTLY APPENDING"); // Can't display stats for active draw list! (we don't have the data double-buffered) + if (node_open) + TreePop(); + return; + } + + ImDrawList* fg_draw_list = GetForegroundDrawList(window); // Render additional visuals into the top-most draw list + if (window && IsItemHovered() && fg_draw_list) + fg_draw_list->AddRect(window->Pos, window->Pos + window->Size, IM_COL32(255, 255, 0, 255)); + if (!node_open) + return; + + if (window && !window->WasActive) + TextDisabled("Warning: owning Window is inactive. This DrawList is not being rendered!"); + + for (const ImDrawCmd* pcmd = draw_list->CmdBuffer.Data; pcmd < draw_list->CmdBuffer.Data + cmd_count; pcmd++) + { + if (pcmd->UserCallback) + { + BulletText("Callback %p, user_data %p", pcmd->UserCallback, pcmd->UserCallbackData); + continue; + } + + char texid_desc[20]; + FormatTextureIDForDebugDisplay(texid_desc, IM_ARRAYSIZE(texid_desc), pcmd->TextureId); + char buf[300]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "DrawCmd:%5d tris, Tex %s, ClipRect (%4.0f,%4.0f)-(%4.0f,%4.0f)", + pcmd->ElemCount / 3, texid_desc, pcmd->ClipRect.x, pcmd->ClipRect.y, pcmd->ClipRect.z, pcmd->ClipRect.w); + bool pcmd_node_open = TreeNode((void*)(pcmd - draw_list->CmdBuffer.begin()), "%s", buf); + if (IsItemHovered() && (cfg->ShowDrawCmdMesh || cfg->ShowDrawCmdBoundingBoxes) && fg_draw_list) + DebugNodeDrawCmdShowMeshAndBoundingBox(fg_draw_list, draw_list, pcmd, cfg->ShowDrawCmdMesh, cfg->ShowDrawCmdBoundingBoxes); + if (!pcmd_node_open) + continue; + + // Calculate approximate coverage area (touched pixel count) + // This will be in pixels squared as long there's no post-scaling happening to the renderer output. + const ImDrawIdx* idx_buffer = (draw_list->IdxBuffer.Size > 0) ? draw_list->IdxBuffer.Data : NULL; + const ImDrawVert* vtx_buffer = draw_list->VtxBuffer.Data + pcmd->VtxOffset; + float total_area = 0.0f; + for (unsigned int idx_n = pcmd->IdxOffset; idx_n < pcmd->IdxOffset + pcmd->ElemCount; ) + { + ImVec2 triangle[3]; + for (int n = 0; n < 3; n++, idx_n++) + triangle[n] = vtx_buffer[idx_buffer ? idx_buffer[idx_n] : idx_n].pos; + total_area += ImTriangleArea(triangle[0], triangle[1], triangle[2]); + } + + // Display vertex information summary. Hover to get all triangles drawn in wire-frame + ImFormatString(buf, IM_ARRAYSIZE(buf), "Mesh: ElemCount: %d, VtxOffset: +%d, IdxOffset: +%d, Area: ~%0.f px", pcmd->ElemCount, pcmd->VtxOffset, pcmd->IdxOffset, total_area); + Selectable(buf); + if (IsItemHovered() && fg_draw_list) + DebugNodeDrawCmdShowMeshAndBoundingBox(fg_draw_list, draw_list, pcmd, true, false); + + // Display individual triangles/vertices. Hover on to get the corresponding triangle highlighted. + ImGuiListClipper clipper; + clipper.Begin(pcmd->ElemCount / 3); // Manually coarse clip our print out of individual vertices to save CPU, only items that may be visible. + while (clipper.Step()) + for (int prim = clipper.DisplayStart, idx_i = pcmd->IdxOffset + clipper.DisplayStart * 3; prim < clipper.DisplayEnd; prim++) + { + char* buf_p = buf, * buf_end = buf + IM_ARRAYSIZE(buf); + ImVec2 triangle[3]; + for (int n = 0; n < 3; n++, idx_i++) + { + const ImDrawVert& v = vtx_buffer[idx_buffer ? idx_buffer[idx_i] : idx_i]; + triangle[n] = v.pos; + buf_p += ImFormatString(buf_p, buf_end - buf_p, "%s %04d: pos (%8.2f,%8.2f), uv (%.6f,%.6f), col %08X\n", + (n == 0) ? "Vert:" : " ", idx_i, v.pos.x, v.pos.y, v.uv.x, v.uv.y, v.col); + } + + Selectable(buf, false); + if (fg_draw_list && IsItemHovered()) + { + ImDrawListFlags backup_flags = fg_draw_list->Flags; + fg_draw_list->Flags &= ~ImDrawListFlags_AntiAliasedLines; // Disable AA on triangle outlines is more readable for very large and thin triangles. + fg_draw_list->AddPolyline(triangle, 3, IM_COL32(255, 255, 0, 255), ImDrawFlags_Closed, 1.0f); + fg_draw_list->Flags = backup_flags; + } + } + TreePop(); + } + TreePop(); +} + +// [DEBUG] Display mesh/aabb of a ImDrawCmd +void ImGui::DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList* out_draw_list, const ImDrawList* draw_list, const ImDrawCmd* draw_cmd, bool show_mesh, bool show_aabb) +{ + IM_ASSERT(show_mesh || show_aabb); + + // Draw wire-frame version of all triangles + ImRect clip_rect = draw_cmd->ClipRect; + ImRect vtxs_rect(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX); + ImDrawListFlags backup_flags = out_draw_list->Flags; + out_draw_list->Flags &= ~ImDrawListFlags_AntiAliasedLines; // Disable AA on triangle outlines is more readable for very large and thin triangles. + for (unsigned int idx_n = draw_cmd->IdxOffset, idx_end = draw_cmd->IdxOffset + draw_cmd->ElemCount; idx_n < idx_end; ) + { + ImDrawIdx* idx_buffer = (draw_list->IdxBuffer.Size > 0) ? draw_list->IdxBuffer.Data : NULL; // We don't hold on those pointers past iterations as ->AddPolyline() may invalidate them if out_draw_list==draw_list + ImDrawVert* vtx_buffer = draw_list->VtxBuffer.Data + draw_cmd->VtxOffset; + + ImVec2 triangle[3]; + for (int n = 0; n < 3; n++, idx_n++) + vtxs_rect.Add((triangle[n] = vtx_buffer[idx_buffer ? idx_buffer[idx_n] : idx_n].pos)); + if (show_mesh) + out_draw_list->AddPolyline(triangle, 3, IM_COL32(255, 255, 0, 255), ImDrawFlags_Closed, 1.0f); // In yellow: mesh triangles + } + // Draw bounding boxes + if (show_aabb) + { + out_draw_list->AddRect(ImTrunc(clip_rect.Min), ImTrunc(clip_rect.Max), IM_COL32(255, 0, 255, 255)); // In pink: clipping rectangle submitted to GPU + out_draw_list->AddRect(ImTrunc(vtxs_rect.Min), ImTrunc(vtxs_rect.Max), IM_COL32(0, 255, 255, 255)); // In cyan: bounding box of triangles + } + out_draw_list->Flags = backup_flags; +} + +// [DEBUG] Display details for a single font, called by ShowStyleEditor(). +void ImGui::DebugNodeFont(ImFont* font) +{ + bool opened = TreeNode(font, "Font: \"%s\"\n%.2f px, %d glyphs, %d file(s)", + font->ConfigData ? font->ConfigData[0].Name : "", font->FontSize, font->Glyphs.Size, font->ConfigDataCount); + SameLine(); + if (SmallButton("Set as default")) + GetIO().FontDefault = font; + if (!opened) + return; + + // Display preview text + PushFont(font); + Text("The quick brown fox jumps over the lazy dog"); + PopFont(); + + // Display details + SetNextItemWidth(GetFontSize() * 8); + DragFloat("Font scale", &font->Scale, 0.005f, 0.3f, 2.0f, "%.1f"); + SameLine(); MetricsHelpMarker( + "Note that the default embedded font is NOT meant to be scaled.\n\n" + "Font are currently rendered into bitmaps at a given size at the time of building the atlas. " + "You may oversample them to get some flexibility with scaling. " + "You can also render at multiple sizes and select which one to use at runtime.\n\n" + "(Glimmer of hope: the atlas system will be rewritten in the future to make scaling more flexible.)"); + Text("Ascent: %f, Descent: %f, Height: %f", font->Ascent, font->Descent, font->Ascent - font->Descent); + char c_str[5]; + Text("Fallback character: '%s' (U+%04X)", ImTextCharToUtf8(c_str, font->FallbackChar), font->FallbackChar); + Text("Ellipsis character: '%s' (U+%04X)", ImTextCharToUtf8(c_str, font->EllipsisChar), font->EllipsisChar); + const int surface_sqrt = (int)ImSqrt((float)font->MetricsTotalSurface); + Text("Texture Area: about %d px ~%dx%d px", font->MetricsTotalSurface, surface_sqrt, surface_sqrt); + for (int config_i = 0; config_i < font->ConfigDataCount; config_i++) + if (font->ConfigData) + if (const ImFontConfig* cfg = &font->ConfigData[config_i]) + BulletText("Input %d: \'%s\', Oversample: (%d,%d), PixelSnapH: %d, Offset: (%.1f,%.1f)", + config_i, cfg->Name, cfg->OversampleH, cfg->OversampleV, cfg->PixelSnapH, cfg->GlyphOffset.x, cfg->GlyphOffset.y); + + // Display all glyphs of the fonts in separate pages of 256 characters + if (TreeNode("Glyphs", "Glyphs (%d)", font->Glyphs.Size)) + { + ImDrawList* draw_list = GetWindowDrawList(); + const ImU32 glyph_col = GetColorU32(ImGuiCol_Text); + const float cell_size = font->FontSize * 1; + const float cell_spacing = GetStyle().ItemSpacing.y; + for (unsigned int base = 0; base <= IM_UNICODE_CODEPOINT_MAX; base += 256) + { + // Skip ahead if a large bunch of glyphs are not present in the font (test in chunks of 4k) + // This is only a small optimization to reduce the number of iterations when IM_UNICODE_MAX_CODEPOINT + // is large // (if ImWchar==ImWchar32 we will do at least about 272 queries here) + if (!(base & 4095) && font->IsGlyphRangeUnused(base, base + 4095)) + { + base += 4096 - 256; + continue; + } + + int count = 0; + for (unsigned int n = 0; n < 256; n++) + if (font->FindGlyphNoFallback((ImWchar)(base + n))) + count++; + if (count <= 0) + continue; + if (!TreeNode((void*)(intptr_t)base, "U+%04X..U+%04X (%d %s)", base, base + 255, count, count > 1 ? "glyphs" : "glyph")) + continue; + + // Draw a 16x16 grid of glyphs + ImVec2 base_pos = GetCursorScreenPos(); + for (unsigned int n = 0; n < 256; n++) + { + // We use ImFont::RenderChar as a shortcut because we don't have UTF-8 conversion functions + // available here and thus cannot easily generate a zero-terminated UTF-8 encoded string. + ImVec2 cell_p1(base_pos.x + (n % 16) * (cell_size + cell_spacing), base_pos.y + (n / 16) * (cell_size + cell_spacing)); + ImVec2 cell_p2(cell_p1.x + cell_size, cell_p1.y + cell_size); + const ImFontGlyph* glyph = font->FindGlyphNoFallback((ImWchar)(base + n)); + draw_list->AddRect(cell_p1, cell_p2, glyph ? IM_COL32(255, 255, 255, 100) : IM_COL32(255, 255, 255, 50)); + if (!glyph) + continue; + font->RenderChar(draw_list, cell_size, cell_p1, glyph_col, (ImWchar)(base + n)); + if (IsMouseHoveringRect(cell_p1, cell_p2) && BeginTooltip()) + { + DebugNodeFontGlyph(font, glyph); + EndTooltip(); + } + } + Dummy(ImVec2((cell_size + cell_spacing) * 16, (cell_size + cell_spacing) * 16)); + TreePop(); + } + TreePop(); + } + TreePop(); +} + +void ImGui::DebugNodeFontGlyph(ImFont*, const ImFontGlyph* glyph) +{ + Text("Codepoint: U+%04X", glyph->Codepoint); + Separator(); + Text("Visible: %d", glyph->Visible); + Text("AdvanceX: %.1f", glyph->AdvanceX); + Text("Pos: (%.2f,%.2f)->(%.2f,%.2f)", glyph->X0, glyph->Y0, glyph->X1, glyph->Y1); + Text("UV: (%.3f,%.3f)->(%.3f,%.3f)", glyph->U0, glyph->V0, glyph->U1, glyph->V1); +} + +// [DEBUG] Display contents of ImGuiStorage +void ImGui::DebugNodeStorage(ImGuiStorage* storage, const char* label) +{ + if (!TreeNode(label, "%s: %d entries, %d bytes", label, storage->Data.Size, storage->Data.size_in_bytes())) + return; + for (const ImGuiStoragePair& p : storage->Data) + { + BulletText("Key 0x%08X Value { i: %d }", p.key, p.val_i); // Important: we currently don't store a type, real value may not be integer. + DebugLocateItemOnHover(p.key); + } + TreePop(); +} + +// [DEBUG] Display contents of ImGuiTabBar +void ImGui::DebugNodeTabBar(ImGuiTabBar* tab_bar, const char* label) +{ + // Standalone tab bars (not associated to docking/windows functionality) currently hold no discernible strings. + char buf[256]; + char* p = buf; + const char* buf_end = buf + IM_ARRAYSIZE(buf); + const bool is_active = (tab_bar->PrevFrameVisible >= GetFrameCount() - 2); + p += ImFormatString(p, buf_end - p, "%s 0x%08X (%d tabs)%s {", label, tab_bar->ID, tab_bar->Tabs.Size, is_active ? "" : " *Inactive*"); + for (int tab_n = 0; tab_n < ImMin(tab_bar->Tabs.Size, 3); tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + p += ImFormatString(p, buf_end - p, "%s'%s'", tab_n > 0 ? ", " : "", TabBarGetTabName(tab_bar, tab)); + } + p += ImFormatString(p, buf_end - p, (tab_bar->Tabs.Size > 3) ? " ... }" : " } "); + if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } + bool open = TreeNode(label, "%s", buf); + if (!is_active) { PopStyleColor(); } + if (is_active && IsItemHovered()) + { + ImDrawList* draw_list = GetForegroundDrawList(); + draw_list->AddRect(tab_bar->BarRect.Min, tab_bar->BarRect.Max, IM_COL32(255, 255, 0, 255)); + draw_list->AddLine(ImVec2(tab_bar->ScrollingRectMinX, tab_bar->BarRect.Min.y), ImVec2(tab_bar->ScrollingRectMinX, tab_bar->BarRect.Max.y), IM_COL32(0, 255, 0, 255)); + draw_list->AddLine(ImVec2(tab_bar->ScrollingRectMaxX, tab_bar->BarRect.Min.y), ImVec2(tab_bar->ScrollingRectMaxX, tab_bar->BarRect.Max.y), IM_COL32(0, 255, 0, 255)); + } + if (open) + { + for (int tab_n = 0; tab_n < tab_bar->Tabs.Size; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + PushID(tab); + if (SmallButton("<")) { TabBarQueueReorder(tab_bar, tab, -1); } SameLine(0, 2); + if (SmallButton(">")) { TabBarQueueReorder(tab_bar, tab, +1); } SameLine(); + Text("%02d%c Tab 0x%08X '%s' Offset: %.2f, Width: %.2f/%.2f", + tab_n, (tab->ID == tab_bar->SelectedTabId) ? '*' : ' ', tab->ID, TabBarGetTabName(tab_bar, tab), tab->Offset, tab->Width, tab->ContentWidth); + PopID(); + } + TreePop(); + } +} + +void ImGui::DebugNodeViewport(ImGuiViewportP* viewport) +{ + ImGuiContext& g = *GImGui; + SetNextItemOpen(true, ImGuiCond_Once); + bool open = TreeNode("viewport0", "Viewport #%d", 0); + if (IsItemHovered()) + g.DebugMetricsConfig.HighlightViewportID = viewport->ID; + if (open) + { + ImGuiWindowFlags flags = viewport->Flags; + BulletText("Main Pos: (%.0f,%.0f), Size: (%.0f,%.0f)\nWorkArea Inset Left: %.0f Top: %.0f, Right: %.0f, Bottom: %.0f", + viewport->Pos.x, viewport->Pos.y, viewport->Size.x, viewport->Size.y, + viewport->WorkInsetMin.x, viewport->WorkInsetMin.y, viewport->WorkInsetMax.x, viewport->WorkInsetMax.y); + BulletText("Flags: 0x%04X =%s%s%s", viewport->Flags, + (flags & ImGuiViewportFlags_IsPlatformWindow) ? " IsPlatformWindow" : "", + (flags & ImGuiViewportFlags_IsPlatformMonitor) ? " IsPlatformMonitor" : "", + (flags & ImGuiViewportFlags_OwnedByApp) ? " OwnedByApp" : ""); + for (ImDrawList* draw_list : viewport->DrawDataP.CmdLists) + DebugNodeDrawList(NULL, viewport, draw_list, "DrawList"); + TreePop(); + } +} + +void ImGui::DebugNodeWindow(ImGuiWindow* window, const char* label) +{ + if (window == NULL) + { + BulletText("%s: NULL", label); + return; + } + + ImGuiContext& g = *GImGui; + const bool is_active = window->WasActive; + ImGuiTreeNodeFlags tree_node_flags = (window == g.NavWindow) ? ImGuiTreeNodeFlags_Selected : ImGuiTreeNodeFlags_None; + if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } + const bool open = TreeNodeEx(label, tree_node_flags, "%s '%s'%s", label, window->Name, is_active ? "" : " *Inactive*"); + if (!is_active) { PopStyleColor(); } + if (IsItemHovered() && is_active) + GetForegroundDrawList(window)->AddRect(window->Pos, window->Pos + window->Size, IM_COL32(255, 255, 0, 255)); + if (!open) + return; + + if (window->MemoryCompacted) + TextDisabled("Note: some memory buffers have been compacted/freed."); + + if (g.IO.ConfigDebugIsDebuggerPresent && DebugBreakButton("**DebugBreak**", "in Begin()")) + g.DebugBreakInWindow = window->ID; + + ImGuiWindowFlags flags = window->Flags; + DebugNodeDrawList(window, window->Viewport, window->DrawList, "DrawList"); + BulletText("Pos: (%.1f,%.1f), Size: (%.1f,%.1f), ContentSize (%.1f,%.1f) Ideal (%.1f,%.1f)", window->Pos.x, window->Pos.y, window->Size.x, window->Size.y, window->ContentSize.x, window->ContentSize.y, window->ContentSizeIdeal.x, window->ContentSizeIdeal.y); + BulletText("Flags: 0x%08X (%s%s%s%s%s%s%s%s%s..)", flags, + (flags & ImGuiWindowFlags_ChildWindow) ? "Child " : "", (flags & ImGuiWindowFlags_Tooltip) ? "Tooltip " : "", (flags & ImGuiWindowFlags_Popup) ? "Popup " : "", + (flags & ImGuiWindowFlags_Modal) ? "Modal " : "", (flags & ImGuiWindowFlags_ChildMenu) ? "ChildMenu " : "", (flags & ImGuiWindowFlags_NoSavedSettings) ? "NoSavedSettings " : "", + (flags & ImGuiWindowFlags_NoMouseInputs)? "NoMouseInputs":"", (flags & ImGuiWindowFlags_NoNavInputs) ? "NoNavInputs" : "", (flags & ImGuiWindowFlags_AlwaysAutoResize) ? "AlwaysAutoResize" : ""); + if (flags & ImGuiWindowFlags_ChildWindow) + BulletText("ChildFlags: 0x%08X (%s%s%s%s..)", window->ChildFlags, + (window->ChildFlags & ImGuiChildFlags_Borders) ? "Borders " : "", + (window->ChildFlags & ImGuiChildFlags_ResizeX) ? "ResizeX " : "", + (window->ChildFlags & ImGuiChildFlags_ResizeY) ? "ResizeY " : "", + (window->ChildFlags & ImGuiChildFlags_NavFlattened) ? "NavFlattened " : ""); + BulletText("Scroll: (%.2f/%.2f,%.2f/%.2f) Scrollbar:%s%s", window->Scroll.x, window->ScrollMax.x, window->Scroll.y, window->ScrollMax.y, window->ScrollbarX ? "X" : "", window->ScrollbarY ? "Y" : ""); + BulletText("Active: %d/%d, WriteAccessed: %d, BeginOrderWithinContext: %d", window->Active, window->WasActive, window->WriteAccessed, (window->Active || window->WasActive) ? window->BeginOrderWithinContext : -1); + BulletText("Appearing: %d, Hidden: %d (CanSkip %d Cannot %d), SkipItems: %d", window->Appearing, window->Hidden, window->HiddenFramesCanSkipItems, window->HiddenFramesCannotSkipItems, window->SkipItems); + for (int layer = 0; layer < ImGuiNavLayer_COUNT; layer++) + { + ImRect r = window->NavRectRel[layer]; + if (r.Min.x >= r.Max.y && r.Min.y >= r.Max.y) + BulletText("NavLastIds[%d]: 0x%08X", layer, window->NavLastIds[layer]); + else + BulletText("NavLastIds[%d]: 0x%08X at +(%.1f,%.1f)(%.1f,%.1f)", layer, window->NavLastIds[layer], r.Min.x, r.Min.y, r.Max.x, r.Max.y); + DebugLocateItemOnHover(window->NavLastIds[layer]); + } + const ImVec2* pr = window->NavPreferredScoringPosRel; + for (int layer = 0; layer < ImGuiNavLayer_COUNT; layer++) + BulletText("NavPreferredScoringPosRel[%d] = {%.1f,%.1f)", layer, (pr[layer].x == FLT_MAX ? -99999.0f : pr[layer].x), (pr[layer].y == FLT_MAX ? -99999.0f : pr[layer].y)); // Display as 99999.0f so it looks neater. + BulletText("NavLayersActiveMask: %X, NavLastChildNavWindow: %s", window->DC.NavLayersActiveMask, window->NavLastChildNavWindow ? window->NavLastChildNavWindow->Name : "NULL"); + if (window->RootWindow != window) { DebugNodeWindow(window->RootWindow, "RootWindow"); } + if (window->ParentWindow != NULL) { DebugNodeWindow(window->ParentWindow, "ParentWindow"); } + if (window->ParentWindowForFocusRoute != NULL) { DebugNodeWindow(window->ParentWindowForFocusRoute, "ParentWindowForFocusRoute"); } + if (window->DC.ChildWindows.Size > 0) { DebugNodeWindowsList(&window->DC.ChildWindows, "ChildWindows"); } + if (window->ColumnsStorage.Size > 0 && TreeNode("Columns", "Columns sets (%d)", window->ColumnsStorage.Size)) + { + for (ImGuiOldColumns& columns : window->ColumnsStorage) + DebugNodeColumns(&columns); + TreePop(); + } + DebugNodeStorage(&window->StateStorage, "Storage"); + TreePop(); +} + +void ImGui::DebugNodeWindowSettings(ImGuiWindowSettings* settings) +{ + if (settings->WantDelete) + BeginDisabled(); + Text("0x%08X \"%s\" Pos (%d,%d) Size (%d,%d) Collapsed=%d", + settings->ID, settings->GetName(), settings->Pos.x, settings->Pos.y, settings->Size.x, settings->Size.y, settings->Collapsed); + if (settings->WantDelete) + EndDisabled(); +} + +void ImGui::DebugNodeWindowsList(ImVector* windows, const char* label) +{ + if (!TreeNode(label, "%s (%d)", label, windows->Size)) + return; + for (int i = windows->Size - 1; i >= 0; i--) // Iterate front to back + { + PushID((*windows)[i]); + DebugNodeWindow((*windows)[i], "Window"); + PopID(); + } + TreePop(); +} + +// FIXME-OPT: This is technically suboptimal, but it is simpler this way. +void ImGui::DebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows, int windows_size, ImGuiWindow* parent_in_begin_stack) +{ + for (int i = 0; i < windows_size; i++) + { + ImGuiWindow* window = windows[i]; + if (window->ParentWindowInBeginStack != parent_in_begin_stack) + continue; + char buf[20]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "[%04d] Window", window->BeginOrderWithinContext); + //BulletText("[%04d] Window '%s'", window->BeginOrderWithinContext, window->Name); + DebugNodeWindow(window, buf); + Indent(); + DebugNodeWindowsListByBeginStackParent(windows + i + 1, windows_size - i - 1, window); + Unindent(); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] DEBUG LOG WINDOW +//----------------------------------------------------------------------------- + +void ImGui::DebugLog(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + DebugLogV(fmt, args); + va_end(args); +} + +void ImGui::DebugLogV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + const int old_size = g.DebugLogBuf.size(); + if (g.ContextName[0] != 0) + g.DebugLogBuf.appendf("[%s] [%05d] ", g.ContextName, g.FrameCount); + else + g.DebugLogBuf.appendf("[%05d] ", g.FrameCount); + g.DebugLogBuf.appendfv(fmt, args); + g.DebugLogIndex.append(g.DebugLogBuf.c_str(), old_size, g.DebugLogBuf.size()); + if (g.DebugLogFlags & ImGuiDebugLogFlags_OutputToTTY) + IMGUI_DEBUG_PRINTF("%s", g.DebugLogBuf.begin() + old_size); +#ifdef IMGUI_ENABLE_TEST_ENGINE + // IMGUI_TEST_ENGINE_LOG() adds a trailing \n automatically + const int new_size = g.DebugLogBuf.size(); + const bool trailing_carriage_return = (g.DebugLogBuf[new_size - 1] == '\n'); + if (g.DebugLogFlags & ImGuiDebugLogFlags_OutputToTestEngine) + IMGUI_TEST_ENGINE_LOG("%.*s", new_size - old_size - (trailing_carriage_return ? 1 : 0), g.DebugLogBuf.begin() + old_size); +#endif +} + +// FIXME-LAYOUT: To be done automatically via layout mode once we rework ItemSize/ItemAdd into ItemLayout. +static void SameLineOrWrap(const ImVec2& size) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 pos(window->DC.CursorPosPrevLine.x + g.Style.ItemSpacing.x, window->DC.CursorPosPrevLine.y); + if (window->WorkRect.Contains(ImRect(pos, pos + size))) + ImGui::SameLine(); +} + +static void ShowDebugLogFlag(const char* name, ImGuiDebugLogFlags flags) +{ + ImGuiContext& g = *GImGui; + ImVec2 size(ImGui::GetFrameHeight() + g.Style.ItemInnerSpacing.x + ImGui::CalcTextSize(name).x, ImGui::GetFrameHeight()); + SameLineOrWrap(size); // FIXME-LAYOUT: To be done automatically once we rework ItemSize/ItemAdd into ItemLayout. + if (ImGui::CheckboxFlags(name, &g.DebugLogFlags, flags) && g.IO.KeyShift && (g.DebugLogFlags & flags) != 0) + { + g.DebugLogAutoDisableFrames = 2; + g.DebugLogAutoDisableFlags |= flags; + } + ImGui::SetItemTooltip("Hold SHIFT when clicking to enable for 2 frames only (useful for spammy log entries)"); +} + +void ImGui::ShowDebugLogWindow(bool* p_open) +{ + ImGuiContext& g = *GImGui; + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0) + SetNextWindowSize(ImVec2(0.0f, GetFontSize() * 12.0f), ImGuiCond_FirstUseEver); + if (!Begin("Dear ImGui Debug Log", p_open) || GetCurrentWindow()->BeginCount > 1) + { + End(); + return; + } + + ImGuiDebugLogFlags all_enable_flags = ImGuiDebugLogFlags_EventMask_ & ~ImGuiDebugLogFlags_EventInputRouting; + CheckboxFlags("All", &g.DebugLogFlags, all_enable_flags); + SetItemTooltip("(except InputRouting which is spammy)"); + + ShowDebugLogFlag("ActiveId", ImGuiDebugLogFlags_EventActiveId); + ShowDebugLogFlag("Clipper", ImGuiDebugLogFlags_EventClipper); + ShowDebugLogFlag("Focus", ImGuiDebugLogFlags_EventFocus); + ShowDebugLogFlag("IO", ImGuiDebugLogFlags_EventIO); + ShowDebugLogFlag("Nav", ImGuiDebugLogFlags_EventNav); + ShowDebugLogFlag("Popup", ImGuiDebugLogFlags_EventPopup); + ShowDebugLogFlag("Selection", ImGuiDebugLogFlags_EventSelection); + ShowDebugLogFlag("InputRouting", ImGuiDebugLogFlags_EventInputRouting); + + if (SmallButton("Clear")) + { + g.DebugLogBuf.clear(); + g.DebugLogIndex.clear(); + } + SameLine(); + if (SmallButton("Copy")) + SetClipboardText(g.DebugLogBuf.c_str()); + SameLine(); + if (SmallButton("Configure Outputs..")) + OpenPopup("Outputs"); + if (BeginPopup("Outputs")) + { + CheckboxFlags("OutputToTTY", &g.DebugLogFlags, ImGuiDebugLogFlags_OutputToTTY); +#ifndef IMGUI_ENABLE_TEST_ENGINE + BeginDisabled(); +#endif + CheckboxFlags("OutputToTestEngine", &g.DebugLogFlags, ImGuiDebugLogFlags_OutputToTestEngine); +#ifndef IMGUI_ENABLE_TEST_ENGINE + EndDisabled(); +#endif + EndPopup(); + } + + BeginChild("##log", ImVec2(0.0f, 0.0f), ImGuiChildFlags_Borders, ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_AlwaysHorizontalScrollbar); + + const ImGuiDebugLogFlags backup_log_flags = g.DebugLogFlags; + g.DebugLogFlags &= ~ImGuiDebugLogFlags_EventClipper; + + ImGuiListClipper clipper; + clipper.Begin(g.DebugLogIndex.size()); + while (clipper.Step()) + for (int line_no = clipper.DisplayStart; line_no < clipper.DisplayEnd; line_no++) + DebugTextUnformattedWithLocateItem(g.DebugLogIndex.get_line_begin(g.DebugLogBuf.c_str(), line_no), g.DebugLogIndex.get_line_end(g.DebugLogBuf.c_str(), line_no)); + g.DebugLogFlags = backup_log_flags; + if (GetScrollY() >= GetScrollMaxY()) + SetScrollHereY(1.0f); + EndChild(); + + End(); +} + +// Display line, search for 0xXXXXXXXX identifiers and call DebugLocateItemOnHover() when hovered. +void ImGui::DebugTextUnformattedWithLocateItem(const char* line_begin, const char* line_end) +{ + TextUnformatted(line_begin, line_end); + if (!IsItemHovered()) + return; + ImGuiContext& g = *GImGui; + ImRect text_rect = g.LastItemData.Rect; + for (const char* p = line_begin; p <= line_end - 10; p++) + { + ImGuiID id = 0; + if (p[0] != '0' || (p[1] != 'x' && p[1] != 'X') || sscanf(p + 2, "%X", &id) != 1 || ImCharIsXdigitA(p[10])) + continue; + ImVec2 p0 = CalcTextSize(line_begin, p); + ImVec2 p1 = CalcTextSize(p, p + 10); + g.LastItemData.Rect = ImRect(text_rect.Min + ImVec2(p0.x, 0.0f), text_rect.Min + ImVec2(p0.x + p1.x, p1.y)); + if (IsMouseHoveringRect(g.LastItemData.Rect.Min, g.LastItemData.Rect.Max, true)) + DebugLocateItemOnHover(id); + p += 10; + } +} + +//----------------------------------------------------------------------------- +// [SECTION] OTHER DEBUG TOOLS (ITEM PICKER, ID STACK TOOL) +//----------------------------------------------------------------------------- + +// Draw a small cross at current CursorPos in current window's DrawList +void ImGui::DebugDrawCursorPos(ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImVec2 pos = window->DC.CursorPos; + window->DrawList->AddLine(ImVec2(pos.x, pos.y - 3.0f), ImVec2(pos.x, pos.y + 4.0f), col, 1.0f); + window->DrawList->AddLine(ImVec2(pos.x - 3.0f, pos.y), ImVec2(pos.x + 4.0f, pos.y), col, 1.0f); +} + +// Draw a 10px wide rectangle around CurposPos.x using Line Y1/Y2 in current window's DrawList +void ImGui::DebugDrawLineExtents(ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + float curr_x = window->DC.CursorPos.x; + float line_y1 = (window->DC.IsSameLine ? window->DC.CursorPosPrevLine.y : window->DC.CursorPos.y); + float line_y2 = line_y1 + (window->DC.IsSameLine ? window->DC.PrevLineSize.y : window->DC.CurrLineSize.y); + window->DrawList->AddLine(ImVec2(curr_x - 5.0f, line_y1), ImVec2(curr_x + 5.0f, line_y1), col, 1.0f); + window->DrawList->AddLine(ImVec2(curr_x - 0.5f, line_y1), ImVec2(curr_x - 0.5f, line_y2), col, 1.0f); + window->DrawList->AddLine(ImVec2(curr_x - 5.0f, line_y2), ImVec2(curr_x + 5.0f, line_y2), col, 1.0f); +} + +// Draw last item rect in ForegroundDrawList (so it is always visible) +void ImGui::DebugDrawItemRect(ImU32 col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + GetForegroundDrawList(window)->AddRect(g.LastItemData.Rect.Min, g.LastItemData.Rect.Max, col); +} + +// [DEBUG] Locate item position/rectangle given an ID. +static const ImU32 DEBUG_LOCATE_ITEM_COLOR = IM_COL32(0, 255, 0, 255); // Green + +void ImGui::DebugLocateItem(ImGuiID target_id) +{ + ImGuiContext& g = *GImGui; + g.DebugLocateId = target_id; + g.DebugLocateFrames = 2; + g.DebugBreakInLocateId = false; +} + +// FIXME: Doesn't work over through a modal window, because they clear HoveredWindow. +void ImGui::DebugLocateItemOnHover(ImGuiID target_id) +{ + if (target_id == 0 || !IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenBlockedByPopup)) + return; + ImGuiContext& g = *GImGui; + DebugLocateItem(target_id); + GetForegroundDrawList(g.CurrentWindow)->AddRect(g.LastItemData.Rect.Min - ImVec2(3.0f, 3.0f), g.LastItemData.Rect.Max + ImVec2(3.0f, 3.0f), DEBUG_LOCATE_ITEM_COLOR); + + // Can't easily use a context menu here because it will mess with focus, active id etc. + if (g.IO.ConfigDebugIsDebuggerPresent && g.MouseStationaryTimer > 1.0f) + { + DebugBreakButtonTooltip(false, "in ItemAdd()"); + if (IsKeyChordPressed(g.DebugBreakKeyChord)) + g.DebugBreakInLocateId = true; + } +} + +void ImGui::DebugLocateItemResolveWithLastItem() +{ + ImGuiContext& g = *GImGui; + + // [DEBUG] Debug break requested by user + if (g.DebugBreakInLocateId) + IM_DEBUG_BREAK(); + + ImGuiLastItemData item_data = g.LastItemData; + g.DebugLocateId = 0; + ImDrawList* draw_list = GetForegroundDrawList(g.CurrentWindow); + ImRect r = item_data.Rect; + r.Expand(3.0f); + ImVec2 p1 = g.IO.MousePos; + ImVec2 p2 = ImVec2((p1.x < r.Min.x) ? r.Min.x : (p1.x > r.Max.x) ? r.Max.x : p1.x, (p1.y < r.Min.y) ? r.Min.y : (p1.y > r.Max.y) ? r.Max.y : p1.y); + draw_list->AddRect(r.Min, r.Max, DEBUG_LOCATE_ITEM_COLOR); + draw_list->AddLine(p1, p2, DEBUG_LOCATE_ITEM_COLOR); +} + +void ImGui::DebugStartItemPicker() +{ + ImGuiContext& g = *GImGui; + g.DebugItemPickerActive = true; +} + +// [DEBUG] Item picker tool - start with DebugStartItemPicker() - useful to visually select an item and break into its call-stack. +void ImGui::UpdateDebugToolItemPicker() +{ + ImGuiContext& g = *GImGui; + g.DebugItemPickerBreakId = 0; + if (!g.DebugItemPickerActive) + return; + + const ImGuiID hovered_id = g.HoveredIdPreviousFrame; + SetMouseCursor(ImGuiMouseCursor_Hand); + if (IsKeyPressed(ImGuiKey_Escape)) + g.DebugItemPickerActive = false; + const bool change_mapping = g.IO.KeyMods == (ImGuiMod_Ctrl | ImGuiMod_Shift); + if (!change_mapping && IsMouseClicked(g.DebugItemPickerMouseButton) && hovered_id) + { + g.DebugItemPickerBreakId = hovered_id; + g.DebugItemPickerActive = false; + } + for (int mouse_button = 0; mouse_button < 3; mouse_button++) + if (change_mapping && IsMouseClicked(mouse_button)) + g.DebugItemPickerMouseButton = (ImU8)mouse_button; + SetNextWindowBgAlpha(0.70f); + if (!BeginTooltip()) + return; + Text("HoveredId: 0x%08X", hovered_id); + Text("Press ESC to abort picking."); + const char* mouse_button_names[] = { "Left", "Right", "Middle" }; + if (change_mapping) + Text("Remap w/ Ctrl+Shift: click anywhere to select new mouse button."); + else + TextColored(GetStyleColorVec4(hovered_id ? ImGuiCol_Text : ImGuiCol_TextDisabled), "Click %s Button to break in debugger! (remap w/ Ctrl+Shift)", mouse_button_names[g.DebugItemPickerMouseButton]); + EndTooltip(); +} + +// [DEBUG] ID Stack Tool: update queries. Called by NewFrame() +void ImGui::UpdateDebugToolStackQueries() +{ + ImGuiContext& g = *GImGui; + ImGuiIDStackTool* tool = &g.DebugIDStackTool; + + // Clear hook when id stack tool is not visible + g.DebugHookIdInfo = 0; + if (g.FrameCount != tool->LastActiveFrame + 1) + return; + + // Update queries. The steps are: -1: query Stack, >= 0: query each stack item + // We can only perform 1 ID Info query every frame. This is designed so the GetID() tests are cheap and constant-time + const ImGuiID query_id = g.HoveredIdPreviousFrame ? g.HoveredIdPreviousFrame : g.ActiveId; + if (tool->QueryId != query_id) + { + tool->QueryId = query_id; + tool->StackLevel = -1; + tool->Results.resize(0); + } + if (query_id == 0) + return; + + // Advance to next stack level when we got our result, or after 2 frames (in case we never get a result) + int stack_level = tool->StackLevel; + if (stack_level >= 0 && stack_level < tool->Results.Size) + if (tool->Results[stack_level].QuerySuccess || tool->Results[stack_level].QueryFrameCount > 2) + tool->StackLevel++; + + // Update hook + stack_level = tool->StackLevel; + if (stack_level == -1) + g.DebugHookIdInfo = query_id; + if (stack_level >= 0 && stack_level < tool->Results.Size) + { + g.DebugHookIdInfo = tool->Results[stack_level].ID; + tool->Results[stack_level].QueryFrameCount++; + } +} + +// [DEBUG] ID Stack tool: hooks called by GetID() family functions +void ImGui::DebugHookIdInfo(ImGuiID id, ImGuiDataType data_type, const void* data_id, const void* data_id_end) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiIDStackTool* tool = &g.DebugIDStackTool; + + // Step 0: stack query + // This assumes that the ID was computed with the current ID stack, which tends to be the case for our widget. + if (tool->StackLevel == -1) + { + tool->StackLevel++; + tool->Results.resize(window->IDStack.Size + 1, ImGuiStackLevelInfo()); + for (int n = 0; n < window->IDStack.Size + 1; n++) + tool->Results[n].ID = (n < window->IDStack.Size) ? window->IDStack[n] : id; + return; + } + + // Step 1+: query for individual level + IM_ASSERT(tool->StackLevel >= 0); + if (tool->StackLevel != window->IDStack.Size) + return; + ImGuiStackLevelInfo* info = &tool->Results[tool->StackLevel]; + IM_ASSERT(info->ID == id && info->QueryFrameCount > 0); + + switch (data_type) + { + case ImGuiDataType_S32: + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "%d", (int)(intptr_t)data_id); + break; + case ImGuiDataType_String: + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "%.*s", data_id_end ? (int)((const char*)data_id_end - (const char*)data_id) : (int)strlen((const char*)data_id), (const char*)data_id); + break; + case ImGuiDataType_Pointer: + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "(void*)0x%p", data_id); + break; + case ImGuiDataType_ID: + if (info->Desc[0] != 0) // PushOverrideID() is often used to avoid hashing twice, which would lead to 2 calls to DebugHookIdInfo(). We prioritize the first one. + return; + ImFormatString(info->Desc, IM_ARRAYSIZE(info->Desc), "0x%08X [override]", id); + break; + default: + IM_ASSERT(0); + } + info->QuerySuccess = true; + info->DataType = data_type; +} + +static int StackToolFormatLevelInfo(ImGuiIDStackTool* tool, int n, bool format_for_ui, char* buf, size_t buf_size) +{ + ImGuiStackLevelInfo* info = &tool->Results[n]; + ImGuiWindow* window = (info->Desc[0] == 0 && n == 0) ? ImGui::FindWindowByID(info->ID) : NULL; + if (window) // Source: window name (because the root ID don't call GetID() and so doesn't get hooked) + return ImFormatString(buf, buf_size, format_for_ui ? "\"%s\" [window]" : "%s", window->Name); + if (info->QuerySuccess) // Source: GetID() hooks (prioritize over ItemInfo() because we frequently use patterns like: PushID(str), Button("") where they both have same id) + return ImFormatString(buf, buf_size, (format_for_ui && info->DataType == ImGuiDataType_String) ? "\"%s\"" : "%s", info->Desc); + if (tool->StackLevel < tool->Results.Size) // Only start using fallback below when all queries are done, so during queries we don't flickering ??? markers. + return (*buf = 0); +#ifdef IMGUI_ENABLE_TEST_ENGINE + if (const char* label = ImGuiTestEngine_FindItemDebugLabel(GImGui, info->ID)) // Source: ImGuiTestEngine's ItemInfo() + return ImFormatString(buf, buf_size, format_for_ui ? "??? \"%s\"" : "%s", label); +#endif + return ImFormatString(buf, buf_size, "???"); +} + +// ID Stack Tool: Display UI +void ImGui::ShowIDStackToolWindow(bool* p_open) +{ + ImGuiContext& g = *GImGui; + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0) + SetNextWindowSize(ImVec2(0.0f, GetFontSize() * 8.0f), ImGuiCond_FirstUseEver); + if (!Begin("Dear ImGui ID Stack Tool", p_open) || GetCurrentWindow()->BeginCount > 1) + { + End(); + return; + } + + // Display hovered/active status + ImGuiIDStackTool* tool = &g.DebugIDStackTool; + const ImGuiID hovered_id = g.HoveredIdPreviousFrame; + const ImGuiID active_id = g.ActiveId; +#ifdef IMGUI_ENABLE_TEST_ENGINE + Text("HoveredId: 0x%08X (\"%s\"), ActiveId: 0x%08X (\"%s\")", hovered_id, hovered_id ? ImGuiTestEngine_FindItemDebugLabel(&g, hovered_id) : "", active_id, active_id ? ImGuiTestEngine_FindItemDebugLabel(&g, active_id) : ""); +#else + Text("HoveredId: 0x%08X, ActiveId: 0x%08X", hovered_id, active_id); +#endif + SameLine(); + MetricsHelpMarker("Hover an item with the mouse to display elements of the ID Stack leading to the item's final ID.\nEach level of the stack correspond to a PushID() call.\nAll levels of the stack are hashed together to make the final ID of a widget (ID displayed at the bottom level of the stack).\nRead FAQ entry about the ID stack for details."); + + // CTRL+C to copy path + const float time_since_copy = (float)g.Time - tool->CopyToClipboardLastTime; + Checkbox("Ctrl+C: copy path to clipboard", &tool->CopyToClipboardOnCtrlC); + SameLine(); + TextColored((time_since_copy >= 0.0f && time_since_copy < 0.75f && ImFmod(time_since_copy, 0.25f) < 0.25f * 0.5f) ? ImVec4(1.f, 1.f, 0.3f, 1.f) : ImVec4(), "*COPIED*"); + if (tool->CopyToClipboardOnCtrlC && Shortcut(ImGuiMod_Ctrl | ImGuiKey_C, ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteOverFocused)) + { + tool->CopyToClipboardLastTime = (float)g.Time; + char* p = g.TempBuffer.Data; + char* p_end = p + g.TempBuffer.Size; + for (int stack_n = 0; stack_n < tool->Results.Size && p + 3 < p_end; stack_n++) + { + *p++ = '/'; + char level_desc[256]; + StackToolFormatLevelInfo(tool, stack_n, false, level_desc, IM_ARRAYSIZE(level_desc)); + for (int n = 0; level_desc[n] && p + 2 < p_end; n++) + { + if (level_desc[n] == '/') + *p++ = '\\'; + *p++ = level_desc[n]; + } + } + *p = '\0'; + SetClipboardText(g.TempBuffer.Data); + } + + // Display decorated stack + tool->LastActiveFrame = g.FrameCount; + if (tool->Results.Size > 0 && BeginTable("##table", 3, ImGuiTableFlags_Borders)) + { + const float id_width = CalcTextSize("0xDDDDDDDD").x; + TableSetupColumn("Seed", ImGuiTableColumnFlags_WidthFixed, id_width); + TableSetupColumn("PushID", ImGuiTableColumnFlags_WidthStretch); + TableSetupColumn("Result", ImGuiTableColumnFlags_WidthFixed, id_width); + TableHeadersRow(); + for (int n = 0; n < tool->Results.Size; n++) + { + ImGuiStackLevelInfo* info = &tool->Results[n]; + TableNextColumn(); + Text("0x%08X", (n > 0) ? tool->Results[n - 1].ID : 0); + TableNextColumn(); + StackToolFormatLevelInfo(tool, n, true, g.TempBuffer.Data, g.TempBuffer.Size); + TextUnformatted(g.TempBuffer.Data); + TableNextColumn(); + Text("0x%08X", info->ID); + if (n == tool->Results.Size - 1) + TableSetBgColor(ImGuiTableBgTarget_CellBg, GetColorU32(ImGuiCol_Header)); + } + EndTable(); + } + End(); +} + +#else + +void ImGui::ShowMetricsWindow(bool*) {} +void ImGui::ShowFontAtlas(ImFontAtlas*) {} +void ImGui::DebugNodeColumns(ImGuiOldColumns*) {} +void ImGui::DebugNodeDrawList(ImGuiWindow*, ImGuiViewportP*, const ImDrawList*, const char*) {} +void ImGui::DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList*, const ImDrawList*, const ImDrawCmd*, bool, bool) {} +void ImGui::DebugNodeFont(ImFont*) {} +void ImGui::DebugNodeStorage(ImGuiStorage*, const char*) {} +void ImGui::DebugNodeTabBar(ImGuiTabBar*, const char*) {} +void ImGui::DebugNodeWindow(ImGuiWindow*, const char*) {} +void ImGui::DebugNodeWindowSettings(ImGuiWindowSettings*) {} +void ImGui::DebugNodeWindowsList(ImVector*, const char*) {} +void ImGui::DebugNodeViewport(ImGuiViewportP*) {} + +void ImGui::ShowDebugLogWindow(bool*) {} +void ImGui::ShowIDStackToolWindow(bool*) {} +void ImGui::DebugStartItemPicker() {} +void ImGui::DebugHookIdInfo(ImGuiID, ImGuiDataType, const void*, const void*) {} + +#endif // #ifndef IMGUI_DISABLE_DEBUG_TOOLS + +//----------------------------------------------------------------------------- + +// Include imgui_user.inl at the end of imgui.cpp to access private data/functions that aren't exposed. +// Prefer just including imgui_internal.h from your code rather than using this define. If a declaration is missing from imgui_internal.h add it or request it on the github. +#ifdef IMGUI_INCLUDE_IMGUI_USER_INL +#include "imgui_user.inl" +#endif + +//----------------------------------------------------------------------------- + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imgui.h b/external/lumin/thirdparty/imgui/imgui.h new file mode 100644 index 0000000..5a77e8a --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui.h @@ -0,0 +1,3731 @@ +// dear imgui, v1.91.3 WIP +// (headers) + +// Help: +// - See links below. +// - Call and read ImGui::ShowDemoWindow() in imgui_demo.cpp. All applications in examples/ are doing that. +// - Read top of imgui.cpp for more details, links and comments. +// - Add '#define IMGUI_DEFINE_MATH_OPERATORS' before including this file (or in imconfig.h) to access courtesy maths operators for ImVec2 and ImVec4. + +// Resources: +// - FAQ ........................ https://dearimgui.com/faq (in repository as docs/FAQ.md) +// - Homepage ................... https://github.com/ocornut/imgui +// - Releases & changelog ....... https://github.com/ocornut/imgui/releases +// - Gallery .................... https://github.com/ocornut/imgui/issues?q=label%3Agallery (please post your screenshots/video there!) +// - Wiki ....................... https://github.com/ocornut/imgui/wiki (lots of good stuff there) +// - Getting Started https://github.com/ocornut/imgui/wiki/Getting-Started (how to integrate in an existing app by adding ~25 lines of code) +// - Third-party Extensions https://github.com/ocornut/imgui/wiki/Useful-Extensions (ImPlot & many more) +// - Bindings/Backends https://github.com/ocornut/imgui/wiki/Bindings (language bindings, backends for various tech/engines) +// - Glossary https://github.com/ocornut/imgui/wiki/Glossary +// - Debug Tools https://github.com/ocornut/imgui/wiki/Debug-Tools +// - Software using Dear ImGui https://github.com/ocornut/imgui/wiki/Software-using-dear-imgui +// - Issues & support ........... https://github.com/ocornut/imgui/issues +// - Test Engine & Automation ... https://github.com/ocornut/imgui_test_engine (test suite, test engine to automate your apps) + +// For first-time users having issues compiling/linking/running/loading fonts: +// please post in https://github.com/ocornut/imgui/discussions if you cannot find a solution in resources above. +// Everything else should be asked in 'Issues'! We are building a database of cross-linked knowledge there. + +// Library Version +// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345') +#define IMGUI_VERSION "1.91.3 WIP" +#define IMGUI_VERSION_NUM 19121 +#define IMGUI_HAS_TABLE + +/* + +Index of this file: +// [SECTION] Header mess +// [SECTION] Forward declarations and basic types +// [SECTION] Dear ImGui end-user API functions +// [SECTION] Flags & Enumerations +// [SECTION] Tables API flags and structures (ImGuiTableFlags, ImGuiTableColumnFlags, ImGuiTableRowFlags, ImGuiTableBgTarget, ImGuiTableSortSpecs, ImGuiTableColumnSortSpecs) +// [SECTION] Helpers: Debug log, Memory allocations macros, ImVector<> +// [SECTION] ImGuiStyle +// [SECTION] ImGuiIO +// [SECTION] Misc data structures (ImGuiInputTextCallbackData, ImGuiSizeCallbackData, ImGuiPayload) +// [SECTION] Helpers (ImGuiOnceUponAFrame, ImGuiTextFilter, ImGuiTextBuffer, ImGuiStorage, ImGuiListClipper, Math Operators, ImColor) +// [SECTION] Multi-Select API flags and structures (ImGuiMultiSelectFlags, ImGuiMultiSelectIO, ImGuiSelectionRequest, ImGuiSelectionBasicStorage, ImGuiSelectionExternalStorage) +// [SECTION] Drawing API (ImDrawCallback, ImDrawCmd, ImDrawIdx, ImDrawVert, ImDrawChannel, ImDrawListSplitter, ImDrawFlags, ImDrawListFlags, ImDrawList, ImDrawData) +// [SECTION] Font API (ImFontConfig, ImFontGlyph, ImFontGlyphRangesBuilder, ImFontAtlasFlags, ImFontAtlas, ImFont) +// [SECTION] Viewports (ImGuiViewportFlags, ImGuiViewport) +// [SECTION] ImGuiPlatformIO + other Platform Dependent Interfaces (ImGuiPlatformImeData) +// [SECTION] Obsolete functions and types + +*/ + +#pragma once + +// Configuration file with compile-time options +// (edit imconfig.h or '#define IMGUI_USER_CONFIG "myfilename.h" from your build system) +#ifdef IMGUI_USER_CONFIG +#include IMGUI_USER_CONFIG +#endif +#include "imconfig.h" + +#ifndef IMGUI_DISABLE + +//----------------------------------------------------------------------------- +// [SECTION] Header mess +//----------------------------------------------------------------------------- + +// Includes +#include // FLT_MIN, FLT_MAX +#include // va_list, va_start, va_end +#include // ptrdiff_t, NULL +#include // memset, memmove, memcpy, strlen, strchr, strcpy, strcmp + +// Define attributes of all API symbols declarations (e.g. for DLL under Windows) +// IMGUI_API is used for core imgui functions, IMGUI_IMPL_API is used for the default backends files (imgui_impl_xxx.h) +// Using dear imgui via a shared library is not recommended: we don't guarantee backward nor forward ABI compatibility + this is a call-heavy library and function call overhead adds up. +#ifndef IMGUI_API +#define IMGUI_API +#endif +#ifndef IMGUI_IMPL_API +#define IMGUI_IMPL_API IMGUI_API +#endif + +// Helper Macros +#ifndef IM_ASSERT +#include +#define IM_ASSERT(_EXPR) assert(_EXPR) // You can override the default assert handler by editing imconfig.h +#endif +#define IM_ARRAYSIZE(_ARR) ((int)(sizeof(_ARR) / sizeof(*(_ARR)))) // Size of a static C-style array. Don't use on pointers! +#define IM_UNUSED(_VAR) ((void)(_VAR)) // Used to silence "unused variable warnings". Often useful as asserts may be stripped out from final builds. + +// Check that version and structures layouts are matching between compiled imgui code and caller. Read comments above DebugCheckVersionAndDataLayout() for details. +#define IMGUI_CHECKVERSION() ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx)) + +// Helper Macros - IM_FMTARGS, IM_FMTLIST: Apply printf-style warnings to our formatting functions. +// (MSVC provides an equivalent mechanism via SAL Annotations but it would require the macros in a different +// location. e.g. #include + void myprintf(_Printf_format_string_ const char* format, ...)) +#if !defined(IMGUI_USE_STB_SPRINTF) && defined(__MINGW32__) && !defined(__clang__) +#define IM_FMTARGS(FMT) __attribute__((format(gnu_printf, FMT, FMT+1))) +#define IM_FMTLIST(FMT) __attribute__((format(gnu_printf, FMT, 0))) +#elif !defined(IMGUI_USE_STB_SPRINTF) && (defined(__clang__) || defined(__GNUC__)) +#define IM_FMTARGS(FMT) __attribute__((format(printf, FMT, FMT+1))) +#define IM_FMTLIST(FMT) __attribute__((format(printf, FMT, 0))) +#else +#define IM_FMTARGS(FMT) +#define IM_FMTLIST(FMT) +#endif + +// Disable some of MSVC most aggressive Debug runtime checks in function header/footer (used in some simple/low-level functions) +#if defined(_MSC_VER) && !defined(__clang__) && !defined(__INTEL_COMPILER) && !defined(IMGUI_DEBUG_PARANOID) +#define IM_MSVC_RUNTIME_CHECKS_OFF __pragma(runtime_checks("",off)) __pragma(check_stack(off)) __pragma(strict_gs_check(push,off)) +#define IM_MSVC_RUNTIME_CHECKS_RESTORE __pragma(runtime_checks("",restore)) __pragma(check_stack()) __pragma(strict_gs_check(pop)) +#else +#define IM_MSVC_RUNTIME_CHECKS_OFF +#define IM_MSVC_RUNTIME_CHECKS_RESTORE +#endif + +// Warnings +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6). +#endif +#if defined(__clang__) +#pragma clang diagnostic push +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" +#pragma clang diagnostic ignored "-Wreserved-identifier" // warning: identifier '_Xxx' is reserved because it starts with '_' followed by a capital letter +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" // warning: 'xxx' is an unsafe pointer used for buffer access +#elif defined(__GNUC__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Forward declarations and basic types +//----------------------------------------------------------------------------- + +// Scalar data types +typedef unsigned int ImGuiID;// A unique ID used by widgets (typically the result of hashing a stack of string) +typedef signed char ImS8; // 8-bit signed integer +typedef unsigned char ImU8; // 8-bit unsigned integer +typedef signed short ImS16; // 16-bit signed integer +typedef unsigned short ImU16; // 16-bit unsigned integer +typedef signed int ImS32; // 32-bit signed integer == int +typedef unsigned int ImU32; // 32-bit unsigned integer (often used to store packed colors) +typedef signed long long ImS64; // 64-bit signed integer +typedef unsigned long long ImU64; // 64-bit unsigned integer + +// Forward declarations +struct ImDrawChannel; // Temporary storage to output draw commands out of order, used by ImDrawListSplitter and ImDrawList::ChannelsSplit() +struct ImDrawCmd; // A single draw command within a parent ImDrawList (generally maps to 1 GPU draw call, unless it is a callback) +struct ImDrawData; // All draw command lists required to render the frame + pos/size coordinates to use for the projection matrix. +struct ImDrawList; // A single draw command list (generally one per window, conceptually you may see this as a dynamic "mesh" builder) +struct ImDrawListSharedData; // Data shared among multiple draw lists (typically owned by parent ImGui context, but you may create one yourself) +struct ImDrawListSplitter; // Helper to split a draw list into different layers which can be drawn into out of order, then flattened back. +struct ImDrawVert; // A single vertex (pos + uv + col = 20 bytes by default. Override layout with IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT) +struct ImFont; // Runtime data for a single font within a parent ImFontAtlas +struct ImFontAtlas; // Runtime data for multiple fonts, bake multiple fonts into a single texture, TTF/OTF font loader +struct ImFontBuilderIO; // Opaque interface to a font builder (stb_truetype or FreeType). +struct ImFontConfig; // Configuration data when adding a font or merging fonts +struct ImFontGlyph; // A single font glyph (code point + coordinates within in ImFontAtlas + offset) +struct ImFontGlyphRangesBuilder; // Helper to build glyph ranges from text/string data +struct ImColor; // Helper functions to create a color that can be converted to either u32 or float4 (*OBSOLETE* please avoid using) +struct ImGuiContext; // Dear ImGui context (opaque structure, unless including imgui_internal.h) +struct ImGuiIO; // Main configuration and I/O between your application and ImGui (also see: ImGuiPlatformIO) +struct ImGuiInputTextCallbackData; // Shared state of InputText() when using custom ImGuiInputTextCallback (rare/advanced use) +struct ImGuiKeyData; // Storage for ImGuiIO and IsKeyDown(), IsKeyPressed() etc functions. +struct ImGuiListClipper; // Helper to manually clip large list of items +struct ImGuiMultiSelectIO; // Structure to interact with a BeginMultiSelect()/EndMultiSelect() block +struct ImGuiOnceUponAFrame; // Helper for running a block of code not more than once a frame +struct ImGuiPayload; // User data payload for drag and drop operations +struct ImGuiPlatformIO; // Interface between platform/renderer backends and ImGui (e.g. Clipboard, IME hooks). Extends ImGuiIO. In docking branch, this gets extended to support multi-viewports. +struct ImGuiPlatformImeData; // Platform IME data for io.PlatformSetImeDataFn() function. +struct ImGuiSelectionBasicStorage; // Optional helper to store multi-selection state + apply multi-selection requests. +struct ImGuiSelectionExternalStorage;//Optional helper to apply multi-selection requests to existing randomly accessible storage. +struct ImGuiSelectionRequest; // A selection request (stored in ImGuiMultiSelectIO) +struct ImGuiSizeCallbackData; // Callback data when using SetNextWindowSizeConstraints() (rare/advanced use) +struct ImGuiStorage; // Helper for key->value storage (container sorted by key) +struct ImGuiStoragePair; // Helper for key->value storage (pair) +struct ImGuiStyle; // Runtime data for styling/colors +struct ImGuiTableSortSpecs; // Sorting specifications for a table (often handling sort specs for a single column, occasionally more) +struct ImGuiTableColumnSortSpecs; // Sorting specification for one column of a table +struct ImGuiTextBuffer; // Helper to hold and append into a text buffer (~string builder) +struct ImGuiTextFilter; // Helper to parse and apply text filters (e.g. "aaaaa[,bbbbb][,ccccc]") +struct ImGuiViewport; // A Platform Window (always only one in 'master' branch), in the future may represent Platform Monitor + +// Enumerations +// - We don't use strongly typed enums much because they add constraints (can't extend in private code, can't store typed in bit fields, extra casting on iteration) +// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists! +// - In Visual Studio: CTRL+comma ("Edit.GoToAll") can follow symbols inside comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// - In Visual Studio w/ Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. +// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments. +enum ImGuiDir : int; // -> enum ImGuiDir // Enum: A cardinal direction (Left, Right, Up, Down) +enum ImGuiKey : int; // -> enum ImGuiKey // Enum: A key identifier (ImGuiKey_XXX or ImGuiMod_XXX value) +enum ImGuiMouseSource : int; // -> enum ImGuiMouseSource // Enum; A mouse input source identifier (Mouse, TouchScreen, Pen) +enum ImGuiSortDirection : ImU8; // -> enum ImGuiSortDirection // Enum: A sorting direction (ascending or descending) +typedef int ImGuiCol; // -> enum ImGuiCol_ // Enum: A color identifier for styling +typedef int ImGuiCond; // -> enum ImGuiCond_ // Enum: A condition for many Set*() functions +typedef int ImGuiDataType; // -> enum ImGuiDataType_ // Enum: A primary data type +typedef int ImGuiMouseButton; // -> enum ImGuiMouseButton_ // Enum: A mouse button identifier (0=left, 1=right, 2=middle) +typedef int ImGuiMouseCursor; // -> enum ImGuiMouseCursor_ // Enum: A mouse cursor shape +typedef int ImGuiStyleVar; // -> enum ImGuiStyleVar_ // Enum: A variable identifier for styling +typedef int ImGuiTableBgTarget; // -> enum ImGuiTableBgTarget_ // Enum: A color target for TableSetBgColor() + +// Flags (declared as int to allow using as flags without overhead, and to not pollute the top of this file) +// - Tip: Use your programming IDE navigation facilities on the names in the _central column_ below to find the actual flags/enum lists! +// - In Visual Studio: CTRL+comma ("Edit.GoToAll") can follow symbols inside comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// - In Visual Studio w/ Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. +// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments. +typedef int ImDrawFlags; // -> enum ImDrawFlags_ // Flags: for ImDrawList functions +typedef int ImDrawListFlags; // -> enum ImDrawListFlags_ // Flags: for ImDrawList instance +typedef int ImFontAtlasFlags; // -> enum ImFontAtlasFlags_ // Flags: for ImFontAtlas build +typedef int ImGuiBackendFlags; // -> enum ImGuiBackendFlags_ // Flags: for io.BackendFlags +typedef int ImGuiButtonFlags; // -> enum ImGuiButtonFlags_ // Flags: for InvisibleButton() +typedef int ImGuiChildFlags; // -> enum ImGuiChildFlags_ // Flags: for BeginChild() +typedef int ImGuiColorEditFlags; // -> enum ImGuiColorEditFlags_ // Flags: for ColorEdit4(), ColorPicker4() etc. +typedef int ImGuiConfigFlags; // -> enum ImGuiConfigFlags_ // Flags: for io.ConfigFlags +typedef int ImGuiComboFlags; // -> enum ImGuiComboFlags_ // Flags: for BeginCombo() +typedef int ImGuiDragDropFlags; // -> enum ImGuiDragDropFlags_ // Flags: for BeginDragDropSource(), AcceptDragDropPayload() +typedef int ImGuiFocusedFlags; // -> enum ImGuiFocusedFlags_ // Flags: for IsWindowFocused() +typedef int ImGuiHoveredFlags; // -> enum ImGuiHoveredFlags_ // Flags: for IsItemHovered(), IsWindowHovered() etc. +typedef int ImGuiInputFlags; // -> enum ImGuiInputFlags_ // Flags: for Shortcut(), SetNextItemShortcut() +typedef int ImGuiInputTextFlags; // -> enum ImGuiInputTextFlags_ // Flags: for InputText(), InputTextMultiline() +typedef int ImGuiItemFlags; // -> enum ImGuiItemFlags_ // Flags: for PushItemFlag(), shared by all items +typedef int ImGuiKeyChord; // -> ImGuiKey | ImGuiMod_XXX // Flags: for IsKeyChordPressed(), Shortcut() etc. an ImGuiKey optionally OR-ed with one or more ImGuiMod_XXX values. +typedef int ImGuiPopupFlags; // -> enum ImGuiPopupFlags_ // Flags: for OpenPopup*(), BeginPopupContext*(), IsPopupOpen() +typedef int ImGuiMultiSelectFlags; // -> enum ImGuiMultiSelectFlags_// Flags: for BeginMultiSelect() +typedef int ImGuiSelectableFlags; // -> enum ImGuiSelectableFlags_ // Flags: for Selectable() +typedef int ImGuiSliderFlags; // -> enum ImGuiSliderFlags_ // Flags: for DragFloat(), DragInt(), SliderFloat(), SliderInt() etc. +typedef int ImGuiTabBarFlags; // -> enum ImGuiTabBarFlags_ // Flags: for BeginTabBar() +typedef int ImGuiTabItemFlags; // -> enum ImGuiTabItemFlags_ // Flags: for BeginTabItem() +typedef int ImGuiTableFlags; // -> enum ImGuiTableFlags_ // Flags: For BeginTable() +typedef int ImGuiTableColumnFlags; // -> enum ImGuiTableColumnFlags_// Flags: For TableSetupColumn() +typedef int ImGuiTableRowFlags; // -> enum ImGuiTableRowFlags_ // Flags: For TableNextRow() +typedef int ImGuiTreeNodeFlags; // -> enum ImGuiTreeNodeFlags_ // Flags: for TreeNode(), TreeNodeEx(), CollapsingHeader() +typedef int ImGuiViewportFlags; // -> enum ImGuiViewportFlags_ // Flags: for ImGuiViewport +typedef int ImGuiWindowFlags; // -> enum ImGuiWindowFlags_ // Flags: for Begin(), BeginChild() + +// ImTexture: user data for renderer backend to identify a texture [Compile-time configurable type] +// - To use something else than an opaque void* pointer: override with e.g. '#define ImTextureID MyTextureType*' in your imconfig.h file. +// - This can be whatever to you want it to be! read the FAQ about ImTextureID for details. +#ifndef ImTextureID +typedef void* ImTextureID; // Default: store a pointer or an integer fitting in a pointer (most renderer backends are ok with that) +#endif + +// ImDrawIdx: vertex index. [Compile-time configurable type] +// - To use 16-bit indices + allow large meshes: backend need to set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset' and handle ImDrawCmd::VtxOffset (recommended). +// - To use 32-bit indices: override with '#define ImDrawIdx unsigned int' in your imconfig.h file. +#ifndef ImDrawIdx +typedef unsigned short ImDrawIdx; // Default: 16-bit (for maximum compatibility with renderer backends) +#endif + +// Character types +// (we generally use UTF-8 encoded string in the API. This is storage specifically for a decoded character used for keyboard input and display) +typedef unsigned int ImWchar32; // A single decoded U32 character/code point. We encode them as multi bytes UTF-8 when used in strings. +typedef unsigned short ImWchar16; // A single decoded U16 character/code point. We encode them as multi bytes UTF-8 when used in strings. +#ifdef IMGUI_USE_WCHAR32 // ImWchar [configurable type: override in imconfig.h with '#define IMGUI_USE_WCHAR32' to support Unicode planes 1-16] +typedef ImWchar32 ImWchar; +#else +typedef ImWchar16 ImWchar; +#endif + +// Multi-Selection item index or identifier when using BeginMultiSelect() +// - Used by SetNextItemSelectionUserData() + and inside ImGuiMultiSelectIO structure. +// - Most users are likely to use this store an item INDEX but this may be used to store a POINTER/ID as well. Read comments near ImGuiMultiSelectIO for details. +typedef ImS64 ImGuiSelectionUserData; + +// Callback and functions types +typedef int (*ImGuiInputTextCallback)(ImGuiInputTextCallbackData* data); // Callback function for ImGui::InputText() +typedef void (*ImGuiSizeCallback)(ImGuiSizeCallbackData* data); // Callback function for ImGui::SetNextWindowSizeConstraints() +typedef void* (*ImGuiMemAllocFunc)(size_t sz, void* user_data); // Function signature for ImGui::SetAllocatorFunctions() +typedef void (*ImGuiMemFreeFunc)(void* ptr, void* user_data); // Function signature for ImGui::SetAllocatorFunctions() + +// ImVec2: 2D vector used to store positions, sizes etc. [Compile-time configurable type] +// - This is a frequently used type in the API. Consider using IM_VEC2_CLASS_EXTRA to create implicit cast from/to our preferred type. +// - Add '#define IMGUI_DEFINE_MATH_OPERATORS' before including this file (or in imconfig.h) to access courtesy maths operators for ImVec2 and ImVec4. +IM_MSVC_RUNTIME_CHECKS_OFF +struct ImVec2 +{ + float x, y; + constexpr ImVec2() : x(0.0f), y(0.0f) { } + constexpr ImVec2(float _x, float _y) : x(_x), y(_y) { } + float& operator[] (size_t idx) { IM_ASSERT(idx == 0 || idx == 1); return ((float*)(void*)(char*)this)[idx]; } // We very rarely use this [] operator, so the assert overhead is fine. + float operator[] (size_t idx) const { IM_ASSERT(idx == 0 || idx == 1); return ((const float*)(const void*)(const char*)this)[idx]; } +#ifdef IM_VEC2_CLASS_EXTRA + IM_VEC2_CLASS_EXTRA // Define additional constructors and implicit cast operators in imconfig.h to convert back and forth between your math types and ImVec2. +#endif +}; + +// ImVec4: 4D vector used to store clipping rectangles, colors etc. [Compile-time configurable type] +struct ImVec4 +{ + float x, y, z, w; + constexpr ImVec4() : x(0.0f), y(0.0f), z(0.0f), w(0.0f) { } + constexpr ImVec4(float _x, float _y, float _z, float _w) : x(_x), y(_y), z(_z), w(_w) { } +#ifdef IM_VEC4_CLASS_EXTRA + IM_VEC4_CLASS_EXTRA // Define additional constructors and implicit cast operators in imconfig.h to convert back and forth between your math types and ImVec4. +#endif +}; +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] Dear ImGui end-user API functions +// (Note that ImGui:: being a namespace, you can add extra ImGui:: functions in your own separate file. Please don't modify imgui source files!) +//----------------------------------------------------------------------------- + +namespace ImGui +{ + // Context creation and access + // - Each context create its own ImFontAtlas by default. You may instance one yourself and pass it to CreateContext() to share a font atlas between contexts. + // - DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() + // for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for details. + IMGUI_API ImGuiContext* CreateContext(ImFontAtlas* shared_font_atlas = NULL); + IMGUI_API void DestroyContext(ImGuiContext* ctx = NULL); // NULL = destroy current context + IMGUI_API ImGuiContext* GetCurrentContext(); + IMGUI_API void SetCurrentContext(ImGuiContext* ctx); + + // Main + IMGUI_API ImGuiIO& GetIO(); // access the ImGuiIO structure (mouse/keyboard/gamepad inputs, time, various configuration options/flags) + IMGUI_API ImGuiPlatformIO& GetPlatformIO(); // access the ImGuiPlatformIO structure (mostly hooks/functions to connect to platform/renderer and OS Clipboard, IME etc.) + IMGUI_API ImGuiStyle& GetStyle(); // access the Style structure (colors, sizes). Always use PushStyleColor(), PushStyleVar() to modify style mid-frame! + IMGUI_API void NewFrame(); // start a new Dear ImGui frame, you can submit any command from this point until Render()/EndFrame(). + IMGUI_API void EndFrame(); // ends the Dear ImGui frame. automatically called by Render(). If you don't need to render data (skipping rendering) you may call EndFrame() without Render()... but you'll have wasted CPU already! If you don't need to render, better to not create any windows and not call NewFrame() at all! + IMGUI_API void Render(); // ends the Dear ImGui frame, finalize the draw data. You can then get call GetDrawData(). + IMGUI_API ImDrawData* GetDrawData(); // valid after Render() and until the next call to NewFrame(). this is what you have to render. + + // Demo, Debug, Information + IMGUI_API void ShowDemoWindow(bool* p_open = NULL); // create Demo window. demonstrate most ImGui features. call this to learn about the library! try to make it always available in your application! + IMGUI_API void ShowMetricsWindow(bool* p_open = NULL); // create Metrics/Debugger window. display Dear ImGui internals: windows, draw commands, various internal state, etc. + IMGUI_API void ShowDebugLogWindow(bool* p_open = NULL); // create Debug Log window. display a simplified log of important dear imgui events. + IMGUI_API void ShowIDStackToolWindow(bool* p_open = NULL); // create Stack Tool window. hover items with mouse to query information about the source of their unique ID. + IMGUI_API void ShowAboutWindow(bool* p_open = NULL); // create About window. display Dear ImGui version, credits and build/system information. + IMGUI_API void ShowStyleEditor(ImGuiStyle* ref = NULL); // add style editor block (not a window). you can pass in a reference ImGuiStyle structure to compare to, revert to and save to (else it uses the default style) + IMGUI_API bool ShowStyleSelector(const char* label); // add style selector block (not a window), essentially a combo listing the default styles. + IMGUI_API void ShowFontSelector(const char* label); // add font selector block (not a window), essentially a combo listing the loaded fonts. + IMGUI_API void ShowUserGuide(); // add basic help/info block (not a window): how to manipulate ImGui as an end-user (mouse/keyboard controls). + IMGUI_API const char* GetVersion(); // get the compiled version string e.g. "1.80 WIP" (essentially the value for IMGUI_VERSION from the compiled version of imgui.cpp) + + // Styles + IMGUI_API void StyleColorsDark(ImGuiStyle* dst = NULL); // new, recommended style (default) + IMGUI_API void StyleColorsLight(ImGuiStyle* dst = NULL); // best used with borders and a custom, thicker font + IMGUI_API void StyleColorsClassic(ImGuiStyle* dst = NULL); // classic imgui style + + // Windows + // - Begin() = push window to the stack and start appending to it. End() = pop window from the stack. + // - Passing 'bool* p_open != NULL' shows a window-closing widget in the upper-right corner of the window, + // which clicking will set the boolean to false when clicked. + // - You may append multiple times to the same window during the same frame by calling Begin()/End() pairs multiple times. + // Some information such as 'flags' or 'p_open' will only be considered by the first call to Begin(). + // - Begin() return false to indicate the window is collapsed or fully clipped, so you may early out and omit submitting + // anything to the window. Always call a matching End() for each Begin() call, regardless of its return value! + // [Important: due to legacy reason, Begin/End and BeginChild/EndChild are inconsistent with all other functions + // such as BeginMenu/EndMenu, BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding + // BeginXXX function returned true. Begin and BeginChild are the only odd ones out. Will be fixed in a future update.] + // - Note that the bottom of window stack always contains a window called "Debug". + IMGUI_API bool Begin(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); + IMGUI_API void End(); + + // Child Windows + // - Use child windows to begin into a self-contained independent scrolling/clipping regions within a host window. Child windows can embed their own child. + // - Before 1.90 (November 2023), the "ImGuiChildFlags child_flags = 0" parameter was "bool border = false". + // This API is backward compatible with old code, as we guarantee that ImGuiChildFlags_Borders == true. + // Consider updating your old code: + // BeginChild("Name", size, false) -> Begin("Name", size, 0); or Begin("Name", size, ImGuiChildFlags_None); + // BeginChild("Name", size, true) -> Begin("Name", size, ImGuiChildFlags_Borders); + // - Manual sizing (each axis can use a different setting e.g. ImVec2(0.0f, 400.0f)): + // == 0.0f: use remaining parent window size for this axis. + // > 0.0f: use specified size for this axis. + // < 0.0f: right/bottom-align to specified distance from available content boundaries. + // - Specifying ImGuiChildFlags_AutoResizeX or ImGuiChildFlags_AutoResizeY makes the sizing automatic based on child contents. + // Combining both ImGuiChildFlags_AutoResizeX _and_ ImGuiChildFlags_AutoResizeY defeats purpose of a scrolling region and is NOT recommended. + // - BeginChild() returns false to indicate the window is collapsed or fully clipped, so you may early out and omit submitting + // anything to the window. Always call a matching EndChild() for each BeginChild() call, regardless of its return value. + // [Important: due to legacy reason, Begin/End and BeginChild/EndChild are inconsistent with all other functions + // such as BeginMenu/EndMenu, BeginPopup/EndPopup, etc. where the EndXXX call should only be called if the corresponding + // BeginXXX function returned true. Begin and BeginChild are the only odd ones out. Will be fixed in a future update.] + IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0, 0), ImGuiChildFlags child_flags = 0, ImGuiWindowFlags window_flags = 0); + IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0, 0), ImGuiChildFlags child_flags = 0, ImGuiWindowFlags window_flags = 0); + IMGUI_API void EndChild(); + + // Windows Utilities + // - 'current window' = the window we are appending into while inside a Begin()/End() block. 'next window' = next window we will Begin() into. + IMGUI_API bool IsWindowAppearing(); + IMGUI_API bool IsWindowCollapsed(); + IMGUI_API bool IsWindowFocused(ImGuiFocusedFlags flags=0); // is current window focused? or its root/child, depending on flags. see flags for options. + IMGUI_API bool IsWindowHovered(ImGuiHoveredFlags flags=0); // is current window hovered and hoverable (e.g. not blocked by a popup/modal)? See ImGuiHoveredFlags_ for options. IMPORTANT: If you are trying to check whether your mouse should be dispatched to Dear ImGui or to your underlying app, you should not use this function! Use the 'io.WantCaptureMouse' boolean for that! Refer to FAQ entry "How can I tell whether to dispatch mouse/keyboard to Dear ImGui or my application?" for details. + IMGUI_API ImDrawList* GetWindowDrawList(); // get draw list associated to the current window, to append your own drawing primitives + IMGUI_API ImVec2 GetWindowPos(); // get current window position in screen space (IT IS UNLIKELY YOU EVER NEED TO USE THIS. Consider always using GetCursorScreenPos() and GetContentRegionAvail() instead) + IMGUI_API ImVec2 GetWindowSize(); // get current window size (IT IS UNLIKELY YOU EVER NEED TO USE THIS. Consider always using GetCursorScreenPos() and GetContentRegionAvail() instead) + IMGUI_API float GetWindowWidth(); // get current window width (IT IS UNLIKELY YOU EVER NEED TO USE THIS). Shortcut for GetWindowSize().x. + IMGUI_API float GetWindowHeight(); // get current window height (IT IS UNLIKELY YOU EVER NEED TO USE THIS). Shortcut for GetWindowSize().y. + + // Window manipulation + // - Prefer using SetNextXXX functions (before Begin) rather that SetXXX functions (after Begin). + IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivot = ImVec2(0, 0)); // set next window position. call before Begin(). use pivot=(0.5f,0.5f) to center on given point, etc. + IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); // set next window size. set axis to 0.0f to force an auto-fit on this axis. call before Begin() + IMGUI_API void SetNextWindowSizeConstraints(const ImVec2& size_min, const ImVec2& size_max, ImGuiSizeCallback custom_callback = NULL, void* custom_callback_data = NULL); // set next window size limits. use 0.0f or FLT_MAX if you don't want limits. Use -1 for both min and max of same axis to preserve current size (which itself is a constraint). Use callback to apply non-trivial programmatic constraints. + IMGUI_API void SetNextWindowContentSize(const ImVec2& size); // set next window content size (~ scrollable client area, which enforce the range of scrollbars). Not including window decorations (title bar, menu bar, etc.) nor WindowPadding. set an axis to 0.0f to leave it automatic. call before Begin() + IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // set next window collapsed state. call before Begin() + IMGUI_API void SetNextWindowFocus(); // set next window to be focused / top-most. call before Begin() + IMGUI_API void SetNextWindowScroll(const ImVec2& scroll); // set next window scrolling value (use < 0.0f to not affect a given axis). + IMGUI_API void SetNextWindowBgAlpha(float alpha); // set next window background color alpha. helper to easily override the Alpha component of ImGuiCol_WindowBg/ChildBg/PopupBg. you may also use ImGuiWindowFlags_NoBackground. + IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); // (not recommended) set current window position - call within Begin()/End(). prefer using SetNextWindowPos(), as this may incur tearing and side-effects. + IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); // (not recommended) set current window size - call within Begin()/End(). set to ImVec2(0, 0) to force an auto-fit. prefer using SetNextWindowSize(), as this may incur tearing and minor side-effects. + IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); // (not recommended) set current window collapsed state. prefer using SetNextWindowCollapsed(). + IMGUI_API void SetWindowFocus(); // (not recommended) set current window to be focused / top-most. prefer using SetNextWindowFocus(). + IMGUI_API void SetWindowFontScale(float scale); // [OBSOLETE] set font scale. Adjust IO.FontGlobalScale if you want to scale all windows. This is an old API! For correct scaling, prefer to reload font + rebuild ImFontAtlas + call style.ScaleAllSizes(). + IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); // set named window position. + IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); // set named window size. set axis to 0.0f to force an auto-fit on this axis. + IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); // set named window collapsed state + IMGUI_API void SetWindowFocus(const char* name); // set named window to be focused / top-most. use NULL to remove focus. + + // Windows Scrolling + // - Any change of Scroll will be applied at the beginning of next frame in the first call to Begin(). + // - You may instead use SetNextWindowScroll() prior to calling Begin() to avoid this delay, as an alternative to using SetScrollX()/SetScrollY(). + IMGUI_API float GetScrollX(); // get scrolling amount [0 .. GetScrollMaxX()] + IMGUI_API float GetScrollY(); // get scrolling amount [0 .. GetScrollMaxY()] + IMGUI_API void SetScrollX(float scroll_x); // set scrolling amount [0 .. GetScrollMaxX()] + IMGUI_API void SetScrollY(float scroll_y); // set scrolling amount [0 .. GetScrollMaxY()] + IMGUI_API float GetScrollMaxX(); // get maximum scrolling amount ~~ ContentSize.x - WindowSize.x - DecorationsSize.x + IMGUI_API float GetScrollMaxY(); // get maximum scrolling amount ~~ ContentSize.y - WindowSize.y - DecorationsSize.y + IMGUI_API void SetScrollHereX(float center_x_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_x_ratio=0.0: left, 0.5: center, 1.0: right. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead. + IMGUI_API void SetScrollHereY(float center_y_ratio = 0.5f); // adjust scrolling amount to make current cursor position visible. center_y_ratio=0.0: top, 0.5: center, 1.0: bottom. When using to make a "default/current item" visible, consider using SetItemDefaultFocus() instead. + IMGUI_API void SetScrollFromPosX(float local_x, float center_x_ratio = 0.5f); // adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position. + IMGUI_API void SetScrollFromPosY(float local_y, float center_y_ratio = 0.5f); // adjust scrolling amount to make given position visible. Generally GetCursorStartPos() + offset to compute a valid position. + + // Parameters stacks (shared) + IMGUI_API void PushFont(ImFont* font); // use NULL as a shortcut to push default font + IMGUI_API void PopFont(); + IMGUI_API void PushStyleColor(ImGuiCol idx, ImU32 col); // modify a style color. always use this if you modify the style after NewFrame(). + IMGUI_API void PushStyleColor(ImGuiCol idx, const ImVec4& col); + IMGUI_API void PopStyleColor(int count = 1); + IMGUI_API void PushStyleVar(ImGuiStyleVar idx, float val); // modify a style float variable. always use this if you modify the style after NewFrame()! + IMGUI_API void PushStyleVar(ImGuiStyleVar idx, const ImVec2& val); // modify a style ImVec2 variable. " + IMGUI_API void PushStyleVarX(ImGuiStyleVar idx, float val_x); // modify X component of a style ImVec2 variable. " + IMGUI_API void PushStyleVarY(ImGuiStyleVar idx, float val_y); // modify Y component of a style ImVec2 variable. " + IMGUI_API void PopStyleVar(int count = 1); + IMGUI_API void PushItemFlag(ImGuiItemFlags option, bool enabled); // modify specified shared item flag, e.g. PushItemFlag(ImGuiItemFlags_NoTabStop, true) + IMGUI_API void PopItemFlag(); + + // Parameters stacks (current window) + IMGUI_API void PushItemWidth(float item_width); // push width of items for common large "item+label" widgets. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side). + IMGUI_API void PopItemWidth(); + IMGUI_API void SetNextItemWidth(float item_width); // set width of the _next_ common large "item+label" widget. >0.0f: width in pixels, <0.0f align xx pixels to the right of window (so -FLT_MIN always align width to the right side) + IMGUI_API float CalcItemWidth(); // width of item given pushed settings and current cursor position. NOT necessarily the width of last item unlike most 'Item' functions. + IMGUI_API void PushTextWrapPos(float wrap_local_pos_x = 0.0f); // push word-wrapping position for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x' position in window local space + IMGUI_API void PopTextWrapPos(); + + // Style read access + // - Use the ShowStyleEditor() function to interactively see/edit the colors. + IMGUI_API ImFont* GetFont(); // get current font + IMGUI_API float GetFontSize(); // get current font size (= height in pixels) of current font with current scale applied + IMGUI_API ImVec2 GetFontTexUvWhitePixel(); // get UV coordinate for a white pixel, useful to draw custom shapes via the ImDrawList API + IMGUI_API ImU32 GetColorU32(ImGuiCol idx, float alpha_mul = 1.0f); // retrieve given style color with style alpha applied and optional extra alpha multiplier, packed as a 32-bit value suitable for ImDrawList + IMGUI_API ImU32 GetColorU32(const ImVec4& col); // retrieve given color with style alpha applied, packed as a 32-bit value suitable for ImDrawList + IMGUI_API ImU32 GetColorU32(ImU32 col, float alpha_mul = 1.0f); // retrieve given color with style alpha applied, packed as a 32-bit value suitable for ImDrawList + IMGUI_API const ImVec4& GetStyleColorVec4(ImGuiCol idx); // retrieve style color as stored in ImGuiStyle structure. use to feed back into PushStyleColor(), otherwise use GetColorU32() to get style color with style alpha baked in. + + // Layout cursor positioning + // - By "cursor" we mean the current output position. + // - The typical widget behavior is to output themselves at the current cursor position, then move the cursor one line down. + // - You can call SameLine() between widgets to undo the last carriage return and output at the right of the preceding widget. + // - YOU CAN DO 99% OF WHAT YOU NEED WITH ONLY GetCursorScreenPos() and GetContentRegionAvail(). + // - Attention! We currently have inconsistencies between window-local and absolute positions we will aim to fix with future API: + // - Absolute coordinate: GetCursorScreenPos(), SetCursorScreenPos(), all ImDrawList:: functions. -> this is the preferred way forward. + // - Window-local coordinates: SameLine(offset), GetCursorPos(), SetCursorPos(), GetCursorStartPos(), PushTextWrapPos() + // - Window-local coordinates: GetContentRegionMax(), GetWindowContentRegionMin(), GetWindowContentRegionMax() --> all obsoleted. YOU DON'T NEED THEM. + // - GetCursorScreenPos() = GetCursorPos() + GetWindowPos(). GetWindowPos() is almost only ever useful to convert from window-local to absolute coordinates. Try not to use it. + IMGUI_API ImVec2 GetCursorScreenPos(); // cursor position, absolute coordinates. THIS IS YOUR BEST FRIEND (prefer using this rather than GetCursorPos(), also more useful to work with ImDrawList API). + IMGUI_API void SetCursorScreenPos(const ImVec2& pos); // cursor position, absolute coordinates. THIS IS YOUR BEST FRIEND. + IMGUI_API ImVec2 GetContentRegionAvail(); // available space from current position. THIS IS YOUR BEST FRIEND. + IMGUI_API ImVec2 GetCursorPos(); // [window-local] cursor position in window-local coordinates. This is not your best friend. + IMGUI_API float GetCursorPosX(); // [window-local] " + IMGUI_API float GetCursorPosY(); // [window-local] " + IMGUI_API void SetCursorPos(const ImVec2& local_pos); // [window-local] " + IMGUI_API void SetCursorPosX(float local_x); // [window-local] " + IMGUI_API void SetCursorPosY(float local_y); // [window-local] " + IMGUI_API ImVec2 GetCursorStartPos(); // [window-local] initial cursor position, in window-local coordinates. Call GetCursorScreenPos() after Begin() to get the absolute coordinates version. + + // Other layout functions + IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator. + IMGUI_API void SameLine(float offset_from_start_x=0.0f, float spacing=-1.0f); // call between widgets or groups to layout them horizontally. X position given in window coordinates. + IMGUI_API void NewLine(); // undo a SameLine() or force a new line when in a horizontal-layout context. + IMGUI_API void Spacing(); // add vertical spacing. + IMGUI_API void Dummy(const ImVec2& size); // add a dummy item of given size. unlike InvisibleButton(), Dummy() won't take the mouse click or be navigable into. + IMGUI_API void Indent(float indent_w = 0.0f); // move content position toward the right, by indent_w, or style.IndentSpacing if indent_w <= 0 + IMGUI_API void Unindent(float indent_w = 0.0f); // move content position back to the left, by indent_w, or style.IndentSpacing if indent_w <= 0 + IMGUI_API void BeginGroup(); // lock horizontal starting position + IMGUI_API void EndGroup(); // unlock horizontal starting position + capture the whole group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine() on whole group, etc.) + IMGUI_API void AlignTextToFramePadding(); // vertically align upcoming text baseline to FramePadding.y so that it will align properly to regularly framed items (call if you have text on a line before a framed item) + IMGUI_API float GetTextLineHeight(); // ~ FontSize + IMGUI_API float GetTextLineHeightWithSpacing(); // ~ FontSize + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of text) + IMGUI_API float GetFrameHeight(); // ~ FontSize + style.FramePadding.y * 2 + IMGUI_API float GetFrameHeightWithSpacing(); // ~ FontSize + style.FramePadding.y * 2 + style.ItemSpacing.y (distance in pixels between 2 consecutive lines of framed widgets) + + // ID stack/scopes + // Read the FAQ (docs/FAQ.md or http://dearimgui.com/faq) for more details about how ID are handled in dear imgui. + // - Those questions are answered and impacted by understanding of the ID stack system: + // - "Q: Why is my widget not reacting when I click on it?" + // - "Q: How can I have widgets with an empty label?" + // - "Q: How can I have multiple widgets with the same label?" + // - Short version: ID are hashes of the entire ID stack. If you are creating widgets in a loop you most likely + // want to push a unique identifier (e.g. object pointer, loop index) to uniquely differentiate them. + // - You can also use the "Label##foobar" syntax within widget label to distinguish them from each others. + // - In this header file we use the "label"/"name" terminology to denote a string that will be displayed + used as an ID, + // whereas "str_id" denote a string that is only used as an ID and not normally displayed. + IMGUI_API void PushID(const char* str_id); // push string into the ID stack (will hash string). + IMGUI_API void PushID(const char* str_id_begin, const char* str_id_end); // push string into the ID stack (will hash string). + IMGUI_API void PushID(const void* ptr_id); // push pointer into the ID stack (will hash pointer). + IMGUI_API void PushID(int int_id); // push integer into the ID stack (will hash integer). + IMGUI_API void PopID(); // pop from the ID stack. + IMGUI_API ImGuiID GetID(const char* str_id); // calculate unique ID (hash of whole ID stack + given parameter). e.g. if you want to query into ImGuiStorage yourself + IMGUI_API ImGuiID GetID(const char* str_id_begin, const char* str_id_end); + IMGUI_API ImGuiID GetID(const void* ptr_id); + IMGUI_API ImGuiID GetID(int int_id); + + // Widgets: Text + IMGUI_API void TextUnformatted(const char* text, const char* text_end = NULL); // raw text without formatting. Roughly equivalent to Text("%s", text) but: A) doesn't require null terminated string if 'text_end' is specified, B) it's faster, no memory copy is done, no buffer size limits, recommended for long chunks of text. + IMGUI_API void Text(const char* fmt, ...) IM_FMTARGS(1); // formatted text + IMGUI_API void TextV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void TextColored(const ImVec4& col, const char* fmt, ...) IM_FMTARGS(2); // shortcut for PushStyleColor(ImGuiCol_Text, col); Text(fmt, ...); PopStyleColor(); + IMGUI_API void TextColoredV(const ImVec4& col, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API void TextDisabled(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); Text(fmt, ...); PopStyleColor(); + IMGUI_API void TextDisabledV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void TextWrapped(const char* fmt, ...) IM_FMTARGS(1); // shortcut for PushTextWrapPos(0.0f); Text(fmt, ...); PopTextWrapPos();. Note that this won't work on an auto-resizing window if there's no other widgets to extend the window width, yoy may need to set a size using SetNextWindowSize(). + IMGUI_API void TextWrappedV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void LabelText(const char* label, const char* fmt, ...) IM_FMTARGS(2); // display text+label aligned the same way as value+label widgets + IMGUI_API void LabelTextV(const char* label, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API void BulletText(const char* fmt, ...) IM_FMTARGS(1); // shortcut for Bullet()+Text() + IMGUI_API void BulletTextV(const char* fmt, va_list args) IM_FMTLIST(1); + IMGUI_API void SeparatorText(const char* label); // currently: formatted text with an horizontal line + + // Widgets: Main + // - Most widgets return true when the value has been changed or when pressed/selected + // - You may also use one of the many IsItemXXX functions (e.g. IsItemActive, IsItemHovered, etc.) to query widget state. + IMGUI_API bool Button(const char* label, const ImVec2& size = ImVec2(0, 0)); // button + IMGUI_API bool SmallButton(const char* label); // button with (FramePadding.y == 0) to easily embed within text + IMGUI_API bool InvisibleButton(const char* str_id, const ImVec2& size, ImGuiButtonFlags flags = 0); // flexible button behavior without the visuals, frequently useful to build custom behaviors using the public api (along with IsItemActive, IsItemHovered, etc.) + IMGUI_API bool ArrowButton(const char* str_id, ImGuiDir dir); // square button with an arrow shape + IMGUI_API bool Checkbox(const char* label, bool* v); + IMGUI_API bool CheckboxFlags(const char* label, int* flags, int flags_value); + IMGUI_API bool CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value); + IMGUI_API bool RadioButton(const char* label, bool active); // use with e.g. if (RadioButton("one", my_value==1)) { my_value = 1; } + IMGUI_API bool RadioButton(const char* label, int* v, int v_button); // shortcut to handle the above pattern when value is an integer + IMGUI_API void ProgressBar(float fraction, const ImVec2& size_arg = ImVec2(-FLT_MIN, 0), const char* overlay = NULL); + IMGUI_API void Bullet(); // draw a small circle + keep the cursor on the same line. advance cursor x position by GetTreeNodeToLabelSpacing(), same distance that TreeNode() uses + IMGUI_API bool TextLink(const char* label); // hyperlink text button, return true when clicked + IMGUI_API void TextLinkOpenURL(const char* label, const char* url = NULL); // hyperlink text button, automatically open file/url when clicked + + // Widgets: Images + // - Read about ImTextureID here: https://github.com/ocornut/imgui/wiki/Image-Loading-and-Displaying-Examples + // - 'uv0' and 'uv1' are texture coordinates. Read about them from the same link above. + // - Note that Image() may add +2.0f to provided size if a border is visible, ImageButton() adds style.FramePadding*2.0f to provided size. + IMGUI_API void Image(ImTextureID user_texture_id, const ImVec2& image_size, const ImVec2& uv0 = ImVec2(0, 0), const ImVec2& uv1 = ImVec2(1, 1), const ImVec4& tint_col = ImVec4(1, 1, 1, 1), const ImVec4& border_col = ImVec4(0, 0, 0, 0)); + IMGUI_API bool ImageButton(const char* str_id, ImTextureID user_texture_id, const ImVec2& image_size, const ImVec2& uv0 = ImVec2(0, 0), const ImVec2& uv1 = ImVec2(1, 1), const ImVec4& bg_col = ImVec4(0, 0, 0, 0), const ImVec4& tint_col = ImVec4(1, 1, 1, 1)); + + // Widgets: Combo Box (Dropdown) + // - The BeginCombo()/EndCombo() api allows you to manage your contents and selection state however you want it, by creating e.g. Selectable() items. + // - The old Combo() api are helpers over BeginCombo()/EndCombo() which are kept available for convenience purpose. This is analogous to how ListBox are created. + IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags = 0); + IMGUI_API void EndCombo(); // only call EndCombo() if BeginCombo() returns true! + IMGUI_API bool Combo(const char* label, int* current_item, const char* const items[], int items_count, int popup_max_height_in_items = -1); + IMGUI_API bool Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int popup_max_height_in_items = -1); // Separate items with \0 within a string, end item-list with \0\0. e.g. "One\0Two\0Three\0" + IMGUI_API bool Combo(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), void* user_data, int items_count, int popup_max_height_in_items = -1); + + // Widgets: Drag Sliders + // - CTRL+Click on any drag box to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. + // - For all the Float2/Float3/Float4/Int2/Int3/Int4 versions of every function, note that a 'float v[X]' function argument is the same as 'float* v', + // the array syntax is just a way to document the number of elements that are expected to be accessible. You can pass address of your first element out of a contiguous set, e.g. &myvector.x + // - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. "%.3f" -> 1.234; "%5.2f secs" -> 01.23 secs; "Biscuit: %.0f" -> Biscuit: 1; etc. + // - Format string may also be set to NULL or use the default format ("%f" or "%d"). + // - Speed are per-pixel of mouse movement (v_speed=0.2f: mouse needs to move by 5 pixels to increase value by 1). For gamepad/keyboard navigation, minimum speed is Max(v_speed, minimum_step_at_given_precision). + // - Use v_min < v_max to clamp edits to given limits. Note that CTRL+Click manual input can override those limits if ImGuiSliderFlags_AlwaysClamp is not used. + // - Use v_max = FLT_MAX / INT_MAX etc to avoid clamping to a maximum, same with v_min = -FLT_MAX / INT_MIN to avoid clamping to a minimum. + // - We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them. + // - Legacy: Pre-1.78 there are DragXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument. + // If you get a warning converting a float to ImGuiSliderFlags, read https://github.com/ocornut/imgui/issues/3361 + IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); // If v_min >= v_max we have no bound + IMGUI_API bool DragFloat2(const char* label, float v[2], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragFloat3(const char* label, float v[3], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragFloat4(const char* label, float v[4], float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", const char* format_max = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool DragInt(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); // If v_min >= v_max we have no bound + IMGUI_API bool DragInt2(const char* label, int v[2], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragInt3(const char* label, int v[3], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragInt4(const char* label, int v[4], float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* format = "%d", const char* format_max = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* p_data, float v_speed = 1.0f, const void* p_min = NULL, const void* p_max = NULL, const char* format = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, float v_speed = 1.0f, const void* p_min = NULL, const void* p_max = NULL, const char* format = NULL, ImGuiSliderFlags flags = 0); + + // Widgets: Regular Sliders + // - CTRL+Click on any slider to turn them into an input box. Manually input values aren't clamped by default and can go off-bounds. Use ImGuiSliderFlags_AlwaysClamp to always clamp. + // - Adjust format string to decorate the value with a prefix, a suffix, or adapt the editing and display precision e.g. "%.3f" -> 1.234; "%5.2f secs" -> 01.23 secs; "Biscuit: %.0f" -> Biscuit: 1; etc. + // - Format string may also be set to NULL or use the default format ("%f" or "%d"). + // - Legacy: Pre-1.78 there are SliderXXX() function signatures that take a final `float power=1.0f' argument instead of the `ImGuiSliderFlags flags=0' argument. + // If you get a warning converting a float to ImGuiSliderFlags, read https://github.com/ocornut/imgui/issues/3361 + IMGUI_API bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); // adjust format to decorate the value with a prefix or a suffix for in-slider labels or unit display. + IMGUI_API bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderAngle(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f, const char* format = "%.0f deg", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt(const char* label, int* v, int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_min, const void* p_max, const char* format = NULL, ImGuiSliderFlags flags = 0); + IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = "%.3f", ImGuiSliderFlags flags = 0); + IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = "%d", ImGuiSliderFlags flags = 0); + IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format = NULL, ImGuiSliderFlags flags = 0); + + // Widgets: Input with Keyboard + // - If you want to use InputText() with std::string or any custom dynamic string type, see misc/cpp/imgui_stdlib.h and comments in imgui_demo.cpp. + // - Most of the ImGuiInputTextFlags flags are only useful for InputText() and not for InputFloatX, InputIntX, InputDouble etc. + IMGUI_API bool InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API bool InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size = ImVec2(0, 0), ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API bool InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API bool InputFloat(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputFloat2(const char* label, float v[2], const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputFloat3(const char* label, float v[3], const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputFloat4(const char* label, float v[4], const char* format = "%.3f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputInt4(const char* label, int v[4], ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputDouble(const char* label, double* v, double step = 0.0, double step_fast = 0.0, const char* format = "%.6f", ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_step = NULL, const void* p_step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags flags = 0); + IMGUI_API bool InputScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_step = NULL, const void* p_step_fast = NULL, const char* format = NULL, ImGuiInputTextFlags flags = 0); + + // Widgets: Color Editor/Picker (tip: the ColorEdit* functions have a little color square that can be left-clicked to open a picker, and right-clicked to open an option menu.) + // - Note that in C++ a 'float v[X]' function argument is the _same_ as 'float* v', the array syntax is just a way to document the number of elements that are expected to be accessible. + // - You can pass the address of a first float element out of a contiguous structure, e.g. &myvector.x + IMGUI_API bool ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags = 0); + IMGUI_API bool ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags = 0); + IMGUI_API bool ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags = 0); + IMGUI_API bool ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags = 0, const float* ref_col = NULL); + IMGUI_API bool ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); // display a color square/button, hover for details, return true when pressed. + IMGUI_API void SetColorEditOptions(ImGuiColorEditFlags flags); // initialize current options (generally on application startup) if you want to select a default format, picker type, etc. User will be able to change many settings, unless you pass the _NoOptions flag to your calls. + + // Widgets: Trees + // - TreeNode functions return true when the node is open, in which case you need to also call TreePop() when you are finished displaying the tree node contents. + IMGUI_API bool TreeNode(const char* label); + IMGUI_API bool TreeNode(const char* str_id, const char* fmt, ...) IM_FMTARGS(2); // helper variation to easily decorelate the id from the displayed string. Read the FAQ about why and how to use ID. to align arbitrary text at the same level as a TreeNode() you can use Bullet(). + IMGUI_API bool TreeNode(const void* ptr_id, const char* fmt, ...) IM_FMTARGS(2); // " + IMGUI_API bool TreeNodeV(const char* str_id, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API bool TreeNodeV(const void* ptr_id, const char* fmt, va_list args) IM_FMTLIST(2); + IMGUI_API bool TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags = 0); + IMGUI_API bool TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3); + IMGUI_API bool TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) IM_FMTARGS(3); + IMGUI_API bool TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3); + IMGUI_API bool TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) IM_FMTLIST(3); + IMGUI_API void TreePush(const char* str_id); // ~ Indent()+PushID(). Already called by TreeNode() when returning true, but you can call TreePush/TreePop yourself if desired. + IMGUI_API void TreePush(const void* ptr_id); // " + IMGUI_API void TreePop(); // ~ Unindent()+PopID() + IMGUI_API float GetTreeNodeToLabelSpacing(); // horizontal distance preceding label when using TreeNode*() or Bullet() == (g.FontSize + style.FramePadding.x*2) for a regular unframed TreeNode + IMGUI_API bool CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags = 0); // if returning 'true' the header is open. doesn't indent nor push on ID stack. user doesn't have to call TreePop(). + IMGUI_API bool CollapsingHeader(const char* label, bool* p_visible, ImGuiTreeNodeFlags flags = 0); // when 'p_visible != NULL': if '*p_visible==true' display an additional small close button on upper right of the header which will set the bool to false when clicked, if '*p_visible==false' don't display the header. + IMGUI_API void SetNextItemOpen(bool is_open, ImGuiCond cond = 0); // set next TreeNode/CollapsingHeader open state. + IMGUI_API void SetNextItemStorageID(ImGuiID storage_id); // set id to use for open/close storage (default to same as item id). + + // Widgets: Selectables + // - A selectable highlights when hovered, and can display another color when selected. + // - Neighbors selectable extend their highlight bounds in order to leave no gap between them. This is so a series of selected Selectable appear contiguous. + IMGUI_API bool Selectable(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); // "bool selected" carry the selection state (read-only). Selectable() is clicked is returns true so you can modify your selection state. size.x==0.0: use remaining width, size.x>0.0: specify width. size.y==0.0: use label height, size.y>0.0: specify height + IMGUI_API bool Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2& size = ImVec2(0, 0)); // "bool* p_selected" point to the selection state (read-write), as a convenient helper. + + // Multi-selection system for Selectable(), Checkbox(), TreeNode() functions [BETA] + // - This enables standard multi-selection/range-selection idioms (CTRL+Mouse/Keyboard, SHIFT+Mouse/Keyboard, etc.) in a way that also allow a clipper to be used. + // - ImGuiSelectionUserData is often used to store your item index within the current view (but may store something else). + // - Read comments near ImGuiMultiSelectIO for instructions/details and see 'Demo->Widgets->Selection State & Multi-Select' for demo. + // - TreeNode() is technically supported but... using this correctly is more complicated. You need some sort of linear/random access to your tree, + // which is suited to advanced trees setups already implementing filters and clipper. We will work simplifying the current demo. + // - 'selection_size' and 'items_count' parameters are optional and used by a few features. If they are costly for you to compute, you may avoid them. + IMGUI_API ImGuiMultiSelectIO* BeginMultiSelect(ImGuiMultiSelectFlags flags, int selection_size = -1, int items_count = -1); + IMGUI_API ImGuiMultiSelectIO* EndMultiSelect(); + IMGUI_API void SetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data); + IMGUI_API bool IsItemToggledSelection(); // Was the last item selection state toggled? Useful if you need the per-item information _before_ reaching EndMultiSelect(). We only returns toggle _event_ in order to handle clipping correctly. + + // Widgets: List Boxes + // - This is essentially a thin wrapper to using BeginChild/EndChild with the ImGuiChildFlags_FrameStyle flag for stylistic changes + displaying a label. + // - You can submit contents and manage your selection state however you want it, by creating e.g. Selectable() or any other items. + // - The simplified/old ListBox() api are helpers over BeginListBox()/EndListBox() which are kept available for convenience purpose. This is analoguous to how Combos are created. + // - Choose frame width: size.x > 0.0f: custom / size.x < 0.0f or -FLT_MIN: right-align / size.x = 0.0f (default): use current ItemWidth + // - Choose frame height: size.y > 0.0f: custom / size.y < 0.0f or -FLT_MIN: bottom-align / size.y = 0.0f (default): arbitrary default height which can fit ~7 items + IMGUI_API bool BeginListBox(const char* label, const ImVec2& size = ImVec2(0, 0)); // open a framed scrolling region + IMGUI_API void EndListBox(); // only call EndListBox() if BeginListBox() returned true! + IMGUI_API bool ListBox(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items = -1); + IMGUI_API bool ListBox(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), void* user_data, int items_count, int height_in_items = -1); + + // Widgets: Data Plotting + // - Consider using ImPlot (https://github.com/epezent/implot) which is much better! + IMGUI_API void PlotLines(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); + IMGUI_API void PlotLines(const char* label, float(*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0)); + IMGUI_API void PlotHistogram(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0), int stride = sizeof(float)); + IMGUI_API void PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0)); + + // Widgets: Value() Helpers. + // - Those are merely shortcut to calling Text() with a format string. Output single value in "name: value" format (tip: freely declare more in your code to handle your types. you can add functions to the ImGui namespace) + IMGUI_API void Value(const char* prefix, bool b); + IMGUI_API void Value(const char* prefix, int v); + IMGUI_API void Value(const char* prefix, unsigned int v); + IMGUI_API void Value(const char* prefix, float v, const char* float_format = NULL); + + // Widgets: Menus + // - Use BeginMenuBar() on a window ImGuiWindowFlags_MenuBar to append to its menu bar. + // - Use BeginMainMenuBar() to create a menu bar at the top of the screen and append to it. + // - Use BeginMenu() to create a menu. You can call BeginMenu() multiple time with the same identifier to append more items to it. + // - Not that MenuItem() keyboardshortcuts are displayed as a convenience but _not processed_ by Dear ImGui at the moment. + IMGUI_API bool BeginMenuBar(); // append to menu-bar of current window (requires ImGuiWindowFlags_MenuBar flag set on parent window). + IMGUI_API void EndMenuBar(); // only call EndMenuBar() if BeginMenuBar() returns true! + IMGUI_API bool BeginMainMenuBar(); // create and append to a full screen menu-bar. + IMGUI_API void EndMainMenuBar(); // only call EndMainMenuBar() if BeginMainMenuBar() returns true! + IMGUI_API bool BeginMenu(const char* label, bool enabled = true); // create a sub-menu entry. only call EndMenu() if this returns true! + IMGUI_API void EndMenu(); // only call EndMenu() if BeginMenu() returns true! + IMGUI_API bool MenuItem(const char* label, const char* shortcut = NULL, bool selected = false, bool enabled = true); // return true when activated. + IMGUI_API bool MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled = true); // return true when activated + toggle (*p_selected) if p_selected != NULL + + // Tooltips + // - Tooltips are windows following the mouse. They do not take focus away. + // - A tooltip window can contain items of any types. + // - SetTooltip() is more or less a shortcut for the 'if (BeginTooltip()) { Text(...); EndTooltip(); }' idiom (with a subtlety that it discard any previously submitted tooltip) + IMGUI_API bool BeginTooltip(); // begin/append a tooltip window. + IMGUI_API void EndTooltip(); // only call EndTooltip() if BeginTooltip()/BeginItemTooltip() returns true! + IMGUI_API void SetTooltip(const char* fmt, ...) IM_FMTARGS(1); // set a text-only tooltip. Often used after a ImGui::IsItemHovered() check. Override any previous call to SetTooltip(). + IMGUI_API void SetTooltipV(const char* fmt, va_list args) IM_FMTLIST(1); + + // Tooltips: helpers for showing a tooltip when hovering an item + // - BeginItemTooltip() is a shortcut for the 'if (IsItemHovered(ImGuiHoveredFlags_ForTooltip) && BeginTooltip())' idiom. + // - SetItemTooltip() is a shortcut for the 'if (IsItemHovered(ImGuiHoveredFlags_ForTooltip)) { SetTooltip(...); }' idiom. + // - Where 'ImGuiHoveredFlags_ForTooltip' itself is a shortcut to use 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' depending on active input type. For mouse it defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'. + IMGUI_API bool BeginItemTooltip(); // begin/append a tooltip window if preceding item was hovered. + IMGUI_API void SetItemTooltip(const char* fmt, ...) IM_FMTARGS(1); // set a text-only tooltip if preceding item was hovered. override any previous call to SetTooltip(). + IMGUI_API void SetItemTooltipV(const char* fmt, va_list args) IM_FMTLIST(1); + + // Popups, Modals + // - They block normal mouse hovering detection (and therefore most mouse interactions) behind them. + // - If not modal: they can be closed by clicking anywhere outside them, or by pressing ESCAPE. + // - Their visibility state (~bool) is held internally instead of being held by the programmer as we are used to with regular Begin*() calls. + // - The 3 properties above are related: we need to retain popup visibility state in the library because popups may be closed as any time. + // - You can bypass the hovering restriction by using ImGuiHoveredFlags_AllowWhenBlockedByPopup when calling IsItemHovered() or IsWindowHovered(). + // - IMPORTANT: Popup identifiers are relative to the current ID stack, so OpenPopup and BeginPopup generally needs to be at the same level of the stack. + // This is sometimes leading to confusing mistakes. May rework this in the future. + // - BeginPopup(): query popup state, if open start appending into the window. Call EndPopup() afterwards if returned true. ImGuiWindowFlags are forwarded to the window. + // - BeginPopupModal(): block every interaction behind the window, cannot be closed by user, add a dimming background, has a title bar. + IMGUI_API bool BeginPopup(const char* str_id, ImGuiWindowFlags flags = 0); // return true if the popup is open, and you can start outputting to it. + IMGUI_API bool BeginPopupModal(const char* name, bool* p_open = NULL, ImGuiWindowFlags flags = 0); // return true if the modal is open, and you can start outputting to it. + IMGUI_API void EndPopup(); // only call EndPopup() if BeginPopupXXX() returns true! + + // Popups: open/close functions + // - OpenPopup(): set popup state to open. ImGuiPopupFlags are available for opening options. + // - If not modal: they can be closed by clicking anywhere outside them, or by pressing ESCAPE. + // - CloseCurrentPopup(): use inside the BeginPopup()/EndPopup() scope to close manually. + // - CloseCurrentPopup() is called by default by Selectable()/MenuItem() when activated (FIXME: need some options). + // - Use ImGuiPopupFlags_NoOpenOverExistingPopup to avoid opening a popup if there's already one at the same level. This is equivalent to e.g. testing for !IsAnyPopupOpen() prior to OpenPopup(). + // - Use IsWindowAppearing() after BeginPopup() to tell if a window just opened. + // - IMPORTANT: Notice that for OpenPopupOnItemClick() we exceptionally default flags to 1 (== ImGuiPopupFlags_MouseButtonRight) for backward compatibility with older API taking 'int mouse_button = 1' parameter + IMGUI_API void OpenPopup(const char* str_id, ImGuiPopupFlags popup_flags = 0); // call to mark popup as open (don't call every frame!). + IMGUI_API void OpenPopup(ImGuiID id, ImGuiPopupFlags popup_flags = 0); // id overload to facilitate calling from nested stacks + IMGUI_API void OpenPopupOnItemClick(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1); // helper to open popup when clicked on last item. Default to ImGuiPopupFlags_MouseButtonRight == 1. (note: actually triggers on the mouse _released_ event to be consistent with popup behaviors) + IMGUI_API void CloseCurrentPopup(); // manually close the popup we have begin-ed into. + + // Popups: open+begin combined functions helpers + // - Helpers to do OpenPopup+BeginPopup where the Open action is triggered by e.g. hovering an item and right-clicking. + // - They are convenient to easily create context menus, hence the name. + // - IMPORTANT: Notice that BeginPopupContextXXX takes ImGuiPopupFlags just like OpenPopup() and unlike BeginPopup(). For full consistency, we may add ImGuiWindowFlags to the BeginPopupContextXXX functions in the future. + // - IMPORTANT: Notice that we exceptionally default their flags to 1 (== ImGuiPopupFlags_MouseButtonRight) for backward compatibility with older API taking 'int mouse_button = 1' parameter, so if you add other flags remember to re-add the ImGuiPopupFlags_MouseButtonRight. + IMGUI_API bool BeginPopupContextItem(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1); // open+begin popup when clicked on last item. Use str_id==NULL to associate the popup to previous item. If you want to use that on a non-interactive item such as Text() you need to pass in an explicit ID here. read comments in .cpp! + IMGUI_API bool BeginPopupContextWindow(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1);// open+begin popup when clicked on current window. + IMGUI_API bool BeginPopupContextVoid(const char* str_id = NULL, ImGuiPopupFlags popup_flags = 1); // open+begin popup when clicked in void (where there are no windows). + + // Popups: query functions + // - IsPopupOpen(): return true if the popup is open at the current BeginPopup() level of the popup stack. + // - IsPopupOpen() with ImGuiPopupFlags_AnyPopupId: return true if any popup is open at the current BeginPopup() level of the popup stack. + // - IsPopupOpen() with ImGuiPopupFlags_AnyPopupId + ImGuiPopupFlags_AnyPopupLevel: return true if any popup is open. + IMGUI_API bool IsPopupOpen(const char* str_id, ImGuiPopupFlags flags = 0); // return true if the popup is open. + + // Tables + // - Full-featured replacement for old Columns API. + // - See Demo->Tables for demo code. See top of imgui_tables.cpp for general commentary. + // - See ImGuiTableFlags_ and ImGuiTableColumnFlags_ enums for a description of available flags. + // The typical call flow is: + // - 1. Call BeginTable(), early out if returning false. + // - 2. Optionally call TableSetupColumn() to submit column name/flags/defaults. + // - 3. Optionally call TableSetupScrollFreeze() to request scroll freezing of columns/rows. + // - 4. Optionally call TableHeadersRow() to submit a header row. Names are pulled from TableSetupColumn() data. + // - 5. Populate contents: + // - In most situations you can use TableNextRow() + TableSetColumnIndex(N) to start appending into a column. + // - If you are using tables as a sort of grid, where every column is holding the same type of contents, + // you may prefer using TableNextColumn() instead of TableNextRow() + TableSetColumnIndex(). + // TableNextColumn() will automatically wrap-around into the next row if needed. + // - IMPORTANT: Comparatively to the old Columns() API, we need to call TableNextColumn() for the first column! + // - Summary of possible call flow: + // - TableNextRow() -> TableSetColumnIndex(0) -> Text("Hello 0") -> TableSetColumnIndex(1) -> Text("Hello 1") // OK + // - TableNextRow() -> TableNextColumn() -> Text("Hello 0") -> TableNextColumn() -> Text("Hello 1") // OK + // - TableNextColumn() -> Text("Hello 0") -> TableNextColumn() -> Text("Hello 1") // OK: TableNextColumn() automatically gets to next row! + // - TableNextRow() -> Text("Hello 0") // Not OK! Missing TableSetColumnIndex() or TableNextColumn()! Text will not appear! + // - 5. Call EndTable() + IMGUI_API bool BeginTable(const char* str_id, int columns, ImGuiTableFlags flags = 0, const ImVec2& outer_size = ImVec2(0.0f, 0.0f), float inner_width = 0.0f); + IMGUI_API void EndTable(); // only call EndTable() if BeginTable() returns true! + IMGUI_API void TableNextRow(ImGuiTableRowFlags row_flags = 0, float min_row_height = 0.0f); // append into the first cell of a new row. + IMGUI_API bool TableNextColumn(); // append into the next column (or first column of next row if currently in last column). Return true when column is visible. + IMGUI_API bool TableSetColumnIndex(int column_n); // append into the specified column. Return true when column is visible. + + // Tables: Headers & Columns declaration + // - Use TableSetupColumn() to specify label, resizing policy, default width/weight, id, various other flags etc. + // - Use TableHeadersRow() to create a header row and automatically submit a TableHeader() for each column. + // Headers are required to perform: reordering, sorting, and opening the context menu. + // The context menu can also be made available in columns body using ImGuiTableFlags_ContextMenuInBody. + // - You may manually submit headers using TableNextRow() + TableHeader() calls, but this is only useful in + // some advanced use cases (e.g. adding custom widgets in header row). + // - Use TableSetupScrollFreeze() to lock columns/rows so they stay visible when scrolled. + IMGUI_API void TableSetupColumn(const char* label, ImGuiTableColumnFlags flags = 0, float init_width_or_weight = 0.0f, ImGuiID user_id = 0); + IMGUI_API void TableSetupScrollFreeze(int cols, int rows); // lock columns/rows so they stay visible when scrolled. + IMGUI_API void TableHeader(const char* label); // submit one header cell manually (rarely used) + IMGUI_API void TableHeadersRow(); // submit a row with headers cells based on data provided to TableSetupColumn() + submit context menu + IMGUI_API void TableAngledHeadersRow(); // submit a row with angled headers for every column with the ImGuiTableColumnFlags_AngledHeader flag. MUST BE FIRST ROW. + + // Tables: Sorting & Miscellaneous functions + // - Sorting: call TableGetSortSpecs() to retrieve latest sort specs for the table. NULL when not sorting. + // When 'sort_specs->SpecsDirty == true' you should sort your data. It will be true when sorting specs have + // changed since last call, or the first time. Make sure to set 'SpecsDirty = false' after sorting, + // else you may wastefully sort your data every frame! + // - Functions args 'int column_n' treat the default value of -1 as the same as passing the current column index. + IMGUI_API ImGuiTableSortSpecs* TableGetSortSpecs(); // get latest sort specs for the table (NULL if not sorting). Lifetime: don't hold on this pointer over multiple frames or past any subsequent call to BeginTable(). + IMGUI_API int TableGetColumnCount(); // return number of columns (value passed to BeginTable) + IMGUI_API int TableGetColumnIndex(); // return current column index. + IMGUI_API int TableGetRowIndex(); // return current row index. + IMGUI_API const char* TableGetColumnName(int column_n = -1); // return "" if column didn't have a name declared by TableSetupColumn(). Pass -1 to use current column. + IMGUI_API ImGuiTableColumnFlags TableGetColumnFlags(int column_n = -1); // return column flags so you can query their Enabled/Visible/Sorted/Hovered status flags. Pass -1 to use current column. + IMGUI_API void TableSetColumnEnabled(int column_n, bool v);// change user accessible enabled/disabled state of a column. Set to false to hide the column. User can use the context menu to change this themselves (right-click in headers, or right-click in columns body with ImGuiTableFlags_ContextMenuInBody) + IMGUI_API int TableGetHoveredColumn(); // return hovered column. return -1 when table is not hovered. return columns_count if the unused space at the right of visible columns is hovered. Can also use (TableGetColumnFlags() & ImGuiTableColumnFlags_IsHovered) instead. + IMGUI_API void TableSetBgColor(ImGuiTableBgTarget target, ImU32 color, int column_n = -1); // change the color of a cell, row, or column. See ImGuiTableBgTarget_ flags for details. + + // Legacy Columns API (prefer using Tables!) + // - You can also use SameLine(pos_x) to mimic simplified columns. + IMGUI_API void Columns(int count = 1, const char* id = NULL, bool borders = true); + IMGUI_API void NextColumn(); // next column, defaults to current row or next row if the current row is finished + IMGUI_API int GetColumnIndex(); // get current column index + IMGUI_API float GetColumnWidth(int column_index = -1); // get column width (in pixels). pass -1 to use current column + IMGUI_API void SetColumnWidth(int column_index, float width); // set column width (in pixels). pass -1 to use current column + IMGUI_API float GetColumnOffset(int column_index = -1); // get position of column line (in pixels, from the left side of the contents region). pass -1 to use current column, otherwise 0..GetColumnsCount() inclusive. column 0 is typically 0.0f + IMGUI_API void SetColumnOffset(int column_index, float offset_x); // set position of column line (in pixels, from the left side of the contents region). pass -1 to use current column + IMGUI_API int GetColumnsCount(); + + // Tab Bars, Tabs + // - Note: Tabs are automatically created by the docking system (when in 'docking' branch). Use this to create tab bars/tabs yourself. + IMGUI_API bool BeginTabBar(const char* str_id, ImGuiTabBarFlags flags = 0); // create and append into a TabBar + IMGUI_API void EndTabBar(); // only call EndTabBar() if BeginTabBar() returns true! + IMGUI_API bool BeginTabItem(const char* label, bool* p_open = NULL, ImGuiTabItemFlags flags = 0); // create a Tab. Returns true if the Tab is selected. + IMGUI_API void EndTabItem(); // only call EndTabItem() if BeginTabItem() returns true! + IMGUI_API bool TabItemButton(const char* label, ImGuiTabItemFlags flags = 0); // create a Tab behaving like a button. return true when clicked. cannot be selected in the tab bar. + IMGUI_API void SetTabItemClosed(const char* tab_or_docked_window_label); // notify TabBar or Docking system of a closed tab/window ahead (useful to reduce visual flicker on reorderable tab bars). For tab-bar: call after BeginTabBar() and before Tab submissions. Otherwise call with a window name. + + // Logging/Capture + // - All text output from the interface can be captured into tty/file/clipboard. By default, tree nodes are automatically opened during logging. + IMGUI_API void LogToTTY(int auto_open_depth = -1); // start logging to tty (stdout) + IMGUI_API void LogToFile(int auto_open_depth = -1, const char* filename = NULL); // start logging to file + IMGUI_API void LogToClipboard(int auto_open_depth = -1); // start logging to OS clipboard + IMGUI_API void LogFinish(); // stop logging (close file, etc.) + IMGUI_API void LogButtons(); // helper to display buttons for logging to tty/file/clipboard + IMGUI_API void LogText(const char* fmt, ...) IM_FMTARGS(1); // pass text data straight to log (without being displayed) + IMGUI_API void LogTextV(const char* fmt, va_list args) IM_FMTLIST(1); + + // Drag and Drop + // - On source items, call BeginDragDropSource(), if it returns true also call SetDragDropPayload() + EndDragDropSource(). + // - On target candidates, call BeginDragDropTarget(), if it returns true also call AcceptDragDropPayload() + EndDragDropTarget(). + // - If you stop calling BeginDragDropSource() the payload is preserved however it won't have a preview tooltip (we currently display a fallback "..." tooltip, see #1725) + // - An item can be both drag source and drop target. + IMGUI_API bool BeginDragDropSource(ImGuiDragDropFlags flags = 0); // call after submitting an item which may be dragged. when this return true, you can call SetDragDropPayload() + EndDragDropSource() + IMGUI_API bool SetDragDropPayload(const char* type, const void* data, size_t sz, ImGuiCond cond = 0); // type is a user defined string of maximum 32 characters. Strings starting with '_' are reserved for dear imgui internal types. Data is copied and held by imgui. Return true when payload has been accepted. + IMGUI_API void EndDragDropSource(); // only call EndDragDropSource() if BeginDragDropSource() returns true! + IMGUI_API bool BeginDragDropTarget(); // call after submitting an item that may receive a payload. If this returns true, you can call AcceptDragDropPayload() + EndDragDropTarget() + IMGUI_API const ImGuiPayload* AcceptDragDropPayload(const char* type, ImGuiDragDropFlags flags = 0); // accept contents of a given type. If ImGuiDragDropFlags_AcceptBeforeDelivery is set you can peek into the payload before the mouse button is released. + IMGUI_API void EndDragDropTarget(); // only call EndDragDropTarget() if BeginDragDropTarget() returns true! + IMGUI_API const ImGuiPayload* GetDragDropPayload(); // peek directly into the current payload from anywhere. returns NULL when drag and drop is finished or inactive. use ImGuiPayload::IsDataType() to test for the payload type. + + // Disabling [BETA API] + // - Disable all user interactions and dim items visuals (applying style.DisabledAlpha over current colors) + // - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the stack is enough to keep everything disabled) + // - Tooltips windows by exception are opted out of disabling. + // - BeginDisabled(false)/EndDisabled() essentially does nothing but is provided to facilitate use of boolean expressions (as a micro-optimization: if you have tens of thousands of BeginDisabled(false)/EndDisabled() pairs, you might want to reformulate your code to avoid making those calls) + IMGUI_API void BeginDisabled(bool disabled = true); + IMGUI_API void EndDisabled(); + + // Clipping + // - Mouse hovering is affected by ImGui::PushClipRect() calls, unlike direct calls to ImDrawList::PushClipRect() which are render only. + IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect); + IMGUI_API void PopClipRect(); + + // Focus, Activation + // - Prefer using "SetItemDefaultFocus()" over "if (IsWindowAppearing()) SetScrollHereY()" when applicable to signify "this is the default item" + IMGUI_API void SetItemDefaultFocus(); // make last item the default focused item of a window. + IMGUI_API void SetKeyboardFocusHere(int offset = 0); // focus keyboard on the next widget. Use positive 'offset' to access sub components of a multiple component widget. Use -1 to access previous widget. + + // Overlapping mode + IMGUI_API void SetNextItemAllowOverlap(); // allow next item to be overlapped by a subsequent item. Useful with invisible buttons, selectable, treenode covering an area where subsequent items may need to be added. Note that both Selectable() and TreeNode() have dedicated flags doing this. + + // Item/Widgets Utilities and Query Functions + // - Most of the functions are referring to the previous Item that has been submitted. + // - See Demo Window under "Widgets->Querying Status" for an interactive visualization of most of those functions. + IMGUI_API bool IsItemHovered(ImGuiHoveredFlags flags = 0); // is the last item hovered? (and usable, aka not blocked by a popup, etc.). See ImGuiHoveredFlags for more options. + IMGUI_API bool IsItemActive(); // is the last item active? (e.g. button being held, text field being edited. This will continuously return true while holding mouse button on an item. Items that don't interact will always return false) + IMGUI_API bool IsItemFocused(); // is the last item focused for keyboard/gamepad navigation? + IMGUI_API bool IsItemClicked(ImGuiMouseButton mouse_button = 0); // is the last item hovered and mouse clicked on? (**) == IsMouseClicked(mouse_button) && IsItemHovered()Important. (**) this is NOT equivalent to the behavior of e.g. Button(). Read comments in function definition. + IMGUI_API bool IsItemVisible(); // is the last item visible? (items may be out of sight because of clipping/scrolling) + IMGUI_API bool IsItemEdited(); // did the last item modify its underlying value this frame? or was pressed? This is generally the same as the "bool" return value of many widgets. + IMGUI_API bool IsItemActivated(); // was the last item just made active (item was previously inactive). + IMGUI_API bool IsItemDeactivated(); // was the last item just made inactive (item was previously active). Useful for Undo/Redo patterns with widgets that require continuous editing. + IMGUI_API bool IsItemDeactivatedAfterEdit(); // was the last item just made inactive and made a value change when it was active? (e.g. Slider/Drag moved). Useful for Undo/Redo patterns with widgets that require continuous editing. Note that you may get false positives (some widgets such as Combo()/ListBox()/Selectable() will return true even when clicking an already selected item). + IMGUI_API bool IsItemToggledOpen(); // was the last item open state toggled? set by TreeNode(). + IMGUI_API bool IsAnyItemHovered(); // is any item hovered? + IMGUI_API bool IsAnyItemActive(); // is any item active? + IMGUI_API bool IsAnyItemFocused(); // is any item focused? + IMGUI_API ImGuiID GetItemID(); // get ID of last item (~~ often same ImGui::GetID(label) beforehand) + IMGUI_API ImVec2 GetItemRectMin(); // get upper-left bounding rectangle of the last item (screen space) + IMGUI_API ImVec2 GetItemRectMax(); // get lower-right bounding rectangle of the last item (screen space) + IMGUI_API ImVec2 GetItemRectSize(); // get size of last item + + // Viewports + // - Currently represents the Platform Window created by the application which is hosting our Dear ImGui windows. + // - In 'docking' branch with multi-viewport enabled, we extend this concept to have multiple active viewports. + // - In the future we will extend this concept further to also represent Platform Monitor and support a "no main platform window" operation mode. + IMGUI_API ImGuiViewport* GetMainViewport(); // return primary/default viewport. This can never be NULL. + + // Background/Foreground Draw Lists + IMGUI_API ImDrawList* GetBackgroundDrawList(); // this draw list will be the first rendered one. Useful to quickly draw shapes/text behind dear imgui contents. + IMGUI_API ImDrawList* GetForegroundDrawList(); // this draw list will be the last rendered one. Useful to quickly draw shapes/text over dear imgui contents. + + // Miscellaneous Utilities + IMGUI_API bool IsRectVisible(const ImVec2& size); // test if rectangle (of given size, starting from cursor position) is visible / not clipped. + IMGUI_API bool IsRectVisible(const ImVec2& rect_min, const ImVec2& rect_max); // test if rectangle (in screen space) is visible / not clipped. to perform coarse clipping on user's side. + IMGUI_API double GetTime(); // get global imgui time. incremented by io.DeltaTime every frame. + IMGUI_API int GetFrameCount(); // get global imgui frame count. incremented by 1 every frame. + IMGUI_API ImDrawListSharedData* GetDrawListSharedData(); // you may use this when creating your own ImDrawList instances. + IMGUI_API const char* GetStyleColorName(ImGuiCol idx); // get a string corresponding to the enum value (for display, saving, etc.). + IMGUI_API void SetStateStorage(ImGuiStorage* storage); // replace current window storage with our own (if you want to manipulate it yourself, typically clear subsection of it) + IMGUI_API ImGuiStorage* GetStateStorage(); + + // Text Utilities + IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f); + + // Color Utilities + IMGUI_API ImVec4 ColorConvertU32ToFloat4(ImU32 in); + IMGUI_API ImU32 ColorConvertFloat4ToU32(const ImVec4& in); + IMGUI_API void ColorConvertRGBtoHSV(float r, float g, float b, float& out_h, float& out_s, float& out_v); + IMGUI_API void ColorConvertHSVtoRGB(float h, float s, float v, float& out_r, float& out_g, float& out_b); + + // Inputs Utilities: Keyboard/Mouse/Gamepad + // - the ImGuiKey enum contains all possible keyboard, mouse and gamepad inputs (e.g. ImGuiKey_A, ImGuiKey_MouseLeft, ImGuiKey_GamepadDpadUp...). + // - before v1.87, we used ImGuiKey to carry native/user indices as defined by each backends. About use of those legacy ImGuiKey values: + // - without IMGUI_DISABLE_OBSOLETE_KEYIO (legacy support): you can still use your legacy native/user indices (< 512) according to how your backend/engine stored them in io.KeysDown[], but need to cast them to ImGuiKey. + // - with IMGUI_DISABLE_OBSOLETE_KEYIO (this is the way forward): any use of ImGuiKey will assert with key < 512. GetKeyIndex() is pass-through and therefore deprecated (gone if IMGUI_DISABLE_OBSOLETE_KEYIO is defined). + IMGUI_API bool IsKeyDown(ImGuiKey key); // is key being held. + IMGUI_API bool IsKeyPressed(ImGuiKey key, bool repeat = true); // was key pressed (went from !Down to Down)? if repeat=true, uses io.KeyRepeatDelay / KeyRepeatRate + IMGUI_API bool IsKeyReleased(ImGuiKey key); // was key released (went from Down to !Down)? + IMGUI_API bool IsKeyChordPressed(ImGuiKeyChord key_chord); // was key chord (mods + key) pressed, e.g. you can pass 'ImGuiMod_Ctrl | ImGuiKey_S' as a key-chord. This doesn't do any routing or focus check, please consider using Shortcut() function instead. + IMGUI_API int GetKeyPressedAmount(ImGuiKey key, float repeat_delay, float rate); // uses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate + IMGUI_API const char* GetKeyName(ImGuiKey key); // [DEBUG] returns English name of the key. Those names a provided for debugging purpose and are not meant to be saved persistently not compared. + IMGUI_API void SetNextFrameWantCaptureKeyboard(bool want_capture_keyboard); // Override io.WantCaptureKeyboard flag next frame (said flag is left for your application to handle, typically when true it instructs your app to ignore inputs). e.g. force capture keyboard when your widget is being hovered. This is equivalent to setting "io.WantCaptureKeyboard = want_capture_keyboard"; after the next NewFrame() call. + + // Inputs Utilities: Shortcut Testing & Routing [BETA] + // - ImGuiKeyChord = a ImGuiKey + optional ImGuiMod_Alt/ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Super. + // ImGuiKey_C // Accepted by functions taking ImGuiKey or ImGuiKeyChord arguments) + // ImGuiMod_Ctrl | ImGuiKey_C // Accepted by functions taking ImGuiKeyChord arguments) + // only ImGuiMod_XXX values are legal to combine with an ImGuiKey. You CANNOT combine two ImGuiKey values. + // - The general idea is that several callers may register interest in a shortcut, and only one owner gets it. + // Parent -> call Shortcut(Ctrl+S) // When Parent is focused, Parent gets the shortcut. + // Child1 -> call Shortcut(Ctrl+S) // When Child1 is focused, Child1 gets the shortcut (Child1 overrides Parent shortcuts) + // Child2 -> no call // When Child2 is focused, Parent gets the shortcut. + // The whole system is order independent, so if Child1 makes its calls before Parent, results will be identical. + // This is an important property as it facilitate working with foreign code or larger codebase. + // - To understand the difference: + // - IsKeyChordPressed() compares mods and call IsKeyPressed() -> function has no side-effect. + // - Shortcut() submits a route, routes are resolved, if it currently can be routed it calls IsKeyChordPressed() -> function has (desirable) side-effects as it can prevents another call from getting the route. + // - Visualize registered routes in 'Metrics/Debugger->Inputs'. + IMGUI_API bool Shortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags = 0); + IMGUI_API void SetNextItemShortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags = 0); + + // Inputs Utilities: Key/Input Ownership [BETA] + // - One common use case would be to allow your items to disable standard inputs behaviors such + // as Tab or Alt key handling, Mouse Wheel scrolling, etc. + // e.g. Button(...); SetItemKeyOwner(ImGuiKey_MouseWheelY); to make hovering/activating a button disable wheel for scrolling. + // - Reminder ImGuiKey enum include access to mouse buttons and gamepad, so key ownership can apply to them. + // - Many related features are still in imgui_internal.h. For instance, most IsKeyXXX()/IsMouseXXX() functions have an owner-id-aware version. + IMGUI_API void SetItemKeyOwner(ImGuiKey key); // Set key owner to last item ID if it is hovered or active. Equivalent to 'if (IsItemHovered() || IsItemActive()) { SetKeyOwner(key, GetItemID());'. + + // Inputs Utilities: Mouse specific + // - To refer to a mouse button, you may use named enums in your code e.g. ImGuiMouseButton_Left, ImGuiMouseButton_Right. + // - You can also use regular integer: it is forever guaranteed that 0=Left, 1=Right, 2=Middle. + // - Dragging operations are only reported after mouse has moved a certain distance away from the initial clicking position (see 'lock_threshold' and 'io.MouseDraggingThreshold') + IMGUI_API bool IsMouseDown(ImGuiMouseButton button); // is mouse button held? + IMGUI_API bool IsMouseClicked(ImGuiMouseButton button, bool repeat = false); // did mouse button clicked? (went from !Down to Down). Same as GetMouseClickedCount() == 1. + IMGUI_API bool IsMouseReleased(ImGuiMouseButton button); // did mouse button released? (went from Down to !Down) + IMGUI_API bool IsMouseDoubleClicked(ImGuiMouseButton button); // did mouse button double-clicked? Same as GetMouseClickedCount() == 2. (note that a double-click will also report IsMouseClicked() == true) + IMGUI_API int GetMouseClickedCount(ImGuiMouseButton button); // return the number of successive mouse-clicks at the time where a click happen (otherwise 0). + IMGUI_API bool IsMouseHoveringRect(const ImVec2& r_min, const ImVec2& r_max, bool clip = true);// is mouse hovering given bounding rect (in screen space). clipped by current clipping settings, but disregarding of other consideration of focus/window ordering/popup-block. + IMGUI_API bool IsMousePosValid(const ImVec2* mouse_pos = NULL); // by convention we use (-FLT_MAX,-FLT_MAX) to denote that there is no mouse available + IMGUI_API bool IsAnyMouseDown(); // [WILL OBSOLETE] is any mouse button held? This was designed for backends, but prefer having backend maintain a mask of held mouse buttons, because upcoming input queue system will make this invalid. + IMGUI_API ImVec2 GetMousePos(); // shortcut to ImGui::GetIO().MousePos provided by user, to be consistent with other calls + IMGUI_API ImVec2 GetMousePosOnOpeningCurrentPopup(); // retrieve mouse position at the time of opening popup we have BeginPopup() into (helper to avoid user backing that value themselves) + IMGUI_API bool IsMouseDragging(ImGuiMouseButton button, float lock_threshold = -1.0f); // is mouse dragging? (uses io.MouseDraggingThreshold if lock_threshold < 0.0f) + IMGUI_API ImVec2 GetMouseDragDelta(ImGuiMouseButton button = 0, float lock_threshold = -1.0f); // return the delta from the initial clicking position while the mouse button is pressed or was just released. This is locked and return 0.0f until the mouse moves past a distance threshold at least once (uses io.MouseDraggingThreshold if lock_threshold < 0.0f) + IMGUI_API void ResetMouseDragDelta(ImGuiMouseButton button = 0); // + IMGUI_API ImGuiMouseCursor GetMouseCursor(); // get desired mouse cursor shape. Important: reset in ImGui::NewFrame(), this is updated during the frame. valid before Render(). If you use software rendering by setting io.MouseDrawCursor ImGui will render those for you + IMGUI_API void SetMouseCursor(ImGuiMouseCursor cursor_type); // set desired mouse cursor shape + IMGUI_API void SetNextFrameWantCaptureMouse(bool want_capture_mouse); // Override io.WantCaptureMouse flag next frame (said flag is left for your application to handle, typical when true it instucts your app to ignore inputs). This is equivalent to setting "io.WantCaptureMouse = want_capture_mouse;" after the next NewFrame() call. + + // Clipboard Utilities + // - Also see the LogToClipboard() function to capture GUI into clipboard, or easily output text data to the clipboard. + IMGUI_API const char* GetClipboardText(); + IMGUI_API void SetClipboardText(const char* text); + + // Settings/.Ini Utilities + // - The disk functions are automatically called if io.IniFilename != NULL (default is "imgui.ini"). + // - Set io.IniFilename to NULL to load/save manually. Read io.WantSaveIniSettings description about handling .ini saving manually. + // - Important: default value "imgui.ini" is relative to current working dir! Most apps will want to lock this to an absolute path (e.g. same path as executables). + IMGUI_API void LoadIniSettingsFromDisk(const char* ini_filename); // call after CreateContext() and before the first call to NewFrame(). NewFrame() automatically calls LoadIniSettingsFromDisk(io.IniFilename). + IMGUI_API void LoadIniSettingsFromMemory(const char* ini_data, size_t ini_size=0); // call after CreateContext() and before the first call to NewFrame() to provide .ini data from your own data source. + IMGUI_API void SaveIniSettingsToDisk(const char* ini_filename); // this is automatically called (if io.IniFilename is not empty) a few seconds after any modification that should be reflected in the .ini file (and also by DestroyContext). + IMGUI_API const char* SaveIniSettingsToMemory(size_t* out_ini_size = NULL); // return a zero-terminated string with the .ini data which you can save by your own mean. call when io.WantSaveIniSettings is set, then save data by your own mean and clear io.WantSaveIniSettings. + + // Debug Utilities + // - Your main debugging friend is the ShowMetricsWindow() function, which is also accessible from Demo->Tools->Metrics Debugger + IMGUI_API void DebugTextEncoding(const char* text); + IMGUI_API void DebugFlashStyleColor(ImGuiCol idx); + IMGUI_API void DebugStartItemPicker(); + IMGUI_API bool DebugCheckVersionAndDataLayout(const char* version_str, size_t sz_io, size_t sz_style, size_t sz_vec2, size_t sz_vec4, size_t sz_drawvert, size_t sz_drawidx); // This is called by IMGUI_CHECKVERSION() macro. +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + IMGUI_API void DebugLog(const char* fmt, ...) IM_FMTARGS(1); // Call via IMGUI_DEBUG_LOG() for maximum stripping in caller code! + IMGUI_API void DebugLogV(const char* fmt, va_list args) IM_FMTLIST(1); +#endif + + // Memory Allocators + // - Those functions are not reliant on the current context. + // - DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() + // for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for more details. + IMGUI_API void SetAllocatorFunctions(ImGuiMemAllocFunc alloc_func, ImGuiMemFreeFunc free_func, void* user_data = NULL); + IMGUI_API void GetAllocatorFunctions(ImGuiMemAllocFunc* p_alloc_func, ImGuiMemFreeFunc* p_free_func, void** p_user_data); + IMGUI_API void* MemAlloc(size_t size); + IMGUI_API void MemFree(void* ptr); + +} // namespace ImGui + +//----------------------------------------------------------------------------- +// [SECTION] Flags & Enumerations +//----------------------------------------------------------------------------- + +// Flags for ImGui::Begin() +// (Those are per-window flags. There are shared flags in ImGuiIO: io.ConfigWindowsResizeFromEdges and io.ConfigWindowsMoveFromTitleBarOnly) +enum ImGuiWindowFlags_ +{ + ImGuiWindowFlags_None = 0, + ImGuiWindowFlags_NoTitleBar = 1 << 0, // Disable title-bar + ImGuiWindowFlags_NoResize = 1 << 1, // Disable user resizing with the lower-right grip + ImGuiWindowFlags_NoMove = 1 << 2, // Disable user moving the window + ImGuiWindowFlags_NoScrollbar = 1 << 3, // Disable scrollbars (window can still scroll with mouse or programmatically) + ImGuiWindowFlags_NoScrollWithMouse = 1 << 4, // Disable user vertically scrolling with mouse wheel. On child window, mouse wheel will be forwarded to the parent unless NoScrollbar is also set. + ImGuiWindowFlags_NoCollapse = 1 << 5, // Disable user collapsing window by double-clicking on it. Also referred to as Window Menu Button (e.g. within a docking node). + ImGuiWindowFlags_AlwaysAutoResize = 1 << 6, // Resize every window to its content every frame + ImGuiWindowFlags_NoBackground = 1 << 7, // Disable drawing background color (WindowBg, etc.) and outside border. Similar as using SetNextWindowBgAlpha(0.0f). + ImGuiWindowFlags_NoSavedSettings = 1 << 8, // Never load/save settings in .ini file + ImGuiWindowFlags_NoMouseInputs = 1 << 9, // Disable catching mouse, hovering test with pass through. + ImGuiWindowFlags_MenuBar = 1 << 10, // Has a menu-bar + ImGuiWindowFlags_HorizontalScrollbar = 1 << 11, // Allow horizontal scrollbar to appear (off by default). You may use SetNextWindowContentSize(ImVec2(width,0.0f)); prior to calling Begin() to specify width. Read code in imgui_demo in the "Horizontal Scrolling" section. + ImGuiWindowFlags_NoFocusOnAppearing = 1 << 12, // Disable taking focus when transitioning from hidden to visible state + ImGuiWindowFlags_NoBringToFrontOnFocus = 1 << 13, // Disable bringing window to front when taking focus (e.g. clicking on it or programmatically giving it focus) + ImGuiWindowFlags_AlwaysVerticalScrollbar= 1 << 14, // Always show vertical scrollbar (even if ContentSize.y < Size.y) + ImGuiWindowFlags_AlwaysHorizontalScrollbar=1<< 15, // Always show horizontal scrollbar (even if ContentSize.x < Size.x) + ImGuiWindowFlags_NoNavInputs = 1 << 16, // No gamepad/keyboard navigation within the window + ImGuiWindowFlags_NoNavFocus = 1 << 17, // No focusing toward this window with gamepad/keyboard navigation (e.g. skipped by CTRL+TAB) + ImGuiWindowFlags_UnsavedDocument = 1 << 18, // Display a dot next to the title. When used in a tab/docking context, tab is selected when clicking the X + closure is not assumed (will wait for user to stop submitting the tab). Otherwise closure is assumed when pressing the X, so if you keep submitting the tab may reappear at end of tab bar. + ImGuiWindowFlags_NoNav = ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, + ImGuiWindowFlags_NoDecoration = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse, + ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus, + + // [Internal] + ImGuiWindowFlags_ChildWindow = 1 << 24, // Don't use! For internal use by BeginChild() + ImGuiWindowFlags_Tooltip = 1 << 25, // Don't use! For internal use by BeginTooltip() + ImGuiWindowFlags_Popup = 1 << 26, // Don't use! For internal use by BeginPopup() + ImGuiWindowFlags_Modal = 1 << 27, // Don't use! For internal use by BeginPopupModal() + ImGuiWindowFlags_ChildMenu = 1 << 28, // Don't use! For internal use by BeginMenu() + + // Obsolete names +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiWindowFlags_AlwaysUseWindowPadding = 1 << 30, // Obsoleted in 1.90.0: Use ImGuiChildFlags_AlwaysUseWindowPadding in BeginChild() call. + ImGuiWindowFlags_NavFlattened = 1 << 31, // Obsoleted in 1.90.9: Use ImGuiChildFlags_NavFlattened in BeginChild() call. +#endif +}; + +// Flags for ImGui::BeginChild() +// (Legacy: bit 0 must always correspond to ImGuiChildFlags_Borders to be backward compatible with old API using 'bool border = false'. +// About using AutoResizeX/AutoResizeY flags: +// - May be combined with SetNextWindowSizeConstraints() to set a min/max size for each axis (see "Demo->Child->Auto-resize with Constraints"). +// - Size measurement for a given axis is only performed when the child window is within visible boundaries, or is just appearing. +// - This allows BeginChild() to return false when not within boundaries (e.g. when scrolling), which is more optimal. BUT it won't update its auto-size while clipped. +// While not perfect, it is a better default behavior as the always-on performance gain is more valuable than the occasional "resizing after becoming visible again" glitch. +// - You may also use ImGuiChildFlags_AlwaysAutoResize to force an update even when child window is not in view. +// HOWEVER PLEASE UNDERSTAND THAT DOING SO WILL PREVENT BeginChild() FROM EVER RETURNING FALSE, disabling benefits of coarse clipping. +enum ImGuiChildFlags_ +{ + ImGuiChildFlags_None = 0, + ImGuiChildFlags_Borders = 1 << 0, // Show an outer border and enable WindowPadding. (IMPORTANT: this is always == 1 == true for legacy reason) + ImGuiChildFlags_AlwaysUseWindowPadding = 1 << 1, // Pad with style.WindowPadding even if no border are drawn (no padding by default for non-bordered child windows because it makes more sense) + ImGuiChildFlags_ResizeX = 1 << 2, // Allow resize from right border (layout direction). Enable .ini saving (unless ImGuiWindowFlags_NoSavedSettings passed to window flags) + ImGuiChildFlags_ResizeY = 1 << 3, // Allow resize from bottom border (layout direction). " + ImGuiChildFlags_AutoResizeX = 1 << 4, // Enable auto-resizing width. Read "IMPORTANT: Size measurement" details above. + ImGuiChildFlags_AutoResizeY = 1 << 5, // Enable auto-resizing height. Read "IMPORTANT: Size measurement" details above. + ImGuiChildFlags_AlwaysAutoResize = 1 << 6, // Combined with AutoResizeX/AutoResizeY. Always measure size even when child is hidden, always return true, always disable clipping optimization! NOT RECOMMENDED. + ImGuiChildFlags_FrameStyle = 1 << 7, // Style the child window like a framed item: use FrameBg, FrameRounding, FrameBorderSize, FramePadding instead of ChildBg, ChildRounding, ChildBorderSize, WindowPadding. + ImGuiChildFlags_NavFlattened = 1 << 8, // [BETA] Share focus scope, allow gamepad/keyboard navigation to cross over parent border to this child or between sibling child windows. + + // Obsolete names +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiChildFlags_Border = ImGuiChildFlags_Borders, // Renamed in 1.91.1 (August 2024) for consistency. +#endif +}; + +// Flags for ImGui::PushItemFlag() +// (Those are shared by all items) +enum ImGuiItemFlags_ +{ + ImGuiItemFlags_None = 0, // (Default) + ImGuiItemFlags_NoTabStop = 1 << 0, // false // Disable keyboard tabbing. This is a "lighter" version of ImGuiItemFlags_NoNav. + ImGuiItemFlags_NoNav = 1 << 1, // false // Disable any form of focusing (keyboard/gamepad directional navigation and SetKeyboardFocusHere() calls). + ImGuiItemFlags_NoNavDefaultFocus = 1 << 2, // false // Disable item being a candidate for default focus (e.g. used by title bar items). + ImGuiItemFlags_ButtonRepeat = 1 << 3, // false // Any button-like behavior will have repeat mode enabled (based on io.KeyRepeatDelay and io.KeyRepeatRate values). Note that you can also call IsItemActive() after any button to tell if it is being held. + ImGuiItemFlags_AutoClosePopups = 1 << 4, // true // MenuItem()/Selectable() automatically close their parent popup window. + ImGuiItemFlags_AllowDuplicateId = 1 << 5, // false // Allow submitting an item with the same identifier as an item already submitted this frame without triggering a warning tooltip if io.ConfigDebugHighlightIdConflicts is set. +}; + +// Flags for ImGui::InputText() +// (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigInputTextCursorBlink and io.ConfigInputTextEnterKeepActive) +enum ImGuiInputTextFlags_ +{ + // Basic filters (also see ImGuiInputTextFlags_CallbackCharFilter) + ImGuiInputTextFlags_None = 0, + ImGuiInputTextFlags_CharsDecimal = 1 << 0, // Allow 0123456789.+-*/ + ImGuiInputTextFlags_CharsHexadecimal = 1 << 1, // Allow 0123456789ABCDEFabcdef + ImGuiInputTextFlags_CharsScientific = 1 << 2, // Allow 0123456789.+-*/eE (Scientific notation input) + ImGuiInputTextFlags_CharsUppercase = 1 << 3, // Turn a..z into A..Z + ImGuiInputTextFlags_CharsNoBlank = 1 << 4, // Filter out spaces, tabs + + // Inputs + ImGuiInputTextFlags_AllowTabInput = 1 << 5, // Pressing TAB input a '\t' character into the text field + ImGuiInputTextFlags_EnterReturnsTrue = 1 << 6, // Return 'true' when Enter is pressed (as opposed to every time the value was modified). Consider looking at the IsItemDeactivatedAfterEdit() function. + ImGuiInputTextFlags_EscapeClearsAll = 1 << 7, // Escape key clears content if not empty, and deactivate otherwise (contrast to default behavior of Escape to revert) + ImGuiInputTextFlags_CtrlEnterForNewLine = 1 << 8, // In multi-line mode, validate with Enter, add new line with Ctrl+Enter (default is opposite: validate with Ctrl+Enter, add line with Enter). + + // Other options + ImGuiInputTextFlags_ReadOnly = 1 << 9, // Read-only mode + ImGuiInputTextFlags_Password = 1 << 10, // Password mode, display all characters as '*', disable copy + ImGuiInputTextFlags_AlwaysOverwrite = 1 << 11, // Overwrite mode + ImGuiInputTextFlags_AutoSelectAll = 1 << 12, // Select entire text when first taking mouse focus + ImGuiInputTextFlags_ParseEmptyRefVal = 1 << 13, // InputFloat(), InputInt(), InputScalar() etc. only: parse empty string as zero value. + ImGuiInputTextFlags_DisplayEmptyRefVal = 1 << 14, // InputFloat(), InputInt(), InputScalar() etc. only: when value is zero, do not display it. Generally used with ImGuiInputTextFlags_ParseEmptyRefVal. + ImGuiInputTextFlags_NoHorizontalScroll = 1 << 15, // Disable following the cursor horizontally + ImGuiInputTextFlags_NoUndoRedo = 1 << 16, // Disable undo/redo. Note that input text owns the text data while active, if you want to provide your own undo/redo stack you need e.g. to call ClearActiveID(). + + // Callback features + ImGuiInputTextFlags_CallbackCompletion = 1 << 17, // Callback on pressing TAB (for completion handling) + ImGuiInputTextFlags_CallbackHistory = 1 << 18, // Callback on pressing Up/Down arrows (for history handling) + ImGuiInputTextFlags_CallbackAlways = 1 << 19, // Callback on each iteration. User code may query cursor position, modify text buffer. + ImGuiInputTextFlags_CallbackCharFilter = 1 << 20, // Callback on character inputs to replace or discard them. Modify 'EventChar' to replace or discard, or return 1 in callback to discard. + ImGuiInputTextFlags_CallbackResize = 1 << 21, // Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. Notify when the string wants to be resized (for string types which hold a cache of their Size). You will be provided a new BufSize in the callback and NEED to honor it. (see misc/cpp/imgui_stdlib.h for an example of using this) + ImGuiInputTextFlags_CallbackEdit = 1 << 22, // Callback on any edit (note that InputText() already returns true on edit, the callback is useful mainly to manipulate the underlying buffer while focus is active) + + // Obsolete names + //ImGuiInputTextFlags_AlwaysInsertMode = ImGuiInputTextFlags_AlwaysOverwrite // [renamed in 1.82] name was not matching behavior +}; + +// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*() +enum ImGuiTreeNodeFlags_ +{ + ImGuiTreeNodeFlags_None = 0, + ImGuiTreeNodeFlags_Selected = 1 << 0, // Draw as selected + ImGuiTreeNodeFlags_Framed = 1 << 1, // Draw frame with background (e.g. for CollapsingHeader) + ImGuiTreeNodeFlags_AllowOverlap = 1 << 2, // Hit testing to allow subsequent widgets to overlap this one + ImGuiTreeNodeFlags_NoTreePushOnOpen = 1 << 3, // Don't do a TreePush() when open (e.g. for CollapsingHeader) = no extra indent nor pushing on ID stack + ImGuiTreeNodeFlags_NoAutoOpenOnLog = 1 << 4, // Don't automatically and temporarily open node when Logging is active (by default logging will automatically open tree nodes) + ImGuiTreeNodeFlags_DefaultOpen = 1 << 5, // Default node to be open + ImGuiTreeNodeFlags_OpenOnDoubleClick = 1 << 6, // Open on double-click instead of simple click (default for multi-select unless any _OpenOnXXX behavior is set explicitly). Both behaviors may be combined. + ImGuiTreeNodeFlags_OpenOnArrow = 1 << 7, // Open when clicking on the arrow part (default for multi-select unless any _OpenOnXXX behavior is set explicitly). Both behaviors may be combined. + ImGuiTreeNodeFlags_Leaf = 1 << 8, // No collapsing, no arrow (use as a convenience for leaf nodes). + ImGuiTreeNodeFlags_Bullet = 1 << 9, // Display a bullet instead of arrow. IMPORTANT: node can still be marked open/close if you don't set the _Leaf flag! + ImGuiTreeNodeFlags_FramePadding = 1 << 10, // Use FramePadding (even for an unframed text node) to vertically align text baseline to regular widget height. Equivalent to calling AlignTextToFramePadding() before the node. + ImGuiTreeNodeFlags_SpanAvailWidth = 1 << 11, // Extend hit box to the right-most edge, even if not framed. This is not the default in order to allow adding other items on the same line without using AllowOverlap mode. + ImGuiTreeNodeFlags_SpanFullWidth = 1 << 12, // Extend hit box to the left-most and right-most edges (cover the indent area). + ImGuiTreeNodeFlags_SpanTextWidth = 1 << 13, // Narrow hit box + narrow hovering highlight, will only cover the label text. + ImGuiTreeNodeFlags_SpanAllColumns = 1 << 14, // Frame will span all columns of its container table (text will still fit in current column) + ImGuiTreeNodeFlags_NavLeftJumpsBackHere = 1 << 15, // (WIP) Nav: left direction may move to this TreeNode() from any of its child (items submitted between TreeNode and TreePop) + //ImGuiTreeNodeFlags_NoScrollOnOpen = 1 << 16, // FIXME: TODO: Disable automatic scroll on TreePop() if node got just open and contents is not visible + ImGuiTreeNodeFlags_CollapsingHeader = ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_NoTreePushOnOpen | ImGuiTreeNodeFlags_NoAutoOpenOnLog, + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiTreeNodeFlags_AllowItemOverlap = ImGuiTreeNodeFlags_AllowOverlap, // Renamed in 1.89.7 +#endif +}; + +// Flags for OpenPopup*(), BeginPopupContext*(), IsPopupOpen() functions. +// - To be backward compatible with older API which took an 'int mouse_button = 1' argument instead of 'ImGuiPopupFlags flags', +// we need to treat small flags values as a mouse button index, so we encode the mouse button in the first few bits of the flags. +// It is therefore guaranteed to be legal to pass a mouse button index in ImGuiPopupFlags. +// - For the same reason, we exceptionally default the ImGuiPopupFlags argument of BeginPopupContextXXX functions to 1 instead of 0. +// IMPORTANT: because the default parameter is 1 (==ImGuiPopupFlags_MouseButtonRight), if you rely on the default parameter +// and want to use another flag, you need to pass in the ImGuiPopupFlags_MouseButtonRight flag explicitly. +// - Multiple buttons currently cannot be combined/or-ed in those functions (we could allow it later). +enum ImGuiPopupFlags_ +{ + ImGuiPopupFlags_None = 0, + ImGuiPopupFlags_MouseButtonLeft = 0, // For BeginPopupContext*(): open on Left Mouse release. Guaranteed to always be == 0 (same as ImGuiMouseButton_Left) + ImGuiPopupFlags_MouseButtonRight = 1, // For BeginPopupContext*(): open on Right Mouse release. Guaranteed to always be == 1 (same as ImGuiMouseButton_Right) + ImGuiPopupFlags_MouseButtonMiddle = 2, // For BeginPopupContext*(): open on Middle Mouse release. Guaranteed to always be == 2 (same as ImGuiMouseButton_Middle) + ImGuiPopupFlags_MouseButtonMask_ = 0x1F, + ImGuiPopupFlags_MouseButtonDefault_ = 1, + ImGuiPopupFlags_NoReopen = 1 << 5, // For OpenPopup*(), BeginPopupContext*(): don't reopen same popup if already open (won't reposition, won't reinitialize navigation) + //ImGuiPopupFlags_NoReopenAlwaysNavInit = 1 << 6, // For OpenPopup*(), BeginPopupContext*(): focus and initialize navigation even when not reopening. + ImGuiPopupFlags_NoOpenOverExistingPopup = 1 << 7, // For OpenPopup*(), BeginPopupContext*(): don't open if there's already a popup at the same level of the popup stack + ImGuiPopupFlags_NoOpenOverItems = 1 << 8, // For BeginPopupContextWindow(): don't return true when hovering items, only when hovering empty space + ImGuiPopupFlags_AnyPopupId = 1 << 10, // For IsPopupOpen(): ignore the ImGuiID parameter and test for any popup. + ImGuiPopupFlags_AnyPopupLevel = 1 << 11, // For IsPopupOpen(): search/test at any level of the popup stack (default test in the current level) + ImGuiPopupFlags_AnyPopup = ImGuiPopupFlags_AnyPopupId | ImGuiPopupFlags_AnyPopupLevel, +}; + +// Flags for ImGui::Selectable() +enum ImGuiSelectableFlags_ +{ + ImGuiSelectableFlags_None = 0, + ImGuiSelectableFlags_NoAutoClosePopups = 1 << 0, // Clicking this doesn't close parent popup window (overrides ImGuiItemFlags_AutoClosePopups) + ImGuiSelectableFlags_SpanAllColumns = 1 << 1, // Frame will span all columns of its container table (text will still fit in current column) + ImGuiSelectableFlags_AllowDoubleClick = 1 << 2, // Generate press events on double clicks too + ImGuiSelectableFlags_Disabled = 1 << 3, // Cannot be selected, display grayed out text + ImGuiSelectableFlags_AllowOverlap = 1 << 4, // (WIP) Hit testing to allow subsequent widgets to overlap this one + ImGuiSelectableFlags_Highlight = 1 << 5, // Make the item be displayed as if it is hovered + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiSelectableFlags_DontClosePopups = ImGuiSelectableFlags_NoAutoClosePopups, // Renamed in 1.91.0 + ImGuiSelectableFlags_AllowItemOverlap = ImGuiSelectableFlags_AllowOverlap, // Renamed in 1.89.7 +#endif +}; + +// Flags for ImGui::BeginCombo() +enum ImGuiComboFlags_ +{ + ImGuiComboFlags_None = 0, + ImGuiComboFlags_PopupAlignLeft = 1 << 0, // Align the popup toward the left by default + ImGuiComboFlags_HeightSmall = 1 << 1, // Max ~4 items visible. Tip: If you want your combo popup to be a specific size you can use SetNextWindowSizeConstraints() prior to calling BeginCombo() + ImGuiComboFlags_HeightRegular = 1 << 2, // Max ~8 items visible (default) + ImGuiComboFlags_HeightLarge = 1 << 3, // Max ~20 items visible + ImGuiComboFlags_HeightLargest = 1 << 4, // As many fitting items as possible + ImGuiComboFlags_NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button + ImGuiComboFlags_NoPreview = 1 << 6, // Display only a square arrow button + ImGuiComboFlags_WidthFitPreview = 1 << 7, // Width dynamically calculated from preview contents + ImGuiComboFlags_HeightMask_ = ImGuiComboFlags_HeightSmall | ImGuiComboFlags_HeightRegular | ImGuiComboFlags_HeightLarge | ImGuiComboFlags_HeightLargest, +}; + +// Flags for ImGui::BeginTabBar() +enum ImGuiTabBarFlags_ +{ + ImGuiTabBarFlags_None = 0, + ImGuiTabBarFlags_Reorderable = 1 << 0, // Allow manually dragging tabs to re-order them + New tabs are appended at the end of list + ImGuiTabBarFlags_AutoSelectNewTabs = 1 << 1, // Automatically select new tabs when they appear + ImGuiTabBarFlags_TabListPopupButton = 1 << 2, // Disable buttons to open the tab list popup + ImGuiTabBarFlags_NoCloseWithMiddleMouseButton = 1 << 3, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You may handle this behavior manually on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false. + ImGuiTabBarFlags_NoTabListScrollingButtons = 1 << 4, // Disable scrolling buttons (apply when fitting policy is ImGuiTabBarFlags_FittingPolicyScroll) + ImGuiTabBarFlags_NoTooltip = 1 << 5, // Disable tooltips when hovering a tab + ImGuiTabBarFlags_DrawSelectedOverline = 1 << 6, // Draw selected overline markers over selected tab + ImGuiTabBarFlags_FittingPolicyResizeDown = 1 << 7, // Resize tabs when they don't fit + ImGuiTabBarFlags_FittingPolicyScroll = 1 << 8, // Add scroll buttons when tabs don't fit + ImGuiTabBarFlags_FittingPolicyMask_ = ImGuiTabBarFlags_FittingPolicyResizeDown | ImGuiTabBarFlags_FittingPolicyScroll, + ImGuiTabBarFlags_FittingPolicyDefault_ = ImGuiTabBarFlags_FittingPolicyResizeDown, +}; + +// Flags for ImGui::BeginTabItem() +enum ImGuiTabItemFlags_ +{ + ImGuiTabItemFlags_None = 0, + ImGuiTabItemFlags_UnsavedDocument = 1 << 0, // Display a dot next to the title + set ImGuiTabItemFlags_NoAssumedClosure. + ImGuiTabItemFlags_SetSelected = 1 << 1, // Trigger flag to programmatically make the tab selected when calling BeginTabItem() + ImGuiTabItemFlags_NoCloseWithMiddleMouseButton = 1 << 2, // Disable behavior of closing tabs (that are submitted with p_open != NULL) with middle mouse button. You may handle this behavior manually on user's side with if (IsItemHovered() && IsMouseClicked(2)) *p_open = false. + ImGuiTabItemFlags_NoPushId = 1 << 3, // Don't call PushID()/PopID() on BeginTabItem()/EndTabItem() + ImGuiTabItemFlags_NoTooltip = 1 << 4, // Disable tooltip for the given tab + ImGuiTabItemFlags_NoReorder = 1 << 5, // Disable reordering this tab or having another tab cross over this tab + ImGuiTabItemFlags_Leading = 1 << 6, // Enforce the tab position to the left of the tab bar (after the tab list popup button) + ImGuiTabItemFlags_Trailing = 1 << 7, // Enforce the tab position to the right of the tab bar (before the scrolling buttons) + ImGuiTabItemFlags_NoAssumedClosure = 1 << 8, // Tab is selected when trying to close + closure is not immediately assumed (will wait for user to stop submitting the tab). Otherwise closure is assumed when pressing the X, so if you keep submitting the tab may reappear at end of tab bar. +}; + +// Flags for ImGui::IsWindowFocused() +enum ImGuiFocusedFlags_ +{ + ImGuiFocusedFlags_None = 0, + ImGuiFocusedFlags_ChildWindows = 1 << 0, // Return true if any children of the window is focused + ImGuiFocusedFlags_RootWindow = 1 << 1, // Test from root window (top most parent of the current hierarchy) + ImGuiFocusedFlags_AnyWindow = 1 << 2, // Return true if any window is focused. Important: If you are trying to tell how to dispatch your low-level inputs, do NOT use this. Use 'io.WantCaptureMouse' instead! Please read the FAQ! + ImGuiFocusedFlags_NoPopupHierarchy = 1 << 3, // Do not consider popup hierarchy (do not treat popup emitter as parent of popup) (when used with _ChildWindows or _RootWindow) + //ImGuiFocusedFlags_DockHierarchy = 1 << 4, // Consider docking hierarchy (treat dockspace host as parent of docked window) (when used with _ChildWindows or _RootWindow) + ImGuiFocusedFlags_RootAndChildWindows = ImGuiFocusedFlags_RootWindow | ImGuiFocusedFlags_ChildWindows, +}; + +// Flags for ImGui::IsItemHovered(), ImGui::IsWindowHovered() +// Note: if you are trying to check whether your mouse should be dispatched to Dear ImGui or to your app, you should use 'io.WantCaptureMouse' instead! Please read the FAQ! +// Note: windows with the ImGuiWindowFlags_NoInputs flag are ignored by IsWindowHovered() calls. +enum ImGuiHoveredFlags_ +{ + ImGuiHoveredFlags_None = 0, // Return true if directly over the item/window, not obstructed by another window, not obstructed by an active popup or modal blocking inputs under them. + ImGuiHoveredFlags_ChildWindows = 1 << 0, // IsWindowHovered() only: Return true if any children of the window is hovered + ImGuiHoveredFlags_RootWindow = 1 << 1, // IsWindowHovered() only: Test from root window (top most parent of the current hierarchy) + ImGuiHoveredFlags_AnyWindow = 1 << 2, // IsWindowHovered() only: Return true if any window is hovered + ImGuiHoveredFlags_NoPopupHierarchy = 1 << 3, // IsWindowHovered() only: Do not consider popup hierarchy (do not treat popup emitter as parent of popup) (when used with _ChildWindows or _RootWindow) + //ImGuiHoveredFlags_DockHierarchy = 1 << 4, // IsWindowHovered() only: Consider docking hierarchy (treat dockspace host as parent of docked window) (when used with _ChildWindows or _RootWindow) + ImGuiHoveredFlags_AllowWhenBlockedByPopup = 1 << 5, // Return true even if a popup window is normally blocking access to this item/window + //ImGuiHoveredFlags_AllowWhenBlockedByModal = 1 << 6, // Return true even if a modal popup window is normally blocking access to this item/window. FIXME-TODO: Unavailable yet. + ImGuiHoveredFlags_AllowWhenBlockedByActiveItem = 1 << 7, // Return true even if an active item is blocking access to this item/window. Useful for Drag and Drop patterns. + ImGuiHoveredFlags_AllowWhenOverlappedByItem = 1 << 8, // IsItemHovered() only: Return true even if the item uses AllowOverlap mode and is overlapped by another hoverable item. + ImGuiHoveredFlags_AllowWhenOverlappedByWindow = 1 << 9, // IsItemHovered() only: Return true even if the position is obstructed or overlapped by another window. + ImGuiHoveredFlags_AllowWhenDisabled = 1 << 10, // IsItemHovered() only: Return true even if the item is disabled + ImGuiHoveredFlags_NoNavOverride = 1 << 11, // IsItemHovered() only: Disable using gamepad/keyboard navigation state when active, always query mouse + ImGuiHoveredFlags_AllowWhenOverlapped = ImGuiHoveredFlags_AllowWhenOverlappedByItem | ImGuiHoveredFlags_AllowWhenOverlappedByWindow, + ImGuiHoveredFlags_RectOnly = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped, + ImGuiHoveredFlags_RootAndChildWindows = ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_ChildWindows, + + // Tooltips mode + // - typically used in IsItemHovered() + SetTooltip() sequence. + // - this is a shortcut to pull flags from 'style.HoverFlagsForTooltipMouse' or 'style.HoverFlagsForTooltipNav' where you can reconfigure desired behavior. + // e.g. 'TooltipHoveredFlagsForMouse' defaults to 'ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayShort'. + // - for frequently actioned or hovered items providing a tooltip, you want may to use ImGuiHoveredFlags_ForTooltip (stationary + delay) so the tooltip doesn't show too often. + // - for items which main purpose is to be hovered, or items with low affordance, or in less consistent apps, prefer no delay or shorter delay. + ImGuiHoveredFlags_ForTooltip = 1 << 12, // Shortcut for standard flags when using IsItemHovered() + SetTooltip() sequence. + + // (Advanced) Mouse Hovering delays. + // - generally you can use ImGuiHoveredFlags_ForTooltip to use application-standardized flags. + // - use those if you need specific overrides. + ImGuiHoveredFlags_Stationary = 1 << 13, // Require mouse to be stationary for style.HoverStationaryDelay (~0.15 sec) _at least one time_. After this, can move on same item/window. Using the stationary test tends to reduces the need for a long delay. + ImGuiHoveredFlags_DelayNone = 1 << 14, // IsItemHovered() only: Return true immediately (default). As this is the default you generally ignore this. + ImGuiHoveredFlags_DelayShort = 1 << 15, // IsItemHovered() only: Return true after style.HoverDelayShort elapsed (~0.15 sec) (shared between items) + requires mouse to be stationary for style.HoverStationaryDelay (once per item). + ImGuiHoveredFlags_DelayNormal = 1 << 16, // IsItemHovered() only: Return true after style.HoverDelayNormal elapsed (~0.40 sec) (shared between items) + requires mouse to be stationary for style.HoverStationaryDelay (once per item). + ImGuiHoveredFlags_NoSharedDelay = 1 << 17, // IsItemHovered() only: Disable shared delay system where moving from one item to the next keeps the previous timer for a short time (standard for tooltips with long delays) +}; + +// Flags for ImGui::BeginDragDropSource(), ImGui::AcceptDragDropPayload() +enum ImGuiDragDropFlags_ +{ + ImGuiDragDropFlags_None = 0, + // BeginDragDropSource() flags + ImGuiDragDropFlags_SourceNoPreviewTooltip = 1 << 0, // Disable preview tooltip. By default, a successful call to BeginDragDropSource opens a tooltip so you can display a preview or description of the source contents. This flag disables this behavior. + ImGuiDragDropFlags_SourceNoDisableHover = 1 << 1, // By default, when dragging we clear data so that IsItemHovered() will return false, to avoid subsequent user code submitting tooltips. This flag disables this behavior so you can still call IsItemHovered() on the source item. + ImGuiDragDropFlags_SourceNoHoldToOpenOthers = 1 << 2, // Disable the behavior that allows to open tree nodes and collapsing header by holding over them while dragging a source item. + ImGuiDragDropFlags_SourceAllowNullID = 1 << 3, // Allow items such as Text(), Image() that have no unique identifier to be used as drag source, by manufacturing a temporary identifier based on their window-relative position. This is extremely unusual within the dear imgui ecosystem and so we made it explicit. + ImGuiDragDropFlags_SourceExtern = 1 << 4, // External source (from outside of dear imgui), won't attempt to read current item/window info. Will always return true. Only one Extern source can be active simultaneously. + ImGuiDragDropFlags_PayloadAutoExpire = 1 << 5, // Automatically expire the payload if the source cease to be submitted (otherwise payloads are persisting while being dragged) + ImGuiDragDropFlags_PayloadNoCrossContext = 1 << 6, // Hint to specify that the payload may not be copied outside current dear imgui context. + ImGuiDragDropFlags_PayloadNoCrossProcess = 1 << 7, // Hint to specify that the payload may not be copied outside current process. + // AcceptDragDropPayload() flags + ImGuiDragDropFlags_AcceptBeforeDelivery = 1 << 10, // AcceptDragDropPayload() will returns true even before the mouse button is released. You can then call IsDelivery() to test if the payload needs to be delivered. + ImGuiDragDropFlags_AcceptNoDrawDefaultRect = 1 << 11, // Do not draw the default highlight rectangle when hovering over target. + ImGuiDragDropFlags_AcceptNoPreviewTooltip = 1 << 12, // Request hiding the BeginDragDropSource tooltip from the BeginDragDropTarget site. + ImGuiDragDropFlags_AcceptPeekOnly = ImGuiDragDropFlags_AcceptBeforeDelivery | ImGuiDragDropFlags_AcceptNoDrawDefaultRect, // For peeking ahead and inspecting the payload before delivery. + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiDragDropFlags_SourceAutoExpirePayload = ImGuiDragDropFlags_PayloadAutoExpire, // Renamed in 1.90.9 +#endif +}; + +// Standard Drag and Drop payload types. You can define you own payload types using short strings. Types starting with '_' are defined by Dear ImGui. +#define IMGUI_PAYLOAD_TYPE_COLOR_3F "_COL3F" // float[3]: Standard type for colors, without alpha. User code may use this type. +#define IMGUI_PAYLOAD_TYPE_COLOR_4F "_COL4F" // float[4]: Standard type for colors. User code may use this type. + +// A primary data type +enum ImGuiDataType_ +{ + ImGuiDataType_S8, // signed char / char (with sensible compilers) + ImGuiDataType_U8, // unsigned char + ImGuiDataType_S16, // short + ImGuiDataType_U16, // unsigned short + ImGuiDataType_S32, // int + ImGuiDataType_U32, // unsigned int + ImGuiDataType_S64, // long long / __int64 + ImGuiDataType_U64, // unsigned long long / unsigned __int64 + ImGuiDataType_Float, // float + ImGuiDataType_Double, // double + ImGuiDataType_Bool, // bool (provided for user convenience, not supported by scalar widgets) + ImGuiDataType_COUNT +}; + +// A cardinal direction +enum ImGuiDir : int +{ + ImGuiDir_None = -1, + ImGuiDir_Left = 0, + ImGuiDir_Right = 1, + ImGuiDir_Up = 2, + ImGuiDir_Down = 3, + ImGuiDir_COUNT +}; + +// A sorting direction +enum ImGuiSortDirection : ImU8 +{ + ImGuiSortDirection_None = 0, + ImGuiSortDirection_Ascending = 1, // Ascending = 0->9, A->Z etc. + ImGuiSortDirection_Descending = 2 // Descending = 9->0, Z->A etc. +}; + +// Since 1.90, defining IMGUI_DISABLE_OBSOLETE_FUNCTIONS automatically defines IMGUI_DISABLE_OBSOLETE_KEYIO as well. +#if defined(IMGUI_DISABLE_OBSOLETE_FUNCTIONS) && !defined(IMGUI_DISABLE_OBSOLETE_KEYIO) +#define IMGUI_DISABLE_OBSOLETE_KEYIO +#endif + +// A key identifier (ImGuiKey_XXX or ImGuiMod_XXX value): can represent Keyboard, Mouse and Gamepad values. +// All our named keys are >= 512. Keys value 0 to 511 are left unused as legacy native/opaque key values (< 1.87). +// Since >= 1.89 we increased typing (went from int to enum), some legacy code may need a cast to ImGuiKey. +// Read details about the 1.87 and 1.89 transition : https://github.com/ocornut/imgui/issues/4921 +// Note that "Keys" related to physical keys and are not the same concept as input "Characters", the later are submitted via io.AddInputCharacter(). +// The keyboard key enum values are named after the keys on a standard US keyboard, and on other keyboard types the keys reported may not match the keycaps. +enum ImGuiKey : int +{ + // Keyboard + ImGuiKey_None = 0, + ImGuiKey_Tab = 512, // == ImGuiKey_NamedKey_BEGIN + ImGuiKey_LeftArrow, + ImGuiKey_RightArrow, + ImGuiKey_UpArrow, + ImGuiKey_DownArrow, + ImGuiKey_PageUp, + ImGuiKey_PageDown, + ImGuiKey_Home, + ImGuiKey_End, + ImGuiKey_Insert, + ImGuiKey_Delete, + ImGuiKey_Backspace, + ImGuiKey_Space, + ImGuiKey_Enter, + ImGuiKey_Escape, + ImGuiKey_LeftCtrl, ImGuiKey_LeftShift, ImGuiKey_LeftAlt, ImGuiKey_LeftSuper, + ImGuiKey_RightCtrl, ImGuiKey_RightShift, ImGuiKey_RightAlt, ImGuiKey_RightSuper, + ImGuiKey_Menu, + ImGuiKey_0, ImGuiKey_1, ImGuiKey_2, ImGuiKey_3, ImGuiKey_4, ImGuiKey_5, ImGuiKey_6, ImGuiKey_7, ImGuiKey_8, ImGuiKey_9, + ImGuiKey_A, ImGuiKey_B, ImGuiKey_C, ImGuiKey_D, ImGuiKey_E, ImGuiKey_F, ImGuiKey_G, ImGuiKey_H, ImGuiKey_I, ImGuiKey_J, + ImGuiKey_K, ImGuiKey_L, ImGuiKey_M, ImGuiKey_N, ImGuiKey_O, ImGuiKey_P, ImGuiKey_Q, ImGuiKey_R, ImGuiKey_S, ImGuiKey_T, + ImGuiKey_U, ImGuiKey_V, ImGuiKey_W, ImGuiKey_X, ImGuiKey_Y, ImGuiKey_Z, + ImGuiKey_F1, ImGuiKey_F2, ImGuiKey_F3, ImGuiKey_F4, ImGuiKey_F5, ImGuiKey_F6, + ImGuiKey_F7, ImGuiKey_F8, ImGuiKey_F9, ImGuiKey_F10, ImGuiKey_F11, ImGuiKey_F12, + ImGuiKey_F13, ImGuiKey_F14, ImGuiKey_F15, ImGuiKey_F16, ImGuiKey_F17, ImGuiKey_F18, + ImGuiKey_F19, ImGuiKey_F20, ImGuiKey_F21, ImGuiKey_F22, ImGuiKey_F23, ImGuiKey_F24, + ImGuiKey_Apostrophe, // ' + ImGuiKey_Comma, // , + ImGuiKey_Minus, // - + ImGuiKey_Period, // . + ImGuiKey_Slash, // / + ImGuiKey_Semicolon, // ; + ImGuiKey_Equal, // = + ImGuiKey_LeftBracket, // [ + ImGuiKey_Backslash, // \ (this text inhibit multiline comment caused by backslash) + ImGuiKey_RightBracket, // ] + ImGuiKey_GraveAccent, // ` + ImGuiKey_CapsLock, + ImGuiKey_ScrollLock, + ImGuiKey_NumLock, + ImGuiKey_PrintScreen, + ImGuiKey_Pause, + ImGuiKey_Keypad0, ImGuiKey_Keypad1, ImGuiKey_Keypad2, ImGuiKey_Keypad3, ImGuiKey_Keypad4, + ImGuiKey_Keypad5, ImGuiKey_Keypad6, ImGuiKey_Keypad7, ImGuiKey_Keypad8, ImGuiKey_Keypad9, + ImGuiKey_KeypadDecimal, + ImGuiKey_KeypadDivide, + ImGuiKey_KeypadMultiply, + ImGuiKey_KeypadSubtract, + ImGuiKey_KeypadAdd, + ImGuiKey_KeypadEnter, + ImGuiKey_KeypadEqual, + ImGuiKey_AppBack, // Available on some keyboard/mouses. Often referred as "Browser Back" + ImGuiKey_AppForward, + + // Gamepad (some of those are analog values, 0.0f to 1.0f) // NAVIGATION ACTION + // (download controller mapping PNG/PSD at http://dearimgui.com/controls_sheets) + ImGuiKey_GamepadStart, // Menu (Xbox) + (Switch) Start/Options (PS) + ImGuiKey_GamepadBack, // View (Xbox) - (Switch) Share (PS) + ImGuiKey_GamepadFaceLeft, // X (Xbox) Y (Switch) Square (PS) // Tap: Toggle Menu. Hold: Windowing mode (Focus/Move/Resize windows) + ImGuiKey_GamepadFaceRight, // B (Xbox) A (Switch) Circle (PS) // Cancel / Close / Exit + ImGuiKey_GamepadFaceUp, // Y (Xbox) X (Switch) Triangle (PS) // Text Input / On-screen Keyboard + ImGuiKey_GamepadFaceDown, // A (Xbox) B (Switch) Cross (PS) // Activate / Open / Toggle / Tweak + ImGuiKey_GamepadDpadLeft, // D-pad Left // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadDpadRight, // D-pad Right // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadDpadUp, // D-pad Up // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadDpadDown, // D-pad Down // Move / Tweak / Resize Window (in Windowing mode) + ImGuiKey_GamepadL1, // L Bumper (Xbox) L (Switch) L1 (PS) // Tweak Slower / Focus Previous (in Windowing mode) + ImGuiKey_GamepadR1, // R Bumper (Xbox) R (Switch) R1 (PS) // Tweak Faster / Focus Next (in Windowing mode) + ImGuiKey_GamepadL2, // L Trig. (Xbox) ZL (Switch) L2 (PS) [Analog] + ImGuiKey_GamepadR2, // R Trig. (Xbox) ZR (Switch) R2 (PS) [Analog] + ImGuiKey_GamepadL3, // L Stick (Xbox) L3 (Switch) L3 (PS) + ImGuiKey_GamepadR3, // R Stick (Xbox) R3 (Switch) R3 (PS) + ImGuiKey_GamepadLStickLeft, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadLStickRight, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadLStickUp, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadLStickDown, // [Analog] // Move Window (in Windowing mode) + ImGuiKey_GamepadRStickLeft, // [Analog] + ImGuiKey_GamepadRStickRight, // [Analog] + ImGuiKey_GamepadRStickUp, // [Analog] + ImGuiKey_GamepadRStickDown, // [Analog] + + // Aliases: Mouse Buttons (auto-submitted from AddMouseButtonEvent() calls) + // - This is mirroring the data also written to io.MouseDown[], io.MouseWheel, in a format allowing them to be accessed via standard key API. + ImGuiKey_MouseLeft, ImGuiKey_MouseRight, ImGuiKey_MouseMiddle, ImGuiKey_MouseX1, ImGuiKey_MouseX2, ImGuiKey_MouseWheelX, ImGuiKey_MouseWheelY, + + // [Internal] Reserved for mod storage + ImGuiKey_ReservedForModCtrl, ImGuiKey_ReservedForModShift, ImGuiKey_ReservedForModAlt, ImGuiKey_ReservedForModSuper, + ImGuiKey_COUNT, + + // Keyboard Modifiers (explicitly submitted by backend via AddKeyEvent() calls) + // - This is mirroring the data also written to io.KeyCtrl, io.KeyShift, io.KeyAlt, io.KeySuper, in a format allowing + // them to be accessed via standard key API, allowing calls such as IsKeyPressed(), IsKeyReleased(), querying duration etc. + // - Code polling every key (e.g. an interface to detect a key press for input mapping) might want to ignore those + // and prefer using the real keys (e.g. ImGuiKey_LeftCtrl, ImGuiKey_RightCtrl instead of ImGuiMod_Ctrl). + // - In theory the value of keyboard modifiers should be roughly equivalent to a logical or of the equivalent left/right keys. + // In practice: it's complicated; mods are often provided from different sources. Keyboard layout, IME, sticky keys and + // backends tend to interfere and break that equivalence. The safer decision is to relay that ambiguity down to the end-user... + // - On macOS, we swap Cmd(Super) and Ctrl keys at the time of the io.AddKeyEvent() call. + ImGuiMod_None = 0, + ImGuiMod_Ctrl = 1 << 12, // Ctrl (non-macOS), Cmd (macOS) + ImGuiMod_Shift = 1 << 13, // Shift + ImGuiMod_Alt = 1 << 14, // Option/Menu + ImGuiMod_Super = 1 << 15, // Windows/Super (non-macOS), Ctrl (macOS) + ImGuiMod_Mask_ = 0xF000, // 4-bits + + // [Internal] Prior to 1.87 we required user to fill io.KeysDown[512] using their own native index + the io.KeyMap[] array. + // We are ditching this method but keeping a legacy path for user code doing e.g. IsKeyPressed(MY_NATIVE_KEY_CODE) + // If you need to iterate all keys (for e.g. an input mapper) you may use ImGuiKey_NamedKey_BEGIN..ImGuiKey_NamedKey_END. + ImGuiKey_NamedKey_BEGIN = 512, + ImGuiKey_NamedKey_END = ImGuiKey_COUNT, + ImGuiKey_NamedKey_COUNT = ImGuiKey_NamedKey_END - ImGuiKey_NamedKey_BEGIN, +#ifdef IMGUI_DISABLE_OBSOLETE_KEYIO + ImGuiKey_KeysData_SIZE = ImGuiKey_NamedKey_COUNT, // Size of KeysData[]: only hold named keys + ImGuiKey_KeysData_OFFSET = ImGuiKey_NamedKey_BEGIN, // Accesses to io.KeysData[] must use (key - ImGuiKey_KeysData_OFFSET) index. +#else + ImGuiKey_KeysData_SIZE = ImGuiKey_COUNT, // Size of KeysData[]: hold legacy 0..512 keycodes + named keys + ImGuiKey_KeysData_OFFSET = 0, // Accesses to io.KeysData[] must use (key - ImGuiKey_KeysData_OFFSET) index. +#endif + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiMod_Shortcut = ImGuiMod_Ctrl, // Removed in 1.90.7, you can now simply use ImGuiMod_Ctrl + ImGuiKey_ModCtrl = ImGuiMod_Ctrl, ImGuiKey_ModShift = ImGuiMod_Shift, ImGuiKey_ModAlt = ImGuiMod_Alt, ImGuiKey_ModSuper = ImGuiMod_Super, // Renamed in 1.89 + //ImGuiKey_KeyPadEnter = ImGuiKey_KeypadEnter, // Renamed in 1.87 +#endif +}; + +// Flags for Shortcut(), SetNextItemShortcut(), +// (and for upcoming extended versions of IsKeyPressed(), IsMouseClicked(), Shortcut(), SetKeyOwner(), SetItemKeyOwner() that are still in imgui_internal.h) +// Don't mistake with ImGuiInputTextFlags! (which is for ImGui::InputText() function) +enum ImGuiInputFlags_ +{ + ImGuiInputFlags_None = 0, + ImGuiInputFlags_Repeat = 1 << 0, // Enable repeat. Return true on successive repeats. Default for legacy IsKeyPressed(). NOT Default for legacy IsMouseClicked(). MUST BE == 1. + + // Flags for Shortcut(), SetNextItemShortcut() + // - Routing policies: RouteGlobal+OverActive >> RouteActive or RouteFocused (if owner is active item) >> RouteGlobal+OverFocused >> RouteFocused (if in focused window stack) >> RouteGlobal. + // - Default policy is RouteFocused. Can select only 1 policy among all available. + ImGuiInputFlags_RouteActive = 1 << 10, // Route to active item only. + ImGuiInputFlags_RouteFocused = 1 << 11, // Route to windows in the focus stack (DEFAULT). Deep-most focused window takes inputs. Active item takes inputs over deep-most focused window. + ImGuiInputFlags_RouteGlobal = 1 << 12, // Global route (unless a focused window or active item registered the route). + ImGuiInputFlags_RouteAlways = 1 << 13, // Do not register route, poll keys directly. + // - Routing options + ImGuiInputFlags_RouteOverFocused = 1 << 14, // Option: global route: higher priority than focused route (unless active item in focused route). + ImGuiInputFlags_RouteOverActive = 1 << 15, // Option: global route: higher priority than active item. Unlikely you need to use that: will interfere with every active items, e.g. CTRL+A registered by InputText will be overridden by this. May not be fully honored as user/internal code is likely to always assume they can access keys when active. + ImGuiInputFlags_RouteUnlessBgFocused = 1 << 16, // Option: global route: will not be applied if underlying background/void is focused (== no Dear ImGui windows are focused). Useful for overlay applications. + ImGuiInputFlags_RouteFromRootWindow = 1 << 17, // Option: route evaluated from the point of view of root window rather than current window. + + // Flags for SetNextItemShortcut() + ImGuiInputFlags_Tooltip = 1 << 18, // Automatically display a tooltip when hovering item [BETA] Unsure of right api (opt-in/opt-out) +}; + +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO +// OBSOLETED in 1.88 (from July 2022): ImGuiNavInput and io.NavInputs[]. +// Official backends between 1.60 and 1.86: will keep working and feed gamepad inputs as long as IMGUI_DISABLE_OBSOLETE_KEYIO is not set. +// Custom backends: feed gamepad inputs via io.AddKeyEvent() and ImGuiKey_GamepadXXX enums. +enum ImGuiNavInput +{ + ImGuiNavInput_Activate, ImGuiNavInput_Cancel, ImGuiNavInput_Input, ImGuiNavInput_Menu, ImGuiNavInput_DpadLeft, ImGuiNavInput_DpadRight, ImGuiNavInput_DpadUp, ImGuiNavInput_DpadDown, + ImGuiNavInput_LStickLeft, ImGuiNavInput_LStickRight, ImGuiNavInput_LStickUp, ImGuiNavInput_LStickDown, ImGuiNavInput_FocusPrev, ImGuiNavInput_FocusNext, ImGuiNavInput_TweakSlow, ImGuiNavInput_TweakFast, + ImGuiNavInput_COUNT, +}; +#endif + +// Configuration flags stored in io.ConfigFlags. Set by user/application. +enum ImGuiConfigFlags_ +{ + ImGuiConfigFlags_None = 0, + ImGuiConfigFlags_NavEnableKeyboard = 1 << 0, // Master keyboard navigation enable flag. Enable full Tabbing + directional arrows + space/enter to activate. + ImGuiConfigFlags_NavEnableGamepad = 1 << 1, // Master gamepad navigation enable flag. Backend also needs to set ImGuiBackendFlags_HasGamepad. + ImGuiConfigFlags_NavEnableSetMousePos = 1 << 2, // Instruct navigation to move the mouse cursor. May be useful on TV/console systems where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantSetMousePos=true. If enabled you MUST honor io.WantSetMousePos requests in your backend, otherwise ImGui will react as if the mouse is jumping around back and forth. + ImGuiConfigFlags_NavNoCaptureKeyboard = 1 << 3, // Instruct navigation to not set the io.WantCaptureKeyboard flag when io.NavActive is set. + ImGuiConfigFlags_NoMouse = 1 << 4, // Instruct dear imgui to disable mouse inputs and interactions. + ImGuiConfigFlags_NoMouseCursorChange = 1 << 5, // Instruct backend to not alter mouse cursor shape and visibility. Use if the backend cursor changes are interfering with yours and you don't want to use SetMouseCursor() to change mouse cursor. You may want to honor requests from imgui by reading GetMouseCursor() yourself instead. + ImGuiConfigFlags_NoKeyboard = 1 << 6, // Instruct dear imgui to disable keyboard inputs and interactions. This is done by ignoring keyboard events and clearing existing states. + + // User storage (to allow your backend/engine to communicate to code that may be shared between multiple projects. Those flags are NOT used by core Dear ImGui) + ImGuiConfigFlags_IsSRGB = 1 << 20, // Application is SRGB-aware. + ImGuiConfigFlags_IsTouchScreen = 1 << 21, // Application is using a touch screen instead of a mouse. +}; + +// Backend capabilities flags stored in io.BackendFlags. Set by imgui_impl_xxx or custom backend. +enum ImGuiBackendFlags_ +{ + ImGuiBackendFlags_None = 0, + ImGuiBackendFlags_HasGamepad = 1 << 0, // Backend Platform supports gamepad and currently has one connected. + ImGuiBackendFlags_HasMouseCursors = 1 << 1, // Backend Platform supports honoring GetMouseCursor() value to change the OS cursor shape. + ImGuiBackendFlags_HasSetMousePos = 1 << 2, // Backend Platform supports io.WantSetMousePos requests to reposition the OS mouse position (only used if ImGuiConfigFlags_NavEnableSetMousePos is set). + ImGuiBackendFlags_RendererHasVtxOffset = 1 << 3, // Backend Renderer supports ImDrawCmd::VtxOffset. This enables output of large meshes (64K+ vertices) while still using 16-bit indices. +}; + +// Enumeration for PushStyleColor() / PopStyleColor() +enum ImGuiCol_ +{ + ImGuiCol_Text, + ImGuiCol_TextDisabled, + ImGuiCol_WindowBg, // Background of normal windows + ImGuiCol_ChildBg, // Background of child windows + ImGuiCol_PopupBg, // Background of popups, menus, tooltips windows + ImGuiCol_Border, + ImGuiCol_BorderShadow, + ImGuiCol_FrameBg, // Background of checkbox, radio button, plot, slider, text input + ImGuiCol_FrameBgHovered, + ImGuiCol_FrameBgActive, + ImGuiCol_TitleBg, // Title bar + ImGuiCol_TitleBgActive, // Title bar when focused + ImGuiCol_TitleBgCollapsed, // Title bar when collapsed + ImGuiCol_MenuBarBg, + ImGuiCol_ScrollbarBg, + ImGuiCol_ScrollbarGrab, + ImGuiCol_ScrollbarGrabHovered, + ImGuiCol_ScrollbarGrabActive, + ImGuiCol_CheckMark, // Checkbox tick and RadioButton circle + ImGuiCol_SliderGrab, + ImGuiCol_SliderGrabActive, + ImGuiCol_Button, + ImGuiCol_ButtonHovered, + ImGuiCol_ButtonActive, + ImGuiCol_Header, // Header* colors are used for CollapsingHeader, TreeNode, Selectable, MenuItem + ImGuiCol_HeaderHovered, + ImGuiCol_HeaderActive, + ImGuiCol_Separator, + ImGuiCol_SeparatorHovered, + ImGuiCol_SeparatorActive, + ImGuiCol_ResizeGrip, // Resize grip in lower-right and lower-left corners of windows. + ImGuiCol_ResizeGripHovered, + ImGuiCol_ResizeGripActive, + ImGuiCol_TabHovered, // Tab background, when hovered + ImGuiCol_Tab, // Tab background, when tab-bar is focused & tab is unselected + ImGuiCol_TabSelected, // Tab background, when tab-bar is focused & tab is selected + ImGuiCol_TabSelectedOverline, // Tab horizontal overline, when tab-bar is focused & tab is selected + ImGuiCol_TabDimmed, // Tab background, when tab-bar is unfocused & tab is unselected + ImGuiCol_TabDimmedSelected, // Tab background, when tab-bar is unfocused & tab is selected + ImGuiCol_TabDimmedSelectedOverline,//..horizontal overline, when tab-bar is unfocused & tab is selected + ImGuiCol_PlotLines, + ImGuiCol_PlotLinesHovered, + ImGuiCol_PlotHistogram, + ImGuiCol_PlotHistogramHovered, + ImGuiCol_TableHeaderBg, // Table header background + ImGuiCol_TableBorderStrong, // Table outer and header borders (prefer using Alpha=1.0 here) + ImGuiCol_TableBorderLight, // Table inner borders (prefer using Alpha=1.0 here) + ImGuiCol_TableRowBg, // Table row background (even rows) + ImGuiCol_TableRowBgAlt, // Table row background (odd rows) + ImGuiCol_TextLink, // Hyperlink color + ImGuiCol_TextSelectedBg, + ImGuiCol_DragDropTarget, // Rectangle highlighting a drop target + ImGuiCol_NavHighlight, // Gamepad/keyboard: current highlighted item + ImGuiCol_NavWindowingHighlight, // Highlight window when using CTRL+TAB + ImGuiCol_NavWindowingDimBg, // Darken/colorize entire screen behind the CTRL+TAB window list, when active + ImGuiCol_ModalWindowDimBg, // Darken/colorize entire screen behind a modal window, when one is active + ImGuiCol_WindowShadow, // Window shadows + ImGuiCol_COUNT, + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + ImGuiCol_TabActive = ImGuiCol_TabSelected, // [renamed in 1.90.9] + ImGuiCol_TabUnfocused = ImGuiCol_TabDimmed, // [renamed in 1.90.9] + ImGuiCol_TabUnfocusedActive = ImGuiCol_TabDimmedSelected, // [renamed in 1.90.9] +#endif +}; + +// Enumeration for PushStyleVar() / PopStyleVar() to temporarily modify the ImGuiStyle structure. +// - The enum only refers to fields of ImGuiStyle which makes sense to be pushed/popped inside UI code. +// During initialization or between frames, feel free to just poke into ImGuiStyle directly. +// - Tip: Use your programming IDE navigation facilities on the names in the _second column_ below to find the actual members and their description. +// - In Visual Studio: CTRL+comma ("Edit.GoToAll") can follow symbols inside comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// - In Visual Studio w/ Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. +// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments. +// - When changing this enum, you need to update the associated internal table GStyleVarInfo[] accordingly. This is where we link enum values to members offset/type. +enum ImGuiStyleVar_ +{ + // Enum name -------------------------- // Member in ImGuiStyle structure (see ImGuiStyle for descriptions) + ImGuiStyleVar_Alpha, // float Alpha + ImGuiStyleVar_DisabledAlpha, // float DisabledAlpha + ImGuiStyleVar_WindowPadding, // ImVec2 WindowPadding + ImGuiStyleVar_WindowRounding, // float WindowRounding + ImGuiStyleVar_WindowBorderSize, // float WindowBorderSize + ImGuiStyleVar_WindowMinSize, // ImVec2 WindowMinSize + ImGuiStyleVar_WindowTitleAlign, // ImVec2 WindowTitleAlign + ImGuiStyleVar_ChildRounding, // float ChildRounding + ImGuiStyleVar_ChildBorderSize, // float ChildBorderSize + ImGuiStyleVar_PopupRounding, // float PopupRounding + ImGuiStyleVar_PopupBorderSize, // float PopupBorderSize + ImGuiStyleVar_FramePadding, // ImVec2 FramePadding + ImGuiStyleVar_FrameRounding, // float FrameRounding + ImGuiStyleVar_FrameBorderSize, // float FrameBorderSize + ImGuiStyleVar_ItemSpacing, // ImVec2 ItemSpacing + ImGuiStyleVar_ItemInnerSpacing, // ImVec2 ItemInnerSpacing + ImGuiStyleVar_IndentSpacing, // float IndentSpacing + ImGuiStyleVar_CellPadding, // ImVec2 CellPadding + ImGuiStyleVar_ScrollbarSize, // float ScrollbarSize + ImGuiStyleVar_ScrollbarRounding, // float ScrollbarRounding + ImGuiStyleVar_GrabMinSize, // float GrabMinSize + ImGuiStyleVar_GrabRounding, // float GrabRounding + ImGuiStyleVar_TabRounding, // float TabRounding + ImGuiStyleVar_TabBorderSize, // float TabBorderSize + ImGuiStyleVar_TabBarBorderSize, // float TabBarBorderSize + ImGuiStyleVar_TabBarOverlineSize, // float TabBarOverlineSize + ImGuiStyleVar_TableAngledHeadersAngle, // float TableAngledHeadersAngle + ImGuiStyleVar_TableAngledHeadersTextAlign,// ImVec2 TableAngledHeadersTextAlign + ImGuiStyleVar_ButtonTextAlign, // ImVec2 ButtonTextAlign + ImGuiStyleVar_SelectableTextAlign, // ImVec2 SelectableTextAlign + ImGuiStyleVar_SeparatorTextBorderSize, // float SeparatorTextBorderSize + ImGuiStyleVar_SeparatorTextAlign, // ImVec2 SeparatorTextAlign + ImGuiStyleVar_SeparatorTextPadding, // ImVec2 SeparatorTextPadding + ImGuiStyleVar_COUNT +}; + +// Flags for InvisibleButton() [extended in imgui_internal.h] +enum ImGuiButtonFlags_ +{ + ImGuiButtonFlags_None = 0, + ImGuiButtonFlags_MouseButtonLeft = 1 << 0, // React on left mouse button (default) + ImGuiButtonFlags_MouseButtonRight = 1 << 1, // React on right mouse button + ImGuiButtonFlags_MouseButtonMiddle = 1 << 2, // React on center mouse button + ImGuiButtonFlags_MouseButtonMask_ = ImGuiButtonFlags_MouseButtonLeft | ImGuiButtonFlags_MouseButtonRight | ImGuiButtonFlags_MouseButtonMiddle, // [Internal] + //ImGuiButtonFlags_MouseButtonDefault_ = ImGuiButtonFlags_MouseButtonLeft, +}; + +// Flags for ColorEdit3() / ColorEdit4() / ColorPicker3() / ColorPicker4() / ColorButton() +enum ImGuiColorEditFlags_ +{ + ImGuiColorEditFlags_None = 0, + ImGuiColorEditFlags_NoAlpha = 1 << 1, // // ColorEdit, ColorPicker, ColorButton: ignore Alpha component (will only read 3 components from the input pointer). + ImGuiColorEditFlags_NoPicker = 1 << 2, // // ColorEdit: disable picker when clicking on color square. + ImGuiColorEditFlags_NoOptions = 1 << 3, // // ColorEdit: disable toggling options menu when right-clicking on inputs/small preview. + ImGuiColorEditFlags_NoSmallPreview = 1 << 4, // // ColorEdit, ColorPicker: disable color square preview next to the inputs. (e.g. to show only the inputs) + ImGuiColorEditFlags_NoInputs = 1 << 5, // // ColorEdit, ColorPicker: disable inputs sliders/text widgets (e.g. to show only the small preview color square). + ImGuiColorEditFlags_NoTooltip = 1 << 6, // // ColorEdit, ColorPicker, ColorButton: disable tooltip when hovering the preview. + ImGuiColorEditFlags_NoLabel = 1 << 7, // // ColorEdit, ColorPicker: disable display of inline text label (the label is still forwarded to the tooltip and picker). + ImGuiColorEditFlags_NoSidePreview = 1 << 8, // // ColorPicker: disable bigger color preview on right side of the picker, use small color square preview instead. + ImGuiColorEditFlags_NoDragDrop = 1 << 9, // // ColorEdit: disable drag and drop target. ColorButton: disable drag and drop source. + ImGuiColorEditFlags_NoBorder = 1 << 10, // // ColorButton: disable border (which is enforced by default) + + // User Options (right-click on widget to change some of them). + ImGuiColorEditFlags_AlphaBar = 1 << 16, // // ColorEdit, ColorPicker: show vertical alpha bar/gradient in picker. + ImGuiColorEditFlags_AlphaPreview = 1 << 17, // // ColorEdit, ColorPicker, ColorButton: display preview as a transparent color over a checkerboard, instead of opaque. + ImGuiColorEditFlags_AlphaPreviewHalf= 1 << 18, // // ColorEdit, ColorPicker, ColorButton: display half opaque / half checkerboard, instead of opaque. + ImGuiColorEditFlags_HDR = 1 << 19, // // (WIP) ColorEdit: Currently only disable 0.0f..1.0f limits in RGBA edition (note: you probably want to use ImGuiColorEditFlags_Float flag as well). + ImGuiColorEditFlags_DisplayRGB = 1 << 20, // [Display] // ColorEdit: override _display_ type among RGB/HSV/Hex. ColorPicker: select any combination using one or more of RGB/HSV/Hex. + ImGuiColorEditFlags_DisplayHSV = 1 << 21, // [Display] // " + ImGuiColorEditFlags_DisplayHex = 1 << 22, // [Display] // " + ImGuiColorEditFlags_Uint8 = 1 << 23, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0..255. + ImGuiColorEditFlags_Float = 1 << 24, // [DataType] // ColorEdit, ColorPicker, ColorButton: _display_ values formatted as 0.0f..1.0f floats instead of 0..255 integers. No round-trip of value via integers. + ImGuiColorEditFlags_PickerHueBar = 1 << 25, // [Picker] // ColorPicker: bar for Hue, rectangle for Sat/Value. + ImGuiColorEditFlags_PickerHueWheel = 1 << 26, // [Picker] // ColorPicker: wheel for Hue, triangle for Sat/Value. + ImGuiColorEditFlags_InputRGB = 1 << 27, // [Input] // ColorEdit, ColorPicker: input and output data in RGB format. + ImGuiColorEditFlags_InputHSV = 1 << 28, // [Input] // ColorEdit, ColorPicker: input and output data in HSV format. + + // Defaults Options. You can set application defaults using SetColorEditOptions(). The intent is that you probably don't want to + // override them in most of your calls. Let the user choose via the option menu and/or call SetColorEditOptions() once during startup. + ImGuiColorEditFlags_DefaultOptions_ = ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_PickerHueBar, + + // [Internal] Masks + ImGuiColorEditFlags_DisplayMask_ = ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_DisplayHSV | ImGuiColorEditFlags_DisplayHex, + ImGuiColorEditFlags_DataTypeMask_ = ImGuiColorEditFlags_Uint8 | ImGuiColorEditFlags_Float, + ImGuiColorEditFlags_PickerMask_ = ImGuiColorEditFlags_PickerHueWheel | ImGuiColorEditFlags_PickerHueBar, + ImGuiColorEditFlags_InputMask_ = ImGuiColorEditFlags_InputRGB | ImGuiColorEditFlags_InputHSV, + + // Obsolete names + //ImGuiColorEditFlags_RGB = ImGuiColorEditFlags_DisplayRGB, ImGuiColorEditFlags_HSV = ImGuiColorEditFlags_DisplayHSV, ImGuiColorEditFlags_HEX = ImGuiColorEditFlags_DisplayHex // [renamed in 1.69] +}; + +// Flags for DragFloat(), DragInt(), SliderFloat(), SliderInt() etc. +// We use the same sets of flags for DragXXX() and SliderXXX() functions as the features are the same and it makes it easier to swap them. +// (Those are per-item flags. There are shared flags in ImGuiIO: io.ConfigDragClickToInputText) +enum ImGuiSliderFlags_ +{ + ImGuiSliderFlags_None = 0, + ImGuiSliderFlags_AlwaysClamp = 1 << 4, // Clamp value to min/max bounds when input manually with CTRL+Click. By default CTRL+Click allows going out of bounds. + ImGuiSliderFlags_Logarithmic = 1 << 5, // Make the widget logarithmic (linear otherwise). Consider using ImGuiSliderFlags_NoRoundToFormat with this if using a format-string with small amount of digits. + ImGuiSliderFlags_NoRoundToFormat = 1 << 6, // Disable rounding underlying value to match precision of the display format string (e.g. %.3f values are rounded to those 3 digits). + ImGuiSliderFlags_NoInput = 1 << 7, // Disable CTRL+Click or Enter key allowing to input text directly into the widget. + ImGuiSliderFlags_WrapAround = 1 << 8, // Enable wrapping around from max to min and from min to max (only supported by DragXXX() functions for now. + ImGuiSliderFlags_InvalidMask_ = 0x7000000F, // [Internal] We treat using those bits as being potentially a 'float power' argument from the previous API that has got miscast to this enum, and will trigger an assert if needed. + + // Obsolete names + //ImGuiSliderFlags_ClampOnInput = ImGuiSliderFlags_AlwaysClamp, // [renamed in 1.79] +}; + +// Identify a mouse button. +// Those values are guaranteed to be stable and we frequently use 0/1 directly. Named enums provided for convenience. +enum ImGuiMouseButton_ +{ + ImGuiMouseButton_Left = 0, + ImGuiMouseButton_Right = 1, + ImGuiMouseButton_Middle = 2, + ImGuiMouseButton_COUNT = 5 +}; + +// Enumeration for GetMouseCursor() +// User code may request backend to display given cursor by calling SetMouseCursor(), which is why we have some cursors that are marked unused here +enum ImGuiMouseCursor_ +{ + ImGuiMouseCursor_None = -1, + ImGuiMouseCursor_Arrow = 0, + ImGuiMouseCursor_TextInput, // When hovering over InputText, etc. + ImGuiMouseCursor_ResizeAll, // (Unused by Dear ImGui functions) + ImGuiMouseCursor_ResizeNS, // When hovering over a horizontal border + ImGuiMouseCursor_ResizeEW, // When hovering over a vertical border or a column + ImGuiMouseCursor_ResizeNESW, // When hovering over the bottom-left corner of a window + ImGuiMouseCursor_ResizeNWSE, // When hovering over the bottom-right corner of a window + ImGuiMouseCursor_Hand, // (Unused by Dear ImGui functions. Use for e.g. hyperlinks) + ImGuiMouseCursor_NotAllowed, // When hovering something with disallowed interaction. Usually a crossed circle. + ImGuiMouseCursor_COUNT +}; + +// Enumeration for AddMouseSourceEvent() actual source of Mouse Input data. +// Historically we use "Mouse" terminology everywhere to indicate pointer data, e.g. MousePos, IsMousePressed(), io.AddMousePosEvent() +// But that "Mouse" data can come from different source which occasionally may be useful for application to know about. +// You can submit a change of pointer type using io.AddMouseSourceEvent(). +enum ImGuiMouseSource : int +{ + ImGuiMouseSource_Mouse = 0, // Input is coming from an actual mouse. + ImGuiMouseSource_TouchScreen, // Input is coming from a touch screen (no hovering prior to initial press, less precise initial press aiming, dual-axis wheeling possible). + ImGuiMouseSource_Pen, // Input is coming from a pressure/magnetic pen (often used in conjunction with high-sampling rates). + ImGuiMouseSource_COUNT +}; + +// Enumeration for ImGui::SetNextWindow***(), SetWindow***(), SetNextItem***() functions +// Represent a condition. +// Important: Treat as a regular enum! Do NOT combine multiple values using binary operators! All the functions above treat 0 as a shortcut to ImGuiCond_Always. +enum ImGuiCond_ +{ + ImGuiCond_None = 0, // No condition (always set the variable), same as _Always + ImGuiCond_Always = 1 << 0, // No condition (always set the variable), same as _None + ImGuiCond_Once = 1 << 1, // Set the variable once per runtime session (only the first call will succeed) + ImGuiCond_FirstUseEver = 1 << 2, // Set the variable if the object/window has no persistently saved data (no entry in .ini file) + ImGuiCond_Appearing = 1 << 3, // Set the variable if the object/window is appearing after being hidden/inactive (or the first time) +}; + +//----------------------------------------------------------------------------- +// [SECTION] Tables API flags and structures (ImGuiTableFlags, ImGuiTableColumnFlags, ImGuiTableRowFlags, ImGuiTableBgTarget, ImGuiTableSortSpecs, ImGuiTableColumnSortSpecs) +//----------------------------------------------------------------------------- + +// Flags for ImGui::BeginTable() +// - Important! Sizing policies have complex and subtle side effects, much more so than you would expect. +// Read comments/demos carefully + experiment with live demos to get acquainted with them. +// - The DEFAULT sizing policies are: +// - Default to ImGuiTableFlags_SizingFixedFit if ScrollX is on, or if host window has ImGuiWindowFlags_AlwaysAutoResize. +// - Default to ImGuiTableFlags_SizingStretchSame if ScrollX is off. +// - When ScrollX is off: +// - Table defaults to ImGuiTableFlags_SizingStretchSame -> all Columns defaults to ImGuiTableColumnFlags_WidthStretch with same weight. +// - Columns sizing policy allowed: Stretch (default), Fixed/Auto. +// - Fixed Columns (if any) will generally obtain their requested width (unless the table cannot fit them all). +// - Stretch Columns will share the remaining width according to their respective weight. +// - Mixed Fixed/Stretch columns is possible but has various side-effects on resizing behaviors. +// The typical use of mixing sizing policies is: any number of LEADING Fixed columns, followed by one or two TRAILING Stretch columns. +// (this is because the visible order of columns have subtle but necessary effects on how they react to manual resizing). +// - When ScrollX is on: +// - Table defaults to ImGuiTableFlags_SizingFixedFit -> all Columns defaults to ImGuiTableColumnFlags_WidthFixed +// - Columns sizing policy allowed: Fixed/Auto mostly. +// - Fixed Columns can be enlarged as needed. Table will show a horizontal scrollbar if needed. +// - When using auto-resizing (non-resizable) fixed columns, querying the content width to use item right-alignment e.g. SetNextItemWidth(-FLT_MIN) doesn't make sense, would create a feedback loop. +// - Using Stretch columns OFTEN DOES NOT MAKE SENSE if ScrollX is on, UNLESS you have specified a value for 'inner_width' in BeginTable(). +// If you specify a value for 'inner_width' then effectively the scrolling space is known and Stretch or mixed Fixed/Stretch columns become meaningful again. +// - Read on documentation at the top of imgui_tables.cpp for details. +enum ImGuiTableFlags_ +{ + // Features + ImGuiTableFlags_None = 0, + ImGuiTableFlags_Resizable = 1 << 0, // Enable resizing columns. + ImGuiTableFlags_Reorderable = 1 << 1, // Enable reordering columns in header row (need calling TableSetupColumn() + TableHeadersRow() to display headers) + ImGuiTableFlags_Hideable = 1 << 2, // Enable hiding/disabling columns in context menu. + ImGuiTableFlags_Sortable = 1 << 3, // Enable sorting. Call TableGetSortSpecs() to obtain sort specs. Also see ImGuiTableFlags_SortMulti and ImGuiTableFlags_SortTristate. + ImGuiTableFlags_NoSavedSettings = 1 << 4, // Disable persisting columns order, width and sort settings in the .ini file. + ImGuiTableFlags_ContextMenuInBody = 1 << 5, // Right-click on columns body/contents will display table context menu. By default it is available in TableHeadersRow(). + // Decorations + ImGuiTableFlags_RowBg = 1 << 6, // Set each RowBg color with ImGuiCol_TableRowBg or ImGuiCol_TableRowBgAlt (equivalent of calling TableSetBgColor with ImGuiTableBgFlags_RowBg0 on each row manually) + ImGuiTableFlags_BordersInnerH = 1 << 7, // Draw horizontal borders between rows. + ImGuiTableFlags_BordersOuterH = 1 << 8, // Draw horizontal borders at the top and bottom. + ImGuiTableFlags_BordersInnerV = 1 << 9, // Draw vertical borders between columns. + ImGuiTableFlags_BordersOuterV = 1 << 10, // Draw vertical borders on the left and right sides. + ImGuiTableFlags_BordersH = ImGuiTableFlags_BordersInnerH | ImGuiTableFlags_BordersOuterH, // Draw horizontal borders. + ImGuiTableFlags_BordersV = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersOuterV, // Draw vertical borders. + ImGuiTableFlags_BordersInner = ImGuiTableFlags_BordersInnerV | ImGuiTableFlags_BordersInnerH, // Draw inner borders. + ImGuiTableFlags_BordersOuter = ImGuiTableFlags_BordersOuterV | ImGuiTableFlags_BordersOuterH, // Draw outer borders. + ImGuiTableFlags_Borders = ImGuiTableFlags_BordersInner | ImGuiTableFlags_BordersOuter, // Draw all borders. + ImGuiTableFlags_NoBordersInBody = 1 << 11, // [ALPHA] Disable vertical borders in columns Body (borders will always appear in Headers). -> May move to style + ImGuiTableFlags_NoBordersInBodyUntilResize = 1 << 12, // [ALPHA] Disable vertical borders in columns Body until hovered for resize (borders will always appear in Headers). -> May move to style + // Sizing Policy (read above for defaults) + ImGuiTableFlags_SizingFixedFit = 1 << 13, // Columns default to _WidthFixed or _WidthAuto (if resizable or not resizable), matching contents width. + ImGuiTableFlags_SizingFixedSame = 2 << 13, // Columns default to _WidthFixed or _WidthAuto (if resizable or not resizable), matching the maximum contents width of all columns. Implicitly enable ImGuiTableFlags_NoKeepColumnsVisible. + ImGuiTableFlags_SizingStretchProp = 3 << 13, // Columns default to _WidthStretch with default weights proportional to each columns contents widths. + ImGuiTableFlags_SizingStretchSame = 4 << 13, // Columns default to _WidthStretch with default weights all equal, unless overridden by TableSetupColumn(). + // Sizing Extra Options + ImGuiTableFlags_NoHostExtendX = 1 << 16, // Make outer width auto-fit to columns, overriding outer_size.x value. Only available when ScrollX/ScrollY are disabled and Stretch columns are not used. + ImGuiTableFlags_NoHostExtendY = 1 << 17, // Make outer height stop exactly at outer_size.y (prevent auto-extending table past the limit). Only available when ScrollX/ScrollY are disabled. Data below the limit will be clipped and not visible. + ImGuiTableFlags_NoKeepColumnsVisible = 1 << 18, // Disable keeping column always minimally visible when ScrollX is off and table gets too small. Not recommended if columns are resizable. + ImGuiTableFlags_PreciseWidths = 1 << 19, // Disable distributing remainder width to stretched columns (width allocation on a 100-wide table with 3 columns: Without this flag: 33,33,34. With this flag: 33,33,33). With larger number of columns, resizing will appear to be less smooth. + // Clipping + ImGuiTableFlags_NoClip = 1 << 20, // Disable clipping rectangle for every individual columns (reduce draw command count, items will be able to overflow into other columns). Generally incompatible with TableSetupScrollFreeze(). + // Padding + ImGuiTableFlags_PadOuterX = 1 << 21, // Default if BordersOuterV is on. Enable outermost padding. Generally desirable if you have headers. + ImGuiTableFlags_NoPadOuterX = 1 << 22, // Default if BordersOuterV is off. Disable outermost padding. + ImGuiTableFlags_NoPadInnerX = 1 << 23, // Disable inner padding between columns (double inner padding if BordersOuterV is on, single inner padding if BordersOuterV is off). + // Scrolling + ImGuiTableFlags_ScrollX = 1 << 24, // Enable horizontal scrolling. Require 'outer_size' parameter of BeginTable() to specify the container size. Changes default sizing policy. Because this creates a child window, ScrollY is currently generally recommended when using ScrollX. + ImGuiTableFlags_ScrollY = 1 << 25, // Enable vertical scrolling. Require 'outer_size' parameter of BeginTable() to specify the container size. + // Sorting + ImGuiTableFlags_SortMulti = 1 << 26, // Hold shift when clicking headers to sort on multiple column. TableGetSortSpecs() may return specs where (SpecsCount > 1). + ImGuiTableFlags_SortTristate = 1 << 27, // Allow no sorting, disable default sorting. TableGetSortSpecs() may return specs where (SpecsCount == 0). + // Miscellaneous + ImGuiTableFlags_HighlightHoveredColumn = 1 << 28, // Highlight column headers when hovered (may evolve into a fuller highlight) + + // [Internal] Combinations and masks + ImGuiTableFlags_SizingMask_ = ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_SizingFixedSame | ImGuiTableFlags_SizingStretchProp | ImGuiTableFlags_SizingStretchSame, +}; + +// Flags for ImGui::TableSetupColumn() +enum ImGuiTableColumnFlags_ +{ + // Input configuration flags + ImGuiTableColumnFlags_None = 0, + ImGuiTableColumnFlags_Disabled = 1 << 0, // Overriding/master disable flag: hide column, won't show in context menu (unlike calling TableSetColumnEnabled() which manipulates the user accessible state) + ImGuiTableColumnFlags_DefaultHide = 1 << 1, // Default as a hidden/disabled column. + ImGuiTableColumnFlags_DefaultSort = 1 << 2, // Default as a sorting column. + ImGuiTableColumnFlags_WidthStretch = 1 << 3, // Column will stretch. Preferable with horizontal scrolling disabled (default if table sizing policy is _SizingStretchSame or _SizingStretchProp). + ImGuiTableColumnFlags_WidthFixed = 1 << 4, // Column will not stretch. Preferable with horizontal scrolling enabled (default if table sizing policy is _SizingFixedFit and table is resizable). + ImGuiTableColumnFlags_NoResize = 1 << 5, // Disable manual resizing. + ImGuiTableColumnFlags_NoReorder = 1 << 6, // Disable manual reordering this column, this will also prevent other columns from crossing over this column. + ImGuiTableColumnFlags_NoHide = 1 << 7, // Disable ability to hide/disable this column. + ImGuiTableColumnFlags_NoClip = 1 << 8, // Disable clipping for this column (all NoClip columns will render in a same draw command). + ImGuiTableColumnFlags_NoSort = 1 << 9, // Disable ability to sort on this field (even if ImGuiTableFlags_Sortable is set on the table). + ImGuiTableColumnFlags_NoSortAscending = 1 << 10, // Disable ability to sort in the ascending direction. + ImGuiTableColumnFlags_NoSortDescending = 1 << 11, // Disable ability to sort in the descending direction. + ImGuiTableColumnFlags_NoHeaderLabel = 1 << 12, // TableHeadersRow() will submit an empty label for this column. Convenient for some small columns. Name will still appear in context menu or in angled headers. You may append into this cell by calling TableSetColumnIndex() right after the TableHeadersRow() call. + ImGuiTableColumnFlags_NoHeaderWidth = 1 << 13, // Disable header text width contribution to automatic column width. + ImGuiTableColumnFlags_PreferSortAscending = 1 << 14, // Make the initial sort direction Ascending when first sorting on this column (default). + ImGuiTableColumnFlags_PreferSortDescending = 1 << 15, // Make the initial sort direction Descending when first sorting on this column. + ImGuiTableColumnFlags_IndentEnable = 1 << 16, // Use current Indent value when entering cell (default for column 0). + ImGuiTableColumnFlags_IndentDisable = 1 << 17, // Ignore current Indent value when entering cell (default for columns > 0). Indentation changes _within_ the cell will still be honored. + ImGuiTableColumnFlags_AngledHeader = 1 << 18, // TableHeadersRow() will submit an angled header row for this column. Note this will add an extra row. + + // Output status flags, read-only via TableGetColumnFlags() + ImGuiTableColumnFlags_IsEnabled = 1 << 24, // Status: is enabled == not hidden by user/api (referred to as "Hide" in _DefaultHide and _NoHide) flags. + ImGuiTableColumnFlags_IsVisible = 1 << 25, // Status: is visible == is enabled AND not clipped by scrolling. + ImGuiTableColumnFlags_IsSorted = 1 << 26, // Status: is currently part of the sort specs + ImGuiTableColumnFlags_IsHovered = 1 << 27, // Status: is hovered by mouse + + // [Internal] Combinations and masks + ImGuiTableColumnFlags_WidthMask_ = ImGuiTableColumnFlags_WidthStretch | ImGuiTableColumnFlags_WidthFixed, + ImGuiTableColumnFlags_IndentMask_ = ImGuiTableColumnFlags_IndentEnable | ImGuiTableColumnFlags_IndentDisable, + ImGuiTableColumnFlags_StatusMask_ = ImGuiTableColumnFlags_IsEnabled | ImGuiTableColumnFlags_IsVisible | ImGuiTableColumnFlags_IsSorted | ImGuiTableColumnFlags_IsHovered, + ImGuiTableColumnFlags_NoDirectResize_ = 1 << 30, // [Internal] Disable user resizing this column directly (it may however we resized indirectly from its left edge) +}; + +// Flags for ImGui::TableNextRow() +enum ImGuiTableRowFlags_ +{ + ImGuiTableRowFlags_None = 0, + ImGuiTableRowFlags_Headers = 1 << 0, // Identify header row (set default background color + width of its contents accounted differently for auto column width) +}; + +// Enum for ImGui::TableSetBgColor() +// Background colors are rendering in 3 layers: +// - Layer 0: draw with RowBg0 color if set, otherwise draw with ColumnBg0 if set. +// - Layer 1: draw with RowBg1 color if set, otherwise draw with ColumnBg1 if set. +// - Layer 2: draw with CellBg color if set. +// The purpose of the two row/columns layers is to let you decide if a background color change should override or blend with the existing color. +// When using ImGuiTableFlags_RowBg on the table, each row has the RowBg0 color automatically set for odd/even rows. +// If you set the color of RowBg0 target, your color will override the existing RowBg0 color. +// If you set the color of RowBg1 or ColumnBg1 target, your color will blend over the RowBg0 color. +enum ImGuiTableBgTarget_ +{ + ImGuiTableBgTarget_None = 0, + ImGuiTableBgTarget_RowBg0 = 1, // Set row background color 0 (generally used for background, automatically set when ImGuiTableFlags_RowBg is used) + ImGuiTableBgTarget_RowBg1 = 2, // Set row background color 1 (generally used for selection marking) + ImGuiTableBgTarget_CellBg = 3, // Set cell background color (top-most color) +}; + +// Sorting specifications for a table (often handling sort specs for a single column, occasionally more) +// Obtained by calling TableGetSortSpecs(). +// When 'SpecsDirty == true' you can sort your data. It will be true with sorting specs have changed since last call, or the first time. +// Make sure to set 'SpecsDirty = false' after sorting, else you may wastefully sort your data every frame! +struct ImGuiTableSortSpecs +{ + const ImGuiTableColumnSortSpecs* Specs; // Pointer to sort spec array. + int SpecsCount; // Sort spec count. Most often 1. May be > 1 when ImGuiTableFlags_SortMulti is enabled. May be == 0 when ImGuiTableFlags_SortTristate is enabled. + bool SpecsDirty; // Set to true when specs have changed since last time! Use this to sort again, then clear the flag. + + ImGuiTableSortSpecs() { memset(this, 0, sizeof(*this)); } +}; + +// Sorting specification for one column of a table (sizeof == 12 bytes) +struct ImGuiTableColumnSortSpecs +{ + ImGuiID ColumnUserID; // User id of the column (if specified by a TableSetupColumn() call) + ImS16 ColumnIndex; // Index of the column + ImS16 SortOrder; // Index within parent ImGuiTableSortSpecs (always stored in order starting from 0, tables sorted on a single criteria will always have a 0 here) + ImGuiSortDirection SortDirection; // ImGuiSortDirection_Ascending or ImGuiSortDirection_Descending + + ImGuiTableColumnSortSpecs() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Helpers: Debug log, memory allocations macros, ImVector<> +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// Debug Logging into ShowDebugLogWindow(), tty and more. +//----------------------------------------------------------------------------- + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS +#define IMGUI_DEBUG_LOG(...) ImGui::DebugLog(__VA_ARGS__) +#else +#define IMGUI_DEBUG_LOG(...) ((void)0) +#endif + +//----------------------------------------------------------------------------- +// IM_MALLOC(), IM_FREE(), IM_NEW(), IM_PLACEMENT_NEW(), IM_DELETE() +// We call C++ constructor on own allocated memory via the placement "new(ptr) Type()" syntax. +// Defining a custom placement new() with a custom parameter allows us to bypass including which on some platforms complains when user has disabled exceptions. +//----------------------------------------------------------------------------- + +struct ImNewWrapper {}; +inline void* operator new(size_t, ImNewWrapper, void* ptr) { return ptr; } +inline void operator delete(void*, ImNewWrapper, void*) {} // This is only required so we can use the symmetrical new() +#define IM_ALLOC(_SIZE) ImGui::MemAlloc(_SIZE) +#define IM_FREE(_PTR) ImGui::MemFree(_PTR) +#define IM_PLACEMENT_NEW(_PTR) new(ImNewWrapper(), _PTR) +#define IM_NEW(_TYPE) new(ImNewWrapper(), ImGui::MemAlloc(sizeof(_TYPE))) _TYPE +template void IM_DELETE(T* p) { if (p) { p->~T(); ImGui::MemFree(p); } } + +//----------------------------------------------------------------------------- +// ImVector<> +// Lightweight std::vector<>-like class to avoid dragging dependencies (also, some implementations of STL with debug enabled are absurdly slow, we bypass it so our code runs fast in debug). +//----------------------------------------------------------------------------- +// - You generally do NOT need to care or use this ever. But we need to make it available in imgui.h because some of our public structures are relying on it. +// - We use std-like naming convention here, which is a little unusual for this codebase. +// - Important: clear() frees memory, resize(0) keep the allocated buffer. We use resize(0) a lot to intentionally recycle allocated buffers across frames and amortize our costs. +// - Important: our implementation does NOT call C++ constructors/destructors, we treat everything as raw data! This is intentional but be extra mindful of that, +// Do NOT use this class as a std::vector replacement in your own code! Many of the structures used by dear imgui can be safely initialized by a zero-memset. +//----------------------------------------------------------------------------- + +IM_MSVC_RUNTIME_CHECKS_OFF +template +struct ImVector +{ + int Size; + int Capacity; + T* Data; + + // Provide standard typedefs but we don't use them ourselves. + typedef T value_type; + typedef value_type* iterator; + typedef const value_type* const_iterator; + + // Constructors, destructor + inline ImVector() { Size = Capacity = 0; Data = NULL; } + inline ImVector(const ImVector& src) { Size = Capacity = 0; Data = NULL; operator=(src); } + inline ImVector& operator=(const ImVector& src) { clear(); resize(src.Size); if (src.Data) memcpy(Data, src.Data, (size_t)Size * sizeof(T)); return *this; } + inline ~ImVector() { if (Data) IM_FREE(Data); } // Important: does not destruct anything + + inline void clear() { if (Data) { Size = Capacity = 0; IM_FREE(Data); Data = NULL; } } // Important: does not destruct anything + inline void clear_delete() { for (int n = 0; n < Size; n++) IM_DELETE(Data[n]); clear(); } // Important: never called automatically! always explicit. + inline void clear_destruct() { for (int n = 0; n < Size; n++) Data[n].~T(); clear(); } // Important: never called automatically! always explicit. + + inline bool empty() const { return Size == 0; } + inline int size() const { return Size; } + inline int size_in_bytes() const { return Size * (int)sizeof(T); } + inline int max_size() const { return 0x7FFFFFFF / (int)sizeof(T); } + inline int capacity() const { return Capacity; } + inline T& operator[](int i) { IM_ASSERT(i >= 0 && i < Size); return Data[i]; } + inline const T& operator[](int i) const { IM_ASSERT(i >= 0 && i < Size); return Data[i]; } + + inline T* begin() { return Data; } + inline const T* begin() const { return Data; } + inline T* end() { return Data + Size; } + inline const T* end() const { return Data + Size; } + inline T& front() { IM_ASSERT(Size > 0); return Data[0]; } + inline const T& front() const { IM_ASSERT(Size > 0); return Data[0]; } + inline T& back() { IM_ASSERT(Size > 0); return Data[Size - 1]; } + inline const T& back() const { IM_ASSERT(Size > 0); return Data[Size - 1]; } + inline void swap(ImVector& rhs) { int rhs_size = rhs.Size; rhs.Size = Size; Size = rhs_size; int rhs_cap = rhs.Capacity; rhs.Capacity = Capacity; Capacity = rhs_cap; T* rhs_data = rhs.Data; rhs.Data = Data; Data = rhs_data; } + + inline int _grow_capacity(int sz) const { int new_capacity = Capacity ? (Capacity + Capacity / 2) : 8; return new_capacity > sz ? new_capacity : sz; } + inline void resize(int new_size) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); Size = new_size; } + inline void resize(int new_size, const T& v) { if (new_size > Capacity) reserve(_grow_capacity(new_size)); if (new_size > Size) for (int n = Size; n < new_size; n++) memcpy(&Data[n], &v, sizeof(v)); Size = new_size; } + inline void shrink(int new_size) { IM_ASSERT(new_size <= Size); Size = new_size; } // Resize a vector to a smaller size, guaranteed not to cause a reallocation + inline void reserve(int new_capacity) { if (new_capacity <= Capacity) return; T* new_data = (T*)IM_ALLOC((size_t)new_capacity * sizeof(T)); if (Data) { memcpy(new_data, Data, (size_t)Size * sizeof(T)); IM_FREE(Data); } Data = new_data; Capacity = new_capacity; } + inline void reserve_discard(int new_capacity) { if (new_capacity <= Capacity) return; if (Data) IM_FREE(Data); Data = (T*)IM_ALLOC((size_t)new_capacity * sizeof(T)); Capacity = new_capacity; } + + // NB: It is illegal to call push_back/push_front/insert with a reference pointing inside the ImVector data itself! e.g. v.push_back(v[10]) is forbidden. + inline void push_back(const T& v) { if (Size == Capacity) reserve(_grow_capacity(Size + 1)); memcpy(&Data[Size], &v, sizeof(v)); Size++; } + inline void pop_back() { IM_ASSERT(Size > 0); Size--; } + inline void push_front(const T& v) { if (Size == 0) push_back(v); else insert(Data, v); } + inline T* erase(const T* it) { IM_ASSERT(it >= Data && it < Data + Size); const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + 1, ((size_t)Size - (size_t)off - 1) * sizeof(T)); Size--; return Data + off; } + inline T* erase(const T* it, const T* it_last){ IM_ASSERT(it >= Data && it < Data + Size && it_last >= it && it_last <= Data + Size); const ptrdiff_t count = it_last - it; const ptrdiff_t off = it - Data; memmove(Data + off, Data + off + count, ((size_t)Size - (size_t)off - (size_t)count) * sizeof(T)); Size -= (int)count; return Data + off; } + inline T* erase_unsorted(const T* it) { IM_ASSERT(it >= Data && it < Data + Size); const ptrdiff_t off = it - Data; if (it < Data + Size - 1) memcpy(Data + off, Data + Size - 1, sizeof(T)); Size--; return Data + off; } + inline T* insert(const T* it, const T& v) { IM_ASSERT(it >= Data && it <= Data + Size); const ptrdiff_t off = it - Data; if (Size == Capacity) reserve(_grow_capacity(Size + 1)); if (off < (int)Size) memmove(Data + off + 1, Data + off, ((size_t)Size - (size_t)off) * sizeof(T)); memcpy(&Data[off], &v, sizeof(v)); Size++; return Data + off; } + inline bool contains(const T& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data++ == v) return true; return false; } + inline T* find(const T& v) { T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data == v) break; else ++data; return data; } + inline const T* find(const T& v) const { const T* data = Data; const T* data_end = Data + Size; while (data < data_end) if (*data == v) break; else ++data; return data; } + inline int find_index(const T& v) const { const T* data_end = Data + Size; const T* it = find(v); if (it == data_end) return -1; const ptrdiff_t off = it - Data; return (int)off; } + inline bool find_erase(const T& v) { const T* it = find(v); if (it < Data + Size) { erase(it); return true; } return false; } + inline bool find_erase_unsorted(const T& v) { const T* it = find(v); if (it < Data + Size) { erase_unsorted(it); return true; } return false; } + inline int index_from_ptr(const T* it) const { IM_ASSERT(it >= Data && it < Data + Size); const ptrdiff_t off = it - Data; return (int)off; } +}; +IM_MSVC_RUNTIME_CHECKS_RESTORE + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiStyle +//----------------------------------------------------------------------------- +// You may modify the ImGui::GetStyle() main instance during initialization and before NewFrame(). +// During the frame, use ImGui::PushStyleVar(ImGuiStyleVar_XXXX)/PopStyleVar() to alter the main style values, +// and ImGui::PushStyleColor(ImGuiCol_XXX)/PopStyleColor() for colors. +//----------------------------------------------------------------------------- + +struct ImGuiStyle +{ + float Alpha; // Global alpha applies to everything in Dear ImGui. + float DisabledAlpha; // Additional alpha multiplier applied by BeginDisabled(). Multiply over current value of Alpha. + ImVec2 WindowPadding; // Padding within a window. + float WindowRounding; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended. + float WindowBorderSize; // Thickness of border around windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + ImVec2 WindowMinSize; // Minimum window size. This is a global setting. If you want to constrain individual windows, use SetNextWindowSizeConstraints(). + ImVec2 WindowTitleAlign; // Alignment for title bar text. Defaults to (0.0f,0.5f) for left-aligned,vertically centered. + ImGuiDir WindowMenuButtonPosition; // Side of the collapsing/docking button in the title bar (None/Left/Right). Defaults to ImGuiDir_Left. + float ChildRounding; // Radius of child window corners rounding. Set to 0.0f to have rectangular windows. + float ChildBorderSize; // Thickness of border around child windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + float PopupRounding; // Radius of popup window corners rounding. (Note that tooltip windows use WindowRounding) + float PopupBorderSize; // Thickness of border around popup/tooltip windows. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + ImVec2 FramePadding; // Padding within a framed rectangle (used by most widgets). + float FrameRounding; // Radius of frame corners rounding. Set to 0.0f to have rectangular frame (used by most widgets). + float FrameBorderSize; // Thickness of border around frames. Generally set to 0.0f or 1.0f. (Other values are not well tested and more CPU/GPU costly). + ImVec2 ItemSpacing; // Horizontal and vertical spacing between widgets/lines. + ImVec2 ItemInnerSpacing; // Horizontal and vertical spacing between within elements of a composed widget (e.g. a slider and its label). + ImVec2 CellPadding; // Padding within a table cell. Cellpadding.x is locked for entire table. CellPadding.y may be altered between different rows. + ImVec2 TouchExtraPadding; // Expand reactive bounding box for touch-based system where touch position is not accurate enough. Unfortunately we don't sort widgets so priority on overlap will always be given to the first widget. So don't grow this too much! + float IndentSpacing; // Horizontal indentation when e.g. entering a tree node. Generally == (FontSize + FramePadding.x*2). + float ColumnsMinSpacing; // Minimum horizontal spacing between two columns. Preferably > (FramePadding.x + 1). + float ScrollbarSize; // Width of the vertical scrollbar, Height of the horizontal scrollbar. + float ScrollbarRounding; // Radius of grab corners for scrollbar. + float GrabMinSize; // Minimum width/height of a grab box for slider/scrollbar. + float GrabRounding; // Radius of grabs corners rounding. Set to 0.0f to have rectangular slider grabs. + float LogSliderDeadzone; // The size in pixels of the dead-zone around zero on logarithmic sliders that cross zero. + float TabRounding; // Radius of upper corners of a tab. Set to 0.0f to have rectangular tabs. + float TabBorderSize; // Thickness of border around tabs. + float TabMinWidthForCloseButton; // Minimum width for close button to appear on an unselected tab when hovered. Set to 0.0f to always show when hovering, set to FLT_MAX to never show close button unless selected. + float TabBarBorderSize; // Thickness of tab-bar separator, which takes on the tab active color to denote focus. + float TabBarOverlineSize; // Thickness of tab-bar overline, which highlights the selected tab-bar. + float TableAngledHeadersAngle; // Angle of angled headers (supported values range from -50.0f degrees to +50.0f degrees). + ImVec2 TableAngledHeadersTextAlign;// Alignment of angled headers within the cell + ImGuiDir ColorButtonPosition; // Side of the color button in the ColorEdit4 widget (left/right). Defaults to ImGuiDir_Right. + ImVec2 ButtonTextAlign; // Alignment of button text when button is larger than text. Defaults to (0.5f, 0.5f) (centered). + ImVec2 SelectableTextAlign; // Alignment of selectable text. Defaults to (0.0f, 0.0f) (top-left aligned). It's generally important to keep this left-aligned if you want to lay multiple items on a same line. + float SeparatorTextBorderSize; // Thickness of border in SeparatorText() + ImVec2 SeparatorTextAlign; // Alignment of text within the separator. Defaults to (0.0f, 0.5f) (left aligned, center). + ImVec2 SeparatorTextPadding; // Horizontal offset of text from each edge of the separator + spacing on other axis. Generally small values. .y is recommended to be == FramePadding.y. + ImVec2 DisplayWindowPadding; // Apply to regular windows: amount which we enforce to keep visible when moving near edges of your screen. + ImVec2 DisplaySafeAreaPadding; // Apply to every windows, menus, popups, tooltips: amount where we avoid displaying contents. Adjust if you cannot see the edges of your screen (e.g. on a TV where scaling has not been configured). + float MouseCursorScale; // Scale software rendered mouse cursor (when io.MouseDrawCursor is enabled). We apply per-monitor DPI scaling over this scale. May be removed later. + bool AntiAliasedLines; // Enable anti-aliased lines/borders. Disable if you are really tight on CPU/GPU. Latched at the beginning of the frame (copied to ImDrawList). + bool AntiAliasedLinesUseTex; // Enable anti-aliased lines/borders using textures where possible. Require backend to render with bilinear filtering (NOT point/nearest filtering). Latched at the beginning of the frame (copied to ImDrawList). + bool AntiAliasedFill; // Enable anti-aliased edges around filled shapes (rounded rectangles, circles, etc.). Disable if you are really tight on CPU/GPU. Latched at the beginning of the frame (copied to ImDrawList). + float CurveTessellationTol; // Tessellation tolerance when using PathBezierCurveTo() without a specific number of segments. Decrease for highly tessellated curves (higher quality, more polygons), increase to reduce quality. + float CircleTessellationMaxError; // Maximum error (in pixels) allowed when using AddCircle()/AddCircleFilled() or drawing rounded corner rectangles with no explicit segment count specified. Decrease for higher quality but more geometry. + float WindowShadowSize; // Size (in pixels) of window shadows. Set this to zero to disable shadows. + float WindowShadowOffsetDist; // Offset distance (in pixels) of window shadows from casting window. + float WindowShadowOffsetAngle; // Offset angle of window shadows from casting window (0.0f = left, 0.5f*PI = bottom, 1.0f*PI = right, 1.5f*PI = top). + ImVec4 Colors[ImGuiCol_COUNT]; + + // Behaviors + // (It is possible to modify those fields mid-frame if specific behavior need it, unlike e.g. configuration fields in ImGuiIO) + float HoverStationaryDelay; // Delay for IsItemHovered(ImGuiHoveredFlags_Stationary). Time required to consider mouse stationary. + float HoverDelayShort; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayShort). Usually used along with HoverStationaryDelay. + float HoverDelayNormal; // Delay for IsItemHovered(ImGuiHoveredFlags_DelayNormal). " + ImGuiHoveredFlags HoverFlagsForTooltipMouse;// Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using mouse. + ImGuiHoveredFlags HoverFlagsForTooltipNav; // Default flags when using IsItemHovered(ImGuiHoveredFlags_ForTooltip) or BeginItemTooltip()/SetItemTooltip() while using keyboard/gamepad. + + IMGUI_API ImGuiStyle(); + IMGUI_API void ScaleAllSizes(float scale_factor); +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiIO +//----------------------------------------------------------------------------- +// Communicate most settings and inputs/outputs to Dear ImGui using this structure. +// Access via ImGui::GetIO(). Read 'Programmer guide' section in .cpp file for general usage. +// It is generally expected that: +// - initialization: backends and user code writes to ImGuiIO. +// - main loop: backends writes to ImGuiIO, user code and imgui code reads from ImGuiIO. +//----------------------------------------------------------------------------- +// Also see ImGui::GetPlatformIO() and ImGuiPlatformIO struct for OS/platform related functions: clipboard, IME etc. +//----------------------------------------------------------------------------- + +// [Internal] Storage used by IsKeyDown(), IsKeyPressed() etc functions. +// If prior to 1.87 you used io.KeysDownDuration[] (which was marked as internal), you should use GetKeyData(key)->DownDuration and *NOT* io.KeysData[key]->DownDuration. +struct ImGuiKeyData +{ + bool Down; // True for if key is down + float DownDuration; // Duration the key has been down (<0.0f: not pressed, 0.0f: just pressed, >0.0f: time held) + float DownDurationPrev; // Last frame duration the key has been down + float AnalogValue; // 0.0f..1.0f for gamepad values +}; + +struct ImGuiIO +{ + //------------------------------------------------------------------ + // Configuration // Default value + //------------------------------------------------------------------ + + ImGuiConfigFlags ConfigFlags; // = 0 // See ImGuiConfigFlags_ enum. Set by user/application. Gamepad/keyboard navigation options, etc. + ImGuiBackendFlags BackendFlags; // = 0 // See ImGuiBackendFlags_ enum. Set by backend (imgui_impl_xxx files or custom backend) to communicate features supported by the backend. + ImVec2 DisplaySize; // // Main display size, in pixels (generally == GetMainViewport()->Size). May change every frame. + float DeltaTime; // = 1.0f/60.0f // Time elapsed since last frame, in seconds. May change every frame. + float IniSavingRate; // = 5.0f // Minimum time between saving positions/sizes to .ini file, in seconds. + const char* IniFilename; // = "imgui.ini" // Path to .ini file (important: default "imgui.ini" is relative to current working dir!). Set NULL to disable automatic .ini loading/saving or if you want to manually call LoadIniSettingsXXX() / SaveIniSettingsXXX() functions. + const char* LogFilename; // = "imgui_log.txt"// Path to .log file (default parameter to ImGui::LogToFile when no file is specified). + void* UserData; // = NULL // Store your own data. + + // Font system + ImFontAtlas*Fonts; // // Font atlas: load, rasterize and pack one or more fonts into a single texture. + float FontGlobalScale; // = 1.0f // Global scale all fonts + bool FontAllowUserScaling; // = false // Allow user scaling text of individual window with CTRL+Wheel. + ImFont* FontDefault; // = NULL // Font to use on NewFrame(). Use NULL to uses Fonts->Fonts[0]. + ImVec2 DisplayFramebufferScale; // = (1, 1) // For retina display or other situations where window coordinates are different from framebuffer coordinates. This generally ends up in ImDrawData::FramebufferScale. + + // Miscellaneous options + // (you can visualize and interact with all options in 'Demo->Configuration') + bool MouseDrawCursor; // = false // Request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor). Cannot be easily renamed to 'io.ConfigXXX' because this is frequently used by backend implementations. + bool ConfigMacOSXBehaviors; // = defined(__APPLE__) // Swap Cmd<>Ctrl keys + OS X style text editing cursor movement using Alt instead of Ctrl, Shortcuts using Cmd/Super instead of Ctrl, Line/Text Start and End using Cmd+Arrows instead of Home/End, Double click selects by word instead of selecting whole text, Multi-selection in lists uses Cmd/Super instead of Ctrl. + bool ConfigNavSwapGamepadButtons; // = false // Swap Activate<>Cancel (A<>B) buttons, matching typical "Nintendo/Japanese style" gamepad layout. + bool ConfigInputTrickleEventQueue; // = true // Enable input queue trickling: some types of events submitted during the same frame (e.g. button down + up) will be spread over multiple frames, improving interactions with low framerates. + bool ConfigInputTextCursorBlink; // = true // Enable blinking cursor (optional as some users consider it to be distracting). + bool ConfigInputTextEnterKeepActive; // = false // [BETA] Pressing Enter will keep item active and select contents (single-line only). + bool ConfigDragClickToInputText; // = false // [BETA] Enable turning DragXXX widgets into text input with a simple mouse click-release (without moving). Not desirable on devices without a keyboard. + bool ConfigWindowsResizeFromEdges; // = true // Enable resizing of windows from their edges and from the lower-left corner. This requires (io.BackendFlags & ImGuiBackendFlags_HasMouseCursors) because it needs mouse cursor feedback. (This used to be a per-window ImGuiWindowFlags_ResizeFromAnySide flag) + bool ConfigWindowsMoveFromTitleBarOnly; // = false // Enable allowing to move windows only when clicking on their title bar. Does not apply to windows without a title bar. + bool ConfigScrollbarScrollByPage; // = true // Enable scrolling page by page when clicking outside the scrollbar grab. When disabled, always scroll to clicked location. When enabled, Shift+Click scrolls to clicked location. + float ConfigMemoryCompactTimer; // = 60.0f // Timer (in seconds) to free transient windows/tables memory buffers when unused. Set to -1.0f to disable. + + // Inputs Behaviors + // (other variables, ones which are expected to be tweaked within UI code, are exposed in ImGuiStyle) + float MouseDoubleClickTime; // = 0.30f // Time for a double-click, in seconds. + float MouseDoubleClickMaxDist; // = 6.0f // Distance threshold to stay in to validate a double-click, in pixels. + float MouseDragThreshold; // = 6.0f // Distance threshold before considering we are dragging. + float KeyRepeatDelay; // = 0.275f // When holding a key/button, time before it starts repeating, in seconds (for buttons in Repeat mode, etc.). + float KeyRepeatRate; // = 0.050f // When holding a key/button, rate at which it repeats, in seconds. + + //------------------------------------------------------------------ + // Debug options + //------------------------------------------------------------------ + + // Option to enable various debug tools showing buttons that will call the IM_DEBUG_BREAK() macro. + // - The Item Picker tool will be available regardless of this being enabled, in order to maximize its discoverability. + // - Requires a debugger being attached, otherwise IM_DEBUG_BREAK() options will appear to crash your application. + // e.g. io.ConfigDebugIsDebuggerPresent = ::IsDebuggerPresent() on Win32, or refer to ImOsIsDebuggerPresent() imgui_test_engine/imgui_te_utils.cpp for a Unix compatible version). + bool ConfigDebugIsDebuggerPresent; // = false // Enable various tools calling IM_DEBUG_BREAK(). + + // Tools to detect code submitting items with conflicting/duplicate IDs + // - Code should use PushID()/PopID() in loops, or append "##xx" to same-label identifiers. + // - Empty label e.g. Button("") == same ID as parent widget/node. Use Button("##xx") instead! + // - See FAQ https://github.com/ocornut/imgui/blob/master/docs/FAQ.md#q-about-the-id-stack-system + bool ConfigDebugHighlightIdConflicts;// = true // Highlight and show an error message when multiple items have conflicting identifiers. + + // Tools to test correct Begin/End and BeginChild/EndChild behaviors. + // - Presently Begin()/End() and BeginChild()/EndChild() needs to ALWAYS be called in tandem, regardless of return value of BeginXXX() + // - This is inconsistent with other BeginXXX functions and create confusion for many users. + // - We expect to update the API eventually. In the meanwhile we provide tools to facilitate checking user-code behavior. + bool ConfigDebugBeginReturnValueOnce;// = false // First-time calls to Begin()/BeginChild() will return false. NEEDS TO BE SET AT APPLICATION BOOT TIME if you don't want to miss windows. + bool ConfigDebugBeginReturnValueLoop;// = false // Some calls to Begin()/BeginChild() will return false. Will cycle through window depths then repeat. Suggested use: add "io.ConfigDebugBeginReturnValue = io.KeyShift" in your main loop then occasionally press SHIFT. Windows should be flickering while running. + + // Option to deactivate io.AddFocusEvent(false) handling. + // - May facilitate interactions with a debugger when focus loss leads to clearing inputs data. + // - Backends may have other side-effects on focus loss, so this will reduce side-effects but not necessary remove all of them. + bool ConfigDebugIgnoreFocusLoss; // = false // Ignore io.AddFocusEvent(false), consequently not calling io.ClearInputKeys()/io.ClearInputMouse() in input processing. + + // Option to audit .ini data + bool ConfigDebugIniSettings; // = false // Save .ini data with extra comments (particularly helpful for Docking, but makes saving slower) + + //------------------------------------------------------------------ + // Platform Functions + // (the imgui_impl_xxxx backend files are setting those up for you) + //------------------------------------------------------------------ + + // Optional: Platform/Renderer backend name (informational only! will be displayed in About Window) + User data for backend/wrappers to store their own stuff. + const char* BackendPlatformName; // = NULL + const char* BackendRendererName; // = NULL + void* BackendPlatformUserData; // = NULL // User data for platform backend + void* BackendRendererUserData; // = NULL // User data for renderer backend + void* BackendLanguageUserData; // = NULL // User data for non C++ programming language backend + + //------------------------------------------------------------------ + // Input - Call before calling NewFrame() + //------------------------------------------------------------------ + + // Input Functions + IMGUI_API void AddKeyEvent(ImGuiKey key, bool down); // Queue a new key down/up event. Key should be "translated" (as in, generally ImGuiKey_A matches the key end-user would use to emit an 'A' character) + IMGUI_API void AddKeyAnalogEvent(ImGuiKey key, bool down, float v); // Queue a new key down/up event for analog values (e.g. ImGuiKey_Gamepad_ values). Dead-zones should be handled by the backend. + IMGUI_API void AddMousePosEvent(float x, float y); // Queue a mouse position update. Use -FLT_MAX,-FLT_MAX to signify no mouse (e.g. app not focused and not hovered) + IMGUI_API void AddMouseButtonEvent(int button, bool down); // Queue a mouse button change + IMGUI_API void AddMouseWheelEvent(float wheel_x, float wheel_y); // Queue a mouse wheel update. wheel_y<0: scroll down, wheel_y>0: scroll up, wheel_x<0: scroll right, wheel_x>0: scroll left. + IMGUI_API void AddMouseSourceEvent(ImGuiMouseSource source); // Queue a mouse source change (Mouse/TouchScreen/Pen) + IMGUI_API void AddFocusEvent(bool focused); // Queue a gain/loss of focus for the application (generally based on OS/platform focus of your window) + IMGUI_API void AddInputCharacter(unsigned int c); // Queue a new character input + IMGUI_API void AddInputCharacterUTF16(ImWchar16 c); // Queue a new character input from a UTF-16 character, it can be a surrogate + IMGUI_API void AddInputCharactersUTF8(const char* str); // Queue a new characters input from a UTF-8 string + + IMGUI_API void SetKeyEventNativeData(ImGuiKey key, int native_keycode, int native_scancode, int native_legacy_index = -1); // [Optional] Specify index for legacy <1.87 IsKeyXXX() functions with native indices + specify native keycode, scancode. + IMGUI_API void SetAppAcceptingEvents(bool accepting_events); // Set master flag for accepting key/mouse/text events (default to true). Useful if you have native dialog boxes that are interrupting your application loop/refresh, and you want to disable events being queued while your app is frozen. + IMGUI_API void ClearEventsQueue(); // Clear all incoming events. + IMGUI_API void ClearInputKeys(); // Clear current keyboard/gamepad state + current frame text input buffer. Equivalent to releasing all keys/buttons. + IMGUI_API void ClearInputMouse(); // Clear current mouse state. +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + IMGUI_API void ClearInputCharacters(); // [Obsoleted in 1.89.8] Clear the current frame text input buffer. Now included within ClearInputKeys(). +#endif + + //------------------------------------------------------------------ + // Output - Updated by NewFrame() or EndFrame()/Render() + // (when reading from the io.WantCaptureMouse, io.WantCaptureKeyboard flags to dispatch your inputs, it is + // generally easier and more correct to use their state BEFORE calling NewFrame(). See FAQ for details!) + //------------------------------------------------------------------ + + bool WantCaptureMouse; // Set when Dear ImGui will use mouse inputs, in this case do not dispatch them to your main game/application (either way, always pass on mouse inputs to imgui). (e.g. unclicked mouse is hovering over an imgui window, widget is active, mouse was clicked over an imgui window, etc.). + bool WantCaptureKeyboard; // Set when Dear ImGui will use keyboard inputs, in this case do not dispatch them to your main game/application (either way, always pass keyboard inputs to imgui). (e.g. InputText active, or an imgui window is focused and navigation is enabled, etc.). + bool WantTextInput; // Mobile/console: when set, you may display an on-screen keyboard. This is set by Dear ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active). + bool WantSetMousePos; // MousePos has been altered, backend should reposition mouse on next frame. Rarely used! Set only when ImGuiConfigFlags_NavEnableSetMousePos flag is enabled. + bool WantSaveIniSettings; // When manual .ini load/save is active (io.IniFilename == NULL), this will be set to notify your application that you can call SaveIniSettingsToMemory() and save yourself. Important: clear io.WantSaveIniSettings yourself after saving! + bool NavActive; // Keyboard/Gamepad navigation is currently allowed (will handle ImGuiKey_NavXXX events) = a window is focused and it doesn't use the ImGuiWindowFlags_NoNavInputs flag. + bool NavVisible; // Keyboard/Gamepad navigation is visible and allowed (will handle ImGuiKey_NavXXX events). + float Framerate; // Estimate of application framerate (rolling average over 60 frames, based on io.DeltaTime), in frame per second. Solely for convenience. Slow applications may not want to use a moving average or may want to reset underlying buffers occasionally. + int MetricsRenderVertices; // Vertices output during last call to Render() + int MetricsRenderIndices; // Indices output during last call to Render() = number of triangles * 3 + int MetricsRenderWindows; // Number of visible windows + int MetricsActiveWindows; // Number of active windows + ImVec2 MouseDelta; // Mouse delta. Note that this is zero if either current or previous position are invalid (-FLT_MAX,-FLT_MAX), so a disappearing/reappearing mouse won't have a huge delta. + + //------------------------------------------------------------------ + // [Internal] Dear ImGui will maintain those fields. Forward compatibility not guaranteed! + //------------------------------------------------------------------ + + ImGuiContext* Ctx; // Parent UI context (needs to be set explicitly by parent). + + // Main Input State + // (this block used to be written by backend, since 1.87 it is best to NOT write to those directly, call the AddXXX functions above instead) + // (reading from those variables is fair game, as they are extremely unlikely to be moving anywhere) + ImVec2 MousePos; // Mouse position, in pixels. Set to ImVec2(-FLT_MAX, -FLT_MAX) if mouse is unavailable (on another screen, etc.) + bool MouseDown[5]; // Mouse buttons: 0=left, 1=right, 2=middle + extras (ImGuiMouseButton_COUNT == 5). Dear ImGui mostly uses left and right buttons. Other buttons allow us to track if the mouse is being used by your application + available to user as a convenience via IsMouse** API. + float MouseWheel; // Mouse wheel Vertical: 1 unit scrolls about 5 lines text. >0 scrolls Up, <0 scrolls Down. Hold SHIFT to turn vertical scroll into horizontal scroll. + float MouseWheelH; // Mouse wheel Horizontal. >0 scrolls Left, <0 scrolls Right. Most users don't have a mouse with a horizontal wheel, may not be filled by all backends. + ImGuiMouseSource MouseSource; // Mouse actual input peripheral (Mouse/TouchScreen/Pen). + bool KeyCtrl; // Keyboard modifier down: Control + bool KeyShift; // Keyboard modifier down: Shift + bool KeyAlt; // Keyboard modifier down: Alt + bool KeySuper; // Keyboard modifier down: Cmd/Super/Windows + + // Other state maintained from data above + IO function calls + ImGuiKeyChord KeyMods; // Key mods flags (any of ImGuiMod_Ctrl/ImGuiMod_Shift/ImGuiMod_Alt/ImGuiMod_Super flags, same as io.KeyCtrl/KeyShift/KeyAlt/KeySuper but merged into flags. Read-only, updated by NewFrame() + ImGuiKeyData KeysData[ImGuiKey_KeysData_SIZE]; // Key state for all known keys. Use IsKeyXXX() functions to access this. + bool WantCaptureMouseUnlessPopupClose; // Alternative to WantCaptureMouse: (WantCaptureMouse == true && WantCaptureMouseUnlessPopupClose == false) when a click over void is expected to close a popup. + ImVec2 MousePosPrev; // Previous mouse position (note that MouseDelta is not necessary == MousePos-MousePosPrev, in case either position is invalid) + ImVec2 MouseClickedPos[5]; // Position at time of clicking + double MouseClickedTime[5]; // Time of last click (used to figure out double-click) + bool MouseClicked[5]; // Mouse button went from !Down to Down (same as MouseClickedCount[x] != 0) + bool MouseDoubleClicked[5]; // Has mouse button been double-clicked? (same as MouseClickedCount[x] == 2) + ImU16 MouseClickedCount[5]; // == 0 (not clicked), == 1 (same as MouseClicked[]), == 2 (double-clicked), == 3 (triple-clicked) etc. when going from !Down to Down + ImU16 MouseClickedLastCount[5]; // Count successive number of clicks. Stays valid after mouse release. Reset after another click is done. + bool MouseReleased[5]; // Mouse button went from Down to !Down + bool MouseDownOwned[5]; // Track if button was clicked inside a dear imgui window or over void blocked by a popup. We don't request mouse capture from the application if click started outside ImGui bounds. + bool MouseDownOwnedUnlessPopupClose[5]; // Track if button was clicked inside a dear imgui window. + bool MouseWheelRequestAxisSwap; // On a non-Mac system, holding SHIFT requests WheelY to perform the equivalent of a WheelX event. On a Mac system this is already enforced by the system. + bool MouseCtrlLeftAsRightClick; // (OSX) Set to true when the current click was a ctrl-click that spawned a simulated right click + float MouseDownDuration[5]; // Duration the mouse button has been down (0.0f == just clicked) + float MouseDownDurationPrev[5]; // Previous time the mouse button has been down + float MouseDragMaxDistanceSqr[5]; // Squared maximum distance of how much mouse has traveled from the clicking point (used for moving thresholds) + float PenPressure; // Touch/Pen pressure (0.0f to 1.0f, should be >0.0f only when MouseDown[0] == true). Helper storage currently unused by Dear ImGui. + bool AppFocusLost; // Only modify via AddFocusEvent() + bool AppAcceptingEvents; // Only modify via SetAppAcceptingEvents() + ImS8 BackendUsingLegacyKeyArrays; // -1: unknown, 0: using AddKeyEvent(), 1: using legacy io.KeysDown[] + bool BackendUsingLegacyNavInputArray; // 0: using AddKeyAnalogEvent(), 1: writing to legacy io.NavInputs[] directly + ImWchar16 InputQueueSurrogate; // For AddInputCharacterUTF16() + ImVector InputQueueCharacters; // Queue of _characters_ input (obtained by platform backend). Fill using AddInputCharacter() helper. + + // Legacy: before 1.87, we required backend to fill io.KeyMap[] (imgui->native map) during initialization and io.KeysDown[] (native indices) every frame. + // This is still temporarily supported as a legacy feature. However the new preferred scheme is for backend to call io.AddKeyEvent(). + // Old (<1.87): ImGui::IsKeyPressed(ImGui::GetIO().KeyMap[ImGuiKey_Space]) --> New (1.87+) ImGui::IsKeyPressed(ImGuiKey_Space) +#ifndef IMGUI_DISABLE_OBSOLETE_KEYIO + int KeyMap[ImGuiKey_COUNT]; // [LEGACY] Input: map of indices into the KeysDown[512] entries array which represent your "native" keyboard state. The first 512 are now unused and should be kept zero. Legacy backend will write into KeyMap[] using ImGuiKey_ indices which are always >512. + bool KeysDown[ImGuiKey_COUNT]; // [LEGACY] Input: Keyboard keys that are pressed (ideally left in the "native" order your engine has access to keyboard keys, so you can use your own defines/enums for keys). This used to be [512] sized. It is now ImGuiKey_COUNT to allow legacy io.KeysDown[GetKeyIndex(...)] to work without an overflow. + float NavInputs[ImGuiNavInput_COUNT]; // [LEGACY] Since 1.88, NavInputs[] was removed. Backends from 1.60 to 1.86 won't build. Feed gamepad inputs via io.AddKeyEvent() and ImGuiKey_GamepadXXX enums. + //void* ImeWindowHandle; // [Obsoleted in 1.87] Set ImGuiViewport::PlatformHandleRaw instead. Set this to your HWND to get automatic IME cursor positioning. +#endif + + // Legacy: before 1.91.1, clipboard functions were stored in ImGuiIO instead of ImGuiPlatformIO. + // As this is will affect all users of custom engines/backends, we are providing proper legacy redirection (will obsolete). +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + const char* (*GetClipboardTextFn)(void* user_data); + void (*SetClipboardTextFn)(void* user_data, const char* text); + void* ClipboardUserData; +#endif + + IMGUI_API ImGuiIO(); +}; + +//----------------------------------------------------------------------------- +// [SECTION] Misc data structures (ImGuiInputTextCallbackData, ImGuiSizeCallbackData, ImGuiPayload) +//----------------------------------------------------------------------------- + +// Shared state of InputText(), passed as an argument to your callback when a ImGuiInputTextFlags_Callback* flag is used. +// The callback function should return 0 by default. +// Callbacks (follow a flag name and see comments in ImGuiInputTextFlags_ declarations for more details) +// - ImGuiInputTextFlags_CallbackEdit: Callback on buffer edit (note that InputText() already returns true on edit, the callback is useful mainly to manipulate the underlying buffer while focus is active) +// - ImGuiInputTextFlags_CallbackAlways: Callback on each iteration +// - ImGuiInputTextFlags_CallbackCompletion: Callback on pressing TAB +// - ImGuiInputTextFlags_CallbackHistory: Callback on pressing Up/Down arrows +// - ImGuiInputTextFlags_CallbackCharFilter: Callback on character inputs to replace or discard them. Modify 'EventChar' to replace or discard, or return 1 in callback to discard. +// - ImGuiInputTextFlags_CallbackResize: Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. +struct ImGuiInputTextCallbackData +{ + ImGuiContext* Ctx; // Parent UI context + ImGuiInputTextFlags EventFlag; // One ImGuiInputTextFlags_Callback* // Read-only + ImGuiInputTextFlags Flags; // What user passed to InputText() // Read-only + void* UserData; // What user passed to InputText() // Read-only + + // Arguments for the different callback events + // - During Resize callback, Buf will be same as your input buffer. + // - However, during Completion/History/Always callback, Buf always points to our own internal data (it is not the same as your buffer)! Changes to it will be reflected into your own buffer shortly after the callback. + // - To modify the text buffer in a callback, prefer using the InsertChars() / DeleteChars() function. InsertChars() will take care of calling the resize callback if necessary. + // - If you know your edits are not going to resize the underlying buffer allocation, you may modify the contents of 'Buf[]' directly. You need to update 'BufTextLen' accordingly (0 <= BufTextLen < BufSize) and set 'BufDirty'' to true so InputText can update its internal state. + ImWchar EventChar; // Character input // Read-write // [CharFilter] Replace character with another one, or set to zero to drop. return 1 is equivalent to setting EventChar=0; + ImGuiKey EventKey; // Key pressed (Up/Down/TAB) // Read-only // [Completion,History] + char* Buf; // Text buffer // Read-write // [Resize] Can replace pointer / [Completion,History,Always] Only write to pointed data, don't replace the actual pointer! + int BufTextLen; // Text length (in bytes) // Read-write // [Resize,Completion,History,Always] Exclude zero-terminator storage. In C land: == strlen(some_text), in C++ land: string.length() + int BufSize; // Buffer size (in bytes) = capacity+1 // Read-only // [Resize,Completion,History,Always] Include zero-terminator storage. In C land == ARRAYSIZE(my_char_array), in C++ land: string.capacity()+1 + bool BufDirty; // Set if you modify Buf/BufTextLen! // Write // [Completion,History,Always] + int CursorPos; // // Read-write // [Completion,History,Always] + int SelectionStart; // // Read-write // [Completion,History,Always] == to SelectionEnd when no selection) + int SelectionEnd; // // Read-write // [Completion,History,Always] + + // Helper functions for text manipulation. + // Use those function to benefit from the CallbackResize behaviors. Calling those function reset the selection. + IMGUI_API ImGuiInputTextCallbackData(); + IMGUI_API void DeleteChars(int pos, int bytes_count); + IMGUI_API void InsertChars(int pos, const char* text, const char* text_end = NULL); + void SelectAll() { SelectionStart = 0; SelectionEnd = BufTextLen; } + void ClearSelection() { SelectionStart = SelectionEnd = BufTextLen; } + bool HasSelection() const { return SelectionStart != SelectionEnd; } +}; + +// Resizing callback data to apply custom constraint. As enabled by SetNextWindowSizeConstraints(). Callback is called during the next Begin(). +// NB: For basic min/max size constraint on each axis you don't need to use the callback! The SetNextWindowSizeConstraints() parameters are enough. +struct ImGuiSizeCallbackData +{ + void* UserData; // Read-only. What user passed to SetNextWindowSizeConstraints(). Generally store an integer or float in here (need reinterpret_cast<>). + ImVec2 Pos; // Read-only. Window position, for reference. + ImVec2 CurrentSize; // Read-only. Current window size. + ImVec2 DesiredSize; // Read-write. Desired size, based on user's mouse position. Write to this field to restrain resizing. +}; + +// Data payload for Drag and Drop operations: AcceptDragDropPayload(), GetDragDropPayload() +struct ImGuiPayload +{ + // Members + void* Data; // Data (copied and owned by dear imgui) + int DataSize; // Data size + + // [Internal] + ImGuiID SourceId; // Source item id + ImGuiID SourceParentId; // Source parent id (if available) + int DataFrameCount; // Data timestamp + char DataType[32 + 1]; // Data type tag (short user-supplied string, 32 characters max) + bool Preview; // Set when AcceptDragDropPayload() was called and mouse has been hovering the target item (nb: handle overlapping drag targets) + bool Delivery; // Set when AcceptDragDropPayload() was called and mouse button is released over the target item. + + ImGuiPayload() { Clear(); } + void Clear() { SourceId = SourceParentId = 0; Data = NULL; DataSize = 0; memset(DataType, 0, sizeof(DataType)); DataFrameCount = -1; Preview = Delivery = false; } + bool IsDataType(const char* type) const { return DataFrameCount != -1 && strcmp(type, DataType) == 0; } + bool IsPreview() const { return Preview; } + bool IsDelivery() const { return Delivery; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Helpers (ImGuiOnceUponAFrame, ImGuiTextFilter, ImGuiTextBuffer, ImGuiStorage, ImGuiListClipper, Math Operators, ImColor) +//----------------------------------------------------------------------------- + +// Helper: Unicode defines +#define IM_UNICODE_CODEPOINT_INVALID 0xFFFD // Invalid Unicode code point (standard value). +#ifdef IMGUI_USE_WCHAR32 +#define IM_UNICODE_CODEPOINT_MAX 0x10FFFF // Maximum Unicode code point supported by this build. +#else +#define IM_UNICODE_CODEPOINT_MAX 0xFFFF // Maximum Unicode code point supported by this build. +#endif + +// Helper: Execute a block of code at maximum once a frame. Convenient if you want to quickly create a UI within deep-nested code that runs multiple times every frame. +// Usage: static ImGuiOnceUponAFrame oaf; if (oaf) ImGui::Text("This will be called only once per frame"); +struct ImGuiOnceUponAFrame +{ + ImGuiOnceUponAFrame() { RefFrame = -1; } + mutable int RefFrame; + operator bool() const { int current_frame = ImGui::GetFrameCount(); if (RefFrame == current_frame) return false; RefFrame = current_frame; return true; } +}; + +// Helper: Parse and apply text filters. In format "aaaaa[,bbbb][,ccccc]" +struct ImGuiTextFilter +{ + IMGUI_API ImGuiTextFilter(const char* default_filter = ""); + IMGUI_API bool Draw(const char* label = "Filter (inc,-exc)", float width = 0.0f); // Helper calling InputText+Build + IMGUI_API bool PassFilter(const char* text, const char* text_end = NULL) const; + IMGUI_API void Build(); + void Clear() { InputBuf[0] = 0; Build(); } + bool IsActive() const { return !Filters.empty(); } + + // [Internal] + struct ImGuiTextRange + { + const char* b; + const char* e; + + ImGuiTextRange() { b = e = NULL; } + ImGuiTextRange(const char* _b, const char* _e) { b = _b; e = _e; } + bool empty() const { return b == e; } + IMGUI_API void split(char separator, ImVector* out) const; + }; + char InputBuf[256]; + ImVectorFilters; + int CountGrep; +}; + +// Helper: Growable text buffer for logging/accumulating text +// (this could be called 'ImGuiTextBuilder' / 'ImGuiStringBuilder') +struct ImGuiTextBuffer +{ + ImVector Buf; + IMGUI_API static char EmptyString[1]; + + ImGuiTextBuffer() { } + inline char operator[](int i) const { IM_ASSERT(Buf.Data != NULL); return Buf.Data[i]; } + const char* begin() const { return Buf.Data ? &Buf.front() : EmptyString; } + const char* end() const { return Buf.Data ? &Buf.back() : EmptyString; } // Buf is zero-terminated, so end() will point on the zero-terminator + int size() const { return Buf.Size ? Buf.Size - 1 : 0; } + bool empty() const { return Buf.Size <= 1; } + void clear() { Buf.clear(); } + void reserve(int capacity) { Buf.reserve(capacity); } + const char* c_str() const { return Buf.Data ? Buf.Data : EmptyString; } + IMGUI_API void append(const char* str, const char* str_end = NULL); + IMGUI_API void appendf(const char* fmt, ...) IM_FMTARGS(2); + IMGUI_API void appendfv(const char* fmt, va_list args) IM_FMTLIST(2); +}; + +// [Internal] Key+Value for ImGuiStorage +struct ImGuiStoragePair +{ + ImGuiID key; + union { int val_i; float val_f; void* val_p; }; + ImGuiStoragePair(ImGuiID _key, int _val) { key = _key; val_i = _val; } + ImGuiStoragePair(ImGuiID _key, float _val) { key = _key; val_f = _val; } + ImGuiStoragePair(ImGuiID _key, void* _val) { key = _key; val_p = _val; } +}; + +// Helper: Key->Value storage +// Typically you don't have to worry about this since a storage is held within each Window. +// We use it to e.g. store collapse state for a tree (Int 0/1) +// This is optimized for efficient lookup (dichotomy into a contiguous buffer) and rare insertion (typically tied to user interactions aka max once a frame) +// You can use it as custom user storage for temporary values. Declare your own storage if, for example: +// - You want to manipulate the open/close state of a particular sub-tree in your interface (tree node uses Int 0/1 to store their state). +// - You want to store custom debug data easily without adding or editing structures in your code (probably not efficient, but convenient) +// Types are NOT stored, so it is up to you to make sure your Key don't collide with different types. +struct ImGuiStorage +{ + // [Internal] + ImVector Data; + + // - Get***() functions find pair, never add/allocate. Pairs are sorted so a query is O(log N) + // - Set***() functions find pair, insertion on demand if missing. + // - Sorted insertion is costly, paid once. A typical frame shouldn't need to insert any new pair. + void Clear() { Data.clear(); } + IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const; + IMGUI_API void SetInt(ImGuiID key, int val); + IMGUI_API bool GetBool(ImGuiID key, bool default_val = false) const; + IMGUI_API void SetBool(ImGuiID key, bool val); + IMGUI_API float GetFloat(ImGuiID key, float default_val = 0.0f) const; + IMGUI_API void SetFloat(ImGuiID key, float val); + IMGUI_API void* GetVoidPtr(ImGuiID key) const; // default_val is NULL + IMGUI_API void SetVoidPtr(ImGuiID key, void* val); + + // - Get***Ref() functions finds pair, insert on demand if missing, return pointer. Useful if you intend to do Get+Set. + // - References are only valid until a new value is added to the storage. Calling a Set***() function or a Get***Ref() function invalidates the pointer. + // - A typical use case where this is convenient for quick hacking (e.g. add storage during a live Edit&Continue session if you can't modify existing struct) + // float* pvar = ImGui::GetFloatRef(key); ImGui::SliderFloat("var", pvar, 0, 100.0f); some_var += *pvar; + IMGUI_API int* GetIntRef(ImGuiID key, int default_val = 0); + IMGUI_API bool* GetBoolRef(ImGuiID key, bool default_val = false); + IMGUI_API float* GetFloatRef(ImGuiID key, float default_val = 0.0f); + IMGUI_API void** GetVoidPtrRef(ImGuiID key, void* default_val = NULL); + + // Advanced: for quicker full rebuild of a storage (instead of an incremental one), you may add all your contents and then sort once. + IMGUI_API void BuildSortByKey(); + // Obsolete: use on your own storage if you know only integer are being stored (open/close all tree nodes) + IMGUI_API void SetAllInt(int val); + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + //typedef ::ImGuiStoragePair ImGuiStoragePair; // 1.90.8: moved type outside struct +#endif +}; + +// Helper: Manually clip large list of items. +// If you have lots evenly spaced items and you have random access to the list, you can perform coarse +// clipping based on visibility to only submit items that are in view. +// The clipper calculates the range of visible items and advance the cursor to compensate for the non-visible items we have skipped. +// (Dear ImGui already clip items based on their bounds but: it needs to first layout the item to do so, and generally +// fetching/submitting your own data incurs additional cost. Coarse clipping using ImGuiListClipper allows you to easily +// scale using lists with tens of thousands of items without a problem) +// Usage: +// ImGuiListClipper clipper; +// clipper.Begin(1000); // We have 1000 elements, evenly spaced. +// while (clipper.Step()) +// for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) +// ImGui::Text("line number %d", i); +// Generally what happens is: +// - Clipper lets you process the first element (DisplayStart = 0, DisplayEnd = 1) regardless of it being visible or not. +// - User code submit that one element. +// - Clipper can measure the height of the first element +// - Clipper calculate the actual range of elements to display based on the current clipping rectangle, position the cursor before the first visible element. +// - User code submit visible elements. +// - The clipper also handles various subtleties related to keyboard/gamepad navigation, wrapping etc. +struct ImGuiListClipper +{ + ImGuiContext* Ctx; // Parent UI context + int DisplayStart; // First item to display, updated by each call to Step() + int DisplayEnd; // End of items to display (exclusive) + int ItemsCount; // [Internal] Number of items + float ItemsHeight; // [Internal] Height of item after a first step and item submission can calculate it + float StartPosY; // [Internal] Cursor position at the time of Begin() or after table frozen rows are all processed + double StartSeekOffsetY; // [Internal] Account for frozen rows in a table and initial loss of precision in very large windows. + void* TempData; // [Internal] Internal data + + // items_count: Use INT_MAX if you don't know how many items you have (in which case the cursor won't be advanced in the final step, and you can call SeekCursorForItem() manually if you need) + // items_height: Use -1.0f to be calculated automatically on first step. Otherwise pass in the distance between your items, typically GetTextLineHeightWithSpacing() or GetFrameHeightWithSpacing(). + IMGUI_API ImGuiListClipper(); + IMGUI_API ~ImGuiListClipper(); + IMGUI_API void Begin(int items_count, float items_height = -1.0f); + IMGUI_API void End(); // Automatically called on the last call of Step() that returns false. + IMGUI_API bool Step(); // Call until it returns false. The DisplayStart/DisplayEnd fields will be set and you can process/draw those items. + + // Call IncludeItemByIndex() or IncludeItemsByIndex() *BEFORE* first call to Step() if you need a range of items to not be clipped, regardless of their visibility. + // (Due to alignment / padding of certain items it is possible that an extra item may be included on either end of the display range). + inline void IncludeItemByIndex(int item_index) { IncludeItemsByIndex(item_index, item_index + 1); } + IMGUI_API void IncludeItemsByIndex(int item_begin, int item_end); // item_end is exclusive e.g. use (42, 42+1) to make item 42 never clipped. + + // Seek cursor toward given item. This is automatically called while stepping. + // - The only reason to call this is: you can use ImGuiListClipper::Begin(INT_MAX) if you don't know item count ahead of time. + // - In this case, after all steps are done, you'll want to call SeekCursorForItem(item_count). + IMGUI_API void SeekCursorForItem(int item_index); + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + inline void IncludeRangeByIndices(int item_begin, int item_end) { IncludeItemsByIndex(item_begin, item_end); } // [renamed in 1.89.9] + inline void ForceDisplayRangeByIndices(int item_begin, int item_end) { IncludeItemsByIndex(item_begin, item_end); } // [renamed in 1.89.6] + //inline ImGuiListClipper(int items_count, float items_height = -1.0f) { memset(this, 0, sizeof(*this)); ItemsCount = -1; Begin(items_count, items_height); } // [removed in 1.79] +#endif +}; + +// Helpers: ImVec2/ImVec4 operators +// - It is important that we are keeping those disabled by default so they don't leak in user space. +// - This is in order to allow user enabling implicit cast operators between ImVec2/ImVec4 and their own types (using IM_VEC2_CLASS_EXTRA in imconfig.h) +// - Add '#define IMGUI_DEFINE_MATH_OPERATORS' before including this file (or in imconfig.h) to access courtesy maths operators for ImVec2 and ImVec4. +#ifdef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS_IMPLEMENTED +IM_MSVC_RUNTIME_CHECKS_OFF +static inline ImVec2 operator*(const ImVec2& lhs, const float rhs) { return ImVec2(lhs.x * rhs, lhs.y * rhs); } +static inline ImVec2 operator/(const ImVec2& lhs, const float rhs) { return ImVec2(lhs.x / rhs, lhs.y / rhs); } +static inline ImVec2 operator+(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x + rhs.x, lhs.y + rhs.y); } +static inline ImVec2 operator-(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x - rhs.x, lhs.y - rhs.y); } +static inline ImVec2 operator*(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x * rhs.x, lhs.y * rhs.y); } +static inline ImVec2 operator/(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x / rhs.x, lhs.y / rhs.y); } +static inline ImVec2 operator-(const ImVec2& lhs) { return ImVec2(-lhs.x, -lhs.y); } +static inline ImVec2& operator*=(ImVec2& lhs, const float rhs) { lhs.x *= rhs; lhs.y *= rhs; return lhs; } +static inline ImVec2& operator/=(ImVec2& lhs, const float rhs) { lhs.x /= rhs; lhs.y /= rhs; return lhs; } +static inline ImVec2& operator+=(ImVec2& lhs, const ImVec2& rhs) { lhs.x += rhs.x; lhs.y += rhs.y; return lhs; } +static inline ImVec2& operator-=(ImVec2& lhs, const ImVec2& rhs) { lhs.x -= rhs.x; lhs.y -= rhs.y; return lhs; } +static inline ImVec2& operator*=(ImVec2& lhs, const ImVec2& rhs) { lhs.x *= rhs.x; lhs.y *= rhs.y; return lhs; } +static inline ImVec2& operator/=(ImVec2& lhs, const ImVec2& rhs) { lhs.x /= rhs.x; lhs.y /= rhs.y; return lhs; } +static inline bool operator==(const ImVec2& lhs, const ImVec2& rhs) { return lhs.x == rhs.x && lhs.y == rhs.y; } +static inline bool operator!=(const ImVec2& lhs, const ImVec2& rhs) { return lhs.x != rhs.x || lhs.y != rhs.y; } +static inline ImVec4 operator+(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x + rhs.x, lhs.y + rhs.y, lhs.z + rhs.z, lhs.w + rhs.w); } +static inline ImVec4 operator-(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x - rhs.x, lhs.y - rhs.y, lhs.z - rhs.z, lhs.w - rhs.w); } +static inline ImVec4 operator*(const ImVec4& lhs, const ImVec4& rhs) { return ImVec4(lhs.x * rhs.x, lhs.y * rhs.y, lhs.z * rhs.z, lhs.w * rhs.w); } +static inline bool operator==(const ImVec4& lhs, const ImVec4& rhs) { return lhs.x == rhs.x && lhs.y == rhs.y && lhs.z == rhs.z && lhs.w == rhs.w; } +static inline bool operator!=(const ImVec4& lhs, const ImVec4& rhs) { return lhs.x != rhs.x || lhs.y != rhs.y || lhs.z != rhs.z || lhs.w != rhs.w; } +IM_MSVC_RUNTIME_CHECKS_RESTORE +#endif + +// Helpers macros to generate 32-bit encoded colors +// User can declare their own format by #defining the 5 _SHIFT/_MASK macros in their imconfig file. +#ifndef IM_COL32_R_SHIFT +#ifdef IMGUI_USE_BGRA_PACKED_COLOR +#define IM_COL32_R_SHIFT 16 +#define IM_COL32_G_SHIFT 8 +#define IM_COL32_B_SHIFT 0 +#define IM_COL32_A_SHIFT 24 +#define IM_COL32_A_MASK 0xFF000000 +#else +#define IM_COL32_R_SHIFT 0 +#define IM_COL32_G_SHIFT 8 +#define IM_COL32_B_SHIFT 16 +#define IM_COL32_A_SHIFT 24 +#define IM_COL32_A_MASK 0xFF000000 +#endif +#endif +#define IM_COL32(R,G,B,A) (((ImU32)(A)<> IM_COL32_R_SHIFT) & 0xFF) * (1.0f / 255.0f), (float)((rgba >> IM_COL32_G_SHIFT) & 0xFF) * (1.0f / 255.0f), (float)((rgba >> IM_COL32_B_SHIFT) & 0xFF) * (1.0f / 255.0f), (float)((rgba >> IM_COL32_A_SHIFT) & 0xFF) * (1.0f / 255.0f)) {} + inline operator ImU32() const { return ImGui::ColorConvertFloat4ToU32(Value); } + inline operator ImVec4() const { return Value; } + + // FIXME-OBSOLETE: May need to obsolete/cleanup those helpers. + inline void SetHSV(float h, float s, float v, float a = 1.0f){ ImGui::ColorConvertHSVtoRGB(h, s, v, Value.x, Value.y, Value.z); Value.w = a; } + static ImColor HSV(float h, float s, float v, float a = 1.0f) { float r, g, b; ImGui::ColorConvertHSVtoRGB(h, s, v, r, g, b); return ImColor(r, g, b, a); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Multi-Select API flags and structures (ImGuiMultiSelectFlags, ImGuiSelectionRequestType, ImGuiSelectionRequest, ImGuiMultiSelectIO, ImGuiSelectionBasicStorage) +//----------------------------------------------------------------------------- + +// Multi-selection system +// Documentation at: https://github.com/ocornut/imgui/wiki/Multi-Select +// - Refer to 'Demo->Widgets->Selection State & Multi-Select' for demos using this. +// - This system implements standard multi-selection idioms (CTRL+Mouse/Keyboard, SHIFT+Mouse/Keyboard, etc) +// with support for clipper (skipping non-visible items), box-select and many other details. +// - Selectable(), Checkbox() are supported but custom widgets may use it as well. +// - TreeNode() is technically supported but... using this correctly is more complicated: you need some sort of linear/random access to your tree, +// which is suited to advanced trees setups also implementing filters and clipper. We will work toward simplifying and demoing it. +// - In the spirit of Dear ImGui design, your code owns actual selection data. +// This is designed to allow all kinds of selection storage you may use in your application e.g. set/map/hash. +// About ImGuiSelectionBasicStorage: +// - This is an optional helper to store a selection state and apply selection requests. +// - It is used by our demos and provided as a convenience to quickly implement multi-selection. +// Usage: +// - Identify submitted items with SetNextItemSelectionUserData(), most likely using an index into your current data-set. +// - Store and maintain actual selection data using persistent object identifiers. +// - Usage flow: +// BEGIN - (1) Call BeginMultiSelect() and retrieve the ImGuiMultiSelectIO* result. +// - (2) Honor request list (SetAll/SetRange requests) by updating your selection data. Same code as Step 6. +// - (3) [If using clipper] You need to make sure RangeSrcItem is always submitted. Calculate its index and pass to clipper.IncludeItemByIndex(). If storing indices in ImGuiSelectionUserData, a simple clipper.IncludeItemByIndex(ms_io->RangeSrcItem) call will work. +// LOOP - (4) Submit your items with SetNextItemSelectionUserData() + Selectable()/TreeNode() calls. +// END - (5) Call EndMultiSelect() and retrieve the ImGuiMultiSelectIO* result. +// - (6) Honor request list (SetAll/SetRange requests) by updating your selection data. Same code as Step 2. +// If you submit all items (no clipper), Step 2 and 3 are optional and will be handled by each item themselves. It is fine to always honor those steps. +// About ImGuiSelectionUserData: +// - This can store an application-defined identifier (e.g. index or pointer) submitted via SetNextItemSelectionUserData(). +// - In return we store them into RangeSrcItem/RangeFirstItem/RangeLastItem and other fields in ImGuiMultiSelectIO. +// - Most applications will store an object INDEX, hence the chosen name and type. Storing an index is natural, because +// SetRange requests will give you two end-points and you will need to iterate/interpolate between them to update your selection. +// - However it is perfectly possible to store a POINTER or another IDENTIFIER inside ImGuiSelectionUserData. +// Our system never assume that you identify items by indices, it never attempts to interpolate between two values. +// - If you enable ImGuiMultiSelectFlags_NoRangeSelect then it is guaranteed that you will never have to interpolate +// between two ImGuiSelectionUserData, which may be a convenient way to use part of the feature with less code work. +// - As most users will want to store an index, for convenience and to reduce confusion we use ImS64 instead of void*, +// being syntactically easier to downcast. Feel free to reinterpret_cast and store a pointer inside. + +// Flags for BeginMultiSelect() +enum ImGuiMultiSelectFlags_ +{ + ImGuiMultiSelectFlags_None = 0, + ImGuiMultiSelectFlags_SingleSelect = 1 << 0, // Disable selecting more than one item. This is available to allow single-selection code to share same code/logic if desired. It essentially disables the main purpose of BeginMultiSelect() tho! + ImGuiMultiSelectFlags_NoSelectAll = 1 << 1, // Disable CTRL+A shortcut to select all. + ImGuiMultiSelectFlags_NoRangeSelect = 1 << 2, // Disable Shift+selection mouse/keyboard support (useful for unordered 2D selection). With BoxSelect is also ensure contiguous SetRange requests are not combined into one. This allows not handling interpolation in SetRange requests. + ImGuiMultiSelectFlags_NoAutoSelect = 1 << 3, // Disable selecting items when navigating (useful for e.g. supporting range-select in a list of checkboxes). + ImGuiMultiSelectFlags_NoAutoClear = 1 << 4, // Disable clearing selection when navigating or selecting another one (generally used with ImGuiMultiSelectFlags_NoAutoSelect. useful for e.g. supporting range-select in a list of checkboxes). + ImGuiMultiSelectFlags_NoAutoClearOnReselect = 1 << 5, // Disable clearing selection when clicking/selecting an already selected item. + ImGuiMultiSelectFlags_BoxSelect1d = 1 << 6, // Enable box-selection with same width and same x pos items (e.g. full row Selectable()). Box-selection works better with little bit of spacing between items hit-box in order to be able to aim at empty space. + ImGuiMultiSelectFlags_BoxSelect2d = 1 << 7, // Enable box-selection with varying width or varying x pos items support (e.g. different width labels, or 2D layout/grid). This is slower: alters clipping logic so that e.g. horizontal movements will update selection of normally clipped items. + ImGuiMultiSelectFlags_BoxSelectNoScroll = 1 << 8, // Disable scrolling when box-selecting near edges of scope. + ImGuiMultiSelectFlags_ClearOnEscape = 1 << 9, // Clear selection when pressing Escape while scope is focused. + ImGuiMultiSelectFlags_ClearOnClickVoid = 1 << 10, // Clear selection when clicking on empty location within scope. + ImGuiMultiSelectFlags_ScopeWindow = 1 << 11, // Scope for _BoxSelect and _ClearOnClickVoid is whole window (Default). Use if BeginMultiSelect() covers a whole window or used a single time in same window. + ImGuiMultiSelectFlags_ScopeRect = 1 << 12, // Scope for _BoxSelect and _ClearOnClickVoid is rectangle encompassing BeginMultiSelect()/EndMultiSelect(). Use if BeginMultiSelect() is called multiple times in same window. + ImGuiMultiSelectFlags_SelectOnClick = 1 << 13, // Apply selection on mouse down when clicking on unselected item. (Default) + ImGuiMultiSelectFlags_SelectOnClickRelease = 1 << 14, // Apply selection on mouse release when clicking an unselected item. Allow dragging an unselected item without altering selection. + //ImGuiMultiSelectFlags_RangeSelect2d = 1 << 15, // Shift+Selection uses 2d geometry instead of linear sequence, so possible to use Shift+up/down to select vertically in grid. Analogous to what BoxSelect does. + ImGuiMultiSelectFlags_NavWrapX = 1 << 16, // [Temporary] Enable navigation wrapping on X axis. Provided as a convenience because we don't have a design for the general Nav API for this yet. When the more general feature be public we may obsolete this flag in favor of new one. +}; + +// Main IO structure returned by BeginMultiSelect()/EndMultiSelect(). +// This mainly contains a list of selection requests. +// - Use 'Demo->Tools->Debug Log->Selection' to see requests as they happen. +// - Some fields are only useful if your list is dynamic and allows deletion (getting post-deletion focus/state right is shown in the demo) +// - Below: who reads/writes each fields? 'r'=read, 'w'=write, 'ms'=multi-select code, 'app'=application/user code. +struct ImGuiMultiSelectIO +{ + //------------------------------------------// BeginMultiSelect / EndMultiSelect + ImVector Requests; // ms:w, app:r / ms:w app:r // Requests to apply to your selection data. + ImGuiSelectionUserData RangeSrcItem; // ms:w app:r / // (If using clipper) Begin: Source item (often the first selected item) must never be clipped: use clipper.IncludeItemByIndex() to ensure it is submitted. + ImGuiSelectionUserData NavIdItem; // ms:w, app:r / // (If using deletion) Last known SetNextItemSelectionUserData() value for NavId (if part of submitted items). + bool NavIdSelected; // ms:w, app:r / app:r // (If using deletion) Last known selection state for NavId (if part of submitted items). + bool RangeSrcReset; // app:w / ms:r // (If using deletion) Set before EndMultiSelect() to reset ResetSrcItem (e.g. if deleted selection). + int ItemsCount; // ms:w, app:r / app:r // 'int items_count' parameter to BeginMultiSelect() is copied here for convenience, allowing simpler calls to your ApplyRequests handler. Not used internally. +}; + +// Selection request type +enum ImGuiSelectionRequestType +{ + ImGuiSelectionRequestType_None = 0, + ImGuiSelectionRequestType_SetAll, // Request app to clear selection (if Selected==false) or select all items (if Selected==true). We cannot set RangeFirstItem/RangeLastItem as its contents is entirely up to user (not necessarily an index) + ImGuiSelectionRequestType_SetRange, // Request app to select/unselect [RangeFirstItem..RangeLastItem] items (inclusive) based on value of Selected. Only EndMultiSelect() request this, app code can read after BeginMultiSelect() and it will always be false. +}; + +// Selection request item +struct ImGuiSelectionRequest +{ + //------------------------------------------// BeginMultiSelect / EndMultiSelect + ImGuiSelectionRequestType Type; // ms:w, app:r / ms:w, app:r // Request type. You'll most often receive 1 Clear + 1 SetRange with a single-item range. + bool Selected; // ms:w, app:r / ms:w, app:r // Parameter for SetAll/SetRange requests (true = select, false = unselect) + ImS8 RangeDirection; // / ms:w app:r // Parameter for SetRange request: +1 when RangeFirstItem comes before RangeLastItem, -1 otherwise. Useful if you want to preserve selection order on a backward Shift+Click. + ImGuiSelectionUserData RangeFirstItem; // / ms:w, app:r // Parameter for SetRange request (this is generally == RangeSrcItem when shift selecting from top to bottom). + ImGuiSelectionUserData RangeLastItem; // / ms:w, app:r // Parameter for SetRange request (this is generally == RangeSrcItem when shift selecting from bottom to top). Inclusive! +}; + +// Optional helper to store multi-selection state + apply multi-selection requests. +// - Used by our demos and provided as a convenience to easily implement basic multi-selection. +// - Iterate selection with 'void* it = NULL; ImGuiID id; while (selection.GetNextSelectedItem(&it, &id)) { ... }' +// Or you can check 'if (Contains(id)) { ... }' for each possible object if their number is not too high to iterate. +// - USING THIS IS NOT MANDATORY. This is only a helper and not a required API. +// To store a multi-selection, in your application you could: +// - Use this helper as a convenience. We use our simple key->value ImGuiStorage as a std::set replacement. +// - Use your own external storage: e.g. std::set, std::vector, interval trees, intrusively stored selection etc. +// In ImGuiSelectionBasicStorage we: +// - always use indices in the multi-selection API (passed to SetNextItemSelectionUserData(), retrieved in ImGuiMultiSelectIO) +// - use the AdapterIndexToStorageId() indirection layer to abstract how persistent selection data is derived from an index. +// - use decently optimized logic to allow queries and insertion of very large selection sets. +// - do not preserve selection order. +// Many combinations are possible depending on how you prefer to store your items and how you prefer to store your selection. +// Large applications are likely to eventually want to get rid of this indirection layer and do their own thing. +// See https://github.com/ocornut/imgui/wiki/Multi-Select for details and pseudo-code using this helper. +struct ImGuiSelectionBasicStorage +{ + // Members + int Size; // // Number of selected items, maintained by this helper. + bool PreserveOrder; // = false // GetNextSelectedItem() will return ordered selection (currently implemented by two additional sorts of selection. Could be improved) + void* UserData; // = NULL // User data for use by adapter function // e.g. selection.UserData = (void*)my_items; + ImGuiID (*AdapterIndexToStorageId)(ImGuiSelectionBasicStorage* self, int idx); // e.g. selection.AdapterIndexToStorageId = [](ImGuiSelectionBasicStorage* self, int idx) { return ((MyItems**)self->UserData)[idx]->ID; }; + int _SelectionOrder;// [Internal] Increasing counter to store selection order + ImGuiStorage _Storage; // [Internal] Selection set. Think of this as similar to e.g. std::set. Prefer not accessing directly: iterate with GetNextSelectedItem(). + + // Methods + IMGUI_API ImGuiSelectionBasicStorage(); + IMGUI_API void ApplyRequests(ImGuiMultiSelectIO* ms_io); // Apply selection requests coming from BeginMultiSelect() and EndMultiSelect() functions. It uses 'items_count' passed to BeginMultiSelect() + IMGUI_API bool Contains(ImGuiID id) const; // Query if an item id is in selection. + IMGUI_API void Clear(); // Clear selection + IMGUI_API void Swap(ImGuiSelectionBasicStorage& r); // Swap two selections + IMGUI_API void SetItemSelected(ImGuiID id, bool selected); // Add/remove an item from selection (generally done by ApplyRequests() function) + IMGUI_API bool GetNextSelectedItem(void** opaque_it, ImGuiID* out_id); // Iterate selection with 'void* it = NULL; ImGuiId id; while (selection.GetNextSelectedItem(&it, &id)) { ... }' + inline ImGuiID GetStorageIdFromIndex(int idx) { return AdapterIndexToStorageId(this, idx); } // Convert index to item id based on provided adapter. +}; + +// Optional helper to apply multi-selection requests to existing randomly accessible storage. +// Convenient if you want to quickly wire multi-select API on e.g. an array of bool or items storing their own selection state. +struct ImGuiSelectionExternalStorage +{ + // Members + void* UserData; // User data for use by adapter function // e.g. selection.UserData = (void*)my_items; + void (*AdapterSetItemSelected)(ImGuiSelectionExternalStorage* self, int idx, bool selected); // e.g. AdapterSetItemSelected = [](ImGuiSelectionExternalStorage* self, int idx, bool selected) { ((MyItems**)self->UserData)[idx]->Selected = selected; } + + // Methods + IMGUI_API ImGuiSelectionExternalStorage(); + IMGUI_API void ApplyRequests(ImGuiMultiSelectIO* ms_io); // Apply selection requests by using AdapterSetItemSelected() calls +}; + +//----------------------------------------------------------------------------- +// [SECTION] Drawing API (ImDrawCmd, ImDrawIdx, ImDrawVert, ImDrawChannel, ImDrawListSplitter, ImDrawListFlags, ImDrawList, ImDrawData) +// Hold a series of drawing commands. The user provides a renderer for ImDrawData which essentially contains an array of ImDrawList. +//----------------------------------------------------------------------------- + +// The maximum line width to bake anti-aliased textures for. Build atlas with ImFontAtlasFlags_NoBakedLines to disable baking. +#ifndef IM_DRAWLIST_TEX_LINES_WIDTH_MAX +#define IM_DRAWLIST_TEX_LINES_WIDTH_MAX (63) +#endif + +// ImDrawCallback: Draw callbacks for advanced uses [configurable type: override in imconfig.h] +// NB: You most likely do NOT need to use draw callbacks just to create your own widget or customized UI rendering, +// you can poke into the draw list for that! Draw callback may be useful for example to: +// A) Change your GPU render state, +// B) render a complex 3D scene inside a UI element without an intermediate texture/render target, etc. +// The expected behavior from your rendering function is 'if (cmd.UserCallback != NULL) { cmd.UserCallback(parent_list, cmd); } else { RenderTriangles() }' +// If you want to override the signature of ImDrawCallback, you can simply use e.g. '#define ImDrawCallback MyDrawCallback' (in imconfig.h) + update rendering backend accordingly. +#ifndef ImDrawCallback +typedef void (*ImDrawCallback)(const ImDrawList* parent_list, const ImDrawCmd* cmd); +#endif + +// Special Draw callback value to request renderer backend to reset the graphics/render state. +// The renderer backend needs to handle this special value, otherwise it will crash trying to call a function at this address. +// This is useful, for example, if you submitted callbacks which you know have altered the render state and you want it to be restored. +// Render state is not reset by default because they are many perfectly useful way of altering render state (e.g. changing shader/blending settings before an Image call). +#define ImDrawCallback_ResetRenderState (ImDrawCallback)(-8) + +// Typically, 1 command = 1 GPU draw call (unless command is a callback) +// - VtxOffset: When 'io.BackendFlags & ImGuiBackendFlags_RendererHasVtxOffset' is enabled, +// this fields allow us to render meshes larger than 64K vertices while keeping 16-bit indices. +// Backends made for <1.71. will typically ignore the VtxOffset fields. +// - The ClipRect/TextureId/VtxOffset fields must be contiguous as we memcmp() them together (this is asserted for). +struct ImDrawCmd +{ + ImVec4 ClipRect; // 4*4 // Clipping rectangle (x1, y1, x2, y2). Subtract ImDrawData->DisplayPos to get clipping rectangle in "viewport" coordinates + ImTextureID TextureId; // 4-8 // User-provided texture ID. Set by user in ImfontAtlas::SetTexID() for fonts or passed to Image*() functions. Ignore if never using images or multiple fonts atlas. + unsigned int VtxOffset; // 4 // Start offset in vertex buffer. ImGuiBackendFlags_RendererHasVtxOffset: always 0, otherwise may be >0 to support meshes larger than 64K vertices with 16-bit indices. + unsigned int IdxOffset; // 4 // Start offset in index buffer. + unsigned int ElemCount; // 4 // Number of indices (multiple of 3) to be rendered as triangles. Vertices are stored in the callee ImDrawList's vtx_buffer[] array, indices in idx_buffer[]. + ImDrawCallback UserCallback; // 4-8 // If != NULL, call the function instead of rendering the vertices. clip_rect and texture_id will be set normally. + void* UserCallbackData; // 4-8 // The draw callback code can access this. + + ImDrawCmd() { memset(this, 0, sizeof(*this)); } // Also ensure our padding fields are zeroed + + // Since 1.83: returns ImTextureID associated with this draw call. Warning: DO NOT assume this is always same as 'TextureId' (we will change this function for an upcoming feature) + inline ImTextureID GetTexID() const { return TextureId; } +}; + +// Vertex layout +#ifndef IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT +struct ImDrawVert +{ + ImVec2 pos; + ImVec2 uv; + ImU32 col; +}; +#else +// You can override the vertex format layout by defining IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT in imconfig.h +// The code expect ImVec2 pos (8 bytes), ImVec2 uv (8 bytes), ImU32 col (4 bytes), but you can re-order them or add other fields as needed to simplify integration in your engine. +// The type has to be described within the macro (you can either declare the struct or use a typedef). This is because ImVec2/ImU32 are likely not declared at the time you'd want to set your type up. +// NOTE: IMGUI DOESN'T CLEAR THE STRUCTURE AND DOESN'T CALL A CONSTRUCTOR SO ANY CUSTOM FIELD WILL BE UNINITIALIZED. IF YOU ADD EXTRA FIELDS (SUCH AS A 'Z' COORDINATES) YOU WILL NEED TO CLEAR THEM DURING RENDER OR TO IGNORE THEM. +IMGUI_OVERRIDE_DRAWVERT_STRUCT_LAYOUT; +#endif + +// [Internal] For use by ImDrawList +struct ImDrawCmdHeader +{ + ImVec4 ClipRect; + ImTextureID TextureId; + unsigned int VtxOffset; +}; + +// [Internal] For use by ImDrawListSplitter +struct ImDrawChannel +{ + ImVector _CmdBuffer; + ImVector _IdxBuffer; +}; + + +// Split/Merge functions are used to split the draw list into different layers which can be drawn into out of order. +// This is used by the Columns/Tables API, so items of each column can be batched together in a same draw call. +struct ImDrawListSplitter +{ + int _Current; // Current channel number (0) + int _Count; // Number of active channels (1+) + ImVector _Channels; // Draw channels (not resized down so _Count might be < Channels.Size) + + inline ImDrawListSplitter() { memset(this, 0, sizeof(*this)); } + inline ~ImDrawListSplitter() { ClearFreeMemory(); } + inline void Clear() { _Current = 0; _Count = 1; } // Do not clear Channels[] so our allocations are reused next frame + IMGUI_API void ClearFreeMemory(); + IMGUI_API void Split(ImDrawList* draw_list, int count); + IMGUI_API void Merge(ImDrawList* draw_list); + IMGUI_API void SetCurrentChannel(ImDrawList* draw_list, int channel_idx); +}; + +// Flags for ImDrawList functions +// (Legacy: bit 0 must always correspond to ImDrawFlags_Closed to be backward compatible with old API using a bool. Bits 1..3 must be unused) +enum ImDrawFlags_ +{ + ImDrawFlags_None = 0, + ImDrawFlags_Closed = 1 << 0, // PathStroke(), AddPolyline(): specify that shape should be closed (Important: this is always == 1 for legacy reason) + ImDrawFlags_RoundCornersTopLeft = 1 << 4, // AddRect(), AddRectFilled(), PathRect(): enable rounding top-left corner only (when rounding > 0.0f, we default to all corners). Was 0x01. + ImDrawFlags_RoundCornersTopRight = 1 << 5, // AddRect(), AddRectFilled(), PathRect(): enable rounding top-right corner only (when rounding > 0.0f, we default to all corners). Was 0x02. + ImDrawFlags_RoundCornersBottomLeft = 1 << 6, // AddRect(), AddRectFilled(), PathRect(): enable rounding bottom-left corner only (when rounding > 0.0f, we default to all corners). Was 0x04. + ImDrawFlags_RoundCornersBottomRight = 1 << 7, // AddRect(), AddRectFilled(), PathRect(): enable rounding bottom-right corner only (when rounding > 0.0f, we default to all corners). Wax 0x08. + ImDrawFlags_RoundCornersNone = 1 << 8, // AddRect(), AddRectFilled(), PathRect(): disable rounding on all corners (when rounding > 0.0f). This is NOT zero, NOT an implicit flag! + ImDrawFlags_RoundCornersTop = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight, + ImDrawFlags_RoundCornersBottom = ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersBottomRight, + ImDrawFlags_RoundCornersLeft = ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersTopLeft, + ImDrawFlags_RoundCornersRight = ImDrawFlags_RoundCornersBottomRight | ImDrawFlags_RoundCornersTopRight, + ImDrawFlags_RoundCornersAll = ImDrawFlags_RoundCornersTopLeft | ImDrawFlags_RoundCornersTopRight | ImDrawFlags_RoundCornersBottomLeft | ImDrawFlags_RoundCornersBottomRight, + ImDrawFlags_RoundCornersDefault_ = ImDrawFlags_RoundCornersAll, // Default to ALL corners if none of the _RoundCornersXX flags are specified. + ImDrawFlags_RoundCornersMask_ = ImDrawFlags_RoundCornersAll | ImDrawFlags_RoundCornersNone, + ImDrawFlags_ShadowCutOutShapeBackground = 1 << 9, // Do not render the shadow shape under the objects to be shadowed to save on fill-rate or facilitate blending. Slower on CPU. +}; + +// Flags for ImDrawList instance. Those are set automatically by ImGui:: functions from ImGuiIO settings, and generally not manipulated directly. +// It is however possible to temporarily alter flags between calls to ImDrawList:: functions. +enum ImDrawListFlags_ +{ + ImDrawListFlags_None = 0, + ImDrawListFlags_AntiAliasedLines = 1 << 0, // Enable anti-aliased lines/borders (*2 the number of triangles for 1.0f wide line or lines thin enough to be drawn using textures, otherwise *3 the number of triangles) + ImDrawListFlags_AntiAliasedLinesUseTex = 1 << 1, // Enable anti-aliased lines/borders using textures when possible. Require backend to render with bilinear filtering (NOT point/nearest filtering). + ImDrawListFlags_AntiAliasedFill = 1 << 2, // Enable anti-aliased edge around filled shapes (rounded rectangles, circles). + ImDrawListFlags_AllowVtxOffset = 1 << 3, // Can emit 'VtxOffset > 0' to allow large meshes. Set when 'ImGuiBackendFlags_RendererHasVtxOffset' is enabled. +}; + +// Draw command list +// This is the low-level list of polygons that ImGui:: functions are filling. At the end of the frame, +// all command lists are passed to your ImGuiIO::RenderDrawListFn function for rendering. +// Each dear imgui window contains its own ImDrawList. You can use ImGui::GetWindowDrawList() to +// access the current window draw list and draw custom primitives. +// You can interleave normal ImGui:: calls and adding primitives to the current draw list. +// In single viewport mode, top-left is == GetMainViewport()->Pos (generally 0,0), bottom-right is == GetMainViewport()->Pos+Size (generally io.DisplaySize). +// You are totally free to apply whatever transformation matrix to want to the data (depending on the use of the transformation you may want to apply it to ClipRect as well!) +// Important: Primitives are always added to the list and not culled (culling is done at higher-level by ImGui:: functions), if you use this API a lot consider coarse culling your drawn objects. +struct ImDrawList +{ + // This is what you have to render + ImVector CmdBuffer; // Draw commands. Typically 1 command = 1 GPU draw call, unless the command is a callback. + ImVector IdxBuffer; // Index buffer. Each command consume ImDrawCmd::ElemCount of those + ImVector VtxBuffer; // Vertex buffer. + ImDrawListFlags Flags; // Flags, you may poke into these to adjust anti-aliasing settings per-primitive. + + // [Internal, used while building lists] + unsigned int _VtxCurrentIdx; // [Internal] generally == VtxBuffer.Size unless we are past 64K vertices, in which case this gets reset to 0. + ImDrawListSharedData* _Data; // Pointer to shared draw data (you can use ImGui::GetDrawListSharedData() to get the one from current ImGui context) + ImDrawVert* _VtxWritePtr; // [Internal] point within VtxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + ImDrawIdx* _IdxWritePtr; // [Internal] point within IdxBuffer.Data after each add command (to avoid using the ImVector<> operators too much) + ImVector _Path; // [Internal] current path building + ImDrawCmdHeader _CmdHeader; // [Internal] template of active commands. Fields should match those of CmdBuffer.back(). + ImDrawListSplitter _Splitter; // [Internal] for channels api (note: prefer using your own persistent instance of ImDrawListSplitter!) + ImVector _ClipRectStack; // [Internal] + ImVector _TextureIdStack; // [Internal] + float _FringeScale; // [Internal] anti-alias fringe is scaled by this value, this helps to keep things sharp while zooming at vertex buffer content + const char* _OwnerName; // Pointer to owner window's name for debugging + + // If you want to create ImDrawList instances, pass them ImGui::GetDrawListSharedData() or create and use your own ImDrawListSharedData (so you can use ImDrawList without ImGui) + ImDrawList(ImDrawListSharedData* shared_data) { memset(this, 0, sizeof(*this)); _Data = shared_data; } + + ~ImDrawList() { _ClearFreeMemory(); } + IMGUI_API void PushClipRect(const ImVec2& clip_rect_min, const ImVec2& clip_rect_max, bool intersect_with_current_clip_rect = false); // Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) + IMGUI_API void PushClipRectFullScreen(); + IMGUI_API void PopClipRect(); + IMGUI_API void PushTextureID(ImTextureID texture_id); + IMGUI_API void PopTextureID(); + inline ImVec2 GetClipRectMin() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.x, cr.y); } + inline ImVec2 GetClipRectMax() const { const ImVec4& cr = _ClipRectStack.back(); return ImVec2(cr.z, cr.w); } + + // Primitives + // - Filled shapes must always use clockwise winding order. The anti-aliasing fringe depends on it. Counter-clockwise shapes will have "inward" anti-aliasing. + // - For rectangular primitives, "p_min" and "p_max" represent the upper-left and lower-right corners. + // - For circle primitives, use "num_segments == 0" to automatically calculate tessellation (preferred). + // In older versions (until Dear ImGui 1.77) the AddCircle functions defaulted to num_segments == 12. + // In future versions we will use textures to provide cheaper and higher-quality circles. + // Use AddNgon() and AddNgonFilled() functions if you need to guarantee a specific number of sides. + IMGUI_API void AddLine(const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness = 1.0f); + IMGUI_API void AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding = 0.0f, ImDrawFlags flags = 0, float thickness = 1.0f); // a: upper-left, b: lower-right (== upper-left + size) + IMGUI_API void AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding = 0.0f, ImDrawFlags flags = 0); // a: upper-left, b: lower-right (== upper-left + size) + IMGUI_API void AddRectFilledMultiColor(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left); + IMGUI_API void AddQuad(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness = 1.0f); + IMGUI_API void AddQuadFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col); + IMGUI_API void AddTriangle(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness = 1.0f); + IMGUI_API void AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col); + IMGUI_API void AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments = 0, float thickness = 1.0f); + IMGUI_API void AddCircleFilled(const ImVec2& center, float radius, ImU32 col, int num_segments = 0); + IMGUI_API void AddNgon(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness = 1.0f); + IMGUI_API void AddNgonFilled(const ImVec2& center, float radius, ImU32 col, int num_segments); + IMGUI_API void AddEllipse(const ImVec2& center, const ImVec2& radius, ImU32 col, float rot = 0.0f, int num_segments = 0, float thickness = 1.0f); + IMGUI_API void AddEllipseFilled(const ImVec2& center, const ImVec2& radius, ImU32 col, float rot = 0.0f, int num_segments = 0); + IMGUI_API void AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL); + IMGUI_API void AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end = NULL, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = NULL); + IMGUI_API void AddBezierCubic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments = 0); // Cubic Bezier (4 control points) + IMGUI_API void AddBezierQuadratic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness, int num_segments = 0); // Quadratic Bezier (3 control points) + + // General polygon + // - Only simple polygons are supported by filling functions (no self-intersections, no holes). + // - Concave polygon fill is more expensive than convex one: it has O(N^2) complexity. Provided as a convenience fo user but not used by main library. + IMGUI_API void AddPolyline(const ImVec2* points, int num_points, ImU32 col, ImDrawFlags flags, float thickness); + IMGUI_API void AddConvexPolyFilled(const ImVec2* points, int num_points, ImU32 col); + IMGUI_API void AddConcavePolyFilled(const ImVec2* points, int num_points, ImU32 col); + + // Image primitives + // - Read FAQ to understand what ImTextureID is. + // - "p_min" and "p_max" represent the upper-left and lower-right corners of the rectangle. + // - "uv_min" and "uv_max" represent the normalized texture coordinates to use for those corners. Using (0,0)->(1,1) texture coordinates will generally display the entire texture. + IMGUI_API void AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min = ImVec2(0, 0), const ImVec2& uv_max = ImVec2(1, 1), ImU32 col = IM_COL32_WHITE); + IMGUI_API void AddImageQuad(ImTextureID user_texture_id, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& uv1 = ImVec2(0, 0), const ImVec2& uv2 = ImVec2(1, 0), const ImVec2& uv3 = ImVec2(1, 1), const ImVec2& uv4 = ImVec2(0, 1), ImU32 col = IM_COL32_WHITE); + IMGUI_API void AddImageRounded(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col, float rounding, ImDrawFlags flags = 0); + + // Shadows primitives + // [BETA] API + // - Add shadow for a object, with min/max or center/radius describing the object extents, and offset shifting the shadow. + // - Rounding parameters refer to the object itself, not the shadow! + // - By default, the area under the object is filled, because this is simpler to process. + // Using the ImDrawFlags_ShadowCutOutShapeBackground flag makes the function not render this area and leave a hole under the object. + // - Shadows w/ fill under the object: a bit faster for CPU, more pixels rendered, visible/darkening if used behind a transparent shape. + // Typically used by: small, frequent objects, opaque objects, transparent objects if shadow darkening isn't an issue. + // - Shadows w/ hole under the object: a bit slower for CPU, less pixels rendered, no difference if used behind a transparent shape. + // Typically used by: large, infrequent objects, transparent objects if exact blending/color matter. + // - FIXME-SHADOWS: 'offset' + ImDrawFlags_ShadowCutOutShapeBackground are not currently supported together with AddShadowCircle(), AddShadowConvexPoly(), AddShadowNGon(). + #define IMGUI_HAS_SHADOWS 1 + IMGUI_API void AddShadowRect(const ImVec2& obj_min, const ImVec2& obj_max, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags = 0, float obj_rounding = 0.0f); + IMGUI_API void AddShadowCircle(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags = 0, int obj_num_segments = 12); + IMGUI_API void AddShadowConvexPoly(const ImVec2* points, int points_count, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags = 0); + IMGUI_API void AddShadowNGon(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, int obj_num_segments); + + // Stateful path API, add points then finish with PathFillConvex() or PathStroke() + // - Important: filled shapes must always use clockwise winding order! The anti-aliasing fringe depends on it. Counter-clockwise shapes will have "inward" anti-aliasing. + // so e.g. 'PathArcTo(center, radius, PI * -0.5f, PI)' is ok, whereas 'PathArcTo(center, radius, PI, PI * -0.5f)' won't have correct anti-aliasing when followed by PathFillConvex(). + inline void PathClear() { _Path.Size = 0; } + inline void PathLineTo(const ImVec2& pos) { _Path.push_back(pos); } + inline void PathLineToMergeDuplicate(const ImVec2& pos) { if (_Path.Size == 0 || memcmp(&_Path.Data[_Path.Size - 1], &pos, 8) != 0) _Path.push_back(pos); } + inline void PathFillConvex(ImU32 col) { AddConvexPolyFilled(_Path.Data, _Path.Size, col); _Path.Size = 0; } + inline void PathFillConcave(ImU32 col) { AddConcavePolyFilled(_Path.Data, _Path.Size, col); _Path.Size = 0; } + inline void PathStroke(ImU32 col, ImDrawFlags flags = 0, float thickness = 1.0f) { AddPolyline(_Path.Data, _Path.Size, col, flags, thickness); _Path.Size = 0; } + IMGUI_API void PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_segments = 0); + IMGUI_API void PathArcToFast(const ImVec2& center, float radius, int a_min_of_12, int a_max_of_12); // Use precomputed angles for a 12 steps circle + IMGUI_API void PathEllipticalArcTo(const ImVec2& center, const ImVec2& radius, float rot, float a_min, float a_max, int num_segments = 0); // Ellipse + IMGUI_API void PathBezierCubicCurveTo(const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, int num_segments = 0); // Cubic Bezier (4 control points) + IMGUI_API void PathBezierQuadraticCurveTo(const ImVec2& p2, const ImVec2& p3, int num_segments = 0); // Quadratic Bezier (3 control points) + IMGUI_API void PathRect(const ImVec2& rect_min, const ImVec2& rect_max, float rounding = 0.0f, ImDrawFlags flags = 0); + + // Advanced + IMGUI_API void AddCallback(ImDrawCallback callback, void* callback_data); // Your rendering function must check for 'UserCallback' in ImDrawCmd and call the function instead of rendering triangles. + IMGUI_API void AddDrawCmd(); // This is useful if you need to forcefully create a new draw call (to allow for dependent rendering / blending). Otherwise primitives are merged into the same draw-call as much as possible + IMGUI_API ImDrawList* CloneOutput() const; // Create a clone of the CmdBuffer/IdxBuffer/VtxBuffer. + + // Advanced: Channels + // - Use to split render into layers. By switching channels to can render out-of-order (e.g. submit FG primitives before BG primitives) + // - Use to minimize draw calls (e.g. if going back-and-forth between multiple clipping rectangles, prefer to append into separate channels then merge at the end) + // - This API shouldn't have been in ImDrawList in the first place! + // Prefer using your own persistent instance of ImDrawListSplitter as you can stack them. + // Using the ImDrawList::ChannelsXXXX you cannot stack a split over another. + inline void ChannelsSplit(int count) { _Splitter.Split(this, count); } + inline void ChannelsMerge() { _Splitter.Merge(this); } + inline void ChannelsSetCurrent(int n) { _Splitter.SetCurrentChannel(this, n); } + + // Advanced: Primitives allocations + // - We render triangles (three vertices) + // - All primitives needs to be reserved via PrimReserve() beforehand. + IMGUI_API void PrimReserve(int idx_count, int vtx_count); + IMGUI_API void PrimUnreserve(int idx_count, int vtx_count); + IMGUI_API void PrimRect(const ImVec2& a, const ImVec2& b, ImU32 col); // Axis aligned rectangle (composed of two triangles) + IMGUI_API void PrimRectUV(const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, ImU32 col); + IMGUI_API void PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col); + inline void PrimWriteVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { _VtxWritePtr->pos = pos; _VtxWritePtr->uv = uv; _VtxWritePtr->col = col; _VtxWritePtr++; _VtxCurrentIdx++; } + inline void PrimWriteIdx(ImDrawIdx idx) { *_IdxWritePtr = idx; _IdxWritePtr++; } + inline void PrimVtx(const ImVec2& pos, const ImVec2& uv, ImU32 col) { PrimWriteIdx((ImDrawIdx)_VtxCurrentIdx); PrimWriteVtx(pos, uv, col); } // Write vertex with unique index + + // Obsolete names + //inline void AddEllipse(const ImVec2& center, float radius_x, float radius_y, ImU32 col, float rot = 0.0f, int num_segments = 0, float thickness = 1.0f) { AddEllipse(center, ImVec2(radius_x, radius_y), col, rot, num_segments, thickness); } // OBSOLETED in 1.90.5 (Mar 2024) + //inline void AddEllipseFilled(const ImVec2& center, float radius_x, float radius_y, ImU32 col, float rot = 0.0f, int num_segments = 0) { AddEllipseFilled(center, ImVec2(radius_x, radius_y), col, rot, num_segments); } // OBSOLETED in 1.90.5 (Mar 2024) + //inline void PathEllipticalArcTo(const ImVec2& center, float radius_x, float radius_y, float rot, float a_min, float a_max, int num_segments = 0) { PathEllipticalArcTo(center, ImVec2(radius_x, radius_y), rot, a_min, a_max, num_segments); } // OBSOLETED in 1.90.5 (Mar 2024) + //inline void AddBezierCurve(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments = 0) { AddBezierCubic(p1, p2, p3, p4, col, thickness, num_segments); } // OBSOLETED in 1.80 (Jan 2021) + //inline void PathBezierCurveTo(const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, int num_segments = 0) { PathBezierCubicCurveTo(p2, p3, p4, num_segments); } // OBSOLETED in 1.80 (Jan 2021) + + // [Internal helpers] + IMGUI_API void _ResetForNewFrame(); + IMGUI_API void _ClearFreeMemory(); + IMGUI_API void _PopUnusedDrawCmd(); + IMGUI_API void _TryMergeDrawCmds(); + IMGUI_API void _OnChangedClipRect(); + IMGUI_API void _OnChangedTextureID(); + IMGUI_API void _OnChangedVtxOffset(); + IMGUI_API void _SetTextureID(ImTextureID texture_id); + IMGUI_API int _CalcCircleAutoSegmentCount(float radius) const; + IMGUI_API void _PathArcToFastEx(const ImVec2& center, float radius, int a_min_sample, int a_max_sample, int a_step); + IMGUI_API void _PathArcToN(const ImVec2& center, float radius, float a_min, float a_max, int num_segments); +}; + +// All draw data to render a Dear ImGui frame +// (NB: the style and the naming convention here is a little inconsistent, we currently preserve them for backward compatibility purpose, +// as this is one of the oldest structure exposed by the library! Basically, ImDrawList == CmdList) +struct ImDrawData +{ + bool Valid; // Only valid after Render() is called and before the next NewFrame() is called. + int CmdListsCount; // Number of ImDrawList* to render (should always be == CmdLists.size) + int TotalIdxCount; // For convenience, sum of all ImDrawList's IdxBuffer.Size + int TotalVtxCount; // For convenience, sum of all ImDrawList's VtxBuffer.Size + ImVector CmdLists; // Array of ImDrawList* to render. The ImDrawLists are owned by ImGuiContext and only pointed to from here. + ImVec2 DisplayPos; // Top-left position of the viewport to render (== top-left of the orthogonal projection matrix to use) (== GetMainViewport()->Pos for the main viewport, == (0.0) in most single-viewport applications) + ImVec2 DisplaySize; // Size of the viewport to render (== GetMainViewport()->Size for the main viewport, == io.DisplaySize in most single-viewport applications) + ImVec2 FramebufferScale; // Amount of pixels for each unit of DisplaySize. Based on io.DisplayFramebufferScale. Generally (1,1) on normal display, (2,2) on OSX with Retina display. + ImGuiViewport* OwnerViewport; // Viewport carrying the ImDrawData instance, might be of use to the renderer (generally not). + + // Functions + ImDrawData() { Clear(); } + IMGUI_API void Clear(); + IMGUI_API void AddDrawList(ImDrawList* draw_list); // Helper to add an external draw list into an existing ImDrawData. + IMGUI_API void DeIndexAllBuffers(); // Helper to convert all buffers from indexed to non-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! + IMGUI_API void ScaleClipRects(const ImVec2& fb_scale); // Helper to scale the ClipRect field of each ImDrawCmd. Use if your final output buffer is at a different scale than Dear ImGui expects, or if there is a difference between your window resolution and framebuffer resolution. +}; + +//----------------------------------------------------------------------------- +// [SECTION] Font API (ImFontConfig, ImFontGlyph, ImFontAtlasFlags, ImFontAtlas, ImFontGlyphRangesBuilder, ImFont) +//----------------------------------------------------------------------------- + +// [Internal] Shadow texture baking config +struct ImFontAtlasShadowTexConfig +{ + int TexCornerSize; // Size of the corner areas. + int TexEdgeSize; // Size of the edge areas (and by extension the center). Changing this is normally unnecessary. + float TexFalloffPower; // The power factor for the shadow falloff curve. + float TexDistanceFieldOffset; // How much to offset the distance field by (allows over/under-shadowing, potentially useful for accommodating rounded corners on the "casting" shape). + bool TexBlur; // Do we want to Gaussian blur the shadow texture? + + inline ImFontAtlasShadowTexConfig() { memset(this, 0, sizeof(*this)); } + IMGUI_API void SetupDefaults(); + int GetRectTexPadding() const { return 2; } // Number of pixels of padding to add to the rectangular texture to avoid sampling artifacts at the edges. + int CalcRectTexSize() const { return TexCornerSize + TexEdgeSize + GetRectTexPadding(); } // The size of the texture area required for the actual 2x2 rectangle shadow texture (after the redundant corners have been removed). Padding is required here to avoid sampling artifacts at the edge adjoining the removed corners. int CalcConvexTexWidth() const; // The width of the texture area required for the convex shape shadow texture. + int GetConvexTexPadding() const { return 8; } // Number of pixels of padding to add to the convex shape texture to avoid sampling artifacts at the edges. This also acts as padding for the expanded corner triangles. + int CalcConvexTexWidth() const; // The width of the texture area required for the convex shape shadow texture. + int CalcConvexTexHeight() const; // The height of the texture area required for the convex shape shadow texture. +}; + +struct ImFontConfig +{ + void* FontData; // // TTF/OTF data + int FontDataSize; // // TTF/OTF data size + bool FontDataOwnedByAtlas; // true // TTF/OTF data ownership taken by the container ImFontAtlas (will delete memory itself). + int FontNo; // 0 // Index of font within TTF/OTF file + float SizePixels; // // Size in pixels for rasterizer (more or less maps to the resulting font height). + int OversampleH; // 2 // Rasterize at higher quality for sub-pixel positioning. Note the difference between 2 and 3 is minimal. You can reduce this to 1 for large glyphs save memory. Read https://github.com/nothings/stb/blob/master/tests/oversample/README.md for details. + int OversampleV; // 1 // Rasterize at higher quality for sub-pixel positioning. This is not really useful as we don't use sub-pixel positions on the Y axis. + bool PixelSnapH; // false // Align every glyph to pixel boundary. Useful e.g. if you are merging a non-pixel aligned font with the default font. If enabled, you can set OversampleH/V to 1. + ImVec2 GlyphExtraSpacing; // 0, 0 // Extra spacing (in pixels) between glyphs. Only X axis is supported for now. + ImVec2 GlyphOffset; // 0, 0 // Offset all glyphs from this font input. + const ImWchar* GlyphRanges; // NULL // THE ARRAY DATA NEEDS TO PERSIST AS LONG AS THE FONT IS ALIVE. Pointer to a user-provided list of Unicode range (2 value per range, values are inclusive, zero-terminated list). + float GlyphMinAdvanceX; // 0 // Minimum AdvanceX for glyphs, set Min to align font icons, set both Min/Max to enforce mono-space font + float GlyphMaxAdvanceX; // FLT_MAX // Maximum AdvanceX for glyphs + bool MergeMode; // false // Merge into previous ImFont, so you can combine multiple inputs font into one ImFont (e.g. ASCII font + icons + Japanese glyphs). You may want to use GlyphOffset.y when merge font of different heights. + unsigned int FontBuilderFlags; // 0 // Settings for custom font builder. THIS IS BUILDER IMPLEMENTATION DEPENDENT. Leave as zero if unsure. + float RasterizerMultiply; // 1.0f // Linearly brighten (>1.0f) or darken (<1.0f) font output. Brightening small fonts may be a good workaround to make them more readable. This is a silly thing we may remove in the future. + float RasterizerDensity; // 1.0f // DPI scale for rasterization, not altering other font metrics: make it easy to swap between e.g. a 100% and a 400% fonts for a zooming display. IMPORTANT: If you increase this it is expected that you increase font scale accordingly, otherwise quality may look lowered. + ImWchar EllipsisChar; // -1 // Explicitly specify unicode codepoint of ellipsis character. When fonts are being merged first specified ellipsis will be used. + + // [Internal] + char Name[40]; // Name (strictly to ease debugging) + ImFont* DstFont; + + IMGUI_API ImFontConfig(); +}; + +// Hold rendering data for one glyph. +// (Note: some language parsers may fail to convert the 31+1 bitfield members, in this case maybe drop store a single u32 or we can rework this) +struct ImFontGlyph +{ + unsigned int Colored : 1; // Flag to indicate glyph is colored and should generally ignore tinting (make it usable with no shift on little-endian as this is used in loops) + unsigned int Visible : 1; // Flag to indicate glyph has no visible pixels (e.g. space). Allow early out when rendering. + unsigned int Codepoint : 30; // 0x0000..0x10FFFF + float AdvanceX; // Distance to next character (= data from font + ImFontConfig::GlyphExtraSpacing.x baked in) + float X0, Y0, X1, Y1; // Glyph corners + float U0, V0, U1, V1; // Texture coordinates +}; + +// Helper to build glyph ranges from text/string data. Feed your application strings/characters to it then call BuildRanges(). +// This is essentially a tightly packed of vector of 64k booleans = 8KB storage. +struct ImFontGlyphRangesBuilder +{ + ImVector UsedChars; // Store 1-bit per Unicode code point (0=unused, 1=used) + + ImFontGlyphRangesBuilder() { Clear(); } + inline void Clear() { int size_in_bytes = (IM_UNICODE_CODEPOINT_MAX + 1) / 8; UsedChars.resize(size_in_bytes / (int)sizeof(ImU32)); memset(UsedChars.Data, 0, (size_t)size_in_bytes); } + inline bool GetBit(size_t n) const { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); return (UsedChars[off] & mask) != 0; } // Get bit n in the array + inline void SetBit(size_t n) { int off = (int)(n >> 5); ImU32 mask = 1u << (n & 31); UsedChars[off] |= mask; } // Set bit n in the array + inline void AddChar(ImWchar c) { SetBit(c); } // Add character + IMGUI_API void AddText(const char* text, const char* text_end = NULL); // Add string (each character of the UTF-8 string are added) + IMGUI_API void AddRanges(const ImWchar* ranges); // Add ranges, e.g. builder.AddRanges(ImFontAtlas::GetGlyphRangesDefault()) to force add all of ASCII/Latin+Ext + IMGUI_API void BuildRanges(ImVector* out_ranges); // Output new ranges +}; + +// See ImFontAtlas::AddCustomRectXXX functions. +struct ImFontAtlasCustomRect +{ + unsigned short Width, Height; // Input // Desired rectangle dimension + unsigned short X, Y; // Output // Packed position in Atlas + unsigned int GlyphID; // Input // For custom font glyphs only (ID < 0x110000) + float GlyphAdvanceX; // Input // For custom font glyphs only: glyph xadvance + ImVec2 GlyphOffset; // Input // For custom font glyphs only: glyph display offset + ImFont* Font; // Input // For custom font glyphs only: target font + ImFontAtlasCustomRect() { Width = Height = 0; X = Y = 0xFFFF; GlyphID = 0; GlyphAdvanceX = 0.0f; GlyphOffset = ImVec2(0, 0); Font = NULL; } + bool IsPacked() const { return X != 0xFFFF; } +}; + +// Flags for ImFontAtlas build +enum ImFontAtlasFlags_ +{ + ImFontAtlasFlags_None = 0, + ImFontAtlasFlags_NoPowerOfTwoHeight = 1 << 0, // Don't round the height to next power of two + ImFontAtlasFlags_NoMouseCursors = 1 << 1, // Don't build software mouse cursors into the atlas (save a little texture memory) + ImFontAtlasFlags_NoBakedLines = 1 << 2, // Don't build thick line textures into the atlas (save a little texture memory, allow support for point/nearest filtering). The AntiAliasedLinesUseTex features uses them, otherwise they will be rendered using polygons (more expensive for CPU/GPU). +}; + +// Load and rasterize multiple TTF/OTF fonts into a same texture. The font atlas will build a single texture holding: +// - One or more fonts. +// - Custom graphics data needed to render the shapes needed by Dear ImGui. +// - Mouse cursor shapes for software cursor rendering (unless setting 'Flags |= ImFontAtlasFlags_NoMouseCursors' in the font atlas). +// It is the user-code responsibility to setup/build the atlas, then upload the pixel data into a texture accessible by your graphics api. +// - Optionally, call any of the AddFont*** functions. If you don't call any, the default font embedded in the code will be loaded for you. +// - Call GetTexDataAsAlpha8() or GetTexDataAsRGBA32() to build and retrieve pixels data. +// - Upload the pixels data into a texture within your graphics system (see imgui_impl_xxxx.cpp examples) +// - Call SetTexID(my_tex_id); and pass the pointer/identifier to your texture in a format natural to your graphics API. +// This value will be passed back to you during rendering to identify the texture. Read FAQ entry about ImTextureID for more details. +// Common pitfalls: +// - If you pass a 'glyph_ranges' array to AddFont*** functions, you need to make sure that your array persist up until the +// atlas is build (when calling GetTexData*** or Build()). We only copy the pointer, not the data. +// - Important: By default, AddFontFromMemoryTTF() takes ownership of the data. Even though we are not writing to it, we will free the pointer on destruction. +// You can set font_cfg->FontDataOwnedByAtlas=false to keep ownership of your data and it won't be freed, +// - Even though many functions are suffixed with "TTF", OTF data is supported just as well. +// - This is an old API and it is currently awkward for those and various other reasons! We will address them in the future! +struct ImFontAtlas +{ + IMGUI_API ImFontAtlas(); + IMGUI_API ~ImFontAtlas(); + IMGUI_API ImFont* AddFont(const ImFontConfig* font_cfg); + IMGUI_API ImFont* AddFontDefault(const ImFontConfig* font_cfg = NULL); + IMGUI_API ImFont* AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); + IMGUI_API ImFont* AddFontFromMemoryTTF(void* font_data, int font_data_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // Note: Transfer ownership of 'ttf_data' to ImFontAtlas! Will be deleted after destruction of the atlas. Set font_cfg->FontDataOwnedByAtlas=false to keep ownership of your data and it won't be freed. + IMGUI_API ImFont* AddFontFromMemoryCompressedTTF(const void* compressed_font_data, int compressed_font_data_size, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data' still owned by caller. Compress with binary_to_compressed_c.cpp. + IMGUI_API ImFont* AddFontFromMemoryCompressedBase85TTF(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = NULL, const ImWchar* glyph_ranges = NULL); // 'compressed_font_data_base85' still owned by caller. Compress with binary_to_compressed_c.cpp with -base85 parameter. + IMGUI_API void ClearInputData(); // Clear input data (all ImFontConfig structures including sizes, TTF data, glyph ranges, etc.) = all the data used to build the texture and fonts. + IMGUI_API void ClearTexData(); // Clear output texture data (CPU side). Saves RAM once the texture has been copied to graphics memory. + IMGUI_API void ClearFonts(); // Clear output font data (glyphs storage, UV coordinates). + IMGUI_API void Clear(); // Clear all input and output. + + // Build atlas, retrieve pixel data. + // User is in charge of copying the pixels into graphics memory (e.g. create a texture with your engine). Then store your texture handle with SetTexID(). + // The pitch is always = Width * BytesPerPixels (1 or 4) + // Building in RGBA32 format is provided for convenience and compatibility, but note that unless you manually manipulate or copy color data into + // the texture (e.g. when using the AddCustomRect*** api), then the RGB pixels emitted will always be white (~75% of memory/bandwidth waste. + IMGUI_API bool Build(); // Build pixels data. This is called automatically for you by the GetTexData*** functions. + IMGUI_API void GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 1 byte per-pixel + IMGUI_API void GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = NULL); // 4 bytes-per-pixel + bool IsBuilt() const { return Fonts.Size > 0 && TexReady; } // Bit ambiguous: used to detect when user didn't build texture but effectively we should check TexID != 0 except that would be backend dependent... + void SetTexID(ImTextureID id) { TexID = id; } + + //------------------------------------------- + // Glyph Ranges + //------------------------------------------- + + // Helpers to retrieve list of common Unicode ranges (2 value per range, values are inclusive, zero-terminated list) + // NB: Make sure that your string are UTF-8 and NOT in your local code page. + // Read https://github.com/ocornut/imgui/blob/master/docs/FONTS.md/#about-utf-8-encoding for details. + // NB: Consider using ImFontGlyphRangesBuilder to build glyph ranges from textual data. + IMGUI_API const ImWchar* GetGlyphRangesDefault(); // Basic Latin, Extended Latin + IMGUI_API const ImWchar* GetGlyphRangesGreek(); // Default + Greek and Coptic + IMGUI_API const ImWchar* GetGlyphRangesKorean(); // Default + Korean characters + IMGUI_API const ImWchar* GetGlyphRangesJapanese(); // Default + Hiragana, Katakana, Half-Width, Selection of 2999 Ideographs + IMGUI_API const ImWchar* GetGlyphRangesChineseFull(); // Default + Half-Width + Japanese Hiragana/Katakana + full set of about 21000 CJK Unified Ideographs + IMGUI_API const ImWchar* GetGlyphRangesChineseSimplifiedCommon();// Default + Half-Width + Japanese Hiragana/Katakana + set of 2500 CJK Unified Ideographs for common simplified Chinese + IMGUI_API const ImWchar* GetGlyphRangesCyrillic(); // Default + about 400 Cyrillic characters + IMGUI_API const ImWchar* GetGlyphRangesThai(); // Default + Thai characters + IMGUI_API const ImWchar* GetGlyphRangesVietnamese(); // Default + Vietnamese characters + + //------------------------------------------- + // [BETA] Custom Rectangles/Glyphs API + //------------------------------------------- + + // You can request arbitrary rectangles to be packed into the atlas, for your own purposes. + // - After calling Build(), you can query the rectangle position and render your pixels. + // - If you render colored output, set 'atlas->TexPixelsUseColors = true' as this may help some backends decide of preferred texture format. + // - You can also request your rectangles to be mapped as font glyph (given a font + Unicode point), + // so you can render e.g. custom colorful icons and use them as regular glyphs. + // - Read docs/FONTS.md for more details about using colorful icons. + // - Note: this API may be redesigned later in order to support multi-monitor varying DPI settings. + IMGUI_API int AddCustomRectRegular(int width, int height); + IMGUI_API int AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset = ImVec2(0, 0)); + ImFontAtlasCustomRect* GetCustomRectByIndex(int index) { IM_ASSERT(index >= 0); return &CustomRects[index]; } + + // [Internal] + IMGUI_API void CalcCustomRectUV(const ImFontAtlasCustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max) const; + IMGUI_API bool GetMouseCursorTexData(ImGuiMouseCursor cursor, ImVec2* out_offset, ImVec2* out_size, ImVec2 out_uv_border[2], ImVec2 out_uv_fill[2]); + + //------------------------------------------- + // Members + //------------------------------------------- + + ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_) + ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure. + int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height. + int TexGlyphPadding; // Padding between glyphs within texture in pixels. Defaults to 1. If your rendering method doesn't rely on bilinear filtering you may set this to 0 (will also need to set AntiAliasedLinesUseTex = false). + bool Locked; // Marked as Locked by ImGui::NewFrame() so attempt to modify the atlas will assert. + void* UserData; // Store your own atlas related user-data (if e.g. you have multiple font atlas). + + // [Internal] + // NB: Access texture data via GetTexData*() calls! Which will setup a default font for you. + bool TexReady; // Set when texture was built matching current font input + bool TexPixelsUseColors; // Tell whether our texture data is known to use colors (rather than just alpha channel), in order to help backend select a format. + unsigned char* TexPixelsAlpha8; // 1 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight + unsigned int* TexPixelsRGBA32; // 4 component per pixel, each component is unsigned 8-bit. Total size = TexWidth * TexHeight * 4 + int TexWidth; // Texture width calculated during Build(). + int TexHeight; // Texture height calculated during Build(). + ImVec2 TexUvScale; // = (1.0f/TexWidth, 1.0f/TexHeight) + ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel + ImVector Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font. + ImVector CustomRects; // Rectangles for packing custom texture data into the atlas. + ImVector ConfigData; // Configuration data + ImVec4 TexUvLines[IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 1]; // UVs for baked anti-aliased lines + + // [Internal] Font builder + const ImFontBuilderIO* FontBuilderIO; // Opaque interface to a font builder (default to stb_truetype, can be changed to use FreeType by defining IMGUI_ENABLE_FREETYPE). + unsigned int FontBuilderFlags; // Shared flags (for all fonts) for custom font builder. THIS IS BUILD IMPLEMENTATION DEPENDENT. Per-font override is also available in ImFontConfig. + + // [Internal] Packing data + int PackIdMouseCursors; // Custom texture rectangle ID for white pixel and mouse cursors + int PackIdLines; // Custom texture rectangle ID for baked anti-aliased lines + + // [Internal] Shadow data + int ShadowRectIds[2]; // IDs of rect for shadow textures + ImVec4 ShadowRectUvs[10]; // UV coordinates for shadow textures, 9 for the rectangle shadows and the final entry for the convex shape shadows + ImFontAtlasShadowTexConfig ShadowTexConfig; // Shadow texture baking config + + // [Obsolete] + //typedef ImFontAtlasCustomRect CustomRect; // OBSOLETED in 1.72+ + //typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; // OBSOLETED in 1.67+ +}; + +// Font runtime data and rendering +// ImFontAtlas automatically loads a default embedded font for you when you call GetTexDataAsAlpha8() or GetTexDataAsRGBA32(). +struct ImFont +{ + // Members: Hot ~20/24 bytes (for CalcTextSize) + ImVector IndexAdvanceX; // 12-16 // out // // Sparse. Glyphs->AdvanceX in a directly indexable way (cache-friendly for CalcTextSize functions which only this info, and are often bottleneck in large UI). + float FallbackAdvanceX; // 4 // out // = FallbackGlyph->AdvanceX + float FontSize; // 4 // in // // Height of characters/line, set during loading (don't change after loading) + + // Members: Hot ~28/40 bytes (for CalcTextSize + render loop) + ImVector IndexLookup; // 12-16 // out // // Sparse. Index glyphs by Unicode code-point. + ImVector Glyphs; // 12-16 // out // // All glyphs. + const ImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar) + + // Members: Cold ~32/40 bytes + ImFontAtlas* ContainerAtlas; // 4-8 // out // // What we has been loaded into + const ImFontConfig* ConfigData; // 4-8 // in // // Pointer within ContainerAtlas->ConfigData + short ConfigDataCount; // 2 // in // ~ 1 // Number of ImFontConfig involved in creating this font. Bigger than 1 when merging multiple font sources into one ImFont. + ImWchar FallbackChar; // 2 // out // = FFFD/'?' // Character used if a glyph isn't found. + ImWchar EllipsisChar; // 2 // out // = '...'/'.'// Character used for ellipsis rendering. + short EllipsisCharCount; // 1 // out // 1 or 3 + float EllipsisWidth; // 4 // out // Width + float EllipsisCharStep; // 4 // out // Step between characters when EllipsisCount > 0 + bool DirtyLookupTables; // 1 // out // + float Scale; // 4 // in // = 1.f // Base font scale, multiplied by the per-window font scale which you can adjust with SetWindowFontScale() + float Ascent, Descent; // 4+4 // out // // Ascent: distance from top to bottom of e.g. 'A' [0..FontSize] (unscaled) + int MetricsTotalSurface;// 4 // out // // Total surface in pixels to get an idea of the font rasterization/texture cost (not exact, we approximate the cost of padding between glyphs) + ImU8 Used4kPagesMap[(IM_UNICODE_CODEPOINT_MAX+1)/4096/8]; // 2 bytes if ImWchar=ImWchar16, 34 bytes if ImWchar==ImWchar32. Store 1-bit for each block of 4K codepoints that has one active glyph. This is mainly used to facilitate iterations across all used codepoints. + + // Methods + IMGUI_API ImFont(); + IMGUI_API ~ImFont(); + IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c) const; + IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c) const; + float GetCharAdvance(ImWchar c) const { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; } + bool IsLoaded() const { return ContainerAtlas != NULL; } + const char* GetDebugName() const { return ConfigData ? ConfigData->Name : ""; } + + // 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable. + // 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable. + IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL) const; // utf8 + IMGUI_API const char* CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const; + IMGUI_API void RenderChar(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, ImWchar c) const; + IMGUI_API void RenderText(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false) const; + + // [Internal] Don't use! + IMGUI_API void BuildLookupTable(); + IMGUI_API void ClearOutputData(); + IMGUI_API void GrowIndex(int new_size); + IMGUI_API void AddGlyph(const ImFontConfig* src_cfg, ImWchar c, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x); + IMGUI_API void AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst = true); // Makes 'dst' character/glyph points to 'src' character/glyph. Currently needs to be called AFTER fonts have been built. + IMGUI_API void SetGlyphVisible(ImWchar c, bool visible); + IMGUI_API bool IsGlyphRangeUnused(unsigned int c_begin, unsigned int c_last); +}; + +//----------------------------------------------------------------------------- +// [SECTION] Viewports +//----------------------------------------------------------------------------- + +// Flags stored in ImGuiViewport::Flags, giving indications to the platform backends. +enum ImGuiViewportFlags_ +{ + ImGuiViewportFlags_None = 0, + ImGuiViewportFlags_IsPlatformWindow = 1 << 0, // Represent a Platform Window + ImGuiViewportFlags_IsPlatformMonitor = 1 << 1, // Represent a Platform Monitor (unused yet) + ImGuiViewportFlags_OwnedByApp = 1 << 2, // Platform Window: Is created/managed by the application (rather than a dear imgui backend) +}; + +// - Currently represents the Platform Window created by the application which is hosting our Dear ImGui windows. +// - In 'docking' branch with multi-viewport enabled, we extend this concept to have multiple active viewports. +// - In the future we will extend this concept further to also represent Platform Monitor and support a "no main platform window" operation mode. +// - About Main Area vs Work Area: +// - Main Area = entire viewport. +// - Work Area = entire viewport minus sections used by main menu bars (for platform windows), or by task bar (for platform monitor). +// - Windows are generally trying to stay within the Work Area of their host viewport. +struct ImGuiViewport +{ + ImGuiID ID; // Unique identifier for the viewport + ImGuiViewportFlags Flags; // See ImGuiViewportFlags_ + ImVec2 Pos; // Main Area: Position of the viewport (Dear ImGui coordinates are the same as OS desktop/native coordinates) + ImVec2 Size; // Main Area: Size of the viewport. + ImVec2 WorkPos; // Work Area: Position of the viewport minus task bars, menus bars, status bars (>= Pos) + ImVec2 WorkSize; // Work Area: Size of the viewport minus task bars, menu bars, status bars (<= Size) + + // Platform/Backend Dependent Data + void* PlatformHandle; // void* to hold higher-level, platform window handle (e.g. HWND, GLFWWindow*, SDL_Window*) + void* PlatformHandleRaw; // void* to hold lower-level, platform-native window handle (under Win32 this is expected to be a HWND, unused for other platforms) + + ImGuiViewport() { memset(this, 0, sizeof(*this)); } + + // Helpers + ImVec2 GetCenter() const { return ImVec2(Pos.x + Size.x * 0.5f, Pos.y + Size.y * 0.5f); } + ImVec2 GetWorkCenter() const { return ImVec2(WorkPos.x + WorkSize.x * 0.5f, WorkPos.y + WorkSize.y * 0.5f); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Platform Dependent Interfaces +//----------------------------------------------------------------------------- + +// Access via ImGui::GetPlatformIO() +struct ImGuiPlatformIO +{ + IMGUI_API ImGuiPlatformIO(); + + //------------------------------------------------------------------ + // Input - Interface with OS/backends + //------------------------------------------------------------------ + + // Optional: Access OS clipboard + // (default to use native Win32 clipboard on Windows, otherwise uses a private clipboard. Override to access OS clipboard on other architectures) + const char* (*Platform_GetClipboardTextFn)(ImGuiContext* ctx); + void (*Platform_SetClipboardTextFn)(ImGuiContext* ctx, const char* text); + void* Platform_ClipboardUserData; + + // Optional: Open link/folder/file in OS Shell + // (default to use ShellExecuteA() on Windows, system() on Linux/Mac) + bool (*Platform_OpenInShellFn)(ImGuiContext* ctx, const char* path); + void* Platform_OpenInShellUserData; + + // Optional: Notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME on Windows) + // (default to use native imm32 api on Windows) + void (*Platform_SetImeDataFn)(ImGuiContext* ctx, ImGuiViewport* viewport, ImGuiPlatformImeData* data); + void* Platform_ImeUserData; + //void (*SetPlatformImeDataFn)(ImGuiViewport* viewport, ImGuiPlatformImeData* data); // [Renamed to platform_io.PlatformSetImeDataFn in 1.91.1] + + // Optional: Platform locale + // [Experimental] Configure decimal point e.g. '.' or ',' useful for some languages (e.g. German), generally pulled from *localeconv()->decimal_point + ImWchar Platform_LocaleDecimalPoint; // '.' +}; + +// (Optional) Support for IME (Input Method Editor) via the platform_io.Platform_SetImeDataFn() function. +struct ImGuiPlatformImeData +{ + bool WantVisible; // A widget wants the IME to be visible + ImVec2 InputPos; // Position of the input cursor + float InputLineHeight; // Line height + + ImGuiPlatformImeData() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Obsolete functions and types +// (Will be removed! Read 'API BREAKING CHANGES' section in imgui.cpp for details) +// Please keep your copy of dear imgui up to date! Occasionally set '#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS' in imconfig.h to stay ahead. +//----------------------------------------------------------------------------- + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +namespace ImGui +{ + // OBSOLETED in 1.91.0 (from July 2024) + static inline void PushButtonRepeat(bool repeat) { PushItemFlag(ImGuiItemFlags_ButtonRepeat, repeat); } + static inline void PopButtonRepeat() { PopItemFlag(); } + static inline void PushTabStop(bool tab_stop) { PushItemFlag(ImGuiItemFlags_NoTabStop, !tab_stop); } + static inline void PopTabStop() { PopItemFlag(); } + IMGUI_API ImVec2 GetContentRegionMax(); // Content boundaries max (e.g. window boundaries including scrolling, or current column boundaries). You should never need this. Always use GetCursorScreenPos() and GetContentRegionAvail()! + IMGUI_API ImVec2 GetWindowContentRegionMin(); // Content boundaries min for the window (roughly (0,0)-Scroll), in window-local coordinates. You should never need this. Always use GetCursorScreenPos() and GetContentRegionAvail()! + IMGUI_API ImVec2 GetWindowContentRegionMax(); // Content boundaries max for the window (roughly (0,0)+Size-Scroll), in window-local coordinates. You should never need this. Always use GetCursorScreenPos() and GetContentRegionAvail()! + // OBSOLETED in 1.90.0 (from September 2023) + static inline bool BeginChildFrame(ImGuiID id, const ImVec2& size, ImGuiWindowFlags window_flags = 0) { return BeginChild(id, size, ImGuiChildFlags_FrameStyle, window_flags); } + static inline void EndChildFrame() { EndChild(); } + //static inline bool BeginChild(const char* str_id, const ImVec2& size_arg, bool borders, ImGuiWindowFlags window_flags){ return BeginChild(str_id, size_arg, borders ? ImGuiChildFlags_Borders : ImGuiChildFlags_None, window_flags); } // Unnecessary as true == ImGuiChildFlags_Borders + //static inline bool BeginChild(ImGuiID id, const ImVec2& size_arg, bool borders, ImGuiWindowFlags window_flags) { return BeginChild(id, size_arg, borders ? ImGuiChildFlags_Borders : ImGuiChildFlags_None, window_flags); } // Unnecessary as true == ImGuiChildFlags_Borders + static inline void ShowStackToolWindow(bool* p_open = NULL) { ShowIDStackToolWindow(p_open); } + IMGUI_API bool Combo(const char* label, int* current_item, bool (*old_callback)(void* user_data, int idx, const char** out_text), void* user_data, int items_count, int popup_max_height_in_items = -1); + IMGUI_API bool ListBox(const char* label, int* current_item, bool (*old_callback)(void* user_data, int idx, const char** out_text), void* user_data, int items_count, int height_in_items = -1); + // OBSOLETED in 1.89.7 (from June 2023) + IMGUI_API void SetItemAllowOverlap(); // Use SetNextItemAllowOverlap() before item. + // OBSOLETED in 1.89.4 (from March 2023) + static inline void PushAllowKeyboardFocus(bool tab_stop) { PushItemFlag(ImGuiItemFlags_NoTabStop, !tab_stop); } + static inline void PopAllowKeyboardFocus() { PopItemFlag(); } + // OBSOLETED in 1.87 (from February 2022 but more formally obsoleted April 2024) + IMGUI_API ImGuiKey GetKeyIndex(ImGuiKey key); // Map ImGuiKey_* values into legacy native key index. == io.KeyMap[key]. When using a 1.87+ backend using io.AddKeyEvent(), calling GetKeyIndex() with ANY ImGuiKey_XXXX values will return the same value! + //static inline ImGuiKey GetKeyIndex(ImGuiKey key) { IM_ASSERT(key >= ImGuiKey_NamedKey_BEGIN && key < ImGuiKey_NamedKey_END); return key; } + + // Some of the older obsolete names along with their replacement (commented out so they are not reported in IDE) + //-- OBSOLETED in 1.89 (from August 2022) + //IMGUI_API bool ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0 = ImVec2(0, 0), const ImVec2& uv1 = ImVec2(1, 1), int frame_padding = -1, const ImVec4& bg_col = ImVec4(0, 0, 0, 0), const ImVec4& tint_col = ImVec4(1, 1, 1, 1)); // --> Use new ImageButton() signature (explicit item id, regular FramePadding). Refer to code in 1.91 if you want to grab a copy of this version. + //-- OBSOLETED in 1.88 (from May 2022) + //static inline void CaptureKeyboardFromApp(bool want_capture_keyboard = true) { SetNextFrameWantCaptureKeyboard(want_capture_keyboard); } // Renamed as name was misleading + removed default value. + //static inline void CaptureMouseFromApp(bool want_capture_mouse = true) { SetNextFrameWantCaptureMouse(want_capture_mouse); } // Renamed as name was misleading + removed default value. + //-- OBSOLETED in 1.86 (from November 2021) + //IMGUI_API void CalcListClipping(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end); // Code removed, see 1.90 for last version of the code. Calculate range of visible items for large list of evenly sized items. Prefer using ImGuiListClipper. + //-- OBSOLETED in 1.85 (from August 2021) + //static inline float GetWindowContentRegionWidth() { return GetWindowContentRegionMax().x - GetWindowContentRegionMin().x; } + //-- OBSOLETED in 1.81 (from February 2021) + //static inline bool ListBoxHeader(const char* label, const ImVec2& size = ImVec2(0, 0)) { return BeginListBox(label, size); } + //static inline bool ListBoxHeader(const char* label, int items_count, int height_in_items = -1) { float height = GetTextLineHeightWithSpacing() * ((height_in_items < 0 ? ImMin(items_count, 7) : height_in_items) + 0.25f) + GetStyle().FramePadding.y * 2.0f; return BeginListBox(label, ImVec2(0.0f, height)); } // Helper to calculate size from items_count and height_in_items + //static inline void ListBoxFooter() { EndListBox(); } + //-- OBSOLETED in 1.79 (from August 2020) + //static inline void OpenPopupContextItem(const char* str_id = NULL, ImGuiMouseButton mb = 1) { OpenPopupOnItemClick(str_id, mb); } // Bool return value removed. Use IsWindowAppearing() in BeginPopup() instead. Renamed in 1.77, renamed back in 1.79. Sorry! + //-- OBSOLETED in 1.78 (from June 2020): Old drag/sliders functions that took a 'float power > 1.0f' argument instead of ImGuiSliderFlags_Logarithmic. See github.com/ocornut/imgui/issues/3361 for details. + //IMGUI_API bool DragScalar(const char* label, ImGuiDataType data_type, void* p_data, float v_speed, const void* p_min, const void* p_max, const char* format, float power = 1.0f) // OBSOLETED in 1.78 (from June 2020) + //IMGUI_API bool DragScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, float v_speed, const void* p_min, const void* p_max, const char* format, float power = 1.0f); // OBSOLETED in 1.78 (from June 2020) + //IMGUI_API bool SliderScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, float power = 1.0f); // OBSOLETED in 1.78 (from June 2020) + //IMGUI_API bool SliderScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_min, const void* p_max, const char* format, float power = 1.0f); // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalar(label, ImGuiDataType_Float, v, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalarN(label, ImGuiDataType_Float, v, 2, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat3(const char* label, float v[3], float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalarN(label, ImGuiDataType_Float, v, 3, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool DragFloat4(const char* label, float v[4], float v_speed, float v_min, float v_max, const char* format, float power = 1.0f) { return DragScalarN(label, ImGuiDataType_Float, v, 4, v_speed, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalar(label, ImGuiDataType_Float, v, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalarN(label, ImGuiDataType_Float, v, 2, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalarN(label, ImGuiDataType_Float, v, 3, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //static inline bool SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format, float power = 1.0f) { return SliderScalarN(label, ImGuiDataType_Float, v, 4, &v_min, &v_max, format, power); } // OBSOLETED in 1.78 (from June 2020) + //-- OBSOLETED in 1.77 and before + //static inline bool BeginPopupContextWindow(const char* str_id, ImGuiMouseButton mb, bool over_items) { return BeginPopupContextWindow(str_id, mb | (over_items ? 0 : ImGuiPopupFlags_NoOpenOverItems)); } // OBSOLETED in 1.77 (from June 2020) + //static inline void TreeAdvanceToLabelPos() { SetCursorPosX(GetCursorPosX() + GetTreeNodeToLabelSpacing()); } // OBSOLETED in 1.72 (from July 2019) + //static inline void SetNextTreeNodeOpen(bool open, ImGuiCond cond = 0) { SetNextItemOpen(open, cond); } // OBSOLETED in 1.71 (from June 2019) + //static inline float GetContentRegionAvailWidth() { return GetContentRegionAvail().x; } // OBSOLETED in 1.70 (from May 2019) + //static inline ImDrawList* GetOverlayDrawList() { return GetForegroundDrawList(); } // OBSOLETED in 1.69 (from Mar 2019) + //static inline void SetScrollHere(float ratio = 0.5f) { SetScrollHereY(ratio); } // OBSOLETED in 1.66 (from Nov 2018) + //static inline bool IsItemDeactivatedAfterChange() { return IsItemDeactivatedAfterEdit(); } // OBSOLETED in 1.63 (from Aug 2018) + //-- OBSOLETED in 1.60 and before + //static inline bool IsAnyWindowFocused() { return IsWindowFocused(ImGuiFocusedFlags_AnyWindow); } // OBSOLETED in 1.60 (from Apr 2018) + //static inline bool IsAnyWindowHovered() { return IsWindowHovered(ImGuiHoveredFlags_AnyWindow); } // OBSOLETED in 1.60 (between Dec 2017 and Apr 2018) + //static inline void ShowTestWindow() { return ShowDemoWindow(); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline bool IsRootWindowFocused() { return IsWindowFocused(ImGuiFocusedFlags_RootWindow); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline bool IsRootWindowOrAnyChildFocused() { return IsWindowFocused(ImGuiFocusedFlags_RootAndChildWindows); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline void SetNextWindowContentWidth(float w) { SetNextWindowContentSize(ImVec2(w, 0.0f)); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //static inline float GetItemsLineHeightWithSpacing() { return GetFrameHeightWithSpacing(); } // OBSOLETED in 1.53 (between Oct 2017 and Dec 2017) + //IMGUI_API bool Begin(char* name, bool* p_open, ImVec2 size_first_use, float bg_alpha = -1.0f, ImGuiWindowFlags flags=0); // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017): Equivalent of using SetNextWindowSize(size, ImGuiCond_FirstUseEver) and SetNextWindowBgAlpha(). + //static inline bool IsRootWindowOrAnyChildHovered() { return IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows); } // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017) + //static inline void AlignFirstTextHeightToWidgets() { AlignTextToFramePadding(); } // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017) + //static inline void SetNextWindowPosCenter(ImGuiCond c=0) { SetNextWindowPos(GetMainViewport()->GetCenter(), c, ImVec2(0.5f,0.5f)); } // OBSOLETED in 1.52 (between Aug 2017 and Oct 2017) + //static inline bool IsItemHoveredRect() { return IsItemHovered(ImGuiHoveredFlags_RectOnly); } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017) + //static inline bool IsPosHoveringAnyWindow(const ImVec2&) { IM_ASSERT(0); return false; } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017): This was misleading and partly broken. You probably want to use the io.WantCaptureMouse flag instead. + //static inline bool IsMouseHoveringAnyWindow() { return IsWindowHovered(ImGuiHoveredFlags_AnyWindow); } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017) + //static inline bool IsMouseHoveringWindow() { return IsWindowHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem); } // OBSOLETED in 1.51 (between Jun 2017 and Aug 2017) + //-- OBSOLETED in 1.50 and before + //static inline bool CollapsingHeader(char* label, const char* str_id, bool framed = true, bool default_open = false) { return CollapsingHeader(label, (default_open ? (1 << 5) : 0)); } // OBSOLETED in 1.49 + //static inline ImFont*GetWindowFont() { return GetFont(); } // OBSOLETED in 1.48 + //static inline float GetWindowFontSize() { return GetFontSize(); } // OBSOLETED in 1.48 + //static inline void SetScrollPosHere() { SetScrollHere(); } // OBSOLETED in 1.42 +} + +//-- OBSOLETED in 1.82 (from Mars 2021): flags for AddRect(), AddRectFilled(), AddImageRounded(), PathRect() +//typedef ImDrawFlags ImDrawCornerFlags; +//enum ImDrawCornerFlags_ +//{ +// ImDrawCornerFlags_None = ImDrawFlags_RoundCornersNone, // Was == 0 prior to 1.82, this is now == ImDrawFlags_RoundCornersNone which is != 0 and not implicit +// ImDrawCornerFlags_TopLeft = ImDrawFlags_RoundCornersTopLeft, // Was == 0x01 (1 << 0) prior to 1.82. Order matches ImDrawFlags_NoRoundCorner* flag (we exploit this internally). +// ImDrawCornerFlags_TopRight = ImDrawFlags_RoundCornersTopRight, // Was == 0x02 (1 << 1) prior to 1.82. +// ImDrawCornerFlags_BotLeft = ImDrawFlags_RoundCornersBottomLeft, // Was == 0x04 (1 << 2) prior to 1.82. +// ImDrawCornerFlags_BotRight = ImDrawFlags_RoundCornersBottomRight, // Was == 0x08 (1 << 3) prior to 1.82. +// ImDrawCornerFlags_All = ImDrawFlags_RoundCornersAll, // Was == 0x0F prior to 1.82 +// ImDrawCornerFlags_Top = ImDrawCornerFlags_TopLeft | ImDrawCornerFlags_TopRight, +// ImDrawCornerFlags_Bot = ImDrawCornerFlags_BotLeft | ImDrawCornerFlags_BotRight, +// ImDrawCornerFlags_Left = ImDrawCornerFlags_TopLeft | ImDrawCornerFlags_BotLeft, +// ImDrawCornerFlags_Right = ImDrawCornerFlags_TopRight | ImDrawCornerFlags_BotRight, +//}; + +// RENAMED and MERGED both ImGuiKey_ModXXX and ImGuiModFlags_XXX into ImGuiMod_XXX (from September 2022) +// RENAMED ImGuiKeyModFlags -> ImGuiModFlags in 1.88 (from April 2022). Exceptionally commented out ahead of obscolescence schedule to reduce confusion and because they were not meant to be used in the first place. +//typedef ImGuiKeyChord ImGuiModFlags; // == int. We generally use ImGuiKeyChord to mean "a ImGuiKey or-ed with any number of ImGuiMod_XXX value", so you may store mods in there. +//enum ImGuiModFlags_ { ImGuiModFlags_None = 0, ImGuiModFlags_Ctrl = ImGuiMod_Ctrl, ImGuiModFlags_Shift = ImGuiMod_Shift, ImGuiModFlags_Alt = ImGuiMod_Alt, ImGuiModFlags_Super = ImGuiMod_Super }; +//typedef ImGuiKeyChord ImGuiKeyModFlags; // == int +//enum ImGuiKeyModFlags_ { ImGuiKeyModFlags_None = 0, ImGuiKeyModFlags_Ctrl = ImGuiMod_Ctrl, ImGuiKeyModFlags_Shift = ImGuiMod_Shift, ImGuiKeyModFlags_Alt = ImGuiMod_Alt, ImGuiKeyModFlags_Super = ImGuiMod_Super }; + +#define IM_OFFSETOF(_TYPE,_MEMBER) offsetof(_TYPE, _MEMBER) // OBSOLETED IN 1.90 (now using C++11 standard version) + +#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + +// RENAMED IMGUI_DISABLE_METRICS_WINDOW > IMGUI_DISABLE_DEBUG_TOOLS in 1.88 (from June 2022) +#if defined(IMGUI_DISABLE_METRICS_WINDOW) && !defined(IMGUI_DISABLE_OBSOLETE_FUNCTIONS) && !defined(IMGUI_DISABLE_DEBUG_TOOLS) +#define IMGUI_DISABLE_DEBUG_TOOLS +#endif +#if defined(IMGUI_DISABLE_METRICS_WINDOW) && defined(IMGUI_DISABLE_OBSOLETE_FUNCTIONS) +#error IMGUI_DISABLE_METRICS_WINDOW was renamed to IMGUI_DISABLE_DEBUG_TOOLS, please use new name. +#endif + +//----------------------------------------------------------------------------- + +#if defined(__clang__) +#pragma clang diagnostic pop +#elif defined(__GNUC__) +#pragma GCC diagnostic pop +#endif + +#ifdef _MSC_VER +#pragma warning (pop) +#endif + +// Include imgui_user.h at the end of imgui.h +// May be convenient for some users to only explicitly include vanilla imgui.h and have extra stuff included. +#ifdef IMGUI_INCLUDE_IMGUI_USER_H +#ifdef IMGUI_USER_H_FILENAME +#include IMGUI_USER_H_FILENAME +#else +#include "imgui_user.h" +#endif +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imgui_draw.cpp b/external/lumin/thirdparty/imgui/imgui_draw.cpp new file mode 100644 index 0000000..fb7dc32 --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui_draw.cpp @@ -0,0 +1,5612 @@ +// dear imgui, v1.91.3 WIP +// (drawing and font code) + +/* + +Index of this file: + +// [SECTION] STB libraries implementation +// [SECTION] Style functions +// [SECTION] ImDrawList +// [SECTION] ImTriangulator, ImDrawList concave polygon fill +// [SECTION] ImDrawList Shadow Primitives +// [SECTION] ImDrawListSplitter +// [SECTION] ImDrawData +// [SECTION] Helpers ShadeVertsXXX functions +// [SECTION] ImFontAtlasShadowTexConfig +// [SECTION] ImFontConfig +// [SECTION] ImFontAtlas +// [SECTION] ImFontAtlas glyph ranges helpers +// [SECTION] ImFontGlyphRangesBuilder +// [SECTION] ImFont +// [SECTION] ImGui Internal Render Helpers +// [SECTION] Decompression code +// [SECTION] Default font data (ProggyClean.ttf) + +*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" +#ifdef IMGUI_ENABLE_FREETYPE +#include "misc/freetype/imgui_freetype.h" +#endif + +#include // vsnprintf, sscanf, printf + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff) +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). [MSVC Static Analyzer) +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants ok. +#pragma clang diagnostic ignored "-Wglobal-constructors" // warning: declaration requires a global destructor // similar to above, not sure what the exact difference is. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wcomma" // warning: possible misuse of comma operator here +#pragma clang diagnostic ignored "-Wreserved-id-macro" // warning: macro name is a reserved identifier +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#pragma clang diagnostic ignored "-Wreserved-identifier" // warning: identifier '_Xxx' is reserved because it starts with '_' followed by a capital letter +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" // warning: 'xxx' is an unsafe pointer used for buffer access +#elif defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used +#pragma GCC diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function +#pragma GCC diagnostic ignored "-Wconversion" // warning: conversion to 'xxxx' from 'xxxx' may alter its value +#pragma GCC diagnostic ignored "-Wstack-protector" // warning: stack protector not protecting local variables: variable length buffer +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +//------------------------------------------------------------------------- +// [SECTION] STB libraries implementation (for stb_truetype and stb_rect_pack) +//------------------------------------------------------------------------- + +// Compile time options: +//#define IMGUI_STB_NAMESPACE ImStb +//#define IMGUI_STB_TRUETYPE_FILENAME "my_folder/stb_truetype.h" +//#define IMGUI_STB_RECT_PACK_FILENAME "my_folder/stb_rect_pack.h" +//#define IMGUI_DISABLE_STB_TRUETYPE_IMPLEMENTATION +//#define IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION + +#ifdef IMGUI_STB_NAMESPACE +namespace IMGUI_STB_NAMESPACE +{ +#endif + +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 4456) // declaration of 'xx' hides previous local declaration +#pragma warning (disable: 6011) // (stb_rectpack) Dereferencing NULL pointer 'cur->next'. +#pragma warning (disable: 6385) // (stb_truetype) Reading invalid data from 'buffer': the readable size is '_Old_3`kernel_width' bytes, but '3' bytes may be read. +#pragma warning (disable: 28182) // (stb_rectpack) Dereferencing NULL pointer. 'cur' contains the same NULL value as 'cur->next' did. +#endif + +#if defined(__clang__) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunused-function" +#pragma clang diagnostic ignored "-Wmissing-prototypes" +#pragma clang diagnostic ignored "-Wimplicit-fallthrough" +#pragma clang diagnostic ignored "-Wcast-qual" // warning: cast from 'const xxxx *' to 'xxx *' drops const qualifier +#endif + +#if defined(__GNUC__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wtype-limits" // warning: comparison is always true due to limited range of data type [-Wtype-limits] +#pragma GCC diagnostic ignored "-Wcast-qual" // warning: cast from type 'const xxxx *' to type 'xxxx *' casts away qualifiers +#endif + +#ifndef STB_RECT_PACK_IMPLEMENTATION // in case the user already have an implementation in the _same_ compilation unit (e.g. unity builds) +#ifndef IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION // in case the user already have an implementation in another compilation unit +#define STBRP_STATIC +#define STBRP_ASSERT(x) do { IM_ASSERT(x); } while (0) +#define STBRP_SORT ImQsort +#define STB_RECT_PACK_IMPLEMENTATION +#endif +#ifdef IMGUI_STB_RECT_PACK_FILENAME +#include IMGUI_STB_RECT_PACK_FILENAME +#else +#include "imstb_rectpack.h" +#endif +#endif + +#ifdef IMGUI_ENABLE_STB_TRUETYPE +#ifndef STB_TRUETYPE_IMPLEMENTATION // in case the user already have an implementation in the _same_ compilation unit (e.g. unity builds) +#ifndef IMGUI_DISABLE_STB_TRUETYPE_IMPLEMENTATION // in case the user already have an implementation in another compilation unit +#define STBTT_malloc(x,u) ((void)(u), IM_ALLOC(x)) +#define STBTT_free(x,u) ((void)(u), IM_FREE(x)) +#define STBTT_assert(x) do { IM_ASSERT(x); } while(0) +#define STBTT_fmod(x,y) ImFmod(x,y) +#define STBTT_sqrt(x) ImSqrt(x) +#define STBTT_pow(x,y) ImPow(x,y) +#define STBTT_fabs(x) ImFabs(x) +#define STBTT_ifloor(x) ((int)ImFloor(x)) +#define STBTT_iceil(x) ((int)ImCeil(x)) +#define STBTT_STATIC +#define STB_TRUETYPE_IMPLEMENTATION +#else +#define STBTT_DEF extern +#endif +#ifdef IMGUI_STB_TRUETYPE_FILENAME +#include IMGUI_STB_TRUETYPE_FILENAME +#else +#include "imstb_truetype.h" +#endif +#endif +#endif // IMGUI_ENABLE_STB_TRUETYPE + +#if defined(__GNUC__) +#pragma GCC diagnostic pop +#endif + +#if defined(__clang__) +#pragma clang diagnostic pop +#endif + +#if defined(_MSC_VER) +#pragma warning (pop) +#endif + +#ifdef IMGUI_STB_NAMESPACE +} // namespace ImStb +using namespace IMGUI_STB_NAMESPACE; +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Style functions +//----------------------------------------------------------------------------- + +void ImGui::StyleColorsDark(ImGuiStyle* dst) +{ + ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); + ImVec4* colors = style->Colors; + + colors[ImGuiCol_Text] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_TextDisabled] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); + colors[ImGuiCol_WindowBg] = ImVec4(0.06f, 0.06f, 0.06f, 0.94f); + colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_PopupBg] = ImVec4(0.08f, 0.08f, 0.08f, 0.94f); + colors[ImGuiCol_Border] = ImVec4(0.43f, 0.43f, 0.50f, 0.50f); + colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_FrameBg] = ImVec4(0.16f, 0.29f, 0.48f, 0.54f); + colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[ImGuiCol_FrameBgActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[ImGuiCol_TitleBg] = ImVec4(0.04f, 0.04f, 0.04f, 1.00f); + colors[ImGuiCol_TitleBgActive] = ImVec4(0.16f, 0.29f, 0.48f, 1.00f); + colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.00f, 0.00f, 0.00f, 0.51f); + colors[ImGuiCol_MenuBarBg] = ImVec4(0.14f, 0.14f, 0.14f, 1.00f); + colors[ImGuiCol_ScrollbarBg] = ImVec4(0.02f, 0.02f, 0.02f, 0.53f); + colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.31f, 0.31f, 0.31f, 1.00f); + colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.41f, 0.41f, 0.41f, 1.00f); + colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.51f, 0.51f, 0.51f, 1.00f); + colors[ImGuiCol_CheckMark] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_SliderGrab] = ImVec4(0.24f, 0.52f, 0.88f, 1.00f); + colors[ImGuiCol_SliderGrabActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_Button] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[ImGuiCol_ButtonHovered] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_ButtonActive] = ImVec4(0.06f, 0.53f, 0.98f, 1.00f); + colors[ImGuiCol_Header] = ImVec4(0.26f, 0.59f, 0.98f, 0.31f); + colors[ImGuiCol_HeaderHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.80f); + colors[ImGuiCol_HeaderActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_Separator] = colors[ImGuiCol_Border]; + colors[ImGuiCol_SeparatorHovered] = ImVec4(0.10f, 0.40f, 0.75f, 0.78f); + colors[ImGuiCol_SeparatorActive] = ImVec4(0.10f, 0.40f, 0.75f, 1.00f); + colors[ImGuiCol_ResizeGrip] = ImVec4(0.26f, 0.59f, 0.98f, 0.20f); + colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[ImGuiCol_ResizeGripActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.95f); + colors[ImGuiCol_TabHovered] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_Tab] = ImLerp(colors[ImGuiCol_Header], colors[ImGuiCol_TitleBgActive], 0.80f); + colors[ImGuiCol_TabSelected] = ImLerp(colors[ImGuiCol_HeaderActive], colors[ImGuiCol_TitleBgActive], 0.60f); + colors[ImGuiCol_TabSelectedOverline] = colors[ImGuiCol_HeaderActive]; + colors[ImGuiCol_TabDimmed] = ImLerp(colors[ImGuiCol_Tab], colors[ImGuiCol_TitleBg], 0.80f); + colors[ImGuiCol_TabDimmedSelected] = ImLerp(colors[ImGuiCol_TabSelected], colors[ImGuiCol_TitleBg], 0.40f); + colors[ImGuiCol_TabDimmedSelectedOverline] = ImVec4(0.50f, 0.50f, 0.50f, 1.00f); + colors[ImGuiCol_PlotLines] = ImVec4(0.61f, 0.61f, 0.61f, 1.00f); + colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f); + colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f); + colors[ImGuiCol_TableHeaderBg] = ImVec4(0.19f, 0.19f, 0.20f, 1.00f); + colors[ImGuiCol_TableBorderStrong] = ImVec4(0.31f, 0.31f, 0.35f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableBorderLight] = ImVec4(0.23f, 0.23f, 0.25f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableRowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_TableRowBgAlt] = ImVec4(1.00f, 1.00f, 1.00f, 0.06f); + colors[ImGuiCol_TextLink] = colors[ImGuiCol_HeaderActive]; + colors[ImGuiCol_TextSelectedBg] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f); + colors[ImGuiCol_DragDropTarget] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f); + colors[ImGuiCol_NavHighlight] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f); + colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.20f); + colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.35f); + colors[ImGuiCol_WindowShadow] = ImVec4(0.08f, 0.08f, 0.08f, 0.35f); +} + +void ImGui::StyleColorsClassic(ImGuiStyle* dst) +{ + ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); + ImVec4* colors = style->Colors; + + colors[ImGuiCol_Text] = ImVec4(0.90f, 0.90f, 0.90f, 1.00f); + colors[ImGuiCol_TextDisabled] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f); + colors[ImGuiCol_WindowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.85f); + colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_PopupBg] = ImVec4(0.11f, 0.11f, 0.14f, 0.92f); + colors[ImGuiCol_Border] = ImVec4(0.50f, 0.50f, 0.50f, 0.50f); + colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_FrameBg] = ImVec4(0.43f, 0.43f, 0.43f, 0.39f); + colors[ImGuiCol_FrameBgHovered] = ImVec4(0.47f, 0.47f, 0.69f, 0.40f); + colors[ImGuiCol_FrameBgActive] = ImVec4(0.42f, 0.41f, 0.64f, 0.69f); + colors[ImGuiCol_TitleBg] = ImVec4(0.27f, 0.27f, 0.54f, 0.83f); + colors[ImGuiCol_TitleBgActive] = ImVec4(0.32f, 0.32f, 0.63f, 0.87f); + colors[ImGuiCol_TitleBgCollapsed] = ImVec4(0.40f, 0.40f, 0.80f, 0.20f); + colors[ImGuiCol_MenuBarBg] = ImVec4(0.40f, 0.40f, 0.55f, 0.80f); + colors[ImGuiCol_ScrollbarBg] = ImVec4(0.20f, 0.25f, 0.30f, 0.60f); + colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.40f, 0.40f, 0.80f, 0.30f); + colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.40f, 0.40f, 0.80f, 0.40f); + colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.41f, 0.39f, 0.80f, 0.60f); + colors[ImGuiCol_CheckMark] = ImVec4(0.90f, 0.90f, 0.90f, 0.50f); + colors[ImGuiCol_SliderGrab] = ImVec4(1.00f, 1.00f, 1.00f, 0.30f); + colors[ImGuiCol_SliderGrabActive] = ImVec4(0.41f, 0.39f, 0.80f, 0.60f); + colors[ImGuiCol_Button] = ImVec4(0.35f, 0.40f, 0.61f, 0.62f); + colors[ImGuiCol_ButtonHovered] = ImVec4(0.40f, 0.48f, 0.71f, 0.79f); + colors[ImGuiCol_ButtonActive] = ImVec4(0.46f, 0.54f, 0.80f, 1.00f); + colors[ImGuiCol_Header] = ImVec4(0.40f, 0.40f, 0.90f, 0.45f); + colors[ImGuiCol_HeaderHovered] = ImVec4(0.45f, 0.45f, 0.90f, 0.80f); + colors[ImGuiCol_HeaderActive] = ImVec4(0.53f, 0.53f, 0.87f, 0.80f); + colors[ImGuiCol_Separator] = ImVec4(0.50f, 0.50f, 0.50f, 0.60f); + colors[ImGuiCol_SeparatorHovered] = ImVec4(0.60f, 0.60f, 0.70f, 1.00f); + colors[ImGuiCol_SeparatorActive] = ImVec4(0.70f, 0.70f, 0.90f, 1.00f); + colors[ImGuiCol_ResizeGrip] = ImVec4(1.00f, 1.00f, 1.00f, 0.10f); + colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.78f, 0.82f, 1.00f, 0.60f); + colors[ImGuiCol_ResizeGripActive] = ImVec4(0.78f, 0.82f, 1.00f, 0.90f); + colors[ImGuiCol_TabHovered] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_Tab] = ImLerp(colors[ImGuiCol_Header], colors[ImGuiCol_TitleBgActive], 0.80f); + colors[ImGuiCol_TabSelected] = ImLerp(colors[ImGuiCol_HeaderActive], colors[ImGuiCol_TitleBgActive], 0.60f); + colors[ImGuiCol_TabSelectedOverline] = colors[ImGuiCol_HeaderActive]; + colors[ImGuiCol_TabDimmed] = ImLerp(colors[ImGuiCol_Tab], colors[ImGuiCol_TitleBg], 0.80f); + colors[ImGuiCol_TabDimmedSelected] = ImLerp(colors[ImGuiCol_TabSelected], colors[ImGuiCol_TitleBg], 0.40f); + colors[ImGuiCol_TabDimmedSelectedOverline] = colors[ImGuiCol_HeaderActive]; + colors[ImGuiCol_PlotLines] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_PlotLinesHovered] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.60f, 0.00f, 1.00f); + colors[ImGuiCol_TableHeaderBg] = ImVec4(0.27f, 0.27f, 0.38f, 1.00f); + colors[ImGuiCol_TableBorderStrong] = ImVec4(0.31f, 0.31f, 0.45f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableBorderLight] = ImVec4(0.26f, 0.26f, 0.28f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableRowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_TableRowBgAlt] = ImVec4(1.00f, 1.00f, 1.00f, 0.07f); + colors[ImGuiCol_TextLink] = colors[ImGuiCol_HeaderActive]; + colors[ImGuiCol_TextSelectedBg] = ImVec4(0.00f, 0.00f, 1.00f, 0.35f); + colors[ImGuiCol_DragDropTarget] = ImVec4(1.00f, 1.00f, 0.00f, 0.90f); + colors[ImGuiCol_NavHighlight] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_NavWindowingHighlight] = ImVec4(1.00f, 1.00f, 1.00f, 0.70f); + colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.80f, 0.80f, 0.80f, 0.20f); + colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.35f); + colors[ImGuiCol_WindowShadow] = ImVec4(0.08f, 0.08f, 0.08f, 0.35f); +} + +// Those light colors are better suited with a thicker font than the default one + FrameBorder +void ImGui::StyleColorsLight(ImGuiStyle* dst) +{ + ImGuiStyle* style = dst ? dst : &ImGui::GetStyle(); + ImVec4* colors = style->Colors; + + colors[ImGuiCol_Text] = ImVec4(0.00f, 0.00f, 0.00f, 1.00f); + colors[ImGuiCol_TextDisabled] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f); + colors[ImGuiCol_WindowBg] = ImVec4(0.94f, 0.94f, 0.94f, 1.00f); + colors[ImGuiCol_ChildBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_PopupBg] = ImVec4(1.00f, 1.00f, 1.00f, 0.98f); + colors[ImGuiCol_Border] = ImVec4(0.00f, 0.00f, 0.00f, 0.30f); + colors[ImGuiCol_BorderShadow] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_FrameBg] = ImVec4(1.00f, 1.00f, 1.00f, 1.00f); + colors[ImGuiCol_FrameBgHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[ImGuiCol_FrameBgActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[ImGuiCol_TitleBg] = ImVec4(0.96f, 0.96f, 0.96f, 1.00f); + colors[ImGuiCol_TitleBgActive] = ImVec4(0.82f, 0.82f, 0.82f, 1.00f); + colors[ImGuiCol_TitleBgCollapsed] = ImVec4(1.00f, 1.00f, 1.00f, 0.51f); + colors[ImGuiCol_MenuBarBg] = ImVec4(0.86f, 0.86f, 0.86f, 1.00f); + colors[ImGuiCol_ScrollbarBg] = ImVec4(0.98f, 0.98f, 0.98f, 0.53f); + colors[ImGuiCol_ScrollbarGrab] = ImVec4(0.69f, 0.69f, 0.69f, 0.80f); + colors[ImGuiCol_ScrollbarGrabHovered] = ImVec4(0.49f, 0.49f, 0.49f, 0.80f); + colors[ImGuiCol_ScrollbarGrabActive] = ImVec4(0.49f, 0.49f, 0.49f, 1.00f); + colors[ImGuiCol_CheckMark] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_SliderGrab] = ImVec4(0.26f, 0.59f, 0.98f, 0.78f); + colors[ImGuiCol_SliderGrabActive] = ImVec4(0.46f, 0.54f, 0.80f, 0.60f); + colors[ImGuiCol_Button] = ImVec4(0.26f, 0.59f, 0.98f, 0.40f); + colors[ImGuiCol_ButtonHovered] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_ButtonActive] = ImVec4(0.06f, 0.53f, 0.98f, 1.00f); + colors[ImGuiCol_Header] = ImVec4(0.26f, 0.59f, 0.98f, 0.31f); + colors[ImGuiCol_HeaderHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.80f); + colors[ImGuiCol_HeaderActive] = ImVec4(0.26f, 0.59f, 0.98f, 1.00f); + colors[ImGuiCol_Separator] = ImVec4(0.39f, 0.39f, 0.39f, 0.62f); + colors[ImGuiCol_SeparatorHovered] = ImVec4(0.14f, 0.44f, 0.80f, 0.78f); + colors[ImGuiCol_SeparatorActive] = ImVec4(0.14f, 0.44f, 0.80f, 1.00f); + colors[ImGuiCol_ResizeGrip] = ImVec4(0.35f, 0.35f, 0.35f, 0.17f); + colors[ImGuiCol_ResizeGripHovered] = ImVec4(0.26f, 0.59f, 0.98f, 0.67f); + colors[ImGuiCol_ResizeGripActive] = ImVec4(0.26f, 0.59f, 0.98f, 0.95f); + colors[ImGuiCol_TabHovered] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_Tab] = ImLerp(colors[ImGuiCol_Header], colors[ImGuiCol_TitleBgActive], 0.90f); + colors[ImGuiCol_TabSelected] = ImLerp(colors[ImGuiCol_HeaderActive], colors[ImGuiCol_TitleBgActive], 0.60f); + colors[ImGuiCol_TabSelectedOverline] = colors[ImGuiCol_HeaderActive]; + colors[ImGuiCol_TabDimmed] = ImLerp(colors[ImGuiCol_Tab], colors[ImGuiCol_TitleBg], 0.80f); + colors[ImGuiCol_TabDimmedSelected] = ImLerp(colors[ImGuiCol_TabSelected], colors[ImGuiCol_TitleBg], 0.40f); + colors[ImGuiCol_TabDimmedSelectedOverline] = ImVec4(0.26f, 0.59f, 1.00f, 1.00f); + colors[ImGuiCol_PlotLines] = ImVec4(0.39f, 0.39f, 0.39f, 1.00f); + colors[ImGuiCol_PlotLinesHovered] = ImVec4(1.00f, 0.43f, 0.35f, 1.00f); + colors[ImGuiCol_PlotHistogram] = ImVec4(0.90f, 0.70f, 0.00f, 1.00f); + colors[ImGuiCol_PlotHistogramHovered] = ImVec4(1.00f, 0.45f, 0.00f, 1.00f); + colors[ImGuiCol_TableHeaderBg] = ImVec4(0.78f, 0.87f, 0.98f, 1.00f); + colors[ImGuiCol_TableBorderStrong] = ImVec4(0.57f, 0.57f, 0.64f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableBorderLight] = ImVec4(0.68f, 0.68f, 0.74f, 1.00f); // Prefer using Alpha=1.0 here + colors[ImGuiCol_TableRowBg] = ImVec4(0.00f, 0.00f, 0.00f, 0.00f); + colors[ImGuiCol_TableRowBgAlt] = ImVec4(0.30f, 0.30f, 0.30f, 0.09f); + colors[ImGuiCol_TextLink] = colors[ImGuiCol_HeaderActive]; + colors[ImGuiCol_TextSelectedBg] = ImVec4(0.26f, 0.59f, 0.98f, 0.35f); + colors[ImGuiCol_DragDropTarget] = ImVec4(0.26f, 0.59f, 0.98f, 0.95f); + colors[ImGuiCol_NavHighlight] = colors[ImGuiCol_HeaderHovered]; + colors[ImGuiCol_NavWindowingHighlight] = ImVec4(0.70f, 0.70f, 0.70f, 0.70f); + colors[ImGuiCol_NavWindowingDimBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.20f); + colors[ImGuiCol_ModalWindowDimBg] = ImVec4(0.20f, 0.20f, 0.20f, 0.35f); + colors[ImGuiCol_WindowShadow] = ImVec4(0.08f, 0.08f, 0.08f, 0.35f); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontAtlasShadowTexConfig +//----------------------------------------------------------------------------- + +void ImFontAtlasShadowTexConfig::SetupDefaults() +{ + TexCornerSize = 16; + TexEdgeSize = 1; + TexFalloffPower = 4.8f; + TexDistanceFieldOffset = 3.8f; + TexBlur = true; +} + +int ImFontAtlasShadowTexConfig::CalcConvexTexWidth() const +{ + // We have to pad the texture enough that we don't go off the edges when we expand the corner triangles + return (int)((TexCornerSize / ImCos(IM_PI * 0.25f)) + (GetConvexTexPadding() * 2)); +} + +int ImFontAtlasShadowTexConfig::CalcConvexTexHeight() const +{ + return CalcConvexTexWidth(); // Same value +} + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawList +//----------------------------------------------------------------------------- + +ImDrawListSharedData::ImDrawListSharedData() +{ + memset(this, 0, sizeof(*this)); + for (int i = 0; i < IM_ARRAYSIZE(ArcFastVtx); i++) + { + const float a = ((float)i * 2 * IM_PI) / (float)IM_ARRAYSIZE(ArcFastVtx); + ArcFastVtx[i] = ImVec2(ImCos(a), ImSin(a)); + } + ArcFastRadiusCutoff = IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(IM_DRAWLIST_ARCFAST_SAMPLE_MAX, CircleSegmentMaxError); +} + +void ImDrawListSharedData::SetCircleTessellationMaxError(float max_error) +{ + if (CircleSegmentMaxError == max_error) + return; + + IM_ASSERT(max_error > 0.0f); + CircleSegmentMaxError = max_error; + for (int i = 0; i < IM_ARRAYSIZE(CircleSegmentCounts); i++) + { + const float radius = (float)i; + CircleSegmentCounts[i] = (ImU8)((i > 0) ? IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(radius, CircleSegmentMaxError) : IM_DRAWLIST_ARCFAST_SAMPLE_MAX); + } + ArcFastRadiusCutoff = IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(IM_DRAWLIST_ARCFAST_SAMPLE_MAX, CircleSegmentMaxError); +} + +// Initialize before use in a new frame. We always have a command ready in the buffer. +// In the majority of cases, you would want to call PushClipRect() and PushTextureID() after this. +void ImDrawList::_ResetForNewFrame() +{ + // Verify that the ImDrawCmd fields we want to memcmp() are contiguous in memory. + IM_STATIC_ASSERT(offsetof(ImDrawCmd, ClipRect) == 0); + IM_STATIC_ASSERT(offsetof(ImDrawCmd, TextureId) == sizeof(ImVec4)); + IM_STATIC_ASSERT(offsetof(ImDrawCmd, VtxOffset) == sizeof(ImVec4) + sizeof(ImTextureID)); + if (_Splitter._Count > 1) + _Splitter.Merge(this); + + CmdBuffer.resize(0); + IdxBuffer.resize(0); + VtxBuffer.resize(0); + Flags = _Data->InitialFlags; + memset(&_CmdHeader, 0, sizeof(_CmdHeader)); + _VtxCurrentIdx = 0; + _VtxWritePtr = NULL; + _IdxWritePtr = NULL; + _ClipRectStack.resize(0); + _TextureIdStack.resize(0); + _Path.resize(0); + _Splitter.Clear(); + CmdBuffer.push_back(ImDrawCmd()); + _FringeScale = 1.0f; +} + +void ImDrawList::_ClearFreeMemory() +{ + CmdBuffer.clear(); + IdxBuffer.clear(); + VtxBuffer.clear(); + Flags = ImDrawListFlags_None; + _VtxCurrentIdx = 0; + _VtxWritePtr = NULL; + _IdxWritePtr = NULL; + _ClipRectStack.clear(); + _TextureIdStack.clear(); + _Path.clear(); + _Splitter.ClearFreeMemory(); +} + +ImDrawList* ImDrawList::CloneOutput() const +{ + ImDrawList* dst = IM_NEW(ImDrawList(_Data)); + dst->CmdBuffer = CmdBuffer; + dst->IdxBuffer = IdxBuffer; + dst->VtxBuffer = VtxBuffer; + dst->Flags = Flags; + return dst; +} + +void ImDrawList::AddDrawCmd() +{ + ImDrawCmd draw_cmd; + draw_cmd.ClipRect = _CmdHeader.ClipRect; // Same as calling ImDrawCmd_HeaderCopy() + draw_cmd.TextureId = _CmdHeader.TextureId; + draw_cmd.VtxOffset = _CmdHeader.VtxOffset; + draw_cmd.IdxOffset = IdxBuffer.Size; + + IM_ASSERT(draw_cmd.ClipRect.x <= draw_cmd.ClipRect.z && draw_cmd.ClipRect.y <= draw_cmd.ClipRect.w); + CmdBuffer.push_back(draw_cmd); +} + +// Pop trailing draw command (used before merging or presenting to user) +// Note that this leaves the ImDrawList in a state unfit for further commands, as most code assume that CmdBuffer.Size > 0 && CmdBuffer.back().UserCallback == NULL +void ImDrawList::_PopUnusedDrawCmd() +{ + while (CmdBuffer.Size > 0) + { + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount != 0 || curr_cmd->UserCallback != NULL) + return;// break; + CmdBuffer.pop_back(); + } +} + +void ImDrawList::AddCallback(ImDrawCallback callback, void* callback_data) +{ + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + IM_ASSERT(curr_cmd->UserCallback == NULL); + if (curr_cmd->ElemCount != 0) + { + AddDrawCmd(); + curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + } + curr_cmd->UserCallback = callback; + curr_cmd->UserCallbackData = callback_data; + + AddDrawCmd(); // Force a new command after us (see comment below) +} + +// Compare ClipRect, TextureId and VtxOffset with a single memcmp() +#define ImDrawCmd_HeaderSize (offsetof(ImDrawCmd, VtxOffset) + sizeof(unsigned int)) +#define ImDrawCmd_HeaderCompare(CMD_LHS, CMD_RHS) (memcmp(CMD_LHS, CMD_RHS, ImDrawCmd_HeaderSize)) // Compare ClipRect, TextureId, VtxOffset +#define ImDrawCmd_HeaderCopy(CMD_DST, CMD_SRC) (memcpy(CMD_DST, CMD_SRC, ImDrawCmd_HeaderSize)) // Copy ClipRect, TextureId, VtxOffset +#define ImDrawCmd_AreSequentialIdxOffset(CMD_0, CMD_1) (CMD_0->IdxOffset + CMD_0->ElemCount == CMD_1->IdxOffset) + +// Try to merge two last draw commands +void ImDrawList::_TryMergeDrawCmds() +{ + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + ImDrawCmd* prev_cmd = curr_cmd - 1; + if (ImDrawCmd_HeaderCompare(curr_cmd, prev_cmd) == 0 && ImDrawCmd_AreSequentialIdxOffset(prev_cmd, curr_cmd) && curr_cmd->UserCallback == NULL && prev_cmd->UserCallback == NULL) + { + prev_cmd->ElemCount += curr_cmd->ElemCount; + CmdBuffer.pop_back(); + } +} + +// Our scheme may appears a bit unusual, basically we want the most-common calls AddLine AddRect etc. to not have to perform any check so we always have a command ready in the stack. +// The cost of figuring out if a new command has to be added or if we can merge is paid in those Update** functions only. +void ImDrawList::_OnChangedClipRect() +{ + // If current command is used with different settings we need to add a new command + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount != 0 && memcmp(&curr_cmd->ClipRect, &_CmdHeader.ClipRect, sizeof(ImVec4)) != 0) + { + AddDrawCmd(); + return; + } + IM_ASSERT(curr_cmd->UserCallback == NULL); + + // Try to merge with previous command if it matches, else use current command + ImDrawCmd* prev_cmd = curr_cmd - 1; + if (curr_cmd->ElemCount == 0 && CmdBuffer.Size > 1 && ImDrawCmd_HeaderCompare(&_CmdHeader, prev_cmd) == 0 && ImDrawCmd_AreSequentialIdxOffset(prev_cmd, curr_cmd) && prev_cmd->UserCallback == NULL) + { + CmdBuffer.pop_back(); + return; + } + curr_cmd->ClipRect = _CmdHeader.ClipRect; +} + +void ImDrawList::_OnChangedTextureID() +{ + // If current command is used with different settings we need to add a new command + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount != 0 && curr_cmd->TextureId != _CmdHeader.TextureId) + { + AddDrawCmd(); + return; + } + IM_ASSERT(curr_cmd->UserCallback == NULL); + + // Try to merge with previous command if it matches, else use current command + ImDrawCmd* prev_cmd = curr_cmd - 1; + if (curr_cmd->ElemCount == 0 && CmdBuffer.Size > 1 && ImDrawCmd_HeaderCompare(&_CmdHeader, prev_cmd) == 0 && ImDrawCmd_AreSequentialIdxOffset(prev_cmd, curr_cmd) && prev_cmd->UserCallback == NULL) + { + CmdBuffer.pop_back(); + return; + } + curr_cmd->TextureId = _CmdHeader.TextureId; +} + +void ImDrawList::_OnChangedVtxOffset() +{ + // We don't need to compare curr_cmd->VtxOffset != _CmdHeader.VtxOffset because we know it'll be different at the time we call this. + _VtxCurrentIdx = 0; + IM_ASSERT_PARANOID(CmdBuffer.Size > 0); + ImDrawCmd* curr_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + //IM_ASSERT(curr_cmd->VtxOffset != _CmdHeader.VtxOffset); // See #3349 + if (curr_cmd->ElemCount != 0) + { + AddDrawCmd(); + return; + } + IM_ASSERT(curr_cmd->UserCallback == NULL); + curr_cmd->VtxOffset = _CmdHeader.VtxOffset; +} + +int ImDrawList::_CalcCircleAutoSegmentCount(float radius) const +{ + // Automatic segment count + const int radius_idx = (int)(radius + 0.999999f); // ceil to never reduce accuracy + if (radius_idx >= 0 && radius_idx < IM_ARRAYSIZE(_Data->CircleSegmentCounts)) + return _Data->CircleSegmentCounts[radius_idx]; // Use cached value + else + return IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(radius, _Data->CircleSegmentMaxError); +} + +// Render-level scissoring. This is passed down to your render function but not used for CPU-side coarse clipping. Prefer using higher-level ImGui::PushClipRect() to affect logic (hit-testing and widget culling) +void ImDrawList::PushClipRect(const ImVec2& cr_min, const ImVec2& cr_max, bool intersect_with_current_clip_rect) +{ + ImVec4 cr(cr_min.x, cr_min.y, cr_max.x, cr_max.y); + if (intersect_with_current_clip_rect) + { + ImVec4 current = _CmdHeader.ClipRect; + if (cr.x < current.x) cr.x = current.x; + if (cr.y < current.y) cr.y = current.y; + if (cr.z > current.z) cr.z = current.z; + if (cr.w > current.w) cr.w = current.w; + } + cr.z = ImMax(cr.x, cr.z); + cr.w = ImMax(cr.y, cr.w); + + _ClipRectStack.push_back(cr); + _CmdHeader.ClipRect = cr; + _OnChangedClipRect(); +} + +void ImDrawList::PushClipRectFullScreen() +{ + PushClipRect(ImVec2(_Data->ClipRectFullscreen.x, _Data->ClipRectFullscreen.y), ImVec2(_Data->ClipRectFullscreen.z, _Data->ClipRectFullscreen.w)); +} + +void ImDrawList::PopClipRect() +{ + _ClipRectStack.pop_back(); + _CmdHeader.ClipRect = (_ClipRectStack.Size == 0) ? _Data->ClipRectFullscreen : _ClipRectStack.Data[_ClipRectStack.Size - 1]; + _OnChangedClipRect(); +} + +void ImDrawList::PushTextureID(ImTextureID texture_id) +{ + _TextureIdStack.push_back(texture_id); + _CmdHeader.TextureId = texture_id; + _OnChangedTextureID(); +} + +void ImDrawList::PopTextureID() +{ + _TextureIdStack.pop_back(); + _CmdHeader.TextureId = (_TextureIdStack.Size == 0) ? (ImTextureID)NULL : _TextureIdStack.Data[_TextureIdStack.Size - 1]; + _OnChangedTextureID(); +} + +// This is used by ImGui::PushFont()/PopFont(). It works because we never use _TextureIdStack[] elsewhere than in PushTextureID()/PopTextureID(). +void ImDrawList::_SetTextureID(ImTextureID texture_id) +{ + if (_CmdHeader.TextureId == texture_id) + return; + _CmdHeader.TextureId = texture_id; + _OnChangedTextureID(); +} + +// Reserve space for a number of vertices and indices. +// You must finish filling your reserved data before calling PrimReserve() again, as it may reallocate or +// submit the intermediate results. PrimUnreserve() can be used to release unused allocations. +void ImDrawList::PrimReserve(int idx_count, int vtx_count) +{ + // Large mesh support (when enabled) + IM_ASSERT_PARANOID(idx_count >= 0 && vtx_count >= 0); + if (sizeof(ImDrawIdx) == 2 && (_VtxCurrentIdx + vtx_count >= (1 << 16)) && (Flags & ImDrawListFlags_AllowVtxOffset)) + { + // FIXME: In theory we should be testing that vtx_count <64k here. + // In practice, RenderText() relies on reserving ahead for a worst case scenario so it is currently useful for us + // to not make that check until we rework the text functions to handle clipping and large horizontal lines better. + _CmdHeader.VtxOffset = VtxBuffer.Size; + _OnChangedVtxOffset(); + } + + ImDrawCmd* draw_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + draw_cmd->ElemCount += idx_count; + + int vtx_buffer_old_size = VtxBuffer.Size; + VtxBuffer.resize(vtx_buffer_old_size + vtx_count); + _VtxWritePtr = VtxBuffer.Data + vtx_buffer_old_size; + + int idx_buffer_old_size = IdxBuffer.Size; + IdxBuffer.resize(idx_buffer_old_size + idx_count); + _IdxWritePtr = IdxBuffer.Data + idx_buffer_old_size; +} + +// Release the number of reserved vertices/indices from the end of the last reservation made with PrimReserve(). +void ImDrawList::PrimUnreserve(int idx_count, int vtx_count) +{ + IM_ASSERT_PARANOID(idx_count >= 0 && vtx_count >= 0); + + ImDrawCmd* draw_cmd = &CmdBuffer.Data[CmdBuffer.Size - 1]; + draw_cmd->ElemCount -= idx_count; + VtxBuffer.shrink(VtxBuffer.Size - vtx_count); + IdxBuffer.shrink(IdxBuffer.Size - idx_count); +} + +// Fully unrolled with inline call to keep our debug builds decently fast. +void ImDrawList::PrimRect(const ImVec2& a, const ImVec2& c, ImU32 col) +{ + ImVec2 b(c.x, a.y), d(a.x, c.y), uv(_Data->TexUvWhitePixel); + ImDrawIdx idx = (ImDrawIdx)_VtxCurrentIdx; + _IdxWritePtr[0] = idx; _IdxWritePtr[1] = (ImDrawIdx)(idx+1); _IdxWritePtr[2] = (ImDrawIdx)(idx+2); + _IdxWritePtr[3] = idx; _IdxWritePtr[4] = (ImDrawIdx)(idx+2); _IdxWritePtr[5] = (ImDrawIdx)(idx+3); + _VtxWritePtr[0].pos = a; _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos = b; _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = c; _VtxWritePtr[2].uv = uv; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = d; _VtxWritePtr[3].uv = uv; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + _VtxCurrentIdx += 4; + _IdxWritePtr += 6; +} + +void ImDrawList::PrimRectUV(const ImVec2& a, const ImVec2& c, const ImVec2& uv_a, const ImVec2& uv_c, ImU32 col) +{ + ImVec2 b(c.x, a.y), d(a.x, c.y), uv_b(uv_c.x, uv_a.y), uv_d(uv_a.x, uv_c.y); + ImDrawIdx idx = (ImDrawIdx)_VtxCurrentIdx; + _IdxWritePtr[0] = idx; _IdxWritePtr[1] = (ImDrawIdx)(idx+1); _IdxWritePtr[2] = (ImDrawIdx)(idx+2); + _IdxWritePtr[3] = idx; _IdxWritePtr[4] = (ImDrawIdx)(idx+2); _IdxWritePtr[5] = (ImDrawIdx)(idx+3); + _VtxWritePtr[0].pos = a; _VtxWritePtr[0].uv = uv_a; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos = b; _VtxWritePtr[1].uv = uv_b; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = c; _VtxWritePtr[2].uv = uv_c; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = d; _VtxWritePtr[3].uv = uv_d; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + _VtxCurrentIdx += 4; + _IdxWritePtr += 6; +} + +void ImDrawList::PrimQuadUV(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& d, const ImVec2& uv_a, const ImVec2& uv_b, const ImVec2& uv_c, const ImVec2& uv_d, ImU32 col) +{ + ImDrawIdx idx = (ImDrawIdx)_VtxCurrentIdx; + _IdxWritePtr[0] = idx; _IdxWritePtr[1] = (ImDrawIdx)(idx+1); _IdxWritePtr[2] = (ImDrawIdx)(idx+2); + _IdxWritePtr[3] = idx; _IdxWritePtr[4] = (ImDrawIdx)(idx+2); _IdxWritePtr[5] = (ImDrawIdx)(idx+3); + _VtxWritePtr[0].pos = a; _VtxWritePtr[0].uv = uv_a; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos = b; _VtxWritePtr[1].uv = uv_b; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = c; _VtxWritePtr[2].uv = uv_c; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = d; _VtxWritePtr[3].uv = uv_d; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + _VtxCurrentIdx += 4; + _IdxWritePtr += 6; +} + +// On AddPolyline() and AddConvexPolyFilled() we intentionally avoid using ImVec2 and superfluous function calls to optimize debug/non-inlined builds. +// - Those macros expects l-values and need to be used as their own statement. +// - Those macros are intentionally not surrounded by the 'do {} while (0)' idiom because even that translates to runtime with debug compilers. +#define IM_NORMALIZE2F_OVER_ZERO(VX,VY) { float d2 = VX*VX + VY*VY; if (d2 > 0.0f) { float inv_len = ImRsqrt(d2); VX *= inv_len; VY *= inv_len; } } (void)0 +#define IM_FIXNORMAL2F_MAX_INVLEN2 100.0f // 500.0f (see #4053, #3366) +#define IM_FIXNORMAL2F(VX,VY) { float d2 = VX*VX + VY*VY; if (d2 > 0.000001f) { float inv_len2 = 1.0f / d2; if (inv_len2 > IM_FIXNORMAL2F_MAX_INVLEN2) inv_len2 = IM_FIXNORMAL2F_MAX_INVLEN2; VX *= inv_len2; VY *= inv_len2; } } (void)0 + +// TODO: Thickness anti-aliased lines cap are missing their AA fringe. +// We avoid using the ImVec2 math operators here to reduce cost to a minimum for debug/non-inlined builds. +void ImDrawList::AddPolyline(const ImVec2* points, const int points_count, ImU32 col, ImDrawFlags flags, float thickness) +{ + if (points_count < 2 || (col & IM_COL32_A_MASK) == 0) + return; + + const bool closed = (flags & ImDrawFlags_Closed) != 0; + const ImVec2 opaque_uv = _Data->TexUvWhitePixel; + const int count = closed ? points_count : points_count - 1; // The number of line segments we need to draw + const bool thick_line = (thickness > _FringeScale); + + if (Flags & ImDrawListFlags_AntiAliasedLines) + { + // Anti-aliased stroke + const float AA_SIZE = _FringeScale; + const ImU32 col_trans = col & ~IM_COL32_A_MASK; + + // Thicknesses <1.0 should behave like thickness 1.0 + thickness = ImMax(thickness, 1.0f); + const int integer_thickness = (int)thickness; + const float fractional_thickness = thickness - integer_thickness; + + // Do we want to draw this line using a texture? + // - For now, only draw integer-width lines using textures to avoid issues with the way scaling occurs, could be improved. + // - If AA_SIZE is not 1.0f we cannot use the texture path. + const bool use_texture = (Flags & ImDrawListFlags_AntiAliasedLinesUseTex) && (integer_thickness < IM_DRAWLIST_TEX_LINES_WIDTH_MAX) && (fractional_thickness <= 0.00001f) && (AA_SIZE == 1.0f); + + // We should never hit this, because NewFrame() doesn't set ImDrawListFlags_AntiAliasedLinesUseTex unless ImFontAtlasFlags_NoBakedLines is off + IM_ASSERT_PARANOID(!use_texture || !(_Data->Font->ContainerAtlas->Flags & ImFontAtlasFlags_NoBakedLines)); + + const int idx_count = use_texture ? (count * 6) : (thick_line ? count * 18 : count * 12); + const int vtx_count = use_texture ? (points_count * 2) : (thick_line ? points_count * 4 : points_count * 3); + PrimReserve(idx_count, vtx_count); + + // Temporary buffer + // The first items are normals at each line point, then after that there are either 2 or 4 temp points for each line point + _Data->TempBuffer.reserve_discard(points_count * ((use_texture || !thick_line) ? 3 : 5)); + ImVec2* temp_normals = _Data->TempBuffer.Data; + ImVec2* temp_points = temp_normals + points_count; + + // Calculate normals (tangents) for each line segment + for (int i1 = 0; i1 < count; i1++) + { + const int i2 = (i1 + 1) == points_count ? 0 : i1 + 1; + float dx = points[i2].x - points[i1].x; + float dy = points[i2].y - points[i1].y; + IM_NORMALIZE2F_OVER_ZERO(dx, dy); + temp_normals[i1].x = dy; + temp_normals[i1].y = -dx; + } + if (!closed) + temp_normals[points_count - 1] = temp_normals[points_count - 2]; + + // If we are drawing a one-pixel-wide line without a texture, or a textured line of any width, we only need 2 or 3 vertices per point + if (use_texture || !thick_line) + { + // [PATH 1] Texture-based lines (thick or non-thick) + // [PATH 2] Non texture-based lines (non-thick) + + // The width of the geometry we need to draw - this is essentially pixels for the line itself, plus "one pixel" for AA. + // - In the texture-based path, we don't use AA_SIZE here because the +1 is tied to the generated texture + // (see ImFontAtlasBuildRenderLinesTexData() function), and so alternate values won't work without changes to that code. + // - In the non texture-based paths, we would allow AA_SIZE to potentially be != 1.0f with a patch (e.g. fringe_scale patch to + // allow scaling geometry while preserving one-screen-pixel AA fringe). + const float half_draw_size = use_texture ? ((thickness * 0.5f) + 1) : AA_SIZE; + + // If line is not closed, the first and last points need to be generated differently as there are no normals to blend + if (!closed) + { + temp_points[0] = points[0] + temp_normals[0] * half_draw_size; + temp_points[1] = points[0] - temp_normals[0] * half_draw_size; + temp_points[(points_count-1)*2+0] = points[points_count-1] + temp_normals[points_count-1] * half_draw_size; + temp_points[(points_count-1)*2+1] = points[points_count-1] - temp_normals[points_count-1] * half_draw_size; + } + + // Generate the indices to form a number of triangles for each line segment, and the vertices for the line edges + // This takes points n and n+1 and writes into n+1, with the first point in a closed line being generated from the final one (as n+1 wraps) + // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer. + unsigned int idx1 = _VtxCurrentIdx; // Vertex index for start of line segment + for (int i1 = 0; i1 < count; i1++) // i1 is the first point of the line segment + { + const int i2 = (i1 + 1) == points_count ? 0 : i1 + 1; // i2 is the second point of the line segment + const unsigned int idx2 = ((i1 + 1) == points_count) ? _VtxCurrentIdx : (idx1 + (use_texture ? 2 : 3)); // Vertex index for end of segment + + // Average normals + float dm_x = (temp_normals[i1].x + temp_normals[i2].x) * 0.5f; + float dm_y = (temp_normals[i1].y + temp_normals[i2].y) * 0.5f; + IM_FIXNORMAL2F(dm_x, dm_y); + dm_x *= half_draw_size; // dm_x, dm_y are offset to the outer edge of the AA area + dm_y *= half_draw_size; + + // Add temporary vertexes for the outer edges + ImVec2* out_vtx = &temp_points[i2 * 2]; + out_vtx[0].x = points[i2].x + dm_x; + out_vtx[0].y = points[i2].y + dm_y; + out_vtx[1].x = points[i2].x - dm_x; + out_vtx[1].y = points[i2].y - dm_y; + + if (use_texture) + { + // Add indices for two triangles + _IdxWritePtr[0] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[1] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[2] = (ImDrawIdx)(idx1 + 1); // Right tri + _IdxWritePtr[3] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[4] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[5] = (ImDrawIdx)(idx2 + 0); // Left tri + _IdxWritePtr += 6; + } + else + { + // Add indexes for four triangles + _IdxWritePtr[0] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[1] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[2] = (ImDrawIdx)(idx1 + 2); // Right tri 1 + _IdxWritePtr[3] = (ImDrawIdx)(idx1 + 2); _IdxWritePtr[4] = (ImDrawIdx)(idx2 + 2); _IdxWritePtr[5] = (ImDrawIdx)(idx2 + 0); // Right tri 2 + _IdxWritePtr[6] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[7] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[8] = (ImDrawIdx)(idx1 + 0); // Left tri 1 + _IdxWritePtr[9] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[10] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[11] = (ImDrawIdx)(idx2 + 1); // Left tri 2 + _IdxWritePtr += 12; + } + + idx1 = idx2; + } + + // Add vertexes for each point on the line + if (use_texture) + { + // If we're using textures we only need to emit the left/right edge vertices + ImVec4 tex_uvs = _Data->TexUvLines[integer_thickness]; + /*if (fractional_thickness != 0.0f) // Currently always zero when use_texture==false! + { + const ImVec4 tex_uvs_1 = _Data->TexUvLines[integer_thickness + 1]; + tex_uvs.x = tex_uvs.x + (tex_uvs_1.x - tex_uvs.x) * fractional_thickness; // inlined ImLerp() + tex_uvs.y = tex_uvs.y + (tex_uvs_1.y - tex_uvs.y) * fractional_thickness; + tex_uvs.z = tex_uvs.z + (tex_uvs_1.z - tex_uvs.z) * fractional_thickness; + tex_uvs.w = tex_uvs.w + (tex_uvs_1.w - tex_uvs.w) * fractional_thickness; + }*/ + ImVec2 tex_uv0(tex_uvs.x, tex_uvs.y); + ImVec2 tex_uv1(tex_uvs.z, tex_uvs.w); + for (int i = 0; i < points_count; i++) + { + _VtxWritePtr[0].pos = temp_points[i * 2 + 0]; _VtxWritePtr[0].uv = tex_uv0; _VtxWritePtr[0].col = col; // Left-side outer edge + _VtxWritePtr[1].pos = temp_points[i * 2 + 1]; _VtxWritePtr[1].uv = tex_uv1; _VtxWritePtr[1].col = col; // Right-side outer edge + _VtxWritePtr += 2; + } + } + else + { + // If we're not using a texture, we need the center vertex as well + for (int i = 0; i < points_count; i++) + { + _VtxWritePtr[0].pos = points[i]; _VtxWritePtr[0].uv = opaque_uv; _VtxWritePtr[0].col = col; // Center of line + _VtxWritePtr[1].pos = temp_points[i * 2 + 0]; _VtxWritePtr[1].uv = opaque_uv; _VtxWritePtr[1].col = col_trans; // Left-side outer edge + _VtxWritePtr[2].pos = temp_points[i * 2 + 1]; _VtxWritePtr[2].uv = opaque_uv; _VtxWritePtr[2].col = col_trans; // Right-side outer edge + _VtxWritePtr += 3; + } + } + } + else + { + // [PATH 2] Non texture-based lines (thick): we need to draw the solid line core and thus require four vertices per point + const float half_inner_thickness = (thickness - AA_SIZE) * 0.5f; + + // If line is not closed, the first and last points need to be generated differently as there are no normals to blend + if (!closed) + { + const int points_last = points_count - 1; + temp_points[0] = points[0] + temp_normals[0] * (half_inner_thickness + AA_SIZE); + temp_points[1] = points[0] + temp_normals[0] * (half_inner_thickness); + temp_points[2] = points[0] - temp_normals[0] * (half_inner_thickness); + temp_points[3] = points[0] - temp_normals[0] * (half_inner_thickness + AA_SIZE); + temp_points[points_last * 4 + 0] = points[points_last] + temp_normals[points_last] * (half_inner_thickness + AA_SIZE); + temp_points[points_last * 4 + 1] = points[points_last] + temp_normals[points_last] * (half_inner_thickness); + temp_points[points_last * 4 + 2] = points[points_last] - temp_normals[points_last] * (half_inner_thickness); + temp_points[points_last * 4 + 3] = points[points_last] - temp_normals[points_last] * (half_inner_thickness + AA_SIZE); + } + + // Generate the indices to form a number of triangles for each line segment, and the vertices for the line edges + // This takes points n and n+1 and writes into n+1, with the first point in a closed line being generated from the final one (as n+1 wraps) + // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer. + unsigned int idx1 = _VtxCurrentIdx; // Vertex index for start of line segment + for (int i1 = 0; i1 < count; i1++) // i1 is the first point of the line segment + { + const int i2 = (i1 + 1) == points_count ? 0 : (i1 + 1); // i2 is the second point of the line segment + const unsigned int idx2 = (i1 + 1) == points_count ? _VtxCurrentIdx : (idx1 + 4); // Vertex index for end of segment + + // Average normals + float dm_x = (temp_normals[i1].x + temp_normals[i2].x) * 0.5f; + float dm_y = (temp_normals[i1].y + temp_normals[i2].y) * 0.5f; + IM_FIXNORMAL2F(dm_x, dm_y); + float dm_out_x = dm_x * (half_inner_thickness + AA_SIZE); + float dm_out_y = dm_y * (half_inner_thickness + AA_SIZE); + float dm_in_x = dm_x * half_inner_thickness; + float dm_in_y = dm_y * half_inner_thickness; + + // Add temporary vertices + ImVec2* out_vtx = &temp_points[i2 * 4]; + out_vtx[0].x = points[i2].x + dm_out_x; + out_vtx[0].y = points[i2].y + dm_out_y; + out_vtx[1].x = points[i2].x + dm_in_x; + out_vtx[1].y = points[i2].y + dm_in_y; + out_vtx[2].x = points[i2].x - dm_in_x; + out_vtx[2].y = points[i2].y - dm_in_y; + out_vtx[3].x = points[i2].x - dm_out_x; + out_vtx[3].y = points[i2].y - dm_out_y; + + // Add indexes + _IdxWritePtr[0] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[1] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[2] = (ImDrawIdx)(idx1 + 2); + _IdxWritePtr[3] = (ImDrawIdx)(idx1 + 2); _IdxWritePtr[4] = (ImDrawIdx)(idx2 + 2); _IdxWritePtr[5] = (ImDrawIdx)(idx2 + 1); + _IdxWritePtr[6] = (ImDrawIdx)(idx2 + 1); _IdxWritePtr[7] = (ImDrawIdx)(idx1 + 1); _IdxWritePtr[8] = (ImDrawIdx)(idx1 + 0); + _IdxWritePtr[9] = (ImDrawIdx)(idx1 + 0); _IdxWritePtr[10] = (ImDrawIdx)(idx2 + 0); _IdxWritePtr[11] = (ImDrawIdx)(idx2 + 1); + _IdxWritePtr[12] = (ImDrawIdx)(idx2 + 2); _IdxWritePtr[13] = (ImDrawIdx)(idx1 + 2); _IdxWritePtr[14] = (ImDrawIdx)(idx1 + 3); + _IdxWritePtr[15] = (ImDrawIdx)(idx1 + 3); _IdxWritePtr[16] = (ImDrawIdx)(idx2 + 3); _IdxWritePtr[17] = (ImDrawIdx)(idx2 + 2); + _IdxWritePtr += 18; + + idx1 = idx2; + } + + // Add vertices + for (int i = 0; i < points_count; i++) + { + _VtxWritePtr[0].pos = temp_points[i * 4 + 0]; _VtxWritePtr[0].uv = opaque_uv; _VtxWritePtr[0].col = col_trans; + _VtxWritePtr[1].pos = temp_points[i * 4 + 1]; _VtxWritePtr[1].uv = opaque_uv; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos = temp_points[i * 4 + 2]; _VtxWritePtr[2].uv = opaque_uv; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos = temp_points[i * 4 + 3]; _VtxWritePtr[3].uv = opaque_uv; _VtxWritePtr[3].col = col_trans; + _VtxWritePtr += 4; + } + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } + else + { + // [PATH 4] Non texture-based, Non anti-aliased lines + const int idx_count = count * 6; + const int vtx_count = count * 4; // FIXME-OPT: Not sharing edges + PrimReserve(idx_count, vtx_count); + + for (int i1 = 0; i1 < count; i1++) + { + const int i2 = (i1 + 1) == points_count ? 0 : i1 + 1; + const ImVec2& p1 = points[i1]; + const ImVec2& p2 = points[i2]; + + float dx = p2.x - p1.x; + float dy = p2.y - p1.y; + IM_NORMALIZE2F_OVER_ZERO(dx, dy); + dx *= (thickness * 0.5f); + dy *= (thickness * 0.5f); + + _VtxWritePtr[0].pos.x = p1.x + dy; _VtxWritePtr[0].pos.y = p1.y - dx; _VtxWritePtr[0].uv = opaque_uv; _VtxWritePtr[0].col = col; + _VtxWritePtr[1].pos.x = p2.x + dy; _VtxWritePtr[1].pos.y = p2.y - dx; _VtxWritePtr[1].uv = opaque_uv; _VtxWritePtr[1].col = col; + _VtxWritePtr[2].pos.x = p2.x - dy; _VtxWritePtr[2].pos.y = p2.y + dx; _VtxWritePtr[2].uv = opaque_uv; _VtxWritePtr[2].col = col; + _VtxWritePtr[3].pos.x = p1.x - dy; _VtxWritePtr[3].pos.y = p1.y + dx; _VtxWritePtr[3].uv = opaque_uv; _VtxWritePtr[3].col = col; + _VtxWritePtr += 4; + + _IdxWritePtr[0] = (ImDrawIdx)(_VtxCurrentIdx); _IdxWritePtr[1] = (ImDrawIdx)(_VtxCurrentIdx + 1); _IdxWritePtr[2] = (ImDrawIdx)(_VtxCurrentIdx + 2); + _IdxWritePtr[3] = (ImDrawIdx)(_VtxCurrentIdx); _IdxWritePtr[4] = (ImDrawIdx)(_VtxCurrentIdx + 2); _IdxWritePtr[5] = (ImDrawIdx)(_VtxCurrentIdx + 3); + _IdxWritePtr += 6; + _VtxCurrentIdx += 4; + } + } +} + +// - We intentionally avoid using ImVec2 and its math operators here to reduce cost to a minimum for debug/non-inlined builds. +// - Filled shapes must always use clockwise winding order. The anti-aliasing fringe depends on it. Counter-clockwise shapes will have "inward" anti-aliasing. +void ImDrawList::AddConvexPolyFilled(const ImVec2* points, const int points_count, ImU32 col) +{ + if (points_count < 3 || (col & IM_COL32_A_MASK) == 0) + return; + + const ImVec2 uv = _Data->TexUvWhitePixel; + + if (Flags & ImDrawListFlags_AntiAliasedFill) + { + // Anti-aliased Fill + const float AA_SIZE = _FringeScale; + const ImU32 col_trans = col & ~IM_COL32_A_MASK; + const int idx_count = (points_count - 2)*3 + points_count * 6; + const int vtx_count = (points_count * 2); + PrimReserve(idx_count, vtx_count); + + // Add indexes for fill + unsigned int vtx_inner_idx = _VtxCurrentIdx; + unsigned int vtx_outer_idx = _VtxCurrentIdx + 1; + for (int i = 2; i < points_count; i++) + { + _IdxWritePtr[0] = (ImDrawIdx)(vtx_inner_idx); _IdxWritePtr[1] = (ImDrawIdx)(vtx_inner_idx + ((i - 1) << 1)); _IdxWritePtr[2] = (ImDrawIdx)(vtx_inner_idx + (i << 1)); + _IdxWritePtr += 3; + } + + // Compute normals + _Data->TempBuffer.reserve_discard(points_count); + ImVec2* temp_normals = _Data->TempBuffer.Data; + for (int i0 = points_count - 1, i1 = 0; i1 < points_count; i0 = i1++) + { + const ImVec2& p0 = points[i0]; + const ImVec2& p1 = points[i1]; + float dx = p1.x - p0.x; + float dy = p1.y - p0.y; + IM_NORMALIZE2F_OVER_ZERO(dx, dy); + temp_normals[i0].x = dy; + temp_normals[i0].y = -dx; + } + + for (int i0 = points_count - 1, i1 = 0; i1 < points_count; i0 = i1++) + { + // Average normals + const ImVec2& n0 = temp_normals[i0]; + const ImVec2& n1 = temp_normals[i1]; + float dm_x = (n0.x + n1.x) * 0.5f; + float dm_y = (n0.y + n1.y) * 0.5f; + IM_FIXNORMAL2F(dm_x, dm_y); + dm_x *= AA_SIZE * 0.5f; + dm_y *= AA_SIZE * 0.5f; + + // Add vertices + _VtxWritePtr[0].pos.x = (points[i1].x - dm_x); _VtxWritePtr[0].pos.y = (points[i1].y - dm_y); _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; // Inner + _VtxWritePtr[1].pos.x = (points[i1].x + dm_x); _VtxWritePtr[1].pos.y = (points[i1].y + dm_y); _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col_trans; // Outer + _VtxWritePtr += 2; + + // Add indexes for fringes + _IdxWritePtr[0] = (ImDrawIdx)(vtx_inner_idx + (i1 << 1)); _IdxWritePtr[1] = (ImDrawIdx)(vtx_inner_idx + (i0 << 1)); _IdxWritePtr[2] = (ImDrawIdx)(vtx_outer_idx + (i0 << 1)); + _IdxWritePtr[3] = (ImDrawIdx)(vtx_outer_idx + (i0 << 1)); _IdxWritePtr[4] = (ImDrawIdx)(vtx_outer_idx + (i1 << 1)); _IdxWritePtr[5] = (ImDrawIdx)(vtx_inner_idx + (i1 << 1)); + _IdxWritePtr += 6; + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } + else + { + // Non Anti-aliased Fill + const int idx_count = (points_count - 2)*3; + const int vtx_count = points_count; + PrimReserve(idx_count, vtx_count); + for (int i = 0; i < vtx_count; i++) + { + _VtxWritePtr[0].pos = points[i]; _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; + _VtxWritePtr++; + } + for (int i = 2; i < points_count; i++) + { + _IdxWritePtr[0] = (ImDrawIdx)(_VtxCurrentIdx); _IdxWritePtr[1] = (ImDrawIdx)(_VtxCurrentIdx + i - 1); _IdxWritePtr[2] = (ImDrawIdx)(_VtxCurrentIdx + i); + _IdxWritePtr += 3; + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } +} + +void ImDrawList::_PathArcToFastEx(const ImVec2& center, float radius, int a_min_sample, int a_max_sample, int a_step) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + + // Calculate arc auto segment step size + if (a_step <= 0) + a_step = IM_DRAWLIST_ARCFAST_SAMPLE_MAX / _CalcCircleAutoSegmentCount(radius); + + // Make sure we never do steps larger than one quarter of the circle + a_step = ImClamp(a_step, 1, IM_DRAWLIST_ARCFAST_TABLE_SIZE / 4); + + const int sample_range = ImAbs(a_max_sample - a_min_sample); + const int a_next_step = a_step; + + int samples = sample_range + 1; + bool extra_max_sample = false; + if (a_step > 1) + { + samples = sample_range / a_step + 1; + const int overstep = sample_range % a_step; + + if (overstep > 0) + { + extra_max_sample = true; + samples++; + + // When we have overstep to avoid awkwardly looking one long line and one tiny one at the end, + // distribute first step range evenly between them by reducing first step size. + if (sample_range > 0) + a_step -= (a_step - overstep) / 2; + } + } + + _Path.resize(_Path.Size + samples); + ImVec2* out_ptr = _Path.Data + (_Path.Size - samples); + + int sample_index = a_min_sample; + if (sample_index < 0 || sample_index >= IM_DRAWLIST_ARCFAST_SAMPLE_MAX) + { + sample_index = sample_index % IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + if (sample_index < 0) + sample_index += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + } + + if (a_max_sample >= a_min_sample) + { + for (int a = a_min_sample; a <= a_max_sample; a += a_step, sample_index += a_step, a_step = a_next_step) + { + // a_step is clamped to IM_DRAWLIST_ARCFAST_SAMPLE_MAX, so we have guaranteed that it will not wrap over range twice or more + if (sample_index >= IM_DRAWLIST_ARCFAST_SAMPLE_MAX) + sample_index -= IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = _Data->ArcFastVtx[sample_index]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + } + else + { + for (int a = a_min_sample; a >= a_max_sample; a -= a_step, sample_index -= a_step, a_step = a_next_step) + { + // a_step is clamped to IM_DRAWLIST_ARCFAST_SAMPLE_MAX, so we have guaranteed that it will not wrap over range twice or more + if (sample_index < 0) + sample_index += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = _Data->ArcFastVtx[sample_index]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + } + + if (extra_max_sample) + { + int normalized_max_sample = a_max_sample % IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + if (normalized_max_sample < 0) + normalized_max_sample += IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + + const ImVec2 s = _Data->ArcFastVtx[normalized_max_sample]; + out_ptr->x = center.x + s.x * radius; + out_ptr->y = center.y + s.y * radius; + out_ptr++; + } + + IM_ASSERT_PARANOID(_Path.Data + _Path.Size == out_ptr); +} + +void ImDrawList::_PathArcToN(const ImVec2& center, float radius, float a_min, float a_max, int num_segments) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + + // Note that we are adding a point at both a_min and a_max. + // If you are trying to draw a full closed circle you don't want the overlapping points! + _Path.reserve(_Path.Size + (num_segments + 1)); + for (int i = 0; i <= num_segments; i++) + { + const float a = a_min + ((float)i / (float)num_segments) * (a_max - a_min); + _Path.push_back(ImVec2(center.x + ImCos(a) * radius, center.y + ImSin(a) * radius)); + } +} + +// 0: East, 3: South, 6: West, 9: North, 12: East +void ImDrawList::PathArcToFast(const ImVec2& center, float radius, int a_min_of_12, int a_max_of_12) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + _PathArcToFastEx(center, radius, a_min_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, a_max_of_12 * IM_DRAWLIST_ARCFAST_SAMPLE_MAX / 12, 0); +} + +void ImDrawList::PathArcTo(const ImVec2& center, float radius, float a_min, float a_max, int num_segments) +{ + if (radius < 0.5f) + { + _Path.push_back(center); + return; + } + + if (num_segments > 0) + { + _PathArcToN(center, radius, a_min, a_max, num_segments); + return; + } + + // Automatic segment count + if (radius <= _Data->ArcFastRadiusCutoff) + { + const bool a_is_reverse = a_max < a_min; + + // We are going to use precomputed values for mid samples. + // Determine first and last sample in lookup table that belong to the arc. + const float a_min_sample_f = IM_DRAWLIST_ARCFAST_SAMPLE_MAX * a_min / (IM_PI * 2.0f); + const float a_max_sample_f = IM_DRAWLIST_ARCFAST_SAMPLE_MAX * a_max / (IM_PI * 2.0f); + + const int a_min_sample = a_is_reverse ? (int)ImFloor(a_min_sample_f) : (int)ImCeil(a_min_sample_f); + const int a_max_sample = a_is_reverse ? (int)ImCeil(a_max_sample_f) : (int)ImFloor(a_max_sample_f); + const int a_mid_samples = a_is_reverse ? ImMax(a_min_sample - a_max_sample, 0) : ImMax(a_max_sample - a_min_sample, 0); + + const float a_min_segment_angle = a_min_sample * IM_PI * 2.0f / IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + const float a_max_segment_angle = a_max_sample * IM_PI * 2.0f / IM_DRAWLIST_ARCFAST_SAMPLE_MAX; + const bool a_emit_start = ImAbs(a_min_segment_angle - a_min) >= 1e-5f; + const bool a_emit_end = ImAbs(a_max - a_max_segment_angle) >= 1e-5f; + + _Path.reserve(_Path.Size + (a_mid_samples + 1 + (a_emit_start ? 1 : 0) + (a_emit_end ? 1 : 0))); + if (a_emit_start) + _Path.push_back(ImVec2(center.x + ImCos(a_min) * radius, center.y + ImSin(a_min) * radius)); + if (a_mid_samples > 0) + _PathArcToFastEx(center, radius, a_min_sample, a_max_sample, 0); + if (a_emit_end) + _Path.push_back(ImVec2(center.x + ImCos(a_max) * radius, center.y + ImSin(a_max) * radius)); + } + else + { + const float arc_length = ImAbs(a_max - a_min); + const int circle_segment_count = _CalcCircleAutoSegmentCount(radius); + const int arc_segment_count = ImMax((int)ImCeil(circle_segment_count * arc_length / (IM_PI * 2.0f)), (int)(2.0f * IM_PI / arc_length)); + _PathArcToN(center, radius, a_min, a_max, arc_segment_count); + } +} + +void ImDrawList::PathEllipticalArcTo(const ImVec2& center, const ImVec2& radius, float rot, float a_min, float a_max, int num_segments) +{ + if (num_segments <= 0) + num_segments = _CalcCircleAutoSegmentCount(ImMax(radius.x, radius.y)); // A bit pessimistic, maybe there's a better computation to do here. + + _Path.reserve(_Path.Size + (num_segments + 1)); + + const float cos_rot = ImCos(rot); + const float sin_rot = ImSin(rot); + for (int i = 0; i <= num_segments; i++) + { + const float a = a_min + ((float)i / (float)num_segments) * (a_max - a_min); + ImVec2 point(ImCos(a) * radius.x, ImSin(a) * radius.y); + const ImVec2 rel((point.x * cos_rot) - (point.y * sin_rot), (point.x * sin_rot) + (point.y * cos_rot)); + point.x = rel.x + center.x; + point.y = rel.y + center.y; + _Path.push_back(point); + } +} + +ImVec2 ImBezierCubicCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, float t) +{ + float u = 1.0f - t; + float w1 = u * u * u; + float w2 = 3 * u * u * t; + float w3 = 3 * u * t * t; + float w4 = t * t * t; + return ImVec2(w1 * p1.x + w2 * p2.x + w3 * p3.x + w4 * p4.x, w1 * p1.y + w2 * p2.y + w3 * p3.y + w4 * p4.y); +} + +ImVec2 ImBezierQuadraticCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, float t) +{ + float u = 1.0f - t; + float w1 = u * u; + float w2 = 2 * u * t; + float w3 = t * t; + return ImVec2(w1 * p1.x + w2 * p2.x + w3 * p3.x, w1 * p1.y + w2 * p2.y + w3 * p3.y); +} + +// Closely mimics ImBezierCubicClosestPointCasteljau() in imgui.cpp +static void PathBezierCubicCurveToCasteljau(ImVector* path, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4, float tess_tol, int level) +{ + float dx = x4 - x1; + float dy = y4 - y1; + float d2 = (x2 - x4) * dy - (y2 - y4) * dx; + float d3 = (x3 - x4) * dy - (y3 - y4) * dx; + d2 = (d2 >= 0) ? d2 : -d2; + d3 = (d3 >= 0) ? d3 : -d3; + if ((d2 + d3) * (d2 + d3) < tess_tol * (dx * dx + dy * dy)) + { + path->push_back(ImVec2(x4, y4)); + } + else if (level < 10) + { + float x12 = (x1 + x2) * 0.5f, y12 = (y1 + y2) * 0.5f; + float x23 = (x2 + x3) * 0.5f, y23 = (y2 + y3) * 0.5f; + float x34 = (x3 + x4) * 0.5f, y34 = (y3 + y4) * 0.5f; + float x123 = (x12 + x23) * 0.5f, y123 = (y12 + y23) * 0.5f; + float x234 = (x23 + x34) * 0.5f, y234 = (y23 + y34) * 0.5f; + float x1234 = (x123 + x234) * 0.5f, y1234 = (y123 + y234) * 0.5f; + PathBezierCubicCurveToCasteljau(path, x1, y1, x12, y12, x123, y123, x1234, y1234, tess_tol, level + 1); + PathBezierCubicCurveToCasteljau(path, x1234, y1234, x234, y234, x34, y34, x4, y4, tess_tol, level + 1); + } +} + +static void PathBezierQuadraticCurveToCasteljau(ImVector* path, float x1, float y1, float x2, float y2, float x3, float y3, float tess_tol, int level) +{ + float dx = x3 - x1, dy = y3 - y1; + float det = (x2 - x3) * dy - (y2 - y3) * dx; + if (det * det * 4.0f < tess_tol * (dx * dx + dy * dy)) + { + path->push_back(ImVec2(x3, y3)); + } + else if (level < 10) + { + float x12 = (x1 + x2) * 0.5f, y12 = (y1 + y2) * 0.5f; + float x23 = (x2 + x3) * 0.5f, y23 = (y2 + y3) * 0.5f; + float x123 = (x12 + x23) * 0.5f, y123 = (y12 + y23) * 0.5f; + PathBezierQuadraticCurveToCasteljau(path, x1, y1, x12, y12, x123, y123, tess_tol, level + 1); + PathBezierQuadraticCurveToCasteljau(path, x123, y123, x23, y23, x3, y3, tess_tol, level + 1); + } +} + +void ImDrawList::PathBezierCubicCurveTo(const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, int num_segments) +{ + ImVec2 p1 = _Path.back(); + if (num_segments == 0) + { + IM_ASSERT(_Data->CurveTessellationTol > 0.0f); + PathBezierCubicCurveToCasteljau(&_Path, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, p4.x, p4.y, _Data->CurveTessellationTol, 0); // Auto-tessellated + } + else + { + float t_step = 1.0f / (float)num_segments; + for (int i_step = 1; i_step <= num_segments; i_step++) + _Path.push_back(ImBezierCubicCalc(p1, p2, p3, p4, t_step * i_step)); + } +} + +void ImDrawList::PathBezierQuadraticCurveTo(const ImVec2& p2, const ImVec2& p3, int num_segments) +{ + ImVec2 p1 = _Path.back(); + if (num_segments == 0) + { + IM_ASSERT(_Data->CurveTessellationTol > 0.0f); + PathBezierQuadraticCurveToCasteljau(&_Path, p1.x, p1.y, p2.x, p2.y, p3.x, p3.y, _Data->CurveTessellationTol, 0);// Auto-tessellated + } + else + { + float t_step = 1.0f / (float)num_segments; + for (int i_step = 1; i_step <= num_segments; i_step++) + _Path.push_back(ImBezierQuadraticCalc(p1, p2, p3, t_step * i_step)); + } +} + +static inline ImDrawFlags FixRectCornerFlags(ImDrawFlags flags) +{ + /* + IM_STATIC_ASSERT(ImDrawFlags_RoundCornersTopLeft == (1 << 4)); +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + // Obsoleted in 1.82 (from February 2021). This code was stripped/simplified and mostly commented in 1.90 (from September 2023) + // - Legacy Support for hard coded ~0 (used to be a suggested equivalent to ImDrawCornerFlags_All) + if (flags == ~0) { return ImDrawFlags_RoundCornersAll; } + // - Legacy Support for hard coded 0x01 to 0x0F (matching 15 out of 16 old flags combinations). Read details in older version of this code. + if (flags >= 0x01 && flags <= 0x0F) { return (flags << 4); } + // We cannot support hard coded 0x00 with 'float rounding > 0.0f' --> replace with ImDrawFlags_RoundCornersNone or use 'float rounding = 0.0f' +#endif + */ + // If this assert triggers, please update your code replacing hardcoded values with new ImDrawFlags_RoundCorners* values. + // Note that ImDrawFlags_Closed (== 0x01) is an invalid flag for AddRect(), AddRectFilled(), PathRect() etc. anyway. + // See details in 1.82 Changelog as well as 2021/03/12 and 2023/09/08 entries in "API BREAKING CHANGES" section. + IM_ASSERT((flags & 0x0F) == 0 && "Misuse of legacy hardcoded ImDrawCornerFlags values!"); + + if ((flags & ImDrawFlags_RoundCornersMask_) == 0) + flags |= ImDrawFlags_RoundCornersAll; + + return flags; +} + +void ImDrawList::PathRect(const ImVec2& a, const ImVec2& b, float rounding, ImDrawFlags flags) +{ + if (rounding >= 0.5f) + { + flags = FixRectCornerFlags(flags); + rounding = ImMin(rounding, ImFabs(b.x - a.x) * (((flags & ImDrawFlags_RoundCornersTop) == ImDrawFlags_RoundCornersTop) || ((flags & ImDrawFlags_RoundCornersBottom) == ImDrawFlags_RoundCornersBottom) ? 0.5f : 1.0f) - 1.0f); + rounding = ImMin(rounding, ImFabs(b.y - a.y) * (((flags & ImDrawFlags_RoundCornersLeft) == ImDrawFlags_RoundCornersLeft) || ((flags & ImDrawFlags_RoundCornersRight) == ImDrawFlags_RoundCornersRight) ? 0.5f : 1.0f) - 1.0f); + } + if (rounding < 0.5f || (flags & ImDrawFlags_RoundCornersMask_) == ImDrawFlags_RoundCornersNone) + { + PathLineTo(a); + PathLineTo(ImVec2(b.x, a.y)); + PathLineTo(b); + PathLineTo(ImVec2(a.x, b.y)); + } + else + { + const float rounding_tl = (flags & ImDrawFlags_RoundCornersTopLeft) ? rounding : 0.0f; + const float rounding_tr = (flags & ImDrawFlags_RoundCornersTopRight) ? rounding : 0.0f; + const float rounding_br = (flags & ImDrawFlags_RoundCornersBottomRight) ? rounding : 0.0f; + const float rounding_bl = (flags & ImDrawFlags_RoundCornersBottomLeft) ? rounding : 0.0f; + PathArcToFast(ImVec2(a.x + rounding_tl, a.y + rounding_tl), rounding_tl, 6, 9); + PathArcToFast(ImVec2(b.x - rounding_tr, a.y + rounding_tr), rounding_tr, 9, 12); + PathArcToFast(ImVec2(b.x - rounding_br, b.y - rounding_br), rounding_br, 0, 3); + PathArcToFast(ImVec2(a.x + rounding_bl, b.y - rounding_bl), rounding_bl, 3, 6); + } +} + +void ImDrawList::AddLine(const ImVec2& p1, const ImVec2& p2, ImU32 col, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + PathLineTo(p1 + ImVec2(0.5f, 0.5f)); + PathLineTo(p2 + ImVec2(0.5f, 0.5f)); + PathStroke(col, 0, thickness); +} + +// p_min = upper-left, p_max = lower-right +// Note we don't render 1 pixels sized rectangles properly. +void ImDrawList::AddRect(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, ImDrawFlags flags, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + if (Flags & ImDrawListFlags_AntiAliasedLines) + PathRect(p_min + ImVec2(0.50f, 0.50f), p_max - ImVec2(0.50f, 0.50f), rounding, flags); + else + PathRect(p_min + ImVec2(0.50f, 0.50f), p_max - ImVec2(0.49f, 0.49f), rounding, flags); // Better looking lower-right corner and rounded non-AA shapes. + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddRectFilled(const ImVec2& p_min, const ImVec2& p_max, ImU32 col, float rounding, ImDrawFlags flags) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + if (rounding < 0.5f || (flags & ImDrawFlags_RoundCornersMask_) == ImDrawFlags_RoundCornersNone) + { + PrimReserve(6, 4); + PrimRect(p_min, p_max, col); + } + else + { + PathRect(p_min, p_max, rounding, flags); + PathFillConvex(col); + } +} + +// p_min = upper-left, p_max = lower-right +void ImDrawList::AddRectFilledMultiColor(const ImVec2& p_min, const ImVec2& p_max, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left) +{ + if (((col_upr_left | col_upr_right | col_bot_right | col_bot_left) & IM_COL32_A_MASK) == 0) + return; + + const ImVec2 uv = _Data->TexUvWhitePixel; + PrimReserve(6, 4); + PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 1)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 2)); + PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 2)); PrimWriteIdx((ImDrawIdx)(_VtxCurrentIdx + 3)); + PrimWriteVtx(p_min, uv, col_upr_left); + PrimWriteVtx(ImVec2(p_max.x, p_min.y), uv, col_upr_right); + PrimWriteVtx(p_max, uv, col_bot_right); + PrimWriteVtx(ImVec2(p_min.x, p_max.y), uv, col_bot_left); +} + +void ImDrawList::AddQuad(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathLineTo(p4); + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddQuadFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathLineTo(p4); + PathFillConvex(col); +} + +void ImDrawList::AddTriangle(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddTriangleFilled(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathLineTo(p2); + PathLineTo(p3); + PathFillConvex(col); +} + +void ImDrawList::AddCircle(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0 || radius < 0.5f) + return; + + if (num_segments <= 0) + { + // Use arc with automatic segment count + _PathArcToFastEx(center, radius - 0.5f, 0, IM_DRAWLIST_ARCFAST_SAMPLE_MAX, 0); + _Path.Size--; + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius - 0.5f, 0.0f, a_max, num_segments - 1); + } + + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +void ImDrawList::AddCircleFilled(const ImVec2& center, float radius, ImU32 col, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0 || radius < 0.5f) + return; + + if (num_segments <= 0) + { + // Use arc with automatic segment count + _PathArcToFastEx(center, radius, 0, IM_DRAWLIST_ARCFAST_SAMPLE_MAX, 0); + _Path.Size--; + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius, 0.0f, a_max, num_segments - 1); + } + + PathFillConvex(col); +} + +// Guaranteed to honor 'num_segments' +void ImDrawList::AddNgon(const ImVec2& center, float radius, ImU32 col, int num_segments, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0 || num_segments <= 2) + return; + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius - 0.5f, 0.0f, a_max, num_segments - 1); + PathStroke(col, ImDrawFlags_Closed, thickness); +} + +// Guaranteed to honor 'num_segments' +void ImDrawList::AddNgonFilled(const ImVec2& center, float radius, ImU32 col, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0 || num_segments <= 2) + return; + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + PathArcTo(center, radius, 0.0f, a_max, num_segments - 1); + PathFillConvex(col); +} + +// Ellipse +void ImDrawList::AddEllipse(const ImVec2& center, const ImVec2& radius, ImU32 col, float rot, int num_segments, float thickness) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + if (num_segments <= 0) + num_segments = _CalcCircleAutoSegmentCount(ImMax(radius.x, radius.y)); // A bit pessimistic, maybe there's a better computation to do here. + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = IM_PI * 2.0f * ((float)num_segments - 1.0f) / (float)num_segments; + PathEllipticalArcTo(center, radius, rot, 0.0f, a_max, num_segments - 1); + PathStroke(col, true, thickness); +} + +void ImDrawList::AddEllipseFilled(const ImVec2& center, const ImVec2& radius, ImU32 col, float rot, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + if (num_segments <= 0) + num_segments = _CalcCircleAutoSegmentCount(ImMax(radius.x, radius.y)); // A bit pessimistic, maybe there's a better computation to do here. + + // Because we are filling a closed shape we remove 1 from the count of segments/points + const float a_max = IM_PI * 2.0f * ((float)num_segments - 1.0f) / (float)num_segments; + PathEllipticalArcTo(center, radius, rot, 0.0f, a_max, num_segments - 1); + PathFillConvex(col); +} + +// Cubic Bezier takes 4 controls points +void ImDrawList::AddBezierCubic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, ImU32 col, float thickness, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathBezierCubicCurveTo(p2, p3, p4, num_segments); + PathStroke(col, 0, thickness); +} + +// Quadratic Bezier takes 3 controls points +void ImDrawList::AddBezierQuadratic(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, ImU32 col, float thickness, int num_segments) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + PathLineTo(p1); + PathBezierQuadraticCurveTo(p2, p3, num_segments); + PathStroke(col, 0, thickness); +} + +void ImDrawList::AddText(const ImFont* font, float font_size, const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end, float wrap_width, const ImVec4* cpu_fine_clip_rect) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + // Accept null ranges + if (text_begin == text_end || text_begin[0] == 0) + return; + if (text_end == NULL) + text_end = text_begin + strlen(text_begin); + + // Pull default font/size from the shared ImDrawListSharedData instance + if (font == NULL) + font = _Data->Font; + if (font_size == 0.0f) + font_size = _Data->FontSize; + + IM_ASSERT(font->ContainerAtlas->TexID == _CmdHeader.TextureId); // Use high-level ImGui::PushFont() or low-level ImDrawList::PushTextureId() to change font. + + ImVec4 clip_rect = _CmdHeader.ClipRect; + if (cpu_fine_clip_rect) + { + clip_rect.x = ImMax(clip_rect.x, cpu_fine_clip_rect->x); + clip_rect.y = ImMax(clip_rect.y, cpu_fine_clip_rect->y); + clip_rect.z = ImMin(clip_rect.z, cpu_fine_clip_rect->z); + clip_rect.w = ImMin(clip_rect.w, cpu_fine_clip_rect->w); + } + font->RenderText(this, font_size, pos, col, clip_rect, text_begin, text_end, wrap_width, cpu_fine_clip_rect != NULL); +} + +void ImDrawList::AddText(const ImVec2& pos, ImU32 col, const char* text_begin, const char* text_end) +{ + AddText(NULL, 0.0f, pos, col, text_begin, text_end); +} + +void ImDrawList::AddImage(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + const bool push_texture_id = user_texture_id != _CmdHeader.TextureId; + if (push_texture_id) + PushTextureID(user_texture_id); + + PrimReserve(6, 4); + PrimRectUV(p_min, p_max, uv_min, uv_max, col); + + if (push_texture_id) + PopTextureID(); +} + +void ImDrawList::AddImageQuad(ImTextureID user_texture_id, const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& uv1, const ImVec2& uv2, const ImVec2& uv3, const ImVec2& uv4, ImU32 col) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + const bool push_texture_id = user_texture_id != _CmdHeader.TextureId; + if (push_texture_id) + PushTextureID(user_texture_id); + + PrimReserve(6, 4); + PrimQuadUV(p1, p2, p3, p4, uv1, uv2, uv3, uv4, col); + + if (push_texture_id) + PopTextureID(); +} + +void ImDrawList::AddImageRounded(ImTextureID user_texture_id, const ImVec2& p_min, const ImVec2& p_max, const ImVec2& uv_min, const ImVec2& uv_max, ImU32 col, float rounding, ImDrawFlags flags) +{ + if ((col & IM_COL32_A_MASK) == 0) + return; + + flags = FixRectCornerFlags(flags); + if (rounding < 0.5f || (flags & ImDrawFlags_RoundCornersMask_) == ImDrawFlags_RoundCornersNone) + { + AddImage(user_texture_id, p_min, p_max, uv_min, uv_max, col); + return; + } + + const bool push_texture_id = user_texture_id != _CmdHeader.TextureId; + if (push_texture_id) + PushTextureID(user_texture_id); + + int vert_start_idx = VtxBuffer.Size; + PathRect(p_min, p_max, rounding, flags); + PathFillConvex(col); + int vert_end_idx = VtxBuffer.Size; + ImGui::ShadeVertsLinearUV(this, vert_start_idx, vert_end_idx, p_min, p_max, uv_min, uv_max, true); + + if (push_texture_id) + PopTextureID(); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImTriangulator, ImDrawList concave polygon fill +//----------------------------------------------------------------------------- +// Triangulate concave polygons. Based on "Triangulation by Ear Clipping" paper, O(N^2) complexity. +// Reference: https://www.geometrictools.com/Documentation/TriangulationByEarClipping.pdf +// Provided as a convenience for user but not used by main library. +//----------------------------------------------------------------------------- +// - ImTriangulator [Internal] +// - AddConcavePolyFilled() +//----------------------------------------------------------------------------- + +enum ImTriangulatorNodeType +{ + ImTriangulatorNodeType_Convex, + ImTriangulatorNodeType_Ear, + ImTriangulatorNodeType_Reflex +}; + +struct ImTriangulatorNode +{ + ImTriangulatorNodeType Type; + int Index; + ImVec2 Pos; + ImTriangulatorNode* Next; + ImTriangulatorNode* Prev; + + void Unlink() { Next->Prev = Prev; Prev->Next = Next; } +}; + +struct ImTriangulatorNodeSpan +{ + ImTriangulatorNode** Data = NULL; + int Size = 0; + + void push_back(ImTriangulatorNode* node) { Data[Size++] = node; } + void find_erase_unsorted(int idx) { for (int i = Size - 1; i >= 0; i--) if (Data[i]->Index == idx) { Data[i] = Data[Size - 1]; Size--; return; } } +}; + +struct ImTriangulator +{ + static int EstimateTriangleCount(int points_count) { return (points_count < 3) ? 0 : points_count - 2; } + static int EstimateScratchBufferSize(int points_count) { return sizeof(ImTriangulatorNode) * points_count + sizeof(ImTriangulatorNode*) * points_count * 2; } + + void Init(const ImVec2* points, int points_count, void* scratch_buffer); + void GetNextTriangle(unsigned int out_triangle[3]); // Return relative indexes for next triangle + + // Internal functions + void BuildNodes(const ImVec2* points, int points_count); + void BuildReflexes(); + void BuildEars(); + void FlipNodeList(); + bool IsEar(int i0, int i1, int i2, const ImVec2& v0, const ImVec2& v1, const ImVec2& v2) const; + void ReclassifyNode(ImTriangulatorNode* node); + + // Internal members + int _TrianglesLeft = 0; + ImTriangulatorNode* _Nodes = NULL; + ImTriangulatorNodeSpan _Ears; + ImTriangulatorNodeSpan _Reflexes; +}; + +// Distribute storage for nodes, ears and reflexes. +// FIXME-OPT: if everything is convex, we could report it to caller and let it switch to an convex renderer +// (this would require first building reflexes to bail to convex if empty, without even building nodes) +void ImTriangulator::Init(const ImVec2* points, int points_count, void* scratch_buffer) +{ + IM_ASSERT(scratch_buffer != NULL && points_count >= 3); + _TrianglesLeft = EstimateTriangleCount(points_count); + _Nodes = (ImTriangulatorNode*)scratch_buffer; // points_count x Node + _Ears.Data = (ImTriangulatorNode**)(_Nodes + points_count); // points_count x Node* + _Reflexes.Data = (ImTriangulatorNode**)(_Nodes + points_count) + points_count; // points_count x Node* + BuildNodes(points, points_count); + BuildReflexes(); + BuildEars(); +} + +void ImTriangulator::BuildNodes(const ImVec2* points, int points_count) +{ + for (int i = 0; i < points_count; i++) + { + _Nodes[i].Type = ImTriangulatorNodeType_Convex; + _Nodes[i].Index = i; + _Nodes[i].Pos = points[i]; + _Nodes[i].Next = _Nodes + i + 1; + _Nodes[i].Prev = _Nodes + i - 1; + } + _Nodes[0].Prev = _Nodes + points_count - 1; + _Nodes[points_count - 1].Next = _Nodes; +} + +void ImTriangulator::BuildReflexes() +{ + ImTriangulatorNode* n1 = _Nodes; + for (int i = _TrianglesLeft; i >= 0; i--, n1 = n1->Next) + { + if (ImTriangleIsClockwise(n1->Prev->Pos, n1->Pos, n1->Next->Pos)) + continue; + n1->Type = ImTriangulatorNodeType_Reflex; + _Reflexes.push_back(n1); + } +} + +void ImTriangulator::BuildEars() +{ + ImTriangulatorNode* n1 = _Nodes; + for (int i = _TrianglesLeft; i >= 0; i--, n1 = n1->Next) + { + if (n1->Type != ImTriangulatorNodeType_Convex) + continue; + if (!IsEar(n1->Prev->Index, n1->Index, n1->Next->Index, n1->Prev->Pos, n1->Pos, n1->Next->Pos)) + continue; + n1->Type = ImTriangulatorNodeType_Ear; + _Ears.push_back(n1); + } +} + +void ImTriangulator::GetNextTriangle(unsigned int out_triangle[3]) +{ + if (_Ears.Size == 0) + { + FlipNodeList(); + + ImTriangulatorNode* node = _Nodes; + for (int i = _TrianglesLeft; i >= 0; i--, node = node->Next) + node->Type = ImTriangulatorNodeType_Convex; + _Reflexes.Size = 0; + BuildReflexes(); + BuildEars(); + + // If we still don't have ears, it means geometry is degenerated. + if (_Ears.Size == 0) + { + // Return first triangle available, mimicking the behavior of convex fill. + IM_ASSERT(_TrianglesLeft > 0); // Geometry is degenerated + _Ears.Data[0] = _Nodes; + _Ears.Size = 1; + } + } + + ImTriangulatorNode* ear = _Ears.Data[--_Ears.Size]; + out_triangle[0] = ear->Prev->Index; + out_triangle[1] = ear->Index; + out_triangle[2] = ear->Next->Index; + + ear->Unlink(); + if (ear == _Nodes) + _Nodes = ear->Next; + + ReclassifyNode(ear->Prev); + ReclassifyNode(ear->Next); + _TrianglesLeft--; +} + +void ImTriangulator::FlipNodeList() +{ + ImTriangulatorNode* prev = _Nodes; + ImTriangulatorNode* temp = _Nodes; + ImTriangulatorNode* current = _Nodes->Next; + prev->Next = prev; + prev->Prev = prev; + while (current != _Nodes) + { + temp = current->Next; + + current->Next = prev; + prev->Prev = current; + _Nodes->Next = current; + current->Prev = _Nodes; + + prev = current; + current = temp; + } + _Nodes = prev; +} + +// A triangle is an ear is no other vertex is inside it. We can test reflexes vertices only (see reference algorithm) +bool ImTriangulator::IsEar(int i0, int i1, int i2, const ImVec2& v0, const ImVec2& v1, const ImVec2& v2) const +{ + ImTriangulatorNode** p_end = _Reflexes.Data + _Reflexes.Size; + for (ImTriangulatorNode** p = _Reflexes.Data; p < p_end; p++) + { + ImTriangulatorNode* reflex = *p; + if (reflex->Index != i0 && reflex->Index != i1 && reflex->Index != i2) + if (ImTriangleContainsPoint(v0, v1, v2, reflex->Pos)) + return false; + } + return true; +} + +void ImTriangulator::ReclassifyNode(ImTriangulatorNode* n1) +{ + // Classify node + ImTriangulatorNodeType type; + const ImTriangulatorNode* n0 = n1->Prev; + const ImTriangulatorNode* n2 = n1->Next; + if (!ImTriangleIsClockwise(n0->Pos, n1->Pos, n2->Pos)) + type = ImTriangulatorNodeType_Reflex; + else if (IsEar(n0->Index, n1->Index, n2->Index, n0->Pos, n1->Pos, n2->Pos)) + type = ImTriangulatorNodeType_Ear; + else + type = ImTriangulatorNodeType_Convex; + + // Update lists when a type changes + if (type == n1->Type) + return; + if (n1->Type == ImTriangulatorNodeType_Reflex) + _Reflexes.find_erase_unsorted(n1->Index); + else if (n1->Type == ImTriangulatorNodeType_Ear) + _Ears.find_erase_unsorted(n1->Index); + if (type == ImTriangulatorNodeType_Reflex) + _Reflexes.push_back(n1); + else if (type == ImTriangulatorNodeType_Ear) + _Ears.push_back(n1); + n1->Type = type; +} + +// Use ear-clipping algorithm to triangulate a simple polygon (no self-interaction, no holes). +// (Reminder: we don't perform any coarse clipping/culling in ImDrawList layer! +// It is up to caller to ensure not making costly calls that will be outside of visible area. +// As concave fill is noticeably more expensive than other primitives, be mindful of this... +// Caller can build AABB of points, and avoid filling if 'draw_list->_CmdHeader.ClipRect.Overlays(points_bb) == false') +void ImDrawList::AddConcavePolyFilled(const ImVec2* points, const int points_count, ImU32 col) +{ + if (points_count < 3 || (col & IM_COL32_A_MASK) == 0) + return; + + const ImVec2 uv = _Data->TexUvWhitePixel; + ImTriangulator triangulator; + unsigned int triangle[3]; + if (Flags & ImDrawListFlags_AntiAliasedFill) + { + // Anti-aliased Fill + const float AA_SIZE = _FringeScale; + const ImU32 col_trans = col & ~IM_COL32_A_MASK; + const int idx_count = (points_count - 2) * 3 + points_count * 6; + const int vtx_count = (points_count * 2); + PrimReserve(idx_count, vtx_count); + + // Add indexes for fill + unsigned int vtx_inner_idx = _VtxCurrentIdx; + unsigned int vtx_outer_idx = _VtxCurrentIdx + 1; + + _Data->TempBuffer.reserve_discard((ImTriangulator::EstimateScratchBufferSize(points_count) + sizeof(ImVec2)) / sizeof(ImVec2)); + triangulator.Init(points, points_count, _Data->TempBuffer.Data); + while (triangulator._TrianglesLeft > 0) + { + triangulator.GetNextTriangle(triangle); + _IdxWritePtr[0] = (ImDrawIdx)(vtx_inner_idx + (triangle[0] << 1)); _IdxWritePtr[1] = (ImDrawIdx)(vtx_inner_idx + (triangle[1] << 1)); _IdxWritePtr[2] = (ImDrawIdx)(vtx_inner_idx + (triangle[2] << 1)); + _IdxWritePtr += 3; + } + + // Compute normals + _Data->TempBuffer.reserve_discard(points_count); + ImVec2* temp_normals = _Data->TempBuffer.Data; + for (int i0 = points_count - 1, i1 = 0; i1 < points_count; i0 = i1++) + { + const ImVec2& p0 = points[i0]; + const ImVec2& p1 = points[i1]; + float dx = p1.x - p0.x; + float dy = p1.y - p0.y; + IM_NORMALIZE2F_OVER_ZERO(dx, dy); + temp_normals[i0].x = dy; + temp_normals[i0].y = -dx; + } + + for (int i0 = points_count - 1, i1 = 0; i1 < points_count; i0 = i1++) + { + // Average normals + const ImVec2& n0 = temp_normals[i0]; + const ImVec2& n1 = temp_normals[i1]; + float dm_x = (n0.x + n1.x) * 0.5f; + float dm_y = (n0.y + n1.y) * 0.5f; + IM_FIXNORMAL2F(dm_x, dm_y); + dm_x *= AA_SIZE * 0.5f; + dm_y *= AA_SIZE * 0.5f; + + // Add vertices + _VtxWritePtr[0].pos.x = (points[i1].x - dm_x); _VtxWritePtr[0].pos.y = (points[i1].y - dm_y); _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; // Inner + _VtxWritePtr[1].pos.x = (points[i1].x + dm_x); _VtxWritePtr[1].pos.y = (points[i1].y + dm_y); _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col_trans; // Outer + _VtxWritePtr += 2; + + // Add indexes for fringes + _IdxWritePtr[0] = (ImDrawIdx)(vtx_inner_idx + (i1 << 1)); _IdxWritePtr[1] = (ImDrawIdx)(vtx_inner_idx + (i0 << 1)); _IdxWritePtr[2] = (ImDrawIdx)(vtx_outer_idx + (i0 << 1)); + _IdxWritePtr[3] = (ImDrawIdx)(vtx_outer_idx + (i0 << 1)); _IdxWritePtr[4] = (ImDrawIdx)(vtx_outer_idx + (i1 << 1)); _IdxWritePtr[5] = (ImDrawIdx)(vtx_inner_idx + (i1 << 1)); + _IdxWritePtr += 6; + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } + else + { + // Non Anti-aliased Fill + const int idx_count = (points_count - 2) * 3; + const int vtx_count = points_count; + PrimReserve(idx_count, vtx_count); + for (int i = 0; i < vtx_count; i++) + { + _VtxWritePtr[0].pos = points[i]; _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col; + _VtxWritePtr++; + } + _Data->TempBuffer.reserve_discard((ImTriangulator::EstimateScratchBufferSize(points_count) + sizeof(ImVec2)) / sizeof(ImVec2)); + triangulator.Init(points, points_count, _Data->TempBuffer.Data); + while (triangulator._TrianglesLeft > 0) + { + triangulator.GetNextTriangle(triangle); + _IdxWritePtr[0] = (ImDrawIdx)(_VtxCurrentIdx + triangle[0]); _IdxWritePtr[1] = (ImDrawIdx)(_VtxCurrentIdx + triangle[1]); _IdxWritePtr[2] = (ImDrawIdx)(_VtxCurrentIdx + triangle[2]); + _IdxWritePtr += 3; + } + _VtxCurrentIdx += (ImDrawIdx)vtx_count; + } +} + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawList Shadow Primitives +//----------------------------------------------------------------------------- +// - AddSubtractedRect() [Internal] +// - ClipPolygonShape() [Internal] +// - AddSubtractedRect() [Internal] +// - AddRectShadow() +//----------------------------------------------------------------------------- + +// Adds a rectangle (A) with another rectangle (B) subtracted from it (i.e. the portion of A covered by B is not drawn). Does not handle rounded corners (use the version that takes a convex polygon for that). +static void AddSubtractedRect(ImDrawList* draw_list, const ImVec2& a_min, const ImVec2& a_max, const ImVec2& a_min_uv, const ImVec2& a_max_uv, ImVec2 b_min, ImVec2 b_max, ImU32 col) +{ + // Early out without drawing anything if A is zero-size + if (a_min.x >= a_max.x || a_min.y >= a_max.y) + return; + + // Early out without drawing anything if B covers A entirely + if (a_min.x >= b_min.x && a_max.x <= b_max.x && a_min.y >= b_min.y && a_max.y <= b_max.y) + return; + + // First clip the extents of B to A + b_min = ImMax(b_min, a_min); + b_max = ImMin(b_max, a_max); + if (b_min.x >= b_max.x || b_min.y >= b_max.y) + { + // B is entirely outside A, so just draw A as-is + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(a_min, a_max, a_min_uv, a_max_uv, col); + return; + } + + // Otherwise we need to emit (up to) four quads to cover the visible area... + // Our layout looks like this (numbers are vertex indices, letters are quads): + // + // 0---8------9-----1 + // | | B | | + // + 4------5 + + // | A |xxxxxx| C | + // | |xxxxxx| | + // + 7------6 + + // | | D | | + // 3---11-----10----2 + + const int max_verts = 12; + const int max_indices = 6 * 4; // At most four quads + draw_list->PrimReserve(max_indices, max_verts); + + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx idx = (ImDrawIdx)draw_list->_VtxCurrentIdx; + + // Write vertices + vtx_write[0].pos = ImVec2(a_min.x, a_min.y); vtx_write[0].uv = ImVec2(a_min_uv.x, a_min_uv.y); vtx_write[0].col = col; + vtx_write[1].pos = ImVec2(a_max.x, a_min.y); vtx_write[1].uv = ImVec2(a_max_uv.x, a_min_uv.y); vtx_write[1].col = col; + vtx_write[2].pos = ImVec2(a_max.x, a_max.y); vtx_write[2].uv = ImVec2(a_max_uv.x, a_max_uv.y); vtx_write[2].col = col; + vtx_write[3].pos = ImVec2(a_min.x, a_max.y); vtx_write[3].uv = ImVec2(a_min_uv.x, a_max_uv.y); vtx_write[3].col = col; + + const ImVec2 pos_to_uv_scale = (a_max_uv - a_min_uv) / (a_max - a_min); // Guaranteed never to be a /0 because we check for zero-size A above + const ImVec2 pos_to_uv_offset = (a_min_uv / pos_to_uv_scale) - a_min; + + // Helper that generates an interpolated UV based on position +#define LERP_UV(x_pos, y_pos) (ImVec2(((x_pos) + pos_to_uv_offset.x) * pos_to_uv_scale.x, ((y_pos) + pos_to_uv_offset.y) * pos_to_uv_scale.y)) + vtx_write[4].pos = ImVec2(b_min.x, b_min.y); vtx_write[4].uv = LERP_UV(b_min.x, b_min.y); vtx_write[4].col = col; + vtx_write[5].pos = ImVec2(b_max.x, b_min.y); vtx_write[5].uv = LERP_UV(b_max.x, b_min.y); vtx_write[5].col = col; + vtx_write[6].pos = ImVec2(b_max.x, b_max.y); vtx_write[6].uv = LERP_UV(b_max.x, b_max.y); vtx_write[6].col = col; + vtx_write[7].pos = ImVec2(b_min.x, b_max.y); vtx_write[7].uv = LERP_UV(b_min.x, b_max.y); vtx_write[7].col = col; + vtx_write[8].pos = ImVec2(b_min.x, a_min.y); vtx_write[8].uv = LERP_UV(b_min.x, a_min.y); vtx_write[8].col = col; + vtx_write[9].pos = ImVec2(b_max.x, a_min.y); vtx_write[9].uv = LERP_UV(b_max.x, a_min.y); vtx_write[9].col = col; + vtx_write[10].pos = ImVec2(b_max.x, a_max.y); vtx_write[10].uv = LERP_UV(b_max.x, a_max.y); vtx_write[10].col = col; + vtx_write[11].pos = ImVec2(b_min.x, a_max.y); vtx_write[11].uv = LERP_UV(b_min.x, a_max.y); vtx_write[11].col = col; +#undef LERP_UV + draw_list->_VtxWritePtr += 12; + draw_list->_VtxCurrentIdx += 12; + + // Write indices for each quad (if it is visible) + if (b_min.x > a_min.x) // A + { + idx_write[0] = (ImDrawIdx)(idx + 0); idx_write[1] = (ImDrawIdx)(idx + 8); idx_write[2] = (ImDrawIdx)(idx + 11); + idx_write[3] = (ImDrawIdx)(idx + 0); idx_write[4] = (ImDrawIdx)(idx + 11); idx_write[5] = (ImDrawIdx)(idx + 3); + idx_write += 6; + } + if (b_min.y > a_min.y) // B + { + idx_write[0] = (ImDrawIdx)(idx + 8); idx_write[1] = (ImDrawIdx)(idx + 9); idx_write[2] = (ImDrawIdx)(idx + 5); + idx_write[3] = (ImDrawIdx)(idx + 8); idx_write[4] = (ImDrawIdx)(idx + 5); idx_write[5] = (ImDrawIdx)(idx + 4); + idx_write += 6; + } + if (a_max.x > b_max.x) // C + { + idx_write[0] = (ImDrawIdx)(idx + 9); idx_write[1] = (ImDrawIdx)(idx + 1); idx_write[2] = (ImDrawIdx)(idx + 2); + idx_write[3] = (ImDrawIdx)(idx + 9); idx_write[4] = (ImDrawIdx)(idx + 2); idx_write[5] = (ImDrawIdx)(idx + 10); + idx_write += 6; + } + if (a_max.y > b_max.y) // D + { + idx_write[0] = (ImDrawIdx)(idx + 7); idx_write[1] = (ImDrawIdx)(idx + 6); idx_write[2] = (ImDrawIdx)(idx + 10); + idx_write[3] = (ImDrawIdx)(idx + 7); idx_write[4] = (ImDrawIdx)(idx + 10); idx_write[5] = (ImDrawIdx)(idx + 11); + idx_write += 6; + } + + const int used_indices = (int)(idx_write - draw_list->_IdxWritePtr); + draw_list->_IdxWritePtr = idx_write; + draw_list->PrimUnreserve(max_indices - used_indices, 0); +} + +// Clip a polygonal shape to a rectangle, writing the results into dest_points. The number of points emitted is returned (may be zero if the polygon was entirely outside the rectangle, or the source polygon was not valid). dest_points may still be written to even if zero was returned. +// allocated_dest_points should contain the number of allocated points in dest_points - in general this should be the number of source points + 4 to accommodate the worst case. If this is exceeded data will be truncated and -1 returned. Stack space work area is allocated based on this value so it shouldn't be too large. +static int ClipPolygonShape(ImVec2* src_points, int num_src_points, ImVec2* dest_points, int allocated_dest_points, ImVec2 clip_rect_min, ImVec2 clip_rect_max) +{ + // Early-out with an empty result if clipping region is zero-sized + if (clip_rect_max.x <= clip_rect_min.x || clip_rect_max.y <= clip_rect_min.y) + return 0; + + // Early-out if there is no source geometry + if (num_src_points < 3) + return 0; + + // The four clip planes here are indexed as: + // 0 = X-, 1 = X+, 2 = Y-, 3 = Y+ + ImU8* outflags[2]; // Double-buffered flags for each vertex indicating which of the four clip planes it is outside of + outflags[0] = (ImU8*)alloca(2 * allocated_dest_points * sizeof(ImU8)); + outflags[1] = outflags[0] + allocated_dest_points; + + // Calculate initial outflags + ImU8 outflags_anded = 0xFF; + ImU8 outflags_ored = 0; + for (int point_idx = 0; point_idx < num_src_points; point_idx++) + { + const ImVec2 pos = src_points[point_idx]; + const ImU8 point_outflags = (pos.x < clip_rect_min.x ? 1 : 0) | (pos.x > clip_rect_max.x ? 2 : 0) | (pos.y < clip_rect_min.y ? 4 : 0) | (pos.y > clip_rect_max.y ? 8 : 0); + outflags[0][point_idx] = point_outflags; // Writing to buffer 0 + outflags_anded &= point_outflags; + outflags_ored |= point_outflags; + } + if (outflags_anded != 0) // Entirely clipped by any one plane, so nothing remains + return 0; + + if (outflags_ored == 0) // Entirely within bounds, so trivial accept + { + if (allocated_dest_points < num_src_points) + return -1; // Not sure what the caller was thinking if this happens, but we should handle it gracefully + + memcpy(dest_points, src_points, num_src_points * sizeof(ImVec2)); + return num_src_points; + } + + // Shape needs clipping + ImVec2* clip_buf[2]; // Double-buffered work area + clip_buf[0] = (ImVec2*)alloca(2 * allocated_dest_points * sizeof(ImVec2)); //-V630 + clip_buf[1] = clip_buf[0] + allocated_dest_points; + + memcpy(clip_buf[0], src_points, num_src_points * sizeof(ImVec2)); + int clip_buf_size = num_src_points; // Number of vertices currently in the clip buffer + + int read_buffer_idx = 0; // The index of the clip buffer/out-flags we are reading (0 or 1) + + for (int clip_plane = 0; clip_plane < 4; clip_plane++) // 0 = X-, 1 = X+, 2 = Y-, 3 = Y+ + { + const int clip_plane_bit = 1 << clip_plane; // Bit mask for our current plane in out-flags + if ((outflags_ored & clip_plane_bit) == 0) + continue; // All vertices are inside this plane, so no need to clip + + ImVec2* read_vert = &clip_buf[read_buffer_idx][0]; // Clip buffer vertex we are currently reading + ImVec2* write_vert = &clip_buf[1 - read_buffer_idx][0]; // Clip buffer vertex we are currently writing + ImVec2* write_vert_end = write_vert + allocated_dest_points; // End of the write buffer + ImU8* read_outflags = &outflags[read_buffer_idx][0]; // Out-flag we are currently reading + ImU8* write_outflags = &outflags[1 - read_buffer_idx][0]; // Out-flag we are currently writing + + // Keep track of the last vertex visited, initially the last in the list + ImVec2* last_vert = &read_vert[clip_buf_size - 1]; + ImU8 last_outflags = read_outflags[clip_buf_size - 1]; + + for (int vert = 0; vert < clip_buf_size; vert++) + { + ImU8 current_outflags = *(read_outflags++); + bool out = (current_outflags & clip_plane_bit) != 0; + if (((current_outflags ^ last_outflags) & clip_plane_bit) == 0) // We haven't crossed the clip plane + { + if (!out) + { + // Emit vertex as-is + if (write_vert >= write_vert_end) + return -1; // Ran out of buffer space, so abort + *(write_vert++) = *read_vert; + *(write_outflags++) = current_outflags; + } + } + else + { + // Emit a vertex at the intersection point + float t = 0.0f; + ImVec2 pos0 = *last_vert; + ImVec2 pos1 = *read_vert; + ImVec2 intersect_pos; + switch (clip_plane) + { + case 0: t = (clip_rect_min.x - pos0.x) / (pos1.x - pos0.x); intersect_pos = ImVec2(clip_rect_min.x, pos0.y + ((pos1.y - pos0.y) * t)); break; // X- + case 1: t = (clip_rect_max.x - pos0.x) / (pos1.x - pos0.x); intersect_pos = ImVec2(clip_rect_max.x, pos0.y + ((pos1.y - pos0.y) * t)); break; // X+ + case 2: t = (clip_rect_min.y - pos0.y) / (pos1.y - pos0.y); intersect_pos = ImVec2(pos0.x + ((pos1.x - pos0.x) * t), clip_rect_min.y); break; // Y- + case 3: t = (clip_rect_max.y - pos0.y) / (pos1.y - pos0.y); intersect_pos = ImVec2(pos0.x + ((pos1.x - pos0.x) * t), clip_rect_max.y); break; // Y+ + } + + if (write_vert >= write_vert_end) + return -1; // Ran out of buffer space, so abort + + // Write new out-flags for the vertex we just emitted + *(write_vert++) = intersect_pos; + *(write_outflags++) = (intersect_pos.x < clip_rect_min.x ? 1 : 0) | (intersect_pos.x > clip_rect_max.x ? 2 : 0) | (intersect_pos.y < clip_rect_min.y ? 4 : 0) | (intersect_pos.y > clip_rect_max.y ? 8 : 0); + + if (!out) + { + // When coming back in, also emit the actual vertex + if (write_vert >= write_vert_end) + return -1; // Ran out of buffer space, so abort + *(write_vert++) = *read_vert; + *(write_outflags++) = current_outflags; + } + + last_outflags = current_outflags; + } + + last_vert = read_vert; + read_vert++; // Advance to next vertex + } + + clip_buf_size = (int)(write_vert - &clip_buf[1 - read_buffer_idx][0]); // Update buffer size + read_buffer_idx = 1 - read_buffer_idx; // Swap buffers + } + + if (clip_buf_size < 3) + return 0; // Nothing to return + + // Copy results to output buffer, removing any redundant vertices + int num_out_verts = 0; + ImVec2 last_vert = clip_buf[read_buffer_idx][clip_buf_size - 1]; + for (int i = 0; i < clip_buf_size; i++) + { + ImVec2 vert = clip_buf[read_buffer_idx][i]; + if (ImLengthSqr(vert - last_vert) <= 0.00001f) + continue; + dest_points[num_out_verts++] = vert; + last_vert = vert; + } + + // Return size (IF this is still a valid shape) + return (num_out_verts > 2) ? num_out_verts : 0; +} + +// Adds a rectangle (A) with a convex shape (B) subtracted from it (i.e. the portion of A covered by B is not drawn). +static void AddSubtractedRect(ImDrawList* draw_list, const ImVec2& a_min, const ImVec2& a_max, const ImVec2& a_min_uv, const ImVec2& a_max_uv, ImVec2* b_points, int num_b_points, ImU32 col) +{ + // Early out without drawing anything if A is zero-size + if (a_min.x >= a_max.x || a_min.y >= a_max.y) + return; + + // First clip B to A + const int max_clipped_points = num_b_points + 4; + ImVec2* clipped_b_points = (ImVec2*)alloca(max_clipped_points * sizeof(ImVec2)); //-V630 + const int num_clipped_points = ClipPolygonShape(b_points, num_b_points, clipped_b_points, max_clipped_points, a_min, a_max); + IM_ASSERT(num_clipped_points >= 0); // -1 would indicate max_clipped_points was too small, which shouldn't happen + + b_points = clipped_b_points; + num_b_points = num_clipped_points; + + if (num_clipped_points == 0) + { + // B is entirely outside A, so just draw A as-is + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(a_min, a_max, a_min_uv, a_max_uv, col); + } + else + { + // We need to generate clipped geometry + // To do this we walk the inner polygon and connect each edge to one of the four corners of our rectangle based on the quadrant their normal points at + const int max_verts = num_b_points + 4; // Inner points plus the four corners + const int max_indices = (num_b_points * 3) + (4 * 3); // Worst case is one triangle per inner edge and then four filler triangles + draw_list->PrimReserve(max_indices, max_verts); + + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx inner_idx = (ImDrawIdx)draw_list->_VtxCurrentIdx; // Starting index for inner vertices + + // Write inner vertices + const ImVec2 pos_to_uv_scale = (a_max_uv - a_min_uv) / (a_max - a_min); // Guaranteed never to be a /0 because we check for zero-size A above + const ImVec2 pos_to_uv_offset = (a_min_uv / pos_to_uv_scale) - a_min; + + // Helper that generates an interpolated UV based on position +#define LERP_UV(x_pos, y_pos) (ImVec2(((x_pos) + pos_to_uv_offset.x) * pos_to_uv_scale.x, ((y_pos) + pos_to_uv_offset.y) * pos_to_uv_scale.y)) + for (int i = 0; i < num_b_points; i++) + { + vtx_write[i].pos = b_points[i]; + vtx_write[i].uv = LERP_UV(b_points[i].x, b_points[i].y); + vtx_write[i].col = col; + } +#undef LERP_UV + + vtx_write += num_b_points; + + // Write outer vertices + ImDrawIdx outer_idx = (ImDrawIdx)(inner_idx + num_b_points); // Starting index for outer vertices + + ImVec2 outer_verts[4]; + outer_verts[0] = ImVec2(a_min.x, a_min.y); // X- Y- (quadrant 0, top left) + outer_verts[1] = ImVec2(a_max.x, a_min.y); // X+ Y- (quadrant 1, top right) + outer_verts[2] = ImVec2(a_max.x, a_max.y); // X+ Y+ (quadrant 2, bottom right) + outer_verts[3] = ImVec2(a_min.x, a_max.y); // X- Y+ (quadrant 3, bottom left) + + vtx_write[0].pos = outer_verts[0]; vtx_write[0].uv = ImVec2(a_min_uv.x, a_min_uv.y); vtx_write[0].col = col; + vtx_write[1].pos = outer_verts[1]; vtx_write[1].uv = ImVec2(a_max_uv.x, a_min_uv.y); vtx_write[1].col = col; + vtx_write[2].pos = outer_verts[2]; vtx_write[2].uv = ImVec2(a_max_uv.x, a_max_uv.y); vtx_write[2].col = col; + vtx_write[3].pos = outer_verts[3]; vtx_write[3].uv = ImVec2(a_min_uv.x, a_max_uv.y); vtx_write[3].col = col; + + draw_list->_VtxCurrentIdx += num_b_points + 4; + draw_list->_VtxWritePtr += num_b_points + 4; + + // Now walk the inner vertices in order + ImVec2 last_inner_vert = b_points[num_b_points - 1]; + int last_inner_vert_idx = num_b_points - 1; + int last_outer_vert_idx = -1; + int first_outer_vert_idx = -1; + + // Triangle-area based check for degenerate triangles + // Min area (0.1f) is doubled (* 2.0f) because we're calculating (area * 2) here +#define IS_DEGENERATE(a, b, c) (ImFabs((((a).x * ((b).y - (c).y)) + ((b).x * ((c).y - (a).y)) + ((c).x * ((a).y - (b).y)))) < (0.1f * 2.0f)) + + // Check the winding order of the inner vertices using the sign of the triangle area, and set the outer vertex winding to match + int outer_vertex_winding = (((b_points[0].x * (b_points[1].y - b_points[2].y)) + (b_points[1].x * (b_points[2].y - b_points[0].y)) + (b_points[2].x * (b_points[0].y - b_points[1].y))) < 0.0f) ? -1 : 1; + for (int inner_vert_idx = 0; inner_vert_idx < num_b_points; inner_vert_idx++) + { + ImVec2 current_inner_vert = b_points[inner_vert_idx]; + + // Calculate normal (not actually normalized, as for our purposes here it doesn't need to be) + ImVec2 normal(current_inner_vert.y - last_inner_vert.y, -(current_inner_vert.x - last_inner_vert.x)); + + // Calculate the outer vertex index based on the quadrant the normal points at (0=top left, 1=top right, 2=bottom right, 3=bottom left) + int outer_vert_idx = (ImFabs(normal.x) > ImFabs(normal.y)) ? ((normal.x >= 0.0f) ? ((normal.y > 0.0f) ? 2 : 1) : ((normal.y > 0.0f) ? 3 : 0)) : ((normal.y >= 0.0f) ? ((normal.x > 0.0f) ? 2 : 3) : ((normal.x > 0.0f) ? 1 : 0)); + ImVec2 outer_vert = outer_verts[outer_vert_idx]; + + // Write the main triangle (connecting the inner edge to the corner) + if (!IS_DEGENERATE(last_inner_vert, current_inner_vert, outer_vert)) + { + idx_write[0] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write[1] = (ImDrawIdx)(inner_idx + inner_vert_idx); + idx_write[2] = (ImDrawIdx)(outer_idx + outer_vert_idx); + idx_write += 3; + } + + // We don't initially know which outer vertex we are going to start from, so set that here when processing the first inner vertex + if (first_outer_vert_idx == -1) + { + first_outer_vert_idx = outer_vert_idx; + last_outer_vert_idx = outer_vert_idx; + } + + // Now walk the outer edge and write any filler triangles needed (connecting outer edges to the inner vertex) + while (outer_vert_idx != last_outer_vert_idx) + { + int next_outer_vert_idx = (last_outer_vert_idx + outer_vertex_winding) & 3; + if (!IS_DEGENERATE(outer_verts[last_outer_vert_idx], outer_verts[next_outer_vert_idx], last_inner_vert)) + { + idx_write[0] = (ImDrawIdx)(outer_idx + last_outer_vert_idx); + idx_write[1] = (ImDrawIdx)(outer_idx + next_outer_vert_idx); + idx_write[2] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write += 3; + } + last_outer_vert_idx = next_outer_vert_idx; + } + + last_inner_vert = current_inner_vert; + last_inner_vert_idx = inner_vert_idx; + } + + // Write remaining filler triangles for any un-traversed outer edges + if (first_outer_vert_idx != -1) + { + while (first_outer_vert_idx != last_outer_vert_idx) + { + int next_outer_vert_idx = (last_outer_vert_idx + outer_vertex_winding) & 3; + if (!IS_DEGENERATE(outer_verts[last_outer_vert_idx], outer_verts[next_outer_vert_idx], last_inner_vert)) + { + idx_write[0] = (ImDrawIdx)(outer_idx + last_outer_vert_idx); + idx_write[1] = (ImDrawIdx)(outer_idx + next_outer_vert_idx); + idx_write[2] = (ImDrawIdx)(inner_idx + last_inner_vert_idx); + idx_write += 3; + } + last_outer_vert_idx = next_outer_vert_idx; + } + } +#undef IS_DEGENERATE + + int used_indices = (int)(idx_write - draw_list->_IdxWritePtr); + draw_list->_IdxWritePtr = idx_write; + draw_list->PrimUnreserve(max_indices - used_indices, 0); + } +} + +void ImDrawList::AddShadowRect(const ImVec2& obj_min, const ImVec2& obj_max, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, float obj_rounding) +{ + if ((shadow_col & IM_COL32_A_MASK) == 0) + return; + + ImVec2* inner_rect_points = NULL; // Points that make up the shape of the inner rectangle (used when it has rounded corners) + int inner_rect_points_count = 0; + + // Generate a path describing the inner rectangle and copy it to our buffer + const bool is_filled = (flags & ImDrawFlags_ShadowCutOutShapeBackground) == 0; + const bool is_rounded = (obj_rounding > 0.0f) && ((flags & ImDrawFlags_RoundCornersMask_) != ImDrawFlags_RoundCornersNone); // Do we have rounded corners? + if (is_rounded && !is_filled) + { + IM_ASSERT(_Path.Size == 0); + PathRect(obj_min, obj_max, obj_rounding, flags); + inner_rect_points_count = _Path.Size; + inner_rect_points = (ImVec2*)alloca(inner_rect_points_count * sizeof(ImVec2)); //-V630 + memcpy(inner_rect_points, _Path.Data, inner_rect_points_count * sizeof(ImVec2)); + _Path.Size = 0; + } + + if (is_filled) + PrimReserve(6 * 9, 4 * 9); // Reserve space for adding unclipped chunks + + // Draw the relevant chunks of the texture (the texture is split into a 3x3 grid) + // FIXME-OPT: Might make sense to optimize/unroll for the fast paths (filled or not rounded) + for (int x = 0; x < 3; x++) + { + for (int y = 0; y < 3; y++) + { + const int uv_index = x + (y + y + y); // y*3 formatted so as to ensure the compiler avoids an actual multiply + const ImVec4 uvs = _Data->ShadowRectUvs[uv_index]; + + ImVec2 draw_min, draw_max; + switch (x) + { + case 0: draw_min.x = obj_min.x - shadow_thickness; draw_max.x = obj_min.x; break; + case 1: draw_min.x = obj_min.x; draw_max.x = obj_max.x; break; + case 2: draw_min.x = obj_max.x; draw_max.x = obj_max.x + shadow_thickness; break; + } + switch (y) + { + case 0: draw_min.y = obj_min.y - shadow_thickness; draw_max.y = obj_min.y; break; + case 1: draw_min.y = obj_min.y; draw_max.y = obj_max.y; break; + case 2: draw_min.y = obj_max.y; draw_max.y = obj_max.y + shadow_thickness; break; + } + + ImVec2 uv_min(uvs.x, uvs.y); + ImVec2 uv_max(uvs.z, uvs.w); + if (is_filled) + PrimRectUV(draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, shadow_col); // No clipping path (draw entire shadow) + else if (is_rounded) + AddSubtractedRect(this, draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, inner_rect_points, inner_rect_points_count, shadow_col); // Complex path for rounded rectangles + else + AddSubtractedRect(this, draw_min + shadow_offset, draw_max + shadow_offset, uv_min, uv_max, obj_min, obj_max, shadow_col); // Simple fast path for non-rounded rectangles + } + } +} + +// Add a shadow for a convex shape described by points and num_points +void ImDrawList::AddShadowConvexPoly(const ImVec2* points, int points_count, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags) +{ + const bool is_filled = (flags & ImDrawFlags_ShadowCutOutShapeBackground) == 0; + IM_ASSERT((is_filled || (ImLengthSqr(shadow_offset) < 0.00001f)) && "Drawing circle/convex shape shadows with no center fill and an offset is not currently supported"); + IM_ASSERT(points_count >= 3); + + // Calculate poly vertex order + const int vertex_winding = (((points[0].x * (points[1].y - points[2].y)) + (points[1].x * (points[2].y - points[0].y)) + (points[2].x * (points[0].y - points[1].y))) < 0.0f) ? -1 : 1; + + // If we're using anti-aliasing, then inset the shadow by 0.5 pixels to avoid unpleasant fringing artifacts + const bool use_inset_distance = (Flags & ImDrawListFlags_AntiAliasedFill) && (!is_filled); + const float inset_distance = 0.5f; + + const ImVec4 uvs = _Data->ShadowRectUvs[9]; + + int tex_width = _Data->Font->ContainerAtlas->TexWidth; + int tex_height = _Data->Font->ContainerAtlas->TexHeight; + float inv_tex_width = 1.0f / (float)tex_width; + float inv_tex_height = 1.0f / (float)tex_height; + + ImVec2 solid_uv = ImVec2(uvs.z, uvs.w); // UV at the inside of an edge + ImVec2 edge_uv = ImVec2(uvs.x, uvs.w); // UV at the outside of an edge + + ImVec2 solid_to_edge_delta_texels = edge_uv - solid_uv; // Delta between the solid/edge points in texel-space (we need this in pixels - or, to be more precise, to be at a 1:1 aspect ratio - for the rotation to work) + solid_to_edge_delta_texels.x *= (float)tex_width; + solid_to_edge_delta_texels.y *= (float)tex_height; + + // Our basic algorithm here is that we generate a straight section along each edge, and then either one or two curved corner triangles at the corners, + // which use an appropriate chunk of the texture to generate a smooth curve. + const int num_edges = points_count; + + // Normalize a vector +#define NORMALIZE(vec) ((vec) / ImLength((vec), 0.001f)) + + const int required_stack_mem = (num_edges * sizeof(ImVec2)) + (num_edges * sizeof(float)); + ImU8* base_mem_for_normals_and_edges = (ImU8*)alloca(required_stack_mem); + ImU8* mem_for_normals_and_edges = (ImU8*)base_mem_for_normals_and_edges; + + // Calculate edge normals + ImVec2* edge_normals = (ImVec2*)(void*)mem_for_normals_and_edges; + mem_for_normals_and_edges += num_edges * sizeof(ImVec2); + + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_start = points[edge_index]; // No need to apply offset here because the normal is unaffected + ImVec2 edge_end = points[(edge_index + 1) % num_edges]; + ImVec2 edge_normal = NORMALIZE(ImVec2(edge_end.y - edge_start.y, -(edge_end.x - edge_start.x))); + edge_normals[edge_index] = edge_normal * (float)vertex_winding; // Flip normals for reverse winding + } + + // Pre-calculate edge scales + // We need to do this because we need the edge strips to have widths that match up with the corner sections, otherwise pixel cracking can occur along the boundaries + float* edge_size_scales = (float*)(void*)mem_for_normals_and_edges; + mem_for_normals_and_edges += num_edges * sizeof(float); + IM_ASSERT_PARANOID(mem_for_normals_and_edges == (base_mem_for_normals_and_edges + required_stack_mem)); // Check we used exactly what we allocated + + { + ImVec2 prev_edge_normal = edge_normals[num_edges - 1]; + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_normal = edge_normals[edge_index]; + float cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); + + if (cos_angle_coverage < 0.999999f) + { + // If we are covering more than 90 degrees we need an intermediate vertex to stop the required expansion tending towards infinity. + // And thus the effective angle will be halved (matches the similar code in loop below) + float angle_coverage = ImAcos(cos_angle_coverage); + if (cos_angle_coverage <= 0.0f) // -V1051 + angle_coverage *= 0.5f; + edge_size_scales[edge_index] = 1.0f / ImCos(angle_coverage * 0.5f); // How much we need to expand our size by to avoid clipping the corner of the texture off + } + else + { + edge_size_scales[edge_index] = 1.0f; // No corner, thus default scale + } + + prev_edge_normal = edge_normal; + } + } + + const int max_vertices = (4 + (3 * 2) + (is_filled ? 1 : 0)) * num_edges; // 4 vertices per edge plus 3*2 for potentially two corner triangles, plus one per vertex for fill + const int max_indices = ((6 + (3 * 2)) * num_edges) + (is_filled ? ((num_edges - 2) * 3) : 0); // 2 tris per edge plus up to two corner triangles, plus fill triangles + PrimReserve(max_indices, max_vertices); + ImDrawIdx* idx_write = _IdxWritePtr; + ImDrawVert* vtx_write = _VtxWritePtr; + ImDrawIdx current_idx = (ImDrawIdx)_VtxCurrentIdx; + + //ImVec2 previous_edge_start = points[0] + offset; + ImVec2 prev_edge_normal = edge_normals[num_edges - 1]; + ImVec2 edge_start = points[0] + shadow_offset; + + if (use_inset_distance) + edge_start -= NORMALIZE(edge_normals[0] + prev_edge_normal) * inset_distance; + + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + ImVec2 edge_end = points[(edge_index + 1) % num_edges] + shadow_offset; + ImVec2 edge_normal = edge_normals[edge_index]; + const float size_scale_start = edge_size_scales[edge_index]; + const float size_scale_end = edge_size_scales[(edge_index + 1) % num_edges]; + + if (use_inset_distance) + edge_end -= NORMALIZE(edge_normals[(edge_index + 1) % num_edges] + edge_normal) * inset_distance; + + // Add corner section + float cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); + if (cos_angle_coverage < 0.999999f) // Don't fill if the corner is actually straight + { + // If we are covering more than 90 degrees we need an intermediate vertex to stop the required expansion tending towards infinity. + // And thus the effective angle has been halved (matches the similar code in loop above) + int num_steps = (cos_angle_coverage <= 0.0f) ? 2 : 1; + + for (int step = 0; step < num_steps; step++) + { + if (num_steps > 1) + { + if (step == 0) + edge_normal = NORMALIZE(edge_normal + prev_edge_normal); // Use half-way normal for first step + else + edge_normal = edge_normals[edge_index]; // Then use the "real" next edge normal for the second + + cos_angle_coverage = ImDot(edge_normal, prev_edge_normal); // Recalculate angle + } + + // Calculate UV for the section of the curved texture + + const float angle_coverage = ImAcos(cos_angle_coverage); + const float sin_angle_coverage = ImSin(angle_coverage); + + ImVec2 edge_delta = solid_to_edge_delta_texels; + edge_delta *= size_scale_start; + + ImVec2 rotated_edge_delta = ImVec2((edge_delta.x * cos_angle_coverage) + (edge_delta.y * sin_angle_coverage), (edge_delta.x * sin_angle_coverage) + (edge_delta.y * cos_angle_coverage)); + + // Convert from texels back into UV space + edge_delta.x *= inv_tex_width; + edge_delta.y *= inv_tex_height; + rotated_edge_delta.x *= inv_tex_width; + rotated_edge_delta.y *= inv_tex_height; + + ImVec2 expanded_edge_uv = solid_uv + edge_delta; + ImVec2 other_edge_uv = solid_uv + rotated_edge_delta; // Rotated UV to encompass the necessary section of the curve + + float expanded_thickness = shadow_thickness * size_scale_start; + + // Add a triangle to fill the corner + ImVec2 outer_edge_start = edge_start + (prev_edge_normal * expanded_thickness); + ImVec2 outer_edge_end = edge_start + (edge_normal * expanded_thickness); + + vtx_write->pos = edge_start; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = outer_edge_end; vtx_write->col = shadow_col; vtx_write->uv = expanded_edge_uv; vtx_write++; + vtx_write->pos = outer_edge_start; vtx_write->col = shadow_col; vtx_write->uv = other_edge_uv; vtx_write++; + + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 1; + *(idx_write++) = current_idx + 2; + current_idx += 3; + + prev_edge_normal = edge_normal; + } + } + + // Add section along edge + const float edge_length = ImLength(edge_end - edge_start, 0.0f); + if (edge_length > 0.00001f) // Don't try and process degenerate edges + { + ImVec2 outer_edge_start = edge_start + (edge_normal * shadow_thickness * size_scale_start); + ImVec2 outer_edge_end = edge_end + (edge_normal * shadow_thickness * size_scale_end); + ImVec2 scaled_edge_uv_start = solid_uv + ((edge_uv - solid_uv) * size_scale_start); + ImVec2 scaled_edge_uv_end = solid_uv + ((edge_uv - solid_uv) * size_scale_end); + + // Write vertices, inner first, then outer + vtx_write->pos = edge_start; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = edge_end; vtx_write->col = shadow_col; vtx_write->uv = solid_uv; vtx_write++; + vtx_write->pos = outer_edge_end; vtx_write->col = shadow_col; vtx_write->uv = scaled_edge_uv_end; vtx_write++; + vtx_write->pos = outer_edge_start; vtx_write->col = shadow_col; vtx_write->uv = scaled_edge_uv_start; vtx_write++; + + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 1; + *(idx_write++) = current_idx + 2; + *(idx_write++) = current_idx; + *(idx_write++) = current_idx + 2; + *(idx_write++) = current_idx + 3; + current_idx += 4; + } + + edge_start = edge_end; + } + + // Fill if requested + if (is_filled) + { + // Add vertices + for (int edge_index = 0; edge_index < num_edges; edge_index++) + { + vtx_write->pos = points[edge_index] + shadow_offset; + vtx_write->col = shadow_col; + vtx_write->uv = solid_uv; + vtx_write++; + } + + // Add triangles + for (int edge_index = 2; edge_index < num_edges; edge_index++) + { + *(idx_write++) = current_idx; + *(idx_write++) = (ImDrawIdx)(current_idx + edge_index - 1); + *(idx_write++) = (ImDrawIdx)(current_idx + edge_index); + } + + current_idx += (ImDrawIdx)num_edges; + } + + // Release any unused vertices/indices + int used_indices = (int)(idx_write - _IdxWritePtr); + int used_vertices = (int)(vtx_write - _VtxWritePtr); + _IdxWritePtr = idx_write; + _VtxWritePtr = vtx_write; + _VtxCurrentIdx = current_idx; + PrimUnreserve(max_indices - used_indices, max_vertices - used_vertices); +#undef NORMALIZE +} + +// Draw a shadow for a circular object +// Uses the draw path and so wipes any existing data there +void ImDrawList::AddShadowCircle(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, int num_segments) +{ + // Obtain segment count + if (num_segments <= 0) + { + // Automatic segment count + const int radius_idx = (int)obj_radius - 1; + if (radius_idx < IM_ARRAYSIZE(_Data->CircleSegmentCounts)) + num_segments = _Data->CircleSegmentCounts[radius_idx]; // Use cached value + else + num_segments = IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(obj_radius, _Data->CircleSegmentMaxError); + } + else + { + // Explicit segment count (still clamp to avoid drawing insanely tessellated shapes) + num_segments = ImClamp(num_segments, 3, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX); + } + + // Generate a path describing the inner circle and copy it to our buffer + IM_ASSERT(_Path.Size == 0); + const float a_max = (IM_PI * 2.0f) * ((float)num_segments - 1.0f) / (float)num_segments; + if (num_segments == 12) + PathArcToFast(obj_center, obj_radius, 0, 12 - 1); + else + PathArcTo(obj_center, obj_radius, 0.0f, a_max, num_segments - 1); + + // Draw the shadow using the convex shape code + AddShadowConvexPoly(_Path.Data, _Path.Size, shadow_col, shadow_thickness, shadow_offset, flags); + _Path.Size = 0; +} + +void ImDrawList::AddShadowNGon(const ImVec2& obj_center, float obj_radius, ImU32 shadow_col, float shadow_thickness, const ImVec2& shadow_offset, ImDrawFlags flags, int num_segments) +{ + IM_ASSERT(num_segments != 0); + AddShadowCircle(obj_center, obj_radius, shadow_col, shadow_thickness, shadow_offset, flags, num_segments); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawListSplitter +//----------------------------------------------------------------------------- +// FIXME: This may be a little confusing, trying to be a little too low-level/optimal instead of just doing vector swap.. +//----------------------------------------------------------------------------- + +void ImDrawListSplitter::ClearFreeMemory() +{ + for (int i = 0; i < _Channels.Size; i++) + { + if (i == _Current) + memset(&_Channels[i], 0, sizeof(_Channels[i])); // Current channel is a copy of CmdBuffer/IdxBuffer, don't destruct again + _Channels[i]._CmdBuffer.clear(); + _Channels[i]._IdxBuffer.clear(); + } + _Current = 0; + _Count = 1; + _Channels.clear(); +} + +void ImDrawListSplitter::Split(ImDrawList* draw_list, int channels_count) +{ + IM_UNUSED(draw_list); + IM_ASSERT(_Current == 0 && _Count <= 1 && "Nested channel splitting is not supported. Please use separate instances of ImDrawListSplitter."); + int old_channels_count = _Channels.Size; + if (old_channels_count < channels_count) + { + _Channels.reserve(channels_count); // Avoid over reserving since this is likely to stay stable + _Channels.resize(channels_count); + } + _Count = channels_count; + + // Channels[] (24/32 bytes each) hold storage that we'll swap with draw_list->_CmdBuffer/_IdxBuffer + // The content of Channels[0] at this point doesn't matter. We clear it to make state tidy in a debugger but we don't strictly need to. + // When we switch to the next channel, we'll copy draw_list->_CmdBuffer/_IdxBuffer into Channels[0] and then Channels[1] into draw_list->CmdBuffer/_IdxBuffer + memset(&_Channels[0], 0, sizeof(ImDrawChannel)); + for (int i = 1; i < channels_count; i++) + { + if (i >= old_channels_count) + { + IM_PLACEMENT_NEW(&_Channels[i]) ImDrawChannel(); + } + else + { + _Channels[i]._CmdBuffer.resize(0); + _Channels[i]._IdxBuffer.resize(0); + } + } +} + +void ImDrawListSplitter::Merge(ImDrawList* draw_list) +{ + // Note that we never use or rely on _Channels.Size because it is merely a buffer that we never shrink back to 0 to keep all sub-buffers ready for use. + if (_Count <= 1) + return; + + SetCurrentChannel(draw_list, 0); + draw_list->_PopUnusedDrawCmd(); + + // Calculate our final buffer sizes. Also fix the incorrect IdxOffset values in each command. + int new_cmd_buffer_count = 0; + int new_idx_buffer_count = 0; + ImDrawCmd* last_cmd = (_Count > 0 && draw_list->CmdBuffer.Size > 0) ? &draw_list->CmdBuffer.back() : NULL; + int idx_offset = last_cmd ? last_cmd->IdxOffset + last_cmd->ElemCount : 0; + for (int i = 1; i < _Count; i++) + { + ImDrawChannel& ch = _Channels[i]; + if (ch._CmdBuffer.Size > 0 && ch._CmdBuffer.back().ElemCount == 0 && ch._CmdBuffer.back().UserCallback == NULL) // Equivalent of PopUnusedDrawCmd() + ch._CmdBuffer.pop_back(); + + if (ch._CmdBuffer.Size > 0 && last_cmd != NULL) + { + // Do not include ImDrawCmd_AreSequentialIdxOffset() in the compare as we rebuild IdxOffset values ourselves. + // Manipulating IdxOffset (e.g. by reordering draw commands like done by RenderDimmedBackgroundBehindWindow()) is not supported within a splitter. + ImDrawCmd* next_cmd = &ch._CmdBuffer[0]; + if (ImDrawCmd_HeaderCompare(last_cmd, next_cmd) == 0 && last_cmd->UserCallback == NULL && next_cmd->UserCallback == NULL) + { + // Merge previous channel last draw command with current channel first draw command if matching. + last_cmd->ElemCount += next_cmd->ElemCount; + idx_offset += next_cmd->ElemCount; + ch._CmdBuffer.erase(ch._CmdBuffer.Data); // FIXME-OPT: Improve for multiple merges. + } + } + if (ch._CmdBuffer.Size > 0) + last_cmd = &ch._CmdBuffer.back(); + new_cmd_buffer_count += ch._CmdBuffer.Size; + new_idx_buffer_count += ch._IdxBuffer.Size; + for (int cmd_n = 0; cmd_n < ch._CmdBuffer.Size; cmd_n++) + { + ch._CmdBuffer.Data[cmd_n].IdxOffset = idx_offset; + idx_offset += ch._CmdBuffer.Data[cmd_n].ElemCount; + } + } + draw_list->CmdBuffer.resize(draw_list->CmdBuffer.Size + new_cmd_buffer_count); + draw_list->IdxBuffer.resize(draw_list->IdxBuffer.Size + new_idx_buffer_count); + + // Write commands and indices in order (they are fairly small structures, we don't copy vertices only indices) + ImDrawCmd* cmd_write = draw_list->CmdBuffer.Data + draw_list->CmdBuffer.Size - new_cmd_buffer_count; + ImDrawIdx* idx_write = draw_list->IdxBuffer.Data + draw_list->IdxBuffer.Size - new_idx_buffer_count; + for (int i = 1; i < _Count; i++) + { + ImDrawChannel& ch = _Channels[i]; + if (int sz = ch._CmdBuffer.Size) { memcpy(cmd_write, ch._CmdBuffer.Data, sz * sizeof(ImDrawCmd)); cmd_write += sz; } + if (int sz = ch._IdxBuffer.Size) { memcpy(idx_write, ch._IdxBuffer.Data, sz * sizeof(ImDrawIdx)); idx_write += sz; } + } + draw_list->_IdxWritePtr = idx_write; + + // Ensure there's always a non-callback draw command trailing the command-buffer + if (draw_list->CmdBuffer.Size == 0 || draw_list->CmdBuffer.back().UserCallback != NULL) + draw_list->AddDrawCmd(); + + // If current command is used with different settings we need to add a new command + ImDrawCmd* curr_cmd = &draw_list->CmdBuffer.Data[draw_list->CmdBuffer.Size - 1]; + if (curr_cmd->ElemCount == 0) + ImDrawCmd_HeaderCopy(curr_cmd, &draw_list->_CmdHeader); // Copy ClipRect, TextureId, VtxOffset + else if (ImDrawCmd_HeaderCompare(curr_cmd, &draw_list->_CmdHeader) != 0) + draw_list->AddDrawCmd(); + + _Count = 1; +} + +void ImDrawListSplitter::SetCurrentChannel(ImDrawList* draw_list, int idx) +{ + IM_ASSERT(idx >= 0 && idx < _Count); + if (_Current == idx) + return; + + // Overwrite ImVector (12/16 bytes), four times. This is merely a silly optimization instead of doing .swap() + memcpy(&_Channels.Data[_Current]._CmdBuffer, &draw_list->CmdBuffer, sizeof(draw_list->CmdBuffer)); + memcpy(&_Channels.Data[_Current]._IdxBuffer, &draw_list->IdxBuffer, sizeof(draw_list->IdxBuffer)); + _Current = idx; + memcpy(&draw_list->CmdBuffer, &_Channels.Data[idx]._CmdBuffer, sizeof(draw_list->CmdBuffer)); + memcpy(&draw_list->IdxBuffer, &_Channels.Data[idx]._IdxBuffer, sizeof(draw_list->IdxBuffer)); + draw_list->_IdxWritePtr = draw_list->IdxBuffer.Data + draw_list->IdxBuffer.Size; + + // If current command is used with different settings we need to add a new command + ImDrawCmd* curr_cmd = (draw_list->CmdBuffer.Size == 0) ? NULL : &draw_list->CmdBuffer.Data[draw_list->CmdBuffer.Size - 1]; + if (curr_cmd == NULL) + draw_list->AddDrawCmd(); + else if (curr_cmd->ElemCount == 0) + ImDrawCmd_HeaderCopy(curr_cmd, &draw_list->_CmdHeader); // Copy ClipRect, TextureId, VtxOffset + else if (ImDrawCmd_HeaderCompare(curr_cmd, &draw_list->_CmdHeader) != 0) + draw_list->AddDrawCmd(); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImDrawData +//----------------------------------------------------------------------------- + +void ImDrawData::Clear() +{ + Valid = false; + CmdListsCount = TotalIdxCount = TotalVtxCount = 0; + CmdLists.resize(0); // The ImDrawList are NOT owned by ImDrawData but e.g. by ImGuiContext, so we don't clear them. + DisplayPos = DisplaySize = FramebufferScale = ImVec2(0.0f, 0.0f); + OwnerViewport = NULL; +} + +// Important: 'out_list' is generally going to be draw_data->CmdLists, but may be another temporary list +// as long at it is expected that the result will be later merged into draw_data->CmdLists[]. +void ImGui::AddDrawListToDrawDataEx(ImDrawData* draw_data, ImVector* out_list, ImDrawList* draw_list) +{ + if (draw_list->CmdBuffer.Size == 0) + return; + if (draw_list->CmdBuffer.Size == 1 && draw_list->CmdBuffer[0].ElemCount == 0 && draw_list->CmdBuffer[0].UserCallback == NULL) + return; + + // Draw list sanity check. Detect mismatch between PrimReserve() calls and incrementing _VtxCurrentIdx, _VtxWritePtr etc. + // May trigger for you if you are using PrimXXX functions incorrectly. + IM_ASSERT(draw_list->VtxBuffer.Size == 0 || draw_list->_VtxWritePtr == draw_list->VtxBuffer.Data + draw_list->VtxBuffer.Size); + IM_ASSERT(draw_list->IdxBuffer.Size == 0 || draw_list->_IdxWritePtr == draw_list->IdxBuffer.Data + draw_list->IdxBuffer.Size); + if (!(draw_list->Flags & ImDrawListFlags_AllowVtxOffset)) + IM_ASSERT((int)draw_list->_VtxCurrentIdx == draw_list->VtxBuffer.Size); + + // Check that draw_list doesn't use more vertices than indexable (default ImDrawIdx = unsigned short = 2 bytes = 64K vertices per ImDrawList = per window) + // If this assert triggers because you are drawing lots of stuff manually: + // - First, make sure you are coarse clipping yourself and not trying to draw many things outside visible bounds. + // Be mindful that the lower-level ImDrawList API doesn't filter vertices. Use the Metrics/Debugger window to inspect draw list contents. + // - If you want large meshes with more than 64K vertices, you can either: + // (A) Handle the ImDrawCmd::VtxOffset value in your renderer backend, and set 'io.BackendFlags |= ImGuiBackendFlags_RendererHasVtxOffset'. + // Most example backends already support this from 1.71. Pre-1.71 backends won't. + // Some graphics API such as GL ES 1/2 don't have a way to offset the starting vertex so it is not supported for them. + // (B) Or handle 32-bit indices in your renderer backend, and uncomment '#define ImDrawIdx unsigned int' line in imconfig.h. + // Most example backends already support this. For example, the OpenGL example code detect index size at compile-time: + // glDrawElements(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, idx_buffer_offset); + // Your own engine or render API may use different parameters or function calls to specify index sizes. + // 2 and 4 bytes indices are generally supported by most graphics API. + // - If for some reason neither of those solutions works for you, a workaround is to call BeginChild()/EndChild() before reaching + // the 64K limit to split your draw commands in multiple draw lists. + if (sizeof(ImDrawIdx) == 2) + IM_ASSERT(draw_list->_VtxCurrentIdx < (1 << 16) && "Too many vertices in ImDrawList using 16-bit indices. Read comment above"); + + // Add to output list + records state in ImDrawData + out_list->push_back(draw_list); + draw_data->CmdListsCount++; + draw_data->TotalVtxCount += draw_list->VtxBuffer.Size; + draw_data->TotalIdxCount += draw_list->IdxBuffer.Size; +} + +void ImDrawData::AddDrawList(ImDrawList* draw_list) +{ + IM_ASSERT(CmdLists.Size == CmdListsCount); + draw_list->_PopUnusedDrawCmd(); + ImGui::AddDrawListToDrawDataEx(this, &CmdLists, draw_list); +} + +// For backward compatibility: convert all buffers from indexed to de-indexed, in case you cannot render indexed. Note: this is slow and most likely a waste of resources. Always prefer indexed rendering! +void ImDrawData::DeIndexAllBuffers() +{ + ImVector new_vtx_buffer; + TotalVtxCount = TotalIdxCount = 0; + for (int i = 0; i < CmdListsCount; i++) + { + ImDrawList* cmd_list = CmdLists[i]; + if (cmd_list->IdxBuffer.empty()) + continue; + new_vtx_buffer.resize(cmd_list->IdxBuffer.Size); + for (int j = 0; j < cmd_list->IdxBuffer.Size; j++) + new_vtx_buffer[j] = cmd_list->VtxBuffer[cmd_list->IdxBuffer[j]]; + cmd_list->VtxBuffer.swap(new_vtx_buffer); + cmd_list->IdxBuffer.resize(0); + TotalVtxCount += cmd_list->VtxBuffer.Size; + } +} + +// Helper to scale the ClipRect field of each ImDrawCmd. +// Use if your final output buffer is at a different scale than draw_data->DisplaySize, +// or if there is a difference between your window resolution and framebuffer resolution. +void ImDrawData::ScaleClipRects(const ImVec2& fb_scale) +{ + for (ImDrawList* draw_list : CmdLists) + for (ImDrawCmd& cmd : draw_list->CmdBuffer) + cmd.ClipRect = ImVec4(cmd.ClipRect.x * fb_scale.x, cmd.ClipRect.y * fb_scale.y, cmd.ClipRect.z * fb_scale.x, cmd.ClipRect.w * fb_scale.y); +} + +//----------------------------------------------------------------------------- +// [SECTION] Helpers ShadeVertsXXX functions +//----------------------------------------------------------------------------- + +// Generic linear color gradient, write to RGB fields, leave A untouched. +void ImGui::ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1) +{ + ImVec2 gradient_extent = gradient_p1 - gradient_p0; + float gradient_inv_length2 = 1.0f / ImLengthSqr(gradient_extent); + ImDrawVert* vert_start = draw_list->VtxBuffer.Data + vert_start_idx; + ImDrawVert* vert_end = draw_list->VtxBuffer.Data + vert_end_idx; + const int col0_r = (int)(col0 >> IM_COL32_R_SHIFT) & 0xFF; + const int col0_g = (int)(col0 >> IM_COL32_G_SHIFT) & 0xFF; + const int col0_b = (int)(col0 >> IM_COL32_B_SHIFT) & 0xFF; + const int col_delta_r = ((int)(col1 >> IM_COL32_R_SHIFT) & 0xFF) - col0_r; + const int col_delta_g = ((int)(col1 >> IM_COL32_G_SHIFT) & 0xFF) - col0_g; + const int col_delta_b = ((int)(col1 >> IM_COL32_B_SHIFT) & 0xFF) - col0_b; + for (ImDrawVert* vert = vert_start; vert < vert_end; vert++) + { + float d = ImDot(vert->pos - gradient_p0, gradient_extent); + float t = ImClamp(d * gradient_inv_length2, 0.0f, 1.0f); + int r = (int)(col0_r + col_delta_r * t); + int g = (int)(col0_g + col_delta_g * t); + int b = (int)(col0_b + col_delta_b * t); + vert->col = (r << IM_COL32_R_SHIFT) | (g << IM_COL32_G_SHIFT) | (b << IM_COL32_B_SHIFT) | (vert->col & IM_COL32_A_MASK); + } +} + +// Distribute UV over (a, b) rectangle +void ImGui::ShadeVertsLinearUV(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, bool clamp) +{ + const ImVec2 size = b - a; + const ImVec2 uv_size = uv_b - uv_a; + const ImVec2 scale = ImVec2( + size.x != 0.0f ? (uv_size.x / size.x) : 0.0f, + size.y != 0.0f ? (uv_size.y / size.y) : 0.0f); + + ImDrawVert* vert_start = draw_list->VtxBuffer.Data + vert_start_idx; + ImDrawVert* vert_end = draw_list->VtxBuffer.Data + vert_end_idx; + if (clamp) + { + const ImVec2 min = ImMin(uv_a, uv_b); + const ImVec2 max = ImMax(uv_a, uv_b); + for (ImDrawVert* vertex = vert_start; vertex < vert_end; ++vertex) + vertex->uv = ImClamp(uv_a + ImMul(ImVec2(vertex->pos.x, vertex->pos.y) - a, scale), min, max); + } + else + { + for (ImDrawVert* vertex = vert_start; vertex < vert_end; ++vertex) + vertex->uv = uv_a + ImMul(ImVec2(vertex->pos.x, vertex->pos.y) - a, scale); + } +} + +void ImGui::ShadeVertsTransformPos(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, const ImVec2& pivot_in, float cos_a, float sin_a, const ImVec2& pivot_out) +{ + ImDrawVert* vert_start = draw_list->VtxBuffer.Data + vert_start_idx; + ImDrawVert* vert_end = draw_list->VtxBuffer.Data + vert_end_idx; + for (ImDrawVert* vertex = vert_start; vertex < vert_end; ++vertex) + vertex->pos = ImRotate(vertex->pos- pivot_in, cos_a, sin_a) + pivot_out; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontConfig +//----------------------------------------------------------------------------- + +ImFontConfig::ImFontConfig() +{ + memset(this, 0, sizeof(*this)); + FontDataOwnedByAtlas = true; + OversampleH = 2; + OversampleV = 1; + GlyphMaxAdvanceX = FLT_MAX; + RasterizerMultiply = 1.0f; + RasterizerDensity = 1.0f; + EllipsisChar = (ImWchar)-1; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontAtlas +//----------------------------------------------------------------------------- + +// A work of art lies ahead! (. = white layer, X = black layer, others are blank) +// The 2x2 white texels on the top left are the ones we'll use everywhere in Dear ImGui to render filled shapes. +// (This is used when io.MouseDrawCursor = true) +const int FONT_ATLAS_DEFAULT_TEX_DATA_W = 122; // Actual texture will be 2 times that + 1 spacing. +const int FONT_ATLAS_DEFAULT_TEX_DATA_H = 27; +static const char FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS[FONT_ATLAS_DEFAULT_TEX_DATA_W * FONT_ATLAS_DEFAULT_TEX_DATA_H + 1] = +{ + "..- -XXXXXXX- X - X -XXXXXXX - XXXXXXX- XX - XX XX " + "..- -X.....X- X.X - X.X -X.....X - X.....X- X..X -X..X X..X" + "--- -XXX.XXX- X...X - X...X -X....X - X....X- X..X -X...X X...X" + "X - X.X - X.....X - X.....X -X...X - X...X- X..X - X...X X...X " + "XX - X.X -X.......X- X.......X -X..X.X - X.X..X- X..X - X...X...X " + "X.X - X.X -XXXX.XXXX- XXXX.XXXX -X.X X.X - X.X X.X- X..XXX - X.....X " + "X..X - X.X - X.X - X.X -XX X.X - X.X XX- X..X..XXX - X...X " + "X...X - X.X - X.X - XX X.X XX - X.X - X.X - X..X..X..XX - X.X " + "X....X - X.X - X.X - X.X X.X X.X - X.X - X.X - X..X..X..X.X - X...X " + "X.....X - X.X - X.X - X..X X.X X..X - X.X - X.X -XXX X..X..X..X..X- X.....X " + "X......X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X XX-XX X.X -X..XX........X..X- X...X...X " + "X.......X - X.X - X.X -X.....................X- X.X X.X-X.X X.X -X...X...........X- X...X X...X " + "X........X - X.X - X.X - X...XXXXXX.XXXXXX...X - X.X..X-X..X.X - X..............X-X...X X...X" + "X.........X -XXX.XXX- X.X - X..X X.X X..X - X...X-X...X - X.............X-X..X X..X" + "X..........X-X.....X- X.X - X.X X.X X.X - X....X-X....X - X.............X- XX XX " + "X......XXXXX-XXXXXXX- X.X - XX X.X XX - X.....X-X.....X - X............X--------------" + "X...X..X --------- X.X - X.X - XXXXXXX-XXXXXXX - X...........X - " + "X..X X..X - -XXXX.XXXX- XXXX.XXXX ------------------------------------- X..........X - " + "X.X X..X - -X.......X- X.......X - XX XX - - X..........X - " + "XX X..X - - X.....X - X.....X - X.X X.X - - X........X - " + " X..X - - X...X - X...X - X..X X..X - - X........X - " + " XX - - X.X - X.X - X...XXXXXXXXXXXXX...X - - XXXXXXXXXX - " + "------------- - X - X -X.....................X- ------------------- " + " ----------------------------------- X...XXXXXXXXXXXXX...X - " + " - X..X X..X - " + " - X.X X.X - " + " - XX XX - " +}; + +static const ImVec2 FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[ImGuiMouseCursor_COUNT][3] = +{ + // Pos ........ Size ......... Offset ...... + { ImVec2( 0,3), ImVec2(12,19), ImVec2( 0, 0) }, // ImGuiMouseCursor_Arrow + { ImVec2(13,0), ImVec2( 7,16), ImVec2( 1, 8) }, // ImGuiMouseCursor_TextInput + { ImVec2(31,0), ImVec2(23,23), ImVec2(11,11) }, // ImGuiMouseCursor_ResizeAll + { ImVec2(21,0), ImVec2( 9,23), ImVec2( 4,11) }, // ImGuiMouseCursor_ResizeNS + { ImVec2(55,18),ImVec2(23, 9), ImVec2(11, 4) }, // ImGuiMouseCursor_ResizeEW + { ImVec2(73,0), ImVec2(17,17), ImVec2( 8, 8) }, // ImGuiMouseCursor_ResizeNESW + { ImVec2(55,0), ImVec2(17,17), ImVec2( 8, 8) }, // ImGuiMouseCursor_ResizeNWSE + { ImVec2(91,0), ImVec2(17,22), ImVec2( 5, 0) }, // ImGuiMouseCursor_Hand + { ImVec2(109,0),ImVec2(13,15), ImVec2( 6, 7) }, // ImGuiMouseCursor_NotAllowed +}; + +ImFontAtlas::ImFontAtlas() +{ + memset(this, 0, sizeof(*this)); + TexGlyphPadding = 1; + PackIdMouseCursors = PackIdLines = -1; + ShadowRectIds[0] = ShadowRectIds[1] = -1; + ShadowTexConfig.SetupDefaults(); +} + +ImFontAtlas::~ImFontAtlas() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + Clear(); +} + +void ImFontAtlas::ClearInputData() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + for (ImFontConfig& font_cfg : ConfigData) + if (font_cfg.FontData && font_cfg.FontDataOwnedByAtlas) + { + IM_FREE(font_cfg.FontData); + font_cfg.FontData = NULL; + } + + // When clearing this we lose access to the font name and other information used to build the font. + for (ImFont* font : Fonts) + if (font->ConfigData >= ConfigData.Data && font->ConfigData < ConfigData.Data + ConfigData.Size) + { + font->ConfigData = NULL; + font->ConfigDataCount = 0; + } + ConfigData.clear(); + CustomRects.clear(); + PackIdMouseCursors = PackIdLines = -1; + ShadowRectIds[0] = ShadowRectIds[1] = -1; + // Important: we leave TexReady untouched +} + +void ImFontAtlas::ClearTexData() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + if (TexPixelsAlpha8) + IM_FREE(TexPixelsAlpha8); + if (TexPixelsRGBA32) + IM_FREE(TexPixelsRGBA32); + TexPixelsAlpha8 = NULL; + TexPixelsRGBA32 = NULL; + TexPixelsUseColors = false; + // Important: we leave TexReady untouched +} + +void ImFontAtlas::ClearFonts() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + Fonts.clear_delete(); + TexReady = false; +} + +void ImFontAtlas::Clear() +{ + ClearInputData(); + ClearTexData(); + ClearFonts(); +} + +void ImFontAtlas::GetTexDataAsAlpha8(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel) +{ + // Build atlas on demand + if (TexPixelsAlpha8 == NULL) + Build(); + + *out_pixels = TexPixelsAlpha8; + if (out_width) *out_width = TexWidth; + if (out_height) *out_height = TexHeight; + if (out_bytes_per_pixel) *out_bytes_per_pixel = 1; +} + +void ImFontAtlas::GetTexDataAsRGBA32(unsigned char** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel) +{ + // Convert to RGBA32 format on demand + // Although it is likely to be the most commonly used format, our font rendering is 1 channel / 8 bpp + if (!TexPixelsRGBA32) + { + unsigned char* pixels = NULL; + GetTexDataAsAlpha8(&pixels, NULL, NULL); + if (pixels) + { + TexPixelsRGBA32 = (unsigned int*)IM_ALLOC((size_t)TexWidth * (size_t)TexHeight * 4); + const unsigned char* src = pixels; + unsigned int* dst = TexPixelsRGBA32; + for (int n = TexWidth * TexHeight; n > 0; n--) + *dst++ = IM_COL32(255, 255, 255, (unsigned int)(*src++)); + } + } + + *out_pixels = (unsigned char*)TexPixelsRGBA32; + if (out_width) *out_width = TexWidth; + if (out_height) *out_height = TexHeight; + if (out_bytes_per_pixel) *out_bytes_per_pixel = 4; +} + +ImFont* ImFontAtlas::AddFont(const ImFontConfig* font_cfg) +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + IM_ASSERT(font_cfg->FontData != NULL && font_cfg->FontDataSize > 0); + IM_ASSERT(font_cfg->SizePixels > 0.0f && "Is ImFontConfig struct correctly initialized?"); + IM_ASSERT(font_cfg->OversampleH > 0 && font_cfg->OversampleV > 0 && "Is ImFontConfig struct correctly initialized?"); + + // Create new font + if (!font_cfg->MergeMode) + Fonts.push_back(IM_NEW(ImFont)); + else + IM_ASSERT(Fonts.Size > 0 && "Cannot use MergeMode for the first font"); // When using MergeMode make sure that a font has already been added before. You can use ImGui::GetIO().Fonts->AddFontDefault() to add the default imgui font. + + ConfigData.push_back(*font_cfg); + ImFontConfig& new_font_cfg = ConfigData.back(); + if (new_font_cfg.DstFont == NULL) + new_font_cfg.DstFont = Fonts.back(); + if (!new_font_cfg.FontDataOwnedByAtlas) + { + new_font_cfg.FontData = IM_ALLOC(new_font_cfg.FontDataSize); + new_font_cfg.FontDataOwnedByAtlas = true; + memcpy(new_font_cfg.FontData, font_cfg->FontData, (size_t)new_font_cfg.FontDataSize); + } + + if (new_font_cfg.DstFont->EllipsisChar == (ImWchar)-1) + new_font_cfg.DstFont->EllipsisChar = font_cfg->EllipsisChar; + + ImFontAtlasUpdateConfigDataPointers(this); + + // Invalidate texture + TexReady = false; + ClearTexData(); + return new_font_cfg.DstFont; +} + +// Default font TTF is compressed with stb_compress then base85 encoded (see misc/fonts/binary_to_compressed_c.cpp for encoder) +static unsigned int stb_decompress_length(const unsigned char* input); +static unsigned int stb_decompress(unsigned char* output, const unsigned char* input, unsigned int length); +static const char* GetDefaultCompressedFontDataTTFBase85(); +static unsigned int Decode85Byte(char c) { return c >= '\\' ? c-36 : c-35; } +static void Decode85(const unsigned char* src, unsigned char* dst) +{ + while (*src) + { + unsigned int tmp = Decode85Byte(src[0]) + 85 * (Decode85Byte(src[1]) + 85 * (Decode85Byte(src[2]) + 85 * (Decode85Byte(src[3]) + 85 * Decode85Byte(src[4])))); + dst[0] = ((tmp >> 0) & 0xFF); dst[1] = ((tmp >> 8) & 0xFF); dst[2] = ((tmp >> 16) & 0xFF); dst[3] = ((tmp >> 24) & 0xFF); // We can't assume little-endianness. + src += 5; + dst += 4; + } +} + +// Load embedded ProggyClean.ttf at size 13, disable oversampling +ImFont* ImFontAtlas::AddFontDefault(const ImFontConfig* font_cfg_template) +{ + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + if (!font_cfg_template) + { + font_cfg.OversampleH = font_cfg.OversampleV = 1; + font_cfg.PixelSnapH = true; + } + if (font_cfg.SizePixels <= 0.0f) + font_cfg.SizePixels = 13.0f * 1.0f; + if (font_cfg.Name[0] == '\0') + ImFormatString(font_cfg.Name, IM_ARRAYSIZE(font_cfg.Name), "ProggyClean.ttf, %dpx", (int)font_cfg.SizePixels); + font_cfg.EllipsisChar = (ImWchar)0x0085; + font_cfg.GlyphOffset.y = 1.0f * IM_TRUNC(font_cfg.SizePixels / 13.0f); // Add +1 offset per 13 units + + const char* ttf_compressed_base85 = GetDefaultCompressedFontDataTTFBase85(); + const ImWchar* glyph_ranges = font_cfg.GlyphRanges != NULL ? font_cfg.GlyphRanges : GetGlyphRangesDefault(); + ImFont* font = AddFontFromMemoryCompressedBase85TTF(ttf_compressed_base85, font_cfg.SizePixels, &font_cfg, glyph_ranges); + return font; +} + +ImFont* ImFontAtlas::AddFontFromFileTTF(const char* filename, float size_pixels, const ImFontConfig* font_cfg_template, const ImWchar* glyph_ranges) +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + size_t data_size = 0; + void* data = ImFileLoadToMemory(filename, "rb", &data_size, 0); + if (!data) + { + IM_ASSERT_USER_ERROR(0, "Could not load font file!"); + return NULL; + } + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + if (font_cfg.Name[0] == '\0') + { + // Store a short copy of filename into into the font name for convenience + const char* p; + for (p = filename + strlen(filename); p > filename && p[-1] != '/' && p[-1] != '\\'; p--) {} + ImFormatString(font_cfg.Name, IM_ARRAYSIZE(font_cfg.Name), "%s, %.0fpx", p, size_pixels); + } + return AddFontFromMemoryTTF(data, (int)data_size, size_pixels, &font_cfg, glyph_ranges); +} + +// NB: Transfer ownership of 'ttf_data' to ImFontAtlas, unless font_cfg_template->FontDataOwnedByAtlas == false. Owned TTF buffer will be deleted after Build(). +ImFont* ImFontAtlas::AddFontFromMemoryTTF(void* font_data, int font_data_size, float size_pixels, const ImFontConfig* font_cfg_template, const ImWchar* glyph_ranges) +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + IM_ASSERT(font_cfg.FontData == NULL); + IM_ASSERT(font_data_size > 100 && "Incorrect value for font_data_size!"); // Heuristic to prevent accidentally passing a wrong value to font_data_size. + font_cfg.FontData = font_data; + font_cfg.FontDataSize = font_data_size; + font_cfg.SizePixels = size_pixels > 0.0f ? size_pixels : font_cfg.SizePixels; + if (glyph_ranges) + font_cfg.GlyphRanges = glyph_ranges; + return AddFont(&font_cfg); +} + +ImFont* ImFontAtlas::AddFontFromMemoryCompressedTTF(const void* compressed_ttf_data, int compressed_ttf_size, float size_pixels, const ImFontConfig* font_cfg_template, const ImWchar* glyph_ranges) +{ + const unsigned int buf_decompressed_size = stb_decompress_length((const unsigned char*)compressed_ttf_data); + unsigned char* buf_decompressed_data = (unsigned char*)IM_ALLOC(buf_decompressed_size); + stb_decompress(buf_decompressed_data, (const unsigned char*)compressed_ttf_data, (unsigned int)compressed_ttf_size); + + ImFontConfig font_cfg = font_cfg_template ? *font_cfg_template : ImFontConfig(); + IM_ASSERT(font_cfg.FontData == NULL); + font_cfg.FontDataOwnedByAtlas = true; + return AddFontFromMemoryTTF(buf_decompressed_data, (int)buf_decompressed_size, size_pixels, &font_cfg, glyph_ranges); +} + +ImFont* ImFontAtlas::AddFontFromMemoryCompressedBase85TTF(const char* compressed_ttf_data_base85, float size_pixels, const ImFontConfig* font_cfg, const ImWchar* glyph_ranges) +{ + int compressed_ttf_size = (((int)strlen(compressed_ttf_data_base85) + 4) / 5) * 4; + void* compressed_ttf = IM_ALLOC((size_t)compressed_ttf_size); + Decode85((const unsigned char*)compressed_ttf_data_base85, (unsigned char*)compressed_ttf); + ImFont* font = AddFontFromMemoryCompressedTTF(compressed_ttf, compressed_ttf_size, size_pixels, font_cfg, glyph_ranges); + IM_FREE(compressed_ttf); + return font; +} + +int ImFontAtlas::AddCustomRectRegular(int width, int height) +{ + IM_ASSERT(width > 0 && width <= 0xFFFF); + IM_ASSERT(height > 0 && height <= 0xFFFF); + ImFontAtlasCustomRect r; + r.Width = (unsigned short)width; + r.Height = (unsigned short)height; + CustomRects.push_back(r); + return CustomRects.Size - 1; // Return index +} + +int ImFontAtlas::AddCustomRectFontGlyph(ImFont* font, ImWchar id, int width, int height, float advance_x, const ImVec2& offset) +{ +#ifdef IMGUI_USE_WCHAR32 + IM_ASSERT(id <= IM_UNICODE_CODEPOINT_MAX); +#endif + IM_ASSERT(font != NULL); + IM_ASSERT(width > 0 && width <= 0xFFFF); + IM_ASSERT(height > 0 && height <= 0xFFFF); + ImFontAtlasCustomRect r; + r.Width = (unsigned short)width; + r.Height = (unsigned short)height; + r.GlyphID = id; + r.GlyphAdvanceX = advance_x; + r.GlyphOffset = offset; + r.Font = font; + CustomRects.push_back(r); + return CustomRects.Size - 1; // Return index +} + +void ImFontAtlas::CalcCustomRectUV(const ImFontAtlasCustomRect* rect, ImVec2* out_uv_min, ImVec2* out_uv_max) const +{ + IM_ASSERT(TexWidth > 0 && TexHeight > 0); // Font atlas needs to be built before we can calculate UV coordinates + IM_ASSERT(rect->IsPacked()); // Make sure the rectangle has been packed + *out_uv_min = ImVec2((float)rect->X * TexUvScale.x, (float)rect->Y * TexUvScale.y); + *out_uv_max = ImVec2((float)(rect->X + rect->Width) * TexUvScale.x, (float)(rect->Y + rect->Height) * TexUvScale.y); +} + +bool ImFontAtlas::GetMouseCursorTexData(ImGuiMouseCursor cursor_type, ImVec2* out_offset, ImVec2* out_size, ImVec2 out_uv_border[2], ImVec2 out_uv_fill[2]) +{ + if (cursor_type <= ImGuiMouseCursor_None || cursor_type >= ImGuiMouseCursor_COUNT) + return false; + if (Flags & ImFontAtlasFlags_NoMouseCursors) + return false; + + IM_ASSERT(PackIdMouseCursors != -1); + ImFontAtlasCustomRect* r = GetCustomRectByIndex(PackIdMouseCursors); + ImVec2 pos = FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[cursor_type][0] + ImVec2((float)r->X, (float)r->Y); + ImVec2 size = FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[cursor_type][1]; + *out_size = size; + *out_offset = FONT_ATLAS_DEFAULT_TEX_CURSOR_DATA[cursor_type][2]; + out_uv_border[0] = (pos) * TexUvScale; + out_uv_border[1] = (pos + size) * TexUvScale; + pos.x += FONT_ATLAS_DEFAULT_TEX_DATA_W + 1; + out_uv_fill[0] = (pos) * TexUvScale; + out_uv_fill[1] = (pos + size) * TexUvScale; + return true; +} + +bool ImFontAtlas::Build() +{ + IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); + + // Default font is none are specified + if (ConfigData.Size == 0) + AddFontDefault(); + + // Select builder + // - Note that we do not reassign to atlas->FontBuilderIO, since it is likely to point to static data which + // may mess with some hot-reloading schemes. If you need to assign to this (for dynamic selection) AND are + // using a hot-reloading scheme that messes up static data, store your own instance of ImFontBuilderIO somewhere + // and point to it instead of pointing directly to return value of the GetBuilderXXX functions. + const ImFontBuilderIO* builder_io = FontBuilderIO; + if (builder_io == NULL) + { +#ifdef IMGUI_ENABLE_FREETYPE + builder_io = ImGuiFreeType::GetBuilderForFreeType(); +#elif defined(IMGUI_ENABLE_STB_TRUETYPE) + builder_io = ImFontAtlasGetBuilderForStbTruetype(); +#else + IM_ASSERT(0); // Invalid Build function +#endif + } + + // Build + return builder_io->FontBuilder_Build(this); +} + +void ImFontAtlasBuildMultiplyCalcLookupTable(unsigned char out_table[256], float in_brighten_factor) +{ + for (unsigned int i = 0; i < 256; i++) + { + unsigned int value = (unsigned int)(i * in_brighten_factor); + out_table[i] = value > 255 ? 255 : (value & 0xFF); + } +} + +void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels, int x, int y, int w, int h, int stride) +{ + IM_ASSERT_PARANOID(w <= stride); + unsigned char* data = pixels + x + y * stride; + for (int j = h; j > 0; j--, data += stride - w) + for (int i = w; i > 0; i--, data++) + *data = table[*data]; +} + +#ifdef IMGUI_ENABLE_STB_TRUETYPE +// Temporary data for one source font (multiple source fonts can be merged into one destination ImFont) +// (C++03 doesn't allow instancing ImVector<> with function-local types so we declare the type here.) +struct ImFontBuildSrcData +{ + stbtt_fontinfo FontInfo; + stbtt_pack_range PackRange; // Hold the list of codepoints to pack (essentially points to Codepoints.Data) + stbrp_rect* Rects; // Rectangle to pack. We first fill in their size and the packer will give us their position. + stbtt_packedchar* PackedChars; // Output glyphs + const ImWchar* SrcRanges; // Ranges as requested by user (user is allowed to request too much, e.g. 0x0020..0xFFFF) + int DstIndex; // Index into atlas->Fonts[] and dst_tmp_array[] + int GlyphsHighest; // Highest requested codepoint + int GlyphsCount; // Glyph count (excluding missing glyphs and glyphs already set by an earlier source font) + ImBitVector GlyphsSet; // Glyph bit map (random access, 1-bit per codepoint. This will be a maximum of 8KB) + ImVector GlyphsList; // Glyph codepoints list (flattened version of GlyphsSet) +}; + +// Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont) +struct ImFontBuildDstData +{ + int SrcCount; // Number of source fonts targeting this destination font. + int GlyphsHighest; + int GlyphsCount; + ImBitVector GlyphsSet; // This is used to resolve collision when multiple sources are merged into a same destination font. +}; + +static void UnpackBitVectorToFlatIndexList(const ImBitVector* in, ImVector* out) +{ + IM_ASSERT(sizeof(in->Storage.Data[0]) == sizeof(int)); + const ImU32* it_begin = in->Storage.begin(); + const ImU32* it_end = in->Storage.end(); + for (const ImU32* it = it_begin; it < it_end; it++) + if (ImU32 entries_32 = *it) + for (ImU32 bit_n = 0; bit_n < 32; bit_n++) + if (entries_32 & ((ImU32)1 << bit_n)) + out->push_back((int)(((it - it_begin) << 5) + bit_n)); +} + +static bool ImFontAtlasBuildWithStbTruetype(ImFontAtlas* atlas) +{ + IM_ASSERT(atlas->ConfigData.Size > 0); + + ImFontAtlasBuildInit(atlas); + + // Clear atlas + atlas->TexID = (ImTextureID)NULL; + atlas->TexWidth = atlas->TexHeight = 0; + atlas->TexUvScale = ImVec2(0.0f, 0.0f); + atlas->TexUvWhitePixel = ImVec2(0.0f, 0.0f); + atlas->ClearTexData(); + + // Temporary storage for building + ImVector src_tmp_array; + ImVector dst_tmp_array; + src_tmp_array.resize(atlas->ConfigData.Size); + dst_tmp_array.resize(atlas->Fonts.Size); + memset(src_tmp_array.Data, 0, (size_t)src_tmp_array.size_in_bytes()); + memset(dst_tmp_array.Data, 0, (size_t)dst_tmp_array.size_in_bytes()); + + // 1. Initialize font loading structure, check font data validity + for (int src_i = 0; src_i < atlas->ConfigData.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + IM_ASSERT(cfg.DstFont && (!cfg.DstFont->IsLoaded() || cfg.DstFont->ContainerAtlas == atlas)); + + // Find index from cfg.DstFont (we allow the user to set cfg.DstFont. Also it makes casual debugging nicer than when storing indices) + src_tmp.DstIndex = -1; + for (int output_i = 0; output_i < atlas->Fonts.Size && src_tmp.DstIndex == -1; output_i++) + if (cfg.DstFont == atlas->Fonts[output_i]) + src_tmp.DstIndex = output_i; + if (src_tmp.DstIndex == -1) + { + IM_ASSERT(src_tmp.DstIndex != -1); // cfg.DstFont not pointing within atlas->Fonts[] array? + return false; + } + // Initialize helper structure for font loading and verify that the TTF/OTF data is correct + const int font_offset = stbtt_GetFontOffsetForIndex((unsigned char*)cfg.FontData, cfg.FontNo); + IM_ASSERT(font_offset >= 0 && "FontData is incorrect, or FontNo cannot be found."); + if (!stbtt_InitFont(&src_tmp.FontInfo, (unsigned char*)cfg.FontData, font_offset)) + { + IM_ASSERT(0 && "stbtt_InitFont(): failed to parse FontData. It is correct and complete? Check FontDataSize."); + return false; + } + + // Measure highest codepoints + ImFontBuildDstData& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.SrcRanges = cfg.GlyphRanges ? cfg.GlyphRanges : atlas->GetGlyphRangesDefault(); + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + { + // Check for valid range. This may also help detect *some* dangling pointers, because a common + // user error is to setup ImFontConfig::GlyphRanges with a pointer to data that isn't persistent, + // or to forget to zero-terminate the glyph range array. + IM_ASSERT(src_range[0] <= src_range[1] && "Invalid range: is your glyph range array persistent? it is zero-terminated?"); + src_tmp.GlyphsHighest = ImMax(src_tmp.GlyphsHighest, (int)src_range[1]); + } + dst_tmp.SrcCount++; + dst_tmp.GlyphsHighest = ImMax(dst_tmp.GlyphsHighest, src_tmp.GlyphsHighest); + } + + // 2. For every requested codepoint, check for their presence in the font data, and handle redundancy or overlaps between source fonts to avoid unused glyphs. + int total_glyphs_count = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + ImFontBuildDstData& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.GlyphsSet.Create(src_tmp.GlyphsHighest + 1); + if (dst_tmp.GlyphsSet.Storage.empty()) + dst_tmp.GlyphsSet.Create(dst_tmp.GlyphsHighest + 1); + + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + for (unsigned int codepoint = src_range[0]; codepoint <= src_range[1]; codepoint++) + { + if (dst_tmp.GlyphsSet.TestBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option for MergeMode (e.g. MergeOverwrite==true) + continue; + if (!stbtt_FindGlyphIndex(&src_tmp.FontInfo, codepoint)) // It is actually in the font? + continue; + + // Add to avail set/counters + src_tmp.GlyphsCount++; + dst_tmp.GlyphsCount++; + src_tmp.GlyphsSet.SetBit(codepoint); + dst_tmp.GlyphsSet.SetBit(codepoint); + total_glyphs_count++; + } + } + + // 3. Unpack our bit map into a flat list (we now have all the Unicode points that we know are requested _and_ available _and_ not overlapping another) + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + src_tmp.GlyphsList.reserve(src_tmp.GlyphsCount); + UnpackBitVectorToFlatIndexList(&src_tmp.GlyphsSet, &src_tmp.GlyphsList); + src_tmp.GlyphsSet.Clear(); + IM_ASSERT(src_tmp.GlyphsList.Size == src_tmp.GlyphsCount); + } + for (int dst_i = 0; dst_i < dst_tmp_array.Size; dst_i++) + dst_tmp_array[dst_i].GlyphsSet.Clear(); + dst_tmp_array.clear(); + + // Allocate packing character data and flag packed characters buffer as non-packed (x0=y0=x1=y1=0) + // (We technically don't need to zero-clear buf_rects, but let's do it for the sake of sanity) + ImVector buf_rects; + ImVector buf_packedchars; + buf_rects.resize(total_glyphs_count); + buf_packedchars.resize(total_glyphs_count); + memset(buf_rects.Data, 0, (size_t)buf_rects.size_in_bytes()); + memset(buf_packedchars.Data, 0, (size_t)buf_packedchars.size_in_bytes()); + + // 4. Gather glyphs sizes so we can pack them in our virtual canvas. + int total_surface = 0; + int buf_rects_out_n = 0; + int buf_packedchars_out_n = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + src_tmp.Rects = &buf_rects[buf_rects_out_n]; + src_tmp.PackedChars = &buf_packedchars[buf_packedchars_out_n]; + buf_rects_out_n += src_tmp.GlyphsCount; + buf_packedchars_out_n += src_tmp.GlyphsCount; + + // Convert our ranges in the format stb_truetype wants + ImFontConfig& cfg = atlas->ConfigData[src_i]; + src_tmp.PackRange.font_size = cfg.SizePixels * cfg.RasterizerDensity; + src_tmp.PackRange.first_unicode_codepoint_in_range = 0; + src_tmp.PackRange.array_of_unicode_codepoints = src_tmp.GlyphsList.Data; + src_tmp.PackRange.num_chars = src_tmp.GlyphsList.Size; + src_tmp.PackRange.chardata_for_range = src_tmp.PackedChars; + src_tmp.PackRange.h_oversample = (unsigned char)cfg.OversampleH; + src_tmp.PackRange.v_oversample = (unsigned char)cfg.OversampleV; + + // Gather the sizes of all rectangles we will need to pack (this loop is based on stbtt_PackFontRangesGatherRects) + const float scale = (cfg.SizePixels > 0.0f) ? stbtt_ScaleForPixelHeight(&src_tmp.FontInfo, cfg.SizePixels * cfg.RasterizerDensity) : stbtt_ScaleForMappingEmToPixels(&src_tmp.FontInfo, -cfg.SizePixels * cfg.RasterizerDensity); + const int padding = atlas->TexGlyphPadding; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsList.Size; glyph_i++) + { + int x0, y0, x1, y1; + const int glyph_index_in_font = stbtt_FindGlyphIndex(&src_tmp.FontInfo, src_tmp.GlyphsList[glyph_i]); + IM_ASSERT(glyph_index_in_font != 0); + stbtt_GetGlyphBitmapBoxSubpixel(&src_tmp.FontInfo, glyph_index_in_font, scale * cfg.OversampleH, scale * cfg.OversampleV, 0, 0, &x0, &y0, &x1, &y1); + src_tmp.Rects[glyph_i].w = (stbrp_coord)(x1 - x0 + padding + cfg.OversampleH - 1); + src_tmp.Rects[glyph_i].h = (stbrp_coord)(y1 - y0 + padding + cfg.OversampleV - 1); + total_surface += src_tmp.Rects[glyph_i].w * src_tmp.Rects[glyph_i].h; + } + } + + // We need a width for the skyline algorithm, any width! + // The exact width doesn't really matter much, but some API/GPU have texture size limitations and increasing width can decrease height. + // User can override TexDesiredWidth and TexGlyphPadding if they wish, otherwise we use a simple heuristic to select the width based on expected surface. + const int surface_sqrt = (int)ImSqrt((float)total_surface) + 1; + atlas->TexHeight = 0; + if (atlas->TexDesiredWidth > 0) + atlas->TexWidth = atlas->TexDesiredWidth; + else + atlas->TexWidth = (surface_sqrt >= 4096 * 0.7f) ? 4096 : (surface_sqrt >= 2048 * 0.7f) ? 2048 : (surface_sqrt >= 1024 * 0.7f) ? 1024 : 512; + + // 5. Start packing + // Pack our extra data rectangles first, so it will be on the upper-left corner of our texture (UV will have small values). + const int TEX_HEIGHT_MAX = 1024 * 32; + stbtt_pack_context spc = {}; + stbtt_PackBegin(&spc, NULL, atlas->TexWidth, TEX_HEIGHT_MAX, 0, atlas->TexGlyphPadding, NULL); + ImFontAtlasBuildPackCustomRects(atlas, spc.pack_info); + + // 6. Pack each source font. No rendering yet, we are working with rectangles in an infinitely tall texture at this point. + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + stbrp_pack_rects((stbrp_context*)spc.pack_info, src_tmp.Rects, src_tmp.GlyphsCount); + + // Extend texture height and mark missing glyphs as non-packed so we won't render them. + // FIXME: We are not handling packing failure here (would happen if we got off TEX_HEIGHT_MAX or if a single if larger than TexWidth?) + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + if (src_tmp.Rects[glyph_i].was_packed) + atlas->TexHeight = ImMax(atlas->TexHeight, src_tmp.Rects[glyph_i].y + src_tmp.Rects[glyph_i].h); + } + + // 7. Allocate texture + atlas->TexHeight = (atlas->Flags & ImFontAtlasFlags_NoPowerOfTwoHeight) ? (atlas->TexHeight + 1) : ImUpperPowerOfTwo(atlas->TexHeight); + atlas->TexUvScale = ImVec2(1.0f / atlas->TexWidth, 1.0f / atlas->TexHeight); + atlas->TexPixelsAlpha8 = (unsigned char*)IM_ALLOC(atlas->TexWidth * atlas->TexHeight); + memset(atlas->TexPixelsAlpha8, 0, atlas->TexWidth * atlas->TexHeight); + spc.pixels = atlas->TexPixelsAlpha8; + spc.height = atlas->TexHeight; + + // 8. Render/rasterize font characters into the texture + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontConfig& cfg = atlas->ConfigData[src_i]; + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + stbtt_PackFontRangesRenderIntoRects(&spc, &src_tmp.FontInfo, &src_tmp.PackRange, 1, src_tmp.Rects); + + // Apply multiply operator + if (cfg.RasterizerMultiply != 1.0f) + { + unsigned char multiply_table[256]; + ImFontAtlasBuildMultiplyCalcLookupTable(multiply_table, cfg.RasterizerMultiply); + stbrp_rect* r = &src_tmp.Rects[0]; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++, r++) + if (r->was_packed) + ImFontAtlasBuildMultiplyRectAlpha8(multiply_table, atlas->TexPixelsAlpha8, r->x, r->y, r->w, r->h, atlas->TexWidth * 1); + } + src_tmp.Rects = NULL; + } + + // End packing + stbtt_PackEnd(&spc); + buf_rects.clear(); + + // 9. Setup ImFont and glyphs for runtime + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + // When merging fonts with MergeMode=true: + // - We can have multiple input fonts writing into a same destination font. + // - dst_font->ConfigData is != from cfg which is our source configuration. + ImFontBuildSrcData& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + ImFont* dst_font = cfg.DstFont; + + const float font_scale = stbtt_ScaleForPixelHeight(&src_tmp.FontInfo, cfg.SizePixels); + int unscaled_ascent, unscaled_descent, unscaled_line_gap; + stbtt_GetFontVMetrics(&src_tmp.FontInfo, &unscaled_ascent, &unscaled_descent, &unscaled_line_gap); + + const float ascent = ImCeil(unscaled_ascent * font_scale); + const float descent = ImFloor(unscaled_descent * font_scale); + ImFontAtlasBuildSetupFont(atlas, dst_font, &cfg, ascent, descent); + const float font_off_x = cfg.GlyphOffset.x; + const float font_off_y = cfg.GlyphOffset.y + IM_ROUND(dst_font->Ascent); + + const float inv_rasterization_scale = 1.0f / cfg.RasterizerDensity; + + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + { + // Register glyph + const int codepoint = src_tmp.GlyphsList[glyph_i]; + const stbtt_packedchar& pc = src_tmp.PackedChars[glyph_i]; + stbtt_aligned_quad q; + float unused_x = 0.0f, unused_y = 0.0f; + stbtt_GetPackedQuad(src_tmp.PackedChars, atlas->TexWidth, atlas->TexHeight, glyph_i, &unused_x, &unused_y, &q, 0); + float x0 = q.x0 * inv_rasterization_scale + font_off_x; + float y0 = q.y0 * inv_rasterization_scale + font_off_y; + float x1 = q.x1 * inv_rasterization_scale + font_off_x; + float y1 = q.y1 * inv_rasterization_scale + font_off_y; + dst_font->AddGlyph(&cfg, (ImWchar)codepoint, x0, y0, x1, y1, q.s0, q.t0, q.s1, q.t1, pc.xadvance * inv_rasterization_scale); + } + } + + // Cleanup + src_tmp_array.clear_destruct(); + + ImFontAtlasBuildFinish(atlas); + return true; +} + +const ImFontBuilderIO* ImFontAtlasGetBuilderForStbTruetype() +{ + static ImFontBuilderIO io; + io.FontBuilder_Build = ImFontAtlasBuildWithStbTruetype; + return &io; +} + +#endif // IMGUI_ENABLE_STB_TRUETYPE + +void ImFontAtlasUpdateConfigDataPointers(ImFontAtlas* atlas) +{ + for (ImFontConfig& font_cfg : atlas->ConfigData) + { + ImFont* font = font_cfg.DstFont; + if (!font_cfg.MergeMode) + { + font->ConfigData = &font_cfg; + font->ConfigDataCount = 0; + } + font->ConfigDataCount++; + } +} + +void ImFontAtlasBuildSetupFont(ImFontAtlas* atlas, ImFont* font, ImFontConfig* font_config, float ascent, float descent) +{ + if (!font_config->MergeMode) + { + font->ClearOutputData(); + font->FontSize = font_config->SizePixels; + IM_ASSERT(font->ConfigData == font_config); + font->ContainerAtlas = atlas; + font->Ascent = ascent; + font->Descent = descent; + } +} + +void ImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas, void* stbrp_context_opaque) +{ + stbrp_context* pack_context = (stbrp_context*)stbrp_context_opaque; + IM_ASSERT(pack_context != NULL); + + ImVector& user_rects = atlas->CustomRects; + IM_ASSERT(user_rects.Size >= 1); // We expect at least the default custom rects to be registered, else something went wrong. +#ifdef __GNUC__ + if (user_rects.Size < 1) { __builtin_unreachable(); } // Workaround for GCC bug if IM_ASSERT() is defined to conditionally throw (see #5343) +#endif + + ImVector pack_rects; + pack_rects.resize(user_rects.Size); + memset(pack_rects.Data, 0, (size_t)pack_rects.size_in_bytes()); + for (int i = 0; i < user_rects.Size; i++) + { + pack_rects[i].w = user_rects[i].Width; + pack_rects[i].h = user_rects[i].Height; + } + stbrp_pack_rects(pack_context, &pack_rects[0], pack_rects.Size); + for (int i = 0; i < pack_rects.Size; i++) + if (pack_rects[i].was_packed) + { + user_rects[i].X = (unsigned short)pack_rects[i].x; + user_rects[i].Y = (unsigned short)pack_rects[i].y; + IM_ASSERT(pack_rects[i].w == user_rects[i].Width && pack_rects[i].h == user_rects[i].Height); + atlas->TexHeight = ImMax(atlas->TexHeight, pack_rects[i].y + pack_rects[i].h); + } +} + +void ImFontAtlasBuildRender8bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned char in_marker_pixel_value) +{ + IM_ASSERT(x >= 0 && x + w <= atlas->TexWidth); + IM_ASSERT(y >= 0 && y + h <= atlas->TexHeight); + unsigned char* out_pixel = atlas->TexPixelsAlpha8 + x + (y * atlas->TexWidth); + for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) + for (int off_x = 0; off_x < w; off_x++) + out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : 0x00; +} + +void ImFontAtlasBuildRender32bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned int in_marker_pixel_value) +{ + IM_ASSERT(x >= 0 && x + w <= atlas->TexWidth); + IM_ASSERT(y >= 0 && y + h <= atlas->TexHeight); + unsigned int* out_pixel = atlas->TexPixelsRGBA32 + x + (y * atlas->TexWidth); + for (int off_y = 0; off_y < h; off_y++, out_pixel += atlas->TexWidth, in_str += w) + for (int off_x = 0; off_x < w; off_x++) + out_pixel[off_x] = (in_str[off_x] == in_marker_char) ? in_marker_pixel_value : IM_COL32_BLACK_TRANS; +} + +static void ImFontAtlasBuildRenderDefaultTexData(ImFontAtlas* atlas) +{ + ImFontAtlasCustomRect* r = atlas->GetCustomRectByIndex(atlas->PackIdMouseCursors); + IM_ASSERT(r->IsPacked()); + + const int w = atlas->TexWidth; + if (!(atlas->Flags & ImFontAtlasFlags_NoMouseCursors)) + { + // Render/copy pixels + IM_ASSERT(r->Width == FONT_ATLAS_DEFAULT_TEX_DATA_W * 2 + 1 && r->Height == FONT_ATLAS_DEFAULT_TEX_DATA_H); + const int x_for_white = r->X; + const int x_for_black = r->X + FONT_ATLAS_DEFAULT_TEX_DATA_W + 1; + if (atlas->TexPixelsAlpha8 != NULL) + { + ImFontAtlasBuildRender8bppRectFromString(atlas, x_for_white, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, '.', 0xFF); + ImFontAtlasBuildRender8bppRectFromString(atlas, x_for_black, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, 'X', 0xFF); + } + else + { + ImFontAtlasBuildRender32bppRectFromString(atlas, x_for_white, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, '.', IM_COL32_WHITE); + ImFontAtlasBuildRender32bppRectFromString(atlas, x_for_black, r->Y, FONT_ATLAS_DEFAULT_TEX_DATA_W, FONT_ATLAS_DEFAULT_TEX_DATA_H, FONT_ATLAS_DEFAULT_TEX_DATA_PIXELS, 'X', IM_COL32_WHITE); + } + } + else + { + // Render 4 white pixels + IM_ASSERT(r->Width == 2 && r->Height == 2); + const int offset = (int)r->X + (int)r->Y * w; + if (atlas->TexPixelsAlpha8 != NULL) + { + atlas->TexPixelsAlpha8[offset] = atlas->TexPixelsAlpha8[offset + 1] = atlas->TexPixelsAlpha8[offset + w] = atlas->TexPixelsAlpha8[offset + w + 1] = 0xFF; + } + else + { + atlas->TexPixelsRGBA32[offset] = atlas->TexPixelsRGBA32[offset + 1] = atlas->TexPixelsRGBA32[offset + w] = atlas->TexPixelsRGBA32[offset + w + 1] = IM_COL32_WHITE; + } + } + atlas->TexUvWhitePixel = ImVec2((r->X + 0.5f) * atlas->TexUvScale.x, (r->Y + 0.5f) * atlas->TexUvScale.y); +} + +static void ImFontAtlasBuildRenderLinesTexData(ImFontAtlas* atlas) +{ + if (atlas->Flags & ImFontAtlasFlags_NoBakedLines) + return; + + // This generates a triangular shape in the texture, with the various line widths stacked on top of each other to allow interpolation between them + ImFontAtlasCustomRect* r = atlas->GetCustomRectByIndex(atlas->PackIdLines); + IM_ASSERT(r->IsPacked()); + for (unsigned int n = 0; n < IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 1; n++) // +1 because of the zero-width row + { + // Each line consists of at least two empty pixels at the ends, with a line of solid pixels in the middle + unsigned int y = n; + unsigned int line_width = n; + unsigned int pad_left = (r->Width - line_width) / 2; + unsigned int pad_right = r->Width - (pad_left + line_width); + + // Write each slice + IM_ASSERT(pad_left + line_width + pad_right == r->Width && y < r->Height); // Make sure we're inside the texture bounds before we start writing pixels + if (atlas->TexPixelsAlpha8 != NULL) + { + unsigned char* write_ptr = &atlas->TexPixelsAlpha8[r->X + ((r->Y + y) * atlas->TexWidth)]; + for (unsigned int i = 0; i < pad_left; i++) + *(write_ptr + i) = 0x00; + + for (unsigned int i = 0; i < line_width; i++) + *(write_ptr + pad_left + i) = 0xFF; + + for (unsigned int i = 0; i < pad_right; i++) + *(write_ptr + pad_left + line_width + i) = 0x00; + } + else + { + unsigned int* write_ptr = &atlas->TexPixelsRGBA32[r->X + ((r->Y + y) * atlas->TexWidth)]; + for (unsigned int i = 0; i < pad_left; i++) + *(write_ptr + i) = IM_COL32(255, 255, 255, 0); + + for (unsigned int i = 0; i < line_width; i++) + *(write_ptr + pad_left + i) = IM_COL32_WHITE; + + for (unsigned int i = 0; i < pad_right; i++) + *(write_ptr + pad_left + line_width + i) = IM_COL32(255, 255, 255, 0); + } + + // Calculate UVs for this line + ImVec2 uv0 = ImVec2((float)(r->X + pad_left - 1), (float)(r->Y + y)) * atlas->TexUvScale; + ImVec2 uv1 = ImVec2((float)(r->X + pad_left + line_width + 1), (float)(r->Y + y + 1)) * atlas->TexUvScale; + float half_v = (uv0.y + uv1.y) * 0.5f; // Calculate a constant V in the middle of the row to avoid sampling artifacts + atlas->TexUvLines[n] = ImVec4(uv0.x, half_v, uv1.x, half_v); + } +} + +// Register the rectangles we need for the rounded corner images +static void ImFontAtlasBuildRegisterShadowCustomRects(ImFontAtlas* atlas) +{ + if (atlas->ShadowRectIds[0] >= 0) + return; + + // ShadowRectIds[0] is the rectangle for rectangular shadows + // ShadowRectIds[1] is the rectangle for convex shadows + + // The actual size we want to reserve, including padding + const ImFontAtlasShadowTexConfig* shadow_cfg = &atlas->ShadowTexConfig; + const unsigned int effective_size = shadow_cfg->CalcRectTexSize() + shadow_cfg->GetRectTexPadding(); + atlas->ShadowRectIds[0] = atlas->AddCustomRectRegular(effective_size, effective_size); + atlas->ShadowRectIds[1] = atlas->AddCustomRectRegular(shadow_cfg->CalcConvexTexWidth() + shadow_cfg->GetConvexTexPadding(), shadow_cfg->CalcConvexTexHeight() + shadow_cfg->GetConvexTexPadding()); +} + +// Calculates the signed distance from sample_pos to the nearest point on the rectangle defined by rect_min->rect_max +static float DistanceFromRectangle(const ImVec2& sample_pos, const ImVec2& rect_min, const ImVec2& rect_max) +{ + ImVec2 rect_centre = (rect_min + rect_max) * 0.5f; + ImVec2 rect_half_size = (rect_max - rect_min) * 0.5f; + ImVec2 local_sample_pos = sample_pos - rect_centre; + ImVec2 axis_dist = ImVec2(ImFabs(local_sample_pos.x), ImFabs(local_sample_pos.y)) - rect_half_size; + float out_dist = ImLength(ImVec2(ImMax(axis_dist.x, 0.0f), ImMax(axis_dist.y, 0.0f)), 0.00001f); + float in_dist = ImMin(ImMax(axis_dist.x, axis_dist.y), 0.0f); + return out_dist + in_dist; +} + +// Calculates the signed distance from sample_pos to the point given +static float DistanceFromPoint(const ImVec2& sample_pos, const ImVec2& point) +{ + return ImLength(sample_pos - point, 0.0f); +} + +// Perform a single Gaussian blur pass with a fixed kernel size and sigma +static void GaussianBlurPass(float* src, float* dest, int size, bool horizontal) +{ + // See http://dev.theomader.com/gaussian-kernel-calculator/ + const float coefficients[] = { 0.0f, 0.0f, 0.000003f, 0.000229f, 0.005977f, 0.060598f, 0.24173f, 0.382925f, 0.24173f, 0.060598f, 0.005977f, 0.000229f, 0.000003f, 0.0f, 0.0f }; + const int kernel_size = IM_ARRAYSIZE(coefficients); + const int sample_step = horizontal ? 1 : size; + + float* read_ptr = src; + float* write_ptr = dest; + for (int y = 0; y < size; y++) + for (int x = 0; x < size; x++) + { + float result = 0.0f; + int current_offset = (horizontal ? x : y) - ((kernel_size - 1) >> 1); + float* sample_ptr = read_ptr - (((kernel_size - 1) >> 1) * sample_step); + for (int j = 0; j < kernel_size; j++) + { + if (current_offset >= 0 && current_offset < size) + result += (*sample_ptr) * coefficients[j]; + current_offset++; + sample_ptr += sample_step; + } + read_ptr++; + *(write_ptr++) = result; + } +} + +// Perform an in-place Gaussian blur of a square array of floats with a fixed kernel size and sigma +// Uses a stack allocation for the temporary data so potentially dangerous with large size values +static void GaussianBlur(float* data, int size) +{ + // Do two passes, one from data into temp and then the second back to data again + float* temp = (float*)alloca(size * size * sizeof(float)); + GaussianBlurPass(data, temp, size, true); + GaussianBlurPass(temp, data, size, false); +} + +// Generate the actual pixel data for rounded corners in the atlas +static void ImFontAtlasBuildRenderShadowTexData(ImFontAtlas* atlas) +{ + IM_ASSERT(atlas->TexPixelsAlpha8 != NULL || atlas->TexPixelsRGBA32 != NULL); + IM_ASSERT(atlas->ShadowRectIds[0] >= 0 && atlas->ShadowRectIds[1] >= 0); + + // Because of the blur, we have to generate the full 3x3 texture here, and then we chop that down to just the 2x2 section we need later. + // 'size' correspond to the our 3x3 size, whereas 'shadow_tex_size' correspond to our 2x2 version where duplicate mirrored corners are not stored. + const ImFontAtlasShadowTexConfig* shadow_cfg = &atlas->ShadowTexConfig; + + // The rectangular shadow texture + { + const int size = shadow_cfg->TexCornerSize + shadow_cfg->TexEdgeSize + shadow_cfg->TexCornerSize; + const int corner_size = shadow_cfg->TexCornerSize; + const int edge_size = shadow_cfg->TexEdgeSize; + + // The bounds of the rectangle we are generating the shadow from + const ImVec2 shadow_rect_min((float)corner_size, (float)corner_size); + const ImVec2 shadow_rect_max((float)(corner_size + edge_size), (float)(corner_size + edge_size)); + + // Remove the padding we added + ImFontAtlasCustomRect r = atlas->CustomRects[atlas->ShadowRectIds[0]]; + const int padding = shadow_cfg->GetRectTexPadding(); + r.X += (unsigned short)padding; + r.Y += (unsigned short)padding; + r.Width -= (unsigned short)padding * 2; + r.Height -= (unsigned short)padding * 2; + + // Generate distance field + // We draw the actual texture content by evaluating the distance field for the inner rectangle + float* tex_data = (float*)alloca(size * size * sizeof(float)); + for (int y = 0; y < size; y++) + for (int x = 0; x < size; x++) + { + float dist = DistanceFromRectangle(ImVec2((float)x, (float)y), shadow_rect_min, shadow_rect_max); + float alpha = 1.0f - ImMin(ImMax(dist + shadow_cfg->TexDistanceFieldOffset, 0.0f) / ImMax(shadow_cfg->TexCornerSize + shadow_cfg->TexDistanceFieldOffset, 0.001f), 1.0f); + alpha = ImPow(alpha, shadow_cfg->TexFalloffPower); // Apply power curve to give a nicer falloff + tex_data[x + (y * size)] = alpha; + } + + // Blur + if (shadow_cfg->TexBlur) + GaussianBlur(tex_data, size); + + // Copy to texture, truncating to the actual required texture size (the bottom/right of the source data is chopped off, as we don't need it - see below). The truncated size is essentially the top 2x2 of our data, plus a little bit of padding for sampling. + const int tex_w = atlas->TexWidth; + const int shadow_tex_size = shadow_cfg->CalcRectTexSize(); + for (int y = 0; y < shadow_tex_size; y++) + for (int x = 0; x < shadow_tex_size; x++) + { + const unsigned int offset = (int)(r.X + x) + (int)(r.Y + y) * tex_w; + const float alpha_f = tex_data[x + (y * size)]; + const unsigned char alpha_8 = (unsigned char)(0xFF * alpha_f); + if (atlas->TexPixelsAlpha8) + atlas->TexPixelsAlpha8[offset] = alpha_8; + else + atlas->TexPixelsRGBA32[offset] = IM_COL32(255, 255, 255, alpha_8); + } + + // Generate UVs for each of the nine sections, which are arranged in a 3x3 grid starting from 0 in the top-left and going across then down + for (int i = 0; i < 9; i++) + { + // The third row/column of the 3x3 grid are generated by flipping the appropriate chunks of the upper 2x2 grid. + bool flip_h = false; // Do we need to flip the UVs horizontally? + bool flip_v = false; // Do we need to flip the UVs vertically? + + ImFontAtlasCustomRect sub_rect = r; + switch (i % 3) + { + case 0: sub_rect.Width = (unsigned short)corner_size; break; + case 1: sub_rect.X += (unsigned short)corner_size; sub_rect.Width = (unsigned short)edge_size; break; + case 2: sub_rect.Width = (unsigned short)corner_size; flip_h = true; break; + } + + switch (i / 3) + { + case 0: sub_rect.Height = (unsigned short)corner_size; break; + case 1: sub_rect.Y += (unsigned short)corner_size; sub_rect.Height = (unsigned short)edge_size; break; + case 2: sub_rect.Height = (unsigned short)corner_size; flip_v = true; break; + } + + ImVec2 uv0, uv1; + atlas->CalcCustomRectUV(&sub_rect, &uv0, &uv1); + atlas->ShadowRectUvs[i] = ImVec4(flip_h ? uv1.x : uv0.x, flip_v ? uv1.y : uv0.y, flip_h ? uv0.x : uv1.x, flip_v ? uv0.y : uv1.y); + } + } + + // The convex shape shadow texture + { + const int size = shadow_cfg->TexCornerSize * 2; + const int padding = shadow_cfg->GetConvexTexPadding(); + + // Generate distance field + // We draw the actual texture content by evaluating the distance field for the distance from a center point + ImFontAtlasCustomRect r = atlas->CustomRects[atlas->ShadowRectIds[1]]; + ImVec2 center_point(size * 0.5f, size * 0.5f); + float* tex_data = (float*)alloca(size * size * sizeof(float)); + for (int y = 0; y < size; y++) + for (int x = 0; x < size; x++) + { + float dist = DistanceFromPoint(ImVec2((float)x, (float)y), center_point); + float alpha = 1.0f - ImMin(ImMax((float)dist + shadow_cfg->TexDistanceFieldOffset, 0.0f) / ImMax((float)shadow_cfg->TexCornerSize + shadow_cfg->TexDistanceFieldOffset, 0.001f), 1.0f); + alpha = ImPow(alpha, shadow_cfg->TexFalloffPower); // Apply power curve to give a nicer falloff + tex_data[x + (y * size)] = alpha; + } + + // Blur + if (shadow_cfg->TexBlur) + GaussianBlur(tex_data, size); + + // Copy to texture, truncating to the actual required texture size (the bottom/right of the source data is chopped off, as we don't need it - see below) + // We push the data down and right by the amount we padded the top of the texture (see CalcConvexTexWidth/CalcConvexTexHeight) for details + const int padded_size = (int)(shadow_cfg->TexCornerSize / ImCos(IM_PI * 0.25f)); + const int src_x_offset = padding + (padded_size - shadow_cfg->TexCornerSize); + const int src_y_offset = padding + (padded_size - shadow_cfg->TexCornerSize); + + const int tex_width = shadow_cfg->CalcConvexTexWidth(); + const int tex_height = shadow_cfg->CalcConvexTexHeight(); + const int tex_w = atlas->TexWidth; + for (int y = 0; y < tex_height; y++) + for (int x = 0; x < tex_width; x++) + { + const int src_x = ImClamp(x - src_x_offset, 0, size - 1); + const int src_y = ImClamp(y - src_y_offset, 0, size - 1); + const float alpha_f = tex_data[src_x + (src_y * size)]; + const unsigned char alpha_8 = (unsigned char)(0xFF * alpha_f); + const unsigned int offset = (int)(r.X + x) + (int)(r.Y + y) * tex_w; + if (atlas->TexPixelsAlpha8) + atlas->TexPixelsAlpha8[offset] = alpha_8; + else + atlas->TexPixelsRGBA32[offset] = IM_COL32(255, 255, 255, alpha_8); + } + + // Remove the padding we added + r.X += (unsigned short)padding; + r.Y += (unsigned short)padding; + r.Width = (unsigned short)(tex_width - (padding * 2)); + r.Height = (unsigned short)(tex_height - (padding * 2)); + + // Generate UVs + ImVec2 uv0, uv1; + atlas->CalcCustomRectUV(&r, &uv0, &uv1); + atlas->ShadowRectUvs[9] = ImVec4(uv0.x, uv0.y, uv1.x, uv1.y); + } +} + +// Note: this is called / shared by both the stb_truetype and the FreeType builder +void ImFontAtlasBuildInit(ImFontAtlas* atlas) +{ + // Round font size + // - We started rounding in 1.90 WIP (18991) as our layout system currently doesn't support non-rounded font size well yet. + // - Note that using io.FontGlobalScale or SetWindowFontScale(), with are legacy-ish, partially supported features, can still lead to unrounded sizes. + // - We may support it better later and remove this rounding. + for (ImFontConfig& cfg : atlas->ConfigData) + cfg.SizePixels = ImTrunc(cfg.SizePixels); + + // Register texture region for mouse cursors or standard white pixels + if (atlas->PackIdMouseCursors < 0) + { + if (!(atlas->Flags & ImFontAtlasFlags_NoMouseCursors)) + atlas->PackIdMouseCursors = atlas->AddCustomRectRegular(FONT_ATLAS_DEFAULT_TEX_DATA_W * 2 + 1, FONT_ATLAS_DEFAULT_TEX_DATA_H); + else + atlas->PackIdMouseCursors = atlas->AddCustomRectRegular(2, 2); + } + + // Register texture region for thick lines + // The +2 here is to give space for the end caps, whilst height +1 is to accommodate the fact we have a zero-width row + if (atlas->PackIdLines < 0) + { + if (!(atlas->Flags & ImFontAtlasFlags_NoBakedLines)) + atlas->PackIdLines = atlas->AddCustomRectRegular(IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 2, IM_DRAWLIST_TEX_LINES_WIDTH_MAX + 1); + } + + ImFontAtlasBuildRegisterShadowCustomRects(atlas); +} + +// This is called/shared by both the stb_truetype and the FreeType builder. +void ImFontAtlasBuildFinish(ImFontAtlas* atlas) +{ + // Render into our custom data blocks + IM_ASSERT(atlas->TexPixelsAlpha8 != NULL || atlas->TexPixelsRGBA32 != NULL); + ImFontAtlasBuildRenderDefaultTexData(atlas); + ImFontAtlasBuildRenderLinesTexData(atlas); + ImFontAtlasBuildRenderShadowTexData(atlas); + + // Register custom rectangle glyphs + for (int i = 0; i < atlas->CustomRects.Size; i++) + { + const ImFontAtlasCustomRect* r = &atlas->CustomRects[i]; + if (r->Font == NULL || r->GlyphID == 0) + continue; + + // Will ignore ImFontConfig settings: GlyphMinAdvanceX, GlyphMinAdvanceY, GlyphExtraSpacing, PixelSnapH + IM_ASSERT(r->Font->ContainerAtlas == atlas); + ImVec2 uv0, uv1; + atlas->CalcCustomRectUV(r, &uv0, &uv1); + r->Font->AddGlyph(NULL, (ImWchar)r->GlyphID, r->GlyphOffset.x, r->GlyphOffset.y, r->GlyphOffset.x + r->Width, r->GlyphOffset.y + r->Height, uv0.x, uv0.y, uv1.x, uv1.y, r->GlyphAdvanceX); + } + + // Build all fonts lookup tables + for (ImFont* font : atlas->Fonts) + if (font->DirtyLookupTables) + font->BuildLookupTable(); + + atlas->TexReady = true; +} + +// Retrieve list of range (2 int per range, values are inclusive) +const ImWchar* ImFontAtlas::GetGlyphRangesDefault() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesGreek() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x0370, 0x03FF, // Greek and Coptic + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesKorean() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x3131, 0x3163, // Korean alphabets + 0xAC00, 0xD7A3, // Korean characters + 0xFFFD, 0xFFFD, // Invalid + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesChineseFull() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x2000, 0x206F, // General Punctuation + 0x3000, 0x30FF, // CJK Symbols and Punctuations, Hiragana, Katakana + 0x31F0, 0x31FF, // Katakana Phonetic Extensions + 0xFF00, 0xFFEF, // Half-width characters + 0xFFFD, 0xFFFD, // Invalid + 0x4e00, 0x9FAF, // CJK Ideograms + 0, + }; + return &ranges[0]; +} + +static void UnpackAccumulativeOffsetsIntoRanges(int base_codepoint, const short* accumulative_offsets, int accumulative_offsets_count, ImWchar* out_ranges) +{ + for (int n = 0; n < accumulative_offsets_count; n++, out_ranges += 2) + { + out_ranges[0] = out_ranges[1] = (ImWchar)(base_codepoint + accumulative_offsets[n]); + base_codepoint += accumulative_offsets[n]; + } + out_ranges[0] = 0; +} + +//------------------------------------------------------------------------- +// [SECTION] ImFontAtlas glyph ranges helpers +//------------------------------------------------------------------------- + +const ImWchar* ImFontAtlas::GetGlyphRangesChineseSimplifiedCommon() +{ + // Store 2500 regularly used characters for Simplified Chinese. + // Sourced from https://zh.wiktionary.org/wiki/%E9%99%84%E5%BD%95:%E7%8E%B0%E4%BB%A3%E6%B1%89%E8%AF%AD%E5%B8%B8%E7%94%A8%E5%AD%97%E8%A1%A8 + // This table covers 97.97% of all characters used during the month in July, 1987. + // You can use ImFontGlyphRangesBuilder to create your own ranges derived from this, by merging existing ranges or adding new characters. + // (Stored as accumulative offsets from the initial unicode codepoint 0x4E00. This encoding is designed to helps us compact the source code size.) + static const short accumulative_offsets_from_0x4E00[] = + { + 0,1,2,4,1,1,1,1,2,1,3,2,1,2,2,1,1,1,1,1,5,2,1,2,3,3,3,2,2,4,1,1,1,2,1,5,2,3,1,2,1,2,1,1,2,1,1,2,2,1,4,1,1,1,1,5,10,1,2,19,2,1,2,1,2,1,2,1,2, + 1,5,1,6,3,2,1,2,2,1,1,1,4,8,5,1,1,4,1,1,3,1,2,1,5,1,2,1,1,1,10,1,1,5,2,4,6,1,4,2,2,2,12,2,1,1,6,1,1,1,4,1,1,4,6,5,1,4,2,2,4,10,7,1,1,4,2,4, + 2,1,4,3,6,10,12,5,7,2,14,2,9,1,1,6,7,10,4,7,13,1,5,4,8,4,1,1,2,28,5,6,1,1,5,2,5,20,2,2,9,8,11,2,9,17,1,8,6,8,27,4,6,9,20,11,27,6,68,2,2,1,1, + 1,2,1,2,2,7,6,11,3,3,1,1,3,1,2,1,1,1,1,1,3,1,1,8,3,4,1,5,7,2,1,4,4,8,4,2,1,2,1,1,4,5,6,3,6,2,12,3,1,3,9,2,4,3,4,1,5,3,3,1,3,7,1,5,1,1,1,1,2, + 3,4,5,2,3,2,6,1,1,2,1,7,1,7,3,4,5,15,2,2,1,5,3,22,19,2,1,1,1,1,2,5,1,1,1,6,1,1,12,8,2,9,18,22,4,1,1,5,1,16,1,2,7,10,15,1,1,6,2,4,1,2,4,1,6, + 1,1,3,2,4,1,6,4,5,1,2,1,1,2,1,10,3,1,3,2,1,9,3,2,5,7,2,19,4,3,6,1,1,1,1,1,4,3,2,1,1,1,2,5,3,1,1,1,2,2,1,1,2,1,1,2,1,3,1,1,1,3,7,1,4,1,1,2,1, + 1,2,1,2,4,4,3,8,1,1,1,2,1,3,5,1,3,1,3,4,6,2,2,14,4,6,6,11,9,1,15,3,1,28,5,2,5,5,3,1,3,4,5,4,6,14,3,2,3,5,21,2,7,20,10,1,2,19,2,4,28,28,2,3, + 2,1,14,4,1,26,28,42,12,40,3,52,79,5,14,17,3,2,2,11,3,4,6,3,1,8,2,23,4,5,8,10,4,2,7,3,5,1,1,6,3,1,2,2,2,5,28,1,1,7,7,20,5,3,29,3,17,26,1,8,4, + 27,3,6,11,23,5,3,4,6,13,24,16,6,5,10,25,35,7,3,2,3,3,14,3,6,2,6,1,4,2,3,8,2,1,1,3,3,3,4,1,1,13,2,2,4,5,2,1,14,14,1,2,2,1,4,5,2,3,1,14,3,12, + 3,17,2,16,5,1,2,1,8,9,3,19,4,2,2,4,17,25,21,20,28,75,1,10,29,103,4,1,2,1,1,4,2,4,1,2,3,24,2,2,2,1,1,2,1,3,8,1,1,1,2,1,1,3,1,1,1,6,1,5,3,1,1, + 1,3,4,1,1,5,2,1,5,6,13,9,16,1,1,1,1,3,2,3,2,4,5,2,5,2,2,3,7,13,7,2,2,1,1,1,1,2,3,3,2,1,6,4,9,2,1,14,2,14,2,1,18,3,4,14,4,11,41,15,23,15,23, + 176,1,3,4,1,1,1,1,5,3,1,2,3,7,3,1,1,2,1,2,4,4,6,2,4,1,9,7,1,10,5,8,16,29,1,1,2,2,3,1,3,5,2,4,5,4,1,1,2,2,3,3,7,1,6,10,1,17,1,44,4,6,2,1,1,6, + 5,4,2,10,1,6,9,2,8,1,24,1,2,13,7,8,8,2,1,4,1,3,1,3,3,5,2,5,10,9,4,9,12,2,1,6,1,10,1,1,7,7,4,10,8,3,1,13,4,3,1,6,1,3,5,2,1,2,17,16,5,2,16,6, + 1,4,2,1,3,3,6,8,5,11,11,1,3,3,2,4,6,10,9,5,7,4,7,4,7,1,1,4,2,1,3,6,8,7,1,6,11,5,5,3,24,9,4,2,7,13,5,1,8,82,16,61,1,1,1,4,2,2,16,10,3,8,1,1, + 6,4,2,1,3,1,1,1,4,3,8,4,2,2,1,1,1,1,1,6,3,5,1,1,4,6,9,2,1,1,1,2,1,7,2,1,6,1,5,4,4,3,1,8,1,3,3,1,3,2,2,2,2,3,1,6,1,2,1,2,1,3,7,1,8,2,1,2,1,5, + 2,5,3,5,10,1,2,1,1,3,2,5,11,3,9,3,5,1,1,5,9,1,2,1,5,7,9,9,8,1,3,3,3,6,8,2,3,2,1,1,32,6,1,2,15,9,3,7,13,1,3,10,13,2,14,1,13,10,2,1,3,10,4,15, + 2,15,15,10,1,3,9,6,9,32,25,26,47,7,3,2,3,1,6,3,4,3,2,8,5,4,1,9,4,2,2,19,10,6,2,3,8,1,2,2,4,2,1,9,4,4,4,6,4,8,9,2,3,1,1,1,1,3,5,5,1,3,8,4,6, + 2,1,4,12,1,5,3,7,13,2,5,8,1,6,1,2,5,14,6,1,5,2,4,8,15,5,1,23,6,62,2,10,1,1,8,1,2,2,10,4,2,2,9,2,1,1,3,2,3,1,5,3,3,2,1,3,8,1,1,1,11,3,1,1,4, + 3,7,1,14,1,2,3,12,5,2,5,1,6,7,5,7,14,11,1,3,1,8,9,12,2,1,11,8,4,4,2,6,10,9,13,1,1,3,1,5,1,3,2,4,4,1,18,2,3,14,11,4,29,4,2,7,1,3,13,9,2,2,5, + 3,5,20,7,16,8,5,72,34,6,4,22,12,12,28,45,36,9,7,39,9,191,1,1,1,4,11,8,4,9,2,3,22,1,1,1,1,4,17,1,7,7,1,11,31,10,2,4,8,2,3,2,1,4,2,16,4,32,2, + 3,19,13,4,9,1,5,2,14,8,1,1,3,6,19,6,5,1,16,6,2,10,8,5,1,2,3,1,5,5,1,11,6,6,1,3,3,2,6,3,8,1,1,4,10,7,5,7,7,5,8,9,2,1,3,4,1,1,3,1,3,3,2,6,16, + 1,4,6,3,1,10,6,1,3,15,2,9,2,10,25,13,9,16,6,2,2,10,11,4,3,9,1,2,6,6,5,4,30,40,1,10,7,12,14,33,6,3,6,7,3,1,3,1,11,14,4,9,5,12,11,49,18,51,31, + 140,31,2,2,1,5,1,8,1,10,1,4,4,3,24,1,10,1,3,6,6,16,3,4,5,2,1,4,2,57,10,6,22,2,22,3,7,22,6,10,11,36,18,16,33,36,2,5,5,1,1,1,4,10,1,4,13,2,7, + 5,2,9,3,4,1,7,43,3,7,3,9,14,7,9,1,11,1,1,3,7,4,18,13,1,14,1,3,6,10,73,2,2,30,6,1,11,18,19,13,22,3,46,42,37,89,7,3,16,34,2,2,3,9,1,7,1,1,1,2, + 2,4,10,7,3,10,3,9,5,28,9,2,6,13,7,3,1,3,10,2,7,2,11,3,6,21,54,85,2,1,4,2,2,1,39,3,21,2,2,5,1,1,1,4,1,1,3,4,15,1,3,2,4,4,2,3,8,2,20,1,8,7,13, + 4,1,26,6,2,9,34,4,21,52,10,4,4,1,5,12,2,11,1,7,2,30,12,44,2,30,1,1,3,6,16,9,17,39,82,2,2,24,7,1,7,3,16,9,14,44,2,1,2,1,2,3,5,2,4,1,6,7,5,3, + 2,6,1,11,5,11,2,1,18,19,8,1,3,24,29,2,1,3,5,2,2,1,13,6,5,1,46,11,3,5,1,1,5,8,2,10,6,12,6,3,7,11,2,4,16,13,2,5,1,1,2,2,5,2,28,5,2,23,10,8,4, + 4,22,39,95,38,8,14,9,5,1,13,5,4,3,13,12,11,1,9,1,27,37,2,5,4,4,63,211,95,2,2,2,1,3,5,2,1,1,2,2,1,1,1,3,2,4,1,2,1,1,5,2,2,1,1,2,3,1,3,1,1,1, + 3,1,4,2,1,3,6,1,1,3,7,15,5,3,2,5,3,9,11,4,2,22,1,6,3,8,7,1,4,28,4,16,3,3,25,4,4,27,27,1,4,1,2,2,7,1,3,5,2,28,8,2,14,1,8,6,16,25,3,3,3,14,3, + 3,1,1,2,1,4,6,3,8,4,1,1,1,2,3,6,10,6,2,3,18,3,2,5,5,4,3,1,5,2,5,4,23,7,6,12,6,4,17,11,9,5,1,1,10,5,12,1,1,11,26,33,7,3,6,1,17,7,1,5,12,1,11, + 2,4,1,8,14,17,23,1,2,1,7,8,16,11,9,6,5,2,6,4,16,2,8,14,1,11,8,9,1,1,1,9,25,4,11,19,7,2,15,2,12,8,52,7,5,19,2,16,4,36,8,1,16,8,24,26,4,6,2,9, + 5,4,36,3,28,12,25,15,37,27,17,12,59,38,5,32,127,1,2,9,17,14,4,1,2,1,1,8,11,50,4,14,2,19,16,4,17,5,4,5,26,12,45,2,23,45,104,30,12,8,3,10,2,2, + 3,3,1,4,20,7,2,9,6,15,2,20,1,3,16,4,11,15,6,134,2,5,59,1,2,2,2,1,9,17,3,26,137,10,211,59,1,2,4,1,4,1,1,1,2,6,2,3,1,1,2,3,2,3,1,3,4,4,2,3,3, + 1,4,3,1,7,2,2,3,1,2,1,3,3,3,2,2,3,2,1,3,14,6,1,3,2,9,6,15,27,9,34,145,1,1,2,1,1,1,1,2,1,1,1,1,2,2,2,3,1,2,1,1,1,2,3,5,8,3,5,2,4,1,3,2,2,2,12, + 4,1,1,1,10,4,5,1,20,4,16,1,15,9,5,12,2,9,2,5,4,2,26,19,7,1,26,4,30,12,15,42,1,6,8,172,1,1,4,2,1,1,11,2,2,4,2,1,2,1,10,8,1,2,1,4,5,1,2,5,1,8, + 4,1,3,4,2,1,6,2,1,3,4,1,2,1,1,1,1,12,5,7,2,4,3,1,1,1,3,3,6,1,2,2,3,3,3,2,1,2,12,14,11,6,6,4,12,2,8,1,7,10,1,35,7,4,13,15,4,3,23,21,28,52,5, + 26,5,6,1,7,10,2,7,53,3,2,1,1,1,2,163,532,1,10,11,1,3,3,4,8,2,8,6,2,2,23,22,4,2,2,4,2,1,3,1,3,3,5,9,8,2,1,2,8,1,10,2,12,21,20,15,105,2,3,1,1, + 3,2,3,1,1,2,5,1,4,15,11,19,1,1,1,1,5,4,5,1,1,2,5,3,5,12,1,2,5,1,11,1,1,15,9,1,4,5,3,26,8,2,1,3,1,1,15,19,2,12,1,2,5,2,7,2,19,2,20,6,26,7,5, + 2,2,7,34,21,13,70,2,128,1,1,2,1,1,2,1,1,3,2,2,2,15,1,4,1,3,4,42,10,6,1,49,85,8,1,2,1,1,4,4,2,3,6,1,5,7,4,3,211,4,1,2,1,2,5,1,2,4,2,2,6,5,6, + 10,3,4,48,100,6,2,16,296,5,27,387,2,2,3,7,16,8,5,38,15,39,21,9,10,3,7,59,13,27,21,47,5,21,6 + }; + static ImWchar base_ranges[] = // not zero-terminated + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x2000, 0x206F, // General Punctuation + 0x3000, 0x30FF, // CJK Symbols and Punctuations, Hiragana, Katakana + 0x31F0, 0x31FF, // Katakana Phonetic Extensions + 0xFF00, 0xFFEF, // Half-width characters + 0xFFFD, 0xFFFD // Invalid + }; + static ImWchar full_ranges[IM_ARRAYSIZE(base_ranges) + IM_ARRAYSIZE(accumulative_offsets_from_0x4E00) * 2 + 1] = { 0 }; + if (!full_ranges[0]) + { + memcpy(full_ranges, base_ranges, sizeof(base_ranges)); + UnpackAccumulativeOffsetsIntoRanges(0x4E00, accumulative_offsets_from_0x4E00, IM_ARRAYSIZE(accumulative_offsets_from_0x4E00), full_ranges + IM_ARRAYSIZE(base_ranges)); + } + return &full_ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesJapanese() +{ + // 2999 ideograms code points for Japanese + // - 2136 Joyo (meaning "for regular use" or "for common use") Kanji code points + // - 863 Jinmeiyo (meaning "for personal name") Kanji code points + // - Sourced from official information provided by the government agencies of Japan: + // - List of Joyo Kanji by the Agency for Cultural Affairs + // - https://www.bunka.go.jp/kokugo_nihongo/sisaku/joho/joho/kijun/naikaku/kanji/ + // - List of Jinmeiyo Kanji by the Ministry of Justice + // - http://www.moj.go.jp/MINJI/minji86.html + // - Available under the terms of the Creative Commons Attribution 4.0 International (CC BY 4.0). + // - https://creativecommons.org/licenses/by/4.0/legalcode + // - You can generate this code by the script at: + // - https://github.com/vaiorabbit/everyday_use_kanji + // - References: + // - List of Joyo Kanji + // - (Wikipedia) https://en.wikipedia.org/wiki/List_of_j%C5%8Dy%C5%8D_kanji + // - List of Jinmeiyo Kanji + // - (Wikipedia) https://en.wikipedia.org/wiki/Jinmeiy%C5%8D_kanji + // - Missing 1 Joyo Kanji: U+20B9F (Kun'yomi: Shikaru, On'yomi: Shitsu,shichi), see https://github.com/ocornut/imgui/pull/3627 for details. + // You can use ImFontGlyphRangesBuilder to create your own ranges derived from this, by merging existing ranges or adding new characters. + // (Stored as accumulative offsets from the initial unicode codepoint 0x4E00. This encoding is designed to helps us compact the source code size.) + static const short accumulative_offsets_from_0x4E00[] = + { + 0,1,2,4,1,1,1,1,2,1,3,3,2,2,1,5,3,5,7,5,6,1,2,1,7,2,6,3,1,8,1,1,4,1,1,18,2,11,2,6,2,1,2,1,5,1,2,1,3,1,2,1,2,3,3,1,1,2,3,1,1,1,12,7,9,1,4,5,1, + 1,2,1,10,1,1,9,2,2,4,5,6,9,3,1,1,1,1,9,3,18,5,2,2,2,2,1,6,3,7,1,1,1,1,2,2,4,2,1,23,2,10,4,3,5,2,4,10,2,4,13,1,6,1,9,3,1,1,6,6,7,6,3,1,2,11,3, + 2,2,3,2,15,2,2,5,4,3,6,4,1,2,5,2,12,16,6,13,9,13,2,1,1,7,16,4,7,1,19,1,5,1,2,2,7,7,8,2,6,5,4,9,18,7,4,5,9,13,11,8,15,2,1,1,1,2,1,2,2,1,2,2,8, + 2,9,3,3,1,1,4,4,1,1,1,4,9,1,4,3,5,5,2,7,5,3,4,8,2,1,13,2,3,3,1,14,1,1,4,5,1,3,6,1,5,2,1,1,3,3,3,3,1,1,2,7,6,6,7,1,4,7,6,1,1,1,1,1,12,3,3,9,5, + 2,6,1,5,6,1,2,3,18,2,4,14,4,1,3,6,1,1,6,3,5,5,3,2,2,2,2,12,3,1,4,2,3,2,3,11,1,7,4,1,2,1,3,17,1,9,1,24,1,1,4,2,2,4,1,2,7,1,1,1,3,1,2,2,4,15,1, + 1,2,1,1,2,1,5,2,5,20,2,5,9,1,10,8,7,6,1,1,1,1,1,1,6,2,1,2,8,1,1,1,1,5,1,1,3,1,1,1,1,3,1,1,12,4,1,3,1,1,1,1,1,10,3,1,7,5,13,1,2,3,4,6,1,1,30, + 2,9,9,1,15,38,11,3,1,8,24,7,1,9,8,10,2,1,9,31,2,13,6,2,9,4,49,5,2,15,2,1,10,2,1,1,1,2,2,6,15,30,35,3,14,18,8,1,16,10,28,12,19,45,38,1,3,2,3, + 13,2,1,7,3,6,5,3,4,3,1,5,7,8,1,5,3,18,5,3,6,1,21,4,24,9,24,40,3,14,3,21,3,2,1,2,4,2,3,1,15,15,6,5,1,1,3,1,5,6,1,9,7,3,3,2,1,4,3,8,21,5,16,4, + 5,2,10,11,11,3,6,3,2,9,3,6,13,1,2,1,1,1,1,11,12,6,6,1,4,2,6,5,2,1,1,3,3,6,13,3,1,1,5,1,2,3,3,14,2,1,2,2,2,5,1,9,5,1,1,6,12,3,12,3,4,13,2,14, + 2,8,1,17,5,1,16,4,2,2,21,8,9,6,23,20,12,25,19,9,38,8,3,21,40,25,33,13,4,3,1,4,1,2,4,1,2,5,26,2,1,1,2,1,3,6,2,1,1,1,1,1,1,2,3,1,1,1,9,2,3,1,1, + 1,3,6,3,2,1,1,6,6,1,8,2,2,2,1,4,1,2,3,2,7,3,2,4,1,2,1,2,2,1,1,1,1,1,3,1,2,5,4,10,9,4,9,1,1,1,1,1,1,5,3,2,1,6,4,9,6,1,10,2,31,17,8,3,7,5,40,1, + 7,7,1,6,5,2,10,7,8,4,15,39,25,6,28,47,18,10,7,1,3,1,1,2,1,1,1,3,3,3,1,1,1,3,4,2,1,4,1,3,6,10,7,8,6,2,2,1,3,3,2,5,8,7,9,12,2,15,1,1,4,1,2,1,1, + 1,3,2,1,3,3,5,6,2,3,2,10,1,4,2,8,1,1,1,11,6,1,21,4,16,3,1,3,1,4,2,3,6,5,1,3,1,1,3,3,4,6,1,1,10,4,2,7,10,4,7,4,2,9,4,3,1,1,1,4,1,8,3,4,1,3,1, + 6,1,4,2,1,4,7,2,1,8,1,4,5,1,1,2,2,4,6,2,7,1,10,1,1,3,4,11,10,8,21,4,6,1,3,5,2,1,2,28,5,5,2,3,13,1,2,3,1,4,2,1,5,20,3,8,11,1,3,3,3,1,8,10,9,2, + 10,9,2,3,1,1,2,4,1,8,3,6,1,7,8,6,11,1,4,29,8,4,3,1,2,7,13,1,4,1,6,2,6,12,12,2,20,3,2,3,6,4,8,9,2,7,34,5,1,18,6,1,1,4,4,5,7,9,1,2,2,4,3,4,1,7, + 2,2,2,6,2,3,25,5,3,6,1,4,6,7,4,2,1,4,2,13,6,4,4,3,1,5,3,4,4,3,2,1,1,4,1,2,1,1,3,1,11,1,6,3,1,7,3,6,2,8,8,6,9,3,4,11,3,2,10,12,2,5,11,1,6,4,5, + 3,1,8,5,4,6,6,3,5,1,1,3,2,1,2,2,6,17,12,1,10,1,6,12,1,6,6,19,9,6,16,1,13,4,4,15,7,17,6,11,9,15,12,6,7,2,1,2,2,15,9,3,21,4,6,49,18,7,3,2,3,1, + 6,8,2,2,6,2,9,1,3,6,4,4,1,2,16,2,5,2,1,6,2,3,5,3,1,2,5,1,2,1,9,3,1,8,6,4,8,11,3,1,1,1,1,3,1,13,8,4,1,3,2,2,1,4,1,11,1,5,2,1,5,2,5,8,6,1,1,7, + 4,3,8,3,2,7,2,1,5,1,5,2,4,7,6,2,8,5,1,11,4,5,3,6,18,1,2,13,3,3,1,21,1,1,4,1,4,1,1,1,8,1,2,2,7,1,2,4,2,2,9,2,1,1,1,4,3,6,3,12,5,1,1,1,5,6,3,2, + 4,8,2,2,4,2,7,1,8,9,5,2,3,2,1,3,2,13,7,14,6,5,1,1,2,1,4,2,23,2,1,1,6,3,1,4,1,15,3,1,7,3,9,14,1,3,1,4,1,1,5,8,1,3,8,3,8,15,11,4,14,4,4,2,5,5, + 1,7,1,6,14,7,7,8,5,15,4,8,6,5,6,2,1,13,1,20,15,11,9,2,5,6,2,11,2,6,2,5,1,5,8,4,13,19,25,4,1,1,11,1,34,2,5,9,14,6,2,2,6,1,1,14,1,3,14,13,1,6, + 12,21,14,14,6,32,17,8,32,9,28,1,2,4,11,8,3,1,14,2,5,15,1,1,1,1,3,6,4,1,3,4,11,3,1,1,11,30,1,5,1,4,1,5,8,1,1,3,2,4,3,17,35,2,6,12,17,3,1,6,2, + 1,1,12,2,7,3,3,2,1,16,2,8,3,6,5,4,7,3,3,8,1,9,8,5,1,2,1,3,2,8,1,2,9,12,1,1,2,3,8,3,24,12,4,3,7,5,8,3,3,3,3,3,3,1,23,10,3,1,2,2,6,3,1,16,1,16, + 22,3,10,4,11,6,9,7,7,3,6,2,2,2,4,10,2,1,1,2,8,7,1,6,4,1,3,3,3,5,10,12,12,2,3,12,8,15,1,1,16,6,6,1,5,9,11,4,11,4,2,6,12,1,17,5,13,1,4,9,5,1,11, + 2,1,8,1,5,7,28,8,3,5,10,2,17,3,38,22,1,2,18,12,10,4,38,18,1,4,44,19,4,1,8,4,1,12,1,4,31,12,1,14,7,75,7,5,10,6,6,13,3,2,11,11,3,2,5,28,15,6,18, + 18,5,6,4,3,16,1,7,18,7,36,3,5,3,1,7,1,9,1,10,7,2,4,2,6,2,9,7,4,3,32,12,3,7,10,2,23,16,3,1,12,3,31,4,11,1,3,8,9,5,1,30,15,6,12,3,2,2,11,19,9, + 14,2,6,2,3,19,13,17,5,3,3,25,3,14,1,1,1,36,1,3,2,19,3,13,36,9,13,31,6,4,16,34,2,5,4,2,3,3,5,1,1,1,4,3,1,17,3,2,3,5,3,1,3,2,3,5,6,3,12,11,1,3, + 1,2,26,7,12,7,2,14,3,3,7,7,11,25,25,28,16,4,36,1,2,1,6,2,1,9,3,27,17,4,3,4,13,4,1,3,2,2,1,10,4,2,4,6,3,8,2,1,18,1,1,24,2,2,4,33,2,3,63,7,1,6, + 40,7,3,4,4,2,4,15,18,1,16,1,1,11,2,41,14,1,3,18,13,3,2,4,16,2,17,7,15,24,7,18,13,44,2,2,3,6,1,1,7,5,1,7,1,4,3,3,5,10,8,2,3,1,8,1,1,27,4,2,1, + 12,1,2,1,10,6,1,6,7,5,2,3,7,11,5,11,3,6,6,2,3,15,4,9,1,1,2,1,2,11,2,8,12,8,5,4,2,3,1,5,2,2,1,14,1,12,11,4,1,11,17,17,4,3,2,5,5,7,3,1,5,9,9,8, + 2,5,6,6,13,13,2,1,2,6,1,2,2,49,4,9,1,2,10,16,7,8,4,3,2,23,4,58,3,29,1,14,19,19,11,11,2,7,5,1,3,4,6,2,18,5,12,12,17,17,3,3,2,4,1,6,2,3,4,3,1, + 1,1,1,5,1,1,9,1,3,1,3,6,1,8,1,1,2,6,4,14,3,1,4,11,4,1,3,32,1,2,4,13,4,1,2,4,2,1,3,1,11,1,4,2,1,4,4,6,3,5,1,6,5,7,6,3,23,3,5,3,5,3,3,13,3,9,10, + 1,12,10,2,3,18,13,7,160,52,4,2,2,3,2,14,5,4,12,4,6,4,1,20,4,11,6,2,12,27,1,4,1,2,2,7,4,5,2,28,3,7,25,8,3,19,3,6,10,2,2,1,10,2,5,4,1,3,4,1,5, + 3,2,6,9,3,6,2,16,3,3,16,4,5,5,3,2,1,2,16,15,8,2,6,21,2,4,1,22,5,8,1,1,21,11,2,1,11,11,19,13,12,4,2,3,2,3,6,1,8,11,1,4,2,9,5,2,1,11,2,9,1,1,2, + 14,31,9,3,4,21,14,4,8,1,7,2,2,2,5,1,4,20,3,3,4,10,1,11,9,8,2,1,4,5,14,12,14,2,17,9,6,31,4,14,1,20,13,26,5,2,7,3,6,13,2,4,2,19,6,2,2,18,9,3,5, + 12,12,14,4,6,2,3,6,9,5,22,4,5,25,6,4,8,5,2,6,27,2,35,2,16,3,7,8,8,6,6,5,9,17,2,20,6,19,2,13,3,1,1,1,4,17,12,2,14,7,1,4,18,12,38,33,2,10,1,1, + 2,13,14,17,11,50,6,33,20,26,74,16,23,45,50,13,38,33,6,6,7,4,4,2,1,3,2,5,8,7,8,9,3,11,21,9,13,1,3,10,6,7,1,2,2,18,5,5,1,9,9,2,68,9,19,13,2,5, + 1,4,4,7,4,13,3,9,10,21,17,3,26,2,1,5,2,4,5,4,1,7,4,7,3,4,2,1,6,1,1,20,4,1,9,2,2,1,3,3,2,3,2,1,1,1,20,2,3,1,6,2,3,6,2,4,8,1,3,2,10,3,5,3,4,4, + 3,4,16,1,6,1,10,2,4,2,1,1,2,10,11,2,2,3,1,24,31,4,10,10,2,5,12,16,164,15,4,16,7,9,15,19,17,1,2,1,1,5,1,1,1,1,1,3,1,4,3,1,3,1,3,1,2,1,1,3,3,7, + 2,8,1,2,2,2,1,3,4,3,7,8,12,92,2,10,3,1,3,14,5,25,16,42,4,7,7,4,2,21,5,27,26,27,21,25,30,31,2,1,5,13,3,22,5,6,6,11,9,12,1,5,9,7,5,5,22,60,3,5, + 13,1,1,8,1,1,3,3,2,1,9,3,3,18,4,1,2,3,7,6,3,1,2,3,9,1,3,1,3,2,1,3,1,1,1,2,1,11,3,1,6,9,1,3,2,3,1,2,1,5,1,1,4,3,4,1,2,2,4,4,1,7,2,1,2,2,3,5,13, + 18,3,4,14,9,9,4,16,3,7,5,8,2,6,48,28,3,1,1,4,2,14,8,2,9,2,1,15,2,4,3,2,10,16,12,8,7,1,1,3,1,1,1,2,7,4,1,6,4,38,39,16,23,7,15,15,3,2,12,7,21, + 37,27,6,5,4,8,2,10,8,8,6,5,1,2,1,3,24,1,16,17,9,23,10,17,6,1,51,55,44,13,294,9,3,6,2,4,2,2,15,1,1,1,13,21,17,68,14,8,9,4,1,4,9,3,11,7,1,1,1, + 5,6,3,2,1,1,1,2,3,8,1,2,2,4,1,5,5,2,1,4,3,7,13,4,1,4,1,3,1,1,1,5,5,10,1,6,1,5,2,1,5,2,4,1,4,5,7,3,18,2,9,11,32,4,3,3,2,4,7,11,16,9,11,8,13,38, + 32,8,4,2,1,1,2,1,2,4,4,1,1,1,4,1,21,3,11,1,16,1,1,6,1,3,2,4,9,8,57,7,44,1,3,3,13,3,10,1,1,7,5,2,7,21,47,63,3,15,4,7,1,16,1,1,2,8,2,3,42,15,4, + 1,29,7,22,10,3,78,16,12,20,18,4,67,11,5,1,3,15,6,21,31,32,27,18,13,71,35,5,142,4,10,1,2,50,19,33,16,35,37,16,19,27,7,1,133,19,1,4,8,7,20,1,4, + 4,1,10,3,1,6,1,2,51,5,40,15,24,43,22928,11,1,13,154,70,3,1,1,7,4,10,1,2,1,1,2,1,2,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1, + 3,2,1,1,1,1,2,1,1, + }; + static ImWchar base_ranges[] = // not zero-terminated + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x3000, 0x30FF, // CJK Symbols and Punctuations, Hiragana, Katakana + 0x31F0, 0x31FF, // Katakana Phonetic Extensions + 0xFF00, 0xFFEF, // Half-width characters + 0xFFFD, 0xFFFD // Invalid + }; + static ImWchar full_ranges[IM_ARRAYSIZE(base_ranges) + IM_ARRAYSIZE(accumulative_offsets_from_0x4E00)*2 + 1] = { 0 }; + if (!full_ranges[0]) + { + memcpy(full_ranges, base_ranges, sizeof(base_ranges)); + UnpackAccumulativeOffsetsIntoRanges(0x4E00, accumulative_offsets_from_0x4E00, IM_ARRAYSIZE(accumulative_offsets_from_0x4E00), full_ranges + IM_ARRAYSIZE(base_ranges)); + } + return &full_ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesCyrillic() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + Latin Supplement + 0x0400, 0x052F, // Cyrillic + Cyrillic Supplement + 0x2DE0, 0x2DFF, // Cyrillic Extended-A + 0xA640, 0xA69F, // Cyrillic Extended-B + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesThai() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + 0x2010, 0x205E, // Punctuations + 0x0E00, 0x0E7F, // Thai + 0, + }; + return &ranges[0]; +} + +const ImWchar* ImFontAtlas::GetGlyphRangesVietnamese() +{ + static const ImWchar ranges[] = + { + 0x0020, 0x00FF, // Basic Latin + 0x0102, 0x0103, + 0x0110, 0x0111, + 0x0128, 0x0129, + 0x0168, 0x0169, + 0x01A0, 0x01A1, + 0x01AF, 0x01B0, + 0x1EA0, 0x1EF9, + 0, + }; + return &ranges[0]; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFontGlyphRangesBuilder +//----------------------------------------------------------------------------- + +void ImFontGlyphRangesBuilder::AddText(const char* text, const char* text_end) +{ + while (text_end ? (text < text_end) : *text) + { + unsigned int c = 0; + int c_len = ImTextCharFromUtf8(&c, text, text_end); + text += c_len; + if (c_len == 0) + break; + AddChar((ImWchar)c); + } +} + +void ImFontGlyphRangesBuilder::AddRanges(const ImWchar* ranges) +{ + for (; ranges[0]; ranges += 2) + for (unsigned int c = ranges[0]; c <= ranges[1] && c <= IM_UNICODE_CODEPOINT_MAX; c++) //-V560 + AddChar((ImWchar)c); +} + +void ImFontGlyphRangesBuilder::BuildRanges(ImVector* out_ranges) +{ + const int max_codepoint = IM_UNICODE_CODEPOINT_MAX; + for (int n = 0; n <= max_codepoint; n++) + if (GetBit(n)) + { + out_ranges->push_back((ImWchar)n); + while (n < max_codepoint && GetBit(n + 1)) + n++; + out_ranges->push_back((ImWchar)n); + } + out_ranges->push_back(0); +} + +//----------------------------------------------------------------------------- +// [SECTION] ImFont +//----------------------------------------------------------------------------- + +ImFont::ImFont() +{ + FontSize = 0.0f; + FallbackAdvanceX = 0.0f; + FallbackChar = (ImWchar)-1; + EllipsisChar = (ImWchar)-1; + EllipsisWidth = EllipsisCharStep = 0.0f; + EllipsisCharCount = 0; + FallbackGlyph = NULL; + ContainerAtlas = NULL; + ConfigData = NULL; + ConfigDataCount = 0; + DirtyLookupTables = false; + Scale = 1.0f; + Ascent = Descent = 0.0f; + MetricsTotalSurface = 0; + memset(Used4kPagesMap, 0, sizeof(Used4kPagesMap)); +} + +ImFont::~ImFont() +{ + ClearOutputData(); +} + +void ImFont::ClearOutputData() +{ + FontSize = 0.0f; + FallbackAdvanceX = 0.0f; + Glyphs.clear(); + IndexAdvanceX.clear(); + IndexLookup.clear(); + FallbackGlyph = NULL; + ContainerAtlas = NULL; + DirtyLookupTables = true; + Ascent = Descent = 0.0f; + MetricsTotalSurface = 0; +} + +static ImWchar FindFirstExistingGlyph(ImFont* font, const ImWchar* candidate_chars, int candidate_chars_count) +{ + for (int n = 0; n < candidate_chars_count; n++) + if (font->FindGlyphNoFallback(candidate_chars[n]) != NULL) + return candidate_chars[n]; + return (ImWchar)-1; +} + +void ImFont::BuildLookupTable() +{ + int max_codepoint = 0; + for (int i = 0; i != Glyphs.Size; i++) + max_codepoint = ImMax(max_codepoint, (int)Glyphs[i].Codepoint); + + // Build lookup table + IM_ASSERT(Glyphs.Size > 0 && "Font has not loaded glyph!"); + IM_ASSERT(Glyphs.Size < 0xFFFF); // -1 is reserved + IndexAdvanceX.clear(); + IndexLookup.clear(); + DirtyLookupTables = false; + memset(Used4kPagesMap, 0, sizeof(Used4kPagesMap)); + GrowIndex(max_codepoint + 1); + for (int i = 0; i < Glyphs.Size; i++) + { + int codepoint = (int)Glyphs[i].Codepoint; + IndexAdvanceX[codepoint] = Glyphs[i].AdvanceX; + IndexLookup[codepoint] = (ImWchar)i; + + // Mark 4K page as used + const int page_n = codepoint / 4096; + Used4kPagesMap[page_n >> 3] |= 1 << (page_n & 7); + } + + // Create a glyph to handle TAB + // FIXME: Needs proper TAB handling but it needs to be contextualized (or we could arbitrary say that each string starts at "column 0" ?) + if (FindGlyph((ImWchar)' ')) + { + if (Glyphs.back().Codepoint != '\t') // So we can call this function multiple times (FIXME: Flaky) + Glyphs.resize(Glyphs.Size + 1); + ImFontGlyph& tab_glyph = Glyphs.back(); + tab_glyph = *FindGlyph((ImWchar)' '); + tab_glyph.Codepoint = '\t'; + tab_glyph.AdvanceX *= IM_TABSIZE; + IndexAdvanceX[(int)tab_glyph.Codepoint] = (float)tab_glyph.AdvanceX; + IndexLookup[(int)tab_glyph.Codepoint] = (ImWchar)(Glyphs.Size - 1); + } + + // Mark special glyphs as not visible (note that AddGlyph already mark as non-visible glyphs with zero-size polygons) + SetGlyphVisible((ImWchar)' ', false); + SetGlyphVisible((ImWchar)'\t', false); + + // Setup Fallback character + const ImWchar fallback_chars[] = { (ImWchar)IM_UNICODE_CODEPOINT_INVALID, (ImWchar)'?', (ImWchar)' ' }; + FallbackGlyph = FindGlyphNoFallback(FallbackChar); + if (FallbackGlyph == NULL) + { + FallbackChar = FindFirstExistingGlyph(this, fallback_chars, IM_ARRAYSIZE(fallback_chars)); + FallbackGlyph = FindGlyphNoFallback(FallbackChar); + if (FallbackGlyph == NULL) + { + FallbackGlyph = &Glyphs.back(); + FallbackChar = (ImWchar)FallbackGlyph->Codepoint; + } + } + FallbackAdvanceX = FallbackGlyph->AdvanceX; + for (int i = 0; i < max_codepoint + 1; i++) + if (IndexAdvanceX[i] < 0.0f) + IndexAdvanceX[i] = FallbackAdvanceX; + + // Setup Ellipsis character. It is required for rendering elided text. We prefer using U+2026 (horizontal ellipsis). + // However some old fonts may contain ellipsis at U+0085. Here we auto-detect most suitable ellipsis character. + // FIXME: Note that 0x2026 is rarely included in our font ranges. Because of this we are more likely to use three individual dots. + const ImWchar ellipsis_chars[] = { (ImWchar)0x2026, (ImWchar)0x0085 }; + const ImWchar dots_chars[] = { (ImWchar)'.', (ImWchar)0xFF0E }; + if (EllipsisChar == (ImWchar)-1) + EllipsisChar = FindFirstExistingGlyph(this, ellipsis_chars, IM_ARRAYSIZE(ellipsis_chars)); + const ImWchar dot_char = FindFirstExistingGlyph(this, dots_chars, IM_ARRAYSIZE(dots_chars)); + if (EllipsisChar != (ImWchar)-1) + { + EllipsisCharCount = 1; + EllipsisWidth = EllipsisCharStep = FindGlyph(EllipsisChar)->X1; + } + else if (dot_char != (ImWchar)-1) + { + const ImFontGlyph* glyph = FindGlyph(dot_char); + EllipsisChar = dot_char; + EllipsisCharCount = 3; + EllipsisCharStep = (glyph->X1 - glyph->X0) + 1.0f; + EllipsisWidth = EllipsisCharStep * 3.0f - 1.0f; + } +} + +// API is designed this way to avoid exposing the 4K page size +// e.g. use with IsGlyphRangeUnused(0, 255) +bool ImFont::IsGlyphRangeUnused(unsigned int c_begin, unsigned int c_last) +{ + unsigned int page_begin = (c_begin / 4096); + unsigned int page_last = (c_last / 4096); + for (unsigned int page_n = page_begin; page_n <= page_last; page_n++) + if ((page_n >> 3) < sizeof(Used4kPagesMap)) + if (Used4kPagesMap[page_n >> 3] & (1 << (page_n & 7))) + return false; + return true; +} + +void ImFont::SetGlyphVisible(ImWchar c, bool visible) +{ + if (ImFontGlyph* glyph = (ImFontGlyph*)(void*)FindGlyph((ImWchar)c)) + glyph->Visible = visible ? 1 : 0; +} + +void ImFont::GrowIndex(int new_size) +{ + IM_ASSERT(IndexAdvanceX.Size == IndexLookup.Size); + if (new_size <= IndexLookup.Size) + return; + IndexAdvanceX.resize(new_size, -1.0f); + IndexLookup.resize(new_size, (ImWchar)-1); +} + +// x0/y0/x1/y1 are offset from the character upper-left layout position, in pixels. Therefore x0/y0 are often fairly close to zero. +// Not to be mistaken with texture coordinates, which are held by u0/v0/u1/v1 in normalized format (0.0..1.0 on each texture axis). +// 'cfg' is not necessarily == 'this->ConfigData' because multiple source fonts+configs can be used to build one target font. +void ImFont::AddGlyph(const ImFontConfig* cfg, ImWchar codepoint, float x0, float y0, float x1, float y1, float u0, float v0, float u1, float v1, float advance_x) +{ + if (cfg != NULL) + { + // Clamp & recenter if needed + const float advance_x_original = advance_x; + advance_x = ImClamp(advance_x, cfg->GlyphMinAdvanceX, cfg->GlyphMaxAdvanceX); + if (advance_x != advance_x_original) + { + float char_off_x = cfg->PixelSnapH ? ImTrunc((advance_x - advance_x_original) * 0.5f) : (advance_x - advance_x_original) * 0.5f; + x0 += char_off_x; + x1 += char_off_x; + } + + // Snap to pixel + if (cfg->PixelSnapH) + advance_x = IM_ROUND(advance_x); + + // Bake spacing + advance_x += cfg->GlyphExtraSpacing.x; + } + + Glyphs.resize(Glyphs.Size + 1); + ImFontGlyph& glyph = Glyphs.back(); + glyph.Codepoint = (unsigned int)codepoint; + glyph.Visible = (x0 != x1) && (y0 != y1); + glyph.Colored = false; + glyph.X0 = x0; + glyph.Y0 = y0; + glyph.X1 = x1; + glyph.Y1 = y1; + glyph.U0 = u0; + glyph.V0 = v0; + glyph.U1 = u1; + glyph.V1 = v1; + glyph.AdvanceX = advance_x; + + // Compute rough surface usage metrics (+1 to account for average padding, +0.99 to round) + // We use (U1-U0)*TexWidth instead of X1-X0 to account for oversampling. + float pad = ContainerAtlas->TexGlyphPadding + 0.99f; + DirtyLookupTables = true; + MetricsTotalSurface += (int)((glyph.U1 - glyph.U0) * ContainerAtlas->TexWidth + pad) * (int)((glyph.V1 - glyph.V0) * ContainerAtlas->TexHeight + pad); +} + +void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst) +{ + IM_ASSERT(IndexLookup.Size > 0); // Currently this can only be called AFTER the font has been built, aka after calling ImFontAtlas::GetTexDataAs*() function. + unsigned int index_size = (unsigned int)IndexLookup.Size; + + if (dst < index_size && IndexLookup.Data[dst] == (ImWchar)-1 && !overwrite_dst) // 'dst' already exists + return; + if (src >= index_size && dst >= index_size) // both 'dst' and 'src' don't exist -> no-op + return; + + GrowIndex(dst + 1); + IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImWchar)-1; + IndexAdvanceX[dst] = (src < index_size) ? IndexAdvanceX.Data[src] : 1.0f; +} + +const ImFontGlyph* ImFont::FindGlyph(ImWchar c) const +{ + if (c >= (size_t)IndexLookup.Size) + return FallbackGlyph; + const ImWchar i = IndexLookup.Data[c]; + if (i == (ImWchar)-1) + return FallbackGlyph; + return &Glyphs.Data[i]; +} + +const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c) const +{ + if (c >= (size_t)IndexLookup.Size) + return NULL; + const ImWchar i = IndexLookup.Data[c]; + if (i == (ImWchar)-1) + return NULL; + return &Glyphs.Data[i]; +} + +// Wrapping skips upcoming blanks +static inline const char* CalcWordWrapNextLineStartA(const char* text, const char* text_end) +{ + while (text < text_end && ImCharIsBlankA(*text)) + text++; + if (*text == '\n') + text++; + return text; +} + +// Simple word-wrapping for English, not full-featured. Please submit failing cases! +// This will return the next location to wrap from. If no wrapping if necessary, this will fast-forward to e.g. text_end. +// FIXME: Much possible improvements (don't cut things like "word !", "word!!!" but cut within "word,,,,", more sensible support for punctuations, support for Unicode punctuations, etc.) +const char* ImFont::CalcWordWrapPositionA(float scale, const char* text, const char* text_end, float wrap_width) const +{ + // For references, possible wrap point marked with ^ + // "aaa bbb, ccc,ddd. eee fff. ggg!" + // ^ ^ ^ ^ ^__ ^ ^ + + // List of hardcoded separators: .,;!?'" + + // Skip extra blanks after a line returns (that includes not counting them in width computation) + // e.g. "Hello world" --> "Hello" "World" + + // Cut words that cannot possibly fit within one line. + // e.g.: "The tropical fish" with ~5 characters worth of width --> "The tr" "opical" "fish" + float line_width = 0.0f; + float word_width = 0.0f; + float blank_width = 0.0f; + wrap_width /= scale; // We work with unscaled widths to avoid scaling every characters + + const char* word_end = text; + const char* prev_word_end = NULL; + bool inside_word = true; + + const char* s = text; + IM_ASSERT(text_end != NULL); + while (s < text_end) + { + unsigned int c = (unsigned int)*s; + const char* next_s; + if (c < 0x80) + next_s = s + 1; + else + next_s = s + ImTextCharFromUtf8(&c, s, text_end); + + if (c < 32) + { + if (c == '\n') + { + line_width = word_width = blank_width = 0.0f; + inside_word = true; + s = next_s; + continue; + } + if (c == '\r') + { + s = next_s; + continue; + } + } + + const float char_width = ((int)c < IndexAdvanceX.Size ? IndexAdvanceX.Data[c] : FallbackAdvanceX); + if (ImCharIsBlankW(c)) + { + if (inside_word) + { + line_width += blank_width; + blank_width = 0.0f; + word_end = s; + } + blank_width += char_width; + inside_word = false; + } + else + { + word_width += char_width; + if (inside_word) + { + word_end = next_s; + } + else + { + prev_word_end = word_end; + line_width += word_width + blank_width; + word_width = blank_width = 0.0f; + } + + // Allow wrapping after punctuation. + inside_word = (c != '.' && c != ',' && c != ';' && c != '!' && c != '?' && c != '\"'); + } + + // We ignore blank width at the end of the line (they can be skipped) + if (line_width + word_width > wrap_width) + { + // Words that cannot possibly fit within an entire line will be cut anywhere. + if (word_width < wrap_width) + s = prev_word_end ? prev_word_end : word_end; + break; + } + + s = next_s; + } + + // Wrap_width is too small to fit anything. Force displaying 1 character to minimize the height discontinuity. + // +1 may not be a character start point in UTF-8 but it's ok because caller loops use (text >= word_wrap_eol). + if (s == text && text < text_end) + return s + 1; + return s; +} + +ImVec2 ImFont::CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end, const char** remaining) const +{ + if (!text_end) + text_end = text_begin + strlen(text_begin); // FIXME-OPT: Need to avoid this. + + const float line_height = size; + const float scale = size / FontSize; + + ImVec2 text_size = ImVec2(0, 0); + float line_width = 0.0f; + + const bool word_wrap_enabled = (wrap_width > 0.0f); + const char* word_wrap_eol = NULL; + + const char* s = text_begin; + while (s < text_end) + { + if (word_wrap_enabled) + { + // Calculate how far we can render. Requires two passes on the string data but keeps the code simple and not intrusive for what's essentially an uncommon feature. + if (!word_wrap_eol) + word_wrap_eol = CalcWordWrapPositionA(scale, s, text_end, wrap_width - line_width); + + if (s >= word_wrap_eol) + { + if (text_size.x < line_width) + text_size.x = line_width; + text_size.y += line_height; + line_width = 0.0f; + word_wrap_eol = NULL; + s = CalcWordWrapNextLineStartA(s, text_end); // Wrapping skips upcoming blanks + continue; + } + } + + // Decode and advance source + const char* prev_s = s; + unsigned int c = (unsigned int)*s; + if (c < 0x80) + s += 1; + else + s += ImTextCharFromUtf8(&c, s, text_end); + + if (c < 32) + { + if (c == '\n') + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + continue; + } + if (c == '\r') + continue; + } + + const float char_width = ((int)c < IndexAdvanceX.Size ? IndexAdvanceX.Data[c] : FallbackAdvanceX) * scale; + if (line_width + char_width >= max_width) + { + s = prev_s; + break; + } + + line_width += char_width; + } + + if (text_size.x < line_width) + text_size.x = line_width; + + if (line_width > 0 || text_size.y == 0.0f) + text_size.y += line_height; + + if (remaining) + *remaining = s; + + return text_size; +} + +// Note: as with every ImDrawList drawing function, this expects that the font atlas texture is bound. +void ImFont::RenderChar(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, ImWchar c) const +{ + const ImFontGlyph* glyph = FindGlyph(c); + if (!glyph || !glyph->Visible) + return; + if (glyph->Colored) + col |= ~IM_COL32_A_MASK; + float scale = (size >= 0.0f) ? (size / FontSize) : 1.0f; + float x = IM_TRUNC(pos.x); + float y = IM_TRUNC(pos.y); + draw_list->PrimReserve(6, 4); + draw_list->PrimRectUV(ImVec2(x + glyph->X0 * scale, y + glyph->Y0 * scale), ImVec2(x + glyph->X1 * scale, y + glyph->Y1 * scale), ImVec2(glyph->U0, glyph->V0), ImVec2(glyph->U1, glyph->V1), col); +} + +// Note: as with every ImDrawList drawing function, this expects that the font atlas texture is bound. +void ImFont::RenderText(ImDrawList* draw_list, float size, const ImVec2& pos, ImU32 col, const ImVec4& clip_rect, const char* text_begin, const char* text_end, float wrap_width, bool cpu_fine_clip) const +{ + if (!text_end) + text_end = text_begin + strlen(text_begin); // ImGui:: functions generally already provides a valid text_end, so this is merely to handle direct calls. + + // Align to be pixel perfect + float x = IM_TRUNC(pos.x); + float y = IM_TRUNC(pos.y); + if (y > clip_rect.w) + return; + + const float start_x = x; + const float scale = size / FontSize; + const float line_height = FontSize * scale; + const bool word_wrap_enabled = (wrap_width > 0.0f); + + // Fast-forward to first visible line + const char* s = text_begin; + if (y + line_height < clip_rect.y) + while (y + line_height < clip_rect.y && s < text_end) + { + const char* line_end = (const char*)memchr(s, '\n', text_end - s); + if (word_wrap_enabled) + { + // FIXME-OPT: This is not optimal as do first do a search for \n before calling CalcWordWrapPositionA(). + // If the specs for CalcWordWrapPositionA() were reworked to optionally return on \n we could combine both. + // However it is still better than nothing performing the fast-forward! + s = CalcWordWrapPositionA(scale, s, line_end ? line_end : text_end, wrap_width); + s = CalcWordWrapNextLineStartA(s, text_end); + } + else + { + s = line_end ? line_end + 1 : text_end; + } + y += line_height; + } + + // For large text, scan for the last visible line in order to avoid over-reserving in the call to PrimReserve() + // Note that very large horizontal line will still be affected by the issue (e.g. a one megabyte string buffer without a newline will likely crash atm) + if (text_end - s > 10000 && !word_wrap_enabled) + { + const char* s_end = s; + float y_end = y; + while (y_end < clip_rect.w && s_end < text_end) + { + s_end = (const char*)memchr(s_end, '\n', text_end - s_end); + s_end = s_end ? s_end + 1 : text_end; + y_end += line_height; + } + text_end = s_end; + } + if (s == text_end) + return; + + // Reserve vertices for remaining worse case (over-reserving is useful and easily amortized) + const int vtx_count_max = (int)(text_end - s) * 4; + const int idx_count_max = (int)(text_end - s) * 6; + const int idx_expected_size = draw_list->IdxBuffer.Size + idx_count_max; + draw_list->PrimReserve(idx_count_max, vtx_count_max); + ImDrawVert* vtx_write = draw_list->_VtxWritePtr; + ImDrawIdx* idx_write = draw_list->_IdxWritePtr; + unsigned int vtx_index = draw_list->_VtxCurrentIdx; + + const ImU32 col_untinted = col | ~IM_COL32_A_MASK; + const char* word_wrap_eol = NULL; + + while (s < text_end) + { + if (word_wrap_enabled) + { + // Calculate how far we can render. Requires two passes on the string data but keeps the code simple and not intrusive for what's essentially an uncommon feature. + if (!word_wrap_eol) + word_wrap_eol = CalcWordWrapPositionA(scale, s, text_end, wrap_width - (x - start_x)); + + if (s >= word_wrap_eol) + { + x = start_x; + y += line_height; + if (y > clip_rect.w) + break; // break out of main loop + word_wrap_eol = NULL; + s = CalcWordWrapNextLineStartA(s, text_end); // Wrapping skips upcoming blanks + continue; + } + } + + // Decode and advance source + unsigned int c = (unsigned int)*s; + if (c < 0x80) + s += 1; + else + s += ImTextCharFromUtf8(&c, s, text_end); + + if (c < 32) + { + if (c == '\n') + { + x = start_x; + y += line_height; + if (y > clip_rect.w) + break; // break out of main loop + continue; + } + if (c == '\r') + continue; + } + + const ImFontGlyph* glyph = FindGlyph((ImWchar)c); + if (glyph == NULL) + continue; + + float char_width = glyph->AdvanceX * scale; + if (glyph->Visible) + { + // We don't do a second finer clipping test on the Y axis as we've already skipped anything before clip_rect.y and exit once we pass clip_rect.w + float x1 = x + glyph->X0 * scale; + float x2 = x + glyph->X1 * scale; + float y1 = y + glyph->Y0 * scale; + float y2 = y + glyph->Y1 * scale; + if (x1 <= clip_rect.z && x2 >= clip_rect.x) + { + // Render a character + float u1 = glyph->U0; + float v1 = glyph->V0; + float u2 = glyph->U1; + float v2 = glyph->V1; + + // CPU side clipping used to fit text in their frame when the frame is too small. Only does clipping for axis aligned quads. + if (cpu_fine_clip) + { + if (x1 < clip_rect.x) + { + u1 = u1 + (1.0f - (x2 - clip_rect.x) / (x2 - x1)) * (u2 - u1); + x1 = clip_rect.x; + } + if (y1 < clip_rect.y) + { + v1 = v1 + (1.0f - (y2 - clip_rect.y) / (y2 - y1)) * (v2 - v1); + y1 = clip_rect.y; + } + if (x2 > clip_rect.z) + { + u2 = u1 + ((clip_rect.z - x1) / (x2 - x1)) * (u2 - u1); + x2 = clip_rect.z; + } + if (y2 > clip_rect.w) + { + v2 = v1 + ((clip_rect.w - y1) / (y2 - y1)) * (v2 - v1); + y2 = clip_rect.w; + } + if (y1 >= y2) + { + x += char_width; + continue; + } + } + + // Support for untinted glyphs + ImU32 glyph_col = glyph->Colored ? col_untinted : col; + + // We are NOT calling PrimRectUV() here because non-inlined causes too much overhead in a debug builds. Inlined here: + { + vtx_write[0].pos.x = x1; vtx_write[0].pos.y = y1; vtx_write[0].col = glyph_col; vtx_write[0].uv.x = u1; vtx_write[0].uv.y = v1; + vtx_write[1].pos.x = x2; vtx_write[1].pos.y = y1; vtx_write[1].col = glyph_col; vtx_write[1].uv.x = u2; vtx_write[1].uv.y = v1; + vtx_write[2].pos.x = x2; vtx_write[2].pos.y = y2; vtx_write[2].col = glyph_col; vtx_write[2].uv.x = u2; vtx_write[2].uv.y = v2; + vtx_write[3].pos.x = x1; vtx_write[3].pos.y = y2; vtx_write[3].col = glyph_col; vtx_write[3].uv.x = u1; vtx_write[3].uv.y = v2; + idx_write[0] = (ImDrawIdx)(vtx_index); idx_write[1] = (ImDrawIdx)(vtx_index + 1); idx_write[2] = (ImDrawIdx)(vtx_index + 2); + idx_write[3] = (ImDrawIdx)(vtx_index); idx_write[4] = (ImDrawIdx)(vtx_index + 2); idx_write[5] = (ImDrawIdx)(vtx_index + 3); + vtx_write += 4; + vtx_index += 4; + idx_write += 6; + } + } + } + x += char_width; + } + + // Give back unused vertices (clipped ones, blanks) ~ this is essentially a PrimUnreserve() action. + draw_list->VtxBuffer.Size = (int)(vtx_write - draw_list->VtxBuffer.Data); // Same as calling shrink() + draw_list->IdxBuffer.Size = (int)(idx_write - draw_list->IdxBuffer.Data); + draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 1].ElemCount -= (idx_expected_size - draw_list->IdxBuffer.Size); + draw_list->_VtxWritePtr = vtx_write; + draw_list->_IdxWritePtr = idx_write; + draw_list->_VtxCurrentIdx = vtx_index; +} + +//----------------------------------------------------------------------------- +// [SECTION] ImGui Internal Render Helpers +//----------------------------------------------------------------------------- +// Vaguely redesigned to stop accessing ImGui global state: +// - RenderArrow() +// - RenderBullet() +// - RenderCheckMark() +// - RenderArrowPointingAt() +// - RenderRectFilledRangeH() +// - RenderRectFilledWithHole() +//----------------------------------------------------------------------------- +// Function in need of a redesign (legacy mess) +// - RenderColorRectWithAlphaCheckerboard() +//----------------------------------------------------------------------------- + +// Render an arrow aimed to be aligned with text (p_min is a position in the same space text would be positioned). To e.g. denote expanded/collapsed state +void ImGui::RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale) +{ + const float h = draw_list->_Data->FontSize * 1.00f; + float r = h * 0.40f * scale; + ImVec2 center = pos + ImVec2(h * 0.50f, h * 0.50f * scale); + + ImVec2 a, b, c; + switch (dir) + { + case ImGuiDir_Up: + case ImGuiDir_Down: + if (dir == ImGuiDir_Up) r = -r; + a = ImVec2(+0.000f, +0.750f) * r; + b = ImVec2(-0.866f, -0.750f) * r; + c = ImVec2(+0.866f, -0.750f) * r; + break; + case ImGuiDir_Left: + case ImGuiDir_Right: + if (dir == ImGuiDir_Left) r = -r; + a = ImVec2(+0.750f, +0.000f) * r; + b = ImVec2(-0.750f, +0.866f) * r; + c = ImVec2(-0.750f, -0.866f) * r; + break; + case ImGuiDir_None: + case ImGuiDir_COUNT: + IM_ASSERT(0); + break; + } + draw_list->AddTriangleFilled(center + a, center + b, center + c, col); +} + +void ImGui::RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col) +{ + // FIXME-OPT: This should be baked in font. + draw_list->AddCircleFilled(pos, draw_list->_Data->FontSize * 0.20f, col, 8); +} + +void ImGui::RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz) +{ + float thickness = ImMax(sz / 5.0f, 1.0f); + sz -= thickness * 0.5f; + pos += ImVec2(thickness * 0.25f, thickness * 0.25f); + + float third = sz / 3.0f; + float bx = pos.x + third; + float by = pos.y + sz - third * 0.5f; + draw_list->PathLineTo(ImVec2(bx - third, by - third)); + draw_list->PathLineTo(ImVec2(bx, by)); + draw_list->PathLineTo(ImVec2(bx + third * 2.0f, by - third * 2.0f)); + draw_list->PathStroke(col, 0, thickness); +} + +// Render an arrow. 'pos' is position of the arrow tip. half_sz.x is length from base to tip. half_sz.y is length on each side. +void ImGui::RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col) +{ + switch (direction) + { + case ImGuiDir_Left: draw_list->AddTriangleFilled(ImVec2(pos.x + half_sz.x, pos.y - half_sz.y), ImVec2(pos.x + half_sz.x, pos.y + half_sz.y), pos, col); return; + case ImGuiDir_Right: draw_list->AddTriangleFilled(ImVec2(pos.x - half_sz.x, pos.y + half_sz.y), ImVec2(pos.x - half_sz.x, pos.y - half_sz.y), pos, col); return; + case ImGuiDir_Up: draw_list->AddTriangleFilled(ImVec2(pos.x + half_sz.x, pos.y + half_sz.y), ImVec2(pos.x - half_sz.x, pos.y + half_sz.y), pos, col); return; + case ImGuiDir_Down: draw_list->AddTriangleFilled(ImVec2(pos.x - half_sz.x, pos.y - half_sz.y), ImVec2(pos.x + half_sz.x, pos.y - half_sz.y), pos, col); return; + case ImGuiDir_None: case ImGuiDir_COUNT: break; // Fix warnings + } +} + +static inline float ImAcos01(float x) +{ + if (x <= 0.0f) return IM_PI * 0.5f; + if (x >= 1.0f) return 0.0f; + return ImAcos(x); + //return (-0.69813170079773212f * x * x - 0.87266462599716477f) * x + 1.5707963267948966f; // Cheap approximation, may be enough for what we do. +} + +// FIXME: Cleanup and move code to ImDrawList. +void ImGui::RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding) +{ + if (x_end_norm == x_start_norm) + return; + if (x_start_norm > x_end_norm) + ImSwap(x_start_norm, x_end_norm); + + ImVec2 p0 = ImVec2(ImLerp(rect.Min.x, rect.Max.x, x_start_norm), rect.Min.y); + ImVec2 p1 = ImVec2(ImLerp(rect.Min.x, rect.Max.x, x_end_norm), rect.Max.y); + if (rounding == 0.0f) + { + draw_list->AddRectFilled(p0, p1, col, 0.0f); + return; + } + + rounding = ImClamp(ImMin((rect.Max.x - rect.Min.x) * 0.5f, (rect.Max.y - rect.Min.y) * 0.5f) - 1.0f, 0.0f, rounding); + const float inv_rounding = 1.0f / rounding; + const float arc0_b = ImAcos01(1.0f - (p0.x - rect.Min.x) * inv_rounding); + const float arc0_e = ImAcos01(1.0f - (p1.x - rect.Min.x) * inv_rounding); + const float half_pi = IM_PI * 0.5f; // We will == compare to this because we know this is the exact value ImAcos01 can return. + const float x0 = ImMax(p0.x, rect.Min.x + rounding); + if (arc0_b == arc0_e) + { + draw_list->PathLineTo(ImVec2(x0, p1.y)); + draw_list->PathLineTo(ImVec2(x0, p0.y)); + } + else if (arc0_b == 0.0f && arc0_e == half_pi) + { + draw_list->PathArcToFast(ImVec2(x0, p1.y - rounding), rounding, 3, 6); // BL + draw_list->PathArcToFast(ImVec2(x0, p0.y + rounding), rounding, 6, 9); // TR + } + else + { + draw_list->PathArcTo(ImVec2(x0, p1.y - rounding), rounding, IM_PI - arc0_e, IM_PI - arc0_b); // BL + draw_list->PathArcTo(ImVec2(x0, p0.y + rounding), rounding, IM_PI + arc0_b, IM_PI + arc0_e); // TR + } + if (p1.x > rect.Min.x + rounding) + { + const float arc1_b = ImAcos01(1.0f - (rect.Max.x - p1.x) * inv_rounding); + const float arc1_e = ImAcos01(1.0f - (rect.Max.x - p0.x) * inv_rounding); + const float x1 = ImMin(p1.x, rect.Max.x - rounding); + if (arc1_b == arc1_e) + { + draw_list->PathLineTo(ImVec2(x1, p0.y)); + draw_list->PathLineTo(ImVec2(x1, p1.y)); + } + else if (arc1_b == 0.0f && arc1_e == half_pi) + { + draw_list->PathArcToFast(ImVec2(x1, p0.y + rounding), rounding, 9, 12); // TR + draw_list->PathArcToFast(ImVec2(x1, p1.y - rounding), rounding, 0, 3); // BR + } + else + { + draw_list->PathArcTo(ImVec2(x1, p0.y + rounding), rounding, -arc1_e, -arc1_b); // TR + draw_list->PathArcTo(ImVec2(x1, p1.y - rounding), rounding, +arc1_b, +arc1_e); // BR + } + } + draw_list->PathFillConvex(col); +} + +void ImGui::RenderRectFilledWithHole(ImDrawList* draw_list, const ImRect& outer, const ImRect& inner, ImU32 col, float rounding) +{ + const bool fill_L = (inner.Min.x > outer.Min.x); + const bool fill_R = (inner.Max.x < outer.Max.x); + const bool fill_U = (inner.Min.y > outer.Min.y); + const bool fill_D = (inner.Max.y < outer.Max.y); + if (fill_L) draw_list->AddRectFilled(ImVec2(outer.Min.x, inner.Min.y), ImVec2(inner.Min.x, inner.Max.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_U ? 0 : ImDrawFlags_RoundCornersTopLeft) | (fill_D ? 0 : ImDrawFlags_RoundCornersBottomLeft)); + if (fill_R) draw_list->AddRectFilled(ImVec2(inner.Max.x, inner.Min.y), ImVec2(outer.Max.x, inner.Max.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_U ? 0 : ImDrawFlags_RoundCornersTopRight) | (fill_D ? 0 : ImDrawFlags_RoundCornersBottomRight)); + if (fill_U) draw_list->AddRectFilled(ImVec2(inner.Min.x, outer.Min.y), ImVec2(inner.Max.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_L ? 0 : ImDrawFlags_RoundCornersTopLeft) | (fill_R ? 0 : ImDrawFlags_RoundCornersTopRight)); + if (fill_D) draw_list->AddRectFilled(ImVec2(inner.Min.x, inner.Max.y), ImVec2(inner.Max.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersNone | (fill_L ? 0 : ImDrawFlags_RoundCornersBottomLeft) | (fill_R ? 0 : ImDrawFlags_RoundCornersBottomRight)); + if (fill_L && fill_U) draw_list->AddRectFilled(ImVec2(outer.Min.x, outer.Min.y), ImVec2(inner.Min.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersTopLeft); + if (fill_R && fill_U) draw_list->AddRectFilled(ImVec2(inner.Max.x, outer.Min.y), ImVec2(outer.Max.x, inner.Min.y), col, rounding, ImDrawFlags_RoundCornersTopRight); + if (fill_L && fill_D) draw_list->AddRectFilled(ImVec2(outer.Min.x, inner.Max.y), ImVec2(inner.Min.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersBottomLeft); + if (fill_R && fill_D) draw_list->AddRectFilled(ImVec2(inner.Max.x, inner.Max.y), ImVec2(outer.Max.x, outer.Max.y), col, rounding, ImDrawFlags_RoundCornersBottomRight); +} + +// Helper for ColorPicker4() +// NB: This is rather brittle and will show artifact when rounding this enabled if rounded corners overlap multiple cells. Caller currently responsible for avoiding that. +// Spent a non reasonable amount of time trying to getting this right for ColorButton with rounding+anti-aliasing+ImGuiColorEditFlags_HalfAlphaPreview flag + various grid sizes and offsets, and eventually gave up... probably more reasonable to disable rounding altogether. +// FIXME: uses ImGui::GetColorU32 +void ImGui::RenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list, ImVec2 p_min, ImVec2 p_max, ImU32 col, float grid_step, ImVec2 grid_off, float rounding, ImDrawFlags flags) +{ + if ((flags & ImDrawFlags_RoundCornersMask_) == 0) + flags = ImDrawFlags_RoundCornersDefault_; + if (((col & IM_COL32_A_MASK) >> IM_COL32_A_SHIFT) < 0xFF) + { + ImU32 col_bg1 = GetColorU32(ImAlphaBlendColors(IM_COL32(204, 204, 204, 255), col)); + ImU32 col_bg2 = GetColorU32(ImAlphaBlendColors(IM_COL32(128, 128, 128, 255), col)); + draw_list->AddRectFilled(p_min, p_max, col_bg1, rounding, flags); + + int yi = 0; + for (float y = p_min.y + grid_off.y; y < p_max.y; y += grid_step, yi++) + { + float y1 = ImClamp(y, p_min.y, p_max.y), y2 = ImMin(y + grid_step, p_max.y); + if (y2 <= y1) + continue; + for (float x = p_min.x + grid_off.x + (yi & 1) * grid_step; x < p_max.x; x += grid_step * 2.0f) + { + float x1 = ImClamp(x, p_min.x, p_max.x), x2 = ImMin(x + grid_step, p_max.x); + if (x2 <= x1) + continue; + ImDrawFlags cell_flags = ImDrawFlags_RoundCornersNone; + if (y1 <= p_min.y) { if (x1 <= p_min.x) cell_flags |= ImDrawFlags_RoundCornersTopLeft; if (x2 >= p_max.x) cell_flags |= ImDrawFlags_RoundCornersTopRight; } + if (y2 >= p_max.y) { if (x1 <= p_min.x) cell_flags |= ImDrawFlags_RoundCornersBottomLeft; if (x2 >= p_max.x) cell_flags |= ImDrawFlags_RoundCornersBottomRight; } + + // Combine flags + cell_flags = (flags == ImDrawFlags_RoundCornersNone || cell_flags == ImDrawFlags_RoundCornersNone) ? ImDrawFlags_RoundCornersNone : (cell_flags & flags); + draw_list->AddRectFilled(ImVec2(x1, y1), ImVec2(x2, y2), col_bg2, rounding, cell_flags); + } + } + } + else + { + draw_list->AddRectFilled(p_min, p_max, col, rounding, flags); + } +} + +//----------------------------------------------------------------------------- +// [SECTION] Decompression code +//----------------------------------------------------------------------------- +// Compressed with stb_compress() then converted to a C array and encoded as base85. +// Use the program in misc/fonts/binary_to_compressed_c.cpp to create the array from a TTF file. +// The purpose of encoding as base85 instead of "0x00,0x01,..." style is only save on _source code_ size. +// Decompression from stb.h (public domain) by Sean Barrett https://github.com/nothings/stb/blob/master/stb.h +//----------------------------------------------------------------------------- + +static unsigned int stb_decompress_length(const unsigned char *input) +{ + return (input[8] << 24) + (input[9] << 16) + (input[10] << 8) + input[11]; +} + +static unsigned char *stb__barrier_out_e, *stb__barrier_out_b; +static const unsigned char *stb__barrier_in_b; +static unsigned char *stb__dout; +static void stb__match(const unsigned char *data, unsigned int length) +{ + // INVERSE of memmove... write each byte before copying the next... + IM_ASSERT(stb__dout + length <= stb__barrier_out_e); + if (stb__dout + length > stb__barrier_out_e) { stb__dout += length; return; } + if (data < stb__barrier_out_b) { stb__dout = stb__barrier_out_e+1; return; } + while (length--) *stb__dout++ = *data++; +} + +static void stb__lit(const unsigned char *data, unsigned int length) +{ + IM_ASSERT(stb__dout + length <= stb__barrier_out_e); + if (stb__dout + length > stb__barrier_out_e) { stb__dout += length; return; } + if (data < stb__barrier_in_b) { stb__dout = stb__barrier_out_e+1; return; } + memcpy(stb__dout, data, length); + stb__dout += length; +} + +#define stb__in2(x) ((i[x] << 8) + i[(x)+1]) +#define stb__in3(x) ((i[x] << 16) + stb__in2((x)+1)) +#define stb__in4(x) ((i[x] << 24) + stb__in3((x)+1)) + +static const unsigned char *stb_decompress_token(const unsigned char *i) +{ + if (*i >= 0x20) { // use fewer if's for cases that expand small + if (*i >= 0x80) stb__match(stb__dout-i[1]-1, i[0] - 0x80 + 1), i += 2; + else if (*i >= 0x40) stb__match(stb__dout-(stb__in2(0) - 0x4000 + 1), i[2]+1), i += 3; + else /* *i >= 0x20 */ stb__lit(i+1, i[0] - 0x20 + 1), i += 1 + (i[0] - 0x20 + 1); + } else { // more ifs for cases that expand large, since overhead is amortized + if (*i >= 0x18) stb__match(stb__dout-(stb__in3(0) - 0x180000 + 1), i[3]+1), i += 4; + else if (*i >= 0x10) stb__match(stb__dout-(stb__in3(0) - 0x100000 + 1), stb__in2(3)+1), i += 5; + else if (*i >= 0x08) stb__lit(i+2, stb__in2(0) - 0x0800 + 1), i += 2 + (stb__in2(0) - 0x0800 + 1); + else if (*i == 0x07) stb__lit(i+3, stb__in2(1) + 1), i += 3 + (stb__in2(1) + 1); + else if (*i == 0x06) stb__match(stb__dout-(stb__in3(1)+1), i[4]+1), i += 5; + else if (*i == 0x04) stb__match(stb__dout-(stb__in3(1)+1), stb__in2(4)+1), i += 6; + } + return i; +} + +static unsigned int stb_adler32(unsigned int adler32, unsigned char *buffer, unsigned int buflen) +{ + const unsigned long ADLER_MOD = 65521; + unsigned long s1 = adler32 & 0xffff, s2 = adler32 >> 16; + unsigned long blocklen = buflen % 5552; + + unsigned long i; + while (buflen) { + for (i=0; i + 7 < blocklen; i += 8) { + s1 += buffer[0], s2 += s1; + s1 += buffer[1], s2 += s1; + s1 += buffer[2], s2 += s1; + s1 += buffer[3], s2 += s1; + s1 += buffer[4], s2 += s1; + s1 += buffer[5], s2 += s1; + s1 += buffer[6], s2 += s1; + s1 += buffer[7], s2 += s1; + + buffer += 8; + } + + for (; i < blocklen; ++i) + s1 += *buffer++, s2 += s1; + + s1 %= ADLER_MOD, s2 %= ADLER_MOD; + buflen -= blocklen; + blocklen = 5552; + } + return (unsigned int)(s2 << 16) + (unsigned int)s1; +} + +static unsigned int stb_decompress(unsigned char *output, const unsigned char *i, unsigned int /*length*/) +{ + if (stb__in4(0) != 0x57bC0000) return 0; + if (stb__in4(4) != 0) return 0; // error! stream is > 4GB + const unsigned int olen = stb_decompress_length(i); + stb__barrier_in_b = i; + stb__barrier_out_e = output + olen; + stb__barrier_out_b = output; + i += 16; + + stb__dout = output; + for (;;) { + const unsigned char *old_i = i; + i = stb_decompress_token(i); + if (i == old_i) { + if (*i == 0x05 && i[1] == 0xfa) { + IM_ASSERT(stb__dout == output + olen); + if (stb__dout != output + olen) return 0; + if (stb_adler32(1, output, olen) != (unsigned int) stb__in4(2)) + return 0; + return olen; + } else { + IM_ASSERT(0); /* NOTREACHED */ + return 0; + } + } + IM_ASSERT(stb__dout <= output + olen); + if (stb__dout > output + olen) + return 0; + } +} + +//----------------------------------------------------------------------------- +// [SECTION] Default font data (ProggyClean.ttf) +//----------------------------------------------------------------------------- +// ProggyClean.ttf +// Copyright (c) 2004, 2005 Tristan Grimmer +// MIT license (see License.txt in http://www.proggyfonts.net/index.php?menu=download) +// Download and more information at http://www.proggyfonts.net or http://upperboundsinteractive.com/fonts.php +//----------------------------------------------------------------------------- +// File: 'ProggyClean.ttf' (41208 bytes) +// Exported using misc/fonts/binary_to_compressed_c.cpp (with compression + base85 string encoding). +// The purpose of encoding as base85 instead of "0x00,0x01,..." style is only save on _source code_ size. +//----------------------------------------------------------------------------- +static const char proggy_clean_ttf_compressed_data_base85[11980 + 1] = + "7])#######hV0qs'/###[),##/l:$#Q6>##5[n42>c-TH`->>#/e>11NNV=Bv(*:.F?uu#(gRU.o0XGH`$vhLG1hxt9?W`#,5LsCp#-i>.r$<$6pD>Lb';9Crc6tgXmKVeU2cD4Eo3R/" + "2*>]b(MC;$jPfY.;h^`IWM9Qo#t'X#(v#Y9w0#1D$CIf;W'#pWUPXOuxXuU(H9M(1=Ke$$'5F%)]0^#0X@U.a$FBjVQTSDgEKnIS7EM9>ZY9w0#L;>>#Mx&4Mvt//L[MkA#W@lK.N'[0#7RL_&#w+F%HtG9M#XL`N&.,GM4Pg;--VsM.M0rJfLH2eTM`*oJMHRC`N" + "kfimM2J,W-jXS:)r0wK#@Fge$U>`w'N7G#$#fB#$E^$#:9:hk+eOe--6x)F7*E%?76%^GMHePW-Z5l'&GiF#$956:rS?dA#fiK:)Yr+`�j@'DbG&#^$PG.Ll+DNa&VZ>1i%h1S9u5o@YaaW$e+bROPOpxTO7Stwi1::iB1q)C_=dV26J;2,]7op$]uQr@_V7$q^%lQwtuHY]=DX,n3L#0PHDO4f9>dC@O>HBuKPpP*E,N+b3L#lpR/MrTEH.IAQk.a>D[.e;mc." + "x]Ip.PH^'/aqUO/$1WxLoW0[iLAw=4h(9.`G" + "CRUxHPeR`5Mjol(dUWxZa(>STrPkrJiWx`5U7F#.g*jrohGg`cg:lSTvEY/EV_7H4Q9[Z%cnv;JQYZ5q.l7Zeas:HOIZOB?Ggv:[7MI2k).'2($5FNP&EQ(,)" + "U]W]+fh18.vsai00);D3@4ku5P?DP8aJt+;qUM]=+b'8@;mViBKx0DE[-auGl8:PJ&Dj+M6OC]O^((##]`0i)drT;-7X`=-H3[igUnPG-NZlo.#k@h#=Ork$m>a>$-?Tm$UV(?#P6YY#" + "'/###xe7q.73rI3*pP/$1>s9)W,JrM7SN]'/4C#v$U`0#V.[0>xQsH$fEmPMgY2u7Kh(G%siIfLSoS+MK2eTM$=5,M8p`A.;_R%#u[K#$x4AG8.kK/HSB==-'Ie/QTtG?-.*^N-4B/ZM" + "_3YlQC7(p7q)&](`6_c)$/*JL(L-^(]$wIM`dPtOdGA,U3:w2M-0+WomX2u7lqM2iEumMTcsF?-aT=Z-97UEnXglEn1K-bnEO`gu" + "Ft(c%=;Am_Qs@jLooI&NX;]0#j4#F14;gl8-GQpgwhrq8'=l_f-b49'UOqkLu7-##oDY2L(te+Mch&gLYtJ,MEtJfLh'x'M=$CS-ZZ%P]8bZ>#S?YY#%Q&q'3^Fw&?D)UDNrocM3A76/" + "/oL?#h7gl85[qW/NDOk%16ij;+:1a'iNIdb-ou8.P*w,v5#EI$TWS>Pot-R*H'-SEpA:g)f+O$%%`kA#G=8RMmG1&O`>to8bC]T&$,n.LoO>29sp3dt-52U%VM#q7'DHpg+#Z9%H[Ket`e;)f#Km8&+DC$I46>#Kr]]u-[=99tts1.qb#q72g1WJO81q+eN'03'eM>&1XxY-caEnO" + "j%2n8)),?ILR5^.Ibn<-X-Mq7[a82Lq:F&#ce+S9wsCK*x`569E8ew'He]h:sI[2LM$[guka3ZRd6:t%IG:;$%YiJ:Nq=?eAw;/:nnDq0(CYcMpG)qLN4$##&J-XTt,%OVU4)S1+R-#dg0/Nn?Ku1^0f$B*P:Rowwm-`0PKjYDDM'3]d39VZHEl4,.j']Pk-M.h^&:0FACm$maq-&sgw0t7/6(^xtk%" + "LuH88Fj-ekm>GA#_>568x6(OFRl-IZp`&b,_P'$MhLbxfc$mj`,O;&%W2m`Zh:/)Uetw:aJ%]K9h:TcF]u_-Sj9,VK3M.*'&0D[Ca]J9gp8,kAW]" + "%(?A%R$f<->Zts'^kn=-^@c4%-pY6qI%J%1IGxfLU9CP8cbPlXv);C=b),<2mOvP8up,UVf3839acAWAW-W?#ao/^#%KYo8fRULNd2.>%m]UK:n%r$'sw]J;5pAoO_#2mO3n,'=H5(et" + "Hg*`+RLgv>=4U8guD$I%D:W>-r5V*%j*W:Kvej.Lp$'?;++O'>()jLR-^u68PHm8ZFWe+ej8h:9r6L*0//c&iH&R8pRbA#Kjm%upV1g:" + "a_#Ur7FuA#(tRh#.Y5K+@?3<-8m0$PEn;J:rh6?I6uG<-`wMU'ircp0LaE_OtlMb&1#6T.#FDKu#1Lw%u%+GM+X'e?YLfjM[VO0MbuFp7;>Q&#WIo)0@F%q7c#4XAXN-U&VBpqB>0ie&jhZ[?iLR@@_AvA-iQC(=ksRZRVp7`.=+NpBC%rh&3]R:8XDmE5^V8O(x<-+k?'(^](H.aREZSi,#1:[IXaZFOm<-ui#qUq2$##Ri;u75OK#(RtaW-K-F`S+cF]uN`-KMQ%rP/Xri.LRcB##=YL3BgM/3M" + "D?@f&1'BW-)Ju#bmmWCMkk&#TR`C,5d>g)F;t,4:@_l8G/5h4vUd%&%950:VXD'QdWoY-F$BtUwmfe$YqL'8(PWX(" + "P?^@Po3$##`MSs?DWBZ/S>+4%>fX,VWv/w'KD`LP5IbH;rTV>n3cEK8U#bX]l-/V+^lj3;vlMb&[5YQ8#pekX9JP3XUC72L,,?+Ni&co7ApnO*5NK,((W-i:$,kp'UDAO(G0Sq7MVjJs" + "bIu)'Z,*[>br5fX^:FPAWr-m2KgLQ_nN6'8uTGT5g)uLv:873UpTLgH+#FgpH'_o1780Ph8KmxQJ8#H72L4@768@Tm&Q" + "h4CB/5OvmA&,Q&QbUoi$a_%3M01H)4x7I^&KQVgtFnV+;[Pc>[m4k//,]1?#`VY[Jr*3&&slRfLiVZJ:]?=K3Sw=[$=uRB?3xk48@aege0jT6'N#(q%.O=?2S]u*(m<-" + "V8J'(1)G][68hW$5'q[GC&5j`TE?m'esFGNRM)j,ffZ?-qx8;->g4t*:CIP/[Qap7/9'#(1sao7w-.qNUdkJ)tCF&#B^;xGvn2r9FEPFFFcL@.iFNkTve$m%#QvQS8U@)2Z+3K:AKM5i" + "sZ88+dKQ)W6>J%CL`.d*(B`-n8D9oK-XV1q['-5k'cAZ69e;D_?$ZPP&s^+7])$*$#@QYi9,5P r+$%CE=68>K8r0=dSC%%(@p7" + ".m7jilQ02'0-VWAgTlGW'b)Tq7VT9q^*^$$.:&N@@" + "$&)WHtPm*5_rO0&e%K&#-30j(E4#'Zb.o/(Tpm$>K'f@[PvFl,hfINTNU6u'0pao7%XUp9]5.>%h`8_=VYbxuel.NTSsJfLacFu3B'lQSu/m6-Oqem8T+oE--$0a/k]uj9EwsG>%veR*" + "hv^BFpQj:K'#SJ,sB-'#](j.Lg92rTw-*n%@/;39rrJF,l#qV%OrtBeC6/,;qB3ebNW[?,Hqj2L.1NP&GjUR=1D8QaS3Up&@*9wP?+lo7b?@%'k4`p0Z$22%K3+iCZj?XJN4Nm&+YF]u" + "@-W$U%VEQ/,,>>#)D#%8cY#YZ?=,`Wdxu/ae&#" + "w6)R89tI#6@s'(6Bf7a&?S=^ZI_kS&ai`&=tE72L_D,;^R)7[$so8lKN%5/$(vdfq7+ebA#" + "u1p]ovUKW&Y%q]'>$1@-[xfn$7ZTp7mM,G,Ko7a&Gu%G[RMxJs[0MM%wci.LFDK)(%:_i2B5CsR8&9Z&#=mPEnm0f`<&c)QL5uJ#%u%lJj+D-r;BoFDoS97h5g)E#o:&S4weDF,9^Hoe`h*L+_a*NrLW-1pG_&2UdB8" + "6e%B/:=>)N4xeW.*wft-;$'58-ESqr#U`'6AQ]m&6/`Z>#S?YY#Vc;r7U2&326d=w&H####?TZ`*4?&.MK?LP8Vxg>$[QXc%QJv92.(Db*B)gb*BM9dM*hJMAo*c&#" + "b0v=Pjer]$gG&JXDf->'StvU7505l9$AFvgYRI^&<^b68?j#q9QX4SM'RO#&sL1IM.rJfLUAj221]d##DW=m83u5;'bYx,*Sl0hL(W;;$doB&O/TQ:(Z^xBdLjLV#*8U_72Lh+2Q8Cj0i:6hp&$C/:p(HK>T8Y[gHQ4`4)'$Ab(Nof%V'8hL&#SfD07&6D@M.*J:;$-rv29'M]8qMv-tLp,'886iaC=Hb*YJoKJ,(j%K=H`K.v9HggqBIiZu'QvBT.#=)0ukruV&.)3=(^1`o*Pj4<-#MJ+gLq9-##@HuZPN0]u:h7.T..G:;$/Usj(T7`Q8tT72LnYl<-qx8;-HV7Q-&Xdx%1a,hC=0u+HlsV>nuIQL-5" + "_>@kXQtMacfD.m-VAb8;IReM3$wf0''hra*so568'Ip&vRs849'MRYSp%:t:h5qSgwpEr$B>Q,;s(C#$)`svQuF$##-D,##,g68@2[T;.XSdN9Qe)rpt._K-#5wF)sP'##p#C0c%-Gb%" + "hd+<-j'Ai*x&&HMkT]C'OSl##5RG[JXaHN;d'uA#x._U;.`PU@(Z3dt4r152@:v,'R.Sj'w#0<-;kPI)FfJ&#AYJ&#//)>-k=m=*XnK$>=)72L]0I%>.G690a:$##<,);?;72#?x9+d;" + "^V'9;jY@;)br#q^YQpx:X#Te$Z^'=-=bGhLf:D6&bNwZ9-ZD#n^9HhLMr5G;']d&6'wYmTFmLq9wI>P(9mI[>kC-ekLC/R&CH+s'B;K-M6$EB%is00:" + "+A4[7xks.LrNk0&E)wILYF@2L'0Nb$+pv<(2.768/FrY&h$^3i&@+G%JT'<-,v`3;_)I9M^AE]CN?Cl2AZg+%4iTpT3$U4O]GKx'm9)b@p7YsvK3w^YR-" + "CdQ*:Ir<($u&)#(&?L9Rg3H)4fiEp^iI9O8KnTj,]H?D*r7'M;PwZ9K0E^k&-cpI;.p/6_vwoFMV<->#%Xi.LxVnrU(4&8/P+:hLSKj$#U%]49t'I:rgMi'FL@a:0Y-uA[39',(vbma*" + "hU%<-SRF`Tt:542R_VV$p@[p8DV[A,?1839FWdFTi1O*H&#(AL8[_P%.M>v^-))qOT*F5Cq0`Ye%+$B6i:7@0IXSsDiWP,##P`%/L-" + "S(qw%sf/@%#B6;/U7K]uZbi^Oc^2n%t<)'mEVE''n`WnJra$^TKvX5B>;_aSEK',(hwa0:i4G?.Bci.(X[?b*($,=-n<.Q%`(X=?+@Am*Js0&=3bh8K]mL69=Lb,OcZV/);TTm8VI;?%OtJ<(b4mq7M6:u?KRdFl*:xP?Yb.5)%w_I?7uk5JC+FS(m#i'k.'a0i)9<7b'fs'59hq$*5Uhv##pi^8+hIEBF`nvo`;'l0.^S1<-wUK2/Coh58KKhLj" + "M=SO*rfO`+qC`W-On.=AJ56>>i2@2LH6A:&5q`?9I3@@'04&p2/LVa*T-4<-i3;M9UvZd+N7>b*eIwg:CC)c<>nO&#$(>.Z-I&J(Q0Hd5Q%7Co-b`-cP)hI;*_F]u`Rb[.j8_Q/<&>uu+VsH$sM9TA%?)(vmJ80),P7E>)tjD%2L=-t#fK[%`v=Q8WlA2);Sa" + ">gXm8YB`1d@K#n]76-a$U,mF%Ul:#/'xoFM9QX-$.QN'>" + "[%$Z$uF6pA6Ki2O5:8w*vP1<-1`[G,)-m#>0`P&#eb#.3i)rtB61(o'$?X3B2Qft^ae_5tKL9MUe9b*sLEQ95C&`=G?@Mj=wh*'3E>=-<)Gt*Iw)'QG:`@I" + "wOf7&]1i'S01B+Ev/Nac#9S;=;YQpg_6U`*kVY39xK,[/6Aj7:'1Bm-_1EYfa1+o&o4hp7KN_Q(OlIo@S%;jVdn0'1h19w,WQhLI)3S#f$2(eb,jr*b;3Vw]*7NH%$c4Vs,eD9>XW8?N]o+(*pgC%/72LV-uW%iewS8W6m2rtCpo'RS1R84=@paTKt)>=%&1[)*vp'u+x,VrwN;&]kuO9JDbg=pO$J*.jVe;u'm0dr9l,<*wMK*Oe=g8lV_KEBFkO'oU]^=[-792#ok,)" + "i]lR8qQ2oA8wcRCZ^7w/Njh;?.stX?Q1>S1q4Bn$)K1<-rGdO'$Wr.Lc.CG)$/*JL4tNR/,SVO3,aUw'DJN:)Ss;wGn9A32ijw%FL+Z0Fn.U9;reSq)bmI32U==5ALuG&#Vf1398/pVo" + "1*c-(aY168o<`JsSbk-,1N;$>0:OUas(3:8Z972LSfF8eb=c-;>SPw7.6hn3m`9^Xkn(r.qS[0;T%&Qc=+STRxX'q1BNk3&*eu2;&8q$&x>Q#Q7^Tf+6<(d%ZVmj2bDi%.3L2n+4W'$P" + "iDDG)g,r%+?,$@?uou5tSe2aN_AQU*'IAO" + "URQ##V^Fv-XFbGM7Fl(N<3DhLGF%q.1rC$#:T__&Pi68%0xi_&[qFJ(77j_&JWoF.V735&T,[R*:xFR*K5>>#`bW-?4Ne_&6Ne_&6Ne_&n`kr-#GJcM6X;uM6X;uM(.a..^2TkL%oR(#" + ";u.T%fAr%4tJ8&><1=GHZ_+m9/#H1F^R#SC#*N=BA9(D?v[UiFY>>^8p,KKF.W]L29uLkLlu/+4T" + "w$)F./^n3+rlo+DB;5sIYGNk+i1t-69Jg--0pao7Sm#K)pdHW&;LuDNH@H>#/X-TI(;P>#,Gc>#0Su>#4`1?#8lC?#xL$#B.`$#F:r$#JF.%#NR@%#R_R%#Vke%#Zww%#_-4^Rh%Sflr-k'MS.o?.5/sWel/wpEM0%3'/1)K^f1-d>G21&v(35>V`39V7A4=onx4" + "A1OY5EI0;6Ibgr6M$HS7Q<)58C5w,;WoA*#[%T*#`1g*#d=#+#hI5+#lUG+#pbY+#tnl+#x$),#&1;,#*=M,#.I`,#2Ur,#6b.-#;w[H#iQtA#m^0B#qjBB#uvTB##-hB#'9$C#+E6C#" + "/QHC#3^ZC#7jmC#;v)D#?,)4kMYD4lVu`4m`:&5niUA5@(A5BA1]PBB:xlBCC=2CDLXMCEUtiCf&0g2'tN?PGT4CPGT4CPGT4CPGT4CPGT4CPGT4CPGT4CP" + "GT4CPGT4CPGT4CPGT4CPGT4CPGT4CP-qekC`.9kEg^+F$kwViFJTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5KTB&5o,^<-28ZI'O?;xp" + "O?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xpO?;xp;7q-#lLYI:xvD=#"; + +static const char* GetDefaultCompressedFontDataTTFBase85() +{ + return proggy_clean_ttf_compressed_data_base85; +} + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imgui_freetype.cpp b/external/lumin/thirdparty/imgui/imgui_freetype.cpp new file mode 100644 index 0000000..a78bd5e --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui_freetype.cpp @@ -0,0 +1,950 @@ +// dear imgui: FreeType font builder (used as a replacement for the stb_truetype builder) +// (code) + +// Get the latest version at https://github.com/ocornut/imgui/tree/master/misc/freetype +// Original code by @vuhdo (Aleksei Skriabin). Improvements by @mikesart. Maintained since 2019 by @ocornut. + +// CHANGELOG +// (minor and older changes stripped away, please see git history for details) +// 2023/11/13: added support for ImFontConfig::RasterizationDensity field for scaling render density without scaling metrics. +// 2023/08/01: added support for SVG fonts, enable by using '#define IMGUI_ENABLE_FREETYPE_LUNASVG' (#6591) +// 2023/01/04: fixed a packing issue which in some occurrences would prevent large amount of glyphs from being packed correctly. +// 2021/08/23: fixed crash when FT_Render_Glyph() fails to render a glyph and returns NULL. +// 2021/03/05: added ImGuiFreeTypeBuilderFlags_Bitmap to load bitmap glyphs. +// 2021/03/02: set 'atlas->TexPixelsUseColors = true' to help some backends with deciding of a prefered texture format. +// 2021/01/28: added support for color-layered glyphs via ImGuiFreeTypeBuilderFlags_LoadColor (require Freetype 2.10+). +// 2021/01/26: simplified integration by using '#define IMGUI_ENABLE_FREETYPE'. renamed ImGuiFreeType::XXX flags to ImGuiFreeTypeBuilderFlags_XXX for consistency with other API. removed ImGuiFreeType::BuildFontAtlas(). +// 2020/06/04: fix for rare case where FT_Get_Char_Index() succeed but FT_Load_Glyph() fails. +// 2019/02/09: added RasterizerFlags::Monochrome flag to disable font anti-aliasing (combine with ::MonoHinting for best results!) +// 2019/01/15: added support for imgui allocators + added FreeType only override function SetAllocatorFunctions(). +// 2019/01/10: re-factored to match big update in STB builder. fixed texture height waste. fixed redundant glyphs when merging. support for glyph padding. +// 2018/06/08: added support for ImFontConfig::GlyphMinAdvanceX, GlyphMaxAdvanceX. +// 2018/02/04: moved to main imgui repository (away from http://www.github.com/ocornut/imgui_club) +// 2018/01/22: fix for addition of ImFontAtlas::TexUvscale member. +// 2017/10/22: minor inconsequential change to match change in master (removed an unnecessary statement). +// 2017/09/26: fixes for imgui internal changes. +// 2017/08/26: cleanup, optimizations, support for ImFontConfig::RasterizerFlags, ImFontConfig::RasterizerMultiply. +// 2017/08/16: imported from https://github.com/Vuhdo/imgui_freetype into http://www.github.com/ocornut/imgui_club, updated for latest changes in ImFontAtlas, minor tweaks. + +// About Gamma Correct Blending: +// - FreeType assumes blending in linear space rather than gamma space. +// - See https://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#FT_Render_Glyph +// - For correct results you need to be using sRGB and convert to linear space in the pixel shader output. +// - The default dear imgui styles will be impacted by this change (alpha values will need tweaking). + +// FIXME: cfg.OversampleH, OversampleV are not supported (but perhaps not so necessary with this rasterizer). + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_freetype.h" +#include "imgui_internal.h" // ImMin,ImMax,ImFontAtlasBuild*, +#include +#include +#include FT_FREETYPE_H // +#include FT_MODULE_H // +#include FT_GLYPH_H // +#include FT_SYNTHESIS_H // + +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG +#include FT_OTSVG_H // +#include FT_BBOX_H // +#include +#if !((FREETYPE_MAJOR >= 2) && (FREETYPE_MINOR >= 12)) +#error IMGUI_ENABLE_FREETYPE_LUNASVG requires FreeType version >= 2.12 +#endif +#endif + +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 4505) // unreferenced local function has been removed (stb stuff) +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +#ifdef __GNUC__ +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wunused-function" // warning: 'xxxx' defined but not used +#ifndef __clang__ +#pragma GCC diagnostic ignored "-Wsubobject-linkage" // warning: 'xxxx' has a field 'xxxx' whose type uses the anonymous namespace +#endif +#endif + +//------------------------------------------------------------------------- +// Data +//------------------------------------------------------------------------- + +// Default memory allocators +static void* ImGuiFreeTypeDefaultAllocFunc(size_t size, void* user_data) { IM_UNUSED(user_data); return IM_ALLOC(size); } +static void ImGuiFreeTypeDefaultFreeFunc(void* ptr, void* user_data) { IM_UNUSED(user_data); IM_FREE(ptr); } + +// Current memory allocators +static void* (*GImGuiFreeTypeAllocFunc)(size_t size, void* user_data) = ImGuiFreeTypeDefaultAllocFunc; +static void (*GImGuiFreeTypeFreeFunc)(void* ptr, void* user_data) = ImGuiFreeTypeDefaultFreeFunc; +static void* GImGuiFreeTypeAllocatorUserData = nullptr; + +// Lunasvg support +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG +static FT_Error ImGuiLunasvgPortInit(FT_Pointer* state); +static void ImGuiLunasvgPortFree(FT_Pointer* state); +static FT_Error ImGuiLunasvgPortRender(FT_GlyphSlot slot, FT_Pointer* _state); +static FT_Error ImGuiLunasvgPortPresetSlot(FT_GlyphSlot slot, FT_Bool cache, FT_Pointer* _state); +#endif + +//------------------------------------------------------------------------- +// Code +//------------------------------------------------------------------------- + +namespace +{ + // Glyph metrics: + // -------------- + // + // xmin xmax + // | | + // |<-------- width -------->| + // | | + // | +-------------------------+----------------- ymax + // | | ggggggggg ggggg | ^ ^ + // | | g:::::::::ggg::::g | | | + // | | g:::::::::::::::::g | | | + // | | g::::::ggggg::::::gg | | | + // | | g:::::g g:::::g | | | + // offsetX -|-------->| g:::::g g:::::g | offsetY | + // | | g:::::g g:::::g | | | + // | | g::::::g g:::::g | | | + // | | g:::::::ggggg:::::g | | | + // | | g::::::::::::::::g | | height + // | | gg::::::::::::::g | | | + // baseline ---*---------|---- gggggggg::::::g-----*-------- | + // / | | g:::::g | | + // origin | | gggggg g:::::g | | + // | | g:::::gg gg:::::g | | + // | | g::::::ggg:::::::g | | + // | | gg:::::::::::::g | | + // | | ggg::::::ggg | | + // | | gggggg | v + // | +-------------------------+----------------- ymin + // | | + // |------------- advanceX ----------->| + + // A structure that describe a glyph. + struct GlyphInfo + { + int Width; // Glyph's width in pixels. + int Height; // Glyph's height in pixels. + FT_Int OffsetX; // The distance from the origin ("pen position") to the left of the glyph. + FT_Int OffsetY; // The distance from the origin to the top of the glyph. This is usually a value < 0. + float AdvanceX; // The distance from the origin to the origin of the next glyph. This is usually a value > 0. + bool IsColored; // The glyph is colored + }; + + // Font parameters and metrics. + struct FontInfo + { + uint32_t PixelHeight; // Size this font was generated with. + float Ascender; // The pixel extents above the baseline in pixels (typically positive). + float Descender; // The extents below the baseline in pixels (typically negative). + float LineSpacing; // The baseline-to-baseline distance. Note that it usually is larger than the sum of the ascender and descender taken as absolute values. There is also no guarantee that no glyphs extend above or below subsequent baselines when using this distance. Think of it as a value the designer of the font finds appropriate. + float LineGap; // The spacing in pixels between one row's descent and the next row's ascent. + float MaxAdvanceWidth; // This field gives the maximum horizontal cursor advance for all glyphs in the font. + }; + + // FreeType glyph rasterizer. + // NB: No ctor/dtor, explicitly call Init()/Shutdown() + struct FreeTypeFont + { + bool InitFont(FT_Library ft_library, const ImFontConfig& cfg, unsigned int extra_user_flags); // Initialize from an external data buffer. Doesn't copy data, and you must ensure it stays valid up to this object lifetime. + void CloseFont(); + void SetPixelHeight(int pixel_height); // Change font pixel size. All following calls to RasterizeGlyph() will use this size + const FT_Glyph_Metrics* LoadGlyph(uint32_t in_codepoint); + const FT_Bitmap* RenderGlyphAndGetInfo(GlyphInfo* out_glyph_info); + void BlitGlyph(const FT_Bitmap* ft_bitmap, uint32_t* dst, uint32_t dst_pitch, unsigned char* multiply_table = nullptr); + ~FreeTypeFont() { CloseFont(); } + + // [Internals] + FontInfo Info; // Font descriptor of the current font. + FT_Face Face; + unsigned int UserFlags; // = ImFontConfig::RasterizerFlags + FT_Int32 LoadFlags; + FT_Render_Mode RenderMode; + float RasterizationDensity; + float InvRasterizationDensity; + }; + + // From SDL_ttf: Handy routines for converting from fixed point + #define FT_CEIL(X) (((X + 63) & -64) / 64) + + bool FreeTypeFont::InitFont(FT_Library ft_library, const ImFontConfig& cfg, unsigned int extra_font_builder_flags) + { + FT_Error error = FT_New_Memory_Face(ft_library, (uint8_t*)cfg.FontData, (uint32_t)cfg.FontDataSize, (uint32_t)cfg.FontNo, &Face); + if (error != 0) + return false; + error = FT_Select_Charmap(Face, FT_ENCODING_UNICODE); + if (error != 0) + return false; + + // Convert to FreeType flags (NB: Bold and Oblique are processed separately) + UserFlags = cfg.FontBuilderFlags | extra_font_builder_flags; + + LoadFlags = 0; + if ((UserFlags & ImGuiFreeTypeBuilderFlags_Bitmap) == 0) + LoadFlags |= FT_LOAD_NO_BITMAP; + + if (UserFlags & ImGuiFreeTypeBuilderFlags_NoHinting) + LoadFlags |= FT_LOAD_NO_HINTING; + if (UserFlags & ImGuiFreeTypeBuilderFlags_NoAutoHint) + LoadFlags |= FT_LOAD_NO_AUTOHINT; + if (UserFlags & ImGuiFreeTypeBuilderFlags_ForceAutoHint) + LoadFlags |= FT_LOAD_FORCE_AUTOHINT; + if (UserFlags & ImGuiFreeTypeBuilderFlags_LightHinting) + LoadFlags |= FT_LOAD_TARGET_LIGHT; + else if (UserFlags & ImGuiFreeTypeBuilderFlags_MonoHinting) + LoadFlags |= FT_LOAD_TARGET_MONO; + else + LoadFlags |= FT_LOAD_TARGET_NORMAL; + + if (UserFlags & ImGuiFreeTypeBuilderFlags_Monochrome) + RenderMode = FT_RENDER_MODE_MONO; + else + RenderMode = FT_RENDER_MODE_NORMAL; + + if (UserFlags & ImGuiFreeTypeBuilderFlags_LoadColor) + LoadFlags |= FT_LOAD_COLOR; + + RasterizationDensity = cfg.RasterizerDensity; + InvRasterizationDensity = 1.0f / RasterizationDensity; + + memset(&Info, 0, sizeof(Info)); + SetPixelHeight((uint32_t)cfg.SizePixels); + + return true; + } + + void FreeTypeFont::CloseFont() + { + if (Face) + { + FT_Done_Face(Face); + Face = nullptr; + } + } + + void FreeTypeFont::SetPixelHeight(int pixel_height) + { + // Vuhdo: I'm not sure how to deal with font sizes properly. As far as I understand, currently ImGui assumes that the 'pixel_height' + // is a maximum height of an any given glyph, i.e. it's the sum of font's ascender and descender. Seems strange to me. + // NB: FT_Set_Pixel_Sizes() doesn't seem to get us the same result. + FT_Size_RequestRec req; + req.type = (UserFlags & ImGuiFreeTypeBuilderFlags_Bitmap) ? FT_SIZE_REQUEST_TYPE_NOMINAL : FT_SIZE_REQUEST_TYPE_REAL_DIM; + req.width = 0; + req.height = (uint32_t)(pixel_height * 64 * RasterizationDensity); + req.horiResolution = 0; + req.vertResolution = 0; + FT_Request_Size(Face, &req); + + // Update font info + FT_Size_Metrics metrics = Face->size->metrics; + Info.PixelHeight = (uint32_t)(pixel_height * InvRasterizationDensity); + Info.Ascender = (float)FT_CEIL(metrics.ascender) * InvRasterizationDensity; + Info.Descender = (float)FT_CEIL(metrics.descender) * InvRasterizationDensity; + Info.LineSpacing = (float)FT_CEIL(metrics.height) * InvRasterizationDensity; + Info.LineGap = (float)FT_CEIL(metrics.height - metrics.ascender + metrics.descender) * InvRasterizationDensity; + Info.MaxAdvanceWidth = (float)FT_CEIL(metrics.max_advance) * InvRasterizationDensity; + } + + const FT_Glyph_Metrics* FreeTypeFont::LoadGlyph(uint32_t codepoint) + { + uint32_t glyph_index = FT_Get_Char_Index(Face, codepoint); + if (glyph_index == 0) + return nullptr; + + // If this crash for you: FreeType 2.11.0 has a crash bug on some bitmap/colored fonts. + // - https://gitlab.freedesktop.org/freetype/freetype/-/issues/1076 + // - https://github.com/ocornut/imgui/issues/4567 + // - https://github.com/ocornut/imgui/issues/4566 + // You can use FreeType 2.10, or the patched version of 2.11.0 in VcPkg, or probably any upcoming FreeType version. + FT_Error error = FT_Load_Glyph(Face, glyph_index, LoadFlags); + if (error) + return nullptr; + + // Need an outline for this to work + FT_GlyphSlot slot = Face->glyph; +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG + IM_ASSERT(slot->format == FT_GLYPH_FORMAT_OUTLINE || slot->format == FT_GLYPH_FORMAT_BITMAP || slot->format == FT_GLYPH_FORMAT_SVG); +#else +#if ((FREETYPE_MAJOR >= 2) && (FREETYPE_MINOR >= 12)) + IM_ASSERT(slot->format != FT_GLYPH_FORMAT_SVG && "The font contains SVG glyphs, you'll need to enable IMGUI_ENABLE_FREETYPE_LUNASVG in imconfig.h and install required libraries in order to use this font"); +#endif + IM_ASSERT(slot->format == FT_GLYPH_FORMAT_OUTLINE || slot->format == FT_GLYPH_FORMAT_BITMAP); +#endif // IMGUI_ENABLE_FREETYPE_LUNASVG + + // Apply convenience transform (this is not picking from real "Bold"/"Italic" fonts! Merely applying FreeType helper transform. Oblique == Slanting) + if (UserFlags & ImGuiFreeTypeBuilderFlags_Bold) + FT_GlyphSlot_Embolden(slot); + if (UserFlags & ImGuiFreeTypeBuilderFlags_Oblique) + { + FT_GlyphSlot_Oblique(slot); + //FT_BBox bbox; + //FT_Outline_Get_BBox(&slot->outline, &bbox); + //slot->metrics.width = bbox.xMax - bbox.xMin; + //slot->metrics.height = bbox.yMax - bbox.yMin; + } + + return &slot->metrics; + } + + const FT_Bitmap* FreeTypeFont::RenderGlyphAndGetInfo(GlyphInfo* out_glyph_info) + { + FT_GlyphSlot slot = Face->glyph; + FT_Error error = FT_Render_Glyph(slot, RenderMode); + if (error != 0) + return nullptr; + + FT_Bitmap* ft_bitmap = &Face->glyph->bitmap; + out_glyph_info->Width = (int)ft_bitmap->width; + out_glyph_info->Height = (int)ft_bitmap->rows; + out_glyph_info->OffsetX = Face->glyph->bitmap_left; + out_glyph_info->OffsetY = -Face->glyph->bitmap_top; + out_glyph_info->AdvanceX = (float)FT_CEIL(slot->advance.x); + out_glyph_info->IsColored = (ft_bitmap->pixel_mode == FT_PIXEL_MODE_BGRA); + + return ft_bitmap; + } + + void FreeTypeFont::BlitGlyph(const FT_Bitmap* ft_bitmap, uint32_t* dst, uint32_t dst_pitch, unsigned char* multiply_table) + { + IM_ASSERT(ft_bitmap != nullptr); + const uint32_t w = ft_bitmap->width; + const uint32_t h = ft_bitmap->rows; + const uint8_t* src = ft_bitmap->buffer; + const uint32_t src_pitch = ft_bitmap->pitch; + + switch (ft_bitmap->pixel_mode) + { + case FT_PIXEL_MODE_GRAY: // Grayscale image, 1 byte per pixel. + { + if (multiply_table == nullptr) + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + for (uint32_t x = 0; x < w; x++) + dst[x] = IM_COL32(255, 255, 255, src[x]); + } + else + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + for (uint32_t x = 0; x < w; x++) + dst[x] = IM_COL32(255, 255, 255, multiply_table[src[x]]); + } + break; + } + case FT_PIXEL_MODE_MONO: // Monochrome image, 1 bit per pixel. The bits in each byte are ordered from MSB to LSB. + { + uint8_t color0 = multiply_table ? multiply_table[0] : 0; + uint8_t color1 = multiply_table ? multiply_table[255] : 255; + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + { + uint8_t bits = 0; + const uint8_t* bits_ptr = src; + for (uint32_t x = 0; x < w; x++, bits <<= 1) + { + if ((x & 7) == 0) + bits = *bits_ptr++; + dst[x] = IM_COL32(255, 255, 255, (bits & 0x80) ? color1 : color0); + } + } + break; + } + case FT_PIXEL_MODE_BGRA: + { + // FIXME: Converting pre-multiplied alpha to straight. Doesn't smell good. + #define DE_MULTIPLY(color, alpha) (ImU32)(255.0f * (float)color / (float)alpha + 0.5f) + if (multiply_table == nullptr) + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + for (uint32_t x = 0; x < w; x++) + { + uint8_t r = src[x * 4 + 2], g = src[x * 4 + 1], b = src[x * 4], a = src[x * 4 + 3]; + dst[x] = IM_COL32(DE_MULTIPLY(r, a), DE_MULTIPLY(g, a), DE_MULTIPLY(b, a), a); + } + } + else + { + for (uint32_t y = 0; y < h; y++, src += src_pitch, dst += dst_pitch) + { + for (uint32_t x = 0; x < w; x++) + { + uint8_t r = src[x * 4 + 2], g = src[x * 4 + 1], b = src[x * 4], a = src[x * 4 + 3]; + dst[x] = IM_COL32(multiply_table[DE_MULTIPLY(r, a)], multiply_table[DE_MULTIPLY(g, a)], multiply_table[DE_MULTIPLY(b, a)], multiply_table[a]); + } + } + } + #undef DE_MULTIPLY + break; + } + default: + IM_ASSERT(0 && "FreeTypeFont::BlitGlyph(): Unknown bitmap pixel mode!"); + } + } +} // namespace + +#ifndef STB_RECT_PACK_IMPLEMENTATION // in case the user already have an implementation in the _same_ compilation unit (e.g. unity builds) +#ifndef IMGUI_DISABLE_STB_RECT_PACK_IMPLEMENTATION +#define STBRP_ASSERT(x) do { IM_ASSERT(x); } while (0) +#define STBRP_STATIC +#define STB_RECT_PACK_IMPLEMENTATION +#endif +#ifdef IMGUI_STB_RECT_PACK_FILENAME +#include IMGUI_STB_RECT_PACK_FILENAME +#else +#include "imstb_rectpack.h" +#endif +#endif + +struct ImFontBuildSrcGlyphFT +{ + GlyphInfo Info; + uint32_t Codepoint; + unsigned int* BitmapData; // Point within one of the dst_tmp_bitmap_buffers[] array + + ImFontBuildSrcGlyphFT() { memset((void*)this, 0, sizeof(*this)); } +}; + +struct ImFontBuildSrcDataFT +{ + FreeTypeFont Font; + stbrp_rect* Rects; // Rectangle to pack. We first fill in their size and the packer will give us their position. + const ImWchar* SrcRanges; // Ranges as requested by user (user is allowed to request too much, e.g. 0x0020..0xFFFF) + int DstIndex; // Index into atlas->Fonts[] and dst_tmp_array[] + int GlyphsHighest; // Highest requested codepoint + int GlyphsCount; // Glyph count (excluding missing glyphs and glyphs already set by an earlier source font) + ImBitVector GlyphsSet; // Glyph bit map (random access, 1-bit per codepoint. This will be a maximum of 8KB) + ImVector GlyphsList; +}; + +// Temporary data for one destination ImFont* (multiple source fonts can be merged into one destination ImFont) +struct ImFontBuildDstDataFT +{ + int SrcCount; // Number of source fonts targeting this destination font. + int GlyphsHighest; + int GlyphsCount; + ImBitVector GlyphsSet; // This is used to resolve collision when multiple sources are merged into a same destination font. +}; + +bool ImFontAtlasBuildWithFreeTypeEx(FT_Library ft_library, ImFontAtlas* atlas, unsigned int extra_flags) +{ + IM_ASSERT(atlas->ConfigData.Size > 0); + + ImFontAtlasBuildInit(atlas); + + // Clear atlas + atlas->TexID = 0; + atlas->TexWidth = atlas->TexHeight = 0; + atlas->TexUvScale = ImVec2(0.0f, 0.0f); + atlas->TexUvWhitePixel = ImVec2(0.0f, 0.0f); + atlas->ClearTexData(); + + // Temporary storage for building + bool src_load_color = false; + ImVector src_tmp_array; + ImVector dst_tmp_array; + src_tmp_array.resize(atlas->ConfigData.Size); + dst_tmp_array.resize(atlas->Fonts.Size); + memset((void*)src_tmp_array.Data, 0, (size_t)src_tmp_array.size_in_bytes()); + memset((void*)dst_tmp_array.Data, 0, (size_t)dst_tmp_array.size_in_bytes()); + + // 1. Initialize font loading structure, check font data validity + for (int src_i = 0; src_i < atlas->ConfigData.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + FreeTypeFont& font_face = src_tmp.Font; + IM_ASSERT(cfg.DstFont && (!cfg.DstFont->IsLoaded() || cfg.DstFont->ContainerAtlas == atlas)); + + // Find index from cfg.DstFont (we allow the user to set cfg.DstFont. Also it makes casual debugging nicer than when storing indices) + src_tmp.DstIndex = -1; + for (int output_i = 0; output_i < atlas->Fonts.Size && src_tmp.DstIndex == -1; output_i++) + if (cfg.DstFont == atlas->Fonts[output_i]) + src_tmp.DstIndex = output_i; + IM_ASSERT(src_tmp.DstIndex != -1); // cfg.DstFont not pointing within atlas->Fonts[] array? + if (src_tmp.DstIndex == -1) + return false; + + // Load font + if (!font_face.InitFont(ft_library, cfg, extra_flags)) + return false; + + // Measure highest codepoints + src_load_color |= (cfg.FontBuilderFlags & ImGuiFreeTypeBuilderFlags_LoadColor) != 0; + ImFontBuildDstDataFT& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.SrcRanges = cfg.GlyphRanges ? cfg.GlyphRanges : atlas->GetGlyphRangesDefault(); + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + { + // Check for valid range. This may also help detect *some* dangling pointers, because a common + // user error is to setup ImFontConfig::GlyphRanges with a pointer to data that isn't persistent. + IM_ASSERT(src_range[0] <= src_range[1]); + src_tmp.GlyphsHighest = ImMax(src_tmp.GlyphsHighest, (int)src_range[1]); + } + dst_tmp.SrcCount++; + dst_tmp.GlyphsHighest = ImMax(dst_tmp.GlyphsHighest, src_tmp.GlyphsHighest); + } + + // 2. For every requested codepoint, check for their presence in the font data, and handle redundancy or overlaps between source fonts to avoid unused glyphs. + int total_glyphs_count = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + ImFontBuildDstDataFT& dst_tmp = dst_tmp_array[src_tmp.DstIndex]; + src_tmp.GlyphsSet.Create(src_tmp.GlyphsHighest + 1); + if (dst_tmp.GlyphsSet.Storage.empty()) + dst_tmp.GlyphsSet.Create(dst_tmp.GlyphsHighest + 1); + + for (const ImWchar* src_range = src_tmp.SrcRanges; src_range[0] && src_range[1]; src_range += 2) + for (int codepoint = src_range[0]; codepoint <= (int)src_range[1]; codepoint++) + { + if (dst_tmp.GlyphsSet.TestBit(codepoint)) // Don't overwrite existing glyphs. We could make this an option (e.g. MergeOverwrite) + continue; + uint32_t glyph_index = FT_Get_Char_Index(src_tmp.Font.Face, codepoint); // It is actually in the font? (FIXME-OPT: We are not storing the glyph_index..) + if (glyph_index == 0) + continue; + + // Add to avail set/counters + src_tmp.GlyphsCount++; + dst_tmp.GlyphsCount++; + src_tmp.GlyphsSet.SetBit(codepoint); + dst_tmp.GlyphsSet.SetBit(codepoint); + total_glyphs_count++; + } + } + + // 3. Unpack our bit map into a flat list (we now have all the Unicode points that we know are requested _and_ available _and_ not overlapping another) + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + src_tmp.GlyphsList.reserve(src_tmp.GlyphsCount); + + IM_ASSERT(sizeof(src_tmp.GlyphsSet.Storage.Data[0]) == sizeof(ImU32)); + const ImU32* it_begin = src_tmp.GlyphsSet.Storage.begin(); + const ImU32* it_end = src_tmp.GlyphsSet.Storage.end(); + for (const ImU32* it = it_begin; it < it_end; it++) + if (ImU32 entries_32 = *it) + for (ImU32 bit_n = 0; bit_n < 32; bit_n++) + if (entries_32 & ((ImU32)1 << bit_n)) + { + ImFontBuildSrcGlyphFT src_glyph; + src_glyph.Codepoint = (ImWchar)(((it - it_begin) << 5) + bit_n); + //src_glyph.GlyphIndex = 0; // FIXME-OPT: We had this info in the previous step and lost it.. + src_tmp.GlyphsList.push_back(src_glyph); + } + src_tmp.GlyphsSet.Clear(); + IM_ASSERT(src_tmp.GlyphsList.Size == src_tmp.GlyphsCount); + } + for (int dst_i = 0; dst_i < dst_tmp_array.Size; dst_i++) + dst_tmp_array[dst_i].GlyphsSet.Clear(); + dst_tmp_array.clear(); + + // Allocate packing character data and flag packed characters buffer as non-packed (x0=y0=x1=y1=0) + // (We technically don't need to zero-clear buf_rects, but let's do it for the sake of sanity) + ImVector buf_rects; + buf_rects.resize(total_glyphs_count); + memset(buf_rects.Data, 0, (size_t)buf_rects.size_in_bytes()); + + // Allocate temporary rasterization data buffers. + // We could not find a way to retrieve accurate glyph size without rendering them. + // (e.g. slot->metrics->width not always matching bitmap->width, especially considering the Oblique transform) + // We allocate in chunks of 256 KB to not waste too much extra memory ahead. Hopefully users of FreeType won't mind the temporary allocations. + const int BITMAP_BUFFERS_CHUNK_SIZE = 256 * 1024; + int buf_bitmap_current_used_bytes = 0; + ImVector buf_bitmap_buffers; + buf_bitmap_buffers.push_back((unsigned char*)IM_ALLOC(BITMAP_BUFFERS_CHUNK_SIZE)); + + // 4. Gather glyphs sizes so we can pack them in our virtual canvas. + // 8. Render/rasterize font characters into the texture + int total_surface = 0; + int buf_rects_out_n = 0; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + ImFontConfig& cfg = atlas->ConfigData[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + src_tmp.Rects = &buf_rects[buf_rects_out_n]; + buf_rects_out_n += src_tmp.GlyphsCount; + + // Compute multiply table if requested + const bool multiply_enabled = (cfg.RasterizerMultiply != 1.0f); + unsigned char multiply_table[256]; + if (multiply_enabled) + ImFontAtlasBuildMultiplyCalcLookupTable(multiply_table, cfg.RasterizerMultiply); + + // Gather the sizes of all rectangles we will need to pack + const int padding = atlas->TexGlyphPadding; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsList.Size; glyph_i++) + { + ImFontBuildSrcGlyphFT& src_glyph = src_tmp.GlyphsList[glyph_i]; + + const FT_Glyph_Metrics* metrics = src_tmp.Font.LoadGlyph(src_glyph.Codepoint); + if (metrics == nullptr) + continue; + + // Render glyph into a bitmap (currently held by FreeType) + const FT_Bitmap* ft_bitmap = src_tmp.Font.RenderGlyphAndGetInfo(&src_glyph.Info); + if (ft_bitmap == nullptr) + continue; + + // Allocate new temporary chunk if needed + const int bitmap_size_in_bytes = src_glyph.Info.Width * src_glyph.Info.Height * 4; + if (buf_bitmap_current_used_bytes + bitmap_size_in_bytes > BITMAP_BUFFERS_CHUNK_SIZE) + { + buf_bitmap_current_used_bytes = 0; + buf_bitmap_buffers.push_back((unsigned char*)IM_ALLOC(BITMAP_BUFFERS_CHUNK_SIZE)); + } + IM_ASSERT(buf_bitmap_current_used_bytes + bitmap_size_in_bytes <= BITMAP_BUFFERS_CHUNK_SIZE); // We could probably allocate custom-sized buffer instead. + + // Blit rasterized pixels to our temporary buffer and keep a pointer to it. + src_glyph.BitmapData = (unsigned int*)(buf_bitmap_buffers.back() + buf_bitmap_current_used_bytes); + buf_bitmap_current_used_bytes += bitmap_size_in_bytes; + src_tmp.Font.BlitGlyph(ft_bitmap, src_glyph.BitmapData, src_glyph.Info.Width, multiply_enabled ? multiply_table : nullptr); + + src_tmp.Rects[glyph_i].w = (stbrp_coord)(src_glyph.Info.Width + padding); + src_tmp.Rects[glyph_i].h = (stbrp_coord)(src_glyph.Info.Height + padding); + total_surface += src_tmp.Rects[glyph_i].w * src_tmp.Rects[glyph_i].h; + } + } + + // We need a width for the skyline algorithm, any width! + // The exact width doesn't really matter much, but some API/GPU have texture size limitations and increasing width can decrease height. + // User can override TexDesiredWidth and TexGlyphPadding if they wish, otherwise we use a simple heuristic to select the width based on expected surface. + const int surface_sqrt = (int)ImSqrt((float)total_surface) + 1; + atlas->TexHeight = 0; + if (atlas->TexDesiredWidth > 0) + atlas->TexWidth = atlas->TexDesiredWidth; + else + atlas->TexWidth = (surface_sqrt >= 4096 * 0.7f) ? 4096 : (surface_sqrt >= 2048 * 0.7f) ? 2048 : (surface_sqrt >= 1024 * 0.7f) ? 1024 : 512; + + // 5. Start packing + // Pack our extra data rectangles first, so it will be on the upper-left corner of our texture (UV will have small values). + const int TEX_HEIGHT_MAX = 1024 * 32; + const int num_nodes_for_packing_algorithm = atlas->TexWidth - atlas->TexGlyphPadding; + ImVector pack_nodes; + pack_nodes.resize(num_nodes_for_packing_algorithm); + stbrp_context pack_context; + stbrp_init_target(&pack_context, atlas->TexWidth - atlas->TexGlyphPadding, TEX_HEIGHT_MAX - atlas->TexGlyphPadding, pack_nodes.Data, pack_nodes.Size); + ImFontAtlasBuildPackCustomRects(atlas, &pack_context); + + // 6. Pack each source font. No rendering yet, we are working with rectangles in an infinitely tall texture at this point. + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + stbrp_pack_rects(&pack_context, src_tmp.Rects, src_tmp.GlyphsCount); + + // Extend texture height and mark missing glyphs as non-packed so we won't render them. + // FIXME: We are not handling packing failure here (would happen if we got off TEX_HEIGHT_MAX or if a single if larger than TexWidth?) + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + if (src_tmp.Rects[glyph_i].was_packed) + atlas->TexHeight = ImMax(atlas->TexHeight, src_tmp.Rects[glyph_i].y + src_tmp.Rects[glyph_i].h); + } + + // 7. Allocate texture + atlas->TexHeight = (atlas->Flags & ImFontAtlasFlags_NoPowerOfTwoHeight) ? (atlas->TexHeight + 1) : ImUpperPowerOfTwo(atlas->TexHeight); + atlas->TexUvScale = ImVec2(1.0f / atlas->TexWidth, 1.0f / atlas->TexHeight); + if (src_load_color) + { + size_t tex_size = (size_t)atlas->TexWidth * atlas->TexHeight * 4; + atlas->TexPixelsRGBA32 = (unsigned int*)IM_ALLOC(tex_size); + memset(atlas->TexPixelsRGBA32, 0, tex_size); + } + else + { + size_t tex_size = (size_t)atlas->TexWidth * atlas->TexHeight * 1; + atlas->TexPixelsAlpha8 = (unsigned char*)IM_ALLOC(tex_size); + memset(atlas->TexPixelsAlpha8, 0, tex_size); + } + + // 8. Copy rasterized font characters back into the main texture + // 9. Setup ImFont and glyphs for runtime + bool tex_use_colors = false; + for (int src_i = 0; src_i < src_tmp_array.Size; src_i++) + { + ImFontBuildSrcDataFT& src_tmp = src_tmp_array[src_i]; + if (src_tmp.GlyphsCount == 0) + continue; + + // When merging fonts with MergeMode=true: + // - We can have multiple input fonts writing into a same destination font. + // - dst_font->ConfigData is != from cfg which is our source configuration. + ImFontConfig& cfg = atlas->ConfigData[src_i]; + ImFont* dst_font = cfg.DstFont; + + const float ascent = src_tmp.Font.Info.Ascender; + const float descent = src_tmp.Font.Info.Descender; + ImFontAtlasBuildSetupFont(atlas, dst_font, &cfg, ascent, descent); + const float font_off_x = cfg.GlyphOffset.x; + const float font_off_y = cfg.GlyphOffset.y + IM_ROUND(dst_font->Ascent); + + const int padding = atlas->TexGlyphPadding; + for (int glyph_i = 0; glyph_i < src_tmp.GlyphsCount; glyph_i++) + { + ImFontBuildSrcGlyphFT& src_glyph = src_tmp.GlyphsList[glyph_i]; + stbrp_rect& pack_rect = src_tmp.Rects[glyph_i]; + IM_ASSERT(pack_rect.was_packed); + if (pack_rect.w == 0 && pack_rect.h == 0) + continue; + + GlyphInfo& info = src_glyph.Info; + IM_ASSERT(info.Width + padding <= pack_rect.w); + IM_ASSERT(info.Height + padding <= pack_rect.h); + const int tx = pack_rect.x + padding; + const int ty = pack_rect.y + padding; + + // Register glyph + float x0 = info.OffsetX * src_tmp.Font.InvRasterizationDensity + font_off_x; + float y0 = info.OffsetY * src_tmp.Font.InvRasterizationDensity + font_off_y; + float x1 = x0 + info.Width * src_tmp.Font.InvRasterizationDensity; + float y1 = y0 + info.Height * src_tmp.Font.InvRasterizationDensity; + float u0 = (tx) / (float)atlas->TexWidth; + float v0 = (ty) / (float)atlas->TexHeight; + float u1 = (tx + info.Width) / (float)atlas->TexWidth; + float v1 = (ty + info.Height) / (float)atlas->TexHeight; + dst_font->AddGlyph(&cfg, (ImWchar)src_glyph.Codepoint, x0, y0, x1, y1, u0, v0, u1, v1, info.AdvanceX * src_tmp.Font.InvRasterizationDensity); + + ImFontGlyph* dst_glyph = &dst_font->Glyphs.back(); + IM_ASSERT(dst_glyph->Codepoint == src_glyph.Codepoint); + if (src_glyph.Info.IsColored) + dst_glyph->Colored = tex_use_colors = true; + + // Blit from temporary buffer to final texture + size_t blit_src_stride = (size_t)src_glyph.Info.Width; + size_t blit_dst_stride = (size_t)atlas->TexWidth; + unsigned int* blit_src = src_glyph.BitmapData; + if (atlas->TexPixelsAlpha8 != nullptr) + { + unsigned char* blit_dst = atlas->TexPixelsAlpha8 + (ty * blit_dst_stride) + tx; + for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride) + for (int x = 0; x < info.Width; x++) + blit_dst[x] = (unsigned char)((blit_src[x] >> IM_COL32_A_SHIFT) & 0xFF); + } + else + { + unsigned int* blit_dst = atlas->TexPixelsRGBA32 + (ty * blit_dst_stride) + tx; + for (int y = 0; y < info.Height; y++, blit_dst += blit_dst_stride, blit_src += blit_src_stride) + for (int x = 0; x < info.Width; x++) + blit_dst[x] = blit_src[x]; + } + } + + src_tmp.Rects = nullptr; + } + atlas->TexPixelsUseColors = tex_use_colors; + + // Cleanup + for (int buf_i = 0; buf_i < buf_bitmap_buffers.Size; buf_i++) + IM_FREE(buf_bitmap_buffers[buf_i]); + src_tmp_array.clear_destruct(); + + ImFontAtlasBuildFinish(atlas); + + return true; +} + +// FreeType memory allocation callbacks +static void* FreeType_Alloc(FT_Memory /*memory*/, long size) +{ + return GImGuiFreeTypeAllocFunc((size_t)size, GImGuiFreeTypeAllocatorUserData); +} + +static void FreeType_Free(FT_Memory /*memory*/, void* block) +{ + GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData); +} + +static void* FreeType_Realloc(FT_Memory /*memory*/, long cur_size, long new_size, void* block) +{ + // Implement realloc() as we don't ask user to provide it. + if (block == nullptr) + return GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData); + + if (new_size == 0) + { + GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData); + return nullptr; + } + + if (new_size > cur_size) + { + void* new_block = GImGuiFreeTypeAllocFunc((size_t)new_size, GImGuiFreeTypeAllocatorUserData); + memcpy(new_block, block, (size_t)cur_size); + GImGuiFreeTypeFreeFunc(block, GImGuiFreeTypeAllocatorUserData); + return new_block; + } + + return block; +} + +static bool ImFontAtlasBuildWithFreeType(ImFontAtlas* atlas) +{ + // FreeType memory management: https://www.freetype.org/freetype2/docs/design/design-4.html + FT_MemoryRec_ memory_rec = {}; + memory_rec.user = nullptr; + memory_rec.alloc = &FreeType_Alloc; + memory_rec.free = &FreeType_Free; + memory_rec.realloc = &FreeType_Realloc; + + // https://www.freetype.org/freetype2/docs/reference/ft2-module_management.html#FT_New_Library + FT_Library ft_library; + FT_Error error = FT_New_Library(&memory_rec, &ft_library); + if (error != 0) + return false; + + // If you don't call FT_Add_Default_Modules() the rest of code may work, but FreeType won't use our custom allocator. + FT_Add_Default_Modules(ft_library); + +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG + // Install svg hooks for FreeType + // https://freetype.org/freetype2/docs/reference/ft2-properties.html#svg-hooks + // https://freetype.org/freetype2/docs/reference/ft2-svg_fonts.html#svg_fonts + SVG_RendererHooks hooks = { ImGuiLunasvgPortInit, ImGuiLunasvgPortFree, ImGuiLunasvgPortRender, ImGuiLunasvgPortPresetSlot }; + FT_Property_Set(ft_library, "ot-svg", "svg-hooks", &hooks); +#endif // IMGUI_ENABLE_FREETYPE_LUNASVG + + bool ret = ImFontAtlasBuildWithFreeTypeEx(ft_library, atlas, atlas->FontBuilderFlags); + FT_Done_Library(ft_library); + + return ret; +} + +const ImFontBuilderIO* ImGuiFreeType::GetBuilderForFreeType() +{ + static ImFontBuilderIO io; + io.FontBuilder_Build = ImFontAtlasBuildWithFreeType; + return &io; +} + +void ImGuiFreeType::SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data) +{ + GImGuiFreeTypeAllocFunc = alloc_func; + GImGuiFreeTypeFreeFunc = free_func; + GImGuiFreeTypeAllocatorUserData = user_data; +} + +#ifdef IMGUI_ENABLE_FREETYPE_LUNASVG +// For more details, see https://gitlab.freedesktop.org/freetype/freetype-demos/-/blob/master/src/rsvg-port.c +// The original code from the demo is licensed under CeCILL-C Free Software License Agreement (https://gitlab.freedesktop.org/freetype/freetype/-/blob/master/LICENSE.TXT) +struct LunasvgPortState +{ + FT_Error err = FT_Err_Ok; + lunasvg::Matrix matrix; + std::unique_ptr svg = nullptr; +}; + +static FT_Error ImGuiLunasvgPortInit(FT_Pointer* _state) +{ + *_state = IM_NEW(LunasvgPortState)(); + return FT_Err_Ok; +} + +static void ImGuiLunasvgPortFree(FT_Pointer* _state) +{ + IM_DELETE(*(LunasvgPortState**)_state); +} + +static FT_Error ImGuiLunasvgPortRender(FT_GlyphSlot slot, FT_Pointer* _state) +{ + LunasvgPortState* state = *(LunasvgPortState**)_state; + + // If there was an error while loading the svg in ImGuiLunasvgPortPresetSlot(), the renderer hook still get called, so just returns the error. + if (state->err != FT_Err_Ok) + return state->err; + + // rows is height, pitch (or stride) equals to width * sizeof(int32) + lunasvg::Bitmap bitmap((uint8_t*)slot->bitmap.buffer, slot->bitmap.width, slot->bitmap.rows, slot->bitmap.pitch); + state->svg->setMatrix(state->svg->matrix().identity()); // Reset the svg matrix to the default value + state->svg->render(bitmap, state->matrix); // state->matrix is already scaled and translated + state->err = FT_Err_Ok; + return state->err; +} + +static FT_Error ImGuiLunasvgPortPresetSlot(FT_GlyphSlot slot, FT_Bool cache, FT_Pointer* _state) +{ + FT_SVG_Document document = (FT_SVG_Document)slot->other; + LunasvgPortState* state = *(LunasvgPortState**)_state; + FT_Size_Metrics& metrics = document->metrics; + + // This function is called twice, once in the FT_Load_Glyph() and another right before ImGuiLunasvgPortRender(). + // If it's the latter, don't do anything because it's // already done in the former. + if (cache) + return state->err; + + state->svg = lunasvg::Document::loadFromData((const char*)document->svg_document, document->svg_document_length); + if (state->svg == nullptr) + { + state->err = FT_Err_Invalid_SVG_Document; + return state->err; + } + + lunasvg::Box box = state->svg->box(); + double scale = std::min(metrics.x_ppem / box.w, metrics.y_ppem / box.h); + double xx = (double)document->transform.xx / (1 << 16); + double xy = -(double)document->transform.xy / (1 << 16); + double yx = -(double)document->transform.yx / (1 << 16); + double yy = (double)document->transform.yy / (1 << 16); + double x0 = (double)document->delta.x / 64 * box.w / metrics.x_ppem; + double y0 = -(double)document->delta.y / 64 * box.h / metrics.y_ppem; + + // Scale and transform, we don't translate the svg yet + state->matrix.identity(); + state->matrix.scale(scale, scale); + state->matrix.transform(xx, xy, yx, yy, x0, y0); + state->svg->setMatrix(state->matrix); + + // Pre-translate the matrix for the rendering step + state->matrix.translate(-box.x, -box.y); + + // Get the box again after the transformation + box = state->svg->box(); + + // Calculate the bitmap size + slot->bitmap_left = FT_Int(box.x); + slot->bitmap_top = FT_Int(-box.y); + slot->bitmap.rows = (unsigned int)(ImCeil((float)box.h)); + slot->bitmap.width = (unsigned int)(ImCeil((float)box.w)); + slot->bitmap.pitch = slot->bitmap.width * 4; + slot->bitmap.pixel_mode = FT_PIXEL_MODE_BGRA; + + // Compute all the bearings and set them correctly. The outline is scaled already, we just need to use the bounding box. + double metrics_width = box.w; + double metrics_height = box.h; + double horiBearingX = box.x; + double horiBearingY = -box.y; + double vertBearingX = slot->metrics.horiBearingX / 64.0 - slot->metrics.horiAdvance / 64.0 / 2.0; + double vertBearingY = (slot->metrics.vertAdvance / 64.0 - slot->metrics.height / 64.0) / 2.0; + slot->metrics.width = FT_Pos(IM_ROUND(metrics_width * 64.0)); // Using IM_ROUND() assume width and height are positive + slot->metrics.height = FT_Pos(IM_ROUND(metrics_height * 64.0)); + slot->metrics.horiBearingX = FT_Pos(horiBearingX * 64); + slot->metrics.horiBearingY = FT_Pos(horiBearingY * 64); + slot->metrics.vertBearingX = FT_Pos(vertBearingX * 64); + slot->metrics.vertBearingY = FT_Pos(vertBearingY * 64); + + if (slot->metrics.vertAdvance == 0) + slot->metrics.vertAdvance = FT_Pos(metrics_height * 1.2 * 64.0); + + state->err = FT_Err_Ok; + return state->err; +} + +#endif // #ifdef IMGUI_ENABLE_FREETYPE_LUNASVG + +//----------------------------------------------------------------------------- + +#ifdef __GNUC__ +#pragma GCC diagnostic pop +#endif + +#ifdef _MSC_VER +#pragma warning (pop) +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imgui_freetype.h b/external/lumin/thirdparty/imgui/imgui_freetype.h new file mode 100644 index 0000000..b4e1d48 --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui_freetype.h @@ -0,0 +1,51 @@ +// dear imgui: FreeType font builder (used as a replacement for the stb_truetype builder) +// (headers) + +#pragma once +#include "imgui.h" // IMGUI_API +#ifndef IMGUI_DISABLE + +// Forward declarations +struct ImFontAtlas; +struct ImFontBuilderIO; + +// Hinting greatly impacts visuals (and glyph sizes). +// - By default, hinting is enabled and the font's native hinter is preferred over the auto-hinter. +// - When disabled, FreeType generates blurrier glyphs, more or less matches the stb_truetype.h +// - The Default hinting mode usually looks good, but may distort glyphs in an unusual way. +// - The Light hinting mode generates fuzzier glyphs but better matches Microsoft's rasterizer. +// You can set those flags globaly in ImFontAtlas::FontBuilderFlags +// You can set those flags on a per font basis in ImFontConfig::FontBuilderFlags +enum ImGuiFreeTypeBuilderFlags +{ + ImGuiFreeTypeBuilderFlags_NoHinting = 1 << 0, // Disable hinting. This generally generates 'blurrier' bitmap glyphs when the glyph are rendered in any of the anti-aliased modes. + ImGuiFreeTypeBuilderFlags_NoAutoHint = 1 << 1, // Disable auto-hinter. + ImGuiFreeTypeBuilderFlags_ForceAutoHint = 1 << 2, // Indicates that the auto-hinter is preferred over the font's native hinter. + ImGuiFreeTypeBuilderFlags_LightHinting = 1 << 3, // A lighter hinting algorithm for gray-level modes. Many generated glyphs are fuzzier but better resemble their original shape. This is achieved by snapping glyphs to the pixel grid only vertically (Y-axis), as is done by Microsoft's ClearType and Adobe's proprietary font renderer. This preserves inter-glyph spacing in horizontal text. + ImGuiFreeTypeBuilderFlags_MonoHinting = 1 << 4, // Strong hinting algorithm that should only be used for monochrome output. + ImGuiFreeTypeBuilderFlags_Bold = 1 << 5, // Styling: Should we artificially embolden the font? + ImGuiFreeTypeBuilderFlags_Oblique = 1 << 6, // Styling: Should we slant the font, emulating italic style? + ImGuiFreeTypeBuilderFlags_Monochrome = 1 << 7, // Disable anti-aliasing. Combine this with MonoHinting for best results! + ImGuiFreeTypeBuilderFlags_LoadColor = 1 << 8, // Enable FreeType color-layered glyphs + ImGuiFreeTypeBuilderFlags_Bitmap = 1 << 9 // Enable FreeType bitmap glyphs +}; + +namespace ImGuiFreeType +{ + // This is automatically assigned when using '#define IMGUI_ENABLE_FREETYPE'. + // If you need to dynamically select between multiple builders: + // - you can manually assign this builder with 'atlas->FontBuilderIO = ImGuiFreeType::GetBuilderForFreeType()' + // - prefer deep-copying this into your own ImFontBuilderIO instance if you use hot-reloading that messes up static data. + IMGUI_API const ImFontBuilderIO* GetBuilderForFreeType(); + + // Override allocators. By default ImGuiFreeType will use IM_ALLOC()/IM_FREE() + // However, as FreeType does lots of allocations we provide a way for the user to redirect it to a separate memory heap if desired. + IMGUI_API void SetAllocatorFunctions(void* (*alloc_func)(size_t sz, void* user_data), void (*free_func)(void* ptr, void* user_data), void* user_data = nullptr); + + // Obsolete names (will be removed soon) +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + //static inline bool BuildFontAtlas(ImFontAtlas* atlas, unsigned int flags = 0) { atlas->FontBuilderIO = GetBuilderForFreeType(); atlas->FontBuilderFlags = flags; return atlas->Build(); } // Prefer using '#define IMGUI_ENABLE_FREETYPE' +#endif +} + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imgui_internal.h b/external/lumin/thirdparty/imgui/imgui_internal.h new file mode 100644 index 0000000..82101eb --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui_internal.h @@ -0,0 +1,3526 @@ +// dear imgui, v1.91.3 WIP +// (internal structures/api) + +// You may use this file to debug, understand or extend Dear ImGui features but we don't provide any guarantee of forward compatibility. + +/* + +Index of this file: + +// [SECTION] Header mess +// [SECTION] Forward declarations +// [SECTION] Context pointer +// [SECTION] STB libraries includes +// [SECTION] Macros +// [SECTION] Generic helpers +// [SECTION] ImDrawList support +// [SECTION] Data types support +// [SECTION] Widgets support: flags, enums, data structures +// [SECTION] Popup support +// [SECTION] Inputs support +// [SECTION] Clipper support +// [SECTION] Navigation support +// [SECTION] Typing-select support +// [SECTION] Columns support +// [SECTION] Box-select support +// [SECTION] Multi-select support +// [SECTION] Docking support +// [SECTION] Viewport support +// [SECTION] Settings support +// [SECTION] Localization support +// [SECTION] Metrics, Debug tools +// [SECTION] Generic context hooks +// [SECTION] ImGuiContext (main imgui context) +// [SECTION] ImGuiWindowTempData, ImGuiWindow +// [SECTION] Tab bar, Tab item support +// [SECTION] Table support +// [SECTION] ImGui internal API +// [SECTION] ImFontAtlas internal API +// [SECTION] Test Engine specific hooks (imgui_test_engine) + +*/ + +#pragma once +#ifndef IMGUI_DISABLE + +//----------------------------------------------------------------------------- +// [SECTION] Header mess +//----------------------------------------------------------------------------- + +#ifndef IMGUI_VERSION +#include "imgui.h" +#endif + +#include // FILE*, sscanf +#include // NULL, malloc, free, qsort, atoi, atof +#include // sqrtf, fabsf, fmodf, powf, floorf, ceilf, cosf, sinf +#include // INT_MIN, INT_MAX + +// Enable SSE intrinsics if available +#if (defined __SSE__ || defined __x86_64__ || defined _M_X64 || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1))) && !defined(IMGUI_DISABLE_SSE) +#define IMGUI_ENABLE_SSE +#include +#endif + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (push) +#pragma warning (disable: 4251) // class 'xxx' needs to have dll-interface to be used by clients of struct 'xxx' // when IMGUI_API is set to__declspec(dllexport) +#pragma warning (disable: 26812) // The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). [MSVC Static Analyzer) +#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6). +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#pragma clang diagnostic push +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants ok, for ImFloor() +#pragma clang diagnostic ignored "-Wunused-function" // for stb_textedit.h +#pragma clang diagnostic ignored "-Wmissing-prototypes" // for stb_textedit.h +#pragma clang diagnostic ignored "-Wold-style-cast" +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" +#pragma clang diagnostic ignored "-Wdouble-promotion" +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#pragma clang diagnostic ignored "-Wmissing-noreturn" // warning: function 'xxx' could be declared with attribute 'noreturn' +#pragma clang diagnostic ignored "-Wdeprecated-enum-enum-conversion"// warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" // warning: 'xxx' is an unsafe pointer used for buffer access +#elif defined(__GNUC__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#pragma GCC diagnostic ignored "-Wdeprecated-enum-enum-conversion" // warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#endif + +// In 1.89.4, we moved the implementation of "courtesy maths operators" from imgui_internal.h in imgui.h +// As they are frequently requested, we do not want to encourage to many people using imgui_internal.h +#if defined(IMGUI_DEFINE_MATH_OPERATORS) && !defined(IMGUI_DEFINE_MATH_OPERATORS_IMPLEMENTED) +#error Please '#define IMGUI_DEFINE_MATH_OPERATORS' _BEFORE_ including imgui.h! +#endif + +// Legacy defines +#ifdef IMGUI_DISABLE_FORMAT_STRING_FUNCTIONS // Renamed in 1.74 +#error Use IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS +#endif +#ifdef IMGUI_DISABLE_MATH_FUNCTIONS // Renamed in 1.74 +#error Use IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS +#endif + +// Enable stb_truetype by default unless FreeType is enabled. +// You can compile with both by defining both IMGUI_ENABLE_FREETYPE and IMGUI_ENABLE_STB_TRUETYPE together. +#ifndef IMGUI_ENABLE_FREETYPE +#define IMGUI_ENABLE_STB_TRUETYPE +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Forward declarations +//----------------------------------------------------------------------------- + +struct ImBitVector; // Store 1-bit per value +struct ImRect; // An axis-aligned rectangle (2 points) +struct ImDrawDataBuilder; // Helper to build a ImDrawData instance +struct ImDrawListSharedData; // Data shared between all ImDrawList instances +struct ImGuiBoxSelectState; // Box-selection state (currently used by multi-selection, could potentially be used by others) +struct ImGuiColorMod; // Stacked color modifier, backup of modified data so we can restore it +struct ImGuiContext; // Main Dear ImGui context +struct ImGuiContextHook; // Hook for extensions like ImGuiTestEngine +struct ImGuiDataVarInfo; // Variable information (e.g. to access style variables from an enum) +struct ImGuiDataTypeInfo; // Type information associated to a ImGuiDataType enum +struct ImGuiGroupData; // Stacked storage data for BeginGroup()/EndGroup() +struct ImGuiInputTextState; // Internal state of the currently focused/edited text input box +struct ImGuiInputTextDeactivateData;// Short term storage to backup text of a deactivating InputText() while another is stealing active id +struct ImGuiLastItemData; // Status storage for last submitted items +struct ImGuiLocEntry; // A localization entry. +struct ImGuiMenuColumns; // Simple column measurement, currently used for MenuItem() only +struct ImGuiMultiSelectState; // Multi-selection persistent state (for focused selection). +struct ImGuiMultiSelectTempData; // Multi-selection temporary state (while traversing). +struct ImGuiNavItemData; // Result of a gamepad/keyboard directional navigation move query result +struct ImGuiMetricsConfig; // Storage for ShowMetricsWindow() and DebugNodeXXX() functions +struct ImGuiNextWindowData; // Storage for SetNextWindow** functions +struct ImGuiNextItemData; // Storage for SetNextItem** functions +struct ImGuiOldColumnData; // Storage data for a single column for legacy Columns() api +struct ImGuiOldColumns; // Storage data for a columns set for legacy Columns() api +struct ImGuiPopupData; // Storage for current popup stack +struct ImGuiSettingsHandler; // Storage for one type registered in the .ini file +struct ImGuiStackSizes; // Storage of stack sizes for debugging/asserting +struct ImGuiStyleMod; // Stacked style modifier, backup of modified data so we can restore it +struct ImGuiStyleShadowTexConfig; // Shadow Texture baking config +struct ImGuiTabBar; // Storage for a tab bar +struct ImGuiTabItem; // Storage for a tab item (within a tab bar) +struct ImGuiTable; // Storage for a table +struct ImGuiTableHeaderData; // Storage for TableAngledHeadersRow() +struct ImGuiTableColumn; // Storage for one column of a table +struct ImGuiTableInstanceData; // Storage for one instance of a same table +struct ImGuiTableTempData; // Temporary storage for one table (one per table in the stack), shared between tables. +struct ImGuiTableSettings; // Storage for a table .ini settings +struct ImGuiTableColumnsSettings; // Storage for a column .ini settings +struct ImGuiTreeNodeStackData; // Temporary storage for TreeNode(). +struct ImGuiTypingSelectState; // Storage for GetTypingSelectRequest() +struct ImGuiTypingSelectRequest; // Storage for GetTypingSelectRequest() (aimed to be public) +struct ImGuiWindow; // Storage for one window +struct ImGuiWindowTempData; // Temporary storage for one window (that's the data which in theory we could ditch at the end of the frame, in practice we currently keep it for each window) +struct ImGuiWindowSettings; // Storage for a window .ini settings (we keep one of those even if the actual window wasn't instanced during this session) + +// Enumerations +// Use your programming IDE "Go to definition" facility on the names of the center columns to find the actual flags/enum lists. +enum ImGuiLocKey : int; // -> enum ImGuiLocKey // Enum: a localization entry for translation. +typedef int ImGuiLayoutType; // -> enum ImGuiLayoutType_ // Enum: Horizontal or vertical + +// Flags +typedef int ImGuiActivateFlags; // -> enum ImGuiActivateFlags_ // Flags: for navigation/focus function (will be for ActivateItem() later) +typedef int ImGuiDebugLogFlags; // -> enum ImGuiDebugLogFlags_ // Flags: for ShowDebugLogWindow(), g.DebugLogFlags +typedef int ImGuiFocusRequestFlags; // -> enum ImGuiFocusRequestFlags_ // Flags: for FocusWindow(); +typedef int ImGuiItemStatusFlags; // -> enum ImGuiItemStatusFlags_ // Flags: for g.LastItemData.StatusFlags +typedef int ImGuiOldColumnFlags; // -> enum ImGuiOldColumnFlags_ // Flags: for BeginColumns() +typedef int ImGuiNavHighlightFlags; // -> enum ImGuiNavHighlightFlags_ // Flags: for RenderNavHighlight() +typedef int ImGuiNavMoveFlags; // -> enum ImGuiNavMoveFlags_ // Flags: for navigation requests +typedef int ImGuiNextItemDataFlags; // -> enum ImGuiNextItemDataFlags_ // Flags: for SetNextItemXXX() functions +typedef int ImGuiNextWindowDataFlags; // -> enum ImGuiNextWindowDataFlags_// Flags: for SetNextWindowXXX() functions +typedef int ImGuiScrollFlags; // -> enum ImGuiScrollFlags_ // Flags: for ScrollToItem() and navigation requests +typedef int ImGuiSeparatorFlags; // -> enum ImGuiSeparatorFlags_ // Flags: for SeparatorEx() +typedef int ImGuiTextFlags; // -> enum ImGuiTextFlags_ // Flags: for TextEx() +typedef int ImGuiTooltipFlags; // -> enum ImGuiTooltipFlags_ // Flags: for BeginTooltipEx() +typedef int ImGuiTypingSelectFlags; // -> enum ImGuiTypingSelectFlags_ // Flags: for GetTypingSelectRequest() +typedef int ImGuiWindowRefreshFlags; // -> enum ImGuiWindowRefreshFlags_ // Flags: for SetNextWindowRefreshPolicy() + +typedef void (*ImGuiErrorLogCallback)(void* user_data, const char* fmt, ...); + +//----------------------------------------------------------------------------- +// [SECTION] Context pointer +// See implementation of this variable in imgui.cpp for comments and details. +//----------------------------------------------------------------------------- + +#ifndef GImGui +extern IMGUI_API ImGuiContext* GImGui; // Current implicit context pointer +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Macros +//----------------------------------------------------------------------------- + +// Debug Printing Into TTY +// (since IMGUI_VERSION_NUM >= 18729: IMGUI_DEBUG_LOG was reworked into IMGUI_DEBUG_PRINTF (and removed framecount from it). If you were using a #define IMGUI_DEBUG_LOG please rename) +#ifndef IMGUI_DEBUG_PRINTF +#ifndef IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS +#define IMGUI_DEBUG_PRINTF(_FMT,...) printf(_FMT, __VA_ARGS__) +#else +#define IMGUI_DEBUG_PRINTF(_FMT,...) ((void)0) +#endif +#endif + +// Debug Logging for ShowDebugLogWindow(). This is designed for relatively rare events so please don't spam. +#ifndef IMGUI_DISABLE_DEBUG_TOOLS +#define IMGUI_DEBUG_LOG(...) ImGui::DebugLog(__VA_ARGS__) +#else +#define IMGUI_DEBUG_LOG(...) ((void)0) +#endif +#define IMGUI_DEBUG_LOG_ACTIVEID(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventActiveId) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_FOCUS(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventFocus) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_POPUP(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventPopup) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_NAV(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventNav) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_SELECTION(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventSelection) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_CLIPPER(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventClipper) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_IO(...) do { if (g.DebugLogFlags & ImGuiDebugLogFlags_EventIO) IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) +#define IMGUI_DEBUG_LOG_INPUTROUTING(...) do{if (g.DebugLogFlags & ImGuiDebugLogFlags_EventInputRouting)IMGUI_DEBUG_LOG(__VA_ARGS__); } while (0) + +// Static Asserts +#define IM_STATIC_ASSERT(_COND) static_assert(_COND, "") + +// "Paranoid" Debug Asserts are meant to only be enabled during specific debugging/work, otherwise would slow down the code too much. +// We currently don't have many of those so the effect is currently negligible, but onward intent to add more aggressive ones in the code. +//#define IMGUI_DEBUG_PARANOID +#ifdef IMGUI_DEBUG_PARANOID +#define IM_ASSERT_PARANOID(_EXPR) IM_ASSERT(_EXPR) +#else +#define IM_ASSERT_PARANOID(_EXPR) +#endif + +// Error handling +// Down the line in some frameworks/languages we would like to have a way to redirect those to the programmer and recover from more faults. +#ifndef IM_ASSERT_USER_ERROR +#define IM_ASSERT_USER_ERROR(_EXP,_MSG) IM_ASSERT((_EXP) && _MSG) // Recoverable User Error +#endif + +// Misc Macros +#define IM_PI 3.14159265358979323846f +#ifdef _WIN32 +#define IM_NEWLINE "\r\n" // Play it nice with Windows users (Update: since 2018-05, Notepad finally appears to support Unix-style carriage returns!) +#else +#define IM_NEWLINE "\n" +#endif +#ifndef IM_TABSIZE // Until we move this to runtime and/or add proper tab support, at least allow users to compile-time override +#define IM_TABSIZE (4) +#endif +#define IM_MEMALIGN(_OFF,_ALIGN) (((_OFF) + ((_ALIGN) - 1)) & ~((_ALIGN) - 1)) // Memory align e.g. IM_ALIGN(0,4)=0, IM_ALIGN(1,4)=4, IM_ALIGN(4,4)=4, IM_ALIGN(5,4)=8 +#define IM_F32_TO_INT8_UNBOUND(_VAL) ((int)((_VAL) * 255.0f + ((_VAL)>=0 ? 0.5f : -0.5f))) // Unsaturated, for display purpose +#define IM_F32_TO_INT8_SAT(_VAL) ((int)(ImSaturate(_VAL) * 255.0f + 0.5f)) // Saturated, always output 0..255 +#define IM_TRUNC(_VAL) ((float)(int)(_VAL)) // ImTrunc() is not inlined in MSVC debug builds +#define IM_ROUND(_VAL) ((float)(int)((_VAL) + 0.5f)) // +#define IM_STRINGIFY_HELPER(_X) #_X +#define IM_STRINGIFY(_X) IM_STRINGIFY_HELPER(_X) // Preprocessor idiom to stringify e.g. an integer. +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +#define IM_FLOOR IM_TRUNC +#endif + +// Enforce cdecl calling convention for functions called by the standard library, in case compilation settings changed the default to e.g. __vectorcall +#ifdef _MSC_VER +#define IMGUI_CDECL __cdecl +#else +#define IMGUI_CDECL +#endif + +// Warnings +#if defined(_MSC_VER) && !defined(__clang__) +#define IM_MSVC_WARNING_SUPPRESS(XXXX) __pragma(warning(suppress: XXXX)) +#else +#define IM_MSVC_WARNING_SUPPRESS(XXXX) +#endif + +// Debug Tools +// Use 'Metrics/Debugger->Tools->Item Picker' to break into the call-stack of a specific item. +// This will call IM_DEBUG_BREAK() which you may redefine yourself. See https://github.com/scottt/debugbreak for more reference. +#ifndef IM_DEBUG_BREAK +#if defined (_MSC_VER) +#define IM_DEBUG_BREAK() __debugbreak() +#elif defined(__clang__) +#define IM_DEBUG_BREAK() __builtin_debugtrap() +#elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) +#define IM_DEBUG_BREAK() __asm__ volatile("int3;nop") +#elif defined(__GNUC__) && defined(__thumb__) +#define IM_DEBUG_BREAK() __asm__ volatile(".inst 0xde01") +#elif defined(__GNUC__) && defined(__arm__) && !defined(__thumb__) +#define IM_DEBUG_BREAK() __asm__ volatile(".inst 0xe7f001f0") +#else +#define IM_DEBUG_BREAK() IM_ASSERT(0) // It is expected that you define IM_DEBUG_BREAK() into something that will break nicely in a debugger! +#endif +#endif // #ifndef IM_DEBUG_BREAK + +// Format specifiers, printing 64-bit hasn't been decently standardized... +// In a real application you should be using PRId64 and PRIu64 from (non-windows) and on Windows define them yourself. +#if defined(_MSC_VER) && !defined(__clang__) +#define IM_PRId64 "I64d" +#define IM_PRIu64 "I64u" +#define IM_PRIX64 "I64X" +#else +#define IM_PRId64 "lld" +#define IM_PRIu64 "llu" +#define IM_PRIX64 "llX" +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Generic helpers +// Note that the ImXXX helpers functions are lower-level than ImGui functions. +// ImGui functions or the ImGui context are never called/used from other ImXXX functions. +//----------------------------------------------------------------------------- +// - Helpers: Hashing +// - Helpers: Sorting +// - Helpers: Bit manipulation +// - Helpers: String +// - Helpers: Formatting +// - Helpers: UTF-8 <> wchar conversions +// - Helpers: ImVec2/ImVec4 operators +// - Helpers: Maths +// - Helpers: Geometry +// - Helper: ImVec1 +// - Helper: ImVec2ih +// - Helper: ImRect +// - Helper: ImBitArray +// - Helper: ImBitVector +// - Helper: ImSpan<>, ImSpanAllocator<> +// - Helper: ImPool<> +// - Helper: ImChunkStream<> +// - Helper: ImGuiTextIndex +// - Helper: ImGuiStorage +//----------------------------------------------------------------------------- + +// Helpers: Hashing +IMGUI_API ImGuiID ImHashData(const void* data, size_t data_size, ImGuiID seed = 0); +IMGUI_API ImGuiID ImHashStr(const char* data, size_t data_size = 0, ImGuiID seed = 0); + +// Helpers: Sorting +#ifndef ImQsort +static inline void ImQsort(void* base, size_t count, size_t size_of_element, int(IMGUI_CDECL *compare_func)(void const*, void const*)) { if (count > 1) qsort(base, count, size_of_element, compare_func); } +#endif + +// Helpers: Color Blending +IMGUI_API ImU32 ImAlphaBlendColors(ImU32 col_a, ImU32 col_b); + +// Helpers: Bit manipulation +static inline bool ImIsPowerOfTwo(int v) { return v != 0 && (v & (v - 1)) == 0; } +static inline bool ImIsPowerOfTwo(ImU64 v) { return v != 0 && (v & (v - 1)) == 0; } +static inline int ImUpperPowerOfTwo(int v) { v--; v |= v >> 1; v |= v >> 2; v |= v >> 4; v |= v >> 8; v |= v >> 16; v++; return v; } + +// Helpers: String +IMGUI_API int ImStricmp(const char* str1, const char* str2); // Case insensitive compare. +IMGUI_API int ImStrnicmp(const char* str1, const char* str2, size_t count); // Case insensitive compare to a certain count. +IMGUI_API void ImStrncpy(char* dst, const char* src, size_t count); // Copy to a certain count and always zero terminate (strncpy doesn't). +IMGUI_API char* ImStrdup(const char* str); // Duplicate a string. +IMGUI_API char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* str); // Copy in provided buffer, recreate buffer if needed. +IMGUI_API const char* ImStrchrRange(const char* str_begin, const char* str_end, char c); // Find first occurrence of 'c' in string range. +IMGUI_API const char* ImStreolRange(const char* str, const char* str_end); // End end-of-line +IMGUI_API const char* ImStristr(const char* haystack, const char* haystack_end, const char* needle, const char* needle_end); // Find a substring in a string range. +IMGUI_API void ImStrTrimBlanks(char* str); // Remove leading and trailing blanks from a buffer. +IMGUI_API const char* ImStrSkipBlank(const char* str); // Find first non-blank character. +IMGUI_API int ImStrlenW(const ImWchar* str); // Computer string length (ImWchar string) +IMGUI_API const char* ImStrbol(const char* buf_mid_line, const char* buf_begin); // Find beginning-of-line +IM_MSVC_RUNTIME_CHECKS_OFF +static inline char ImToUpper(char c) { return (c >= 'a' && c <= 'z') ? c &= ~32 : c; } +static inline bool ImCharIsBlankA(char c) { return c == ' ' || c == '\t'; } +static inline bool ImCharIsBlankW(unsigned int c) { return c == ' ' || c == '\t' || c == 0x3000; } +static inline bool ImCharIsXdigitA(char c) { return (c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'); } +IM_MSVC_RUNTIME_CHECKS_RESTORE + +// Helpers: Formatting +IMGUI_API int ImFormatString(char* buf, size_t buf_size, const char* fmt, ...) IM_FMTARGS(3); +IMGUI_API int ImFormatStringV(char* buf, size_t buf_size, const char* fmt, va_list args) IM_FMTLIST(3); +IMGUI_API void ImFormatStringToTempBuffer(const char** out_buf, const char** out_buf_end, const char* fmt, ...) IM_FMTARGS(3); +IMGUI_API void ImFormatStringToTempBufferV(const char** out_buf, const char** out_buf_end, const char* fmt, va_list args) IM_FMTLIST(3); +IMGUI_API const char* ImParseFormatFindStart(const char* format); +IMGUI_API const char* ImParseFormatFindEnd(const char* format); +IMGUI_API const char* ImParseFormatTrimDecorations(const char* format, char* buf, size_t buf_size); +IMGUI_API void ImParseFormatSanitizeForPrinting(const char* fmt_in, char* fmt_out, size_t fmt_out_size); +IMGUI_API const char* ImParseFormatSanitizeForScanning(const char* fmt_in, char* fmt_out, size_t fmt_out_size); +IMGUI_API int ImParseFormatPrecision(const char* format, int default_value); + +// Helpers: UTF-8 <> wchar conversions +IMGUI_API const char* ImTextCharToUtf8(char out_buf[5], unsigned int c); // return out_buf +IMGUI_API int ImTextStrToUtf8(char* out_buf, int out_buf_size, const ImWchar* in_text, const ImWchar* in_text_end); // return output UTF-8 bytes count +IMGUI_API int ImTextCharFromUtf8(unsigned int* out_char, const char* in_text, const char* in_text_end); // read one character. return input UTF-8 bytes count +IMGUI_API int ImTextStrFromUtf8(ImWchar* out_buf, int out_buf_size, const char* in_text, const char* in_text_end, const char** in_remaining = NULL); // return input UTF-8 bytes count +IMGUI_API int ImTextCountCharsFromUtf8(const char* in_text, const char* in_text_end); // return number of UTF-8 code-points (NOT bytes count) +IMGUI_API int ImTextCountUtf8BytesFromChar(const char* in_text, const char* in_text_end); // return number of bytes to express one char in UTF-8 +IMGUI_API int ImTextCountUtf8BytesFromStr(const ImWchar* in_text, const ImWchar* in_text_end); // return number of bytes to express string in UTF-8 +IMGUI_API const char* ImTextFindPreviousUtf8Codepoint(const char* in_text_start, const char* in_text_curr); // return previous UTF-8 code-point. +IMGUI_API int ImTextCountLines(const char* in_text, const char* in_text_end); // return number of lines taken by text. trailing carriage return doesn't count as an extra line. + +// Helpers: File System +#ifdef IMGUI_DISABLE_FILE_FUNCTIONS +#define IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS +typedef void* ImFileHandle; +static inline ImFileHandle ImFileOpen(const char*, const char*) { return NULL; } +static inline bool ImFileClose(ImFileHandle) { return false; } +static inline ImU64 ImFileGetSize(ImFileHandle) { return (ImU64)-1; } +static inline ImU64 ImFileRead(void*, ImU64, ImU64, ImFileHandle) { return 0; } +static inline ImU64 ImFileWrite(const void*, ImU64, ImU64, ImFileHandle) { return 0; } +#endif +#ifndef IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS +typedef FILE* ImFileHandle; +IMGUI_API ImFileHandle ImFileOpen(const char* filename, const char* mode); +IMGUI_API bool ImFileClose(ImFileHandle file); +IMGUI_API ImU64 ImFileGetSize(ImFileHandle file); +IMGUI_API ImU64 ImFileRead(void* data, ImU64 size, ImU64 count, ImFileHandle file); +IMGUI_API ImU64 ImFileWrite(const void* data, ImU64 size, ImU64 count, ImFileHandle file); +#else +#define IMGUI_DISABLE_TTY_FUNCTIONS // Can't use stdout, fflush if we are not using default file functions +#endif +IMGUI_API void* ImFileLoadToMemory(const char* filename, const char* mode, size_t* out_file_size = NULL, int padding_bytes = 0); + +// Helpers: Maths +IM_MSVC_RUNTIME_CHECKS_OFF +// - Wrapper for standard libs functions. (Note that imgui_demo.cpp does _not_ use them to keep the code easy to copy) +#ifndef IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS +#define ImFabs(X) fabsf(X) +#define ImSqrt(X) sqrtf(X) +#define ImFmod(X, Y) fmodf((X), (Y)) +#define ImCos(X) cosf(X) +#define ImSin(X) sinf(X) +#define ImAcos(X) acosf(X) +#define ImAtan2(Y, X) atan2f((Y), (X)) +#define ImAtof(STR) atof(STR) +#define ImCeil(X) ceilf(X) +static inline float ImPow(float x, float y) { return powf(x, y); } // DragBehaviorT/SliderBehaviorT uses ImPow with either float/double and need the precision +static inline double ImPow(double x, double y) { return pow(x, y); } +static inline float ImLog(float x) { return logf(x); } // DragBehaviorT/SliderBehaviorT uses ImLog with either float/double and need the precision +static inline double ImLog(double x) { return log(x); } +static inline int ImAbs(int x) { return x < 0 ? -x : x; } +static inline float ImAbs(float x) { return fabsf(x); } +static inline double ImAbs(double x) { return fabs(x); } +static inline float ImSign(float x) { return (x < 0.0f) ? -1.0f : (x > 0.0f) ? 1.0f : 0.0f; } // Sign operator - returns -1, 0 or 1 based on sign of argument +static inline double ImSign(double x) { return (x < 0.0) ? -1.0 : (x > 0.0) ? 1.0 : 0.0; } +#ifdef IMGUI_ENABLE_SSE +static inline float ImRsqrt(float x) { return _mm_cvtss_f32(_mm_rsqrt_ss(_mm_set_ss(x))); } +#else +static inline float ImRsqrt(float x) { return 1.0f / sqrtf(x); } +#endif +static inline double ImRsqrt(double x) { return 1.0 / sqrt(x); } +#endif +// - ImMin/ImMax/ImClamp/ImLerp/ImSwap are used by widgets which support variety of types: signed/unsigned int/long long float/double +// (Exceptionally using templates here but we could also redefine them for those types) +template static inline T ImMin(T lhs, T rhs) { return lhs < rhs ? lhs : rhs; } +template static inline T ImMax(T lhs, T rhs) { return lhs >= rhs ? lhs : rhs; } +template static inline T ImClamp(T v, T mn, T mx) { return (v < mn) ? mn : (v > mx) ? mx : v; } +template static inline T ImLerp(T a, T b, float t) { return (T)(a + (b - a) * t); } +template static inline void ImSwap(T& a, T& b) { T tmp = a; a = b; b = tmp; } +template static inline T ImAddClampOverflow(T a, T b, T mn, T mx) { if (b < 0 && (a < mn - b)) return mn; if (b > 0 && (a > mx - b)) return mx; return a + b; } +template static inline T ImSubClampOverflow(T a, T b, T mn, T mx) { if (b > 0 && (a < mn + b)) return mn; if (b < 0 && (a > mx + b)) return mx; return a - b; } +// - Misc maths helpers +static inline ImVec2 ImMin(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x < rhs.x ? lhs.x : rhs.x, lhs.y < rhs.y ? lhs.y : rhs.y); } +static inline ImVec2 ImMax(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x >= rhs.x ? lhs.x : rhs.x, lhs.y >= rhs.y ? lhs.y : rhs.y); } +static inline ImVec2 ImClamp(const ImVec2& v, const ImVec2&mn, const ImVec2&mx) { return ImVec2((v.x < mn.x) ? mn.x : (v.x > mx.x) ? mx.x : v.x, (v.y < mn.y) ? mn.y : (v.y > mx.y) ? mx.y : v.y); } +static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, float t) { return ImVec2(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t); } +static inline ImVec2 ImLerp(const ImVec2& a, const ImVec2& b, const ImVec2& t) { return ImVec2(a.x + (b.x - a.x) * t.x, a.y + (b.y - a.y) * t.y); } +static inline ImVec4 ImLerp(const ImVec4& a, const ImVec4& b, float t) { return ImVec4(a.x + (b.x - a.x) * t, a.y + (b.y - a.y) * t, a.z + (b.z - a.z) * t, a.w + (b.w - a.w) * t); } +static inline float ImSaturate(float f) { return (f < 0.0f) ? 0.0f : (f > 1.0f) ? 1.0f : f; } +static inline float ImLengthSqr(const ImVec2& lhs) { return (lhs.x * lhs.x) + (lhs.y * lhs.y); } +static inline float ImLengthSqr(const ImVec4& lhs) { return (lhs.x * lhs.x) + (lhs.y * lhs.y) + (lhs.z * lhs.z) + (lhs.w * lhs.w); } +static inline float ImLength(const ImVec2& lhs, float fail_value) { float d = (lhs.x * lhs.x) + (lhs.y * lhs.y); if (d > 0.0f) return ImSqrt(d); return fail_value; } +static inline float ImInvLength(const ImVec2& lhs, float fail_value) { float d = (lhs.x * lhs.x) + (lhs.y * lhs.y); if (d > 0.0f) return ImRsqrt(d); return fail_value; } +static inline float ImTrunc(float f) { return (float)(int)(f); } +static inline ImVec2 ImTrunc(const ImVec2& v) { return ImVec2((float)(int)(v.x), (float)(int)(v.y)); } +static inline float ImFloor(float f) { return (float)((f >= 0 || (float)(int)f == f) ? (int)f : (int)f - 1); } // Decent replacement for floorf() +static inline ImVec2 ImFloor(const ImVec2& v) { return ImVec2(ImFloor(v.x), ImFloor(v.y)); } +static inline int ImModPositive(int a, int b) { return (a + b) % b; } +static inline float ImDot(const ImVec2& a, const ImVec2& b) { return a.x * b.x + a.y * b.y; } +static inline ImVec2 ImRotate(const ImVec2& v, float cos_a, float sin_a) { return ImVec2(v.x * cos_a - v.y * sin_a, v.x * sin_a + v.y * cos_a); } +static inline float ImLinearSweep(float current, float target, float speed) { if (current < target) return ImMin(current + speed, target); if (current > target) return ImMax(current - speed, target); return current; } +static inline float ImLinearRemapClamp(float s0, float s1, float d0, float d1, float x) { return ImSaturate((x - s0) / (s1 - s0)) * (d1 - d0) + d0; } +static inline ImVec2 ImMul(const ImVec2& lhs, const ImVec2& rhs) { return ImVec2(lhs.x * rhs.x, lhs.y * rhs.y); } +static inline bool ImIsFloatAboveGuaranteedIntegerPrecision(float f) { return f <= -16777216 || f >= 16777216; } +static inline float ImExponentialMovingAverage(float avg, float sample, int n) { avg -= avg / n; avg += sample / n; return avg; } +IM_MSVC_RUNTIME_CHECKS_RESTORE + +// Helpers: Geometry +IMGUI_API ImVec2 ImBezierCubicCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, float t); +IMGUI_API ImVec2 ImBezierCubicClosestPoint(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, int num_segments); // For curves with explicit number of segments +IMGUI_API ImVec2 ImBezierCubicClosestPointCasteljau(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, const ImVec2& p4, const ImVec2& p, float tess_tol);// For auto-tessellated curves you can use tess_tol = style.CurveTessellationTol +IMGUI_API ImVec2 ImBezierQuadraticCalc(const ImVec2& p1, const ImVec2& p2, const ImVec2& p3, float t); +IMGUI_API ImVec2 ImLineClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& p); +IMGUI_API bool ImTriangleContainsPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p); +IMGUI_API ImVec2 ImTriangleClosestPoint(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p); +IMGUI_API void ImTriangleBarycentricCoords(const ImVec2& a, const ImVec2& b, const ImVec2& c, const ImVec2& p, float& out_u, float& out_v, float& out_w); +inline float ImTriangleArea(const ImVec2& a, const ImVec2& b, const ImVec2& c) { return ImFabs((a.x * (b.y - c.y)) + (b.x * (c.y - a.y)) + (c.x * (a.y - b.y))) * 0.5f; } +inline bool ImTriangleIsClockwise(const ImVec2& a, const ImVec2& b, const ImVec2& c) { return ((b.x - a.x) * (c.y - b.y)) - ((c.x - b.x) * (b.y - a.y)) > 0.0f; } + +// Helper: ImVec1 (1D vector) +// (this odd construct is used to facilitate the transition between 1D and 2D, and the maintenance of some branches/patches) +IM_MSVC_RUNTIME_CHECKS_OFF +struct ImVec1 +{ + float x; + constexpr ImVec1() : x(0.0f) { } + constexpr ImVec1(float _x) : x(_x) { } +}; + +// Helper: ImVec2ih (2D vector, half-size integer, for long-term packed storage) +struct ImVec2ih +{ + short x, y; + constexpr ImVec2ih() : x(0), y(0) {} + constexpr ImVec2ih(short _x, short _y) : x(_x), y(_y) {} + constexpr explicit ImVec2ih(const ImVec2& rhs) : x((short)rhs.x), y((short)rhs.y) {} +}; + +// Helper: ImRect (2D axis aligned bounding-box) +// NB: we can't rely on ImVec2 math operators being available here! +struct IMGUI_API ImRect +{ + ImVec2 Min; // Upper-left + ImVec2 Max; // Lower-right + + constexpr ImRect() : Min(0.0f, 0.0f), Max(0.0f, 0.0f) {} + constexpr ImRect(const ImVec2& min, const ImVec2& max) : Min(min), Max(max) {} + constexpr ImRect(const ImVec4& v) : Min(v.x, v.y), Max(v.z, v.w) {} + constexpr ImRect(float x1, float y1, float x2, float y2) : Min(x1, y1), Max(x2, y2) {} + + ImVec2 GetCenter() const { return ImVec2((Min.x + Max.x) * 0.5f, (Min.y + Max.y) * 0.5f); } + ImVec2 GetSize() const { return ImVec2(Max.x - Min.x, Max.y - Min.y); } + float GetWidth() const { return Max.x - Min.x; } + float GetHeight() const { return Max.y - Min.y; } + float GetArea() const { return (Max.x - Min.x) * (Max.y - Min.y); } + ImVec2 GetTL() const { return Min; } // Top-left + ImVec2 GetTR() const { return ImVec2(Max.x, Min.y); } // Top-right + ImVec2 GetBL() const { return ImVec2(Min.x, Max.y); } // Bottom-left + ImVec2 GetBR() const { return Max; } // Bottom-right + bool Contains(const ImVec2& p) const { return p.x >= Min.x && p.y >= Min.y && p.x < Max.x && p.y < Max.y; } + bool Contains(const ImRect& r) const { return r.Min.x >= Min.x && r.Min.y >= Min.y && r.Max.x <= Max.x && r.Max.y <= Max.y; } + bool ContainsWithPad(const ImVec2& p, const ImVec2& pad) const { return p.x >= Min.x - pad.x && p.y >= Min.y - pad.y && p.x < Max.x + pad.x && p.y < Max.y + pad.y; } + bool Overlaps(const ImRect& r) const { return r.Min.y < Max.y && r.Max.y > Min.y && r.Min.x < Max.x && r.Max.x > Min.x; } + void Add(const ImVec2& p) { if (Min.x > p.x) Min.x = p.x; if (Min.y > p.y) Min.y = p.y; if (Max.x < p.x) Max.x = p.x; if (Max.y < p.y) Max.y = p.y; } + void Add(const ImRect& r) { if (Min.x > r.Min.x) Min.x = r.Min.x; if (Min.y > r.Min.y) Min.y = r.Min.y; if (Max.x < r.Max.x) Max.x = r.Max.x; if (Max.y < r.Max.y) Max.y = r.Max.y; } + void Expand(const float amount) { Min.x -= amount; Min.y -= amount; Max.x += amount; Max.y += amount; } + void Expand(const ImVec2& amount) { Min.x -= amount.x; Min.y -= amount.y; Max.x += amount.x; Max.y += amount.y; } + void Translate(const ImVec2& d) { Min.x += d.x; Min.y += d.y; Max.x += d.x; Max.y += d.y; } + void TranslateX(float dx) { Min.x += dx; Max.x += dx; } + void TranslateY(float dy) { Min.y += dy; Max.y += dy; } + void ClipWith(const ImRect& r) { Min = ImMax(Min, r.Min); Max = ImMin(Max, r.Max); } // Simple version, may lead to an inverted rectangle, which is fine for Contains/Overlaps test but not for display. + void ClipWithFull(const ImRect& r) { Min = ImClamp(Min, r.Min, r.Max); Max = ImClamp(Max, r.Min, r.Max); } // Full version, ensure both points are fully clipped. + void Floor() { Min.x = IM_TRUNC(Min.x); Min.y = IM_TRUNC(Min.y); Max.x = IM_TRUNC(Max.x); Max.y = IM_TRUNC(Max.y); } + bool IsInverted() const { return Min.x > Max.x || Min.y > Max.y; } + ImVec4 ToVec4() const { return ImVec4(Min.x, Min.y, Max.x, Max.y); } +}; + +// Helper: ImBitArray +#define IM_BITARRAY_TESTBIT(_ARRAY, _N) ((_ARRAY[(_N) >> 5] & ((ImU32)1 << ((_N) & 31))) != 0) // Macro version of ImBitArrayTestBit(): ensure args have side-effect or are costly! +#define IM_BITARRAY_CLEARBIT(_ARRAY, _N) ((_ARRAY[(_N) >> 5] &= ~((ImU32)1 << ((_N) & 31)))) // Macro version of ImBitArrayClearBit(): ensure args have side-effect or are costly! +inline size_t ImBitArrayGetStorageSizeInBytes(int bitcount) { return (size_t)((bitcount + 31) >> 5) << 2; } +inline void ImBitArrayClearAllBits(ImU32* arr, int bitcount){ memset(arr, 0, ImBitArrayGetStorageSizeInBytes(bitcount)); } +inline bool ImBitArrayTestBit(const ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); return (arr[n >> 5] & mask) != 0; } +inline void ImBitArrayClearBit(ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); arr[n >> 5] &= ~mask; } +inline void ImBitArraySetBit(ImU32* arr, int n) { ImU32 mask = (ImU32)1 << (n & 31); arr[n >> 5] |= mask; } +inline void ImBitArraySetBitRange(ImU32* arr, int n, int n2) // Works on range [n..n2) +{ + n2--; + while (n <= n2) + { + int a_mod = (n & 31); + int b_mod = (n2 > (n | 31) ? 31 : (n2 & 31)) + 1; + ImU32 mask = (ImU32)(((ImU64)1 << b_mod) - 1) & ~(ImU32)(((ImU64)1 << a_mod) - 1); + arr[n >> 5] |= mask; + n = (n + 32) & ~31; + } +} + +typedef ImU32* ImBitArrayPtr; // Name for use in structs + +// Helper: ImBitArray class (wrapper over ImBitArray functions) +// Store 1-bit per value. +template +struct ImBitArray +{ + ImU32 Storage[(BITCOUNT + 31) >> 5]; + ImBitArray() { ClearAllBits(); } + void ClearAllBits() { memset(Storage, 0, sizeof(Storage)); } + void SetAllBits() { memset(Storage, 255, sizeof(Storage)); } + bool TestBit(int n) const { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); return IM_BITARRAY_TESTBIT(Storage, n); } + void SetBit(int n) { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); ImBitArraySetBit(Storage, n); } + void ClearBit(int n) { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); ImBitArrayClearBit(Storage, n); } + void SetBitRange(int n, int n2) { n += OFFSET; n2 += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT && n2 > n && n2 <= BITCOUNT); ImBitArraySetBitRange(Storage, n, n2); } // Works on range [n..n2) + bool operator[](int n) const { n += OFFSET; IM_ASSERT(n >= 0 && n < BITCOUNT); return IM_BITARRAY_TESTBIT(Storage, n); } +}; + +// Helper: ImBitVector +// Store 1-bit per value. +struct IMGUI_API ImBitVector +{ + ImVector Storage; + void Create(int sz) { Storage.resize((sz + 31) >> 5); memset(Storage.Data, 0, (size_t)Storage.Size * sizeof(Storage.Data[0])); } + void Clear() { Storage.clear(); } + bool TestBit(int n) const { IM_ASSERT(n < (Storage.Size << 5)); return IM_BITARRAY_TESTBIT(Storage.Data, n); } + void SetBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArraySetBit(Storage.Data, n); } + void ClearBit(int n) { IM_ASSERT(n < (Storage.Size << 5)); ImBitArrayClearBit(Storage.Data, n); } +}; +IM_MSVC_RUNTIME_CHECKS_RESTORE + +// Helper: ImSpan<> +// Pointing to a span of data we don't own. +template +struct ImSpan +{ + T* Data; + T* DataEnd; + + // Constructors, destructor + inline ImSpan() { Data = DataEnd = NULL; } + inline ImSpan(T* data, int size) { Data = data; DataEnd = data + size; } + inline ImSpan(T* data, T* data_end) { Data = data; DataEnd = data_end; } + + inline void set(T* data, int size) { Data = data; DataEnd = data + size; } + inline void set(T* data, T* data_end) { Data = data; DataEnd = data_end; } + inline int size() const { return (int)(ptrdiff_t)(DataEnd - Data); } + inline int size_in_bytes() const { return (int)(ptrdiff_t)(DataEnd - Data) * (int)sizeof(T); } + inline T& operator[](int i) { T* p = Data + i; IM_ASSERT(p >= Data && p < DataEnd); return *p; } + inline const T& operator[](int i) const { const T* p = Data + i; IM_ASSERT(p >= Data && p < DataEnd); return *p; } + + inline T* begin() { return Data; } + inline const T* begin() const { return Data; } + inline T* end() { return DataEnd; } + inline const T* end() const { return DataEnd; } + + // Utilities + inline int index_from_ptr(const T* it) const { IM_ASSERT(it >= Data && it < DataEnd); const ptrdiff_t off = it - Data; return (int)off; } +}; + +// Helper: ImSpanAllocator<> +// Facilitate storing multiple chunks into a single large block (the "arena") +// - Usage: call Reserve() N times, allocate GetArenaSizeInBytes() worth, pass it to SetArenaBasePtr(), call GetSpan() N times to retrieve the aligned ranges. +template +struct ImSpanAllocator +{ + char* BasePtr; + int CurrOff; + int CurrIdx; + int Offsets[CHUNKS]; + int Sizes[CHUNKS]; + + ImSpanAllocator() { memset(this, 0, sizeof(*this)); } + inline void Reserve(int n, size_t sz, int a=4) { IM_ASSERT(n == CurrIdx && n < CHUNKS); CurrOff = IM_MEMALIGN(CurrOff, a); Offsets[n] = CurrOff; Sizes[n] = (int)sz; CurrIdx++; CurrOff += (int)sz; } + inline int GetArenaSizeInBytes() { return CurrOff; } + inline void SetArenaBasePtr(void* base_ptr) { BasePtr = (char*)base_ptr; } + inline void* GetSpanPtrBegin(int n) { IM_ASSERT(n >= 0 && n < CHUNKS && CurrIdx == CHUNKS); return (void*)(BasePtr + Offsets[n]); } + inline void* GetSpanPtrEnd(int n) { IM_ASSERT(n >= 0 && n < CHUNKS && CurrIdx == CHUNKS); return (void*)(BasePtr + Offsets[n] + Sizes[n]); } + template + inline void GetSpan(int n, ImSpan* span) { span->set((T*)GetSpanPtrBegin(n), (T*)GetSpanPtrEnd(n)); } +}; + +// Helper: ImPool<> +// Basic keyed storage for contiguous instances, slow/amortized insertion, O(1) indexable, O(Log N) queries by ID over a dense/hot buffer, +// Honor constructor/destructor. Add/remove invalidate all pointers. Indexes have the same lifetime as the associated object. +typedef int ImPoolIdx; +template +struct ImPool +{ + ImVector Buf; // Contiguous data + ImGuiStorage Map; // ID->Index + ImPoolIdx FreeIdx; // Next free idx to use + ImPoolIdx AliveCount; // Number of active/alive items (for display purpose) + + ImPool() { FreeIdx = AliveCount = 0; } + ~ImPool() { Clear(); } + T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Buf[idx] : NULL; } + T* GetByIndex(ImPoolIdx n) { return &Buf[n]; } + ImPoolIdx GetIndex(const T* p) const { IM_ASSERT(p >= Buf.Data && p < Buf.Data + Buf.Size); return (ImPoolIdx)(p - Buf.Data); } + T* GetOrAddByKey(ImGuiID key) { int* p_idx = Map.GetIntRef(key, -1); if (*p_idx != -1) return &Buf[*p_idx]; *p_idx = FreeIdx; return Add(); } + bool Contains(const T* p) const { return (p >= Buf.Data && p < Buf.Data + Buf.Size); } + void Clear() { for (int n = 0; n < Map.Data.Size; n++) { int idx = Map.Data[n].val_i; if (idx != -1) Buf[idx].~T(); } Map.Clear(); Buf.clear(); FreeIdx = AliveCount = 0; } + T* Add() { int idx = FreeIdx; if (idx == Buf.Size) { Buf.resize(Buf.Size + 1); FreeIdx++; } else { FreeIdx = *(int*)&Buf[idx]; } IM_PLACEMENT_NEW(&Buf[idx]) T(); AliveCount++; return &Buf[idx]; } + void Remove(ImGuiID key, const T* p) { Remove(key, GetIndex(p)); } + void Remove(ImGuiID key, ImPoolIdx idx) { Buf[idx].~T(); *(int*)&Buf[idx] = FreeIdx; FreeIdx = idx; Map.SetInt(key, -1); AliveCount--; } + void Reserve(int capacity) { Buf.reserve(capacity); Map.Data.reserve(capacity); } + + // To iterate a ImPool: for (int n = 0; n < pool.GetMapSize(); n++) if (T* t = pool.TryGetMapData(n)) { ... } + // Can be avoided if you know .Remove() has never been called on the pool, or AliveCount == GetMapSize() + int GetAliveCount() const { return AliveCount; } // Number of active/alive items in the pool (for display purpose) + int GetBufSize() const { return Buf.Size; } + int GetMapSize() const { return Map.Data.Size; } // It is the map we need iterate to find valid items, since we don't have "alive" storage anywhere + T* TryGetMapData(ImPoolIdx n) { int idx = Map.Data[n].val_i; if (idx == -1) return NULL; return GetByIndex(idx); } +}; + +// Helper: ImChunkStream<> +// Build and iterate a contiguous stream of variable-sized structures. +// This is used by Settings to store persistent data while reducing allocation count. +// We store the chunk size first, and align the final size on 4 bytes boundaries. +// The tedious/zealous amount of casting is to avoid -Wcast-align warnings. +template +struct ImChunkStream +{ + ImVector Buf; + + void clear() { Buf.clear(); } + bool empty() const { return Buf.Size == 0; } + int size() const { return Buf.Size; } + T* alloc_chunk(size_t sz) { size_t HDR_SZ = 4; sz = IM_MEMALIGN(HDR_SZ + sz, 4u); int off = Buf.Size; Buf.resize(off + (int)sz); ((int*)(void*)(Buf.Data + off))[0] = (int)sz; return (T*)(void*)(Buf.Data + off + (int)HDR_SZ); } + T* begin() { size_t HDR_SZ = 4; if (!Buf.Data) return NULL; return (T*)(void*)(Buf.Data + HDR_SZ); } + T* next_chunk(T* p) { size_t HDR_SZ = 4; IM_ASSERT(p >= begin() && p < end()); p = (T*)(void*)((char*)(void*)p + chunk_size(p)); if (p == (T*)(void*)((char*)end() + HDR_SZ)) return (T*)0; IM_ASSERT(p < end()); return p; } + int chunk_size(const T* p) { return ((const int*)p)[-1]; } + T* end() { return (T*)(void*)(Buf.Data + Buf.Size); } + int offset_from_ptr(const T* p) { IM_ASSERT(p >= begin() && p < end()); const ptrdiff_t off = (const char*)p - Buf.Data; return (int)off; } + T* ptr_from_offset(int off) { IM_ASSERT(off >= 4 && off < Buf.Size); return (T*)(void*)(Buf.Data + off); } + void swap(ImChunkStream& rhs) { rhs.Buf.swap(Buf); } +}; + +// Helper: ImGuiTextIndex +// Maintain a line index for a text buffer. This is a strong candidate to be moved into the public API. +struct ImGuiTextIndex +{ + ImVector LineOffsets; + int EndOffset = 0; // Because we don't own text buffer we need to maintain EndOffset (may bake in LineOffsets?) + + void clear() { LineOffsets.clear(); EndOffset = 0; } + int size() { return LineOffsets.Size; } + const char* get_line_begin(const char* base, int n) { return base + LineOffsets[n]; } + const char* get_line_end(const char* base, int n) { return base + (n + 1 < LineOffsets.Size ? (LineOffsets[n + 1] - 1) : EndOffset); } + void append(const char* base, int old_size, int new_size); +}; + +// Helper: ImGuiStorage +IMGUI_API ImGuiStoragePair* ImLowerBound(ImGuiStoragePair* in_begin, ImGuiStoragePair* in_end, ImGuiID key); +//----------------------------------------------------------------------------- +// [SECTION] ImDrawList support +//----------------------------------------------------------------------------- + +// ImDrawList: Helper function to calculate a circle's segment count given its radius and a "maximum error" value. +// Estimation of number of circle segment based on error is derived using method described in https://stackoverflow.com/a/2244088/15194693 +// Number of segments (N) is calculated using equation: +// N = ceil ( pi / acos(1 - error / r) ) where r > 0, error <= r +// Our equation is significantly simpler that one in the post thanks for choosing segment that is +// perpendicular to X axis. Follow steps in the article from this starting condition and you will +// will get this result. +// +// Rendering circles with an odd number of segments, while mathematically correct will produce +// asymmetrical results on the raster grid. Therefore we're rounding N to next even number (7->8, 8->8, 9->10 etc.) +#define IM_ROUNDUP_TO_EVEN(_V) ((((_V) + 1) / 2) * 2) +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN 4 +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX 512 +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC(_RAD,_MAXERROR) ImClamp(IM_ROUNDUP_TO_EVEN((int)ImCeil(IM_PI / ImAcos(1 - ImMin((_MAXERROR), (_RAD)) / (_RAD)))), IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MIN, IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_MAX) + +// Raw equation from IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC rewritten for 'r' and 'error'. +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_R(_N,_MAXERROR) ((_MAXERROR) / (1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI)))) +#define IM_DRAWLIST_CIRCLE_AUTO_SEGMENT_CALC_ERROR(_N,_RAD) ((1 - ImCos(IM_PI / ImMax((float)(_N), IM_PI))) / (_RAD)) + +// ImDrawList: Lookup table size for adaptive arc drawing, cover full circle. +#ifndef IM_DRAWLIST_ARCFAST_TABLE_SIZE +#define IM_DRAWLIST_ARCFAST_TABLE_SIZE 48 // Number of samples in lookup table. +#endif +#define IM_DRAWLIST_ARCFAST_SAMPLE_MAX IM_DRAWLIST_ARCFAST_TABLE_SIZE // Sample index _PathArcToFastEx() for 360 angle. + +// Data shared between all ImDrawList instances +// You may want to create your own instance of this if you want to use ImDrawList completely without ImGui. In that case, watch out for future changes to this structure. +struct IMGUI_API ImDrawListSharedData +{ + ImVec2 TexUvWhitePixel; // UV of white pixel in the atlas + ImFont* Font; // Current/default font (optional, for simplified AddText overload) + float FontSize; // Current/default font size (optional, for simplified AddText overload) + float FontScale; // Current/default font scale (== FontSize / Font->FontSize) + float CurveTessellationTol; // Tessellation tolerance when using PathBezierCurveTo() + float CircleSegmentMaxError; // Number of circle segments to use per pixel of radius for AddCircle() etc + ImVec4 ClipRectFullscreen; // Value for PushClipRectFullscreen() + ImDrawListFlags InitialFlags; // Initial flags at the beginning of the frame (it is possible to alter flags on a per-drawlist basis afterwards) + + // [Internal] Temp write buffer + ImVector TempBuffer; + + // [Internal] Lookup tables + ImVec2 ArcFastVtx[IM_DRAWLIST_ARCFAST_TABLE_SIZE]; // Sample points on the quarter of the circle. + float ArcFastRadiusCutoff; // Cutoff radius after which arc drawing will fallback to slower PathArcTo() + ImU8 CircleSegmentCounts[64]; // Precomputed segment count for given radius before we calculate it dynamically (to avoid calculation overhead) + const ImVec4* TexUvLines; // UV of anti-aliased lines in the atlas + + int* ShadowRectIds; // IDs of rects for shadow texture (2 entries) + const ImVec4* ShadowRectUvs; // UV coordinates for shadow texture (10 entries) + + ImDrawListSharedData(); + void SetCircleTessellationMaxError(float max_error); +}; + +struct ImDrawDataBuilder +{ + ImVector* Layers[2]; // Pointers to global layers for: regular, tooltip. LayersP[0] is owned by DrawData. + ImVector LayerData1; + + ImDrawDataBuilder() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Data types support +//----------------------------------------------------------------------------- + +struct ImGuiDataVarInfo +{ + ImGuiDataType Type; + ImU32 Count; // 1+ + ImU32 Offset; // Offset in parent structure + void* GetVarPtr(void* parent) const { return (void*)((unsigned char*)parent + Offset); } +}; + +struct ImGuiDataTypeStorage +{ + ImU8 Data[8]; // Opaque storage to fit any data up to ImGuiDataType_COUNT +}; + +// Type information associated to one ImGuiDataType. Retrieve with DataTypeGetInfo(). +struct ImGuiDataTypeInfo +{ + size_t Size; // Size in bytes + const char* Name; // Short descriptive name for the type, for debugging + const char* PrintFmt; // Default printf format for the type + const char* ScanFmt; // Default scanf format for the type +}; + +// Extend ImGuiDataType_ +enum ImGuiDataTypePrivate_ +{ + ImGuiDataType_String = ImGuiDataType_COUNT + 1, + ImGuiDataType_Pointer, + ImGuiDataType_ID, +}; + +//----------------------------------------------------------------------------- +// [SECTION] Widgets support: flags, enums, data structures +//----------------------------------------------------------------------------- + +// Extend ImGuiItemFlags +// - input: PushItemFlag() manipulates g.CurrentItemFlags, ItemAdd() calls may add extra flags. +// - output: stored in g.LastItemData.InFlags +enum ImGuiItemFlagsPrivate_ +{ + // Controlled by user + ImGuiItemFlags_Disabled = 1 << 10, // false // Disable interactions (DOES NOT affect visuals. DO NOT mix direct use of this with BeginDisabled(). See BeginDisabled()/EndDisabled() for full disable feature, and github #211). + ImGuiItemFlags_ReadOnly = 1 << 11, // false // [ALPHA] Allow hovering interactions but underlying value is not changed. + ImGuiItemFlags_MixedValue = 1 << 12, // false // [BETA] Represent a mixed/indeterminate value, generally multi-selection where values differ. Currently only supported by Checkbox() (later should support all sorts of widgets) + ImGuiItemFlags_NoWindowHoverableCheck = 1 << 13, // false // Disable hoverable check in ItemHoverable() + ImGuiItemFlags_AllowOverlap = 1 << 14, // false // Allow being overlapped by another widget. Not-hovered to Hovered transition deferred by a frame. + + // Controlled by widget code + ImGuiItemFlags_Inputable = 1 << 20, // false // [WIP] Auto-activate input mode when tab focused. Currently only used and supported by a few items before it becomes a generic feature. + ImGuiItemFlags_HasSelectionUserData = 1 << 21, // false // Set by SetNextItemSelectionUserData() + ImGuiItemFlags_IsMultiSelect = 1 << 22, // false // Set by SetNextItemSelectionUserData() + + ImGuiItemFlags_Default_ = ImGuiItemFlags_AutoClosePopups, // Please don't change, use PushItemFlag() instead. + + // Obsolete + //ImGuiItemFlags_SelectableDontClosePopup = !ImGuiItemFlags_AutoClosePopups, // Can't have a redirect as we inverted the behavior +}; + +// Status flags for an already submitted item +// - output: stored in g.LastItemData.StatusFlags +enum ImGuiItemStatusFlags_ +{ + ImGuiItemStatusFlags_None = 0, + ImGuiItemStatusFlags_HoveredRect = 1 << 0, // Mouse position is within item rectangle (does NOT mean that the window is in correct z-order and can be hovered!, this is only one part of the most-common IsItemHovered test) + ImGuiItemStatusFlags_HasDisplayRect = 1 << 1, // g.LastItemData.DisplayRect is valid + ImGuiItemStatusFlags_Edited = 1 << 2, // Value exposed by item was edited in the current frame (should match the bool return value of most widgets) + ImGuiItemStatusFlags_ToggledSelection = 1 << 3, // Set when Selectable(), TreeNode() reports toggling a selection. We can't report "Selected", only state changes, in order to easily handle clipping with less issues. + ImGuiItemStatusFlags_ToggledOpen = 1 << 4, // Set when TreeNode() reports toggling their open state. + ImGuiItemStatusFlags_HasDeactivated = 1 << 5, // Set if the widget/group is able to provide data for the ImGuiItemStatusFlags_Deactivated flag. + ImGuiItemStatusFlags_Deactivated = 1 << 6, // Only valid if ImGuiItemStatusFlags_HasDeactivated is set. + ImGuiItemStatusFlags_HoveredWindow = 1 << 7, // Override the HoveredWindow test to allow cross-window hover testing. + ImGuiItemStatusFlags_Visible = 1 << 8, // [WIP] Set when item is overlapping the current clipping rectangle (Used internally. Please don't use yet: API/system will change as we refactor Itemadd()). + ImGuiItemStatusFlags_HasClipRect = 1 << 9, // g.LastItemData.ClipRect is valid. + ImGuiItemStatusFlags_HasShortcut = 1 << 10, // g.LastItemData.Shortcut valid. Set by SetNextItemShortcut() -> ItemAdd(). + + // Additional status + semantic for ImGuiTestEngine +#ifdef IMGUI_ENABLE_TEST_ENGINE + ImGuiItemStatusFlags_Openable = 1 << 20, // Item is an openable (e.g. TreeNode) + ImGuiItemStatusFlags_Opened = 1 << 21, // Opened status + ImGuiItemStatusFlags_Checkable = 1 << 22, // Item is a checkable (e.g. CheckBox, MenuItem) + ImGuiItemStatusFlags_Checked = 1 << 23, // Checked status + ImGuiItemStatusFlags_Inputable = 1 << 24, // Item is a text-inputable (e.g. InputText, SliderXXX, DragXXX) +#endif +}; + +// Extend ImGuiHoveredFlags_ +enum ImGuiHoveredFlagsPrivate_ +{ + ImGuiHoveredFlags_DelayMask_ = ImGuiHoveredFlags_DelayNone | ImGuiHoveredFlags_DelayShort | ImGuiHoveredFlags_DelayNormal | ImGuiHoveredFlags_NoSharedDelay, + ImGuiHoveredFlags_AllowedMaskForIsWindowHovered = ImGuiHoveredFlags_ChildWindows | ImGuiHoveredFlags_RootWindow | ImGuiHoveredFlags_AnyWindow | ImGuiHoveredFlags_NoPopupHierarchy | ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary, + ImGuiHoveredFlags_AllowedMaskForIsItemHovered = ImGuiHoveredFlags_AllowWhenBlockedByPopup | ImGuiHoveredFlags_AllowWhenBlockedByActiveItem | ImGuiHoveredFlags_AllowWhenOverlapped | ImGuiHoveredFlags_AllowWhenDisabled | ImGuiHoveredFlags_NoNavOverride | ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_Stationary | ImGuiHoveredFlags_DelayMask_, +}; + +// Extend ImGuiInputTextFlags_ +enum ImGuiInputTextFlagsPrivate_ +{ + // [Internal] + ImGuiInputTextFlags_Multiline = 1 << 26, // For internal use by InputTextMultiline() + ImGuiInputTextFlags_NoMarkEdited = 1 << 27, // For internal use by functions using InputText() before reformatting data + ImGuiInputTextFlags_MergedItem = 1 << 28, // For internal use by TempInputText(), will skip calling ItemAdd(). Require bounding-box to strictly match. + ImGuiInputTextFlags_LocalizeDecimalPoint= 1 << 29, // For internal use by InputScalar() and TempInputScalar() +}; + +// Extend ImGuiButtonFlags_ +enum ImGuiButtonFlagsPrivate_ +{ + ImGuiButtonFlags_PressedOnClick = 1 << 4, // return true on click (mouse down event) + ImGuiButtonFlags_PressedOnClickRelease = 1 << 5, // [Default] return true on click + release on same item <-- this is what the majority of Button are using + ImGuiButtonFlags_PressedOnClickReleaseAnywhere = 1 << 6, // return true on click + release even if the release event is not done while hovering the item + ImGuiButtonFlags_PressedOnRelease = 1 << 7, // return true on release (default requires click+release) + ImGuiButtonFlags_PressedOnDoubleClick = 1 << 8, // return true on double-click (default requires click+release) + ImGuiButtonFlags_PressedOnDragDropHold = 1 << 9, // return true when held into while we are drag and dropping another item (used by e.g. tree nodes, collapsing headers) + ImGuiButtonFlags_Repeat = 1 << 10, // hold to repeat + ImGuiButtonFlags_FlattenChildren = 1 << 11, // allow interactions even if a child window is overlapping + ImGuiButtonFlags_AllowOverlap = 1 << 12, // require previous frame HoveredId to either match id or be null before being usable. + ImGuiButtonFlags_DontClosePopups = 1 << 13, // disable automatically closing parent popup on press // [UNUSED] + //ImGuiButtonFlags_Disabled = 1 << 14, // disable interactions -> use BeginDisabled() or ImGuiItemFlags_Disabled + ImGuiButtonFlags_AlignTextBaseLine = 1 << 15, // vertically align button to match text baseline - ButtonEx() only // FIXME: Should be removed and handled by SmallButton(), not possible currently because of DC.CursorPosPrevLine + ImGuiButtonFlags_NoKeyModifiers = 1 << 16, // disable mouse interaction if a key modifier is held + ImGuiButtonFlags_NoHoldingActiveId = 1 << 17, // don't set ActiveId while holding the mouse (ImGuiButtonFlags_PressedOnClick only) + ImGuiButtonFlags_NoNavFocus = 1 << 18, // don't override navigation focus when activated (FIXME: this is essentially used every time an item uses ImGuiItemFlags_NoNav, but because legacy specs don't requires LastItemData to be set ButtonBehavior(), we can't poll g.LastItemData.InFlags) + ImGuiButtonFlags_NoHoveredOnFocus = 1 << 19, // don't report as hovered when nav focus is on this item + ImGuiButtonFlags_NoSetKeyOwner = 1 << 20, // don't set key/input owner on the initial click (note: mouse buttons are keys! often, the key in question will be ImGuiKey_MouseLeft!) + ImGuiButtonFlags_NoTestKeyOwner = 1 << 21, // don't test key/input owner when polling the key (note: mouse buttons are keys! often, the key in question will be ImGuiKey_MouseLeft!) + ImGuiButtonFlags_PressedOnMask_ = ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere | ImGuiButtonFlags_PressedOnRelease | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_PressedOnDragDropHold, + ImGuiButtonFlags_PressedOnDefault_ = ImGuiButtonFlags_PressedOnClickRelease, +}; + +// Extend ImGuiComboFlags_ +enum ImGuiComboFlagsPrivate_ +{ + ImGuiComboFlags_CustomPreview = 1 << 20, // enable BeginComboPreview() +}; + +// Extend ImGuiSliderFlags_ +enum ImGuiSliderFlagsPrivate_ +{ + ImGuiSliderFlags_Vertical = 1 << 20, // Should this slider be orientated vertically? + ImGuiSliderFlags_ReadOnly = 1 << 21, // Consider using g.NextItemData.ItemFlags |= ImGuiItemFlags_ReadOnly instead. +}; + +// Extend ImGuiSelectableFlags_ +enum ImGuiSelectableFlagsPrivate_ +{ + // NB: need to be in sync with last value of ImGuiSelectableFlags_ + ImGuiSelectableFlags_NoHoldingActiveID = 1 << 20, + ImGuiSelectableFlags_SelectOnNav = 1 << 21, // (WIP) Auto-select when moved into. This is not exposed in public API as to handle multi-select and modifiers we will need user to explicitly control focus scope. May be replaced with a BeginSelection() API. + ImGuiSelectableFlags_SelectOnClick = 1 << 22, // Override button behavior to react on Click (default is Click+Release) + ImGuiSelectableFlags_SelectOnRelease = 1 << 23, // Override button behavior to react on Release (default is Click+Release) + ImGuiSelectableFlags_SpanAvailWidth = 1 << 24, // Span all avail width even if we declared less for layout purpose. FIXME: We may be able to remove this (added in 6251d379, 2bcafc86 for menus) + ImGuiSelectableFlags_SetNavIdOnHover = 1 << 25, // Set Nav/Focus ID on mouse hover (used by MenuItem) + ImGuiSelectableFlags_NoPadWithHalfSpacing = 1 << 26, // Disable padding each side with ItemSpacing * 0.5f + ImGuiSelectableFlags_NoSetKeyOwner = 1 << 27, // Don't set key/input owner on the initial click (note: mouse buttons are keys! often, the key in question will be ImGuiKey_MouseLeft!) +}; + +// Extend ImGuiTreeNodeFlags_ +enum ImGuiTreeNodeFlagsPrivate_ +{ + ImGuiTreeNodeFlags_ClipLabelForTrailingButton = 1 << 28,// FIXME-WIP: Hard-coded for CollapsingHeader() + ImGuiTreeNodeFlags_UpsideDownArrow = 1 << 29,// FIXME-WIP: Turn Down arrow into an Up arrow, but reversed trees (#6517) + ImGuiTreeNodeFlags_OpenOnMask_ = ImGuiTreeNodeFlags_OpenOnDoubleClick | ImGuiTreeNodeFlags_OpenOnArrow, +}; + +enum ImGuiSeparatorFlags_ +{ + ImGuiSeparatorFlags_None = 0, + ImGuiSeparatorFlags_Horizontal = 1 << 0, // Axis default to current layout type, so generally Horizontal unless e.g. in a menu bar + ImGuiSeparatorFlags_Vertical = 1 << 1, + ImGuiSeparatorFlags_SpanAllColumns = 1 << 2, // Make separator cover all columns of a legacy Columns() set. +}; + +// Flags for FocusWindow(). This is not called ImGuiFocusFlags to avoid confusion with public-facing ImGuiFocusedFlags. +// FIXME: Once we finishing replacing more uses of GetTopMostPopupModal()+IsWindowWithinBeginStackOf() +// and FindBlockingModal() with this, we may want to change the flag to be opt-out instead of opt-in. +enum ImGuiFocusRequestFlags_ +{ + ImGuiFocusRequestFlags_None = 0, + ImGuiFocusRequestFlags_RestoreFocusedChild = 1 << 0, // Find last focused child (if any) and focus it instead. + ImGuiFocusRequestFlags_UnlessBelowModal = 1 << 1, // Do not set focus if the window is below a modal. +}; + +enum ImGuiTextFlags_ +{ + ImGuiTextFlags_None = 0, + ImGuiTextFlags_NoWidthForLargeClippedText = 1 << 0, +}; + +enum ImGuiTooltipFlags_ +{ + ImGuiTooltipFlags_None = 0, + ImGuiTooltipFlags_OverridePrevious = 1 << 1, // Clear/ignore previously submitted tooltip (defaults to append) +}; + +// FIXME: this is in development, not exposed/functional as a generic feature yet. +// Horizontal/Vertical enums are fixed to 0/1 so they may be used to index ImVec2 +enum ImGuiLayoutType_ +{ + ImGuiLayoutType_Horizontal = 0, + ImGuiLayoutType_Vertical = 1 +}; + +enum ImGuiLogType +{ + ImGuiLogType_None = 0, + ImGuiLogType_TTY, + ImGuiLogType_File, + ImGuiLogType_Buffer, + ImGuiLogType_Clipboard, +}; + +// X/Y enums are fixed to 0/1 so they may be used to index ImVec2 +enum ImGuiAxis +{ + ImGuiAxis_None = -1, + ImGuiAxis_X = 0, + ImGuiAxis_Y = 1 +}; + +enum ImGuiPlotType +{ + ImGuiPlotType_Lines, + ImGuiPlotType_Histogram, +}; + +// Stacked color modifier, backup of modified data so we can restore it +struct ImGuiColorMod +{ + ImGuiCol Col; + ImVec4 BackupValue; +}; + +// Stacked style modifier, backup of modified data so we can restore it. Data type inferred from the variable. +struct ImGuiStyleMod +{ + ImGuiStyleVar VarIdx; + union { int BackupInt[2]; float BackupFloat[2]; }; + ImGuiStyleMod(ImGuiStyleVar idx, int v) { VarIdx = idx; BackupInt[0] = v; } + ImGuiStyleMod(ImGuiStyleVar idx, float v) { VarIdx = idx; BackupFloat[0] = v; } + ImGuiStyleMod(ImGuiStyleVar idx, ImVec2 v) { VarIdx = idx; BackupFloat[0] = v.x; BackupFloat[1] = v.y; } +}; + +// Storage data for BeginComboPreview()/EndComboPreview() +struct IMGUI_API ImGuiComboPreviewData +{ + ImRect PreviewRect; + ImVec2 BackupCursorPos; + ImVec2 BackupCursorMaxPos; + ImVec2 BackupCursorPosPrevLine; + float BackupPrevLineTextBaseOffset; + ImGuiLayoutType BackupLayout; + + ImGuiComboPreviewData() { memset(this, 0, sizeof(*this)); } +}; + +// Stacked storage data for BeginGroup()/EndGroup() +struct IMGUI_API ImGuiGroupData +{ + ImGuiID WindowID; + ImVec2 BackupCursorPos; + ImVec2 BackupCursorMaxPos; + ImVec2 BackupCursorPosPrevLine; + ImVec1 BackupIndent; + ImVec1 BackupGroupOffset; + ImVec2 BackupCurrLineSize; + float BackupCurrLineTextBaseOffset; + ImGuiID BackupActiveIdIsAlive; + bool BackupActiveIdPreviousFrameIsAlive; + bool BackupHoveredIdIsAlive; + bool BackupIsSameLine; + bool EmitItem; +}; + +// Simple column measurement, currently used for MenuItem() only.. This is very short-sighted/throw-away code and NOT a generic helper. +struct IMGUI_API ImGuiMenuColumns +{ + ImU32 TotalWidth; + ImU32 NextTotalWidth; + ImU16 Spacing; + ImU16 OffsetIcon; // Always zero for now + ImU16 OffsetLabel; // Offsets are locked in Update() + ImU16 OffsetShortcut; + ImU16 OffsetMark; + ImU16 Widths[4]; // Width of: Icon, Label, Shortcut, Mark (accumulators for current frame) + + ImGuiMenuColumns() { memset(this, 0, sizeof(*this)); } + void Update(float spacing, bool window_reappearing); + float DeclColumns(float w_icon, float w_label, float w_shortcut, float w_mark); + void CalcNextTotalWidth(bool update_offsets); +}; + +// Internal temporary state for deactivating InputText() instances. +struct IMGUI_API ImGuiInputTextDeactivatedState +{ + ImGuiID ID; // widget id owning the text state (which just got deactivated) + ImVector TextA; // text buffer + + ImGuiInputTextDeactivatedState() { memset(this, 0, sizeof(*this)); } + void ClearFreeMemory() { ID = 0; TextA.clear(); } +}; + +// Forward declare imstb_textedit.h structure + make its main configuration define accessible +#undef IMSTB_TEXTEDIT_STRING +#undef IMSTB_TEXTEDIT_CHARTYPE +#define IMSTB_TEXTEDIT_STRING ImGuiInputTextState +#define IMSTB_TEXTEDIT_CHARTYPE char +#define IMSTB_TEXTEDIT_GETWIDTH_NEWLINE (-1.0f) +#define IMSTB_TEXTEDIT_UNDOSTATECOUNT 99 +#define IMSTB_TEXTEDIT_UNDOCHARCOUNT 999 +namespace ImStb { struct STB_TexteditState; } +typedef ImStb::STB_TexteditState ImStbTexteditState; + +// Internal state of the currently focused/edited text input box +// For a given item ID, access with ImGui::GetInputTextState() +struct IMGUI_API ImGuiInputTextState +{ + ImGuiContext* Ctx; // parent UI context (needs to be set explicitly by parent). + ImStbTexteditState* Stb; // State for stb_textedit.h + ImGuiID ID; // widget id owning the text state + int CurLenA; // UTF-8 length of the string in TextA (in bytes) + ImVector TextA; // main UTF8 buffer. + ImVector InitialTextA; // value to revert to when pressing Escape = backup of end-user buffer at the time of focus (in UTF-8, unaltered) + ImVector CallbackTextBackup; // temporary storage for callback to support automatic reconcile of undo-stack + int BufCapacityA; // end-user buffer capacity + ImVec2 Scroll; // horizontal offset (managed manually) + vertical scrolling (pulled from child window's own Scroll.y) + float CursorAnim; // timer for cursor blink, reset on every user action so the cursor reappears immediately + bool CursorFollow; // set when we want scrolling to follow the current cursor position (not always!) + bool SelectedAllMouseLock; // after a double-click to select all, we ignore further mouse drags to update selection + bool Edited; // edited this frame + ImGuiInputTextFlags Flags; // copy of InputText() flags. may be used to check if e.g. ImGuiInputTextFlags_Password is set. + bool ReloadUserBuf; // force a reload of user buf so it may be modified externally. may be automatic in future version. + int ReloadSelectionStart; // POSITIONS ARE IN IMWCHAR units *NOT* UTF-8 this is why this is not exposed yet. + int ReloadSelectionEnd; + + ImGuiInputTextState(); + ~ImGuiInputTextState(); + void ClearText() { CurLenA = 0; TextA[0] = 0; CursorClamp(); } + void ClearFreeMemory() { TextA.clear(); InitialTextA.clear(); } + void OnKeyPressed(int key); // Cannot be inline because we call in code in stb_textedit.h implementation + void OnCharPressed(unsigned int c); + + // Cursor & Selection + void CursorAnimReset(); + void CursorClamp(); + bool HasSelection() const; + void ClearSelection(); + int GetCursorPos() const; + int GetSelectionStart() const; + int GetSelectionEnd() const; + void SelectAll(); + + // Reload user buf (WIP #2890) + // If you modify underlying user-passed const char* while active you need to call this (InputText V2 may lift this) + // strcpy(my_buf, "hello"); + // if (ImGuiInputTextState* state = ImGui::GetInputTextState(id)) // id may be ImGui::GetItemID() is last item + // state->ReloadUserBufAndSelectAll(); + void ReloadUserBufAndSelectAll(); + void ReloadUserBufAndKeepSelection(); + void ReloadUserBufAndMoveToEnd(); +}; + +enum ImGuiWindowRefreshFlags_ +{ + ImGuiWindowRefreshFlags_None = 0, + ImGuiWindowRefreshFlags_TryToAvoidRefresh = 1 << 0, // [EXPERIMENTAL] Try to keep existing contents, USER MUST NOT HONOR BEGIN() RETURNING FALSE AND NOT APPEND. + ImGuiWindowRefreshFlags_RefreshOnHover = 1 << 1, // [EXPERIMENTAL] Always refresh on hover + ImGuiWindowRefreshFlags_RefreshOnFocus = 1 << 2, // [EXPERIMENTAL] Always refresh on focus + // Refresh policy/frequency, Load Balancing etc. +}; + +enum ImGuiNextWindowDataFlags_ +{ + ImGuiNextWindowDataFlags_None = 0, + ImGuiNextWindowDataFlags_HasPos = 1 << 0, + ImGuiNextWindowDataFlags_HasSize = 1 << 1, + ImGuiNextWindowDataFlags_HasContentSize = 1 << 2, + ImGuiNextWindowDataFlags_HasCollapsed = 1 << 3, + ImGuiNextWindowDataFlags_HasSizeConstraint = 1 << 4, + ImGuiNextWindowDataFlags_HasFocus = 1 << 5, + ImGuiNextWindowDataFlags_HasBgAlpha = 1 << 6, + ImGuiNextWindowDataFlags_HasScroll = 1 << 7, + ImGuiNextWindowDataFlags_HasChildFlags = 1 << 8, + ImGuiNextWindowDataFlags_HasRefreshPolicy = 1 << 9, +}; + +// Storage for SetNexWindow** functions +struct ImGuiNextWindowData +{ + ImGuiNextWindowDataFlags Flags; + ImGuiCond PosCond; + ImGuiCond SizeCond; + ImGuiCond CollapsedCond; + ImVec2 PosVal; + ImVec2 PosPivotVal; + ImVec2 SizeVal; + ImVec2 ContentSizeVal; + ImVec2 ScrollVal; + ImGuiChildFlags ChildFlags; + bool CollapsedVal; + ImRect SizeConstraintRect; + ImGuiSizeCallback SizeCallback; + void* SizeCallbackUserData; + float BgAlphaVal; // Override background alpha + ImVec2 MenuBarOffsetMinVal; // (Always on) This is not exposed publicly, so we don't clear it and it doesn't have a corresponding flag (could we? for consistency?) + ImGuiWindowRefreshFlags RefreshFlagsVal; + + ImGuiNextWindowData() { memset(this, 0, sizeof(*this)); } + inline void ClearFlags() { Flags = ImGuiNextWindowDataFlags_None; } +}; + +enum ImGuiNextItemDataFlags_ +{ + ImGuiNextItemDataFlags_None = 0, + ImGuiNextItemDataFlags_HasWidth = 1 << 0, + ImGuiNextItemDataFlags_HasOpen = 1 << 1, + ImGuiNextItemDataFlags_HasShortcut = 1 << 2, + ImGuiNextItemDataFlags_HasRefVal = 1 << 3, + ImGuiNextItemDataFlags_HasStorageID = 1 << 4, +}; + +struct ImGuiNextItemData +{ + ImGuiNextItemDataFlags Flags; + ImGuiItemFlags ItemFlags; // Currently only tested/used for ImGuiItemFlags_AllowOverlap and ImGuiItemFlags_HasSelectionUserData. + // Non-flags members are NOT cleared by ItemAdd() meaning they are still valid during NavProcessItem() + ImGuiID FocusScopeId; // Set by SetNextItemSelectionUserData() + ImGuiSelectionUserData SelectionUserData; // Set by SetNextItemSelectionUserData() (note that NULL/0 is a valid value, we use -1 == ImGuiSelectionUserData_Invalid to mark invalid values) + float Width; // Set by SetNextItemWidth() + ImGuiKeyChord Shortcut; // Set by SetNextItemShortcut() + ImGuiInputFlags ShortcutFlags; // Set by SetNextItemShortcut() + bool OpenVal; // Set by SetNextItemOpen() + ImU8 OpenCond; // Set by SetNextItemOpen() + ImGuiDataTypeStorage RefVal; // Not exposed yet, for ImGuiInputTextFlags_ParseEmptyAsRefVal + ImGuiID StorageId; // Set by SetNextItemStorageID() + + ImGuiNextItemData() { memset(this, 0, sizeof(*this)); SelectionUserData = -1; } + inline void ClearFlags() { Flags = ImGuiNextItemDataFlags_None; ItemFlags = ImGuiItemFlags_None; } // Also cleared manually by ItemAdd()! +}; + +// Status storage for the last submitted item +struct ImGuiLastItemData +{ + ImGuiID ID; + ImGuiItemFlags InFlags; // See ImGuiItemFlags_ + ImGuiItemStatusFlags StatusFlags; // See ImGuiItemStatusFlags_ + ImRect Rect; // Full rectangle + ImRect NavRect; // Navigation scoring rectangle (not displayed) + // Rarely used fields are not explicitly cleared, only valid when the corresponding ImGuiItemStatusFlags ar set. + ImRect DisplayRect; // Display rectangle. ONLY VALID IF (StatusFlags & ImGuiItemStatusFlags_HasDisplayRect) is set. + ImRect ClipRect; // Clip rectangle at the time of submitting item. ONLY VALID IF (StatusFlags & ImGuiItemStatusFlags_HasClipRect) is set.. + ImGuiKeyChord Shortcut; // Shortcut at the time of submitting item. ONLY VALID IF (StatusFlags & ImGuiItemStatusFlags_HasShortcut) is set.. + + ImGuiLastItemData() { memset(this, 0, sizeof(*this)); } +}; + +// Store data emitted by TreeNode() for usage by TreePop() +// - To implement ImGuiTreeNodeFlags_NavLeftJumpsBackHere: store the minimum amount of data +// which we can't infer in TreePop(), to perform the equivalent of NavApplyItemToResult(). +// Only stored when the node is a potential candidate for landing on a Left arrow jump. +struct ImGuiTreeNodeStackData +{ + ImGuiID ID; + ImGuiTreeNodeFlags TreeFlags; + ImGuiItemFlags InFlags; // Used for nav landing + ImRect NavRect; // Used for nav landing +}; + +// sizeof() = 18 +struct IMGUI_API ImGuiStackSizes +{ + short SizeOfIDStack; + short SizeOfColorStack; + short SizeOfStyleVarStack; + short SizeOfFontStack; + short SizeOfFocusScopeStack; + short SizeOfGroupStack; + short SizeOfItemFlagsStack; + short SizeOfBeginPopupStack; + short SizeOfDisabledStack; + + ImGuiStackSizes() { memset(this, 0, sizeof(*this)); } + void SetToContextState(ImGuiContext* ctx); + void CompareWithContextState(ImGuiContext* ctx); +}; + +// Data saved for each window pushed into the stack +struct ImGuiWindowStackData +{ + ImGuiWindow* Window; + ImGuiLastItemData ParentLastItemDataBackup; + ImGuiStackSizes StackSizesOnBegin; // Store size of various stacks for asserting + bool DisabledOverrideReenable; // Non-child window override disabled flag +}; + +struct ImGuiShrinkWidthItem +{ + int Index; + float Width; + float InitialWidth; +}; + +struct ImGuiPtrOrIndex +{ + void* Ptr; // Either field can be set, not both. e.g. Dock node tab bars are loose while BeginTabBar() ones are in a pool. + int Index; // Usually index in a main pool. + + ImGuiPtrOrIndex(void* ptr) { Ptr = ptr; Index = -1; } + ImGuiPtrOrIndex(int index) { Ptr = NULL; Index = index; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Popup support +//----------------------------------------------------------------------------- + +enum ImGuiPopupPositionPolicy +{ + ImGuiPopupPositionPolicy_Default, + ImGuiPopupPositionPolicy_ComboBox, + ImGuiPopupPositionPolicy_Tooltip, +}; + +// Storage for popup stacks (g.OpenPopupStack and g.BeginPopupStack) +struct ImGuiPopupData +{ + ImGuiID PopupId; // Set on OpenPopup() + ImGuiWindow* Window; // Resolved on BeginPopup() - may stay unresolved if user never calls OpenPopup() + ImGuiWindow* RestoreNavWindow;// Set on OpenPopup(), a NavWindow that will be restored on popup close + int ParentNavLayer; // Resolved on BeginPopup(). Actually a ImGuiNavLayer type (declared down below), initialized to -1 which is not part of an enum, but serves well-enough as "not any of layers" value + int OpenFrameCount; // Set on OpenPopup() + ImGuiID OpenParentId; // Set on OpenPopup(), we need this to differentiate multiple menu sets from each others (e.g. inside menu bar vs loose menu items) + ImVec2 OpenPopupPos; // Set on OpenPopup(), preferred popup position (typically == OpenMousePos when using mouse) + ImVec2 OpenMousePos; // Set on OpenPopup(), copy of mouse position at the time of opening popup + + ImGuiPopupData() { memset(this, 0, sizeof(*this)); ParentNavLayer = OpenFrameCount = -1; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Inputs support +//----------------------------------------------------------------------------- + +// Bit array for named keys +typedef ImBitArray ImBitArrayForNamedKeys; + +// [Internal] Key ranges +#define ImGuiKey_LegacyNativeKey_BEGIN 0 +#define ImGuiKey_LegacyNativeKey_END 512 +#define ImGuiKey_Keyboard_BEGIN (ImGuiKey_NamedKey_BEGIN) +#define ImGuiKey_Keyboard_END (ImGuiKey_GamepadStart) +#define ImGuiKey_Gamepad_BEGIN (ImGuiKey_GamepadStart) +#define ImGuiKey_Gamepad_END (ImGuiKey_GamepadRStickDown + 1) +#define ImGuiKey_Mouse_BEGIN (ImGuiKey_MouseLeft) +#define ImGuiKey_Mouse_END (ImGuiKey_MouseWheelY + 1) +#define ImGuiKey_Aliases_BEGIN (ImGuiKey_Mouse_BEGIN) +#define ImGuiKey_Aliases_END (ImGuiKey_Mouse_END) + +// [Internal] Named shortcuts for Navigation +#define ImGuiKey_NavKeyboardTweakSlow ImGuiMod_Ctrl +#define ImGuiKey_NavKeyboardTweakFast ImGuiMod_Shift +#define ImGuiKey_NavGamepadTweakSlow ImGuiKey_GamepadL1 +#define ImGuiKey_NavGamepadTweakFast ImGuiKey_GamepadR1 +#define ImGuiKey_NavGamepadActivate (g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceRight : ImGuiKey_GamepadFaceDown) +#define ImGuiKey_NavGamepadCancel (g.IO.ConfigNavSwapGamepadButtons ? ImGuiKey_GamepadFaceDown : ImGuiKey_GamepadFaceRight) +#define ImGuiKey_NavGamepadMenu ImGuiKey_GamepadFaceLeft +#define ImGuiKey_NavGamepadInput ImGuiKey_GamepadFaceUp + +enum ImGuiInputEventType +{ + ImGuiInputEventType_None = 0, + ImGuiInputEventType_MousePos, + ImGuiInputEventType_MouseWheel, + ImGuiInputEventType_MouseButton, + ImGuiInputEventType_Key, + ImGuiInputEventType_Text, + ImGuiInputEventType_Focus, + ImGuiInputEventType_COUNT +}; + +enum ImGuiInputSource +{ + ImGuiInputSource_None = 0, + ImGuiInputSource_Mouse, // Note: may be Mouse or TouchScreen or Pen. See io.MouseSource to distinguish them. + ImGuiInputSource_Keyboard, + ImGuiInputSource_Gamepad, + ImGuiInputSource_COUNT +}; + +// FIXME: Structures in the union below need to be declared as anonymous unions appears to be an extension? +// Using ImVec2() would fail on Clang 'union member 'MousePos' has a non-trivial default constructor' +struct ImGuiInputEventMousePos { float PosX, PosY; ImGuiMouseSource MouseSource; }; +struct ImGuiInputEventMouseWheel { float WheelX, WheelY; ImGuiMouseSource MouseSource; }; +struct ImGuiInputEventMouseButton { int Button; bool Down; ImGuiMouseSource MouseSource; }; +struct ImGuiInputEventKey { ImGuiKey Key; bool Down; float AnalogValue; }; +struct ImGuiInputEventText { unsigned int Char; }; +struct ImGuiInputEventAppFocused { bool Focused; }; + +struct ImGuiInputEvent +{ + ImGuiInputEventType Type; + ImGuiInputSource Source; + ImU32 EventId; // Unique, sequential increasing integer to identify an event (if you need to correlate them to other data). + union + { + ImGuiInputEventMousePos MousePos; // if Type == ImGuiInputEventType_MousePos + ImGuiInputEventMouseWheel MouseWheel; // if Type == ImGuiInputEventType_MouseWheel + ImGuiInputEventMouseButton MouseButton; // if Type == ImGuiInputEventType_MouseButton + ImGuiInputEventKey Key; // if Type == ImGuiInputEventType_Key + ImGuiInputEventText Text; // if Type == ImGuiInputEventType_Text + ImGuiInputEventAppFocused AppFocused; // if Type == ImGuiInputEventType_Focus + }; + bool AddedByTestEngine; + + ImGuiInputEvent() { memset(this, 0, sizeof(*this)); } +}; + +// Input function taking an 'ImGuiID owner_id' argument defaults to (ImGuiKeyOwner_Any == 0) aka don't test ownership, which matches legacy behavior. +#define ImGuiKeyOwner_Any ((ImGuiID)0) // Accept key that have an owner, UNLESS a call to SetKeyOwner() explicitly used ImGuiInputFlags_LockThisFrame or ImGuiInputFlags_LockUntilRelease. +#define ImGuiKeyOwner_NoOwner ((ImGuiID)-1) // Require key to have no owner. +//#define ImGuiKeyOwner_None ImGuiKeyOwner_NoOwner // We previously called this 'ImGuiKeyOwner_None' but it was inconsistent with our pattern that _None values == 0 and quite dangerous. Also using _NoOwner makes the IsKeyPressed() calls more explicit. + +typedef ImS16 ImGuiKeyRoutingIndex; + +// Routing table entry (sizeof() == 16 bytes) +struct ImGuiKeyRoutingData +{ + ImGuiKeyRoutingIndex NextEntryIndex; + ImU16 Mods; // Technically we'd only need 4-bits but for simplify we store ImGuiMod_ values which need 16-bits. + ImU8 RoutingCurrScore; // [DEBUG] For debug display + ImU8 RoutingNextScore; // Lower is better (0: perfect score) + ImGuiID RoutingCurr; + ImGuiID RoutingNext; + + ImGuiKeyRoutingData() { NextEntryIndex = -1; Mods = 0; RoutingCurrScore = RoutingNextScore = 255; RoutingCurr = RoutingNext = ImGuiKeyOwner_NoOwner; } +}; + +// Routing table: maintain a desired owner for each possible key-chord (key + mods), and setup owner in NewFrame() when mods are matching. +// Stored in main context (1 instance) +struct ImGuiKeyRoutingTable +{ + ImGuiKeyRoutingIndex Index[ImGuiKey_NamedKey_COUNT]; // Index of first entry in Entries[] + ImVector Entries; + ImVector EntriesNext; // Double-buffer to avoid reallocation (could use a shared buffer) + + ImGuiKeyRoutingTable() { Clear(); } + void Clear() { for (int n = 0; n < IM_ARRAYSIZE(Index); n++) Index[n] = -1; Entries.clear(); EntriesNext.clear(); } +}; + +// This extends ImGuiKeyData but only for named keys (legacy keys don't support the new features) +// Stored in main context (1 per named key). In the future it might be merged into ImGuiKeyData. +struct ImGuiKeyOwnerData +{ + ImGuiID OwnerCurr; + ImGuiID OwnerNext; + bool LockThisFrame; // Reading this key requires explicit owner id (until end of frame). Set by ImGuiInputFlags_LockThisFrame. + bool LockUntilRelease; // Reading this key requires explicit owner id (until key is released). Set by ImGuiInputFlags_LockUntilRelease. When this is true LockThisFrame is always true as well. + + ImGuiKeyOwnerData() { OwnerCurr = OwnerNext = ImGuiKeyOwner_NoOwner; LockThisFrame = LockUntilRelease = false; } +}; + +// Extend ImGuiInputFlags_ +// Flags for extended versions of IsKeyPressed(), IsMouseClicked(), Shortcut(), SetKeyOwner(), SetItemKeyOwner() +// Don't mistake with ImGuiInputTextFlags! (which is for ImGui::InputText() function) +enum ImGuiInputFlagsPrivate_ +{ + // Flags for IsKeyPressed(), IsKeyChordPressed(), IsMouseClicked(), Shortcut() + // - Repeat mode: Repeat rate selection + ImGuiInputFlags_RepeatRateDefault = 1 << 1, // Repeat rate: Regular (default) + ImGuiInputFlags_RepeatRateNavMove = 1 << 2, // Repeat rate: Fast + ImGuiInputFlags_RepeatRateNavTweak = 1 << 3, // Repeat rate: Faster + // - Repeat mode: Specify when repeating key pressed can be interrupted. + // - In theory ImGuiInputFlags_RepeatUntilOtherKeyPress may be a desirable default, but it would break too many behavior so everything is opt-in. + ImGuiInputFlags_RepeatUntilRelease = 1 << 4, // Stop repeating when released (default for all functions except Shortcut). This only exists to allow overriding Shortcut() default behavior. + ImGuiInputFlags_RepeatUntilKeyModsChange = 1 << 5, // Stop repeating when released OR if keyboard mods are changed (default for Shortcut) + ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone = 1 << 6, // Stop repeating when released OR if keyboard mods are leaving the None state. Allows going from Mod+Key to Key by releasing Mod. + ImGuiInputFlags_RepeatUntilOtherKeyPress = 1 << 7, // Stop repeating when released OR if any other keyboard key is pressed during the repeat + + // Flags for SetKeyOwner(), SetItemKeyOwner() + // - Locking key away from non-input aware code. Locking is useful to make input-owner-aware code steal keys from non-input-owner-aware code. If all code is input-owner-aware locking would never be necessary. + ImGuiInputFlags_LockThisFrame = 1 << 20, // Further accesses to key data will require EXPLICIT owner ID (ImGuiKeyOwner_Any/0 will NOT accepted for polling). Cleared at end of frame. + ImGuiInputFlags_LockUntilRelease = 1 << 21, // Further accesses to key data will require EXPLICIT owner ID (ImGuiKeyOwner_Any/0 will NOT accepted for polling). Cleared when the key is released or at end of each frame if key is released. + + // - Condition for SetItemKeyOwner() + ImGuiInputFlags_CondHovered = 1 << 22, // Only set if item is hovered (default to both) + ImGuiInputFlags_CondActive = 1 << 23, // Only set if item is active (default to both) + ImGuiInputFlags_CondDefault_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + + // [Internal] Mask of which function support which flags + ImGuiInputFlags_RepeatRateMask_ = ImGuiInputFlags_RepeatRateDefault | ImGuiInputFlags_RepeatRateNavMove | ImGuiInputFlags_RepeatRateNavTweak, + ImGuiInputFlags_RepeatUntilMask_ = ImGuiInputFlags_RepeatUntilRelease | ImGuiInputFlags_RepeatUntilKeyModsChange | ImGuiInputFlags_RepeatUntilKeyModsChangeFromNone | ImGuiInputFlags_RepeatUntilOtherKeyPress, + ImGuiInputFlags_RepeatMask_ = ImGuiInputFlags_Repeat | ImGuiInputFlags_RepeatRateMask_ | ImGuiInputFlags_RepeatUntilMask_, + ImGuiInputFlags_CondMask_ = ImGuiInputFlags_CondHovered | ImGuiInputFlags_CondActive, + ImGuiInputFlags_RouteTypeMask_ = ImGuiInputFlags_RouteActive | ImGuiInputFlags_RouteFocused | ImGuiInputFlags_RouteGlobal | ImGuiInputFlags_RouteAlways, + ImGuiInputFlags_RouteOptionsMask_ = ImGuiInputFlags_RouteOverFocused | ImGuiInputFlags_RouteOverActive | ImGuiInputFlags_RouteUnlessBgFocused | ImGuiInputFlags_RouteFromRootWindow, + ImGuiInputFlags_SupportedByIsKeyPressed = ImGuiInputFlags_RepeatMask_, + ImGuiInputFlags_SupportedByIsMouseClicked = ImGuiInputFlags_Repeat, + ImGuiInputFlags_SupportedByShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_, + ImGuiInputFlags_SupportedBySetNextItemShortcut = ImGuiInputFlags_RepeatMask_ | ImGuiInputFlags_RouteTypeMask_ | ImGuiInputFlags_RouteOptionsMask_ | ImGuiInputFlags_Tooltip, + ImGuiInputFlags_SupportedBySetKeyOwner = ImGuiInputFlags_LockThisFrame | ImGuiInputFlags_LockUntilRelease, + ImGuiInputFlags_SupportedBySetItemKeyOwner = ImGuiInputFlags_SupportedBySetKeyOwner | ImGuiInputFlags_CondMask_, +}; + +//----------------------------------------------------------------------------- +// [SECTION] Clipper support +//----------------------------------------------------------------------------- + +// Note that Max is exclusive, so perhaps should be using a Begin/End convention. +struct ImGuiListClipperRange +{ + int Min; + int Max; + bool PosToIndexConvert; // Begin/End are absolute position (will be converted to indices later) + ImS8 PosToIndexOffsetMin; // Add to Min after converting to indices + ImS8 PosToIndexOffsetMax; // Add to Min after converting to indices + + static ImGuiListClipperRange FromIndices(int min, int max) { ImGuiListClipperRange r = { min, max, false, 0, 0 }; return r; } + static ImGuiListClipperRange FromPositions(float y1, float y2, int off_min, int off_max) { ImGuiListClipperRange r = { (int)y1, (int)y2, true, (ImS8)off_min, (ImS8)off_max }; return r; } +}; + +// Temporary clipper data, buffers shared/reused between instances +struct ImGuiListClipperData +{ + ImGuiListClipper* ListClipper; + float LossynessOffset; + int StepNo; + int ItemsFrozen; + ImVector Ranges; + + ImGuiListClipperData() { memset(this, 0, sizeof(*this)); } + void Reset(ImGuiListClipper* clipper) { ListClipper = clipper; StepNo = ItemsFrozen = 0; Ranges.resize(0); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Navigation support +//----------------------------------------------------------------------------- + +enum ImGuiActivateFlags_ +{ + ImGuiActivateFlags_None = 0, + ImGuiActivateFlags_PreferInput = 1 << 0, // Favor activation that requires keyboard text input (e.g. for Slider/Drag). Default for Enter key. + ImGuiActivateFlags_PreferTweak = 1 << 1, // Favor activation for tweaking with arrows or gamepad (e.g. for Slider/Drag). Default for Space key and if keyboard is not used. + ImGuiActivateFlags_TryToPreserveState = 1 << 2, // Request widget to preserve state if it can (e.g. InputText will try to preserve cursor/selection) + ImGuiActivateFlags_FromTabbing = 1 << 3, // Activation requested by a tabbing request + ImGuiActivateFlags_FromShortcut = 1 << 4, // Activation requested by an item shortcut via SetNextItemShortcut() function. +}; + +// Early work-in-progress API for ScrollToItem() +enum ImGuiScrollFlags_ +{ + ImGuiScrollFlags_None = 0, + ImGuiScrollFlags_KeepVisibleEdgeX = 1 << 0, // If item is not visible: scroll as little as possible on X axis to bring item back into view [default for X axis] + ImGuiScrollFlags_KeepVisibleEdgeY = 1 << 1, // If item is not visible: scroll as little as possible on Y axis to bring item back into view [default for Y axis for windows that are already visible] + ImGuiScrollFlags_KeepVisibleCenterX = 1 << 2, // If item is not visible: scroll to make the item centered on X axis [rarely used] + ImGuiScrollFlags_KeepVisibleCenterY = 1 << 3, // If item is not visible: scroll to make the item centered on Y axis + ImGuiScrollFlags_AlwaysCenterX = 1 << 4, // Always center the result item on X axis [rarely used] + ImGuiScrollFlags_AlwaysCenterY = 1 << 5, // Always center the result item on Y axis [default for Y axis for appearing window) + ImGuiScrollFlags_NoScrollParent = 1 << 6, // Disable forwarding scrolling to parent window if required to keep item/rect visible (only scroll window the function was applied to). + ImGuiScrollFlags_MaskX_ = ImGuiScrollFlags_KeepVisibleEdgeX | ImGuiScrollFlags_KeepVisibleCenterX | ImGuiScrollFlags_AlwaysCenterX, + ImGuiScrollFlags_MaskY_ = ImGuiScrollFlags_KeepVisibleEdgeY | ImGuiScrollFlags_KeepVisibleCenterY | ImGuiScrollFlags_AlwaysCenterY, +}; + +enum ImGuiNavHighlightFlags_ +{ + ImGuiNavHighlightFlags_None = 0, + ImGuiNavHighlightFlags_Compact = 1 << 1, // Compact highlight, no padding + ImGuiNavHighlightFlags_AlwaysDraw = 1 << 2, // Draw rectangular highlight if (g.NavId == id) _even_ when using the mouse. + ImGuiNavHighlightFlags_NoRounding = 1 << 3, +}; + +enum ImGuiNavMoveFlags_ +{ + ImGuiNavMoveFlags_None = 0, + ImGuiNavMoveFlags_LoopX = 1 << 0, // On failed request, restart from opposite side + ImGuiNavMoveFlags_LoopY = 1 << 1, + ImGuiNavMoveFlags_WrapX = 1 << 2, // On failed request, request from opposite side one line down (when NavDir==right) or one line up (when NavDir==left) + ImGuiNavMoveFlags_WrapY = 1 << 3, // This is not super useful but provided for completeness + ImGuiNavMoveFlags_WrapMask_ = ImGuiNavMoveFlags_LoopX | ImGuiNavMoveFlags_LoopY | ImGuiNavMoveFlags_WrapX | ImGuiNavMoveFlags_WrapY, + ImGuiNavMoveFlags_AllowCurrentNavId = 1 << 4, // Allow scoring and considering the current NavId as a move target candidate. This is used when the move source is offset (e.g. pressing PageDown actually needs to send a Up move request, if we are pressing PageDown from the bottom-most item we need to stay in place) + ImGuiNavMoveFlags_AlsoScoreVisibleSet = 1 << 5, // Store alternate result in NavMoveResultLocalVisible that only comprise elements that are already fully visible (used by PageUp/PageDown) + ImGuiNavMoveFlags_ScrollToEdgeY = 1 << 6, // Force scrolling to min/max (used by Home/End) // FIXME-NAV: Aim to remove or reword, probably unnecessary + ImGuiNavMoveFlags_Forwarded = 1 << 7, + ImGuiNavMoveFlags_DebugNoResult = 1 << 8, // Dummy scoring for debug purpose, don't apply result + ImGuiNavMoveFlags_FocusApi = 1 << 9, // Requests from focus API can land/focus/activate items even if they are marked with _NoTabStop (see NavProcessItemForTabbingRequest() for details) + ImGuiNavMoveFlags_IsTabbing = 1 << 10, // == Focus + Activate if item is Inputable + DontChangeNavHighlight + ImGuiNavMoveFlags_IsPageMove = 1 << 11, // Identify a PageDown/PageUp request. + ImGuiNavMoveFlags_Activate = 1 << 12, // Activate/select target item. + ImGuiNavMoveFlags_NoSelect = 1 << 13, // Don't trigger selection by not setting g.NavJustMovedTo + ImGuiNavMoveFlags_NoSetNavHighlight = 1 << 14, // Do not alter the visible state of keyboard vs mouse nav highlight + ImGuiNavMoveFlags_NoClearActiveId = 1 << 15, // (Experimental) Do not clear active id when applying move result +}; + +enum ImGuiNavLayer +{ + ImGuiNavLayer_Main = 0, // Main scrolling layer + ImGuiNavLayer_Menu = 1, // Menu layer (access with Alt) + ImGuiNavLayer_COUNT +}; + +// Storage for navigation query/results +struct ImGuiNavItemData +{ + ImGuiWindow* Window; // Init,Move // Best candidate window (result->ItemWindow->RootWindowForNav == request->Window) + ImGuiID ID; // Init,Move // Best candidate item ID + ImGuiID FocusScopeId; // Init,Move // Best candidate focus scope ID + ImRect RectRel; // Init,Move // Best candidate bounding box in window relative space + ImGuiItemFlags InFlags; // ????,Move // Best candidate item flags + float DistBox; // Move // Best candidate box distance to current NavId + float DistCenter; // Move // Best candidate center distance to current NavId + float DistAxial; // Move // Best candidate axial distance to current NavId + ImGuiSelectionUserData SelectionUserData;//I+Mov // Best candidate SetNextItemSelectionUserData() value. Valid if (InFlags & ImGuiItemFlags_HasSelectionUserData) + + ImGuiNavItemData() { Clear(); } + void Clear() { Window = NULL; ID = FocusScopeId = 0; InFlags = 0; SelectionUserData = -1; DistBox = DistCenter = DistAxial = FLT_MAX; } +}; + +// Storage for PushFocusScope() +struct ImGuiFocusScopeData +{ + ImGuiID ID; + ImGuiID WindowID; +}; + +//----------------------------------------------------------------------------- +// [SECTION] Typing-select support +//----------------------------------------------------------------------------- + +// Flags for GetTypingSelectRequest() +enum ImGuiTypingSelectFlags_ +{ + ImGuiTypingSelectFlags_None = 0, + ImGuiTypingSelectFlags_AllowBackspace = 1 << 0, // Backspace to delete character inputs. If using: ensure GetTypingSelectRequest() is not called more than once per frame (filter by e.g. focus state) + ImGuiTypingSelectFlags_AllowSingleCharMode = 1 << 1, // Allow "single char" search mode which is activated when pressing the same character multiple times. +}; + +// Returned by GetTypingSelectRequest(), designed to eventually be public. +struct IMGUI_API ImGuiTypingSelectRequest +{ + ImGuiTypingSelectFlags Flags; // Flags passed to GetTypingSelectRequest() + int SearchBufferLen; + const char* SearchBuffer; // Search buffer contents (use full string. unless SingleCharMode is set, in which case use SingleCharSize). + bool SelectRequest; // Set when buffer was modified this frame, requesting a selection. + bool SingleCharMode; // Notify when buffer contains same character repeated, to implement special mode. In this situation it preferred to not display any on-screen search indication. + ImS8 SingleCharSize; // Length in bytes of first letter codepoint (1 for ascii, 2-4 for UTF-8). If (SearchBufferLen==RepeatCharSize) only 1 letter has been input. +}; + +// Storage for GetTypingSelectRequest() +struct IMGUI_API ImGuiTypingSelectState +{ + ImGuiTypingSelectRequest Request; // User-facing data + char SearchBuffer[64]; // Search buffer: no need to make dynamic as this search is very transient. + ImGuiID FocusScope; + int LastRequestFrame = 0; + float LastRequestTime = 0.0f; + bool SingleCharModeLock = false; // After a certain single char repeat count we lock into SingleCharMode. Two benefits: 1) buffer never fill, 2) we can provide an immediate SingleChar mode without timer elapsing. + + ImGuiTypingSelectState() { memset(this, 0, sizeof(*this)); } + void Clear() { SearchBuffer[0] = 0; SingleCharModeLock = false; } // We preserve remaining data for easier debugging +}; + +//----------------------------------------------------------------------------- +// [SECTION] Columns support +//----------------------------------------------------------------------------- + +// Flags for internal's BeginColumns(). This is an obsolete API. Prefer using BeginTable() nowadays! +enum ImGuiOldColumnFlags_ +{ + ImGuiOldColumnFlags_None = 0, + ImGuiOldColumnFlags_NoBorder = 1 << 0, // Disable column dividers + ImGuiOldColumnFlags_NoResize = 1 << 1, // Disable resizing columns when clicking on the dividers + ImGuiOldColumnFlags_NoPreserveWidths = 1 << 2, // Disable column width preservation when adjusting columns + ImGuiOldColumnFlags_NoForceWithinWindow = 1 << 3, // Disable forcing columns to fit within window + ImGuiOldColumnFlags_GrowParentContentsSize = 1 << 4, // Restore pre-1.51 behavior of extending the parent window contents size but _without affecting the columns width at all_. Will eventually remove. + + // Obsolete names (will be removed) +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + //ImGuiColumnsFlags_None = ImGuiOldColumnFlags_None, + //ImGuiColumnsFlags_NoBorder = ImGuiOldColumnFlags_NoBorder, + //ImGuiColumnsFlags_NoResize = ImGuiOldColumnFlags_NoResize, + //ImGuiColumnsFlags_NoPreserveWidths = ImGuiOldColumnFlags_NoPreserveWidths, + //ImGuiColumnsFlags_NoForceWithinWindow = ImGuiOldColumnFlags_NoForceWithinWindow, + //ImGuiColumnsFlags_GrowParentContentsSize = ImGuiOldColumnFlags_GrowParentContentsSize, +#endif +}; + +struct ImGuiOldColumnData +{ + float OffsetNorm; // Column start offset, normalized 0.0 (far left) -> 1.0 (far right) + float OffsetNormBeforeResize; + ImGuiOldColumnFlags Flags; // Not exposed + ImRect ClipRect; + + ImGuiOldColumnData() { memset(this, 0, sizeof(*this)); } +}; + +struct ImGuiOldColumns +{ + ImGuiID ID; + ImGuiOldColumnFlags Flags; + bool IsFirstFrame; + bool IsBeingResized; + int Current; + int Count; + float OffMinX, OffMaxX; // Offsets from HostWorkRect.Min.x + float LineMinY, LineMaxY; + float HostCursorPosY; // Backup of CursorPos at the time of BeginColumns() + float HostCursorMaxPosX; // Backup of CursorMaxPos at the time of BeginColumns() + ImRect HostInitialClipRect; // Backup of ClipRect at the time of BeginColumns() + ImRect HostBackupClipRect; // Backup of ClipRect during PushColumnsBackground()/PopColumnsBackground() + ImRect HostBackupParentWorkRect;//Backup of WorkRect at the time of BeginColumns() + ImVector Columns; + ImDrawListSplitter Splitter; + + ImGuiOldColumns() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Box-select support +//----------------------------------------------------------------------------- + +struct ImGuiBoxSelectState +{ + // Active box-selection data (persistent, 1 active at a time) + ImGuiID ID; + bool IsActive; + bool IsStarting; + bool IsStartedFromVoid; // Starting click was not from an item. + bool IsStartedSetNavIdOnce; + bool RequestClear; + ImGuiKeyChord KeyMods : 16; // Latched key-mods for box-select logic. + ImVec2 StartPosRel; // Start position in window-contents relative space (to support scrolling) + ImVec2 EndPosRel; // End position in window-contents relative space + ImVec2 ScrollAccum; // Scrolling accumulator (to behave at high-frame spaces) + ImGuiWindow* Window; + + // Temporary/Transient data + bool UnclipMode; // (Temp/Transient, here in hot area). Set/cleared by the BeginMultiSelect()/EndMultiSelect() owning active box-select. + ImRect UnclipRect; // Rectangle where ItemAdd() clipping may be temporarily disabled. Need support by multi-select supporting widgets. + ImRect BoxSelectRectPrev; // Selection rectangle in absolute coordinates (derived every frame from BoxSelectStartPosRel and MousePos) + ImRect BoxSelectRectCurr; + + ImGuiBoxSelectState() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Multi-select support +//----------------------------------------------------------------------------- + +// We always assume that -1 is an invalid value (which works for indices and pointers) +#define ImGuiSelectionUserData_Invalid ((ImGuiSelectionUserData)-1) + +// Temporary storage for multi-select +struct IMGUI_API ImGuiMultiSelectTempData +{ + ImGuiMultiSelectIO IO; // MUST BE FIRST FIELD. Requests are set and returned by BeginMultiSelect()/EndMultiSelect() + written to by user during the loop. + ImGuiMultiSelectState* Storage; + ImGuiID FocusScopeId; // Copied from g.CurrentFocusScopeId (unless another selection scope was pushed manually) + ImGuiMultiSelectFlags Flags; + ImVec2 ScopeRectMin; + ImVec2 BackupCursorMaxPos; + ImGuiSelectionUserData LastSubmittedItem; // Copy of last submitted item data, used to merge output ranges. + ImGuiID BoxSelectId; + ImGuiKeyChord KeyMods; + ImS8 LoopRequestSetAll; // -1: no operation, 0: clear all, 1: select all. + bool IsEndIO; // Set when switching IO from BeginMultiSelect() to EndMultiSelect() state. + bool IsFocused; // Set if currently focusing the selection scope (any item of the selection). May be used if you have custom shortcut associated to selection. + bool IsKeyboardSetRange; // Set by BeginMultiSelect() when using Shift+Navigation. Because scrolling may be affected we can't afford a frame of lag with Shift+Navigation. + bool NavIdPassedBy; + bool RangeSrcPassedBy; // Set by the item that matches RangeSrcItem. + bool RangeDstPassedBy; // Set by the item that matches NavJustMovedToId when IsSetRange is set. + + ImGuiMultiSelectTempData() { Clear(); } + void Clear() { size_t io_sz = sizeof(IO); ClearIO(); memset((void*)(&IO + 1), 0, sizeof(*this) - io_sz); } // Zero-clear except IO as we preserve IO.Requests[] buffer allocation. + void ClearIO() { IO.Requests.resize(0); IO.RangeSrcItem = IO.NavIdItem = ImGuiSelectionUserData_Invalid; IO.NavIdSelected = IO.RangeSrcReset = false; } +}; + +// Persistent storage for multi-select (as long as selection is alive) +struct IMGUI_API ImGuiMultiSelectState +{ + ImGuiWindow* Window; + ImGuiID ID; + int LastFrameActive; // Last used frame-count, for GC. + int LastSelectionSize; // Set by BeginMultiSelect() based on optional info provided by user. May be -1 if unknown. + ImS8 RangeSelected; // -1 (don't have) or true/false + ImS8 NavIdSelected; // -1 (don't have) or true/false + ImGuiSelectionUserData RangeSrcItem; // + ImGuiSelectionUserData NavIdItem; // SetNextItemSelectionUserData() value for NavId (if part of submitted items) + + ImGuiMultiSelectState() { Window = NULL; ID = 0; LastFrameActive = LastSelectionSize = 0; RangeSelected = NavIdSelected = -1; RangeSrcItem = NavIdItem = ImGuiSelectionUserData_Invalid; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Docking support +//----------------------------------------------------------------------------- + +#ifdef IMGUI_HAS_DOCK +// +#endif // #ifdef IMGUI_HAS_DOCK + +//----------------------------------------------------------------------------- +// [SECTION] Viewport support +//----------------------------------------------------------------------------- + +// ImGuiViewport Private/Internals fields (cardinal sin: we are using inheritance!) +// Every instance of ImGuiViewport is in fact a ImGuiViewportP. +struct ImGuiViewportP : public ImGuiViewport +{ + int BgFgDrawListsLastFrame[2]; // Last frame number the background (0) and foreground (1) draw lists were used + ImDrawList* BgFgDrawLists[2]; // Convenience background (0) and foreground (1) draw lists. We use them to draw software mouser cursor when io.MouseDrawCursor is set and to draw most debug overlays. + ImDrawData DrawDataP; + ImDrawDataBuilder DrawDataBuilder; // Temporary data while building final ImDrawData + + // Per-viewport work area + // - Insets are >= 0.0f values, distance from viewport corners to work area. + // - BeginMainMenuBar() and DockspaceOverViewport() tend to use work area to avoid stepping over existing contents. + // - Generally 'safeAreaInsets' in iOS land, 'DisplayCutout' in Android land. + ImVec2 WorkInsetMin; // Work Area inset locked for the frame. GetWorkRect() always fits within GetMainRect(). + ImVec2 WorkInsetMax; // " + ImVec2 BuildWorkInsetMin; // Work Area inset accumulator for current frame, to become next frame's WorkInset + ImVec2 BuildWorkInsetMax; // " + + ImGuiViewportP() { BgFgDrawListsLastFrame[0] = BgFgDrawListsLastFrame[1] = -1; BgFgDrawLists[0] = BgFgDrawLists[1] = NULL; } + ~ImGuiViewportP() { if (BgFgDrawLists[0]) IM_DELETE(BgFgDrawLists[0]); if (BgFgDrawLists[1]) IM_DELETE(BgFgDrawLists[1]); } + + // Calculate work rect pos/size given a set of offset (we have 1 pair of offset for rect locked from last frame data, and 1 pair for currently building rect) + ImVec2 CalcWorkRectPos(const ImVec2& inset_min) const { return ImVec2(Pos.x + inset_min.x, Pos.y + inset_min.y); } + ImVec2 CalcWorkRectSize(const ImVec2& inset_min, const ImVec2& inset_max) const { return ImVec2(ImMax(0.0f, Size.x - inset_min.x - inset_max.x), ImMax(0.0f, Size.y - inset_min.y - inset_max.y)); } + void UpdateWorkRect() { WorkPos = CalcWorkRectPos(WorkInsetMin); WorkSize = CalcWorkRectSize(WorkInsetMin, WorkInsetMax); } // Update public fields + + // Helpers to retrieve ImRect (we don't need to store BuildWorkRect as every access tend to change it, hence the code asymmetry) + ImRect GetMainRect() const { return ImRect(Pos.x, Pos.y, Pos.x + Size.x, Pos.y + Size.y); } + ImRect GetWorkRect() const { return ImRect(WorkPos.x, WorkPos.y, WorkPos.x + WorkSize.x, WorkPos.y + WorkSize.y); } + ImRect GetBuildWorkRect() const { ImVec2 pos = CalcWorkRectPos(BuildWorkInsetMin); ImVec2 size = CalcWorkRectSize(BuildWorkInsetMin, BuildWorkInsetMax); return ImRect(pos.x, pos.y, pos.x + size.x, pos.y + size.y); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Settings support +//----------------------------------------------------------------------------- + +// Windows data saved in imgui.ini file +// Because we never destroy or rename ImGuiWindowSettings, we can store the names in a separate buffer easily. +// (this is designed to be stored in a ImChunkStream buffer, with the variable-length Name following our structure) +struct ImGuiWindowSettings +{ + ImGuiID ID; + ImVec2ih Pos; + ImVec2ih Size; + bool Collapsed; + bool IsChild; + bool WantApply; // Set when loaded from .ini data (to enable merging/loading .ini data into an already running context) + bool WantDelete; // Set to invalidate/delete the settings entry + + ImGuiWindowSettings() { memset(this, 0, sizeof(*this)); } + char* GetName() { return (char*)(this + 1); } +}; + +struct ImGuiSettingsHandler +{ + const char* TypeName; // Short description stored in .ini file. Disallowed characters: '[' ']' + ImGuiID TypeHash; // == ImHashStr(TypeName) + void (*ClearAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Clear all settings data + void (*ReadInitFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Read: Called before reading (in registration order) + void* (*ReadOpenFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, const char* name); // Read: Called when entering into a new ini entry e.g. "[Window][Name]" + void (*ReadLineFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, void* entry, const char* line); // Read: Called for every line of text within an ini entry + void (*ApplyAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler); // Read: Called after reading (in registration order) + void (*WriteAllFn)(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* out_buf); // Write: Output every entries into 'out_buf' + void* UserData; + + ImGuiSettingsHandler() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Localization support +//----------------------------------------------------------------------------- + +// This is experimental and not officially supported, it'll probably fall short of features, if/when it does we may backtrack. +enum ImGuiLocKey : int +{ + ImGuiLocKey_VersionStr, + ImGuiLocKey_TableSizeOne, + ImGuiLocKey_TableSizeAllFit, + ImGuiLocKey_TableSizeAllDefault, + ImGuiLocKey_TableResetOrder, + ImGuiLocKey_WindowingMainMenuBar, + ImGuiLocKey_WindowingPopup, + ImGuiLocKey_WindowingUntitled, + ImGuiLocKey_OpenLink_s, + ImGuiLocKey_CopyLink, + ImGuiLocKey_COUNT +}; + +struct ImGuiLocEntry +{ + ImGuiLocKey Key; + const char* Text; +}; + + +//----------------------------------------------------------------------------- +// [SECTION] Metrics, Debug Tools +//----------------------------------------------------------------------------- + +enum ImGuiDebugLogFlags_ +{ + // Event types + ImGuiDebugLogFlags_None = 0, + ImGuiDebugLogFlags_EventActiveId = 1 << 0, + ImGuiDebugLogFlags_EventFocus = 1 << 1, + ImGuiDebugLogFlags_EventPopup = 1 << 2, + ImGuiDebugLogFlags_EventNav = 1 << 3, + ImGuiDebugLogFlags_EventClipper = 1 << 4, + ImGuiDebugLogFlags_EventSelection = 1 << 5, + ImGuiDebugLogFlags_EventIO = 1 << 6, + ImGuiDebugLogFlags_EventInputRouting = 1 << 7, + + ImGuiDebugLogFlags_EventMask_ = ImGuiDebugLogFlags_EventActiveId | ImGuiDebugLogFlags_EventFocus | ImGuiDebugLogFlags_EventPopup | ImGuiDebugLogFlags_EventNav | ImGuiDebugLogFlags_EventClipper | ImGuiDebugLogFlags_EventSelection | ImGuiDebugLogFlags_EventIO | ImGuiDebugLogFlags_EventInputRouting, + ImGuiDebugLogFlags_OutputToTTY = 1 << 20, // Also send output to TTY + ImGuiDebugLogFlags_OutputToTestEngine = 1 << 21, // Also send output to Test Engine +}; + +struct ImGuiDebugAllocEntry +{ + int FrameCount; + ImS16 AllocCount; + ImS16 FreeCount; +}; + +struct ImGuiDebugAllocInfo +{ + int TotalAllocCount; // Number of call to MemAlloc(). + int TotalFreeCount; + ImS16 LastEntriesIdx; // Current index in buffer + ImGuiDebugAllocEntry LastEntriesBuf[6]; // Track last 6 frames that had allocations + + ImGuiDebugAllocInfo() { memset(this, 0, sizeof(*this)); } +}; + +struct ImGuiMetricsConfig +{ + bool ShowDebugLog = false; + bool ShowIDStackTool = false; + bool ShowWindowsRects = false; + bool ShowWindowsBeginOrder = false; + bool ShowTablesRects = false; + bool ShowDrawCmdMesh = true; + bool ShowDrawCmdBoundingBoxes = true; + bool ShowTextEncodingViewer = false; + bool ShowAtlasTintedWithTextColor = false; + int ShowWindowsRectsType = -1; + int ShowTablesRectsType = -1; + int HighlightMonitorIdx = -1; + ImGuiID HighlightViewportID = 0; +}; + +struct ImGuiStackLevelInfo +{ + ImGuiID ID; + ImS8 QueryFrameCount; // >= 1: Query in progress + bool QuerySuccess; // Obtained result from DebugHookIdInfo() + ImGuiDataType DataType : 8; + char Desc[57]; // Arbitrarily sized buffer to hold a result (FIXME: could replace Results[] with a chunk stream?) FIXME: Now that we added CTRL+C this should be fixed. + + ImGuiStackLevelInfo() { memset(this, 0, sizeof(*this)); } +}; + +// State for ID Stack tool queries +struct ImGuiIDStackTool +{ + int LastActiveFrame; + int StackLevel; // -1: query stack and resize Results, >= 0: individual stack level + ImGuiID QueryId; // ID to query details for + ImVector Results; + bool CopyToClipboardOnCtrlC; + float CopyToClipboardLastTime; + + ImGuiIDStackTool() { memset(this, 0, sizeof(*this)); CopyToClipboardLastTime = -FLT_MAX; } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Generic context hooks +//----------------------------------------------------------------------------- + +typedef void (*ImGuiContextHookCallback)(ImGuiContext* ctx, ImGuiContextHook* hook); +enum ImGuiContextHookType { ImGuiContextHookType_NewFramePre, ImGuiContextHookType_NewFramePost, ImGuiContextHookType_EndFramePre, ImGuiContextHookType_EndFramePost, ImGuiContextHookType_RenderPre, ImGuiContextHookType_RenderPost, ImGuiContextHookType_Shutdown, ImGuiContextHookType_PendingRemoval_ }; + +struct ImGuiContextHook +{ + ImGuiID HookId; // A unique ID assigned by AddContextHook() + ImGuiContextHookType Type; + ImGuiID Owner; + ImGuiContextHookCallback Callback; + void* UserData; + + ImGuiContextHook() { memset(this, 0, sizeof(*this)); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiContext (main Dear ImGui context) +//----------------------------------------------------------------------------- + +struct ImGuiContext +{ + bool Initialized; + bool FontAtlasOwnedByContext; // IO.Fonts-> is owned by the ImGuiContext and will be destructed along with it. + ImGuiIO IO; + ImGuiPlatformIO PlatformIO; + ImGuiStyle Style; + ImFont* Font; // (Shortcut) == FontStack.empty() ? IO.Font : FontStack.back() + float FontSize; // (Shortcut) == FontBaseSize * g.CurrentWindow->FontWindowScale == window->FontSize(). Text height for current window. + float FontBaseSize; // (Shortcut) == IO.FontGlobalScale * Font->Scale * Font->FontSize. Base text height. + float FontScale; // == FontSize / Font->FontSize + float CurrentDpiScale; // Current window/viewport DpiScale + ImDrawListSharedData DrawListSharedData; + double Time; + int FrameCount; + int FrameCountEnded; + int FrameCountRendered; + bool WithinFrameScope; // Set by NewFrame(), cleared by EndFrame() + bool WithinFrameScopeWithImplicitWindow; // Set by NewFrame(), cleared by EndFrame() when the implicit debug window has been pushed + bool WithinEndChild; // Set within EndChild() + bool GcCompactAll; // Request full GC + bool TestEngineHookItems; // Will call test engine hooks: ImGuiTestEngineHook_ItemAdd(), ImGuiTestEngineHook_ItemInfo(), ImGuiTestEngineHook_Log() + void* TestEngine; // Test engine user data + char ContextName[16]; // Storage for a context name (to facilitate debugging multi-context setups) + + // Inputs + ImVector InputEventsQueue; // Input events which will be trickled/written into IO structure. + ImVector InputEventsTrail; // Past input events processed in NewFrame(). This is to allow domain-specific application to access e.g mouse/pen trail. + ImGuiMouseSource InputEventsNextMouseSource; + ImU32 InputEventsNextEventId; + + // Windows state + ImVector Windows; // Windows, sorted in display order, back to front + ImVector WindowsFocusOrder; // Root windows, sorted in focus order, back to front. + ImVector WindowsTempSortBuffer; // Temporary buffer used in EndFrame() to reorder windows so parents are kept before their child + ImVector CurrentWindowStack; + ImGuiStorage WindowsById; // Map window's ImGuiID to ImGuiWindow* + int WindowsActiveCount; // Number of unique windows submitted by frame + ImVec2 WindowsHoverPadding; // Padding around resizable windows for which hovering on counts as hovering the window == ImMax(style.TouchExtraPadding, WINDOWS_HOVER_PADDING). + ImGuiID DebugBreakInWindow; // Set to break in Begin() call. + ImGuiWindow* CurrentWindow; // Window being drawn into + ImGuiWindow* HoveredWindow; // Window the mouse is hovering. Will typically catch mouse inputs. + ImGuiWindow* HoveredWindowUnderMovingWindow; // Hovered window ignoring MovingWindow. Only set if MovingWindow is set. + ImGuiWindow* HoveredWindowBeforeClear; // Window the mouse is hovering. Filled even with _NoMouse. This is currently useful for multi-context compositors. + ImGuiWindow* MovingWindow; // Track the window we clicked on (in order to preserve focus). The actual window that is moved is generally MovingWindow->RootWindow. + ImGuiWindow* WheelingWindow; // Track the window we started mouse-wheeling on. Until a timer elapse or mouse has moved, generally keep scrolling the same window even if during the course of scrolling the mouse ends up hovering a child window. + ImVec2 WheelingWindowRefMousePos; + int WheelingWindowStartFrame; // This may be set one frame before WheelingWindow is != NULL + int WheelingWindowScrolledFrame; + float WheelingWindowReleaseTimer; + ImVec2 WheelingWindowWheelRemainder; + ImVec2 WheelingAxisAvg; + + // Item/widgets state and tracking information + ImGuiID DebugDrawIdConflicts; // Set when we detect multiple items with the same identifier + ImGuiID DebugHookIdInfo; // Will call core hooks: DebugHookIdInfo() from GetID functions, used by ID Stack Tool [next HoveredId/ActiveId to not pull in an extra cache-line] + ImGuiID HoveredId; // Hovered widget, filled during the frame + ImGuiID HoveredIdPreviousFrame; + int HoveredIdPreviousFrameItemCount; // Count numbers of items using the same ID as last frame's hovered id + float HoveredIdTimer; // Measure contiguous hovering time + float HoveredIdNotActiveTimer; // Measure contiguous hovering time where the item has not been active + bool HoveredIdAllowOverlap; + bool HoveredIdIsDisabled; // At least one widget passed the rect test, but has been discarded by disabled flag or popup inhibit. May be true even if HoveredId == 0. + bool ItemUnclipByLog; // Disable ItemAdd() clipping, essentially a memory-locality friendly copy of LogEnabled + ImGuiID ActiveId; // Active widget + ImGuiID ActiveIdIsAlive; // Active widget has been seen this frame (we can't use a bool as the ActiveId may change within the frame) + float ActiveIdTimer; + bool ActiveIdIsJustActivated; // Set at the time of activation for one frame + bool ActiveIdAllowOverlap; // Active widget allows another widget to steal active id (generally for overlapping widgets, but not always) + bool ActiveIdNoClearOnFocusLoss; // Disable losing active id if the active id window gets unfocused. + bool ActiveIdHasBeenPressedBefore; // Track whether the active id led to a press (this is to allow changing between PressOnClick and PressOnRelease without pressing twice). Used by range_select branch. + bool ActiveIdHasBeenEditedBefore; // Was the value associated to the widget Edited over the course of the Active state. + bool ActiveIdHasBeenEditedThisFrame; + bool ActiveIdFromShortcut; + int ActiveIdMouseButton : 8; + ImVec2 ActiveIdClickOffset; // Clicked offset from upper-left corner, if applicable (currently only set by ButtonBehavior) + ImGuiWindow* ActiveIdWindow; + ImGuiInputSource ActiveIdSource; // Activating source: ImGuiInputSource_Mouse OR ImGuiInputSource_Keyboard OR ImGuiInputSource_Gamepad + ImGuiID ActiveIdPreviousFrame; + bool ActiveIdPreviousFrameIsAlive; + bool ActiveIdPreviousFrameHasBeenEditedBefore; + ImGuiWindow* ActiveIdPreviousFrameWindow; + ImGuiID LastActiveId; // Store the last non-zero ActiveId, useful for animation. + float LastActiveIdTimer; // Store the last non-zero ActiveId timer since the beginning of activation, useful for animation. + + // Key/Input Ownership + Shortcut Routing system + // - The idea is that instead of "eating" a given key, we can link to an owner. + // - Input query can then read input by specifying ImGuiKeyOwner_Any (== 0), ImGuiKeyOwner_NoOwner (== -1) or a custom ID. + // - Routing is requested ahead of time for a given chord (Key + Mods) and granted in NewFrame(). + double LastKeyModsChangeTime; // Record the last time key mods changed (affect repeat delay when using shortcut logic) + double LastKeyModsChangeFromNoneTime; // Record the last time key mods changed away from being 0 (affect repeat delay when using shortcut logic) + double LastKeyboardKeyPressTime; // Record the last time a keyboard key (ignore mouse/gamepad ones) was pressed. + ImBitArrayForNamedKeys KeysMayBeCharInput; // Lookup to tell if a key can emit char input, see IsKeyChordPotentiallyCharInput(). sizeof() = 20 bytes + ImGuiKeyOwnerData KeysOwnerData[ImGuiKey_NamedKey_COUNT]; + ImGuiKeyRoutingTable KeysRoutingTable; + ImU32 ActiveIdUsingNavDirMask; // Active widget will want to read those nav move requests (e.g. can activate a button and move away from it) + bool ActiveIdUsingAllKeyboardKeys; // Active widget will want to read all keyboard keys inputs. (this is a shortcut for not taking ownership of 100+ keys, frequently used by drag operations) + ImGuiKeyChord DebugBreakInShortcutRouting; // Set to break in SetShortcutRouting()/Shortcut() calls. + //ImU32 ActiveIdUsingNavInputMask; // [OBSOLETE] Since (IMGUI_VERSION_NUM >= 18804) : 'g.ActiveIdUsingNavInputMask |= (1 << ImGuiNavInput_Cancel);' becomes --> 'SetKeyOwner(ImGuiKey_Escape, g.ActiveId) and/or SetKeyOwner(ImGuiKey_NavGamepadCancel, g.ActiveId);' + + // Next window/item data + ImGuiID CurrentFocusScopeId; // Value for currently appending items == g.FocusScopeStack.back(). Not to be mistaken with g.NavFocusScopeId. + ImGuiItemFlags CurrentItemFlags; // Value for currently appending items == g.ItemFlagsStack.back() + ImGuiID DebugLocateId; // Storage for DebugLocateItemOnHover() feature: this is read by ItemAdd() so we keep it in a hot/cached location + ImGuiNextItemData NextItemData; // Storage for SetNextItem** functions + ImGuiLastItemData LastItemData; // Storage for last submitted item (setup by ItemAdd) + ImGuiNextWindowData NextWindowData; // Storage for SetNextWindow** functions + bool DebugShowGroupRects; + + // Shared stacks + ImGuiCol DebugFlashStyleColorIdx; // (Keep close to ColorStack to share cache line) + ImVector ColorStack; // Stack for PushStyleColor()/PopStyleColor() - inherited by Begin() + ImVector StyleVarStack; // Stack for PushStyleVar()/PopStyleVar() - inherited by Begin() + ImVector FontStack; // Stack for PushFont()/PopFont() - inherited by Begin() + ImVector FocusScopeStack; // Stack for PushFocusScope()/PopFocusScope() - inherited by BeginChild(), pushed into by Begin() + ImVector ItemFlagsStack; // Stack for PushItemFlag()/PopItemFlag() - inherited by Begin() + ImVector GroupStack; // Stack for BeginGroup()/EndGroup() - not inherited by Begin() + ImVector OpenPopupStack; // Which popups are open (persistent) + ImVector BeginPopupStack; // Which level of BeginPopup() we are in (reset every frame) + ImVectorTreeNodeStack; // Stack for TreeNode() + + // Viewports + ImVector Viewports; // Active viewports (Size==1 in 'master' branch). Each viewports hold their copy of ImDrawData. + + // Gamepad/keyboard Navigation + ImGuiWindow* NavWindow; // Focused window for navigation. Could be called 'FocusedWindow' + ImGuiID NavId; // Focused item for navigation + ImGuiID NavFocusScopeId; // Focused focus scope (e.g. selection code often wants to "clear other items" when landing on an item of the same scope) + ImGuiNavLayer NavLayer; // Focused layer (main scrolling layer, or menu/title bar layer) + ImGuiID NavActivateId; // ~~ (g.ActiveId == 0) && (IsKeyPressed(ImGuiKey_Space) || IsKeyDown(ImGuiKey_Enter) || IsKeyPressed(ImGuiKey_NavGamepadActivate)) ? NavId : 0, also set when calling ActivateItem() + ImGuiID NavActivateDownId; // ~~ IsKeyDown(ImGuiKey_Space) || IsKeyDown(ImGuiKey_Enter) || IsKeyDown(ImGuiKey_NavGamepadActivate) ? NavId : 0 + ImGuiID NavActivatePressedId; // ~~ IsKeyPressed(ImGuiKey_Space) || IsKeyPressed(ImGuiKey_Enter) || IsKeyPressed(ImGuiKey_NavGamepadActivate) ? NavId : 0 (no repeat) + ImGuiActivateFlags NavActivateFlags; + ImVector NavFocusRoute; // Reversed copy focus scope stack for NavId (should contains NavFocusScopeId). This essentially follow the window->ParentWindowForFocusRoute chain. + ImGuiID NavHighlightActivatedId; + float NavHighlightActivatedTimer; + ImGuiID NavNextActivateId; // Set by ActivateItem(), queued until next frame. + ImGuiActivateFlags NavNextActivateFlags; + ImGuiInputSource NavInputSource; // Keyboard or Gamepad mode? THIS CAN ONLY BE ImGuiInputSource_Keyboard or ImGuiInputSource_Mouse + ImGuiSelectionUserData NavLastValidSelectionUserData; // Last valid data passed to SetNextItemSelectionUser(), or -1. For current window. Not reset when focusing an item that doesn't have selection data. + bool NavIdIsAlive; // Nav widget has been seen this frame ~~ NavRectRel is valid + bool NavMousePosDirty; // When set we will update mouse position if (io.ConfigFlags & ImGuiConfigFlags_NavEnableSetMousePos) if set (NB: this not enabled by default) + bool NavDisableHighlight; // When user starts using mouse, we hide gamepad/keyboard highlight (NB: but they are still available, which is why NavDisableHighlight isn't always != NavDisableMouseHover) + bool NavDisableMouseHover; // When user starts using gamepad/keyboard, we hide mouse hovering highlight until mouse is touched again. + + // Navigation: Init & Move Requests + bool NavAnyRequest; // ~~ NavMoveRequest || NavInitRequest this is to perform early out in ItemAdd() + bool NavInitRequest; // Init request for appearing window to select first item + bool NavInitRequestFromMove; + ImGuiNavItemData NavInitResult; // Init request result (first item of the window, or one for which SetItemDefaultFocus() was called) + bool NavMoveSubmitted; // Move request submitted, will process result on next NewFrame() + bool NavMoveScoringItems; // Move request submitted, still scoring incoming items + bool NavMoveForwardToNextFrame; + ImGuiNavMoveFlags NavMoveFlags; + ImGuiScrollFlags NavMoveScrollFlags; + ImGuiKeyChord NavMoveKeyMods; + ImGuiDir NavMoveDir; // Direction of the move request (left/right/up/down) + ImGuiDir NavMoveDirForDebug; + ImGuiDir NavMoveClipDir; // FIXME-NAV: Describe the purpose of this better. Might want to rename? + ImRect NavScoringRect; // Rectangle used for scoring, in screen space. Based of window->NavRectRel[], modified for directional navigation scoring. + ImRect NavScoringNoClipRect; // Some nav operations (such as PageUp/PageDown) enforce a region which clipper will attempt to always keep submitted + int NavScoringDebugCount; // Metrics for debugging + int NavTabbingDir; // Generally -1 or +1, 0 when tabbing without a nav id + int NavTabbingCounter; // >0 when counting items for tabbing + ImGuiNavItemData NavMoveResultLocal; // Best move request candidate within NavWindow + ImGuiNavItemData NavMoveResultLocalVisible; // Best move request candidate within NavWindow that are mostly visible (when using ImGuiNavMoveFlags_AlsoScoreVisibleSet flag) + ImGuiNavItemData NavMoveResultOther; // Best move request candidate within NavWindow's flattened hierarchy (when using ImGuiWindowFlags_NavFlattened flag) + ImGuiNavItemData NavTabbingResultFirst; // First tabbing request candidate within NavWindow and flattened hierarchy + + // Navigation: record of last move request + ImGuiID NavJustMovedFromFocusScopeId; // Just navigated from this focus scope id (result of a successfully MoveRequest). + ImGuiID NavJustMovedToId; // Just navigated to this id (result of a successfully MoveRequest). + ImGuiID NavJustMovedToFocusScopeId; // Just navigated to this focus scope id (result of a successfully MoveRequest). + ImGuiKeyChord NavJustMovedToKeyMods; + bool NavJustMovedToIsTabbing; // Copy of ImGuiNavMoveFlags_IsTabbing. Maybe we should store whole flags. + bool NavJustMovedToHasSelectionData; // Copy of move result's InFlags & ImGuiItemFlags_HasSelectionUserData). Maybe we should just store ImGuiNavItemData. + + // Navigation: Windowing (CTRL+TAB for list, or Menu button + keys or directional pads to move/resize) + ImGuiKeyChord ConfigNavWindowingKeyNext; // = ImGuiMod_Ctrl | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiKey_Tab on OS X). For reconfiguration (see #4828) + ImGuiKeyChord ConfigNavWindowingKeyPrev; // = ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Tab (or ImGuiMod_Super | ImGuiMod_Shift | ImGuiKey_Tab on OS X) + ImGuiWindow* NavWindowingTarget; // Target window when doing CTRL+Tab (or Pad Menu + FocusPrev/Next), this window is temporarily displayed top-most! + ImGuiWindow* NavWindowingTargetAnim; // Record of last valid NavWindowingTarget until DimBgRatio and NavWindowingHighlightAlpha becomes 0.0f, so the fade-out can stay on it. + ImGuiWindow* NavWindowingListWindow; // Internal window actually listing the CTRL+Tab contents + float NavWindowingTimer; + float NavWindowingHighlightAlpha; + bool NavWindowingToggleLayer; + ImGuiKey NavWindowingToggleKey; + ImVec2 NavWindowingAccumDeltaPos; + ImVec2 NavWindowingAccumDeltaSize; + + // Render + float DimBgRatio; // 0.0..1.0 animation when fading in a dimming background (for modal window and CTRL+TAB list) + + // Drag and Drop + bool DragDropActive; + bool DragDropWithinSource; // Set when within a BeginDragDropXXX/EndDragDropXXX block for a drag source. + bool DragDropWithinTarget; // Set when within a BeginDragDropXXX/EndDragDropXXX block for a drag target. + ImGuiDragDropFlags DragDropSourceFlags; + int DragDropSourceFrameCount; + int DragDropMouseButton; + ImGuiPayload DragDropPayload; + ImRect DragDropTargetRect; // Store rectangle of current target candidate (we favor small targets when overlapping) + ImRect DragDropTargetClipRect; // Store ClipRect at the time of item's drawing + ImGuiID DragDropTargetId; + ImGuiDragDropFlags DragDropAcceptFlags; + float DragDropAcceptIdCurrRectSurface; // Target item surface (we resolve overlapping targets by prioritizing the smaller surface) + ImGuiID DragDropAcceptIdCurr; // Target item id (set at the time of accepting the payload) + ImGuiID DragDropAcceptIdPrev; // Target item id from previous frame (we need to store this to allow for overlapping drag and drop targets) + int DragDropAcceptFrameCount; // Last time a target expressed a desire to accept the source + ImGuiID DragDropHoldJustPressedId; // Set when holding a payload just made ButtonBehavior() return a press. + ImVector DragDropPayloadBufHeap; // We don't expose the ImVector<> directly, ImGuiPayload only holds pointer+size + unsigned char DragDropPayloadBufLocal[16]; // Local buffer for small payloads + + // Clipper + int ClipperTempDataStacked; + ImVector ClipperTempData; + + // Tables + ImGuiTable* CurrentTable; + ImGuiID DebugBreakInTable; // Set to break in BeginTable() call. + int TablesTempDataStacked; // Temporary table data size (because we leave previous instances undestructed, we generally don't use TablesTempData.Size) + ImVector TablesTempData; // Temporary table data (buffers reused/shared across instances, support nesting) + ImPool Tables; // Persistent table data + ImVector TablesLastTimeActive; // Last used timestamp of each tables (SOA, for efficient GC) + ImVector DrawChannelsTempMergeBuffer; + + // Tab bars + ImGuiTabBar* CurrentTabBar; + ImPool TabBars; + ImVector CurrentTabBarStack; + ImVector ShrinkWidthBuffer; + + // Multi-Select state + ImGuiBoxSelectState BoxSelectState; + ImGuiMultiSelectTempData* CurrentMultiSelect; + int MultiSelectTempDataStacked; // Temporary multi-select data size (because we leave previous instances undestructed, we generally don't use MultiSelectTempData.Size) + ImVector MultiSelectTempData; + ImPool MultiSelectStorage; + + // Hover Delay system + ImGuiID HoverItemDelayId; + ImGuiID HoverItemDelayIdPreviousFrame; + float HoverItemDelayTimer; // Currently used by IsItemHovered() + float HoverItemDelayClearTimer; // Currently used by IsItemHovered(): grace time before g.TooltipHoverTimer gets cleared. + ImGuiID HoverItemUnlockedStationaryId; // Mouse has once been stationary on this item. Only reset after departing the item. + ImGuiID HoverWindowUnlockedStationaryId; // Mouse has once been stationary on this window. Only reset after departing the window. + + // Mouse state + ImGuiMouseCursor MouseCursor; + float MouseStationaryTimer; // Time the mouse has been stationary (with some loose heuristic) + ImVec2 MouseLastValidPos; + + // Widget state + ImGuiInputTextState InputTextState; + ImGuiInputTextDeactivatedState InputTextDeactivatedState; + ImFont InputTextPasswordFont; + ImGuiID TempInputId; // Temporary text input when CTRL+clicking on a slider, etc. + ImGuiDataTypeStorage DataTypeZeroValue; // 0 for all data types + int BeginMenuDepth; + int BeginComboDepth; + ImGuiColorEditFlags ColorEditOptions; // Store user options for color edit widgets + ImGuiID ColorEditCurrentID; // Set temporarily while inside of the parent-most ColorEdit4/ColorPicker4 (because they call each others). + ImGuiID ColorEditSavedID; // ID we are saving/restoring HS for + float ColorEditSavedHue; // Backup of last Hue associated to LastColor, so we can restore Hue in lossy RGB<>HSV round trips + float ColorEditSavedSat; // Backup of last Saturation associated to LastColor, so we can restore Saturation in lossy RGB<>HSV round trips + ImU32 ColorEditSavedColor; // RGB value with alpha set to 0. + ImVec4 ColorPickerRef; // Initial/reference color at the time of opening the color picker. + ImGuiComboPreviewData ComboPreviewData; + ImRect WindowResizeBorderExpectedRect; // Expected border rect, switch to relative edit if moving + bool WindowResizeRelativeMode; + short ScrollbarSeekMode; // 0: scroll to clicked location, -1/+1: prev/next page. + float ScrollbarClickDeltaToGrabCenter; // When scrolling to mouse location: distance between mouse and center of grab box, normalized in parent space. + float SliderGrabClickOffset; + float SliderCurrentAccum; // Accumulated slider delta when using navigation controls. + bool SliderCurrentAccumDirty; // Has the accumulated slider delta changed since last time we tried to apply it? + bool DragCurrentAccumDirty; + float DragCurrentAccum; // Accumulator for dragging modification. Always high-precision, not rounded by end-user precision settings + float DragSpeedDefaultRatio; // If speed == 0.0f, uses (max-min) * DragSpeedDefaultRatio + float DisabledAlphaBackup; // Backup for style.Alpha for BeginDisabled() + short DisabledStackSize; + short LockMarkEdited; + short TooltipOverrideCount; + ImVector ClipboardHandlerData; // If no custom clipboard handler is defined + ImVector MenusIdSubmittedThisFrame; // A list of menu IDs that were rendered at least once + ImGuiTypingSelectState TypingSelectState; // State for GetTypingSelectRequest() + + // Platform support + ImGuiPlatformImeData PlatformImeData; // Data updated by current frame + ImGuiPlatformImeData PlatformImeDataPrev; // Previous frame data. When changed we call the platform_io.Platform_SetImeDataFn() handler. + + // Settings + bool SettingsLoaded; + float SettingsDirtyTimer; // Save .ini Settings to memory when time reaches zero + ImGuiTextBuffer SettingsIniData; // In memory .ini settings + ImVector SettingsHandlers; // List of .ini settings handlers + ImChunkStream SettingsWindows; // ImGuiWindow .ini settings entries + ImChunkStream SettingsTables; // ImGuiTable .ini settings entries + ImVector Hooks; // Hooks for extensions (e.g. test engine) + ImGuiID HookIdNext; // Next available HookId + + // Localization + const char* LocalizationTable[ImGuiLocKey_COUNT]; + + // Capture/Logging + bool LogEnabled; // Currently capturing + ImGuiLogType LogType; // Capture target + ImFileHandle LogFile; // If != NULL log to stdout/ file + ImGuiTextBuffer LogBuffer; // Accumulation buffer when log to clipboard. This is pointer so our GImGui static constructor doesn't call heap allocators. + const char* LogNextPrefix; + const char* LogNextSuffix; + float LogLinePosY; + bool LogLineFirstItem; + int LogDepthRef; + int LogDepthToExpand; + int LogDepthToExpandDefault; // Default/stored value for LogDepthMaxExpand if not specified in the LogXXX function call. + + // Debug Tools + // (some of the highly frequently used data are interleaved in other structures above: DebugBreakXXX fields, DebugHookIdInfo, DebugLocateId etc.) + ImGuiDebugLogFlags DebugLogFlags; + ImGuiTextBuffer DebugLogBuf; + ImGuiTextIndex DebugLogIndex; + ImGuiDebugLogFlags DebugLogAutoDisableFlags; + ImU8 DebugLogAutoDisableFrames; + ImU8 DebugLocateFrames; // For DebugLocateItemOnHover(). This is used together with DebugLocateId which is in a hot/cached spot above. + bool DebugBreakInLocateId; // Debug break in ItemAdd() call for g.DebugLocateId. + ImGuiKeyChord DebugBreakKeyChord; // = ImGuiKey_Pause + ImS8 DebugBeginReturnValueCullDepth; // Cycle between 0..9 then wrap around. + bool DebugItemPickerActive; // Item picker is active (started with DebugStartItemPicker()) + ImU8 DebugItemPickerMouseButton; + ImGuiID DebugItemPickerBreakId; // Will call IM_DEBUG_BREAK() when encountering this ID + float DebugFlashStyleColorTime; + ImVec4 DebugFlashStyleColorBackup; + ImGuiMetricsConfig DebugMetricsConfig; + ImGuiIDStackTool DebugIDStackTool; + ImGuiDebugAllocInfo DebugAllocInfo; + + // Misc + float FramerateSecPerFrame[60]; // Calculate estimate of framerate for user over the last 60 frames.. + int FramerateSecPerFrameIdx; + int FramerateSecPerFrameCount; + float FramerateSecPerFrameAccum; + int WantCaptureMouseNextFrame; // Explicit capture override via SetNextFrameWantCaptureMouse()/SetNextFrameWantCaptureKeyboard(). Default to -1. + int WantCaptureKeyboardNextFrame; // " + int WantTextInputNextFrame; + ImVector TempBuffer; // Temporary text buffer + char TempKeychordName[64]; + + ImGuiContext(ImFontAtlas* shared_font_atlas); +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGuiWindowTempData, ImGuiWindow +//----------------------------------------------------------------------------- + +// Transient per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the DC variable name in ImGuiWindow. +// (That's theory, in practice the delimitation between ImGuiWindow and ImGuiWindowTempData is quite tenuous and could be reconsidered..) +// (This doesn't need a constructor because we zero-clear it as part of ImGuiWindow and all frame-temporary data are setup on Begin) +struct IMGUI_API ImGuiWindowTempData +{ + // Layout + ImVec2 CursorPos; // Current emitting position, in absolute coordinates. + ImVec2 CursorPosPrevLine; + ImVec2 CursorStartPos; // Initial position after Begin(), generally ~ window position + WindowPadding. + ImVec2 CursorMaxPos; // Used to implicitly calculate ContentSize at the beginning of next frame, for scrolling range and auto-resize. Always growing during the frame. + ImVec2 IdealMaxPos; // Used to implicitly calculate ContentSizeIdeal at the beginning of next frame, for auto-resize only. Always growing during the frame. + ImVec2 CurrLineSize; + ImVec2 PrevLineSize; + float CurrLineTextBaseOffset; // Baseline offset (0.0f by default on a new line, generally == style.FramePadding.y when a framed item has been added). + float PrevLineTextBaseOffset; + bool IsSameLine; + bool IsSetPos; + ImVec1 Indent; // Indentation / start position from left of window (increased by TreePush/TreePop, etc.) + ImVec1 ColumnsOffset; // Offset to the current column (if ColumnsCurrent > 0). FIXME: This and the above should be a stack to allow use cases like Tree->Column->Tree. Need revamp columns API. + ImVec1 GroupOffset; + ImVec2 CursorStartPosLossyness;// Record the loss of precision of CursorStartPos due to really large scrolling amount. This is used by clipper to compensate and fix the most common use case of large scroll area. + + // Keyboard/Gamepad navigation + ImGuiNavLayer NavLayerCurrent; // Current layer, 0..31 (we currently only use 0..1) + short NavLayersActiveMask; // Which layers have been written to (result from previous frame) + short NavLayersActiveMaskNext;// Which layers have been written to (accumulator for current frame) + bool NavIsScrollPushableX; // Set when current work location may be scrolled horizontally when moving left / right. This is generally always true UNLESS within a column. + bool NavHideHighlightOneFrame; + bool NavWindowHasScrollY; // Set per window when scrolling can be used (== ScrollMax.y > 0.0f) + + // Miscellaneous + bool MenuBarAppending; // FIXME: Remove this + ImVec2 MenuBarOffset; // MenuBarOffset.x is sort of equivalent of a per-layer CursorPos.x, saved/restored as we switch to the menu bar. The only situation when MenuBarOffset.y is > 0 if when (SafeAreaPadding.y > FramePadding.y), often used on TVs. + ImGuiMenuColumns MenuColumns; // Simplified columns storage for menu items measurement + int TreeDepth; // Current tree depth. + ImU32 TreeHasStackDataDepthMask; // Store whether given depth has ImGuiTreeNodeStackData data. Could be turned into a ImU64 if necessary. + ImVector ChildWindows; + ImGuiStorage* StateStorage; // Current persistent per-window storage (store e.g. tree node open/close state) + ImGuiOldColumns* CurrentColumns; // Current columns set + int CurrentTableIdx; // Current table index (into g.Tables) + ImGuiLayoutType LayoutType; + ImGuiLayoutType ParentLayoutType; // Layout type of parent window at the time of Begin() + ImU32 ModalDimBgColor; + + // Local parameters stacks + // We store the current settings outside of the vectors to increase memory locality (reduce cache misses). The vectors are rarely modified. Also it allows us to not heap allocate for short-lived windows which are not using those settings. + float ItemWidth; // Current item width (>0.0: width in pixels, <0.0: align xx pixels to the right of window). + float TextWrapPos; // Current text wrap pos. + ImVector ItemWidthStack; // Store item widths to restore (attention: .back() is not == ItemWidth) + ImVector TextWrapPosStack; // Store text wrap pos to restore (attention: .back() is not == TextWrapPos) +}; + +// Storage for one window +struct IMGUI_API ImGuiWindow +{ + ImGuiContext* Ctx; // Parent UI context (needs to be set explicitly by parent). + char* Name; // Window name, owned by the window. + ImGuiID ID; // == ImHashStr(Name) + ImGuiWindowFlags Flags; // See enum ImGuiWindowFlags_ + ImGuiChildFlags ChildFlags; // Set when window is a child window. See enum ImGuiChildFlags_ + ImGuiViewportP* Viewport; // Always set in Begin(). Inactive windows may have a NULL value here if their viewport was discarded. + ImVec2 Pos; // Position (always rounded-up to nearest pixel) + ImVec2 Size; // Current size (==SizeFull or collapsed title bar size) + ImVec2 SizeFull; // Size when non collapsed + ImVec2 ContentSize; // Size of contents/scrollable client area (calculated from the extents reach of the cursor) from previous frame. Does not include window decoration or window padding. + ImVec2 ContentSizeIdeal; + ImVec2 ContentSizeExplicit; // Size of contents/scrollable client area explicitly request by the user via SetNextWindowContentSize(). + ImVec2 WindowPadding; // Window padding at the time of Begin(). + float WindowRounding; // Window rounding at the time of Begin(). May be clamped lower to avoid rendering artifacts with title bar, menu bar etc. + float WindowBorderSize; // Window border size at the time of Begin(). + float TitleBarHeight, MenuBarHeight; // Note that those used to be function before 2024/05/28. If you have old code calling TitleBarHeight() you can change it to TitleBarHeight. + float DecoOuterSizeX1, DecoOuterSizeY1; // Left/Up offsets. Sum of non-scrolling outer decorations (X1 generally == 0.0f. Y1 generally = TitleBarHeight + MenuBarHeight). Locked during Begin(). + float DecoOuterSizeX2, DecoOuterSizeY2; // Right/Down offsets (X2 generally == ScrollbarSize.x, Y2 == ScrollbarSizes.y). + float DecoInnerSizeX1, DecoInnerSizeY1; // Applied AFTER/OVER InnerRect. Specialized for Tables as they use specialized form of clipping and frozen rows/columns are inside InnerRect (and not part of regular decoration sizes). + int NameBufLen; // Size of buffer storing Name. May be larger than strlen(Name)! + ImGuiID MoveId; // == window->GetID("#MOVE") + ImGuiID ChildId; // ID of corresponding item in parent window (for navigation to return from child window to parent window) + ImGuiID PopupId; // ID in the popup stack when this window is used as a popup/menu (because we use generic Name/ID for recycling) + ImVec2 Scroll; + ImVec2 ScrollMax; + ImVec2 ScrollTarget; // target scroll position. stored as cursor position with scrolling canceled out, so the highest point is always 0.0f. (FLT_MAX for no change) + ImVec2 ScrollTargetCenterRatio; // 0.0f = scroll so that target position is at top, 0.5f = scroll so that target position is centered + ImVec2 ScrollTargetEdgeSnapDist; // 0.0f = no snapping, >0.0f snapping threshold + ImVec2 ScrollbarSizes; // Size taken by each scrollbars on their smaller axis. Pay attention! ScrollbarSizes.x == width of the vertical scrollbar, ScrollbarSizes.y = height of the horizontal scrollbar. + bool ScrollbarX, ScrollbarY; // Are scrollbars visible? + bool Active; // Set to true on Begin(), unless Collapsed + bool WasActive; + bool WriteAccessed; // Set to true when any widget access the current window + bool Collapsed; // Set when collapsing window to become only title-bar + bool WantCollapseToggle; + bool SkipItems; // Set when items can safely be all clipped (e.g. window not visible or collapsed) + bool SkipRefresh; // [EXPERIMENTAL] Reuse previous frame drawn contents, Begin() returns false. + bool Appearing; // Set during the frame where the window is appearing (or re-appearing) + bool Hidden; // Do not display (== HiddenFrames*** > 0) + bool IsFallbackWindow; // Set on the "Debug##Default" window. + bool IsExplicitChild; // Set when passed _ChildWindow, left to false by BeginDocked() + bool HasCloseButton; // Set when the window has a close button (p_open != NULL) + signed char ResizeBorderHovered; // Current border being hovered for resize (-1: none, otherwise 0-3) + signed char ResizeBorderHeld; // Current border being held for resize (-1: none, otherwise 0-3) + short BeginCount; // Number of Begin() during the current frame (generally 0 or 1, 1+ if appending via multiple Begin/End pairs) + short BeginCountPreviousFrame; // Number of Begin() during the previous frame + short BeginOrderWithinParent; // Begin() order within immediate parent window, if we are a child window. Otherwise 0. + short BeginOrderWithinContext; // Begin() order within entire imgui context. This is mostly used for debugging submission order related issues. + short FocusOrder; // Order within WindowsFocusOrder[], altered when windows are focused. + ImS8 AutoFitFramesX, AutoFitFramesY; + bool AutoFitOnlyGrows; + ImGuiDir AutoPosLastDirection; + ImS8 HiddenFramesCanSkipItems; // Hide the window for N frames + ImS8 HiddenFramesCannotSkipItems; // Hide the window for N frames while allowing items to be submitted so we can measure their size + ImS8 HiddenFramesForRenderOnly; // Hide the window until frame N at Render() time only + ImS8 DisableInputsFrames; // Disable window interactions for N frames + ImGuiCond SetWindowPosAllowFlags : 8; // store acceptable condition flags for SetNextWindowPos() use. + ImGuiCond SetWindowSizeAllowFlags : 8; // store acceptable condition flags for SetNextWindowSize() use. + ImGuiCond SetWindowCollapsedAllowFlags : 8; // store acceptable condition flags for SetNextWindowCollapsed() use. + ImVec2 SetWindowPosVal; // store window position when using a non-zero Pivot (position set needs to be processed when we know the window size) + ImVec2 SetWindowPosPivot; // store window pivot for positioning. ImVec2(0, 0) when positioning from top-left corner; ImVec2(0.5f, 0.5f) for centering; ImVec2(1, 1) for bottom right. + + ImVector IDStack; // ID stack. ID are hashes seeded with the value at the top of the stack. (In theory this should be in the TempData structure) + ImGuiWindowTempData DC; // Temporary per-window data, reset at the beginning of the frame. This used to be called ImGuiDrawContext, hence the "DC" variable name. + + // The best way to understand what those rectangles are is to use the 'Metrics->Tools->Show Windows Rectangles' viewer. + // The main 'OuterRect', omitted as a field, is window->Rect(). + ImRect OuterRectClipped; // == Window->Rect() just after setup in Begin(). == window->Rect() for root window. + ImRect InnerRect; // Inner rectangle (omit title bar, menu bar, scroll bar) + ImRect InnerClipRect; // == InnerRect shrunk by WindowPadding*0.5f on each side, clipped within viewport or parent clip rect. + ImRect WorkRect; // Initially covers the whole scrolling region. Reduced by containers e.g columns/tables when active. Shrunk by WindowPadding*1.0f on each side. This is meant to replace ContentRegionRect over time (from 1.71+ onward). + ImRect ParentWorkRect; // Backup of WorkRect before entering a container such as columns/tables. Used by e.g. SpanAllColumns functions to easily access. Stacked containers are responsible for maintaining this. // FIXME-WORKRECT: Could be a stack? + ImRect ClipRect; // Current clipping/scissoring rectangle, evolve as we are using PushClipRect(), etc. == DrawList->clip_rect_stack.back(). + ImRect ContentRegionRect; // FIXME: This is currently confusing/misleading. It is essentially WorkRect but not handling of scrolling. We currently rely on it as right/bottom aligned sizing operation need some size to rely on. + ImVec2ih HitTestHoleSize; // Define an optional rectangular hole where mouse will pass-through the window. + ImVec2ih HitTestHoleOffset; + + int LastFrameActive; // Last frame number the window was Active. + float LastTimeActive; // Last timestamp the window was Active (using float as we don't need high precision there) + float ItemWidthDefault; + ImGuiStorage StateStorage; + ImVector ColumnsStorage; + float FontWindowScale; // User scale multiplier per-window, via SetWindowFontScale() + int SettingsOffset; // Offset into SettingsWindows[] (offsets are always valid as we only grow the array from the back) + + ImDrawList* DrawList; // == &DrawListInst (for backward compatibility reason with code using imgui_internal.h we keep this a pointer) + ImDrawList DrawListInst; + ImGuiWindow* ParentWindow; // If we are a child _or_ popup _or_ docked window, this is pointing to our parent. Otherwise NULL. + ImGuiWindow* ParentWindowInBeginStack; + ImGuiWindow* RootWindow; // Point to ourself or first ancestor that is not a child window. Doesn't cross through popups/dock nodes. + ImGuiWindow* RootWindowPopupTree; // Point to ourself or first ancestor that is not a child window. Cross through popups parent<>child. + ImGuiWindow* RootWindowForTitleBarHighlight; // Point to ourself or first ancestor which will display TitleBgActive color when this window is active. + ImGuiWindow* RootWindowForNav; // Point to ourself or first ancestor which doesn't have the NavFlattened flag. + ImGuiWindow* ParentWindowForFocusRoute; // Set to manual link a window to its logical parent so that Shortcut() chain are honoerd (e.g. Tool linked to Document) + + ImGuiWindow* NavLastChildNavWindow; // When going to the menu bar, we remember the child window we came from. (This could probably be made implicit if we kept g.Windows sorted by last focused including child window.) + ImGuiID NavLastIds[ImGuiNavLayer_COUNT]; // Last known NavId for this window, per layer (0/1) + ImRect NavRectRel[ImGuiNavLayer_COUNT]; // Reference rectangle, in window relative space + ImVec2 NavPreferredScoringPosRel[ImGuiNavLayer_COUNT]; // Preferred X/Y position updated when moving on a given axis, reset to FLT_MAX. + ImGuiID NavRootFocusScopeId; // Focus Scope ID at the time of Begin() + + int MemoryDrawListIdxCapacity; // Backup of last idx/vtx count, so when waking up the window we can preallocate and avoid iterative alloc/copy + int MemoryDrawListVtxCapacity; + bool MemoryCompacted; // Set when window extraneous data have been garbage collected + +public: + ImGuiWindow(ImGuiContext* context, const char* name); + ~ImGuiWindow(); + + ImGuiID GetID(const char* str, const char* str_end = NULL); + ImGuiID GetID(const void* ptr); + ImGuiID GetID(int n); + ImGuiID GetIDFromPos(const ImVec2& p_abs); + ImGuiID GetIDFromRectangle(const ImRect& r_abs); + + // We don't use g.FontSize because the window may be != g.CurrentWindow. + ImRect Rect() const { return ImRect(Pos.x, Pos.y, Pos.x + Size.x, Pos.y + Size.y); } + float CalcFontSize() const { ImGuiContext& g = *Ctx; float scale = g.FontBaseSize * FontWindowScale; if (ParentWindow) scale *= ParentWindow->FontWindowScale; return scale; } + ImRect TitleBarRect() const { return ImRect(Pos, ImVec2(Pos.x + SizeFull.x, Pos.y + TitleBarHeight)); } + ImRect MenuBarRect() const { float y1 = Pos.y + TitleBarHeight; return ImRect(Pos.x, y1, Pos.x + SizeFull.x, y1 + MenuBarHeight); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] Tab bar, Tab item support +//----------------------------------------------------------------------------- + +// Extend ImGuiTabBarFlags_ +enum ImGuiTabBarFlagsPrivate_ +{ + ImGuiTabBarFlags_DockNode = 1 << 20, // Part of a dock node [we don't use this in the master branch but it facilitate branch syncing to keep this around] + ImGuiTabBarFlags_IsFocused = 1 << 21, + ImGuiTabBarFlags_SaveSettings = 1 << 22, // FIXME: Settings are handled by the docking system, this only request the tab bar to mark settings dirty when reordering tabs +}; + +// Extend ImGuiTabItemFlags_ +enum ImGuiTabItemFlagsPrivate_ +{ + ImGuiTabItemFlags_SectionMask_ = ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing, + ImGuiTabItemFlags_NoCloseButton = 1 << 20, // Track whether p_open was set or not (we'll need this info on the next frame to recompute ContentWidth during layout) + ImGuiTabItemFlags_Button = 1 << 21, // Used by TabItemButton, change the tab item behavior to mimic a button +}; + +// Storage for one active tab item (sizeof() 40 bytes) +struct ImGuiTabItem +{ + ImGuiID ID; + ImGuiTabItemFlags Flags; + int LastFrameVisible; + int LastFrameSelected; // This allows us to infer an ordered list of the last activated tabs with little maintenance + float Offset; // Position relative to beginning of tab + float Width; // Width currently displayed + float ContentWidth; // Width of label, stored during BeginTabItem() call + float RequestedWidth; // Width optionally requested by caller, -1.0f is unused + ImS32 NameOffset; // When Window==NULL, offset to name within parent ImGuiTabBar::TabsNames + ImS16 BeginOrder; // BeginTabItem() order, used to re-order tabs after toggling ImGuiTabBarFlags_Reorderable + ImS16 IndexDuringLayout; // Index only used during TabBarLayout(). Tabs gets reordered so 'Tabs[n].IndexDuringLayout == n' but may mismatch during additions. + bool WantClose; // Marked as closed by SetTabItemClosed() + + ImGuiTabItem() { memset(this, 0, sizeof(*this)); LastFrameVisible = LastFrameSelected = -1; RequestedWidth = -1.0f; NameOffset = -1; BeginOrder = IndexDuringLayout = -1; } +}; + +// Storage for a tab bar (sizeof() 160 bytes) +struct IMGUI_API ImGuiTabBar +{ + ImGuiWindow* Window; + ImVector Tabs; + ImGuiTabBarFlags Flags; + ImGuiID ID; // Zero for tab-bars used by docking + ImGuiID SelectedTabId; // Selected tab/window + ImGuiID NextSelectedTabId; // Next selected tab/window. Will also trigger a scrolling animation + ImGuiID VisibleTabId; // Can occasionally be != SelectedTabId (e.g. when previewing contents for CTRL+TAB preview) + int CurrFrameVisible; + int PrevFrameVisible; + ImRect BarRect; + float CurrTabsContentsHeight; + float PrevTabsContentsHeight; // Record the height of contents submitted below the tab bar + float WidthAllTabs; // Actual width of all tabs (locked during layout) + float WidthAllTabsIdeal; // Ideal width if all tabs were visible and not clipped + float ScrollingAnim; + float ScrollingTarget; + float ScrollingTargetDistToVisibility; + float ScrollingSpeed; + float ScrollingRectMinX; + float ScrollingRectMaxX; + float SeparatorMinX; + float SeparatorMaxX; + ImGuiID ReorderRequestTabId; + ImS16 ReorderRequestOffset; + ImS8 BeginCount; + bool WantLayout; + bool VisibleTabWasSubmitted; + bool TabsAddedNew; // Set to true when a new tab item or button has been added to the tab bar during last frame + ImS16 TabsActiveCount; // Number of tabs submitted this frame. + ImS16 LastTabItemIdx; // Index of last BeginTabItem() tab for use by EndTabItem() + float ItemSpacingY; + ImVec2 FramePadding; // style.FramePadding locked at the time of BeginTabBar() + ImVec2 BackupCursorPos; + ImGuiTextBuffer TabsNames; // For non-docking tab bar we re-append names in a contiguous buffer. + + ImGuiTabBar(); +}; + +//----------------------------------------------------------------------------- +// [SECTION] Table support +//----------------------------------------------------------------------------- + +#define IM_COL32_DISABLE IM_COL32(0,0,0,1) // Special sentinel code which cannot be used as a regular color. +#define IMGUI_TABLE_MAX_COLUMNS 512 // May be further lifted + +// Our current column maximum is 64 but we may raise that in the future. +typedef ImS16 ImGuiTableColumnIdx; +typedef ImU16 ImGuiTableDrawChannelIdx; + +// [Internal] sizeof() ~ 112 +// We use the terminology "Enabled" to refer to a column that is not Hidden by user/api. +// We use the terminology "Clipped" to refer to a column that is out of sight because of scrolling/clipping. +// This is in contrast with some user-facing api such as IsItemVisible() / IsRectVisible() which use "Visible" to mean "not clipped". +struct ImGuiTableColumn +{ + ImGuiTableColumnFlags Flags; // Flags after some patching (not directly same as provided by user). See ImGuiTableColumnFlags_ + float WidthGiven; // Final/actual width visible == (MaxX - MinX), locked in TableUpdateLayout(). May be > WidthRequest to honor minimum width, may be < WidthRequest to honor shrinking columns down in tight space. + float MinX; // Absolute positions + float MaxX; + float WidthRequest; // Master width absolute value when !(Flags & _WidthStretch). When Stretch this is derived every frame from StretchWeight in TableUpdateLayout() + float WidthAuto; // Automatic width + float WidthMax; // Maximum width (FIXME: overwritten by each instance) + float StretchWeight; // Master width weight when (Flags & _WidthStretch). Often around ~1.0f initially. + float InitStretchWeightOrWidth; // Value passed to TableSetupColumn(). For Width it is a content width (_without padding_). + ImRect ClipRect; // Clipping rectangle for the column + ImGuiID UserID; // Optional, value passed to TableSetupColumn() + float WorkMinX; // Contents region min ~(MinX + CellPaddingX + CellSpacingX1) == cursor start position when entering column + float WorkMaxX; // Contents region max ~(MaxX - CellPaddingX - CellSpacingX2) + float ItemWidth; // Current item width for the column, preserved across rows + float ContentMaxXFrozen; // Contents maximum position for frozen rows (apart from headers), from which we can infer content width. + float ContentMaxXUnfrozen; + float ContentMaxXHeadersUsed; // Contents maximum position for headers rows (regardless of freezing). TableHeader() automatically softclip itself + report ideal desired size, to avoid creating extraneous draw calls + float ContentMaxXHeadersIdeal; + ImS16 NameOffset; // Offset into parent ColumnsNames[] + ImGuiTableColumnIdx DisplayOrder; // Index within Table's IndexToDisplayOrder[] (column may be reordered by users) + ImGuiTableColumnIdx IndexWithinEnabledSet; // Index within enabled/visible set (<= IndexToDisplayOrder) + ImGuiTableColumnIdx PrevEnabledColumn; // Index of prev enabled/visible column within Columns[], -1 if first enabled/visible column + ImGuiTableColumnIdx NextEnabledColumn; // Index of next enabled/visible column within Columns[], -1 if last enabled/visible column + ImGuiTableColumnIdx SortOrder; // Index of this column within sort specs, -1 if not sorting on this column, 0 for single-sort, may be >0 on multi-sort + ImGuiTableDrawChannelIdx DrawChannelCurrent; // Index within DrawSplitter.Channels[] + ImGuiTableDrawChannelIdx DrawChannelFrozen; // Draw channels for frozen rows (often headers) + ImGuiTableDrawChannelIdx DrawChannelUnfrozen; // Draw channels for unfrozen rows + bool IsEnabled; // IsUserEnabled && (Flags & ImGuiTableColumnFlags_Disabled) == 0 + bool IsUserEnabled; // Is the column not marked Hidden by the user? (unrelated to being off view, e.g. clipped by scrolling). + bool IsUserEnabledNextFrame; + bool IsVisibleX; // Is actually in view (e.g. overlapping the host window clipping rectangle, not scrolled). + bool IsVisibleY; + bool IsRequestOutput; // Return value for TableSetColumnIndex() / TableNextColumn(): whether we request user to output contents or not. + bool IsSkipItems; // Do we want item submissions to this column to be completely ignored (no layout will happen). + bool IsPreserveWidthAuto; + ImS8 NavLayerCurrent; // ImGuiNavLayer in 1 byte + ImU8 AutoFitQueue; // Queue of 8 values for the next 8 frames to request auto-fit + ImU8 CannotSkipItemsQueue; // Queue of 8 values for the next 8 frames to disable Clipped/SkipItem + ImU8 SortDirection : 2; // ImGuiSortDirection_Ascending or ImGuiSortDirection_Descending + ImU8 SortDirectionsAvailCount : 2; // Number of available sort directions (0 to 3) + ImU8 SortDirectionsAvailMask : 4; // Mask of available sort directions (1-bit each) + ImU8 SortDirectionsAvailList; // Ordered list of available sort directions (2-bits each, total 8-bits) + + ImGuiTableColumn() + { + memset(this, 0, sizeof(*this)); + StretchWeight = WidthRequest = -1.0f; + NameOffset = -1; + DisplayOrder = IndexWithinEnabledSet = -1; + PrevEnabledColumn = NextEnabledColumn = -1; + SortOrder = -1; + SortDirection = ImGuiSortDirection_None; + DrawChannelCurrent = DrawChannelFrozen = DrawChannelUnfrozen = (ImU8)-1; + } +}; + +// Transient cell data stored per row. +// sizeof() ~ 6 bytes +struct ImGuiTableCellData +{ + ImU32 BgColor; // Actual color + ImGuiTableColumnIdx Column; // Column number +}; + +// Parameters for TableAngledHeadersRowEx() +// This may end up being refactored for more general purpose. +// sizeof() ~ 12 bytes +struct ImGuiTableHeaderData +{ + ImGuiTableColumnIdx Index; // Column index + ImU32 TextColor; + ImU32 BgColor0; + ImU32 BgColor1; +}; + +// Per-instance data that needs preserving across frames (seemingly most others do not need to be preserved aside from debug needs. Does that means they could be moved to ImGuiTableTempData?) +// sizeof() ~ 24 bytes +struct ImGuiTableInstanceData +{ + ImGuiID TableInstanceID; + float LastOuterHeight; // Outer height from last frame + float LastTopHeadersRowHeight; // Height of first consecutive header rows from last frame (FIXME: this is used assuming consecutive headers are in same frozen set) + float LastFrozenHeight; // Height of frozen section from last frame + int HoveredRowLast; // Index of row which was hovered last frame. + int HoveredRowNext; // Index of row hovered this frame, set after encountering it. + + ImGuiTableInstanceData() { TableInstanceID = 0; LastOuterHeight = LastTopHeadersRowHeight = LastFrozenHeight = 0.0f; HoveredRowLast = HoveredRowNext = -1; } +}; + +// sizeof() ~ 592 bytes + heap allocs described in TableBeginInitMemory() +struct IMGUI_API ImGuiTable +{ + ImGuiID ID; + ImGuiTableFlags Flags; + void* RawData; // Single allocation to hold Columns[], DisplayOrderToIndex[] and RowCellData[] + ImGuiTableTempData* TempData; // Transient data while table is active. Point within g.CurrentTableStack[] + ImSpan Columns; // Point within RawData[] + ImSpan DisplayOrderToIndex; // Point within RawData[]. Store display order of columns (when not reordered, the values are 0...Count-1) + ImSpan RowCellData; // Point within RawData[]. Store cells background requests for current row. + ImBitArrayPtr EnabledMaskByDisplayOrder; // Column DisplayOrder -> IsEnabled map + ImBitArrayPtr EnabledMaskByIndex; // Column Index -> IsEnabled map (== not hidden by user/api) in a format adequate for iterating column without touching cold data + ImBitArrayPtr VisibleMaskByIndex; // Column Index -> IsVisibleX|IsVisibleY map (== not hidden by user/api && not hidden by scrolling/cliprect) + ImGuiTableFlags SettingsLoadedFlags; // Which data were loaded from the .ini file (e.g. when order is not altered we won't save order) + int SettingsOffset; // Offset in g.SettingsTables + int LastFrameActive; + int ColumnsCount; // Number of columns declared in BeginTable() + int CurrentRow; + int CurrentColumn; + ImS16 InstanceCurrent; // Count of BeginTable() calls with same ID in the same frame (generally 0). This is a little bit similar to BeginCount for a window, but multiple table with same ID look are multiple tables, they are just synched. + ImS16 InstanceInteracted; // Mark which instance (generally 0) of the same ID is being interacted with + float RowPosY1; + float RowPosY2; + float RowMinHeight; // Height submitted to TableNextRow() + float RowCellPaddingY; // Top and bottom padding. Reloaded during row change. + float RowTextBaseline; + float RowIndentOffsetX; + ImGuiTableRowFlags RowFlags : 16; // Current row flags, see ImGuiTableRowFlags_ + ImGuiTableRowFlags LastRowFlags : 16; + int RowBgColorCounter; // Counter for alternating background colors (can be fast-forwarded by e.g clipper), not same as CurrentRow because header rows typically don't increase this. + ImU32 RowBgColor[2]; // Background color override for current row. + ImU32 BorderColorStrong; + ImU32 BorderColorLight; + float BorderX1; + float BorderX2; + float HostIndentX; + float MinColumnWidth; + float OuterPaddingX; + float CellPaddingX; // Padding from each borders. Locked in BeginTable()/Layout. + float CellSpacingX1; // Spacing between non-bordered cells. Locked in BeginTable()/Layout. + float CellSpacingX2; + float InnerWidth; // User value passed to BeginTable(), see comments at the top of BeginTable() for details. + float ColumnsGivenWidth; // Sum of current column width + float ColumnsAutoFitWidth; // Sum of ideal column width in order nothing to be clipped, used for auto-fitting and content width submission in outer window + float ColumnsStretchSumWeights; // Sum of weight of all enabled stretching columns + float ResizedColumnNextWidth; + float ResizeLockMinContentsX2; // Lock minimum contents width while resizing down in order to not create feedback loops. But we allow growing the table. + float RefScale; // Reference scale to be able to rescale columns on font/dpi changes. + float AngledHeadersHeight; // Set by TableAngledHeadersRow(), used in TableUpdateLayout() + float AngledHeadersSlope; // Set by TableAngledHeadersRow(), used in TableUpdateLayout() + ImRect OuterRect; // Note: for non-scrolling table, OuterRect.Max.y is often FLT_MAX until EndTable(), unless a height has been specified in BeginTable(). + ImRect InnerRect; // InnerRect but without decoration. As with OuterRect, for non-scrolling tables, InnerRect.Max.y is + ImRect WorkRect; + ImRect InnerClipRect; + ImRect BgClipRect; // We use this to cpu-clip cell background color fill, evolve during the frame as we cross frozen rows boundaries + ImRect Bg0ClipRectForDrawCmd; // Actual ImDrawCmd clip rect for BG0/1 channel. This tends to be == OuterWindow->ClipRect at BeginTable() because output in BG0/BG1 is cpu-clipped + ImRect Bg2ClipRectForDrawCmd; // Actual ImDrawCmd clip rect for BG2 channel. This tends to be a correct, tight-fit, because output to BG2 are done by widgets relying on regular ClipRect. + ImRect HostClipRect; // This is used to check if we can eventually merge our columns draw calls into the current draw call of the current window. + ImRect HostBackupInnerClipRect; // Backup of InnerWindow->ClipRect during PushTableBackground()/PopTableBackground() + ImGuiWindow* OuterWindow; // Parent window for the table + ImGuiWindow* InnerWindow; // Window holding the table data (== OuterWindow or a child window) + ImGuiTextBuffer ColumnsNames; // Contiguous buffer holding columns names + ImDrawListSplitter* DrawSplitter; // Shortcut to TempData->DrawSplitter while in table. Isolate draw commands per columns to avoid switching clip rect constantly + ImGuiTableInstanceData InstanceDataFirst; + ImVector InstanceDataExtra; // FIXME-OPT: Using a small-vector pattern would be good. + ImGuiTableColumnSortSpecs SortSpecsSingle; + ImVector SortSpecsMulti; // FIXME-OPT: Using a small-vector pattern would be good. + ImGuiTableSortSpecs SortSpecs; // Public facing sorts specs, this is what we return in TableGetSortSpecs() + ImGuiTableColumnIdx SortSpecsCount; + ImGuiTableColumnIdx ColumnsEnabledCount; // Number of enabled columns (<= ColumnsCount) + ImGuiTableColumnIdx ColumnsEnabledFixedCount; // Number of enabled columns using fixed width (<= ColumnsCount) + ImGuiTableColumnIdx DeclColumnsCount; // Count calls to TableSetupColumn() + ImGuiTableColumnIdx AngledHeadersCount; // Count columns with angled headers + ImGuiTableColumnIdx HoveredColumnBody; // Index of column whose visible region is being hovered. Important: == ColumnsCount when hovering empty region after the right-most column! + ImGuiTableColumnIdx HoveredColumnBorder; // Index of column whose right-border is being hovered (for resizing). + ImGuiTableColumnIdx HighlightColumnHeader; // Index of column which should be highlighted. + ImGuiTableColumnIdx AutoFitSingleColumn; // Index of single column requesting auto-fit. + ImGuiTableColumnIdx ResizedColumn; // Index of column being resized. Reset when InstanceCurrent==0. + ImGuiTableColumnIdx LastResizedColumn; // Index of column being resized from previous frame. + ImGuiTableColumnIdx HeldHeaderColumn; // Index of column header being held. + ImGuiTableColumnIdx ReorderColumn; // Index of column being reordered. (not cleared) + ImGuiTableColumnIdx ReorderColumnDir; // -1 or +1 + ImGuiTableColumnIdx LeftMostEnabledColumn; // Index of left-most non-hidden column. + ImGuiTableColumnIdx RightMostEnabledColumn; // Index of right-most non-hidden column. + ImGuiTableColumnIdx LeftMostStretchedColumn; // Index of left-most stretched column. + ImGuiTableColumnIdx RightMostStretchedColumn; // Index of right-most stretched column. + ImGuiTableColumnIdx ContextPopupColumn; // Column right-clicked on, of -1 if opening context menu from a neutral/empty spot + ImGuiTableColumnIdx FreezeRowsRequest; // Requested frozen rows count + ImGuiTableColumnIdx FreezeRowsCount; // Actual frozen row count (== FreezeRowsRequest, or == 0 when no scrolling offset) + ImGuiTableColumnIdx FreezeColumnsRequest; // Requested frozen columns count + ImGuiTableColumnIdx FreezeColumnsCount; // Actual frozen columns count (== FreezeColumnsRequest, or == 0 when no scrolling offset) + ImGuiTableColumnIdx RowCellDataCurrent; // Index of current RowCellData[] entry in current row + ImGuiTableDrawChannelIdx DummyDrawChannel; // Redirect non-visible columns here. + ImGuiTableDrawChannelIdx Bg2DrawChannelCurrent; // For Selectable() and other widgets drawing across columns after the freezing line. Index within DrawSplitter.Channels[] + ImGuiTableDrawChannelIdx Bg2DrawChannelUnfrozen; + bool IsLayoutLocked; // Set by TableUpdateLayout() which is called when beginning the first row. + bool IsInsideRow; // Set when inside TableBeginRow()/TableEndRow(). + bool IsInitializing; + bool IsSortSpecsDirty; + bool IsUsingHeaders; // Set when the first row had the ImGuiTableRowFlags_Headers flag. + bool IsContextPopupOpen; // Set when default context menu is open (also see: ContextPopupColumn, InstanceInteracted). + bool DisableDefaultContextMenu; // Disable default context menu contents. You may submit your own using TableBeginContextMenuPopup()/EndPopup() + bool IsSettingsRequestLoad; + bool IsSettingsDirty; // Set when table settings have changed and needs to be reported into ImGuiTableSetttings data. + bool IsDefaultDisplayOrder; // Set when display order is unchanged from default (DisplayOrder contains 0...Count-1) + bool IsResetAllRequest; + bool IsResetDisplayOrderRequest; + bool IsUnfrozenRows; // Set when we got past the frozen row. + bool IsDefaultSizingPolicy; // Set if user didn't explicitly set a sizing policy in BeginTable() + bool IsActiveIdAliveBeforeTable; + bool IsActiveIdInTable; + bool HasScrollbarYCurr; // Whether ANY instance of this table had a vertical scrollbar during the current frame. + bool HasScrollbarYPrev; // Whether ANY instance of this table had a vertical scrollbar during the previous. + bool MemoryCompacted; + bool HostSkipItems; // Backup of InnerWindow->SkipItem at the end of BeginTable(), because we will overwrite InnerWindow->SkipItem on a per-column basis + + ImGuiTable() { memset(this, 0, sizeof(*this)); LastFrameActive = -1; } + ~ImGuiTable() { IM_FREE(RawData); } +}; + +// Transient data that are only needed between BeginTable() and EndTable(), those buffers are shared (1 per level of stacked table). +// - Accessing those requires chasing an extra pointer so for very frequently used data we leave them in the main table structure. +// - We also leave out of this structure data that tend to be particularly useful for debugging/metrics. +// FIXME-TABLE: more transient data could be stored in a stacked ImGuiTableTempData: e.g. SortSpecs. +// sizeof() ~ 136 bytes. +struct IMGUI_API ImGuiTableTempData +{ + int TableIndex; // Index in g.Tables.Buf[] pool + float LastTimeActive; // Last timestamp this structure was used + float AngledHeadersExtraWidth; // Used in EndTable() + ImVector AngledHeadersRequests; // Used in TableAngledHeadersRow() + + ImVec2 UserOuterSize; // outer_size.x passed to BeginTable() + ImDrawListSplitter DrawSplitter; + + ImRect HostBackupWorkRect; // Backup of InnerWindow->WorkRect at the end of BeginTable() + ImRect HostBackupParentWorkRect; // Backup of InnerWindow->ParentWorkRect at the end of BeginTable() + ImVec2 HostBackupPrevLineSize; // Backup of InnerWindow->DC.PrevLineSize at the end of BeginTable() + ImVec2 HostBackupCurrLineSize; // Backup of InnerWindow->DC.CurrLineSize at the end of BeginTable() + ImVec2 HostBackupCursorMaxPos; // Backup of InnerWindow->DC.CursorMaxPos at the end of BeginTable() + ImVec1 HostBackupColumnsOffset; // Backup of OuterWindow->DC.ColumnsOffset at the end of BeginTable() + float HostBackupItemWidth; // Backup of OuterWindow->DC.ItemWidth at the end of BeginTable() + int HostBackupItemWidthStackSize;//Backup of OuterWindow->DC.ItemWidthStack.Size at the end of BeginTable() + + ImGuiTableTempData() { memset(this, 0, sizeof(*this)); LastTimeActive = -1.0f; } +}; + +// sizeof() ~ 12 +struct ImGuiTableColumnSettings +{ + float WidthOrWeight; + ImGuiID UserID; + ImGuiTableColumnIdx Index; + ImGuiTableColumnIdx DisplayOrder; + ImGuiTableColumnIdx SortOrder; + ImU8 SortDirection : 2; + ImU8 IsEnabled : 1; // "Visible" in ini file + ImU8 IsStretch : 1; + + ImGuiTableColumnSettings() + { + WidthOrWeight = 0.0f; + UserID = 0; + Index = -1; + DisplayOrder = SortOrder = -1; + SortDirection = ImGuiSortDirection_None; + IsEnabled = 1; + IsStretch = 0; + } +}; + +// This is designed to be stored in a single ImChunkStream (1 header followed by N ImGuiTableColumnSettings, etc.) +struct ImGuiTableSettings +{ + ImGuiID ID; // Set to 0 to invalidate/delete the setting + ImGuiTableFlags SaveFlags; // Indicate data we want to save using the Resizable/Reorderable/Sortable/Hideable flags (could be using its own flags..) + float RefScale; // Reference scale to be able to rescale columns on font/dpi changes. + ImGuiTableColumnIdx ColumnsCount; + ImGuiTableColumnIdx ColumnsCountMax; // Maximum number of columns this settings instance can store, we can recycle a settings instance with lower number of columns but not higher + bool WantApply; // Set when loaded from .ini data (to enable merging/loading .ini data into an already running context) + + ImGuiTableSettings() { memset(this, 0, sizeof(*this)); } + ImGuiTableColumnSettings* GetColumnSettings() { return (ImGuiTableColumnSettings*)(this + 1); } +}; + +//----------------------------------------------------------------------------- +// [SECTION] ImGui internal API +// No guarantee of forward compatibility here! +//----------------------------------------------------------------------------- + +namespace ImGui +{ + // Windows + // We should always have a CurrentWindow in the stack (there is an implicit "Debug" window) + // If this ever crashes because g.CurrentWindow is NULL, it means that either: + // - ImGui::NewFrame() has never been called, which is illegal. + // - You are calling ImGui functions after ImGui::EndFrame()/ImGui::Render() and before the next ImGui::NewFrame(), which is also illegal. + inline ImGuiWindow* GetCurrentWindowRead() { ImGuiContext& g = *GImGui; return g.CurrentWindow; } + inline ImGuiWindow* GetCurrentWindow() { ImGuiContext& g = *GImGui; g.CurrentWindow->WriteAccessed = true; return g.CurrentWindow; } + IMGUI_API ImGuiWindow* FindWindowByID(ImGuiID id); + IMGUI_API ImGuiWindow* FindWindowByName(const char* name); + IMGUI_API void UpdateWindowParentAndRootLinks(ImGuiWindow* window, ImGuiWindowFlags flags, ImGuiWindow* parent_window); + IMGUI_API void UpdateWindowSkipRefresh(ImGuiWindow* window); + IMGUI_API ImVec2 CalcWindowNextAutoFitSize(ImGuiWindow* window); + IMGUI_API bool IsWindowChildOf(ImGuiWindow* window, ImGuiWindow* potential_parent, bool popup_hierarchy); + IMGUI_API bool IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent); + IMGUI_API bool IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below); + IMGUI_API bool IsWindowNavFocusable(ImGuiWindow* window); + IMGUI_API void SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond = 0); + IMGUI_API void SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond = 0); + IMGUI_API void SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond = 0); + IMGUI_API void SetWindowHitTestHole(ImGuiWindow* window, const ImVec2& pos, const ImVec2& size); + IMGUI_API void SetWindowHiddenAndSkipItemsForCurrentFrame(ImGuiWindow* window); + inline void SetWindowParentWindowForFocusRoute(ImGuiWindow* window, ImGuiWindow* parent_window) { window->ParentWindowForFocusRoute = parent_window; } + inline ImRect WindowRectAbsToRel(ImGuiWindow* window, const ImRect& r) { ImVec2 off = window->DC.CursorStartPos; return ImRect(r.Min.x - off.x, r.Min.y - off.y, r.Max.x - off.x, r.Max.y - off.y); } + inline ImRect WindowRectRelToAbs(ImGuiWindow* window, const ImRect& r) { ImVec2 off = window->DC.CursorStartPos; return ImRect(r.Min.x + off.x, r.Min.y + off.y, r.Max.x + off.x, r.Max.y + off.y); } + inline ImVec2 WindowPosAbsToRel(ImGuiWindow* window, const ImVec2& p) { ImVec2 off = window->DC.CursorStartPos; return ImVec2(p.x - off.x, p.y - off.y); } + inline ImVec2 WindowPosRelToAbs(ImGuiWindow* window, const ImVec2& p) { ImVec2 off = window->DC.CursorStartPos; return ImVec2(p.x + off.x, p.y + off.y); } + + // Windows: Display Order and Focus Order + IMGUI_API void FocusWindow(ImGuiWindow* window, ImGuiFocusRequestFlags flags = 0); + IMGUI_API void FocusTopMostWindowUnderOne(ImGuiWindow* under_this_window, ImGuiWindow* ignore_window, ImGuiViewport* filter_viewport, ImGuiFocusRequestFlags flags); + IMGUI_API void BringWindowToFocusFront(ImGuiWindow* window); + IMGUI_API void BringWindowToDisplayFront(ImGuiWindow* window); + IMGUI_API void BringWindowToDisplayBack(ImGuiWindow* window); + IMGUI_API void BringWindowToDisplayBehind(ImGuiWindow* window, ImGuiWindow* above_window); + IMGUI_API int FindWindowDisplayIndex(ImGuiWindow* window); + IMGUI_API ImGuiWindow* FindBottomMostVisibleWindowWithinBeginStack(ImGuiWindow* window); + + // Windows: Idle, Refresh Policies [EXPERIMENTAL] + IMGUI_API void SetNextWindowRefreshPolicy(ImGuiWindowRefreshFlags flags); + + // Fonts, drawing + IMGUI_API void SetCurrentFont(ImFont* font); + inline ImFont* GetDefaultFont() { ImGuiContext& g = *GImGui; return g.IO.FontDefault ? g.IO.FontDefault : g.IO.Fonts->Fonts[0]; } + inline ImDrawList* GetForegroundDrawList(ImGuiWindow* window) { IM_UNUSED(window); return GetForegroundDrawList(); } // This seemingly unnecessary wrapper simplifies compatibility between the 'master' and 'docking' branches. + IMGUI_API ImDrawList* GetBackgroundDrawList(ImGuiViewport* viewport); // get background draw list for the given viewport. this draw list will be the first rendering one. Useful to quickly draw shapes/text behind dear imgui contents. + IMGUI_API ImDrawList* GetForegroundDrawList(ImGuiViewport* viewport); // get foreground draw list for the given viewport. this draw list will be the last rendered one. Useful to quickly draw shapes/text over dear imgui contents. + IMGUI_API void AddDrawListToDrawDataEx(ImDrawData* draw_data, ImVector* out_list, ImDrawList* draw_list); + + // Init + IMGUI_API void Initialize(); + IMGUI_API void Shutdown(); // Since 1.60 this is a _private_ function. You can call DestroyContext() to destroy the context created by CreateContext(). + + // NewFrame + IMGUI_API void UpdateInputEvents(bool trickle_fast_inputs); + IMGUI_API void UpdateHoveredWindowAndCaptureFlags(); + IMGUI_API void FindHoveredWindowEx(const ImVec2& pos, bool find_first_and_in_any_viewport, ImGuiWindow** out_hovered_window, ImGuiWindow** out_hovered_window_under_moving_window); + IMGUI_API void StartMouseMovingWindow(ImGuiWindow* window); + IMGUI_API void UpdateMouseMovingWindowNewFrame(); + IMGUI_API void UpdateMouseMovingWindowEndFrame(); + + // Generic context hooks + IMGUI_API ImGuiID AddContextHook(ImGuiContext* context, const ImGuiContextHook* hook); + IMGUI_API void RemoveContextHook(ImGuiContext* context, ImGuiID hook_to_remove); + IMGUI_API void CallContextHooks(ImGuiContext* context, ImGuiContextHookType type); + + // Viewports + IMGUI_API void SetWindowViewport(ImGuiWindow* window, ImGuiViewportP* viewport); + + // Settings + IMGUI_API void MarkIniSettingsDirty(); + IMGUI_API void MarkIniSettingsDirty(ImGuiWindow* window); + IMGUI_API void ClearIniSettings(); + IMGUI_API void AddSettingsHandler(const ImGuiSettingsHandler* handler); + IMGUI_API void RemoveSettingsHandler(const char* type_name); + IMGUI_API ImGuiSettingsHandler* FindSettingsHandler(const char* type_name); + + // Settings - Windows + IMGUI_API ImGuiWindowSettings* CreateNewWindowSettings(const char* name); + IMGUI_API ImGuiWindowSettings* FindWindowSettingsByID(ImGuiID id); + IMGUI_API ImGuiWindowSettings* FindWindowSettingsByWindow(ImGuiWindow* window); + IMGUI_API void ClearWindowSettings(const char* name); + + // Localization + IMGUI_API void LocalizeRegisterEntries(const ImGuiLocEntry* entries, int count); + inline const char* LocalizeGetMsg(ImGuiLocKey key) { ImGuiContext& g = *GImGui; const char* msg = g.LocalizationTable[key]; return msg ? msg : "*Missing Text*"; } + + // Scrolling + IMGUI_API void SetScrollX(ImGuiWindow* window, float scroll_x); + IMGUI_API void SetScrollY(ImGuiWindow* window, float scroll_y); + IMGUI_API void SetScrollFromPosX(ImGuiWindow* window, float local_x, float center_x_ratio); + IMGUI_API void SetScrollFromPosY(ImGuiWindow* window, float local_y, float center_y_ratio); + + // Early work-in-progress API (ScrollToItem() will become public) + IMGUI_API void ScrollToItem(ImGuiScrollFlags flags = 0); + IMGUI_API void ScrollToRect(ImGuiWindow* window, const ImRect& rect, ImGuiScrollFlags flags = 0); + IMGUI_API ImVec2 ScrollToRectEx(ImGuiWindow* window, const ImRect& rect, ImGuiScrollFlags flags = 0); +//#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + inline void ScrollToBringRectIntoView(ImGuiWindow* window, const ImRect& rect) { ScrollToRect(window, rect, ImGuiScrollFlags_KeepVisibleEdgeY); } +//#endif + + // Basic Accessors + inline ImGuiItemStatusFlags GetItemStatusFlags() { ImGuiContext& g = *GImGui; return g.LastItemData.StatusFlags; } + inline ImGuiItemFlags GetItemFlags() { ImGuiContext& g = *GImGui; return g.LastItemData.InFlags; } + inline ImGuiID GetActiveID() { ImGuiContext& g = *GImGui; return g.ActiveId; } + inline ImGuiID GetFocusID() { ImGuiContext& g = *GImGui; return g.NavId; } + IMGUI_API void SetActiveID(ImGuiID id, ImGuiWindow* window); + IMGUI_API void SetFocusID(ImGuiID id, ImGuiWindow* window); + IMGUI_API void ClearActiveID(); + IMGUI_API ImGuiID GetHoveredID(); + IMGUI_API void SetHoveredID(ImGuiID id); + IMGUI_API void KeepAliveID(ImGuiID id); + IMGUI_API void MarkItemEdited(ImGuiID id); // Mark data associated to given item as "edited", used by IsItemDeactivatedAfterEdit() function. + IMGUI_API void PushOverrideID(ImGuiID id); // Push given value as-is at the top of the ID stack (whereas PushID combines old and new hashes) + IMGUI_API ImGuiID GetIDWithSeed(const char* str_id_begin, const char* str_id_end, ImGuiID seed); + IMGUI_API ImGuiID GetIDWithSeed(int n, ImGuiID seed); + + // Basic Helpers for widget code + IMGUI_API void ItemSize(const ImVec2& size, float text_baseline_y = -1.0f); + inline void ItemSize(const ImRect& bb, float text_baseline_y = -1.0f) { ItemSize(bb.GetSize(), text_baseline_y); } // FIXME: This is a misleading API since we expect CursorPos to be bb.Min. + IMGUI_API bool ItemAdd(const ImRect& bb, ImGuiID id, const ImRect* nav_bb = NULL, ImGuiItemFlags extra_flags = 0); + IMGUI_API bool ItemHoverable(const ImRect& bb, ImGuiID id, ImGuiItemFlags item_flags); + IMGUI_API bool IsWindowContentHoverable(ImGuiWindow* window, ImGuiHoveredFlags flags = 0); + IMGUI_API bool IsClippedEx(const ImRect& bb, ImGuiID id); + IMGUI_API void SetLastItemData(ImGuiID item_id, ImGuiItemFlags in_flags, ImGuiItemStatusFlags status_flags, const ImRect& item_rect); + IMGUI_API ImVec2 CalcItemSize(ImVec2 size, float default_w, float default_h); + IMGUI_API float CalcWrapWidthForPos(const ImVec2& pos, float wrap_pos_x); + IMGUI_API void PushMultiItemsWidths(int components, float width_full); + IMGUI_API void ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_excess); + + // Parameter stacks (shared) + IMGUI_API const ImGuiDataVarInfo* GetStyleVarInfo(ImGuiStyleVar idx); + IMGUI_API void BeginDisabledOverrideReenable(); + IMGUI_API void EndDisabledOverrideReenable(); + + // Logging/Capture + IMGUI_API void LogBegin(ImGuiLogType type, int auto_open_depth); // -> BeginCapture() when we design v2 api, for now stay under the radar by using the old name. + IMGUI_API void LogToBuffer(int auto_open_depth = -1); // Start logging/capturing to internal buffer + IMGUI_API void LogRenderedText(const ImVec2* ref_pos, const char* text, const char* text_end = NULL); + IMGUI_API void LogSetNextTextDecoration(const char* prefix, const char* suffix); + + // Childs + IMGUI_API bool BeginChildEx(const char* name, ImGuiID id, const ImVec2& size_arg, ImGuiChildFlags child_flags, ImGuiWindowFlags window_flags); + + // Popups, Modals + IMGUI_API bool BeginPopupEx(ImGuiID id, ImGuiWindowFlags extra_window_flags); + IMGUI_API void OpenPopupEx(ImGuiID id, ImGuiPopupFlags popup_flags = ImGuiPopupFlags_None); + IMGUI_API void ClosePopupToLevel(int remaining, bool restore_focus_to_window_under_popup); + IMGUI_API void ClosePopupsOverWindow(ImGuiWindow* ref_window, bool restore_focus_to_window_under_popup); + IMGUI_API void ClosePopupsExceptModals(); + IMGUI_API bool IsPopupOpen(ImGuiID id, ImGuiPopupFlags popup_flags); + IMGUI_API ImRect GetPopupAllowedExtentRect(ImGuiWindow* window); + IMGUI_API ImGuiWindow* GetTopMostPopupModal(); + IMGUI_API ImGuiWindow* GetTopMostAndVisiblePopupModal(); + IMGUI_API ImGuiWindow* FindBlockingModal(ImGuiWindow* window); + IMGUI_API ImVec2 FindBestWindowPosForPopup(ImGuiWindow* window); + IMGUI_API ImVec2 FindBestWindowPosForPopupEx(const ImVec2& ref_pos, const ImVec2& size, ImGuiDir* last_dir, const ImRect& r_outer, const ImRect& r_avoid, ImGuiPopupPositionPolicy policy); + + // Tooltips + IMGUI_API bool BeginTooltipEx(ImGuiTooltipFlags tooltip_flags, ImGuiWindowFlags extra_window_flags); + IMGUI_API bool BeginTooltipHidden(); + + // Menus + IMGUI_API bool BeginViewportSideBar(const char* name, ImGuiViewport* viewport, ImGuiDir dir, float size, ImGuiWindowFlags window_flags); + IMGUI_API bool BeginMenuEx(const char* label, const char* icon, bool enabled = true); + IMGUI_API bool MenuItemEx(const char* label, const char* icon, const char* shortcut = NULL, bool selected = false, bool enabled = true); + + // Combos + IMGUI_API bool BeginComboPopup(ImGuiID popup_id, const ImRect& bb, ImGuiComboFlags flags); + IMGUI_API bool BeginComboPreview(); + IMGUI_API void EndComboPreview(); + + // Gamepad/Keyboard Navigation + IMGUI_API void NavInitWindow(ImGuiWindow* window, bool force_reinit); + IMGUI_API void NavInitRequestApplyResult(); + IMGUI_API bool NavMoveRequestButNoResultYet(); + IMGUI_API void NavMoveRequestSubmit(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags); + IMGUI_API void NavMoveRequestForward(ImGuiDir move_dir, ImGuiDir clip_dir, ImGuiNavMoveFlags move_flags, ImGuiScrollFlags scroll_flags); + IMGUI_API void NavMoveRequestResolveWithLastItem(ImGuiNavItemData* result); + IMGUI_API void NavMoveRequestResolveWithPastTreeNode(ImGuiNavItemData* result, ImGuiTreeNodeStackData* tree_node_data); + IMGUI_API void NavMoveRequestCancel(); + IMGUI_API void NavMoveRequestApplyResult(); + IMGUI_API void NavMoveRequestTryWrapping(ImGuiWindow* window, ImGuiNavMoveFlags move_flags); + IMGUI_API void NavHighlightActivated(ImGuiID id); + IMGUI_API void NavClearPreferredPosForAxis(ImGuiAxis axis); + IMGUI_API void NavRestoreHighlightAfterMove(); + IMGUI_API void NavUpdateCurrentWindowIsScrollPushableX(); + IMGUI_API void SetNavWindow(ImGuiWindow* window); + IMGUI_API void SetNavID(ImGuiID id, ImGuiNavLayer nav_layer, ImGuiID focus_scope_id, const ImRect& rect_rel); + IMGUI_API void SetNavFocusScope(ImGuiID focus_scope_id); + + // Focus/Activation + // This should be part of a larger set of API: FocusItem(offset = -1), FocusItemByID(id), ActivateItem(offset = -1), ActivateItemByID(id) etc. which are + // much harder to design and implement than expected. I have a couple of private branches on this matter but it's not simple. For now implementing the easy ones. + IMGUI_API void FocusItem(); // Focus last item (no selection/activation). + IMGUI_API void ActivateItemByID(ImGuiID id); // Activate an item by ID (button, checkbox, tree node etc.). Activation is queued and processed on the next frame when the item is encountered again. + + // Inputs + // FIXME: Eventually we should aim to move e.g. IsActiveIdUsingKey() into IsKeyXXX functions. + inline bool IsNamedKey(ImGuiKey key) { return key >= ImGuiKey_NamedKey_BEGIN && key < ImGuiKey_NamedKey_END; } + inline bool IsNamedKeyOrMod(ImGuiKey key) { return (key >= ImGuiKey_NamedKey_BEGIN && key < ImGuiKey_NamedKey_END) || key == ImGuiMod_Ctrl || key == ImGuiMod_Shift || key == ImGuiMod_Alt || key == ImGuiMod_Super; } + inline bool IsLegacyKey(ImGuiKey key) { return key >= ImGuiKey_LegacyNativeKey_BEGIN && key < ImGuiKey_LegacyNativeKey_END; } + inline bool IsKeyboardKey(ImGuiKey key) { return key >= ImGuiKey_Keyboard_BEGIN && key < ImGuiKey_Keyboard_END; } + inline bool IsGamepadKey(ImGuiKey key) { return key >= ImGuiKey_Gamepad_BEGIN && key < ImGuiKey_Gamepad_END; } + inline bool IsMouseKey(ImGuiKey key) { return key >= ImGuiKey_Mouse_BEGIN && key < ImGuiKey_Mouse_END; } + inline bool IsAliasKey(ImGuiKey key) { return key >= ImGuiKey_Aliases_BEGIN && key < ImGuiKey_Aliases_END; } + inline bool IsLRModKey(ImGuiKey key) { return key >= ImGuiKey_LeftCtrl && key <= ImGuiKey_RightSuper; } + ImGuiKeyChord FixupKeyChord(ImGuiKeyChord key_chord); + inline ImGuiKey ConvertSingleModFlagToKey(ImGuiKey key) + { + if (key == ImGuiMod_Ctrl) return ImGuiKey_ReservedForModCtrl; + if (key == ImGuiMod_Shift) return ImGuiKey_ReservedForModShift; + if (key == ImGuiMod_Alt) return ImGuiKey_ReservedForModAlt; + if (key == ImGuiMod_Super) return ImGuiKey_ReservedForModSuper; + return key; + } + + IMGUI_API ImGuiKeyData* GetKeyData(ImGuiContext* ctx, ImGuiKey key); + inline ImGuiKeyData* GetKeyData(ImGuiKey key) { ImGuiContext& g = *GImGui; return GetKeyData(&g, key); } + IMGUI_API const char* GetKeyChordName(ImGuiKeyChord key_chord); + inline ImGuiKey MouseButtonToKey(ImGuiMouseButton button) { IM_ASSERT(button >= 0 && button < ImGuiMouseButton_COUNT); return (ImGuiKey)(ImGuiKey_MouseLeft + button); } + IMGUI_API bool IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold = -1.0f); + IMGUI_API ImVec2 GetKeyMagnitude2d(ImGuiKey key_left, ImGuiKey key_right, ImGuiKey key_up, ImGuiKey key_down); + IMGUI_API float GetNavTweakPressedAmount(ImGuiAxis axis); + IMGUI_API int CalcTypematicRepeatAmount(float t0, float t1, float repeat_delay, float repeat_rate); + IMGUI_API void GetTypematicRepeatRate(ImGuiInputFlags flags, float* repeat_delay, float* repeat_rate); + IMGUI_API void TeleportMousePos(const ImVec2& pos); + IMGUI_API void SetActiveIdUsingAllKeyboardKeys(); + inline bool IsActiveIdUsingNavDir(ImGuiDir dir) { ImGuiContext& g = *GImGui; return (g.ActiveIdUsingNavDirMask & (1 << dir)) != 0; } + + // [EXPERIMENTAL] Low-Level: Key/Input Ownership + // - The idea is that instead of "eating" a given input, we can link to an owner id. + // - Ownership is most often claimed as a result of reacting to a press/down event (but occasionally may be claimed ahead). + // - Input queries can then read input by specifying ImGuiKeyOwner_Any (== 0), ImGuiKeyOwner_NoOwner (== -1) or a custom ID. + // - Legacy input queries (without specifying an owner or _Any or _None) are equivalent to using ImGuiKeyOwner_Any (== 0). + // - Input ownership is automatically released on the frame after a key is released. Therefore: + // - for ownership registration happening as a result of a down/press event, the SetKeyOwner() call may be done once (common case). + // - for ownership registration happening ahead of a down/press event, the SetKeyOwner() call needs to be made every frame (happens if e.g. claiming ownership on hover). + // - SetItemKeyOwner() is a shortcut for common simple case. A custom widget will probably want to call SetKeyOwner() multiple times directly based on its interaction state. + // - This is marked experimental because not all widgets are fully honoring the Set/Test idioms. We will need to move forward step by step. + // Please open a GitHub Issue to submit your usage scenario or if there's a use case you need solved. + IMGUI_API ImGuiID GetKeyOwner(ImGuiKey key); + IMGUI_API void SetKeyOwner(ImGuiKey key, ImGuiID owner_id, ImGuiInputFlags flags = 0); + IMGUI_API void SetKeyOwnersForKeyChord(ImGuiKeyChord key, ImGuiID owner_id, ImGuiInputFlags flags = 0); + IMGUI_API void SetItemKeyOwner(ImGuiKey key, ImGuiInputFlags flags); // Set key owner to last item if it is hovered or active. Equivalent to 'if (IsItemHovered() || IsItemActive()) { SetKeyOwner(key, GetItemID());'. + IMGUI_API bool TestKeyOwner(ImGuiKey key, ImGuiID owner_id); // Test that key is either not owned, either owned by 'owner_id' + inline ImGuiKeyOwnerData* GetKeyOwnerData(ImGuiContext* ctx, ImGuiKey key) { if (key & ImGuiMod_Mask_) key = ConvertSingleModFlagToKey(key); IM_ASSERT(IsNamedKey(key)); return &ctx->KeysOwnerData[key - ImGuiKey_NamedKey_BEGIN]; } + + // [EXPERIMENTAL] High-Level: Input Access functions w/ support for Key/Input Ownership + // - Important: legacy IsKeyPressed(ImGuiKey, bool repeat=true) _DEFAULTS_ to repeat, new IsKeyPressed() requires _EXPLICIT_ ImGuiInputFlags_Repeat flag. + // - Expected to be later promoted to public API, the prototypes are designed to replace existing ones (since owner_id can default to Any == 0) + // - Specifying a value for 'ImGuiID owner' will test that EITHER the key is NOT owned (UNLESS locked), EITHER the key is owned by 'owner'. + // Legacy functions use ImGuiKeyOwner_Any meaning that they typically ignore ownership, unless a call to SetKeyOwner() explicitly used ImGuiInputFlags_LockThisFrame or ImGuiInputFlags_LockUntilRelease. + // - Binding generators may want to ignore those for now, or suffix them with Ex() until we decide if this gets moved into public API. + IMGUI_API bool IsKeyDown(ImGuiKey key, ImGuiID owner_id); + IMGUI_API bool IsKeyPressed(ImGuiKey key, ImGuiInputFlags flags, ImGuiID owner_id = 0); // Important: when transitioning from old to new IsKeyPressed(): old API has "bool repeat = true", so would default to repeat. New API requiress explicit ImGuiInputFlags_Repeat. + IMGUI_API bool IsKeyReleased(ImGuiKey key, ImGuiID owner_id); + IMGUI_API bool IsKeyChordPressed(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id = 0); + IMGUI_API bool IsMouseDown(ImGuiMouseButton button, ImGuiID owner_id); + IMGUI_API bool IsMouseClicked(ImGuiMouseButton button, ImGuiInputFlags flags, ImGuiID owner_id = 0); + IMGUI_API bool IsMouseReleased(ImGuiMouseButton button, ImGuiID owner_id); + IMGUI_API bool IsMouseDoubleClicked(ImGuiMouseButton button, ImGuiID owner_id); + + // Shortcut Testing & Routing + // - Set Shortcut() and SetNextItemShortcut() in imgui.h + // - When a policy (except for ImGuiInputFlags_RouteAlways *) is set, Shortcut() will register itself with SetShortcutRouting(), + // allowing the system to decide where to route the input among other route-aware calls. + // (* using ImGuiInputFlags_RouteAlways is roughly equivalent to calling IsKeyChordPressed(key) and bypassing route registration and check) + // - When using one of the routing option: + // - The default route is ImGuiInputFlags_RouteFocused (accept inputs if window is in focus stack. Deep-most focused window takes inputs. ActiveId takes inputs over deep-most focused window.) + // - Routes are requested given a chord (key + modifiers) and a routing policy. + // - Routes are resolved during NewFrame(): if keyboard modifiers are matching current ones: SetKeyOwner() is called + route is granted for the frame. + // - Each route may be granted to a single owner. When multiple requests are made we have policies to select the winning route (e.g. deep most window). + // - Multiple read sites may use the same owner id can all access the granted route. + // - When owner_id is 0 we use the current Focus Scope ID as a owner ID in order to identify our location. + // - You can chain two unrelated windows in the focus stack using SetWindowParentWindowForFocusRoute() + // e.g. if you have a tool window associated to a document, and you want document shortcuts to run when the tool is focused. + IMGUI_API bool Shortcut(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id); + IMGUI_API bool SetShortcutRouting(ImGuiKeyChord key_chord, ImGuiInputFlags flags, ImGuiID owner_id); // owner_id needs to be explicit and cannot be 0 + IMGUI_API bool TestShortcutRouting(ImGuiKeyChord key_chord, ImGuiID owner_id); + IMGUI_API ImGuiKeyRoutingData* GetShortcutRoutingData(ImGuiKeyChord key_chord); + + // [EXPERIMENTAL] Focus Scope + // This is generally used to identify a unique input location (for e.g. a selection set) + // There is one per window (automatically set in Begin), but: + // - Selection patterns generally need to react (e.g. clear a selection) when landing on one item of the set. + // So in order to identify a set multiple lists in same window may each need a focus scope. + // If you imagine an hypothetical BeginSelectionGroup()/EndSelectionGroup() api, it would likely call PushFocusScope()/EndFocusScope() + // - Shortcut routing also use focus scope as a default location identifier if an owner is not provided. + // We don't use the ID Stack for this as it is common to want them separate. + IMGUI_API void PushFocusScope(ImGuiID id); + IMGUI_API void PopFocusScope(); + inline ImGuiID GetCurrentFocusScope() { ImGuiContext& g = *GImGui; return g.CurrentFocusScopeId; } // Focus scope we are outputting into, set by PushFocusScope() + + // Drag and Drop + IMGUI_API bool IsDragDropActive(); + IMGUI_API bool BeginDragDropTargetCustom(const ImRect& bb, ImGuiID id); + IMGUI_API void ClearDragDrop(); + IMGUI_API bool IsDragDropPayloadBeingAccepted(); + IMGUI_API void RenderDragDropTargetRect(const ImRect& bb, const ImRect& item_clip_rect); + + // Typing-Select API + IMGUI_API ImGuiTypingSelectRequest* GetTypingSelectRequest(ImGuiTypingSelectFlags flags = ImGuiTypingSelectFlags_None); + IMGUI_API int TypingSelectFindMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data, int nav_item_idx); + IMGUI_API int TypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data, int nav_item_idx); + IMGUI_API int TypingSelectFindBestLeadingMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data); + + // Box-Select API + IMGUI_API bool BeginBoxSelect(const ImRect& scope_rect, ImGuiWindow* window, ImGuiID box_select_id, ImGuiMultiSelectFlags ms_flags); + IMGUI_API void EndBoxSelect(const ImRect& scope_rect, ImGuiMultiSelectFlags ms_flags); + + // Multi-Select API + IMGUI_API void MultiSelectItemHeader(ImGuiID id, bool* p_selected, ImGuiButtonFlags* p_button_flags); + IMGUI_API void MultiSelectItemFooter(ImGuiID id, bool* p_selected, bool* p_pressed); + IMGUI_API void MultiSelectAddSetAll(ImGuiMultiSelectTempData* ms, bool selected); + IMGUI_API void MultiSelectAddSetRange(ImGuiMultiSelectTempData* ms, bool selected, int range_dir, ImGuiSelectionUserData first_item, ImGuiSelectionUserData last_item); + inline ImGuiBoxSelectState* GetBoxSelectState(ImGuiID id) { ImGuiContext& g = *GImGui; return (id != 0 && g.BoxSelectState.ID == id && g.BoxSelectState.IsActive) ? &g.BoxSelectState : NULL; } + inline ImGuiMultiSelectState* GetMultiSelectState(ImGuiID id) { ImGuiContext& g = *GImGui; return g.MultiSelectStorage.GetByKey(id); } + + // Internal Columns API (this is not exposed because we will encourage transitioning to the Tables API) + IMGUI_API void SetWindowClipRectBeforeSetChannel(ImGuiWindow* window, const ImRect& clip_rect); + IMGUI_API void BeginColumns(const char* str_id, int count, ImGuiOldColumnFlags flags = 0); // setup number of columns. use an identifier to distinguish multiple column sets. close with EndColumns(). + IMGUI_API void EndColumns(); // close columns + IMGUI_API void PushColumnClipRect(int column_index); + IMGUI_API void PushColumnsBackground(); + IMGUI_API void PopColumnsBackground(); + IMGUI_API ImGuiID GetColumnsID(const char* str_id, int count); + IMGUI_API ImGuiOldColumns* FindOrCreateColumns(ImGuiWindow* window, ImGuiID id); + IMGUI_API float GetColumnOffsetFromNorm(const ImGuiOldColumns* columns, float offset_norm); + IMGUI_API float GetColumnNormFromOffset(const ImGuiOldColumns* columns, float offset); + + // Tables: Candidates for public API + IMGUI_API void TableOpenContextMenu(int column_n = -1); + IMGUI_API void TableSetColumnWidth(int column_n, float width); + IMGUI_API void TableSetColumnSortDirection(int column_n, ImGuiSortDirection sort_direction, bool append_to_sort_specs); + IMGUI_API int TableGetHoveredRow(); // Retrieve *PREVIOUS FRAME* hovered row. This difference with TableGetHoveredColumn() is the reason why this is not public yet. + IMGUI_API float TableGetHeaderRowHeight(); + IMGUI_API float TableGetHeaderAngledMaxLabelWidth(); + IMGUI_API void TablePushBackgroundChannel(); + IMGUI_API void TablePopBackgroundChannel(); + IMGUI_API void TableAngledHeadersRowEx(ImGuiID row_id, float angle, float max_label_width, const ImGuiTableHeaderData* data, int data_count); + + // Tables: Internals + inline ImGuiTable* GetCurrentTable() { ImGuiContext& g = *GImGui; return g.CurrentTable; } + IMGUI_API ImGuiTable* TableFindByID(ImGuiID id); + IMGUI_API bool BeginTableEx(const char* name, ImGuiID id, int columns_count, ImGuiTableFlags flags = 0, const ImVec2& outer_size = ImVec2(0, 0), float inner_width = 0.0f); + IMGUI_API void TableBeginInitMemory(ImGuiTable* table, int columns_count); + IMGUI_API void TableBeginApplyRequests(ImGuiTable* table); + IMGUI_API void TableSetupDrawChannels(ImGuiTable* table); + IMGUI_API void TableUpdateLayout(ImGuiTable* table); + IMGUI_API void TableUpdateBorders(ImGuiTable* table); + IMGUI_API void TableUpdateColumnsWeightFromWidth(ImGuiTable* table); + IMGUI_API void TableDrawBorders(ImGuiTable* table); + IMGUI_API void TableDrawDefaultContextMenu(ImGuiTable* table, ImGuiTableFlags flags_for_section_to_display); + IMGUI_API bool TableBeginContextMenuPopup(ImGuiTable* table); + IMGUI_API void TableMergeDrawChannels(ImGuiTable* table); + inline ImGuiTableInstanceData* TableGetInstanceData(ImGuiTable* table, int instance_no) { if (instance_no == 0) return &table->InstanceDataFirst; return &table->InstanceDataExtra[instance_no - 1]; } + inline ImGuiID TableGetInstanceID(ImGuiTable* table, int instance_no) { return TableGetInstanceData(table, instance_no)->TableInstanceID; } + IMGUI_API void TableSortSpecsSanitize(ImGuiTable* table); + IMGUI_API void TableSortSpecsBuild(ImGuiTable* table); + IMGUI_API ImGuiSortDirection TableGetColumnNextSortDirection(ImGuiTableColumn* column); + IMGUI_API void TableFixColumnSortDirection(ImGuiTable* table, ImGuiTableColumn* column); + IMGUI_API float TableGetColumnWidthAuto(ImGuiTable* table, ImGuiTableColumn* column); + IMGUI_API void TableBeginRow(ImGuiTable* table); + IMGUI_API void TableEndRow(ImGuiTable* table); + IMGUI_API void TableBeginCell(ImGuiTable* table, int column_n); + IMGUI_API void TableEndCell(ImGuiTable* table); + IMGUI_API ImRect TableGetCellBgRect(const ImGuiTable* table, int column_n); + IMGUI_API const char* TableGetColumnName(const ImGuiTable* table, int column_n); + IMGUI_API ImGuiID TableGetColumnResizeID(ImGuiTable* table, int column_n, int instance_no = 0); + IMGUI_API float TableCalcMaxColumnWidth(const ImGuiTable* table, int column_n); + IMGUI_API void TableSetColumnWidthAutoSingle(ImGuiTable* table, int column_n); + IMGUI_API void TableSetColumnWidthAutoAll(ImGuiTable* table); + IMGUI_API void TableRemove(ImGuiTable* table); + IMGUI_API void TableGcCompactTransientBuffers(ImGuiTable* table); + IMGUI_API void TableGcCompactTransientBuffers(ImGuiTableTempData* table); + IMGUI_API void TableGcCompactSettings(); + + // Tables: Settings + IMGUI_API void TableLoadSettings(ImGuiTable* table); + IMGUI_API void TableSaveSettings(ImGuiTable* table); + IMGUI_API void TableResetSettings(ImGuiTable* table); + IMGUI_API ImGuiTableSettings* TableGetBoundSettings(ImGuiTable* table); + IMGUI_API void TableSettingsAddSettingsHandler(); + IMGUI_API ImGuiTableSettings* TableSettingsCreate(ImGuiID id, int columns_count); + IMGUI_API ImGuiTableSettings* TableSettingsFindByID(ImGuiID id); + + // Tab Bars + inline ImGuiTabBar* GetCurrentTabBar() { ImGuiContext& g = *GImGui; return g.CurrentTabBar; } + IMGUI_API bool BeginTabBarEx(ImGuiTabBar* tab_bar, const ImRect& bb, ImGuiTabBarFlags flags); + IMGUI_API ImGuiTabItem* TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id); + IMGUI_API ImGuiTabItem* TabBarFindTabByOrder(ImGuiTabBar* tab_bar, int order); + IMGUI_API ImGuiTabItem* TabBarGetCurrentTab(ImGuiTabBar* tab_bar); + inline int TabBarGetTabOrder(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) { return tab_bar->Tabs.index_from_ptr(tab); } + IMGUI_API const char* TabBarGetTabName(ImGuiTabBar* tab_bar, ImGuiTabItem* tab); + IMGUI_API void TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id); + IMGUI_API void TabBarCloseTab(ImGuiTabBar* tab_bar, ImGuiTabItem* tab); + IMGUI_API void TabBarQueueFocus(ImGuiTabBar* tab_bar, ImGuiTabItem* tab); + IMGUI_API void TabBarQueueReorder(ImGuiTabBar* tab_bar, ImGuiTabItem* tab, int offset); + IMGUI_API void TabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar, ImGuiTabItem* tab, ImVec2 mouse_pos); + IMGUI_API bool TabBarProcessReorder(ImGuiTabBar* tab_bar); + IMGUI_API bool TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags, ImGuiWindow* docked_window); + IMGUI_API ImVec2 TabItemCalcSize(const char* label, bool has_close_button_or_unsaved_marker); + IMGUI_API ImVec2 TabItemCalcSize(ImGuiWindow* window); + IMGUI_API void TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col); + IMGUI_API void TabItemLabelAndCloseButton(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImVec2 frame_padding, const char* label, ImGuiID tab_id, ImGuiID close_button_id, bool is_contents_visible, bool* out_just_closed, bool* out_text_clipped); + + // Render helpers + // AVOID USING OUTSIDE OF IMGUI.CPP! NOT FOR PUBLIC CONSUMPTION. THOSE FUNCTIONS ARE A MESS. THEIR SIGNATURE AND BEHAVIOR WILL CHANGE, THEY NEED TO BE REFACTORED INTO SOMETHING DECENT. + // NB: All position are in absolute pixels coordinates (we are never using window coordinates internally) + IMGUI_API void RenderText(ImVec2 pos, const char* text, const char* text_end = NULL, bool hide_text_after_hash = true); + IMGUI_API void RenderTextWrapped(ImVec2 pos, const char* text, const char* text_end, float wrap_width); + IMGUI_API void RenderTextClipped(const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); + IMGUI_API void RenderTextClippedEx(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, const char* text, const char* text_end, const ImVec2* text_size_if_known, const ImVec2& align = ImVec2(0, 0), const ImRect* clip_rect = NULL); + IMGUI_API void RenderTextEllipsis(ImDrawList* draw_list, const ImVec2& pos_min, const ImVec2& pos_max, float clip_max_x, float ellipsis_max_x, const char* text, const char* text_end, const ImVec2* text_size_if_known); + IMGUI_API void RenderFrame(ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, bool borders = true, float rounding = 0.0f); + IMGUI_API void RenderFrameBorder(ImVec2 p_min, ImVec2 p_max, float rounding = 0.0f); + IMGUI_API void RenderColorRectWithAlphaCheckerboard(ImDrawList* draw_list, ImVec2 p_min, ImVec2 p_max, ImU32 fill_col, float grid_step, ImVec2 grid_off, float rounding = 0.0f, ImDrawFlags flags = 0); + IMGUI_API void RenderNavHighlight(const ImRect& bb, ImGuiID id, ImGuiNavHighlightFlags flags = ImGuiNavHighlightFlags_None); // Navigation highlight + IMGUI_API const char* FindRenderedTextEnd(const char* text, const char* text_end = NULL); // Find the optional ## from which we stop displaying text. + IMGUI_API void RenderMouseCursor(ImVec2 pos, float scale, ImGuiMouseCursor mouse_cursor, ImU32 col_fill, ImU32 col_border, ImU32 col_shadow); + + // Render helpers (those functions don't access any ImGui state!) + IMGUI_API void RenderArrow(ImDrawList* draw_list, ImVec2 pos, ImU32 col, ImGuiDir dir, float scale = 1.0f); + IMGUI_API void RenderBullet(ImDrawList* draw_list, ImVec2 pos, ImU32 col); + IMGUI_API void RenderCheckMark(ImDrawList* draw_list, ImVec2 pos, ImU32 col, float sz); + IMGUI_API void RenderArrowPointingAt(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, ImGuiDir direction, ImU32 col); + IMGUI_API void RenderRectFilledRangeH(ImDrawList* draw_list, const ImRect& rect, ImU32 col, float x_start_norm, float x_end_norm, float rounding); + IMGUI_API void RenderRectFilledWithHole(ImDrawList* draw_list, const ImRect& outer, const ImRect& inner, ImU32 col, float rounding); + + // Widgets + IMGUI_API void TextEx(const char* text, const char* text_end = NULL, ImGuiTextFlags flags = 0); + IMGUI_API bool ButtonEx(const char* label, const ImVec2& size_arg = ImVec2(0, 0), ImGuiButtonFlags flags = 0); + IMGUI_API bool ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size_arg, ImGuiButtonFlags flags = 0); + IMGUI_API bool ImageButtonEx(ImGuiID id, ImTextureID texture_id, const ImVec2& image_size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& bg_col, const ImVec4& tint_col, ImGuiButtonFlags flags = 0); + IMGUI_API void SeparatorEx(ImGuiSeparatorFlags flags, float thickness = 1.0f); + IMGUI_API void SeparatorTextEx(ImGuiID id, const char* label, const char* label_end, float extra_width); + IMGUI_API bool CheckboxFlags(const char* label, ImS64* flags, ImS64 flags_value); + IMGUI_API bool CheckboxFlags(const char* label, ImU64* flags, ImU64 flags_value); + + // Widgets: Window Decorations + IMGUI_API bool CloseButton(ImGuiID id, const ImVec2& pos); + IMGUI_API bool CollapseButton(ImGuiID id, const ImVec2& pos); + IMGUI_API void Scrollbar(ImGuiAxis axis); + IMGUI_API bool ScrollbarEx(const ImRect& bb, ImGuiID id, ImGuiAxis axis, ImS64* p_scroll_v, ImS64 avail_v, ImS64 contents_v, ImDrawFlags flags); + IMGUI_API ImRect GetWindowScrollbarRect(ImGuiWindow* window, ImGuiAxis axis); + IMGUI_API ImGuiID GetWindowScrollbarID(ImGuiWindow* window, ImGuiAxis axis); + IMGUI_API ImGuiID GetWindowResizeCornerID(ImGuiWindow* window, int n); // 0..3: corners + IMGUI_API ImGuiID GetWindowResizeBorderID(ImGuiWindow* window, ImGuiDir dir); + + // Widgets low-level behaviors + IMGUI_API bool ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiButtonFlags flags = 0); + IMGUI_API bool DragBehavior(ImGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags); + IMGUI_API bool SliderBehavior(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* p_v, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb); + IMGUI_API bool SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend = 0.0f, float hover_visibility_delay = 0.0f, ImU32 bg_col = 0); + + // Widgets: Tree Nodes + IMGUI_API bool TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char* label_end = NULL); + IMGUI_API void TreePushOverrideID(ImGuiID id); + IMGUI_API bool TreeNodeGetOpen(ImGuiID storage_id); + IMGUI_API void TreeNodeSetOpen(ImGuiID storage_id, bool open); + IMGUI_API bool TreeNodeUpdateNextOpen(ImGuiID storage_id, ImGuiTreeNodeFlags flags); // Return open state. Consume previous SetNextItemOpen() data, if any. May return true when logging. + + // Template functions are instantiated in imgui_widgets.cpp for a finite number of types. + // To use them externally (for custom widget) you may need an "extern template" statement in your code in order to link to existing instances and silence Clang warnings (see #2036). + // e.g. " extern template IMGUI_API float RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, float v); " + template IMGUI_API float ScaleRatioFromValueT(ImGuiDataType data_type, T v, T v_min, T v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_size); + template IMGUI_API T ScaleValueFromRatioT(ImGuiDataType data_type, float t, T v_min, T v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_size); + template IMGUI_API bool DragBehaviorT(ImGuiDataType data_type, T* v, float v_speed, T v_min, T v_max, const char* format, ImGuiSliderFlags flags); + template IMGUI_API bool SliderBehaviorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, T* v, T v_min, T v_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb); + template IMGUI_API T RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, T v); + template IMGUI_API bool CheckboxFlagsT(const char* label, T* flags, T flags_value); + + // Data type helpers + IMGUI_API const ImGuiDataTypeInfo* DataTypeGetInfo(ImGuiDataType data_type); + IMGUI_API int DataTypeFormatString(char* buf, int buf_size, ImGuiDataType data_type, const void* p_data, const char* format); + IMGUI_API void DataTypeApplyOp(ImGuiDataType data_type, int op, void* output, const void* arg_1, const void* arg_2); + IMGUI_API bool DataTypeApplyFromText(const char* buf, ImGuiDataType data_type, void* p_data, const char* format, void* p_data_when_empty = NULL); + IMGUI_API int DataTypeCompare(ImGuiDataType data_type, const void* arg_1, const void* arg_2); + IMGUI_API bool DataTypeClamp(ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max); + + // InputText + IMGUI_API bool InputTextEx(const char* label, const char* hint, char* buf, int buf_size, const ImVec2& size_arg, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback = NULL, void* user_data = NULL); + IMGUI_API void InputTextDeactivateHook(ImGuiID id); + IMGUI_API bool TempInputText(const ImRect& bb, ImGuiID id, const char* label, char* buf, int buf_size, ImGuiInputTextFlags flags); + IMGUI_API bool TempInputScalar(const ImRect& bb, ImGuiID id, const char* label, ImGuiDataType data_type, void* p_data, const char* format, const void* p_clamp_min = NULL, const void* p_clamp_max = NULL); + inline bool TempInputIsActive(ImGuiID id) { ImGuiContext& g = *GImGui; return (g.ActiveId == id && g.TempInputId == id); } + inline ImGuiInputTextState* GetInputTextState(ImGuiID id) { ImGuiContext& g = *GImGui; return (id != 0 && g.InputTextState.ID == id) ? &g.InputTextState : NULL; } // Get input text state if active + IMGUI_API void SetNextItemRefVal(ImGuiDataType data_type, void* p_data); + + // Color + IMGUI_API void ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags); + IMGUI_API void ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags); + IMGUI_API void ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags); + + // Plot + IMGUI_API int PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, const ImVec2& size_arg); + + // Shade functions (write over already created vertices) + IMGUI_API void ShadeVertsLinearColorGradientKeepAlpha(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, ImVec2 gradient_p0, ImVec2 gradient_p1, ImU32 col0, ImU32 col1); + IMGUI_API void ShadeVertsLinearUV(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, const ImVec2& a, const ImVec2& b, const ImVec2& uv_a, const ImVec2& uv_b, bool clamp); + IMGUI_API void ShadeVertsTransformPos(ImDrawList* draw_list, int vert_start_idx, int vert_end_idx, const ImVec2& pivot_in, float cos_a, float sin_a, const ImVec2& pivot_out); + + // Garbage collection + IMGUI_API void GcCompactTransientMiscBuffers(); + IMGUI_API void GcCompactTransientWindowBuffers(ImGuiWindow* window); + IMGUI_API void GcAwakeTransientWindowBuffers(ImGuiWindow* window); + + // Error Checking, State Recovery + IMGUI_API void ErrorLogCallbackToDebugLog(void* user_data, const char* fmt, ...); + IMGUI_API void ErrorCheckEndFrameRecover(ImGuiErrorLogCallback log_callback, void* user_data = NULL); + IMGUI_API void ErrorCheckEndWindowRecover(ImGuiErrorLogCallback log_callback, void* user_data = NULL); + IMGUI_API void ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + // Debug Tools + IMGUI_API void DebugAllocHook(ImGuiDebugAllocInfo* info, int frame_count, void* ptr, size_t size); // size >= 0 : alloc, size = -1 : free + IMGUI_API void DebugDrawCursorPos(ImU32 col = IM_COL32(255, 0, 0, 255)); + IMGUI_API void DebugDrawLineExtents(ImU32 col = IM_COL32(255, 0, 0, 255)); + IMGUI_API void DebugDrawItemRect(ImU32 col = IM_COL32(255, 0, 0, 255)); + IMGUI_API void DebugTextUnformattedWithLocateItem(const char* line_begin, const char* line_end); + IMGUI_API void DebugLocateItem(ImGuiID target_id); // Call sparingly: only 1 at the same time! + IMGUI_API void DebugLocateItemOnHover(ImGuiID target_id); // Only call on reaction to a mouse Hover: because only 1 at the same time! + IMGUI_API void DebugLocateItemResolveWithLastItem(); + IMGUI_API void DebugBreakClearData(); + IMGUI_API bool DebugBreakButton(const char* label, const char* description_of_location); + IMGUI_API void DebugBreakButtonTooltip(bool keyboard_only, const char* description_of_location); + IMGUI_API void ShowFontAtlas(ImFontAtlas* atlas); + IMGUI_API void DebugHookIdInfo(ImGuiID id, ImGuiDataType data_type, const void* data_id, const void* data_id_end); + IMGUI_API void DebugNodeColumns(ImGuiOldColumns* columns); + IMGUI_API void DebugNodeDrawList(ImGuiWindow* window, ImGuiViewportP* viewport, const ImDrawList* draw_list, const char* label); + IMGUI_API void DebugNodeDrawCmdShowMeshAndBoundingBox(ImDrawList* out_draw_list, const ImDrawList* draw_list, const ImDrawCmd* draw_cmd, bool show_mesh, bool show_aabb); + IMGUI_API void DebugNodeFont(ImFont* font); + IMGUI_API void DebugNodeFontGlyph(ImFont* font, const ImFontGlyph* glyph); + IMGUI_API void DebugNodeStorage(ImGuiStorage* storage, const char* label); + IMGUI_API void DebugNodeTabBar(ImGuiTabBar* tab_bar, const char* label); + IMGUI_API void DebugNodeTable(ImGuiTable* table); + IMGUI_API void DebugNodeTableSettings(ImGuiTableSettings* settings); + IMGUI_API void DebugNodeInputTextState(ImGuiInputTextState* state); + IMGUI_API void DebugNodeTypingSelectState(ImGuiTypingSelectState* state); + IMGUI_API void DebugNodeMultiSelectState(ImGuiMultiSelectState* state); + IMGUI_API void DebugNodeWindow(ImGuiWindow* window, const char* label); + IMGUI_API void DebugNodeWindowSettings(ImGuiWindowSettings* settings); + IMGUI_API void DebugNodeWindowsList(ImVector* windows, const char* label); + IMGUI_API void DebugNodeWindowsListByBeginStackParent(ImGuiWindow** windows, int windows_size, ImGuiWindow* parent_in_begin_stack); + IMGUI_API void DebugNodeViewport(ImGuiViewportP* viewport); + IMGUI_API void DebugRenderKeyboardPreview(ImDrawList* draw_list); + IMGUI_API void DebugRenderViewportThumbnail(ImDrawList* draw_list, ImGuiViewportP* viewport, const ImRect& bb); + + // Obsolete functions +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + inline void SetItemUsingMouseWheel() { SetItemKeyOwner(ImGuiKey_MouseWheelY); } // Changed in 1.89 + inline bool TreeNodeBehaviorIsOpen(ImGuiID id, ImGuiTreeNodeFlags flags = 0) { return TreeNodeUpdateNextOpen(id, flags); } // Renamed in 1.89 + + //inline bool IsKeyPressedMap(ImGuiKey key, bool repeat = true) { IM_ASSERT(IsNamedKey(key)); return IsKeyPressed(key, repeat); } // Removed in 1.87: Mapping from named key is always identity! + + // Refactored focus/nav/tabbing system in 1.82 and 1.84. If you have old/custom copy-and-pasted widgets which used FocusableItemRegister(): + // (Old) IMGUI_VERSION_NUM < 18209: using 'ItemAdd(....)' and 'bool tab_focused = FocusableItemRegister(...)' + // (Old) IMGUI_VERSION_NUM >= 18209: using 'ItemAdd(..., ImGuiItemAddFlags_Focusable)' and 'bool tab_focused = (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Focused) != 0' + // (New) IMGUI_VERSION_NUM >= 18413: using 'ItemAdd(..., ImGuiItemFlags_Inputable)' and 'bool tab_focused = (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_PreferInput))' + //inline bool FocusableItemRegister(ImGuiWindow* window, ImGuiID id) // -> pass ImGuiItemAddFlags_Inputable flag to ItemAdd() + //inline void FocusableItemUnregister(ImGuiWindow* window) // -> unnecessary: TempInputText() uses ImGuiInputTextFlags_MergedItem +#endif + +} // namespace ImGui + + +//----------------------------------------------------------------------------- +// [SECTION] ImFontAtlas internal API +//----------------------------------------------------------------------------- + +// This structure is likely to evolve as we add support for incremental atlas updates +struct ImFontBuilderIO +{ + bool (*FontBuilder_Build)(ImFontAtlas* atlas); +}; + +// Helper for font builder +#ifdef IMGUI_ENABLE_STB_TRUETYPE +IMGUI_API const ImFontBuilderIO* ImFontAtlasGetBuilderForStbTruetype(); +#endif +IMGUI_API void ImFontAtlasUpdateConfigDataPointers(ImFontAtlas* atlas); +IMGUI_API void ImFontAtlasBuildInit(ImFontAtlas* atlas); +IMGUI_API void ImFontAtlasBuildSetupFont(ImFontAtlas* atlas, ImFont* font, ImFontConfig* font_config, float ascent, float descent); +IMGUI_API void ImFontAtlasBuildPackCustomRects(ImFontAtlas* atlas, void* stbrp_context_opaque); +IMGUI_API void ImFontAtlasBuildFinish(ImFontAtlas* atlas); +IMGUI_API void ImFontAtlasBuildRender8bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned char in_marker_pixel_value); +IMGUI_API void ImFontAtlasBuildRender32bppRectFromString(ImFontAtlas* atlas, int x, int y, int w, int h, const char* in_str, char in_marker_char, unsigned int in_marker_pixel_value); +IMGUI_API void ImFontAtlasBuildMultiplyCalcLookupTable(unsigned char out_table[256], float in_multiply_factor); +IMGUI_API void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels, int x, int y, int w, int h, int stride); + +//----------------------------------------------------------------------------- +// [SECTION] Test Engine specific hooks (imgui_test_engine) +//----------------------------------------------------------------------------- + +#ifdef IMGUI_ENABLE_TEST_ENGINE +extern void ImGuiTestEngineHook_ItemAdd(ImGuiContext* ctx, ImGuiID id, const ImRect& bb, const ImGuiLastItemData* item_data); // item_data may be NULL +extern void ImGuiTestEngineHook_ItemInfo(ImGuiContext* ctx, ImGuiID id, const char* label, ImGuiItemStatusFlags flags); +extern void ImGuiTestEngineHook_Log(ImGuiContext* ctx, const char* fmt, ...); +extern const char* ImGuiTestEngine_FindItemDebugLabel(ImGuiContext* ctx, ImGuiID id); + +// In IMGUI_VERSION_NUM >= 18934: changed IMGUI_TEST_ENGINE_ITEM_ADD(bb,id) to IMGUI_TEST_ENGINE_ITEM_ADD(id,bb,item_data); +#define IMGUI_TEST_ENGINE_ITEM_ADD(_ID,_BB,_ITEM_DATA) if (g.TestEngineHookItems) ImGuiTestEngineHook_ItemAdd(&g, _ID, _BB, _ITEM_DATA) // Register item bounding box +#define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) if (g.TestEngineHookItems) ImGuiTestEngineHook_ItemInfo(&g, _ID, _LABEL, _FLAGS) // Register item label and status flags (optional) +#define IMGUI_TEST_ENGINE_LOG(_FMT,...) ImGuiTestEngineHook_Log(&g, _FMT, __VA_ARGS__) // Custom log entry from user land into test log +#else +#define IMGUI_TEST_ENGINE_ITEM_ADD(_BB,_ID) ((void)0) +#define IMGUI_TEST_ENGINE_ITEM_INFO(_ID,_LABEL,_FLAGS) ((void)g) +#endif + +//----------------------------------------------------------------------------- + +#if defined(__clang__) +#pragma clang diagnostic pop +#elif defined(__GNUC__) +#pragma GCC diagnostic pop +#endif + +#ifdef _MSC_VER +#pragma warning (pop) +#endif + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imgui_tables.cpp b/external/lumin/thirdparty/imgui/imgui_tables.cpp new file mode 100644 index 0000000..dc7f210 --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui_tables.cpp @@ -0,0 +1,4464 @@ +// dear imgui, v1.91.3 WIP +// (tables and columns code) + +/* + +Index of this file: + +// [SECTION] Commentary +// [SECTION] Header mess +// [SECTION] Tables: Main code +// [SECTION] Tables: Simple accessors +// [SECTION] Tables: Row changes +// [SECTION] Tables: Columns changes +// [SECTION] Tables: Columns width management +// [SECTION] Tables: Drawing +// [SECTION] Tables: Sorting +// [SECTION] Tables: Headers +// [SECTION] Tables: Context Menu +// [SECTION] Tables: Settings (.ini data) +// [SECTION] Tables: Garbage Collection +// [SECTION] Tables: Debugging +// [SECTION] Columns, BeginColumns, EndColumns, etc. + +*/ + +// Navigating this file: +// - In Visual Studio: CTRL+comma ("Edit.GoToAll") can follow symbols inside comments, whereas CTRL+F12 ("Edit.GoToImplementation") cannot. +// - In Visual Studio w/ Visual Assist installed: ALT+G ("VAssistX.GoToImplementation") can also follow symbols inside comments. +// - In VS Code, CLion, etc.: CTRL+click can follow symbols inside comments. + +//----------------------------------------------------------------------------- +// [SECTION] Commentary +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// Typical tables call flow: (root level is generally public API): +//----------------------------------------------------------------------------- +// - BeginTable() user begin into a table +// | BeginChild() - (if ScrollX/ScrollY is set) +// | TableBeginInitMemory() - first time table is used +// | TableResetSettings() - on settings reset +// | TableLoadSettings() - on settings load +// | TableBeginApplyRequests() - apply queued resizing/reordering/hiding requests +// | - TableSetColumnWidth() - apply resizing width (for mouse resize, often requested by previous frame) +// | - TableUpdateColumnsWeightFromWidth()- recompute columns weights (of stretch columns) from their respective width +// - TableSetupColumn() user submit columns details (optional) +// - TableSetupScrollFreeze() user submit scroll freeze information (optional) +//----------------------------------------------------------------------------- +// - TableUpdateLayout() [Internal] followup to BeginTable(): setup everything: widths, columns positions, clipping rectangles. Automatically called by the FIRST call to TableNextRow() or TableHeadersRow(). +// | TableSetupDrawChannels() - setup ImDrawList channels +// | TableUpdateBorders() - detect hovering columns for resize, ahead of contents submission +// | TableBeginContextMenuPopup() +// | - TableDrawDefaultContextMenu() - draw right-click context menu contents +//----------------------------------------------------------------------------- +// - TableHeadersRow() or TableHeader() user submit a headers row (optional) +// | TableSortSpecsClickColumn() - when left-clicked: alter sort order and sort direction +// | TableOpenContextMenu() - when right-clicked: trigger opening of the default context menu +// - TableGetSortSpecs() user queries updated sort specs (optional, generally after submitting headers) +// - TableNextRow() user begin into a new row (also automatically called by TableHeadersRow()) +// | TableEndRow() - finish existing row +// | TableBeginRow() - add a new row +// - TableSetColumnIndex() / TableNextColumn() user begin into a cell +// | TableEndCell() - close existing column/cell +// | TableBeginCell() - enter into current column/cell +// - [...] user emit contents +//----------------------------------------------------------------------------- +// - EndTable() user ends the table +// | TableDrawBorders() - draw outer borders, inner vertical borders +// | TableMergeDrawChannels() - merge draw channels if clipping isn't required +// | EndChild() - (if ScrollX/ScrollY is set) +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// TABLE SIZING +//----------------------------------------------------------------------------- +// (Read carefully because this is subtle but it does make sense!) +//----------------------------------------------------------------------------- +// About 'outer_size': +// Its meaning needs to differ slightly depending on if we are using ScrollX/ScrollY flags. +// Default value is ImVec2(0.0f, 0.0f). +// X +// - outer_size.x <= 0.0f -> Right-align from window/work-rect right-most edge. With -FLT_MIN or 0.0f will align exactly on right-most edge. +// - outer_size.x > 0.0f -> Set Fixed width. +// Y with ScrollX/ScrollY disabled: we output table directly in current window +// - outer_size.y < 0.0f -> Bottom-align (but will auto extend, unless _NoHostExtendY is set). Not meaningful if parent window can vertically scroll. +// - outer_size.y = 0.0f -> No minimum height (but will auto extend, unless _NoHostExtendY is set) +// - outer_size.y > 0.0f -> Set Minimum height (but will auto extend, unless _NoHostExtendY is set) +// Y with ScrollX/ScrollY enabled: using a child window for scrolling +// - outer_size.y < 0.0f -> Bottom-align. Not meaningful if parent window can vertically scroll. +// - outer_size.y = 0.0f -> Bottom-align, consistent with BeginChild(). Not recommended unless table is last item in parent window. +// - outer_size.y > 0.0f -> Set Exact height. Recommended when using Scrolling on any axis. +//----------------------------------------------------------------------------- +// Outer size is also affected by the NoHostExtendX/NoHostExtendY flags. +// Important to note how the two flags have slightly different behaviors! +// - ImGuiTableFlags_NoHostExtendX -> Make outer width auto-fit to columns (overriding outer_size.x value). Only available when ScrollX/ScrollY are disabled and Stretch columns are not used. +// - ImGuiTableFlags_NoHostExtendY -> Make outer height stop exactly at outer_size.y (prevent auto-extending table past the limit). Only available when ScrollX/ScrollY is disabled. Data below the limit will be clipped and not visible. +// In theory ImGuiTableFlags_NoHostExtendY could be the default and any non-scrolling tables with outer_size.y != 0.0f would use exact height. +// This would be consistent but perhaps less useful and more confusing (as vertically clipped items are not useful and not easily noticeable). +//----------------------------------------------------------------------------- +// About 'inner_width': +// With ScrollX disabled: +// - inner_width -> *ignored* +// With ScrollX enabled: +// - inner_width < 0.0f -> *illegal* fit in known width (right align from outer_size.x) <-- weird +// - inner_width = 0.0f -> fit in outer_width: Fixed size columns will take space they need (if avail, otherwise shrink down), Stretch columns becomes Fixed columns. +// - inner_width > 0.0f -> override scrolling width, generally to be larger than outer_size.x. Fixed column take space they need (if avail, otherwise shrink down), Stretch columns share remaining space! +//----------------------------------------------------------------------------- +// Details: +// - If you want to use Stretch columns with ScrollX, you generally need to specify 'inner_width' otherwise the concept +// of "available space" doesn't make sense. +// - Even if not really useful, we allow 'inner_width < outer_size.x' for consistency and to facilitate understanding +// of what the value does. +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// COLUMNS SIZING POLICIES +// (Reference: ImGuiTableFlags_SizingXXX flags and ImGuiTableColumnFlags_WidthXXX flags) +//----------------------------------------------------------------------------- +// About overriding column sizing policy and width/weight with TableSetupColumn(): +// We use a default parameter of -1 for 'init_width'/'init_weight'. +// - with ImGuiTableColumnFlags_WidthFixed, init_width <= 0 (default) --> width is automatic +// - with ImGuiTableColumnFlags_WidthFixed, init_width > 0 (explicit) --> width is custom +// - with ImGuiTableColumnFlags_WidthStretch, init_weight <= 0 (default) --> weight is 1.0f +// - with ImGuiTableColumnFlags_WidthStretch, init_weight > 0 (explicit) --> weight is custom +// Widths are specified _without_ CellPadding. If you specify a width of 100.0f, the column will be cover (100.0f + Padding * 2.0f) +// and you can fit a 100.0f wide item in it without clipping and with padding honored. +//----------------------------------------------------------------------------- +// About default sizing policy (if you don't specify a ImGuiTableColumnFlags_WidthXXXX flag) +// - with Table policy ImGuiTableFlags_SizingFixedFit --> default Column policy is ImGuiTableColumnFlags_WidthFixed, default Width is equal to contents width +// - with Table policy ImGuiTableFlags_SizingFixedSame --> default Column policy is ImGuiTableColumnFlags_WidthFixed, default Width is max of all contents width +// - with Table policy ImGuiTableFlags_SizingStretchSame --> default Column policy is ImGuiTableColumnFlags_WidthStretch, default Weight is 1.0f +// - with Table policy ImGuiTableFlags_SizingStretchWeight --> default Column policy is ImGuiTableColumnFlags_WidthStretch, default Weight is proportional to contents +// Default Width and default Weight can be overridden when calling TableSetupColumn(). +//----------------------------------------------------------------------------- +// About mixing Fixed/Auto and Stretch columns together: +// - the typical use of mixing sizing policies is: any number of LEADING Fixed columns, followed by one or two TRAILING Stretch columns. +// - using mixed policies with ScrollX does not make much sense, as using Stretch columns with ScrollX does not make much sense in the first place! +// that is, unless 'inner_width' is passed to BeginTable() to explicitly provide a total width to layout columns in. +// - when using ImGuiTableFlags_SizingFixedSame with mixed columns, only the Fixed/Auto columns will match their widths to the width of the maximum contents. +// - when using ImGuiTableFlags_SizingStretchSame with mixed columns, only the Stretch columns will match their weights/widths. +//----------------------------------------------------------------------------- +// About using column width: +// If a column is manually resizable or has a width specified with TableSetupColumn(): +// - you may use GetContentRegionAvail().x to query the width available in a given column. +// - right-side alignment features such as SetNextItemWidth(-x) or PushItemWidth(-x) will rely on this width. +// If the column is not resizable and has no width specified with TableSetupColumn(): +// - its width will be automatic and be set to the max of items submitted. +// - therefore you generally cannot have ALL items of the columns use e.g. SetNextItemWidth(-FLT_MIN). +// - but if the column has one or more items of known/fixed size, this will become the reference width used by SetNextItemWidth(-FLT_MIN). +//----------------------------------------------------------------------------- + + +//----------------------------------------------------------------------------- +// TABLES CLIPPING/CULLING +//----------------------------------------------------------------------------- +// About clipping/culling of Rows in Tables: +// - For large numbers of rows, it is recommended you use ImGuiListClipper to submit only visible rows. +// ImGuiListClipper is reliant on the fact that rows are of equal height. +// See 'Demo->Tables->Vertical Scrolling' or 'Demo->Tables->Advanced' for a demo of using the clipper. +// - Note that auto-resizing columns don't play well with using the clipper. +// By default a table with _ScrollX but without _Resizable will have column auto-resize. +// So, if you want to use the clipper, make sure to either enable _Resizable, either setup columns width explicitly with _WidthFixed. +//----------------------------------------------------------------------------- +// About clipping/culling of Columns in Tables: +// - Both TableSetColumnIndex() and TableNextColumn() return true when the column is visible or performing +// width measurements. Otherwise, you may skip submitting the contents of a cell/column, BUT ONLY if you know +// it is not going to contribute to row height. +// In many situations, you may skip submitting contents for every column but one (e.g. the first one). +// - Case A: column is not hidden by user, and at least partially in sight (most common case). +// - Case B: column is clipped / out of sight (because of scrolling or parent ClipRect): TableNextColumn() return false as a hint but we still allow layout output. +// - Case C: column is hidden explicitly by the user (e.g. via the context menu, or _DefaultHide column flag, etc.). +// +// [A] [B] [C] +// TableNextColumn(): true false false -> [userland] when TableNextColumn() / TableSetColumnIndex() returns false, user can skip submitting items but only if the column doesn't contribute to row height. +// SkipItems: false false true -> [internal] when SkipItems is true, most widgets will early out if submitted, resulting is no layout output. +// ClipRect: normal zero-width zero-width -> [internal] when ClipRect is zero, ItemAdd() will return false and most widgets will early out mid-way. +// ImDrawList output: normal dummy dummy -> [internal] when using the dummy channel, ImDrawList submissions (if any) will be wasted (because cliprect is zero-width anyway). +// +// - We need to distinguish those cases because non-hidden columns that are clipped outside of scrolling bounds should still contribute their height to the row. +// However, in the majority of cases, the contribution to row height is the same for all columns, or the tallest cells are known by the programmer. +//----------------------------------------------------------------------------- +// About clipping/culling of whole Tables: +// - Scrolling tables with a known outer size can be clipped earlier as BeginTable() will return false. +//----------------------------------------------------------------------------- + +//----------------------------------------------------------------------------- +// [SECTION] Header mess +//----------------------------------------------------------------------------- + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" + +// System includes +#include // intptr_t + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok. +#pragma clang diagnostic ignored "-Wformat-nonliteral" // warning: format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wenum-enum-conversion" // warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') +#pragma clang diagnostic ignored "-Wdeprecated-enum-enum-conversion"// warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" // warning: 'xxx' is an unsafe pointer used for buffer access +#elif defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#endif + +//----------------------------------------------------------------------------- +// [SECTION] Tables: Main code +//----------------------------------------------------------------------------- +// - TableFixFlags() [Internal] +// - TableFindByID() [Internal] +// - BeginTable() +// - BeginTableEx() [Internal] +// - TableBeginInitMemory() [Internal] +// - TableBeginApplyRequests() [Internal] +// - TableSetupColumnFlags() [Internal] +// - TableUpdateLayout() [Internal] +// - TableUpdateBorders() [Internal] +// - EndTable() +// - TableSetupColumn() +// - TableSetupScrollFreeze() +//----------------------------------------------------------------------------- + +// Configuration +static const int TABLE_DRAW_CHANNEL_BG0 = 0; +static const int TABLE_DRAW_CHANNEL_BG2_FROZEN = 1; +static const int TABLE_DRAW_CHANNEL_NOCLIP = 2; // When using ImGuiTableFlags_NoClip (this becomes the last visible channel) +static const float TABLE_BORDER_SIZE = 1.0f; // FIXME-TABLE: Currently hard-coded because of clipping assumptions with outer borders rendering. +static const float TABLE_RESIZE_SEPARATOR_HALF_THICKNESS = 4.0f; // Extend outside inner borders. +static const float TABLE_RESIZE_SEPARATOR_FEEDBACK_TIMER = 0.06f; // Delay/timer before making the hover feedback (color+cursor) visible because tables/columns tends to be more cramped. + +// Helper +inline ImGuiTableFlags TableFixFlags(ImGuiTableFlags flags, ImGuiWindow* outer_window) +{ + // Adjust flags: set default sizing policy + if ((flags & ImGuiTableFlags_SizingMask_) == 0) + flags |= ((flags & ImGuiTableFlags_ScrollX) || (outer_window->Flags & ImGuiWindowFlags_AlwaysAutoResize)) ? ImGuiTableFlags_SizingFixedFit : ImGuiTableFlags_SizingStretchSame; + + // Adjust flags: enable NoKeepColumnsVisible when using ImGuiTableFlags_SizingFixedSame + if ((flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedSame) + flags |= ImGuiTableFlags_NoKeepColumnsVisible; + + // Adjust flags: enforce borders when resizable + if (flags & ImGuiTableFlags_Resizable) + flags |= ImGuiTableFlags_BordersInnerV; + + // Adjust flags: disable NoHostExtendX/NoHostExtendY if we have any scrolling going on + if (flags & (ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY)) + flags &= ~(ImGuiTableFlags_NoHostExtendX | ImGuiTableFlags_NoHostExtendY); + + // Adjust flags: NoBordersInBodyUntilResize takes priority over NoBordersInBody + if (flags & ImGuiTableFlags_NoBordersInBodyUntilResize) + flags &= ~ImGuiTableFlags_NoBordersInBody; + + // Adjust flags: disable saved settings if there's nothing to save + if ((flags & (ImGuiTableFlags_Resizable | ImGuiTableFlags_Hideable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Sortable)) == 0) + flags |= ImGuiTableFlags_NoSavedSettings; + + // Inherit _NoSavedSettings from top-level window (child windows always have _NoSavedSettings set) + if (outer_window->RootWindow->Flags & ImGuiWindowFlags_NoSavedSettings) + flags |= ImGuiTableFlags_NoSavedSettings; + + return flags; +} + +ImGuiTable* ImGui::TableFindByID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + return g.Tables.GetByKey(id); +} + +// Read about "TABLE SIZING" at the top of this file. +bool ImGui::BeginTable(const char* str_id, int columns_count, ImGuiTableFlags flags, const ImVec2& outer_size, float inner_width) +{ + ImGuiID id = GetID(str_id); + return BeginTableEx(str_id, id, columns_count, flags, outer_size, inner_width); +} + +bool ImGui::BeginTableEx(const char* name, ImGuiID id, int columns_count, ImGuiTableFlags flags, const ImVec2& outer_size, float inner_width) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* outer_window = GetCurrentWindow(); + if (outer_window->SkipItems) // Consistent with other tables + beneficial side effect that assert on miscalling EndTable() will be more visible. + return false; + + // Sanity checks + IM_ASSERT(columns_count > 0 && columns_count < IMGUI_TABLE_MAX_COLUMNS); + if (flags & ImGuiTableFlags_ScrollX) + IM_ASSERT(inner_width >= 0.0f); + + // If an outer size is specified ahead we will be able to early out when not visible. Exact clipping criteria may evolve. + // FIXME: coarse clipping because access to table data causes two issues: + // - instance numbers varying/unstable. may not be a direct problem for users, but could make outside access broken or confusing, e.g. TestEngine. + // - can't implement support for ImGuiChildFlags_ResizeY as we need to somehow pull the height data from somewhere. this also needs stable instance numbers. + // The side-effects of accessing table data on coarse clip would be: + // - always reserving the pooled ImGuiTable data ahead for a fully clipped table (minor IMHO). Also the 'outer_window_is_measuring_size' criteria may already be defeating this in some situations. + // - always performing the GetOrAddByKey() O(log N) query in g.Tables.Map[]. + const bool use_child_window = (flags & (ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY)) != 0; + const ImVec2 avail_size = GetContentRegionAvail(); + const ImVec2 actual_outer_size = ImTrunc(CalcItemSize(outer_size, ImMax(avail_size.x, 1.0f), use_child_window ? ImMax(avail_size.y, 1.0f) : 0.0f)); + const ImRect outer_rect(outer_window->DC.CursorPos, outer_window->DC.CursorPos + actual_outer_size); + const bool outer_window_is_measuring_size = (outer_window->AutoFitFramesX > 0) || (outer_window->AutoFitFramesY > 0); // Doesn't apply to AlwaysAutoResize windows! + if (use_child_window && IsClippedEx(outer_rect, 0) && !outer_window_is_measuring_size) + { + ItemSize(outer_rect); + ItemAdd(outer_rect, id); + return false; + } + + // [DEBUG] Debug break requested by user + if (g.DebugBreakInTable == id) + IM_DEBUG_BREAK(); + + // Acquire storage for the table + ImGuiTable* table = g.Tables.GetOrAddByKey(id); + + // Acquire temporary buffers + const int table_idx = g.Tables.GetIndex(table); + if (++g.TablesTempDataStacked > g.TablesTempData.Size) + g.TablesTempData.resize(g.TablesTempDataStacked, ImGuiTableTempData()); + ImGuiTableTempData* temp_data = table->TempData = &g.TablesTempData[g.TablesTempDataStacked - 1]; + temp_data->TableIndex = table_idx; + table->DrawSplitter = &table->TempData->DrawSplitter; + table->DrawSplitter->Clear(); + + // Fix flags + table->IsDefaultSizingPolicy = (flags & ImGuiTableFlags_SizingMask_) == 0; + flags = TableFixFlags(flags, outer_window); + + // Initialize + const int previous_frame_active = table->LastFrameActive; + const int instance_no = (previous_frame_active != g.FrameCount) ? 0 : table->InstanceCurrent + 1; + const ImGuiTableFlags previous_flags = table->Flags; + table->ID = id; + table->Flags = flags; + table->LastFrameActive = g.FrameCount; + table->OuterWindow = table->InnerWindow = outer_window; + table->ColumnsCount = columns_count; + table->IsLayoutLocked = false; + table->InnerWidth = inner_width; + temp_data->UserOuterSize = outer_size; + + // Instance data (for instance 0, TableID == TableInstanceID) + ImGuiID instance_id; + table->InstanceCurrent = (ImS16)instance_no; + if (instance_no > 0) + { + IM_ASSERT(table->ColumnsCount == columns_count && "BeginTable(): Cannot change columns count mid-frame while preserving same ID"); + if (table->InstanceDataExtra.Size < instance_no) + table->InstanceDataExtra.push_back(ImGuiTableInstanceData()); + instance_id = GetIDWithSeed(instance_no, GetIDWithSeed("##Instances", NULL, id)); // Push "##Instances" followed by (int)instance_no in ID stack. + } + else + { + instance_id = id; + } + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + table_instance->TableInstanceID = instance_id; + + // When not using a child window, WorkRect.Max will grow as we append contents. + if (use_child_window) + { + // Ensure no vertical scrollbar appears if we only want horizontal one, to make flag consistent + // (we have no other way to disable vertical scrollbar of a window while keeping the horizontal one showing) + ImVec2 override_content_size(FLT_MAX, FLT_MAX); + if ((flags & ImGuiTableFlags_ScrollX) && !(flags & ImGuiTableFlags_ScrollY)) + override_content_size.y = FLT_MIN; + + // Ensure specified width (when not specified, Stretched columns will act as if the width == OuterWidth and + // never lead to any scrolling). We don't handle inner_width < 0.0f, we could potentially use it to right-align + // based on the right side of the child window work rect, which would require knowing ahead if we are going to + // have decoration taking horizontal spaces (typically a vertical scrollbar). + if ((flags & ImGuiTableFlags_ScrollX) && inner_width > 0.0f) + override_content_size.x = inner_width; + + if (override_content_size.x != FLT_MAX || override_content_size.y != FLT_MAX) + SetNextWindowContentSize(ImVec2(override_content_size.x != FLT_MAX ? override_content_size.x : 0.0f, override_content_size.y != FLT_MAX ? override_content_size.y : 0.0f)); + + // Reset scroll if we are reactivating it + if ((previous_flags & (ImGuiTableFlags_ScrollX | ImGuiTableFlags_ScrollY)) == 0) + SetNextWindowScroll(ImVec2(0.0f, 0.0f)); + + // Create scrolling region (without border and zero window padding) + ImGuiWindowFlags child_window_flags = (flags & ImGuiTableFlags_ScrollX) ? ImGuiWindowFlags_HorizontalScrollbar : ImGuiWindowFlags_None; + BeginChildEx(name, instance_id, outer_rect.GetSize(), ImGuiChildFlags_None, child_window_flags); + table->InnerWindow = g.CurrentWindow; + table->WorkRect = table->InnerWindow->WorkRect; + table->OuterRect = table->InnerWindow->Rect(); + table->InnerRect = table->InnerWindow->InnerRect; + IM_ASSERT(table->InnerWindow->WindowPadding.x == 0.0f && table->InnerWindow->WindowPadding.y == 0.0f && table->InnerWindow->WindowBorderSize == 0.0f); + + // Allow submitting when host is measuring + if (table->InnerWindow->SkipItems && outer_window_is_measuring_size) + table->InnerWindow->SkipItems = false; + + // When using multiple instances, ensure they have the same amount of horizontal decorations (aka vertical scrollbar) so stretched columns can be aligned) + if (instance_no == 0) + { + table->HasScrollbarYPrev = table->HasScrollbarYCurr; + table->HasScrollbarYCurr = false; + } + table->HasScrollbarYCurr |= table->InnerWindow->ScrollbarY; + } + else + { + // For non-scrolling tables, WorkRect == OuterRect == InnerRect. + // But at this point we do NOT have a correct value for .Max.y (unless a height has been explicitly passed in). It will only be updated in EndTable(). + table->WorkRect = table->OuterRect = table->InnerRect = outer_rect; + table->HasScrollbarYPrev = table->HasScrollbarYCurr = false; + } + + // Push a standardized ID for both child-using and not-child-using tables + PushOverrideID(id); + if (instance_no > 0) + PushOverrideID(instance_id); // FIXME: Somehow this is not resolved by stack-tool, even tho GetIDWithSeed() submitted the symbol. + + // Backup a copy of host window members we will modify + ImGuiWindow* inner_window = table->InnerWindow; + table->HostIndentX = inner_window->DC.Indent.x; + table->HostClipRect = inner_window->ClipRect; + table->HostSkipItems = inner_window->SkipItems; + temp_data->HostBackupWorkRect = inner_window->WorkRect; + temp_data->HostBackupParentWorkRect = inner_window->ParentWorkRect; + temp_data->HostBackupColumnsOffset = outer_window->DC.ColumnsOffset; + temp_data->HostBackupPrevLineSize = inner_window->DC.PrevLineSize; + temp_data->HostBackupCurrLineSize = inner_window->DC.CurrLineSize; + temp_data->HostBackupCursorMaxPos = inner_window->DC.CursorMaxPos; + temp_data->HostBackupItemWidth = outer_window->DC.ItemWidth; + temp_data->HostBackupItemWidthStackSize = outer_window->DC.ItemWidthStack.Size; + inner_window->DC.PrevLineSize = inner_window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); + + // Make borders not overlap our contents by offsetting HostClipRect (#6765, #7428, #3752) + // (we normally shouldn't alter HostClipRect as we rely on TableMergeDrawChannels() expanding non-clipped column toward the + // limits of that rectangle, in order for ImDrawListSplitter::Merge() to merge the draw commands. However since the overlap + // problem only affect scrolling tables in this case we can get away with doing it without extra cost). + if (inner_window != outer_window) + { + // FIXME: Because inner_window's Scrollbar doesn't know about border size, since it's not encoded in window->WindowBorderSize, + // it already overlaps it and doesn't need an extra offset. Ideally we should be able to pass custom border size with + // different x/y values to BeginChild(). + if (flags & ImGuiTableFlags_BordersOuterV) + { + table->HostClipRect.Min.x = ImMin(table->HostClipRect.Min.x + TABLE_BORDER_SIZE, table->HostClipRect.Max.x); + if (inner_window->DecoOuterSizeX2 == 0.0f) + table->HostClipRect.Max.x = ImMax(table->HostClipRect.Max.x - TABLE_BORDER_SIZE, table->HostClipRect.Min.x); + } + if (flags & ImGuiTableFlags_BordersOuterH) + { + table->HostClipRect.Min.y = ImMin(table->HostClipRect.Min.y + TABLE_BORDER_SIZE, table->HostClipRect.Max.y); + if (inner_window->DecoOuterSizeY2 == 0.0f) + table->HostClipRect.Max.y = ImMax(table->HostClipRect.Max.y - TABLE_BORDER_SIZE, table->HostClipRect.Min.y); + } + } + + // Padding and Spacing + // - None ........Content..... Pad .....Content........ + // - PadOuter | Pad ..Content..... Pad .....Content.. Pad | + // - PadInner ........Content.. Pad | Pad ..Content........ + // - PadOuter+PadInner | Pad ..Content.. Pad | Pad ..Content.. Pad | + const bool pad_outer_x = (flags & ImGuiTableFlags_NoPadOuterX) ? false : (flags & ImGuiTableFlags_PadOuterX) ? true : (flags & ImGuiTableFlags_BordersOuterV) != 0; + const bool pad_inner_x = (flags & ImGuiTableFlags_NoPadInnerX) ? false : true; + const float inner_spacing_for_border = (flags & ImGuiTableFlags_BordersInnerV) ? TABLE_BORDER_SIZE : 0.0f; + const float inner_spacing_explicit = (pad_inner_x && (flags & ImGuiTableFlags_BordersInnerV) == 0) ? g.Style.CellPadding.x : 0.0f; + const float inner_padding_explicit = (pad_inner_x && (flags & ImGuiTableFlags_BordersInnerV) != 0) ? g.Style.CellPadding.x : 0.0f; + table->CellSpacingX1 = inner_spacing_explicit + inner_spacing_for_border; + table->CellSpacingX2 = inner_spacing_explicit; + table->CellPaddingX = inner_padding_explicit; + + const float outer_padding_for_border = (flags & ImGuiTableFlags_BordersOuterV) ? TABLE_BORDER_SIZE : 0.0f; + const float outer_padding_explicit = pad_outer_x ? g.Style.CellPadding.x : 0.0f; + table->OuterPaddingX = (outer_padding_for_border + outer_padding_explicit) - table->CellPaddingX; + + table->CurrentColumn = -1; + table->CurrentRow = -1; + table->RowBgColorCounter = 0; + table->LastRowFlags = ImGuiTableRowFlags_None; + table->InnerClipRect = (inner_window == outer_window) ? table->WorkRect : inner_window->ClipRect; + table->InnerClipRect.ClipWith(table->WorkRect); // We need this to honor inner_width + table->InnerClipRect.ClipWithFull(table->HostClipRect); + table->InnerClipRect.Max.y = (flags & ImGuiTableFlags_NoHostExtendY) ? ImMin(table->InnerClipRect.Max.y, inner_window->WorkRect.Max.y) : table->HostClipRect.Max.y; + + table->RowPosY1 = table->RowPosY2 = table->WorkRect.Min.y; // This is needed somehow + table->RowTextBaseline = 0.0f; // This will be cleared again by TableBeginRow() + table->RowCellPaddingY = 0.0f; + table->FreezeRowsRequest = table->FreezeRowsCount = 0; // This will be setup by TableSetupScrollFreeze(), if any + table->FreezeColumnsRequest = table->FreezeColumnsCount = 0; + table->IsUnfrozenRows = true; + table->DeclColumnsCount = table->AngledHeadersCount = 0; + if (previous_frame_active + 1 < g.FrameCount) + table->IsActiveIdInTable = false; + table->AngledHeadersHeight = 0.0f; + temp_data->AngledHeadersExtraWidth = 0.0f; + + // Using opaque colors facilitate overlapping lines of the grid, otherwise we'd need to improve TableDrawBorders() + table->BorderColorStrong = GetColorU32(ImGuiCol_TableBorderStrong); + table->BorderColorLight = GetColorU32(ImGuiCol_TableBorderLight); + + // Make table current + g.CurrentTable = table; + outer_window->DC.NavIsScrollPushableX = false; // Shortcut for NavUpdateCurrentWindowIsScrollPushableX(); + outer_window->DC.CurrentTableIdx = table_idx; + if (inner_window != outer_window) // So EndChild() within the inner window can restore the table properly. + inner_window->DC.CurrentTableIdx = table_idx; + + if ((previous_flags & ImGuiTableFlags_Reorderable) && (flags & ImGuiTableFlags_Reorderable) == 0) + table->IsResetDisplayOrderRequest = true; + + // Mark as used to avoid GC + if (table_idx >= g.TablesLastTimeActive.Size) + g.TablesLastTimeActive.resize(table_idx + 1, -1.0f); + g.TablesLastTimeActive[table_idx] = (float)g.Time; + temp_data->LastTimeActive = (float)g.Time; + table->MemoryCompacted = false; + + // Setup memory buffer (clear data if columns count changed) + ImGuiTableColumn* old_columns_to_preserve = NULL; + void* old_columns_raw_data = NULL; + const int old_columns_count = table->Columns.size(); + if (old_columns_count != 0 && old_columns_count != columns_count) + { + // Attempt to preserve width on column count change (#4046) + old_columns_to_preserve = table->Columns.Data; + old_columns_raw_data = table->RawData; + table->RawData = NULL; + } + if (table->RawData == NULL) + { + TableBeginInitMemory(table, columns_count); + table->IsInitializing = table->IsSettingsRequestLoad = true; + } + if (table->IsResetAllRequest) + TableResetSettings(table); + if (table->IsInitializing) + { + // Initialize + table->SettingsOffset = -1; + table->IsSortSpecsDirty = true; + table->InstanceInteracted = -1; + table->ContextPopupColumn = -1; + table->ReorderColumn = table->ResizedColumn = table->LastResizedColumn = -1; + table->AutoFitSingleColumn = -1; + table->HoveredColumnBody = table->HoveredColumnBorder = -1; + for (int n = 0; n < columns_count; n++) + { + ImGuiTableColumn* column = &table->Columns[n]; + if (old_columns_to_preserve && n < old_columns_count) + { + // FIXME: We don't attempt to preserve column order in this path. + *column = old_columns_to_preserve[n]; + } + else + { + float width_auto = column->WidthAuto; + *column = ImGuiTableColumn(); + column->WidthAuto = width_auto; + column->IsPreserveWidthAuto = true; // Preserve WidthAuto when reinitializing a live table: not technically necessary but remove a visible flicker + column->IsEnabled = column->IsUserEnabled = column->IsUserEnabledNextFrame = true; + } + column->DisplayOrder = table->DisplayOrderToIndex[n] = (ImGuiTableColumnIdx)n; + } + } + if (old_columns_raw_data) + IM_FREE(old_columns_raw_data); + + // Load settings + if (table->IsSettingsRequestLoad) + TableLoadSettings(table); + + // Handle DPI/font resize + // This is designed to facilitate DPI changes with the assumption that e.g. style.CellPadding has been scaled as well. + // It will also react to changing fonts with mixed results. It doesn't need to be perfect but merely provide a decent transition. + // FIXME-DPI: Provide consistent standards for reference size. Perhaps using g.CurrentDpiScale would be more self explanatory. + // This is will lead us to non-rounded WidthRequest in columns, which should work but is a poorly tested path. + const float new_ref_scale_unit = g.FontSize; // g.Font->GetCharAdvance('A') ? + if (table->RefScale != 0.0f && table->RefScale != new_ref_scale_unit) + { + const float scale_factor = new_ref_scale_unit / table->RefScale; + //IMGUI_DEBUG_PRINT("[table] %08X RefScaleUnit %.3f -> %.3f, scaling width by %.3f\n", table->ID, table->RefScaleUnit, new_ref_scale_unit, scale_factor); + for (int n = 0; n < columns_count; n++) + table->Columns[n].WidthRequest = table->Columns[n].WidthRequest * scale_factor; + } + table->RefScale = new_ref_scale_unit; + + // Disable output until user calls TableNextRow() or TableNextColumn() leading to the TableUpdateLayout() call.. + // This is not strictly necessary but will reduce cases were "out of table" output will be misleading to the user. + // Because we cannot safely assert in EndTable() when no rows have been created, this seems like our best option. + inner_window->SkipItems = true; + + // Clear names + // At this point the ->NameOffset field of each column will be invalid until TableUpdateLayout() or the first call to TableSetupColumn() + if (table->ColumnsNames.Buf.Size > 0) + table->ColumnsNames.Buf.resize(0); + + // Apply queued resizing/reordering/hiding requests + TableBeginApplyRequests(table); + + return true; +} + +// For reference, the average total _allocation count_ for a table is: +// + 0 (for ImGuiTable instance, we are pooling allocations in g.Tables[]) +// + 1 (for table->RawData allocated below) +// + 1 (for table->ColumnsNames, if names are used) +// Shared allocations for the maximum number of simultaneously nested tables (generally a very small number) +// + 1 (for table->Splitter._Channels) +// + 2 * active_channels_count (for ImDrawCmd and ImDrawIdx buffers inside channels) +// Where active_channels_count is variable but often == columns_count or == columns_count + 1, see TableSetupDrawChannels() for details. +// Unused channels don't perform their +2 allocations. +void ImGui::TableBeginInitMemory(ImGuiTable* table, int columns_count) +{ + // Allocate single buffer for our arrays + const int columns_bit_array_size = (int)ImBitArrayGetStorageSizeInBytes(columns_count); + ImSpanAllocator<6> span_allocator; + span_allocator.Reserve(0, columns_count * sizeof(ImGuiTableColumn)); + span_allocator.Reserve(1, columns_count * sizeof(ImGuiTableColumnIdx)); + span_allocator.Reserve(2, columns_count * sizeof(ImGuiTableCellData), 4); + for (int n = 3; n < 6; n++) + span_allocator.Reserve(n, columns_bit_array_size); + table->RawData = IM_ALLOC(span_allocator.GetArenaSizeInBytes()); + memset(table->RawData, 0, span_allocator.GetArenaSizeInBytes()); + span_allocator.SetArenaBasePtr(table->RawData); + span_allocator.GetSpan(0, &table->Columns); + span_allocator.GetSpan(1, &table->DisplayOrderToIndex); + span_allocator.GetSpan(2, &table->RowCellData); + table->EnabledMaskByDisplayOrder = (ImU32*)span_allocator.GetSpanPtrBegin(3); + table->EnabledMaskByIndex = (ImU32*)span_allocator.GetSpanPtrBegin(4); + table->VisibleMaskByIndex = (ImU32*)span_allocator.GetSpanPtrBegin(5); +} + +// Apply queued resizing/reordering/hiding requests +void ImGui::TableBeginApplyRequests(ImGuiTable* table) +{ + // Handle resizing request + // (We process this in the TableBegin() of the first instance of each table) + // FIXME-TABLE: Contains columns if our work area doesn't allow for scrolling? + if (table->InstanceCurrent == 0) + { + if (table->ResizedColumn != -1 && table->ResizedColumnNextWidth != FLT_MAX) + TableSetColumnWidth(table->ResizedColumn, table->ResizedColumnNextWidth); + table->LastResizedColumn = table->ResizedColumn; + table->ResizedColumnNextWidth = FLT_MAX; + table->ResizedColumn = -1; + + // Process auto-fit for single column, which is a special case for stretch columns and fixed columns with FixedSame policy. + // FIXME-TABLE: Would be nice to redistribute available stretch space accordingly to other weights, instead of giving it all to siblings. + if (table->AutoFitSingleColumn != -1) + { + TableSetColumnWidth(table->AutoFitSingleColumn, table->Columns[table->AutoFitSingleColumn].WidthAuto); + table->AutoFitSingleColumn = -1; + } + } + + // Handle reordering request + // Note: we don't clear ReorderColumn after handling the request. + if (table->InstanceCurrent == 0) + { + if (table->HeldHeaderColumn == -1 && table->ReorderColumn != -1) + table->ReorderColumn = -1; + table->HeldHeaderColumn = -1; + if (table->ReorderColumn != -1 && table->ReorderColumnDir != 0) + { + // We need to handle reordering across hidden columns. + // In the configuration below, moving C to the right of E will lead to: + // ... C [D] E ---> ... [D] E C (Column name/index) + // ... 2 3 4 ... 2 3 4 (Display order) + const int reorder_dir = table->ReorderColumnDir; + IM_ASSERT(reorder_dir == -1 || reorder_dir == +1); + IM_ASSERT(table->Flags & ImGuiTableFlags_Reorderable); + ImGuiTableColumn* src_column = &table->Columns[table->ReorderColumn]; + ImGuiTableColumn* dst_column = &table->Columns[(reorder_dir == -1) ? src_column->PrevEnabledColumn : src_column->NextEnabledColumn]; + IM_UNUSED(dst_column); + const int src_order = src_column->DisplayOrder; + const int dst_order = dst_column->DisplayOrder; + src_column->DisplayOrder = (ImGuiTableColumnIdx)dst_order; + for (int order_n = src_order + reorder_dir; order_n != dst_order + reorder_dir; order_n += reorder_dir) + table->Columns[table->DisplayOrderToIndex[order_n]].DisplayOrder -= (ImGuiTableColumnIdx)reorder_dir; + IM_ASSERT(dst_column->DisplayOrder == dst_order - reorder_dir); + + // Display order is stored in both columns->IndexDisplayOrder and table->DisplayOrder[]. Rebuild later from the former. + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->DisplayOrderToIndex[table->Columns[column_n].DisplayOrder] = (ImGuiTableColumnIdx)column_n; + table->ReorderColumnDir = 0; + table->IsSettingsDirty = true; + } + } + + // Handle display order reset request + if (table->IsResetDisplayOrderRequest) + { + for (int n = 0; n < table->ColumnsCount; n++) + table->DisplayOrderToIndex[n] = table->Columns[n].DisplayOrder = (ImGuiTableColumnIdx)n; + table->IsResetDisplayOrderRequest = false; + table->IsSettingsDirty = true; + } +} + +// Adjust flags: default width mode + stretch columns are not allowed when auto extending +static void TableSetupColumnFlags(ImGuiTable* table, ImGuiTableColumn* column, ImGuiTableColumnFlags flags_in) +{ + ImGuiTableColumnFlags flags = flags_in; + + // Sizing Policy + if ((flags & ImGuiTableColumnFlags_WidthMask_) == 0) + { + const ImGuiTableFlags table_sizing_policy = (table->Flags & ImGuiTableFlags_SizingMask_); + if (table_sizing_policy == ImGuiTableFlags_SizingFixedFit || table_sizing_policy == ImGuiTableFlags_SizingFixedSame) + flags |= ImGuiTableColumnFlags_WidthFixed; + else + flags |= ImGuiTableColumnFlags_WidthStretch; + } + else + { + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiTableColumnFlags_WidthMask_)); // Check that only 1 of each set is used. + } + + // Resize + if ((table->Flags & ImGuiTableFlags_Resizable) == 0) + flags |= ImGuiTableColumnFlags_NoResize; + + // Sorting + if ((flags & ImGuiTableColumnFlags_NoSortAscending) && (flags & ImGuiTableColumnFlags_NoSortDescending)) + flags |= ImGuiTableColumnFlags_NoSort; + + // Indentation + if ((flags & ImGuiTableColumnFlags_IndentMask_) == 0) + flags |= (table->Columns.index_from_ptr(column) == 0) ? ImGuiTableColumnFlags_IndentEnable : ImGuiTableColumnFlags_IndentDisable; + + // Alignment + //if ((flags & ImGuiTableColumnFlags_AlignMask_) == 0) + // flags |= ImGuiTableColumnFlags_AlignCenter; + //IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiTableColumnFlags_AlignMask_)); // Check that only 1 of each set is used. + + // Preserve status flags + column->Flags = flags | (column->Flags & ImGuiTableColumnFlags_StatusMask_); + + // Build an ordered list of available sort directions + column->SortDirectionsAvailCount = column->SortDirectionsAvailMask = column->SortDirectionsAvailList = 0; + if (table->Flags & ImGuiTableFlags_Sortable) + { + int count = 0, mask = 0, list = 0; + if ((flags & ImGuiTableColumnFlags_PreferSortAscending) != 0 && (flags & ImGuiTableColumnFlags_NoSortAscending) == 0) { mask |= 1 << ImGuiSortDirection_Ascending; list |= ImGuiSortDirection_Ascending << (count << 1); count++; } + if ((flags & ImGuiTableColumnFlags_PreferSortDescending) != 0 && (flags & ImGuiTableColumnFlags_NoSortDescending) == 0) { mask |= 1 << ImGuiSortDirection_Descending; list |= ImGuiSortDirection_Descending << (count << 1); count++; } + if ((flags & ImGuiTableColumnFlags_PreferSortAscending) == 0 && (flags & ImGuiTableColumnFlags_NoSortAscending) == 0) { mask |= 1 << ImGuiSortDirection_Ascending; list |= ImGuiSortDirection_Ascending << (count << 1); count++; } + if ((flags & ImGuiTableColumnFlags_PreferSortDescending) == 0 && (flags & ImGuiTableColumnFlags_NoSortDescending) == 0) { mask |= 1 << ImGuiSortDirection_Descending; list |= ImGuiSortDirection_Descending << (count << 1); count++; } + if ((table->Flags & ImGuiTableFlags_SortTristate) || count == 0) { mask |= 1 << ImGuiSortDirection_None; count++; } + column->SortDirectionsAvailList = (ImU8)list; + column->SortDirectionsAvailMask = (ImU8)mask; + column->SortDirectionsAvailCount = (ImU8)count; + ImGui::TableFixColumnSortDirection(table, column); + } +} + +// Layout columns for the frame. This is in essence the followup to BeginTable() and this is our largest function. +// Runs on the first call to TableNextRow(), to give a chance for TableSetupColumn() and other TableSetupXXXXX() functions to be called first. +// FIXME-TABLE: Our width (and therefore our WorkRect) will be minimal in the first frame for _WidthAuto columns. +// Increase feedback side-effect with widgets relying on WorkRect.Max.x... Maybe provide a default distribution for _WidthAuto columns? +void ImGui::TableUpdateLayout(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(table->IsLayoutLocked == false); + + const ImGuiTableFlags table_sizing_policy = (table->Flags & ImGuiTableFlags_SizingMask_); + table->IsDefaultDisplayOrder = true; + table->ColumnsEnabledCount = 0; + ImBitArrayClearAllBits(table->EnabledMaskByIndex, table->ColumnsCount); + ImBitArrayClearAllBits(table->EnabledMaskByDisplayOrder, table->ColumnsCount); + table->LeftMostEnabledColumn = -1; + table->MinColumnWidth = ImMax(1.0f, g.Style.FramePadding.x * 1.0f); // g.Style.ColumnsMinSpacing; // FIXME-TABLE + + // [Part 1] Apply/lock Enabled and Order states. Calculate auto/ideal width for columns. Count fixed/stretch columns. + // Process columns in their visible orders as we are building the Prev/Next indices. + int count_fixed = 0; // Number of columns that have fixed sizing policies + int count_stretch = 0; // Number of columns that have stretch sizing policies + int prev_visible_column_idx = -1; + bool has_auto_fit_request = false; + bool has_resizable = false; + float stretch_sum_width_auto = 0.0f; + float fixed_max_width_auto = 0.0f; + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + const int column_n = table->DisplayOrderToIndex[order_n]; + if (column_n != order_n) + table->IsDefaultDisplayOrder = false; + ImGuiTableColumn* column = &table->Columns[column_n]; + + // Clear column setup if not submitted by user. Currently we make it mandatory to call TableSetupColumn() every frame. + // It would easily work without but we're not ready to guarantee it since e.g. names need resubmission anyway. + // We take a slight shortcut but in theory we could be calling TableSetupColumn() here with dummy values, it should yield the same effect. + if (table->DeclColumnsCount <= column_n) + { + TableSetupColumnFlags(table, column, ImGuiTableColumnFlags_None); + column->NameOffset = -1; + column->UserID = 0; + column->InitStretchWeightOrWidth = -1.0f; + } + + // Update Enabled state, mark settings and sort specs dirty + if (!(table->Flags & ImGuiTableFlags_Hideable) || (column->Flags & ImGuiTableColumnFlags_NoHide)) + column->IsUserEnabledNextFrame = true; + if (column->IsUserEnabled != column->IsUserEnabledNextFrame) + { + column->IsUserEnabled = column->IsUserEnabledNextFrame; + table->IsSettingsDirty = true; + } + column->IsEnabled = column->IsUserEnabled && (column->Flags & ImGuiTableColumnFlags_Disabled) == 0; + + if (column->SortOrder != -1 && !column->IsEnabled) + table->IsSortSpecsDirty = true; + if (column->SortOrder > 0 && !(table->Flags & ImGuiTableFlags_SortMulti)) + table->IsSortSpecsDirty = true; + + // Auto-fit unsized columns + const bool start_auto_fit = (column->Flags & ImGuiTableColumnFlags_WidthFixed) ? (column->WidthRequest < 0.0f) : (column->StretchWeight < 0.0f); + if (start_auto_fit) + column->AutoFitQueue = column->CannotSkipItemsQueue = (1 << 3) - 1; // Fit for three frames + + if (!column->IsEnabled) + { + column->IndexWithinEnabledSet = -1; + continue; + } + + // Mark as enabled and link to previous/next enabled column + column->PrevEnabledColumn = (ImGuiTableColumnIdx)prev_visible_column_idx; + column->NextEnabledColumn = -1; + if (prev_visible_column_idx != -1) + table->Columns[prev_visible_column_idx].NextEnabledColumn = (ImGuiTableColumnIdx)column_n; + else + table->LeftMostEnabledColumn = (ImGuiTableColumnIdx)column_n; + column->IndexWithinEnabledSet = table->ColumnsEnabledCount++; + ImBitArraySetBit(table->EnabledMaskByIndex, column_n); + ImBitArraySetBit(table->EnabledMaskByDisplayOrder, column->DisplayOrder); + prev_visible_column_idx = column_n; + IM_ASSERT(column->IndexWithinEnabledSet <= column->DisplayOrder); + + // Calculate ideal/auto column width (that's the width required for all contents to be visible without clipping) + // Combine width from regular rows + width from headers unless requested not to. + if (!column->IsPreserveWidthAuto && table->InstanceCurrent == 0) + column->WidthAuto = TableGetColumnWidthAuto(table, column); + + // Non-resizable columns keep their requested width (apply user value regardless of IsPreserveWidthAuto) + const bool column_is_resizable = (column->Flags & ImGuiTableColumnFlags_NoResize) == 0; + if (column_is_resizable) + has_resizable = true; + if ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && column->InitStretchWeightOrWidth > 0.0f && !column_is_resizable) + column->WidthAuto = column->InitStretchWeightOrWidth; + + if (column->AutoFitQueue != 0x00) + has_auto_fit_request = true; + if (column->Flags & ImGuiTableColumnFlags_WidthStretch) + { + stretch_sum_width_auto += column->WidthAuto; + count_stretch++; + } + else + { + fixed_max_width_auto = ImMax(fixed_max_width_auto, column->WidthAuto); + count_fixed++; + } + } + if ((table->Flags & ImGuiTableFlags_Sortable) && table->SortSpecsCount == 0 && !(table->Flags & ImGuiTableFlags_SortTristate)) + table->IsSortSpecsDirty = true; + table->RightMostEnabledColumn = (ImGuiTableColumnIdx)prev_visible_column_idx; + IM_ASSERT(table->LeftMostEnabledColumn >= 0 && table->RightMostEnabledColumn >= 0); + + // [Part 2] Disable child window clipping while fitting columns. This is not strictly necessary but makes it possible to avoid + // the column fitting having to wait until the first visible frame of the child container (may or not be a good thing). Also see #6510. + // FIXME-TABLE: for always auto-resizing columns may not want to do that all the time. + if (has_auto_fit_request && table->OuterWindow != table->InnerWindow) + table->InnerWindow->SkipItems = false; + if (has_auto_fit_request) + table->IsSettingsDirty = true; + + // [Part 3] Fix column flags and record a few extra information. + float sum_width_requests = 0.0f; // Sum of all width for fixed and auto-resize columns, excluding width contributed by Stretch columns but including spacing/padding. + float stretch_sum_weights = 0.0f; // Sum of all weights for stretch columns. + table->LeftMostStretchedColumn = table->RightMostStretchedColumn = -1; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + continue; + ImGuiTableColumn* column = &table->Columns[column_n]; + + const bool column_is_resizable = (column->Flags & ImGuiTableColumnFlags_NoResize) == 0; + if (column->Flags & ImGuiTableColumnFlags_WidthFixed) + { + // Apply same widths policy + float width_auto = column->WidthAuto; + if (table_sizing_policy == ImGuiTableFlags_SizingFixedSame && (column->AutoFitQueue != 0x00 || !column_is_resizable)) + width_auto = fixed_max_width_auto; + + // Apply automatic width + // Latch initial size for fixed columns and update it constantly for auto-resizing column (unless clipped!) + if (column->AutoFitQueue != 0x00) + column->WidthRequest = width_auto; + else if ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && !column_is_resizable && column->IsRequestOutput) + column->WidthRequest = width_auto; + + // FIXME-TABLE: Increase minimum size during init frame to avoid biasing auto-fitting widgets + // (e.g. TextWrapped) too much. Otherwise what tends to happen is that TextWrapped would output a very + // large height (= first frame scrollbar display very off + clipper would skip lots of items). + // This is merely making the side-effect less extreme, but doesn't properly fixes it. + // FIXME: Move this to ->WidthGiven to avoid temporary lossyless? + // FIXME: This break IsPreserveWidthAuto from not flickering if the stored WidthAuto was smaller. + if (column->AutoFitQueue > 0x01 && table->IsInitializing && !column->IsPreserveWidthAuto) + column->WidthRequest = ImMax(column->WidthRequest, table->MinColumnWidth * 4.0f); // FIXME-TABLE: Another constant/scale? + sum_width_requests += column->WidthRequest; + } + else + { + // Initialize stretch weight + if (column->AutoFitQueue != 0x00 || column->StretchWeight < 0.0f || !column_is_resizable) + { + if (column->InitStretchWeightOrWidth > 0.0f) + column->StretchWeight = column->InitStretchWeightOrWidth; + else if (table_sizing_policy == ImGuiTableFlags_SizingStretchProp) + column->StretchWeight = (column->WidthAuto / stretch_sum_width_auto) * count_stretch; + else + column->StretchWeight = 1.0f; + } + + stretch_sum_weights += column->StretchWeight; + if (table->LeftMostStretchedColumn == -1 || table->Columns[table->LeftMostStretchedColumn].DisplayOrder > column->DisplayOrder) + table->LeftMostStretchedColumn = (ImGuiTableColumnIdx)column_n; + if (table->RightMostStretchedColumn == -1 || table->Columns[table->RightMostStretchedColumn].DisplayOrder < column->DisplayOrder) + table->RightMostStretchedColumn = (ImGuiTableColumnIdx)column_n; + } + column->IsPreserveWidthAuto = false; + sum_width_requests += table->CellPaddingX * 2.0f; + } + table->ColumnsEnabledFixedCount = (ImGuiTableColumnIdx)count_fixed; + table->ColumnsStretchSumWeights = stretch_sum_weights; + + // [Part 4] Apply final widths based on requested widths + const ImRect work_rect = table->WorkRect; + const float width_spacings = (table->OuterPaddingX * 2.0f) + (table->CellSpacingX1 + table->CellSpacingX2) * (table->ColumnsEnabledCount - 1); + const float width_removed = (table->HasScrollbarYPrev && !table->InnerWindow->ScrollbarY) ? g.Style.ScrollbarSize : 0.0f; // To synchronize decoration width of synched tables with mismatching scrollbar state (#5920) + const float width_avail = ImMax(1.0f, (((table->Flags & ImGuiTableFlags_ScrollX) && table->InnerWidth == 0.0f) ? table->InnerClipRect.GetWidth() : work_rect.GetWidth()) - width_removed); + const float width_avail_for_stretched_columns = width_avail - width_spacings - sum_width_requests; + float width_remaining_for_stretched_columns = width_avail_for_stretched_columns; + table->ColumnsGivenWidth = width_spacings + (table->CellPaddingX * 2.0f) * table->ColumnsEnabledCount; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + continue; + ImGuiTableColumn* column = &table->Columns[column_n]; + + // Allocate width for stretched/weighted columns (StretchWeight gets converted into WidthRequest) + if (column->Flags & ImGuiTableColumnFlags_WidthStretch) + { + float weight_ratio = column->StretchWeight / stretch_sum_weights; + column->WidthRequest = IM_TRUNC(ImMax(width_avail_for_stretched_columns * weight_ratio, table->MinColumnWidth) + 0.01f); + width_remaining_for_stretched_columns -= column->WidthRequest; + } + + // [Resize Rule 1] The right-most Visible column is not resizable if there is at least one Stretch column + // See additional comments in TableSetColumnWidth(). + if (column->NextEnabledColumn == -1 && table->LeftMostStretchedColumn != -1) + column->Flags |= ImGuiTableColumnFlags_NoDirectResize_; + + // Assign final width, record width in case we will need to shrink + column->WidthGiven = ImTrunc(ImMax(column->WidthRequest, table->MinColumnWidth)); + table->ColumnsGivenWidth += column->WidthGiven; + } + + // [Part 5] Redistribute stretch remainder width due to rounding (remainder width is < 1.0f * number of Stretch column). + // Using right-to-left distribution (more likely to match resizing cursor). + if (width_remaining_for_stretched_columns >= 1.0f && !(table->Flags & ImGuiTableFlags_PreciseWidths)) + for (int order_n = table->ColumnsCount - 1; stretch_sum_weights > 0.0f && width_remaining_for_stretched_columns >= 1.0f && order_n >= 0; order_n--) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + continue; + ImGuiTableColumn* column = &table->Columns[table->DisplayOrderToIndex[order_n]]; + if (!(column->Flags & ImGuiTableColumnFlags_WidthStretch)) + continue; + column->WidthRequest += 1.0f; + column->WidthGiven += 1.0f; + width_remaining_for_stretched_columns -= 1.0f; + } + + // Determine if table is hovered which will be used to flag columns as hovered. + // - In principle we'd like to use the equivalent of IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem), + // but because our item is partially submitted at this point we use ItemHoverable() and a workaround (temporarily + // clear ActiveId, which is equivalent to the change provided by _AllowWhenBLockedByActiveItem). + // - This allows columns to be marked as hovered when e.g. clicking a button inside the column, or using drag and drop. + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + table_instance->HoveredRowLast = table_instance->HoveredRowNext; + table_instance->HoveredRowNext = -1; + table->HoveredColumnBody = table->HoveredColumnBorder = -1; + const ImRect mouse_hit_rect(table->OuterRect.Min.x, table->OuterRect.Min.y, table->OuterRect.Max.x, ImMax(table->OuterRect.Max.y, table->OuterRect.Min.y + table_instance->LastOuterHeight)); + const ImGuiID backup_active_id = g.ActiveId; + g.ActiveId = 0; + const bool is_hovering_table = ItemHoverable(mouse_hit_rect, 0, ImGuiItemFlags_None); + g.ActiveId = backup_active_id; + + // Determine skewed MousePos.x to support angled headers. + float mouse_skewed_x = g.IO.MousePos.x; + if (table->AngledHeadersHeight > 0.0f) + if (g.IO.MousePos.y >= table->OuterRect.Min.y && g.IO.MousePos.y <= table->OuterRect.Min.y + table->AngledHeadersHeight) + mouse_skewed_x += ImTrunc((table->OuterRect.Min.y + table->AngledHeadersHeight - g.IO.MousePos.y) * table->AngledHeadersSlope); + + // [Part 6] Setup final position, offset, skip/clip states and clipping rectangles, detect hovered column + // Process columns in their visible orders as we are comparing the visible order and adjusting host_clip_rect while looping. + int visible_n = 0; + bool has_at_least_one_column_requesting_output = false; + bool offset_x_frozen = (table->FreezeColumnsCount > 0); + float offset_x = ((table->FreezeColumnsCount > 0) ? table->OuterRect.Min.x : work_rect.Min.x) + table->OuterPaddingX - table->CellSpacingX1; + ImRect host_clip_rect = table->InnerClipRect; + //host_clip_rect.Max.x += table->CellPaddingX + table->CellSpacingX2; + ImBitArrayClearAllBits(table->VisibleMaskByIndex, table->ColumnsCount); + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + const int column_n = table->DisplayOrderToIndex[order_n]; + ImGuiTableColumn* column = &table->Columns[column_n]; + + column->NavLayerCurrent = (ImS8)(table->FreezeRowsCount > 0 ? ImGuiNavLayer_Menu : ImGuiNavLayer_Main); // Use Count NOT request so Header line changes layer when frozen + + if (offset_x_frozen && table->FreezeColumnsCount == visible_n) + { + offset_x += work_rect.Min.x - table->OuterRect.Min.x; + offset_x_frozen = false; + } + + // Clear status flags + column->Flags &= ~ImGuiTableColumnFlags_StatusMask_; + + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + { + // Hidden column: clear a few fields and we are done with it for the remainder of the function. + // We set a zero-width clip rect but set Min.y/Max.y properly to not interfere with the clipper. + column->MinX = column->MaxX = column->WorkMinX = column->ClipRect.Min.x = column->ClipRect.Max.x = offset_x; + column->WidthGiven = 0.0f; + column->ClipRect.Min.y = work_rect.Min.y; + column->ClipRect.Max.y = FLT_MAX; + column->ClipRect.ClipWithFull(host_clip_rect); + column->IsVisibleX = column->IsVisibleY = column->IsRequestOutput = false; + column->IsSkipItems = true; + column->ItemWidth = 1.0f; + continue; + } + + // Lock start position + column->MinX = offset_x; + + // Lock width based on start position and minimum/maximum width for this position + column->WidthMax = TableCalcMaxColumnWidth(table, column_n); + column->WidthGiven = ImMin(column->WidthGiven, column->WidthMax); + column->WidthGiven = ImMax(column->WidthGiven, ImMin(column->WidthRequest, table->MinColumnWidth)); + column->MaxX = offset_x + column->WidthGiven + table->CellSpacingX1 + table->CellSpacingX2 + table->CellPaddingX * 2.0f; + + // Lock other positions + // - ClipRect.Min.x: Because merging draw commands doesn't compare min boundaries, we make ClipRect.Min.x match left bounds to be consistent regardless of merging. + // - ClipRect.Max.x: using WorkMaxX instead of MaxX (aka including padding) makes things more consistent when resizing down, tho slightly detrimental to visibility in very-small column. + // - ClipRect.Max.x: using MaxX makes it easier for header to receive hover highlight with no discontinuity and display sorting arrow. + // - FIXME-TABLE: We want equal width columns to have equal (ClipRect.Max.x - WorkMinX) width, which means ClipRect.max.x cannot stray off host_clip_rect.Max.x else right-most column may appear shorter. + const float previous_instance_work_min_x = column->WorkMinX; + column->WorkMinX = column->MinX + table->CellPaddingX + table->CellSpacingX1; + column->WorkMaxX = column->MaxX - table->CellPaddingX - table->CellSpacingX2; // Expected max + column->ItemWidth = ImTrunc(column->WidthGiven * 0.65f); + column->ClipRect.Min.x = column->MinX; + column->ClipRect.Min.y = work_rect.Min.y; + column->ClipRect.Max.x = column->MaxX; //column->WorkMaxX; + column->ClipRect.Max.y = FLT_MAX; + column->ClipRect.ClipWithFull(host_clip_rect); + + // Mark column as Clipped (not in sight) + // Note that scrolling tables (where inner_window != outer_window) handle Y clipped earlier in BeginTable() so IsVisibleY really only applies to non-scrolling tables. + // FIXME-TABLE: Because InnerClipRect.Max.y is conservatively ==outer_window->ClipRect.Max.y, we never can mark columns _Above_ the scroll line as not IsVisibleY. + // Taking advantage of LastOuterHeight would yield good results there... + // FIXME-TABLE: Y clipping is disabled because it effectively means not submitting will reduce contents width which is fed to outer_window->DC.CursorMaxPos.x, + // and this may be used (e.g. typically by outer_window using AlwaysAutoResize or outer_window's horizontal scrollbar, but could be something else). + // Possible solution to preserve last known content width for clipped column. Test 'table_reported_size' fails when enabling Y clipping and window is resized small. + column->IsVisibleX = (column->ClipRect.Max.x > column->ClipRect.Min.x); + column->IsVisibleY = true; // (column->ClipRect.Max.y > column->ClipRect.Min.y); + const bool is_visible = column->IsVisibleX; //&& column->IsVisibleY; + if (is_visible) + ImBitArraySetBit(table->VisibleMaskByIndex, column_n); + + // Mark column as requesting output from user. Note that fixed + non-resizable sets are auto-fitting at all times and therefore always request output. + column->IsRequestOutput = is_visible || column->AutoFitQueue != 0 || column->CannotSkipItemsQueue != 0; + + // Mark column as SkipItems (ignoring all items/layout) + // (table->HostSkipItems is a copy of inner_window->SkipItems before we cleared it above in Part 2) + column->IsSkipItems = !column->IsEnabled || table->HostSkipItems; + if (column->IsSkipItems) + IM_ASSERT(!is_visible); + if (column->IsRequestOutput && !column->IsSkipItems) + has_at_least_one_column_requesting_output = true; + + // Update status flags + column->Flags |= ImGuiTableColumnFlags_IsEnabled; + if (is_visible) + column->Flags |= ImGuiTableColumnFlags_IsVisible; + if (column->SortOrder != -1) + column->Flags |= ImGuiTableColumnFlags_IsSorted; + + // Detect hovered column + if (is_hovering_table && mouse_skewed_x >= column->ClipRect.Min.x && mouse_skewed_x < column->ClipRect.Max.x) + { + column->Flags |= ImGuiTableColumnFlags_IsHovered; + table->HoveredColumnBody = (ImGuiTableColumnIdx)column_n; + } + + // Alignment + // FIXME-TABLE: This align based on the whole column width, not per-cell, and therefore isn't useful in + // many cases (to be able to honor this we might be able to store a log of cells width, per row, for + // visible rows, but nav/programmatic scroll would have visible artifacts.) + //if (column->Flags & ImGuiTableColumnFlags_AlignRight) + // column->WorkMinX = ImMax(column->WorkMinX, column->MaxX - column->ContentWidthRowsUnfrozen); + //else if (column->Flags & ImGuiTableColumnFlags_AlignCenter) + // column->WorkMinX = ImLerp(column->WorkMinX, ImMax(column->StartX, column->MaxX - column->ContentWidthRowsUnfrozen), 0.5f); + + // Reset content width variables + if (table->InstanceCurrent == 0) + { + column->ContentMaxXFrozen = column->WorkMinX; + column->ContentMaxXUnfrozen = column->WorkMinX; + column->ContentMaxXHeadersUsed = column->WorkMinX; + column->ContentMaxXHeadersIdeal = column->WorkMinX; + } + else + { + // As we store an absolute value to make per-cell updates faster, we need to offset values used for width computation. + const float offset_from_previous_instance = column->WorkMinX - previous_instance_work_min_x; + column->ContentMaxXFrozen += offset_from_previous_instance; + column->ContentMaxXUnfrozen += offset_from_previous_instance; + column->ContentMaxXHeadersUsed += offset_from_previous_instance; + column->ContentMaxXHeadersIdeal += offset_from_previous_instance; + } + + // Don't decrement auto-fit counters until container window got a chance to submit its items + if (table->HostSkipItems == false) + { + column->AutoFitQueue >>= 1; + column->CannotSkipItemsQueue >>= 1; + } + + if (visible_n < table->FreezeColumnsCount) + host_clip_rect.Min.x = ImClamp(column->MaxX + TABLE_BORDER_SIZE, host_clip_rect.Min.x, host_clip_rect.Max.x); + + offset_x += column->WidthGiven + table->CellSpacingX1 + table->CellSpacingX2 + table->CellPaddingX * 2.0f; + visible_n++; + } + + // In case the table is visible (e.g. decorations) but all columns clipped, we keep a column visible. + // Else if give no chance to a clipper-savy user to submit rows and therefore total contents height used by scrollbar. + if (has_at_least_one_column_requesting_output == false) + { + table->Columns[table->LeftMostEnabledColumn].IsRequestOutput = true; + table->Columns[table->LeftMostEnabledColumn].IsSkipItems = false; + } + + // [Part 7] Detect/store when we are hovering the unused space after the right-most column (so e.g. context menus can react on it) + // Clear Resizable flag if none of our column are actually resizable (either via an explicit _NoResize flag, either + // because of using _WidthAuto/_WidthStretch). This will hide the resizing option from the context menu. + const float unused_x1 = ImMax(table->WorkRect.Min.x, table->Columns[table->RightMostEnabledColumn].ClipRect.Max.x); + if (is_hovering_table && table->HoveredColumnBody == -1) + if (mouse_skewed_x >= unused_x1) + table->HoveredColumnBody = (ImGuiTableColumnIdx)table->ColumnsCount; + if (has_resizable == false && (table->Flags & ImGuiTableFlags_Resizable)) + table->Flags &= ~ImGuiTableFlags_Resizable; + + table->IsActiveIdAliveBeforeTable = (g.ActiveIdIsAlive != 0); + + // [Part 8] Lock actual OuterRect/WorkRect right-most position. + // This is done late to handle the case of fixed-columns tables not claiming more widths that they need. + // Because of this we are careful with uses of WorkRect and InnerClipRect before this point. + if (table->RightMostStretchedColumn != -1) + table->Flags &= ~ImGuiTableFlags_NoHostExtendX; + if (table->Flags & ImGuiTableFlags_NoHostExtendX) + { + table->OuterRect.Max.x = table->WorkRect.Max.x = unused_x1; + table->InnerClipRect.Max.x = ImMin(table->InnerClipRect.Max.x, unused_x1); + } + table->InnerWindow->ParentWorkRect = table->WorkRect; + table->BorderX1 = table->InnerClipRect.Min.x; + table->BorderX2 = table->InnerClipRect.Max.x; + + // Setup window's WorkRect.Max.y for GetContentRegionAvail(). Other values will be updated in each TableBeginCell() call. + float window_content_max_y; + if (table->Flags & ImGuiTableFlags_NoHostExtendY) + window_content_max_y = table->OuterRect.Max.y; + else + window_content_max_y = ImMax(table->InnerWindow->ContentRegionRect.Max.y, (table->Flags & ImGuiTableFlags_ScrollY) ? 0.0f : table->OuterRect.Max.y); + table->InnerWindow->WorkRect.Max.y = ImClamp(window_content_max_y - g.Style.CellPadding.y, table->InnerWindow->WorkRect.Min.y, table->InnerWindow->WorkRect.Max.y); + + // [Part 9] Allocate draw channels and setup background cliprect + TableSetupDrawChannels(table); + + // [Part 10] Hit testing on borders + if (table->Flags & ImGuiTableFlags_Resizable) + TableUpdateBorders(table); + table_instance->LastTopHeadersRowHeight = 0.0f; + table->IsLayoutLocked = true; + table->IsUsingHeaders = false; + + // Highlight header + table->HighlightColumnHeader = -1; + if (table->IsContextPopupOpen && table->ContextPopupColumn != -1 && table->InstanceInteracted == table->InstanceCurrent) + table->HighlightColumnHeader = table->ContextPopupColumn; + else if ((table->Flags & ImGuiTableFlags_HighlightHoveredColumn) && table->HoveredColumnBody != -1 && table->HoveredColumnBody != table->ColumnsCount && table->HoveredColumnBorder == -1) + if (g.ActiveId == 0 || (table->IsActiveIdInTable || g.DragDropActive)) + table->HighlightColumnHeader = table->HoveredColumnBody; + + // [Part 11] Default context menu + // - To append to this menu: you can call TableBeginContextMenuPopup()/.../EndPopup(). + // - To modify or replace this: set table->IsContextPopupNoDefaultContents = true, then call TableBeginContextMenuPopup()/.../EndPopup(). + // - You may call TableDrawDefaultContextMenu() with selected flags to display specific sections of the default menu, + // e.g. TableDrawDefaultContextMenu(table, table->Flags & ~ImGuiTableFlags_Hideable) will display everything EXCEPT columns visibility options. + if (table->DisableDefaultContextMenu == false && TableBeginContextMenuPopup(table)) + { + TableDrawDefaultContextMenu(table, table->Flags); + EndPopup(); + } + + // [Part 12] Sanitize and build sort specs before we have a chance to use them for display. + // This path will only be exercised when sort specs are modified before header rows (e.g. init or visibility change) + if (table->IsSortSpecsDirty && (table->Flags & ImGuiTableFlags_Sortable)) + TableSortSpecsBuild(table); + + // [Part 13] Setup inner window decoration size (for scrolling / nav tracking to properly take account of frozen rows/columns) + if (table->FreezeColumnsRequest > 0) + table->InnerWindow->DecoInnerSizeX1 = table->Columns[table->DisplayOrderToIndex[table->FreezeColumnsRequest - 1]].MaxX - table->OuterRect.Min.x; + if (table->FreezeRowsRequest > 0) + table->InnerWindow->DecoInnerSizeY1 = table_instance->LastFrozenHeight; + table_instance->LastFrozenHeight = 0.0f; + + // Initial state + ImGuiWindow* inner_window = table->InnerWindow; + if (table->Flags & ImGuiTableFlags_NoClip) + table->DrawSplitter->SetCurrentChannel(inner_window->DrawList, TABLE_DRAW_CHANNEL_NOCLIP); + else + inner_window->DrawList->PushClipRect(inner_window->InnerClipRect.Min, inner_window->InnerClipRect.Max, false); // FIXME: use table->InnerClipRect? +} + +// Process hit-testing on resizing borders. Actual size change will be applied in EndTable() +// - Set table->HoveredColumnBorder with a short delay/timer to reduce visual feedback noise. +void ImGui::TableUpdateBorders(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(table->Flags & ImGuiTableFlags_Resizable); + + // At this point OuterRect height may be zero or under actual final height, so we rely on temporal coherency and + // use the final height from last frame. Because this is only affecting _interaction_ with columns, it is not + // really problematic (whereas the actual visual will be displayed in EndTable() and using the current frame height). + // Actual columns highlight/render will be performed in EndTable() and not be affected. + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + const float hit_half_width = ImTrunc(TABLE_RESIZE_SEPARATOR_HALF_THICKNESS * g.CurrentDpiScale); + const float hit_y1 = (table->FreezeRowsCount >= 1 ? table->OuterRect.Min.y : table->WorkRect.Min.y) + table->AngledHeadersHeight; + const float hit_y2_body = ImMax(table->OuterRect.Max.y, hit_y1 + table_instance->LastOuterHeight - table->AngledHeadersHeight); + const float hit_y2_head = hit_y1 + table_instance->LastTopHeadersRowHeight; + + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + continue; + + const int column_n = table->DisplayOrderToIndex[order_n]; + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->Flags & (ImGuiTableColumnFlags_NoResize | ImGuiTableColumnFlags_NoDirectResize_)) + continue; + + // ImGuiTableFlags_NoBordersInBodyUntilResize will be honored in TableDrawBorders() + const float border_y2_hit = (table->Flags & ImGuiTableFlags_NoBordersInBody) ? hit_y2_head : hit_y2_body; + if ((table->Flags & ImGuiTableFlags_NoBordersInBody) && table->IsUsingHeaders == false) + continue; + + if (!column->IsVisibleX && table->LastResizedColumn != column_n) + continue; + + ImGuiID column_id = TableGetColumnResizeID(table, column_n, table->InstanceCurrent); + ImRect hit_rect(column->MaxX - hit_half_width, hit_y1, column->MaxX + hit_half_width, border_y2_hit); + ItemAdd(hit_rect, column_id, NULL, ImGuiItemFlags_NoNav); + //GetForegroundDrawList()->AddRect(hit_rect.Min, hit_rect.Max, IM_COL32(255, 0, 0, 100)); + + bool hovered = false, held = false; + bool pressed = ButtonBehavior(hit_rect, column_id, &hovered, &held, ImGuiButtonFlags_FlattenChildren | ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_PressedOnDoubleClick | ImGuiButtonFlags_NoNavFocus); + if (pressed && IsMouseDoubleClicked(0)) + { + TableSetColumnWidthAutoSingle(table, column_n); + ClearActiveID(); + held = false; + } + if (held) + { + if (table->LastResizedColumn == -1) + table->ResizeLockMinContentsX2 = table->RightMostEnabledColumn != -1 ? table->Columns[table->RightMostEnabledColumn].MaxX : -FLT_MAX; + table->ResizedColumn = (ImGuiTableColumnIdx)column_n; + table->InstanceInteracted = table->InstanceCurrent; + } + if ((hovered && g.HoveredIdTimer > TABLE_RESIZE_SEPARATOR_FEEDBACK_TIMER) || held) + { + table->HoveredColumnBorder = (ImGuiTableColumnIdx)column_n; + SetMouseCursor(ImGuiMouseCursor_ResizeEW); + } + } +} + +void ImGui::EndTable() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Only call EndTable() if BeginTable() returns true!"); + + // This assert would be very useful to catch a common error... unfortunately it would probably trigger in some + // cases, and for consistency user may sometimes output empty tables (and still benefit from e.g. outer border) + //IM_ASSERT(table->IsLayoutLocked && "Table unused: never called TableNextRow(), is that the intent?"); + + // If the user never got to call TableNextRow() or TableNextColumn(), we call layout ourselves to ensure all our + // code paths are consistent (instead of just hoping that TableBegin/TableEnd will work), get borders drawn, etc. + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + + const ImGuiTableFlags flags = table->Flags; + ImGuiWindow* inner_window = table->InnerWindow; + ImGuiWindow* outer_window = table->OuterWindow; + ImGuiTableTempData* temp_data = table->TempData; + IM_ASSERT(inner_window == g.CurrentWindow); + IM_ASSERT(outer_window == inner_window || outer_window == inner_window->ParentWindow); + + if (table->IsInsideRow) + TableEndRow(table); + + // Context menu in columns body + if (flags & ImGuiTableFlags_ContextMenuInBody) + if (table->HoveredColumnBody != -1 && !IsAnyItemHovered() && IsMouseReleased(ImGuiMouseButton_Right)) + TableOpenContextMenu((int)table->HoveredColumnBody); + + // Finalize table height + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + inner_window->DC.PrevLineSize = temp_data->HostBackupPrevLineSize; + inner_window->DC.CurrLineSize = temp_data->HostBackupCurrLineSize; + inner_window->DC.CursorMaxPos = temp_data->HostBackupCursorMaxPos; + const float inner_content_max_y = table->RowPosY2; + IM_ASSERT(table->RowPosY2 == inner_window->DC.CursorPos.y); + if (inner_window != outer_window) + inner_window->DC.CursorMaxPos.y = inner_content_max_y; + else if (!(flags & ImGuiTableFlags_NoHostExtendY)) + table->OuterRect.Max.y = table->InnerRect.Max.y = ImMax(table->OuterRect.Max.y, inner_content_max_y); // Patch OuterRect/InnerRect height + table->WorkRect.Max.y = ImMax(table->WorkRect.Max.y, table->OuterRect.Max.y); + table_instance->LastOuterHeight = table->OuterRect.GetHeight(); + + // Setup inner scrolling range + // FIXME: This ideally should be done earlier, in BeginTable() SetNextWindowContentSize call, just like writing to inner_window->DC.CursorMaxPos.y, + // but since the later is likely to be impossible to do we'd rather update both axises together. + if (table->Flags & ImGuiTableFlags_ScrollX) + { + const float outer_padding_for_border = (table->Flags & ImGuiTableFlags_BordersOuterV) ? TABLE_BORDER_SIZE : 0.0f; + float max_pos_x = table->InnerWindow->DC.CursorMaxPos.x; + if (table->RightMostEnabledColumn != -1) + max_pos_x = ImMax(max_pos_x, table->Columns[table->RightMostEnabledColumn].WorkMaxX + table->CellPaddingX + table->OuterPaddingX - outer_padding_for_border); + if (table->ResizedColumn != -1) + max_pos_x = ImMax(max_pos_x, table->ResizeLockMinContentsX2); + table->InnerWindow->DC.CursorMaxPos.x = max_pos_x + table->TempData->AngledHeadersExtraWidth; + } + + // Pop clipping rect + if (!(flags & ImGuiTableFlags_NoClip)) + inner_window->DrawList->PopClipRect(); + inner_window->ClipRect = inner_window->DrawList->_ClipRectStack.back(); + + // Draw borders + if ((flags & ImGuiTableFlags_Borders) != 0) + TableDrawBorders(table); + +#if 0 + // Strip out dummy channel draw calls + // We have no way to prevent user submitting direct ImDrawList calls into a hidden column (but ImGui:: calls will be clipped out) + // Pros: remove draw calls which will have no effect. since they'll have zero-size cliprect they may be early out anyway. + // Cons: making it harder for users watching metrics/debugger to spot the wasted vertices. + if (table->DummyDrawChannel != (ImGuiTableColumnIdx)-1) + { + ImDrawChannel* dummy_channel = &table->DrawSplitter._Channels[table->DummyDrawChannel]; + dummy_channel->_CmdBuffer.resize(0); + dummy_channel->_IdxBuffer.resize(0); + } +#endif + + // Flatten channels and merge draw calls + ImDrawListSplitter* splitter = table->DrawSplitter; + splitter->SetCurrentChannel(inner_window->DrawList, 0); + if ((table->Flags & ImGuiTableFlags_NoClip) == 0) + TableMergeDrawChannels(table); + splitter->Merge(inner_window->DrawList); + + // Update ColumnsAutoFitWidth to get us ahead for host using our size to auto-resize without waiting for next BeginTable() + float auto_fit_width_for_fixed = 0.0f; + float auto_fit_width_for_stretched = 0.0f; + float auto_fit_width_for_stretched_min = 0.0f; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if (IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + float column_width_request = ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && !(column->Flags & ImGuiTableColumnFlags_NoResize)) ? column->WidthRequest : TableGetColumnWidthAuto(table, column); + if (column->Flags & ImGuiTableColumnFlags_WidthFixed) + auto_fit_width_for_fixed += column_width_request; + else + auto_fit_width_for_stretched += column_width_request; + if ((column->Flags & ImGuiTableColumnFlags_WidthStretch) && (column->Flags & ImGuiTableColumnFlags_NoResize) != 0) + auto_fit_width_for_stretched_min = ImMax(auto_fit_width_for_stretched_min, column_width_request / (column->StretchWeight / table->ColumnsStretchSumWeights)); + } + const float width_spacings = (table->OuterPaddingX * 2.0f) + (table->CellSpacingX1 + table->CellSpacingX2) * (table->ColumnsEnabledCount - 1); + table->ColumnsAutoFitWidth = width_spacings + (table->CellPaddingX * 2.0f) * table->ColumnsEnabledCount + auto_fit_width_for_fixed + ImMax(auto_fit_width_for_stretched, auto_fit_width_for_stretched_min); + + // Update scroll + if ((table->Flags & ImGuiTableFlags_ScrollX) == 0 && inner_window != outer_window) + { + inner_window->Scroll.x = 0.0f; + } + else if (table->LastResizedColumn != -1 && table->ResizedColumn == -1 && inner_window->ScrollbarX && table->InstanceInteracted == table->InstanceCurrent) + { + // When releasing a column being resized, scroll to keep the resulting column in sight + const float neighbor_width_to_keep_visible = table->MinColumnWidth + table->CellPaddingX * 2.0f; + ImGuiTableColumn* column = &table->Columns[table->LastResizedColumn]; + if (column->MaxX < table->InnerClipRect.Min.x) + SetScrollFromPosX(inner_window, column->MaxX - inner_window->Pos.x - neighbor_width_to_keep_visible, 1.0f); + else if (column->MaxX > table->InnerClipRect.Max.x) + SetScrollFromPosX(inner_window, column->MaxX - inner_window->Pos.x + neighbor_width_to_keep_visible, 1.0f); + } + + // Apply resizing/dragging at the end of the frame + if (table->ResizedColumn != -1 && table->InstanceCurrent == table->InstanceInteracted) + { + ImGuiTableColumn* column = &table->Columns[table->ResizedColumn]; + const float new_x2 = (g.IO.MousePos.x - g.ActiveIdClickOffset.x + ImTrunc(TABLE_RESIZE_SEPARATOR_HALF_THICKNESS * g.CurrentDpiScale)); + const float new_width = ImTrunc(new_x2 - column->MinX - table->CellSpacingX1 - table->CellPaddingX * 2.0f); + table->ResizedColumnNextWidth = new_width; + } + + table->IsActiveIdInTable = (g.ActiveIdIsAlive != 0 && table->IsActiveIdAliveBeforeTable == false); + + // Pop from id stack + IM_ASSERT_USER_ERROR(inner_window->IDStack.back() == table_instance->TableInstanceID, "Mismatching PushID/PopID!"); + IM_ASSERT_USER_ERROR(outer_window->DC.ItemWidthStack.Size >= temp_data->HostBackupItemWidthStackSize, "Too many PopItemWidth!"); + if (table->InstanceCurrent > 0) + PopID(); + PopID(); + + // Restore window data that we modified + const ImVec2 backup_outer_max_pos = outer_window->DC.CursorMaxPos; + inner_window->WorkRect = temp_data->HostBackupWorkRect; + inner_window->ParentWorkRect = temp_data->HostBackupParentWorkRect; + inner_window->SkipItems = table->HostSkipItems; + outer_window->DC.CursorPos = table->OuterRect.Min; + outer_window->DC.ItemWidth = temp_data->HostBackupItemWidth; + outer_window->DC.ItemWidthStack.Size = temp_data->HostBackupItemWidthStackSize; + outer_window->DC.ColumnsOffset = temp_data->HostBackupColumnsOffset; + + // Layout in outer window + // (FIXME: To allow auto-fit and allow desirable effect of SameLine() we dissociate 'used' vs 'ideal' size by overriding + // CursorPosPrevLine and CursorMaxPos manually. That should be a more general layout feature, see same problem e.g. #3414) + if (inner_window != outer_window) + { + short backup_nav_layers_active_mask = inner_window->DC.NavLayersActiveMask; + inner_window->DC.NavLayersActiveMask |= 1 << ImGuiNavLayer_Main; // So empty table don't appear to navigate differently. + EndChild(); + inner_window->DC.NavLayersActiveMask = backup_nav_layers_active_mask; + } + else + { + ItemSize(table->OuterRect.GetSize()); + ItemAdd(table->OuterRect, 0); + } + + // Override declared contents width/height to enable auto-resize while not needlessly adding a scrollbar + if (table->Flags & ImGuiTableFlags_NoHostExtendX) + { + // FIXME-TABLE: Could we remove this section? + // ColumnsAutoFitWidth may be one frame ahead here since for Fixed+NoResize is calculated from latest contents + IM_ASSERT((table->Flags & ImGuiTableFlags_ScrollX) == 0); + outer_window->DC.CursorMaxPos.x = ImMax(backup_outer_max_pos.x, table->OuterRect.Min.x + table->ColumnsAutoFitWidth); + } + else if (temp_data->UserOuterSize.x <= 0.0f) + { + // Some references for this: #7651 + tests "table_reported_size", "table_reported_size_outer" equivalent Y block + // - Checking for ImGuiTableFlags_ScrollX/ScrollY flag makes us a frame ahead when disabling those flags. + // - FIXME-TABLE: Would make sense to pre-compute expected scrollbar visibility/sizes to generally save a frame of feedback. + const float inner_content_max_x = table->OuterRect.Min.x + table->ColumnsAutoFitWidth; // Slightly misleading name but used for code symmetry with inner_content_max_y + const float decoration_size = table->TempData->AngledHeadersExtraWidth + ((table->Flags & ImGuiTableFlags_ScrollY) ? inner_window->ScrollbarSizes.x : 0.0f); + outer_window->DC.IdealMaxPos.x = ImMax(outer_window->DC.IdealMaxPos.x, inner_content_max_x + decoration_size - temp_data->UserOuterSize.x); + outer_window->DC.CursorMaxPos.x = ImMax(backup_outer_max_pos.x, ImMin(table->OuterRect.Max.x, inner_content_max_x + decoration_size)); + } + else + { + outer_window->DC.CursorMaxPos.x = ImMax(backup_outer_max_pos.x, table->OuterRect.Max.x); + } + if (temp_data->UserOuterSize.y <= 0.0f) + { + const float decoration_size = (table->Flags & ImGuiTableFlags_ScrollX) ? inner_window->ScrollbarSizes.y : 0.0f; + outer_window->DC.IdealMaxPos.y = ImMax(outer_window->DC.IdealMaxPos.y, inner_content_max_y + decoration_size - temp_data->UserOuterSize.y); + outer_window->DC.CursorMaxPos.y = ImMax(backup_outer_max_pos.y, ImMin(table->OuterRect.Max.y, inner_content_max_y + decoration_size)); + } + else + { + // OuterRect.Max.y may already have been pushed downward from the initial value (unless ImGuiTableFlags_NoHostExtendY is set) + outer_window->DC.CursorMaxPos.y = ImMax(backup_outer_max_pos.y, table->OuterRect.Max.y); + } + + // Save settings + if (table->IsSettingsDirty) + TableSaveSettings(table); + table->IsInitializing = false; + + // Clear or restore current table, if any + IM_ASSERT(g.CurrentWindow == outer_window && g.CurrentTable == table); + IM_ASSERT(g.TablesTempDataStacked > 0); + temp_data = (--g.TablesTempDataStacked > 0) ? &g.TablesTempData[g.TablesTempDataStacked - 1] : NULL; + g.CurrentTable = temp_data ? g.Tables.GetByIndex(temp_data->TableIndex) : NULL; + if (g.CurrentTable) + { + g.CurrentTable->TempData = temp_data; + g.CurrentTable->DrawSplitter = &temp_data->DrawSplitter; + } + outer_window->DC.CurrentTableIdx = g.CurrentTable ? g.Tables.GetIndex(g.CurrentTable) : -1; + NavUpdateCurrentWindowIsScrollPushableX(); +} + +// See "COLUMNS SIZING POLICIES" comments at the top of this file +// If (init_width_or_weight <= 0.0f) it is ignored +void ImGui::TableSetupColumn(const char* label, ImGuiTableColumnFlags flags, float init_width_or_weight, ImGuiID user_id) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableSetupColumn() after BeginTable()!"); + IM_ASSERT(table->IsLayoutLocked == false && "Need to call call TableSetupColumn() before first row!"); + IM_ASSERT((flags & ImGuiTableColumnFlags_StatusMask_) == 0 && "Illegal to pass StatusMask values to TableSetupColumn()"); + if (table->DeclColumnsCount >= table->ColumnsCount) + { + IM_ASSERT_USER_ERROR(table->DeclColumnsCount < table->ColumnsCount, "Called TableSetupColumn() too many times!"); + return; + } + + ImGuiTableColumn* column = &table->Columns[table->DeclColumnsCount]; + table->DeclColumnsCount++; + + // Assert when passing a width or weight if policy is entirely left to default, to avoid storing width into weight and vice-versa. + // Give a grace to users of ImGuiTableFlags_ScrollX. + if (table->IsDefaultSizingPolicy && (flags & ImGuiTableColumnFlags_WidthMask_) == 0 && (flags & ImGuiTableFlags_ScrollX) == 0) + IM_ASSERT(init_width_or_weight <= 0.0f && "Can only specify width/weight if sizing policy is set explicitly in either Table or Column."); + + // When passing a width automatically enforce WidthFixed policy + // (whereas TableSetupColumnFlags would default to WidthAuto if table is not Resizable) + if ((flags & ImGuiTableColumnFlags_WidthMask_) == 0 && init_width_or_weight > 0.0f) + if ((table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedFit || (table->Flags & ImGuiTableFlags_SizingMask_) == ImGuiTableFlags_SizingFixedSame) + flags |= ImGuiTableColumnFlags_WidthFixed; + if (flags & ImGuiTableColumnFlags_AngledHeader) + { + flags |= ImGuiTableColumnFlags_NoHeaderLabel; + table->AngledHeadersCount++; + } + + TableSetupColumnFlags(table, column, flags); + column->UserID = user_id; + flags = column->Flags; + + // Initialize defaults + column->InitStretchWeightOrWidth = init_width_or_weight; + if (table->IsInitializing) + { + // Init width or weight + if (column->WidthRequest < 0.0f && column->StretchWeight < 0.0f) + { + if ((flags & ImGuiTableColumnFlags_WidthFixed) && init_width_or_weight > 0.0f) + column->WidthRequest = init_width_or_weight; + if (flags & ImGuiTableColumnFlags_WidthStretch) + column->StretchWeight = (init_width_or_weight > 0.0f) ? init_width_or_weight : -1.0f; + + // Disable auto-fit if an explicit width/weight has been specified + if (init_width_or_weight > 0.0f) + column->AutoFitQueue = 0x00; + } + + // Init default visibility/sort state + if ((flags & ImGuiTableColumnFlags_DefaultHide) && (table->SettingsLoadedFlags & ImGuiTableFlags_Hideable) == 0) + column->IsUserEnabled = column->IsUserEnabledNextFrame = false; + if (flags & ImGuiTableColumnFlags_DefaultSort && (table->SettingsLoadedFlags & ImGuiTableFlags_Sortable) == 0) + { + column->SortOrder = 0; // Multiple columns using _DefaultSort will be reassigned unique SortOrder values when building the sort specs. + column->SortDirection = (column->Flags & ImGuiTableColumnFlags_PreferSortDescending) ? (ImS8)ImGuiSortDirection_Descending : (ImU8)(ImGuiSortDirection_Ascending); + } + } + + // Store name (append with zero-terminator in contiguous buffer) + // FIXME: If we recorded the number of \n in names we could compute header row height + column->NameOffset = -1; + if (label != NULL && label[0] != 0) + { + column->NameOffset = (ImS16)table->ColumnsNames.size(); + table->ColumnsNames.append(label, label + strlen(label) + 1); + } +} + +// [Public] +void ImGui::TableSetupScrollFreeze(int columns, int rows) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableSetupColumn() after BeginTable()!"); + IM_ASSERT(table->IsLayoutLocked == false && "Need to call TableSetupColumn() before first row!"); + IM_ASSERT(columns >= 0 && columns < IMGUI_TABLE_MAX_COLUMNS); + IM_ASSERT(rows >= 0 && rows < 128); // Arbitrary limit + + table->FreezeColumnsRequest = (table->Flags & ImGuiTableFlags_ScrollX) ? (ImGuiTableColumnIdx)ImMin(columns, table->ColumnsCount) : 0; + table->FreezeColumnsCount = (table->InnerWindow->Scroll.x != 0.0f) ? table->FreezeColumnsRequest : 0; + table->FreezeRowsRequest = (table->Flags & ImGuiTableFlags_ScrollY) ? (ImGuiTableColumnIdx)rows : 0; + table->FreezeRowsCount = (table->InnerWindow->Scroll.y != 0.0f) ? table->FreezeRowsRequest : 0; + table->IsUnfrozenRows = (table->FreezeRowsCount == 0); // Make sure this is set before TableUpdateLayout() so ImGuiListClipper can benefit from it.b + + // Ensure frozen columns are ordered in their section. We still allow multiple frozen columns to be reordered. + // FIXME-TABLE: This work for preserving 2143 into 21|43. How about 4321 turning into 21|43? (preserve relative order in each section) + for (int column_n = 0; column_n < table->FreezeColumnsRequest; column_n++) + { + int order_n = table->DisplayOrderToIndex[column_n]; + if (order_n != column_n && order_n >= table->FreezeColumnsRequest) + { + ImSwap(table->Columns[table->DisplayOrderToIndex[order_n]].DisplayOrder, table->Columns[table->DisplayOrderToIndex[column_n]].DisplayOrder); + ImSwap(table->DisplayOrderToIndex[order_n], table->DisplayOrderToIndex[column_n]); + } + } +} + +//----------------------------------------------------------------------------- +// [SECTION] Tables: Simple accessors +//----------------------------------------------------------------------------- +// - TableGetColumnCount() +// - TableGetColumnName() +// - TableGetColumnName() [Internal] +// - TableSetColumnEnabled() +// - TableGetColumnFlags() +// - TableGetCellBgRect() [Internal] +// - TableGetColumnResizeID() [Internal] +// - TableGetHoveredColumn() [Internal] +// - TableGetHoveredRow() [Internal] +// - TableSetBgColor() +//----------------------------------------------------------------------------- + +int ImGui::TableGetColumnCount() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + return table ? table->ColumnsCount : 0; +} + +const char* ImGui::TableGetColumnName(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return NULL; + if (column_n < 0) + column_n = table->CurrentColumn; + return TableGetColumnName(table, column_n); +} + +const char* ImGui::TableGetColumnName(const ImGuiTable* table, int column_n) +{ + if (table->IsLayoutLocked == false && column_n >= table->DeclColumnsCount) + return ""; // NameOffset is invalid at this point + const ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->NameOffset == -1) + return ""; + return &table->ColumnsNames.Buf[column->NameOffset]; +} + +// Change user accessible enabled/disabled state of a column (often perceived as "showing/hiding" from users point of view) +// Note that end-user can use the context menu to change this themselves (right-click in headers, or right-click in columns body with ImGuiTableFlags_ContextMenuInBody) +// - Require table to have the ImGuiTableFlags_Hideable flag because we are manipulating user accessible state. +// - Request will be applied during next layout, which happens on the first call to TableNextRow() after BeginTable(). +// - For the getter you can test (TableGetColumnFlags() & ImGuiTableColumnFlags_IsEnabled) != 0. +// - Alternative: the ImGuiTableColumnFlags_Disabled is an overriding/master disable flag which will also hide the column from context menu. +void ImGui::TableSetColumnEnabled(int column_n, bool enabled) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL); + if (!table) + return; + IM_ASSERT(table->Flags & ImGuiTableFlags_Hideable); // See comments above + if (column_n < 0) + column_n = table->CurrentColumn; + IM_ASSERT(column_n >= 0 && column_n < table->ColumnsCount); + ImGuiTableColumn* column = &table->Columns[column_n]; + column->IsUserEnabledNextFrame = enabled; +} + +// We allow querying for an extra column in order to poll the IsHovered state of the right-most section +ImGuiTableColumnFlags ImGui::TableGetColumnFlags(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return ImGuiTableColumnFlags_None; + if (column_n < 0) + column_n = table->CurrentColumn; + if (column_n == table->ColumnsCount) + return (table->HoveredColumnBody == column_n) ? ImGuiTableColumnFlags_IsHovered : ImGuiTableColumnFlags_None; + return table->Columns[column_n].Flags; +} + +// Return the cell rectangle based on currently known height. +// - Important: we generally don't know our row height until the end of the row, so Max.y will be incorrect in many situations. +// The only case where this is correct is if we provided a min_row_height to TableNextRow() and don't go below it, or in TableEndRow() when we locked that height. +// - Important: if ImGuiTableFlags_PadOuterX is set but ImGuiTableFlags_PadInnerX is not set, the outer-most left and right +// columns report a small offset so their CellBgRect can extend up to the outer border. +// FIXME: But the rendering code in TableEndRow() nullifies that with clamping required for scrolling. +ImRect ImGui::TableGetCellBgRect(const ImGuiTable* table, int column_n) +{ + const ImGuiTableColumn* column = &table->Columns[column_n]; + float x1 = column->MinX; + float x2 = column->MaxX; + //if (column->PrevEnabledColumn == -1) + // x1 -= table->OuterPaddingX; + //if (column->NextEnabledColumn == -1) + // x2 += table->OuterPaddingX; + x1 = ImMax(x1, table->WorkRect.Min.x); + x2 = ImMin(x2, table->WorkRect.Max.x); + return ImRect(x1, table->RowPosY1, x2, table->RowPosY2); +} + +// Return the resizing ID for the right-side of the given column. +ImGuiID ImGui::TableGetColumnResizeID(ImGuiTable* table, int column_n, int instance_no) +{ + IM_ASSERT(column_n >= 0 && column_n < table->ColumnsCount); + ImGuiID instance_id = TableGetInstanceID(table, instance_no); + return instance_id + 1 + column_n; // FIXME: #6140: still not ideal +} + +// Return -1 when table is not hovered. return columns_count if hovering the unused space at the right of the right-most visible column. +int ImGui::TableGetHoveredColumn() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return -1; + return (int)table->HoveredColumnBody; +} + +// Return -1 when table is not hovered. Return maxrow+1 if in table but below last submitted row. +// *IMPORTANT* Unlike TableGetHoveredColumn(), this has a one frame latency in updating the value. +// This difference with is the reason why this is not public yet. +int ImGui::TableGetHoveredRow() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return -1; + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + return (int)table_instance->HoveredRowLast; +} + +void ImGui::TableSetBgColor(ImGuiTableBgTarget target, ImU32 color, int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(target != ImGuiTableBgTarget_None); + + if (color == IM_COL32_DISABLE) + color = 0; + + // We cannot draw neither the cell or row background immediately as we don't know the row height at this point in time. + switch (target) + { + case ImGuiTableBgTarget_CellBg: + { + if (table->RowPosY1 > table->InnerClipRect.Max.y) // Discard + return; + if (column_n == -1) + column_n = table->CurrentColumn; + if (!IM_BITARRAY_TESTBIT(table->VisibleMaskByIndex, column_n)) + return; + if (table->RowCellDataCurrent < 0 || table->RowCellData[table->RowCellDataCurrent].Column != column_n) + table->RowCellDataCurrent++; + ImGuiTableCellData* cell_data = &table->RowCellData[table->RowCellDataCurrent]; + cell_data->BgColor = color; + cell_data->Column = (ImGuiTableColumnIdx)column_n; + break; + } + case ImGuiTableBgTarget_RowBg0: + case ImGuiTableBgTarget_RowBg1: + { + if (table->RowPosY1 > table->InnerClipRect.Max.y) // Discard + return; + IM_ASSERT(column_n == -1); + int bg_idx = (target == ImGuiTableBgTarget_RowBg1) ? 1 : 0; + table->RowBgColor[bg_idx] = color; + break; + } + default: + IM_ASSERT(0); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Row changes +//------------------------------------------------------------------------- +// - TableGetRowIndex() +// - TableNextRow() +// - TableBeginRow() [Internal] +// - TableEndRow() [Internal] +//------------------------------------------------------------------------- + +// [Public] Note: for row coloring we use ->RowBgColorCounter which is the same value without counting header rows +int ImGui::TableGetRowIndex() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return 0; + return table->CurrentRow; +} + +// [Public] Starts into the first cell of a new row +void ImGui::TableNextRow(ImGuiTableRowFlags row_flags, float row_min_height) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + if (table->IsInsideRow) + TableEndRow(table); + + table->LastRowFlags = table->RowFlags; + table->RowFlags = row_flags; + table->RowCellPaddingY = g.Style.CellPadding.y; + table->RowMinHeight = row_min_height; + TableBeginRow(table); + + // We honor min_row_height requested by user, but cannot guarantee per-row maximum height, + // because that would essentially require a unique clipping rectangle per-cell. + table->RowPosY2 += table->RowCellPaddingY * 2.0f; + table->RowPosY2 = ImMax(table->RowPosY2, table->RowPosY1 + row_min_height); + + // Disable output until user calls TableNextColumn() + table->InnerWindow->SkipItems = true; +} + +// [Internal] Only called by TableNextRow() +void ImGui::TableBeginRow(ImGuiTable* table) +{ + ImGuiWindow* window = table->InnerWindow; + IM_ASSERT(!table->IsInsideRow); + + // New row + table->CurrentRow++; + table->CurrentColumn = -1; + table->RowBgColor[0] = table->RowBgColor[1] = IM_COL32_DISABLE; + table->RowCellDataCurrent = -1; + table->IsInsideRow = true; + + // Begin frozen rows + float next_y1 = table->RowPosY2; + if (table->CurrentRow == 0 && table->FreezeRowsCount > 0) + next_y1 = window->DC.CursorPos.y = table->OuterRect.Min.y; + + table->RowPosY1 = table->RowPosY2 = next_y1; + table->RowTextBaseline = 0.0f; + table->RowIndentOffsetX = window->DC.Indent.x - table->HostIndentX; // Lock indent + + window->DC.PrevLineTextBaseOffset = 0.0f; + window->DC.CursorPosPrevLine = ImVec2(window->DC.CursorPos.x, window->DC.CursorPos.y + table->RowCellPaddingY); // This allows users to call SameLine() to share LineSize between columns. + window->DC.PrevLineSize = window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); // This allows users to call SameLine() to share LineSize between columns, and to call it from first column too. + window->DC.IsSameLine = window->DC.IsSetPos = false; + window->DC.CursorMaxPos.y = next_y1; + + // Making the header BG color non-transparent will allow us to overlay it multiple times when handling smooth dragging. + if (table->RowFlags & ImGuiTableRowFlags_Headers) + { + TableSetBgColor(ImGuiTableBgTarget_RowBg0, GetColorU32(ImGuiCol_TableHeaderBg)); + if (table->CurrentRow == 0) + table->IsUsingHeaders = true; + } +} + +// [Internal] Called by TableNextRow() +void ImGui::TableEndRow(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window == table->InnerWindow); + IM_ASSERT(table->IsInsideRow); + + if (table->CurrentColumn != -1) + TableEndCell(table); + + // Logging + if (g.LogEnabled) + LogRenderedText(NULL, "|"); + + // Position cursor at the bottom of our row so it can be used for e.g. clipping calculation. However it is + // likely that the next call to TableBeginCell() will reposition the cursor to take account of vertical padding. + window->DC.CursorPos.y = table->RowPosY2; + + // Row background fill + const float bg_y1 = table->RowPosY1; + const float bg_y2 = table->RowPosY2; + const bool unfreeze_rows_actual = (table->CurrentRow + 1 == table->FreezeRowsCount); + const bool unfreeze_rows_request = (table->CurrentRow + 1 == table->FreezeRowsRequest); + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + if ((table->RowFlags & ImGuiTableRowFlags_Headers) && (table->CurrentRow == 0 || (table->LastRowFlags & ImGuiTableRowFlags_Headers))) + table_instance->LastTopHeadersRowHeight += bg_y2 - bg_y1; + + const bool is_visible = (bg_y2 >= table->InnerClipRect.Min.y && bg_y1 <= table->InnerClipRect.Max.y); + if (is_visible) + { + // Update data for TableGetHoveredRow() + if (table->HoveredColumnBody != -1 && g.IO.MousePos.y >= bg_y1 && g.IO.MousePos.y < bg_y2 && table_instance->HoveredRowNext < 0) + table_instance->HoveredRowNext = table->CurrentRow; + + // Decide of background color for the row + ImU32 bg_col0 = 0; + ImU32 bg_col1 = 0; + if (table->RowBgColor[0] != IM_COL32_DISABLE) + bg_col0 = table->RowBgColor[0]; + else if (table->Flags & ImGuiTableFlags_RowBg) + bg_col0 = GetColorU32((table->RowBgColorCounter & 1) ? ImGuiCol_TableRowBgAlt : ImGuiCol_TableRowBg); + if (table->RowBgColor[1] != IM_COL32_DISABLE) + bg_col1 = table->RowBgColor[1]; + + // Decide of top border color + ImU32 top_border_col = 0; + const float border_size = TABLE_BORDER_SIZE; + if (table->CurrentRow > 0 && (table->Flags & ImGuiTableFlags_BordersInnerH)) + top_border_col = (table->LastRowFlags & ImGuiTableRowFlags_Headers) ? table->BorderColorStrong : table->BorderColorLight; + + const bool draw_cell_bg_color = table->RowCellDataCurrent >= 0; + const bool draw_strong_bottom_border = unfreeze_rows_actual; + if ((bg_col0 | bg_col1 | top_border_col) != 0 || draw_strong_bottom_border || draw_cell_bg_color) + { + // In theory we could call SetWindowClipRectBeforeSetChannel() but since we know TableEndRow() is + // always followed by a change of clipping rectangle we perform the smallest overwrite possible here. + if ((table->Flags & ImGuiTableFlags_NoClip) == 0) + window->DrawList->_CmdHeader.ClipRect = table->Bg0ClipRectForDrawCmd.ToVec4(); + table->DrawSplitter->SetCurrentChannel(window->DrawList, TABLE_DRAW_CHANNEL_BG0); + } + + // Draw row background + // We soft/cpu clip this so all backgrounds and borders can share the same clipping rectangle + if (bg_col0 || bg_col1) + { + ImRect row_rect(table->WorkRect.Min.x, bg_y1, table->WorkRect.Max.x, bg_y2); + row_rect.ClipWith(table->BgClipRect); + if (bg_col0 != 0 && row_rect.Min.y < row_rect.Max.y) + window->DrawList->AddRectFilled(row_rect.Min, row_rect.Max, bg_col0); + if (bg_col1 != 0 && row_rect.Min.y < row_rect.Max.y) + window->DrawList->AddRectFilled(row_rect.Min, row_rect.Max, bg_col1); + } + + // Draw cell background color + if (draw_cell_bg_color) + { + ImGuiTableCellData* cell_data_end = &table->RowCellData[table->RowCellDataCurrent]; + for (ImGuiTableCellData* cell_data = &table->RowCellData[0]; cell_data <= cell_data_end; cell_data++) + { + // As we render the BG here we need to clip things (for layout we would not) + // FIXME: This cancels the OuterPadding addition done by TableGetCellBgRect(), need to keep it while rendering correctly while scrolling. + const ImGuiTableColumn* column = &table->Columns[cell_data->Column]; + ImRect cell_bg_rect = TableGetCellBgRect(table, cell_data->Column); + cell_bg_rect.ClipWith(table->BgClipRect); + cell_bg_rect.Min.x = ImMax(cell_bg_rect.Min.x, column->ClipRect.Min.x); // So that first column after frozen one gets clipped when scrolling + cell_bg_rect.Max.x = ImMin(cell_bg_rect.Max.x, column->MaxX); + if (cell_bg_rect.Min.y < cell_bg_rect.Max.y) + window->DrawList->AddRectFilled(cell_bg_rect.Min, cell_bg_rect.Max, cell_data->BgColor); + } + } + + // Draw top border + if (top_border_col && bg_y1 >= table->BgClipRect.Min.y && bg_y1 < table->BgClipRect.Max.y) + window->DrawList->AddLine(ImVec2(table->BorderX1, bg_y1), ImVec2(table->BorderX2, bg_y1), top_border_col, border_size); + + // Draw bottom border at the row unfreezing mark (always strong) + if (draw_strong_bottom_border && bg_y2 >= table->BgClipRect.Min.y && bg_y2 < table->BgClipRect.Max.y) + window->DrawList->AddLine(ImVec2(table->BorderX1, bg_y2), ImVec2(table->BorderX2, bg_y2), table->BorderColorStrong, border_size); + } + + // End frozen rows (when we are past the last frozen row line, teleport cursor and alter clipping rectangle) + // We need to do that in TableEndRow() instead of TableBeginRow() so the list clipper can mark end of row and + // get the new cursor position. + if (unfreeze_rows_request) + { + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->Columns[column_n].NavLayerCurrent = ImGuiNavLayer_Main; + const float y0 = ImMax(table->RowPosY2 + 1, table->InnerClipRect.Min.y); + table_instance->LastFrozenHeight = y0 - table->OuterRect.Min.y; + + if (unfreeze_rows_actual) + { + IM_ASSERT(table->IsUnfrozenRows == false); + table->IsUnfrozenRows = true; + + // BgClipRect starts as table->InnerClipRect, reduce it now and make BgClipRectForDrawCmd == BgClipRect + table->BgClipRect.Min.y = table->Bg2ClipRectForDrawCmd.Min.y = ImMin(y0, table->InnerClipRect.Max.y); + table->BgClipRect.Max.y = table->Bg2ClipRectForDrawCmd.Max.y = table->InnerClipRect.Max.y; + table->Bg2DrawChannelCurrent = table->Bg2DrawChannelUnfrozen; + IM_ASSERT(table->Bg2ClipRectForDrawCmd.Min.y <= table->Bg2ClipRectForDrawCmd.Max.y); + + float row_height = table->RowPosY2 - table->RowPosY1; + table->RowPosY2 = window->DC.CursorPos.y = table->WorkRect.Min.y + table->RowPosY2 - table->OuterRect.Min.y; + table->RowPosY1 = table->RowPosY2 - row_height; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + column->DrawChannelCurrent = column->DrawChannelUnfrozen; + column->ClipRect.Min.y = table->Bg2ClipRectForDrawCmd.Min.y; + } + + // Update cliprect ahead of TableBeginCell() so clipper can access to new ClipRect->Min.y + SetWindowClipRectBeforeSetChannel(window, table->Columns[0].ClipRect); + table->DrawSplitter->SetCurrentChannel(window->DrawList, table->Columns[0].DrawChannelCurrent); + } + } + + if (!(table->RowFlags & ImGuiTableRowFlags_Headers)) + table->RowBgColorCounter++; + table->IsInsideRow = false; +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Columns changes +//------------------------------------------------------------------------- +// - TableGetColumnIndex() +// - TableSetColumnIndex() +// - TableNextColumn() +// - TableBeginCell() [Internal] +// - TableEndCell() [Internal] +//------------------------------------------------------------------------- + +int ImGui::TableGetColumnIndex() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return 0; + return table->CurrentColumn; +} + +// [Public] Append into a specific column +bool ImGui::TableSetColumnIndex(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return false; + + if (table->CurrentColumn != column_n) + { + if (table->CurrentColumn != -1) + TableEndCell(table); + IM_ASSERT(column_n >= 0 && table->ColumnsCount); + TableBeginCell(table, column_n); + } + + // Return whether the column is visible. User may choose to skip submitting items based on this return value, + // however they shouldn't skip submitting for columns that may have the tallest contribution to row height. + return table->Columns[column_n].IsRequestOutput; +} + +// [Public] Append into the next column, wrap and create a new row when already on last column +bool ImGui::TableNextColumn() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (!table) + return false; + + if (table->IsInsideRow && table->CurrentColumn + 1 < table->ColumnsCount) + { + if (table->CurrentColumn != -1) + TableEndCell(table); + TableBeginCell(table, table->CurrentColumn + 1); + } + else + { + TableNextRow(); + TableBeginCell(table, 0); + } + + // Return whether the column is visible. User may choose to skip submitting items based on this return value, + // however they shouldn't skip submitting for columns that may have the tallest contribution to row height. + return table->Columns[table->CurrentColumn].IsRequestOutput; +} + + +// [Internal] Called by TableSetColumnIndex()/TableNextColumn() +// This is called very frequently, so we need to be mindful of unnecessary overhead. +// FIXME-TABLE FIXME-OPT: Could probably shortcut some things for non-active or clipped columns. +void ImGui::TableBeginCell(ImGuiTable* table, int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTableColumn* column = &table->Columns[column_n]; + ImGuiWindow* window = table->InnerWindow; + table->CurrentColumn = column_n; + + // Start position is roughly ~~ CellRect.Min + CellPadding + Indent + float start_x = column->WorkMinX; + if (column->Flags & ImGuiTableColumnFlags_IndentEnable) + start_x += table->RowIndentOffsetX; // ~~ += window.DC.Indent.x - table->HostIndentX, except we locked it for the row. + + window->DC.CursorPos.x = start_x; + window->DC.CursorPos.y = table->RowPosY1 + table->RowCellPaddingY; + window->DC.CursorMaxPos.x = window->DC.CursorPos.x; + window->DC.ColumnsOffset.x = start_x - window->Pos.x - window->DC.Indent.x; // FIXME-WORKRECT + window->DC.CursorPosPrevLine.x = window->DC.CursorPos.x; // PrevLine.y is preserved. This allows users to call SameLine() to share LineSize between columns. + window->DC.CurrLineTextBaseOffset = table->RowTextBaseline; + window->DC.NavLayerCurrent = (ImGuiNavLayer)column->NavLayerCurrent; + + // Note how WorkRect.Max.y is only set once during layout + window->WorkRect.Min.y = window->DC.CursorPos.y; + window->WorkRect.Min.x = column->WorkMinX; + window->WorkRect.Max.x = column->WorkMaxX; + window->DC.ItemWidth = column->ItemWidth; + + window->SkipItems = column->IsSkipItems; + if (column->IsSkipItems) + { + g.LastItemData.ID = 0; + g.LastItemData.StatusFlags = 0; + } + + if (table->Flags & ImGuiTableFlags_NoClip) + { + // FIXME: if we end up drawing all borders/bg in EndTable, could remove this and just assert that channel hasn't changed. + table->DrawSplitter->SetCurrentChannel(window->DrawList, TABLE_DRAW_CHANNEL_NOCLIP); + //IM_ASSERT(table->DrawSplitter._Current == TABLE_DRAW_CHANNEL_NOCLIP); + } + else + { + // FIXME-TABLE: Could avoid this if draw channel is dummy channel? + SetWindowClipRectBeforeSetChannel(window, column->ClipRect); + table->DrawSplitter->SetCurrentChannel(window->DrawList, column->DrawChannelCurrent); + } + + // Logging + if (g.LogEnabled && !column->IsSkipItems) + { + LogRenderedText(&window->DC.CursorPos, "|"); + g.LogLinePosY = FLT_MAX; + } +} + +// [Internal] Called by TableNextRow()/TableSetColumnIndex()/TableNextColumn() +void ImGui::TableEndCell(ImGuiTable* table) +{ + ImGuiTableColumn* column = &table->Columns[table->CurrentColumn]; + ImGuiWindow* window = table->InnerWindow; + + if (window->DC.IsSetPos) + ErrorCheckUsingSetCursorPosToExtendParentBoundaries(); + + // Report maximum position so we can infer content size per column. + float* p_max_pos_x; + if (table->RowFlags & ImGuiTableRowFlags_Headers) + p_max_pos_x = &column->ContentMaxXHeadersUsed; // Useful in case user submit contents in header row that is not a TableHeader() call + else + p_max_pos_x = table->IsUnfrozenRows ? &column->ContentMaxXUnfrozen : &column->ContentMaxXFrozen; + *p_max_pos_x = ImMax(*p_max_pos_x, window->DC.CursorMaxPos.x); + if (column->IsEnabled) + table->RowPosY2 = ImMax(table->RowPosY2, window->DC.CursorMaxPos.y + table->RowCellPaddingY); + column->ItemWidth = window->DC.ItemWidth; + + // Propagate text baseline for the entire row + // FIXME-TABLE: Here we propagate text baseline from the last line of the cell.. instead of the first one. + table->RowTextBaseline = ImMax(table->RowTextBaseline, window->DC.PrevLineTextBaseOffset); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Columns width management +//------------------------------------------------------------------------- +// - TableGetMaxColumnWidth() [Internal] +// - TableGetColumnWidthAuto() [Internal] +// - TableSetColumnWidth() +// - TableSetColumnWidthAutoSingle() [Internal] +// - TableSetColumnWidthAutoAll() [Internal] +// - TableUpdateColumnsWeightFromWidth() [Internal] +//------------------------------------------------------------------------- +// Note that actual columns widths are computed in TableUpdateLayout(). +//------------------------------------------------------------------------- + +// Maximum column content width given current layout. Use column->MinX so this value differs on a per-column basis. +float ImGui::TableCalcMaxColumnWidth(const ImGuiTable* table, int column_n) +{ + const ImGuiTableColumn* column = &table->Columns[column_n]; + float max_width = FLT_MAX; + const float min_column_distance = table->MinColumnWidth + table->CellPaddingX * 2.0f + table->CellSpacingX1 + table->CellSpacingX2; + if (table->Flags & ImGuiTableFlags_ScrollX) + { + // Frozen columns can't reach beyond visible width else scrolling will naturally break. + // (we use DisplayOrder as within a set of multiple frozen column reordering is possible) + if (column->DisplayOrder < table->FreezeColumnsRequest) + { + max_width = (table->InnerClipRect.Max.x - (table->FreezeColumnsRequest - column->DisplayOrder) * min_column_distance) - column->MinX; + max_width = max_width - table->OuterPaddingX - table->CellPaddingX - table->CellSpacingX2; + } + } + else if ((table->Flags & ImGuiTableFlags_NoKeepColumnsVisible) == 0) + { + // If horizontal scrolling if disabled, we apply a final lossless shrinking of columns in order to make + // sure they are all visible. Because of this we also know that all of the columns will always fit in + // table->WorkRect and therefore in table->InnerRect (because ScrollX is off) + // FIXME-TABLE: This is solved incorrectly but also quite a difficult problem to fix as we also want ClipRect width to match. + // See "table_width_distrib" and "table_width_keep_visible" tests + max_width = table->WorkRect.Max.x - (table->ColumnsEnabledCount - column->IndexWithinEnabledSet - 1) * min_column_distance - column->MinX; + //max_width -= table->CellSpacingX1; + max_width -= table->CellSpacingX2; + max_width -= table->CellPaddingX * 2.0f; + max_width -= table->OuterPaddingX; + } + return max_width; +} + +// Note this is meant to be stored in column->WidthAuto, please generally use the WidthAuto field +float ImGui::TableGetColumnWidthAuto(ImGuiTable* table, ImGuiTableColumn* column) +{ + const float content_width_body = ImMax(column->ContentMaxXFrozen, column->ContentMaxXUnfrozen) - column->WorkMinX; + const float content_width_headers = column->ContentMaxXHeadersIdeal - column->WorkMinX; + float width_auto = content_width_body; + if (!(column->Flags & ImGuiTableColumnFlags_NoHeaderWidth)) + width_auto = ImMax(width_auto, content_width_headers); + + // Non-resizable fixed columns preserve their requested width + if ((column->Flags & ImGuiTableColumnFlags_WidthFixed) && column->InitStretchWeightOrWidth > 0.0f) + if (!(table->Flags & ImGuiTableFlags_Resizable) || (column->Flags & ImGuiTableColumnFlags_NoResize)) + width_auto = column->InitStretchWeightOrWidth; + + return ImMax(width_auto, table->MinColumnWidth); +} + +// 'width' = inner column width, without padding +void ImGui::TableSetColumnWidth(int column_n, float width) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && table->IsLayoutLocked == false); + IM_ASSERT(column_n >= 0 && column_n < table->ColumnsCount); + ImGuiTableColumn* column_0 = &table->Columns[column_n]; + float column_0_width = width; + + // Apply constraints early + // Compare both requested and actual given width to avoid overwriting requested width when column is stuck (minimum size, bounded) + IM_ASSERT(table->MinColumnWidth > 0.0f); + const float min_width = table->MinColumnWidth; + const float max_width = ImMax(min_width, column_0->WidthMax); // Don't use TableCalcMaxColumnWidth() here as it would rely on MinX from last instance (#7933) + column_0_width = ImClamp(column_0_width, min_width, max_width); + if (column_0->WidthGiven == column_0_width || column_0->WidthRequest == column_0_width) + return; + + //IMGUI_DEBUG_PRINT("TableSetColumnWidth(%d, %.1f->%.1f)\n", column_0_idx, column_0->WidthGiven, column_0_width); + ImGuiTableColumn* column_1 = (column_0->NextEnabledColumn != -1) ? &table->Columns[column_0->NextEnabledColumn] : NULL; + + // In this surprisingly not simple because of how we support mixing Fixed and multiple Stretch columns. + // - All fixed: easy. + // - All stretch: easy. + // - One or more fixed + one stretch: easy. + // - One or more fixed + more than one stretch: tricky. + // Qt when manual resize is enabled only supports a single _trailing_ stretch column, we support more cases here. + + // When forwarding resize from Wn| to Fn+1| we need to be considerate of the _NoResize flag on Fn+1. + // FIXME-TABLE: Find a way to rewrite all of this so interactions feel more consistent for the user. + // Scenarios: + // - F1 F2 F3 resize from F1| or F2| --> ok: alter ->WidthRequested of Fixed column. Subsequent columns will be offset. + // - F1 F2 F3 resize from F3| --> ok: alter ->WidthRequested of Fixed column. If active, ScrollX extent can be altered. + // - F1 F2 W3 resize from F1| or F2| --> ok: alter ->WidthRequested of Fixed column. If active, ScrollX extent can be altered, but it doesn't make much sense as the Stretch column will always be minimal size. + // - F1 F2 W3 resize from W3| --> ok: no-op (disabled by Resize Rule 1) + // - W1 W2 W3 resize from W1| or W2| --> ok + // - W1 W2 W3 resize from W3| --> ok: no-op (disabled by Resize Rule 1) + // - W1 F2 F3 resize from F3| --> ok: no-op (disabled by Resize Rule 1) + // - W1 F2 resize from F2| --> ok: no-op (disabled by Resize Rule 1) + // - W1 W2 F3 resize from W1| or W2| --> ok + // - W1 F2 W3 resize from W1| or F2| --> ok + // - F1 W2 F3 resize from W2| --> ok + // - F1 W3 F2 resize from W3| --> ok + // - W1 F2 F3 resize from W1| --> ok: equivalent to resizing |F2. F3 will not move. + // - W1 F2 F3 resize from F2| --> ok + // All resizes from a Wx columns are locking other columns. + + // Possible improvements: + // - W1 W2 W3 resize W1| --> to not be stuck, both W2 and W3 would stretch down. Seems possible to fix. Would be most beneficial to simplify resize of all-weighted columns. + // - W3 F1 F2 resize W3| --> to not be stuck past F1|, both F1 and F2 would need to stretch down, which would be lossy or ambiguous. Seems hard to fix. + + // [Resize Rule 1] Can't resize from right of right-most visible column if there is any Stretch column. Implemented in TableUpdateLayout(). + + // If we have all Fixed columns OR resizing a Fixed column that doesn't come after a Stretch one, we can do an offsetting resize. + // This is the preferred resize path + if (column_0->Flags & ImGuiTableColumnFlags_WidthFixed) + if (!column_1 || table->LeftMostStretchedColumn == -1 || table->Columns[table->LeftMostStretchedColumn].DisplayOrder >= column_0->DisplayOrder) + { + column_0->WidthRequest = column_0_width; + table->IsSettingsDirty = true; + return; + } + + // We can also use previous column if there's no next one (this is used when doing an auto-fit on the right-most stretch column) + if (column_1 == NULL) + column_1 = (column_0->PrevEnabledColumn != -1) ? &table->Columns[column_0->PrevEnabledColumn] : NULL; + if (column_1 == NULL) + return; + + // Resizing from right-side of a Stretch column before a Fixed column forward sizing to left-side of fixed column. + // (old_a + old_b == new_a + new_b) --> (new_a == old_a + old_b - new_b) + float column_1_width = ImMax(column_1->WidthRequest - (column_0_width - column_0->WidthRequest), min_width); + column_0_width = column_0->WidthRequest + column_1->WidthRequest - column_1_width; + IM_ASSERT(column_0_width > 0.0f && column_1_width > 0.0f); + column_0->WidthRequest = column_0_width; + column_1->WidthRequest = column_1_width; + if ((column_0->Flags | column_1->Flags) & ImGuiTableColumnFlags_WidthStretch) + TableUpdateColumnsWeightFromWidth(table); + table->IsSettingsDirty = true; +} + +// Disable clipping then auto-fit, will take 2 frames +// (we don't take a shortcut for unclipped columns to reduce inconsistencies when e.g. resizing multiple columns) +void ImGui::TableSetColumnWidthAutoSingle(ImGuiTable* table, int column_n) +{ + // Single auto width uses auto-fit + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled) + return; + column->CannotSkipItemsQueue = (1 << 0); + table->AutoFitSingleColumn = (ImGuiTableColumnIdx)column_n; +} + +void ImGui::TableSetColumnWidthAutoAll(ImGuiTable* table) +{ + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled && !(column->Flags & ImGuiTableColumnFlags_WidthStretch)) // Cannot reset weight of hidden stretch column + continue; + column->CannotSkipItemsQueue = (1 << 0); + column->AutoFitQueue = (1 << 1); + } +} + +void ImGui::TableUpdateColumnsWeightFromWidth(ImGuiTable* table) +{ + IM_ASSERT(table->LeftMostStretchedColumn != -1 && table->RightMostStretchedColumn != -1); + + // Measure existing quantities + float visible_weight = 0.0f; + float visible_width = 0.0f; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled || !(column->Flags & ImGuiTableColumnFlags_WidthStretch)) + continue; + IM_ASSERT(column->StretchWeight > 0.0f); + visible_weight += column->StretchWeight; + visible_width += column->WidthRequest; + } + IM_ASSERT(visible_weight > 0.0f && visible_width > 0.0f); + + // Apply new weights + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (!column->IsEnabled || !(column->Flags & ImGuiTableColumnFlags_WidthStretch)) + continue; + column->StretchWeight = (column->WidthRequest / visible_width) * visible_weight; + IM_ASSERT(column->StretchWeight > 0.0f); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Drawing +//------------------------------------------------------------------------- +// - TablePushBackgroundChannel() [Internal] +// - TablePopBackgroundChannel() [Internal] +// - TableSetupDrawChannels() [Internal] +// - TableMergeDrawChannels() [Internal] +// - TableGetColumnBorderCol() [Internal] +// - TableDrawBorders() [Internal] +//------------------------------------------------------------------------- + +// Bg2 is used by Selectable (and possibly other widgets) to render to the background. +// Unlike our Bg0/1 channel which we uses for RowBg/CellBg/Borders and where we guarantee all shapes to be CPU-clipped, the Bg2 channel being widgets-facing will rely on regular ClipRect. +void ImGui::TablePushBackgroundChannel() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiTable* table = g.CurrentTable; + + // Optimization: avoid SetCurrentChannel() + PushClipRect() + table->HostBackupInnerClipRect = window->ClipRect; + SetWindowClipRectBeforeSetChannel(window, table->Bg2ClipRectForDrawCmd); + table->DrawSplitter->SetCurrentChannel(window->DrawList, table->Bg2DrawChannelCurrent); +} + +void ImGui::TablePopBackgroundChannel() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiTable* table = g.CurrentTable; + ImGuiTableColumn* column = &table->Columns[table->CurrentColumn]; + + // Optimization: avoid PopClipRect() + SetCurrentChannel() + SetWindowClipRectBeforeSetChannel(window, table->HostBackupInnerClipRect); + table->DrawSplitter->SetCurrentChannel(window->DrawList, column->DrawChannelCurrent); +} + +// Allocate draw channels. Called by TableUpdateLayout() +// - We allocate them following storage order instead of display order so reordering columns won't needlessly +// increase overall dormant memory cost. +// - We isolate headers draw commands in their own channels instead of just altering clip rects. +// This is in order to facilitate merging of draw commands. +// - After crossing FreezeRowsCount, all columns see their current draw channel changed to a second set of channels. +// - We only use the dummy draw channel so we can push a null clipping rectangle into it without affecting other +// channels, while simplifying per-row/per-cell overhead. It will be empty and discarded when merged. +// - We allocate 1 or 2 background draw channels. This is because we know TablePushBackgroundChannel() is only used for +// horizontal spanning. If we allowed vertical spanning we'd need one background draw channel per merge group (1-4). +// Draw channel allocation (before merging): +// - NoClip --> 2+D+1 channels: bg0/1 + bg2 + foreground (same clip rect == always 1 draw call) +// - Clip --> 2+D+N channels +// - FreezeRows --> 2+D+N*2 (unless scrolling value is zero) +// - FreezeRows || FreezeColunns --> 3+D+N*2 (unless scrolling value is zero) +// Where D is 1 if any column is clipped or hidden (dummy channel) otherwise 0. +void ImGui::TableSetupDrawChannels(ImGuiTable* table) +{ + const int freeze_row_multiplier = (table->FreezeRowsCount > 0) ? 2 : 1; + const int channels_for_row = (table->Flags & ImGuiTableFlags_NoClip) ? 1 : table->ColumnsEnabledCount; + const int channels_for_bg = 1 + 1 * freeze_row_multiplier; + const int channels_for_dummy = (table->ColumnsEnabledCount < table->ColumnsCount || (memcmp(table->VisibleMaskByIndex, table->EnabledMaskByIndex, ImBitArrayGetStorageSizeInBytes(table->ColumnsCount)) != 0)) ? +1 : 0; + const int channels_total = channels_for_bg + (channels_for_row * freeze_row_multiplier) + channels_for_dummy; + table->DrawSplitter->Split(table->InnerWindow->DrawList, channels_total); + table->DummyDrawChannel = (ImGuiTableDrawChannelIdx)((channels_for_dummy > 0) ? channels_total - 1 : -1); + table->Bg2DrawChannelCurrent = TABLE_DRAW_CHANNEL_BG2_FROZEN; + table->Bg2DrawChannelUnfrozen = (ImGuiTableDrawChannelIdx)((table->FreezeRowsCount > 0) ? 2 + channels_for_row : TABLE_DRAW_CHANNEL_BG2_FROZEN); + + int draw_channel_current = 2; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->IsVisibleX && column->IsVisibleY) + { + column->DrawChannelFrozen = (ImGuiTableDrawChannelIdx)(draw_channel_current); + column->DrawChannelUnfrozen = (ImGuiTableDrawChannelIdx)(draw_channel_current + (table->FreezeRowsCount > 0 ? channels_for_row + 1 : 0)); + if (!(table->Flags & ImGuiTableFlags_NoClip)) + draw_channel_current++; + } + else + { + column->DrawChannelFrozen = column->DrawChannelUnfrozen = table->DummyDrawChannel; + } + column->DrawChannelCurrent = column->DrawChannelFrozen; + } + + // Initial draw cmd starts with a BgClipRect that matches the one of its host, to facilitate merge draw commands by default. + // All our cell highlight are manually clipped with BgClipRect. When unfreezing it will be made smaller to fit scrolling rect. + // (This technically isn't part of setting up draw channels, but is reasonably related to be done here) + table->BgClipRect = table->InnerClipRect; + table->Bg0ClipRectForDrawCmd = table->OuterWindow->ClipRect; + table->Bg2ClipRectForDrawCmd = table->HostClipRect; + IM_ASSERT(table->BgClipRect.Min.y <= table->BgClipRect.Max.y); +} + +// This function reorder draw channels based on matching clip rectangle, to facilitate merging them. Called by EndTable(). +// For simplicity we call it TableMergeDrawChannels() but in fact it only reorder channels + overwrite ClipRect, +// actual merging is done by table->DrawSplitter.Merge() which is called right after TableMergeDrawChannels(). +// +// Columns where the contents didn't stray off their local clip rectangle can be merged. To achieve +// this we merge their clip rect and make them contiguous in the channel list, so they can be merged +// by the call to DrawSplitter.Merge() following to the call to this function. +// We reorder draw commands by arranging them into a maximum of 4 distinct groups: +// +// 1 group: 2 groups: 2 groups: 4 groups: +// [ 0. ] no freeze [ 0. ] row freeze [ 01 ] col freeze [ 01 ] row+col freeze +// [ .. ] or no scroll [ 2. ] and v-scroll [ .. ] and h-scroll [ 23 ] and v+h-scroll +// +// Each column itself can use 1 channel (row freeze disabled) or 2 channels (row freeze enabled). +// When the contents of a column didn't stray off its limit, we move its channels into the corresponding group +// based on its position (within frozen rows/columns groups or not). +// At the end of the operation our 1-4 groups will each have a ImDrawCmd using the same ClipRect. +// This function assume that each column are pointing to a distinct draw channel, +// otherwise merge_group->ChannelsCount will not match set bit count of merge_group->ChannelsMask. +// +// Column channels will not be merged into one of the 1-4 groups in the following cases: +// - The contents stray off its clipping rectangle (we only compare the MaxX value, not the MinX value). +// Direct ImDrawList calls won't be taken into account by default, if you use them make sure the ImGui:: bounds +// matches, by e.g. calling SetCursorScreenPos(). +// - The channel uses more than one draw command itself. We drop all our attempt at merging stuff here.. +// we could do better but it's going to be rare and probably not worth the hassle. +// Columns for which the draw channel(s) haven't been merged with other will use their own ImDrawCmd. +// +// This function is particularly tricky to understand.. take a breath. +void ImGui::TableMergeDrawChannels(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + ImDrawListSplitter* splitter = table->DrawSplitter; + const bool has_freeze_v = (table->FreezeRowsCount > 0); + const bool has_freeze_h = (table->FreezeColumnsCount > 0); + IM_ASSERT(splitter->_Current == 0); + + // Track which groups we are going to attempt to merge, and which channels goes into each group. + struct MergeGroup + { + ImRect ClipRect; + int ChannelsCount = 0; + ImBitArrayPtr ChannelsMask = NULL; + }; + int merge_group_mask = 0x00; + MergeGroup merge_groups[4]; + + // Use a reusable temp buffer for the merge masks as they are dynamically sized. + const int max_draw_channels = (4 + table->ColumnsCount * 2); + const int size_for_masks_bitarrays_one = (int)ImBitArrayGetStorageSizeInBytes(max_draw_channels); + g.TempBuffer.reserve(size_for_masks_bitarrays_one * 5); + memset(g.TempBuffer.Data, 0, size_for_masks_bitarrays_one * 5); + for (int n = 0; n < IM_ARRAYSIZE(merge_groups); n++) + merge_groups[n].ChannelsMask = (ImBitArrayPtr)(void*)(g.TempBuffer.Data + (size_for_masks_bitarrays_one * n)); + ImBitArrayPtr remaining_mask = (ImBitArrayPtr)(void*)(g.TempBuffer.Data + (size_for_masks_bitarrays_one * 4)); + + // 1. Scan channels and take note of those which can be merged + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + if (!IM_BITARRAY_TESTBIT(table->VisibleMaskByIndex, column_n)) + continue; + ImGuiTableColumn* column = &table->Columns[column_n]; + + const int merge_group_sub_count = has_freeze_v ? 2 : 1; + for (int merge_group_sub_n = 0; merge_group_sub_n < merge_group_sub_count; merge_group_sub_n++) + { + const int channel_no = (merge_group_sub_n == 0) ? column->DrawChannelFrozen : column->DrawChannelUnfrozen; + + // Don't attempt to merge if there are multiple draw calls within the column + ImDrawChannel* src_channel = &splitter->_Channels[channel_no]; + if (src_channel->_CmdBuffer.Size > 0 && src_channel->_CmdBuffer.back().ElemCount == 0 && src_channel->_CmdBuffer.back().UserCallback == NULL) // Equivalent of PopUnusedDrawCmd() + src_channel->_CmdBuffer.pop_back(); + if (src_channel->_CmdBuffer.Size != 1) + continue; + + // Find out the width of this merge group and check if it will fit in our column + // (note that we assume that rendering didn't stray on the left direction. we should need a CursorMinPos to detect it) + if (!(column->Flags & ImGuiTableColumnFlags_NoClip)) + { + float content_max_x; + if (!has_freeze_v) + content_max_x = ImMax(column->ContentMaxXUnfrozen, column->ContentMaxXHeadersUsed); // No row freeze + else if (merge_group_sub_n == 0) + content_max_x = ImMax(column->ContentMaxXFrozen, column->ContentMaxXHeadersUsed); // Row freeze: use width before freeze + else + content_max_x = column->ContentMaxXUnfrozen; // Row freeze: use width after freeze + if (content_max_x > column->ClipRect.Max.x) + continue; + } + + const int merge_group_n = (has_freeze_h && column_n < table->FreezeColumnsCount ? 0 : 1) + (has_freeze_v && merge_group_sub_n == 0 ? 0 : 2); + IM_ASSERT(channel_no < max_draw_channels); + MergeGroup* merge_group = &merge_groups[merge_group_n]; + if (merge_group->ChannelsCount == 0) + merge_group->ClipRect = ImRect(+FLT_MAX, +FLT_MAX, -FLT_MAX, -FLT_MAX); + ImBitArraySetBit(merge_group->ChannelsMask, channel_no); + merge_group->ChannelsCount++; + merge_group->ClipRect.Add(src_channel->_CmdBuffer[0].ClipRect); + merge_group_mask |= (1 << merge_group_n); + } + + // Invalidate current draw channel + // (we don't clear DrawChannelFrozen/DrawChannelUnfrozen solely to facilitate debugging/later inspection of data) + column->DrawChannelCurrent = (ImGuiTableDrawChannelIdx)-1; + } + + // [DEBUG] Display merge groups +#if 0 + if (g.IO.KeyShift) + for (int merge_group_n = 0; merge_group_n < IM_ARRAYSIZE(merge_groups); merge_group_n++) + { + MergeGroup* merge_group = &merge_groups[merge_group_n]; + if (merge_group->ChannelsCount == 0) + continue; + char buf[32]; + ImFormatString(buf, 32, "MG%d:%d", merge_group_n, merge_group->ChannelsCount); + ImVec2 text_pos = merge_group->ClipRect.Min + ImVec2(4, 4); + ImVec2 text_size = CalcTextSize(buf, NULL); + GetForegroundDrawList()->AddRectFilled(text_pos, text_pos + text_size, IM_COL32(0, 0, 0, 255)); + GetForegroundDrawList()->AddText(text_pos, IM_COL32(255, 255, 0, 255), buf, NULL); + GetForegroundDrawList()->AddRect(merge_group->ClipRect.Min, merge_group->ClipRect.Max, IM_COL32(255, 255, 0, 255)); + } +#endif + + // 2. Rewrite channel list in our preferred order + if (merge_group_mask != 0) + { + // We skip channel 0 (Bg0/Bg1) and 1 (Bg2 frozen) from the shuffling since they won't move - see channels allocation in TableSetupDrawChannels(). + const int LEADING_DRAW_CHANNELS = 2; + g.DrawChannelsTempMergeBuffer.resize(splitter->_Count - LEADING_DRAW_CHANNELS); // Use shared temporary storage so the allocation gets amortized + ImDrawChannel* dst_tmp = g.DrawChannelsTempMergeBuffer.Data; + ImBitArraySetBitRange(remaining_mask, LEADING_DRAW_CHANNELS, splitter->_Count); + ImBitArrayClearBit(remaining_mask, table->Bg2DrawChannelUnfrozen); + IM_ASSERT(has_freeze_v == false || table->Bg2DrawChannelUnfrozen != TABLE_DRAW_CHANNEL_BG2_FROZEN); + int remaining_count = splitter->_Count - (has_freeze_v ? LEADING_DRAW_CHANNELS + 1 : LEADING_DRAW_CHANNELS); + //ImRect host_rect = (table->InnerWindow == table->OuterWindow) ? table->InnerClipRect : table->HostClipRect; + ImRect host_rect = table->HostClipRect; + for (int merge_group_n = 0; merge_group_n < IM_ARRAYSIZE(merge_groups); merge_group_n++) + { + if (int merge_channels_count = merge_groups[merge_group_n].ChannelsCount) + { + MergeGroup* merge_group = &merge_groups[merge_group_n]; + ImRect merge_clip_rect = merge_group->ClipRect; + + // Extend outer-most clip limits to match those of host, so draw calls can be merged even if + // outer-most columns have some outer padding offsetting them from their parent ClipRect. + // The principal cases this is dealing with are: + // - On a same-window table (not scrolling = single group), all fitting columns ClipRect -> will extend and match host ClipRect -> will merge + // - Columns can use padding and have left-most ClipRect.Min.x and right-most ClipRect.Max.x != from host ClipRect -> will extend and match host ClipRect -> will merge + // FIXME-TABLE FIXME-WORKRECT: We are wasting a merge opportunity on tables without scrolling if column doesn't fit + // within host clip rect, solely because of the half-padding difference between window->WorkRect and window->InnerClipRect. + if ((merge_group_n & 1) == 0 || !has_freeze_h) + merge_clip_rect.Min.x = ImMin(merge_clip_rect.Min.x, host_rect.Min.x); + if ((merge_group_n & 2) == 0 || !has_freeze_v) + merge_clip_rect.Min.y = ImMin(merge_clip_rect.Min.y, host_rect.Min.y); + if ((merge_group_n & 1) != 0) + merge_clip_rect.Max.x = ImMax(merge_clip_rect.Max.x, host_rect.Max.x); + if ((merge_group_n & 2) != 0 && (table->Flags & ImGuiTableFlags_NoHostExtendY) == 0) + merge_clip_rect.Max.y = ImMax(merge_clip_rect.Max.y, host_rect.Max.y); + //GetForegroundDrawList()->AddRect(merge_group->ClipRect.Min, merge_group->ClipRect.Max, IM_COL32(255, 0, 0, 200), 0.0f, 0, 1.0f); // [DEBUG] + //GetForegroundDrawList()->AddLine(merge_group->ClipRect.Min, merge_clip_rect.Min, IM_COL32(255, 100, 0, 200)); + //GetForegroundDrawList()->AddLine(merge_group->ClipRect.Max, merge_clip_rect.Max, IM_COL32(255, 100, 0, 200)); + remaining_count -= merge_group->ChannelsCount; + for (int n = 0; n < (size_for_masks_bitarrays_one >> 2); n++) + remaining_mask[n] &= ~merge_group->ChannelsMask[n]; + for (int n = 0; n < splitter->_Count && merge_channels_count != 0; n++) + { + // Copy + overwrite new clip rect + if (!IM_BITARRAY_TESTBIT(merge_group->ChannelsMask, n)) + continue; + IM_BITARRAY_CLEARBIT(merge_group->ChannelsMask, n); + merge_channels_count--; + + ImDrawChannel* channel = &splitter->_Channels[n]; + IM_ASSERT(channel->_CmdBuffer.Size == 1 && merge_clip_rect.Contains(ImRect(channel->_CmdBuffer[0].ClipRect))); + channel->_CmdBuffer[0].ClipRect = merge_clip_rect.ToVec4(); + memcpy(dst_tmp++, channel, sizeof(ImDrawChannel)); + } + } + + // Make sure Bg2DrawChannelUnfrozen appears in the middle of our groups (whereas Bg0/Bg1 and Bg2 frozen are fixed to 0 and 1) + if (merge_group_n == 1 && has_freeze_v) + memcpy(dst_tmp++, &splitter->_Channels[table->Bg2DrawChannelUnfrozen], sizeof(ImDrawChannel)); + } + + // Append unmergeable channels that we didn't reorder at the end of the list + for (int n = 0; n < splitter->_Count && remaining_count != 0; n++) + { + if (!IM_BITARRAY_TESTBIT(remaining_mask, n)) + continue; + ImDrawChannel* channel = &splitter->_Channels[n]; + memcpy(dst_tmp++, channel, sizeof(ImDrawChannel)); + remaining_count--; + } + IM_ASSERT(dst_tmp == g.DrawChannelsTempMergeBuffer.Data + g.DrawChannelsTempMergeBuffer.Size); + memcpy(splitter->_Channels.Data + LEADING_DRAW_CHANNELS, g.DrawChannelsTempMergeBuffer.Data, (splitter->_Count - LEADING_DRAW_CHANNELS) * sizeof(ImDrawChannel)); + } +} + +static ImU32 TableGetColumnBorderCol(ImGuiTable* table, int order_n, int column_n) +{ + const bool is_hovered = (table->HoveredColumnBorder == column_n); + const bool is_resized = (table->ResizedColumn == column_n) && (table->InstanceInteracted == table->InstanceCurrent); + const bool is_frozen_separator = (table->FreezeColumnsCount == order_n + 1); + if (is_resized || is_hovered) + return ImGui::GetColorU32(is_resized ? ImGuiCol_SeparatorActive : ImGuiCol_SeparatorHovered); + if (is_frozen_separator || (table->Flags & (ImGuiTableFlags_NoBordersInBody | ImGuiTableFlags_NoBordersInBodyUntilResize))) + return table->BorderColorStrong; + return table->BorderColorLight; +} + +// FIXME-TABLE: This is a mess, need to redesign how we render borders (as some are also done in TableEndRow) +void ImGui::TableDrawBorders(ImGuiTable* table) +{ + ImGuiWindow* inner_window = table->InnerWindow; + if (!table->OuterWindow->ClipRect.Overlaps(table->OuterRect)) + return; + + ImDrawList* inner_drawlist = inner_window->DrawList; + table->DrawSplitter->SetCurrentChannel(inner_drawlist, TABLE_DRAW_CHANNEL_BG0); + inner_drawlist->PushClipRect(table->Bg0ClipRectForDrawCmd.Min, table->Bg0ClipRectForDrawCmd.Max, false); + + // Draw inner border and resizing feedback + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + const float border_size = TABLE_BORDER_SIZE; + const float draw_y1 = ImMax(table->InnerRect.Min.y, (table->FreezeRowsCount >= 1 ? table->InnerRect.Min.y : table->WorkRect.Min.y) + table->AngledHeadersHeight) + ((table->Flags & ImGuiTableFlags_BordersOuterH) ? 1.0f : 0.0f); + const float draw_y2_body = table->InnerRect.Max.y; + const float draw_y2_head = table->IsUsingHeaders ? ImMin(table->InnerRect.Max.y, (table->FreezeRowsCount >= 1 ? table->InnerRect.Min.y : table->WorkRect.Min.y) + table_instance->LastTopHeadersRowHeight) : draw_y1; + if (table->Flags & ImGuiTableFlags_BordersInnerV) + { + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + { + if (!IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + continue; + + const int column_n = table->DisplayOrderToIndex[order_n]; + ImGuiTableColumn* column = &table->Columns[column_n]; + const bool is_hovered = (table->HoveredColumnBorder == column_n); + const bool is_resized = (table->ResizedColumn == column_n) && (table->InstanceInteracted == table->InstanceCurrent); + const bool is_resizable = (column->Flags & (ImGuiTableColumnFlags_NoResize | ImGuiTableColumnFlags_NoDirectResize_)) == 0; + const bool is_frozen_separator = (table->FreezeColumnsCount == order_n + 1); + if (column->MaxX > table->InnerClipRect.Max.x && !is_resized) + continue; + + // Decide whether right-most column is visible + if (column->NextEnabledColumn == -1 && !is_resizable) + if ((table->Flags & ImGuiTableFlags_SizingMask_) != ImGuiTableFlags_SizingFixedSame || (table->Flags & ImGuiTableFlags_NoHostExtendX)) + continue; + if (column->MaxX <= column->ClipRect.Min.x) // FIXME-TABLE FIXME-STYLE: Assume BorderSize==1, this is problematic if we want to increase the border size.. + continue; + + // Draw in outer window so right-most column won't be clipped + // Always draw full height border when being resized/hovered, or on the delimitation of frozen column scrolling. + float draw_y2 = (is_hovered || is_resized || is_frozen_separator || (table->Flags & (ImGuiTableFlags_NoBordersInBody | ImGuiTableFlags_NoBordersInBodyUntilResize)) == 0) ? draw_y2_body : draw_y2_head; + if (draw_y2 > draw_y1) + inner_drawlist->AddLine(ImVec2(column->MaxX, draw_y1), ImVec2(column->MaxX, draw_y2), TableGetColumnBorderCol(table, order_n, column_n), border_size); + } + } + + // Draw outer border + // FIXME: could use AddRect or explicit VLine/HLine helper? + if (table->Flags & ImGuiTableFlags_BordersOuter) + { + // Display outer border offset by 1 which is a simple way to display it without adding an extra draw call + // (Without the offset, in outer_window it would be rendered behind cells, because child windows are above their + // parent. In inner_window, it won't reach out over scrollbars. Another weird solution would be to display part + // of it in inner window, and the part that's over scrollbars in the outer window..) + // Either solution currently won't allow us to use a larger border size: the border would clipped. + const ImRect outer_border = table->OuterRect; + const ImU32 outer_col = table->BorderColorStrong; + if ((table->Flags & ImGuiTableFlags_BordersOuter) == ImGuiTableFlags_BordersOuter) + { + inner_drawlist->AddRect(outer_border.Min, outer_border.Max, outer_col, 0.0f, 0, border_size); + } + else if (table->Flags & ImGuiTableFlags_BordersOuterV) + { + inner_drawlist->AddLine(outer_border.Min, ImVec2(outer_border.Min.x, outer_border.Max.y), outer_col, border_size); + inner_drawlist->AddLine(ImVec2(outer_border.Max.x, outer_border.Min.y), outer_border.Max, outer_col, border_size); + } + else if (table->Flags & ImGuiTableFlags_BordersOuterH) + { + inner_drawlist->AddLine(outer_border.Min, ImVec2(outer_border.Max.x, outer_border.Min.y), outer_col, border_size); + inner_drawlist->AddLine(ImVec2(outer_border.Min.x, outer_border.Max.y), outer_border.Max, outer_col, border_size); + } + } + if ((table->Flags & ImGuiTableFlags_BordersInnerH) && table->RowPosY2 < table->OuterRect.Max.y) + { + // Draw bottom-most row border between it is above outer border. + const float border_y = table->RowPosY2; + if (border_y >= table->BgClipRect.Min.y && border_y < table->BgClipRect.Max.y) + inner_drawlist->AddLine(ImVec2(table->BorderX1, border_y), ImVec2(table->BorderX2, border_y), table->BorderColorLight, border_size); + } + + inner_drawlist->PopClipRect(); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Sorting +//------------------------------------------------------------------------- +// - TableGetSortSpecs() +// - TableFixColumnSortDirection() [Internal] +// - TableGetColumnNextSortDirection() [Internal] +// - TableSetColumnSortDirection() [Internal] +// - TableSortSpecsSanitize() [Internal] +// - TableSortSpecsBuild() [Internal] +//------------------------------------------------------------------------- + +// Return NULL if no sort specs (most often when ImGuiTableFlags_Sortable is not set) +// When 'sort_specs->SpecsDirty == true' you should sort your data. It will be true when sorting specs have +// changed since last call, or the first time. Make sure to set 'SpecsDirty = false' after sorting, +// else you may wastefully sort your data every frame! +// Lifetime: don't hold on this pointer over multiple frames or past any subsequent call to BeginTable()! +ImGuiTableSortSpecs* ImGui::TableGetSortSpecs() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL); + + if (!(table->Flags & ImGuiTableFlags_Sortable)) + return NULL; + + // Require layout (in case TableHeadersRow() hasn't been called) as it may alter IsSortSpecsDirty in some paths. + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + + TableSortSpecsBuild(table); + return &table->SortSpecs; +} + +static inline ImGuiSortDirection TableGetColumnAvailSortDirection(ImGuiTableColumn* column, int n) +{ + IM_ASSERT(n < column->SortDirectionsAvailCount); + return (ImGuiSortDirection)((column->SortDirectionsAvailList >> (n << 1)) & 0x03); +} + +// Fix sort direction if currently set on a value which is unavailable (e.g. activating NoSortAscending/NoSortDescending) +void ImGui::TableFixColumnSortDirection(ImGuiTable* table, ImGuiTableColumn* column) +{ + if (column->SortOrder == -1 || (column->SortDirectionsAvailMask & (1 << column->SortDirection)) != 0) + return; + column->SortDirection = (ImU8)TableGetColumnAvailSortDirection(column, 0); + table->IsSortSpecsDirty = true; +} + +// Calculate next sort direction that would be set after clicking the column +// - If the PreferSortDescending flag is set, we will default to a Descending direction on the first click. +// - Note that the PreferSortAscending flag is never checked, it is essentially the default and therefore a no-op. +IM_STATIC_ASSERT(ImGuiSortDirection_None == 0 && ImGuiSortDirection_Ascending == 1 && ImGuiSortDirection_Descending == 2); +ImGuiSortDirection ImGui::TableGetColumnNextSortDirection(ImGuiTableColumn* column) +{ + IM_ASSERT(column->SortDirectionsAvailCount > 0); + if (column->SortOrder == -1) + return TableGetColumnAvailSortDirection(column, 0); + for (int n = 0; n < 3; n++) + if (column->SortDirection == TableGetColumnAvailSortDirection(column, n)) + return TableGetColumnAvailSortDirection(column, (n + 1) % column->SortDirectionsAvailCount); + IM_ASSERT(0); + return ImGuiSortDirection_None; +} + +// Note that the NoSortAscending/NoSortDescending flags are processed in TableSortSpecsSanitize(), and they may change/revert +// the value of SortDirection. We could technically also do it here but it would be unnecessary and duplicate code. +void ImGui::TableSetColumnSortDirection(int column_n, ImGuiSortDirection sort_direction, bool append_to_sort_specs) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + + if (!(table->Flags & ImGuiTableFlags_SortMulti)) + append_to_sort_specs = false; + if (!(table->Flags & ImGuiTableFlags_SortTristate)) + IM_ASSERT(sort_direction != ImGuiSortDirection_None); + + ImGuiTableColumnIdx sort_order_max = 0; + if (append_to_sort_specs) + for (int other_column_n = 0; other_column_n < table->ColumnsCount; other_column_n++) + sort_order_max = ImMax(sort_order_max, table->Columns[other_column_n].SortOrder); + + ImGuiTableColumn* column = &table->Columns[column_n]; + column->SortDirection = (ImU8)sort_direction; + if (column->SortDirection == ImGuiSortDirection_None) + column->SortOrder = -1; + else if (column->SortOrder == -1 || !append_to_sort_specs) + column->SortOrder = append_to_sort_specs ? sort_order_max + 1 : 0; + + for (int other_column_n = 0; other_column_n < table->ColumnsCount; other_column_n++) + { + ImGuiTableColumn* other_column = &table->Columns[other_column_n]; + if (other_column != column && !append_to_sort_specs) + other_column->SortOrder = -1; + TableFixColumnSortDirection(table, other_column); + } + table->IsSettingsDirty = true; + table->IsSortSpecsDirty = true; +} + +void ImGui::TableSortSpecsSanitize(ImGuiTable* table) +{ + IM_ASSERT(table->Flags & ImGuiTableFlags_Sortable); + + // Clear SortOrder from hidden column and verify that there's no gap or duplicate. + int sort_order_count = 0; + ImU64 sort_order_mask = 0x00; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->SortOrder != -1 && !column->IsEnabled) + column->SortOrder = -1; + if (column->SortOrder == -1) + continue; + sort_order_count++; + sort_order_mask |= ((ImU64)1 << column->SortOrder); + IM_ASSERT(sort_order_count < (int)sizeof(sort_order_mask) * 8); + } + + const bool need_fix_linearize = ((ImU64)1 << sort_order_count) != (sort_order_mask + 1); + const bool need_fix_single_sort_order = (sort_order_count > 1) && !(table->Flags & ImGuiTableFlags_SortMulti); + if (need_fix_linearize || need_fix_single_sort_order) + { + ImU64 fixed_mask = 0x00; + for (int sort_n = 0; sort_n < sort_order_count; sort_n++) + { + // Fix: Rewrite sort order fields if needed so they have no gap or duplicate. + // (e.g. SortOrder 0 disappeared, SortOrder 1..2 exists --> rewrite then as SortOrder 0..1) + int column_with_smallest_sort_order = -1; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if ((fixed_mask & ((ImU64)1 << (ImU64)column_n)) == 0 && table->Columns[column_n].SortOrder != -1) + if (column_with_smallest_sort_order == -1 || table->Columns[column_n].SortOrder < table->Columns[column_with_smallest_sort_order].SortOrder) + column_with_smallest_sort_order = column_n; + IM_ASSERT(column_with_smallest_sort_order != -1); + fixed_mask |= ((ImU64)1 << column_with_smallest_sort_order); + table->Columns[column_with_smallest_sort_order].SortOrder = (ImGuiTableColumnIdx)sort_n; + + // Fix: Make sure only one column has a SortOrder if ImGuiTableFlags_MultiSortable is not set. + if (need_fix_single_sort_order) + { + sort_order_count = 1; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if (column_n != column_with_smallest_sort_order) + table->Columns[column_n].SortOrder = -1; + break; + } + } + } + + // Fallback default sort order (if no column with the ImGuiTableColumnFlags_DefaultSort flag) + if (sort_order_count == 0 && !(table->Flags & ImGuiTableFlags_SortTristate)) + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->IsEnabled && !(column->Flags & ImGuiTableColumnFlags_NoSort)) + { + sort_order_count = 1; + column->SortOrder = 0; + column->SortDirection = (ImU8)TableGetColumnAvailSortDirection(column, 0); + break; + } + } + + table->SortSpecsCount = (ImGuiTableColumnIdx)sort_order_count; +} + +void ImGui::TableSortSpecsBuild(ImGuiTable* table) +{ + bool dirty = table->IsSortSpecsDirty; + if (dirty) + { + TableSortSpecsSanitize(table); + table->SortSpecsMulti.resize(table->SortSpecsCount <= 1 ? 0 : table->SortSpecsCount); + table->SortSpecs.SpecsDirty = true; // Mark as dirty for user + table->IsSortSpecsDirty = false; // Mark as not dirty for us + } + + // Write output + // May be able to move all SortSpecs data from table (48 bytes) to ImGuiTableTempData if we decide to write it back on every BeginTable() + ImGuiTableColumnSortSpecs* sort_specs = (table->SortSpecsCount == 0) ? NULL : (table->SortSpecsCount == 1) ? &table->SortSpecsSingle : table->SortSpecsMulti.Data; + if (dirty && sort_specs != NULL) + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + { + ImGuiTableColumn* column = &table->Columns[column_n]; + if (column->SortOrder == -1) + continue; + IM_ASSERT(column->SortOrder < table->SortSpecsCount); + ImGuiTableColumnSortSpecs* sort_spec = &sort_specs[column->SortOrder]; + sort_spec->ColumnUserID = column->UserID; + sort_spec->ColumnIndex = (ImGuiTableColumnIdx)column_n; + sort_spec->SortOrder = (ImGuiTableColumnIdx)column->SortOrder; + sort_spec->SortDirection = (ImGuiSortDirection)column->SortDirection; + } + + table->SortSpecs.Specs = sort_specs; + table->SortSpecs.SpecsCount = table->SortSpecsCount; +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Headers +//------------------------------------------------------------------------- +// - TableGetHeaderRowHeight() [Internal] +// - TableGetHeaderAngledMaxLabelWidth() [Internal] +// - TableHeadersRow() +// - TableHeader() +// - TableAngledHeadersRow() +// - TableAngledHeadersRowEx() [Internal] +//------------------------------------------------------------------------- + +float ImGui::TableGetHeaderRowHeight() +{ + // Caring for a minor edge case: + // Calculate row height, for the unlikely case that some labels may be taller than others. + // If we didn't do that, uneven header height would highlight but smaller one before the tallest wouldn't catch input for all height. + // In your custom header row you may omit this all together and just call TableNextRow() without a height... + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + float row_height = g.FontSize; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if (IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + if ((table->Columns[column_n].Flags & ImGuiTableColumnFlags_NoHeaderLabel) == 0) + row_height = ImMax(row_height, CalcTextSize(TableGetColumnName(table, column_n)).y); + return row_height + g.Style.CellPadding.y * 2.0f; +} + +float ImGui::TableGetHeaderAngledMaxLabelWidth() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + float width = 0.0f; + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + if (IM_BITARRAY_TESTBIT(table->EnabledMaskByIndex, column_n)) + if (table->Columns[column_n].Flags & ImGuiTableColumnFlags_AngledHeader) + width = ImMax(width, CalcTextSize(TableGetColumnName(table, column_n), NULL, true).x); + return width + g.Style.CellPadding.y * 2.0f; // Swap padding +} + +// [Public] This is a helper to output TableHeader() calls based on the column names declared in TableSetupColumn(). +// The intent is that advanced users willing to create customized headers would not need to use this helper +// and can create their own! For example: TableHeader() may be preceded by Checkbox() or other custom widgets. +// See 'Demo->Tables->Custom headers' for a demonstration of implementing a custom version of this. +// This code is intentionally written to not make much use of internal functions, to give you better direction +// if you need to write your own. +// FIXME-TABLE: TableOpenContextMenu() and TableGetHeaderRowHeight() are not public. +void ImGui::TableHeadersRow() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableHeadersRow() after BeginTable()!"); + + // Call layout if not already done. This is automatically done by TableNextRow: we do it here _only_ to make + // it easier to debug-step in TableUpdateLayout(). Your own version of this function doesn't need this. + if (!table->IsLayoutLocked) + TableUpdateLayout(table); + + // Open row + const float row_height = TableGetHeaderRowHeight(); + TableNextRow(ImGuiTableRowFlags_Headers, row_height); + const float row_y1 = GetCursorScreenPos().y; + if (table->HostSkipItems) // Merely an optimization, you may skip in your own code. + return; + + const int columns_count = TableGetColumnCount(); + for (int column_n = 0; column_n < columns_count; column_n++) + { + if (!TableSetColumnIndex(column_n)) + continue; + + // Push an id to allow empty/unnamed headers. This is also idiomatic as it ensure there is a consistent ID path to access columns (for e.g. automation) + const char* name = (TableGetColumnFlags(column_n) & ImGuiTableColumnFlags_NoHeaderLabel) ? "" : TableGetColumnName(column_n); + PushID(column_n); + TableHeader(name); + PopID(); + } + + // Allow opening popup from the right-most section after the last column. + ImVec2 mouse_pos = ImGui::GetMousePos(); + if (IsMouseReleased(1) && TableGetHoveredColumn() == columns_count) + if (mouse_pos.y >= row_y1 && mouse_pos.y < row_y1 + row_height) + TableOpenContextMenu(columns_count); // Will open a non-column-specific popup. +} + +// Emit a column header (text + optional sort order) +// We cpu-clip text here so that all columns headers can be merged into a same draw call. +// Note that because of how we cpu-clip and display sorting indicators, you _cannot_ use SameLine() after a TableHeader() +void ImGui::TableHeader(const char* label) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + ImGuiTable* table = g.CurrentTable; + IM_ASSERT(table != NULL && "Need to call TableHeader() after BeginTable()!"); + IM_ASSERT(table->CurrentColumn != -1); + const int column_n = table->CurrentColumn; + ImGuiTableColumn* column = &table->Columns[column_n]; + + // Label + if (label == NULL) + label = ""; + const char* label_end = FindRenderedTextEnd(label); + ImVec2 label_size = CalcTextSize(label, label_end, true); + ImVec2 label_pos = window->DC.CursorPos; + + // If we already got a row height, there's use that. + // FIXME-TABLE: Padding problem if the correct outer-padding CellBgRect strays off our ClipRect? + ImRect cell_r = TableGetCellBgRect(table, column_n); + float label_height = ImMax(label_size.y, table->RowMinHeight - table->RowCellPaddingY * 2.0f); + + // Calculate ideal size for sort order arrow + float w_arrow = 0.0f; + float w_sort_text = 0.0f; + bool sort_arrow = false; + char sort_order_suf[4] = ""; + const float ARROW_SCALE = 0.65f; + if ((table->Flags & ImGuiTableFlags_Sortable) && !(column->Flags & ImGuiTableColumnFlags_NoSort)) + { + w_arrow = ImTrunc(g.FontSize * ARROW_SCALE + g.Style.FramePadding.x); + if (column->SortOrder != -1) + sort_arrow = true; + if (column->SortOrder > 0) + { + ImFormatString(sort_order_suf, IM_ARRAYSIZE(sort_order_suf), "%d", column->SortOrder + 1); + w_sort_text = g.Style.ItemInnerSpacing.x + CalcTextSize(sort_order_suf).x; + } + } + + // We feed our unclipped width to the column without writing on CursorMaxPos, so that column is still considered for merging. + float max_pos_x = label_pos.x + label_size.x + w_sort_text + w_arrow; + column->ContentMaxXHeadersUsed = ImMax(column->ContentMaxXHeadersUsed, sort_arrow ? cell_r.Max.x : ImMin(max_pos_x, cell_r.Max.x)); + column->ContentMaxXHeadersIdeal = ImMax(column->ContentMaxXHeadersIdeal, max_pos_x); + + // Keep header highlighted when context menu is open. + ImGuiID id = window->GetID(label); + ImRect bb(cell_r.Min.x, cell_r.Min.y, cell_r.Max.x, ImMax(cell_r.Max.y, cell_r.Min.y + label_height + g.Style.CellPadding.y * 2.0f)); + ItemSize(ImVec2(0.0f, label_height)); // Don't declare unclipped width, it'll be fed ContentMaxPosHeadersIdeal + if (!ItemAdd(bb, id)) + return; + + //GetForegroundDrawList()->AddRect(cell_r.Min, cell_r.Max, IM_COL32(255, 0, 0, 255)); // [DEBUG] + //GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(255, 0, 0, 255)); // [DEBUG] + + // Using AllowOverlap mode because we cover the whole cell, and we want user to be able to submit subsequent items. + const bool highlight = (table->HighlightColumnHeader == column_n); + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, ImGuiButtonFlags_AllowOverlap); + if (held || hovered || highlight) + { + const ImU32 col = GetColorU32(held ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); + //RenderFrame(bb.Min, bb.Max, col, false, 0.0f); + TableSetBgColor(ImGuiTableBgTarget_CellBg, col, table->CurrentColumn); + } + else + { + // Submit single cell bg color in the case we didn't submit a full header row + if ((table->RowFlags & ImGuiTableRowFlags_Headers) == 0) + TableSetBgColor(ImGuiTableBgTarget_CellBg, GetColorU32(ImGuiCol_TableHeaderBg), table->CurrentColumn); + } + RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_Compact | ImGuiNavHighlightFlags_NoRounding); + if (held) + table->HeldHeaderColumn = (ImGuiTableColumnIdx)column_n; + window->DC.CursorPos.y -= g.Style.ItemSpacing.y * 0.5f; + + // Drag and drop to re-order columns. + // FIXME-TABLE: Scroll request while reordering a column and it lands out of the scrolling zone. + if (held && (table->Flags & ImGuiTableFlags_Reorderable) && IsMouseDragging(0) && !g.DragDropActive) + { + // While moving a column it will jump on the other side of the mouse, so we also test for MouseDelta.x + table->ReorderColumn = (ImGuiTableColumnIdx)column_n; + table->InstanceInteracted = table->InstanceCurrent; + + // We don't reorder: through the frozen<>unfrozen line, or through a column that is marked with ImGuiTableColumnFlags_NoReorder. + if (g.IO.MouseDelta.x < 0.0f && g.IO.MousePos.x < cell_r.Min.x) + if (ImGuiTableColumn* prev_column = (column->PrevEnabledColumn != -1) ? &table->Columns[column->PrevEnabledColumn] : NULL) + if (!((column->Flags | prev_column->Flags) & ImGuiTableColumnFlags_NoReorder)) + if ((column->IndexWithinEnabledSet < table->FreezeColumnsRequest) == (prev_column->IndexWithinEnabledSet < table->FreezeColumnsRequest)) + table->ReorderColumnDir = -1; + if (g.IO.MouseDelta.x > 0.0f && g.IO.MousePos.x > cell_r.Max.x) + if (ImGuiTableColumn* next_column = (column->NextEnabledColumn != -1) ? &table->Columns[column->NextEnabledColumn] : NULL) + if (!((column->Flags | next_column->Flags) & ImGuiTableColumnFlags_NoReorder)) + if ((column->IndexWithinEnabledSet < table->FreezeColumnsRequest) == (next_column->IndexWithinEnabledSet < table->FreezeColumnsRequest)) + table->ReorderColumnDir = +1; + } + + // Sort order arrow + const float ellipsis_max = ImMax(cell_r.Max.x - w_arrow - w_sort_text, label_pos.x); + if ((table->Flags & ImGuiTableFlags_Sortable) && !(column->Flags & ImGuiTableColumnFlags_NoSort)) + { + if (column->SortOrder != -1) + { + float x = ImMax(cell_r.Min.x, cell_r.Max.x - w_arrow - w_sort_text); + float y = label_pos.y; + if (column->SortOrder > 0) + { + PushStyleColor(ImGuiCol_Text, GetColorU32(ImGuiCol_Text, 0.70f)); + RenderText(ImVec2(x + g.Style.ItemInnerSpacing.x, y), sort_order_suf); + PopStyleColor(); + x += w_sort_text; + } + RenderArrow(window->DrawList, ImVec2(x, y), GetColorU32(ImGuiCol_Text), column->SortDirection == ImGuiSortDirection_Ascending ? ImGuiDir_Up : ImGuiDir_Down, ARROW_SCALE); + } + + // Handle clicking on column header to adjust Sort Order + if (pressed && table->ReorderColumn != column_n) + { + ImGuiSortDirection sort_direction = TableGetColumnNextSortDirection(column); + TableSetColumnSortDirection(column_n, sort_direction, g.IO.KeyShift); + } + } + + // Render clipped label. Clipping here ensure that in the majority of situations, all our header cells will + // be merged into a single draw call. + //window->DrawList->AddCircleFilled(ImVec2(ellipsis_max, label_pos.y), 40, IM_COL32_WHITE); + RenderTextEllipsis(window->DrawList, label_pos, ImVec2(ellipsis_max, label_pos.y + label_height + g.Style.FramePadding.y), ellipsis_max, ellipsis_max, label, label_end, &label_size); + + const bool text_clipped = label_size.x > (ellipsis_max - label_pos.x); + if (text_clipped && hovered && g.ActiveId == 0) + SetItemTooltip("%.*s", (int)(label_end - label), label); + + // We don't use BeginPopupContextItem() because we want the popup to stay up even after the column is hidden + if (IsMouseReleased(1) && IsItemHovered()) + TableOpenContextMenu(column_n); +} + +// Unlike TableHeadersRow() it is not expected that you can reimplement or customize this with custom widgets. +// FIXME: No hit-testing/button on the angled header. +void ImGui::TableAngledHeadersRow() +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + ImGuiTableTempData* temp_data = table->TempData; + temp_data->AngledHeadersRequests.resize(0); + temp_data->AngledHeadersRequests.reserve(table->ColumnsEnabledCount); + + // Which column needs highlight? + const ImGuiID row_id = GetID("##AngledHeaders"); + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, table->InstanceCurrent); + int highlight_column_n = table->HighlightColumnHeader; + if (highlight_column_n == -1 && table->HoveredColumnBody != -1) + if (table_instance->HoveredRowLast == 0 && table->HoveredColumnBorder == -1 && (g.ActiveId == 0 || g.ActiveId == row_id || (table->IsActiveIdInTable || g.DragDropActive))) + highlight_column_n = table->HoveredColumnBody; + + // Build up request + ImU32 col_header_bg = GetColorU32(ImGuiCol_TableHeaderBg); + ImU32 col_text = GetColorU32(ImGuiCol_Text); + for (int order_n = 0; order_n < table->ColumnsCount; order_n++) + if (IM_BITARRAY_TESTBIT(table->EnabledMaskByDisplayOrder, order_n)) + { + const int column_n = table->DisplayOrderToIndex[order_n]; + ImGuiTableColumn* column = &table->Columns[column_n]; + if ((column->Flags & ImGuiTableColumnFlags_AngledHeader) == 0) // Note: can't rely on ImGuiTableColumnFlags_IsVisible test here. + continue; + ImGuiTableHeaderData request = { (ImGuiTableColumnIdx)column_n, col_text, col_header_bg, (column_n == highlight_column_n) ? GetColorU32(ImGuiCol_Header) : 0 }; + temp_data->AngledHeadersRequests.push_back(request); + } + + // Render row + TableAngledHeadersRowEx(row_id, g.Style.TableAngledHeadersAngle, 0.0f, temp_data->AngledHeadersRequests.Data, temp_data->AngledHeadersRequests.Size); +} + +// Important: data must be fed left to right +void ImGui::TableAngledHeadersRowEx(ImGuiID row_id, float angle, float max_label_width, const ImGuiTableHeaderData* data, int data_count) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + ImGuiWindow* window = g.CurrentWindow; + ImDrawList* draw_list = window->DrawList; + IM_ASSERT(table != NULL && "Need to call TableHeadersRow() after BeginTable()!"); + IM_ASSERT(table->CurrentRow == -1 && "Must be first row"); + + if (max_label_width == 0.0f) + max_label_width = TableGetHeaderAngledMaxLabelWidth(); + + // Angle argument expressed in (-IM_PI/2 .. +IM_PI/2) as it is easier to think about for user. + const bool flip_label = (angle < 0.0f); + angle -= IM_PI * 0.5f; + const float cos_a = ImCos(angle); + const float sin_a = ImSin(angle); + const float label_cos_a = flip_label ? ImCos(angle + IM_PI) : cos_a; + const float label_sin_a = flip_label ? ImSin(angle + IM_PI) : sin_a; + const ImVec2 unit_right = ImVec2(cos_a, sin_a); + + // Calculate our base metrics and set angled headers data _before_ the first call to TableNextRow() + // FIXME-STYLE: Would it be better for user to submit 'max_label_width' or 'row_height' ? One can be derived from the other. + const float header_height = g.FontSize + g.Style.CellPadding.x * 2.0f; + const float row_height = ImTrunc(ImFabs(ImRotate(ImVec2(max_label_width, flip_label ? +header_height : -header_height), cos_a, sin_a).y)); + table->AngledHeadersHeight = row_height; + table->AngledHeadersSlope = (sin_a != 0.0f) ? (cos_a / sin_a) : 0.0f; + const ImVec2 header_angled_vector = unit_right * (row_height / -sin_a); // vector from bottom-left to top-left, and from bottom-right to top-right + + // Declare row, override and draw our own background + TableNextRow(ImGuiTableRowFlags_Headers, row_height); + TableNextColumn(); + const ImRect row_r(table->WorkRect.Min.x, table->BgClipRect.Min.y, table->WorkRect.Max.x, table->RowPosY2); + table->DrawSplitter->SetCurrentChannel(draw_list, TABLE_DRAW_CHANNEL_BG0); + float clip_rect_min_x = table->BgClipRect.Min.x; + if (table->FreezeColumnsCount > 0) + clip_rect_min_x = ImMax(clip_rect_min_x, table->Columns[table->FreezeColumnsCount - 1].MaxX); + TableSetBgColor(ImGuiTableBgTarget_RowBg0, 0); // Cancel + PushClipRect(table->BgClipRect.Min, table->BgClipRect.Max, false); // Span all columns + draw_list->AddRectFilled(ImVec2(table->BgClipRect.Min.x, row_r.Min.y), ImVec2(table->BgClipRect.Max.x, row_r.Max.y), GetColorU32(ImGuiCol_TableHeaderBg, 0.25f)); // FIXME-STYLE: Change row background with an arbitrary color. + PushClipRect(ImVec2(clip_rect_min_x, table->BgClipRect.Min.y), table->BgClipRect.Max, true); // Span all columns + + ButtonBehavior(row_r, row_id, NULL, NULL); + KeepAliveID(row_id); + + const float ascent_scaled = g.Font->Ascent * g.FontScale; // FIXME: Standardize those scaling factors better + const float line_off_for_ascent_x = (ImMax((g.FontSize - ascent_scaled) * 0.5f, 0.0f) / -sin_a) * (flip_label ? -1.0f : 1.0f); + const ImVec2 padding = g.Style.CellPadding; // We will always use swapped component + const ImVec2 align = g.Style.TableAngledHeadersTextAlign; + + // Draw background and labels in first pass, then all borders. + float max_x = 0.0f; + for (int pass = 0; pass < 2; pass++) + for (int order_n = 0; order_n < data_count; order_n++) + { + const ImGuiTableHeaderData* request = &data[order_n]; + const int column_n = request->Index; + ImGuiTableColumn* column = &table->Columns[column_n]; + + ImVec2 bg_shape[4]; + bg_shape[0] = ImVec2(column->MaxX, row_r.Max.y); + bg_shape[1] = ImVec2(column->MinX, row_r.Max.y); + bg_shape[2] = bg_shape[1] + header_angled_vector; + bg_shape[3] = bg_shape[0] + header_angled_vector; + if (pass == 0) + { + // Draw shape + draw_list->AddQuadFilled(bg_shape[0], bg_shape[1], bg_shape[2], bg_shape[3], request->BgColor0); + draw_list->AddQuadFilled(bg_shape[0], bg_shape[1], bg_shape[2], bg_shape[3], request->BgColor1); // Optional highlight + max_x = ImMax(max_x, bg_shape[3].x); + + // Draw label + // - First draw at an offset where RenderTextXXX() function won't meddle with applying current ClipRect, then transform to final offset. + // - Handle multiple lines manually, as we want each lines to follow on the horizontal border, rather than see a whole block rotated. + const char* label_name = TableGetColumnName(table, column_n); + const char* label_name_end = FindRenderedTextEnd(label_name); + const float line_off_step_x = (g.FontSize / -sin_a); + const int label_lines = ImTextCountLines(label_name, label_name_end); + + // Left<>Right alignment + float line_off_curr_x = flip_label ? (label_lines - 1) * line_off_step_x : 0.0f; + float line_off_for_align_x = ImMax((((column->MaxX - column->MinX) - padding.x * 2.0f) - (label_lines * line_off_step_x)), 0.0f) * align.x; + line_off_curr_x += line_off_for_align_x - line_off_for_ascent_x; + + // Register header width + column->ContentMaxXHeadersUsed = column->ContentMaxXHeadersIdeal = column->WorkMinX + ImCeil(label_lines * line_off_step_x - line_off_for_align_x); + + while (label_name < label_name_end) + { + const char* label_name_eol = strchr(label_name, '\n'); + if (label_name_eol == NULL) + label_name_eol = label_name_end; + + // FIXME: Individual line clipping for right-most column is broken for negative angles. + ImVec2 label_size = CalcTextSize(label_name, label_name_eol); + float clip_width = max_label_width - padding.y; // Using padding.y*2.0f would be symmetrical but hide more text. + float clip_height = ImMin(label_size.y, column->ClipRect.Max.x - column->WorkMinX - line_off_curr_x); + ImRect clip_r(window->ClipRect.Min, window->ClipRect.Min + ImVec2(clip_width, clip_height)); + int vtx_idx_begin = draw_list->_VtxCurrentIdx; + PushStyleColor(ImGuiCol_Text, request->TextColor); + RenderTextEllipsis(draw_list, clip_r.Min, clip_r.Max, clip_r.Max.x, clip_r.Max.x, label_name, label_name_eol, &label_size); + PopStyleColor(); + int vtx_idx_end = draw_list->_VtxCurrentIdx; + + // Up<>Down alignment + const float available_space = ImMax(clip_width - label_size.x + ImAbs(padding.x * cos_a) * 2.0f - ImAbs(padding.y * sin_a) * 2.0f, 0.0f); + const float vertical_offset = available_space * align.y * (flip_label ? -1.0f : 1.0f); + + // Rotate and offset label + ImVec2 pivot_in = ImVec2(window->ClipRect.Min.x - vertical_offset, window->ClipRect.Min.y + label_size.y); + ImVec2 pivot_out = ImVec2(column->WorkMinX, row_r.Max.y); + line_off_curr_x += flip_label ? -line_off_step_x : line_off_step_x; + pivot_out += unit_right * padding.y; + if (flip_label) + pivot_out += unit_right * (clip_width - ImMax(0.0f, clip_width - label_size.x)); + pivot_out.x += flip_label ? line_off_curr_x + line_off_step_x : line_off_curr_x; + ShadeVertsTransformPos(draw_list, vtx_idx_begin, vtx_idx_end, pivot_in, label_cos_a, label_sin_a, pivot_out); // Rotate and offset + //if (g.IO.KeyShift) { ImDrawList* fg_dl = GetForegroundDrawList(); vtx_idx_begin = fg_dl->_VtxCurrentIdx; fg_dl->AddRect(clip_r.Min, clip_r.Max, IM_COL32(0, 255, 0, 255), 0.0f, 0, 1.0f); ShadeVertsTransformPos(fg_dl, vtx_idx_begin, fg_dl->_VtxCurrentIdx, pivot_in, label_cos_a, label_sin_a, pivot_out); } + + label_name = label_name_eol + 1; + } + } + if (pass == 1) + { + // Draw border + draw_list->AddLine(bg_shape[0], bg_shape[3], TableGetColumnBorderCol(table, order_n, column_n)); + } + } + PopClipRect(); + PopClipRect(); + table->TempData->AngledHeadersExtraWidth = ImMax(0.0f, max_x - table->Columns[table->RightMostEnabledColumn].MaxX); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Context Menu +//------------------------------------------------------------------------- +// - TableOpenContextMenu() [Internal] +// - TableBeginContextMenuPopup() [Internal] +// - TableDrawDefaultContextMenu() [Internal] +//------------------------------------------------------------------------- + +// Use -1 to open menu not specific to a given column. +void ImGui::TableOpenContextMenu(int column_n) +{ + ImGuiContext& g = *GImGui; + ImGuiTable* table = g.CurrentTable; + if (column_n == -1 && table->CurrentColumn != -1) // When called within a column automatically use this one (for consistency) + column_n = table->CurrentColumn; + if (column_n == table->ColumnsCount) // To facilitate using with TableGetHoveredColumn() + column_n = -1; + IM_ASSERT(column_n >= -1 && column_n < table->ColumnsCount); + if (table->Flags & (ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable)) + { + table->IsContextPopupOpen = true; + table->ContextPopupColumn = (ImGuiTableColumnIdx)column_n; + table->InstanceInteracted = table->InstanceCurrent; + const ImGuiID context_menu_id = ImHashStr("##ContextMenu", 0, table->ID); + OpenPopupEx(context_menu_id, ImGuiPopupFlags_None); + } +} + +bool ImGui::TableBeginContextMenuPopup(ImGuiTable* table) +{ + if (!table->IsContextPopupOpen || table->InstanceCurrent != table->InstanceInteracted) + return false; + const ImGuiID context_menu_id = ImHashStr("##ContextMenu", 0, table->ID); + if (BeginPopupEx(context_menu_id, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings)) + return true; + table->IsContextPopupOpen = false; + return false; +} + +// Output context menu into current window (generally a popup) +// FIXME-TABLE: Ideally this should be writable by the user. Full programmatic access to that data? +// Sections to display are pulled from 'flags_for_section_to_display', which is typically == table->Flags. +// - ImGuiTableFlags_Resizable -> display Sizing menu items +// - ImGuiTableFlags_Reorderable -> display "Reset Order" +////- ImGuiTableFlags_Sortable -> display sorting options (disabled) +// - ImGuiTableFlags_Hideable -> display columns visibility menu items +// It means if you have a custom context menus you can call this section and omit some sections, and add your own. +void ImGui::TableDrawDefaultContextMenu(ImGuiTable* table, ImGuiTableFlags flags_for_section_to_display) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + bool want_separator = false; + const int column_n = (table->ContextPopupColumn >= 0 && table->ContextPopupColumn < table->ColumnsCount) ? table->ContextPopupColumn : -1; + ImGuiTableColumn* column = (column_n != -1) ? &table->Columns[column_n] : NULL; + + // Sizing + if (flags_for_section_to_display & ImGuiTableFlags_Resizable) + { + if (column != NULL) + { + const bool can_resize = !(column->Flags & ImGuiTableColumnFlags_NoResize) && column->IsEnabled; + if (MenuItem(LocalizeGetMsg(ImGuiLocKey_TableSizeOne), NULL, false, can_resize)) // "###SizeOne" + TableSetColumnWidthAutoSingle(table, column_n); + } + + const char* size_all_desc; + if (table->ColumnsEnabledFixedCount == table->ColumnsEnabledCount && (table->Flags & ImGuiTableFlags_SizingMask_) != ImGuiTableFlags_SizingFixedSame) + size_all_desc = LocalizeGetMsg(ImGuiLocKey_TableSizeAllFit); // "###SizeAll" All fixed + else + size_all_desc = LocalizeGetMsg(ImGuiLocKey_TableSizeAllDefault); // "###SizeAll" All stretch or mixed + if (MenuItem(size_all_desc, NULL)) + TableSetColumnWidthAutoAll(table); + want_separator = true; + } + + // Ordering + if (flags_for_section_to_display & ImGuiTableFlags_Reorderable) + { + if (MenuItem(LocalizeGetMsg(ImGuiLocKey_TableResetOrder), NULL, false, !table->IsDefaultDisplayOrder)) + table->IsResetDisplayOrderRequest = true; + want_separator = true; + } + + // Reset all (should work but seems unnecessary/noisy to expose?) + //if (MenuItem("Reset all")) + // table->IsResetAllRequest = true; + + // Sorting + // (modify TableOpenContextMenu() to add _Sortable flag if enabling this) +#if 0 + if ((flags_for_section_to_display & ImGuiTableFlags_Sortable) && column != NULL && (column->Flags & ImGuiTableColumnFlags_NoSort) == 0) + { + if (want_separator) + Separator(); + want_separator = true; + + bool append_to_sort_specs = g.IO.KeyShift; + if (MenuItem("Sort in Ascending Order", NULL, column->SortOrder != -1 && column->SortDirection == ImGuiSortDirection_Ascending, (column->Flags & ImGuiTableColumnFlags_NoSortAscending) == 0)) + TableSetColumnSortDirection(table, column_n, ImGuiSortDirection_Ascending, append_to_sort_specs); + if (MenuItem("Sort in Descending Order", NULL, column->SortOrder != -1 && column->SortDirection == ImGuiSortDirection_Descending, (column->Flags & ImGuiTableColumnFlags_NoSortDescending) == 0)) + TableSetColumnSortDirection(table, column_n, ImGuiSortDirection_Descending, append_to_sort_specs); + } +#endif + + // Hiding / Visibility + if (flags_for_section_to_display & ImGuiTableFlags_Hideable) + { + if (want_separator) + Separator(); + want_separator = true; + + PushItemFlag(ImGuiItemFlags_AutoClosePopups, false); + for (int other_column_n = 0; other_column_n < table->ColumnsCount; other_column_n++) + { + ImGuiTableColumn* other_column = &table->Columns[other_column_n]; + if (other_column->Flags & ImGuiTableColumnFlags_Disabled) + continue; + + const char* name = TableGetColumnName(table, other_column_n); + if (name == NULL || name[0] == 0) + name = ""; + + // Make sure we can't hide the last active column + bool menu_item_active = (other_column->Flags & ImGuiTableColumnFlags_NoHide) ? false : true; + if (other_column->IsUserEnabled && table->ColumnsEnabledCount <= 1) + menu_item_active = false; + if (MenuItem(name, NULL, other_column->IsUserEnabled, menu_item_active)) + other_column->IsUserEnabledNextFrame = !other_column->IsUserEnabled; + } + PopItemFlag(); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Settings (.ini data) +//------------------------------------------------------------------------- +// FIXME: The binding/finding/creating flow are too confusing. +//------------------------------------------------------------------------- +// - TableSettingsInit() [Internal] +// - TableSettingsCalcChunkSize() [Internal] +// - TableSettingsCreate() [Internal] +// - TableSettingsFindByID() [Internal] +// - TableGetBoundSettings() [Internal] +// - TableResetSettings() +// - TableSaveSettings() [Internal] +// - TableLoadSettings() [Internal] +// - TableSettingsHandler_ClearAll() [Internal] +// - TableSettingsHandler_ApplyAll() [Internal] +// - TableSettingsHandler_ReadOpen() [Internal] +// - TableSettingsHandler_ReadLine() [Internal] +// - TableSettingsHandler_WriteAll() [Internal] +// - TableSettingsInstallHandler() [Internal] +//------------------------------------------------------------------------- +// [Init] 1: TableSettingsHandler_ReadXXXX() Load and parse .ini file into TableSettings. +// [Main] 2: TableLoadSettings() When table is created, bind Table to TableSettings, serialize TableSettings data into Table. +// [Main] 3: TableSaveSettings() When table properties are modified, serialize Table data into bound or new TableSettings, mark .ini as dirty. +// [Main] 4: TableSettingsHandler_WriteAll() When .ini file is dirty (which can come from other source), save TableSettings into .ini file. +//------------------------------------------------------------------------- + +// Clear and initialize empty settings instance +static void TableSettingsInit(ImGuiTableSettings* settings, ImGuiID id, int columns_count, int columns_count_max) +{ + IM_PLACEMENT_NEW(settings) ImGuiTableSettings(); + ImGuiTableColumnSettings* settings_column = settings->GetColumnSettings(); + for (int n = 0; n < columns_count_max; n++, settings_column++) + IM_PLACEMENT_NEW(settings_column) ImGuiTableColumnSettings(); + settings->ID = id; + settings->ColumnsCount = (ImGuiTableColumnIdx)columns_count; + settings->ColumnsCountMax = (ImGuiTableColumnIdx)columns_count_max; + settings->WantApply = true; +} + +static size_t TableSettingsCalcChunkSize(int columns_count) +{ + return sizeof(ImGuiTableSettings) + (size_t)columns_count * sizeof(ImGuiTableColumnSettings); +} + +ImGuiTableSettings* ImGui::TableSettingsCreate(ImGuiID id, int columns_count) +{ + ImGuiContext& g = *GImGui; + ImGuiTableSettings* settings = g.SettingsTables.alloc_chunk(TableSettingsCalcChunkSize(columns_count)); + TableSettingsInit(settings, id, columns_count, columns_count); + return settings; +} + +// Find existing settings +ImGuiTableSettings* ImGui::TableSettingsFindByID(ImGuiID id) +{ + // FIXME-OPT: Might want to store a lookup map for this? + ImGuiContext& g = *GImGui; + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + if (settings->ID == id) + return settings; + return NULL; +} + +// Get settings for a given table, NULL if none +ImGuiTableSettings* ImGui::TableGetBoundSettings(ImGuiTable* table) +{ + if (table->SettingsOffset != -1) + { + ImGuiContext& g = *GImGui; + ImGuiTableSettings* settings = g.SettingsTables.ptr_from_offset(table->SettingsOffset); + IM_ASSERT(settings->ID == table->ID); + if (settings->ColumnsCountMax >= table->ColumnsCount) + return settings; // OK + settings->ID = 0; // Invalidate storage, we won't fit because of a count change + } + return NULL; +} + +// Restore initial state of table (with or without saved settings) +void ImGui::TableResetSettings(ImGuiTable* table) +{ + table->IsInitializing = table->IsSettingsDirty = true; + table->IsResetAllRequest = false; + table->IsSettingsRequestLoad = false; // Don't reload from ini + table->SettingsLoadedFlags = ImGuiTableFlags_None; // Mark as nothing loaded so our initialized data becomes authoritative +} + +void ImGui::TableSaveSettings(ImGuiTable* table) +{ + table->IsSettingsDirty = false; + if (table->Flags & ImGuiTableFlags_NoSavedSettings) + return; + + // Bind or create settings data + ImGuiContext& g = *GImGui; + ImGuiTableSettings* settings = TableGetBoundSettings(table); + if (settings == NULL) + { + settings = TableSettingsCreate(table->ID, table->ColumnsCount); + table->SettingsOffset = g.SettingsTables.offset_from_ptr(settings); + } + settings->ColumnsCount = (ImGuiTableColumnIdx)table->ColumnsCount; + + // Serialize ImGuiTable/ImGuiTableColumn into ImGuiTableSettings/ImGuiTableColumnSettings + IM_ASSERT(settings->ID == table->ID); + IM_ASSERT(settings->ColumnsCount == table->ColumnsCount && settings->ColumnsCountMax >= settings->ColumnsCount); + ImGuiTableColumn* column = table->Columns.Data; + ImGuiTableColumnSettings* column_settings = settings->GetColumnSettings(); + + bool save_ref_scale = false; + settings->SaveFlags = ImGuiTableFlags_None; + for (int n = 0; n < table->ColumnsCount; n++, column++, column_settings++) + { + const float width_or_weight = (column->Flags & ImGuiTableColumnFlags_WidthStretch) ? column->StretchWeight : column->WidthRequest; + column_settings->WidthOrWeight = width_or_weight; + column_settings->Index = (ImGuiTableColumnIdx)n; + column_settings->DisplayOrder = column->DisplayOrder; + column_settings->SortOrder = column->SortOrder; + column_settings->SortDirection = column->SortDirection; + column_settings->IsEnabled = column->IsUserEnabled; + column_settings->IsStretch = (column->Flags & ImGuiTableColumnFlags_WidthStretch) ? 1 : 0; + if ((column->Flags & ImGuiTableColumnFlags_WidthStretch) == 0) + save_ref_scale = true; + + // We skip saving some data in the .ini file when they are unnecessary to restore our state. + // Note that fixed width where initial width was derived from auto-fit will always be saved as InitStretchWeightOrWidth will be 0.0f. + // FIXME-TABLE: We don't have logic to easily compare SortOrder to DefaultSortOrder yet so it's always saved when present. + if (width_or_weight != column->InitStretchWeightOrWidth) + settings->SaveFlags |= ImGuiTableFlags_Resizable; + if (column->DisplayOrder != n) + settings->SaveFlags |= ImGuiTableFlags_Reorderable; + if (column->SortOrder != -1) + settings->SaveFlags |= ImGuiTableFlags_Sortable; + if (column->IsUserEnabled != ((column->Flags & ImGuiTableColumnFlags_DefaultHide) == 0)) + settings->SaveFlags |= ImGuiTableFlags_Hideable; + } + settings->SaveFlags &= table->Flags; + settings->RefScale = save_ref_scale ? table->RefScale : 0.0f; + + MarkIniSettingsDirty(); +} + +void ImGui::TableLoadSettings(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + table->IsSettingsRequestLoad = false; + if (table->Flags & ImGuiTableFlags_NoSavedSettings) + return; + + // Bind settings + ImGuiTableSettings* settings; + if (table->SettingsOffset == -1) + { + settings = TableSettingsFindByID(table->ID); + if (settings == NULL) + return; + if (settings->ColumnsCount != table->ColumnsCount) // Allow settings if columns count changed. We could otherwise decide to return... + table->IsSettingsDirty = true; + table->SettingsOffset = g.SettingsTables.offset_from_ptr(settings); + } + else + { + settings = TableGetBoundSettings(table); + } + + table->SettingsLoadedFlags = settings->SaveFlags; + table->RefScale = settings->RefScale; + + // Serialize ImGuiTableSettings/ImGuiTableColumnSettings into ImGuiTable/ImGuiTableColumn + ImGuiTableColumnSettings* column_settings = settings->GetColumnSettings(); + ImU64 display_order_mask = 0; + for (int data_n = 0; data_n < settings->ColumnsCount; data_n++, column_settings++) + { + int column_n = column_settings->Index; + if (column_n < 0 || column_n >= table->ColumnsCount) + continue; + + ImGuiTableColumn* column = &table->Columns[column_n]; + if (settings->SaveFlags & ImGuiTableFlags_Resizable) + { + if (column_settings->IsStretch) + column->StretchWeight = column_settings->WidthOrWeight; + else + column->WidthRequest = column_settings->WidthOrWeight; + column->AutoFitQueue = 0x00; + } + if (settings->SaveFlags & ImGuiTableFlags_Reorderable) + column->DisplayOrder = column_settings->DisplayOrder; + else + column->DisplayOrder = (ImGuiTableColumnIdx)column_n; + display_order_mask |= (ImU64)1 << column->DisplayOrder; + column->IsUserEnabled = column->IsUserEnabledNextFrame = column_settings->IsEnabled; + column->SortOrder = column_settings->SortOrder; + column->SortDirection = column_settings->SortDirection; + } + + // Validate and fix invalid display order data + const ImU64 expected_display_order_mask = (settings->ColumnsCount == 64) ? ~0 : ((ImU64)1 << settings->ColumnsCount) - 1; + if (display_order_mask != expected_display_order_mask) + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->Columns[column_n].DisplayOrder = (ImGuiTableColumnIdx)column_n; + + // Rebuild index + for (int column_n = 0; column_n < table->ColumnsCount; column_n++) + table->DisplayOrderToIndex[table->Columns[column_n].DisplayOrder] = (ImGuiTableColumnIdx)column_n; +} + +static void TableSettingsHandler_ClearAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (int i = 0; i != g.Tables.GetMapSize(); i++) + if (ImGuiTable* table = g.Tables.TryGetMapData(i)) + table->SettingsOffset = -1; + g.SettingsTables.clear(); +} + +// Apply to existing windows (if any) +static void TableSettingsHandler_ApplyAll(ImGuiContext* ctx, ImGuiSettingsHandler*) +{ + ImGuiContext& g = *ctx; + for (int i = 0; i != g.Tables.GetMapSize(); i++) + if (ImGuiTable* table = g.Tables.TryGetMapData(i)) + { + table->IsSettingsRequestLoad = true; + table->SettingsOffset = -1; + } +} + +static void* TableSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name) +{ + ImGuiID id = 0; + int columns_count = 0; + if (sscanf(name, "0x%08X,%d", &id, &columns_count) < 2) + return NULL; + + if (ImGuiTableSettings* settings = ImGui::TableSettingsFindByID(id)) + { + if (settings->ColumnsCountMax >= columns_count) + { + TableSettingsInit(settings, id, columns_count, settings->ColumnsCountMax); // Recycle + return settings; + } + settings->ID = 0; // Invalidate storage, we won't fit because of a count change + } + return ImGui::TableSettingsCreate(id, columns_count); +} + +static void TableSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line) +{ + // "Column 0 UserID=0x42AD2D21 Width=100 Visible=1 Order=0 Sort=0v" + ImGuiTableSettings* settings = (ImGuiTableSettings*)entry; + float f = 0.0f; + int column_n = 0, r = 0, n = 0; + + if (sscanf(line, "RefScale=%f", &f) == 1) { settings->RefScale = f; return; } + + if (sscanf(line, "Column %d%n", &column_n, &r) == 1) + { + if (column_n < 0 || column_n >= settings->ColumnsCount) + return; + line = ImStrSkipBlank(line + r); + char c = 0; + ImGuiTableColumnSettings* column = settings->GetColumnSettings() + column_n; + column->Index = (ImGuiTableColumnIdx)column_n; + if (sscanf(line, "UserID=0x%08X%n", (ImU32*)&n, &r)==1) { line = ImStrSkipBlank(line + r); column->UserID = (ImGuiID)n; } + if (sscanf(line, "Width=%d%n", &n, &r) == 1) { line = ImStrSkipBlank(line + r); column->WidthOrWeight = (float)n; column->IsStretch = 0; settings->SaveFlags |= ImGuiTableFlags_Resizable; } + if (sscanf(line, "Weight=%f%n", &f, &r) == 1) { line = ImStrSkipBlank(line + r); column->WidthOrWeight = f; column->IsStretch = 1; settings->SaveFlags |= ImGuiTableFlags_Resizable; } + if (sscanf(line, "Visible=%d%n", &n, &r) == 1) { line = ImStrSkipBlank(line + r); column->IsEnabled = (ImU8)n; settings->SaveFlags |= ImGuiTableFlags_Hideable; } + if (sscanf(line, "Order=%d%n", &n, &r) == 1) { line = ImStrSkipBlank(line + r); column->DisplayOrder = (ImGuiTableColumnIdx)n; settings->SaveFlags |= ImGuiTableFlags_Reorderable; } + if (sscanf(line, "Sort=%d%c%n", &n, &c, &r) == 2) { line = ImStrSkipBlank(line + r); column->SortOrder = (ImGuiTableColumnIdx)n; column->SortDirection = (c == '^') ? ImGuiSortDirection_Descending : ImGuiSortDirection_Ascending; settings->SaveFlags |= ImGuiTableFlags_Sortable; } + } +} + +static void TableSettingsHandler_WriteAll(ImGuiContext* ctx, ImGuiSettingsHandler* handler, ImGuiTextBuffer* buf) +{ + ImGuiContext& g = *ctx; + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + { + if (settings->ID == 0) // Skip ditched settings + continue; + + // TableSaveSettings() may clear some of those flags when we establish that the data can be stripped + // (e.g. Order was unchanged) + const bool save_size = (settings->SaveFlags & ImGuiTableFlags_Resizable) != 0; + const bool save_visible = (settings->SaveFlags & ImGuiTableFlags_Hideable) != 0; + const bool save_order = (settings->SaveFlags & ImGuiTableFlags_Reorderable) != 0; + const bool save_sort = (settings->SaveFlags & ImGuiTableFlags_Sortable) != 0; + if (!save_size && !save_visible && !save_order && !save_sort) + continue; + + buf->reserve(buf->size() + 30 + settings->ColumnsCount * 50); // ballpark reserve + buf->appendf("[%s][0x%08X,%d]\n", handler->TypeName, settings->ID, settings->ColumnsCount); + if (settings->RefScale != 0.0f) + buf->appendf("RefScale=%g\n", settings->RefScale); + ImGuiTableColumnSettings* column = settings->GetColumnSettings(); + for (int column_n = 0; column_n < settings->ColumnsCount; column_n++, column++) + { + // "Column 0 UserID=0x42AD2D21 Width=100 Visible=1 Order=0 Sort=0v" + bool save_column = column->UserID != 0 || save_size || save_visible || save_order || (save_sort && column->SortOrder != -1); + if (!save_column) + continue; + buf->appendf("Column %-2d", column_n); + if (column->UserID != 0) { buf->appendf(" UserID=%08X", column->UserID); } + if (save_size && column->IsStretch) { buf->appendf(" Weight=%.4f", column->WidthOrWeight); } + if (save_size && !column->IsStretch) { buf->appendf(" Width=%d", (int)column->WidthOrWeight); } + if (save_visible) { buf->appendf(" Visible=%d", column->IsEnabled); } + if (save_order) { buf->appendf(" Order=%d", column->DisplayOrder); } + if (save_sort && column->SortOrder != -1) { buf->appendf(" Sort=%d%c", column->SortOrder, (column->SortDirection == ImGuiSortDirection_Ascending) ? 'v' : '^'); } + buf->append("\n"); + } + buf->append("\n"); + } +} + +void ImGui::TableSettingsAddSettingsHandler() +{ + ImGuiSettingsHandler ini_handler; + ini_handler.TypeName = "Table"; + ini_handler.TypeHash = ImHashStr("Table"); + ini_handler.ClearAllFn = TableSettingsHandler_ClearAll; + ini_handler.ReadOpenFn = TableSettingsHandler_ReadOpen; + ini_handler.ReadLineFn = TableSettingsHandler_ReadLine; + ini_handler.ApplyAllFn = TableSettingsHandler_ApplyAll; + ini_handler.WriteAllFn = TableSettingsHandler_WriteAll; + AddSettingsHandler(&ini_handler); +} + +//------------------------------------------------------------------------- +// [SECTION] Tables: Garbage Collection +//------------------------------------------------------------------------- +// - TableRemove() [Internal] +// - TableGcCompactTransientBuffers() [Internal] +// - TableGcCompactSettings() [Internal] +//------------------------------------------------------------------------- + +// Remove Table (currently only used by TestEngine) +void ImGui::TableRemove(ImGuiTable* table) +{ + //IMGUI_DEBUG_PRINT("TableRemove() id=0x%08X\n", table->ID); + ImGuiContext& g = *GImGui; + int table_idx = g.Tables.GetIndex(table); + //memset(table->RawData.Data, 0, table->RawData.size_in_bytes()); + //memset(table, 0, sizeof(ImGuiTable)); + g.Tables.Remove(table->ID, table); + g.TablesLastTimeActive[table_idx] = -1.0f; +} + +// Free up/compact internal Table buffers for when it gets unused +void ImGui::TableGcCompactTransientBuffers(ImGuiTable* table) +{ + //IMGUI_DEBUG_PRINT("TableGcCompactTransientBuffers() id=0x%08X\n", table->ID); + ImGuiContext& g = *GImGui; + IM_ASSERT(table->MemoryCompacted == false); + table->SortSpecs.Specs = NULL; + table->SortSpecsMulti.clear(); + table->IsSortSpecsDirty = true; // FIXME: In theory shouldn't have to leak into user performing a sort on resume. + table->ColumnsNames.clear(); + table->MemoryCompacted = true; + for (int n = 0; n < table->ColumnsCount; n++) + table->Columns[n].NameOffset = -1; + g.TablesLastTimeActive[g.Tables.GetIndex(table)] = -1.0f; +} + +void ImGui::TableGcCompactTransientBuffers(ImGuiTableTempData* temp_data) +{ + temp_data->DrawSplitter.ClearFreeMemory(); + temp_data->LastTimeActive = -1.0f; +} + +// Compact and remove unused settings data (currently only used by TestEngine) +void ImGui::TableGcCompactSettings() +{ + ImGuiContext& g = *GImGui; + int required_memory = 0; + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + if (settings->ID != 0) + required_memory += (int)TableSettingsCalcChunkSize(settings->ColumnsCount); + if (required_memory == g.SettingsTables.Buf.Size) + return; + ImChunkStream new_chunk_stream; + new_chunk_stream.Buf.reserve(required_memory); + for (ImGuiTableSettings* settings = g.SettingsTables.begin(); settings != NULL; settings = g.SettingsTables.next_chunk(settings)) + if (settings->ID != 0) + memcpy(new_chunk_stream.alloc_chunk(TableSettingsCalcChunkSize(settings->ColumnsCount)), settings, TableSettingsCalcChunkSize(settings->ColumnsCount)); + g.SettingsTables.swap(new_chunk_stream); +} + + +//------------------------------------------------------------------------- +// [SECTION] Tables: Debugging +//------------------------------------------------------------------------- +// - DebugNodeTable() [Internal] +//------------------------------------------------------------------------- + +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + +static const char* DebugNodeTableGetSizingPolicyDesc(ImGuiTableFlags sizing_policy) +{ + sizing_policy &= ImGuiTableFlags_SizingMask_; + if (sizing_policy == ImGuiTableFlags_SizingFixedFit) { return "FixedFit"; } + if (sizing_policy == ImGuiTableFlags_SizingFixedSame) { return "FixedSame"; } + if (sizing_policy == ImGuiTableFlags_SizingStretchProp) { return "StretchProp"; } + if (sizing_policy == ImGuiTableFlags_SizingStretchSame) { return "StretchSame"; } + return "N/A"; +} + +void ImGui::DebugNodeTable(ImGuiTable* table) +{ + ImGuiContext& g = *GImGui; + const bool is_active = (table->LastFrameActive >= g.FrameCount - 2); // Note that fully clipped early out scrolling tables will appear as inactive here. + if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } + bool open = TreeNode(table, "Table 0x%08X (%d columns, in '%s')%s", table->ID, table->ColumnsCount, table->OuterWindow->Name, is_active ? "" : " *Inactive*"); + if (!is_active) { PopStyleColor(); } + if (IsItemHovered()) + GetForegroundDrawList()->AddRect(table->OuterRect.Min, table->OuterRect.Max, IM_COL32(255, 255, 0, 255)); + if (IsItemVisible() && table->HoveredColumnBody != -1) + GetForegroundDrawList()->AddRect(GetItemRectMin(), GetItemRectMax(), IM_COL32(255, 255, 0, 255)); + if (!open) + return; + if (table->InstanceCurrent > 0) + Text("** %d instances of same table! Some data below will refer to last instance.", table->InstanceCurrent + 1); + if (g.IO.ConfigDebugIsDebuggerPresent) + { + if (DebugBreakButton("**DebugBreak**", "in BeginTable()")) + g.DebugBreakInTable = table->ID; + SameLine(); + } + + bool clear_settings = SmallButton("Clear settings"); + BulletText("OuterRect: Pos: (%.1f,%.1f) Size: (%.1f,%.1f) Sizing: '%s'", table->OuterRect.Min.x, table->OuterRect.Min.y, table->OuterRect.GetWidth(), table->OuterRect.GetHeight(), DebugNodeTableGetSizingPolicyDesc(table->Flags)); + BulletText("ColumnsGivenWidth: %.1f, ColumnsAutoFitWidth: %.1f, InnerWidth: %.1f%s", table->ColumnsGivenWidth, table->ColumnsAutoFitWidth, table->InnerWidth, table->InnerWidth == 0.0f ? " (auto)" : ""); + BulletText("CellPaddingX: %.1f, CellSpacingX: %.1f/%.1f, OuterPaddingX: %.1f", table->CellPaddingX, table->CellSpacingX1, table->CellSpacingX2, table->OuterPaddingX); + BulletText("HoveredColumnBody: %d, HoveredColumnBorder: %d", table->HoveredColumnBody, table->HoveredColumnBorder); + BulletText("ResizedColumn: %d, ReorderColumn: %d, HeldHeaderColumn: %d", table->ResizedColumn, table->ReorderColumn, table->HeldHeaderColumn); + for (int n = 0; n < table->InstanceCurrent + 1; n++) + { + ImGuiTableInstanceData* table_instance = TableGetInstanceData(table, n); + BulletText("Instance %d: HoveredRow: %d, LastOuterHeight: %.2f", n, table_instance->HoveredRowLast, table_instance->LastOuterHeight); + } + //BulletText("BgDrawChannels: %d/%d", 0, table->BgDrawChannelUnfrozen); + float sum_weights = 0.0f; + for (int n = 0; n < table->ColumnsCount; n++) + if (table->Columns[n].Flags & ImGuiTableColumnFlags_WidthStretch) + sum_weights += table->Columns[n].StretchWeight; + for (int n = 0; n < table->ColumnsCount; n++) + { + ImGuiTableColumn* column = &table->Columns[n]; + const char* name = TableGetColumnName(table, n); + char buf[512]; + ImFormatString(buf, IM_ARRAYSIZE(buf), + "Column %d order %d '%s': offset %+.2f to %+.2f%s\n" + "Enabled: %d, VisibleX/Y: %d/%d, RequestOutput: %d, SkipItems: %d, DrawChannels: %d,%d\n" + "WidthGiven: %.1f, Request/Auto: %.1f/%.1f, StretchWeight: %.3f (%.1f%%)\n" + "MinX: %.1f, MaxX: %.1f (%+.1f), ClipRect: %.1f to %.1f (+%.1f)\n" + "ContentWidth: %.1f,%.1f, HeadersUsed/Ideal %.1f/%.1f\n" + "Sort: %d%s, UserID: 0x%08X, Flags: 0x%04X: %s%s%s..", + n, column->DisplayOrder, name, column->MinX - table->WorkRect.Min.x, column->MaxX - table->WorkRect.Min.x, (n < table->FreezeColumnsRequest) ? " (Frozen)" : "", + column->IsEnabled, column->IsVisibleX, column->IsVisibleY, column->IsRequestOutput, column->IsSkipItems, column->DrawChannelFrozen, column->DrawChannelUnfrozen, + column->WidthGiven, column->WidthRequest, column->WidthAuto, column->StretchWeight, column->StretchWeight > 0.0f ? (column->StretchWeight / sum_weights) * 100.0f : 0.0f, + column->MinX, column->MaxX, column->MaxX - column->MinX, column->ClipRect.Min.x, column->ClipRect.Max.x, column->ClipRect.Max.x - column->ClipRect.Min.x, + column->ContentMaxXFrozen - column->WorkMinX, column->ContentMaxXUnfrozen - column->WorkMinX, column->ContentMaxXHeadersUsed - column->WorkMinX, column->ContentMaxXHeadersIdeal - column->WorkMinX, + column->SortOrder, (column->SortDirection == ImGuiSortDirection_Ascending) ? " (Asc)" : (column->SortDirection == ImGuiSortDirection_Descending) ? " (Des)" : "", column->UserID, column->Flags, + (column->Flags & ImGuiTableColumnFlags_WidthStretch) ? "WidthStretch " : "", + (column->Flags & ImGuiTableColumnFlags_WidthFixed) ? "WidthFixed " : "", + (column->Flags & ImGuiTableColumnFlags_NoResize) ? "NoResize " : ""); + Bullet(); + Selectable(buf); + if (IsItemHovered()) + { + ImRect r(column->MinX, table->OuterRect.Min.y, column->MaxX, table->OuterRect.Max.y); + GetForegroundDrawList()->AddRect(r.Min, r.Max, IM_COL32(255, 255, 0, 255)); + } + } + if (ImGuiTableSettings* settings = TableGetBoundSettings(table)) + DebugNodeTableSettings(settings); + if (clear_settings) + table->IsResetAllRequest = true; + TreePop(); +} + +void ImGui::DebugNodeTableSettings(ImGuiTableSettings* settings) +{ + if (!TreeNode((void*)(intptr_t)settings->ID, "Settings 0x%08X (%d columns)", settings->ID, settings->ColumnsCount)) + return; + BulletText("SaveFlags: 0x%08X", settings->SaveFlags); + BulletText("ColumnsCount: %d (max %d)", settings->ColumnsCount, settings->ColumnsCountMax); + for (int n = 0; n < settings->ColumnsCount; n++) + { + ImGuiTableColumnSettings* column_settings = &settings->GetColumnSettings()[n]; + ImGuiSortDirection sort_dir = (column_settings->SortOrder != -1) ? (ImGuiSortDirection)column_settings->SortDirection : ImGuiSortDirection_None; + BulletText("Column %d Order %d SortOrder %d %s Vis %d %s %7.3f UserID 0x%08X", + n, column_settings->DisplayOrder, column_settings->SortOrder, + (sort_dir == ImGuiSortDirection_Ascending) ? "Asc" : (sort_dir == ImGuiSortDirection_Descending) ? "Des" : "---", + column_settings->IsEnabled, column_settings->IsStretch ? "Weight" : "Width ", column_settings->WidthOrWeight, column_settings->UserID); + } + TreePop(); +} + +#else // #ifndef IMGUI_DISABLE_DEBUG_TOOLS + +void ImGui::DebugNodeTable(ImGuiTable*) {} +void ImGui::DebugNodeTableSettings(ImGuiTableSettings*) {} + +#endif + + +//------------------------------------------------------------------------- +// [SECTION] Columns, BeginColumns, EndColumns, etc. +// (This is a legacy API, prefer using BeginTable/EndTable!) +//------------------------------------------------------------------------- +// FIXME: sizing is lossy when columns width is very small (default width may turn negative etc.) +//------------------------------------------------------------------------- +// - SetWindowClipRectBeforeSetChannel() [Internal] +// - GetColumnIndex() +// - GetColumnsCount() +// - GetColumnOffset() +// - GetColumnWidth() +// - SetColumnOffset() +// - SetColumnWidth() +// - PushColumnClipRect() [Internal] +// - PushColumnsBackground() [Internal] +// - PopColumnsBackground() [Internal] +// - FindOrCreateColumns() [Internal] +// - GetColumnsID() [Internal] +// - BeginColumns() +// - NextColumn() +// - EndColumns() +// - Columns() +//------------------------------------------------------------------------- + +// [Internal] Small optimization to avoid calls to PopClipRect/SetCurrentChannel/PushClipRect in sequences, +// they would meddle many times with the underlying ImDrawCmd. +// Instead, we do a preemptive overwrite of clipping rectangle _without_ altering the command-buffer and let +// the subsequent single call to SetCurrentChannel() does it things once. +void ImGui::SetWindowClipRectBeforeSetChannel(ImGuiWindow* window, const ImRect& clip_rect) +{ + ImVec4 clip_rect_vec4 = clip_rect.ToVec4(); + window->ClipRect = clip_rect; + window->DrawList->_CmdHeader.ClipRect = clip_rect_vec4; + window->DrawList->_ClipRectStack.Data[window->DrawList->_ClipRectStack.Size - 1] = clip_rect_vec4; +} + +int ImGui::GetColumnIndex() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CurrentColumns ? window->DC.CurrentColumns->Current : 0; +} + +int ImGui::GetColumnsCount() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + return window->DC.CurrentColumns ? window->DC.CurrentColumns->Count : 1; +} + +float ImGui::GetColumnOffsetFromNorm(const ImGuiOldColumns* columns, float offset_norm) +{ + return offset_norm * (columns->OffMaxX - columns->OffMinX); +} + +float ImGui::GetColumnNormFromOffset(const ImGuiOldColumns* columns, float offset) +{ + return offset / (columns->OffMaxX - columns->OffMinX); +} + +static const float COLUMNS_HIT_RECT_HALF_THICKNESS = 4.0f; + +static float GetDraggedColumnOffset(ImGuiOldColumns* columns, int column_index) +{ + // Active (dragged) column always follow mouse. The reason we need this is that dragging a column to the right edge of an auto-resizing + // window creates a feedback loop because we store normalized positions. So while dragging we enforce absolute positioning. + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(column_index > 0); // We are not supposed to drag column 0. + IM_ASSERT(g.ActiveId == columns->ID + ImGuiID(column_index)); + + float x = g.IO.MousePos.x - g.ActiveIdClickOffset.x + ImTrunc(COLUMNS_HIT_RECT_HALF_THICKNESS * g.CurrentDpiScale) - window->Pos.x; + x = ImMax(x, ImGui::GetColumnOffset(column_index - 1) + g.Style.ColumnsMinSpacing); + if ((columns->Flags & ImGuiOldColumnFlags_NoPreserveWidths)) + x = ImMin(x, ImGui::GetColumnOffset(column_index + 1) - g.Style.ColumnsMinSpacing); + + return x; +} + +float ImGui::GetColumnOffset(int column_index) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns == NULL) + return 0.0f; + + if (column_index < 0) + column_index = columns->Current; + IM_ASSERT(column_index < columns->Columns.Size); + + const float t = columns->Columns[column_index].OffsetNorm; + const float x_offset = ImLerp(columns->OffMinX, columns->OffMaxX, t); + return x_offset; +} + +static float GetColumnWidthEx(ImGuiOldColumns* columns, int column_index, bool before_resize = false) +{ + if (column_index < 0) + column_index = columns->Current; + + float offset_norm; + if (before_resize) + offset_norm = columns->Columns[column_index + 1].OffsetNormBeforeResize - columns->Columns[column_index].OffsetNormBeforeResize; + else + offset_norm = columns->Columns[column_index + 1].OffsetNorm - columns->Columns[column_index].OffsetNorm; + return ImGui::GetColumnOffsetFromNorm(columns, offset_norm); +} + +float ImGui::GetColumnWidth(int column_index) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns == NULL) + return GetContentRegionAvail().x; + + if (column_index < 0) + column_index = columns->Current; + return GetColumnOffsetFromNorm(columns, columns->Columns[column_index + 1].OffsetNorm - columns->Columns[column_index].OffsetNorm); +} + +void ImGui::SetColumnOffset(int column_index, float offset) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiOldColumns* columns = window->DC.CurrentColumns; + IM_ASSERT(columns != NULL); + + if (column_index < 0) + column_index = columns->Current; + IM_ASSERT(column_index < columns->Columns.Size); + + const bool preserve_width = !(columns->Flags & ImGuiOldColumnFlags_NoPreserveWidths) && (column_index < columns->Count - 1); + const float width = preserve_width ? GetColumnWidthEx(columns, column_index, columns->IsBeingResized) : 0.0f; + + if (!(columns->Flags & ImGuiOldColumnFlags_NoForceWithinWindow)) + offset = ImMin(offset, columns->OffMaxX - g.Style.ColumnsMinSpacing * (columns->Count - column_index)); + columns->Columns[column_index].OffsetNorm = GetColumnNormFromOffset(columns, offset - columns->OffMinX); + + if (preserve_width) + SetColumnOffset(column_index + 1, offset + ImMax(g.Style.ColumnsMinSpacing, width)); +} + +void ImGui::SetColumnWidth(int column_index, float width) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + IM_ASSERT(columns != NULL); + + if (column_index < 0) + column_index = columns->Current; + SetColumnOffset(column_index + 1, GetColumnOffset(column_index) + width); +} + +void ImGui::PushColumnClipRect(int column_index) +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (column_index < 0) + column_index = columns->Current; + + ImGuiOldColumnData* column = &columns->Columns[column_index]; + PushClipRect(column->ClipRect.Min, column->ClipRect.Max, false); +} + +// Get into the columns background draw command (which is generally the same draw command as before we called BeginColumns) +void ImGui::PushColumnsBackground() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns->Count == 1) + return; + + // Optimization: avoid SetCurrentChannel() + PushClipRect() + columns->HostBackupClipRect = window->ClipRect; + SetWindowClipRectBeforeSetChannel(window, columns->HostInitialClipRect); + columns->Splitter.SetCurrentChannel(window->DrawList, 0); +} + +void ImGui::PopColumnsBackground() +{ + ImGuiWindow* window = GetCurrentWindowRead(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns->Count == 1) + return; + + // Optimization: avoid PopClipRect() + SetCurrentChannel() + SetWindowClipRectBeforeSetChannel(window, columns->HostBackupClipRect); + columns->Splitter.SetCurrentChannel(window->DrawList, columns->Current + 1); +} + +ImGuiOldColumns* ImGui::FindOrCreateColumns(ImGuiWindow* window, ImGuiID id) +{ + // We have few columns per window so for now we don't need bother much with turning this into a faster lookup. + for (int n = 0; n < window->ColumnsStorage.Size; n++) + if (window->ColumnsStorage[n].ID == id) + return &window->ColumnsStorage[n]; + + window->ColumnsStorage.push_back(ImGuiOldColumns()); + ImGuiOldColumns* columns = &window->ColumnsStorage.back(); + columns->ID = id; + return columns; +} + +ImGuiID ImGui::GetColumnsID(const char* str_id, int columns_count) +{ + ImGuiWindow* window = GetCurrentWindow(); + + // Differentiate column ID with an arbitrary prefix for cases where users name their columns set the same as another widget. + // In addition, when an identifier isn't explicitly provided we include the number of columns in the hash to make it uniquer. + PushID(0x11223347 + (str_id ? 0 : columns_count)); + ImGuiID id = window->GetID(str_id ? str_id : "columns"); + PopID(); + + return id; +} + +void ImGui::BeginColumns(const char* str_id, int columns_count, ImGuiOldColumnFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + IM_ASSERT(columns_count >= 1); + IM_ASSERT(window->DC.CurrentColumns == NULL); // Nested columns are currently not supported + + // Acquire storage for the columns set + ImGuiID id = GetColumnsID(str_id, columns_count); + ImGuiOldColumns* columns = FindOrCreateColumns(window, id); + IM_ASSERT(columns->ID == id); + columns->Current = 0; + columns->Count = columns_count; + columns->Flags = flags; + window->DC.CurrentColumns = columns; + window->DC.NavIsScrollPushableX = false; // Shortcut for NavUpdateCurrentWindowIsScrollPushableX(); + + columns->HostCursorPosY = window->DC.CursorPos.y; + columns->HostCursorMaxPosX = window->DC.CursorMaxPos.x; + columns->HostInitialClipRect = window->ClipRect; + columns->HostBackupParentWorkRect = window->ParentWorkRect; + window->ParentWorkRect = window->WorkRect; + + // Set state for first column + // We aim so that the right-most column will have the same clipping width as other after being clipped by parent ClipRect + const float column_padding = g.Style.ItemSpacing.x; + const float half_clip_extend_x = ImTrunc(ImMax(window->WindowPadding.x * 0.5f, window->WindowBorderSize)); + const float max_1 = window->WorkRect.Max.x + column_padding - ImMax(column_padding - window->WindowPadding.x, 0.0f); + const float max_2 = window->WorkRect.Max.x + half_clip_extend_x; + columns->OffMinX = window->DC.Indent.x - column_padding + ImMax(column_padding - window->WindowPadding.x, 0.0f); + columns->OffMaxX = ImMax(ImMin(max_1, max_2) - window->Pos.x, columns->OffMinX + 1.0f); + columns->LineMinY = columns->LineMaxY = window->DC.CursorPos.y; + + // Clear data if columns count changed + if (columns->Columns.Size != 0 && columns->Columns.Size != columns_count + 1) + columns->Columns.resize(0); + + // Initialize default widths + columns->IsFirstFrame = (columns->Columns.Size == 0); + if (columns->Columns.Size == 0) + { + columns->Columns.reserve(columns_count + 1); + for (int n = 0; n < columns_count + 1; n++) + { + ImGuiOldColumnData column; + column.OffsetNorm = n / (float)columns_count; + columns->Columns.push_back(column); + } + } + + for (int n = 0; n < columns_count; n++) + { + // Compute clipping rectangle + ImGuiOldColumnData* column = &columns->Columns[n]; + float clip_x1 = IM_ROUND(window->Pos.x + GetColumnOffset(n)); + float clip_x2 = IM_ROUND(window->Pos.x + GetColumnOffset(n + 1) - 1.0f); + column->ClipRect = ImRect(clip_x1, -FLT_MAX, clip_x2, +FLT_MAX); + column->ClipRect.ClipWithFull(window->ClipRect); + } + + if (columns->Count > 1) + { + columns->Splitter.Split(window->DrawList, 1 + columns->Count); + columns->Splitter.SetCurrentChannel(window->DrawList, 1); + PushColumnClipRect(0); + } + + // We don't generally store Indent.x inside ColumnsOffset because it may be manipulated by the user. + float offset_0 = GetColumnOffset(columns->Current); + float offset_1 = GetColumnOffset(columns->Current + 1); + float width = offset_1 - offset_0; + PushItemWidth(width * 0.65f); + window->DC.ColumnsOffset.x = ImMax(column_padding - window->WindowPadding.x, 0.0f); + window->DC.CursorPos.x = IM_TRUNC(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + window->WorkRect.Max.x = window->Pos.x + offset_1 - column_padding; + window->WorkRect.Max.y = window->ContentRegionRect.Max.y; +} + +void ImGui::NextColumn() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems || window->DC.CurrentColumns == NULL) + return; + + ImGuiContext& g = *GImGui; + ImGuiOldColumns* columns = window->DC.CurrentColumns; + + if (columns->Count == 1) + { + window->DC.CursorPos.x = IM_TRUNC(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + IM_ASSERT(columns->Current == 0); + return; + } + + // Next column + if (++columns->Current == columns->Count) + columns->Current = 0; + + PopItemWidth(); + + // Optimization: avoid PopClipRect() + SetCurrentChannel() + PushClipRect() + // (which would needlessly attempt to update commands in the wrong channel, then pop or overwrite them), + ImGuiOldColumnData* column = &columns->Columns[columns->Current]; + SetWindowClipRectBeforeSetChannel(window, column->ClipRect); + columns->Splitter.SetCurrentChannel(window->DrawList, columns->Current + 1); + + const float column_padding = g.Style.ItemSpacing.x; + columns->LineMaxY = ImMax(columns->LineMaxY, window->DC.CursorPos.y); + if (columns->Current > 0) + { + // Columns 1+ ignore IndentX (by canceling it out) + // FIXME-COLUMNS: Unnecessary, could be locked? + window->DC.ColumnsOffset.x = GetColumnOffset(columns->Current) - window->DC.Indent.x + column_padding; + } + else + { + // New row/line: column 0 honor IndentX. + window->DC.ColumnsOffset.x = ImMax(column_padding - window->WindowPadding.x, 0.0f); + window->DC.IsSameLine = false; + columns->LineMinY = columns->LineMaxY; + } + window->DC.CursorPos.x = IM_TRUNC(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + window->DC.CursorPos.y = columns->LineMinY; + window->DC.CurrLineSize = ImVec2(0.0f, 0.0f); + window->DC.CurrLineTextBaseOffset = 0.0f; + + // FIXME-COLUMNS: Share code with BeginColumns() - move code on columns setup. + float offset_0 = GetColumnOffset(columns->Current); + float offset_1 = GetColumnOffset(columns->Current + 1); + float width = offset_1 - offset_0; + PushItemWidth(width * 0.65f); + window->WorkRect.Max.x = window->Pos.x + offset_1 - column_padding; +} + +void ImGui::EndColumns() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + ImGuiOldColumns* columns = window->DC.CurrentColumns; + IM_ASSERT(columns != NULL); + + PopItemWidth(); + if (columns->Count > 1) + { + PopClipRect(); + columns->Splitter.Merge(window->DrawList); + } + + const ImGuiOldColumnFlags flags = columns->Flags; + columns->LineMaxY = ImMax(columns->LineMaxY, window->DC.CursorPos.y); + window->DC.CursorPos.y = columns->LineMaxY; + if (!(flags & ImGuiOldColumnFlags_GrowParentContentsSize)) + window->DC.CursorMaxPos.x = columns->HostCursorMaxPosX; // Restore cursor max pos, as columns don't grow parent + + // Draw columns borders and handle resize + // The IsBeingResized flag ensure we preserve pre-resize columns width so back-and-forth are not lossy + bool is_being_resized = false; + if (!(flags & ImGuiOldColumnFlags_NoBorder) && !window->SkipItems) + { + // We clip Y boundaries CPU side because very long triangles are mishandled by some GPU drivers. + const float y1 = ImMax(columns->HostCursorPosY, window->ClipRect.Min.y); + const float y2 = ImMin(window->DC.CursorPos.y, window->ClipRect.Max.y); + int dragging_column = -1; + for (int n = 1; n < columns->Count; n++) + { + ImGuiOldColumnData* column = &columns->Columns[n]; + float x = window->Pos.x + GetColumnOffset(n); + const ImGuiID column_id = columns->ID + ImGuiID(n); + const float column_hit_hw = ImTrunc(COLUMNS_HIT_RECT_HALF_THICKNESS * g.CurrentDpiScale); + const ImRect column_hit_rect(ImVec2(x - column_hit_hw, y1), ImVec2(x + column_hit_hw, y2)); + if (!ItemAdd(column_hit_rect, column_id, NULL, ImGuiItemFlags_NoNav)) + continue; + + bool hovered = false, held = false; + if (!(flags & ImGuiOldColumnFlags_NoResize)) + { + ButtonBehavior(column_hit_rect, column_id, &hovered, &held); + if (hovered || held) + SetMouseCursor(ImGuiMouseCursor_ResizeEW); + if (held && !(column->Flags & ImGuiOldColumnFlags_NoResize)) + dragging_column = n; + } + + // Draw column + const ImU32 col = GetColorU32(held ? ImGuiCol_SeparatorActive : hovered ? ImGuiCol_SeparatorHovered : ImGuiCol_Separator); + const float xi = IM_TRUNC(x); + window->DrawList->AddLine(ImVec2(xi, y1 + 1.0f), ImVec2(xi, y2), col); + } + + // Apply dragging after drawing the column lines, so our rendered lines are in sync with how items were displayed during the frame. + if (dragging_column != -1) + { + if (!columns->IsBeingResized) + for (int n = 0; n < columns->Count + 1; n++) + columns->Columns[n].OffsetNormBeforeResize = columns->Columns[n].OffsetNorm; + columns->IsBeingResized = is_being_resized = true; + float x = GetDraggedColumnOffset(columns, dragging_column); + SetColumnOffset(dragging_column, x); + } + } + columns->IsBeingResized = is_being_resized; + + window->WorkRect = window->ParentWorkRect; + window->ParentWorkRect = columns->HostBackupParentWorkRect; + window->DC.CurrentColumns = NULL; + window->DC.ColumnsOffset.x = 0.0f; + window->DC.CursorPos.x = IM_TRUNC(window->Pos.x + window->DC.Indent.x + window->DC.ColumnsOffset.x); + NavUpdateCurrentWindowIsScrollPushableX(); +} + +void ImGui::Columns(int columns_count, const char* id, bool borders) +{ + ImGuiWindow* window = GetCurrentWindow(); + IM_ASSERT(columns_count >= 1); + + ImGuiOldColumnFlags flags = (borders ? 0 : ImGuiOldColumnFlags_NoBorder); + //flags |= ImGuiOldColumnFlags_NoPreserveWidths; // NB: Legacy behavior + ImGuiOldColumns* columns = window->DC.CurrentColumns; + if (columns != NULL && columns->Count == columns_count && columns->Flags == flags) + return; + + if (columns != NULL) + EndColumns(); + + if (columns_count != 1) + BeginColumns(id, columns_count, flags); +} + +//------------------------------------------------------------------------- + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imgui_widgets.cpp b/external/lumin/thirdparty/imgui/imgui_widgets.cpp new file mode 100644 index 0000000..5c687bc --- /dev/null +++ b/external/lumin/thirdparty/imgui/imgui_widgets.cpp @@ -0,0 +1,10250 @@ +// dear imgui, v1.91.3 WIP +// (widgets code) + +/* + +Index of this file: + +// [SECTION] Forward Declarations +// [SECTION] Widgets: Text, etc. +// [SECTION] Widgets: Main (Button, Image, Checkbox, RadioButton, ProgressBar, Bullet, etc.) +// [SECTION] Widgets: Low-level Layout helpers (Spacing, Dummy, NewLine, Separator, etc.) +// [SECTION] Widgets: ComboBox +// [SECTION] Data Type and Data Formatting Helpers +// [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc. +// [SECTION] Widgets: SliderScalar, SliderFloat, SliderInt, etc. +// [SECTION] Widgets: InputScalar, InputFloat, InputInt, etc. +// [SECTION] Widgets: InputText, InputTextMultiline +// [SECTION] Widgets: ColorEdit, ColorPicker, ColorButton, etc. +// [SECTION] Widgets: TreeNode, CollapsingHeader, etc. +// [SECTION] Widgets: Selectable +// [SECTION] Widgets: Typing-Select support +// [SECTION] Widgets: Box-Select support +// [SECTION] Widgets: Multi-Select support +// [SECTION] Widgets: Multi-Select helpers +// [SECTION] Widgets: ListBox +// [SECTION] Widgets: PlotLines, PlotHistogram +// [SECTION] Widgets: Value helpers +// [SECTION] Widgets: MenuItem, BeginMenu, EndMenu, etc. +// [SECTION] Widgets: BeginTabBar, EndTabBar, etc. +// [SECTION] Widgets: BeginTabItem, EndTabItem, etc. +// [SECTION] Widgets: Columns, BeginColumns, EndColumns, etc. + +*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) +#define _CRT_SECURE_NO_WARNINGS +#endif + +#ifndef IMGUI_DEFINE_MATH_OPERATORS +#define IMGUI_DEFINE_MATH_OPERATORS +#endif + +#include "imgui.h" +#ifndef IMGUI_DISABLE +#include "imgui_internal.h" + +// System includes +#include // intptr_t + +//------------------------------------------------------------------------- +// Warnings +//------------------------------------------------------------------------- + +// Visual Studio warnings +#ifdef _MSC_VER +#pragma warning (disable: 4127) // condition expression is constant +#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen +#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later +#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types +#endif +#pragma warning (disable: 26451) // [Static Analyzer] Arithmetic overflow : Using operator 'xxx' on a 4 byte value and then casting the result to a 8 byte value. Cast the value to the wider type before calling operator 'xxx' to avoid overflow(io.2). +#pragma warning (disable: 26812) // [Static Analyzer] The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). +#endif + +// Clang/GCC warnings with -Weverything +#if defined(__clang__) +#if __has_warning("-Wunknown-warning-option") +#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: unknown warning group 'xxx' // not all warnings are known by all Clang versions and they tend to be rename-happy.. so ignoring warnings triggers new warnings on some configuration. Great! +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" // warning: unknown warning group 'xxx' +#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast // yes, they are more terse. +#pragma clang diagnostic ignored "-Wfloat-equal" // warning: comparing floating point with == or != is unsafe // storing and comparing against same constants (typically 0.0f) is ok. +#pragma clang diagnostic ignored "-Wformat-nonliteral" // warning: format string is not a string literal // passing non-literal to vsnformat(). yes, user passing incorrect format strings can crash the code. +#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness +#pragma clang diagnostic ignored "-Wunused-macros" // warning: macro is not used // we define snprintf/vsnprintf on Windows so they are available, but not always used. +#pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" // warning: zero as null pointer constant // some standard header variations use #define NULL 0 +#pragma clang diagnostic ignored "-Wdouble-promotion" // warning: implicit conversion from 'float' to 'double' when passing argument to function // using printf() is a misery with this as C++ va_arg ellipsis changes float to double. +#pragma clang diagnostic ignored "-Wenum-enum-conversion" // warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') +#pragma clang diagnostic ignored "-Wdeprecated-enum-enum-conversion"// warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#pragma clang diagnostic ignored "-Wimplicit-int-float-conversion" // warning: implicit conversion from 'xxx' to 'float' may lose precision +#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" // warning: 'xxx' is an unsafe pointer used for buffer access +#elif defined(__GNUC__) +#pragma GCC diagnostic ignored "-Wpragmas" // warning: unknown option after '#pragma GCC diagnostic' kind +#pragma GCC diagnostic ignored "-Wformat-nonliteral" // warning: format not a string literal, format string not checked +#pragma GCC diagnostic ignored "-Wclass-memaccess" // [__GNUC__ >= 8] warning: 'memset/memcpy' clearing/writing an object of type 'xxxx' with no trivial copy-assignment; use assignment or value-initialization instead +#pragma GCC diagnostic ignored "-Wdeprecated-enum-enum-conversion" // warning: bitwise operation between different enumeration types ('XXXFlags_' and 'XXXFlagsPrivate_') is deprecated +#endif + +//------------------------------------------------------------------------- +// Data +//------------------------------------------------------------------------- + +// Widgets +static const float DRAGDROP_HOLD_TO_OPEN_TIMER = 0.70f; // Time for drag-hold to activate items accepting the ImGuiButtonFlags_PressedOnDragDropHold button behavior. +static const float DRAG_MOUSE_THRESHOLD_FACTOR = 0.50f; // Multiplier for the default value of io.MouseDragThreshold to make DragFloat/DragInt react faster to mouse drags. + +// Those MIN/MAX values are not define because we need to point to them +static const signed char IM_S8_MIN = -128; +static const signed char IM_S8_MAX = 127; +static const unsigned char IM_U8_MIN = 0; +static const unsigned char IM_U8_MAX = 0xFF; +static const signed short IM_S16_MIN = -32768; +static const signed short IM_S16_MAX = 32767; +static const unsigned short IM_U16_MIN = 0; +static const unsigned short IM_U16_MAX = 0xFFFF; +static const ImS32 IM_S32_MIN = INT_MIN; // (-2147483647 - 1), (0x80000000); +static const ImS32 IM_S32_MAX = INT_MAX; // (2147483647), (0x7FFFFFFF) +static const ImU32 IM_U32_MIN = 0; +static const ImU32 IM_U32_MAX = UINT_MAX; // (0xFFFFFFFF) +#ifdef LLONG_MIN +static const ImS64 IM_S64_MIN = LLONG_MIN; // (-9223372036854775807ll - 1ll); +static const ImS64 IM_S64_MAX = LLONG_MAX; // (9223372036854775807ll); +#else +static const ImS64 IM_S64_MIN = -9223372036854775807LL - 1; +static const ImS64 IM_S64_MAX = 9223372036854775807LL; +#endif +static const ImU64 IM_U64_MIN = 0; +#ifdef ULLONG_MAX +static const ImU64 IM_U64_MAX = ULLONG_MAX; // (0xFFFFFFFFFFFFFFFFull); +#else +static const ImU64 IM_U64_MAX = (2ULL * 9223372036854775807LL + 1); +#endif + +//------------------------------------------------------------------------- +// [SECTION] Forward Declarations +//------------------------------------------------------------------------- + +// For InputTextEx() +static bool InputTextFilterCharacter(ImGuiContext* ctx, unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data, bool input_source_is_clipboard = false); +static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end); +static ImVec2 InputTextCalcTextSize(ImGuiContext* ctx, const char* text_begin, const char* text_end, const char** remaining = NULL, ImVec2* out_offset = NULL, bool stop_on_new_line = false); + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Text, etc. +//------------------------------------------------------------------------- +// - TextEx() [Internal] +// - TextUnformatted() +// - Text() +// - TextV() +// - TextColored() +// - TextColoredV() +// - TextDisabled() +// - TextDisabledV() +// - TextWrapped() +// - TextWrappedV() +// - LabelText() +// - LabelTextV() +// - BulletText() +// - BulletTextV() +//------------------------------------------------------------------------- + +void ImGui::TextEx(const char* text, const char* text_end, ImGuiTextFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + ImGuiContext& g = *GImGui; + + // Accept null ranges + if (text == text_end) + text = text_end = ""; + + // Calculate length + const char* text_begin = text; + if (text_end == NULL) + text_end = text + strlen(text); // FIXME-OPT + + const ImVec2 text_pos(window->DC.CursorPos.x, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + const float wrap_pos_x = window->DC.TextWrapPos; + const bool wrap_enabled = (wrap_pos_x >= 0.0f); + if (text_end - text <= 2000 || wrap_enabled) + { + // Common case + const float wrap_width = wrap_enabled ? CalcWrapWidthForPos(window->DC.CursorPos, wrap_pos_x) : 0.0f; + const ImVec2 text_size = CalcTextSize(text_begin, text_end, false, wrap_width); + + ImRect bb(text_pos, text_pos + text_size); + ItemSize(text_size, 0.0f); + if (!ItemAdd(bb, 0)) + return; + + // Render (we don't hide text after ## in this end-user function) + RenderTextWrapped(bb.Min, text_begin, text_end, wrap_width); + } + else + { + // Long text! + // Perform manual coarse clipping to optimize for long multi-line text + // - From this point we will only compute the width of lines that are visible. Optimization only available when word-wrapping is disabled. + // - We also don't vertically center the text within the line full height, which is unlikely to matter because we are likely the biggest and only item on the line. + // - We use memchr(), pay attention that well optimized versions of those str/mem functions are much faster than a casually written loop. + const char* line = text; + const float line_height = GetTextLineHeight(); + ImVec2 text_size(0, 0); + + // Lines to skip (can't skip when logging text) + ImVec2 pos = text_pos; + if (!g.LogEnabled) + { + int lines_skippable = (int)((window->ClipRect.Min.y - text_pos.y) / line_height); + if (lines_skippable > 0) + { + int lines_skipped = 0; + while (line < text_end && lines_skipped < lines_skippable) + { + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + if ((flags & ImGuiTextFlags_NoWidthForLargeClippedText) == 0) + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end).x); + line = line_end + 1; + lines_skipped++; + } + pos.y += lines_skipped * line_height; + } + } + + // Lines to render + if (line < text_end) + { + ImRect line_rect(pos, pos + ImVec2(FLT_MAX, line_height)); + while (line < text_end) + { + if (IsClippedEx(line_rect, 0)) + break; + + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end).x); + RenderText(pos, line, line_end, false); + line = line_end + 1; + line_rect.Min.y += line_height; + line_rect.Max.y += line_height; + pos.y += line_height; + } + + // Count remaining lines + int lines_skipped = 0; + while (line < text_end) + { + const char* line_end = (const char*)memchr(line, '\n', text_end - line); + if (!line_end) + line_end = text_end; + if ((flags & ImGuiTextFlags_NoWidthForLargeClippedText) == 0) + text_size.x = ImMax(text_size.x, CalcTextSize(line, line_end).x); + line = line_end + 1; + lines_skipped++; + } + pos.y += lines_skipped * line_height; + } + text_size.y = (pos - text_pos).y; + + ImRect bb(text_pos, text_pos + text_size); + ItemSize(text_size, 0.0f); + ItemAdd(bb, 0); + } +} + +void ImGui::TextUnformatted(const char* text, const char* text_end) +{ + TextEx(text, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); +} + +void ImGui::Text(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextV(fmt, args); + va_end(args); +} + +void ImGui::TextV(const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + const char* text, *text_end; + ImFormatStringToTempBufferV(&text, &text_end, fmt, args); + TextEx(text, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); +} + +void ImGui::TextColored(const ImVec4& col, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextColoredV(col, fmt, args); + va_end(args); +} + +void ImGui::TextColoredV(const ImVec4& col, const char* fmt, va_list args) +{ + PushStyleColor(ImGuiCol_Text, col); + TextV(fmt, args); + PopStyleColor(); +} + +void ImGui::TextDisabled(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextDisabledV(fmt, args); + va_end(args); +} + +void ImGui::TextDisabledV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + PushStyleColor(ImGuiCol_Text, g.Style.Colors[ImGuiCol_TextDisabled]); + TextV(fmt, args); + PopStyleColor(); +} + +void ImGui::TextWrapped(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + TextWrappedV(fmt, args); + va_end(args); +} + +void ImGui::TextWrappedV(const char* fmt, va_list args) +{ + ImGuiContext& g = *GImGui; + const bool need_backup = (g.CurrentWindow->DC.TextWrapPos < 0.0f); // Keep existing wrap position if one is already set + if (need_backup) + PushTextWrapPos(0.0f); + TextV(fmt, args); + if (need_backup) + PopTextWrapPos(); +} + +void ImGui::LabelText(const char* label, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + LabelTextV(label, fmt, args); + va_end(args); +} + +// Add a label+text combo aligned to other label+value widgets +void ImGui::LabelTextV(const char* label, const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const float w = CalcItemWidth(); + + const char* value_text_begin, *value_text_end; + ImFormatStringToTempBufferV(&value_text_begin, &value_text_end, fmt, args); + const ImVec2 value_size = CalcTextSize(value_text_begin, value_text_end, false); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const ImVec2 pos = window->DC.CursorPos; + const ImRect value_bb(pos, pos + ImVec2(w, value_size.y + style.FramePadding.y * 2)); + const ImRect total_bb(pos, pos + ImVec2(w + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), ImMax(value_size.y, label_size.y) + style.FramePadding.y * 2)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, 0)) + return; + + // Render + RenderTextClipped(value_bb.Min + style.FramePadding, value_bb.Max, value_text_begin, value_text_end, &value_size, ImVec2(0.0f, 0.0f)); + if (label_size.x > 0.0f) + RenderText(ImVec2(value_bb.Max.x + style.ItemInnerSpacing.x, value_bb.Min.y + style.FramePadding.y), label); +} + +void ImGui::BulletText(const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + BulletTextV(fmt, args); + va_end(args); +} + +// Text with a little bullet aligned to the typical tree node. +void ImGui::BulletTextV(const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + const char* text_begin, *text_end; + ImFormatStringToTempBufferV(&text_begin, &text_end, fmt, args); + const ImVec2 label_size = CalcTextSize(text_begin, text_end, false); + const ImVec2 total_size = ImVec2(g.FontSize + (label_size.x > 0.0f ? (label_size.x + style.FramePadding.x * 2) : 0.0f), label_size.y); // Empty text doesn't add padding + ImVec2 pos = window->DC.CursorPos; + pos.y += window->DC.CurrLineTextBaseOffset; + ItemSize(total_size, 0.0f); + const ImRect bb(pos, pos + total_size); + if (!ItemAdd(bb, 0)) + return; + + // Render + ImU32 text_col = GetColorU32(ImGuiCol_Text); + RenderBullet(window->DrawList, bb.Min + ImVec2(style.FramePadding.x + g.FontSize * 0.5f, g.FontSize * 0.5f), text_col); + RenderText(bb.Min + ImVec2(g.FontSize + style.FramePadding.x * 2, 0.0f), text_begin, text_end, false); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Main +//------------------------------------------------------------------------- +// - ButtonBehavior() [Internal] +// - Button() +// - SmallButton() +// - InvisibleButton() +// - ArrowButton() +// - CloseButton() [Internal] +// - CollapseButton() [Internal] +// - GetWindowScrollbarID() [Internal] +// - GetWindowScrollbarRect() [Internal] +// - Scrollbar() [Internal] +// - ScrollbarEx() [Internal] +// - Image() +// - ImageButton() +// - Checkbox() +// - CheckboxFlagsT() [Internal] +// - CheckboxFlags() +// - RadioButton() +// - ProgressBar() +// - Bullet() +// - Hyperlink() +//------------------------------------------------------------------------- + +// The ButtonBehavior() function is key to many interactions and used by many/most widgets. +// Because we handle so many cases (keyboard/gamepad navigation, drag and drop) and many specific behavior (via ImGuiButtonFlags_), +// this code is a little complex. +// By far the most common path is interacting with the Mouse using the default ImGuiButtonFlags_PressedOnClickRelease button behavior. +// See the series of events below and the corresponding state reported by dear imgui: +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnClickRelease: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+0 (mouse is outside bb) - - - - - - +// Frame N+1 (mouse moves inside bb) - true - - - - +// Frame N+2 (mouse button is down) - true true true - true +// Frame N+3 (mouse button is down) - true true - - - +// Frame N+4 (mouse moves outside bb) - - true - - - +// Frame N+5 (mouse moves inside bb) - true true - - - +// Frame N+6 (mouse button is released) true true - - true - +// Frame N+7 (mouse button is released) - true - - - - +// Frame N+8 (mouse moves outside bb) - - - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnClick: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+2 (mouse button is down) true true true true - true +// Frame N+3 (mouse button is down) - true true - - - +// Frame N+6 (mouse button is released) - true - - true - +// Frame N+7 (mouse button is released) - true - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnRelease: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+2 (mouse button is down) - true - - - true +// Frame N+3 (mouse button is down) - true - - - - +// Frame N+6 (mouse button is released) true true - - - - +// Frame N+7 (mouse button is released) - true - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// with PressedOnDoubleClick: return-value IsItemHovered() IsItemActive() IsItemActivated() IsItemDeactivated() IsItemClicked() +// Frame N+0 (mouse button is down) - true - - - true +// Frame N+1 (mouse button is down) - true - - - - +// Frame N+2 (mouse button is released) - true - - - - +// Frame N+3 (mouse button is released) - true - - - - +// Frame N+4 (mouse button is down) true true true true - true +// Frame N+5 (mouse button is down) - true true - - - +// Frame N+6 (mouse button is released) - true - - true - +// Frame N+7 (mouse button is released) - true - - - - +//------------------------------------------------------------------------------------------------------------------------------------------------ +// Note that some combinations are supported, +// - PressedOnDragDropHold can generally be associated with any flag. +// - PressedOnDoubleClick can be associated by PressedOnClickRelease/PressedOnRelease, in which case the second release event won't be reported. +//------------------------------------------------------------------------------------------------------------------------------------------------ +// The behavior of the return-value changes when ImGuiButtonFlags_Repeat is set: +// Repeat+ Repeat+ Repeat+ Repeat+ +// PressedOnClickRelease PressedOnClick PressedOnRelease PressedOnDoubleClick +//------------------------------------------------------------------------------------------------------------------------------------------------- +// Frame N+0 (mouse button is down) - true - true +// ... - - - - +// Frame N + RepeatDelay true true - true +// ... - - - - +// Frame N + RepeatDelay + RepeatRate*N true true - true +//------------------------------------------------------------------------------------------------------------------------------------------------- + +// FIXME: For refactor we could output flags, incl mouse hovered vs nav keyboard vs nav triggered etc. +// And better standardize how widgets use 'GetColor32((held && hovered) ? ... : hovered ? ...)' vs 'GetColor32(held ? ... : hovered ? ...);' +// For mouse feedback we typically prefer the 'held && hovered' test, but for nav feedback not always. Outputting hovered=true on Activation may be misleading. +bool ImGui::ButtonBehavior(const ImRect& bb, ImGuiID id, bool* out_hovered, bool* out_held, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + // Default only reacts to left mouse button + if ((flags & ImGuiButtonFlags_MouseButtonMask_) == 0) + flags |= ImGuiButtonFlags_MouseButtonLeft; + + // Default behavior requires click + release inside bounding box + if ((flags & ImGuiButtonFlags_PressedOnMask_) == 0) + flags |= ImGuiButtonFlags_PressedOnDefault_; + + // Default behavior inherited from item flags + // Note that _both_ ButtonFlags and ItemFlags are valid sources, so copy one into the item_flags and only check that. + ImGuiItemFlags item_flags = (g.LastItemData.ID == id ? g.LastItemData.InFlags : g.CurrentItemFlags); + if (flags & ImGuiButtonFlags_AllowOverlap) + item_flags |= ImGuiItemFlags_AllowOverlap; + if (flags & ImGuiButtonFlags_Repeat) + item_flags |= ImGuiItemFlags_ButtonRepeat; + + ImGuiWindow* backup_hovered_window = g.HoveredWindow; + const bool flatten_hovered_children = (flags & ImGuiButtonFlags_FlattenChildren) && g.HoveredWindow && g.HoveredWindow->RootWindow == window; + if (flatten_hovered_children) + g.HoveredWindow = window; + +#ifdef IMGUI_ENABLE_TEST_ENGINE + // Alternate registration spot, for when caller didn't use ItemAdd() + if (g.LastItemData.ID != id) + IMGUI_TEST_ENGINE_ITEM_ADD(id, bb, NULL); +#endif + + bool pressed = false; + bool hovered = ItemHoverable(bb, id, item_flags); + + // Special mode for Drag and Drop where holding button pressed for a long time while dragging another item triggers the button + if (g.DragDropActive && (flags & ImGuiButtonFlags_PressedOnDragDropHold) && !(g.DragDropSourceFlags & ImGuiDragDropFlags_SourceNoHoldToOpenOthers)) + if (IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByActiveItem)) + { + hovered = true; + SetHoveredID(id); + if (g.HoveredIdTimer - g.IO.DeltaTime <= DRAGDROP_HOLD_TO_OPEN_TIMER && g.HoveredIdTimer >= DRAGDROP_HOLD_TO_OPEN_TIMER) + { + pressed = true; + g.DragDropHoldJustPressedId = id; + FocusWindow(window); + } + } + + if (flatten_hovered_children) + g.HoveredWindow = backup_hovered_window; + + // Mouse handling + const ImGuiID test_owner_id = (flags & ImGuiButtonFlags_NoTestKeyOwner) ? ImGuiKeyOwner_Any : id; + if (hovered) + { + IM_ASSERT(id != 0); // Lazily check inside rare path. + + // Poll mouse buttons + // - 'mouse_button_clicked' is generally carried into ActiveIdMouseButton when setting ActiveId. + // - Technically we only need some values in one code path, but since this is gated by hovered test this is fine. + int mouse_button_clicked = -1; + int mouse_button_released = -1; + for (int button = 0; button < 3; button++) + if (flags & (ImGuiButtonFlags_MouseButtonLeft << button)) // Handle ImGuiButtonFlags_MouseButtonRight and ImGuiButtonFlags_MouseButtonMiddle here. + { + if (IsMouseClicked(button, ImGuiInputFlags_None, test_owner_id) && mouse_button_clicked == -1) { mouse_button_clicked = button; } + if (IsMouseReleased(button, test_owner_id) && mouse_button_released == -1) { mouse_button_released = button; } + } + + // Process initial action + if (!(flags & ImGuiButtonFlags_NoKeyModifiers) || (!g.IO.KeyCtrl && !g.IO.KeyShift && !g.IO.KeyAlt)) + { + if (mouse_button_clicked != -1 && g.ActiveId != id) + { + if (!(flags & ImGuiButtonFlags_NoSetKeyOwner)) + SetKeyOwner(MouseButtonToKey(mouse_button_clicked), id); + if (flags & (ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnClickReleaseAnywhere)) + { + SetActiveID(id, window); + g.ActiveIdMouseButton = mouse_button_clicked; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + { + SetFocusID(id, window); + FocusWindow(window); + } + else + { + FocusWindow(window, ImGuiFocusRequestFlags_RestoreFocusedChild); // Still need to focus and bring to front, but try to avoid losing NavId when navigating a child + } + } + if ((flags & ImGuiButtonFlags_PressedOnClick) || ((flags & ImGuiButtonFlags_PressedOnDoubleClick) && g.IO.MouseClickedCount[mouse_button_clicked] == 2)) + { + pressed = true; + if (flags & ImGuiButtonFlags_NoHoldingActiveId) + ClearActiveID(); + else + SetActiveID(id, window); // Hold on ID + g.ActiveIdMouseButton = mouse_button_clicked; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + { + SetFocusID(id, window); + FocusWindow(window); + } + else + { + FocusWindow(window, ImGuiFocusRequestFlags_RestoreFocusedChild); // Still need to focus and bring to front, but try to avoid losing NavId when navigating a child + } + } + } + if (flags & ImGuiButtonFlags_PressedOnRelease) + { + if (mouse_button_released != -1) + { + const bool has_repeated_at_least_once = (item_flags & ImGuiItemFlags_ButtonRepeat) && g.IO.MouseDownDurationPrev[mouse_button_released] >= g.IO.KeyRepeatDelay; // Repeat mode trumps on release behavior + if (!has_repeated_at_least_once) + pressed = true; + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + SetFocusID(id, window); + ClearActiveID(); + } + } + + // 'Repeat' mode acts when held regardless of _PressedOn flags (see table above). + // Relies on repeat logic of IsMouseClicked() but we may as well do it ourselves if we end up exposing finer RepeatDelay/RepeatRate settings. + if (g.ActiveId == id && (item_flags & ImGuiItemFlags_ButtonRepeat)) + if (g.IO.MouseDownDuration[g.ActiveIdMouseButton] > 0.0f && IsMouseClicked(g.ActiveIdMouseButton, ImGuiInputFlags_Repeat, test_owner_id)) + pressed = true; + } + + if (pressed) + g.NavDisableHighlight = true; + } + + // Gamepad/Keyboard handling + // We report navigated and navigation-activated items as hovered but we don't set g.HoveredId to not interfere with mouse. + if (g.NavId == id && !g.NavDisableHighlight && g.NavDisableMouseHover) + if (!(flags & ImGuiButtonFlags_NoHoveredOnFocus)) + hovered = true; + if (g.NavActivateDownId == id) + { + bool nav_activated_by_code = (g.NavActivateId == id); + bool nav_activated_by_inputs = (g.NavActivatePressedId == id); + if (!nav_activated_by_inputs && (item_flags & ImGuiItemFlags_ButtonRepeat)) + { + // Avoid pressing multiple keys from triggering excessive amount of repeat events + const ImGuiKeyData* key1 = GetKeyData(ImGuiKey_Space); + const ImGuiKeyData* key2 = GetKeyData(ImGuiKey_Enter); + const ImGuiKeyData* key3 = GetKeyData(ImGuiKey_NavGamepadActivate); + const float t1 = ImMax(ImMax(key1->DownDuration, key2->DownDuration), key3->DownDuration); + nav_activated_by_inputs = CalcTypematicRepeatAmount(t1 - g.IO.DeltaTime, t1, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0; + } + if (nav_activated_by_code || nav_activated_by_inputs) + { + // Set active id so it can be queried by user via IsItemActive(), equivalent of holding the mouse button. + pressed = true; + SetActiveID(id, window); + g.ActiveIdSource = g.NavInputSource; + if (!(flags & ImGuiButtonFlags_NoNavFocus) && !(g.NavActivateFlags & ImGuiActivateFlags_FromShortcut)) + SetFocusID(id, window); + if (g.NavActivateFlags & ImGuiActivateFlags_FromShortcut) + g.ActiveIdFromShortcut = true; + } + } + + // Process while held + bool held = false; + if (g.ActiveId == id) + { + if (g.ActiveIdSource == ImGuiInputSource_Mouse) + { + if (g.ActiveIdIsJustActivated) + g.ActiveIdClickOffset = g.IO.MousePos - bb.Min; + + const int mouse_button = g.ActiveIdMouseButton; + if (mouse_button == -1) + { + // Fallback for the rare situation were g.ActiveId was set programmatically or from another widget (e.g. #6304). + ClearActiveID(); + } + else if (IsMouseDown(mouse_button, test_owner_id)) + { + held = true; + } + else + { + bool release_in = hovered && (flags & ImGuiButtonFlags_PressedOnClickRelease) != 0; + bool release_anywhere = (flags & ImGuiButtonFlags_PressedOnClickReleaseAnywhere) != 0; + if ((release_in || release_anywhere) && !g.DragDropActive) + { + // Report as pressed when releasing the mouse (this is the most common path) + bool is_double_click_release = (flags & ImGuiButtonFlags_PressedOnDoubleClick) && g.IO.MouseReleased[mouse_button] && g.IO.MouseClickedLastCount[mouse_button] == 2; + bool is_repeating_already = (item_flags & ImGuiItemFlags_ButtonRepeat) && g.IO.MouseDownDurationPrev[mouse_button] >= g.IO.KeyRepeatDelay; // Repeat mode trumps + bool is_button_avail_or_owned = TestKeyOwner(MouseButtonToKey(mouse_button), test_owner_id); + if (!is_double_click_release && !is_repeating_already && is_button_avail_or_owned) + pressed = true; + } + ClearActiveID(); + } + if (!(flags & ImGuiButtonFlags_NoNavFocus)) + g.NavDisableHighlight = true; + } + else if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + { + // When activated using Nav, we hold on the ActiveID until activation button is released + if (g.NavActivateDownId == id) + held = true; // hovered == true not true as we are already likely hovered on direct activation. + else + ClearActiveID(); + } + if (pressed) + g.ActiveIdHasBeenPressedBefore = true; + } + + // Activation highlight (this may be a remote activation) + if (g.NavHighlightActivatedId == id) + hovered = true; + + if (out_hovered) *out_hovered = hovered; + if (out_held) *out_held = held; + + return pressed; +} + +bool ImGui::ButtonEx(const char* label, const ImVec2& size_arg, ImGuiButtonFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + ImVec2 pos = window->DC.CursorPos; + if ((flags & ImGuiButtonFlags_AlignTextBaseLine) && style.FramePadding.y < window->DC.CurrLineTextBaseOffset) // Try to vertically align buttons that are smaller/have no padding so that text baseline matches (bit hacky, since it shouldn't be a flag) + pos.y += window->DC.CurrLineTextBaseOffset - style.FramePadding.y; + ImVec2 size = CalcItemSize(size_arg, label_size.x + style.FramePadding.x * 2.0f, label_size.y + style.FramePadding.y * 2.0f); + + const ImRect bb(pos, pos + size); + ItemSize(size, style.FramePadding.y); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + // Render + const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, col, true, style.FrameRounding); + + if (g.LogEnabled) + LogSetNextTextDecoration("[", "]"); + RenderTextClipped(bb.Min + style.FramePadding, bb.Max - style.FramePadding, label, NULL, &label_size, style.ButtonTextAlign, &bb); + + // Automatically close popups + //if (pressed && !(flags & ImGuiButtonFlags_DontClosePopups) && (window->Flags & ImGuiWindowFlags_Popup)) + // CloseCurrentPopup(); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; +} + +bool ImGui::Button(const char* label, const ImVec2& size_arg) +{ + return ButtonEx(label, size_arg, ImGuiButtonFlags_None); +} + +// Small buttons fits within text without additional vertical spacing. +bool ImGui::SmallButton(const char* label) +{ + ImGuiContext& g = *GImGui; + float backup_padding_y = g.Style.FramePadding.y; + g.Style.FramePadding.y = 0.0f; + bool pressed = ButtonEx(label, ImVec2(0, 0), ImGuiButtonFlags_AlignTextBaseLine); + g.Style.FramePadding.y = backup_padding_y; + return pressed; +} + +// Tip: use ImGui::PushID()/PopID() to push indices or pointers in the ID stack. +// Then you can keep 'str_id' empty or the same for all your buttons (instead of creating a string based on a non-string id) +bool ImGui::InvisibleButton(const char* str_id, const ImVec2& size_arg, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + // Cannot use zero-size for InvisibleButton(). Unlike Button() there is not way to fallback using the label size. + IM_ASSERT(size_arg.x != 0.0f && size_arg.y != 0.0f); + + const ImGuiID id = window->GetID(str_id); + ImVec2 size = CalcItemSize(size_arg, 0.0f, 0.0f); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + ItemSize(size); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, str_id, g.LastItemData.StatusFlags); + return pressed; +} + +bool ImGui::ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + const ImGuiID id = window->GetID(str_id); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + const float default_size = GetFrameHeight(); + ItemSize(size, (size.y >= default_size) ? g.Style.FramePadding.y : -1.0f); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + // Render + const ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + const ImU32 text_col = GetColorU32(ImGuiCol_Text); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, bg_col, true, g.Style.FrameRounding); + RenderArrow(window->DrawList, bb.Min + ImVec2(ImMax(0.0f, (size.x - g.FontSize) * 0.5f), ImMax(0.0f, (size.y - g.FontSize) * 0.5f)), text_col, dir); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, str_id, g.LastItemData.StatusFlags); + return pressed; +} + +bool ImGui::ArrowButton(const char* str_id, ImGuiDir dir) +{ + float sz = GetFrameHeight(); + return ArrowButtonEx(str_id, dir, ImVec2(sz, sz), ImGuiButtonFlags_None); +} + +// Button to close a window +bool ImGui::CloseButton(ImGuiID id, const ImVec2& pos) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // Tweak 1: Shrink hit-testing area if button covers an abnormally large proportion of the visible region. That's in order to facilitate moving the window away. (#3825) + // This may better be applied as a general hit-rect reduction mechanism for all widgets to ensure the area to move window is always accessible? + const ImRect bb(pos, pos + ImVec2(g.FontSize, g.FontSize)); + ImRect bb_interact = bb; + const float area_to_visible_ratio = window->OuterRectClipped.GetArea() / bb.GetArea(); + if (area_to_visible_ratio < 1.5f) + bb_interact.Expand(ImTrunc(bb_interact.GetSize() * -0.25f)); + + // Tweak 2: We intentionally allow interaction when clipped so that a mechanical Alt,Right,Activate sequence can always close a window. + // (this isn't the common behavior of buttons, but it doesn't affect the user because navigation tends to keep items visible in scrolling layer). + bool is_clipped = !ItemAdd(bb_interact, id); + + bool hovered, held; + bool pressed = ButtonBehavior(bb_interact, id, &hovered, &held); + if (is_clipped) + return pressed; + + // Render + ImU32 bg_col = GetColorU32(held ? ImGuiCol_ButtonActive : ImGuiCol_ButtonHovered); + if (hovered) + window->DrawList->AddRectFilled(bb.Min, bb.Max, bg_col); + RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_Compact); + ImU32 cross_col = GetColorU32(ImGuiCol_Text); + ImVec2 cross_center = bb.GetCenter() - ImVec2(0.5f, 0.5f); + float cross_extent = g.FontSize * 0.5f * 0.7071f - 1.0f; + window->DrawList->AddLine(cross_center + ImVec2(+cross_extent, +cross_extent), cross_center + ImVec2(-cross_extent, -cross_extent), cross_col, 1.0f); + window->DrawList->AddLine(cross_center + ImVec2(+cross_extent, -cross_extent), cross_center + ImVec2(-cross_extent, +cross_extent), cross_col, 1.0f); + + return pressed; +} + +bool ImGui::CollapseButton(ImGuiID id, const ImVec2& pos) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + ImRect bb(pos, pos + ImVec2(g.FontSize, g.FontSize)); + bool is_clipped = !ItemAdd(bb, id); + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, ImGuiButtonFlags_None); + if (is_clipped) + return pressed; + + // Render + ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + ImU32 text_col = GetColorU32(ImGuiCol_Text); + if (hovered || held) + window->DrawList->AddRectFilled(bb.Min, bb.Max, bg_col); + RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_Compact); + RenderArrow(window->DrawList, bb.Min, text_col, window->Collapsed ? ImGuiDir_Right : ImGuiDir_Down, 1.0f); + + // Switch to moving the window after mouse is moved beyond the initial drag threshold + if (IsItemActive() && IsMouseDragging(0)) + StartMouseMovingWindow(window); + + return pressed; +} + +ImGuiID ImGui::GetWindowScrollbarID(ImGuiWindow* window, ImGuiAxis axis) +{ + return window->GetID(axis == ImGuiAxis_X ? "#SCROLLX" : "#SCROLLY"); +} + +// Return scrollbar rectangle, must only be called for corresponding axis if window->ScrollbarX/Y is set. +ImRect ImGui::GetWindowScrollbarRect(ImGuiWindow* window, ImGuiAxis axis) +{ + const ImRect outer_rect = window->Rect(); + const ImRect inner_rect = window->InnerRect; + const float border_size = window->WindowBorderSize; + const float scrollbar_size = window->ScrollbarSizes[axis ^ 1]; // (ScrollbarSizes.x = width of Y scrollbar; ScrollbarSizes.y = height of X scrollbar) + IM_ASSERT(scrollbar_size > 0.0f); + if (axis == ImGuiAxis_X) + return ImRect(inner_rect.Min.x, ImMax(outer_rect.Min.y, outer_rect.Max.y - border_size - scrollbar_size), inner_rect.Max.x - border_size, outer_rect.Max.y - border_size); + else + return ImRect(ImMax(outer_rect.Min.x, outer_rect.Max.x - border_size - scrollbar_size), inner_rect.Min.y, outer_rect.Max.x - border_size, inner_rect.Max.y - border_size); +} + +void ImGui::Scrollbar(ImGuiAxis axis) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + const ImGuiID id = GetWindowScrollbarID(window, axis); + + // Calculate scrollbar bounding box + ImRect bb = GetWindowScrollbarRect(window, axis); + ImDrawFlags rounding_corners = ImDrawFlags_RoundCornersNone; + if (axis == ImGuiAxis_X) + { + rounding_corners |= ImDrawFlags_RoundCornersBottomLeft; + if (!window->ScrollbarY) + rounding_corners |= ImDrawFlags_RoundCornersBottomRight; + } + else + { + if ((window->Flags & ImGuiWindowFlags_NoTitleBar) && !(window->Flags & ImGuiWindowFlags_MenuBar)) + rounding_corners |= ImDrawFlags_RoundCornersTopRight; + if (!window->ScrollbarX) + rounding_corners |= ImDrawFlags_RoundCornersBottomRight; + } + float size_visible = window->InnerRect.Max[axis] - window->InnerRect.Min[axis]; + float size_contents = window->ContentSize[axis] + window->WindowPadding[axis] * 2.0f; + ImS64 scroll = (ImS64)window->Scroll[axis]; + ScrollbarEx(bb, id, axis, &scroll, (ImS64)size_visible, (ImS64)size_contents, rounding_corners); + window->Scroll[axis] = (float)scroll; +} + +// Vertical/Horizontal scrollbar +// The entire piece of code below is rather confusing because: +// - We handle absolute seeking (when first clicking outside the grab) and relative manipulation (afterward or when clicking inside the grab) +// - We store values as normalized ratio and in a form that allows the window content to change while we are holding on a scrollbar +// - We handle both horizontal and vertical scrollbars, which makes the terminology not ideal. +// Still, the code should probably be made simpler.. +bool ImGui::ScrollbarEx(const ImRect& bb_frame, ImGuiID id, ImGuiAxis axis, ImS64* p_scroll_v, ImS64 size_visible_v, ImS64 size_contents_v, ImDrawFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + const float bb_frame_width = bb_frame.GetWidth(); + const float bb_frame_height = bb_frame.GetHeight(); + if (bb_frame_width <= 0.0f || bb_frame_height <= 0.0f) + return false; + + // When we are too small, start hiding and disabling the grab (this reduce visual noise on very small window and facilitate using the window resize grab) + float alpha = 1.0f; + if ((axis == ImGuiAxis_Y) && bb_frame_height < g.FontSize + g.Style.FramePadding.y * 2.0f) + alpha = ImSaturate((bb_frame_height - g.FontSize) / (g.Style.FramePadding.y * 2.0f)); + if (alpha <= 0.0f) + return false; + + const ImGuiStyle& style = g.Style; + const bool allow_interaction = (alpha >= 1.0f); + + ImRect bb = bb_frame; + bb.Expand(ImVec2(-ImClamp(IM_TRUNC((bb_frame_width - 2.0f) * 0.5f), 0.0f, 3.0f), -ImClamp(IM_TRUNC((bb_frame_height - 2.0f) * 0.5f), 0.0f, 3.0f))); + + // V denote the main, longer axis of the scrollbar (= height for a vertical scrollbar) + const float scrollbar_size_v = (axis == ImGuiAxis_X) ? bb.GetWidth() : bb.GetHeight(); + + // Calculate the height of our grabbable box. It generally represent the amount visible (vs the total scrollable amount) + // But we maintain a minimum size in pixel to allow for the user to still aim inside. + IM_ASSERT(ImMax(size_contents_v, size_visible_v) > 0.0f); // Adding this assert to check if the ImMax(XXX,1.0f) is still needed. PLEASE CONTACT ME if this triggers. + const ImS64 win_size_v = ImMax(ImMax(size_contents_v, size_visible_v), (ImS64)1); + const float grab_h_pixels = ImClamp(scrollbar_size_v * ((float)size_visible_v / (float)win_size_v), style.GrabMinSize, scrollbar_size_v); + const float grab_h_norm = grab_h_pixels / scrollbar_size_v; + + // Handle input right away. None of the code of Begin() is relying on scrolling position before calling Scrollbar(). + bool held = false; + bool hovered = false; + ItemAdd(bb_frame, id, NULL, ImGuiItemFlags_NoNav); + ButtonBehavior(bb, id, &hovered, &held, ImGuiButtonFlags_NoNavFocus); + + const ImS64 scroll_max = ImMax((ImS64)1, size_contents_v - size_visible_v); + float scroll_ratio = ImSaturate((float)*p_scroll_v / (float)scroll_max); + float grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; // Grab position in normalized space + if (held && allow_interaction && grab_h_norm < 1.0f) + { + const float scrollbar_pos_v = bb.Min[axis]; + const float mouse_pos_v = g.IO.MousePos[axis]; + + // Click position in scrollbar normalized space (0.0f->1.0f) + const float clicked_v_norm = ImSaturate((mouse_pos_v - scrollbar_pos_v) / scrollbar_size_v); + + const int held_dir = (clicked_v_norm < grab_v_norm) ? -1 : (clicked_v_norm > grab_v_norm + grab_h_norm) ? +1 : 0; + if (g.ActiveIdIsJustActivated) + { + // On initial click when held_dir == 0 (clicked over grab): calculate the distance between mouse and the center of the grab + const bool scroll_to_clicked_location = (g.IO.ConfigScrollbarScrollByPage == false || g.IO.KeyShift || held_dir == 0); + g.ScrollbarSeekMode = scroll_to_clicked_location ? 0 : (short)held_dir; + g.ScrollbarClickDeltaToGrabCenter = (held_dir == 0 && !g.IO.KeyShift) ? clicked_v_norm - grab_v_norm - grab_h_norm * 0.5f : 0.0f; + } + + // Apply scroll (p_scroll_v will generally point on one member of window->Scroll) + // It is ok to modify Scroll here because we are being called in Begin() after the calculation of ContentSize and before setting up our starting position + if (g.ScrollbarSeekMode == 0) + { + // Absolute seeking + const float scroll_v_norm = ImSaturate((clicked_v_norm - g.ScrollbarClickDeltaToGrabCenter - grab_h_norm * 0.5f) / (1.0f - grab_h_norm)); + *p_scroll_v = (ImS64)(scroll_v_norm * scroll_max); + } + else + { + // Page by page + if (IsMouseClicked(ImGuiMouseButton_Left, ImGuiInputFlags_Repeat) && held_dir == g.ScrollbarSeekMode) + { + float page_dir = (g.ScrollbarSeekMode > 0.0f) ? +1.0f : -1.0f; + *p_scroll_v = ImClamp(*p_scroll_v + (ImS64)(page_dir * size_visible_v), (ImS64)0, scroll_max); + } + } + + // Update values for rendering + scroll_ratio = ImSaturate((float)*p_scroll_v / (float)scroll_max); + grab_v_norm = scroll_ratio * (scrollbar_size_v - grab_h_pixels) / scrollbar_size_v; + + // Update distance to grab now that we have seek'ed and saturated + //if (seek_absolute) + // g.ScrollbarClickDeltaToGrabCenter = clicked_v_norm - grab_v_norm - grab_h_norm * 0.5f; + } + + // Render + const ImU32 bg_col = GetColorU32(ImGuiCol_ScrollbarBg); + const ImU32 grab_col = GetColorU32(held ? ImGuiCol_ScrollbarGrabActive : hovered ? ImGuiCol_ScrollbarGrabHovered : ImGuiCol_ScrollbarGrab, alpha); + window->DrawList->AddRectFilled(bb_frame.Min, bb_frame.Max, bg_col, window->WindowRounding, flags); + ImRect grab_rect; + if (axis == ImGuiAxis_X) + grab_rect = ImRect(ImLerp(bb.Min.x, bb.Max.x, grab_v_norm), bb.Min.y, ImLerp(bb.Min.x, bb.Max.x, grab_v_norm) + grab_h_pixels, bb.Max.y); + else + grab_rect = ImRect(bb.Min.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm), bb.Max.x, ImLerp(bb.Min.y, bb.Max.y, grab_v_norm) + grab_h_pixels); + window->DrawList->AddRectFilled(grab_rect.Min, grab_rect.Max, grab_col, style.ScrollbarRounding); + + return held; +} + +// - Read about ImTextureID here: https://github.com/ocornut/imgui/wiki/Image-Loading-and-Displaying-Examples +// - 'uv0' and 'uv1' are texture coordinates. Read about them from the same link above. +void ImGui::Image(ImTextureID user_texture_id, const ImVec2& image_size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& tint_col, const ImVec4& border_col) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + const float border_size = (border_col.w > 0.0f) ? 1.0f : 0.0f; + const ImVec2 padding(border_size, border_size); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + image_size + padding * 2.0f); + ItemSize(bb); + if (!ItemAdd(bb, 0)) + return; + + // Render + if (border_size > 0.0f) + window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(border_col), 0.0f, ImDrawFlags_None, border_size); + window->DrawList->AddImage(user_texture_id, bb.Min + padding, bb.Max - padding, uv0, uv1, GetColorU32(tint_col)); +} + +// ImageButton() is flawed as 'id' is always derived from 'texture_id' (see #2464 #1390) +// We provide this internal helper to write your own variant while we figure out how to redesign the public ImageButton() API. +bool ImGui::ImageButtonEx(ImGuiID id, ImTextureID texture_id, const ImVec2& image_size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& bg_col, const ImVec4& tint_col, ImGuiButtonFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + const ImVec2 padding = g.Style.FramePadding; + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + image_size + padding * 2.0f); + ItemSize(bb); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, flags); + + // Render + const ImU32 col = GetColorU32((held && hovered) ? ImGuiCol_ButtonActive : hovered ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + RenderNavHighlight(bb, id); + RenderFrame(bb.Min, bb.Max, col, true, ImClamp((float)ImMin(padding.x, padding.y), 0.0f, g.Style.FrameRounding)); + if (bg_col.w > 0.0f) + window->DrawList->AddRectFilled(bb.Min + padding, bb.Max - padding, GetColorU32(bg_col)); + window->DrawList->AddImage(texture_id, bb.Min + padding, bb.Max - padding, uv0, uv1, GetColorU32(tint_col)); + + return pressed; +} + +// Note that ImageButton() adds style.FramePadding*2.0f to provided size. This is in order to facilitate fitting an image in a button. +bool ImGui::ImageButton(const char* str_id, ImTextureID user_texture_id, const ImVec2& image_size, const ImVec2& uv0, const ImVec2& uv1, const ImVec4& bg_col, const ImVec4& tint_col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + return ImageButtonEx(window->GetID(str_id), user_texture_id, image_size, uv0, uv1, bg_col, tint_col); +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS +// Legacy API obsoleted in 1.89. Two differences with new ImageButton() +// - old ImageButton() used ImTextureId as item id (created issue with multiple buttons with same image, transient texture id values, opaque computation of ID) +// - new ImageButton() requires an explicit 'const char* str_id' +// - old ImageButton() had frame_padding' override argument. +// - new ImageButton() always use style.FramePadding. +/* +bool ImGui::ImageButton(ImTextureID user_texture_id, const ImVec2& size, const ImVec2& uv0, const ImVec2& uv1, int frame_padding, const ImVec4& bg_col, const ImVec4& tint_col) +{ + // Default to using texture ID as ID. User can still push string/integer prefixes. + PushID((void*)(intptr_t)user_texture_id); + if (frame_padding >= 0) + PushStyleVar(ImGuiStyleVar_FramePadding, ImVec2((float)frame_padding, (float)frame_padding)); + bool ret = ImageButton("", user_texture_id, size, uv0, uv1, bg_col, tint_col); + if (frame_padding >= 0) + PopStyleVar(); + PopID(); + return ret; +} +*/ +#endif // #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + +bool ImGui::Checkbox(const char* label, bool* v) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const float square_sz = GetFrameHeight(); + const ImVec2 pos = window->DC.CursorPos; + const ImRect total_bb(pos, pos + ImVec2(square_sz + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), label_size.y + style.FramePadding.y * 2.0f)); + ItemSize(total_bb, style.FramePadding.y); + const bool is_visible = ItemAdd(total_bb, id); + const bool is_multi_select = (g.LastItemData.InFlags & ImGuiItemFlags_IsMultiSelect) != 0; + if (!is_visible) + if (!is_multi_select || !g.BoxSelectState.UnclipMode || !g.BoxSelectState.UnclipRect.Overlaps(total_bb)) // Extra layer of "no logic clip" for box-select support + { + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Checkable | (*v ? ImGuiItemStatusFlags_Checked : 0)); + return false; + } + + // Range-Selection/Multi-selection support (header) + bool checked = *v; + if (is_multi_select) + MultiSelectItemHeader(id, &checked, NULL); + + bool hovered, held; + bool pressed = ButtonBehavior(total_bb, id, &hovered, &held); + + // Range-Selection/Multi-selection support (footer) + if (is_multi_select) + MultiSelectItemFooter(id, &checked, &pressed); + else if (pressed) + checked = !checked; + + if (*v != checked) + { + *v = checked; + pressed = true; // return value + MarkItemEdited(id); + } + + const ImRect check_bb(pos, pos + ImVec2(square_sz, square_sz)); + const bool mixed_value = (g.LastItemData.InFlags & ImGuiItemFlags_MixedValue) != 0; + if (is_visible) + { + RenderNavHighlight(total_bb, id); + RenderFrame(check_bb.Min, check_bb.Max, GetColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), true, style.FrameRounding); + ImU32 check_col = GetColorU32(ImGuiCol_CheckMark); + if (mixed_value) + { + // Undocumented tristate/mixed/indeterminate checkbox (#2644) + // This may seem awkwardly designed because the aim is to make ImGuiItemFlags_MixedValue supported by all widgets (not just checkbox) + ImVec2 pad(ImMax(1.0f, IM_TRUNC(square_sz / 3.6f)), ImMax(1.0f, IM_TRUNC(square_sz / 3.6f))); + window->DrawList->AddRectFilled(check_bb.Min + pad, check_bb.Max - pad, check_col, style.FrameRounding); + } + else if (*v) + { + const float pad = ImMax(1.0f, IM_TRUNC(square_sz / 6.0f)); + RenderCheckMark(window->DrawList, check_bb.Min + ImVec2(pad, pad), check_col, square_sz - pad * 2.0f); + } + } + const ImVec2 label_pos = ImVec2(check_bb.Max.x + style.ItemInnerSpacing.x, check_bb.Min.y + style.FramePadding.y); + if (g.LogEnabled) + LogRenderedText(&label_pos, mixed_value ? "[~]" : *v ? "[x]" : "[ ]"); + if (is_visible && label_size.x > 0.0f) + RenderText(label_pos, label); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Checkable | (*v ? ImGuiItemStatusFlags_Checked : 0)); + return pressed; +} + +template +bool ImGui::CheckboxFlagsT(const char* label, T* flags, T flags_value) +{ + bool all_on = (*flags & flags_value) == flags_value; + bool any_on = (*flags & flags_value) != 0; + bool pressed; + if (!all_on && any_on) + { + ImGuiContext& g = *GImGui; + g.NextItemData.ItemFlags |= ImGuiItemFlags_MixedValue; + pressed = Checkbox(label, &all_on); + } + else + { + pressed = Checkbox(label, &all_on); + + } + if (pressed) + { + if (all_on) + *flags |= flags_value; + else + *flags &= ~flags_value; + } + return pressed; +} + +bool ImGui::CheckboxFlags(const char* label, int* flags, int flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::CheckboxFlags(const char* label, unsigned int* flags, unsigned int flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::CheckboxFlags(const char* label, ImS64* flags, ImS64 flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::CheckboxFlags(const char* label, ImU64* flags, ImU64 flags_value) +{ + return CheckboxFlagsT(label, flags, flags_value); +} + +bool ImGui::RadioButton(const char* label, bool active) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + const float square_sz = GetFrameHeight(); + const ImVec2 pos = window->DC.CursorPos; + const ImRect check_bb(pos, pos + ImVec2(square_sz, square_sz)); + const ImRect total_bb(pos, pos + ImVec2(square_sz + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), label_size.y + style.FramePadding.y * 2.0f)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id)) + return false; + + ImVec2 center = check_bb.GetCenter(); + center.x = IM_ROUND(center.x); + center.y = IM_ROUND(center.y); + const float radius = (square_sz - 1.0f) * 0.5f; + + bool hovered, held; + bool pressed = ButtonBehavior(total_bb, id, &hovered, &held); + if (pressed) + MarkItemEdited(id); + + RenderNavHighlight(total_bb, id); + const int num_segment = window->DrawList->_CalcCircleAutoSegmentCount(radius); + window->DrawList->AddCircleFilled(center, radius, GetColorU32((held && hovered) ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg), num_segment); + if (active) + { + const float pad = ImMax(1.0f, IM_TRUNC(square_sz / 6.0f)); + window->DrawList->AddCircleFilled(center, radius - pad, GetColorU32(ImGuiCol_CheckMark)); + } + + if (style.FrameBorderSize > 0.0f) + { + window->DrawList->AddCircle(center + ImVec2(1, 1), radius, GetColorU32(ImGuiCol_BorderShadow), num_segment, style.FrameBorderSize); + window->DrawList->AddCircle(center, radius, GetColorU32(ImGuiCol_Border), num_segment, style.FrameBorderSize); + } + + ImVec2 label_pos = ImVec2(check_bb.Max.x + style.ItemInnerSpacing.x, check_bb.Min.y + style.FramePadding.y); + if (g.LogEnabled) + LogRenderedText(&label_pos, active ? "(x)" : "( )"); + if (label_size.x > 0.0f) + RenderText(label_pos, label); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; +} + +// FIXME: This would work nicely if it was a public template, e.g. 'template RadioButton(const char* label, T* v, T v_button)', but I'm not sure how we would expose it.. +bool ImGui::RadioButton(const char* label, int* v, int v_button) +{ + const bool pressed = RadioButton(label, *v == v_button); + if (pressed) + *v = v_button; + return pressed; +} + +// size_arg (for each axis) < 0.0f: align to end, 0.0f: auto, > 0.0f: specified size +void ImGui::ProgressBar(float fraction, const ImVec2& size_arg, const char* overlay) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + ImVec2 pos = window->DC.CursorPos; + ImVec2 size = CalcItemSize(size_arg, CalcItemWidth(), g.FontSize + style.FramePadding.y * 2.0f); + ImRect bb(pos, pos + size); + ItemSize(size, style.FramePadding.y); + if (!ItemAdd(bb, 0)) + return; + + // Fraction < 0.0f will display an indeterminate progress bar animation + // The value must be animated along with time, so e.g. passing '-1.0f * ImGui::GetTime()' as fraction works. + const bool is_indeterminate = (fraction < 0.0f); + if (!is_indeterminate) + fraction = ImSaturate(fraction); + + // Out of courtesy we accept a NaN fraction without crashing + float fill_n0 = 0.0f; + float fill_n1 = (fraction == fraction) ? fraction : 0.0f; + + if (is_indeterminate) + { + const float fill_width_n = 0.2f; + fill_n0 = ImFmod(-fraction, 1.0f) * (1.0f + fill_width_n) - fill_width_n; + fill_n1 = ImSaturate(fill_n0 + fill_width_n); + fill_n0 = ImSaturate(fill_n0); + } + + // Render + RenderFrame(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), true, style.FrameRounding); + bb.Expand(ImVec2(-style.FrameBorderSize, -style.FrameBorderSize)); + RenderRectFilledRangeH(window->DrawList, bb, GetColorU32(ImGuiCol_PlotHistogram), fill_n0, fill_n1, style.FrameRounding); + + // Default displaying the fraction as percentage string, but user can override it + // Don't display text for indeterminate bars by default + char overlay_buf[32]; + if (!is_indeterminate || overlay != NULL) + { + if (!overlay) + { + ImFormatString(overlay_buf, IM_ARRAYSIZE(overlay_buf), "%.0f%%", fraction * 100 + 0.01f); + overlay = overlay_buf; + } + + ImVec2 overlay_size = CalcTextSize(overlay, NULL); + if (overlay_size.x > 0.0f) + { + float text_x = is_indeterminate ? (bb.Min.x + bb.Max.x - overlay_size.x) * 0.5f : ImLerp(bb.Min.x, bb.Max.x, fill_n1) + style.ItemSpacing.x; + RenderTextClipped(ImVec2(ImClamp(text_x, bb.Min.x, bb.Max.x - overlay_size.x - style.ItemInnerSpacing.x), bb.Min.y), bb.Max, overlay, NULL, &overlay_size, ImVec2(0.0f, 0.5f), &bb); + } + } +} + +void ImGui::Bullet() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const float line_height = ImMax(ImMin(window->DC.CurrLineSize.y, g.FontSize + style.FramePadding.y * 2), g.FontSize); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(g.FontSize, line_height)); + ItemSize(bb); + if (!ItemAdd(bb, 0)) + { + SameLine(0, style.FramePadding.x * 2); + return; + } + + // Render and stay on same line + ImU32 text_col = GetColorU32(ImGuiCol_Text); + RenderBullet(window->DrawList, bb.Min + ImVec2(style.FramePadding.x + g.FontSize * 0.5f, line_height * 0.5f), text_col); + SameLine(0, style.FramePadding.x * 2.0f); +} + +// This is provided as a convenience for being an often requested feature. +// FIXME-STYLE: we delayed adding as there is a larger plan to revamp the styling system. +// Because of this we currently don't provide many styling options for this widget +// (e.g. hovered/active colors are automatically inferred from a single color). +bool ImGui::TextLink(const char* label) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiID id = window->GetID(label); + const char* label_end = FindRenderedTextEnd(label); + + ImVec2 pos = window->DC.CursorPos; + ImVec2 size = CalcTextSize(label, label_end, true); + ImRect bb(pos, pos + size); + ItemSize(size, 0.0f); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held); + RenderNavHighlight(bb, id, ImGuiNavHighlightFlags_None); + + if (hovered) + SetMouseCursor(ImGuiMouseCursor_Hand); + + ImVec4 text_colf = g.Style.Colors[ImGuiCol_TextLink]; + ImVec4 line_colf = text_colf; + { + // FIXME-STYLE: Read comments above. This widget is NOT written in the same style as some earlier widgets, + // as we are currently experimenting/planning a different styling system. + float h, s, v; + ColorConvertRGBtoHSV(text_colf.x, text_colf.y, text_colf.z, h, s, v); + if (held || hovered) + { + v = ImSaturate(v + (held ? 0.4f : 0.3f)); + h = ImFmod(h + 0.02f, 1.0f); + } + ColorConvertHSVtoRGB(h, s, v, text_colf.x, text_colf.y, text_colf.z); + v = ImSaturate(v - 0.20f); + ColorConvertHSVtoRGB(h, s, v, line_colf.x, line_colf.y, line_colf.z); + } + + float line_y = bb.Max.y + ImFloor(g.Font->Descent * g.FontScale * 0.20f); + window->DrawList->AddLine(ImVec2(bb.Min.x, line_y), ImVec2(bb.Max.x, line_y), GetColorU32(line_colf)); // FIXME-TEXT: Underline mode. + + PushStyleColor(ImGuiCol_Text, GetColorU32(text_colf)); + RenderText(bb.Min, label, label_end); + PopStyleColor(); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; +} + +void ImGui::TextLinkOpenURL(const char* label, const char* url) +{ + ImGuiContext& g = *GImGui; + if (url == NULL) + url = label; + if (TextLink(label)) + if (g.PlatformIO.Platform_OpenInShellFn != NULL) + g.PlatformIO.Platform_OpenInShellFn(&g, url); + SetItemTooltip(LocalizeGetMsg(ImGuiLocKey_OpenLink_s), url); // It is more reassuring for user to _always_ display URL when we same as label + if (BeginPopupContextItem()) + { + if (MenuItem(LocalizeGetMsg(ImGuiLocKey_CopyLink))) + SetClipboardText(url); + EndPopup(); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Low-level Layout helpers +//------------------------------------------------------------------------- +// - Spacing() +// - Dummy() +// - NewLine() +// - AlignTextToFramePadding() +// - SeparatorEx() [Internal] +// - Separator() +// - SplitterBehavior() [Internal] +// - ShrinkWidths() [Internal] +//------------------------------------------------------------------------- + +void ImGui::Spacing() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + ItemSize(ImVec2(0, 0)); +} + +void ImGui::Dummy(const ImVec2& size) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + ItemSize(size); + ItemAdd(bb, 0); +} + +void ImGui::NewLine() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + const ImGuiLayoutType backup_layout_type = window->DC.LayoutType; + window->DC.LayoutType = ImGuiLayoutType_Vertical; + window->DC.IsSameLine = false; + if (window->DC.CurrLineSize.y > 0.0f) // In the event that we are on a line with items that is smaller that FontSize high, we will preserve its height. + ItemSize(ImVec2(0, 0)); + else + ItemSize(ImVec2(0.0f, g.FontSize)); + window->DC.LayoutType = backup_layout_type; +} + +void ImGui::AlignTextToFramePadding() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + window->DC.CurrLineSize.y = ImMax(window->DC.CurrLineSize.y, g.FontSize + g.Style.FramePadding.y * 2); + window->DC.CurrLineTextBaseOffset = ImMax(window->DC.CurrLineTextBaseOffset, g.Style.FramePadding.y); +} + +// Horizontal/vertical separating line +// FIXME: Surprisingly, this seemingly trivial widget is a victim of many different legacy/tricky layout issues. +// Note how thickness == 1.0f is handled specifically as not moving CursorPos by 'thickness', but other values are. +void ImGui::SeparatorEx(ImGuiSeparatorFlags flags, float thickness) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + ImGuiContext& g = *GImGui; + IM_ASSERT(ImIsPowerOfTwo(flags & (ImGuiSeparatorFlags_Horizontal | ImGuiSeparatorFlags_Vertical))); // Check that only 1 option is selected + IM_ASSERT(thickness > 0.0f); + + if (flags & ImGuiSeparatorFlags_Vertical) + { + // Vertical separator, for menu bars (use current line height). + float y1 = window->DC.CursorPos.y; + float y2 = window->DC.CursorPos.y + window->DC.CurrLineSize.y; + const ImRect bb(ImVec2(window->DC.CursorPos.x, y1), ImVec2(window->DC.CursorPos.x + thickness, y2)); + ItemSize(ImVec2(thickness, 0.0f)); + if (!ItemAdd(bb, 0)) + return; + + // Draw + window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_Separator)); + if (g.LogEnabled) + LogText(" |"); + } + else if (flags & ImGuiSeparatorFlags_Horizontal) + { + // Horizontal Separator + float x1 = window->DC.CursorPos.x; + float x2 = window->WorkRect.Max.x; + + // Preserve legacy behavior inside Columns() + // Before Tables API happened, we relied on Separator() to span all columns of a Columns() set. + // We currently don't need to provide the same feature for tables because tables naturally have border features. + ImGuiOldColumns* columns = (flags & ImGuiSeparatorFlags_SpanAllColumns) ? window->DC.CurrentColumns : NULL; + if (columns) + { + x1 = window->Pos.x + window->DC.Indent.x; // Used to be Pos.x before 2023/10/03 + x2 = window->Pos.x + window->Size.x; + PushColumnsBackground(); + } + + // We don't provide our width to the layout so that it doesn't get feed back into AutoFit + // FIXME: This prevents ->CursorMaxPos based bounding box evaluation from working (e.g. TableEndCell) + const float thickness_for_layout = (thickness == 1.0f) ? 0.0f : thickness; // FIXME: See 1.70/1.71 Separator() change: makes legacy 1-px separator not affect layout yet. Should change. + const ImRect bb(ImVec2(x1, window->DC.CursorPos.y), ImVec2(x2, window->DC.CursorPos.y + thickness)); + ItemSize(ImVec2(0.0f, thickness_for_layout)); + + if (ItemAdd(bb, 0)) + { + // Draw + window->DrawList->AddRectFilled(bb.Min, bb.Max, GetColorU32(ImGuiCol_Separator)); + if (g.LogEnabled) + LogRenderedText(&bb.Min, "--------------------------------\n"); + + } + if (columns) + { + PopColumnsBackground(); + columns->LineMinY = window->DC.CursorPos.y; + } + } +} + +void ImGui::Separator() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + // Those flags should eventually be configurable by the user + // FIXME: We cannot g.Style.SeparatorTextBorderSize for thickness as it relates to SeparatorText() which is a decorated separator, not defaulting to 1.0f. + ImGuiSeparatorFlags flags = (window->DC.LayoutType == ImGuiLayoutType_Horizontal) ? ImGuiSeparatorFlags_Vertical : ImGuiSeparatorFlags_Horizontal; + + // Only applies to legacy Columns() api as they relied on Separator() a lot. + if (window->DC.CurrentColumns) + flags |= ImGuiSeparatorFlags_SpanAllColumns; + + SeparatorEx(flags, 1.0f); +} + +void ImGui::SeparatorTextEx(ImGuiID id, const char* label, const char* label_end, float extra_w) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiStyle& style = g.Style; + + const ImVec2 label_size = CalcTextSize(label, label_end, false); + const ImVec2 pos = window->DC.CursorPos; + const ImVec2 padding = style.SeparatorTextPadding; + + const float separator_thickness = style.SeparatorTextBorderSize; + const ImVec2 min_size(label_size.x + extra_w + padding.x * 2.0f, ImMax(label_size.y + padding.y * 2.0f, separator_thickness)); + const ImRect bb(pos, ImVec2(window->WorkRect.Max.x, pos.y + min_size.y)); + const float text_baseline_y = ImTrunc((bb.GetHeight() - label_size.y) * style.SeparatorTextAlign.y + 0.99999f); //ImMax(padding.y, ImFloor((style.SeparatorTextSize - label_size.y) * 0.5f)); + ItemSize(min_size, text_baseline_y); + if (!ItemAdd(bb, id)) + return; + + const float sep1_x1 = pos.x; + const float sep2_x2 = bb.Max.x; + const float seps_y = ImTrunc((bb.Min.y + bb.Max.y) * 0.5f + 0.99999f); + + const float label_avail_w = ImMax(0.0f, sep2_x2 - sep1_x1 - padding.x * 2.0f); + const ImVec2 label_pos(pos.x + padding.x + ImMax(0.0f, (label_avail_w - label_size.x - extra_w) * style.SeparatorTextAlign.x), pos.y + text_baseline_y); // FIXME-ALIGN + + // This allows using SameLine() to position something in the 'extra_w' + window->DC.CursorPosPrevLine.x = label_pos.x + label_size.x; + + const ImU32 separator_col = GetColorU32(ImGuiCol_Separator); + if (label_size.x > 0.0f) + { + const float sep1_x2 = label_pos.x - style.ItemSpacing.x; + const float sep2_x1 = label_pos.x + label_size.x + extra_w + style.ItemSpacing.x; + if (sep1_x2 > sep1_x1 && separator_thickness > 0.0f) + window->DrawList->AddLine(ImVec2(sep1_x1, seps_y), ImVec2(sep1_x2, seps_y), separator_col, separator_thickness); + if (sep2_x2 > sep2_x1 && separator_thickness > 0.0f) + window->DrawList->AddLine(ImVec2(sep2_x1, seps_y), ImVec2(sep2_x2, seps_y), separator_col, separator_thickness); + if (g.LogEnabled) + LogSetNextTextDecoration("---", NULL); + RenderTextEllipsis(window->DrawList, label_pos, ImVec2(bb.Max.x, bb.Max.y + style.ItemSpacing.y), bb.Max.x, bb.Max.x, label, label_end, &label_size); + } + else + { + if (g.LogEnabled) + LogText("---"); + if (separator_thickness > 0.0f) + window->DrawList->AddLine(ImVec2(sep1_x1, seps_y), ImVec2(sep2_x2, seps_y), separator_col, separator_thickness); + } +} + +void ImGui::SeparatorText(const char* label) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + + // The SeparatorText() vs SeparatorTextEx() distinction is designed to be considerate that we may want: + // - allow separator-text to be draggable items (would require a stable ID + a noticeable highlight) + // - this high-level entry point to allow formatting? (which in turns may require ID separate from formatted string) + // - because of this we probably can't turn 'const char* label' into 'const char* fmt, ...' + // Otherwise, we can decide that users wanting to drag this would layout a dedicated drag-item, + // and then we can turn this into a format function. + SeparatorTextEx(0, label, FindRenderedTextEnd(label), 0.0f); +} + +// Using 'hover_visibility_delay' allows us to hide the highlight and mouse cursor for a short time, which can be convenient to reduce visual noise. +bool ImGui::SplitterBehavior(const ImRect& bb, ImGuiID id, ImGuiAxis axis, float* size1, float* size2, float min_size1, float min_size2, float hover_extend, float hover_visibility_delay, ImU32 bg_col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + if (!ItemAdd(bb, id, NULL, ImGuiItemFlags_NoNav)) + return false; + + // FIXME: AFAIK the only leftover reason for passing ImGuiButtonFlags_AllowOverlap here is + // to allow caller of SplitterBehavior() to call SetItemAllowOverlap() after the item. + // Nowadays we would instead want to use SetNextItemAllowOverlap() before the item. + ImGuiButtonFlags button_flags = ImGuiButtonFlags_FlattenChildren; +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + button_flags |= ImGuiButtonFlags_AllowOverlap; +#endif + + bool hovered, held; + ImRect bb_interact = bb; + bb_interact.Expand(axis == ImGuiAxis_Y ? ImVec2(0.0f, hover_extend) : ImVec2(hover_extend, 0.0f)); + ButtonBehavior(bb_interact, id, &hovered, &held, button_flags); + if (hovered) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredRect; // for IsItemHovered(), because bb_interact is larger than bb + + if (held || (hovered && g.HoveredIdPreviousFrame == id && g.HoveredIdTimer >= hover_visibility_delay)) + SetMouseCursor(axis == ImGuiAxis_Y ? ImGuiMouseCursor_ResizeNS : ImGuiMouseCursor_ResizeEW); + + ImRect bb_render = bb; + if (held) + { + float mouse_delta = (g.IO.MousePos - g.ActiveIdClickOffset - bb_interact.Min)[axis]; + + // Minimum pane size + float size_1_maximum_delta = ImMax(0.0f, *size1 - min_size1); + float size_2_maximum_delta = ImMax(0.0f, *size2 - min_size2); + if (mouse_delta < -size_1_maximum_delta) + mouse_delta = -size_1_maximum_delta; + if (mouse_delta > size_2_maximum_delta) + mouse_delta = size_2_maximum_delta; + + // Apply resize + if (mouse_delta != 0.0f) + { + *size1 = ImMax(*size1 + mouse_delta, min_size1); + *size2 = ImMax(*size2 - mouse_delta, min_size2); + bb_render.Translate((axis == ImGuiAxis_X) ? ImVec2(mouse_delta, 0.0f) : ImVec2(0.0f, mouse_delta)); + MarkItemEdited(id); + } + } + + // Render at new position + if (bg_col & IM_COL32_A_MASK) + window->DrawList->AddRectFilled(bb_render.Min, bb_render.Max, bg_col, 0.0f); + const ImU32 col = GetColorU32(held ? ImGuiCol_SeparatorActive : (hovered && g.HoveredIdTimer >= hover_visibility_delay) ? ImGuiCol_SeparatorHovered : ImGuiCol_Separator); + window->DrawList->AddRectFilled(bb_render.Min, bb_render.Max, col, 0.0f); + + return held; +} + +static int IMGUI_CDECL ShrinkWidthItemComparer(const void* lhs, const void* rhs) +{ + const ImGuiShrinkWidthItem* a = (const ImGuiShrinkWidthItem*)lhs; + const ImGuiShrinkWidthItem* b = (const ImGuiShrinkWidthItem*)rhs; + if (int d = (int)(b->Width - a->Width)) + return d; + return (b->Index - a->Index); +} + +// Shrink excess width from a set of item, by removing width from the larger items first. +// Set items Width to -1.0f to disable shrinking this item. +void ImGui::ShrinkWidths(ImGuiShrinkWidthItem* items, int count, float width_excess) +{ + if (count == 1) + { + if (items[0].Width >= 0.0f) + items[0].Width = ImMax(items[0].Width - width_excess, 1.0f); + return; + } + ImQsort(items, (size_t)count, sizeof(ImGuiShrinkWidthItem), ShrinkWidthItemComparer); + int count_same_width = 1; + while (width_excess > 0.0f && count_same_width < count) + { + while (count_same_width < count && items[0].Width <= items[count_same_width].Width) + count_same_width++; + float max_width_to_remove_per_item = (count_same_width < count && items[count_same_width].Width >= 0.0f) ? (items[0].Width - items[count_same_width].Width) : (items[0].Width - 1.0f); + if (max_width_to_remove_per_item <= 0.0f) + break; + float width_to_remove_per_item = ImMin(width_excess / count_same_width, max_width_to_remove_per_item); + for (int item_n = 0; item_n < count_same_width; item_n++) + items[item_n].Width -= width_to_remove_per_item; + width_excess -= width_to_remove_per_item * count_same_width; + } + + // Round width and redistribute remainder + // Ensure that e.g. the right-most tab of a shrunk tab-bar always reaches exactly at the same distance from the right-most edge of the tab bar separator. + width_excess = 0.0f; + for (int n = 0; n < count; n++) + { + float width_rounded = ImTrunc(items[n].Width); + width_excess += items[n].Width - width_rounded; + items[n].Width = width_rounded; + } + while (width_excess > 0.0f) + for (int n = 0; n < count && width_excess > 0.0f; n++) + { + float width_to_add = ImMin(items[n].InitialWidth - items[n].Width, 1.0f); + items[n].Width += width_to_add; + width_excess -= width_to_add; + } +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: ComboBox +//------------------------------------------------------------------------- +// - CalcMaxPopupHeightFromItemCount() [Internal] +// - BeginCombo() +// - BeginComboPopup() [Internal] +// - EndCombo() +// - BeginComboPreview() [Internal] +// - EndComboPreview() [Internal] +// - Combo() +//------------------------------------------------------------------------- + +static float CalcMaxPopupHeightFromItemCount(int items_count) +{ + ImGuiContext& g = *GImGui; + if (items_count <= 0) + return FLT_MAX; + return (g.FontSize + g.Style.ItemSpacing.y) * items_count - g.Style.ItemSpacing.y + (g.Style.WindowPadding.y * 2); +} + +bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + + ImGuiNextWindowDataFlags backup_next_window_data_flags = g.NextWindowData.Flags; + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + if (window->SkipItems) + return false; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + IM_ASSERT((flags & (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)) != (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)); // Can't use both flags together + if (flags & ImGuiComboFlags_WidthFitPreview) + IM_ASSERT((flags & (ImGuiComboFlags_NoPreview | (ImGuiComboFlags)ImGuiComboFlags_CustomPreview)) == 0); + + const float arrow_size = (flags & ImGuiComboFlags_NoArrowButton) ? 0.0f : GetFrameHeight(); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const float preview_width = ((flags & ImGuiComboFlags_WidthFitPreview) && (preview_value != NULL)) ? CalcTextSize(preview_value, NULL, true).x : 0.0f; + const float w = (flags & ImGuiComboFlags_NoPreview) ? arrow_size : ((flags & ImGuiComboFlags_WidthFitPreview) ? (arrow_size + preview_width + style.FramePadding.x * 2.0f) : CalcItemWidth()); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y + style.FramePadding.y * 2.0f)); + const ImRect total_bb(bb.Min, bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &bb)) + return false; + + // Open on click + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held); + const ImGuiID popup_id = ImHashStr("##ComboPopup", 0, id); + bool popup_open = IsPopupOpen(popup_id, ImGuiPopupFlags_None); + if (pressed && !popup_open) + { + OpenPopupEx(popup_id, ImGuiPopupFlags_None); + popup_open = true; + } + + // Render shape + const ImU32 frame_col = GetColorU32(hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); + const float value_x2 = ImMax(bb.Min.x, bb.Max.x - arrow_size); + RenderNavHighlight(bb, id); + if (!(flags & ImGuiComboFlags_NoPreview)) + window->DrawList->AddRectFilled(bb.Min, ImVec2(value_x2, bb.Max.y), frame_col, style.FrameRounding, (flags & ImGuiComboFlags_NoArrowButton) ? ImDrawFlags_RoundCornersAll : ImDrawFlags_RoundCornersLeft); + if (!(flags & ImGuiComboFlags_NoArrowButton)) + { + ImU32 bg_col = GetColorU32((popup_open || hovered) ? ImGuiCol_ButtonHovered : ImGuiCol_Button); + ImU32 text_col = GetColorU32(ImGuiCol_Text); + window->DrawList->AddRectFilled(ImVec2(value_x2, bb.Min.y), bb.Max, bg_col, style.FrameRounding, (w <= arrow_size) ? ImDrawFlags_RoundCornersAll : ImDrawFlags_RoundCornersRight); + if (value_x2 + arrow_size - style.FramePadding.x <= bb.Max.x) + RenderArrow(window->DrawList, ImVec2(value_x2 + style.FramePadding.y, bb.Min.y + style.FramePadding.y), text_col, ImGuiDir_Down, 1.0f); + } + RenderFrameBorder(bb.Min, bb.Max, style.FrameRounding); + + // Custom preview + if (flags & ImGuiComboFlags_CustomPreview) + { + g.ComboPreviewData.PreviewRect = ImRect(bb.Min.x, bb.Min.y, value_x2, bb.Max.y); + IM_ASSERT(preview_value == NULL || preview_value[0] == 0); + preview_value = NULL; + } + + // Render preview and label + if (preview_value != NULL && !(flags & ImGuiComboFlags_NoPreview)) + { + if (g.LogEnabled) + LogSetNextTextDecoration("{", "}"); + RenderTextClipped(bb.Min + style.FramePadding, ImVec2(value_x2, bb.Max.y), preview_value, NULL, NULL); + } + if (label_size.x > 0) + RenderText(ImVec2(bb.Max.x + style.ItemInnerSpacing.x, bb.Min.y + style.FramePadding.y), label); + + if (!popup_open) + return false; + + g.NextWindowData.Flags = backup_next_window_data_flags; + return BeginComboPopup(popup_id, bb, flags); +} + +bool ImGui::BeginComboPopup(ImGuiID popup_id, const ImRect& bb, ImGuiComboFlags flags) +{ + ImGuiContext& g = *GImGui; + if (!IsPopupOpen(popup_id, ImGuiPopupFlags_None)) + { + g.NextWindowData.ClearFlags(); + return false; + } + + // Set popup size + float w = bb.GetWidth(); + if (g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint) + { + g.NextWindowData.SizeConstraintRect.Min.x = ImMax(g.NextWindowData.SizeConstraintRect.Min.x, w); + } + else + { + if ((flags & ImGuiComboFlags_HeightMask_) == 0) + flags |= ImGuiComboFlags_HeightRegular; + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiComboFlags_HeightMask_)); // Only one + int popup_max_height_in_items = -1; + if (flags & ImGuiComboFlags_HeightRegular) popup_max_height_in_items = 8; + else if (flags & ImGuiComboFlags_HeightSmall) popup_max_height_in_items = 4; + else if (flags & ImGuiComboFlags_HeightLarge) popup_max_height_in_items = 20; + ImVec2 constraint_min(0.0f, 0.0f), constraint_max(FLT_MAX, FLT_MAX); + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.x <= 0.0f) // Don't apply constraints if user specified a size + constraint_min.x = w; + if ((g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSize) == 0 || g.NextWindowData.SizeVal.y <= 0.0f) + constraint_max.y = CalcMaxPopupHeightFromItemCount(popup_max_height_in_items); + SetNextWindowSizeConstraints(constraint_min, constraint_max); + } + + // This is essentially a specialized version of BeginPopupEx() + char name[16]; + ImFormatString(name, IM_ARRAYSIZE(name), "##Combo_%02d", g.BeginComboDepth); // Recycle windows based on depth + + // Set position given a custom constraint (peak into expected window size so we can position it) + // FIXME: This might be easier to express with an hypothetical SetNextWindowPosConstraints() function? + // FIXME: This might be moved to Begin() or at least around the same spot where Tooltips and other Popups are calling FindBestWindowPosForPopupEx()? + if (ImGuiWindow* popup_window = FindWindowByName(name)) + if (popup_window->WasActive) + { + // Always override 'AutoPosLastDirection' to not leave a chance for a past value to affect us. + ImVec2 size_expected = CalcWindowNextAutoFitSize(popup_window); + popup_window->AutoPosLastDirection = (flags & ImGuiComboFlags_PopupAlignLeft) ? ImGuiDir_Left : ImGuiDir_Down; // Left = "Below, Toward Left", Down = "Below, Toward Right (default)" + ImRect r_outer = GetPopupAllowedExtentRect(popup_window); + ImVec2 pos = FindBestWindowPosForPopupEx(bb.GetBL(), size_expected, &popup_window->AutoPosLastDirection, r_outer, bb, ImGuiPopupPositionPolicy_ComboBox); + SetNextWindowPos(pos); + } + + // We don't use BeginPopupEx() solely because we have a custom name string, which we could make an argument to BeginPopupEx() + ImGuiWindowFlags window_flags = ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_Popup | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoMove; + PushStyleVarX(ImGuiStyleVar_WindowPadding, g.Style.FramePadding.x); // Horizontally align ourselves with the framed text + bool ret = Begin(name, NULL, window_flags); + PopStyleVar(); + if (!ret) + { + EndPopup(); + IM_ASSERT(0); // This should never happen as we tested for IsPopupOpen() above + return false; + } + g.BeginComboDepth++; + return true; +} + +void ImGui::EndCombo() +{ + ImGuiContext& g = *GImGui; + EndPopup(); + g.BeginComboDepth--; +} + +// Call directly after the BeginCombo/EndCombo block. The preview is designed to only host non-interactive elements +// (Experimental, see GitHub issues: #1658, #4168) +bool ImGui::BeginComboPreview() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiComboPreviewData* preview_data = &g.ComboPreviewData; + + if (window->SkipItems || !(g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible)) + return false; + IM_ASSERT(g.LastItemData.Rect.Min.x == preview_data->PreviewRect.Min.x && g.LastItemData.Rect.Min.y == preview_data->PreviewRect.Min.y); // Didn't call after BeginCombo/EndCombo block or forgot to pass ImGuiComboFlags_CustomPreview flag? + if (!window->ClipRect.Overlaps(preview_data->PreviewRect)) // Narrower test (optional) + return false; + + // FIXME: This could be contained in a PushWorkRect() api + preview_data->BackupCursorPos = window->DC.CursorPos; + preview_data->BackupCursorMaxPos = window->DC.CursorMaxPos; + preview_data->BackupCursorPosPrevLine = window->DC.CursorPosPrevLine; + preview_data->BackupPrevLineTextBaseOffset = window->DC.PrevLineTextBaseOffset; + preview_data->BackupLayout = window->DC.LayoutType; + window->DC.CursorPos = preview_data->PreviewRect.Min + g.Style.FramePadding; + window->DC.CursorMaxPos = window->DC.CursorPos; + window->DC.LayoutType = ImGuiLayoutType_Horizontal; + window->DC.IsSameLine = false; + PushClipRect(preview_data->PreviewRect.Min, preview_data->PreviewRect.Max, true); + + return true; +} + +void ImGui::EndComboPreview() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiComboPreviewData* preview_data = &g.ComboPreviewData; + + // FIXME: Using CursorMaxPos approximation instead of correct AABB which we will store in ImDrawCmd in the future + ImDrawList* draw_list = window->DrawList; + if (window->DC.CursorMaxPos.x < preview_data->PreviewRect.Max.x && window->DC.CursorMaxPos.y < preview_data->PreviewRect.Max.y) + if (draw_list->CmdBuffer.Size > 1) // Unlikely case that the PushClipRect() didn't create a command + { + draw_list->_CmdHeader.ClipRect = draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 1].ClipRect = draw_list->CmdBuffer[draw_list->CmdBuffer.Size - 2].ClipRect; + draw_list->_TryMergeDrawCmds(); + } + PopClipRect(); + window->DC.CursorPos = preview_data->BackupCursorPos; + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, preview_data->BackupCursorMaxPos); + window->DC.CursorPosPrevLine = preview_data->BackupCursorPosPrevLine; + window->DC.PrevLineTextBaseOffset = preview_data->BackupPrevLineTextBaseOffset; + window->DC.LayoutType = preview_data->BackupLayout; + window->DC.IsSameLine = false; + preview_data->PreviewRect = ImRect(); +} + +// Getter for the old Combo() API: const char*[] +static const char* Items_ArrayGetter(void* data, int idx) +{ + const char* const* items = (const char* const*)data; + return items[idx]; +} + +// Getter for the old Combo() API: "item1\0item2\0item3\0" +static const char* Items_SingleStringGetter(void* data, int idx) +{ + const char* items_separated_by_zeros = (const char*)data; + int items_count = 0; + const char* p = items_separated_by_zeros; + while (*p) + { + if (idx == items_count) + break; + p += strlen(p) + 1; + items_count++; + } + return *p ? p : NULL; +} + +// Old API, prefer using BeginCombo() nowadays if you can. +bool ImGui::Combo(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), void* user_data, int items_count, int popup_max_height_in_items) +{ + ImGuiContext& g = *GImGui; + + // Call the getter to obtain the preview string which is a parameter to BeginCombo() + const char* preview_value = NULL; + if (*current_item >= 0 && *current_item < items_count) + preview_value = getter(user_data, *current_item); + + // The old Combo() API exposed "popup_max_height_in_items". The new more general BeginCombo() API doesn't have/need it, but we emulate it here. + if (popup_max_height_in_items != -1 && !(g.NextWindowData.Flags & ImGuiNextWindowDataFlags_HasSizeConstraint)) + SetNextWindowSizeConstraints(ImVec2(0, 0), ImVec2(FLT_MAX, CalcMaxPopupHeightFromItemCount(popup_max_height_in_items))); + + if (!BeginCombo(label, preview_value, ImGuiComboFlags_None)) + return false; + + // Display items + bool value_changed = false; + ImGuiListClipper clipper; + clipper.Begin(items_count); + clipper.IncludeItemByIndex(*current_item); + while (clipper.Step()) + for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) + { + const char* item_text = getter(user_data, i); + if (item_text == NULL) + item_text = "*Unknown item*"; + + PushID(i); + const bool item_selected = (i == *current_item); + if (Selectable(item_text, item_selected) && *current_item != i) + { + value_changed = true; + *current_item = i; + } + if (item_selected) + SetItemDefaultFocus(); + PopID(); + } + + EndCombo(); + if (value_changed) + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +// Combo box helper allowing to pass an array of strings. +bool ImGui::Combo(const char* label, int* current_item, const char* const items[], int items_count, int height_in_items) +{ + const bool value_changed = Combo(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_in_items); + return value_changed; +} + +// Combo box helper allowing to pass all items in a single string literal holding multiple zero-terminated items "item1\0item2\0" +bool ImGui::Combo(const char* label, int* current_item, const char* items_separated_by_zeros, int height_in_items) +{ + int items_count = 0; + const char* p = items_separated_by_zeros; // FIXME-OPT: Avoid computing this, or at least only when combo is open + while (*p) + { + p += strlen(p) + 1; + items_count++; + } + bool value_changed = Combo(label, current_item, Items_SingleStringGetter, (void*)items_separated_by_zeros, items_count, height_in_items); + return value_changed; +} + +#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS + +struct ImGuiGetNameFromIndexOldToNewCallbackData { void* UserData; bool (*OldCallback)(void*, int, const char**); }; +static const char* ImGuiGetNameFromIndexOldToNewCallback(void* user_data, int idx) +{ + ImGuiGetNameFromIndexOldToNewCallbackData* data = (ImGuiGetNameFromIndexOldToNewCallbackData*)user_data; + const char* s = NULL; + data->OldCallback(data->UserData, idx, &s); + return s; +} + +bool ImGui::ListBox(const char* label, int* current_item, bool (*old_getter)(void*, int, const char**), void* user_data, int items_count, int height_in_items) +{ + ImGuiGetNameFromIndexOldToNewCallbackData old_to_new_data = { user_data, old_getter }; + return ListBox(label, current_item, ImGuiGetNameFromIndexOldToNewCallback, &old_to_new_data, items_count, height_in_items); +} +bool ImGui::Combo(const char* label, int* current_item, bool (*old_getter)(void*, int, const char**), void* user_data, int items_count, int popup_max_height_in_items) +{ + ImGuiGetNameFromIndexOldToNewCallbackData old_to_new_data = { user_data, old_getter }; + return Combo(label, current_item, ImGuiGetNameFromIndexOldToNewCallback, &old_to_new_data, items_count, popup_max_height_in_items); +} + +#endif + +//------------------------------------------------------------------------- +// [SECTION] Data Type and Data Formatting Helpers [Internal] +//------------------------------------------------------------------------- +// - DataTypeGetInfo() +// - DataTypeFormatString() +// - DataTypeApplyOp() +// - DataTypeApplyFromText() +// - DataTypeCompare() +// - DataTypeClamp() +// - GetMinimumStepAtDecimalPrecision +// - RoundScalarWithFormat<>() +//------------------------------------------------------------------------- + +static const ImGuiDataTypeInfo GDataTypeInfo[] = +{ + { sizeof(char), "S8", "%d", "%d" }, // ImGuiDataType_S8 + { sizeof(unsigned char), "U8", "%u", "%u" }, + { sizeof(short), "S16", "%d", "%d" }, // ImGuiDataType_S16 + { sizeof(unsigned short), "U16", "%u", "%u" }, + { sizeof(int), "S32", "%d", "%d" }, // ImGuiDataType_S32 + { sizeof(unsigned int), "U32", "%u", "%u" }, +#ifdef _MSC_VER + { sizeof(ImS64), "S64", "%I64d","%I64d" }, // ImGuiDataType_S64 + { sizeof(ImU64), "U64", "%I64u","%I64u" }, +#else + { sizeof(ImS64), "S64", "%lld", "%lld" }, // ImGuiDataType_S64 + { sizeof(ImU64), "U64", "%llu", "%llu" }, +#endif + { sizeof(float), "float", "%.3f","%f" }, // ImGuiDataType_Float (float are promoted to double in va_arg) + { sizeof(double), "double","%f", "%lf" }, // ImGuiDataType_Double + { sizeof(bool), "bool", "%d", "%d" }, // ImGuiDataType_Bool +}; +IM_STATIC_ASSERT(IM_ARRAYSIZE(GDataTypeInfo) == ImGuiDataType_COUNT); + +const ImGuiDataTypeInfo* ImGui::DataTypeGetInfo(ImGuiDataType data_type) +{ + IM_ASSERT(data_type >= 0 && data_type < ImGuiDataType_COUNT); + return &GDataTypeInfo[data_type]; +} + +int ImGui::DataTypeFormatString(char* buf, int buf_size, ImGuiDataType data_type, const void* p_data, const char* format) +{ + // Signedness doesn't matter when pushing integer arguments + if (data_type == ImGuiDataType_S32 || data_type == ImGuiDataType_U32) + return ImFormatString(buf, buf_size, format, *(const ImU32*)p_data); + if (data_type == ImGuiDataType_S64 || data_type == ImGuiDataType_U64) + return ImFormatString(buf, buf_size, format, *(const ImU64*)p_data); + if (data_type == ImGuiDataType_Float) + return ImFormatString(buf, buf_size, format, *(const float*)p_data); + if (data_type == ImGuiDataType_Double) + return ImFormatString(buf, buf_size, format, *(const double*)p_data); + if (data_type == ImGuiDataType_S8) + return ImFormatString(buf, buf_size, format, *(const ImS8*)p_data); + if (data_type == ImGuiDataType_U8) + return ImFormatString(buf, buf_size, format, *(const ImU8*)p_data); + if (data_type == ImGuiDataType_S16) + return ImFormatString(buf, buf_size, format, *(const ImS16*)p_data); + if (data_type == ImGuiDataType_U16) + return ImFormatString(buf, buf_size, format, *(const ImU16*)p_data); + IM_ASSERT(0); + return 0; +} + +void ImGui::DataTypeApplyOp(ImGuiDataType data_type, int op, void* output, const void* arg1, const void* arg2) +{ + IM_ASSERT(op == '+' || op == '-'); + switch (data_type) + { + case ImGuiDataType_S8: + if (op == '+') { *(ImS8*)output = ImAddClampOverflow(*(const ImS8*)arg1, *(const ImS8*)arg2, IM_S8_MIN, IM_S8_MAX); } + if (op == '-') { *(ImS8*)output = ImSubClampOverflow(*(const ImS8*)arg1, *(const ImS8*)arg2, IM_S8_MIN, IM_S8_MAX); } + return; + case ImGuiDataType_U8: + if (op == '+') { *(ImU8*)output = ImAddClampOverflow(*(const ImU8*)arg1, *(const ImU8*)arg2, IM_U8_MIN, IM_U8_MAX); } + if (op == '-') { *(ImU8*)output = ImSubClampOverflow(*(const ImU8*)arg1, *(const ImU8*)arg2, IM_U8_MIN, IM_U8_MAX); } + return; + case ImGuiDataType_S16: + if (op == '+') { *(ImS16*)output = ImAddClampOverflow(*(const ImS16*)arg1, *(const ImS16*)arg2, IM_S16_MIN, IM_S16_MAX); } + if (op == '-') { *(ImS16*)output = ImSubClampOverflow(*(const ImS16*)arg1, *(const ImS16*)arg2, IM_S16_MIN, IM_S16_MAX); } + return; + case ImGuiDataType_U16: + if (op == '+') { *(ImU16*)output = ImAddClampOverflow(*(const ImU16*)arg1, *(const ImU16*)arg2, IM_U16_MIN, IM_U16_MAX); } + if (op == '-') { *(ImU16*)output = ImSubClampOverflow(*(const ImU16*)arg1, *(const ImU16*)arg2, IM_U16_MIN, IM_U16_MAX); } + return; + case ImGuiDataType_S32: + if (op == '+') { *(ImS32*)output = ImAddClampOverflow(*(const ImS32*)arg1, *(const ImS32*)arg2, IM_S32_MIN, IM_S32_MAX); } + if (op == '-') { *(ImS32*)output = ImSubClampOverflow(*(const ImS32*)arg1, *(const ImS32*)arg2, IM_S32_MIN, IM_S32_MAX); } + return; + case ImGuiDataType_U32: + if (op == '+') { *(ImU32*)output = ImAddClampOverflow(*(const ImU32*)arg1, *(const ImU32*)arg2, IM_U32_MIN, IM_U32_MAX); } + if (op == '-') { *(ImU32*)output = ImSubClampOverflow(*(const ImU32*)arg1, *(const ImU32*)arg2, IM_U32_MIN, IM_U32_MAX); } + return; + case ImGuiDataType_S64: + if (op == '+') { *(ImS64*)output = ImAddClampOverflow(*(const ImS64*)arg1, *(const ImS64*)arg2, IM_S64_MIN, IM_S64_MAX); } + if (op == '-') { *(ImS64*)output = ImSubClampOverflow(*(const ImS64*)arg1, *(const ImS64*)arg2, IM_S64_MIN, IM_S64_MAX); } + return; + case ImGuiDataType_U64: + if (op == '+') { *(ImU64*)output = ImAddClampOverflow(*(const ImU64*)arg1, *(const ImU64*)arg2, IM_U64_MIN, IM_U64_MAX); } + if (op == '-') { *(ImU64*)output = ImSubClampOverflow(*(const ImU64*)arg1, *(const ImU64*)arg2, IM_U64_MIN, IM_U64_MAX); } + return; + case ImGuiDataType_Float: + if (op == '+') { *(float*)output = *(const float*)arg1 + *(const float*)arg2; } + if (op == '-') { *(float*)output = *(const float*)arg1 - *(const float*)arg2; } + return; + case ImGuiDataType_Double: + if (op == '+') { *(double*)output = *(const double*)arg1 + *(const double*)arg2; } + if (op == '-') { *(double*)output = *(const double*)arg1 - *(const double*)arg2; } + return; + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); +} + +// User can input math operators (e.g. +100) to edit a numerical values. +// NB: This is _not_ a full expression evaluator. We should probably add one and replace this dumb mess.. +bool ImGui::DataTypeApplyFromText(const char* buf, ImGuiDataType data_type, void* p_data, const char* format, void* p_data_when_empty) +{ + // Copy the value in an opaque buffer so we can compare at the end of the function if it changed at all. + const ImGuiDataTypeInfo* type_info = DataTypeGetInfo(data_type); + ImGuiDataTypeStorage data_backup; + memcpy(&data_backup, p_data, type_info->Size); + + while (ImCharIsBlankA(*buf)) + buf++; + if (!buf[0]) + { + if (p_data_when_empty != NULL) + { + memcpy(p_data, p_data_when_empty, type_info->Size); + return memcmp(&data_backup, p_data, type_info->Size) != 0; + } + return false; + } + + // Sanitize format + // - For float/double we have to ignore format with precision (e.g. "%.2f") because sscanf doesn't take them in, so force them into %f and %lf + // - In theory could treat empty format as using default, but this would only cover rare/bizarre case of using InputScalar() + integer + format string without %. + char format_sanitized[32]; + if (data_type == ImGuiDataType_Float || data_type == ImGuiDataType_Double) + format = type_info->ScanFmt; + else + format = ImParseFormatSanitizeForScanning(format, format_sanitized, IM_ARRAYSIZE(format_sanitized)); + + // Small types need a 32-bit buffer to receive the result from scanf() + int v32 = 0; + if (sscanf(buf, format, type_info->Size >= 4 ? p_data : &v32) < 1) + return false; + if (type_info->Size < 4) + { + if (data_type == ImGuiDataType_S8) + *(ImS8*)p_data = (ImS8)ImClamp(v32, (int)IM_S8_MIN, (int)IM_S8_MAX); + else if (data_type == ImGuiDataType_U8) + *(ImU8*)p_data = (ImU8)ImClamp(v32, (int)IM_U8_MIN, (int)IM_U8_MAX); + else if (data_type == ImGuiDataType_S16) + *(ImS16*)p_data = (ImS16)ImClamp(v32, (int)IM_S16_MIN, (int)IM_S16_MAX); + else if (data_type == ImGuiDataType_U16) + *(ImU16*)p_data = (ImU16)ImClamp(v32, (int)IM_U16_MIN, (int)IM_U16_MAX); + else + IM_ASSERT(0); + } + + return memcmp(&data_backup, p_data, type_info->Size) != 0; +} + +template +static int DataTypeCompareT(const T* lhs, const T* rhs) +{ + if (*lhs < *rhs) return -1; + if (*lhs > *rhs) return +1; + return 0; +} + +int ImGui::DataTypeCompare(ImGuiDataType data_type, const void* arg_1, const void* arg_2) +{ + switch (data_type) + { + case ImGuiDataType_S8: return DataTypeCompareT((const ImS8* )arg_1, (const ImS8* )arg_2); + case ImGuiDataType_U8: return DataTypeCompareT((const ImU8* )arg_1, (const ImU8* )arg_2); + case ImGuiDataType_S16: return DataTypeCompareT((const ImS16* )arg_1, (const ImS16* )arg_2); + case ImGuiDataType_U16: return DataTypeCompareT((const ImU16* )arg_1, (const ImU16* )arg_2); + case ImGuiDataType_S32: return DataTypeCompareT((const ImS32* )arg_1, (const ImS32* )arg_2); + case ImGuiDataType_U32: return DataTypeCompareT((const ImU32* )arg_1, (const ImU32* )arg_2); + case ImGuiDataType_S64: return DataTypeCompareT((const ImS64* )arg_1, (const ImS64* )arg_2); + case ImGuiDataType_U64: return DataTypeCompareT((const ImU64* )arg_1, (const ImU64* )arg_2); + case ImGuiDataType_Float: return DataTypeCompareT((const float* )arg_1, (const float* )arg_2); + case ImGuiDataType_Double: return DataTypeCompareT((const double*)arg_1, (const double*)arg_2); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return 0; +} + +template +static bool DataTypeClampT(T* v, const T* v_min, const T* v_max) +{ + // Clamp, both sides are optional, return true if modified + if (v_min && *v < *v_min) { *v = *v_min; return true; } + if (v_max && *v > *v_max) { *v = *v_max; return true; } + return false; +} + +bool ImGui::DataTypeClamp(ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max) +{ + switch (data_type) + { + case ImGuiDataType_S8: return DataTypeClampT((ImS8* )p_data, (const ImS8* )p_min, (const ImS8* )p_max); + case ImGuiDataType_U8: return DataTypeClampT((ImU8* )p_data, (const ImU8* )p_min, (const ImU8* )p_max); + case ImGuiDataType_S16: return DataTypeClampT((ImS16* )p_data, (const ImS16* )p_min, (const ImS16* )p_max); + case ImGuiDataType_U16: return DataTypeClampT((ImU16* )p_data, (const ImU16* )p_min, (const ImU16* )p_max); + case ImGuiDataType_S32: return DataTypeClampT((ImS32* )p_data, (const ImS32* )p_min, (const ImS32* )p_max); + case ImGuiDataType_U32: return DataTypeClampT((ImU32* )p_data, (const ImU32* )p_min, (const ImU32* )p_max); + case ImGuiDataType_S64: return DataTypeClampT((ImS64* )p_data, (const ImS64* )p_min, (const ImS64* )p_max); + case ImGuiDataType_U64: return DataTypeClampT((ImU64* )p_data, (const ImU64* )p_min, (const ImU64* )p_max); + case ImGuiDataType_Float: return DataTypeClampT((float* )p_data, (const float* )p_min, (const float* )p_max); + case ImGuiDataType_Double: return DataTypeClampT((double*)p_data, (const double*)p_min, (const double*)p_max); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return false; +} + +static float GetMinimumStepAtDecimalPrecision(int decimal_precision) +{ + static const float min_steps[10] = { 1.0f, 0.1f, 0.01f, 0.001f, 0.0001f, 0.00001f, 0.000001f, 0.0000001f, 0.00000001f, 0.000000001f }; + if (decimal_precision < 0) + return FLT_MIN; + return (decimal_precision < IM_ARRAYSIZE(min_steps)) ? min_steps[decimal_precision] : ImPow(10.0f, (float)-decimal_precision); +} + +template +TYPE ImGui::RoundScalarWithFormatT(const char* format, ImGuiDataType data_type, TYPE v) +{ + IM_UNUSED(data_type); + IM_ASSERT(data_type == ImGuiDataType_Float || data_type == ImGuiDataType_Double); + const char* fmt_start = ImParseFormatFindStart(format); + if (fmt_start[0] != '%' || fmt_start[1] == '%') // Don't apply if the value is not visible in the format string + return v; + + // Sanitize format + char fmt_sanitized[32]; + ImParseFormatSanitizeForPrinting(fmt_start, fmt_sanitized, IM_ARRAYSIZE(fmt_sanitized)); + fmt_start = fmt_sanitized; + + // Format value with our rounding, and read back + char v_str[64]; + ImFormatString(v_str, IM_ARRAYSIZE(v_str), fmt_start, v); + const char* p = v_str; + while (*p == ' ') + p++; + v = (TYPE)ImAtof(p); + + return v; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc. +//------------------------------------------------------------------------- +// - DragBehaviorT<>() [Internal] +// - DragBehavior() [Internal] +// - DragScalar() +// - DragScalarN() +// - DragFloat() +// - DragFloat2() +// - DragFloat3() +// - DragFloat4() +// - DragFloatRange2() +// - DragInt() +// - DragInt2() +// - DragInt3() +// - DragInt4() +// - DragIntRange2() +//------------------------------------------------------------------------- + +// This is called by DragBehavior() when the widget is active (held by mouse or being manipulated with Nav controls) +template +bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, const TYPE v_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiContext& g = *GImGui; + const ImGuiAxis axis = (flags & ImGuiSliderFlags_Vertical) ? ImGuiAxis_Y : ImGuiAxis_X; + const bool is_bounded = (v_min < v_max); + const bool is_wrapped = is_bounded && (flags & ImGuiSliderFlags_WrapAround); + const bool is_logarithmic = (flags & ImGuiSliderFlags_Logarithmic) != 0; + const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); + + // Default tweak speed + if (v_speed == 0.0f && is_bounded && (v_max - v_min < FLT_MAX)) + v_speed = (float)((v_max - v_min) * g.DragSpeedDefaultRatio); + + // Inputs accumulates into g.DragCurrentAccum, which is flushed into the current value as soon as it makes a difference with our precision settings + float adjust_delta = 0.0f; + if (g.ActiveIdSource == ImGuiInputSource_Mouse && IsMousePosValid() && IsMouseDragPastThreshold(0, g.IO.MouseDragThreshold * DRAG_MOUSE_THRESHOLD_FACTOR)) + { + adjust_delta = g.IO.MouseDelta[axis]; + if (g.IO.KeyAlt) + adjust_delta *= 1.0f / 100.0f; + if (g.IO.KeyShift) + adjust_delta *= 10.0f; + } + else if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + { + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 0; + const bool tweak_slow = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakSlow : ImGuiKey_NavKeyboardTweakSlow); + const bool tweak_fast = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakFast : ImGuiKey_NavKeyboardTweakFast); + const float tweak_factor = tweak_slow ? 1.0f / 10.0f : tweak_fast ? 10.0f : 1.0f; + adjust_delta = GetNavTweakPressedAmount(axis) * tweak_factor; + v_speed = ImMax(v_speed, GetMinimumStepAtDecimalPrecision(decimal_precision)); + } + adjust_delta *= v_speed; + + // For vertical drag we currently assume that Up=higher value (like we do with vertical sliders). This may become a parameter. + if (axis == ImGuiAxis_Y) + adjust_delta = -adjust_delta; + + // For logarithmic use our range is effectively 0..1 so scale the delta into that range + if (is_logarithmic && (v_max - v_min < FLT_MAX) && ((v_max - v_min) > 0.000001f)) // Epsilon to avoid /0 + adjust_delta /= (float)(v_max - v_min); + + // Clear current value on activation + // Avoid altering values and clamping when we are _already_ past the limits and heading in the same direction, so e.g. if range is 0..255, current value is 300 and we are pushing to the right side, keep the 300. + const bool is_just_activated = g.ActiveIdIsJustActivated; + const bool is_already_past_limits_and_pushing_outward = is_bounded && !is_wrapped && ((*v >= v_max && adjust_delta > 0.0f) || (*v <= v_min && adjust_delta < 0.0f)); + if (is_just_activated || is_already_past_limits_and_pushing_outward) + { + g.DragCurrentAccum = 0.0f; + g.DragCurrentAccumDirty = false; + } + else if (adjust_delta != 0.0f) + { + g.DragCurrentAccum += adjust_delta; + g.DragCurrentAccumDirty = true; + } + + if (!g.DragCurrentAccumDirty) + return false; + + TYPE v_cur = *v; + FLOATTYPE v_old_ref_for_accum_remainder = (FLOATTYPE)0.0f; + + float logarithmic_zero_epsilon = 0.0f; // Only valid when is_logarithmic is true + const float zero_deadzone_halfsize = 0.0f; // Drag widgets have no deadzone (as it doesn't make sense) + if (is_logarithmic) + { + // When using logarithmic sliders, we need to clamp to avoid hitting zero, but our choice of clamp value greatly affects slider precision. We attempt to use the specified precision to estimate a good lower bound. + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 1; + logarithmic_zero_epsilon = ImPow(0.1f, (float)decimal_precision); + + // Convert to parametric space, apply delta, convert back + float v_old_parametric = ScaleRatioFromValueT(data_type, v_cur, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + float v_new_parametric = v_old_parametric + g.DragCurrentAccum; + v_cur = ScaleValueFromRatioT(data_type, v_new_parametric, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + v_old_ref_for_accum_remainder = v_old_parametric; + } + else + { + v_cur += (SIGNEDTYPE)g.DragCurrentAccum; + } + + // Round to user desired precision based on format string + if (is_floating_point && !(flags & ImGuiSliderFlags_NoRoundToFormat)) + v_cur = RoundScalarWithFormatT(format, data_type, v_cur); + + // Preserve remainder after rounding has been applied. This also allow slow tweaking of values. + g.DragCurrentAccumDirty = false; + if (is_logarithmic) + { + // Convert to parametric space, apply delta, convert back + float v_new_parametric = ScaleRatioFromValueT(data_type, v_cur, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + g.DragCurrentAccum -= (float)(v_new_parametric - v_old_ref_for_accum_remainder); + } + else + { + g.DragCurrentAccum -= (float)((SIGNEDTYPE)v_cur - (SIGNEDTYPE)*v); + } + + // Lose zero sign for float/double + if (v_cur == (TYPE)-0) + v_cur = (TYPE)0; + + if (*v != v_cur && is_bounded) + { + if (is_wrapped) + { + // Wrap values + if (v_cur < v_min) + v_cur += v_max - v_min + (is_floating_point ? 0 : 1); + if (v_cur > v_max) + v_cur -= v_max - v_min + (is_floating_point ? 0 : 1); + } + else + { + // Clamp values + handle overflow/wrap-around for integer types. + if (v_cur < v_min || (v_cur > *v && adjust_delta < 0.0f && !is_floating_point)) + v_cur = v_min; + if (v_cur > v_max || (v_cur < *v && adjust_delta > 0.0f && !is_floating_point)) + v_cur = v_max; + } + } + + // Apply result + if (*v == v_cur) + return false; + *v = v_cur; + return true; +} + +bool ImGui::DragBehavior(ImGuiID id, ImGuiDataType data_type, void* p_v, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + // Read imgui.cpp "API BREAKING CHANGES" section for 1.78 if you hit this assert. + IM_ASSERT((flags == 1 || (flags & ImGuiSliderFlags_InvalidMask_) == 0) && "Invalid ImGuiSliderFlags flags! Has the legacy 'float power' argument been mistakenly cast to flags? Call function with ImGuiSliderFlags_Logarithmic flags instead."); + + ImGuiContext& g = *GImGui; + if (g.ActiveId == id) + { + // Those are the things we can do easily outside the DragBehaviorT<> template, saves code generation. + if (g.ActiveIdSource == ImGuiInputSource_Mouse && !g.IO.MouseDown[0]) + ClearActiveID(); + else if ((g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) && g.NavActivatePressedId == id && !g.ActiveIdIsJustActivated) + ClearActiveID(); + } + if (g.ActiveId != id) + return false; + if ((g.LastItemData.InFlags & ImGuiItemFlags_ReadOnly) || (flags & ImGuiSliderFlags_ReadOnly)) + return false; + + switch (data_type) + { + case ImGuiDataType_S8: { ImS32 v32 = (ImS32)*(ImS8*)p_v; bool r = DragBehaviorT(ImGuiDataType_S32, &v32, v_speed, p_min ? *(const ImS8*) p_min : IM_S8_MIN, p_max ? *(const ImS8*)p_max : IM_S8_MAX, format, flags); if (r) *(ImS8*)p_v = (ImS8)v32; return r; } + case ImGuiDataType_U8: { ImU32 v32 = (ImU32)*(ImU8*)p_v; bool r = DragBehaviorT(ImGuiDataType_U32, &v32, v_speed, p_min ? *(const ImU8*) p_min : IM_U8_MIN, p_max ? *(const ImU8*)p_max : IM_U8_MAX, format, flags); if (r) *(ImU8*)p_v = (ImU8)v32; return r; } + case ImGuiDataType_S16: { ImS32 v32 = (ImS32)*(ImS16*)p_v; bool r = DragBehaviorT(ImGuiDataType_S32, &v32, v_speed, p_min ? *(const ImS16*)p_min : IM_S16_MIN, p_max ? *(const ImS16*)p_max : IM_S16_MAX, format, flags); if (r) *(ImS16*)p_v = (ImS16)v32; return r; } + case ImGuiDataType_U16: { ImU32 v32 = (ImU32)*(ImU16*)p_v; bool r = DragBehaviorT(ImGuiDataType_U32, &v32, v_speed, p_min ? *(const ImU16*)p_min : IM_U16_MIN, p_max ? *(const ImU16*)p_max : IM_U16_MAX, format, flags); if (r) *(ImU16*)p_v = (ImU16)v32; return r; } + case ImGuiDataType_S32: return DragBehaviorT(data_type, (ImS32*)p_v, v_speed, p_min ? *(const ImS32* )p_min : IM_S32_MIN, p_max ? *(const ImS32* )p_max : IM_S32_MAX, format, flags); + case ImGuiDataType_U32: return DragBehaviorT(data_type, (ImU32*)p_v, v_speed, p_min ? *(const ImU32* )p_min : IM_U32_MIN, p_max ? *(const ImU32* )p_max : IM_U32_MAX, format, flags); + case ImGuiDataType_S64: return DragBehaviorT(data_type, (ImS64*)p_v, v_speed, p_min ? *(const ImS64* )p_min : IM_S64_MIN, p_max ? *(const ImS64* )p_max : IM_S64_MAX, format, flags); + case ImGuiDataType_U64: return DragBehaviorT(data_type, (ImU64*)p_v, v_speed, p_min ? *(const ImU64* )p_min : IM_U64_MIN, p_max ? *(const ImU64* )p_max : IM_U64_MAX, format, flags); + case ImGuiDataType_Float: return DragBehaviorT(data_type, (float*)p_v, v_speed, p_min ? *(const float* )p_min : -FLT_MAX, p_max ? *(const float* )p_max : FLT_MAX, format, flags); + case ImGuiDataType_Double: return DragBehaviorT(data_type, (double*)p_v, v_speed, p_min ? *(const double*)p_min : -DBL_MAX, p_max ? *(const double*)p_max : DBL_MAX, format, flags); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return false; +} + +// Note: p_data, p_min and p_max are _pointers_ to a memory address holding the data. For a Drag widget, p_min and p_max are optional. +// Read code of e.g. DragFloat(), DragInt() etc. or examples in 'Demo->Widgets->Data Types' to understand how to use this function directly. +bool ImGui::DragScalar(const char* label, ImGuiDataType data_type, void* p_data, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const float w = CalcItemWidth(); + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y + style.FramePadding.y * 2.0f)); + const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + + const bool temp_input_allowed = (flags & ImGuiSliderFlags_NoInput) == 0; + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &frame_bb, temp_input_allowed ? ImGuiItemFlags_Inputable : 0)) + return false; + + // Default format string when passing NULL + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id); + if (!temp_input_is_active) + { + // Tabbing or CTRL-clicking on Drag turns it into an InputText + const bool clicked = hovered && IsMouseClicked(0, ImGuiInputFlags_None, id); + const bool double_clicked = (hovered && g.IO.MouseClickedCount[0] == 2 && TestKeyOwner(ImGuiKey_MouseLeft, id)); + const bool make_active = (clicked || double_clicked || g.NavActivateId == id); + if (make_active && (clicked || double_clicked)) + SetKeyOwner(ImGuiKey_MouseLeft, id); + if (make_active && temp_input_allowed) + if ((clicked && g.IO.KeyCtrl) || double_clicked || (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_PreferInput))) + temp_input_is_active = true; + + // (Optional) simple click (without moving) turns Drag into an InputText + if (g.IO.ConfigDragClickToInputText && temp_input_allowed && !temp_input_is_active) + if (g.ActiveId == id && hovered && g.IO.MouseReleased[0] && !IsMouseDragPastThreshold(0, g.IO.MouseDragThreshold * DRAG_MOUSE_THRESHOLD_FACTOR)) + { + g.NavActivateId = id; + g.NavActivateFlags = ImGuiActivateFlags_PreferInput; + temp_input_is_active = true; + } + + if (make_active && !temp_input_is_active) + { + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + g.ActiveIdUsingNavDirMask = (1 << ImGuiDir_Left) | (1 << ImGuiDir_Right); + } + } + + if (temp_input_is_active) + { + // Only clamp CTRL+Click input when ImGuiSliderFlags_AlwaysClamp is set + const bool is_clamp_input = (flags & ImGuiSliderFlags_AlwaysClamp) != 0 && (p_min == NULL || p_max == NULL || DataTypeCompare(data_type, p_min, p_max) < 0); + return TempInputScalar(frame_bb, id, label, data_type, p_data, format, is_clamp_input ? p_min : NULL, is_clamp_input ? p_max : NULL); + } + + // Draw frame + const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); + RenderNavHighlight(frame_bb, id); + RenderFrame(frame_bb.Min, frame_bb.Max, frame_col, true, style.FrameRounding); + + // Drag behavior + const bool value_changed = DragBehavior(id, data_type, p_data, v_speed, p_min, p_max, format, flags); + if (value_changed) + MarkItemEdited(id); + + // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. + char value_buf[64]; + const char* value_buf_end = value_buf + DataTypeFormatString(value_buf, IM_ARRAYSIZE(value_buf), data_type, p_data, format); + if (g.LogEnabled) + LogSetNextTextDecoration("{", "}"); + RenderTextClipped(frame_bb.Min, frame_bb.Max, value_buf, value_buf_end, NULL, ImVec2(0.5f, 0.5f)); + + if (label_size.x > 0.0f) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | (temp_input_allowed ? ImGuiItemStatusFlags_Inputable : 0)); + return value_changed; +} + +bool ImGui::DragScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, float v_speed, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + bool value_changed = false; + BeginGroup(); + PushID(label); + PushMultiItemsWidths(components, CalcItemWidth()); + size_t type_size = GDataTypeInfo[data_type].Size; + for (int i = 0; i < components; i++) + { + PushID(i); + if (i > 0) + SameLine(0, g.Style.ItemInnerSpacing.x); + value_changed |= DragScalar("", data_type, p_data, v_speed, p_min, p_max, format, flags); + PopID(); + PopItemWidth(); + p_data = (void*)((char*)p_data + type_size); + } + PopID(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0, g.Style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + + EndGroup(); + return value_changed; +} + +bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalar(label, ImGuiDataType_Float, v, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragFloat2(const char* label, float v[2], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_Float, v, 2, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragFloat3(const char* label, float v[3], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_Float, v, 3, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragFloat4(const char* label, float v[4], float v_speed, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_Float, v, 4, v_speed, &v_min, &v_max, format, flags); +} + +// NB: You likely want to specify the ImGuiSliderFlags_AlwaysClamp when using this. +bool ImGui::DragFloatRange2(const char* label, float* v_current_min, float* v_current_max, float v_speed, float v_min, float v_max, const char* format, const char* format_max, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + PushID(label); + BeginGroup(); + PushMultiItemsWidths(2, CalcItemWidth()); + + float min_min = (v_min >= v_max) ? -FLT_MAX : v_min; + float min_max = (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max); + ImGuiSliderFlags min_flags = flags | ((min_min == min_max) ? ImGuiSliderFlags_ReadOnly : 0); + bool value_changed = DragScalar("##min", ImGuiDataType_Float, v_current_min, v_speed, &min_min, &min_max, format, min_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + float max_min = (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min); + float max_max = (v_min >= v_max) ? FLT_MAX : v_max; + ImGuiSliderFlags max_flags = flags | ((max_min == max_max) ? ImGuiSliderFlags_ReadOnly : 0); + value_changed |= DragScalar("##max", ImGuiDataType_Float, v_current_max, v_speed, &max_min, &max_max, format_max ? format_max : format, max_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + TextEx(label, FindRenderedTextEnd(label)); + EndGroup(); + PopID(); + + return value_changed; +} + +// NB: v_speed is float to allow adjusting the drag speed with more precision +bool ImGui::DragInt(const char* label, int* v, float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalar(label, ImGuiDataType_S32, v, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragInt2(const char* label, int v[2], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_S32, v, 2, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragInt3(const char* label, int v[3], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_S32, v, 3, v_speed, &v_min, &v_max, format, flags); +} + +bool ImGui::DragInt4(const char* label, int v[4], float v_speed, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return DragScalarN(label, ImGuiDataType_S32, v, 4, v_speed, &v_min, &v_max, format, flags); +} + +// NB: You likely want to specify the ImGuiSliderFlags_AlwaysClamp when using this. +bool ImGui::DragIntRange2(const char* label, int* v_current_min, int* v_current_max, float v_speed, int v_min, int v_max, const char* format, const char* format_max, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + PushID(label); + BeginGroup(); + PushMultiItemsWidths(2, CalcItemWidth()); + + int min_min = (v_min >= v_max) ? INT_MIN : v_min; + int min_max = (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max); + ImGuiSliderFlags min_flags = flags | ((min_min == min_max) ? ImGuiSliderFlags_ReadOnly : 0); + bool value_changed = DragInt("##min", v_current_min, v_speed, min_min, min_max, format, min_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + int max_min = (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min); + int max_max = (v_min >= v_max) ? INT_MAX : v_max; + ImGuiSliderFlags max_flags = flags | ((max_min == max_max) ? ImGuiSliderFlags_ReadOnly : 0); + value_changed |= DragInt("##max", v_current_max, v_speed, max_min, max_max, format_max ? format_max : format, max_flags); + PopItemWidth(); + SameLine(0, g.Style.ItemInnerSpacing.x); + + TextEx(label, FindRenderedTextEnd(label)); + EndGroup(); + PopID(); + + return value_changed; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: SliderScalar, SliderFloat, SliderInt, etc. +//------------------------------------------------------------------------- +// - ScaleRatioFromValueT<> [Internal] +// - ScaleValueFromRatioT<> [Internal] +// - SliderBehaviorT<>() [Internal] +// - SliderBehavior() [Internal] +// - SliderScalar() +// - SliderScalarN() +// - SliderFloat() +// - SliderFloat2() +// - SliderFloat3() +// - SliderFloat4() +// - SliderAngle() +// - SliderInt() +// - SliderInt2() +// - SliderInt3() +// - SliderInt4() +// - VSliderScalar() +// - VSliderFloat() +// - VSliderInt() +//------------------------------------------------------------------------- + +// Convert a value v in the output space of a slider into a parametric position on the slider itself (the logical opposite of ScaleValueFromRatioT) +template +float ImGui::ScaleRatioFromValueT(ImGuiDataType data_type, TYPE v, TYPE v_min, TYPE v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_halfsize) +{ + if (v_min == v_max) + return 0.0f; + IM_UNUSED(data_type); + + const TYPE v_clamped = (v_min < v_max) ? ImClamp(v, v_min, v_max) : ImClamp(v, v_max, v_min); + if (is_logarithmic) + { + bool flipped = v_max < v_min; + + if (flipped) // Handle the case where the range is backwards + ImSwap(v_min, v_max); + + // Fudge min/max to avoid getting close to log(0) + FLOATTYPE v_min_fudged = (ImAbs((FLOATTYPE)v_min) < logarithmic_zero_epsilon) ? ((v_min < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_min; + FLOATTYPE v_max_fudged = (ImAbs((FLOATTYPE)v_max) < logarithmic_zero_epsilon) ? ((v_max < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_max; + + // Awkward special cases - we need ranges of the form (-100 .. 0) to convert to (-100 .. -epsilon), not (-100 .. epsilon) + if ((v_min == 0.0f) && (v_max < 0.0f)) + v_min_fudged = -logarithmic_zero_epsilon; + else if ((v_max == 0.0f) && (v_min < 0.0f)) + v_max_fudged = -logarithmic_zero_epsilon; + + float result; + if (v_clamped <= v_min_fudged) + result = 0.0f; // Workaround for values that are in-range but below our fudge + else if (v_clamped >= v_max_fudged) + result = 1.0f; // Workaround for values that are in-range but above our fudge + else if ((v_min * v_max) < 0.0f) // Range crosses zero, so split into two portions + { + float zero_point_center = (-(float)v_min) / ((float)v_max - (float)v_min); // The zero point in parametric space. There's an argument we should take the logarithmic nature into account when calculating this, but for now this should do (and the most common case of a symmetrical range works fine) + float zero_point_snap_L = zero_point_center - zero_deadzone_halfsize; + float zero_point_snap_R = zero_point_center + zero_deadzone_halfsize; + if (v == 0.0f) + result = zero_point_center; // Special case for exactly zero + else if (v < 0.0f) + result = (1.0f - (float)(ImLog(-(FLOATTYPE)v_clamped / logarithmic_zero_epsilon) / ImLog(-v_min_fudged / logarithmic_zero_epsilon))) * zero_point_snap_L; + else + result = zero_point_snap_R + ((float)(ImLog((FLOATTYPE)v_clamped / logarithmic_zero_epsilon) / ImLog(v_max_fudged / logarithmic_zero_epsilon)) * (1.0f - zero_point_snap_R)); + } + else if ((v_min < 0.0f) || (v_max < 0.0f)) // Entirely negative slider + result = 1.0f - (float)(ImLog(-(FLOATTYPE)v_clamped / -v_max_fudged) / ImLog(-v_min_fudged / -v_max_fudged)); + else + result = (float)(ImLog((FLOATTYPE)v_clamped / v_min_fudged) / ImLog(v_max_fudged / v_min_fudged)); + + return flipped ? (1.0f - result) : result; + } + else + { + // Linear slider + return (float)((FLOATTYPE)(SIGNEDTYPE)(v_clamped - v_min) / (FLOATTYPE)(SIGNEDTYPE)(v_max - v_min)); + } +} + +// Convert a parametric position on a slider into a value v in the output space (the logical opposite of ScaleRatioFromValueT) +template +TYPE ImGui::ScaleValueFromRatioT(ImGuiDataType data_type, float t, TYPE v_min, TYPE v_max, bool is_logarithmic, float logarithmic_zero_epsilon, float zero_deadzone_halfsize) +{ + // We special-case the extents because otherwise our logarithmic fudging can lead to "mathematically correct" + // but non-intuitive behaviors like a fully-left slider not actually reaching the minimum value. Also generally simpler. + if (t <= 0.0f || v_min == v_max) + return v_min; + if (t >= 1.0f) + return v_max; + + TYPE result = (TYPE)0; + if (is_logarithmic) + { + // Fudge min/max to avoid getting silly results close to zero + FLOATTYPE v_min_fudged = (ImAbs((FLOATTYPE)v_min) < logarithmic_zero_epsilon) ? ((v_min < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_min; + FLOATTYPE v_max_fudged = (ImAbs((FLOATTYPE)v_max) < logarithmic_zero_epsilon) ? ((v_max < 0.0f) ? -logarithmic_zero_epsilon : logarithmic_zero_epsilon) : (FLOATTYPE)v_max; + + const bool flipped = v_max < v_min; // Check if range is "backwards" + if (flipped) + ImSwap(v_min_fudged, v_max_fudged); + + // Awkward special case - we need ranges of the form (-100 .. 0) to convert to (-100 .. -epsilon), not (-100 .. epsilon) + if ((v_max == 0.0f) && (v_min < 0.0f)) + v_max_fudged = -logarithmic_zero_epsilon; + + float t_with_flip = flipped ? (1.0f - t) : t; // t, but flipped if necessary to account for us flipping the range + + if ((v_min * v_max) < 0.0f) // Range crosses zero, so we have to do this in two parts + { + float zero_point_center = (-(float)ImMin(v_min, v_max)) / ImAbs((float)v_max - (float)v_min); // The zero point in parametric space + float zero_point_snap_L = zero_point_center - zero_deadzone_halfsize; + float zero_point_snap_R = zero_point_center + zero_deadzone_halfsize; + if (t_with_flip >= zero_point_snap_L && t_with_flip <= zero_point_snap_R) + result = (TYPE)0.0f; // Special case to make getting exactly zero possible (the epsilon prevents it otherwise) + else if (t_with_flip < zero_point_center) + result = (TYPE)-(logarithmic_zero_epsilon * ImPow(-v_min_fudged / logarithmic_zero_epsilon, (FLOATTYPE)(1.0f - (t_with_flip / zero_point_snap_L)))); + else + result = (TYPE)(logarithmic_zero_epsilon * ImPow(v_max_fudged / logarithmic_zero_epsilon, (FLOATTYPE)((t_with_flip - zero_point_snap_R) / (1.0f - zero_point_snap_R)))); + } + else if ((v_min < 0.0f) || (v_max < 0.0f)) // Entirely negative slider + result = (TYPE)-(-v_max_fudged * ImPow(-v_min_fudged / -v_max_fudged, (FLOATTYPE)(1.0f - t_with_flip))); + else + result = (TYPE)(v_min_fudged * ImPow(v_max_fudged / v_min_fudged, (FLOATTYPE)t_with_flip)); + } + else + { + // Linear slider + const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); + if (is_floating_point) + { + result = ImLerp(v_min, v_max, t); + } + else if (t < 1.0) + { + // - For integer values we want the clicking position to match the grab box so we round above + // This code is carefully tuned to work with large values (e.g. high ranges of U64) while preserving this property.. + // - Not doing a *1.0 multiply at the end of a range as it tends to be lossy. While absolute aiming at a large s64/u64 + // range is going to be imprecise anyway, with this check we at least make the edge values matches expected limits. + FLOATTYPE v_new_off_f = (SIGNEDTYPE)(v_max - v_min) * t; + result = (TYPE)((SIGNEDTYPE)v_min + (SIGNEDTYPE)(v_new_off_f + (FLOATTYPE)(v_min > v_max ? -0.5 : 0.5))); + } + } + + return result; +} + +// FIXME: Try to move more of the code into shared SliderBehavior() +template +bool ImGui::SliderBehaviorT(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, TYPE* v, const TYPE v_min, const TYPE v_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb) +{ + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + const ImGuiAxis axis = (flags & ImGuiSliderFlags_Vertical) ? ImGuiAxis_Y : ImGuiAxis_X; + const bool is_logarithmic = (flags & ImGuiSliderFlags_Logarithmic) != 0; + const bool is_floating_point = (data_type == ImGuiDataType_Float) || (data_type == ImGuiDataType_Double); + const float v_range_f = (float)(v_min < v_max ? v_max - v_min : v_min - v_max); // We don't need high precision for what we do with it. + + // Calculate bounds + const float grab_padding = 2.0f; // FIXME: Should be part of style. + const float slider_sz = (bb.Max[axis] - bb.Min[axis]) - grab_padding * 2.0f; + float grab_sz = style.GrabMinSize; + if (!is_floating_point && v_range_f >= 0.0f) // v_range_f < 0 may happen on integer overflows + grab_sz = ImMax(slider_sz / (v_range_f + 1), style.GrabMinSize); // For integer sliders: if possible have the grab size represent 1 unit + grab_sz = ImMin(grab_sz, slider_sz); + const float slider_usable_sz = slider_sz - grab_sz; + const float slider_usable_pos_min = bb.Min[axis] + grab_padding + grab_sz * 0.5f; + const float slider_usable_pos_max = bb.Max[axis] - grab_padding - grab_sz * 0.5f; + + float logarithmic_zero_epsilon = 0.0f; // Only valid when is_logarithmic is true + float zero_deadzone_halfsize = 0.0f; // Only valid when is_logarithmic is true + if (is_logarithmic) + { + // When using logarithmic sliders, we need to clamp to avoid hitting zero, but our choice of clamp value greatly affects slider precision. We attempt to use the specified precision to estimate a good lower bound. + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 1; + logarithmic_zero_epsilon = ImPow(0.1f, (float)decimal_precision); + zero_deadzone_halfsize = (style.LogSliderDeadzone * 0.5f) / ImMax(slider_usable_sz, 1.0f); + } + + // Process interacting with the slider + bool value_changed = false; + if (g.ActiveId == id) + { + bool set_new_value = false; + float clicked_t = 0.0f; + if (g.ActiveIdSource == ImGuiInputSource_Mouse) + { + if (!g.IO.MouseDown[0]) + { + ClearActiveID(); + } + else + { + const float mouse_abs_pos = g.IO.MousePos[axis]; + if (g.ActiveIdIsJustActivated) + { + float grab_t = ScaleRatioFromValueT(data_type, *v, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + if (axis == ImGuiAxis_Y) + grab_t = 1.0f - grab_t; + const float grab_pos = ImLerp(slider_usable_pos_min, slider_usable_pos_max, grab_t); + const bool clicked_around_grab = (mouse_abs_pos >= grab_pos - grab_sz * 0.5f - 1.0f) && (mouse_abs_pos <= grab_pos + grab_sz * 0.5f + 1.0f); // No harm being extra generous here. + g.SliderGrabClickOffset = (clicked_around_grab && is_floating_point) ? mouse_abs_pos - grab_pos : 0.0f; + } + if (slider_usable_sz > 0.0f) + clicked_t = ImSaturate((mouse_abs_pos - g.SliderGrabClickOffset - slider_usable_pos_min) / slider_usable_sz); + if (axis == ImGuiAxis_Y) + clicked_t = 1.0f - clicked_t; + set_new_value = true; + } + } + else if (g.ActiveIdSource == ImGuiInputSource_Keyboard || g.ActiveIdSource == ImGuiInputSource_Gamepad) + { + if (g.ActiveIdIsJustActivated) + { + g.SliderCurrentAccum = 0.0f; // Reset any stored nav delta upon activation + g.SliderCurrentAccumDirty = false; + } + + float input_delta = (axis == ImGuiAxis_X) ? GetNavTweakPressedAmount(axis) : -GetNavTweakPressedAmount(axis); + if (input_delta != 0.0f) + { + const bool tweak_slow = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakSlow : ImGuiKey_NavKeyboardTweakSlow); + const bool tweak_fast = IsKeyDown((g.NavInputSource == ImGuiInputSource_Gamepad) ? ImGuiKey_NavGamepadTweakFast : ImGuiKey_NavKeyboardTweakFast); + const int decimal_precision = is_floating_point ? ImParseFormatPrecision(format, 3) : 0; + if (decimal_precision > 0) + { + input_delta /= 100.0f; // Gamepad/keyboard tweak speeds in % of slider bounds + if (tweak_slow) + input_delta /= 10.0f; + } + else + { + if ((v_range_f >= -100.0f && v_range_f <= 100.0f && v_range_f != 0.0f) || tweak_slow) + input_delta = ((input_delta < 0.0f) ? -1.0f : +1.0f) / v_range_f; // Gamepad/keyboard tweak speeds in integer steps + else + input_delta /= 100.0f; + } + if (tweak_fast) + input_delta *= 10.0f; + + g.SliderCurrentAccum += input_delta; + g.SliderCurrentAccumDirty = true; + } + + float delta = g.SliderCurrentAccum; + if (g.NavActivatePressedId == id && !g.ActiveIdIsJustActivated) + { + ClearActiveID(); + } + else if (g.SliderCurrentAccumDirty) + { + clicked_t = ScaleRatioFromValueT(data_type, *v, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + + if ((clicked_t >= 1.0f && delta > 0.0f) || (clicked_t <= 0.0f && delta < 0.0f)) // This is to avoid applying the saturation when already past the limits + { + set_new_value = false; + g.SliderCurrentAccum = 0.0f; // If pushing up against the limits, don't continue to accumulate + } + else + { + set_new_value = true; + float old_clicked_t = clicked_t; + clicked_t = ImSaturate(clicked_t + delta); + + // Calculate what our "new" clicked_t will be, and thus how far we actually moved the slider, and subtract this from the accumulator + TYPE v_new = ScaleValueFromRatioT(data_type, clicked_t, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + if (is_floating_point && !(flags & ImGuiSliderFlags_NoRoundToFormat)) + v_new = RoundScalarWithFormatT(format, data_type, v_new); + float new_clicked_t = ScaleRatioFromValueT(data_type, v_new, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + + if (delta > 0) + g.SliderCurrentAccum -= ImMin(new_clicked_t - old_clicked_t, delta); + else + g.SliderCurrentAccum -= ImMax(new_clicked_t - old_clicked_t, delta); + } + + g.SliderCurrentAccumDirty = false; + } + } + + if (set_new_value) + if ((g.LastItemData.InFlags & ImGuiItemFlags_ReadOnly) || (flags & ImGuiSliderFlags_ReadOnly)) + set_new_value = false; + + if (set_new_value) + { + TYPE v_new = ScaleValueFromRatioT(data_type, clicked_t, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + + // Round to user desired precision based on format string + if (is_floating_point && !(flags & ImGuiSliderFlags_NoRoundToFormat)) + v_new = RoundScalarWithFormatT(format, data_type, v_new); + + // Apply result + if (*v != v_new) + { + *v = v_new; + value_changed = true; + } + } + } + + if (slider_sz < 1.0f) + { + *out_grab_bb = ImRect(bb.Min, bb.Min); + } + else + { + // Output grab position so it can be displayed by the caller + float grab_t = ScaleRatioFromValueT(data_type, *v, v_min, v_max, is_logarithmic, logarithmic_zero_epsilon, zero_deadzone_halfsize); + if (axis == ImGuiAxis_Y) + grab_t = 1.0f - grab_t; + const float grab_pos = ImLerp(slider_usable_pos_min, slider_usable_pos_max, grab_t); + if (axis == ImGuiAxis_X) + *out_grab_bb = ImRect(grab_pos - grab_sz * 0.5f, bb.Min.y + grab_padding, grab_pos + grab_sz * 0.5f, bb.Max.y - grab_padding); + else + *out_grab_bb = ImRect(bb.Min.x + grab_padding, grab_pos - grab_sz * 0.5f, bb.Max.x - grab_padding, grab_pos + grab_sz * 0.5f); + } + + return value_changed; +} + +// For 32-bit and larger types, slider bounds are limited to half the natural type range. +// So e.g. an integer Slider between INT_MAX-10 and INT_MAX will fail, but an integer Slider between INT_MAX/2-10 and INT_MAX/2 will be ok. +// It would be possible to lift that limitation with some work but it doesn't seem to be worth it for sliders. +bool ImGui::SliderBehavior(const ImRect& bb, ImGuiID id, ImGuiDataType data_type, void* p_v, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags, ImRect* out_grab_bb) +{ + // Read imgui.cpp "API BREAKING CHANGES" section for 1.78 if you hit this assert. + IM_ASSERT((flags == 1 || (flags & ImGuiSliderFlags_InvalidMask_) == 0) && "Invalid ImGuiSliderFlags flags! Has the legacy 'float power' argument been mistakenly cast to flags? Call function with ImGuiSliderFlags_Logarithmic flags instead."); + IM_ASSERT((flags & ImGuiSliderFlags_WrapAround) == 0); // Not supported by SliderXXX(), only by DragXXX() + + switch (data_type) + { + case ImGuiDataType_S8: { ImS32 v32 = (ImS32)*(ImS8*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_S32, &v32, *(const ImS8*)p_min, *(const ImS8*)p_max, format, flags, out_grab_bb); if (r) *(ImS8*)p_v = (ImS8)v32; return r; } + case ImGuiDataType_U8: { ImU32 v32 = (ImU32)*(ImU8*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_U32, &v32, *(const ImU8*)p_min, *(const ImU8*)p_max, format, flags, out_grab_bb); if (r) *(ImU8*)p_v = (ImU8)v32; return r; } + case ImGuiDataType_S16: { ImS32 v32 = (ImS32)*(ImS16*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_S32, &v32, *(const ImS16*)p_min, *(const ImS16*)p_max, format, flags, out_grab_bb); if (r) *(ImS16*)p_v = (ImS16)v32; return r; } + case ImGuiDataType_U16: { ImU32 v32 = (ImU32)*(ImU16*)p_v; bool r = SliderBehaviorT(bb, id, ImGuiDataType_U32, &v32, *(const ImU16*)p_min, *(const ImU16*)p_max, format, flags, out_grab_bb); if (r) *(ImU16*)p_v = (ImU16)v32; return r; } + case ImGuiDataType_S32: + IM_ASSERT(*(const ImS32*)p_min >= IM_S32_MIN / 2 && *(const ImS32*)p_max <= IM_S32_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImS32*)p_v, *(const ImS32*)p_min, *(const ImS32*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_U32: + IM_ASSERT(*(const ImU32*)p_max <= IM_U32_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImU32*)p_v, *(const ImU32*)p_min, *(const ImU32*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_S64: + IM_ASSERT(*(const ImS64*)p_min >= IM_S64_MIN / 2 && *(const ImS64*)p_max <= IM_S64_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImS64*)p_v, *(const ImS64*)p_min, *(const ImS64*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_U64: + IM_ASSERT(*(const ImU64*)p_max <= IM_U64_MAX / 2); + return SliderBehaviorT(bb, id, data_type, (ImU64*)p_v, *(const ImU64*)p_min, *(const ImU64*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_Float: + IM_ASSERT(*(const float*)p_min >= -FLT_MAX / 2.0f && *(const float*)p_max <= FLT_MAX / 2.0f); + return SliderBehaviorT(bb, id, data_type, (float*)p_v, *(const float*)p_min, *(const float*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_Double: + IM_ASSERT(*(const double*)p_min >= -DBL_MAX / 2.0f && *(const double*)p_max <= DBL_MAX / 2.0f); + return SliderBehaviorT(bb, id, data_type, (double*)p_v, *(const double*)p_min, *(const double*)p_max, format, flags, out_grab_bb); + case ImGuiDataType_COUNT: break; + } + IM_ASSERT(0); + return false; +} + +// Note: p_data, p_min and p_max are _pointers_ to a memory address holding the data. For a slider, they are all required. +// Read code of e.g. SliderFloat(), SliderInt() etc. or examples in 'Demo->Widgets->Data Types' to understand how to use this function directly. +bool ImGui::SliderScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + const float w = CalcItemWidth(); + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + ImVec2(w, label_size.y + style.FramePadding.y * 2.0f)); + const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + + const bool temp_input_allowed = (flags & ImGuiSliderFlags_NoInput) == 0; + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &frame_bb, temp_input_allowed ? ImGuiItemFlags_Inputable : 0)) + return false; + + // Default format string when passing NULL + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + bool temp_input_is_active = temp_input_allowed && TempInputIsActive(id); + if (!temp_input_is_active) + { + // Tabbing or CTRL-clicking on Slider turns it into an input box + const bool clicked = hovered && IsMouseClicked(0, ImGuiInputFlags_None, id); + const bool make_active = (clicked || g.NavActivateId == id); + if (make_active && clicked) + SetKeyOwner(ImGuiKey_MouseLeft, id); + if (make_active && temp_input_allowed) + if ((clicked && g.IO.KeyCtrl) || (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_PreferInput))) + temp_input_is_active = true; + + if (make_active && !temp_input_is_active) + { + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Left) | (1 << ImGuiDir_Right); + } + } + + if (temp_input_is_active) + { + // Only clamp CTRL+Click input when ImGuiSliderFlags_AlwaysClamp is set + const bool is_clamp_input = (flags & ImGuiSliderFlags_AlwaysClamp) != 0; + return TempInputScalar(frame_bb, id, label, data_type, p_data, format, is_clamp_input ? p_min : NULL, is_clamp_input ? p_max : NULL); + } + + // Draw frame + const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); + RenderNavHighlight(frame_bb, id); + RenderFrame(frame_bb.Min, frame_bb.Max, frame_col, true, g.Style.FrameRounding); + + // Slider behavior + ImRect grab_bb; + const bool value_changed = SliderBehavior(frame_bb, id, data_type, p_data, p_min, p_max, format, flags, &grab_bb); + if (value_changed) + MarkItemEdited(id); + + // Render grab + if (grab_bb.Max.x > grab_bb.Min.x) + window->DrawList->AddRectFilled(grab_bb.Min, grab_bb.Max, GetColorU32(g.ActiveId == id ? ImGuiCol_SliderGrabActive : ImGuiCol_SliderGrab), style.GrabRounding); + + // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. + char value_buf[64]; + const char* value_buf_end = value_buf + DataTypeFormatString(value_buf, IM_ARRAYSIZE(value_buf), data_type, p_data, format); + if (g.LogEnabled) + LogSetNextTextDecoration("{", "}"); + RenderTextClipped(frame_bb.Min, frame_bb.Max, value_buf, value_buf_end, NULL, ImVec2(0.5f, 0.5f)); + + if (label_size.x > 0.0f) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | (temp_input_allowed ? ImGuiItemStatusFlags_Inputable : 0)); + return value_changed; +} + +// Add multiple sliders on 1 line for compact edition of multiple components +bool ImGui::SliderScalarN(const char* label, ImGuiDataType data_type, void* v, int components, const void* v_min, const void* v_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + bool value_changed = false; + BeginGroup(); + PushID(label); + PushMultiItemsWidths(components, CalcItemWidth()); + size_t type_size = GDataTypeInfo[data_type].Size; + for (int i = 0; i < components; i++) + { + PushID(i); + if (i > 0) + SameLine(0, g.Style.ItemInnerSpacing.x); + value_changed |= SliderScalar("", data_type, v, v_min, v_max, format, flags); + PopID(); + PopItemWidth(); + v = (void*)((char*)v + type_size); + } + PopID(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0, g.Style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + + EndGroup(); + return value_changed; +} + +bool ImGui::SliderFloat(const char* label, float* v, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalar(label, ImGuiDataType_Float, v, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderFloat2(const char* label, float v[2], float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_Float, v, 2, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderFloat3(const char* label, float v[3], float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_Float, v, 3, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderFloat4(const char* label, float v[4], float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_Float, v, 4, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderAngle(const char* label, float* v_rad, float v_degrees_min, float v_degrees_max, const char* format, ImGuiSliderFlags flags) +{ + if (format == NULL) + format = "%.0f deg"; + float v_deg = (*v_rad) * 360.0f / (2 * IM_PI); + bool value_changed = SliderFloat(label, &v_deg, v_degrees_min, v_degrees_max, format, flags); + *v_rad = v_deg * (2 * IM_PI) / 360.0f; + return value_changed; +} + +bool ImGui::SliderInt(const char* label, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalar(label, ImGuiDataType_S32, v, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderInt2(const char* label, int v[2], int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_S32, v, 2, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderInt3(const char* label, int v[3], int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_S32, v, 3, &v_min, &v_max, format, flags); +} + +bool ImGui::SliderInt4(const char* label, int v[4], int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return SliderScalarN(label, ImGuiDataType_S32, v, 4, &v_min, &v_max, format, flags); +} + +bool ImGui::VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* p_data, const void* p_min, const void* p_max, const char* format, ImGuiSliderFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + size); + const ImRect bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + + ItemSize(bb, style.FramePadding.y); + if (!ItemAdd(frame_bb, id)) + return false; + + // Default format string when passing NULL + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + const bool clicked = hovered && IsMouseClicked(0, ImGuiInputFlags_None, id); + if (clicked || g.NavActivateId == id) + { + if (clicked) + SetKeyOwner(ImGuiKey_MouseLeft, id); + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Up) | (1 << ImGuiDir_Down); + } + + // Draw frame + const ImU32 frame_col = GetColorU32(g.ActiveId == id ? ImGuiCol_FrameBgActive : hovered ? ImGuiCol_FrameBgHovered : ImGuiCol_FrameBg); + RenderNavHighlight(frame_bb, id); + RenderFrame(frame_bb.Min, frame_bb.Max, frame_col, true, g.Style.FrameRounding); + + // Slider behavior + ImRect grab_bb; + const bool value_changed = SliderBehavior(frame_bb, id, data_type, p_data, p_min, p_max, format, flags | ImGuiSliderFlags_Vertical, &grab_bb); + if (value_changed) + MarkItemEdited(id); + + // Render grab + if (grab_bb.Max.y > grab_bb.Min.y) + window->DrawList->AddRectFilled(grab_bb.Min, grab_bb.Max, GetColorU32(g.ActiveId == id ? ImGuiCol_SliderGrabActive : ImGuiCol_SliderGrab), style.GrabRounding); + + // Display value using user-provided display format so user can add prefix/suffix/decorations to the value. + // For the vertical slider we allow centered text to overlap the frame padding + char value_buf[64]; + const char* value_buf_end = value_buf + DataTypeFormatString(value_buf, IM_ARRAYSIZE(value_buf), data_type, p_data, format); + RenderTextClipped(ImVec2(frame_bb.Min.x, frame_bb.Min.y + style.FramePadding.y), frame_bb.Max, value_buf, value_buf_end, NULL, ImVec2(0.5f, 0.0f)); + if (label_size.x > 0.0f) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); + + return value_changed; +} + +bool ImGui::VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format, ImGuiSliderFlags flags) +{ + return VSliderScalar(label, size, ImGuiDataType_Float, v, &v_min, &v_max, format, flags); +} + +bool ImGui::VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format, ImGuiSliderFlags flags) +{ + return VSliderScalar(label, size, ImGuiDataType_S32, v, &v_min, &v_max, format, flags); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: InputScalar, InputFloat, InputInt, etc. +//------------------------------------------------------------------------- +// - ImParseFormatFindStart() [Internal] +// - ImParseFormatFindEnd() [Internal] +// - ImParseFormatTrimDecorations() [Internal] +// - ImParseFormatSanitizeForPrinting() [Internal] +// - ImParseFormatSanitizeForScanning() [Internal] +// - ImParseFormatPrecision() [Internal] +// - TempInputTextScalar() [Internal] +// - InputScalar() +// - InputScalarN() +// - InputFloat() +// - InputFloat2() +// - InputFloat3() +// - InputFloat4() +// - InputInt() +// - InputInt2() +// - InputInt3() +// - InputInt4() +// - InputDouble() +//------------------------------------------------------------------------- + +// We don't use strchr() because our strings are usually very short and often start with '%' +const char* ImParseFormatFindStart(const char* fmt) +{ + while (char c = fmt[0]) + { + if (c == '%' && fmt[1] != '%') + return fmt; + else if (c == '%') + fmt++; + fmt++; + } + return fmt; +} + +const char* ImParseFormatFindEnd(const char* fmt) +{ + // Printf/scanf types modifiers: I/L/h/j/l/t/w/z. Other uppercase letters qualify as types aka end of the format. + if (fmt[0] != '%') + return fmt; + const unsigned int ignored_uppercase_mask = (1 << ('I'-'A')) | (1 << ('L'-'A')); + const unsigned int ignored_lowercase_mask = (1 << ('h'-'a')) | (1 << ('j'-'a')) | (1 << ('l'-'a')) | (1 << ('t'-'a')) | (1 << ('w'-'a')) | (1 << ('z'-'a')); + for (char c; (c = *fmt) != 0; fmt++) + { + if (c >= 'A' && c <= 'Z' && ((1 << (c - 'A')) & ignored_uppercase_mask) == 0) + return fmt + 1; + if (c >= 'a' && c <= 'z' && ((1 << (c - 'a')) & ignored_lowercase_mask) == 0) + return fmt + 1; + } + return fmt; +} + +// Extract the format out of a format string with leading or trailing decorations +// fmt = "blah blah" -> return "" +// fmt = "%.3f" -> return fmt +// fmt = "hello %.3f" -> return fmt + 6 +// fmt = "%.3f hello" -> return buf written with "%.3f" +const char* ImParseFormatTrimDecorations(const char* fmt, char* buf, size_t buf_size) +{ + const char* fmt_start = ImParseFormatFindStart(fmt); + if (fmt_start[0] != '%') + return ""; + const char* fmt_end = ImParseFormatFindEnd(fmt_start); + if (fmt_end[0] == 0) // If we only have leading decoration, we don't need to copy the data. + return fmt_start; + ImStrncpy(buf, fmt_start, ImMin((size_t)(fmt_end - fmt_start) + 1, buf_size)); + return buf; +} + +// Sanitize format +// - Zero terminate so extra characters after format (e.g. "%f123") don't confuse atof/atoi +// - stb_sprintf.h supports several new modifiers which format numbers in a way that also makes them incompatible atof/atoi. +void ImParseFormatSanitizeForPrinting(const char* fmt_in, char* fmt_out, size_t fmt_out_size) +{ + const char* fmt_end = ImParseFormatFindEnd(fmt_in); + IM_UNUSED(fmt_out_size); + IM_ASSERT((size_t)(fmt_end - fmt_in + 1) < fmt_out_size); // Format is too long, let us know if this happens to you! + while (fmt_in < fmt_end) + { + char c = *fmt_in++; + if (c != '\'' && c != '$' && c != '_') // Custom flags provided by stb_sprintf.h. POSIX 2008 also supports '. + *(fmt_out++) = c; + } + *fmt_out = 0; // Zero-terminate +} + +// - For scanning we need to remove all width and precision fields and flags "%+3.7f" -> "%f". BUT don't strip types like "%I64d" which includes digits. ! "%07I64d" -> "%I64d" +const char* ImParseFormatSanitizeForScanning(const char* fmt_in, char* fmt_out, size_t fmt_out_size) +{ + const char* fmt_end = ImParseFormatFindEnd(fmt_in); + const char* fmt_out_begin = fmt_out; + IM_UNUSED(fmt_out_size); + IM_ASSERT((size_t)(fmt_end - fmt_in + 1) < fmt_out_size); // Format is too long, let us know if this happens to you! + bool has_type = false; + while (fmt_in < fmt_end) + { + char c = *fmt_in++; + if (!has_type && ((c >= '0' && c <= '9') || c == '.' || c == '+' || c == '#')) + continue; + has_type |= ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')); // Stop skipping digits + if (c != '\'' && c != '$' && c != '_') // Custom flags provided by stb_sprintf.h. POSIX 2008 also supports '. + *(fmt_out++) = c; + } + *fmt_out = 0; // Zero-terminate + return fmt_out_begin; +} + +template +static const char* ImAtoi(const char* src, TYPE* output) +{ + int negative = 0; + if (*src == '-') { negative = 1; src++; } + if (*src == '+') { src++; } + TYPE v = 0; + while (*src >= '0' && *src <= '9') + v = (v * 10) + (*src++ - '0'); + *output = negative ? -v : v; + return src; +} + +// Parse display precision back from the display format string +// FIXME: This is still used by some navigation code path to infer a minimum tweak step, but we should aim to rework widgets so it isn't needed. +int ImParseFormatPrecision(const char* fmt, int default_precision) +{ + fmt = ImParseFormatFindStart(fmt); + if (fmt[0] != '%') + return default_precision; + fmt++; + while (*fmt >= '0' && *fmt <= '9') + fmt++; + int precision = INT_MAX; + if (*fmt == '.') + { + fmt = ImAtoi(fmt + 1, &precision); + if (precision < 0 || precision > 99) + precision = default_precision; + } + if (*fmt == 'e' || *fmt == 'E') // Maximum precision with scientific notation + precision = -1; + if ((*fmt == 'g' || *fmt == 'G') && precision == INT_MAX) + precision = -1; + return (precision == INT_MAX) ? default_precision : precision; +} + +// Create text input in place of another active widget (e.g. used when doing a CTRL+Click on drag/slider widgets) +// FIXME: Facilitate using this in variety of other situations. +// FIXME: Among other things, setting ImGuiItemFlags_AllowDuplicateId in LastItemData is currently correct but +// the expected relationship between TempInputXXX functions and LastItemData is a little fishy. +bool ImGui::TempInputText(const ImRect& bb, ImGuiID id, const char* label, char* buf, int buf_size, ImGuiInputTextFlags flags) +{ + // On the first frame, g.TempInputTextId == 0, then on subsequent frames it becomes == id. + // We clear ActiveID on the first frame to allow the InputText() taking it back. + ImGuiContext& g = *GImGui; + const bool init = (g.TempInputId != id); + if (init) + ClearActiveID(); + + g.CurrentWindow->DC.CursorPos = bb.Min; + g.LastItemData.InFlags |= ImGuiItemFlags_AllowDuplicateId; + bool value_changed = InputTextEx(label, NULL, buf, buf_size, bb.GetSize(), flags | ImGuiInputTextFlags_MergedItem); + if (init) + { + // First frame we started displaying the InputText widget, we expect it to take the active id. + IM_ASSERT(g.ActiveId == id); + g.TempInputId = g.ActiveId; + } + return value_changed; +} + +// Note that Drag/Slider functions are only forwarding the min/max values clamping values if the ImGuiSliderFlags_AlwaysClamp flag is set! +// This is intended: this way we allow CTRL+Click manual input to set a value out of bounds, for maximum flexibility. +// However this may not be ideal for all uses, as some user code may break on out of bound values. +bool ImGui::TempInputScalar(const ImRect& bb, ImGuiID id, const char* label, ImGuiDataType data_type, void* p_data, const char* format, const void* p_clamp_min, const void* p_clamp_max) +{ + // FIXME: May need to clarify display behavior if format doesn't contain %. + // "%d" -> "%d" / "There are %d items" -> "%d" / "items" -> "%d" (fallback). Also see #6405 + const ImGuiDataTypeInfo* type_info = DataTypeGetInfo(data_type); + char fmt_buf[32]; + char data_buf[32]; + format = ImParseFormatTrimDecorations(format, fmt_buf, IM_ARRAYSIZE(fmt_buf)); + if (format[0] == 0) + format = type_info->PrintFmt; + DataTypeFormatString(data_buf, IM_ARRAYSIZE(data_buf), data_type, p_data, format); + ImStrTrimBlanks(data_buf); + + ImGuiInputTextFlags flags = ImGuiInputTextFlags_AutoSelectAll | (ImGuiInputTextFlags)ImGuiInputTextFlags_NoMarkEdited | (ImGuiInputTextFlags)ImGuiInputTextFlags_LocalizeDecimalPoint; + + bool value_changed = false; + if (TempInputText(bb, id, label, data_buf, IM_ARRAYSIZE(data_buf), flags)) + { + // Backup old value + size_t data_type_size = type_info->Size; + ImGuiDataTypeStorage data_backup; + memcpy(&data_backup, p_data, data_type_size); + + // Apply new value (or operations) then clamp + DataTypeApplyFromText(data_buf, data_type, p_data, format, NULL); + if (p_clamp_min || p_clamp_max) + { + if (p_clamp_min && p_clamp_max && DataTypeCompare(data_type, p_clamp_min, p_clamp_max) > 0) + ImSwap(p_clamp_min, p_clamp_max); + DataTypeClamp(data_type, p_data, p_clamp_min, p_clamp_max); + } + + // Only mark as edited if new value is different + value_changed = memcmp(&data_backup, p_data, data_type_size) != 0; + if (value_changed) + MarkItemEdited(id); + } + return value_changed; +} + +void ImGui::SetNextItemRefVal(ImGuiDataType data_type, void* p_data) +{ + ImGuiContext& g = *GImGui; + g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasRefVal; + memcpy(&g.NextItemData.RefVal, p_data, DataTypeGetInfo(data_type)->Size); +} + +// Note: p_data, p_step, p_step_fast are _pointers_ to a memory address holding the data. For an Input widget, p_step and p_step_fast are optional. +// Read code of e.g. InputFloat(), InputInt() etc. or examples in 'Demo->Widgets->Data Types' to understand how to use this function directly. +bool ImGui::InputScalar(const char* label, ImGuiDataType data_type, void* p_data, const void* p_step, const void* p_step_fast, const char* format, ImGuiInputTextFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + + if (format == NULL) + format = DataTypeGetInfo(data_type)->PrintFmt; + + void* p_data_default = (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasRefVal) ? &g.NextItemData.RefVal : &g.DataTypeZeroValue; + + char buf[64]; + if ((flags & ImGuiInputTextFlags_DisplayEmptyRefVal) && DataTypeCompare(data_type, p_data, p_data_default) == 0) + buf[0] = 0; + else + DataTypeFormatString(buf, IM_ARRAYSIZE(buf), data_type, p_data, format); + + flags |= ImGuiInputTextFlags_AutoSelectAll | (ImGuiInputTextFlags)ImGuiInputTextFlags_NoMarkEdited; // We call MarkItemEdited() ourselves by comparing the actual data rather than the string. + flags |= (ImGuiInputTextFlags)ImGuiInputTextFlags_LocalizeDecimalPoint; + + bool value_changed = false; + if (p_step == NULL) + { + if (InputText(label, buf, IM_ARRAYSIZE(buf), flags)) + value_changed = DataTypeApplyFromText(buf, data_type, p_data, format, (flags & ImGuiInputTextFlags_ParseEmptyRefVal) ? p_data_default : NULL); + } + else + { + const float button_size = GetFrameHeight(); + + BeginGroup(); // The only purpose of the group here is to allow the caller to query item data e.g. IsItemActive() + PushID(label); + SetNextItemWidth(ImMax(1.0f, CalcItemWidth() - (button_size + style.ItemInnerSpacing.x) * 2)); + if (InputText("", buf, IM_ARRAYSIZE(buf), flags)) // PushId(label) + "" gives us the expected ID from outside point of view + value_changed = DataTypeApplyFromText(buf, data_type, p_data, format, (flags & ImGuiInputTextFlags_ParseEmptyRefVal) ? p_data_default : NULL); + IMGUI_TEST_ENGINE_ITEM_INFO(g.LastItemData.ID, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Inputable); + + // Step buttons + const ImVec2 backup_frame_padding = style.FramePadding; + style.FramePadding.x = style.FramePadding.y; + ImGuiButtonFlags button_flags = ImGuiButtonFlags_Repeat | ImGuiButtonFlags_DontClosePopups; + if (flags & ImGuiInputTextFlags_ReadOnly) + BeginDisabled(); + SameLine(0, style.ItemInnerSpacing.x); + if (ButtonEx("-", ImVec2(button_size, button_size), button_flags)) + { + DataTypeApplyOp(data_type, '-', p_data, p_data, g.IO.KeyCtrl && p_step_fast ? p_step_fast : p_step); + value_changed = true; + } + SameLine(0, style.ItemInnerSpacing.x); + if (ButtonEx("+", ImVec2(button_size, button_size), button_flags)) + { + DataTypeApplyOp(data_type, '+', p_data, p_data, g.IO.KeyCtrl && p_step_fast ? p_step_fast : p_step); + value_changed = true; + } + if (flags & ImGuiInputTextFlags_ReadOnly) + EndDisabled(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0, style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + style.FramePadding = backup_frame_padding; + + PopID(); + EndGroup(); + } + if (value_changed) + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +bool ImGui::InputScalarN(const char* label, ImGuiDataType data_type, void* p_data, int components, const void* p_step, const void* p_step_fast, const char* format, ImGuiInputTextFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + bool value_changed = false; + BeginGroup(); + PushID(label); + PushMultiItemsWidths(components, CalcItemWidth()); + size_t type_size = GDataTypeInfo[data_type].Size; + for (int i = 0; i < components; i++) + { + PushID(i); + if (i > 0) + SameLine(0, g.Style.ItemInnerSpacing.x); + value_changed |= InputScalar("", data_type, p_data, p_step, p_step_fast, format, flags); + PopID(); + PopItemWidth(); + p_data = (void*)((char*)p_data + type_size); + } + PopID(); + + const char* label_end = FindRenderedTextEnd(label); + if (label != label_end) + { + SameLine(0.0f, g.Style.ItemInnerSpacing.x); + TextEx(label, label_end); + } + + EndGroup(); + return value_changed; +} + +bool ImGui::InputFloat(const char* label, float* v, float step, float step_fast, const char* format, ImGuiInputTextFlags flags) +{ + return InputScalar(label, ImGuiDataType_Float, (void*)v, (void*)(step > 0.0f ? &step : NULL), (void*)(step_fast > 0.0f ? &step_fast : NULL), format, flags); +} + +bool ImGui::InputFloat2(const char* label, float v[2], const char* format, ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_Float, v, 2, NULL, NULL, format, flags); +} + +bool ImGui::InputFloat3(const char* label, float v[3], const char* format, ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_Float, v, 3, NULL, NULL, format, flags); +} + +bool ImGui::InputFloat4(const char* label, float v[4], const char* format, ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_Float, v, 4, NULL, NULL, format, flags); +} + +bool ImGui::InputInt(const char* label, int* v, int step, int step_fast, ImGuiInputTextFlags flags) +{ + // Hexadecimal input provided as a convenience but the flag name is awkward. Typically you'd use InputText() to parse your own data, if you want to handle prefixes. + const char* format = (flags & ImGuiInputTextFlags_CharsHexadecimal) ? "%08X" : "%d"; + return InputScalar(label, ImGuiDataType_S32, (void*)v, (void*)(step > 0 ? &step : NULL), (void*)(step_fast > 0 ? &step_fast : NULL), format, flags); +} + +bool ImGui::InputInt2(const char* label, int v[2], ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_S32, v, 2, NULL, NULL, "%d", flags); +} + +bool ImGui::InputInt3(const char* label, int v[3], ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_S32, v, 3, NULL, NULL, "%d", flags); +} + +bool ImGui::InputInt4(const char* label, int v[4], ImGuiInputTextFlags flags) +{ + return InputScalarN(label, ImGuiDataType_S32, v, 4, NULL, NULL, "%d", flags); +} + +bool ImGui::InputDouble(const char* label, double* v, double step, double step_fast, const char* format, ImGuiInputTextFlags flags) +{ + return InputScalar(label, ImGuiDataType_Double, (void*)v, (void*)(step > 0.0 ? &step : NULL), (void*)(step_fast > 0.0 ? &step_fast : NULL), format, flags); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: InputText, InputTextMultiline, InputTextWithHint +//------------------------------------------------------------------------- +// - imstb_textedit.h include +// - InputText() +// - InputTextWithHint() +// - InputTextMultiline() +// - InputTextGetCharInfo() [Internal] +// - InputTextReindexLines() [Internal] +// - InputTextReindexLinesRange() [Internal] +// - InputTextEx() [Internal] +// - DebugNodeInputTextState() [Internal] +//------------------------------------------------------------------------- + +namespace ImStb +{ +#include "imstb_textedit.h" +} + +bool ImGui::InputText(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data) +{ + IM_ASSERT(!(flags & ImGuiInputTextFlags_Multiline)); // call InputTextMultiline() + return InputTextEx(label, NULL, buf, (int)buf_size, ImVec2(0, 0), flags, callback, user_data); +} + +bool ImGui::InputTextMultiline(const char* label, char* buf, size_t buf_size, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data) +{ + return InputTextEx(label, NULL, buf, (int)buf_size, size, flags | ImGuiInputTextFlags_Multiline, callback, user_data); +} + +bool ImGui::InputTextWithHint(const char* label, const char* hint, char* buf, size_t buf_size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data) +{ + IM_ASSERT(!(flags & ImGuiInputTextFlags_Multiline)); // call InputTextMultiline() or InputTextEx() manually if you need multi-line + hint. + return InputTextEx(label, hint, buf, (int)buf_size, ImVec2(0, 0), flags, callback, user_data); +} + +// This is only used in the path where the multiline widget is inactivate. +static int InputTextCalcTextLenAndLineCount(const char* text_begin, const char** out_text_end) +{ + int line_count = 0; + const char* s = text_begin; + while (true) + { + const char* s_eol = strchr(s, '\n'); + line_count++; + if (s_eol == NULL) + { + s = s + strlen(s); + break; + } + s = s_eol + 1; + } + *out_text_end = s; + return line_count; +} + +// FIXME: Ideally we'd share code with ImFont::CalcTextSizeA() +static ImVec2 InputTextCalcTextSize(ImGuiContext* ctx, const char* text_begin, const char* text_end, const char** remaining, ImVec2* out_offset, bool stop_on_new_line) +{ + ImGuiContext& g = *ctx; + ImFont* font = g.Font; + const float line_height = g.FontSize; + const float scale = line_height / font->FontSize; + + ImVec2 text_size = ImVec2(0, 0); + float line_width = 0.0f; + + const char* s = text_begin; + while (s < text_end) + { + unsigned int c = (unsigned int)*s; + if (c < 0x80) + s += 1; + else + s += ImTextCharFromUtf8(&c, s, text_end); + + if (c == '\n') + { + text_size.x = ImMax(text_size.x, line_width); + text_size.y += line_height; + line_width = 0.0f; + if (stop_on_new_line) + break; + continue; + } + if (c == '\r') + continue; + + const float char_width = ((int)c < font->IndexAdvanceX.Size ? font->IndexAdvanceX.Data[c] : font->FallbackAdvanceX) * scale; + line_width += char_width; + } + + if (text_size.x < line_width) + text_size.x = line_width; + + if (out_offset) + *out_offset = ImVec2(line_width, text_size.y + line_height); // offset allow for the possibility of sitting after a trailing \n + + if (line_width > 0 || text_size.y == 0.0f) // whereas size.y will ignore the trailing \n + text_size.y += line_height; + + if (remaining) + *remaining = s; + + return text_size; +} + +// Wrapper for stb_textedit.h to edit text (our wrapper is for: statically sized buffer, single-line, wchar characters. InputText converts between UTF-8 and wchar) +// With our UTF-8 use of stb_textedit: +// - STB_TEXTEDIT_GETCHAR is nothing more than a a "GETBYTE". It's only used to compare to ascii or to copy blocks of text so we are fine. +// - One exception is the STB_TEXTEDIT_IS_SPACE feature which would expect a full char in order to handle full-width space such as 0x3000 (see ImCharIsBlankW). +// - ...but we don't use that feature. +namespace ImStb +{ +static int STB_TEXTEDIT_STRINGLEN(const ImGuiInputTextState* obj) { return obj->CurLenA; } +static char STB_TEXTEDIT_GETCHAR(const ImGuiInputTextState* obj, int idx) { IM_ASSERT(idx <= obj->CurLenA); return obj->TextA[idx]; } +static float STB_TEXTEDIT_GETWIDTH(ImGuiInputTextState* obj, int line_start_idx, int char_idx) { unsigned int c; ImTextCharFromUtf8(&c, obj->TextA.Data + line_start_idx + char_idx, obj->TextA.Data + obj->TextA.Size); if ((ImWchar)c == '\n') return IMSTB_TEXTEDIT_GETWIDTH_NEWLINE; ImGuiContext& g = *obj->Ctx; return g.Font->GetCharAdvance((ImWchar)c) * g.FontScale; } +static char STB_TEXTEDIT_NEWLINE = '\n'; +static void STB_TEXTEDIT_LAYOUTROW(StbTexteditRow* r, ImGuiInputTextState* obj, int line_start_idx) +{ + const char* text = obj->TextA.Data; + const char* text_remaining = NULL; + const ImVec2 size = InputTextCalcTextSize(obj->Ctx, text + line_start_idx, text + obj->CurLenA, &text_remaining, NULL, true); + r->x0 = 0.0f; + r->x1 = size.x; + r->baseline_y_delta = size.y; + r->ymin = 0.0f; + r->ymax = size.y; + r->num_chars = (int)(text_remaining - (text + line_start_idx)); +} + +#define IMSTB_TEXTEDIT_GETNEXTCHARINDEX IMSTB_TEXTEDIT_GETNEXTCHARINDEX_IMPL +#define IMSTB_TEXTEDIT_GETPREVCHARINDEX IMSTB_TEXTEDIT_GETPREVCHARINDEX_IMPL + +static int IMSTB_TEXTEDIT_GETNEXTCHARINDEX_IMPL(ImGuiInputTextState* obj, int idx) +{ + if (idx >= obj->CurLenA) + return obj->CurLenA + 1; + unsigned int c; + return idx + ImTextCharFromUtf8(&c, obj->TextA.Data + idx, obj->TextA.Data + obj->TextA.Size); +} + +static int IMSTB_TEXTEDIT_GETPREVCHARINDEX_IMPL(ImGuiInputTextState* obj, int idx) +{ + if (idx <= 0) + return -1; + const char* p = ImTextFindPreviousUtf8Codepoint(obj->TextA.Data, obj->TextA.Data + idx); + return (int)(p - obj->TextA.Data); +} + +static bool ImCharIsSeparatorW(unsigned int c) +{ + static const unsigned int separator_list[] = + { + ',', 0x3001, '.', 0x3002, ';', 0xFF1B, '(', 0xFF08, ')', 0xFF09, '{', 0xFF5B, '}', 0xFF5D, + '[', 0x300C, ']', 0x300D, '|', 0xFF5C, '!', 0xFF01, '\\', 0xFFE5, '/', 0x30FB, 0xFF0F, + '\n', '\r', + }; + for (unsigned int separator : separator_list) + if (c == separator) + return true; + return false; +} + +static int is_word_boundary_from_right(ImGuiInputTextState* obj, int idx) +{ + // When ImGuiInputTextFlags_Password is set, we don't want actions such as CTRL+Arrow to leak the fact that underlying data are blanks or separators. + if ((obj->Flags & ImGuiInputTextFlags_Password) || idx <= 0) + return 0; + + const char* curr_p = obj->TextA.Data + idx; + const char* prev_p = ImTextFindPreviousUtf8Codepoint(obj->TextA.Data, curr_p); + unsigned int curr_c; ImTextCharFromUtf8(&curr_c, curr_p, obj->TextA.Data + obj->TextA.Size); + unsigned int prev_c; ImTextCharFromUtf8(&prev_c, prev_p, obj->TextA.Data + obj->TextA.Size); + + bool prev_white = ImCharIsBlankW(prev_c); + bool prev_separ = ImCharIsSeparatorW(prev_c); + bool curr_white = ImCharIsBlankW(curr_c); + bool curr_separ = ImCharIsSeparatorW(curr_c); + return ((prev_white || prev_separ) && !(curr_separ || curr_white)) || (curr_separ && !prev_separ); +} +static int is_word_boundary_from_left(ImGuiInputTextState* obj, int idx) +{ + if ((obj->Flags & ImGuiInputTextFlags_Password) || idx <= 0) + return 0; + + const char* curr_p = obj->TextA.Data + idx; + const char* prev_p = ImTextFindPreviousUtf8Codepoint(obj->TextA.Data, curr_p); + unsigned int prev_c; ImTextCharFromUtf8(&prev_c, curr_p, obj->TextA.Data + obj->TextA.Size); + unsigned int curr_c; ImTextCharFromUtf8(&curr_c, prev_p, obj->TextA.Data + obj->TextA.Size); + + bool prev_white = ImCharIsBlankW(prev_c); + bool prev_separ = ImCharIsSeparatorW(prev_c); + bool curr_white = ImCharIsBlankW(curr_c); + bool curr_separ = ImCharIsSeparatorW(curr_c); + return ((prev_white) && !(curr_separ || curr_white)) || (curr_separ && !prev_separ); +} +static int STB_TEXTEDIT_MOVEWORDLEFT_IMPL(ImGuiInputTextState* obj, int idx) +{ + idx = IMSTB_TEXTEDIT_GETPREVCHARINDEX(obj, idx); + while (idx >= 0 && !is_word_boundary_from_right(obj, idx)) + idx = IMSTB_TEXTEDIT_GETPREVCHARINDEX(obj, idx); + return idx < 0 ? 0 : idx; +} +static int STB_TEXTEDIT_MOVEWORDRIGHT_MAC(ImGuiInputTextState* obj, int idx) +{ + int len = obj->CurLenA; + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + while (idx < len && !is_word_boundary_from_left(obj, idx)) + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + return idx > len ? len : idx; +} +static int STB_TEXTEDIT_MOVEWORDRIGHT_WIN(ImGuiInputTextState* obj, int idx) +{ + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + int len = obj->CurLenA; + while (idx < len && !is_word_boundary_from_right(obj, idx)) + idx = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx); + return idx > len ? len : idx; +} +static int STB_TEXTEDIT_MOVEWORDRIGHT_IMPL(ImGuiInputTextState* obj, int idx) { ImGuiContext& g = *obj->Ctx; if (g.IO.ConfigMacOSXBehaviors) return STB_TEXTEDIT_MOVEWORDRIGHT_MAC(obj, idx); else return STB_TEXTEDIT_MOVEWORDRIGHT_WIN(obj, idx); } +#define STB_TEXTEDIT_MOVEWORDLEFT STB_TEXTEDIT_MOVEWORDLEFT_IMPL // They need to be #define for stb_textedit.h +#define STB_TEXTEDIT_MOVEWORDRIGHT STB_TEXTEDIT_MOVEWORDRIGHT_IMPL + +static void STB_TEXTEDIT_DELETECHARS(ImGuiInputTextState* obj, int pos, int n) +{ + char* dst = obj->TextA.Data + pos; + + obj->Edited = true; + obj->CurLenA -= n; + + // Offset remaining text (FIXME-OPT: Use memmove) + const char* src = obj->TextA.Data + pos + n; + while (char c = *src++) + *dst++ = c; + *dst = '\0'; +} + +static bool STB_TEXTEDIT_INSERTCHARS(ImGuiInputTextState* obj, int pos, const char* new_text, int new_text_len) +{ + const bool is_resizable = (obj->Flags & ImGuiInputTextFlags_CallbackResize) != 0; + const int text_len = obj->CurLenA; + IM_ASSERT(pos <= text_len); + + if (!is_resizable && (new_text_len + obj->CurLenA + 1 > obj->BufCapacityA)) + return false; + + // Grow internal buffer if needed + if (new_text_len + text_len + 1 > obj->TextA.Size) + { + if (!is_resizable) + return false; + obj->TextA.resize(text_len + ImClamp(new_text_len, 32, ImMax(256, new_text_len)) + 1); + } + + char* text = obj->TextA.Data; + if (pos != text_len) + memmove(text + pos + new_text_len, text + pos, (size_t)(text_len - pos)); + memcpy(text + pos, new_text, (size_t)new_text_len); + + obj->Edited = true; + obj->CurLenA += new_text_len; + obj->TextA[obj->CurLenA] = '\0'; + + return true; +} + +// We don't use an enum so we can build even with conflicting symbols (if another user of stb_textedit.h leak their STB_TEXTEDIT_K_* symbols) +#define STB_TEXTEDIT_K_LEFT 0x200000 // keyboard input to move cursor left +#define STB_TEXTEDIT_K_RIGHT 0x200001 // keyboard input to move cursor right +#define STB_TEXTEDIT_K_UP 0x200002 // keyboard input to move cursor up +#define STB_TEXTEDIT_K_DOWN 0x200003 // keyboard input to move cursor down +#define STB_TEXTEDIT_K_LINESTART 0x200004 // keyboard input to move cursor to start of line +#define STB_TEXTEDIT_K_LINEEND 0x200005 // keyboard input to move cursor to end of line +#define STB_TEXTEDIT_K_TEXTSTART 0x200006 // keyboard input to move cursor to start of text +#define STB_TEXTEDIT_K_TEXTEND 0x200007 // keyboard input to move cursor to end of text +#define STB_TEXTEDIT_K_DELETE 0x200008 // keyboard input to delete selection or character under cursor +#define STB_TEXTEDIT_K_BACKSPACE 0x200009 // keyboard input to delete selection or character left of cursor +#define STB_TEXTEDIT_K_UNDO 0x20000A // keyboard input to perform undo +#define STB_TEXTEDIT_K_REDO 0x20000B // keyboard input to perform redo +#define STB_TEXTEDIT_K_WORDLEFT 0x20000C // keyboard input to move cursor left one word +#define STB_TEXTEDIT_K_WORDRIGHT 0x20000D // keyboard input to move cursor right one word +#define STB_TEXTEDIT_K_PGUP 0x20000E // keyboard input to move cursor up a page +#define STB_TEXTEDIT_K_PGDOWN 0x20000F // keyboard input to move cursor down a page +#define STB_TEXTEDIT_K_SHIFT 0x400000 + +#define IMSTB_TEXTEDIT_IMPLEMENTATION +#define IMSTB_TEXTEDIT_memmove memmove +#include "imstb_textedit.h" + +// stb_textedit internally allows for a single undo record to do addition and deletion, but somehow, calling +// the stb_textedit_paste() function creates two separate records, so we perform it manually. (FIXME: Report to nothings/stb?) +static void stb_textedit_replace(ImGuiInputTextState* str, STB_TexteditState* state, const IMSTB_TEXTEDIT_CHARTYPE* text, int text_len) +{ + stb_text_makeundo_replace(str, state, 0, str->CurLenA, text_len); + ImStb::STB_TEXTEDIT_DELETECHARS(str, 0, str->CurLenA); + state->cursor = state->select_start = state->select_end = 0; + if (text_len <= 0) + return; + if (ImStb::STB_TEXTEDIT_INSERTCHARS(str, 0, text, text_len)) + { + state->cursor = state->select_start = state->select_end = text_len; + state->has_preferred_x = 0; + return; + } + IM_ASSERT(0); // Failed to insert character, normally shouldn't happen because of how we currently use stb_textedit_replace() +} + +} // namespace ImStb + +// We added an extra indirection where 'Stb' is heap-allocated, in order facilitate the work of bindings generators. +ImGuiInputTextState::ImGuiInputTextState() +{ + memset(this, 0, sizeof(*this)); + Stb = IM_NEW(ImStbTexteditState); +} + +ImGuiInputTextState::~ImGuiInputTextState() +{ + IM_DELETE(Stb); +} + +void ImGuiInputTextState::OnKeyPressed(int key) +{ + stb_textedit_key(this, Stb, key); + CursorFollow = true; + CursorAnimReset(); +} + +void ImGuiInputTextState::OnCharPressed(unsigned int c) +{ + // Convert the key to a UTF8 byte sequence. + // The changes we had to make to stb_textedit_key made it very much UTF-8 specific which is not too great. + char utf8[5]; + ImTextCharToUtf8(utf8, c); + stb_textedit_text(this, Stb, utf8, (int)strlen(utf8)); + CursorFollow = true; + CursorAnimReset(); +} + +// Those functions are not inlined in imgui_internal.h, allowing us to hide ImStbTexteditState from that header. +void ImGuiInputTextState::CursorAnimReset() { CursorAnim = -0.30f; } // After a user-input the cursor stays on for a while without blinking +void ImGuiInputTextState::CursorClamp() { Stb->cursor = ImMin(Stb->cursor, CurLenA); Stb->select_start = ImMin(Stb->select_start, CurLenA); Stb->select_end = ImMin(Stb->select_end, CurLenA); } +bool ImGuiInputTextState::HasSelection() const { return Stb->select_start != Stb->select_end; } +void ImGuiInputTextState::ClearSelection() { Stb->select_start = Stb->select_end = Stb->cursor; } +int ImGuiInputTextState::GetCursorPos() const { return Stb->cursor; } +int ImGuiInputTextState::GetSelectionStart() const { return Stb->select_start; } +int ImGuiInputTextState::GetSelectionEnd() const { return Stb->select_end; } +void ImGuiInputTextState::SelectAll() { Stb->select_start = 0; Stb->cursor = Stb->select_end = CurLenA; Stb->has_preferred_x = 0; } +void ImGuiInputTextState::ReloadUserBufAndSelectAll() { ReloadUserBuf = true; ReloadSelectionStart = 0; ReloadSelectionEnd = INT_MAX; } +void ImGuiInputTextState::ReloadUserBufAndKeepSelection() { ReloadUserBuf = true; ReloadSelectionStart = Stb->select_start; ReloadSelectionEnd = Stb->select_end; } +void ImGuiInputTextState::ReloadUserBufAndMoveToEnd() { ReloadUserBuf = true; ReloadSelectionStart = ReloadSelectionEnd = INT_MAX; } + +ImGuiInputTextCallbackData::ImGuiInputTextCallbackData() +{ + memset(this, 0, sizeof(*this)); +} + +// Public API to manipulate UTF-8 text +// We expose UTF-8 to the user (unlike the STB_TEXTEDIT_* functions which are manipulating wchar) +// FIXME: The existence of this rarely exercised code path is a bit of a nuisance. +void ImGuiInputTextCallbackData::DeleteChars(int pos, int bytes_count) +{ + IM_ASSERT(pos + bytes_count <= BufTextLen); + char* dst = Buf + pos; + const char* src = Buf + pos + bytes_count; + while (char c = *src++) + *dst++ = c; + *dst = '\0'; + + if (CursorPos >= pos + bytes_count) + CursorPos -= bytes_count; + else if (CursorPos >= pos) + CursorPos = pos; + SelectionStart = SelectionEnd = CursorPos; + BufDirty = true; + BufTextLen -= bytes_count; +} + +void ImGuiInputTextCallbackData::InsertChars(int pos, const char* new_text, const char* new_text_end) +{ + // Accept null ranges + if (new_text == new_text_end) + return; + + const bool is_resizable = (Flags & ImGuiInputTextFlags_CallbackResize) != 0; + const int new_text_len = new_text_end ? (int)(new_text_end - new_text) : (int)strlen(new_text); + if (new_text_len + BufTextLen >= BufSize) + { + if (!is_resizable) + return; + + // Contrary to STB_TEXTEDIT_INSERTCHARS() this is working in the UTF8 buffer, hence the mildly similar code (until we remove the U16 buffer altogether!) + ImGuiContext& g = *Ctx; + ImGuiInputTextState* edit_state = &g.InputTextState; + IM_ASSERT(edit_state->ID != 0 && g.ActiveId == edit_state->ID); + IM_ASSERT(Buf == edit_state->TextA.Data); + int new_buf_size = BufTextLen + ImClamp(new_text_len * 4, 32, ImMax(256, new_text_len)) + 1; + edit_state->TextA.reserve(new_buf_size + 1); + Buf = edit_state->TextA.Data; + BufSize = edit_state->BufCapacityA = new_buf_size; + } + + if (BufTextLen != pos) + memmove(Buf + pos + new_text_len, Buf + pos, (size_t)(BufTextLen - pos)); + memcpy(Buf + pos, new_text, (size_t)new_text_len * sizeof(char)); + Buf[BufTextLen + new_text_len] = '\0'; + + if (CursorPos >= pos) + CursorPos += new_text_len; + SelectionStart = SelectionEnd = CursorPos; + BufDirty = true; + BufTextLen += new_text_len; +} + +// Return false to discard a character. +static bool InputTextFilterCharacter(ImGuiContext* ctx, unsigned int* p_char, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data, bool input_source_is_clipboard) +{ + unsigned int c = *p_char; + + // Filter non-printable (NB: isprint is unreliable! see #2467) + bool apply_named_filters = true; + if (c < 0x20) + { + bool pass = false; + pass |= (c == '\n') && (flags & ImGuiInputTextFlags_Multiline) != 0; // Note that an Enter KEY will emit \r and be ignored (we poll for KEY in InputText() code) + pass |= (c == '\t') && (flags & ImGuiInputTextFlags_AllowTabInput) != 0; + if (!pass) + return false; + apply_named_filters = false; // Override named filters below so newline and tabs can still be inserted. + } + + if (input_source_is_clipboard == false) + { + // We ignore Ascii representation of delete (emitted from Backspace on OSX, see #2578, #2817) + if (c == 127) + return false; + + // Filter private Unicode range. GLFW on OSX seems to send private characters for special keys like arrow keys (FIXME) + if (c >= 0xE000 && c <= 0xF8FF) + return false; + } + + // Filter Unicode ranges we are not handling in this build + if (c > IM_UNICODE_CODEPOINT_MAX) + return false; + + // Generic named filters + if (apply_named_filters && (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsUppercase | ImGuiInputTextFlags_CharsNoBlank | ImGuiInputTextFlags_CharsScientific | (ImGuiInputTextFlags)ImGuiInputTextFlags_LocalizeDecimalPoint))) + { + // The libc allows overriding locale, with e.g. 'setlocale(LC_NUMERIC, "de_DE.UTF-8");' which affect the output/input of printf/scanf to use e.g. ',' instead of '.'. + // The standard mandate that programs starts in the "C" locale where the decimal point is '.'. + // We don't really intend to provide widespread support for it, but out of empathy for people stuck with using odd API, we support the bare minimum aka overriding the decimal point. + // Change the default decimal_point with: + // ImGui::GetPlatformIO()->Platform_LocaleDecimalPoint = *localeconv()->decimal_point; + // Users of non-default decimal point (in particular ',') may be affected by word-selection logic (is_word_boundary_from_right/is_word_boundary_from_left) functions. + ImGuiContext& g = *ctx; + const unsigned c_decimal_point = (unsigned int)g.PlatformIO.Platform_LocaleDecimalPoint; + if (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsScientific | (ImGuiInputTextFlags)ImGuiInputTextFlags_LocalizeDecimalPoint)) + if (c == '.' || c == ',') + c = c_decimal_point; + + // Full-width -> half-width conversion for numeric fields (https://en.wikipedia.org/wiki/Halfwidth_and_Fullwidth_Forms_(Unicode_block) + // While this is mostly convenient, this has the side-effect for uninformed users accidentally inputting full-width characters that they may + // scratch their head as to why it works in numerical fields vs in generic text fields it would require support in the font. + if (flags & (ImGuiInputTextFlags_CharsDecimal | ImGuiInputTextFlags_CharsScientific | ImGuiInputTextFlags_CharsHexadecimal)) + if (c >= 0xFF01 && c <= 0xFF5E) + c = c - 0xFF01 + 0x21; + + // Allow 0-9 . - + * / + if (flags & ImGuiInputTextFlags_CharsDecimal) + if (!(c >= '0' && c <= '9') && (c != c_decimal_point) && (c != '-') && (c != '+') && (c != '*') && (c != '/')) + return false; + + // Allow 0-9 . - + * / e E + if (flags & ImGuiInputTextFlags_CharsScientific) + if (!(c >= '0' && c <= '9') && (c != c_decimal_point) && (c != '-') && (c != '+') && (c != '*') && (c != '/') && (c != 'e') && (c != 'E')) + return false; + + // Allow 0-9 a-F A-F + if (flags & ImGuiInputTextFlags_CharsHexadecimal) + if (!(c >= '0' && c <= '9') && !(c >= 'a' && c <= 'f') && !(c >= 'A' && c <= 'F')) + return false; + + // Turn a-z into A-Z + if (flags & ImGuiInputTextFlags_CharsUppercase) + if (c >= 'a' && c <= 'z') + c += (unsigned int)('A' - 'a'); + + if (flags & ImGuiInputTextFlags_CharsNoBlank) + if (ImCharIsBlankW(c)) + return false; + + *p_char = c; + } + + // Custom callback filter + if (flags & ImGuiInputTextFlags_CallbackCharFilter) + { + ImGuiContext& g = *GImGui; + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = ImGuiInputTextFlags_CallbackCharFilter; + callback_data.EventChar = (ImWchar)c; + callback_data.Flags = flags; + callback_data.UserData = user_data; + if (callback(&callback_data) != 0) + return false; + *p_char = callback_data.EventChar; + if (!callback_data.EventChar) + return false; + } + + return true; +} + +// Find the shortest single replacement we can make to get the new text from the old text. +// Important: needs to be run before TextW is rewritten with the new characters because calling STB_TEXTEDIT_GETCHAR() at the end. +// FIXME: Ideally we should transition toward (1) making InsertChars()/DeleteChars() update undo-stack (2) discourage (and keep reconcile) or obsolete (and remove reconcile) accessing buffer directly. +static void InputTextReconcileUndoStateAfterUserCallback(ImGuiInputTextState* state, const char* new_buf_a, int new_length_a) +{ + const char* old_buf = state->CallbackTextBackup.Data; + const int old_length = state->CallbackTextBackup.Size - 1; + + const int shorter_length = ImMin(old_length, new_length_a); + int first_diff; + for (first_diff = 0; first_diff < shorter_length; first_diff++) + if (old_buf[first_diff] != new_buf_a[first_diff]) + break; + if (first_diff == old_length && first_diff == new_length_a) + return; + + int old_last_diff = old_length - 1; + int new_last_diff = new_length_a - 1; + for (; old_last_diff >= first_diff && new_last_diff >= first_diff; old_last_diff--, new_last_diff--) + if (old_buf[old_last_diff] != new_buf_a[new_last_diff]) + break; + + const int insert_len = new_last_diff - first_diff + 1; + const int delete_len = old_last_diff - first_diff + 1; + if (insert_len > 0 || delete_len > 0) + if (IMSTB_TEXTEDIT_CHARTYPE* p = stb_text_createundo(&state->Stb->undostate, first_diff, delete_len, insert_len)) + for (int i = 0; i < delete_len; i++) + p[i] = old_buf[first_diff + i]; +} + +// As InputText() retain textual data and we currently provide a path for user to not retain it (via local variables) +// we need some form of hook to reapply data back to user buffer on deactivation frame. (#4714) +// It would be more desirable that we discourage users from taking advantage of the "user not retaining data" trick, +// but that more likely be attractive when we do have _NoLiveEdit flag available. +void ImGui::InputTextDeactivateHook(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiInputTextState* state = &g.InputTextState; + if (id == 0 || state->ID != id) + return; + g.InputTextDeactivatedState.ID = state->ID; + if (state->Flags & ImGuiInputTextFlags_ReadOnly) + { + g.InputTextDeactivatedState.TextA.resize(0); // In theory this data won't be used, but clear to be neat. + } + else + { + IM_ASSERT(state->TextA.Data != 0); + g.InputTextDeactivatedState.TextA.resize(state->CurLenA + 1); + memcpy(g.InputTextDeactivatedState.TextA.Data, state->TextA.Data, state->CurLenA + 1); + } +} + +// Edit a string of text +// - buf_size account for the zero-terminator, so a buf_size of 6 can hold "Hello" but not "Hello!". +// This is so we can easily call InputText() on static arrays using ARRAYSIZE() and to match +// Note that in std::string world, capacity() would omit 1 byte used by the zero-terminator. +// - When active, hold on a privately held copy of the text (and apply back to 'buf'). So changing 'buf' while the InputText is active has no effect. +// - If you want to use ImGui::InputText() with std::string, see misc/cpp/imgui_stdlib.h +// (FIXME: Rather confusing and messy function, among the worse part of our codebase, expecting to rewrite a V2 at some point.. Partly because we are +// doing UTF8 > U16 > UTF8 conversions on the go to easily interface with stb_textedit. Ideally should stay in UTF-8 all the time. See https://github.com/nothings/stb/issues/188) +bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_size, const ImVec2& size_arg, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* callback_user_data) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + IM_ASSERT(buf != NULL && buf_size >= 0); + IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackHistory) && (flags & ImGuiInputTextFlags_Multiline))); // Can't use both together (they both use up/down keys) + IM_ASSERT(!((flags & ImGuiInputTextFlags_CallbackCompletion) && (flags & ImGuiInputTextFlags_AllowTabInput))); // Can't use both together (they both use tab key) + + ImGuiContext& g = *GImGui; + ImGuiIO& io = g.IO; + const ImGuiStyle& style = g.Style; + + const bool RENDER_SELECTION_WHEN_INACTIVE = false; + const bool is_multiline = (flags & ImGuiInputTextFlags_Multiline) != 0; + + if (is_multiline) // Open group before calling GetID() because groups tracks id created within their scope (including the scrollbar) + BeginGroup(); + const ImGuiID id = window->GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImVec2 frame_size = CalcItemSize(size_arg, CalcItemWidth(), (is_multiline ? g.FontSize * 8.0f : label_size.y) + style.FramePadding.y * 2.0f); // Arbitrary default of 8 lines high for multi-line + const ImVec2 total_size = ImVec2(frame_size.x + (label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f), frame_size.y); + + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); + const ImRect total_bb(frame_bb.Min, frame_bb.Min + total_size); + + ImGuiWindow* draw_window = window; + ImVec2 inner_size = frame_size; + ImGuiLastItemData item_data_backup; + if (is_multiline) + { + ImVec2 backup_pos = window->DC.CursorPos; + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &frame_bb, ImGuiItemFlags_Inputable)) + { + EndGroup(); + return false; + } + item_data_backup = g.LastItemData; + window->DC.CursorPos = backup_pos; + + // Prevent NavActivation from Tabbing when our widget accepts Tab inputs: this allows cycling through widgets without stopping. + if (g.NavActivateId == id && (g.NavActivateFlags & ImGuiActivateFlags_FromTabbing) && (flags & ImGuiInputTextFlags_AllowTabInput)) + g.NavActivateId = 0; + + // Prevent NavActivate reactivating in BeginChild() when we are already active. + const ImGuiID backup_activate_id = g.NavActivateId; + if (g.ActiveId == id) // Prevent reactivation + g.NavActivateId = 0; + + // We reproduce the contents of BeginChildFrame() in order to provide 'label' so our window internal data are easier to read/debug. + PushStyleColor(ImGuiCol_ChildBg, style.Colors[ImGuiCol_FrameBg]); + PushStyleVar(ImGuiStyleVar_ChildRounding, style.FrameRounding); + PushStyleVar(ImGuiStyleVar_ChildBorderSize, style.FrameBorderSize); + PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(0, 0)); // Ensure no clip rect so mouse hover can reach FramePadding edges + bool child_visible = BeginChildEx(label, id, frame_bb.GetSize(), ImGuiChildFlags_Borders, ImGuiWindowFlags_NoMove); + g.NavActivateId = backup_activate_id; + PopStyleVar(3); + PopStyleColor(); + if (!child_visible) + { + EndChild(); + EndGroup(); + return false; + } + draw_window = g.CurrentWindow; // Child window + draw_window->DC.NavLayersActiveMaskNext |= (1 << draw_window->DC.NavLayerCurrent); // This is to ensure that EndChild() will display a navigation highlight so we can "enter" into it. + draw_window->DC.CursorPos += style.FramePadding; + inner_size.x -= draw_window->ScrollbarSizes.x; + } + else + { + // Support for internal ImGuiInputTextFlags_MergedItem flag, which could be redesigned as an ItemFlags if needed (with test performed in ItemAdd) + ItemSize(total_bb, style.FramePadding.y); + if (!(flags & ImGuiInputTextFlags_MergedItem)) + if (!ItemAdd(total_bb, id, &frame_bb, ImGuiItemFlags_Inputable)) + return false; + } + const bool hovered = ItemHoverable(frame_bb, id, g.LastItemData.InFlags); + if (hovered) + SetMouseCursor(ImGuiMouseCursor_TextInput); + + // We are only allowed to access the state if we are already the active widget. + ImGuiInputTextState* state = GetInputTextState(id); + + if (g.LastItemData.InFlags & ImGuiItemFlags_ReadOnly) + flags |= ImGuiInputTextFlags_ReadOnly; + const bool is_readonly = (flags & ImGuiInputTextFlags_ReadOnly) != 0; + const bool is_password = (flags & ImGuiInputTextFlags_Password) != 0; + const bool is_undoable = (flags & ImGuiInputTextFlags_NoUndoRedo) == 0; + const bool is_resizable = (flags & ImGuiInputTextFlags_CallbackResize) != 0; + if (is_resizable) + IM_ASSERT(callback != NULL); // Must provide a callback if you set the ImGuiInputTextFlags_CallbackResize flag! + + const bool input_requested_by_nav = (g.ActiveId != id) && ((g.NavActivateId == id) && ((g.NavActivateFlags & ImGuiActivateFlags_PreferInput) || (g.NavInputSource == ImGuiInputSource_Keyboard))); + + const bool user_clicked = hovered && io.MouseClicked[0]; + const bool user_scroll_finish = is_multiline && state != NULL && g.ActiveId == 0 && g.ActiveIdPreviousFrame == GetWindowScrollbarID(draw_window, ImGuiAxis_Y); + const bool user_scroll_active = is_multiline && state != NULL && g.ActiveId == GetWindowScrollbarID(draw_window, ImGuiAxis_Y); + bool clear_active_id = false; + bool select_all = false; + + float scroll_y = is_multiline ? draw_window->Scroll.y : FLT_MAX; + + const bool init_reload_from_user_buf = (state != NULL && state->ReloadUserBuf); + const bool init_changed_specs = (state != NULL && state->Stb->single_line != !is_multiline); // state != NULL means its our state. + const bool init_make_active = (user_clicked || user_scroll_finish || input_requested_by_nav); + const bool init_state = (init_make_active || user_scroll_active); + if ((init_state && g.ActiveId != id) || init_changed_specs || init_reload_from_user_buf) + { + // Access state even if we don't own it yet. + state = &g.InputTextState; + state->CursorAnimReset(); + state->ReloadUserBuf = false; + + // Backup state of deactivating item so they'll have a chance to do a write to output buffer on the same frame they report IsItemDeactivatedAfterEdit (#4714) + InputTextDeactivateHook(state->ID); + + // From the moment we focused we are normally ignoring the content of 'buf' (unless we are in read-only mode) + const int buf_len = (int)strlen(buf); + if (!init_reload_from_user_buf) + { + // Take a copy of the initial buffer value. + state->InitialTextA.resize(buf_len + 1); // UTF-8. we use +1 to make sure that .Data is always pointing to at least an empty string. + memcpy(state->InitialTextA.Data, buf, buf_len + 1); + } + + // Preserve cursor position and undo/redo stack if we come back to same widget + // FIXME: Since we reworked this on 2022/06, may want to differentiate recycle_cursor vs recycle_undostate? + bool recycle_state = (state->ID == id && !init_changed_specs && !init_reload_from_user_buf); + if (recycle_state && (state->CurLenA != buf_len || (strncmp(state->TextA.Data, buf, buf_len) != 0))) + recycle_state = false; + + // Start edition + state->ID = id; + state->TextA.resize(buf_size + 1); // we use +1 to make sure that .Data is always pointing to at least an empty string. + state->CurLenA = (int)strlen(buf); + memcpy(state->TextA.Data, buf, state->CurLenA + 1); + + if (recycle_state) + { + // Recycle existing cursor/selection/undo stack but clamp position + // Note a single mouse click will override the cursor/position immediately by calling stb_textedit_click handler. + state->CursorClamp(); + } + else + { + state->Scroll = ImVec2(0.0f, 0.0f); + stb_textedit_initialize_state(state->Stb, !is_multiline); + } + + if (init_reload_from_user_buf) + { + state->Stb->select_start = state->ReloadSelectionStart; + state->Stb->cursor = state->Stb->select_end = state->ReloadSelectionEnd; + state->CursorClamp(); + } + else if (!is_multiline) + { + if (flags & ImGuiInputTextFlags_AutoSelectAll) + select_all = true; + if (input_requested_by_nav && (!recycle_state || !(g.NavActivateFlags & ImGuiActivateFlags_TryToPreserveState))) + select_all = true; + if (user_clicked && io.KeyCtrl) + select_all = true; + } + + if (flags & ImGuiInputTextFlags_AlwaysOverwrite) + state->Stb->insert_mode = 1; // stb field name is indeed incorrect (see #2863) + } + + const bool is_osx = io.ConfigMacOSXBehaviors; + if (g.ActiveId != id && init_make_active) + { + IM_ASSERT(state && state->ID == id); + SetActiveID(id, window); + SetFocusID(id, window); + FocusWindow(window); + } + if (g.ActiveId == id) + { + // Declare some inputs, the other are registered and polled via Shortcut() routing system. + if (user_clicked) + SetKeyOwner(ImGuiKey_MouseLeft, id); + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Left) | (1 << ImGuiDir_Right); + if (is_multiline || (flags & ImGuiInputTextFlags_CallbackHistory)) + g.ActiveIdUsingNavDirMask |= (1 << ImGuiDir_Up) | (1 << ImGuiDir_Down); + SetKeyOwner(ImGuiKey_Enter, id); + SetKeyOwner(ImGuiKey_KeypadEnter, id); + SetKeyOwner(ImGuiKey_Home, id); + SetKeyOwner(ImGuiKey_End, id); + if (is_multiline) + { + SetKeyOwner(ImGuiKey_PageUp, id); + SetKeyOwner(ImGuiKey_PageDown, id); + } + // FIXME: May be a problem to always steal Alt on OSX, would ideally still allow an uninterrupted Alt down-up to toggle menu + if (is_osx) + SetKeyOwner(ImGuiMod_Alt, id); + + // Expose scroll in a manner that is agnostic to us using a child window + if (is_multiline && state != NULL) + state->Scroll.y = draw_window->Scroll.y; + } + + // We have an edge case if ActiveId was set through another widget (e.g. widget being swapped), clear id immediately (don't wait until the end of the function) + if (g.ActiveId == id && state == NULL) + ClearActiveID(); + + // Release focus when we click outside + if (g.ActiveId == id && io.MouseClicked[0] && !init_state && !init_make_active) //-V560 + clear_active_id = true; + + // Lock the decision of whether we are going to take the path displaying the cursor or selection + bool render_cursor = (g.ActiveId == id) || (state && user_scroll_active); + bool render_selection = state && (state->HasSelection() || select_all) && (RENDER_SELECTION_WHEN_INACTIVE || render_cursor); + bool value_changed = false; + bool validated = false; + + // Select the buffer to render. + const bool buf_display_from_state = (render_cursor || render_selection || g.ActiveId == id) && !is_readonly && state; + const bool is_displaying_hint = (hint != NULL && (buf_display_from_state ? state->TextA.Data : buf)[0] == 0); + + // Password pushes a temporary font with only a fallback glyph + if (is_password && !is_displaying_hint) + { + const ImFontGlyph* glyph = g.Font->FindGlyph('*'); + ImFont* password_font = &g.InputTextPasswordFont; + password_font->FontSize = g.Font->FontSize; + password_font->Scale = g.Font->Scale; + password_font->Ascent = g.Font->Ascent; + password_font->Descent = g.Font->Descent; + password_font->ContainerAtlas = g.Font->ContainerAtlas; + password_font->FallbackGlyph = glyph; + password_font->FallbackAdvanceX = glyph->AdvanceX; + IM_ASSERT(password_font->Glyphs.empty() && password_font->IndexAdvanceX.empty() && password_font->IndexLookup.empty()); + PushFont(password_font); + } + + // Process mouse inputs and character inputs + if (g.ActiveId == id) + { + IM_ASSERT(state != NULL); + state->Edited = false; + state->BufCapacityA = buf_size; + state->Flags = flags; + + // Although we are active we don't prevent mouse from hovering other elements unless we are interacting right now with the widget. + // Down the line we should have a cleaner library-wide concept of Selected vs Active. + g.ActiveIdAllowOverlap = !io.MouseDown[0]; + + // Edit in progress + const float mouse_x = (io.MousePos.x - frame_bb.Min.x - style.FramePadding.x) + state->Scroll.x; + const float mouse_y = (is_multiline ? (io.MousePos.y - draw_window->DC.CursorPos.y) : (g.FontSize * 0.5f)); + + if (select_all) + { + state->SelectAll(); + state->SelectedAllMouseLock = true; + } + else if (hovered && io.MouseClickedCount[0] >= 2 && !io.KeyShift) + { + stb_textedit_click(state, state->Stb, mouse_x, mouse_y); + const int multiclick_count = (io.MouseClickedCount[0] - 2); + if ((multiclick_count % 2) == 0) + { + // Double-click: Select word + // We always use the "Mac" word advance for double-click select vs CTRL+Right which use the platform dependent variant: + // FIXME: There are likely many ways to improve this behavior, but there's no "right" behavior (depends on use-case, software, OS) + const bool is_bol = (state->Stb->cursor == 0) || ImStb::STB_TEXTEDIT_GETCHAR(state, state->Stb->cursor - 1) == '\n'; + if (STB_TEXT_HAS_SELECTION(state->Stb) || !is_bol) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDLEFT); + //state->OnKeyPressed(STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT); + if (!STB_TEXT_HAS_SELECTION(state->Stb)) + ImStb::stb_textedit_prep_selection_at_cursor(state->Stb); + state->Stb->cursor = ImStb::STB_TEXTEDIT_MOVEWORDRIGHT_MAC(state, state->Stb->cursor); + state->Stb->select_end = state->Stb->cursor; + ImStb::stb_textedit_clamp(state, state->Stb); + } + else + { + // Triple-click: Select line + const bool is_eol = ImStb::STB_TEXTEDIT_GETCHAR(state, state->Stb->cursor) == '\n'; + state->OnKeyPressed(STB_TEXTEDIT_K_LINESTART); + state->OnKeyPressed(STB_TEXTEDIT_K_LINEEND | STB_TEXTEDIT_K_SHIFT); + state->OnKeyPressed(STB_TEXTEDIT_K_RIGHT | STB_TEXTEDIT_K_SHIFT); + if (!is_eol && is_multiline) + { + ImSwap(state->Stb->select_start, state->Stb->select_end); + state->Stb->cursor = state->Stb->select_end; + } + state->CursorFollow = false; + } + state->CursorAnimReset(); + } + else if (io.MouseClicked[0] && !state->SelectedAllMouseLock) + { + if (hovered) + { + if (io.KeyShift) + stb_textedit_drag(state, state->Stb, mouse_x, mouse_y); + else + stb_textedit_click(state, state->Stb, mouse_x, mouse_y); + state->CursorAnimReset(); + } + } + else if (io.MouseDown[0] && !state->SelectedAllMouseLock && (io.MouseDelta.x != 0.0f || io.MouseDelta.y != 0.0f)) + { + stb_textedit_drag(state, state->Stb, mouse_x, mouse_y); + state->CursorAnimReset(); + state->CursorFollow = true; + } + if (state->SelectedAllMouseLock && !io.MouseDown[0]) + state->SelectedAllMouseLock = false; + + // We expect backends to emit a Tab key but some also emit a Tab character which we ignore (#2467, #1336) + // (For Tab and Enter: Win32/SFML/Allegro are sending both keys and chars, GLFW and SDL are only sending keys. For Space they all send all threes) + if ((flags & ImGuiInputTextFlags_AllowTabInput) && !is_readonly) + { + if (Shortcut(ImGuiKey_Tab, ImGuiInputFlags_Repeat, id)) + { + unsigned int c = '\t'; // Insert TAB + if (InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data)) + state->OnCharPressed(c); + } + // FIXME: Implement Shift+Tab + /* + if (Shortcut(ImGuiKey_Tab | ImGuiMod_Shift, ImGuiInputFlags_Repeat, id)) + { + } + */ + } + + // Process regular text input (before we check for Return because using some IME will effectively send a Return?) + // We ignore CTRL inputs, but need to allow ALT+CTRL as some keyboards (e.g. German) use AltGR (which _is_ Alt+Ctrl) to input certain characters. + const bool ignore_char_inputs = (io.KeyCtrl && !io.KeyAlt) || (is_osx && io.KeyCtrl); + if (io.InputQueueCharacters.Size > 0) + { + if (!ignore_char_inputs && !is_readonly && !input_requested_by_nav) + for (int n = 0; n < io.InputQueueCharacters.Size; n++) + { + // Insert character if they pass filtering + unsigned int c = (unsigned int)io.InputQueueCharacters[n]; + if (c == '\t') // Skip Tab, see above. + continue; + if (InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data)) + state->OnCharPressed(c); + } + + // Consume characters + io.InputQueueCharacters.resize(0); + } + } + + // Process other shortcuts/key-presses + bool revert_edit = false; + if (g.ActiveId == id && !g.ActiveIdIsJustActivated && !clear_active_id) + { + IM_ASSERT(state != NULL); + + const int row_count_per_page = ImMax((int)((inner_size.y - style.FramePadding.y) / g.FontSize), 1); + state->Stb->row_count_per_page = row_count_per_page; + + const int k_mask = (io.KeyShift ? STB_TEXTEDIT_K_SHIFT : 0); + const bool is_wordmove_key_down = is_osx ? io.KeyAlt : io.KeyCtrl; // OS X style: Text editing cursor movement using Alt instead of Ctrl + const bool is_startend_key_down = is_osx && io.KeyCtrl && !io.KeySuper && !io.KeyAlt; // OS X style: Line/Text Start and End using Cmd+Arrows instead of Home/End + + // Using Shortcut() with ImGuiInputFlags_RouteFocused (default policy) to allow routing operations for other code (e.g. calling window trying to use CTRL+A and CTRL+B: formet would be handled by InputText) + // Otherwise we could simply assume that we own the keys as we are active. + const ImGuiInputFlags f_repeat = ImGuiInputFlags_Repeat; + const bool is_cut = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_X, f_repeat, id) || Shortcut(ImGuiMod_Shift | ImGuiKey_Delete, f_repeat, id)) && !is_readonly && !is_password && (!is_multiline || state->HasSelection()); + const bool is_copy = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_C, 0, id) || Shortcut(ImGuiMod_Ctrl | ImGuiKey_Insert, 0, id)) && !is_password && (!is_multiline || state->HasSelection()); + const bool is_paste = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_V, f_repeat, id) || Shortcut(ImGuiMod_Shift | ImGuiKey_Insert, f_repeat, id)) && !is_readonly; + const bool is_undo = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_Z, f_repeat, id)) && !is_readonly && is_undoable; + const bool is_redo = (Shortcut(ImGuiMod_Ctrl | ImGuiKey_Y, f_repeat, id) || (is_osx && Shortcut(ImGuiMod_Ctrl | ImGuiMod_Shift | ImGuiKey_Z, f_repeat, id))) && !is_readonly && is_undoable; + const bool is_select_all = Shortcut(ImGuiMod_Ctrl | ImGuiKey_A, 0, id); + + // We allow validate/cancel with Nav source (gamepad) to makes it easier to undo an accidental NavInput press with no keyboard wired, but otherwise it isn't very useful. + const bool nav_gamepad_active = (io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) != 0 && (io.BackendFlags & ImGuiBackendFlags_HasGamepad) != 0; + const bool is_enter_pressed = IsKeyPressed(ImGuiKey_Enter, true) || IsKeyPressed(ImGuiKey_KeypadEnter, true); + const bool is_gamepad_validate = nav_gamepad_active && (IsKeyPressed(ImGuiKey_NavGamepadActivate, false) || IsKeyPressed(ImGuiKey_NavGamepadInput, false)); + const bool is_cancel = Shortcut(ImGuiKey_Escape, f_repeat, id) || (nav_gamepad_active && Shortcut(ImGuiKey_NavGamepadCancel, f_repeat, id)); + + // FIXME: Should use more Shortcut() and reduce IsKeyPressed()+SetKeyOwner(), but requires modifiers combination to be taken account of. + // FIXME-OSX: Missing support for Alt(option)+Right/Left = go to end of line, or next line if already in end of line. + if (IsKeyPressed(ImGuiKey_LeftArrow)) { state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_LINESTART : is_wordmove_key_down ? STB_TEXTEDIT_K_WORDLEFT : STB_TEXTEDIT_K_LEFT) | k_mask); } + else if (IsKeyPressed(ImGuiKey_RightArrow)) { state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_LINEEND : is_wordmove_key_down ? STB_TEXTEDIT_K_WORDRIGHT : STB_TEXTEDIT_K_RIGHT) | k_mask); } + else if (IsKeyPressed(ImGuiKey_UpArrow) && is_multiline) { if (io.KeyCtrl) SetScrollY(draw_window, ImMax(draw_window->Scroll.y - g.FontSize, 0.0f)); else state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_TEXTSTART : STB_TEXTEDIT_K_UP) | k_mask); } + else if (IsKeyPressed(ImGuiKey_DownArrow) && is_multiline) { if (io.KeyCtrl) SetScrollY(draw_window, ImMin(draw_window->Scroll.y + g.FontSize, GetScrollMaxY())); else state->OnKeyPressed((is_startend_key_down ? STB_TEXTEDIT_K_TEXTEND : STB_TEXTEDIT_K_DOWN) | k_mask); } + else if (IsKeyPressed(ImGuiKey_PageUp) && is_multiline) { state->OnKeyPressed(STB_TEXTEDIT_K_PGUP | k_mask); scroll_y -= row_count_per_page * g.FontSize; } + else if (IsKeyPressed(ImGuiKey_PageDown) && is_multiline) { state->OnKeyPressed(STB_TEXTEDIT_K_PGDOWN | k_mask); scroll_y += row_count_per_page * g.FontSize; } + else if (IsKeyPressed(ImGuiKey_Home)) { state->OnKeyPressed(io.KeyCtrl ? STB_TEXTEDIT_K_TEXTSTART | k_mask : STB_TEXTEDIT_K_LINESTART | k_mask); } + else if (IsKeyPressed(ImGuiKey_End)) { state->OnKeyPressed(io.KeyCtrl ? STB_TEXTEDIT_K_TEXTEND | k_mask : STB_TEXTEDIT_K_LINEEND | k_mask); } + else if (IsKeyPressed(ImGuiKey_Delete) && !is_readonly && !is_cut) + { + if (!state->HasSelection()) + { + // OSX doesn't seem to have Super+Delete to delete until end-of-line, so we don't emulate that (as opposed to Super+Backspace) + if (is_wordmove_key_down) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT); + } + state->OnKeyPressed(STB_TEXTEDIT_K_DELETE | k_mask); + } + else if (IsKeyPressed(ImGuiKey_Backspace) && !is_readonly) + { + if (!state->HasSelection()) + { + if (is_wordmove_key_down) + state->OnKeyPressed(STB_TEXTEDIT_K_WORDLEFT | STB_TEXTEDIT_K_SHIFT); + else if (is_osx && io.KeyCtrl && !io.KeyAlt && !io.KeySuper) + state->OnKeyPressed(STB_TEXTEDIT_K_LINESTART | STB_TEXTEDIT_K_SHIFT); + } + state->OnKeyPressed(STB_TEXTEDIT_K_BACKSPACE | k_mask); + } + else if (is_enter_pressed || is_gamepad_validate) + { + // Determine if we turn Enter into a \n character + bool ctrl_enter_for_new_line = (flags & ImGuiInputTextFlags_CtrlEnterForNewLine) != 0; + if (!is_multiline || is_gamepad_validate || (ctrl_enter_for_new_line && !io.KeyCtrl) || (!ctrl_enter_for_new_line && io.KeyCtrl)) + { + validated = true; + if (io.ConfigInputTextEnterKeepActive && !is_multiline) + state->SelectAll(); // No need to scroll + else + clear_active_id = true; + } + else if (!is_readonly) + { + unsigned int c = '\n'; // Insert new line + if (InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data)) + state->OnCharPressed(c); + } + } + else if (is_cancel) + { + if (flags & ImGuiInputTextFlags_EscapeClearsAll) + { + if (buf[0] != 0) + { + revert_edit = true; + } + else + { + render_cursor = render_selection = false; + clear_active_id = true; + } + } + else + { + clear_active_id = revert_edit = true; + render_cursor = render_selection = false; + } + } + else if (is_undo || is_redo) + { + state->OnKeyPressed(is_undo ? STB_TEXTEDIT_K_UNDO : STB_TEXTEDIT_K_REDO); + state->ClearSelection(); + } + else if (is_select_all) + { + state->SelectAll(); + state->CursorFollow = true; + } + else if (is_cut || is_copy) + { + // Cut, Copy + if (g.PlatformIO.Platform_SetClipboardTextFn != NULL) + { + const int ib = state->HasSelection() ? ImMin(state->Stb->select_start, state->Stb->select_end) : 0; + const int ie = state->HasSelection() ? ImMax(state->Stb->select_start, state->Stb->select_end) : state->CurLenA; + + char backup = state->TextA.Data[ie]; + state->TextA.Data[ie] = 0; // A bit of a hack since SetClipboardText only takes null terminated strings + SetClipboardText(state->TextA.Data + ib); + state->TextA.Data[ie] = backup; + } + if (is_cut) + { + if (!state->HasSelection()) + state->SelectAll(); + state->CursorFollow = true; + stb_textedit_cut(state, state->Stb); + } + } + else if (is_paste) + { + if (const char* clipboard = GetClipboardText()) + { + // Filter pasted buffer + const int clipboard_len = (int)strlen(clipboard); + char* clipboard_filtered = (char*)IM_ALLOC(clipboard_len + 1); + int clipboard_filtered_len = 0; + for (const char* s = clipboard; *s != 0; ) + { + unsigned int c; + int len = ImTextCharFromUtf8(&c, s, NULL); + s += len; + if (!InputTextFilterCharacter(&g, &c, flags, callback, callback_user_data, true)) + continue; + memcpy(clipboard_filtered + clipboard_filtered_len, s - len, len); + clipboard_filtered_len += len; + } + clipboard_filtered[clipboard_filtered_len] = 0; + if (clipboard_filtered_len > 0) // If everything was filtered, ignore the pasting operation + { + stb_textedit_paste(state, state->Stb, clipboard_filtered, clipboard_filtered_len); + state->CursorFollow = true; + } + MemFree(clipboard_filtered); + } + } + + // Update render selection flag after events have been handled, so selection highlight can be displayed during the same frame. + render_selection |= state->HasSelection() && (RENDER_SELECTION_WHEN_INACTIVE || render_cursor); + } + + // Process callbacks and apply result back to user's buffer. + const char* apply_new_text = NULL; + int apply_new_text_length = 0; + if (g.ActiveId == id) + { + IM_ASSERT(state != NULL); + if (revert_edit && !is_readonly) + { + if (flags & ImGuiInputTextFlags_EscapeClearsAll) + { + // Clear input + IM_ASSERT(buf[0] != 0); + apply_new_text = ""; + apply_new_text_length = 0; + value_changed = true; + IMSTB_TEXTEDIT_CHARTYPE empty_string; + stb_textedit_replace(state, state->Stb, &empty_string, 0); + } + else if (strcmp(buf, state->InitialTextA.Data) != 0) + { + apply_new_text = state->InitialTextA.Data; + apply_new_text_length = state->InitialTextA.Size - 1; + + // Restore initial value. Only return true if restoring to the initial value changes the current buffer contents. + // Push records into the undo stack so we can CTRL+Z the revert operation itself + value_changed = true; + stb_textedit_replace(state, state->Stb, state->InitialTextA.Data, state->InitialTextA.Size - 1); + } + } + + // When using 'ImGuiInputTextFlags_EnterReturnsTrue' as a special case we reapply the live buffer back to the input buffer + // before clearing ActiveId, even though strictly speaking it wasn't modified on this frame. + // If we didn't do that, code like InputInt() with ImGuiInputTextFlags_EnterReturnsTrue would fail. + // This also allows the user to use InputText() with ImGuiInputTextFlags_EnterReturnsTrue without maintaining any user-side storage + // (please note that if you use this property along ImGuiInputTextFlags_CallbackResize you can end up with your temporary string object + // unnecessarily allocating once a frame, either store your string data, either if you don't then don't use ImGuiInputTextFlags_CallbackResize). + const bool apply_edit_back_to_user_buffer = !revert_edit || (validated && (flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0); + if (apply_edit_back_to_user_buffer) + { + // Apply new value immediately - copy modified buffer back + // Note that as soon as the input box is active, the in-widget value gets priority over any underlying modification of the input buffer + // FIXME: We actually always render 'buf' when calling DrawList->AddText, making the comment above incorrect. + // FIXME-OPT: CPU waste to do this every time the widget is active, should mark dirty state from the stb_textedit callbacks. + + // User callback + if ((flags & (ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_CallbackHistory | ImGuiInputTextFlags_CallbackEdit | ImGuiInputTextFlags_CallbackAlways)) != 0) + { + IM_ASSERT(callback != NULL); + + // The reason we specify the usage semantic (Completion/History) is that Completion needs to disable keyboard TABBING at the moment. + ImGuiInputTextFlags event_flag = 0; + ImGuiKey event_key = ImGuiKey_None; + if ((flags & ImGuiInputTextFlags_CallbackCompletion) != 0 && Shortcut(ImGuiKey_Tab, 0, id)) + { + event_flag = ImGuiInputTextFlags_CallbackCompletion; + event_key = ImGuiKey_Tab; + } + else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressed(ImGuiKey_UpArrow)) + { + event_flag = ImGuiInputTextFlags_CallbackHistory; + event_key = ImGuiKey_UpArrow; + } + else if ((flags & ImGuiInputTextFlags_CallbackHistory) != 0 && IsKeyPressed(ImGuiKey_DownArrow)) + { + event_flag = ImGuiInputTextFlags_CallbackHistory; + event_key = ImGuiKey_DownArrow; + } + else if ((flags & ImGuiInputTextFlags_CallbackEdit) && state->Edited) + { + event_flag = ImGuiInputTextFlags_CallbackEdit; + } + else if (flags & ImGuiInputTextFlags_CallbackAlways) + { + event_flag = ImGuiInputTextFlags_CallbackAlways; + } + + if (event_flag) + { + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = event_flag; + callback_data.Flags = flags; + callback_data.UserData = callback_user_data; + + // FIXME-OPT: Undo stack reconcile needs a backup of the data until we rework API, see #7925 + state->CallbackTextBackup.resize(state->CurLenA + 1); + memcpy(state->CallbackTextBackup.Data, state->TextA.Data, state->CurLenA + 1); + + char* callback_buf = is_readonly ? buf : state->TextA.Data; + callback_data.EventKey = event_key; + callback_data.Buf = callback_buf; + callback_data.BufTextLen = state->CurLenA; + callback_data.BufSize = state->BufCapacityA; + callback_data.BufDirty = false; + + const int utf8_cursor_pos = callback_data.CursorPos = state->Stb->cursor; + const int utf8_selection_start = callback_data.SelectionStart = state->Stb->select_start; + const int utf8_selection_end = callback_data.SelectionEnd = state->Stb->select_end; + + // Call user code + callback(&callback_data); + + // Read back what user may have modified + callback_buf = is_readonly ? buf : state->TextA.Data; // Pointer may have been invalidated by a resize callback + IM_ASSERT(callback_data.Buf == callback_buf); // Invalid to modify those fields + IM_ASSERT(callback_data.BufSize == state->BufCapacityA); + IM_ASSERT(callback_data.Flags == flags); + const bool buf_dirty = callback_data.BufDirty; + if (callback_data.CursorPos != utf8_cursor_pos || buf_dirty) { state->Stb->cursor = callback_data.CursorPos; state->CursorFollow = true; } + if (callback_data.SelectionStart != utf8_selection_start || buf_dirty) { state->Stb->select_start = (callback_data.SelectionStart == callback_data.CursorPos) ? state->Stb->cursor : callback_data.SelectionStart; } + if (callback_data.SelectionEnd != utf8_selection_end || buf_dirty) { state->Stb->select_end = (callback_data.SelectionEnd == callback_data.SelectionStart) ? state->Stb->select_start : callback_data.SelectionEnd; } + if (buf_dirty) + { + // Callback may update buffer and thus set buf_dirty even in read-only mode. + IM_ASSERT(callback_data.BufTextLen == (int)strlen(callback_data.Buf)); // You need to maintain BufTextLen if you change the text! + InputTextReconcileUndoStateAfterUserCallback(state, callback_data.Buf, callback_data.BufTextLen); // FIXME: Move the rest of this block inside function and rename to InputTextReconcileStateAfterUserCallback() ? + state->CurLenA = callback_data.BufTextLen; // Assume correct length and valid UTF-8 from user, saves us an extra strlen() + state->TextA.Size = state->CurLenA + 1; + state->CursorAnimReset(); + } + } + } + + // Will copy result string if modified + if (!is_readonly && strcmp(state->TextA.Data, buf) != 0) + { + apply_new_text = state->TextA.Data; + apply_new_text_length = state->CurLenA; + value_changed = true; + } + } + } + + // Handle reapplying final data on deactivation (see InputTextDeactivateHook() for details) + if (g.InputTextDeactivatedState.ID == id) + { + if (g.ActiveId != id && IsItemDeactivatedAfterEdit() && !is_readonly && strcmp(g.InputTextDeactivatedState.TextA.Data, buf) != 0) + { + apply_new_text = g.InputTextDeactivatedState.TextA.Data; + apply_new_text_length = g.InputTextDeactivatedState.TextA.Size - 1; + value_changed = true; + //IMGUI_DEBUG_LOG("InputText(): apply Deactivated data for 0x%08X: \"%.*s\".\n", id, apply_new_text_length, apply_new_text); + } + g.InputTextDeactivatedState.ID = 0; + } + + // Copy result to user buffer. This can currently only happen when (g.ActiveId == id) + if (apply_new_text != NULL) + { + //// We cannot test for 'backup_current_text_length != apply_new_text_length' here because we have no guarantee that the size + //// of our owned buffer matches the size of the string object held by the user, and by design we allow InputText() to be used + //// without any storage on user's side. + IM_ASSERT(apply_new_text_length >= 0); + if (is_resizable) + { + ImGuiInputTextCallbackData callback_data; + callback_data.Ctx = &g; + callback_data.EventFlag = ImGuiInputTextFlags_CallbackResize; + callback_data.Flags = flags; + callback_data.Buf = buf; + callback_data.BufTextLen = apply_new_text_length; + callback_data.BufSize = ImMax(buf_size, apply_new_text_length + 1); + callback_data.UserData = callback_user_data; + callback(&callback_data); + buf = callback_data.Buf; + buf_size = callback_data.BufSize; + apply_new_text_length = ImMin(callback_data.BufTextLen, buf_size - 1); + IM_ASSERT(apply_new_text_length <= buf_size); + } + //IMGUI_DEBUG_PRINT("InputText(\"%s\"): apply_new_text length %d\n", label, apply_new_text_length); + + // If the underlying buffer resize was denied or not carried to the next frame, apply_new_text_length+1 may be >= buf_size. + ImStrncpy(buf, apply_new_text, ImMin(apply_new_text_length + 1, buf_size)); + } + + // Release active ID at the end of the function (so e.g. pressing Return still does a final application of the value) + // Otherwise request text input ahead for next frame. + if (g.ActiveId == id && clear_active_id) + ClearActiveID(); + else if (g.ActiveId == id) + g.WantTextInputNextFrame = 1; + + // Render frame + if (!is_multiline) + { + RenderNavHighlight(frame_bb, id); + RenderFrame(frame_bb.Min, frame_bb.Max, GetColorU32(ImGuiCol_FrameBg), true, style.FrameRounding); + } + + const ImVec4 clip_rect(frame_bb.Min.x, frame_bb.Min.y, frame_bb.Min.x + inner_size.x, frame_bb.Min.y + inner_size.y); // Not using frame_bb.Max because we have adjusted size + ImVec2 draw_pos = is_multiline ? draw_window->DC.CursorPos : frame_bb.Min + style.FramePadding; + ImVec2 text_size(0.0f, 0.0f); + + // Set upper limit of single-line InputTextEx() at 2 million characters strings. The current pathological worst case is a long line + // without any carriage return, which would makes ImFont::RenderText() reserve too many vertices and probably crash. Avoid it altogether. + // Note that we only use this limit on single-line InputText(), so a pathologically large line on a InputTextMultiline() would still crash. + const int buf_display_max_length = 2 * 1024 * 1024; + const char* buf_display = buf_display_from_state ? state->TextA.Data : buf; //-V595 + const char* buf_display_end = NULL; // We have specialized paths below for setting the length + if (is_displaying_hint) + { + buf_display = hint; + buf_display_end = hint + strlen(hint); + } + + // Render text. We currently only render selection when the widget is active or while scrolling. + // FIXME: We could remove the '&& render_cursor' to keep rendering selection when inactive. + if (render_cursor || render_selection) + { + IM_ASSERT(state != NULL); + if (!is_displaying_hint) + buf_display_end = buf_display + state->CurLenA; + + // Render text (with cursor and selection) + // This is going to be messy. We need to: + // - Display the text (this alone can be more easily clipped) + // - Handle scrolling, highlight selection, display cursor (those all requires some form of 1d->2d cursor position calculation) + // - Measure text height (for scrollbar) + // We are attempting to do most of that in **one main pass** to minimize the computation cost (non-negligible for large amount of text) + 2nd pass for selection rendering (we could merge them by an extra refactoring effort) + // FIXME: This should occur on buf_display but we'd need to maintain cursor/select_start/select_end for UTF-8. + const char* text_begin = state->TextA.Data; + const char* text_end = text_begin + state->CurLenA; + ImVec2 cursor_offset, select_start_offset; + + { + // Find lines numbers straddling cursor and selection min position + int cursor_line_no = render_cursor ? -1 : -1000; + int selmin_line_no = render_selection ? -1 : -1000; + const char* cursor_ptr = render_cursor ? text_begin + state->Stb->cursor : NULL; + const char* selmin_ptr = render_selection ? text_begin + ImMin(state->Stb->select_start, state->Stb->select_end) : NULL; + + // Count lines and find line number for cursor and selection ends + int line_count = 1; + if (is_multiline) + { + for (const char* s = text_begin; (s = (const char*)memchr(s, '\n', (size_t)(text_end - s))) != NULL; s++) + { + if (cursor_line_no == -1 && s >= cursor_ptr) { cursor_line_no = line_count; } + if (selmin_line_no == -1 && s >= selmin_ptr) { selmin_line_no = line_count; } + line_count++; + } + } + if (cursor_line_no == -1) + cursor_line_no = line_count; + if (selmin_line_no == -1) + selmin_line_no = line_count; + + // Calculate 2d position by finding the beginning of the line and measuring distance + cursor_offset.x = InputTextCalcTextSize(&g, ImStrbol(cursor_ptr, text_begin), cursor_ptr).x; + cursor_offset.y = cursor_line_no * g.FontSize; + if (selmin_line_no >= 0) + { + select_start_offset.x = InputTextCalcTextSize(&g, ImStrbol(selmin_ptr, text_begin), selmin_ptr).x; + select_start_offset.y = selmin_line_no * g.FontSize; + } + + // Store text height (note that we haven't calculated text width at all, see GitHub issues #383, #1224) + if (is_multiline) + text_size = ImVec2(inner_size.x, line_count * g.FontSize); + } + + // Scroll + if (render_cursor && state->CursorFollow) + { + // Horizontal scroll in chunks of quarter width + if (!(flags & ImGuiInputTextFlags_NoHorizontalScroll)) + { + const float scroll_increment_x = inner_size.x * 0.25f; + const float visible_width = inner_size.x - style.FramePadding.x; + if (cursor_offset.x < state->Scroll.x) + state->Scroll.x = IM_TRUNC(ImMax(0.0f, cursor_offset.x - scroll_increment_x)); + else if (cursor_offset.x - visible_width >= state->Scroll.x) + state->Scroll.x = IM_TRUNC(cursor_offset.x - visible_width + scroll_increment_x); + } + else + { + state->Scroll.y = 0.0f; + } + + // Vertical scroll + if (is_multiline) + { + // Test if cursor is vertically visible + if (cursor_offset.y - g.FontSize < scroll_y) + scroll_y = ImMax(0.0f, cursor_offset.y - g.FontSize); + else if (cursor_offset.y - (inner_size.y - style.FramePadding.y * 2.0f) >= scroll_y) + scroll_y = cursor_offset.y - inner_size.y + style.FramePadding.y * 2.0f; + const float scroll_max_y = ImMax((text_size.y + style.FramePadding.y * 2.0f) - inner_size.y, 0.0f); + scroll_y = ImClamp(scroll_y, 0.0f, scroll_max_y); + draw_pos.y += (draw_window->Scroll.y - scroll_y); // Manipulate cursor pos immediately avoid a frame of lag + draw_window->Scroll.y = scroll_y; + } + + state->CursorFollow = false; + } + + // Draw selection + const ImVec2 draw_scroll = ImVec2(state->Scroll.x, 0.0f); + if (render_selection) + { + const char* text_selected_begin = text_begin + ImMin(state->Stb->select_start, state->Stb->select_end); + const char* text_selected_end = text_begin + ImMax(state->Stb->select_start, state->Stb->select_end); + + ImU32 bg_color = GetColorU32(ImGuiCol_TextSelectedBg, render_cursor ? 1.0f : 0.6f); // FIXME: current code flow mandate that render_cursor is always true here, we are leaving the transparent one for tests. + float bg_offy_up = is_multiline ? 0.0f : -1.0f; // FIXME: those offsets should be part of the style? they don't play so well with multi-line selection. + float bg_offy_dn = is_multiline ? 0.0f : 2.0f; + ImVec2 rect_pos = draw_pos + select_start_offset - draw_scroll; + for (const char* p = text_selected_begin; p < text_selected_end; ) + { + if (rect_pos.y > clip_rect.w + g.FontSize) + break; + if (rect_pos.y < clip_rect.y) + { + p = (const char*)memchr((void*)p, '\n', text_selected_end - p); + p = p ? p + 1 : text_selected_end; + } + else + { + ImVec2 rect_size = InputTextCalcTextSize(&g, p, text_selected_end, &p, NULL, true); + if (rect_size.x <= 0.0f) rect_size.x = IM_TRUNC(g.Font->GetCharAdvance((ImWchar)' ') * 0.50f); // So we can see selected empty lines + ImRect rect(rect_pos + ImVec2(0.0f, bg_offy_up - g.FontSize), rect_pos + ImVec2(rect_size.x, bg_offy_dn)); + rect.ClipWith(clip_rect); + if (rect.Overlaps(clip_rect)) + draw_window->DrawList->AddRectFilled(rect.Min, rect.Max, bg_color); + rect_pos.x = draw_pos.x - draw_scroll.x; + } + rect_pos.y += g.FontSize; + } + } + + // We test for 'buf_display_max_length' as a way to avoid some pathological cases (e.g. single-line 1 MB string) which would make ImDrawList crash. + // FIXME-OPT: Multiline could submit a smaller amount of contents to AddText() since we already iterated through it. + if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) + { + ImU32 col = GetColorU32(is_displaying_hint ? ImGuiCol_TextDisabled : ImGuiCol_Text); + draw_window->DrawList->AddText(g.Font, g.FontSize, draw_pos - draw_scroll, col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + } + + // Draw blinking cursor + if (render_cursor) + { + state->CursorAnim += io.DeltaTime; + bool cursor_is_visible = (!g.IO.ConfigInputTextCursorBlink) || (state->CursorAnim <= 0.0f) || ImFmod(state->CursorAnim, 1.20f) <= 0.80f; + ImVec2 cursor_screen_pos = ImTrunc(draw_pos + cursor_offset - draw_scroll); + ImRect cursor_screen_rect(cursor_screen_pos.x, cursor_screen_pos.y - g.FontSize + 0.5f, cursor_screen_pos.x + 1.0f, cursor_screen_pos.y - 1.5f); + if (cursor_is_visible && cursor_screen_rect.Overlaps(clip_rect)) + draw_window->DrawList->AddLine(cursor_screen_rect.Min, cursor_screen_rect.GetBL(), GetColorU32(ImGuiCol_Text)); + + // Notify OS of text input position for advanced IME (-1 x offset so that Windows IME can cover our cursor. Bit of an extra nicety.) + if (!is_readonly) + { + g.PlatformImeData.WantVisible = true; + g.PlatformImeData.InputPos = ImVec2(cursor_screen_pos.x - 1.0f, cursor_screen_pos.y - g.FontSize); + g.PlatformImeData.InputLineHeight = g.FontSize; + } + } + } + else + { + // Render text only (no selection, no cursor) + if (is_multiline) + text_size = ImVec2(inner_size.x, InputTextCalcTextLenAndLineCount(buf_display, &buf_display_end) * g.FontSize); // We don't need width + else if (!is_displaying_hint && g.ActiveId == id) + buf_display_end = buf_display + state->CurLenA; + else if (!is_displaying_hint) + buf_display_end = buf_display + strlen(buf_display); + + if (is_multiline || (buf_display_end - buf_display) < buf_display_max_length) + { + ImU32 col = GetColorU32(is_displaying_hint ? ImGuiCol_TextDisabled : ImGuiCol_Text); + draw_window->DrawList->AddText(g.Font, g.FontSize, draw_pos, col, buf_display, buf_display_end, 0.0f, is_multiline ? NULL : &clip_rect); + } + } + + if (is_password && !is_displaying_hint) + PopFont(); + + if (is_multiline) + { + // For focus requests to work on our multiline we need to ensure our child ItemAdd() call specifies the ImGuiItemFlags_Inputable (see #4761, #7870)... + Dummy(ImVec2(text_size.x, text_size.y + style.FramePadding.y)); + g.NextItemData.ItemFlags |= (ImGuiItemFlags)ImGuiItemFlags_Inputable | ImGuiItemFlags_NoTabStop; + EndChild(); + item_data_backup.StatusFlags |= (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredWindow); + + // ...and then we need to undo the group overriding last item data, which gets a bit messy as EndGroup() tries to forward scrollbar being active... + // FIXME: This quite messy/tricky, should attempt to get rid of the child window. + EndGroup(); + if (g.LastItemData.ID == 0 || g.LastItemData.ID != GetWindowScrollbarID(draw_window, ImGuiAxis_Y)) + { + g.LastItemData.ID = id; + g.LastItemData.InFlags = item_data_backup.InFlags; + g.LastItemData.StatusFlags = item_data_backup.StatusFlags; + } + } + + // Log as text + if (g.LogEnabled && (!is_password || is_displaying_hint)) + { + LogSetNextTextDecoration("{", "}"); + LogRenderedText(&draw_pos, buf_display, buf_display_end); + } + + if (label_size.x > 0) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label); + + if (value_changed && !(flags & ImGuiInputTextFlags_NoMarkEdited)) + MarkItemEdited(id); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Inputable); + if ((flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0) + return validated; + else + return value_changed; +} + +void ImGui::DebugNodeInputTextState(ImGuiInputTextState* state) +{ +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + ImGuiContext& g = *GImGui; + ImStb::STB_TexteditState* stb_state = state->Stb; + ImStb::StbUndoState* undo_state = &stb_state->undostate; + Text("ID: 0x%08X, ActiveID: 0x%08X", state->ID, g.ActiveId); + DebugLocateItemOnHover(state->ID); + Text("CurLenA: %d, Cursor: %d, Selection: %d..%d", state->CurLenA, stb_state->cursor, stb_state->select_start, stb_state->select_end); + Text("has_preferred_x: %d (%.2f)", stb_state->has_preferred_x, stb_state->preferred_x); + Text("undo_point: %d, redo_point: %d, undo_char_point: %d, redo_char_point: %d", undo_state->undo_point, undo_state->redo_point, undo_state->undo_char_point, undo_state->redo_char_point); + if (BeginChild("undopoints", ImVec2(0.0f, GetTextLineHeight() * 10), ImGuiChildFlags_Borders | ImGuiChildFlags_ResizeY)) // Visualize undo state + { + PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0)); + for (int n = 0; n < IMSTB_TEXTEDIT_UNDOSTATECOUNT; n++) + { + ImStb::StbUndoRecord* undo_rec = &undo_state->undo_rec[n]; + const char undo_rec_type = (n < undo_state->undo_point) ? 'u' : (n >= undo_state->redo_point) ? 'r' : ' '; + if (undo_rec_type == ' ') + BeginDisabled(); + const int buf_preview_len = (undo_rec_type != ' ' && undo_rec->char_storage != -1) ? undo_rec->insert_length : 0; + const char* buf_preview_str = undo_state->undo_char + undo_rec->char_storage; + Text("%c [%02d] where %03d, insert %03d, delete %03d, char_storage %03d \"%.*s\"", + undo_rec_type, n, undo_rec->where, undo_rec->insert_length, undo_rec->delete_length, undo_rec->char_storage, buf_preview_len, buf_preview_str); + if (undo_rec_type == ' ') + EndDisabled(); + } + PopStyleVar(); + } + EndChild(); +#else + IM_UNUSED(state); +#endif +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: ColorEdit, ColorPicker, ColorButton, etc. +//------------------------------------------------------------------------- +// - ColorEdit3() +// - ColorEdit4() +// - ColorPicker3() +// - RenderColorRectWithAlphaCheckerboard() [Internal] +// - ColorPicker4() +// - ColorButton() +// - SetColorEditOptions() +// - ColorTooltip() [Internal] +// - ColorEditOptionsPopup() [Internal] +// - ColorPickerOptionsPopup() [Internal] +//------------------------------------------------------------------------- + +bool ImGui::ColorEdit3(const char* label, float col[3], ImGuiColorEditFlags flags) +{ + return ColorEdit4(label, col, flags | ImGuiColorEditFlags_NoAlpha); +} + +static void ColorEditRestoreH(const float* col, float* H) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ColorEditCurrentID != 0); + if (g.ColorEditSavedID != g.ColorEditCurrentID || g.ColorEditSavedColor != ImGui::ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0))) + return; + *H = g.ColorEditSavedHue; +} + +// ColorEdit supports RGB and HSV inputs. In case of RGB input resulting color may have undefined hue and/or saturation. +// Since widget displays both RGB and HSV values we must preserve hue and saturation to prevent these values resetting. +static void ColorEditRestoreHS(const float* col, float* H, float* S, float* V) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(g.ColorEditCurrentID != 0); + if (g.ColorEditSavedID != g.ColorEditCurrentID || g.ColorEditSavedColor != ImGui::ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0))) + return; + + // When S == 0, H is undefined. + // When H == 1 it wraps around to 0. + if (*S == 0.0f || (*H == 0.0f && g.ColorEditSavedHue == 1)) + *H = g.ColorEditSavedHue; + + // When V == 0, S is undefined. + if (*V == 0.0f) + *S = g.ColorEditSavedSat; +} + +// Edit colors components (each component in 0.0f..1.0f range). +// See enum ImGuiColorEditFlags_ for available options. e.g. Only access 3 floats if ImGuiColorEditFlags_NoAlpha flag is set. +// With typical options: Left-click on color square to open color picker. Right-click to open option menu. CTRL-Click over input fields to edit them and TAB to go to next item. +bool ImGui::ColorEdit4(const char* label, float col[4], ImGuiColorEditFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const float square_sz = GetFrameHeight(); + const char* label_display_end = FindRenderedTextEnd(label); + float w_full = CalcItemWidth(); + g.NextItemData.ClearFlags(); + + BeginGroup(); + PushID(label); + const bool set_current_color_edit_id = (g.ColorEditCurrentID == 0); + if (set_current_color_edit_id) + g.ColorEditCurrentID = window->IDStack.back(); + + // If we're not showing any slider there's no point in doing any HSV conversions + const ImGuiColorEditFlags flags_untouched = flags; + if (flags & ImGuiColorEditFlags_NoInputs) + flags = (flags & (~ImGuiColorEditFlags_DisplayMask_)) | ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_NoOptions; + + // Context menu: display and modify options (before defaults are applied) + if (!(flags & ImGuiColorEditFlags_NoOptions)) + ColorEditOptionsPopup(col, flags); + + // Read stored options + if (!(flags & ImGuiColorEditFlags_DisplayMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_DisplayMask_); + if (!(flags & ImGuiColorEditFlags_DataTypeMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_DataTypeMask_); + if (!(flags & ImGuiColorEditFlags_PickerMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_PickerMask_); + if (!(flags & ImGuiColorEditFlags_InputMask_)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_InputMask_); + flags |= (g.ColorEditOptions & ~(ImGuiColorEditFlags_DisplayMask_ | ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_PickerMask_ | ImGuiColorEditFlags_InputMask_)); + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_DisplayMask_)); // Check that only 1 is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); // Check that only 1 is selected + + const bool alpha = (flags & ImGuiColorEditFlags_NoAlpha) == 0; + const bool hdr = (flags & ImGuiColorEditFlags_HDR) != 0; + const int components = alpha ? 4 : 3; + const float w_button = (flags & ImGuiColorEditFlags_NoSmallPreview) ? 0.0f : (square_sz + style.ItemInnerSpacing.x); + const float w_inputs = ImMax(w_full - w_button, 1.0f); + w_full = w_inputs + w_button; + + // Convert to the formats we need + float f[4] = { col[0], col[1], col[2], alpha ? col[3] : 1.0f }; + if ((flags & ImGuiColorEditFlags_InputHSV) && (flags & ImGuiColorEditFlags_DisplayRGB)) + ColorConvertHSVtoRGB(f[0], f[1], f[2], f[0], f[1], f[2]); + else if ((flags & ImGuiColorEditFlags_InputRGB) && (flags & ImGuiColorEditFlags_DisplayHSV)) + { + // Hue is lost when converting from grayscale rgb (saturation=0). Restore it. + ColorConvertRGBtoHSV(f[0], f[1], f[2], f[0], f[1], f[2]); + ColorEditRestoreHS(col, &f[0], &f[1], &f[2]); + } + int i[4] = { IM_F32_TO_INT8_UNBOUND(f[0]), IM_F32_TO_INT8_UNBOUND(f[1]), IM_F32_TO_INT8_UNBOUND(f[2]), IM_F32_TO_INT8_UNBOUND(f[3]) }; + + bool value_changed = false; + bool value_changed_as_float = false; + + const ImVec2 pos = window->DC.CursorPos; + const float inputs_offset_x = (style.ColorButtonPosition == ImGuiDir_Left) ? w_button : 0.0f; + window->DC.CursorPos.x = pos.x + inputs_offset_x; + + if ((flags & (ImGuiColorEditFlags_DisplayRGB | ImGuiColorEditFlags_DisplayHSV)) != 0 && (flags & ImGuiColorEditFlags_NoInputs) == 0) + { + // RGB/HSV 0..255 Sliders + const float w_items = w_inputs - style.ItemInnerSpacing.x * (components - 1); + + const bool hide_prefix = (IM_TRUNC(w_items / components) <= CalcTextSize((flags & ImGuiColorEditFlags_Float) ? "M:0.000" : "M:000").x); + static const char* ids[4] = { "##X", "##Y", "##Z", "##W" }; + static const char* fmt_table_int[3][4] = + { + { "%3d", "%3d", "%3d", "%3d" }, // Short display + { "R:%3d", "G:%3d", "B:%3d", "A:%3d" }, // Long display for RGBA + { "H:%3d", "S:%3d", "V:%3d", "A:%3d" } // Long display for HSVA + }; + static const char* fmt_table_float[3][4] = + { + { "%0.3f", "%0.3f", "%0.3f", "%0.3f" }, // Short display + { "R:%0.3f", "G:%0.3f", "B:%0.3f", "A:%0.3f" }, // Long display for RGBA + { "H:%0.3f", "S:%0.3f", "V:%0.3f", "A:%0.3f" } // Long display for HSVA + }; + const int fmt_idx = hide_prefix ? 0 : (flags & ImGuiColorEditFlags_DisplayHSV) ? 2 : 1; + + float prev_split = 0.0f; + for (int n = 0; n < components; n++) + { + if (n > 0) + SameLine(0, style.ItemInnerSpacing.x); + float next_split = IM_TRUNC(w_items * (n + 1) / components); + SetNextItemWidth(ImMax(next_split - prev_split, 1.0f)); + prev_split = next_split; + + // FIXME: When ImGuiColorEditFlags_HDR flag is passed HS values snap in weird ways when SV values go below 0. + if (flags & ImGuiColorEditFlags_Float) + { + value_changed |= DragFloat(ids[n], &f[n], 1.0f / 255.0f, 0.0f, hdr ? 0.0f : 1.0f, fmt_table_float[fmt_idx][n]); + value_changed_as_float |= value_changed; + } + else + { + value_changed |= DragInt(ids[n], &i[n], 1.0f, 0, hdr ? 0 : 255, fmt_table_int[fmt_idx][n]); + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + } + } + else if ((flags & ImGuiColorEditFlags_DisplayHex) != 0 && (flags & ImGuiColorEditFlags_NoInputs) == 0) + { + // RGB Hexadecimal Input + char buf[64]; + if (alpha) + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X%02X", ImClamp(i[0], 0, 255), ImClamp(i[1], 0, 255), ImClamp(i[2], 0, 255), ImClamp(i[3], 0, 255)); + else + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X", ImClamp(i[0], 0, 255), ImClamp(i[1], 0, 255), ImClamp(i[2], 0, 255)); + SetNextItemWidth(w_inputs); + if (InputText("##Text", buf, IM_ARRAYSIZE(buf), ImGuiInputTextFlags_CharsUppercase)) + { + value_changed = true; + char* p = buf; + while (*p == '#' || ImCharIsBlankA(*p)) + p++; + i[0] = i[1] = i[2] = 0; + i[3] = 0xFF; // alpha default to 255 is not parsed by scanf (e.g. inputting #FFFFFF omitting alpha) + int r; + if (alpha) + r = sscanf(p, "%02X%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2], (unsigned int*)&i[3]); // Treat at unsigned (%X is unsigned) + else + r = sscanf(p, "%02X%02X%02X", (unsigned int*)&i[0], (unsigned int*)&i[1], (unsigned int*)&i[2]); + IM_UNUSED(r); // Fixes C6031: Return value ignored: 'sscanf'. + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + } + + ImGuiWindow* picker_active_window = NULL; + if (!(flags & ImGuiColorEditFlags_NoSmallPreview)) + { + const float button_offset_x = ((flags & ImGuiColorEditFlags_NoInputs) || (style.ColorButtonPosition == ImGuiDir_Left)) ? 0.0f : w_inputs + style.ItemInnerSpacing.x; + window->DC.CursorPos = ImVec2(pos.x + button_offset_x, pos.y); + + const ImVec4 col_v4(col[0], col[1], col[2], alpha ? col[3] : 1.0f); + if (ColorButton("##ColorButton", col_v4, flags)) + { + if (!(flags & ImGuiColorEditFlags_NoPicker)) + { + // Store current color and open a picker + g.ColorPickerRef = col_v4; + OpenPopup("picker"); + SetNextWindowPos(g.LastItemData.Rect.GetBL() + ImVec2(0.0f, style.ItemSpacing.y)); + } + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + + if (BeginPopup("picker")) + { + if (g.CurrentWindow->BeginCount == 1) + { + picker_active_window = g.CurrentWindow; + if (label != label_display_end) + { + TextEx(label, label_display_end); + Spacing(); + } + ImGuiColorEditFlags picker_flags_to_forward = ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_PickerMask_ | ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaBar; + ImGuiColorEditFlags picker_flags = (flags_untouched & picker_flags_to_forward) | ImGuiColorEditFlags_DisplayMask_ | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_AlphaPreviewHalf; + SetNextItemWidth(square_sz * 12.0f); // Use 256 + bar sizes? + value_changed |= ColorPicker4("##picker", col, picker_flags, &g.ColorPickerRef.x); + } + EndPopup(); + } + } + + if (label != label_display_end && !(flags & ImGuiColorEditFlags_NoLabel)) + { + // Position not necessarily next to last submitted button (e.g. if style.ColorButtonPosition == ImGuiDir_Left), + // but we need to use SameLine() to setup baseline correctly. Might want to refactor SameLine() to simplify this. + SameLine(0.0f, style.ItemInnerSpacing.x); + window->DC.CursorPos.x = pos.x + ((flags & ImGuiColorEditFlags_NoInputs) ? w_button : w_full + style.ItemInnerSpacing.x); + TextEx(label, label_display_end); + } + + // Convert back + if (value_changed && picker_active_window == NULL) + { + if (!value_changed_as_float) + for (int n = 0; n < 4; n++) + f[n] = i[n] / 255.0f; + if ((flags & ImGuiColorEditFlags_DisplayHSV) && (flags & ImGuiColorEditFlags_InputRGB)) + { + g.ColorEditSavedHue = f[0]; + g.ColorEditSavedSat = f[1]; + ColorConvertHSVtoRGB(f[0], f[1], f[2], f[0], f[1], f[2]); + g.ColorEditSavedID = g.ColorEditCurrentID; + g.ColorEditSavedColor = ColorConvertFloat4ToU32(ImVec4(f[0], f[1], f[2], 0)); + } + if ((flags & ImGuiColorEditFlags_DisplayRGB) && (flags & ImGuiColorEditFlags_InputHSV)) + ColorConvertRGBtoHSV(f[0], f[1], f[2], f[0], f[1], f[2]); + + col[0] = f[0]; + col[1] = f[1]; + col[2] = f[2]; + if (alpha) + col[3] = f[3]; + } + + if (set_current_color_edit_id) + g.ColorEditCurrentID = 0; + PopID(); + EndGroup(); + + // Drag and Drop Target + // NB: The flag test is merely an optional micro-optimization, BeginDragDropTarget() does the same test. + if ((g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredRect) && !(g.LastItemData.InFlags & ImGuiItemFlags_ReadOnly) && !(flags & ImGuiColorEditFlags_NoDragDrop) && BeginDragDropTarget()) + { + bool accepted_drag_drop = false; + if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F)) + { + memcpy((float*)col, payload->Data, sizeof(float) * 3); // Preserve alpha if any //-V512 //-V1086 + value_changed = accepted_drag_drop = true; + } + if (const ImGuiPayload* payload = AcceptDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F)) + { + memcpy((float*)col, payload->Data, sizeof(float) * components); + value_changed = accepted_drag_drop = true; + } + + // Drag-drop payloads are always RGB + if (accepted_drag_drop && (flags & ImGuiColorEditFlags_InputHSV)) + ColorConvertRGBtoHSV(col[0], col[1], col[2], col[0], col[1], col[2]); + EndDragDropTarget(); + } + + // When picker is being actively used, use its active id so IsItemActive() will function on ColorEdit4(). + if (picker_active_window && g.ActiveId != 0 && g.ActiveIdWindow == picker_active_window) + g.LastItemData.ID = g.ActiveId; + + if (value_changed && g.LastItemData.ID != 0) // In case of ID collision, the second EndGroup() won't catch g.ActiveId + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +bool ImGui::ColorPicker3(const char* label, float col[3], ImGuiColorEditFlags flags) +{ + float col4[4] = { col[0], col[1], col[2], 1.0f }; + if (!ColorPicker4(label, col4, flags | ImGuiColorEditFlags_NoAlpha)) + return false; + col[0] = col4[0]; col[1] = col4[1]; col[2] = col4[2]; + return true; +} + +// Helper for ColorPicker4() +static void RenderArrowsForVerticalBar(ImDrawList* draw_list, ImVec2 pos, ImVec2 half_sz, float bar_w, float alpha) +{ + ImU32 alpha8 = IM_F32_TO_INT8_SAT(alpha); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + half_sz.x + 1, pos.y), ImVec2(half_sz.x + 2, half_sz.y + 1), ImGuiDir_Right, IM_COL32(0,0,0,alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + half_sz.x, pos.y), half_sz, ImGuiDir_Right, IM_COL32(255,255,255,alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + bar_w - half_sz.x - 1, pos.y), ImVec2(half_sz.x + 2, half_sz.y + 1), ImGuiDir_Left, IM_COL32(0,0,0,alpha8)); + ImGui::RenderArrowPointingAt(draw_list, ImVec2(pos.x + bar_w - half_sz.x, pos.y), half_sz, ImGuiDir_Left, IM_COL32(255,255,255,alpha8)); +} + +// Note: ColorPicker4() only accesses 3 floats if ImGuiColorEditFlags_NoAlpha flag is set. +// (In C++ the 'float col[4]' notation for a function argument is equivalent to 'float* col', we only specify a size to facilitate understanding of the code.) +// FIXME: we adjust the big color square height based on item width, which may cause a flickering feedback loop (if automatic height makes a vertical scrollbar appears, affecting automatic width..) +// FIXME: this is trying to be aware of style.Alpha but not fully correct. Also, the color wheel will have overlapping glitches with (style.Alpha < 1.0) +bool ImGui::ColorPicker4(const char* label, float col[4], ImGuiColorEditFlags flags, const float* ref_col) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImDrawList* draw_list = window->DrawList; + ImGuiStyle& style = g.Style; + ImGuiIO& io = g.IO; + + const float width = CalcItemWidth(); + const bool is_readonly = ((g.NextItemData.ItemFlags | g.CurrentItemFlags) & ImGuiItemFlags_ReadOnly) != 0; + g.NextItemData.ClearFlags(); + + PushID(label); + const bool set_current_color_edit_id = (g.ColorEditCurrentID == 0); + if (set_current_color_edit_id) + g.ColorEditCurrentID = window->IDStack.back(); + BeginGroup(); + + if (!(flags & ImGuiColorEditFlags_NoSidePreview)) + flags |= ImGuiColorEditFlags_NoSmallPreview; + + // Context menu: display and store options. + if (!(flags & ImGuiColorEditFlags_NoOptions)) + ColorPickerOptionsPopup(col, flags); + + // Read stored options + if (!(flags & ImGuiColorEditFlags_PickerMask_)) + flags |= ((g.ColorEditOptions & ImGuiColorEditFlags_PickerMask_) ? g.ColorEditOptions : ImGuiColorEditFlags_DefaultOptions_) & ImGuiColorEditFlags_PickerMask_; + if (!(flags & ImGuiColorEditFlags_InputMask_)) + flags |= ((g.ColorEditOptions & ImGuiColorEditFlags_InputMask_) ? g.ColorEditOptions : ImGuiColorEditFlags_DefaultOptions_) & ImGuiColorEditFlags_InputMask_; + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_PickerMask_)); // Check that only 1 is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); // Check that only 1 is selected + if (!(flags & ImGuiColorEditFlags_NoOptions)) + flags |= (g.ColorEditOptions & ImGuiColorEditFlags_AlphaBar); + + // Setup + int components = (flags & ImGuiColorEditFlags_NoAlpha) ? 3 : 4; + bool alpha_bar = (flags & ImGuiColorEditFlags_AlphaBar) && !(flags & ImGuiColorEditFlags_NoAlpha); + ImVec2 picker_pos = window->DC.CursorPos; + float square_sz = GetFrameHeight(); + float bars_width = square_sz; // Arbitrary smallish width of Hue/Alpha picking bars + float sv_picker_size = ImMax(bars_width * 1, width - (alpha_bar ? 2 : 1) * (bars_width + style.ItemInnerSpacing.x)); // Saturation/Value picking box + float bar0_pos_x = picker_pos.x + sv_picker_size + style.ItemInnerSpacing.x; + float bar1_pos_x = bar0_pos_x + bars_width + style.ItemInnerSpacing.x; + float bars_triangles_half_sz = IM_TRUNC(bars_width * 0.20f); + + float backup_initial_col[4]; + memcpy(backup_initial_col, col, components * sizeof(float)); + + float wheel_thickness = sv_picker_size * 0.08f; + float wheel_r_outer = sv_picker_size * 0.50f; + float wheel_r_inner = wheel_r_outer - wheel_thickness; + ImVec2 wheel_center(picker_pos.x + (sv_picker_size + bars_width)*0.5f, picker_pos.y + sv_picker_size * 0.5f); + + // Note: the triangle is displayed rotated with triangle_pa pointing to Hue, but most coordinates stays unrotated for logic. + float triangle_r = wheel_r_inner - (int)(sv_picker_size * 0.027f); + ImVec2 triangle_pa = ImVec2(triangle_r, 0.0f); // Hue point. + ImVec2 triangle_pb = ImVec2(triangle_r * -0.5f, triangle_r * -0.866025f); // Black point. + ImVec2 triangle_pc = ImVec2(triangle_r * -0.5f, triangle_r * +0.866025f); // White point. + + float H = col[0], S = col[1], V = col[2]; + float R = col[0], G = col[1], B = col[2]; + if (flags & ImGuiColorEditFlags_InputRGB) + { + // Hue is lost when converting from grayscale rgb (saturation=0). Restore it. + ColorConvertRGBtoHSV(R, G, B, H, S, V); + ColorEditRestoreHS(col, &H, &S, &V); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + ColorConvertHSVtoRGB(H, S, V, R, G, B); + } + + bool value_changed = false, value_changed_h = false, value_changed_sv = false; + + PushItemFlag(ImGuiItemFlags_NoNav, true); + if (flags & ImGuiColorEditFlags_PickerHueWheel) + { + // Hue wheel + SV triangle logic + InvisibleButton("hsv", ImVec2(sv_picker_size + style.ItemInnerSpacing.x + bars_width, sv_picker_size)); + if (IsItemActive() && !is_readonly) + { + ImVec2 initial_off = g.IO.MouseClickedPos[0] - wheel_center; + ImVec2 current_off = g.IO.MousePos - wheel_center; + float initial_dist2 = ImLengthSqr(initial_off); + if (initial_dist2 >= (wheel_r_inner - 1) * (wheel_r_inner - 1) && initial_dist2 <= (wheel_r_outer + 1) * (wheel_r_outer + 1)) + { + // Interactive with Hue wheel + H = ImAtan2(current_off.y, current_off.x) / IM_PI * 0.5f; + if (H < 0.0f) + H += 1.0f; + value_changed = value_changed_h = true; + } + float cos_hue_angle = ImCos(-H * 2.0f * IM_PI); + float sin_hue_angle = ImSin(-H * 2.0f * IM_PI); + if (ImTriangleContainsPoint(triangle_pa, triangle_pb, triangle_pc, ImRotate(initial_off, cos_hue_angle, sin_hue_angle))) + { + // Interacting with SV triangle + ImVec2 current_off_unrotated = ImRotate(current_off, cos_hue_angle, sin_hue_angle); + if (!ImTriangleContainsPoint(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated)) + current_off_unrotated = ImTriangleClosestPoint(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated); + float uu, vv, ww; + ImTriangleBarycentricCoords(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated, uu, vv, ww); + V = ImClamp(1.0f - vv, 0.0001f, 1.0f); + S = ImClamp(uu / V, 0.0001f, 1.0f); + value_changed = value_changed_sv = true; + } + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + } + else if (flags & ImGuiColorEditFlags_PickerHueBar) + { + // SV rectangle logic + InvisibleButton("sv", ImVec2(sv_picker_size, sv_picker_size)); + if (IsItemActive() && !is_readonly) + { + S = ImSaturate((io.MousePos.x - picker_pos.x) / (sv_picker_size - 1)); + V = 1.0f - ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + ColorEditRestoreH(col, &H); // Greatly reduces hue jitter and reset to 0 when hue == 255 and color is rapidly modified using SV square. + value_changed = value_changed_sv = true; + } + if (!(flags & ImGuiColorEditFlags_NoOptions)) + OpenPopupOnItemClick("context", ImGuiPopupFlags_MouseButtonRight); + + // Hue bar logic + SetCursorScreenPos(ImVec2(bar0_pos_x, picker_pos.y)); + InvisibleButton("hue", ImVec2(bars_width, sv_picker_size)); + if (IsItemActive() && !is_readonly) + { + H = ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + value_changed = value_changed_h = true; + } + } + + // Alpha bar logic + if (alpha_bar) + { + SetCursorScreenPos(ImVec2(bar1_pos_x, picker_pos.y)); + InvisibleButton("alpha", ImVec2(bars_width, sv_picker_size)); + if (IsItemActive()) + { + col[3] = 1.0f - ImSaturate((io.MousePos.y - picker_pos.y) / (sv_picker_size - 1)); + value_changed = true; + } + } + PopItemFlag(); // ImGuiItemFlags_NoNav + + if (!(flags & ImGuiColorEditFlags_NoSidePreview)) + { + SameLine(0, style.ItemInnerSpacing.x); + BeginGroup(); + } + + if (!(flags & ImGuiColorEditFlags_NoLabel)) + { + const char* label_display_end = FindRenderedTextEnd(label); + if (label != label_display_end) + { + if ((flags & ImGuiColorEditFlags_NoSidePreview)) + SameLine(0, style.ItemInnerSpacing.x); + TextEx(label, label_display_end); + } + } + + if (!(flags & ImGuiColorEditFlags_NoSidePreview)) + { + PushItemFlag(ImGuiItemFlags_NoNavDefaultFocus, true); + ImVec4 col_v4(col[0], col[1], col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : col[3]); + if ((flags & ImGuiColorEditFlags_NoLabel)) + Text("Current"); + + ImGuiColorEditFlags sub_flags_to_forward = ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf | ImGuiColorEditFlags_NoTooltip; + ColorButton("##current", col_v4, (flags & sub_flags_to_forward), ImVec2(square_sz * 3, square_sz * 2)); + if (ref_col != NULL) + { + Text("Original"); + ImVec4 ref_col_v4(ref_col[0], ref_col[1], ref_col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : ref_col[3]); + if (ColorButton("##original", ref_col_v4, (flags & sub_flags_to_forward), ImVec2(square_sz * 3, square_sz * 2))) + { + memcpy(col, ref_col, components * sizeof(float)); + value_changed = true; + } + } + PopItemFlag(); + EndGroup(); + } + + // Convert back color to RGB + if (value_changed_h || value_changed_sv) + { + if (flags & ImGuiColorEditFlags_InputRGB) + { + ColorConvertHSVtoRGB(H, S, V, col[0], col[1], col[2]); + g.ColorEditSavedHue = H; + g.ColorEditSavedSat = S; + g.ColorEditSavedID = g.ColorEditCurrentID; + g.ColorEditSavedColor = ColorConvertFloat4ToU32(ImVec4(col[0], col[1], col[2], 0)); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + col[0] = H; + col[1] = S; + col[2] = V; + } + } + + // R,G,B and H,S,V slider color editor + bool value_changed_fix_hue_wrap = false; + if ((flags & ImGuiColorEditFlags_NoInputs) == 0) + { + PushItemWidth((alpha_bar ? bar1_pos_x : bar0_pos_x) + bars_width - picker_pos.x); + ImGuiColorEditFlags sub_flags_to_forward = ImGuiColorEditFlags_DataTypeMask_ | ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_HDR | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_NoOptions | ImGuiColorEditFlags_NoTooltip | ImGuiColorEditFlags_NoSmallPreview | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf; + ImGuiColorEditFlags sub_flags = (flags & sub_flags_to_forward) | ImGuiColorEditFlags_NoPicker; + if (flags & ImGuiColorEditFlags_DisplayRGB || (flags & ImGuiColorEditFlags_DisplayMask_) == 0) + if (ColorEdit4("##rgb", col, sub_flags | ImGuiColorEditFlags_DisplayRGB)) + { + // FIXME: Hackily differentiating using the DragInt (ActiveId != 0 && !ActiveIdAllowOverlap) vs. using the InputText or DropTarget. + // For the later we don't want to run the hue-wrap canceling code. If you are well versed in HSV picker please provide your input! (See #2050) + value_changed_fix_hue_wrap = (g.ActiveId != 0 && !g.ActiveIdAllowOverlap); + value_changed = true; + } + if (flags & ImGuiColorEditFlags_DisplayHSV || (flags & ImGuiColorEditFlags_DisplayMask_) == 0) + value_changed |= ColorEdit4("##hsv", col, sub_flags | ImGuiColorEditFlags_DisplayHSV); + if (flags & ImGuiColorEditFlags_DisplayHex || (flags & ImGuiColorEditFlags_DisplayMask_) == 0) + value_changed |= ColorEdit4("##hex", col, sub_flags | ImGuiColorEditFlags_DisplayHex); + PopItemWidth(); + } + + // Try to cancel hue wrap (after ColorEdit4 call), if any + if (value_changed_fix_hue_wrap && (flags & ImGuiColorEditFlags_InputRGB)) + { + float new_H, new_S, new_V; + ColorConvertRGBtoHSV(col[0], col[1], col[2], new_H, new_S, new_V); + if (new_H <= 0 && H > 0) + { + if (new_V <= 0 && V != new_V) + ColorConvertHSVtoRGB(H, S, new_V <= 0 ? V * 0.5f : new_V, col[0], col[1], col[2]); + else if (new_S <= 0) + ColorConvertHSVtoRGB(H, new_S <= 0 ? S * 0.5f : new_S, new_V, col[0], col[1], col[2]); + } + } + + if (value_changed) + { + if (flags & ImGuiColorEditFlags_InputRGB) + { + R = col[0]; + G = col[1]; + B = col[2]; + ColorConvertRGBtoHSV(R, G, B, H, S, V); + ColorEditRestoreHS(col, &H, &S, &V); // Fix local Hue as display below will use it immediately. + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + H = col[0]; + S = col[1]; + V = col[2]; + ColorConvertHSVtoRGB(H, S, V, R, G, B); + } + } + + const int style_alpha8 = IM_F32_TO_INT8_SAT(style.Alpha); + const ImU32 col_black = IM_COL32(0,0,0,style_alpha8); + const ImU32 col_white = IM_COL32(255,255,255,style_alpha8); + const ImU32 col_midgrey = IM_COL32(128,128,128,style_alpha8); + const ImU32 col_hues[6 + 1] = { IM_COL32(255,0,0,style_alpha8), IM_COL32(255,255,0,style_alpha8), IM_COL32(0,255,0,style_alpha8), IM_COL32(0,255,255,style_alpha8), IM_COL32(0,0,255,style_alpha8), IM_COL32(255,0,255,style_alpha8), IM_COL32(255,0,0,style_alpha8) }; + + ImVec4 hue_color_f(1, 1, 1, style.Alpha); ColorConvertHSVtoRGB(H, 1, 1, hue_color_f.x, hue_color_f.y, hue_color_f.z); + ImU32 hue_color32 = ColorConvertFloat4ToU32(hue_color_f); + ImU32 user_col32_striped_of_alpha = ColorConvertFloat4ToU32(ImVec4(R, G, B, style.Alpha)); // Important: this is still including the main rendering/style alpha!! + + ImVec2 sv_cursor_pos; + + if (flags & ImGuiColorEditFlags_PickerHueWheel) + { + // Render Hue Wheel + const float aeps = 0.5f / wheel_r_outer; // Half a pixel arc length in radians (2pi cancels out). + const int segment_per_arc = ImMax(4, (int)wheel_r_outer / 12); + for (int n = 0; n < 6; n++) + { + const float a0 = (n) /6.0f * 2.0f * IM_PI - aeps; + const float a1 = (n+1.0f)/6.0f * 2.0f * IM_PI + aeps; + const int vert_start_idx = draw_list->VtxBuffer.Size; + draw_list->PathArcTo(wheel_center, (wheel_r_inner + wheel_r_outer)*0.5f, a0, a1, segment_per_arc); + draw_list->PathStroke(col_white, 0, wheel_thickness); + const int vert_end_idx = draw_list->VtxBuffer.Size; + + // Paint colors over existing vertices + ImVec2 gradient_p0(wheel_center.x + ImCos(a0) * wheel_r_inner, wheel_center.y + ImSin(a0) * wheel_r_inner); + ImVec2 gradient_p1(wheel_center.x + ImCos(a1) * wheel_r_inner, wheel_center.y + ImSin(a1) * wheel_r_inner); + ShadeVertsLinearColorGradientKeepAlpha(draw_list, vert_start_idx, vert_end_idx, gradient_p0, gradient_p1, col_hues[n], col_hues[n + 1]); + } + + // Render Cursor + preview on Hue Wheel + float cos_hue_angle = ImCos(H * 2.0f * IM_PI); + float sin_hue_angle = ImSin(H * 2.0f * IM_PI); + ImVec2 hue_cursor_pos(wheel_center.x + cos_hue_angle * (wheel_r_inner + wheel_r_outer) * 0.5f, wheel_center.y + sin_hue_angle * (wheel_r_inner + wheel_r_outer) * 0.5f); + float hue_cursor_rad = value_changed_h ? wheel_thickness * 0.65f : wheel_thickness * 0.55f; + int hue_cursor_segments = draw_list->_CalcCircleAutoSegmentCount(hue_cursor_rad); // Lock segment count so the +1 one matches others. + draw_list->AddCircleFilled(hue_cursor_pos, hue_cursor_rad, hue_color32, hue_cursor_segments); + draw_list->AddCircle(hue_cursor_pos, hue_cursor_rad + 1, col_midgrey, hue_cursor_segments); + draw_list->AddCircle(hue_cursor_pos, hue_cursor_rad, col_white, hue_cursor_segments); + + // Render SV triangle (rotated according to hue) + ImVec2 tra = wheel_center + ImRotate(triangle_pa, cos_hue_angle, sin_hue_angle); + ImVec2 trb = wheel_center + ImRotate(triangle_pb, cos_hue_angle, sin_hue_angle); + ImVec2 trc = wheel_center + ImRotate(triangle_pc, cos_hue_angle, sin_hue_angle); + ImVec2 uv_white = GetFontTexUvWhitePixel(); + draw_list->PrimReserve(3, 3); + draw_list->PrimVtx(tra, uv_white, hue_color32); + draw_list->PrimVtx(trb, uv_white, col_black); + draw_list->PrimVtx(trc, uv_white, col_white); + draw_list->AddTriangle(tra, trb, trc, col_midgrey, 1.5f); + sv_cursor_pos = ImLerp(ImLerp(trc, tra, ImSaturate(S)), trb, ImSaturate(1 - V)); + } + else if (flags & ImGuiColorEditFlags_PickerHueBar) + { + // Render SV Square + draw_list->AddRectFilledMultiColor(picker_pos, picker_pos + ImVec2(sv_picker_size, sv_picker_size), col_white, hue_color32, hue_color32, col_white); + draw_list->AddRectFilledMultiColor(picker_pos, picker_pos + ImVec2(sv_picker_size, sv_picker_size), 0, 0, col_black, col_black); + RenderFrameBorder(picker_pos, picker_pos + ImVec2(sv_picker_size, sv_picker_size), 0.0f); + sv_cursor_pos.x = ImClamp(IM_ROUND(picker_pos.x + ImSaturate(S) * sv_picker_size), picker_pos.x + 2, picker_pos.x + sv_picker_size - 2); // Sneakily prevent the circle to stick out too much + sv_cursor_pos.y = ImClamp(IM_ROUND(picker_pos.y + ImSaturate(1 - V) * sv_picker_size), picker_pos.y + 2, picker_pos.y + sv_picker_size - 2); + + // Render Hue Bar + for (int i = 0; i < 6; ++i) + draw_list->AddRectFilledMultiColor(ImVec2(bar0_pos_x, picker_pos.y + i * (sv_picker_size / 6)), ImVec2(bar0_pos_x + bars_width, picker_pos.y + (i + 1) * (sv_picker_size / 6)), col_hues[i], col_hues[i], col_hues[i + 1], col_hues[i + 1]); + float bar0_line_y = IM_ROUND(picker_pos.y + H * sv_picker_size); + RenderFrameBorder(ImVec2(bar0_pos_x, picker_pos.y), ImVec2(bar0_pos_x + bars_width, picker_pos.y + sv_picker_size), 0.0f); + RenderArrowsForVerticalBar(draw_list, ImVec2(bar0_pos_x - 1, bar0_line_y), ImVec2(bars_triangles_half_sz + 1, bars_triangles_half_sz), bars_width + 2.0f, style.Alpha); + } + + // Render cursor/preview circle (clamp S/V within 0..1 range because floating points colors may lead HSV values to be out of range) + float sv_cursor_rad = value_changed_sv ? wheel_thickness * 0.55f : wheel_thickness * 0.40f; + int sv_cursor_segments = draw_list->_CalcCircleAutoSegmentCount(sv_cursor_rad); // Lock segment count so the +1 one matches others. + draw_list->AddCircleFilled(sv_cursor_pos, sv_cursor_rad, user_col32_striped_of_alpha, sv_cursor_segments); + draw_list->AddCircle(sv_cursor_pos, sv_cursor_rad + 1, col_midgrey, sv_cursor_segments); + draw_list->AddCircle(sv_cursor_pos, sv_cursor_rad, col_white, sv_cursor_segments); + + // Render alpha bar + if (alpha_bar) + { + float alpha = ImSaturate(col[3]); + ImRect bar1_bb(bar1_pos_x, picker_pos.y, bar1_pos_x + bars_width, picker_pos.y + sv_picker_size); + RenderColorRectWithAlphaCheckerboard(draw_list, bar1_bb.Min, bar1_bb.Max, 0, bar1_bb.GetWidth() / 2.0f, ImVec2(0.0f, 0.0f)); + draw_list->AddRectFilledMultiColor(bar1_bb.Min, bar1_bb.Max, user_col32_striped_of_alpha, user_col32_striped_of_alpha, user_col32_striped_of_alpha & ~IM_COL32_A_MASK, user_col32_striped_of_alpha & ~IM_COL32_A_MASK); + float bar1_line_y = IM_ROUND(picker_pos.y + (1.0f - alpha) * sv_picker_size); + RenderFrameBorder(bar1_bb.Min, bar1_bb.Max, 0.0f); + RenderArrowsForVerticalBar(draw_list, ImVec2(bar1_pos_x - 1, bar1_line_y), ImVec2(bars_triangles_half_sz + 1, bars_triangles_half_sz), bars_width + 2.0f, style.Alpha); + } + + EndGroup(); + + if (value_changed && memcmp(backup_initial_col, col, components * sizeof(float)) == 0) + value_changed = false; + if (value_changed && g.LastItemData.ID != 0) // In case of ID collision, the second EndGroup() won't catch g.ActiveId + MarkItemEdited(g.LastItemData.ID); + + if (set_current_color_edit_id) + g.ColorEditCurrentID = 0; + PopID(); + + return value_changed; +} + +// A little color square. Return true when clicked. +// FIXME: May want to display/ignore the alpha component in the color display? Yet show it in the tooltip. +// 'desc_id' is not called 'label' because we don't display it next to the button, but only in the tooltip. +// Note that 'col' may be encoded in HSV if ImGuiColorEditFlags_InputHSV is set. +bool ImGui::ColorButton(const char* desc_id, const ImVec4& col, ImGuiColorEditFlags flags, const ImVec2& size_arg) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiID id = window->GetID(desc_id); + const float default_size = GetFrameHeight(); + const ImVec2 size(size_arg.x == 0.0f ? default_size : size_arg.x, size_arg.y == 0.0f ? default_size : size_arg.y); + const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size); + ItemSize(bb, (size.y >= default_size) ? g.Style.FramePadding.y : 0.0f); + if (!ItemAdd(bb, id)) + return false; + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held); + + if (flags & ImGuiColorEditFlags_NoAlpha) + flags &= ~(ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf); + + ImVec4 col_rgb = col; + if (flags & ImGuiColorEditFlags_InputHSV) + ColorConvertHSVtoRGB(col_rgb.x, col_rgb.y, col_rgb.z, col_rgb.x, col_rgb.y, col_rgb.z); + + ImVec4 col_rgb_without_alpha(col_rgb.x, col_rgb.y, col_rgb.z, 1.0f); + float grid_step = ImMin(size.x, size.y) / 2.99f; + float rounding = ImMin(g.Style.FrameRounding, grid_step * 0.5f); + ImRect bb_inner = bb; + float off = 0.0f; + if ((flags & ImGuiColorEditFlags_NoBorder) == 0) + { + off = -0.75f; // The border (using Col_FrameBg) tends to look off when color is near-opaque and rounding is enabled. This offset seemed like a good middle ground to reduce those artifacts. + bb_inner.Expand(off); + } + if ((flags & ImGuiColorEditFlags_AlphaPreviewHalf) && col_rgb.w < 1.0f) + { + float mid_x = IM_ROUND((bb_inner.Min.x + bb_inner.Max.x) * 0.5f); + RenderColorRectWithAlphaCheckerboard(window->DrawList, ImVec2(bb_inner.Min.x + grid_step, bb_inner.Min.y), bb_inner.Max, GetColorU32(col_rgb), grid_step, ImVec2(-grid_step + off, off), rounding, ImDrawFlags_RoundCornersRight); + window->DrawList->AddRectFilled(bb_inner.Min, ImVec2(mid_x, bb_inner.Max.y), GetColorU32(col_rgb_without_alpha), rounding, ImDrawFlags_RoundCornersLeft); + } + else + { + // Because GetColorU32() multiplies by the global style Alpha and we don't want to display a checkerboard if the source code had no alpha + ImVec4 col_source = (flags & ImGuiColorEditFlags_AlphaPreview) ? col_rgb : col_rgb_without_alpha; + if (col_source.w < 1.0f) + RenderColorRectWithAlphaCheckerboard(window->DrawList, bb_inner.Min, bb_inner.Max, GetColorU32(col_source), grid_step, ImVec2(off, off), rounding); + else + window->DrawList->AddRectFilled(bb_inner.Min, bb_inner.Max, GetColorU32(col_source), rounding); + } + RenderNavHighlight(bb, id); + if ((flags & ImGuiColorEditFlags_NoBorder) == 0) + { + if (g.Style.FrameBorderSize > 0.0f) + RenderFrameBorder(bb.Min, bb.Max, rounding); + else + window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), rounding); // Color button are often in need of some sort of border + } + + // Drag and Drop Source + // NB: The ActiveId test is merely an optional micro-optimization, BeginDragDropSource() does the same test. + if (g.ActiveId == id && !(flags & ImGuiColorEditFlags_NoDragDrop) && BeginDragDropSource()) + { + if (flags & ImGuiColorEditFlags_NoAlpha) + SetDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_3F, &col_rgb, sizeof(float) * 3, ImGuiCond_Once); + else + SetDragDropPayload(IMGUI_PAYLOAD_TYPE_COLOR_4F, &col_rgb, sizeof(float) * 4, ImGuiCond_Once); + ColorButton(desc_id, col, flags); + SameLine(); + TextEx("Color"); + EndDragDropSource(); + } + + // Tooltip + if (!(flags & ImGuiColorEditFlags_NoTooltip) && hovered && IsItemHovered(ImGuiHoveredFlags_ForTooltip)) + ColorTooltip(desc_id, &col.x, flags & (ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf)); + + return pressed; +} + +// Initialize/override default color options +void ImGui::SetColorEditOptions(ImGuiColorEditFlags flags) +{ + ImGuiContext& g = *GImGui; + if ((flags & ImGuiColorEditFlags_DisplayMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_DisplayMask_; + if ((flags & ImGuiColorEditFlags_DataTypeMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_DataTypeMask_; + if ((flags & ImGuiColorEditFlags_PickerMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_PickerMask_; + if ((flags & ImGuiColorEditFlags_InputMask_) == 0) + flags |= ImGuiColorEditFlags_DefaultOptions_ & ImGuiColorEditFlags_InputMask_; + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_DisplayMask_)); // Check only 1 option is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_DataTypeMask_)); // Check only 1 option is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_PickerMask_)); // Check only 1 option is selected + IM_ASSERT(ImIsPowerOfTwo(flags & ImGuiColorEditFlags_InputMask_)); // Check only 1 option is selected + g.ColorEditOptions = flags; +} + +// Note: only access 3 floats if ImGuiColorEditFlags_NoAlpha flag is set. +void ImGui::ColorTooltip(const char* text, const float* col, ImGuiColorEditFlags flags) +{ + ImGuiContext& g = *GImGui; + + if (!BeginTooltipEx(ImGuiTooltipFlags_OverridePrevious, ImGuiWindowFlags_None)) + return; + const char* text_end = text ? FindRenderedTextEnd(text, NULL) : text; + if (text_end > text) + { + TextEx(text, text_end); + Separator(); + } + + ImVec2 sz(g.FontSize * 3 + g.Style.FramePadding.y * 2, g.FontSize * 3 + g.Style.FramePadding.y * 2); + ImVec4 cf(col[0], col[1], col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : col[3]); + int cr = IM_F32_TO_INT8_SAT(col[0]), cg = IM_F32_TO_INT8_SAT(col[1]), cb = IM_F32_TO_INT8_SAT(col[2]), ca = (flags & ImGuiColorEditFlags_NoAlpha) ? 255 : IM_F32_TO_INT8_SAT(col[3]); + ColorButton("##preview", cf, (flags & (ImGuiColorEditFlags_InputMask_ | ImGuiColorEditFlags_NoAlpha | ImGuiColorEditFlags_AlphaPreview | ImGuiColorEditFlags_AlphaPreviewHalf)) | ImGuiColorEditFlags_NoTooltip, sz); + SameLine(); + if ((flags & ImGuiColorEditFlags_InputRGB) || !(flags & ImGuiColorEditFlags_InputMask_)) + { + if (flags & ImGuiColorEditFlags_NoAlpha) + Text("#%02X%02X%02X\nR: %d, G: %d, B: %d\n(%.3f, %.3f, %.3f)", cr, cg, cb, cr, cg, cb, col[0], col[1], col[2]); + else + Text("#%02X%02X%02X%02X\nR:%d, G:%d, B:%d, A:%d\n(%.3f, %.3f, %.3f, %.3f)", cr, cg, cb, ca, cr, cg, cb, ca, col[0], col[1], col[2], col[3]); + } + else if (flags & ImGuiColorEditFlags_InputHSV) + { + if (flags & ImGuiColorEditFlags_NoAlpha) + Text("H: %.3f, S: %.3f, V: %.3f", col[0], col[1], col[2]); + else + Text("H: %.3f, S: %.3f, V: %.3f, A: %.3f", col[0], col[1], col[2], col[3]); + } + EndTooltip(); +} + +void ImGui::ColorEditOptionsPopup(const float* col, ImGuiColorEditFlags flags) +{ + bool allow_opt_inputs = !(flags & ImGuiColorEditFlags_DisplayMask_); + bool allow_opt_datatype = !(flags & ImGuiColorEditFlags_DataTypeMask_); + if ((!allow_opt_inputs && !allow_opt_datatype) || !BeginPopup("context")) + return; + ImGuiContext& g = *GImGui; + g.LockMarkEdited++; + ImGuiColorEditFlags opts = g.ColorEditOptions; + if (allow_opt_inputs) + { + if (RadioButton("RGB", (opts & ImGuiColorEditFlags_DisplayRGB) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayRGB; + if (RadioButton("HSV", (opts & ImGuiColorEditFlags_DisplayHSV) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayHSV; + if (RadioButton("Hex", (opts & ImGuiColorEditFlags_DisplayHex) != 0)) opts = (opts & ~ImGuiColorEditFlags_DisplayMask_) | ImGuiColorEditFlags_DisplayHex; + } + if (allow_opt_datatype) + { + if (allow_opt_inputs) Separator(); + if (RadioButton("0..255", (opts & ImGuiColorEditFlags_Uint8) != 0)) opts = (opts & ~ImGuiColorEditFlags_DataTypeMask_) | ImGuiColorEditFlags_Uint8; + if (RadioButton("0.00..1.00", (opts & ImGuiColorEditFlags_Float) != 0)) opts = (opts & ~ImGuiColorEditFlags_DataTypeMask_) | ImGuiColorEditFlags_Float; + } + + if (allow_opt_inputs || allow_opt_datatype) + Separator(); + if (Button("Copy as..", ImVec2(-1, 0))) + OpenPopup("Copy"); + if (BeginPopup("Copy")) + { + int cr = IM_F32_TO_INT8_SAT(col[0]), cg = IM_F32_TO_INT8_SAT(col[1]), cb = IM_F32_TO_INT8_SAT(col[2]), ca = (flags & ImGuiColorEditFlags_NoAlpha) ? 255 : IM_F32_TO_INT8_SAT(col[3]); + char buf[64]; + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%.3ff, %.3ff, %.3ff, %.3ff)", col[0], col[1], col[2], (flags & ImGuiColorEditFlags_NoAlpha) ? 1.0f : col[3]); + if (Selectable(buf)) + SetClipboardText(buf); + ImFormatString(buf, IM_ARRAYSIZE(buf), "(%d,%d,%d,%d)", cr, cg, cb, ca); + if (Selectable(buf)) + SetClipboardText(buf); + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X", cr, cg, cb); + if (Selectable(buf)) + SetClipboardText(buf); + if (!(flags & ImGuiColorEditFlags_NoAlpha)) + { + ImFormatString(buf, IM_ARRAYSIZE(buf), "#%02X%02X%02X%02X", cr, cg, cb, ca); + if (Selectable(buf)) + SetClipboardText(buf); + } + EndPopup(); + } + + g.ColorEditOptions = opts; + EndPopup(); + g.LockMarkEdited--; +} + +void ImGui::ColorPickerOptionsPopup(const float* ref_col, ImGuiColorEditFlags flags) +{ + bool allow_opt_picker = !(flags & ImGuiColorEditFlags_PickerMask_); + bool allow_opt_alpha_bar = !(flags & ImGuiColorEditFlags_NoAlpha) && !(flags & ImGuiColorEditFlags_AlphaBar); + if ((!allow_opt_picker && !allow_opt_alpha_bar) || !BeginPopup("context")) + return; + ImGuiContext& g = *GImGui; + g.LockMarkEdited++; + if (allow_opt_picker) + { + ImVec2 picker_size(g.FontSize * 8, ImMax(g.FontSize * 8 - (GetFrameHeight() + g.Style.ItemInnerSpacing.x), 1.0f)); // FIXME: Picker size copied from main picker function + PushItemWidth(picker_size.x); + for (int picker_type = 0; picker_type < 2; picker_type++) + { + // Draw small/thumbnail version of each picker type (over an invisible button for selection) + if (picker_type > 0) Separator(); + PushID(picker_type); + ImGuiColorEditFlags picker_flags = ImGuiColorEditFlags_NoInputs | ImGuiColorEditFlags_NoOptions | ImGuiColorEditFlags_NoLabel | ImGuiColorEditFlags_NoSidePreview | (flags & ImGuiColorEditFlags_NoAlpha); + if (picker_type == 0) picker_flags |= ImGuiColorEditFlags_PickerHueBar; + if (picker_type == 1) picker_flags |= ImGuiColorEditFlags_PickerHueWheel; + ImVec2 backup_pos = GetCursorScreenPos(); + if (Selectable("##selectable", false, 0, picker_size)) // By default, Selectable() is closing popup + g.ColorEditOptions = (g.ColorEditOptions & ~ImGuiColorEditFlags_PickerMask_) | (picker_flags & ImGuiColorEditFlags_PickerMask_); + SetCursorScreenPos(backup_pos); + ImVec4 previewing_ref_col; + memcpy(&previewing_ref_col, ref_col, sizeof(float) * ((picker_flags & ImGuiColorEditFlags_NoAlpha) ? 3 : 4)); + ColorPicker4("##previewing_picker", &previewing_ref_col.x, picker_flags); + PopID(); + } + PopItemWidth(); + } + if (allow_opt_alpha_bar) + { + if (allow_opt_picker) Separator(); + CheckboxFlags("Alpha Bar", &g.ColorEditOptions, ImGuiColorEditFlags_AlphaBar); + } + EndPopup(); + g.LockMarkEdited--; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: TreeNode, CollapsingHeader, etc. +//------------------------------------------------------------------------- +// - TreeNode() +// - TreeNodeV() +// - TreeNodeEx() +// - TreeNodeExV() +// - TreeNodeBehavior() [Internal] +// - TreePush() +// - TreePop() +// - GetTreeNodeToLabelSpacing() +// - SetNextItemOpen() +// - CollapsingHeader() +//------------------------------------------------------------------------- + +bool ImGui::TreeNode(const char* str_id, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(str_id, 0, fmt, args); + va_end(args); + return is_open; +} + +bool ImGui::TreeNode(const void* ptr_id, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(ptr_id, 0, fmt, args); + va_end(args); + return is_open; +} + +bool ImGui::TreeNode(const char* label) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + ImGuiID id = window->GetID(label); + return TreeNodeBehavior(id, ImGuiTreeNodeFlags_None, label, NULL); +} + +bool ImGui::TreeNodeV(const char* str_id, const char* fmt, va_list args) +{ + return TreeNodeExV(str_id, 0, fmt, args); +} + +bool ImGui::TreeNodeV(const void* ptr_id, const char* fmt, va_list args) +{ + return TreeNodeExV(ptr_id, 0, fmt, args); +} + +bool ImGui::TreeNodeEx(const char* label, ImGuiTreeNodeFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + ImGuiID id = window->GetID(label); + return TreeNodeBehavior(id, flags, label, NULL); +} + +bool ImGui::TreeNodeEx(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(str_id, flags, fmt, args); + va_end(args); + return is_open; +} + +bool ImGui::TreeNodeEx(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...) +{ + va_list args; + va_start(args, fmt); + bool is_open = TreeNodeExV(ptr_id, flags, fmt, args); + va_end(args); + return is_open; +} + +bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiID id = window->GetID(str_id); + const char* label, *label_end; + ImFormatStringToTempBufferV(&label, &label_end, fmt, args); + return TreeNodeBehavior(id, flags, label, label_end); +} + +bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiID id = window->GetID(ptr_id); + const char* label, *label_end; + ImFormatStringToTempBufferV(&label, &label_end, fmt, args); + return TreeNodeBehavior(id, flags, label, label_end); +} + +bool ImGui::TreeNodeGetOpen(ImGuiID storage_id) +{ + ImGuiContext& g = *GImGui; + ImGuiStorage* storage = g.CurrentWindow->DC.StateStorage; + return storage->GetInt(storage_id, 0) != 0; +} + +void ImGui::TreeNodeSetOpen(ImGuiID storage_id, bool open) +{ + ImGuiContext& g = *GImGui; + ImGuiStorage* storage = g.CurrentWindow->DC.StateStorage; + storage->SetInt(storage_id, open ? 1 : 0); +} + +bool ImGui::TreeNodeUpdateNextOpen(ImGuiID storage_id, ImGuiTreeNodeFlags flags) +{ + if (flags & ImGuiTreeNodeFlags_Leaf) + return true; + + // We only write to the tree storage if the user clicks, or explicitly use the SetNextItemOpen function + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiStorage* storage = window->DC.StateStorage; + + bool is_open; + if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasOpen) + { + if (g.NextItemData.OpenCond & ImGuiCond_Always) + { + is_open = g.NextItemData.OpenVal; + TreeNodeSetOpen(storage_id, is_open); + } + else + { + // We treat ImGuiCond_Once and ImGuiCond_FirstUseEver the same because tree node state are not saved persistently. + const int stored_value = storage->GetInt(storage_id, -1); + if (stored_value == -1) + { + is_open = g.NextItemData.OpenVal; + TreeNodeSetOpen(storage_id, is_open); + } + else + { + is_open = stored_value != 0; + } + } + } + else + { + is_open = storage->GetInt(storage_id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0; + } + + // When logging is enabled, we automatically expand tree nodes (but *NOT* collapsing headers.. seems like sensible behavior). + // NB- If we are above max depth we still allow manually opened nodes to be logged. + if (g.LogEnabled && !(flags & ImGuiTreeNodeFlags_NoAutoOpenOnLog) && (window->DC.TreeDepth - g.LogDepthRef) < g.LogDepthToExpand) + is_open = true; + + return is_open; +} + +// Store ImGuiTreeNodeStackData for just submitted node. +// Currently only supports 32 level deep and we are fine with (1 << Depth) overflowing into a zero, easy to increase. +static void TreeNodeStoreStackData(ImGuiTreeNodeFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + g.TreeNodeStack.resize(g.TreeNodeStack.Size + 1); + ImGuiTreeNodeStackData* tree_node_data = &g.TreeNodeStack.back(); + tree_node_data->ID = g.LastItemData.ID; + tree_node_data->TreeFlags = flags; + tree_node_data->InFlags = g.LastItemData.InFlags; + tree_node_data->NavRect = g.LastItemData.NavRect; + window->DC.TreeHasStackDataDepthMask |= (1 << window->DC.TreeDepth); +} + +// When using public API, currently 'id == storage_id' is always true, but we separate the values to facilitate advanced user code doing storage queries outside of UI loop. +bool ImGui::TreeNodeBehavior(ImGuiID id, ImGuiTreeNodeFlags flags, const char* label, const char* label_end) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const bool display_frame = (flags & ImGuiTreeNodeFlags_Framed) != 0; + const ImVec2 padding = (display_frame || (flags & ImGuiTreeNodeFlags_FramePadding)) ? style.FramePadding : ImVec2(style.FramePadding.x, ImMin(window->DC.CurrLineTextBaseOffset, style.FramePadding.y)); + + if (!label_end) + label_end = FindRenderedTextEnd(label); + const ImVec2 label_size = CalcTextSize(label, label_end, false); + + const float text_offset_x = g.FontSize + (display_frame ? padding.x * 3 : padding.x * 2); // Collapsing arrow width + Spacing + const float text_offset_y = ImMax(padding.y, window->DC.CurrLineTextBaseOffset); // Latch before ItemSize changes it + const float text_width = g.FontSize + label_size.x + padding.x * 2; // Include collapsing arrow + + // We vertically grow up to current line height up the typical widget height. + const float frame_height = ImMax(ImMin(window->DC.CurrLineSize.y, g.FontSize + style.FramePadding.y * 2), label_size.y + padding.y * 2); + const bool span_all_columns = (flags & ImGuiTreeNodeFlags_SpanAllColumns) != 0 && (g.CurrentTable != NULL); + ImRect frame_bb; + frame_bb.Min.x = span_all_columns ? window->ParentWorkRect.Min.x : (flags & ImGuiTreeNodeFlags_SpanFullWidth) ? window->WorkRect.Min.x : window->DC.CursorPos.x; + frame_bb.Min.y = window->DC.CursorPos.y; + frame_bb.Max.x = span_all_columns ? window->ParentWorkRect.Max.x : (flags & ImGuiTreeNodeFlags_SpanTextWidth) ? window->DC.CursorPos.x + text_width + padding.x : window->WorkRect.Max.x; + frame_bb.Max.y = window->DC.CursorPos.y + frame_height; + if (display_frame) + { + const float outer_extend = IM_TRUNC(window->WindowPadding.x * 0.5f); // Framed header expand a little outside of current limits + frame_bb.Min.x -= outer_extend; + frame_bb.Max.x += outer_extend; + } + + ImVec2 text_pos(window->DC.CursorPos.x + text_offset_x, window->DC.CursorPos.y + text_offset_y); + ItemSize(ImVec2(text_width, frame_height), padding.y); + + // For regular tree nodes, we arbitrary allow to click past 2 worth of ItemSpacing + ImRect interact_bb = frame_bb; + if ((flags & (ImGuiTreeNodeFlags_Framed | ImGuiTreeNodeFlags_SpanAvailWidth | ImGuiTreeNodeFlags_SpanFullWidth | ImGuiTreeNodeFlags_SpanTextWidth | ImGuiTreeNodeFlags_SpanAllColumns)) == 0) + interact_bb.Max.x = frame_bb.Min.x + text_width + (label_size.x > 0.0f ? style.ItemSpacing.x * 2.0f : 0.0f); + + // Compute open and multi-select states before ItemAdd() as it clear NextItem data. + ImGuiID storage_id = (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasStorageID) ? g.NextItemData.StorageId : id; + bool is_open = TreeNodeUpdateNextOpen(storage_id, flags); + + bool is_visible; + if (span_all_columns) + { + // Modify ClipRect for the ItemAdd(), faster than doing a PushColumnsBackground/PushTableBackgroundChannel for every Selectable.. + const float backup_clip_rect_min_x = window->ClipRect.Min.x; + const float backup_clip_rect_max_x = window->ClipRect.Max.x; + window->ClipRect.Min.x = window->ParentWorkRect.Min.x; + window->ClipRect.Max.x = window->ParentWorkRect.Max.x; + is_visible = ItemAdd(interact_bb, id); + window->ClipRect.Min.x = backup_clip_rect_min_x; + window->ClipRect.Max.x = backup_clip_rect_max_x; + } + else + { + is_visible = ItemAdd(interact_bb, id); + } + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasDisplayRect; + g.LastItemData.DisplayRect = frame_bb; + + // If a NavLeft request is happening and ImGuiTreeNodeFlags_NavLeftJumpsBackHere enabled: + // Store data for the current depth to allow returning to this node from any child item. + // For this purpose we essentially compare if g.NavIdIsAlive went from 0 to 1 between TreeNode() and TreePop(). + // It will become tempting to enable ImGuiTreeNodeFlags_NavLeftJumpsBackHere by default or move it to ImGuiStyle. + bool store_tree_node_stack_data = false; + if (!(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen)) + { + if ((flags & ImGuiTreeNodeFlags_NavLeftJumpsBackHere) && is_open && !g.NavIdIsAlive) + if (g.NavMoveDir == ImGuiDir_Left && g.NavWindow == window && NavMoveRequestButNoResultYet()) + store_tree_node_stack_data = true; + } + + const bool is_leaf = (flags & ImGuiTreeNodeFlags_Leaf) != 0; + if (!is_visible) + { + if (store_tree_node_stack_data && is_open) + TreeNodeStoreStackData(flags); // Call before TreePushOverrideID() + if (is_open && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen)) + TreePushOverrideID(id); + IMGUI_TEST_ENGINE_ITEM_INFO(g.LastItemData.ID, label, g.LastItemData.StatusFlags | (is_leaf ? 0 : ImGuiItemStatusFlags_Openable) | (is_open ? ImGuiItemStatusFlags_Opened : 0)); + return is_open; + } + + if (span_all_columns) + { + TablePushBackgroundChannel(); + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasClipRect; + g.LastItemData.ClipRect = window->ClipRect; + } + + ImGuiButtonFlags button_flags = ImGuiTreeNodeFlags_None; + if ((flags & ImGuiTreeNodeFlags_AllowOverlap) || (g.LastItemData.InFlags & ImGuiItemFlags_AllowOverlap)) + button_flags |= ImGuiButtonFlags_AllowOverlap; + if (!is_leaf) + button_flags |= ImGuiButtonFlags_PressedOnDragDropHold; + + // We allow clicking on the arrow section with keyboard modifiers held, in order to easily + // allow browsing a tree while preserving selection with code implementing multi-selection patterns. + // When clicking on the rest of the tree node we always disallow keyboard modifiers. + const float arrow_hit_x1 = (text_pos.x - text_offset_x) - style.TouchExtraPadding.x; + const float arrow_hit_x2 = (text_pos.x - text_offset_x) + (g.FontSize + padding.x * 2.0f) + style.TouchExtraPadding.x; + const bool is_mouse_x_over_arrow = (g.IO.MousePos.x >= arrow_hit_x1 && g.IO.MousePos.x < arrow_hit_x2); + + const bool is_multi_select = (g.LastItemData.InFlags & ImGuiItemFlags_IsMultiSelect) != 0; + if (is_multi_select) // We absolutely need to distinguish open vs select so _OpenOnArrow comes by default + flags |= (flags & ImGuiTreeNodeFlags_OpenOnMask_) == 0 ? ImGuiTreeNodeFlags_OpenOnArrow | ImGuiTreeNodeFlags_OpenOnDoubleClick : ImGuiTreeNodeFlags_OpenOnArrow; + + // Open behaviors can be altered with the _OpenOnArrow and _OnOnDoubleClick flags. + // Some alteration have subtle effects (e.g. toggle on MouseUp vs MouseDown events) due to requirements for multi-selection and drag and drop support. + // - Single-click on label = Toggle on MouseUp (default, when _OpenOnArrow=0) + // - Single-click on arrow = Toggle on MouseDown (when _OpenOnArrow=0) + // - Single-click on arrow = Toggle on MouseDown (when _OpenOnArrow=1) + // - Double-click on label = Toggle on MouseDoubleClick (when _OpenOnDoubleClick=1) + // - Double-click on arrow = Toggle on MouseDoubleClick (when _OpenOnDoubleClick=1 and _OpenOnArrow=0) + // It is rather standard that arrow click react on Down rather than Up. + // We set ImGuiButtonFlags_PressedOnClickRelease on OpenOnDoubleClick because we want the item to be active on the initial MouseDown in order for drag and drop to work. + if (is_mouse_x_over_arrow) + button_flags |= ImGuiButtonFlags_PressedOnClick; + else if (flags & ImGuiTreeNodeFlags_OpenOnDoubleClick) + button_flags |= ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnDoubleClick; + else + button_flags |= ImGuiButtonFlags_PressedOnClickRelease; + + bool selected = (flags & ImGuiTreeNodeFlags_Selected) != 0; + const bool was_selected = selected; + + // Multi-selection support (header) + if (is_multi_select) + { + // Handle multi-select + alter button flags for it + MultiSelectItemHeader(id, &selected, &button_flags); + if (is_mouse_x_over_arrow) + button_flags = (button_flags | ImGuiButtonFlags_PressedOnClick) & ~ImGuiButtonFlags_PressedOnClickRelease; + } + else + { + if (window != g.HoveredWindow || !is_mouse_x_over_arrow) + button_flags |= ImGuiButtonFlags_NoKeyModifiers; + } + + bool hovered, held; + bool pressed = ButtonBehavior(interact_bb, id, &hovered, &held, button_flags); + bool toggled = false; + if (!is_leaf) + { + if (pressed && g.DragDropHoldJustPressedId != id) + { + if ((flags & ImGuiTreeNodeFlags_OpenOnMask_) == 0 || (g.NavActivateId == id && !is_multi_select)) + toggled = true; // Single click + if (flags & ImGuiTreeNodeFlags_OpenOnArrow) + toggled |= is_mouse_x_over_arrow && !g.NavDisableMouseHover; // Lightweight equivalent of IsMouseHoveringRect() since ButtonBehavior() already did the job + if ((flags & ImGuiTreeNodeFlags_OpenOnDoubleClick) && g.IO.MouseClickedCount[0] == 2) + toggled = true; // Double click + } + else if (pressed && g.DragDropHoldJustPressedId == id) + { + IM_ASSERT(button_flags & ImGuiButtonFlags_PressedOnDragDropHold); + if (!is_open) // When using Drag and Drop "hold to open" we keep the node highlighted after opening, but never close it again. + toggled = true; + else + pressed = false; // Cancel press so it doesn't trigger selection. + } + + if (g.NavId == id && g.NavMoveDir == ImGuiDir_Left && is_open) + { + toggled = true; + NavClearPreferredPosForAxis(ImGuiAxis_X); + NavMoveRequestCancel(); + } + if (g.NavId == id && g.NavMoveDir == ImGuiDir_Right && !is_open) // If there's something upcoming on the line we may want to give it the priority? + { + toggled = true; + NavClearPreferredPosForAxis(ImGuiAxis_X); + NavMoveRequestCancel(); + } + + if (toggled) + { + is_open = !is_open; + window->DC.StateStorage->SetInt(storage_id, is_open); + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_ToggledOpen; + } + } + + // Multi-selection support (footer) + if (is_multi_select) + { + bool pressed_copy = pressed && !toggled; + MultiSelectItemFooter(id, &selected, &pressed_copy); + if (pressed) + SetNavID(id, window->DC.NavLayerCurrent, g.CurrentFocusScopeId, interact_bb); + } + + if (selected != was_selected) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_ToggledSelection; + + // Render + { + const ImU32 text_col = GetColorU32(ImGuiCol_Text); + ImGuiNavHighlightFlags nav_highlight_flags = ImGuiNavHighlightFlags_Compact; + if (is_multi_select) + nav_highlight_flags |= ImGuiNavHighlightFlags_AlwaysDraw; // Always show the nav rectangle + if (display_frame) + { + // Framed type + const ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); + RenderFrame(frame_bb.Min, frame_bb.Max, bg_col, true, style.FrameRounding); + RenderNavHighlight(frame_bb, id, nav_highlight_flags); + if (flags & ImGuiTreeNodeFlags_Bullet) + RenderBullet(window->DrawList, ImVec2(text_pos.x - text_offset_x * 0.60f, text_pos.y + g.FontSize * 0.5f), text_col); + else if (!is_leaf) + RenderArrow(window->DrawList, ImVec2(text_pos.x - text_offset_x + padding.x, text_pos.y), text_col, is_open ? ((flags & ImGuiTreeNodeFlags_UpsideDownArrow) ? ImGuiDir_Up : ImGuiDir_Down) : ImGuiDir_Right, 1.0f); + else // Leaf without bullet, left-adjusted text + text_pos.x -= text_offset_x - padding.x; + if (flags & ImGuiTreeNodeFlags_ClipLabelForTrailingButton) + frame_bb.Max.x -= g.FontSize + style.FramePadding.x; + if (g.LogEnabled) + LogSetNextTextDecoration("###", "###"); + } + else + { + // Unframed typed for tree nodes + if (hovered || selected) + { + const ImU32 bg_col = GetColorU32((held && hovered) ? ImGuiCol_HeaderActive : hovered ? ImGuiCol_HeaderHovered : ImGuiCol_Header); + RenderFrame(frame_bb.Min, frame_bb.Max, bg_col, false); + } + RenderNavHighlight(frame_bb, id, nav_highlight_flags); + if (flags & ImGuiTreeNodeFlags_Bullet) + RenderBullet(window->DrawList, ImVec2(text_pos.x - text_offset_x * 0.5f, text_pos.y + g.FontSize * 0.5f), text_col); + else if (!is_leaf) + RenderArrow(window->DrawList, ImVec2(text_pos.x - text_offset_x + padding.x, text_pos.y + g.FontSize * 0.15f), text_col, is_open ? ((flags & ImGuiTreeNodeFlags_UpsideDownArrow) ? ImGuiDir_Up : ImGuiDir_Down) : ImGuiDir_Right, 0.70f); + if (g.LogEnabled) + LogSetNextTextDecoration(">", NULL); + } + + if (span_all_columns) + TablePopBackgroundChannel(); + + // Label + if (display_frame) + RenderTextClipped(text_pos, frame_bb.Max, label, label_end, &label_size); + else + RenderText(text_pos, label, label_end, false); + } + + if (store_tree_node_stack_data && is_open) + TreeNodeStoreStackData(flags); // Call before TreePushOverrideID() + if (is_open && !(flags & ImGuiTreeNodeFlags_NoTreePushOnOpen)) + TreePushOverrideID(id); // Could use TreePush(label) but this avoid computing twice + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | (is_leaf ? 0 : ImGuiItemStatusFlags_Openable) | (is_open ? ImGuiItemStatusFlags_Opened : 0)); + return is_open; +} + +void ImGui::TreePush(const char* str_id) +{ + ImGuiWindow* window = GetCurrentWindow(); + Indent(); + window->DC.TreeDepth++; + PushID(str_id); +} + +void ImGui::TreePush(const void* ptr_id) +{ + ImGuiWindow* window = GetCurrentWindow(); + Indent(); + window->DC.TreeDepth++; + PushID(ptr_id); +} + +void ImGui::TreePushOverrideID(ImGuiID id) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + Indent(); + window->DC.TreeDepth++; + PushOverrideID(id); +} + +void ImGui::TreePop() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + Unindent(); + + window->DC.TreeDepth--; + ImU32 tree_depth_mask = (1 << window->DC.TreeDepth); + + if (window->DC.TreeHasStackDataDepthMask & tree_depth_mask) // Only set during request + { + ImGuiTreeNodeStackData* data = &g.TreeNodeStack.back(); + IM_ASSERT(data->ID == window->IDStack.back()); + if (data->TreeFlags & ImGuiTreeNodeFlags_NavLeftJumpsBackHere) + { + // Handle Left arrow to move to parent tree node (when ImGuiTreeNodeFlags_NavLeftJumpsBackHere is enabled) + if (g.NavIdIsAlive && g.NavMoveDir == ImGuiDir_Left && g.NavWindow == window && NavMoveRequestButNoResultYet()) + NavMoveRequestResolveWithPastTreeNode(&g.NavMoveResultLocal, data); + } + g.TreeNodeStack.pop_back(); + window->DC.TreeHasStackDataDepthMask &= ~tree_depth_mask; + } + + IM_ASSERT(window->IDStack.Size > 1); // There should always be 1 element in the IDStack (pushed during window creation). If this triggers you called TreePop/PopID too much. + PopID(); +} + +// Horizontal distance preceding label when using TreeNode() or Bullet() +float ImGui::GetTreeNodeToLabelSpacing() +{ + ImGuiContext& g = *GImGui; + return g.FontSize + (g.Style.FramePadding.x * 2.0f); +} + +// Set next TreeNode/CollapsingHeader open state. +void ImGui::SetNextItemOpen(bool is_open, ImGuiCond cond) +{ + ImGuiContext& g = *GImGui; + if (g.CurrentWindow->SkipItems) + return; + g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasOpen; + g.NextItemData.OpenVal = is_open; + g.NextItemData.OpenCond = (ImU8)(cond ? cond : ImGuiCond_Always); +} + +// Set next TreeNode/CollapsingHeader storage id. +void ImGui::SetNextItemStorageID(ImGuiID storage_id) +{ + ImGuiContext& g = *GImGui; + if (g.CurrentWindow->SkipItems) + return; + g.NextItemData.Flags |= ImGuiNextItemDataFlags_HasStorageID; + g.NextItemData.StorageId = storage_id; +} + +// CollapsingHeader returns true when opened but do not indent nor push into the ID stack (because of the ImGuiTreeNodeFlags_NoTreePushOnOpen flag). +// This is basically the same as calling TreeNodeEx(label, ImGuiTreeNodeFlags_CollapsingHeader). You can remove the _NoTreePushOnOpen flag if you want behavior closer to normal TreeNode(). +bool ImGui::CollapsingHeader(const char* label, ImGuiTreeNodeFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + ImGuiID id = window->GetID(label); + return TreeNodeBehavior(id, flags | ImGuiTreeNodeFlags_CollapsingHeader, label); +} + +// p_visible == NULL : regular collapsing header +// p_visible != NULL && *p_visible == true : show a small close button on the corner of the header, clicking the button will set *p_visible = false +// p_visible != NULL && *p_visible == false : do not show the header at all +// Do not mistake this with the Open state of the header itself, which you can adjust with SetNextItemOpen() or ImGuiTreeNodeFlags_DefaultOpen. +bool ImGui::CollapsingHeader(const char* label, bool* p_visible, ImGuiTreeNodeFlags flags) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + if (p_visible && !*p_visible) + return false; + + ImGuiID id = window->GetID(label); + flags |= ImGuiTreeNodeFlags_CollapsingHeader; + if (p_visible) + flags |= ImGuiTreeNodeFlags_AllowOverlap | (ImGuiTreeNodeFlags)ImGuiTreeNodeFlags_ClipLabelForTrailingButton; + bool is_open = TreeNodeBehavior(id, flags, label); + if (p_visible != NULL) + { + // Create a small overlapping close button + // FIXME: We can evolve this into user accessible helpers to add extra buttons on title bars, headers, etc. + // FIXME: CloseButton can overlap into text, need find a way to clip the text somehow. + ImGuiContext& g = *GImGui; + ImGuiLastItemData last_item_backup = g.LastItemData; + float button_size = g.FontSize; + float button_x = ImMax(g.LastItemData.Rect.Min.x, g.LastItemData.Rect.Max.x - g.Style.FramePadding.x - button_size); + float button_y = g.LastItemData.Rect.Min.y + g.Style.FramePadding.y; + ImGuiID close_button_id = GetIDWithSeed("#CLOSE", NULL, id); + if (CloseButton(close_button_id, ImVec2(button_x, button_y))) + *p_visible = false; + g.LastItemData = last_item_backup; + } + + return is_open; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Selectable +//------------------------------------------------------------------------- +// - Selectable() +//------------------------------------------------------------------------- + +// Tip: pass a non-visible label (e.g. "##hello") then you can use the space to draw other text or image. +// But you need to make sure the ID is unique, e.g. enclose calls in PushID/PopID or use ##unique_id. +// With this scheme, ImGuiSelectableFlags_SpanAllColumns and ImGuiSelectableFlags_AllowOverlap are also frequently used flags. +// FIXME: Selectable() with (size.x == 0.0f) and (SelectableTextAlign.x > 0.0f) followed by SameLine() is currently not supported. +bool ImGui::Selectable(const char* label, bool selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + + // Submit label or explicit size to ItemSize(), whereas ItemAdd() will submit a larger/spanning rectangle. + ImGuiID id = window->GetID(label); + ImVec2 label_size = CalcTextSize(label, NULL, true); + ImVec2 size(size_arg.x != 0.0f ? size_arg.x : label_size.x, size_arg.y != 0.0f ? size_arg.y : label_size.y); + ImVec2 pos = window->DC.CursorPos; + pos.y += window->DC.CurrLineTextBaseOffset; + ItemSize(size, 0.0f); + + // Fill horizontal space + // We don't support (size < 0.0f) in Selectable() because the ItemSpacing extension would make explicitly right-aligned sizes not visibly match other widgets. + const bool span_all_columns = (flags & ImGuiSelectableFlags_SpanAllColumns) != 0; + const float min_x = span_all_columns ? window->ParentWorkRect.Min.x : pos.x; + const float max_x = span_all_columns ? window->ParentWorkRect.Max.x : window->WorkRect.Max.x; + if (size_arg.x == 0.0f || (flags & ImGuiSelectableFlags_SpanAvailWidth)) + size.x = ImMax(label_size.x, max_x - min_x); + + // Text stays at the submission position, but bounding box may be extended on both sides + const ImVec2 text_min = pos; + const ImVec2 text_max(min_x + size.x, pos.y + size.y); + + // Selectables are meant to be tightly packed together with no click-gap, so we extend their box to cover spacing between selectable. + // FIXME: Not part of layout so not included in clipper calculation, but ItemSize currently doesn't allow offsetting CursorPos. + ImRect bb(min_x, pos.y, text_max.x, text_max.y); + if ((flags & ImGuiSelectableFlags_NoPadWithHalfSpacing) == 0) + { + const float spacing_x = span_all_columns ? 0.0f : style.ItemSpacing.x; + const float spacing_y = style.ItemSpacing.y; + const float spacing_L = IM_TRUNC(spacing_x * 0.50f); + const float spacing_U = IM_TRUNC(spacing_y * 0.50f); + bb.Min.x -= spacing_L; + bb.Min.y -= spacing_U; + bb.Max.x += (spacing_x - spacing_L); + bb.Max.y += (spacing_y - spacing_U); + } + //if (g.IO.KeyCtrl) { GetForegroundDrawList()->AddRect(bb.Min, bb.Max, IM_COL32(0, 255, 0, 255)); } + + const bool disabled_item = (flags & ImGuiSelectableFlags_Disabled) != 0; + const ImGuiItemFlags extra_item_flags = disabled_item ? (ImGuiItemFlags)ImGuiItemFlags_Disabled : ImGuiItemFlags_None; + bool is_visible; + if (span_all_columns) + { + // Modify ClipRect for the ItemAdd(), faster than doing a PushColumnsBackground/PushTableBackgroundChannel for every Selectable.. + const float backup_clip_rect_min_x = window->ClipRect.Min.x; + const float backup_clip_rect_max_x = window->ClipRect.Max.x; + window->ClipRect.Min.x = window->ParentWorkRect.Min.x; + window->ClipRect.Max.x = window->ParentWorkRect.Max.x; + is_visible = ItemAdd(bb, id, NULL, extra_item_flags); + window->ClipRect.Min.x = backup_clip_rect_min_x; + window->ClipRect.Max.x = backup_clip_rect_max_x; + } + else + { + is_visible = ItemAdd(bb, id, NULL, extra_item_flags); + } + + const bool is_multi_select = (g.LastItemData.InFlags & ImGuiItemFlags_IsMultiSelect) != 0; + if (!is_visible) + if (!is_multi_select || !g.BoxSelectState.UnclipMode || !g.BoxSelectState.UnclipRect.Overlaps(bb)) // Extra layer of "no logic clip" for box-select support (would be more overhead to add to ItemAdd) + return false; + + const bool disabled_global = (g.CurrentItemFlags & ImGuiItemFlags_Disabled) != 0; + if (disabled_item && !disabled_global) // Only testing this as an optimization + BeginDisabled(); + + // FIXME: We can standardize the behavior of those two, we could also keep the fast path of override ClipRect + full push on render only, + // which would be advantageous since most selectable are not selected. + if (span_all_columns) + { + if (g.CurrentTable) + TablePushBackgroundChannel(); + else if (window->DC.CurrentColumns) + PushColumnsBackground(); + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HasClipRect; + g.LastItemData.ClipRect = window->ClipRect; + } + + // We use NoHoldingActiveID on menus so user can click and _hold_ on a menu then drag to browse child entries + ImGuiButtonFlags button_flags = 0; + if (flags & ImGuiSelectableFlags_NoHoldingActiveID) { button_flags |= ImGuiButtonFlags_NoHoldingActiveId; } + if (flags & ImGuiSelectableFlags_NoSetKeyOwner) { button_flags |= ImGuiButtonFlags_NoSetKeyOwner; } + if (flags & ImGuiSelectableFlags_SelectOnClick) { button_flags |= ImGuiButtonFlags_PressedOnClick; } + if (flags & ImGuiSelectableFlags_SelectOnRelease) { button_flags |= ImGuiButtonFlags_PressedOnRelease; } + if (flags & ImGuiSelectableFlags_AllowDoubleClick) { button_flags |= ImGuiButtonFlags_PressedOnClickRelease | ImGuiButtonFlags_PressedOnDoubleClick; } + if ((flags & ImGuiSelectableFlags_AllowOverlap) || (g.LastItemData.InFlags & ImGuiItemFlags_AllowOverlap)) { button_flags |= ImGuiButtonFlags_AllowOverlap; } + + // Multi-selection support (header) + const bool was_selected = selected; + if (is_multi_select) + { + // Handle multi-select + alter button flags for it + MultiSelectItemHeader(id, &selected, &button_flags); + } + + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, button_flags); + + // Multi-selection support (footer) + if (is_multi_select) + { + MultiSelectItemFooter(id, &selected, &pressed); + } + else + { + // Auto-select when moved into + // - This will be more fully fleshed in the range-select branch + // - This is not exposed as it won't nicely work with some user side handling of shift/control + // - We cannot do 'if (g.NavJustMovedToId != id) { selected = false; pressed = was_selected; }' for two reasons + // - (1) it would require focus scope to be set, need exposing PushFocusScope() or equivalent (e.g. BeginSelection() calling PushFocusScope()) + // - (2) usage will fail with clipped items + // The multi-select API aim to fix those issues, e.g. may be replaced with a BeginSelection() API. + if ((flags & ImGuiSelectableFlags_SelectOnNav) && g.NavJustMovedToId != 0 && g.NavJustMovedToFocusScopeId == g.CurrentFocusScopeId) + if (g.NavJustMovedToId == id) + selected = pressed = true; + } + + // Update NavId when clicking or when Hovering (this doesn't happen on most widgets), so navigation can be resumed with gamepad/keyboard + if (pressed || (hovered && (flags & ImGuiSelectableFlags_SetNavIdOnHover))) + { + if (!g.NavDisableMouseHover && g.NavWindow == window && g.NavLayer == window->DC.NavLayerCurrent) + { + SetNavID(id, window->DC.NavLayerCurrent, g.CurrentFocusScopeId, WindowRectAbsToRel(window, bb)); // (bb == NavRect) + g.NavDisableHighlight = true; + } + } + if (pressed) + MarkItemEdited(id); + + if (selected != was_selected) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_ToggledSelection; + + // Render + if (is_visible) + { + const bool highlighted = hovered || (flags & ImGuiSelectableFlags_Highlight); + if (highlighted || selected) + { + // FIXME-MULTISELECT: Styling: Color for 'selected' elements? ImGuiCol_HeaderSelected + ImU32 col; + if (selected && !highlighted) + col = GetColorU32(ImLerp(GetStyleColorVec4(ImGuiCol_Header), GetStyleColorVec4(ImGuiCol_HeaderHovered), 0.5f)); + else + col = GetColorU32((held && highlighted) ? ImGuiCol_HeaderActive : highlighted ? ImGuiCol_HeaderHovered : ImGuiCol_Header); + RenderFrame(bb.Min, bb.Max, col, false, 0.0f); + } + if (g.NavId == id) + { + ImGuiNavHighlightFlags nav_highlight_flags = ImGuiNavHighlightFlags_Compact | ImGuiNavHighlightFlags_NoRounding; + if (is_multi_select) + nav_highlight_flags |= ImGuiNavHighlightFlags_AlwaysDraw; // Always show the nav rectangle + RenderNavHighlight(bb, id, nav_highlight_flags); + } + } + + if (span_all_columns) + { + if (g.CurrentTable) + TablePopBackgroundChannel(); + else if (window->DC.CurrentColumns) + PopColumnsBackground(); + } + + if (is_visible) + RenderTextClipped(text_min, text_max, label, NULL, &label_size, style.SelectableTextAlign, &bb); + + // Automatically close popups + if (pressed && (window->Flags & ImGuiWindowFlags_Popup) && !(flags & ImGuiSelectableFlags_NoAutoClosePopups) && (g.LastItemData.InFlags & ImGuiItemFlags_AutoClosePopups)) + CloseCurrentPopup(); + + if (disabled_item && !disabled_global) + EndDisabled(); + + // Selectable() always returns a pressed state! + // Users of BeginMultiSelect()/EndMultiSelect() scope: you may call ImGui::IsItemToggledSelection() to retrieve + // selection toggle, only useful if you need that state updated (e.g. for rendering purpose) before reaching EndMultiSelect(). + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + return pressed; //-V1020 +} + +bool ImGui::Selectable(const char* label, bool* p_selected, ImGuiSelectableFlags flags, const ImVec2& size_arg) +{ + if (Selectable(label, *p_selected, flags, size_arg)) + { + *p_selected = !*p_selected; + return true; + } + return false; +} + + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Typing-Select support +//------------------------------------------------------------------------- + +// [Experimental] Currently not exposed in public API. +// Consume character inputs and return search request, if any. +// This would typically only be called on the focused window or location you want to grab inputs for, e.g. +// if (ImGui::IsWindowFocused(...)) +// if (ImGuiTypingSelectRequest* req = ImGui::GetTypingSelectRequest()) +// focus_idx = ImGui::TypingSelectFindMatch(req, my_items.size(), [](void*, int n) { return my_items[n]->Name; }, &my_items, -1); +// However the code is written in a way where calling it from multiple locations is safe (e.g. to obtain buffer). +ImGuiTypingSelectRequest* ImGui::GetTypingSelectRequest(ImGuiTypingSelectFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiTypingSelectState* data = &g.TypingSelectState; + ImGuiTypingSelectRequest* out_request = &data->Request; + + // Clear buffer + const float TYPING_SELECT_RESET_TIMER = 1.80f; // FIXME: Potentially move to IO config. + const int TYPING_SELECT_SINGLE_CHAR_COUNT_FOR_LOCK = 4; // Lock single char matching when repeating same char 4 times + if (data->SearchBuffer[0] != 0) + { + bool clear_buffer = false; + clear_buffer |= (g.NavFocusScopeId != data->FocusScope); + clear_buffer |= (data->LastRequestTime + TYPING_SELECT_RESET_TIMER < g.Time); + clear_buffer |= g.NavAnyRequest; + clear_buffer |= g.ActiveId != 0 && g.NavActivateId == 0; // Allow temporary SPACE activation to not interfere + clear_buffer |= IsKeyPressed(ImGuiKey_Escape) || IsKeyPressed(ImGuiKey_Enter); + clear_buffer |= IsKeyPressed(ImGuiKey_Backspace) && (flags & ImGuiTypingSelectFlags_AllowBackspace) == 0; + //if (clear_buffer) { IMGUI_DEBUG_LOG("GetTypingSelectRequest(): Clear SearchBuffer.\n"); } + if (clear_buffer) + data->Clear(); + } + + // Append to buffer + const int buffer_max_len = IM_ARRAYSIZE(data->SearchBuffer) - 1; + int buffer_len = (int)strlen(data->SearchBuffer); + bool select_request = false; + for (ImWchar w : g.IO.InputQueueCharacters) + { + const int w_len = ImTextCountUtf8BytesFromStr(&w, &w + 1); + if (w < 32 || (buffer_len == 0 && ImCharIsBlankW(w)) || (buffer_len + w_len > buffer_max_len)) // Ignore leading blanks + continue; + char w_buf[5]; + ImTextCharToUtf8(w_buf, (unsigned int)w); + if (data->SingleCharModeLock && w_len == out_request->SingleCharSize && memcmp(w_buf, data->SearchBuffer, w_len) == 0) + { + select_request = true; // Same character: don't need to append to buffer. + continue; + } + if (data->SingleCharModeLock) + { + data->Clear(); // Different character: clear + buffer_len = 0; + } + memcpy(data->SearchBuffer + buffer_len, w_buf, w_len + 1); // Append + buffer_len += w_len; + select_request = true; + } + g.IO.InputQueueCharacters.resize(0); + + // Handle backspace + if ((flags & ImGuiTypingSelectFlags_AllowBackspace) && IsKeyPressed(ImGuiKey_Backspace, ImGuiInputFlags_Repeat)) + { + char* p = (char*)(void*)ImTextFindPreviousUtf8Codepoint(data->SearchBuffer, data->SearchBuffer + buffer_len); + *p = 0; + buffer_len = (int)(p - data->SearchBuffer); + } + + // Return request if any + if (buffer_len == 0) + return NULL; + if (select_request) + { + data->FocusScope = g.NavFocusScopeId; + data->LastRequestFrame = g.FrameCount; + data->LastRequestTime = (float)g.Time; + } + out_request->Flags = flags; + out_request->SearchBufferLen = buffer_len; + out_request->SearchBuffer = data->SearchBuffer; + out_request->SelectRequest = (data->LastRequestFrame == g.FrameCount); + out_request->SingleCharMode = false; + out_request->SingleCharSize = 0; + + // Calculate if buffer contains the same character repeated. + // - This can be used to implement a special search mode on first character. + // - Performed on UTF-8 codepoint for correctness. + // - SingleCharMode is always set for first input character, because it usually leads to a "next". + if (flags & ImGuiTypingSelectFlags_AllowSingleCharMode) + { + const char* buf_begin = out_request->SearchBuffer; + const char* buf_end = out_request->SearchBuffer + out_request->SearchBufferLen; + const int c0_len = ImTextCountUtf8BytesFromChar(buf_begin, buf_end); + const char* p = buf_begin + c0_len; + for (; p < buf_end; p += c0_len) + if (memcmp(buf_begin, p, (size_t)c0_len) != 0) + break; + const int single_char_count = (p == buf_end) ? (out_request->SearchBufferLen / c0_len) : 0; + out_request->SingleCharMode = (single_char_count > 0 || data->SingleCharModeLock); + out_request->SingleCharSize = (ImS8)c0_len; + data->SingleCharModeLock |= (single_char_count >= TYPING_SELECT_SINGLE_CHAR_COUNT_FOR_LOCK); // From now on we stop search matching to lock to single char mode. + } + + return out_request; +} + +static int ImStrimatchlen(const char* s1, const char* s1_end, const char* s2) +{ + int match_len = 0; + while (s1 < s1_end && ImToUpper(*s1++) == ImToUpper(*s2++)) + match_len++; + return match_len; +} + +// Default handler for finding a result for typing-select. You may implement your own. +// You might want to display a tooltip to visualize the current request SearchBuffer +// When SingleCharMode is set: +// - it is better to NOT display a tooltip of other on-screen display indicator. +// - the index of the currently focused item is required. +// if your SetNextItemSelectionUserData() values are indices, you can obtain it from ImGuiMultiSelectIO::NavIdItem, otherwise from g.NavLastValidSelectionUserData. +int ImGui::TypingSelectFindMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data, int nav_item_idx) +{ + if (req == NULL || req->SelectRequest == false) // Support NULL parameter so both calls can be done from same spot. + return -1; + int idx = -1; + if (req->SingleCharMode && (req->Flags & ImGuiTypingSelectFlags_AllowSingleCharMode)) + idx = TypingSelectFindNextSingleCharMatch(req, items_count, get_item_name_func, user_data, nav_item_idx); + else + idx = TypingSelectFindBestLeadingMatch(req, items_count, get_item_name_func, user_data); + if (idx != -1) + NavRestoreHighlightAfterMove(); + return idx; +} + +// Special handling when a single character is repeated: perform search on a single letter and goes to next. +int ImGui::TypingSelectFindNextSingleCharMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data, int nav_item_idx) +{ + // FIXME: Assume selection user data is index. Would be extremely practical. + //if (nav_item_idx == -1) + // nav_item_idx = (int)g.NavLastValidSelectionUserData; + + int first_match_idx = -1; + bool return_next_match = false; + for (int idx = 0; idx < items_count; idx++) + { + const char* item_name = get_item_name_func(user_data, idx); + if (ImStrimatchlen(req->SearchBuffer, req->SearchBuffer + req->SingleCharSize, item_name) < req->SingleCharSize) + continue; + if (return_next_match) // Return next matching item after current item. + return idx; + if (first_match_idx == -1 && nav_item_idx == -1) // Return first match immediately if we don't have a nav_item_idx value. + return idx; + if (first_match_idx == -1) // Record first match for wrapping. + first_match_idx = idx; + if (nav_item_idx == idx) // Record that we encountering nav_item so we can return next match. + return_next_match = true; + } + return first_match_idx; // First result +} + +int ImGui::TypingSelectFindBestLeadingMatch(ImGuiTypingSelectRequest* req, int items_count, const char* (*get_item_name_func)(void*, int), void* user_data) +{ + int longest_match_idx = -1; + int longest_match_len = 0; + for (int idx = 0; idx < items_count; idx++) + { + const char* item_name = get_item_name_func(user_data, idx); + const int match_len = ImStrimatchlen(req->SearchBuffer, req->SearchBuffer + req->SearchBufferLen, item_name); + if (match_len <= longest_match_len) + continue; + longest_match_idx = idx; + longest_match_len = match_len; + if (match_len == req->SearchBufferLen) + break; + } + return longest_match_idx; +} + +void ImGui::DebugNodeTypingSelectState(ImGuiTypingSelectState* data) +{ +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + Text("SearchBuffer = \"%s\"", data->SearchBuffer); + Text("SingleCharMode = %d, Size = %d, Lock = %d", data->Request.SingleCharMode, data->Request.SingleCharSize, data->SingleCharModeLock); + Text("LastRequest = time: %.2f, frame: %d", data->LastRequestTime, data->LastRequestFrame); +#else + IM_UNUSED(data); +#endif +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Box-Select support +// This has been extracted away from Multi-Select logic in the hope that it could eventually be used elsewhere, but hasn't been yet. +//------------------------------------------------------------------------- +// Extra logic in MultiSelectItemFooter() and ImGuiListClipper::Step() +//------------------------------------------------------------------------- +// - BoxSelectPreStartDrag() [Internal] +// - BoxSelectActivateDrag() [Internal] +// - BoxSelectDeactivateDrag() [Internal] +// - BoxSelectScrollWithMouseDrag() [Internal] +// - BeginBoxSelect() [Internal] +// - EndBoxSelect() [Internal] +//------------------------------------------------------------------------- + +// Call on the initial click. +static void BoxSelectPreStartDrag(ImGuiID id, ImGuiSelectionUserData clicked_item) +{ + ImGuiContext& g = *GImGui; + ImGuiBoxSelectState* bs = &g.BoxSelectState; + bs->ID = id; + bs->IsStarting = true; // Consider starting box-select. + bs->IsStartedFromVoid = (clicked_item == ImGuiSelectionUserData_Invalid); + bs->IsStartedSetNavIdOnce = bs->IsStartedFromVoid; + bs->KeyMods = g.IO.KeyMods; + bs->StartPosRel = bs->EndPosRel = ImGui::WindowPosAbsToRel(g.CurrentWindow, g.IO.MousePos); + bs->ScrollAccum = ImVec2(0.0f, 0.0f); +} + +static void BoxSelectActivateDrag(ImGuiBoxSelectState* bs, ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + IMGUI_DEBUG_LOG_SELECTION("[selection] BeginBoxSelect() 0X%08X: Activate\n", bs->ID); + bs->IsActive = true; + bs->Window = window; + bs->IsStarting = false; + ImGui::SetActiveID(bs->ID, window); + ImGui::SetActiveIdUsingAllKeyboardKeys(); + if (bs->IsStartedFromVoid && (bs->KeyMods & (ImGuiMod_Ctrl | ImGuiMod_Shift)) == 0) + bs->RequestClear = true; +} + +static void BoxSelectDeactivateDrag(ImGuiBoxSelectState* bs) +{ + ImGuiContext& g = *GImGui; + bs->IsActive = bs->IsStarting = false; + if (g.ActiveId == bs->ID) + { + IMGUI_DEBUG_LOG_SELECTION("[selection] BeginBoxSelect() 0X%08X: Deactivate\n", bs->ID); + ImGui::ClearActiveID(); + } + bs->ID = 0; +} + +static void BoxSelectScrollWithMouseDrag(ImGuiBoxSelectState* bs, ImGuiWindow* window, const ImRect& inner_r) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(bs->Window == window); + for (int n = 0; n < 2; n++) // each axis + { + const float mouse_pos = g.IO.MousePos[n]; + const float dist = (mouse_pos > inner_r.Max[n]) ? mouse_pos - inner_r.Max[n] : (mouse_pos < inner_r.Min[n]) ? mouse_pos - inner_r.Min[n] : 0.0f; + const float scroll_curr = window->Scroll[n]; + if (dist == 0.0f || (dist < 0.0f && scroll_curr < 0.0f) || (dist > 0.0f && scroll_curr >= window->ScrollMax[n])) + continue; + + const float speed_multiplier = ImLinearRemapClamp(g.FontSize, g.FontSize * 5.0f, 1.0f, 4.0f, ImAbs(dist)); // x1 to x4 depending on distance + const float scroll_step = g.FontSize * 35.0f * speed_multiplier * ImSign(dist) * g.IO.DeltaTime; + bs->ScrollAccum[n] += scroll_step; + + // Accumulate into a stored value so we can handle high-framerate + const float scroll_step_i = ImFloor(bs->ScrollAccum[n]); + if (scroll_step_i == 0.0f) + continue; + if (n == 0) + ImGui::SetScrollX(window, scroll_curr + scroll_step_i); + else + ImGui::SetScrollY(window, scroll_curr + scroll_step_i); + bs->ScrollAccum[n] -= scroll_step_i; + } +} + +bool ImGui::BeginBoxSelect(const ImRect& scope_rect, ImGuiWindow* window, ImGuiID box_select_id, ImGuiMultiSelectFlags ms_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiBoxSelectState* bs = &g.BoxSelectState; + KeepAliveID(box_select_id); + if (bs->ID != box_select_id) + return false; + + // IsStarting is set by MultiSelectItemFooter() when considering a possible box-select. We validate it here and lock geometry. + bs->UnclipMode = false; + bs->RequestClear = false; + if (bs->IsStarting && IsMouseDragPastThreshold(0)) + BoxSelectActivateDrag(bs, window); + else if ((bs->IsStarting || bs->IsActive) && g.IO.MouseDown[0] == false) + BoxSelectDeactivateDrag(bs); + if (!bs->IsActive) + return false; + + // Current frame absolute prev/current rectangles are used to toggle selection. + // They are derived from positions relative to scrolling space. + ImVec2 start_pos_abs = WindowPosRelToAbs(window, bs->StartPosRel); + ImVec2 prev_end_pos_abs = WindowPosRelToAbs(window, bs->EndPosRel); // Clamped already + ImVec2 curr_end_pos_abs = g.IO.MousePos; + if (ms_flags & ImGuiMultiSelectFlags_ScopeWindow) // Box-select scrolling only happens with ScopeWindow + curr_end_pos_abs = ImClamp(curr_end_pos_abs, scope_rect.Min, scope_rect.Max); + bs->BoxSelectRectPrev.Min = ImMin(start_pos_abs, prev_end_pos_abs); + bs->BoxSelectRectPrev.Max = ImMax(start_pos_abs, prev_end_pos_abs); + bs->BoxSelectRectCurr.Min = ImMin(start_pos_abs, curr_end_pos_abs); + bs->BoxSelectRectCurr.Max = ImMax(start_pos_abs, curr_end_pos_abs); + + // Box-select 2D mode detects horizontal changes (vertical ones are already picked by Clipper) + // Storing an extra rect used by widgets supporting box-select. + if (ms_flags & ImGuiMultiSelectFlags_BoxSelect2d) + if (bs->BoxSelectRectPrev.Min.x != bs->BoxSelectRectCurr.Min.x || bs->BoxSelectRectPrev.Max.x != bs->BoxSelectRectCurr.Max.x) + { + bs->UnclipMode = true; + bs->UnclipRect = bs->BoxSelectRectPrev; // FIXME-OPT: UnclipRect x coordinates could be intersection of Prev and Curr rect on X axis. + bs->UnclipRect.Add(bs->BoxSelectRectCurr); + } + + //GetForegroundDrawList()->AddRect(bs->UnclipRect.Min, bs->UnclipRect.Max, IM_COL32(255,0,0,200), 0.0f, 0, 3.0f); + //GetForegroundDrawList()->AddRect(bs->BoxSelectRectPrev.Min, bs->BoxSelectRectPrev.Max, IM_COL32(255,0,0,200), 0.0f, 0, 3.0f); + //GetForegroundDrawList()->AddRect(bs->BoxSelectRectCurr.Min, bs->BoxSelectRectCurr.Max, IM_COL32(0,255,0,200), 0.0f, 0, 1.0f); + return true; +} + +void ImGui::EndBoxSelect(const ImRect& scope_rect, ImGuiMultiSelectFlags ms_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + ImGuiBoxSelectState* bs = &g.BoxSelectState; + IM_ASSERT(bs->IsActive); + bs->UnclipMode = false; + + // Render selection rectangle + bs->EndPosRel = WindowPosAbsToRel(window, ImClamp(g.IO.MousePos, scope_rect.Min, scope_rect.Max)); // Clamp stored position according to current scrolling view + ImRect box_select_r = bs->BoxSelectRectCurr; + box_select_r.ClipWith(scope_rect); + window->DrawList->AddRectFilled(box_select_r.Min, box_select_r.Max, GetColorU32(ImGuiCol_SeparatorHovered, 0.30f)); // FIXME-MULTISELECT: Styling + window->DrawList->AddRect(box_select_r.Min, box_select_r.Max, GetColorU32(ImGuiCol_NavHighlight)); // FIXME-MULTISELECT: Styling + + // Scroll + const bool enable_scroll = (ms_flags & ImGuiMultiSelectFlags_ScopeWindow) && (ms_flags & ImGuiMultiSelectFlags_BoxSelectNoScroll) == 0; + if (enable_scroll) + { + ImRect scroll_r = scope_rect; + scroll_r.Expand(-g.FontSize); + //GetForegroundDrawList()->AddRect(scroll_r.Min, scroll_r.Max, IM_COL32(0, 255, 0, 255)); + if (!scroll_r.Contains(g.IO.MousePos)) + BoxSelectScrollWithMouseDrag(bs, window, scroll_r); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Multi-Select support +//------------------------------------------------------------------------- +// - DebugLogMultiSelectRequests() [Internal] +// - CalcScopeRect() [Internal] +// - BeginMultiSelect() +// - EndMultiSelect() +// - SetNextItemSelectionUserData() +// - MultiSelectItemHeader() [Internal] +// - MultiSelectItemFooter() [Internal] +// - DebugNodeMultiSelectState() [Internal] +//------------------------------------------------------------------------- + +static void DebugLogMultiSelectRequests(const char* function, const ImGuiMultiSelectIO* io) +{ + ImGuiContext& g = *GImGui; + for (const ImGuiSelectionRequest& req : io->Requests) + { + if (req.Type == ImGuiSelectionRequestType_SetAll) IMGUI_DEBUG_LOG_SELECTION("[selection] %s: Request: SetAll %d (= %s)\n", function, req.Selected, req.Selected ? "SelectAll" : "Clear"); + if (req.Type == ImGuiSelectionRequestType_SetRange) IMGUI_DEBUG_LOG_SELECTION("[selection] %s: Request: SetRange %" IM_PRId64 "..%" IM_PRId64 " (0x%" IM_PRIX64 "..0x%" IM_PRIX64 ") = %d (dir %d)\n", function, req.RangeFirstItem, req.RangeLastItem, req.RangeFirstItem, req.RangeLastItem, req.Selected, req.RangeDirection); + } +} + +static ImRect CalcScopeRect(ImGuiMultiSelectTempData* ms, ImGuiWindow* window) +{ + ImGuiContext& g = *GImGui; + if (ms->Flags & ImGuiMultiSelectFlags_ScopeRect) + { + // Warning: this depends on CursorMaxPos so it means to be called by EndMultiSelect() only + return ImRect(ms->ScopeRectMin, ImMax(window->DC.CursorMaxPos, ms->ScopeRectMin)); + } + else + { + // When a table, pull HostClipRect, which allows us to predict ClipRect before first row/layout is performed. (#7970) + ImRect scope_rect = window->InnerClipRect; + if (g.CurrentTable != NULL) + scope_rect = g.CurrentTable->HostClipRect; + + // Add inner table decoration (#7821) // FIXME: Why not baking in InnerClipRect? + scope_rect.Min = ImMin(scope_rect.Min + ImVec2(window->DecoInnerSizeX1, window->DecoInnerSizeY1), scope_rect.Max); + return scope_rect; + } +} + +// Return ImGuiMultiSelectIO structure. +// Lifetime: don't hold on ImGuiMultiSelectIO* pointers over multiple frames or past any subsequent call to BeginMultiSelect() or EndMultiSelect(). +// Passing 'selection_size' and 'items_count' parameters is currently optional. +// - 'selection_size' is useful to disable some shortcut routing: e.g. ImGuiMultiSelectFlags_ClearOnEscape won't claim Escape key when selection_size 0, +// allowing a first press to clear selection THEN the second press to leave child window and return to parent. +// - 'items_count' is stored in ImGuiMultiSelectIO which makes it a convenient way to pass the information to your ApplyRequest() handler (but you may pass it differently). +// - If they are costly for you to compute (e.g. external intrusive selection without maintaining size), you may avoid them and pass -1. +// - If you can easily tell if your selection is empty or not, you may pass 0/1, or you may enable ImGuiMultiSelectFlags_ClearOnEscape flag dynamically. +ImGuiMultiSelectIO* ImGui::BeginMultiSelect(ImGuiMultiSelectFlags flags, int selection_size, int items_count) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + if (++g.MultiSelectTempDataStacked > g.MultiSelectTempData.Size) + g.MultiSelectTempData.resize(g.MultiSelectTempDataStacked, ImGuiMultiSelectTempData()); + ImGuiMultiSelectTempData* ms = &g.MultiSelectTempData[g.MultiSelectTempDataStacked - 1]; + IM_STATIC_ASSERT(offsetof(ImGuiMultiSelectTempData, IO) == 0); // Clear() relies on that. + g.CurrentMultiSelect = ms; + if ((flags & (ImGuiMultiSelectFlags_ScopeWindow | ImGuiMultiSelectFlags_ScopeRect)) == 0) + flags |= ImGuiMultiSelectFlags_ScopeWindow; + if (flags & ImGuiMultiSelectFlags_SingleSelect) + flags &= ~(ImGuiMultiSelectFlags_BoxSelect2d | ImGuiMultiSelectFlags_BoxSelect1d); + if (flags & ImGuiMultiSelectFlags_BoxSelect2d) + flags &= ~ImGuiMultiSelectFlags_BoxSelect1d; + + // FIXME: BeginFocusScope() + const ImGuiID id = window->IDStack.back(); + ms->Clear(); + ms->FocusScopeId = id; + ms->Flags = flags; + ms->IsFocused = (ms->FocusScopeId == g.NavFocusScopeId); + ms->BackupCursorMaxPos = window->DC.CursorMaxPos; + ms->ScopeRectMin = window->DC.CursorMaxPos = window->DC.CursorPos; + PushFocusScope(ms->FocusScopeId); + if (flags & ImGuiMultiSelectFlags_ScopeWindow) // Mark parent child window as navigable into, with highlight. Assume user will always submit interactive items. + window->DC.NavLayersActiveMask |= 1 << ImGuiNavLayer_Main; + + // Use copy of keyboard mods at the time of the request, otherwise we would requires mods to be held for an extra frame. + ms->KeyMods = g.NavJustMovedToId ? (g.NavJustMovedToIsTabbing ? 0 : g.NavJustMovedToKeyMods) : g.IO.KeyMods; + if (flags & ImGuiMultiSelectFlags_NoRangeSelect) + ms->KeyMods &= ~ImGuiMod_Shift; + + // Bind storage + ImGuiMultiSelectState* storage = g.MultiSelectStorage.GetOrAddByKey(id); + storage->ID = id; + storage->LastFrameActive = g.FrameCount; + storage->LastSelectionSize = selection_size; + storage->Window = window; + ms->Storage = storage; + + // Output to user + ms->IO.Requests.resize(0); + ms->IO.RangeSrcItem = storage->RangeSrcItem; + ms->IO.NavIdItem = storage->NavIdItem; + ms->IO.NavIdSelected = (storage->NavIdSelected == 1) ? true : false; + ms->IO.ItemsCount = items_count; + + // Clear when using Navigation to move within the scope + // (we compare FocusScopeId so it possible to use multiple selections inside a same window) + bool request_clear = false; + bool request_select_all = false; + if (g.NavJustMovedToId != 0 && g.NavJustMovedToFocusScopeId == ms->FocusScopeId && g.NavJustMovedToHasSelectionData) + { + if (ms->KeyMods & ImGuiMod_Shift) + ms->IsKeyboardSetRange = true; + if (ms->IsKeyboardSetRange) + IM_ASSERT(storage->RangeSrcItem != ImGuiSelectionUserData_Invalid); // Not ready -> could clear? + if ((ms->KeyMods & (ImGuiMod_Ctrl | ImGuiMod_Shift)) == 0 && (flags & (ImGuiMultiSelectFlags_NoAutoClear | ImGuiMultiSelectFlags_NoAutoSelect)) == 0) + request_clear = true; + } + else if (g.NavJustMovedFromFocusScopeId == ms->FocusScopeId) + { + // Also clear on leaving scope (may be optional?) + if ((ms->KeyMods & (ImGuiMod_Ctrl | ImGuiMod_Shift)) == 0 && (flags & (ImGuiMultiSelectFlags_NoAutoClear | ImGuiMultiSelectFlags_NoAutoSelect)) == 0) + request_clear = true; + } + + // Box-select handling: update active state. + ImGuiBoxSelectState* bs = &g.BoxSelectState; + if (flags & (ImGuiMultiSelectFlags_BoxSelect1d | ImGuiMultiSelectFlags_BoxSelect2d)) + { + ms->BoxSelectId = GetID("##BoxSelect"); + if (BeginBoxSelect(CalcScopeRect(ms, window), window, ms->BoxSelectId, flags)) + request_clear |= bs->RequestClear; + } + + if (ms->IsFocused) + { + // Shortcut: Clear selection (Escape) + // - Only claim shortcut if selection is not empty, allowing further presses on Escape to e.g. leave current child window. + // - Box select also handle Escape and needs to pass an id to bypass ActiveIdUsingAllKeyboardKeys lock. + if (flags & ImGuiMultiSelectFlags_ClearOnEscape) + { + if (selection_size != 0 || bs->IsActive) + if (Shortcut(ImGuiKey_Escape, ImGuiInputFlags_None, bs->IsActive ? bs->ID : 0)) + { + request_clear = true; + if (bs->IsActive) + BoxSelectDeactivateDrag(bs); + } + } + + // Shortcut: Select all (CTRL+A) + if (!(flags & ImGuiMultiSelectFlags_SingleSelect) && !(flags & ImGuiMultiSelectFlags_NoSelectAll)) + if (Shortcut(ImGuiMod_Ctrl | ImGuiKey_A)) + request_select_all = true; + } + + if (request_clear || request_select_all) + { + MultiSelectAddSetAll(ms, request_select_all); + if (!request_select_all) + storage->LastSelectionSize = 0; + } + ms->LoopRequestSetAll = request_select_all ? 1 : request_clear ? 0 : -1; + ms->LastSubmittedItem = ImGuiSelectionUserData_Invalid; + + if (g.DebugLogFlags & ImGuiDebugLogFlags_EventSelection) + DebugLogMultiSelectRequests("BeginMultiSelect", &ms->IO); + + return &ms->IO; +} + +// Return updated ImGuiMultiSelectIO structure. +// Lifetime: don't hold on ImGuiMultiSelectIO* pointers over multiple frames or past any subsequent call to BeginMultiSelect() or EndMultiSelect(). +ImGuiMultiSelectIO* ImGui::EndMultiSelect() +{ + ImGuiContext& g = *GImGui; + ImGuiMultiSelectTempData* ms = g.CurrentMultiSelect; + ImGuiMultiSelectState* storage = ms->Storage; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(ms->FocusScopeId == g.CurrentFocusScopeId); + IM_ASSERT(g.CurrentMultiSelect != NULL && storage->Window == g.CurrentWindow); + IM_ASSERT(g.MultiSelectTempDataStacked > 0 && &g.MultiSelectTempData[g.MultiSelectTempDataStacked - 1] == g.CurrentMultiSelect); + + ImRect scope_rect = CalcScopeRect(ms, window); + if (ms->IsFocused) + { + // We currently don't allow user code to modify RangeSrcItem by writing to BeginIO's version, but that would be an easy change here. + if (ms->IO.RangeSrcReset || (ms->RangeSrcPassedBy == false && ms->IO.RangeSrcItem != ImGuiSelectionUserData_Invalid)) // Can't read storage->RangeSrcItem here -> we want the state at begining of the scope (see tests for easy failure) + { + IMGUI_DEBUG_LOG_SELECTION("[selection] EndMultiSelect: Reset RangeSrcItem.\n"); // Will set be to NavId. + storage->RangeSrcItem = ImGuiSelectionUserData_Invalid; + } + if (ms->NavIdPassedBy == false && storage->NavIdItem != ImGuiSelectionUserData_Invalid) + { + IMGUI_DEBUG_LOG_SELECTION("[selection] EndMultiSelect: Reset NavIdItem.\n"); + storage->NavIdItem = ImGuiSelectionUserData_Invalid; + storage->NavIdSelected = -1; + } + + if ((ms->Flags & (ImGuiMultiSelectFlags_BoxSelect1d | ImGuiMultiSelectFlags_BoxSelect2d)) && GetBoxSelectState(ms->BoxSelectId)) + EndBoxSelect(scope_rect, ms->Flags); + } + + if (ms->IsEndIO == false) + ms->IO.Requests.resize(0); + + // Clear selection when clicking void? + // We specifically test for IsMouseDragPastThreshold(0) == false to allow box-selection! + // The InnerRect test is necessary for non-child/decorated windows. + bool scope_hovered = IsWindowHovered() && window->InnerRect.Contains(g.IO.MousePos); + if (scope_hovered && (ms->Flags & ImGuiMultiSelectFlags_ScopeRect)) + scope_hovered &= scope_rect.Contains(g.IO.MousePos); + if (scope_hovered && g.HoveredId == 0 && g.ActiveId == 0) + { + if (ms->Flags & (ImGuiMultiSelectFlags_BoxSelect1d | ImGuiMultiSelectFlags_BoxSelect2d)) + { + if (!g.BoxSelectState.IsActive && !g.BoxSelectState.IsStarting && g.IO.MouseClickedCount[0] == 1) + { + BoxSelectPreStartDrag(ms->BoxSelectId, ImGuiSelectionUserData_Invalid); + FocusWindow(window, ImGuiFocusRequestFlags_UnlessBelowModal); + SetHoveredID(ms->BoxSelectId); + if (ms->Flags & ImGuiMultiSelectFlags_ScopeRect) + SetNavID(0, ImGuiNavLayer_Main, ms->FocusScopeId, ImRect(g.IO.MousePos, g.IO.MousePos)); // Automatically switch FocusScope for initial click from void to box-select. + } + } + + if (ms->Flags & ImGuiMultiSelectFlags_ClearOnClickVoid) + if (IsMouseReleased(0) && IsMouseDragPastThreshold(0) == false && g.IO.KeyMods == ImGuiMod_None) + MultiSelectAddSetAll(ms, false); + } + + // Courtesy nav wrapping helper flag + if (ms->Flags & ImGuiMultiSelectFlags_NavWrapX) + { + IM_ASSERT(ms->Flags & ImGuiMultiSelectFlags_ScopeWindow); // Only supported at window scope + ImGui::NavMoveRequestTryWrapping(ImGui::GetCurrentWindow(), ImGuiNavMoveFlags_WrapX); + } + + // Unwind + window->DC.CursorMaxPos = ImMax(ms->BackupCursorMaxPos, window->DC.CursorMaxPos); + PopFocusScope(); + + if (g.DebugLogFlags & ImGuiDebugLogFlags_EventSelection) + DebugLogMultiSelectRequests("EndMultiSelect", &ms->IO); + + ms->FocusScopeId = 0; + ms->Flags = ImGuiMultiSelectFlags_None; + g.CurrentMultiSelect = (--g.MultiSelectTempDataStacked > 0) ? &g.MultiSelectTempData[g.MultiSelectTempDataStacked - 1] : NULL; + + return &ms->IO; +} + +void ImGui::SetNextItemSelectionUserData(ImGuiSelectionUserData selection_user_data) +{ + // Note that flags will be cleared by ItemAdd(), so it's only useful for Navigation code! + // This designed so widgets can also cheaply set this before calling ItemAdd(), so we are not tied to MultiSelect api. + ImGuiContext& g = *GImGui; + g.NextItemData.SelectionUserData = selection_user_data; + g.NextItemData.FocusScopeId = g.CurrentFocusScopeId; + + if (ImGuiMultiSelectTempData* ms = g.CurrentMultiSelect) + { + // Auto updating RangeSrcPassedBy for cases were clipper is not used (done before ItemAdd() clipping) + g.NextItemData.ItemFlags |= ImGuiItemFlags_HasSelectionUserData | ImGuiItemFlags_IsMultiSelect; + if (ms->IO.RangeSrcItem == selection_user_data) + ms->RangeSrcPassedBy = true; + } + else + { + g.NextItemData.ItemFlags |= ImGuiItemFlags_HasSelectionUserData; + } +} + +// In charge of: +// - Applying SetAll for submitted items. +// - Applying SetRange for submitted items and record end points. +// - Altering button behavior flags to facilitate use with drag and drop. +void ImGui::MultiSelectItemHeader(ImGuiID id, bool* p_selected, ImGuiButtonFlags* p_button_flags) +{ + ImGuiContext& g = *GImGui; + ImGuiMultiSelectTempData* ms = g.CurrentMultiSelect; + + bool selected = *p_selected; + if (ms->IsFocused) + { + ImGuiMultiSelectState* storage = ms->Storage; + ImGuiSelectionUserData item_data = g.NextItemData.SelectionUserData; + IM_ASSERT(g.NextItemData.FocusScopeId == g.CurrentFocusScopeId && "Forgot to call SetNextItemSelectionUserData() prior to item, required in BeginMultiSelect()/EndMultiSelect() scope"); + + // Apply SetAll (Clear/SelectAll) requests requested by BeginMultiSelect(). + // This is only useful if the user hasn't processed them already, and this only works if the user isn't using the clipper. + // If you are using a clipper you need to process the SetAll request after calling BeginMultiSelect() + if (ms->LoopRequestSetAll != -1) + selected = (ms->LoopRequestSetAll == 1); + + // When using SHIFT+Nav: because it can incur scrolling we cannot afford a frame of lag with the selection highlight (otherwise scrolling would happen before selection) + // For this to work, we need someone to set 'RangeSrcPassedBy = true' at some point (either clipper either SetNextItemSelectionUserData() function) + if (ms->IsKeyboardSetRange) + { + IM_ASSERT(id != 0 && (ms->KeyMods & ImGuiMod_Shift) != 0); + const bool is_range_dst = (ms->RangeDstPassedBy == false) && g.NavJustMovedToId == id; // Assume that g.NavJustMovedToId is not clipped. + if (is_range_dst) + ms->RangeDstPassedBy = true; + if (is_range_dst && storage->RangeSrcItem == ImGuiSelectionUserData_Invalid) // If we don't have RangeSrc, assign RangeSrc = RangeDst + { + storage->RangeSrcItem = item_data; + storage->RangeSelected = selected ? 1 : 0; + } + const bool is_range_src = storage->RangeSrcItem == item_data; + if (is_range_src || is_range_dst || ms->RangeSrcPassedBy != ms->RangeDstPassedBy) + { + // Apply range-select value to visible items + IM_ASSERT(storage->RangeSrcItem != ImGuiSelectionUserData_Invalid && storage->RangeSelected != -1); + selected = (storage->RangeSelected != 0); + } + else if ((ms->KeyMods & ImGuiMod_Ctrl) == 0 && (ms->Flags & ImGuiMultiSelectFlags_NoAutoClear) == 0) + { + // Clear other items + selected = false; + } + } + *p_selected = selected; + } + + // Alter button behavior flags + // To handle drag and drop of multiple items we need to avoid clearing selection on click. + // Enabling this test makes actions using CTRL+SHIFT delay their effect on MouseUp which is annoying, but it allows drag and drop of multiple items. + if (p_button_flags != NULL) + { + ImGuiButtonFlags button_flags = *p_button_flags; + button_flags |= ImGuiButtonFlags_NoHoveredOnFocus; + if ((!selected || (g.ActiveId == id && g.ActiveIdHasBeenPressedBefore)) && !(ms->Flags & ImGuiMultiSelectFlags_SelectOnClickRelease)) + button_flags = (button_flags | ImGuiButtonFlags_PressedOnClick) & ~ImGuiButtonFlags_PressedOnClickRelease; + else + button_flags |= ImGuiButtonFlags_PressedOnClickRelease; + *p_button_flags = button_flags; + } +} + +// In charge of: +// - Auto-select on navigation. +// - Box-select toggle handling. +// - Right-click handling. +// - Altering selection based on Ctrl/Shift modifiers, both for keyboard and mouse. +// - Record current selection state for RangeSrc +// This is all rather complex, best to run and refer to "widgets_multiselect_xxx" tests in imgui_test_suite. +void ImGui::MultiSelectItemFooter(ImGuiID id, bool* p_selected, bool* p_pressed) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + bool selected = *p_selected; + bool pressed = *p_pressed; + ImGuiMultiSelectTempData* ms = g.CurrentMultiSelect; + ImGuiMultiSelectState* storage = ms->Storage; + if (pressed) + ms->IsFocused = true; + + bool hovered = false; + if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_HoveredRect) + hovered = IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup); + if (!ms->IsFocused && !hovered) + return; + + ImGuiSelectionUserData item_data = g.NextItemData.SelectionUserData; + + ImGuiMultiSelectFlags flags = ms->Flags; + const bool is_singleselect = (flags & ImGuiMultiSelectFlags_SingleSelect) != 0; + bool is_ctrl = (ms->KeyMods & ImGuiMod_Ctrl) != 0; + bool is_shift = (ms->KeyMods & ImGuiMod_Shift) != 0; + + bool apply_to_range_src = false; + + if (g.NavId == id && storage->RangeSrcItem == ImGuiSelectionUserData_Invalid) + apply_to_range_src = true; + if (ms->IsEndIO == false) + { + ms->IO.Requests.resize(0); + ms->IsEndIO = true; + } + + // Auto-select as you navigate a list + if (g.NavJustMovedToId == id) + { + if ((flags & ImGuiMultiSelectFlags_NoAutoSelect) == 0) + { + if (is_ctrl && is_shift) + pressed = true; + else if (!is_ctrl) + selected = pressed = true; + } + else + { + // With NoAutoSelect, using Shift+keyboard performs a write/copy + if (is_shift) + pressed = true; + else if (!is_ctrl) + apply_to_range_src = true; // Since if (pressed) {} main block is not running we update this + } + } + + if (apply_to_range_src) + { + storage->RangeSrcItem = item_data; + storage->RangeSelected = selected; // Will be updated at the end of this function anyway. + } + + // Box-select toggle handling + if (ms->BoxSelectId != 0) + if (ImGuiBoxSelectState* bs = GetBoxSelectState(ms->BoxSelectId)) + { + const bool rect_overlap_curr = bs->BoxSelectRectCurr.Overlaps(g.LastItemData.Rect); + const bool rect_overlap_prev = bs->BoxSelectRectPrev.Overlaps(g.LastItemData.Rect); + if ((rect_overlap_curr && !rect_overlap_prev && !selected) || (rect_overlap_prev && !rect_overlap_curr)) + { + if (storage->LastSelectionSize <= 0 && bs->IsStartedSetNavIdOnce) + { + pressed = true; // First item act as a pressed: code below will emit selection request and set NavId (whatever we emit here will be overridden anyway) + bs->IsStartedSetNavIdOnce = false; + } + else + { + selected = !selected; + MultiSelectAddSetRange(ms, selected, +1, item_data, item_data); + } + storage->LastSelectionSize = ImMax(storage->LastSelectionSize + 1, 1); + } + } + + // Right-click handling. + // FIXME-MULTISELECT: Currently filtered out by ImGuiMultiSelectFlags_NoAutoSelect but maybe should be moved to Selectable(). See https://github.com/ocornut/imgui/pull/5816 + if (hovered && IsMouseClicked(1) && (flags & ImGuiMultiSelectFlags_NoAutoSelect) == 0) + { + if (g.ActiveId != 0 && g.ActiveId != id) + ClearActiveID(); + SetFocusID(id, window); + if (!pressed && !selected) + { + pressed = true; + is_ctrl = is_shift = false; + } + } + + // Unlike Space, Enter doesn't alter selection (but can still return a press) unless current item is not selected. + // The later, "unless current item is not select", may become optional? It seems like a better default if Enter doesn't necessarily open something + // (unlike e.g. Windows explorer). For use case where Enter always open something, we might decide to make this optional? + const bool enter_pressed = pressed && (g.NavActivateId == id) && (g.NavActivateFlags & ImGuiActivateFlags_PreferInput); + + // Alter selection + if (pressed && (!enter_pressed || !selected)) + { + // Box-select + ImGuiInputSource input_source = (g.NavJustMovedToId == id || g.NavActivateId == id) ? g.NavInputSource : ImGuiInputSource_Mouse; + if (flags & (ImGuiMultiSelectFlags_BoxSelect1d | ImGuiMultiSelectFlags_BoxSelect2d)) + if (selected == false && !g.BoxSelectState.IsActive && !g.BoxSelectState.IsStarting && input_source == ImGuiInputSource_Mouse && g.IO.MouseClickedCount[0] == 1) + BoxSelectPreStartDrag(ms->BoxSelectId, item_data); + + //---------------------------------------------------------------------------------------- + // ACTION | Begin | Pressed/Activated | End + //---------------------------------------------------------------------------------------- + // Keys Navigated: | Clear | Src=item, Sel=1 SetRange 1 + // Keys Navigated: Ctrl | n/a | n/a + // Keys Navigated: Shift | n/a | Dst=item, Sel=1, => Clear + SetRange 1 + // Keys Navigated: Ctrl+Shift | n/a | Dst=item, Sel=Src => Clear + SetRange Src-Dst + // Keys Activated: | n/a | Src=item, Sel=1 => Clear + SetRange 1 + // Keys Activated: Ctrl | n/a | Src=item, Sel=!Sel => SetSange 1 + // Keys Activated: Shift | n/a | Dst=item, Sel=1 => Clear + SetSange 1 + //---------------------------------------------------------------------------------------- + // Mouse Pressed: | n/a | Src=item, Sel=1, => Clear + SetRange 1 + // Mouse Pressed: Ctrl | n/a | Src=item, Sel=!Sel => SetRange 1 + // Mouse Pressed: Shift | n/a | Dst=item, Sel=1, => Clear + SetRange 1 + // Mouse Pressed: Ctrl+Shift | n/a | Dst=item, Sel=!Sel => SetRange Src-Dst + //---------------------------------------------------------------------------------------- + + if ((flags & ImGuiMultiSelectFlags_NoAutoClear) == 0) + { + bool request_clear = false; + if (is_singleselect) + request_clear = true; + else if ((input_source == ImGuiInputSource_Mouse || g.NavActivateId == id) && !is_ctrl) + request_clear = (flags & ImGuiMultiSelectFlags_NoAutoClearOnReselect) ? !selected : true; + else if ((input_source == ImGuiInputSource_Keyboard || input_source == ImGuiInputSource_Gamepad) && is_shift && !is_ctrl) + request_clear = true; // With is_shift==false the RequestClear was done in BeginIO, not necessary to do again. + if (request_clear) + MultiSelectAddSetAll(ms, false); + } + + int range_direction; + bool range_selected; + if (is_shift && !is_singleselect) + { + //IM_ASSERT(storage->HasRangeSrc && storage->HasRangeValue); + if (storage->RangeSrcItem == ImGuiSelectionUserData_Invalid) + storage->RangeSrcItem = item_data; + if ((flags & ImGuiMultiSelectFlags_NoAutoSelect) == 0) + { + // Shift+Arrow always select + // Ctrl+Shift+Arrow copy source selection state (already stored by BeginMultiSelect() in storage->RangeSelected) + range_selected = (is_ctrl && storage->RangeSelected != -1) ? (storage->RangeSelected != 0) : true; + } + else + { + // Shift+Arrow copy source selection state + // Shift+Click always copy from target selection state + if (ms->IsKeyboardSetRange) + range_selected = (storage->RangeSelected != -1) ? (storage->RangeSelected != 0) : true; + else + range_selected = !selected; + } + range_direction = ms->RangeSrcPassedBy ? +1 : -1; + } + else + { + // Ctrl inverts selection, otherwise always select + if ((flags & ImGuiMultiSelectFlags_NoAutoSelect) == 0) + selected = is_ctrl ? !selected : true; + else + selected = !selected; + storage->RangeSrcItem = item_data; + range_selected = selected; + range_direction = +1; + } + MultiSelectAddSetRange(ms, range_selected, range_direction, storage->RangeSrcItem, item_data); + } + + // Update/store the selection state of the Source item (used by CTRL+SHIFT, when Source is unselected we perform a range unselect) + if (storage->RangeSrcItem == item_data) + storage->RangeSelected = selected ? 1 : 0; + + // Update/store the selection state of focused item + if (g.NavId == id) + { + storage->NavIdItem = item_data; + storage->NavIdSelected = selected ? 1 : 0; + } + if (storage->NavIdItem == item_data) + ms->NavIdPassedBy = true; + ms->LastSubmittedItem = item_data; + + *p_selected = selected; + *p_pressed = pressed; +} + +void ImGui::MultiSelectAddSetAll(ImGuiMultiSelectTempData* ms, bool selected) +{ + ImGuiSelectionRequest req = { ImGuiSelectionRequestType_SetAll, selected, 0, ImGuiSelectionUserData_Invalid, ImGuiSelectionUserData_Invalid }; + ms->IO.Requests.resize(0); // Can always clear previous requests + ms->IO.Requests.push_back(req); // Add new request +} + +void ImGui::MultiSelectAddSetRange(ImGuiMultiSelectTempData* ms, bool selected, int range_dir, ImGuiSelectionUserData first_item, ImGuiSelectionUserData last_item) +{ + // Merge contiguous spans into same request (unless NoRangeSelect is set which guarantees single-item ranges) + if (ms->IO.Requests.Size > 0 && first_item == last_item && (ms->Flags & ImGuiMultiSelectFlags_NoRangeSelect) == 0) + { + ImGuiSelectionRequest* prev = &ms->IO.Requests.Data[ms->IO.Requests.Size - 1]; + if (prev->Type == ImGuiSelectionRequestType_SetRange && prev->RangeLastItem == ms->LastSubmittedItem && prev->Selected == selected) + { + prev->RangeLastItem = last_item; + return; + } + } + + ImGuiSelectionRequest req = { ImGuiSelectionRequestType_SetRange, selected, (ImS8)range_dir, (range_dir > 0) ? first_item : last_item, (range_dir > 0) ? last_item : first_item }; + ms->IO.Requests.push_back(req); // Add new request +} + +void ImGui::DebugNodeMultiSelectState(ImGuiMultiSelectState* storage) +{ +#ifndef IMGUI_DISABLE_DEBUG_TOOLS + const bool is_active = (storage->LastFrameActive >= GetFrameCount() - 2); // Note that fully clipped early out scrolling tables will appear as inactive here. + if (!is_active) { PushStyleColor(ImGuiCol_Text, GetStyleColorVec4(ImGuiCol_TextDisabled)); } + bool open = TreeNode((void*)(intptr_t)storage->ID, "MultiSelect 0x%08X in '%s'%s", storage->ID, storage->Window ? storage->Window->Name : "N/A", is_active ? "" : " *Inactive*"); + if (!is_active) { PopStyleColor(); } + if (!open) + return; + Text("RangeSrcItem = %" IM_PRId64 " (0x%" IM_PRIX64 "), RangeSelected = %d", storage->RangeSrcItem, storage->RangeSrcItem, storage->RangeSelected); + Text("NavIdItem = %" IM_PRId64 " (0x%" IM_PRIX64 "), NavIdSelected = %d", storage->NavIdItem, storage->NavIdItem, storage->NavIdSelected); + Text("LastSelectionSize = %d", storage->LastSelectionSize); // Provided by user + TreePop(); +#else + IM_UNUSED(storage); +#endif +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Multi-Select helpers +//------------------------------------------------------------------------- +// - ImGuiSelectionBasicStorage +// - ImGuiSelectionExternalStorage +//------------------------------------------------------------------------- + +ImGuiSelectionBasicStorage::ImGuiSelectionBasicStorage() +{ + Size = 0; + PreserveOrder = false; + UserData = NULL; + AdapterIndexToStorageId = [](ImGuiSelectionBasicStorage*, int idx) { return (ImGuiID)idx; }; + _SelectionOrder = 1; // Always >0 +} + +void ImGuiSelectionBasicStorage::Clear() +{ + Size = 0; + _SelectionOrder = 1; // Always >0 + _Storage.Data.resize(0); +} + +void ImGuiSelectionBasicStorage::Swap(ImGuiSelectionBasicStorage& r) +{ + ImSwap(Size, r.Size); + ImSwap(_SelectionOrder, r._SelectionOrder); + _Storage.Data.swap(r._Storage.Data); +} + +bool ImGuiSelectionBasicStorage::Contains(ImGuiID id) const +{ + return _Storage.GetInt(id, 0) != 0; +} + +static int IMGUI_CDECL PairComparerByValueInt(const void* lhs, const void* rhs) +{ + int lhs_v = ((const ImGuiStoragePair*)lhs)->val_i; + int rhs_v = ((const ImGuiStoragePair*)rhs)->val_i; + return (lhs_v > rhs_v ? +1 : lhs_v < rhs_v ? -1 : 0); +} + +// GetNextSelectedItem() is an abstraction allowing us to change our underlying actual storage system without impacting user. +// (e.g. store unselected vs compact down, compact down on demand, use raw ImVector instead of ImGuiStorage...) +bool ImGuiSelectionBasicStorage::GetNextSelectedItem(void** opaque_it, ImGuiID* out_id) +{ + ImGuiStoragePair* it = (ImGuiStoragePair*)*opaque_it; + ImGuiStoragePair* it_end = _Storage.Data.Data + _Storage.Data.Size; + if (PreserveOrder && it == NULL && it_end != NULL) + ImQsort(_Storage.Data.Data, (size_t)_Storage.Data.Size, sizeof(ImGuiStoragePair), PairComparerByValueInt); // ~ImGuiStorage::BuildSortByValueInt() + if (it == NULL) + it = _Storage.Data.Data; + IM_ASSERT(it >= _Storage.Data.Data && it <= it_end); + if (it != it_end) + while (it->val_i == 0 && it < it_end) + it++; + const bool has_more = (it != it_end); + *opaque_it = has_more ? (void**)(it + 1) : (void**)(it); + *out_id = has_more ? it->key : 0; + if (PreserveOrder && !has_more) + _Storage.BuildSortByKey(); + return has_more; +} + +void ImGuiSelectionBasicStorage::SetItemSelected(ImGuiID id, bool selected) +{ + int* p_int = _Storage.GetIntRef(id, 0); + if (selected && *p_int == 0) { *p_int = _SelectionOrder++; Size++; } + else if (!selected && *p_int != 0) { *p_int = 0; Size--; } +} + +// Optimized for batch edits (with same value of 'selected') +static void ImGuiSelectionBasicStorage_BatchSetItemSelected(ImGuiSelectionBasicStorage* selection, ImGuiID id, bool selected, int size_before_amends, int selection_order) +{ + ImGuiStorage* storage = &selection->_Storage; + ImGuiStoragePair* it = ImLowerBound(storage->Data.Data, storage->Data.Data + size_before_amends, id); + const bool is_contained = (it != storage->Data.Data + size_before_amends) && (it->key == id); + if (selected == (is_contained && it->val_i != 0)) + return; + if (selected && !is_contained) + storage->Data.push_back(ImGuiStoragePair(id, selection_order)); // Push unsorted at end of vector, will be sorted in SelectionMultiAmendsFinish() + else if (is_contained) + it->val_i = selected ? selection_order : 0; // Modify in-place. + selection->Size += selected ? +1 : -1; +} + +static void ImGuiSelectionBasicStorage_BatchFinish(ImGuiSelectionBasicStorage* selection, bool selected, int size_before_amends) +{ + ImGuiStorage* storage = &selection->_Storage; + if (selected && selection->Size != size_before_amends) + storage->BuildSortByKey(); // When done selecting: sort everything +} + +// Apply requests coming from BeginMultiSelect() and EndMultiSelect(). +// - Enable 'Demo->Tools->Debug Log->Selection' to see selection requests as they happen. +// - Honoring SetRange requests requires that you can iterate/interpolate between RangeFirstItem and RangeLastItem. +// - In this demo we often submit indices to SetNextItemSelectionUserData() + store the same indices in persistent selection. +// - Your code may do differently. If you store pointers or objects ID in ImGuiSelectionUserData you may need to perform +// a lookup in order to have some way to iterate/interpolate between two items. +// - A full-featured application is likely to allow search/filtering which is likely to lead to using indices +// and constructing a view index <> object id/ptr data structure anyway. +// WHEN YOUR APPLICATION SETTLES ON A CHOICE, YOU WILL PROBABLY PREFER TO GET RID OF THIS UNNECESSARY 'ImGuiSelectionBasicStorage' INDIRECTION LOGIC. +// Notice that with the simplest adapter (using indices everywhere), all functions return their parameters. +// The most simple implementation (using indices everywhere) would look like: +// for (ImGuiSelectionRequest& req : ms_io->Requests) +// { +// if (req.Type == ImGuiSelectionRequestType_SetAll) { Clear(); if (req.Selected) { for (int n = 0; n < items_count; n++) { SetItemSelected(n, true); } } +// if (req.Type == ImGuiSelectionRequestType_SetRange) { for (int n = (int)ms_io->RangeFirstItem; n <= (int)ms_io->RangeLastItem; n++) { SetItemSelected(n, ms_io->Selected); } } +// } +void ImGuiSelectionBasicStorage::ApplyRequests(ImGuiMultiSelectIO* ms_io) +{ + // For convenience we obtain ItemsCount as passed to BeginMultiSelect(), which is optional. + // It makes sense when using ImGuiSelectionBasicStorage to simply pass your items count to BeginMultiSelect(). + // Other scheme may handle SetAll differently. + IM_ASSERT(ms_io->ItemsCount != -1 && "Missing value for items_count in BeginMultiSelect() call!"); + IM_ASSERT(AdapterIndexToStorageId != NULL); + + // This is optimized/specialized to cope with very large selections (e.g. 100k+ items) + // - A simpler version could call SetItemSelected() directly instead of ImGuiSelectionBasicStorage_BatchSetItemSelected() + ImGuiSelectionBasicStorage_BatchFinish(). + // - Optimized select can append unsorted, then sort in a second pass. Optimized unselect can clear in-place then compact in a second pass. + // - A more optimal version wouldn't even use ImGuiStorage but directly a ImVector to reduce bandwidth, but this is a reasonable trade off to reuse code. + // - There are many ways this could be better optimized. The worse case scenario being: using BoxSelect2d in a grid, box-select scrolling down while wiggling + // left and right: it affects coarse clipping + can emit multiple SetRange with 1 item each.) + // FIXME-OPT: For each block of consecutive SetRange request: + // - add all requests to a sorted list, store ID, selected, offset in ImGuiStorage. + // - rewrite sorted storage a single time. + for (ImGuiSelectionRequest& req : ms_io->Requests) + { + if (req.Type == ImGuiSelectionRequestType_SetAll) + { + Clear(); + if (req.Selected) + { + _Storage.Data.reserve(ms_io->ItemsCount); + const int size_before_amends = _Storage.Data.Size; + for (int idx = 0; idx < ms_io->ItemsCount; idx++, _SelectionOrder++) + ImGuiSelectionBasicStorage_BatchSetItemSelected(this, GetStorageIdFromIndex(idx), req.Selected, size_before_amends, _SelectionOrder); + ImGuiSelectionBasicStorage_BatchFinish(this, req.Selected, size_before_amends); + } + } + else if (req.Type == ImGuiSelectionRequestType_SetRange) + { + const int selection_changes = (int)req.RangeLastItem - (int)req.RangeFirstItem + 1; + //ImGuiContext& g = *GImGui; IMGUI_DEBUG_LOG_SELECTION("Req %d/%d: set %d to %d\n", ms_io->Requests.index_from_ptr(&req), ms_io->Requests.Size, selection_changes, req.Selected); + if (selection_changes == 1 || (selection_changes < Size / 100)) + { + // Multiple sorted insertion + copy likely to be faster. + // Technically we could do a single copy with a little more work (sort sequential SetRange requests) + for (int idx = (int)req.RangeFirstItem; idx <= (int)req.RangeLastItem; idx++) + SetItemSelected(GetStorageIdFromIndex(idx), req.Selected); + } + else + { + // Append insertion + single sort likely be faster. + // Use req.RangeDirection to set order field so that shift+clicking from 1 to 5 is different than shift+clicking from 5 to 1 + const int size_before_amends = _Storage.Data.Size; + int selection_order = _SelectionOrder + ((req.RangeDirection < 0) ? selection_changes - 1 : 0); + for (int idx = (int)req.RangeFirstItem; idx <= (int)req.RangeLastItem; idx++, selection_order += req.RangeDirection) + ImGuiSelectionBasicStorage_BatchSetItemSelected(this, GetStorageIdFromIndex(idx), req.Selected, size_before_amends, selection_order); + if (req.Selected) + _SelectionOrder += selection_changes; + ImGuiSelectionBasicStorage_BatchFinish(this, req.Selected, size_before_amends); + } + } + } +} + +//------------------------------------------------------------------------- + +ImGuiSelectionExternalStorage::ImGuiSelectionExternalStorage() +{ + UserData = NULL; + AdapterSetItemSelected = NULL; +} + +// Apply requests coming from BeginMultiSelect() and EndMultiSelect(). +// We also pull 'ms_io->ItemsCount' as passed for BeginMultiSelect() for consistency with ImGuiSelectionBasicStorage +// This makes no assumption about underlying storage. +void ImGuiSelectionExternalStorage::ApplyRequests(ImGuiMultiSelectIO* ms_io) +{ + IM_ASSERT(AdapterSetItemSelected); + for (ImGuiSelectionRequest& req : ms_io->Requests) + { + if (req.Type == ImGuiSelectionRequestType_SetAll) + for (int idx = 0; idx < ms_io->ItemsCount; idx++) + AdapterSetItemSelected(this, idx, req.Selected); + if (req.Type == ImGuiSelectionRequestType_SetRange) + for (int idx = (int)req.RangeFirstItem; idx <= (int)req.RangeLastItem; idx++) + AdapterSetItemSelected(this, idx, req.Selected); + } +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: ListBox +//------------------------------------------------------------------------- +// - BeginListBox() +// - EndListBox() +// - ListBox() +//------------------------------------------------------------------------- + +// This is essentially a thin wrapper to using BeginChild/EndChild with the ImGuiChildFlags_FrameStyle flag for stylistic changes + displaying a label. +// Tip: To have a list filling the entire window width, use size.x = -FLT_MIN and pass an non-visible label e.g. "##empty" +// Tip: If your vertical size is calculated from an item count (e.g. 10 * item_height) consider adding a fractional part to facilitate seeing scrolling boundaries (e.g. 10.25 * item_height). +bool ImGui::BeginListBox(const char* label, const ImVec2& size_arg) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = GetID(label); + const ImVec2 label_size = CalcTextSize(label, NULL, true); + + // Size default to hold ~7.25 items. + // Fractional number of items helps seeing that we can scroll down/up without looking at scrollbar. + ImVec2 size = ImTrunc(CalcItemSize(size_arg, CalcItemWidth(), GetTextLineHeightWithSpacing() * 7.25f + style.FramePadding.y * 2.0f)); + ImVec2 frame_size = ImVec2(size.x, ImMax(size.y, label_size.y)); + ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); + ImRect bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0.0f)); + g.NextItemData.ClearFlags(); + + if (!IsRectVisible(bb.Min, bb.Max)) + { + ItemSize(bb.GetSize(), style.FramePadding.y); + ItemAdd(bb, 0, &frame_bb); + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + return false; + } + + // FIXME-OPT: We could omit the BeginGroup() if label_size.x == 0.0f but would need to omit the EndGroup() as well. + BeginGroup(); + if (label_size.x > 0.0f) + { + ImVec2 label_pos = ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y); + RenderText(label_pos, label); + window->DC.CursorMaxPos = ImMax(window->DC.CursorMaxPos, label_pos + label_size); + AlignTextToFramePadding(); + } + + BeginChild(id, frame_bb.GetSize(), ImGuiChildFlags_FrameStyle); + return true; +} + +void ImGui::EndListBox() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT((window->Flags & ImGuiWindowFlags_ChildWindow) && "Mismatched BeginListBox/EndListBox calls. Did you test the return value of BeginListBox?"); + IM_UNUSED(window); + + EndChild(); + EndGroup(); // This is only required to be able to do IsItemXXX query on the whole ListBox including label +} + +bool ImGui::ListBox(const char* label, int* current_item, const char* const items[], int items_count, int height_items) +{ + const bool value_changed = ListBox(label, current_item, Items_ArrayGetter, (void*)items, items_count, height_items); + return value_changed; +} + +// This is merely a helper around BeginListBox(), EndListBox(). +// Considering using those directly to submit custom data or store selection differently. +bool ImGui::ListBox(const char* label, int* current_item, const char* (*getter)(void* user_data, int idx), void* user_data, int items_count, int height_in_items) +{ + ImGuiContext& g = *GImGui; + + // Calculate size from "height_in_items" + if (height_in_items < 0) + height_in_items = ImMin(items_count, 7); + float height_in_items_f = height_in_items + 0.25f; + ImVec2 size(0.0f, ImTrunc(GetTextLineHeightWithSpacing() * height_in_items_f + g.Style.FramePadding.y * 2.0f)); + + if (!BeginListBox(label, size)) + return false; + + // Assume all items have even height (= 1 line of text). If you need items of different height, + // you can create a custom version of ListBox() in your code without using the clipper. + bool value_changed = false; + ImGuiListClipper clipper; + clipper.Begin(items_count, GetTextLineHeightWithSpacing()); // We know exactly our line height here so we pass it as a minor optimization, but generally you don't need to. + clipper.IncludeItemByIndex(*current_item); + while (clipper.Step()) + for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) + { + const char* item_text = getter(user_data, i); + if (item_text == NULL) + item_text = "*Unknown item*"; + + PushID(i); + const bool item_selected = (i == *current_item); + if (Selectable(item_text, item_selected)) + { + *current_item = i; + value_changed = true; + } + if (item_selected) + SetItemDefaultFocus(); + PopID(); + } + EndListBox(); + + if (value_changed) + MarkItemEdited(g.LastItemData.ID); + + return value_changed; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: PlotLines, PlotHistogram +//------------------------------------------------------------------------- +// - PlotEx() [Internal] +// - PlotLines() +// - PlotHistogram() +//------------------------------------------------------------------------- +// Plot/Graph widgets are not very good. +// Consider writing your own, or using a third-party one, see: +// - ImPlot https://github.com/epezent/implot +// - others https://github.com/ocornut/imgui/wiki/Useful-Extensions +//------------------------------------------------------------------------- + +int ImGui::PlotEx(ImGuiPlotType plot_type, const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, const ImVec2& size_arg) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return -1; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + + const ImVec2 label_size = CalcTextSize(label, NULL, true); + const ImVec2 frame_size = CalcItemSize(size_arg, CalcItemWidth(), label_size.y + style.FramePadding.y * 2.0f); + + const ImRect frame_bb(window->DC.CursorPos, window->DC.CursorPos + frame_size); + const ImRect inner_bb(frame_bb.Min + style.FramePadding, frame_bb.Max - style.FramePadding); + const ImRect total_bb(frame_bb.Min, frame_bb.Max + ImVec2(label_size.x > 0.0f ? style.ItemInnerSpacing.x + label_size.x : 0.0f, 0)); + ItemSize(total_bb, style.FramePadding.y); + if (!ItemAdd(total_bb, id, &frame_bb, ImGuiItemFlags_NoNav)) + return -1; + bool hovered; + ButtonBehavior(frame_bb, id, &hovered, NULL); + + // Determine scale from values if not specified + if (scale_min == FLT_MAX || scale_max == FLT_MAX) + { + float v_min = FLT_MAX; + float v_max = -FLT_MAX; + for (int i = 0; i < values_count; i++) + { + const float v = values_getter(data, i); + if (v != v) // Ignore NaN values + continue; + v_min = ImMin(v_min, v); + v_max = ImMax(v_max, v); + } + if (scale_min == FLT_MAX) + scale_min = v_min; + if (scale_max == FLT_MAX) + scale_max = v_max; + } + + RenderFrame(frame_bb.Min, frame_bb.Max, GetColorU32(ImGuiCol_FrameBg), true, style.FrameRounding); + + const int values_count_min = (plot_type == ImGuiPlotType_Lines) ? 2 : 1; + int idx_hovered = -1; + if (values_count >= values_count_min) + { + int res_w = ImMin((int)frame_size.x, values_count) + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); + int item_count = values_count + ((plot_type == ImGuiPlotType_Lines) ? -1 : 0); + + // Tooltip on hover + if (hovered && inner_bb.Contains(g.IO.MousePos)) + { + const float t = ImClamp((g.IO.MousePos.x - inner_bb.Min.x) / (inner_bb.Max.x - inner_bb.Min.x), 0.0f, 0.9999f); + const int v_idx = (int)(t * item_count); + IM_ASSERT(v_idx >= 0 && v_idx < values_count); + + const float v0 = values_getter(data, (v_idx + values_offset) % values_count); + const float v1 = values_getter(data, (v_idx + 1 + values_offset) % values_count); + if (plot_type == ImGuiPlotType_Lines) + SetTooltip("%d: %8.4g\n%d: %8.4g", v_idx, v0, v_idx + 1, v1); + else if (plot_type == ImGuiPlotType_Histogram) + SetTooltip("%d: %8.4g", v_idx, v0); + idx_hovered = v_idx; + } + + const float t_step = 1.0f / (float)res_w; + const float inv_scale = (scale_min == scale_max) ? 0.0f : (1.0f / (scale_max - scale_min)); + + float v0 = values_getter(data, (0 + values_offset) % values_count); + float t0 = 0.0f; + ImVec2 tp0 = ImVec2( t0, 1.0f - ImSaturate((v0 - scale_min) * inv_scale) ); // Point in the normalized space of our target rectangle + float histogram_zero_line_t = (scale_min * scale_max < 0.0f) ? (1 + scale_min * inv_scale) : (scale_min < 0.0f ? 0.0f : 1.0f); // Where does the zero line stands + + const ImU32 col_base = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLines : ImGuiCol_PlotHistogram); + const ImU32 col_hovered = GetColorU32((plot_type == ImGuiPlotType_Lines) ? ImGuiCol_PlotLinesHovered : ImGuiCol_PlotHistogramHovered); + + for (int n = 0; n < res_w; n++) + { + const float t1 = t0 + t_step; + const int v1_idx = (int)(t0 * item_count + 0.5f); + IM_ASSERT(v1_idx >= 0 && v1_idx < values_count); + const float v1 = values_getter(data, (v1_idx + values_offset + 1) % values_count); + const ImVec2 tp1 = ImVec2( t1, 1.0f - ImSaturate((v1 - scale_min) * inv_scale) ); + + // NB: Draw calls are merged together by the DrawList system. Still, we should render our batch are lower level to save a bit of CPU. + ImVec2 pos0 = ImLerp(inner_bb.Min, inner_bb.Max, tp0); + ImVec2 pos1 = ImLerp(inner_bb.Min, inner_bb.Max, (plot_type == ImGuiPlotType_Lines) ? tp1 : ImVec2(tp1.x, histogram_zero_line_t)); + if (plot_type == ImGuiPlotType_Lines) + { + window->DrawList->AddLine(pos0, pos1, idx_hovered == v1_idx ? col_hovered : col_base); + } + else if (plot_type == ImGuiPlotType_Histogram) + { + if (pos1.x >= pos0.x + 2.0f) + pos1.x -= 1.0f; + window->DrawList->AddRectFilled(pos0, pos1, idx_hovered == v1_idx ? col_hovered : col_base); + } + + t0 = t1; + tp0 = tp1; + } + } + + // Text overlay + if (overlay_text) + RenderTextClipped(ImVec2(frame_bb.Min.x, frame_bb.Min.y + style.FramePadding.y), frame_bb.Max, overlay_text, NULL, NULL, ImVec2(0.5f, 0.0f)); + + if (label_size.x > 0.0f) + RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, inner_bb.Min.y), label); + + // Return hovered index or -1 if none are hovered. + // This is currently not exposed in the public API because we need a larger redesign of the whole thing, but in the short-term we are making it available in PlotEx(). + return idx_hovered; +} + +struct ImGuiPlotArrayGetterData +{ + const float* Values; + int Stride; + + ImGuiPlotArrayGetterData(const float* values, int stride) { Values = values; Stride = stride; } +}; + +static float Plot_ArrayGetter(void* data, int idx) +{ + ImGuiPlotArrayGetterData* plot_data = (ImGuiPlotArrayGetterData*)data; + const float v = *(const float*)(const void*)((const unsigned char*)plot_data->Values + (size_t)idx * plot_data->Stride); + return v; +} + +void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) +{ + ImGuiPlotArrayGetterData data(values, stride); + PlotEx(ImGuiPlotType_Lines, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +void ImGui::PlotLines(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) +{ + PlotEx(ImGuiPlotType_Lines, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride) +{ + ImGuiPlotArrayGetterData data(values, stride); + PlotEx(ImGuiPlotType_Histogram, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +void ImGui::PlotHistogram(const char* label, float (*values_getter)(void* data, int idx), void* data, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size) +{ + PlotEx(ImGuiPlotType_Histogram, label, values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: Value helpers +// Those is not very useful, legacy API. +//------------------------------------------------------------------------- +// - Value() +//------------------------------------------------------------------------- + +void ImGui::Value(const char* prefix, bool b) +{ + Text("%s: %s", prefix, (b ? "true" : "false")); +} + +void ImGui::Value(const char* prefix, int v) +{ + Text("%s: %d", prefix, v); +} + +void ImGui::Value(const char* prefix, unsigned int v) +{ + Text("%s: %d", prefix, v); +} + +void ImGui::Value(const char* prefix, float v, const char* float_format) +{ + if (float_format) + { + char fmt[64]; + ImFormatString(fmt, IM_ARRAYSIZE(fmt), "%%s: %s", float_format); + Text(fmt, prefix, v); + } + else + { + Text("%s: %.3f", prefix, v); + } +} + +//------------------------------------------------------------------------- +// [SECTION] MenuItem, BeginMenu, EndMenu, etc. +//------------------------------------------------------------------------- +// - ImGuiMenuColumns [Internal] +// - BeginMenuBar() +// - EndMenuBar() +// - BeginMainMenuBar() +// - EndMainMenuBar() +// - BeginMenu() +// - EndMenu() +// - MenuItemEx() [Internal] +// - MenuItem() +//------------------------------------------------------------------------- + +// Helpers for internal use +void ImGuiMenuColumns::Update(float spacing, bool window_reappearing) +{ + if (window_reappearing) + memset(Widths, 0, sizeof(Widths)); + Spacing = (ImU16)spacing; + CalcNextTotalWidth(true); + memset(Widths, 0, sizeof(Widths)); + TotalWidth = NextTotalWidth; + NextTotalWidth = 0; +} + +void ImGuiMenuColumns::CalcNextTotalWidth(bool update_offsets) +{ + ImU16 offset = 0; + bool want_spacing = false; + for (int i = 0; i < IM_ARRAYSIZE(Widths); i++) + { + ImU16 width = Widths[i]; + if (want_spacing && width > 0) + offset += Spacing; + want_spacing |= (width > 0); + if (update_offsets) + { + if (i == 1) { OffsetLabel = offset; } + if (i == 2) { OffsetShortcut = offset; } + if (i == 3) { OffsetMark = offset; } + } + offset += width; + } + NextTotalWidth = offset; +} + +float ImGuiMenuColumns::DeclColumns(float w_icon, float w_label, float w_shortcut, float w_mark) +{ + Widths[0] = ImMax(Widths[0], (ImU16)w_icon); + Widths[1] = ImMax(Widths[1], (ImU16)w_label); + Widths[2] = ImMax(Widths[2], (ImU16)w_shortcut); + Widths[3] = ImMax(Widths[3], (ImU16)w_mark); + CalcNextTotalWidth(false); + return (float)ImMax(TotalWidth, NextTotalWidth); +} + +// FIXME: Provided a rectangle perhaps e.g. a BeginMenuBarEx() could be used anywhere.. +// Currently the main responsibility of this function being to setup clip-rect + horizontal layout + menu navigation layer. +// Ideally we also want this to be responsible for claiming space out of the main window scrolling rectangle, in which case ImGuiWindowFlags_MenuBar will become unnecessary. +// Then later the same system could be used for multiple menu-bars, scrollbars, side-bars. +bool ImGui::BeginMenuBar() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + if (!(window->Flags & ImGuiWindowFlags_MenuBar)) + return false; + + IM_ASSERT(!window->DC.MenuBarAppending); + BeginGroup(); // Backup position on layer 0 // FIXME: Misleading to use a group for that backup/restore + PushID("##menubar"); + + // We don't clip with current window clipping rectangle as it is already set to the area below. However we clip with window full rect. + // We remove 1 worth of rounding to Max.x to that text in long menus and small windows don't tend to display over the lower-right rounded area, which looks particularly glitchy. + ImRect bar_rect = window->MenuBarRect(); + ImRect clip_rect(IM_ROUND(bar_rect.Min.x + window->WindowBorderSize), IM_ROUND(bar_rect.Min.y + window->WindowBorderSize), IM_ROUND(ImMax(bar_rect.Min.x, bar_rect.Max.x - ImMax(window->WindowRounding, window->WindowBorderSize))), IM_ROUND(bar_rect.Max.y)); + clip_rect.ClipWith(window->OuterRectClipped); + PushClipRect(clip_rect.Min, clip_rect.Max, false); + + // We overwrite CursorMaxPos because BeginGroup sets it to CursorPos (essentially the .EmitItem hack in EndMenuBar() would need something analogous here, maybe a BeginGroupEx() with flags). + window->DC.CursorPos = window->DC.CursorMaxPos = ImVec2(bar_rect.Min.x + window->DC.MenuBarOffset.x, bar_rect.Min.y + window->DC.MenuBarOffset.y); + window->DC.LayoutType = ImGuiLayoutType_Horizontal; + window->DC.IsSameLine = false; + window->DC.NavLayerCurrent = ImGuiNavLayer_Menu; + window->DC.MenuBarAppending = true; + AlignTextToFramePadding(); + return true; +} + +void ImGui::EndMenuBar() +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return; + ImGuiContext& g = *GImGui; + + // Nav: When a move request within one of our child menu failed, capture the request to navigate among our siblings. + if (NavMoveRequestButNoResultYet() && (g.NavMoveDir == ImGuiDir_Left || g.NavMoveDir == ImGuiDir_Right) && (g.NavWindow->Flags & ImGuiWindowFlags_ChildMenu)) + { + // Try to find out if the request is for one of our child menu + ImGuiWindow* nav_earliest_child = g.NavWindow; + while (nav_earliest_child->ParentWindow && (nav_earliest_child->ParentWindow->Flags & ImGuiWindowFlags_ChildMenu)) + nav_earliest_child = nav_earliest_child->ParentWindow; + if (nav_earliest_child->ParentWindow == window && nav_earliest_child->DC.ParentLayoutType == ImGuiLayoutType_Horizontal && (g.NavMoveFlags & ImGuiNavMoveFlags_Forwarded) == 0) + { + // To do so we claim focus back, restore NavId and then process the movement request for yet another frame. + // This involve a one-frame delay which isn't very problematic in this situation. We could remove it by scoring in advance for multiple window (probably not worth bothering) + const ImGuiNavLayer layer = ImGuiNavLayer_Menu; + IM_ASSERT(window->DC.NavLayersActiveMaskNext & (1 << layer)); // Sanity check (FIXME: Seems unnecessary) + FocusWindow(window); + SetNavID(window->NavLastIds[layer], layer, 0, window->NavRectRel[layer]); + g.NavDisableHighlight = true; // Hide highlight for the current frame so we don't see the intermediary selection. + g.NavDisableMouseHover = g.NavMousePosDirty = true; + NavMoveRequestForward(g.NavMoveDir, g.NavMoveClipDir, g.NavMoveFlags, g.NavMoveScrollFlags); // Repeat + } + } + + IM_MSVC_WARNING_SUPPRESS(6011); // Static Analysis false positive "warning C6011: Dereferencing NULL pointer 'window'" + IM_ASSERT(window->Flags & ImGuiWindowFlags_MenuBar); + IM_ASSERT(window->DC.MenuBarAppending); + PopClipRect(); + PopID(); + window->DC.MenuBarOffset.x = window->DC.CursorPos.x - window->Pos.x; // Save horizontal position so next append can reuse it. This is kinda equivalent to a per-layer CursorPos. + + // FIXME: Extremely confusing, cleanup by (a) working on WorkRect stack system (b) not using a Group confusingly here. + ImGuiGroupData& group_data = g.GroupStack.back(); + group_data.EmitItem = false; + ImVec2 restore_cursor_max_pos = group_data.BackupCursorMaxPos; + window->DC.IdealMaxPos.x = ImMax(window->DC.IdealMaxPos.x, window->DC.CursorMaxPos.x - window->Scroll.x); // Convert ideal extents for scrolling layer equivalent. + EndGroup(); // Restore position on layer 0 // FIXME: Misleading to use a group for that backup/restore + window->DC.LayoutType = ImGuiLayoutType_Vertical; + window->DC.IsSameLine = false; + window->DC.NavLayerCurrent = ImGuiNavLayer_Main; + window->DC.MenuBarAppending = false; + window->DC.CursorMaxPos = restore_cursor_max_pos; +} + +// Important: calling order matters! +// FIXME: Somehow overlapping with docking tech. +// FIXME: The "rect-cut" aspect of this could be formalized into a lower-level helper (rect-cut: https://halt.software/dead-simple-layouts) +bool ImGui::BeginViewportSideBar(const char* name, ImGuiViewport* viewport_p, ImGuiDir dir, float axis_size, ImGuiWindowFlags window_flags) +{ + IM_ASSERT(dir != ImGuiDir_None); + + ImGuiWindow* bar_window = FindWindowByName(name); + if (bar_window == NULL || bar_window->BeginCount == 0) + { + // Calculate and set window size/position + ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)(viewport_p ? viewport_p : GetMainViewport()); + ImRect avail_rect = viewport->GetBuildWorkRect(); + ImGuiAxis axis = (dir == ImGuiDir_Up || dir == ImGuiDir_Down) ? ImGuiAxis_Y : ImGuiAxis_X; + ImVec2 pos = avail_rect.Min; + if (dir == ImGuiDir_Right || dir == ImGuiDir_Down) + pos[axis] = avail_rect.Max[axis] - axis_size; + ImVec2 size = avail_rect.GetSize(); + size[axis] = axis_size; + SetNextWindowPos(pos); + SetNextWindowSize(size); + + // Report our size into work area (for next frame) using actual window size + if (dir == ImGuiDir_Up || dir == ImGuiDir_Left) + viewport->BuildWorkInsetMin[axis] += axis_size; + else if (dir == ImGuiDir_Down || dir == ImGuiDir_Right) + viewport->BuildWorkInsetMax[axis] += axis_size; + } + + window_flags |= ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMove; + + // Create window + PushStyleColor(ImGuiCol_WindowShadow, ImVec4(0, 0, 0, 0)); + PushStyleVar(ImGuiStyleVar_WindowRounding, 0.0f); + PushStyleVar(ImGuiStyleVar_WindowMinSize, ImVec2(0, 0)); // Lift normal size constraint + bool is_open = Begin(name, NULL, window_flags); + PopStyleVar(2); + PopStyleColor(); + + return is_open; +} + +bool ImGui::BeginMainMenuBar() +{ + ImGuiContext& g = *GImGui; + ImGuiViewportP* viewport = (ImGuiViewportP*)(void*)GetMainViewport(); + + // For the main menu bar, which cannot be moved, we honor g.Style.DisplaySafeAreaPadding to ensure text can be visible on a TV set. + // FIXME: This could be generalized as an opt-in way to clamp window->DC.CursorStartPos to avoid SafeArea? + // FIXME: Consider removing support for safe area down the line... it's messy. Nowadays consoles have support for TV calibration in OS settings. + g.NextWindowData.MenuBarOffsetMinVal = ImVec2(g.Style.DisplaySafeAreaPadding.x, ImMax(g.Style.DisplaySafeAreaPadding.y - g.Style.FramePadding.y, 0.0f)); + ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_MenuBar; + float height = GetFrameHeight(); + bool is_open = BeginViewportSideBar("##MainMenuBar", viewport, ImGuiDir_Up, height, window_flags); + g.NextWindowData.MenuBarOffsetMinVal = ImVec2(0.0f, 0.0f); + + if (is_open) + BeginMenuBar(); + else + End(); + return is_open; +} + +void ImGui::EndMainMenuBar() +{ + EndMenuBar(); + + // When the user has left the menu layer (typically: closed menus through activation of an item), we restore focus to the previous window + // FIXME: With this strategy we won't be able to restore a NULL focus. + ImGuiContext& g = *GImGui; + if (g.CurrentWindow == g.NavWindow && g.NavLayer == ImGuiNavLayer_Main && !g.NavAnyRequest) + FocusTopMostWindowUnderOne(g.NavWindow, NULL, NULL, ImGuiFocusRequestFlags_UnlessBelowModal | ImGuiFocusRequestFlags_RestoreFocusedChild); + + End(); +} + +static bool IsRootOfOpenMenuSet() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if ((g.OpenPopupStack.Size <= g.BeginPopupStack.Size) || (window->Flags & ImGuiWindowFlags_ChildMenu)) + return false; + + // Initially we used 'upper_popup->OpenParentId == window->IDStack.back()' to differentiate multiple menu sets from each others + // (e.g. inside menu bar vs loose menu items) based on parent ID. + // This would however prevent the use of e.g. PushID() user code submitting menus. + // Previously this worked between popup and a first child menu because the first child menu always had the _ChildWindow flag, + // making hovering on parent popup possible while first child menu was focused - but this was generally a bug with other side effects. + // Instead we don't treat Popup specifically (in order to consistently support menu features in them), maybe the first child menu of a Popup + // doesn't have the _ChildWindow flag, and we rely on this IsRootOfOpenMenuSet() check to allow hovering between root window/popup and first child menu. + // In the end, lack of ID check made it so we could no longer differentiate between separate menu sets. To compensate for that, we at least check parent window nav layer. + // This fixes the most common case of menu opening on hover when moving between window content and menu bar. Multiple different menu sets in same nav layer would still + // open on hover, but that should be a lesser problem, because if such menus are close in proximity in window content then it won't feel weird and if they are far apart + // it likely won't be a problem anyone runs into. + const ImGuiPopupData* upper_popup = &g.OpenPopupStack[g.BeginPopupStack.Size]; + if (window->DC.NavLayerCurrent != upper_popup->ParentNavLayer) + return false; + return upper_popup->Window && (upper_popup->Window->Flags & ImGuiWindowFlags_ChildMenu) && ImGui::IsWindowChildOf(upper_popup->Window, window, true); +} + +bool ImGui::BeginMenuEx(const char* label, const char* icon, bool enabled) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + const ImGuiStyle& style = g.Style; + const ImGuiID id = window->GetID(label); + bool menu_is_open = IsPopupOpen(id, ImGuiPopupFlags_None); + + // Sub-menus are ChildWindow so that mouse can be hovering across them (otherwise top-most popup menu would steal focus and not allow hovering on parent menu) + // The first menu in a hierarchy isn't so hovering doesn't get across (otherwise e.g. resizing borders with ImGuiButtonFlags_FlattenChildren would react), but top-most BeginMenu() will bypass that limitation. + ImGuiWindowFlags window_flags = ImGuiWindowFlags_ChildMenu | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoNavFocus; + if (window->Flags & ImGuiWindowFlags_ChildMenu) + window_flags |= ImGuiWindowFlags_ChildWindow; + + // If a menu with same the ID was already submitted, we will append to it, matching the behavior of Begin(). + // We are relying on a O(N) search - so O(N log N) over the frame - which seems like the most efficient for the expected small amount of BeginMenu() calls per frame. + // If somehow this is ever becoming a problem we can switch to use e.g. ImGuiStorage mapping key to last frame used. + if (g.MenusIdSubmittedThisFrame.contains(id)) + { + if (menu_is_open) + menu_is_open = BeginPopupEx(id, window_flags); // menu_is_open can be 'false' when the popup is completely clipped (e.g. zero size display) + else + g.NextWindowData.ClearFlags(); // we behave like Begin() and need to consume those values + return menu_is_open; + } + + // Tag menu as used. Next time BeginMenu() with same ID is called it will append to existing menu + g.MenusIdSubmittedThisFrame.push_back(id); + + ImVec2 label_size = CalcTextSize(label, NULL, true); + + // Odd hack to allow hovering across menus of a same menu-set (otherwise we wouldn't be able to hover parent without always being a Child window) + // This is only done for items for the menu set and not the full parent window. + const bool menuset_is_open = IsRootOfOpenMenuSet(); + if (menuset_is_open) + PushItemFlag(ImGuiItemFlags_NoWindowHoverableCheck, true); + + // The reference position stored in popup_pos will be used by Begin() to find a suitable position for the child menu, + // However the final position is going to be different! It is chosen by FindBestWindowPosForPopup(). + // e.g. Menus tend to overlap each other horizontally to amplify relative Z-ordering. + ImVec2 popup_pos, pos = window->DC.CursorPos; + PushID(label); + if (!enabled) + BeginDisabled(); + const ImGuiMenuColumns* offsets = &window->DC.MenuColumns; + bool pressed; + + // We use ImGuiSelectableFlags_NoSetKeyOwner to allow down on one menu item, move, up on another. + const ImGuiSelectableFlags selectable_flags = ImGuiSelectableFlags_NoHoldingActiveID | ImGuiSelectableFlags_NoSetKeyOwner | ImGuiSelectableFlags_SelectOnClick | ImGuiSelectableFlags_NoAutoClosePopups; + if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) + { + // Menu inside an horizontal menu bar + // Selectable extend their highlight by half ItemSpacing in each direction. + // For ChildMenu, the popup position will be overwritten by the call to FindBestWindowPosForPopup() in Begin() + popup_pos = ImVec2(pos.x - 1.0f - IM_TRUNC(style.ItemSpacing.x * 0.5f), pos.y - style.FramePadding.y + window->MenuBarHeight); + window->DC.CursorPos.x += IM_TRUNC(style.ItemSpacing.x * 0.5f); + PushStyleVarX(ImGuiStyleVar_ItemSpacing, style.ItemSpacing.x * 2.0f); + float w = label_size.x; + ImVec2 text_pos(window->DC.CursorPos.x + offsets->OffsetLabel, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + pressed = Selectable("", menu_is_open, selectable_flags, ImVec2(w, label_size.y)); + RenderText(text_pos, label); + PopStyleVar(); + window->DC.CursorPos.x += IM_TRUNC(style.ItemSpacing.x * (-1.0f + 0.5f)); // -1 spacing to compensate the spacing added when Selectable() did a SameLine(). It would also work to call SameLine() ourselves after the PopStyleVar(). + } + else + { + // Menu inside a regular/vertical menu + // (In a typical menu window where all items are BeginMenu() or MenuItem() calls, extra_w will always be 0.0f. + // Only when they are other items sticking out we're going to add spacing, yet only register minimum width into the layout system. + popup_pos = ImVec2(pos.x, pos.y - style.WindowPadding.y); + float icon_w = (icon && icon[0]) ? CalcTextSize(icon, NULL).x : 0.0f; + float checkmark_w = IM_TRUNC(g.FontSize * 1.20f); + float min_w = window->DC.MenuColumns.DeclColumns(icon_w, label_size.x, 0.0f, checkmark_w); // Feedback to next frame + float extra_w = ImMax(0.0f, GetContentRegionAvail().x - min_w); + ImVec2 text_pos(window->DC.CursorPos.x + offsets->OffsetLabel, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + pressed = Selectable("", menu_is_open, selectable_flags | ImGuiSelectableFlags_SpanAvailWidth, ImVec2(min_w, label_size.y)); + RenderText(text_pos, label); + if (icon_w > 0.0f) + RenderText(pos + ImVec2(offsets->OffsetIcon, 0.0f), icon); + RenderArrow(window->DrawList, pos + ImVec2(offsets->OffsetMark + extra_w + g.FontSize * 0.30f, 0.0f), GetColorU32(ImGuiCol_Text), ImGuiDir_Right); + } + if (!enabled) + EndDisabled(); + + const bool hovered = (g.HoveredId == id) && enabled && !g.NavDisableMouseHover; + if (menuset_is_open) + PopItemFlag(); + + bool want_open = false; + bool want_open_nav_init = false; + bool want_close = false; + if (window->DC.LayoutType == ImGuiLayoutType_Vertical) // (window->Flags & (ImGuiWindowFlags_Popup|ImGuiWindowFlags_ChildMenu)) + { + // Close menu when not hovering it anymore unless we are moving roughly in the direction of the menu + // Implement http://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown to avoid using timers, so menus feels more reactive. + bool moving_toward_child_menu = false; + ImGuiPopupData* child_popup = (g.BeginPopupStack.Size < g.OpenPopupStack.Size) ? &g.OpenPopupStack[g.BeginPopupStack.Size] : NULL; // Popup candidate (testing below) + ImGuiWindow* child_menu_window = (child_popup && child_popup->Window && child_popup->Window->ParentWindow == window) ? child_popup->Window : NULL; + if (g.HoveredWindow == window && child_menu_window != NULL) + { + const float ref_unit = g.FontSize; // FIXME-DPI + const float child_dir = (window->Pos.x < child_menu_window->Pos.x) ? 1.0f : -1.0f; + const ImRect next_window_rect = child_menu_window->Rect(); + ImVec2 ta = (g.IO.MousePos - g.IO.MouseDelta); + ImVec2 tb = (child_dir > 0.0f) ? next_window_rect.GetTL() : next_window_rect.GetTR(); + ImVec2 tc = (child_dir > 0.0f) ? next_window_rect.GetBL() : next_window_rect.GetBR(); + const float pad_farmost_h = ImClamp(ImFabs(ta.x - tb.x) * 0.30f, ref_unit * 0.5f, ref_unit * 2.5f); // Add a bit of extra slack. + ta.x += child_dir * -0.5f; + tb.x += child_dir * ref_unit; + tc.x += child_dir * ref_unit; + tb.y = ta.y + ImMax((tb.y - pad_farmost_h) - ta.y, -ref_unit * 8.0f); // Triangle has maximum height to limit the slope and the bias toward large sub-menus + tc.y = ta.y + ImMin((tc.y + pad_farmost_h) - ta.y, +ref_unit * 8.0f); + moving_toward_child_menu = ImTriangleContainsPoint(ta, tb, tc, g.IO.MousePos); + //GetForegroundDrawList()->AddTriangleFilled(ta, tb, tc, moving_toward_child_menu ? IM_COL32(0,128,0,128) : IM_COL32(128,0,0,128)); // [DEBUG] + } + + // The 'HovereWindow == window' check creates an inconsistency (e.g. moving away from menu slowly tends to hit same window, whereas moving away fast does not) + // But we also need to not close the top-menu menu when moving over void. Perhaps we should extend the triangle check to a larger polygon. + // (Remember to test this on BeginPopup("A")->BeginMenu("B") sequence which behaves slightly differently as B isn't a Child of A and hovering isn't shared.) + if (menu_is_open && !hovered && g.HoveredWindow == window && !moving_toward_child_menu && !g.NavDisableMouseHover && g.ActiveId == 0) + want_close = true; + + // Open + // (note: at this point 'hovered' actually includes the NavDisableMouseHover == false test) + if (!menu_is_open && pressed) // Click/activate to open + want_open = true; + else if (!menu_is_open && hovered && !moving_toward_child_menu) // Hover to open + want_open = true; + else if (!menu_is_open && hovered && g.HoveredIdTimer >= 0.30f && g.MouseStationaryTimer >= 0.30f) // Hover to open (timer fallback) + want_open = true; + if (g.NavId == id && g.NavMoveDir == ImGuiDir_Right) // Nav-Right to open + { + want_open = want_open_nav_init = true; + NavMoveRequestCancel(); + NavRestoreHighlightAfterMove(); + } + } + else + { + // Menu bar + if (menu_is_open && pressed && menuset_is_open) // Click an open menu again to close it + { + want_close = true; + want_open = menu_is_open = false; + } + else if (pressed || (hovered && menuset_is_open && !menu_is_open)) // First click to open, then hover to open others + { + want_open = true; + } + else if (g.NavId == id && g.NavMoveDir == ImGuiDir_Down) // Nav-Down to open + { + want_open = true; + NavMoveRequestCancel(); + } + } + + if (!enabled) // explicitly close if an open menu becomes disabled, facilitate users code a lot in pattern such as 'if (BeginMenu("options", has_object)) { ..use object.. }' + want_close = true; + if (want_close && IsPopupOpen(id, ImGuiPopupFlags_None)) + ClosePopupToLevel(g.BeginPopupStack.Size, true); + + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Openable | (menu_is_open ? ImGuiItemStatusFlags_Opened : 0)); + PopID(); + + if (want_open && !menu_is_open && g.OpenPopupStack.Size > g.BeginPopupStack.Size) + { + // Don't reopen/recycle same menu level in the same frame if it is a different menu ID, first close the other menu and yield for a frame. + OpenPopup(label); + } + else if (want_open) + { + menu_is_open = true; + OpenPopup(label, ImGuiPopupFlags_NoReopen);// | (want_open_nav_init ? ImGuiPopupFlags_NoReopenAlwaysNavInit : 0)); + } + + if (menu_is_open) + { + ImGuiLastItemData last_item_in_parent = g.LastItemData; + SetNextWindowPos(popup_pos, ImGuiCond_Always); // Note: misleading: the value will serve as reference for FindBestWindowPosForPopup(), not actual pos. + PushStyleVar(ImGuiStyleVar_ChildRounding, style.PopupRounding); // First level will use _PopupRounding, subsequent will use _ChildRounding + menu_is_open = BeginPopupEx(id, window_flags); // menu_is_open can be 'false' when the popup is completely clipped (e.g. zero size display) + PopStyleVar(); + if (menu_is_open) + { + // Implement what ImGuiPopupFlags_NoReopenAlwaysNavInit would do: + // Perform an init request in the case the popup was already open (via a previous mouse hover) + if (want_open && want_open_nav_init && !g.NavInitRequest) + { + FocusWindow(g.CurrentWindow, ImGuiFocusRequestFlags_UnlessBelowModal); + NavInitWindow(g.CurrentWindow, false); + } + + // Restore LastItemData so IsItemXXXX functions can work after BeginMenu()/EndMenu() + // (This fixes using IsItemClicked() and IsItemHovered(), but IsItemHovered() also relies on its support for ImGuiItemFlags_NoWindowHoverableCheck) + g.LastItemData = last_item_in_parent; + if (g.HoveredWindow == window) + g.LastItemData.StatusFlags |= ImGuiItemStatusFlags_HoveredWindow; + } + } + else + { + g.NextWindowData.ClearFlags(); // We behave like Begin() and need to consume those values + } + + return menu_is_open; +} + +bool ImGui::BeginMenu(const char* label, bool enabled) +{ + return BeginMenuEx(label, NULL, enabled); +} + +void ImGui::EndMenu() +{ + // Nav: When a left move request our menu failed, close ourselves. + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + IM_ASSERT(window->Flags & ImGuiWindowFlags_Popup); // Mismatched BeginMenu()/EndMenu() calls + ImGuiWindow* parent_window = window->ParentWindow; // Should always be != NULL is we passed assert. + if (window->BeginCount == window->BeginCountPreviousFrame) + if (g.NavMoveDir == ImGuiDir_Left && NavMoveRequestButNoResultYet()) + if (g.NavWindow && (g.NavWindow->RootWindowForNav == window) && parent_window->DC.LayoutType == ImGuiLayoutType_Vertical) + { + ClosePopupToLevel(g.BeginPopupStack.Size - 1, true); + NavMoveRequestCancel(); + } + + EndPopup(); +} + +bool ImGui::MenuItemEx(const char* label, const char* icon, const char* shortcut, bool selected, bool enabled) +{ + ImGuiWindow* window = GetCurrentWindow(); + if (window->SkipItems) + return false; + + ImGuiContext& g = *GImGui; + ImGuiStyle& style = g.Style; + ImVec2 pos = window->DC.CursorPos; + ImVec2 label_size = CalcTextSize(label, NULL, true); + + // See BeginMenuEx() for comments about this. + const bool menuset_is_open = IsRootOfOpenMenuSet(); + if (menuset_is_open) + PushItemFlag(ImGuiItemFlags_NoWindowHoverableCheck, true); + + // We've been using the equivalent of ImGuiSelectableFlags_SetNavIdOnHover on all Selectable() since early Nav system days (commit 43ee5d73), + // but I am unsure whether this should be kept at all. For now moved it to be an opt-in feature used by menus only. + bool pressed; + PushID(label); + if (!enabled) + BeginDisabled(); + + // We use ImGuiSelectableFlags_NoSetKeyOwner to allow down on one menu item, move, up on another. + const ImGuiSelectableFlags selectable_flags = ImGuiSelectableFlags_SelectOnRelease | ImGuiSelectableFlags_NoSetKeyOwner | ImGuiSelectableFlags_SetNavIdOnHover; + const ImGuiMenuColumns* offsets = &window->DC.MenuColumns; + if (window->DC.LayoutType == ImGuiLayoutType_Horizontal) + { + // Mimic the exact layout spacing of BeginMenu() to allow MenuItem() inside a menu bar, which is a little misleading but may be useful + // Note that in this situation: we don't render the shortcut, we render a highlight instead of the selected tick mark. + float w = label_size.x; + window->DC.CursorPos.x += IM_TRUNC(style.ItemSpacing.x * 0.5f); + ImVec2 text_pos(window->DC.CursorPos.x + offsets->OffsetLabel, window->DC.CursorPos.y + window->DC.CurrLineTextBaseOffset); + PushStyleVarX(ImGuiStyleVar_ItemSpacing, style.ItemSpacing.x * 2.0f); + pressed = Selectable("", selected, selectable_flags, ImVec2(w, 0.0f)); + PopStyleVar(); + if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible) + RenderText(text_pos, label); + window->DC.CursorPos.x += IM_TRUNC(style.ItemSpacing.x * (-1.0f + 0.5f)); // -1 spacing to compensate the spacing added when Selectable() did a SameLine(). It would also work to call SameLine() ourselves after the PopStyleVar(). + } + else + { + // Menu item inside a vertical menu + // (In a typical menu window where all items are BeginMenu() or MenuItem() calls, extra_w will always be 0.0f. + // Only when they are other items sticking out we're going to add spacing, yet only register minimum width into the layout system. + float icon_w = (icon && icon[0]) ? CalcTextSize(icon, NULL).x : 0.0f; + float shortcut_w = (shortcut && shortcut[0]) ? CalcTextSize(shortcut, NULL).x : 0.0f; + float checkmark_w = IM_TRUNC(g.FontSize * 1.20f); + float min_w = window->DC.MenuColumns.DeclColumns(icon_w, label_size.x, shortcut_w, checkmark_w); // Feedback for next frame + float stretch_w = ImMax(0.0f, GetContentRegionAvail().x - min_w); + pressed = Selectable("", false, selectable_flags | ImGuiSelectableFlags_SpanAvailWidth, ImVec2(min_w, label_size.y)); + if (g.LastItemData.StatusFlags & ImGuiItemStatusFlags_Visible) + { + RenderText(pos + ImVec2(offsets->OffsetLabel, 0.0f), label); + if (icon_w > 0.0f) + RenderText(pos + ImVec2(offsets->OffsetIcon, 0.0f), icon); + if (shortcut_w > 0.0f) + { + PushStyleColor(ImGuiCol_Text, style.Colors[ImGuiCol_TextDisabled]); + RenderText(pos + ImVec2(offsets->OffsetShortcut + stretch_w, 0.0f), shortcut, NULL, false); + PopStyleColor(); + } + if (selected) + RenderCheckMark(window->DrawList, pos + ImVec2(offsets->OffsetMark + stretch_w + g.FontSize * 0.40f, g.FontSize * 0.134f * 0.5f), GetColorU32(ImGuiCol_Text), g.FontSize * 0.866f); + } + } + IMGUI_TEST_ENGINE_ITEM_INFO(g.LastItemData.ID, label, g.LastItemData.StatusFlags | ImGuiItemStatusFlags_Checkable | (selected ? ImGuiItemStatusFlags_Checked : 0)); + if (!enabled) + EndDisabled(); + PopID(); + if (menuset_is_open) + PopItemFlag(); + + return pressed; +} + +bool ImGui::MenuItem(const char* label, const char* shortcut, bool selected, bool enabled) +{ + return MenuItemEx(label, NULL, shortcut, selected, enabled); +} + +bool ImGui::MenuItem(const char* label, const char* shortcut, bool* p_selected, bool enabled) +{ + if (MenuItemEx(label, NULL, shortcut, p_selected ? *p_selected : false, enabled)) + { + if (p_selected) + *p_selected = !*p_selected; + return true; + } + return false; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: BeginTabBar, EndTabBar, etc. +//------------------------------------------------------------------------- +// - BeginTabBar() +// - BeginTabBarEx() [Internal] +// - EndTabBar() +// - TabBarLayout() [Internal] +// - TabBarCalcTabID() [Internal] +// - TabBarCalcMaxTabWidth() [Internal] +// - TabBarFindTabById() [Internal] +// - TabBarFindTabByOrder() [Internal] +// - TabBarGetCurrentTab() [Internal] +// - TabBarGetTabName() [Internal] +// - TabBarRemoveTab() [Internal] +// - TabBarCloseTab() [Internal] +// - TabBarScrollClamp() [Internal] +// - TabBarScrollToTab() [Internal] +// - TabBarQueueFocus() [Internal] +// - TabBarQueueReorder() [Internal] +// - TabBarProcessReorderFromMousePos() [Internal] +// - TabBarProcessReorder() [Internal] +// - TabBarScrollingButtons() [Internal] +// - TabBarTabListPopupButton() [Internal] +//------------------------------------------------------------------------- + +struct ImGuiTabBarSection +{ + int TabCount; // Number of tabs in this section. + float Width; // Sum of width of tabs in this section (after shrinking down) + float Spacing; // Horizontal spacing at the end of the section. + + ImGuiTabBarSection() { memset(this, 0, sizeof(*this)); } +}; + +namespace ImGui +{ + static void TabBarLayout(ImGuiTabBar* tab_bar); + static ImU32 TabBarCalcTabID(ImGuiTabBar* tab_bar, const char* label, ImGuiWindow* docked_window); + static float TabBarCalcMaxTabWidth(); + static float TabBarScrollClamp(ImGuiTabBar* tab_bar, float scrolling); + static void TabBarScrollToTab(ImGuiTabBar* tab_bar, ImGuiID tab_id, ImGuiTabBarSection* sections); + static ImGuiTabItem* TabBarScrollingButtons(ImGuiTabBar* tab_bar); + static ImGuiTabItem* TabBarTabListPopupButton(ImGuiTabBar* tab_bar); +} + +ImGuiTabBar::ImGuiTabBar() +{ + memset(this, 0, sizeof(*this)); + CurrFrameVisible = PrevFrameVisible = -1; + LastTabItemIdx = -1; +} + +static inline int TabItemGetSectionIdx(const ImGuiTabItem* tab) +{ + return (tab->Flags & ImGuiTabItemFlags_Leading) ? 0 : (tab->Flags & ImGuiTabItemFlags_Trailing) ? 2 : 1; +} + +static int IMGUI_CDECL TabItemComparerBySection(const void* lhs, const void* rhs) +{ + const ImGuiTabItem* a = (const ImGuiTabItem*)lhs; + const ImGuiTabItem* b = (const ImGuiTabItem*)rhs; + const int a_section = TabItemGetSectionIdx(a); + const int b_section = TabItemGetSectionIdx(b); + if (a_section != b_section) + return a_section - b_section; + return (int)(a->IndexDuringLayout - b->IndexDuringLayout); +} + +static int IMGUI_CDECL TabItemComparerByBeginOrder(const void* lhs, const void* rhs) +{ + const ImGuiTabItem* a = (const ImGuiTabItem*)lhs; + const ImGuiTabItem* b = (const ImGuiTabItem*)rhs; + return (int)(a->BeginOrder - b->BeginOrder); +} + +static ImGuiTabBar* GetTabBarFromTabBarRef(const ImGuiPtrOrIndex& ref) +{ + ImGuiContext& g = *GImGui; + return ref.Ptr ? (ImGuiTabBar*)ref.Ptr : g.TabBars.GetByIndex(ref.Index); +} + +static ImGuiPtrOrIndex GetTabBarRefFromTabBar(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + if (g.TabBars.Contains(tab_bar)) + return ImGuiPtrOrIndex(g.TabBars.GetIndex(tab_bar)); + return ImGuiPtrOrIndex(tab_bar); +} + +bool ImGui::BeginTabBar(const char* str_id, ImGuiTabBarFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + ImGuiID id = window->GetID(str_id); + ImGuiTabBar* tab_bar = g.TabBars.GetOrAddByKey(id); + ImRect tab_bar_bb = ImRect(window->DC.CursorPos.x, window->DC.CursorPos.y, window->WorkRect.Max.x, window->DC.CursorPos.y + g.FontSize + g.Style.FramePadding.y * 2); + tab_bar->ID = id; + tab_bar->SeparatorMinX = tab_bar->BarRect.Min.x - IM_TRUNC(window->WindowPadding.x * 0.5f); + tab_bar->SeparatorMaxX = tab_bar->BarRect.Max.x + IM_TRUNC(window->WindowPadding.x * 0.5f); + //if (g.NavWindow && IsWindowChildOf(g.NavWindow, window, false, false)) + flags |= ImGuiTabBarFlags_IsFocused; + return BeginTabBarEx(tab_bar, tab_bar_bb, flags); +} + +bool ImGui::BeginTabBarEx(ImGuiTabBar* tab_bar, const ImRect& tab_bar_bb, ImGuiTabBarFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + IM_ASSERT(tab_bar->ID != 0); + if ((flags & ImGuiTabBarFlags_DockNode) == 0) + PushOverrideID(tab_bar->ID); + + // Add to stack + g.CurrentTabBarStack.push_back(GetTabBarRefFromTabBar(tab_bar)); + g.CurrentTabBar = tab_bar; + tab_bar->Window = window; + + // Append with multiple BeginTabBar()/EndTabBar() pairs. + tab_bar->BackupCursorPos = window->DC.CursorPos; + if (tab_bar->CurrFrameVisible == g.FrameCount) + { + window->DC.CursorPos = ImVec2(tab_bar->BarRect.Min.x, tab_bar->BarRect.Max.y + tab_bar->ItemSpacingY); + tab_bar->BeginCount++; + return true; + } + + // Ensure correct ordering when toggling ImGuiTabBarFlags_Reorderable flag, or when a new tab was added while being not reorderable + if ((flags & ImGuiTabBarFlags_Reorderable) != (tab_bar->Flags & ImGuiTabBarFlags_Reorderable) || (tab_bar->TabsAddedNew && !(flags & ImGuiTabBarFlags_Reorderable))) + ImQsort(tab_bar->Tabs.Data, tab_bar->Tabs.Size, sizeof(ImGuiTabItem), TabItemComparerByBeginOrder); + tab_bar->TabsAddedNew = false; + + // Flags + if ((flags & ImGuiTabBarFlags_FittingPolicyMask_) == 0) + flags |= ImGuiTabBarFlags_FittingPolicyDefault_; + + tab_bar->Flags = flags; + tab_bar->BarRect = tab_bar_bb; + tab_bar->WantLayout = true; // Layout will be done on the first call to ItemTab() + tab_bar->PrevFrameVisible = tab_bar->CurrFrameVisible; + tab_bar->CurrFrameVisible = g.FrameCount; + tab_bar->PrevTabsContentsHeight = tab_bar->CurrTabsContentsHeight; + tab_bar->CurrTabsContentsHeight = 0.0f; + tab_bar->ItemSpacingY = g.Style.ItemSpacing.y; + tab_bar->FramePadding = g.Style.FramePadding; + tab_bar->TabsActiveCount = 0; + tab_bar->LastTabItemIdx = -1; + tab_bar->BeginCount = 1; + + // Set cursor pos in a way which only be used in the off-chance the user erroneously submits item before BeginTabItem(): items will overlap + window->DC.CursorPos = ImVec2(tab_bar->BarRect.Min.x, tab_bar->BarRect.Max.y + tab_bar->ItemSpacingY); + + // Draw separator + // (it would be misleading to draw this in EndTabBar() suggesting that it may be drawn over tabs, as tab bar are appendable) + const ImU32 col = GetColorU32((flags & ImGuiTabBarFlags_IsFocused) ? ImGuiCol_TabSelected : ImGuiCol_TabDimmedSelected); + if (g.Style.TabBarBorderSize > 0.0f) + { + const float y = tab_bar->BarRect.Max.y; + window->DrawList->AddRectFilled(ImVec2(tab_bar->SeparatorMinX, y - g.Style.TabBarBorderSize), ImVec2(tab_bar->SeparatorMaxX, y), col); + } + return true; +} + +void ImGui::EndTabBar() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar != NULL, "Mismatched BeginTabBar()/EndTabBar()!"); + return; + } + + // Fallback in case no TabItem have been submitted + if (tab_bar->WantLayout) + TabBarLayout(tab_bar); + + // Restore the last visible height if no tab is visible, this reduce vertical flicker/movement when a tabs gets removed without calling SetTabItemClosed(). + const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); + if (tab_bar->VisibleTabWasSubmitted || tab_bar->VisibleTabId == 0 || tab_bar_appearing) + { + tab_bar->CurrTabsContentsHeight = ImMax(window->DC.CursorPos.y - tab_bar->BarRect.Max.y, tab_bar->CurrTabsContentsHeight); + window->DC.CursorPos.y = tab_bar->BarRect.Max.y + tab_bar->CurrTabsContentsHeight; + } + else + { + window->DC.CursorPos.y = tab_bar->BarRect.Max.y + tab_bar->PrevTabsContentsHeight; + } + if (tab_bar->BeginCount > 1) + window->DC.CursorPos = tab_bar->BackupCursorPos; + + tab_bar->LastTabItemIdx = -1; + if ((tab_bar->Flags & ImGuiTabBarFlags_DockNode) == 0) + PopID(); + + g.CurrentTabBarStack.pop_back(); + g.CurrentTabBar = g.CurrentTabBarStack.empty() ? NULL : GetTabBarFromTabBarRef(g.CurrentTabBarStack.back()); +} + +// Scrolling happens only in the central section (leading/trailing sections are not scrolling) +static float TabBarCalcScrollableWidth(ImGuiTabBar* tab_bar, ImGuiTabBarSection* sections) +{ + return tab_bar->BarRect.GetWidth() - sections[0].Width - sections[2].Width - sections[1].Spacing; +} + +// This is called only once a frame before by the first call to ItemTab() +// The reason we're not calling it in BeginTabBar() is to leave a chance to the user to call the SetTabItemClosed() functions. +static void ImGui::TabBarLayout(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + tab_bar->WantLayout = false; + + // Garbage collect by compacting list + // Detect if we need to sort out tab list (e.g. in rare case where a tab changed section) + int tab_dst_n = 0; + bool need_sort_by_section = false; + ImGuiTabBarSection sections[3]; // Layout sections: Leading, Central, Trailing + for (int tab_src_n = 0; tab_src_n < tab_bar->Tabs.Size; tab_src_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_src_n]; + if (tab->LastFrameVisible < tab_bar->PrevFrameVisible || tab->WantClose) + { + // Remove tab + if (tab_bar->VisibleTabId == tab->ID) { tab_bar->VisibleTabId = 0; } + if (tab_bar->SelectedTabId == tab->ID) { tab_bar->SelectedTabId = 0; } + if (tab_bar->NextSelectedTabId == tab->ID) { tab_bar->NextSelectedTabId = 0; } + continue; + } + if (tab_dst_n != tab_src_n) + tab_bar->Tabs[tab_dst_n] = tab_bar->Tabs[tab_src_n]; + + tab = &tab_bar->Tabs[tab_dst_n]; + tab->IndexDuringLayout = (ImS16)tab_dst_n; + + // We will need sorting if tabs have changed section (e.g. moved from one of Leading/Central/Trailing to another) + int curr_tab_section_n = TabItemGetSectionIdx(tab); + if (tab_dst_n > 0) + { + ImGuiTabItem* prev_tab = &tab_bar->Tabs[tab_dst_n - 1]; + int prev_tab_section_n = TabItemGetSectionIdx(prev_tab); + if (curr_tab_section_n == 0 && prev_tab_section_n != 0) + need_sort_by_section = true; + if (prev_tab_section_n == 2 && curr_tab_section_n != 2) + need_sort_by_section = true; + } + + sections[curr_tab_section_n].TabCount++; + tab_dst_n++; + } + if (tab_bar->Tabs.Size != tab_dst_n) + tab_bar->Tabs.resize(tab_dst_n); + + if (need_sort_by_section) + ImQsort(tab_bar->Tabs.Data, tab_bar->Tabs.Size, sizeof(ImGuiTabItem), TabItemComparerBySection); + + // Calculate spacing between sections + sections[0].Spacing = sections[0].TabCount > 0 && (sections[1].TabCount + sections[2].TabCount) > 0 ? g.Style.ItemInnerSpacing.x : 0.0f; + sections[1].Spacing = sections[1].TabCount > 0 && sections[2].TabCount > 0 ? g.Style.ItemInnerSpacing.x : 0.0f; + + // Setup next selected tab + ImGuiID scroll_to_tab_id = 0; + if (tab_bar->NextSelectedTabId) + { + tab_bar->SelectedTabId = tab_bar->NextSelectedTabId; + tab_bar->NextSelectedTabId = 0; + scroll_to_tab_id = tab_bar->SelectedTabId; + } + + // Process order change request (we could probably process it when requested but it's just saner to do it in a single spot). + if (tab_bar->ReorderRequestTabId != 0) + { + if (TabBarProcessReorder(tab_bar)) + if (tab_bar->ReorderRequestTabId == tab_bar->SelectedTabId) + scroll_to_tab_id = tab_bar->ReorderRequestTabId; + tab_bar->ReorderRequestTabId = 0; + } + + // Tab List Popup (will alter tab_bar->BarRect and therefore the available width!) + const bool tab_list_popup_button = (tab_bar->Flags & ImGuiTabBarFlags_TabListPopupButton) != 0; + if (tab_list_popup_button) + if (ImGuiTabItem* tab_to_select = TabBarTabListPopupButton(tab_bar)) // NB: Will alter BarRect.Min.x! + scroll_to_tab_id = tab_bar->SelectedTabId = tab_to_select->ID; + + // Leading/Trailing tabs will be shrink only if central one aren't visible anymore, so layout the shrink data as: leading, trailing, central + // (whereas our tabs are stored as: leading, central, trailing) + int shrink_buffer_indexes[3] = { 0, sections[0].TabCount + sections[2].TabCount, sections[0].TabCount }; + g.ShrinkWidthBuffer.resize(tab_bar->Tabs.Size); + + // Compute ideal tabs widths + store them into shrink buffer + ImGuiTabItem* most_recently_selected_tab = NULL; + int curr_section_n = -1; + bool found_selected_tab_id = false; + for (int tab_n = 0; tab_n < tab_bar->Tabs.Size; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + IM_ASSERT(tab->LastFrameVisible >= tab_bar->PrevFrameVisible); + + if ((most_recently_selected_tab == NULL || most_recently_selected_tab->LastFrameSelected < tab->LastFrameSelected) && !(tab->Flags & ImGuiTabItemFlags_Button)) + most_recently_selected_tab = tab; + if (tab->ID == tab_bar->SelectedTabId) + found_selected_tab_id = true; + if (scroll_to_tab_id == 0 && g.NavJustMovedToId == tab->ID) + scroll_to_tab_id = tab->ID; + + // Refresh tab width immediately, otherwise changes of style e.g. style.FramePadding.x would noticeably lag in the tab bar. + // Additionally, when using TabBarAddTab() to manipulate tab bar order we occasionally insert new tabs that don't have a width yet, + // and we cannot wait for the next BeginTabItem() call. We cannot compute this width within TabBarAddTab() because font size depends on the active window. + const char* tab_name = TabBarGetTabName(tab_bar, tab); + const bool has_close_button_or_unsaved_marker = (tab->Flags & ImGuiTabItemFlags_NoCloseButton) == 0 || (tab->Flags & ImGuiTabItemFlags_UnsavedDocument); + tab->ContentWidth = (tab->RequestedWidth >= 0.0f) ? tab->RequestedWidth : TabItemCalcSize(tab_name, has_close_button_or_unsaved_marker).x; + + int section_n = TabItemGetSectionIdx(tab); + ImGuiTabBarSection* section = §ions[section_n]; + section->Width += tab->ContentWidth + (section_n == curr_section_n ? g.Style.ItemInnerSpacing.x : 0.0f); + curr_section_n = section_n; + + // Store data so we can build an array sorted by width if we need to shrink tabs down + IM_MSVC_WARNING_SUPPRESS(6385); + ImGuiShrinkWidthItem* shrink_width_item = &g.ShrinkWidthBuffer[shrink_buffer_indexes[section_n]++]; + shrink_width_item->Index = tab_n; + shrink_width_item->Width = shrink_width_item->InitialWidth = tab->ContentWidth; + tab->Width = ImMax(tab->ContentWidth, 1.0f); + } + + // Compute total ideal width (used for e.g. auto-resizing a window) + tab_bar->WidthAllTabsIdeal = 0.0f; + for (int section_n = 0; section_n < 3; section_n++) + tab_bar->WidthAllTabsIdeal += sections[section_n].Width + sections[section_n].Spacing; + + // Horizontal scrolling buttons + // (note that TabBarScrollButtons() will alter BarRect.Max.x) + if ((tab_bar->WidthAllTabsIdeal > tab_bar->BarRect.GetWidth() && tab_bar->Tabs.Size > 1) && !(tab_bar->Flags & ImGuiTabBarFlags_NoTabListScrollingButtons) && (tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyScroll)) + if (ImGuiTabItem* scroll_and_select_tab = TabBarScrollingButtons(tab_bar)) + { + scroll_to_tab_id = scroll_and_select_tab->ID; + if ((scroll_and_select_tab->Flags & ImGuiTabItemFlags_Button) == 0) + tab_bar->SelectedTabId = scroll_to_tab_id; + } + + // Shrink widths if full tabs don't fit in their allocated space + float section_0_w = sections[0].Width + sections[0].Spacing; + float section_1_w = sections[1].Width + sections[1].Spacing; + float section_2_w = sections[2].Width + sections[2].Spacing; + bool central_section_is_visible = (section_0_w + section_2_w) < tab_bar->BarRect.GetWidth(); + float width_excess; + if (central_section_is_visible) + width_excess = ImMax(section_1_w - (tab_bar->BarRect.GetWidth() - section_0_w - section_2_w), 0.0f); // Excess used to shrink central section + else + width_excess = (section_0_w + section_2_w) - tab_bar->BarRect.GetWidth(); // Excess used to shrink leading/trailing section + + // With ImGuiTabBarFlags_FittingPolicyScroll policy, we will only shrink leading/trailing if the central section is not visible anymore + if (width_excess >= 1.0f && ((tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyResizeDown) || !central_section_is_visible)) + { + int shrink_data_count = (central_section_is_visible ? sections[1].TabCount : sections[0].TabCount + sections[2].TabCount); + int shrink_data_offset = (central_section_is_visible ? sections[0].TabCount + sections[2].TabCount : 0); + ShrinkWidths(g.ShrinkWidthBuffer.Data + shrink_data_offset, shrink_data_count, width_excess); + + // Apply shrunk values into tabs and sections + for (int tab_n = shrink_data_offset; tab_n < shrink_data_offset + shrink_data_count; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[g.ShrinkWidthBuffer[tab_n].Index]; + float shrinked_width = IM_TRUNC(g.ShrinkWidthBuffer[tab_n].Width); + if (shrinked_width < 0.0f) + continue; + + shrinked_width = ImMax(1.0f, shrinked_width); + int section_n = TabItemGetSectionIdx(tab); + sections[section_n].Width -= (tab->Width - shrinked_width); + tab->Width = shrinked_width; + } + } + + // Layout all active tabs + int section_tab_index = 0; + float tab_offset = 0.0f; + tab_bar->WidthAllTabs = 0.0f; + for (int section_n = 0; section_n < 3; section_n++) + { + ImGuiTabBarSection* section = §ions[section_n]; + if (section_n == 2) + tab_offset = ImMin(ImMax(0.0f, tab_bar->BarRect.GetWidth() - section->Width), tab_offset); + + for (int tab_n = 0; tab_n < section->TabCount; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[section_tab_index + tab_n]; + tab->Offset = tab_offset; + tab->NameOffset = -1; + tab_offset += tab->Width + (tab_n < section->TabCount - 1 ? g.Style.ItemInnerSpacing.x : 0.0f); + } + tab_bar->WidthAllTabs += ImMax(section->Width + section->Spacing, 0.0f); + tab_offset += section->Spacing; + section_tab_index += section->TabCount; + } + + // Clear name buffers + tab_bar->TabsNames.Buf.resize(0); + + // If we have lost the selected tab, select the next most recently active one + if (found_selected_tab_id == false) + tab_bar->SelectedTabId = 0; + if (tab_bar->SelectedTabId == 0 && tab_bar->NextSelectedTabId == 0 && most_recently_selected_tab != NULL) + scroll_to_tab_id = tab_bar->SelectedTabId = most_recently_selected_tab->ID; + + // Lock in visible tab + tab_bar->VisibleTabId = tab_bar->SelectedTabId; + tab_bar->VisibleTabWasSubmitted = false; + + // Apply request requests + if (scroll_to_tab_id != 0) + TabBarScrollToTab(tab_bar, scroll_to_tab_id, sections); + else if ((tab_bar->Flags & ImGuiTabBarFlags_FittingPolicyScroll) && IsMouseHoveringRect(tab_bar->BarRect.Min, tab_bar->BarRect.Max, true) && IsWindowContentHoverable(g.CurrentWindow)) + { + const float wheel = g.IO.MouseWheelRequestAxisSwap ? g.IO.MouseWheel : g.IO.MouseWheelH; + const ImGuiKey wheel_key = g.IO.MouseWheelRequestAxisSwap ? ImGuiKey_MouseWheelY : ImGuiKey_MouseWheelX; + if (TestKeyOwner(wheel_key, tab_bar->ID) && wheel != 0.0f) + { + const float scroll_step = wheel * TabBarCalcScrollableWidth(tab_bar, sections) / 3.0f; + tab_bar->ScrollingTargetDistToVisibility = 0.0f; + tab_bar->ScrollingTarget = TabBarScrollClamp(tab_bar, tab_bar->ScrollingTarget - scroll_step); + } + SetKeyOwner(wheel_key, tab_bar->ID); + } + + // Update scrolling + tab_bar->ScrollingAnim = TabBarScrollClamp(tab_bar, tab_bar->ScrollingAnim); + tab_bar->ScrollingTarget = TabBarScrollClamp(tab_bar, tab_bar->ScrollingTarget); + if (tab_bar->ScrollingAnim != tab_bar->ScrollingTarget) + { + // Scrolling speed adjust itself so we can always reach our target in 1/3 seconds. + // Teleport if we are aiming far off the visible line + tab_bar->ScrollingSpeed = ImMax(tab_bar->ScrollingSpeed, 70.0f * g.FontSize); + tab_bar->ScrollingSpeed = ImMax(tab_bar->ScrollingSpeed, ImFabs(tab_bar->ScrollingTarget - tab_bar->ScrollingAnim) / 0.3f); + const bool teleport = (tab_bar->PrevFrameVisible + 1 < g.FrameCount) || (tab_bar->ScrollingTargetDistToVisibility > 10.0f * g.FontSize); + tab_bar->ScrollingAnim = teleport ? tab_bar->ScrollingTarget : ImLinearSweep(tab_bar->ScrollingAnim, tab_bar->ScrollingTarget, g.IO.DeltaTime * tab_bar->ScrollingSpeed); + } + else + { + tab_bar->ScrollingSpeed = 0.0f; + } + tab_bar->ScrollingRectMinX = tab_bar->BarRect.Min.x + sections[0].Width + sections[0].Spacing; + tab_bar->ScrollingRectMaxX = tab_bar->BarRect.Max.x - sections[2].Width - sections[1].Spacing; + + // Actual layout in host window (we don't do it in BeginTabBar() so as not to waste an extra frame) + ImGuiWindow* window = g.CurrentWindow; + window->DC.CursorPos = tab_bar->BarRect.Min; + ItemSize(ImVec2(tab_bar->WidthAllTabs, tab_bar->BarRect.GetHeight()), tab_bar->FramePadding.y); + window->DC.IdealMaxPos.x = ImMax(window->DC.IdealMaxPos.x, tab_bar->BarRect.Min.x + tab_bar->WidthAllTabsIdeal); +} + +// Dockable windows uses Name/ID in the global namespace. Non-dockable items use the ID stack. +static ImU32 ImGui::TabBarCalcTabID(ImGuiTabBar* tab_bar, const char* label, ImGuiWindow* docked_window) +{ + IM_ASSERT(docked_window == NULL); // master branch only + IM_UNUSED(docked_window); + if (tab_bar->Flags & ImGuiTabBarFlags_DockNode) + { + ImGuiID id = ImHashStr(label); + KeepAliveID(id); + return id; + } + else + { + ImGuiWindow* window = GImGui->CurrentWindow; + return window->GetID(label); + } +} + +static float ImGui::TabBarCalcMaxTabWidth() +{ + ImGuiContext& g = *GImGui; + return g.FontSize * 20.0f; +} + +ImGuiTabItem* ImGui::TabBarFindTabByID(ImGuiTabBar* tab_bar, ImGuiID tab_id) +{ + if (tab_id != 0) + for (int n = 0; n < tab_bar->Tabs.Size; n++) + if (tab_bar->Tabs[n].ID == tab_id) + return &tab_bar->Tabs[n]; + return NULL; +} + +// Order = visible order, not submission order! (which is tab->BeginOrder) +ImGuiTabItem* ImGui::TabBarFindTabByOrder(ImGuiTabBar* tab_bar, int order) +{ + if (order < 0 || order >= tab_bar->Tabs.Size) + return NULL; + return &tab_bar->Tabs[order]; +} + +ImGuiTabItem* ImGui::TabBarGetCurrentTab(ImGuiTabBar* tab_bar) +{ + if (tab_bar->LastTabItemIdx < 0 || tab_bar->LastTabItemIdx >= tab_bar->Tabs.Size) + return NULL; + return &tab_bar->Tabs[tab_bar->LastTabItemIdx]; +} + +const char* ImGui::TabBarGetTabName(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) +{ + if (tab->NameOffset == -1) + return "N/A"; + IM_ASSERT(tab->NameOffset < tab_bar->TabsNames.Buf.Size); + return tab_bar->TabsNames.Buf.Data + tab->NameOffset; +} + +// The *TabId fields are already set by the docking system _before_ the actual TabItem was created, so we clear them regardless. +void ImGui::TabBarRemoveTab(ImGuiTabBar* tab_bar, ImGuiID tab_id) +{ + if (ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, tab_id)) + tab_bar->Tabs.erase(tab); + if (tab_bar->VisibleTabId == tab_id) { tab_bar->VisibleTabId = 0; } + if (tab_bar->SelectedTabId == tab_id) { tab_bar->SelectedTabId = 0; } + if (tab_bar->NextSelectedTabId == tab_id) { tab_bar->NextSelectedTabId = 0; } +} + +// Called on manual closure attempt +void ImGui::TabBarCloseTab(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) +{ + if (tab->Flags & ImGuiTabItemFlags_Button) + return; // A button appended with TabItemButton(). + + if ((tab->Flags & (ImGuiTabItemFlags_UnsavedDocument | ImGuiTabItemFlags_NoAssumedClosure)) == 0) + { + // This will remove a frame of lag for selecting another tab on closure. + // However we don't run it in the case where the 'Unsaved' flag is set, so user gets a chance to fully undo the closure + tab->WantClose = true; + if (tab_bar->VisibleTabId == tab->ID) + { + tab->LastFrameVisible = -1; + tab_bar->SelectedTabId = tab_bar->NextSelectedTabId = 0; + } + } + else + { + // Actually select before expecting closure attempt (on an UnsavedDocument tab user is expect to e.g. show a popup) + if (tab_bar->VisibleTabId != tab->ID) + TabBarQueueFocus(tab_bar, tab); + } +} + +static float ImGui::TabBarScrollClamp(ImGuiTabBar* tab_bar, float scrolling) +{ + scrolling = ImMin(scrolling, tab_bar->WidthAllTabs - tab_bar->BarRect.GetWidth()); + return ImMax(scrolling, 0.0f); +} + +// Note: we may scroll to tab that are not selected! e.g. using keyboard arrow keys +static void ImGui::TabBarScrollToTab(ImGuiTabBar* tab_bar, ImGuiID tab_id, ImGuiTabBarSection* sections) +{ + ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, tab_id); + if (tab == NULL) + return; + if (tab->Flags & ImGuiTabItemFlags_SectionMask_) + return; + + ImGuiContext& g = *GImGui; + float margin = g.FontSize * 1.0f; // When to scroll to make Tab N+1 visible always make a bit of N visible to suggest more scrolling area (since we don't have a scrollbar) + int order = TabBarGetTabOrder(tab_bar, tab); + + // Scrolling happens only in the central section (leading/trailing sections are not scrolling) + float scrollable_width = TabBarCalcScrollableWidth(tab_bar, sections); + + // We make all tabs positions all relative Sections[0].Width to make code simpler + float tab_x1 = tab->Offset - sections[0].Width + (order > sections[0].TabCount - 1 ? -margin : 0.0f); + float tab_x2 = tab->Offset - sections[0].Width + tab->Width + (order + 1 < tab_bar->Tabs.Size - sections[2].TabCount ? margin : 1.0f); + tab_bar->ScrollingTargetDistToVisibility = 0.0f; + if (tab_bar->ScrollingTarget > tab_x1 || (tab_x2 - tab_x1 >= scrollable_width)) + { + // Scroll to the left + tab_bar->ScrollingTargetDistToVisibility = ImMax(tab_bar->ScrollingAnim - tab_x2, 0.0f); + tab_bar->ScrollingTarget = tab_x1; + } + else if (tab_bar->ScrollingTarget < tab_x2 - scrollable_width) + { + // Scroll to the right + tab_bar->ScrollingTargetDistToVisibility = ImMax((tab_x1 - scrollable_width) - tab_bar->ScrollingAnim, 0.0f); + tab_bar->ScrollingTarget = tab_x2 - scrollable_width; + } +} + +void ImGui::TabBarQueueFocus(ImGuiTabBar* tab_bar, ImGuiTabItem* tab) +{ + tab_bar->NextSelectedTabId = tab->ID; +} + +void ImGui::TabBarQueueReorder(ImGuiTabBar* tab_bar, ImGuiTabItem* tab, int offset) +{ + IM_ASSERT(offset != 0); + IM_ASSERT(tab_bar->ReorderRequestTabId == 0); + tab_bar->ReorderRequestTabId = tab->ID; + tab_bar->ReorderRequestOffset = (ImS16)offset; +} + +void ImGui::TabBarQueueReorderFromMousePos(ImGuiTabBar* tab_bar, ImGuiTabItem* src_tab, ImVec2 mouse_pos) +{ + ImGuiContext& g = *GImGui; + IM_ASSERT(tab_bar->ReorderRequestTabId == 0); + if ((tab_bar->Flags & ImGuiTabBarFlags_Reorderable) == 0) + return; + + const bool is_central_section = (src_tab->Flags & ImGuiTabItemFlags_SectionMask_) == 0; + const float bar_offset = tab_bar->BarRect.Min.x - (is_central_section ? tab_bar->ScrollingTarget : 0); + + // Count number of contiguous tabs we are crossing over + const int dir = (bar_offset + src_tab->Offset) > mouse_pos.x ? -1 : +1; + const int src_idx = tab_bar->Tabs.index_from_ptr(src_tab); + int dst_idx = src_idx; + for (int i = src_idx; i >= 0 && i < tab_bar->Tabs.Size; i += dir) + { + // Reordered tabs must share the same section + const ImGuiTabItem* dst_tab = &tab_bar->Tabs[i]; + if (dst_tab->Flags & ImGuiTabItemFlags_NoReorder) + break; + if ((dst_tab->Flags & ImGuiTabItemFlags_SectionMask_) != (src_tab->Flags & ImGuiTabItemFlags_SectionMask_)) + break; + dst_idx = i; + + // Include spacing after tab, so when mouse cursor is between tabs we would not continue checking further tabs that are not hovered. + const float x1 = bar_offset + dst_tab->Offset - g.Style.ItemInnerSpacing.x; + const float x2 = bar_offset + dst_tab->Offset + dst_tab->Width + g.Style.ItemInnerSpacing.x; + //GetForegroundDrawList()->AddRect(ImVec2(x1, tab_bar->BarRect.Min.y), ImVec2(x2, tab_bar->BarRect.Max.y), IM_COL32(255, 0, 0, 255)); + if ((dir < 0 && mouse_pos.x > x1) || (dir > 0 && mouse_pos.x < x2)) + break; + } + + if (dst_idx != src_idx) + TabBarQueueReorder(tab_bar, src_tab, dst_idx - src_idx); +} + +bool ImGui::TabBarProcessReorder(ImGuiTabBar* tab_bar) +{ + ImGuiTabItem* tab1 = TabBarFindTabByID(tab_bar, tab_bar->ReorderRequestTabId); + if (tab1 == NULL || (tab1->Flags & ImGuiTabItemFlags_NoReorder)) + return false; + + //IM_ASSERT(tab_bar->Flags & ImGuiTabBarFlags_Reorderable); // <- this may happen when using debug tools + int tab2_order = TabBarGetTabOrder(tab_bar, tab1) + tab_bar->ReorderRequestOffset; + if (tab2_order < 0 || tab2_order >= tab_bar->Tabs.Size) + return false; + + // Reordered tabs must share the same section + // (Note: TabBarQueueReorderFromMousePos() also has a similar test but since we allow direct calls to TabBarQueueReorder() we do it here too) + ImGuiTabItem* tab2 = &tab_bar->Tabs[tab2_order]; + if (tab2->Flags & ImGuiTabItemFlags_NoReorder) + return false; + if ((tab1->Flags & ImGuiTabItemFlags_SectionMask_) != (tab2->Flags & ImGuiTabItemFlags_SectionMask_)) + return false; + + ImGuiTabItem item_tmp = *tab1; + ImGuiTabItem* src_tab = (tab_bar->ReorderRequestOffset > 0) ? tab1 + 1 : tab2; + ImGuiTabItem* dst_tab = (tab_bar->ReorderRequestOffset > 0) ? tab1 : tab2 + 1; + const int move_count = (tab_bar->ReorderRequestOffset > 0) ? tab_bar->ReorderRequestOffset : -tab_bar->ReorderRequestOffset; + memmove(dst_tab, src_tab, move_count * sizeof(ImGuiTabItem)); + *tab2 = item_tmp; + + if (tab_bar->Flags & ImGuiTabBarFlags_SaveSettings) + MarkIniSettingsDirty(); + return true; +} + +static ImGuiTabItem* ImGui::TabBarScrollingButtons(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + const ImVec2 arrow_button_size(g.FontSize - 2.0f, g.FontSize + g.Style.FramePadding.y * 2.0f); + const float scrolling_buttons_width = arrow_button_size.x * 2.0f; + + const ImVec2 backup_cursor_pos = window->DC.CursorPos; + //window->DrawList->AddRect(ImVec2(tab_bar->BarRect.Max.x - scrolling_buttons_width, tab_bar->BarRect.Min.y), ImVec2(tab_bar->BarRect.Max.x, tab_bar->BarRect.Max.y), IM_COL32(255,0,0,255)); + + int select_dir = 0; + ImVec4 arrow_col = g.Style.Colors[ImGuiCol_Text]; + arrow_col.w *= 0.5f; + + PushStyleColor(ImGuiCol_Text, arrow_col); + PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); + const float backup_repeat_delay = g.IO.KeyRepeatDelay; + const float backup_repeat_rate = g.IO.KeyRepeatRate; + g.IO.KeyRepeatDelay = 0.250f; + g.IO.KeyRepeatRate = 0.200f; + float x = ImMax(tab_bar->BarRect.Min.x, tab_bar->BarRect.Max.x - scrolling_buttons_width); + window->DC.CursorPos = ImVec2(x, tab_bar->BarRect.Min.y); + if (ArrowButtonEx("##<", ImGuiDir_Left, arrow_button_size, ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_Repeat)) + select_dir = -1; + window->DC.CursorPos = ImVec2(x + arrow_button_size.x, tab_bar->BarRect.Min.y); + if (ArrowButtonEx("##>", ImGuiDir_Right, arrow_button_size, ImGuiButtonFlags_PressedOnClick | ImGuiButtonFlags_Repeat)) + select_dir = +1; + PopStyleColor(2); + g.IO.KeyRepeatRate = backup_repeat_rate; + g.IO.KeyRepeatDelay = backup_repeat_delay; + + ImGuiTabItem* tab_to_scroll_to = NULL; + if (select_dir != 0) + if (ImGuiTabItem* tab_item = TabBarFindTabByID(tab_bar, tab_bar->SelectedTabId)) + { + int selected_order = TabBarGetTabOrder(tab_bar, tab_item); + int target_order = selected_order + select_dir; + + // Skip tab item buttons until another tab item is found or end is reached + while (tab_to_scroll_to == NULL) + { + // If we are at the end of the list, still scroll to make our tab visible + tab_to_scroll_to = &tab_bar->Tabs[(target_order >= 0 && target_order < tab_bar->Tabs.Size) ? target_order : selected_order]; + + // Cross through buttons + // (even if first/last item is a button, return it so we can update the scroll) + if (tab_to_scroll_to->Flags & ImGuiTabItemFlags_Button) + { + target_order += select_dir; + selected_order += select_dir; + tab_to_scroll_to = (target_order < 0 || target_order >= tab_bar->Tabs.Size) ? tab_to_scroll_to : NULL; + } + } + } + window->DC.CursorPos = backup_cursor_pos; + tab_bar->BarRect.Max.x -= scrolling_buttons_width + 1.0f; + + return tab_to_scroll_to; +} + +static ImGuiTabItem* ImGui::TabBarTabListPopupButton(ImGuiTabBar* tab_bar) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + + // We use g.Style.FramePadding.y to match the square ArrowButton size + const float tab_list_popup_button_width = g.FontSize + g.Style.FramePadding.y; + const ImVec2 backup_cursor_pos = window->DC.CursorPos; + window->DC.CursorPos = ImVec2(tab_bar->BarRect.Min.x - g.Style.FramePadding.y, tab_bar->BarRect.Min.y); + tab_bar->BarRect.Min.x += tab_list_popup_button_width; + + ImVec4 arrow_col = g.Style.Colors[ImGuiCol_Text]; + arrow_col.w *= 0.5f; + PushStyleColor(ImGuiCol_Text, arrow_col); + PushStyleColor(ImGuiCol_Button, ImVec4(0, 0, 0, 0)); + bool open = BeginCombo("##v", NULL, ImGuiComboFlags_NoPreview | ImGuiComboFlags_HeightLargest); + PopStyleColor(2); + + ImGuiTabItem* tab_to_select = NULL; + if (open) + { + for (int tab_n = 0; tab_n < tab_bar->Tabs.Size; tab_n++) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_n]; + if (tab->Flags & ImGuiTabItemFlags_Button) + continue; + + const char* tab_name = TabBarGetTabName(tab_bar, tab); + if (Selectable(tab_name, tab_bar->SelectedTabId == tab->ID)) + tab_to_select = tab; + } + EndCombo(); + } + + window->DC.CursorPos = backup_cursor_pos; + return tab_to_select; +} + +//------------------------------------------------------------------------- +// [SECTION] Widgets: BeginTabItem, EndTabItem, etc. +//------------------------------------------------------------------------- +// - BeginTabItem() +// - EndTabItem() +// - TabItemButton() +// - TabItemEx() [Internal] +// - SetTabItemClosed() +// - TabItemCalcSize() [Internal] +// - TabItemBackground() [Internal] +// - TabItemLabelAndCloseButton() [Internal] +//------------------------------------------------------------------------- + +bool ImGui::BeginTabItem(const char* label, bool* p_open, ImGuiTabItemFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar, "Needs to be called between BeginTabBar() and EndTabBar()!"); + return false; + } + IM_ASSERT(!(flags & ImGuiTabItemFlags_Button)); // BeginTabItem() Can't be used with button flags, use TabItemButton() instead! + + bool ret = TabItemEx(tab_bar, label, p_open, flags, NULL); + if (ret && !(flags & ImGuiTabItemFlags_NoPushId)) + { + ImGuiTabItem* tab = &tab_bar->Tabs[tab_bar->LastTabItemIdx]; + PushOverrideID(tab->ID); // We already hashed 'label' so push into the ID stack directly instead of doing another hash through PushID(label) + } + return ret; +} + +void ImGui::EndTabItem() +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar != NULL, "Needs to be called between BeginTabBar() and EndTabBar()!"); + return; + } + IM_ASSERT(tab_bar->LastTabItemIdx >= 0); + ImGuiTabItem* tab = &tab_bar->Tabs[tab_bar->LastTabItemIdx]; + if (!(tab->Flags & ImGuiTabItemFlags_NoPushId)) + PopID(); +} + +bool ImGui::TabItemButton(const char* label, ImGuiTabItemFlags flags) +{ + ImGuiContext& g = *GImGui; + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + ImGuiTabBar* tab_bar = g.CurrentTabBar; + if (tab_bar == NULL) + { + IM_ASSERT_USER_ERROR(tab_bar != NULL, "Needs to be called between BeginTabBar() and EndTabBar()!"); + return false; + } + return TabItemEx(tab_bar, label, NULL, flags | ImGuiTabItemFlags_Button | ImGuiTabItemFlags_NoReorder, NULL); +} + +bool ImGui::TabItemEx(ImGuiTabBar* tab_bar, const char* label, bool* p_open, ImGuiTabItemFlags flags, ImGuiWindow* docked_window) +{ + // Layout whole tab bar if not already done + ImGuiContext& g = *GImGui; + if (tab_bar->WantLayout) + { + ImGuiNextItemData backup_next_item_data = g.NextItemData; + TabBarLayout(tab_bar); + g.NextItemData = backup_next_item_data; + } + ImGuiWindow* window = g.CurrentWindow; + if (window->SkipItems) + return false; + + const ImGuiStyle& style = g.Style; + const ImGuiID id = TabBarCalcTabID(tab_bar, label, docked_window); + + // If the user called us with *p_open == false, we early out and don't render. + // We make a call to ItemAdd() so that attempts to use a contextual popup menu with an implicit ID won't use an older ID. + IMGUI_TEST_ENGINE_ITEM_INFO(id, label, g.LastItemData.StatusFlags); + if (p_open && !*p_open) + { + ItemAdd(ImRect(), id, NULL, ImGuiItemFlags_NoNav); + return false; + } + + IM_ASSERT(!p_open || !(flags & ImGuiTabItemFlags_Button)); + IM_ASSERT((flags & (ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing)) != (ImGuiTabItemFlags_Leading | ImGuiTabItemFlags_Trailing)); // Can't use both Leading and Trailing + + // Store into ImGuiTabItemFlags_NoCloseButton, also honor ImGuiTabItemFlags_NoCloseButton passed by user (although not documented) + if (flags & ImGuiTabItemFlags_NoCloseButton) + p_open = NULL; + else if (p_open == NULL) + flags |= ImGuiTabItemFlags_NoCloseButton; + + // Acquire tab data + ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, id); + bool tab_is_new = false; + if (tab == NULL) + { + tab_bar->Tabs.push_back(ImGuiTabItem()); + tab = &tab_bar->Tabs.back(); + tab->ID = id; + tab_bar->TabsAddedNew = tab_is_new = true; + } + tab_bar->LastTabItemIdx = (ImS16)tab_bar->Tabs.index_from_ptr(tab); + + // Calculate tab contents size + ImVec2 size = TabItemCalcSize(label, (p_open != NULL) || (flags & ImGuiTabItemFlags_UnsavedDocument)); + tab->RequestedWidth = -1.0f; + if (g.NextItemData.Flags & ImGuiNextItemDataFlags_HasWidth) + size.x = tab->RequestedWidth = g.NextItemData.Width; + if (tab_is_new) + tab->Width = ImMax(1.0f, size.x); + tab->ContentWidth = size.x; + tab->BeginOrder = tab_bar->TabsActiveCount++; + + const bool tab_bar_appearing = (tab_bar->PrevFrameVisible + 1 < g.FrameCount); + const bool tab_bar_focused = (tab_bar->Flags & ImGuiTabBarFlags_IsFocused) != 0; + const bool tab_appearing = (tab->LastFrameVisible + 1 < g.FrameCount); + const bool tab_just_unsaved = (flags & ImGuiTabItemFlags_UnsavedDocument) && !(tab->Flags & ImGuiTabItemFlags_UnsavedDocument); + const bool is_tab_button = (flags & ImGuiTabItemFlags_Button) != 0; + tab->LastFrameVisible = g.FrameCount; + tab->Flags = flags; + + // Append name _WITH_ the zero-terminator + if (docked_window != NULL) + { + IM_ASSERT(docked_window == NULL); // master branch only + } + else + { + tab->NameOffset = (ImS32)tab_bar->TabsNames.size(); + tab_bar->TabsNames.append(label, label + strlen(label) + 1); + } + + // Update selected tab + if (!is_tab_button) + { + if (tab_appearing && (tab_bar->Flags & ImGuiTabBarFlags_AutoSelectNewTabs) && tab_bar->NextSelectedTabId == 0) + if (!tab_bar_appearing || tab_bar->SelectedTabId == 0) + TabBarQueueFocus(tab_bar, tab); // New tabs gets activated + if ((flags & ImGuiTabItemFlags_SetSelected) && (tab_bar->SelectedTabId != id)) // _SetSelected can only be passed on explicit tab bar + TabBarQueueFocus(tab_bar, tab); + } + + // Lock visibility + // (Note: tab_contents_visible != tab_selected... because CTRL+TAB operations may preview some tabs without selecting them!) + bool tab_contents_visible = (tab_bar->VisibleTabId == id); + if (tab_contents_visible) + tab_bar->VisibleTabWasSubmitted = true; + + // On the very first frame of a tab bar we let first tab contents be visible to minimize appearing glitches + if (!tab_contents_visible && tab_bar->SelectedTabId == 0 && tab_bar_appearing) + if (tab_bar->Tabs.Size == 1 && !(tab_bar->Flags & ImGuiTabBarFlags_AutoSelectNewTabs)) + tab_contents_visible = true; + + // Note that tab_is_new is not necessarily the same as tab_appearing! When a tab bar stops being submitted + // and then gets submitted again, the tabs will have 'tab_appearing=true' but 'tab_is_new=false'. + if (tab_appearing && (!tab_bar_appearing || tab_is_new)) + { + ItemAdd(ImRect(), id, NULL, ImGuiItemFlags_NoNav); + if (is_tab_button) + return false; + return tab_contents_visible; + } + + if (tab_bar->SelectedTabId == id) + tab->LastFrameSelected = g.FrameCount; + + // Backup current layout position + const ImVec2 backup_main_cursor_pos = window->DC.CursorPos; + + // Layout + const bool is_central_section = (tab->Flags & ImGuiTabItemFlags_SectionMask_) == 0; + size.x = tab->Width; + if (is_central_section) + window->DC.CursorPos = tab_bar->BarRect.Min + ImVec2(IM_TRUNC(tab->Offset - tab_bar->ScrollingAnim), 0.0f); + else + window->DC.CursorPos = tab_bar->BarRect.Min + ImVec2(tab->Offset, 0.0f); + ImVec2 pos = window->DC.CursorPos; + ImRect bb(pos, pos + size); + + // We don't have CPU clipping primitives to clip the CloseButton (until it becomes a texture), so need to add an extra draw call (temporary in the case of vertical animation) + const bool want_clip_rect = is_central_section && (bb.Min.x < tab_bar->ScrollingRectMinX || bb.Max.x > tab_bar->ScrollingRectMaxX); + if (want_clip_rect) + PushClipRect(ImVec2(ImMax(bb.Min.x, tab_bar->ScrollingRectMinX), bb.Min.y - 1), ImVec2(tab_bar->ScrollingRectMaxX, bb.Max.y), true); + + ImVec2 backup_cursor_max_pos = window->DC.CursorMaxPos; + ItemSize(bb.GetSize(), style.FramePadding.y); + window->DC.CursorMaxPos = backup_cursor_max_pos; + + if (!ItemAdd(bb, id)) + { + if (want_clip_rect) + PopClipRect(); + window->DC.CursorPos = backup_main_cursor_pos; + return tab_contents_visible; + } + + // Click to Select a tab + // Allow the close button to overlap + ImGuiButtonFlags button_flags = ((is_tab_button ? ImGuiButtonFlags_PressedOnClickRelease : ImGuiButtonFlags_PressedOnClick) | ImGuiButtonFlags_AllowOverlap); + if (g.DragDropActive) + button_flags |= ImGuiButtonFlags_PressedOnDragDropHold; + bool hovered, held; + bool pressed = ButtonBehavior(bb, id, &hovered, &held, button_flags); + if (pressed && !is_tab_button) + TabBarQueueFocus(tab_bar, tab); + + // Drag and drop: re-order tabs + if (held && !tab_appearing && IsMouseDragging(0)) + { + if (!g.DragDropActive && (tab_bar->Flags & ImGuiTabBarFlags_Reorderable)) + { + // While moving a tab it will jump on the other side of the mouse, so we also test for MouseDelta.x + if (g.IO.MouseDelta.x < 0.0f && g.IO.MousePos.x < bb.Min.x) + { + TabBarQueueReorderFromMousePos(tab_bar, tab, g.IO.MousePos); + } + else if (g.IO.MouseDelta.x > 0.0f && g.IO.MousePos.x > bb.Max.x) + { + TabBarQueueReorderFromMousePos(tab_bar, tab, g.IO.MousePos); + } + } + } + +#if 0 + if (hovered && g.HoveredIdNotActiveTimer > TOOLTIP_DELAY && bb.GetWidth() < tab->ContentWidth) + { + // Enlarge tab display when hovering + bb.Max.x = bb.Min.x + IM_TRUNC(ImLerp(bb.GetWidth(), tab->ContentWidth, ImSaturate((g.HoveredIdNotActiveTimer - 0.40f) * 6.0f))); + display_draw_list = GetForegroundDrawList(window); + TabItemBackground(display_draw_list, bb, flags, GetColorU32(ImGuiCol_TitleBgActive)); + } +#endif + + // Render tab shape + ImDrawList* display_draw_list = window->DrawList; + const ImU32 tab_col = GetColorU32((held || hovered) ? ImGuiCol_TabHovered : tab_contents_visible ? (tab_bar_focused ? ImGuiCol_TabSelected : ImGuiCol_TabDimmedSelected) : (tab_bar_focused ? ImGuiCol_Tab : ImGuiCol_TabDimmed)); + TabItemBackground(display_draw_list, bb, flags, tab_col); + if (tab_contents_visible && (tab_bar->Flags & ImGuiTabBarFlags_DrawSelectedOverline) && style.TabBarOverlineSize > 0.0f) + { + float x_offset = IM_TRUNC(0.4f * style.TabRounding); + if (x_offset < 2.0f * g.CurrentDpiScale) + x_offset = 0.0f; + float y_offset = 1.0f * g.CurrentDpiScale; + display_draw_list->AddLine(bb.GetTL() + ImVec2(x_offset, y_offset), bb.GetTR() + ImVec2(-x_offset, y_offset), GetColorU32(tab_bar_focused ? ImGuiCol_TabSelectedOverline : ImGuiCol_TabDimmedSelectedOverline), style.TabBarOverlineSize); + } + RenderNavHighlight(bb, id); + + // Select with right mouse button. This is so the common idiom for context menu automatically highlight the current widget. + const bool hovered_unblocked = IsItemHovered(ImGuiHoveredFlags_AllowWhenBlockedByPopup); + if (tab_bar->SelectedTabId != tab->ID && hovered_unblocked && (IsMouseClicked(1) || IsMouseReleased(1)) && !is_tab_button) + TabBarQueueFocus(tab_bar, tab); + + if (tab_bar->Flags & ImGuiTabBarFlags_NoCloseWithMiddleMouseButton) + flags |= ImGuiTabItemFlags_NoCloseWithMiddleMouseButton; + + // Render tab label, process close button + const ImGuiID close_button_id = p_open ? GetIDWithSeed("#CLOSE", NULL, id) : 0; + bool just_closed; + bool text_clipped; + TabItemLabelAndCloseButton(display_draw_list, bb, tab_just_unsaved ? (flags & ~ImGuiTabItemFlags_UnsavedDocument) : flags, tab_bar->FramePadding, label, id, close_button_id, tab_contents_visible, &just_closed, &text_clipped); + if (just_closed && p_open != NULL) + { + *p_open = false; + TabBarCloseTab(tab_bar, tab); + } + + // Restore main window position so user can draw there + if (want_clip_rect) + PopClipRect(); + window->DC.CursorPos = backup_main_cursor_pos; + + // Tooltip + // (Won't work over the close button because ItemOverlap systems messes up with HoveredIdTimer-> seems ok) + // (We test IsItemHovered() to discard e.g. when another item is active or drag and drop over the tab bar, which g.HoveredId ignores) + // FIXME: This is a mess. + // FIXME: We may want disabled tab to still display the tooltip? + if (text_clipped && g.HoveredId == id && !held) + if (!(tab_bar->Flags & ImGuiTabBarFlags_NoTooltip) && !(tab->Flags & ImGuiTabItemFlags_NoTooltip)) + SetItemTooltip("%.*s", (int)(FindRenderedTextEnd(label) - label), label); + + IM_ASSERT(!is_tab_button || !(tab_bar->SelectedTabId == tab->ID && is_tab_button)); // TabItemButton should not be selected + if (is_tab_button) + return pressed; + return tab_contents_visible; +} + +// [Public] This is call is 100% optional but it allows to remove some one-frame glitches when a tab has been unexpectedly removed. +// To use it to need to call the function SetTabItemClosed() between BeginTabBar() and EndTabBar(). +// Tabs closed by the close button will automatically be flagged to avoid this issue. +void ImGui::SetTabItemClosed(const char* label) +{ + ImGuiContext& g = *GImGui; + bool is_within_manual_tab_bar = g.CurrentTabBar && !(g.CurrentTabBar->Flags & ImGuiTabBarFlags_DockNode); + if (is_within_manual_tab_bar) + { + ImGuiTabBar* tab_bar = g.CurrentTabBar; + ImGuiID tab_id = TabBarCalcTabID(tab_bar, label, NULL); + if (ImGuiTabItem* tab = TabBarFindTabByID(tab_bar, tab_id)) + tab->WantClose = true; // Will be processed by next call to TabBarLayout() + } +} + +ImVec2 ImGui::TabItemCalcSize(const char* label, bool has_close_button_or_unsaved_marker) +{ + ImGuiContext& g = *GImGui; + ImVec2 label_size = CalcTextSize(label, NULL, true); + ImVec2 size = ImVec2(label_size.x + g.Style.FramePadding.x, label_size.y + g.Style.FramePadding.y * 2.0f); + if (has_close_button_or_unsaved_marker) + size.x += g.Style.FramePadding.x + (g.Style.ItemInnerSpacing.x + g.FontSize); // We use Y intentionally to fit the close button circle. + else + size.x += g.Style.FramePadding.x + 1.0f; + return ImVec2(ImMin(size.x, TabBarCalcMaxTabWidth()), size.y); +} + +ImVec2 ImGui::TabItemCalcSize(ImGuiWindow*) +{ + IM_ASSERT(0); // This function exists to facilitate merge with 'docking' branch. + return ImVec2(0.0f, 0.0f); +} + +void ImGui::TabItemBackground(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImU32 col) +{ + // While rendering tabs, we trim 1 pixel off the top of our bounding box so they can fit within a regular frame height while looking "detached" from it. + ImGuiContext& g = *GImGui; + const float width = bb.GetWidth(); + IM_UNUSED(flags); + IM_ASSERT(width > 0.0f); + const float rounding = ImMax(0.0f, ImMin((flags & ImGuiTabItemFlags_Button) ? g.Style.FrameRounding : g.Style.TabRounding, width * 0.5f - 1.0f)); + const float y1 = bb.Min.y + 1.0f; + const float y2 = bb.Max.y - g.Style.TabBarBorderSize; + draw_list->PathLineTo(ImVec2(bb.Min.x, y2)); + draw_list->PathArcToFast(ImVec2(bb.Min.x + rounding, y1 + rounding), rounding, 6, 9); + draw_list->PathArcToFast(ImVec2(bb.Max.x - rounding, y1 + rounding), rounding, 9, 12); + draw_list->PathLineTo(ImVec2(bb.Max.x, y2)); + draw_list->PathFillConvex(col); + if (g.Style.TabBorderSize > 0.0f) + { + draw_list->PathLineTo(ImVec2(bb.Min.x + 0.5f, y2)); + draw_list->PathArcToFast(ImVec2(bb.Min.x + rounding + 0.5f, y1 + rounding + 0.5f), rounding, 6, 9); + draw_list->PathArcToFast(ImVec2(bb.Max.x - rounding - 0.5f, y1 + rounding + 0.5f), rounding, 9, 12); + draw_list->PathLineTo(ImVec2(bb.Max.x - 0.5f, y2)); + draw_list->PathStroke(GetColorU32(ImGuiCol_Border), 0, g.Style.TabBorderSize); + } +} + +// Render text label (with custom clipping) + Unsaved Document marker + Close Button logic +// We tend to lock style.FramePadding for a given tab-bar, hence the 'frame_padding' parameter. +void ImGui::TabItemLabelAndCloseButton(ImDrawList* draw_list, const ImRect& bb, ImGuiTabItemFlags flags, ImVec2 frame_padding, const char* label, ImGuiID tab_id, ImGuiID close_button_id, bool is_contents_visible, bool* out_just_closed, bool* out_text_clipped) +{ + ImGuiContext& g = *GImGui; + ImVec2 label_size = CalcTextSize(label, NULL, true); + + if (out_just_closed) + *out_just_closed = false; + if (out_text_clipped) + *out_text_clipped = false; + + if (bb.GetWidth() <= 1.0f) + return; + + // In Style V2 we'll have full override of all colors per state (e.g. focused, selected) + // But right now if you want to alter text color of tabs this is what you need to do. +#if 0 + const float backup_alpha = g.Style.Alpha; + if (!is_contents_visible) + g.Style.Alpha *= 0.7f; +#endif + + // Render text label (with clipping + alpha gradient) + unsaved marker + ImRect text_pixel_clip_bb(bb.Min.x + frame_padding.x, bb.Min.y + frame_padding.y, bb.Max.x - frame_padding.x, bb.Max.y); + ImRect text_ellipsis_clip_bb = text_pixel_clip_bb; + + // Return clipped state ignoring the close button + if (out_text_clipped) + { + *out_text_clipped = (text_ellipsis_clip_bb.Min.x + label_size.x) > text_pixel_clip_bb.Max.x; + //draw_list->AddCircle(text_ellipsis_clip_bb.Min, 3.0f, *out_text_clipped ? IM_COL32(255, 0, 0, 255) : IM_COL32(0, 255, 0, 255)); + } + + const float button_sz = g.FontSize; + const ImVec2 button_pos(ImMax(bb.Min.x, bb.Max.x - frame_padding.x - button_sz), bb.Min.y + frame_padding.y); + + // Close Button & Unsaved Marker + // We are relying on a subtle and confusing distinction between 'hovered' and 'g.HoveredId' which happens because we are using ImGuiButtonFlags_AllowOverlapMode + SetItemAllowOverlap() + // 'hovered' will be true when hovering the Tab but NOT when hovering the close button + // 'g.HoveredId==id' will be true when hovering the Tab including when hovering the close button + // 'g.ActiveId==close_button_id' will be true when we are holding on the close button, in which case both hovered booleans are false + bool close_button_pressed = false; + bool close_button_visible = false; + if (close_button_id != 0) + if (is_contents_visible || bb.GetWidth() >= ImMax(button_sz, g.Style.TabMinWidthForCloseButton)) + if (g.HoveredId == tab_id || g.HoveredId == close_button_id || g.ActiveId == tab_id || g.ActiveId == close_button_id) + close_button_visible = true; + bool unsaved_marker_visible = (flags & ImGuiTabItemFlags_UnsavedDocument) != 0 && (button_pos.x + button_sz <= bb.Max.x); + + if (close_button_visible) + { + ImGuiLastItemData last_item_backup = g.LastItemData; + if (CloseButton(close_button_id, button_pos)) + close_button_pressed = true; + g.LastItemData = last_item_backup; + + // Close with middle mouse button + if (!(flags & ImGuiTabItemFlags_NoCloseWithMiddleMouseButton) && IsMouseClicked(2)) + close_button_pressed = true; + } + else if (unsaved_marker_visible) + { + const ImRect bullet_bb(button_pos, button_pos + ImVec2(button_sz, button_sz)); + RenderBullet(draw_list, bullet_bb.GetCenter(), GetColorU32(ImGuiCol_Text)); + } + + // This is all rather complicated + // (the main idea is that because the close button only appears on hover, we don't want it to alter the ellipsis position) + // FIXME: if FramePadding is noticeably large, ellipsis_max_x will be wrong here (e.g. #3497), maybe for consistency that parameter of RenderTextEllipsis() shouldn't exist.. + float ellipsis_max_x = close_button_visible ? text_pixel_clip_bb.Max.x : bb.Max.x - 1.0f; + if (close_button_visible || unsaved_marker_visible) + { + text_pixel_clip_bb.Max.x -= close_button_visible ? (button_sz) : (button_sz * 0.80f); + text_ellipsis_clip_bb.Max.x -= unsaved_marker_visible ? (button_sz * 0.80f) : 0.0f; + ellipsis_max_x = text_pixel_clip_bb.Max.x; + } + RenderTextEllipsis(draw_list, text_ellipsis_clip_bb.Min, text_ellipsis_clip_bb.Max, text_pixel_clip_bb.Max.x, ellipsis_max_x, label, NULL, &label_size); + +#if 0 + if (!is_contents_visible) + g.Style.Alpha = backup_alpha; +#endif + + if (out_just_closed) + *out_just_closed = close_button_pressed; +} + + +#endif // #ifndef IMGUI_DISABLE diff --git a/external/lumin/thirdparty/imgui/imstb_rectpack.h b/external/lumin/thirdparty/imgui/imstb_rectpack.h new file mode 100644 index 0000000..f6917e7 --- /dev/null +++ b/external/lumin/thirdparty/imgui/imstb_rectpack.h @@ -0,0 +1,627 @@ +// [DEAR IMGUI] +// This is a slightly modified version of stb_rect_pack.h 1.01. +// Grep for [DEAR IMGUI] to find the changes. +// +// stb_rect_pack.h - v1.01 - public domain - rectangle packing +// Sean Barrett 2014 +// +// Useful for e.g. packing rectangular textures into an atlas. +// Does not do rotation. +// +// Before #including, +// +// #define STB_RECT_PACK_IMPLEMENTATION +// +// in the file that you want to have the implementation. +// +// Not necessarily the awesomest packing method, but better than +// the totally naive one in stb_truetype (which is primarily what +// this is meant to replace). +// +// Has only had a few tests run, may have issues. +// +// More docs to come. +// +// No memory allocations; uses qsort() and assert() from stdlib. +// Can override those by defining STBRP_SORT and STBRP_ASSERT. +// +// This library currently uses the Skyline Bottom-Left algorithm. +// +// Please note: better rectangle packers are welcome! Please +// implement them to the same API, but with a different init +// function. +// +// Credits +// +// Library +// Sean Barrett +// Minor features +// Martins Mozeiko +// github:IntellectualKitty +// +// Bugfixes / warning fixes +// Jeremy Jaussaud +// Fabian Giesen +// +// Version history: +// +// 1.01 (2021-07-11) always use large rect mode, expose STBRP__MAXVAL in public section +// 1.00 (2019-02-25) avoid small space waste; gracefully fail too-wide rectangles +// 0.99 (2019-02-07) warning fixes +// 0.11 (2017-03-03) return packing success/fail result +// 0.10 (2016-10-25) remove cast-away-const to avoid warnings +// 0.09 (2016-08-27) fix compiler warnings +// 0.08 (2015-09-13) really fix bug with empty rects (w=0 or h=0) +// 0.07 (2015-09-13) fix bug with empty rects (w=0 or h=0) +// 0.06 (2015-04-15) added STBRP_SORT to allow replacing qsort +// 0.05: added STBRP_ASSERT to allow replacing assert +// 0.04: fixed minor bug in STBRP_LARGE_RECTS support +// 0.01: initial release +// +// LICENSE +// +// See end of file for license information. + +////////////////////////////////////////////////////////////////////////////// +// +// INCLUDE SECTION +// + +#ifndef STB_INCLUDE_STB_RECT_PACK_H +#define STB_INCLUDE_STB_RECT_PACK_H + +#define STB_RECT_PACK_VERSION 1 + +#ifdef STBRP_STATIC +#define STBRP_DEF static +#else +#define STBRP_DEF extern +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct stbrp_context stbrp_context; +typedef struct stbrp_node stbrp_node; +typedef struct stbrp_rect stbrp_rect; + +typedef int stbrp_coord; + +#define STBRP__MAXVAL 0x7fffffff +// Mostly for internal use, but this is the maximum supported coordinate value. + +STBRP_DEF int stbrp_pack_rects (stbrp_context *context, stbrp_rect *rects, int num_rects); +// Assign packed locations to rectangles. The rectangles are of type +// 'stbrp_rect' defined below, stored in the array 'rects', and there +// are 'num_rects' many of them. +// +// Rectangles which are successfully packed have the 'was_packed' flag +// set to a non-zero value and 'x' and 'y' store the minimum location +// on each axis (i.e. bottom-left in cartesian coordinates, top-left +// if you imagine y increasing downwards). Rectangles which do not fit +// have the 'was_packed' flag set to 0. +// +// You should not try to access the 'rects' array from another thread +// while this function is running, as the function temporarily reorders +// the array while it executes. +// +// To pack into another rectangle, you need to call stbrp_init_target +// again. To continue packing into the same rectangle, you can call +// this function again. Calling this multiple times with multiple rect +// arrays will probably produce worse packing results than calling it +// a single time with the full rectangle array, but the option is +// available. +// +// The function returns 1 if all of the rectangles were successfully +// packed and 0 otherwise. + +struct stbrp_rect +{ + // reserved for your use: + int id; + + // input: + stbrp_coord w, h; + + // output: + stbrp_coord x, y; + int was_packed; // non-zero if valid packing + +}; // 16 bytes, nominally + + +STBRP_DEF void stbrp_init_target (stbrp_context *context, int width, int height, stbrp_node *nodes, int num_nodes); +// Initialize a rectangle packer to: +// pack a rectangle that is 'width' by 'height' in dimensions +// using temporary storage provided by the array 'nodes', which is 'num_nodes' long +// +// You must call this function every time you start packing into a new target. +// +// There is no "shutdown" function. The 'nodes' memory must stay valid for +// the following stbrp_pack_rects() call (or calls), but can be freed after +// the call (or calls) finish. +// +// Note: to guarantee best results, either: +// 1. make sure 'num_nodes' >= 'width' +// or 2. call stbrp_allow_out_of_mem() defined below with 'allow_out_of_mem = 1' +// +// If you don't do either of the above things, widths will be quantized to multiples +// of small integers to guarantee the algorithm doesn't run out of temporary storage. +// +// If you do #2, then the non-quantized algorithm will be used, but the algorithm +// may run out of temporary storage and be unable to pack some rectangles. + +STBRP_DEF void stbrp_setup_allow_out_of_mem (stbrp_context *context, int allow_out_of_mem); +// Optionally call this function after init but before doing any packing to +// change the handling of the out-of-temp-memory scenario, described above. +// If you call init again, this will be reset to the default (false). + + +STBRP_DEF void stbrp_setup_heuristic (stbrp_context *context, int heuristic); +// Optionally select which packing heuristic the library should use. Different +// heuristics will produce better/worse results for different data sets. +// If you call init again, this will be reset to the default. + +enum +{ + STBRP_HEURISTIC_Skyline_default=0, + STBRP_HEURISTIC_Skyline_BL_sortHeight = STBRP_HEURISTIC_Skyline_default, + STBRP_HEURISTIC_Skyline_BF_sortHeight +}; + + +////////////////////////////////////////////////////////////////////////////// +// +// the details of the following structures don't matter to you, but they must +// be visible so you can handle the memory allocations for them + +struct stbrp_node +{ + stbrp_coord x,y; + stbrp_node *next; +}; + +struct stbrp_context +{ + int width; + int height; + int align; + int init_mode; + int heuristic; + int num_nodes; + stbrp_node *active_head; + stbrp_node *free_head; + stbrp_node extra[2]; // we allocate two extra nodes so optimal user-node-count is 'width' not 'width+2' +}; + +#ifdef __cplusplus +} +#endif + +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// IMPLEMENTATION SECTION +// + +#ifdef STB_RECT_PACK_IMPLEMENTATION +#ifndef STBRP_SORT +#include +#define STBRP_SORT qsort +#endif + +#ifndef STBRP_ASSERT +#include +#define STBRP_ASSERT assert +#endif + +#ifdef _MSC_VER +#define STBRP__NOTUSED(v) (void)(v) +#define STBRP__CDECL __cdecl +#else +#define STBRP__NOTUSED(v) (void)sizeof(v) +#define STBRP__CDECL +#endif + +enum +{ + STBRP__INIT_skyline = 1 +}; + +STBRP_DEF void stbrp_setup_heuristic(stbrp_context *context, int heuristic) +{ + switch (context->init_mode) { + case STBRP__INIT_skyline: + STBRP_ASSERT(heuristic == STBRP_HEURISTIC_Skyline_BL_sortHeight || heuristic == STBRP_HEURISTIC_Skyline_BF_sortHeight); + context->heuristic = heuristic; + break; + default: + STBRP_ASSERT(0); + } +} + +STBRP_DEF void stbrp_setup_allow_out_of_mem(stbrp_context *context, int allow_out_of_mem) +{ + if (allow_out_of_mem) + // if it's ok to run out of memory, then don't bother aligning them; + // this gives better packing, but may fail due to OOM (even though + // the rectangles easily fit). @TODO a smarter approach would be to only + // quantize once we've hit OOM, then we could get rid of this parameter. + context->align = 1; + else { + // if it's not ok to run out of memory, then quantize the widths + // so that num_nodes is always enough nodes. + // + // I.e. num_nodes * align >= width + // align >= width / num_nodes + // align = ceil(width/num_nodes) + + context->align = (context->width + context->num_nodes-1) / context->num_nodes; + } +} + +STBRP_DEF void stbrp_init_target(stbrp_context *context, int width, int height, stbrp_node *nodes, int num_nodes) +{ + int i; + + for (i=0; i < num_nodes-1; ++i) + nodes[i].next = &nodes[i+1]; + nodes[i].next = NULL; + context->init_mode = STBRP__INIT_skyline; + context->heuristic = STBRP_HEURISTIC_Skyline_default; + context->free_head = &nodes[0]; + context->active_head = &context->extra[0]; + context->width = width; + context->height = height; + context->num_nodes = num_nodes; + stbrp_setup_allow_out_of_mem(context, 0); + + // node 0 is the full width, node 1 is the sentinel (lets us not store width explicitly) + context->extra[0].x = 0; + context->extra[0].y = 0; + context->extra[0].next = &context->extra[1]; + context->extra[1].x = (stbrp_coord) width; + context->extra[1].y = (1<<30); + context->extra[1].next = NULL; +} + +// find minimum y position if it starts at x1 +static int stbrp__skyline_find_min_y(stbrp_context *c, stbrp_node *first, int x0, int width, int *pwaste) +{ + stbrp_node *node = first; + int x1 = x0 + width; + int min_y, visited_width, waste_area; + + STBRP__NOTUSED(c); + + STBRP_ASSERT(first->x <= x0); + + #if 0 + // skip in case we're past the node + while (node->next->x <= x0) + ++node; + #else + STBRP_ASSERT(node->next->x > x0); // we ended up handling this in the caller for efficiency + #endif + + STBRP_ASSERT(node->x <= x0); + + min_y = 0; + waste_area = 0; + visited_width = 0; + while (node->x < x1) { + if (node->y > min_y) { + // raise min_y higher. + // we've accounted for all waste up to min_y, + // but we'll now add more waste for everything we've visted + waste_area += visited_width * (node->y - min_y); + min_y = node->y; + // the first time through, visited_width might be reduced + if (node->x < x0) + visited_width += node->next->x - x0; + else + visited_width += node->next->x - node->x; + } else { + // add waste area + int under_width = node->next->x - node->x; + if (under_width + visited_width > width) + under_width = width - visited_width; + waste_area += under_width * (min_y - node->y); + visited_width += under_width; + } + node = node->next; + } + + *pwaste = waste_area; + return min_y; +} + +typedef struct +{ + int x,y; + stbrp_node **prev_link; +} stbrp__findresult; + +static stbrp__findresult stbrp__skyline_find_best_pos(stbrp_context *c, int width, int height) +{ + int best_waste = (1<<30), best_x, best_y = (1 << 30); + stbrp__findresult fr; + stbrp_node **prev, *node, *tail, **best = NULL; + + // align to multiple of c->align + width = (width + c->align - 1); + width -= width % c->align; + STBRP_ASSERT(width % c->align == 0); + + // if it can't possibly fit, bail immediately + if (width > c->width || height > c->height) { + fr.prev_link = NULL; + fr.x = fr.y = 0; + return fr; + } + + node = c->active_head; + prev = &c->active_head; + while (node->x + width <= c->width) { + int y,waste; + y = stbrp__skyline_find_min_y(c, node, node->x, width, &waste); + if (c->heuristic == STBRP_HEURISTIC_Skyline_BL_sortHeight) { // actually just want to test BL + // bottom left + if (y < best_y) { + best_y = y; + best = prev; + } + } else { + // best-fit + if (y + height <= c->height) { + // can only use it if it first vertically + if (y < best_y || (y == best_y && waste < best_waste)) { + best_y = y; + best_waste = waste; + best = prev; + } + } + } + prev = &node->next; + node = node->next; + } + + best_x = (best == NULL) ? 0 : (*best)->x; + + // if doing best-fit (BF), we also have to try aligning right edge to each node position + // + // e.g, if fitting + // + // ____________________ + // |____________________| + // + // into + // + // | | + // | ____________| + // |____________| + // + // then right-aligned reduces waste, but bottom-left BL is always chooses left-aligned + // + // This makes BF take about 2x the time + + if (c->heuristic == STBRP_HEURISTIC_Skyline_BF_sortHeight) { + tail = c->active_head; + node = c->active_head; + prev = &c->active_head; + // find first node that's admissible + while (tail->x < width) + tail = tail->next; + while (tail) { + int xpos = tail->x - width; + int y,waste; + STBRP_ASSERT(xpos >= 0); + // find the left position that matches this + while (node->next->x <= xpos) { + prev = &node->next; + node = node->next; + } + STBRP_ASSERT(node->next->x > xpos && node->x <= xpos); + y = stbrp__skyline_find_min_y(c, node, xpos, width, &waste); + if (y + height <= c->height) { + if (y <= best_y) { + if (y < best_y || waste < best_waste || (waste==best_waste && xpos < best_x)) { + best_x = xpos; + //STBRP_ASSERT(y <= best_y); [DEAR IMGUI] + best_y = y; + best_waste = waste; + best = prev; + } + } + } + tail = tail->next; + } + } + + fr.prev_link = best; + fr.x = best_x; + fr.y = best_y; + return fr; +} + +static stbrp__findresult stbrp__skyline_pack_rectangle(stbrp_context *context, int width, int height) +{ + // find best position according to heuristic + stbrp__findresult res = stbrp__skyline_find_best_pos(context, width, height); + stbrp_node *node, *cur; + + // bail if: + // 1. it failed + // 2. the best node doesn't fit (we don't always check this) + // 3. we're out of memory + if (res.prev_link == NULL || res.y + height > context->height || context->free_head == NULL) { + res.prev_link = NULL; + return res; + } + + // on success, create new node + node = context->free_head; + node->x = (stbrp_coord) res.x; + node->y = (stbrp_coord) (res.y + height); + + context->free_head = node->next; + + // insert the new node into the right starting point, and + // let 'cur' point to the remaining nodes needing to be + // stiched back in + + cur = *res.prev_link; + if (cur->x < res.x) { + // preserve the existing one, so start testing with the next one + stbrp_node *next = cur->next; + cur->next = node; + cur = next; + } else { + *res.prev_link = node; + } + + // from here, traverse cur and free the nodes, until we get to one + // that shouldn't be freed + while (cur->next && cur->next->x <= res.x + width) { + stbrp_node *next = cur->next; + // move the current node to the free list + cur->next = context->free_head; + context->free_head = cur; + cur = next; + } + + // stitch the list back in + node->next = cur; + + if (cur->x < res.x + width) + cur->x = (stbrp_coord) (res.x + width); + +#ifdef _DEBUG + cur = context->active_head; + while (cur->x < context->width) { + STBRP_ASSERT(cur->x < cur->next->x); + cur = cur->next; + } + STBRP_ASSERT(cur->next == NULL); + + { + int count=0; + cur = context->active_head; + while (cur) { + cur = cur->next; + ++count; + } + cur = context->free_head; + while (cur) { + cur = cur->next; + ++count; + } + STBRP_ASSERT(count == context->num_nodes+2); + } +#endif + + return res; +} + +static int STBRP__CDECL rect_height_compare(const void *a, const void *b) +{ + const stbrp_rect *p = (const stbrp_rect *) a; + const stbrp_rect *q = (const stbrp_rect *) b; + if (p->h > q->h) + return -1; + if (p->h < q->h) + return 1; + return (p->w > q->w) ? -1 : (p->w < q->w); +} + +static int STBRP__CDECL rect_original_order(const void *a, const void *b) +{ + const stbrp_rect *p = (const stbrp_rect *) a; + const stbrp_rect *q = (const stbrp_rect *) b; + return (p->was_packed < q->was_packed) ? -1 : (p->was_packed > q->was_packed); +} + +STBRP_DEF int stbrp_pack_rects(stbrp_context *context, stbrp_rect *rects, int num_rects) +{ + int i, all_rects_packed = 1; + + // we use the 'was_packed' field internally to allow sorting/unsorting + for (i=0; i < num_rects; ++i) { + rects[i].was_packed = i; + } + + // sort according to heuristic + STBRP_SORT(rects, num_rects, sizeof(rects[0]), rect_height_compare); + + for (i=0; i < num_rects; ++i) { + if (rects[i].w == 0 || rects[i].h == 0) { + rects[i].x = rects[i].y = 0; // empty rect needs no space + } else { + stbrp__findresult fr = stbrp__skyline_pack_rectangle(context, rects[i].w, rects[i].h); + if (fr.prev_link) { + rects[i].x = (stbrp_coord) fr.x; + rects[i].y = (stbrp_coord) fr.y; + } else { + rects[i].x = rects[i].y = STBRP__MAXVAL; + } + } + } + + // unsort + STBRP_SORT(rects, num_rects, sizeof(rects[0]), rect_original_order); + + // set was_packed flags and all_rects_packed status + for (i=0; i < num_rects; ++i) { + rects[i].was_packed = !(rects[i].x == STBRP__MAXVAL && rects[i].y == STBRP__MAXVAL); + if (!rects[i].was_packed) + all_rects_packed = 0; + } + + // return the all_rects_packed status + return all_rects_packed; +} +#endif + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +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. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +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 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/external/lumin/thirdparty/imgui/imstb_textedit.h b/external/lumin/thirdparty/imgui/imstb_textedit.h new file mode 100644 index 0000000..b7a761c --- /dev/null +++ b/external/lumin/thirdparty/imgui/imstb_textedit.h @@ -0,0 +1,1469 @@ +// [DEAR IMGUI] +// This is a slightly modified version of stb_textedit.h 1.14. +// Those changes would need to be pushed into nothings/stb: +// - Fix in stb_textedit_discard_redo (see https://github.com/nothings/stb/issues/321) +// - Fix in stb_textedit_find_charpos to handle last line (see https://github.com/ocornut/imgui/issues/6000 + #6783) +// - Added name to struct or it may be forward declared in our code. +// - Added UTF-8 support (see https://github.com/nothings/stb/issues/188 + https://github.com/ocornut/imgui/pull/7925) +// Grep for [DEAR IMGUI] to find the changes. +// - Also renamed macros used or defined outside of IMSTB_TEXTEDIT_IMPLEMENTATION block from STB_TEXTEDIT_* to IMSTB_TEXTEDIT_* + +// stb_textedit.h - v1.14 - public domain - Sean Barrett +// Development of this library was sponsored by RAD Game Tools +// +// This C header file implements the guts of a multi-line text-editing +// widget; you implement display, word-wrapping, and low-level string +// insertion/deletion, and stb_textedit will map user inputs into +// insertions & deletions, plus updates to the cursor position, +// selection state, and undo state. +// +// It is intended for use in games and other systems that need to build +// their own custom widgets and which do not have heavy text-editing +// requirements (this library is not recommended for use for editing large +// texts, as its performance does not scale and it has limited undo). +// +// Non-trivial behaviors are modelled after Windows text controls. +// +// +// LICENSE +// +// See end of file for license information. +// +// +// DEPENDENCIES +// +// Uses the C runtime function 'memmove', which you can override +// by defining IMSTB_TEXTEDIT_memmove before the implementation. +// Uses no other functions. Performs no runtime allocations. +// +// +// VERSION HISTORY +// +// 1.14 (2021-07-11) page up/down, various fixes +// 1.13 (2019-02-07) fix bug in undo size management +// 1.12 (2018-01-29) user can change STB_TEXTEDIT_KEYTYPE, fix redo to avoid crash +// 1.11 (2017-03-03) fix HOME on last line, dragging off single-line textfield +// 1.10 (2016-10-25) suppress warnings about casting away const with -Wcast-qual +// 1.9 (2016-08-27) customizable move-by-word +// 1.8 (2016-04-02) better keyboard handling when mouse button is down +// 1.7 (2015-09-13) change y range handling in case baseline is non-0 +// 1.6 (2015-04-15) allow STB_TEXTEDIT_memmove +// 1.5 (2014-09-10) add support for secondary keys for OS X +// 1.4 (2014-08-17) fix signed/unsigned warnings +// 1.3 (2014-06-19) fix mouse clicking to round to nearest char boundary +// 1.2 (2014-05-27) fix some RAD types that had crept into the new code +// 1.1 (2013-12-15) move-by-word (requires STB_TEXTEDIT_IS_SPACE ) +// 1.0 (2012-07-26) improve documentation, initial public release +// 0.3 (2012-02-24) bugfixes, single-line mode; insert mode +// 0.2 (2011-11-28) fixes to undo/redo +// 0.1 (2010-07-08) initial version +// +// ADDITIONAL CONTRIBUTORS +// +// Ulf Winklemann: move-by-word in 1.1 +// Fabian Giesen: secondary key inputs in 1.5 +// Martins Mozeiko: STB_TEXTEDIT_memmove in 1.6 +// Louis Schnellbach: page up/down in 1.14 +// +// Bugfixes: +// Scott Graham +// Daniel Keller +// Omar Cornut +// Dan Thompson +// +// USAGE +// +// This file behaves differently depending on what symbols you define +// before including it. +// +// +// Header-file mode: +// +// If you do not define STB_TEXTEDIT_IMPLEMENTATION before including this, +// it will operate in "header file" mode. In this mode, it declares a +// single public symbol, STB_TexteditState, which encapsulates the current +// state of a text widget (except for the string, which you will store +// separately). +// +// To compile in this mode, you must define STB_TEXTEDIT_CHARTYPE to a +// primitive type that defines a single character (e.g. char, wchar_t, etc). +// +// To save space or increase undo-ability, you can optionally define the +// following things that are used by the undo system: +// +// STB_TEXTEDIT_POSITIONTYPE small int type encoding a valid cursor position +// STB_TEXTEDIT_UNDOSTATECOUNT the number of undo states to allow +// STB_TEXTEDIT_UNDOCHARCOUNT the number of characters to store in the undo buffer +// +// If you don't define these, they are set to permissive types and +// moderate sizes. The undo system does no memory allocations, so +// it grows STB_TexteditState by the worst-case storage which is (in bytes): +// +// [4 + 3 * sizeof(STB_TEXTEDIT_POSITIONTYPE)] * STB_TEXTEDIT_UNDOSTATECOUNT +// + sizeof(STB_TEXTEDIT_CHARTYPE) * STB_TEXTEDIT_UNDOCHARCOUNT +// +// +// Implementation mode: +// +// If you define STB_TEXTEDIT_IMPLEMENTATION before including this, it +// will compile the implementation of the text edit widget, depending +// on a large number of symbols which must be defined before the include. +// +// The implementation is defined only as static functions. You will then +// need to provide your own APIs in the same file which will access the +// static functions. +// +// The basic concept is that you provide a "string" object which +// behaves like an array of characters. stb_textedit uses indices to +// refer to positions in the string, implicitly representing positions +// in the displayed textedit. This is true for both plain text and +// rich text; even with rich text stb_truetype interacts with your +// code as if there was an array of all the displayed characters. +// +// Symbols that must be the same in header-file and implementation mode: +// +// STB_TEXTEDIT_CHARTYPE the character type +// STB_TEXTEDIT_POSITIONTYPE small type that is a valid cursor position +// STB_TEXTEDIT_UNDOSTATECOUNT the number of undo states to allow +// STB_TEXTEDIT_UNDOCHARCOUNT the number of characters to store in the undo buffer +// +// Symbols you must define for implementation mode: +// +// STB_TEXTEDIT_STRING the type of object representing a string being edited, +// typically this is a wrapper object with other data you need +// +// STB_TEXTEDIT_STRINGLEN(obj) the length of the string (ideally O(1)) +// STB_TEXTEDIT_LAYOUTROW(&r,obj,n) returns the results of laying out a line of characters +// starting from character #n (see discussion below) +// STB_TEXTEDIT_GETWIDTH(obj,n,i) returns the pixel delta from the xpos of the i'th character +// to the xpos of the i+1'th char for a line of characters +// starting at character #n (i.e. accounts for kerning +// with previous char) +// STB_TEXTEDIT_KEYTOTEXT(k) maps a keyboard input to an insertable character +// (return type is int, -1 means not valid to insert) +// STB_TEXTEDIT_GETCHAR(obj,i) returns the i'th character of obj, 0-based +// STB_TEXTEDIT_NEWLINE the character returned by _GETCHAR() we recognize +// as manually wordwrapping for end-of-line positioning +// +// STB_TEXTEDIT_DELETECHARS(obj,i,n) delete n characters starting at i +// STB_TEXTEDIT_INSERTCHARS(obj,i,c*,n) insert n characters at i (pointed to by STB_TEXTEDIT_CHARTYPE*) +// +// STB_TEXTEDIT_K_SHIFT a power of two that is or'd in to a keyboard input to represent the shift key +// +// STB_TEXTEDIT_K_LEFT keyboard input to move cursor left +// STB_TEXTEDIT_K_RIGHT keyboard input to move cursor right +// STB_TEXTEDIT_K_UP keyboard input to move cursor up +// STB_TEXTEDIT_K_DOWN keyboard input to move cursor down +// STB_TEXTEDIT_K_PGUP keyboard input to move cursor up a page +// STB_TEXTEDIT_K_PGDOWN keyboard input to move cursor down a page +// STB_TEXTEDIT_K_LINESTART keyboard input to move cursor to start of line // e.g. HOME +// STB_TEXTEDIT_K_LINEEND keyboard input to move cursor to end of line // e.g. END +// STB_TEXTEDIT_K_TEXTSTART keyboard input to move cursor to start of text // e.g. ctrl-HOME +// STB_TEXTEDIT_K_TEXTEND keyboard input to move cursor to end of text // e.g. ctrl-END +// STB_TEXTEDIT_K_DELETE keyboard input to delete selection or character under cursor +// STB_TEXTEDIT_K_BACKSPACE keyboard input to delete selection or character left of cursor +// STB_TEXTEDIT_K_UNDO keyboard input to perform undo +// STB_TEXTEDIT_K_REDO keyboard input to perform redo +// +// Optional: +// STB_TEXTEDIT_K_INSERT keyboard input to toggle insert mode +// STB_TEXTEDIT_IS_SPACE(ch) true if character is whitespace (e.g. 'isspace'), +// required for default WORDLEFT/WORDRIGHT handlers +// STB_TEXTEDIT_MOVEWORDLEFT(obj,i) custom handler for WORDLEFT, returns index to move cursor to +// STB_TEXTEDIT_MOVEWORDRIGHT(obj,i) custom handler for WORDRIGHT, returns index to move cursor to +// STB_TEXTEDIT_K_WORDLEFT keyboard input to move cursor left one word // e.g. ctrl-LEFT +// STB_TEXTEDIT_K_WORDRIGHT keyboard input to move cursor right one word // e.g. ctrl-RIGHT +// STB_TEXTEDIT_K_LINESTART2 secondary keyboard input to move cursor to start of line +// STB_TEXTEDIT_K_LINEEND2 secondary keyboard input to move cursor to end of line +// STB_TEXTEDIT_K_TEXTSTART2 secondary keyboard input to move cursor to start of text +// STB_TEXTEDIT_K_TEXTEND2 secondary keyboard input to move cursor to end of text +// +// Keyboard input must be encoded as a single integer value; e.g. a character code +// and some bitflags that represent shift states. to simplify the interface, SHIFT must +// be a bitflag, so we can test the shifted state of cursor movements to allow selection, +// i.e. (STB_TEXTEDIT_K_RIGHT|STB_TEXTEDIT_K_SHIFT) should be shifted right-arrow. +// +// You can encode other things, such as CONTROL or ALT, in additional bits, and +// then test for their presence in e.g. STB_TEXTEDIT_K_WORDLEFT. For example, +// my Windows implementations add an additional CONTROL bit, and an additional KEYDOWN +// bit. Then all of the STB_TEXTEDIT_K_ values bitwise-or in the KEYDOWN bit, +// and I pass both WM_KEYDOWN and WM_CHAR events to the "key" function in the +// API below. The control keys will only match WM_KEYDOWN events because of the +// keydown bit I add, and STB_TEXTEDIT_KEYTOTEXT only tests for the KEYDOWN +// bit so it only decodes WM_CHAR events. +// +// STB_TEXTEDIT_LAYOUTROW returns information about the shape of one displayed +// row of characters assuming they start on the i'th character--the width and +// the height and the number of characters consumed. This allows this library +// to traverse the entire layout incrementally. You need to compute word-wrapping +// here. +// +// Each textfield keeps its own insert mode state, which is not how normal +// applications work. To keep an app-wide insert mode, update/copy the +// "insert_mode" field of STB_TexteditState before/after calling API functions. +// +// API +// +// void stb_textedit_initialize_state(STB_TexteditState *state, int is_single_line) +// +// void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +// void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +// int stb_textedit_cut(STB_TEXTEDIT_STRING *str, STB_TexteditState *state) +// int stb_textedit_paste(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_CHARTYPE *text, int len) +// void stb_textedit_key(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXEDIT_KEYTYPE key) +// void stb_textedit_text(STB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_CHARTYPE *text, int text_len) +// +// Each of these functions potentially updates the string and updates the +// state. +// +// initialize_state: +// set the textedit state to a known good default state when initially +// constructing the textedit. +// +// click: +// call this with the mouse x,y on a mouse down; it will update the cursor +// and reset the selection start/end to the cursor point. the x,y must +// be relative to the text widget, with (0,0) being the top left. +// +// drag: +// call this with the mouse x,y on a mouse drag/up; it will update the +// cursor and the selection end point +// +// cut: +// call this to delete the current selection; returns true if there was +// one. you should FIRST copy the current selection to the system paste buffer. +// (To copy, just copy the current selection out of the string yourself.) +// +// paste: +// call this to paste text at the current cursor point or over the current +// selection if there is one. +// +// key: +// call this for keyboard inputs sent to the textfield. you can use it +// for "key down" events or for "translated" key events. if you need to +// do both (as in Win32), or distinguish Unicode characters from control +// inputs, set a high bit to distinguish the two; then you can define the +// various definitions like STB_TEXTEDIT_K_LEFT have the is-key-event bit +// set, and make STB_TEXTEDIT_KEYTOCHAR check that the is-key-event bit is +// clear. STB_TEXTEDIT_KEYTYPE defaults to int, but you can #define it to +// anything other type you want before including. +// if the STB_TEXTEDIT_KEYTOTEXT function is defined, selected keys are +// transformed into text and stb_textedit_text() is automatically called. +// +// text: [DEAR IMGUI] added 2024-09 +// call this to text inputs sent to the textfield. +// +// +// When rendering, you can read the cursor position and selection state from +// the STB_TexteditState. +// +// +// Notes: +// +// This is designed to be usable in IMGUI, so it allows for the possibility of +// running in an IMGUI that has NOT cached the multi-line layout. For this +// reason, it provides an interface that is compatible with computing the +// layout incrementally--we try to make sure we make as few passes through +// as possible. (For example, to locate the mouse pointer in the text, we +// could define functions that return the X and Y positions of characters +// and binary search Y and then X, but if we're doing dynamic layout this +// will run the layout algorithm many times, so instead we manually search +// forward in one pass. Similar logic applies to e.g. up-arrow and +// down-arrow movement.) +// +// If it's run in a widget that *has* cached the layout, then this is less +// efficient, but it's not horrible on modern computers. But you wouldn't +// want to edit million-line files with it. + + +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//// +//// Header-file mode +//// +//// + +#ifndef INCLUDE_IMSTB_TEXTEDIT_H +#define INCLUDE_IMSTB_TEXTEDIT_H + +//////////////////////////////////////////////////////////////////////// +// +// STB_TexteditState +// +// Definition of STB_TexteditState which you should store +// per-textfield; it includes cursor position, selection state, +// and undo state. +// + +#ifndef IMSTB_TEXTEDIT_UNDOSTATECOUNT +#define IMSTB_TEXTEDIT_UNDOSTATECOUNT 99 +#endif +#ifndef IMSTB_TEXTEDIT_UNDOCHARCOUNT +#define IMSTB_TEXTEDIT_UNDOCHARCOUNT 999 +#endif +#ifndef IMSTB_TEXTEDIT_CHARTYPE +#define IMSTB_TEXTEDIT_CHARTYPE int +#endif +#ifndef IMSTB_TEXTEDIT_POSITIONTYPE +#define IMSTB_TEXTEDIT_POSITIONTYPE int +#endif + +typedef struct +{ + // private data + IMSTB_TEXTEDIT_POSITIONTYPE where; + IMSTB_TEXTEDIT_POSITIONTYPE insert_length; + IMSTB_TEXTEDIT_POSITIONTYPE delete_length; + int char_storage; +} StbUndoRecord; + +typedef struct +{ + // private data + StbUndoRecord undo_rec [IMSTB_TEXTEDIT_UNDOSTATECOUNT]; + IMSTB_TEXTEDIT_CHARTYPE undo_char[IMSTB_TEXTEDIT_UNDOCHARCOUNT]; + short undo_point, redo_point; + int undo_char_point, redo_char_point; +} StbUndoState; + +typedef struct STB_TexteditState +{ + ///////////////////// + // + // public data + // + + int cursor; + // position of the text cursor within the string + + int select_start; // selection start point + int select_end; + // selection start and end point in characters; if equal, no selection. + // note that start may be less than or greater than end (e.g. when + // dragging the mouse, start is where the initial click was, and you + // can drag in either direction) + + unsigned char insert_mode; + // each textfield keeps its own insert mode state. to keep an app-wide + // insert mode, copy this value in/out of the app state + + int row_count_per_page; + // page size in number of row. + // this value MUST be set to >0 for pageup or pagedown in multilines documents. + + ///////////////////// + // + // private data + // + unsigned char cursor_at_end_of_line; // not implemented yet + unsigned char initialized; + unsigned char has_preferred_x; + unsigned char single_line; + unsigned char padding1, padding2, padding3; + float preferred_x; // this determines where the cursor up/down tries to seek to along x + StbUndoState undostate; +} STB_TexteditState; + + +//////////////////////////////////////////////////////////////////////// +// +// StbTexteditRow +// +// Result of layout query, used by stb_textedit to determine where +// the text in each row is. + +// result of layout query +typedef struct +{ + float x0,x1; // starting x location, end x location (allows for align=right, etc) + float baseline_y_delta; // position of baseline relative to previous row's baseline + float ymin,ymax; // height of row above and below baseline + int num_chars; +} StbTexteditRow; +#endif //INCLUDE_IMSTB_TEXTEDIT_H + + +//////////////////////////////////////////////////////////////////////////// +//////////////////////////////////////////////////////////////////////////// +//// +//// Implementation mode +//// +//// + + +// implementation isn't include-guarded, since it might have indirectly +// included just the "header" portion +#ifdef IMSTB_TEXTEDIT_IMPLEMENTATION + +#ifndef IMSTB_TEXTEDIT_memmove +#include +#define IMSTB_TEXTEDIT_memmove memmove +#endif + + +///////////////////////////////////////////////////////////////////////////// +// +// Mouse input handling +// + +// traverse the layout to locate the nearest character to a display position +static int stb_text_locate_coord(IMSTB_TEXTEDIT_STRING *str, float x, float y) +{ + StbTexteditRow r; + int n = STB_TEXTEDIT_STRINGLEN(str); + float base_y = 0, prev_x; + int i=0, k; + + r.x0 = r.x1 = 0; + r.ymin = r.ymax = 0; + r.num_chars = 0; + + // search rows to find one that straddles 'y' + while (i < n) { + STB_TEXTEDIT_LAYOUTROW(&r, str, i); + if (r.num_chars <= 0) + return n; + + if (i==0 && y < base_y + r.ymin) + return 0; + + if (y < base_y + r.ymax) + break; + + i += r.num_chars; + base_y += r.baseline_y_delta; + } + + // below all text, return 'after' last character + if (i >= n) + return n; + + // check if it's before the beginning of the line + if (x < r.x0) + return i; + + // check if it's before the end of the line + if (x < r.x1) { + // search characters in row for one that straddles 'x' + prev_x = r.x0; + for (k=0; k < r.num_chars; k = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, i + k) - i) { + float w = STB_TEXTEDIT_GETWIDTH(str, i, k); + if (x < prev_x+w) { + if (x < prev_x+w/2) + return k+i; + else + return IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, i + k); + } + prev_x += w; + } + // shouldn't happen, but if it does, fall through to end-of-line case + } + + // if the last character is a newline, return that. otherwise return 'after' the last character + if (STB_TEXTEDIT_GETCHAR(str, i+r.num_chars-1) == STB_TEXTEDIT_NEWLINE) + return i+r.num_chars-1; + else + return i+r.num_chars; +} + +// API click: on mouse down, move the cursor to the clicked location, and reset the selection +static void stb_textedit_click(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +{ + // In single-line mode, just always make y = 0. This lets the drag keep working if the mouse + // goes off the top or bottom of the text + if( state->single_line ) + { + StbTexteditRow r; + STB_TEXTEDIT_LAYOUTROW(&r, str, 0); + y = r.ymin; + } + + state->cursor = stb_text_locate_coord(str, x, y); + state->select_start = state->cursor; + state->select_end = state->cursor; + state->has_preferred_x = 0; +} + +// API drag: on mouse drag, move the cursor and selection endpoint to the clicked location +static void stb_textedit_drag(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, float x, float y) +{ + int p = 0; + + // In single-line mode, just always make y = 0. This lets the drag keep working if the mouse + // goes off the top or bottom of the text + if( state->single_line ) + { + StbTexteditRow r; + STB_TEXTEDIT_LAYOUTROW(&r, str, 0); + y = r.ymin; + } + + if (state->select_start == state->select_end) + state->select_start = state->cursor; + + p = stb_text_locate_coord(str, x, y); + state->cursor = state->select_end = p; +} + +///////////////////////////////////////////////////////////////////////////// +// +// Keyboard input handling +// + +// forward declarations +static void stb_text_undo(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state); +static void stb_text_redo(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state); +static void stb_text_makeundo_delete(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int length); +static void stb_text_makeundo_insert(STB_TexteditState *state, int where, int length); +static void stb_text_makeundo_replace(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int old_length, int new_length); + +typedef struct +{ + float x,y; // position of n'th character + float height; // height of line + int first_char, length; // first char of row, and length + int prev_first; // first char of previous row +} StbFindState; + +// find the x/y location of a character, and remember info about the previous row in +// case we get a move-up event (for page up, we'll have to rescan) +static void stb_textedit_find_charpos(StbFindState *find, IMSTB_TEXTEDIT_STRING *str, int n, int single_line) +{ + StbTexteditRow r; + int prev_start = 0; + int z = STB_TEXTEDIT_STRINGLEN(str); + int i=0, first; + + if (n == z && single_line) { + // special case if it's at the end (may not be needed?) + STB_TEXTEDIT_LAYOUTROW(&r, str, 0); + find->y = 0; + find->first_char = 0; + find->length = z; + find->height = r.ymax - r.ymin; + find->x = r.x1; + return; + } + + // search rows to find the one that straddles character n + find->y = 0; + + for(;;) { + STB_TEXTEDIT_LAYOUTROW(&r, str, i); + if (n < i + r.num_chars) + break; + if (i + r.num_chars == z && z > 0 && STB_TEXTEDIT_GETCHAR(str, z - 1) != STB_TEXTEDIT_NEWLINE) // [DEAR IMGUI] special handling for last line + break; // [DEAR IMGUI] + prev_start = i; + i += r.num_chars; + find->y += r.baseline_y_delta; + if (i == z) // [DEAR IMGUI] + { + r.num_chars = 0; // [DEAR IMGUI] + break; // [DEAR IMGUI] + } + } + + find->first_char = first = i; + find->length = r.num_chars; + find->height = r.ymax - r.ymin; + find->prev_first = prev_start; + + // now scan to find xpos + find->x = r.x0; + for (i=0; first+i < n; i = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, first + i) - first) + find->x += STB_TEXTEDIT_GETWIDTH(str, first, i); +} + +#define STB_TEXT_HAS_SELECTION(s) ((s)->select_start != (s)->select_end) + +// make the selection/cursor state valid if client altered the string +static void stb_textedit_clamp(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + int n = STB_TEXTEDIT_STRINGLEN(str); + if (STB_TEXT_HAS_SELECTION(state)) { + if (state->select_start > n) state->select_start = n; + if (state->select_end > n) state->select_end = n; + // if clamping forced them to be equal, move the cursor to match + if (state->select_start == state->select_end) + state->cursor = state->select_start; + } + if (state->cursor > n) state->cursor = n; +} + +// delete characters while updating undo +static void stb_textedit_delete(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int len) +{ + stb_text_makeundo_delete(str, state, where, len); + STB_TEXTEDIT_DELETECHARS(str, where, len); + state->has_preferred_x = 0; +} + +// delete the section +static void stb_textedit_delete_selection(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + stb_textedit_clamp(str, state); + if (STB_TEXT_HAS_SELECTION(state)) { + if (state->select_start < state->select_end) { + stb_textedit_delete(str, state, state->select_start, state->select_end - state->select_start); + state->select_end = state->cursor = state->select_start; + } else { + stb_textedit_delete(str, state, state->select_end, state->select_start - state->select_end); + state->select_start = state->cursor = state->select_end; + } + state->has_preferred_x = 0; + } +} + +// canoncialize the selection so start <= end +static void stb_textedit_sortselection(STB_TexteditState *state) +{ + if (state->select_end < state->select_start) { + int temp = state->select_end; + state->select_end = state->select_start; + state->select_start = temp; + } +} + +// move cursor to first character of selection +static void stb_textedit_move_to_first(STB_TexteditState *state) +{ + if (STB_TEXT_HAS_SELECTION(state)) { + stb_textedit_sortselection(state); + state->cursor = state->select_start; + state->select_end = state->select_start; + state->has_preferred_x = 0; + } +} + +// move cursor to last character of selection +static void stb_textedit_move_to_last(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + if (STB_TEXT_HAS_SELECTION(state)) { + stb_textedit_sortselection(state); + stb_textedit_clamp(str, state); + state->cursor = state->select_end; + state->select_start = state->select_end; + state->has_preferred_x = 0; + } +} + +// [DEAR IMGUI] +// Functions must be implemented for UTF8 support +// Code in this file that uses those functions is modified for [DEAR IMGUI] and deviates from the original stb_textedit. +// There is not necessarily a '[DEAR IMGUI]' at the usage sites. +#ifndef IMSTB_TEXTEDIT_GETPREVCHARINDEX +#define IMSTB_TEXTEDIT_GETPREVCHARINDEX(obj, idx) (idx - 1) +#endif +#ifndef IMSTB_TEXTEDIT_GETNEXTCHARINDEX +#define IMSTB_TEXTEDIT_GETNEXTCHARINDEX(obj, idx) (idx + 1) +#endif + +#ifdef STB_TEXTEDIT_IS_SPACE +static int is_word_boundary( IMSTB_TEXTEDIT_STRING *str, int idx ) +{ + return idx > 0 ? (STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str,idx-1) ) && !STB_TEXTEDIT_IS_SPACE( STB_TEXTEDIT_GETCHAR(str, idx) ) ) : 1; +} + +#ifndef STB_TEXTEDIT_MOVEWORDLEFT +static int stb_textedit_move_to_word_previous( IMSTB_TEXTEDIT_STRING *str, int c ) +{ + --c; // always move at least one character + while( c >= 0 && !is_word_boundary( str, c ) ) + --c; + + if( c < 0 ) + c = 0; + + return c; +} +#define STB_TEXTEDIT_MOVEWORDLEFT stb_textedit_move_to_word_previous +#endif + +#ifndef STB_TEXTEDIT_MOVEWORDRIGHT +static int stb_textedit_move_to_word_next( IMSTB_TEXTEDIT_STRING *str, int c ) +{ + const int len = STB_TEXTEDIT_STRINGLEN(str); + ++c; // always move at least one character + while( c < len && !is_word_boundary( str, c ) ) + ++c; + + if( c > len ) + c = len; + + return c; +} +#define STB_TEXTEDIT_MOVEWORDRIGHT stb_textedit_move_to_word_next +#endif + +#endif + +// update selection and cursor to match each other +static void stb_textedit_prep_selection_at_cursor(STB_TexteditState *state) +{ + if (!STB_TEXT_HAS_SELECTION(state)) + state->select_start = state->select_end = state->cursor; + else + state->cursor = state->select_end; +} + +// API cut: delete selection +static int stb_textedit_cut(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + if (STB_TEXT_HAS_SELECTION(state)) { + stb_textedit_delete_selection(str,state); // implicitly clamps + state->has_preferred_x = 0; + return 1; + } + return 0; +} + +// API paste: replace existing selection with passed-in text +static int stb_textedit_paste_internal(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, IMSTB_TEXTEDIT_CHARTYPE *text, int len) +{ + // if there's a selection, the paste should delete it + stb_textedit_clamp(str, state); + stb_textedit_delete_selection(str,state); + // try to insert the characters + if (STB_TEXTEDIT_INSERTCHARS(str, state->cursor, text, len)) { + stb_text_makeundo_insert(state, state->cursor, len); + state->cursor += len; + state->has_preferred_x = 0; + return 1; + } + // note: paste failure will leave deleted selection, may be restored with an undo (see https://github.com/nothings/stb/issues/734 for details) + return 0; +} + +#ifndef STB_TEXTEDIT_KEYTYPE +#define STB_TEXTEDIT_KEYTYPE int +#endif + +// [DEAR IMGUI] Added stb_textedit_text(), extracted out and called by stb_textedit_key() for backward compatibility. +static void stb_textedit_text(IMSTB_TEXTEDIT_STRING* str, STB_TexteditState* state, const IMSTB_TEXTEDIT_CHARTYPE* text, int text_len) +{ + // can't add newline in single-line mode + if (text[0] == '\n' && state->single_line) + return; + + if (state->insert_mode && !STB_TEXT_HAS_SELECTION(state) && state->cursor < STB_TEXTEDIT_STRINGLEN(str)) { + stb_text_makeundo_replace(str, state, state->cursor, 1, 1); + STB_TEXTEDIT_DELETECHARS(str, state->cursor, 1); + if (STB_TEXTEDIT_INSERTCHARS(str, state->cursor, text, text_len)) { + state->cursor += text_len; + state->has_preferred_x = 0; + } + } + else { + stb_textedit_delete_selection(str, state); // implicitly clamps + if (STB_TEXTEDIT_INSERTCHARS(str, state->cursor, text, text_len)) { + stb_text_makeundo_insert(state, state->cursor, text_len); + state->cursor += text_len; + state->has_preferred_x = 0; + } + } +} + +// API key: process a keyboard input +static void stb_textedit_key(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, STB_TEXTEDIT_KEYTYPE key) +{ +retry: + switch (key) { + default: { +#ifdef STB_TEXTEDIT_KEYTOTEXT + int c = STB_TEXTEDIT_KEYTOTEXT(key); + if (c > 0) { + IMSTB_TEXTEDIT_CHARTYPE ch = (IMSTB_TEXTEDIT_CHARTYPE)c; + stb_textedit_text(str, state, &ch, 1); + } +#endif + break; + } + +#ifdef STB_TEXTEDIT_K_INSERT + case STB_TEXTEDIT_K_INSERT: + state->insert_mode = !state->insert_mode; + break; +#endif + + case STB_TEXTEDIT_K_UNDO: + stb_text_undo(str, state); + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_REDO: + stb_text_redo(str, state); + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_LEFT: + // if currently there's a selection, move cursor to start of selection + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_first(state); + else + if (state->cursor > 0) + state->cursor = IMSTB_TEXTEDIT_GETPREVCHARINDEX(str, state->cursor); + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_RIGHT: + // if currently there's a selection, move cursor to end of selection + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_last(str, state); + else + state->cursor = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, state->cursor); + stb_textedit_clamp(str, state); + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_LEFT | STB_TEXTEDIT_K_SHIFT: + stb_textedit_clamp(str, state); + stb_textedit_prep_selection_at_cursor(state); + // move selection left + if (state->select_end > 0) + state->select_end = IMSTB_TEXTEDIT_GETPREVCHARINDEX(str, state->select_end); + state->cursor = state->select_end; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_MOVEWORDLEFT + case STB_TEXTEDIT_K_WORDLEFT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_first(state); + else { + state->cursor = STB_TEXTEDIT_MOVEWORDLEFT(str, state->cursor); + stb_textedit_clamp( str, state ); + } + break; + + case STB_TEXTEDIT_K_WORDLEFT | STB_TEXTEDIT_K_SHIFT: + if( !STB_TEXT_HAS_SELECTION( state ) ) + stb_textedit_prep_selection_at_cursor(state); + + state->cursor = STB_TEXTEDIT_MOVEWORDLEFT(str, state->cursor); + state->select_end = state->cursor; + + stb_textedit_clamp( str, state ); + break; +#endif + +#ifdef STB_TEXTEDIT_MOVEWORDRIGHT + case STB_TEXTEDIT_K_WORDRIGHT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_last(str, state); + else { + state->cursor = STB_TEXTEDIT_MOVEWORDRIGHT(str, state->cursor); + stb_textedit_clamp( str, state ); + } + break; + + case STB_TEXTEDIT_K_WORDRIGHT | STB_TEXTEDIT_K_SHIFT: + if( !STB_TEXT_HAS_SELECTION( state ) ) + stb_textedit_prep_selection_at_cursor(state); + + state->cursor = STB_TEXTEDIT_MOVEWORDRIGHT(str, state->cursor); + state->select_end = state->cursor; + + stb_textedit_clamp( str, state ); + break; +#endif + + case STB_TEXTEDIT_K_RIGHT | STB_TEXTEDIT_K_SHIFT: + stb_textedit_prep_selection_at_cursor(state); + // move selection right + state->select_end = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, state->select_end); + stb_textedit_clamp(str, state); + state->cursor = state->select_end; + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_DOWN: + case STB_TEXTEDIT_K_DOWN | STB_TEXTEDIT_K_SHIFT: + case STB_TEXTEDIT_K_PGDOWN: + case STB_TEXTEDIT_K_PGDOWN | STB_TEXTEDIT_K_SHIFT: { + StbFindState find; + StbTexteditRow row; + int i, j, sel = (key & STB_TEXTEDIT_K_SHIFT) != 0; + int is_page = (key & ~STB_TEXTEDIT_K_SHIFT) == STB_TEXTEDIT_K_PGDOWN; + int row_count = is_page ? state->row_count_per_page : 1; + + if (!is_page && state->single_line) { + // on windows, up&down in single-line behave like left&right + key = STB_TEXTEDIT_K_RIGHT | (key & STB_TEXTEDIT_K_SHIFT); + goto retry; + } + + if (sel) + stb_textedit_prep_selection_at_cursor(state); + else if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_last(str, state); + + // compute current position of cursor point + stb_textedit_clamp(str, state); + stb_textedit_find_charpos(&find, str, state->cursor, state->single_line); + + for (j = 0; j < row_count; ++j) { + float x, goal_x = state->has_preferred_x ? state->preferred_x : find.x; + int start = find.first_char + find.length; + + if (find.length == 0) + break; + + // [DEAR IMGUI] + // going down while being on the last line shouldn't bring us to that line end + if (STB_TEXTEDIT_GETCHAR(str, find.first_char + find.length - 1) != STB_TEXTEDIT_NEWLINE) + break; + + // now find character position down a row + state->cursor = start; + STB_TEXTEDIT_LAYOUTROW(&row, str, state->cursor); + x = row.x0; + for (i=0; i < row.num_chars; ++i) { + float dx = STB_TEXTEDIT_GETWIDTH(str, start, i); + #ifdef IMSTB_TEXTEDIT_GETWIDTH_NEWLINE + if (dx == IMSTB_TEXTEDIT_GETWIDTH_NEWLINE) + break; + #endif + x += dx; + if (x > goal_x) + break; + state->cursor = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, state->cursor); + } + stb_textedit_clamp(str, state); + + state->has_preferred_x = 1; + state->preferred_x = goal_x; + + if (sel) + state->select_end = state->cursor; + + // go to next line + find.first_char = find.first_char + find.length; + find.length = row.num_chars; + } + break; + } + + case STB_TEXTEDIT_K_UP: + case STB_TEXTEDIT_K_UP | STB_TEXTEDIT_K_SHIFT: + case STB_TEXTEDIT_K_PGUP: + case STB_TEXTEDIT_K_PGUP | STB_TEXTEDIT_K_SHIFT: { + StbFindState find; + StbTexteditRow row; + int i, j, prev_scan, sel = (key & STB_TEXTEDIT_K_SHIFT) != 0; + int is_page = (key & ~STB_TEXTEDIT_K_SHIFT) == STB_TEXTEDIT_K_PGUP; + int row_count = is_page ? state->row_count_per_page : 1; + + if (!is_page && state->single_line) { + // on windows, up&down become left&right + key = STB_TEXTEDIT_K_LEFT | (key & STB_TEXTEDIT_K_SHIFT); + goto retry; + } + + if (sel) + stb_textedit_prep_selection_at_cursor(state); + else if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_move_to_first(state); + + // compute current position of cursor point + stb_textedit_clamp(str, state); + stb_textedit_find_charpos(&find, str, state->cursor, state->single_line); + + for (j = 0; j < row_count; ++j) { + float x, goal_x = state->has_preferred_x ? state->preferred_x : find.x; + + // can only go up if there's a previous row + if (find.prev_first == find.first_char) + break; + + // now find character position up a row + state->cursor = find.prev_first; + STB_TEXTEDIT_LAYOUTROW(&row, str, state->cursor); + x = row.x0; + for (i=0; i < row.num_chars; ++i) { + float dx = STB_TEXTEDIT_GETWIDTH(str, find.prev_first, i); + #ifdef IMSTB_TEXTEDIT_GETWIDTH_NEWLINE + if (dx == IMSTB_TEXTEDIT_GETWIDTH_NEWLINE) + break; + #endif + x += dx; + if (x > goal_x) + break; + state->cursor = IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, state->cursor); + } + stb_textedit_clamp(str, state); + + state->has_preferred_x = 1; + state->preferred_x = goal_x; + + if (sel) + state->select_end = state->cursor; + + // go to previous line + // (we need to scan previous line the hard way. maybe we could expose this as a new API function?) + prev_scan = find.prev_first > 0 ? find.prev_first - 1 : 0; + while (prev_scan > 0 && STB_TEXTEDIT_GETCHAR(str, prev_scan - 1) != STB_TEXTEDIT_NEWLINE) + --prev_scan; + find.first_char = find.prev_first; + find.prev_first = prev_scan; + } + break; + } + + case STB_TEXTEDIT_K_DELETE: + case STB_TEXTEDIT_K_DELETE | STB_TEXTEDIT_K_SHIFT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_delete_selection(str, state); + else { + int n = STB_TEXTEDIT_STRINGLEN(str); + if (state->cursor < n) + stb_textedit_delete(str, state, state->cursor, IMSTB_TEXTEDIT_GETNEXTCHARINDEX(str, state->cursor) - state->cursor); + } + state->has_preferred_x = 0; + break; + + case STB_TEXTEDIT_K_BACKSPACE: + case STB_TEXTEDIT_K_BACKSPACE | STB_TEXTEDIT_K_SHIFT: + if (STB_TEXT_HAS_SELECTION(state)) + stb_textedit_delete_selection(str, state); + else { + stb_textedit_clamp(str, state); + if (state->cursor > 0) { + int prev = IMSTB_TEXTEDIT_GETPREVCHARINDEX(str, state->cursor); + stb_textedit_delete(str, state, prev, state->cursor - prev); + state->cursor = prev; + } + } + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTSTART2 + case STB_TEXTEDIT_K_TEXTSTART2: +#endif + case STB_TEXTEDIT_K_TEXTSTART: + state->cursor = state->select_start = state->select_end = 0; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTEND2 + case STB_TEXTEDIT_K_TEXTEND2: +#endif + case STB_TEXTEDIT_K_TEXTEND: + state->cursor = STB_TEXTEDIT_STRINGLEN(str); + state->select_start = state->select_end = 0; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTSTART2 + case STB_TEXTEDIT_K_TEXTSTART2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_TEXTSTART | STB_TEXTEDIT_K_SHIFT: + stb_textedit_prep_selection_at_cursor(state); + state->cursor = state->select_end = 0; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_TEXTEND2 + case STB_TEXTEDIT_K_TEXTEND2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_TEXTEND | STB_TEXTEDIT_K_SHIFT: + stb_textedit_prep_selection_at_cursor(state); + state->cursor = state->select_end = STB_TEXTEDIT_STRINGLEN(str); + state->has_preferred_x = 0; + break; + + +#ifdef STB_TEXTEDIT_K_LINESTART2 + case STB_TEXTEDIT_K_LINESTART2: +#endif + case STB_TEXTEDIT_K_LINESTART: + stb_textedit_clamp(str, state); + stb_textedit_move_to_first(state); + if (state->single_line) + state->cursor = 0; + else while (state->cursor > 0 && STB_TEXTEDIT_GETCHAR(str, state->cursor-1) != STB_TEXTEDIT_NEWLINE) + --state->cursor; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_LINEEND2 + case STB_TEXTEDIT_K_LINEEND2: +#endif + case STB_TEXTEDIT_K_LINEEND: { + int n = STB_TEXTEDIT_STRINGLEN(str); + stb_textedit_clamp(str, state); + stb_textedit_move_to_first(state); + if (state->single_line) + state->cursor = n; + else while (state->cursor < n && STB_TEXTEDIT_GETCHAR(str, state->cursor) != STB_TEXTEDIT_NEWLINE) + ++state->cursor; + state->has_preferred_x = 0; + break; + } + +#ifdef STB_TEXTEDIT_K_LINESTART2 + case STB_TEXTEDIT_K_LINESTART2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_LINESTART | STB_TEXTEDIT_K_SHIFT: + stb_textedit_clamp(str, state); + stb_textedit_prep_selection_at_cursor(state); + if (state->single_line) + state->cursor = 0; + else while (state->cursor > 0 && STB_TEXTEDIT_GETCHAR(str, state->cursor-1) != STB_TEXTEDIT_NEWLINE) + --state->cursor; + state->select_end = state->cursor; + state->has_preferred_x = 0; + break; + +#ifdef STB_TEXTEDIT_K_LINEEND2 + case STB_TEXTEDIT_K_LINEEND2 | STB_TEXTEDIT_K_SHIFT: +#endif + case STB_TEXTEDIT_K_LINEEND | STB_TEXTEDIT_K_SHIFT: { + int n = STB_TEXTEDIT_STRINGLEN(str); + stb_textedit_clamp(str, state); + stb_textedit_prep_selection_at_cursor(state); + if (state->single_line) + state->cursor = n; + else while (state->cursor < n && STB_TEXTEDIT_GETCHAR(str, state->cursor) != STB_TEXTEDIT_NEWLINE) + ++state->cursor; + state->select_end = state->cursor; + state->has_preferred_x = 0; + break; + } + } +} + +///////////////////////////////////////////////////////////////////////////// +// +// Undo processing +// +// @OPTIMIZE: the undo/redo buffer should be circular + +static void stb_textedit_flush_redo(StbUndoState *state) +{ + state->redo_point = IMSTB_TEXTEDIT_UNDOSTATECOUNT; + state->redo_char_point = IMSTB_TEXTEDIT_UNDOCHARCOUNT; +} + +// discard the oldest entry in the undo list +static void stb_textedit_discard_undo(StbUndoState *state) +{ + if (state->undo_point > 0) { + // if the 0th undo state has characters, clean those up + if (state->undo_rec[0].char_storage >= 0) { + int n = state->undo_rec[0].insert_length, i; + // delete n characters from all other records + state->undo_char_point -= n; + IMSTB_TEXTEDIT_memmove(state->undo_char, state->undo_char + n, (size_t) (state->undo_char_point*sizeof(IMSTB_TEXTEDIT_CHARTYPE))); + for (i=0; i < state->undo_point; ++i) + if (state->undo_rec[i].char_storage >= 0) + state->undo_rec[i].char_storage -= n; // @OPTIMIZE: get rid of char_storage and infer it + } + --state->undo_point; + IMSTB_TEXTEDIT_memmove(state->undo_rec, state->undo_rec+1, (size_t) (state->undo_point*sizeof(state->undo_rec[0]))); + } +} + +// discard the oldest entry in the redo list--it's bad if this +// ever happens, but because undo & redo have to store the actual +// characters in different cases, the redo character buffer can +// fill up even though the undo buffer didn't +static void stb_textedit_discard_redo(StbUndoState *state) +{ + int k = IMSTB_TEXTEDIT_UNDOSTATECOUNT-1; + + if (state->redo_point <= k) { + // if the k'th undo state has characters, clean those up + if (state->undo_rec[k].char_storage >= 0) { + int n = state->undo_rec[k].insert_length, i; + // move the remaining redo character data to the end of the buffer + state->redo_char_point += n; + IMSTB_TEXTEDIT_memmove(state->undo_char + state->redo_char_point, state->undo_char + state->redo_char_point-n, (size_t) ((IMSTB_TEXTEDIT_UNDOCHARCOUNT - state->redo_char_point)*sizeof(IMSTB_TEXTEDIT_CHARTYPE))); + // adjust the position of all the other records to account for above memmove + for (i=state->redo_point; i < k; ++i) + if (state->undo_rec[i].char_storage >= 0) + state->undo_rec[i].char_storage += n; + } + // now move all the redo records towards the end of the buffer; the first one is at 'redo_point' + // [DEAR IMGUI] + size_t move_size = (size_t)((IMSTB_TEXTEDIT_UNDOSTATECOUNT - state->redo_point - 1) * sizeof(state->undo_rec[0])); + const char* buf_begin = (char*)state->undo_rec; (void)buf_begin; + const char* buf_end = (char*)state->undo_rec + sizeof(state->undo_rec); (void)buf_end; + IM_ASSERT(((char*)(state->undo_rec + state->redo_point)) >= buf_begin); + IM_ASSERT(((char*)(state->undo_rec + state->redo_point + 1) + move_size) <= buf_end); + IMSTB_TEXTEDIT_memmove(state->undo_rec + state->redo_point+1, state->undo_rec + state->redo_point, move_size); + + // now move redo_point to point to the new one + ++state->redo_point; + } +} + +static StbUndoRecord *stb_text_create_undo_record(StbUndoState *state, int numchars) +{ + // any time we create a new undo record, we discard redo + stb_textedit_flush_redo(state); + + // if we have no free records, we have to make room, by sliding the + // existing records down + if (state->undo_point == IMSTB_TEXTEDIT_UNDOSTATECOUNT) + stb_textedit_discard_undo(state); + + // if the characters to store won't possibly fit in the buffer, we can't undo + if (numchars > IMSTB_TEXTEDIT_UNDOCHARCOUNT) { + state->undo_point = 0; + state->undo_char_point = 0; + return NULL; + } + + // if we don't have enough free characters in the buffer, we have to make room + while (state->undo_char_point + numchars > IMSTB_TEXTEDIT_UNDOCHARCOUNT) + stb_textedit_discard_undo(state); + + return &state->undo_rec[state->undo_point++]; +} + +static IMSTB_TEXTEDIT_CHARTYPE *stb_text_createundo(StbUndoState *state, int pos, int insert_len, int delete_len) +{ + StbUndoRecord *r = stb_text_create_undo_record(state, insert_len); + if (r == NULL) + return NULL; + + r->where = pos; + r->insert_length = (IMSTB_TEXTEDIT_POSITIONTYPE) insert_len; + r->delete_length = (IMSTB_TEXTEDIT_POSITIONTYPE) delete_len; + + if (insert_len == 0) { + r->char_storage = -1; + return NULL; + } else { + r->char_storage = state->undo_char_point; + state->undo_char_point += insert_len; + return &state->undo_char[r->char_storage]; + } +} + +static void stb_text_undo(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + StbUndoState *s = &state->undostate; + StbUndoRecord u, *r; + if (s->undo_point == 0) + return; + + // we need to do two things: apply the undo record, and create a redo record + u = s->undo_rec[s->undo_point-1]; + r = &s->undo_rec[s->redo_point-1]; + r->char_storage = -1; + + r->insert_length = u.delete_length; + r->delete_length = u.insert_length; + r->where = u.where; + + if (u.delete_length) { + // if the undo record says to delete characters, then the redo record will + // need to re-insert the characters that get deleted, so we need to store + // them. + + // there are three cases: + // there's enough room to store the characters + // characters stored for *redoing* don't leave room for redo + // characters stored for *undoing* don't leave room for redo + // if the last is true, we have to bail + + if (s->undo_char_point + u.delete_length >= IMSTB_TEXTEDIT_UNDOCHARCOUNT) { + // the undo records take up too much character space; there's no space to store the redo characters + r->insert_length = 0; + } else { + int i; + + // there's definitely room to store the characters eventually + while (s->undo_char_point + u.delete_length > s->redo_char_point) { + // should never happen: + if (s->redo_point == IMSTB_TEXTEDIT_UNDOSTATECOUNT) + return; + // there's currently not enough room, so discard a redo record + stb_textedit_discard_redo(s); + } + r = &s->undo_rec[s->redo_point-1]; + + r->char_storage = s->redo_char_point - u.delete_length; + s->redo_char_point = s->redo_char_point - u.delete_length; + + // now save the characters + for (i=0; i < u.delete_length; ++i) + s->undo_char[r->char_storage + i] = STB_TEXTEDIT_GETCHAR(str, u.where + i); + } + + // now we can carry out the deletion + STB_TEXTEDIT_DELETECHARS(str, u.where, u.delete_length); + } + + // check type of recorded action: + if (u.insert_length) { + // easy case: was a deletion, so we need to insert n characters + STB_TEXTEDIT_INSERTCHARS(str, u.where, &s->undo_char[u.char_storage], u.insert_length); + s->undo_char_point -= u.insert_length; + } + + state->cursor = u.where + u.insert_length; + + s->undo_point--; + s->redo_point--; +} + +static void stb_text_redo(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state) +{ + StbUndoState *s = &state->undostate; + StbUndoRecord *u, r; + if (s->redo_point == IMSTB_TEXTEDIT_UNDOSTATECOUNT) + return; + + // we need to do two things: apply the redo record, and create an undo record + u = &s->undo_rec[s->undo_point]; + r = s->undo_rec[s->redo_point]; + + // we KNOW there must be room for the undo record, because the redo record + // was derived from an undo record + + u->delete_length = r.insert_length; + u->insert_length = r.delete_length; + u->where = r.where; + u->char_storage = -1; + + if (r.delete_length) { + // the redo record requires us to delete characters, so the undo record + // needs to store the characters + + if (s->undo_char_point + u->insert_length > s->redo_char_point) { + u->insert_length = 0; + u->delete_length = 0; + } else { + int i; + u->char_storage = s->undo_char_point; + s->undo_char_point = s->undo_char_point + u->insert_length; + + // now save the characters + for (i=0; i < u->insert_length; ++i) + s->undo_char[u->char_storage + i] = STB_TEXTEDIT_GETCHAR(str, u->where + i); + } + + STB_TEXTEDIT_DELETECHARS(str, r.where, r.delete_length); + } + + if (r.insert_length) { + // easy case: need to insert n characters + STB_TEXTEDIT_INSERTCHARS(str, r.where, &s->undo_char[r.char_storage], r.insert_length); + s->redo_char_point += r.insert_length; + } + + state->cursor = r.where + r.insert_length; + + s->undo_point++; + s->redo_point++; +} + +static void stb_text_makeundo_insert(STB_TexteditState *state, int where, int length) +{ + stb_text_createundo(&state->undostate, where, 0, length); +} + +static void stb_text_makeundo_delete(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int length) +{ + int i; + IMSTB_TEXTEDIT_CHARTYPE *p = stb_text_createundo(&state->undostate, where, length, 0); + if (p) { + for (i=0; i < length; ++i) + p[i] = STB_TEXTEDIT_GETCHAR(str, where+i); + } +} + +static void stb_text_makeundo_replace(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, int where, int old_length, int new_length) +{ + int i; + IMSTB_TEXTEDIT_CHARTYPE *p = stb_text_createundo(&state->undostate, where, old_length, new_length); + if (p) { + for (i=0; i < old_length; ++i) + p[i] = STB_TEXTEDIT_GETCHAR(str, where+i); + } +} + +// reset the state to default +static void stb_textedit_clear_state(STB_TexteditState *state, int is_single_line) +{ + state->undostate.undo_point = 0; + state->undostate.undo_char_point = 0; + state->undostate.redo_point = IMSTB_TEXTEDIT_UNDOSTATECOUNT; + state->undostate.redo_char_point = IMSTB_TEXTEDIT_UNDOCHARCOUNT; + state->select_end = state->select_start = 0; + state->cursor = 0; + state->has_preferred_x = 0; + state->preferred_x = 0; + state->cursor_at_end_of_line = 0; + state->initialized = 1; + state->single_line = (unsigned char) is_single_line; + state->insert_mode = 0; + state->row_count_per_page = 0; +} + +// API initialize +static void stb_textedit_initialize_state(STB_TexteditState *state, int is_single_line) +{ + stb_textedit_clear_state(state, is_single_line); +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wcast-qual" +#endif + +static int stb_textedit_paste(IMSTB_TEXTEDIT_STRING *str, STB_TexteditState *state, IMSTB_TEXTEDIT_CHARTYPE const *ctext, int len) +{ + return stb_textedit_paste_internal(str, state, (IMSTB_TEXTEDIT_CHARTYPE *) ctext, len); +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#endif//IMSTB_TEXTEDIT_IMPLEMENTATION + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +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. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +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 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/external/lumin/thirdparty/imgui/imstb_truetype.h b/external/lumin/thirdparty/imgui/imstb_truetype.h new file mode 100644 index 0000000..976f09c --- /dev/null +++ b/external/lumin/thirdparty/imgui/imstb_truetype.h @@ -0,0 +1,5085 @@ +// [DEAR IMGUI] +// This is a slightly modified version of stb_truetype.h 1.26. +// Mostly fixing for compiler and static analyzer warnings. +// Grep for [DEAR IMGUI] to find the changes. + +// stb_truetype.h - v1.26 - public domain +// authored from 2009-2021 by Sean Barrett / RAD Game Tools +// +// ======================================================================= +// +// NO SECURITY GUARANTEE -- DO NOT USE THIS ON UNTRUSTED FONT FILES +// +// This library does no range checking of the offsets found in the file, +// meaning an attacker can use it to read arbitrary memory. +// +// ======================================================================= +// +// This library processes TrueType files: +// parse files +// extract glyph metrics +// extract glyph shapes +// render glyphs to one-channel bitmaps with antialiasing (box filter) +// render glyphs to one-channel SDF bitmaps (signed-distance field/function) +// +// Todo: +// non-MS cmaps +// crashproof on bad data +// hinting? (no longer patented) +// cleartype-style AA? +// optimize: use simple memory allocator for intermediates +// optimize: build edge-list directly from curves +// optimize: rasterize directly from curves? +// +// ADDITIONAL CONTRIBUTORS +// +// Mikko Mononen: compound shape support, more cmap formats +// Tor Andersson: kerning, subpixel rendering +// Dougall Johnson: OpenType / Type 2 font handling +// Daniel Ribeiro Maciel: basic GPOS-based kerning +// +// Misc other: +// Ryan Gordon +// Simon Glass +// github:IntellectualKitty +// Imanol Celaya +// Daniel Ribeiro Maciel +// +// Bug/warning reports/fixes: +// "Zer" on mollyrocket Fabian "ryg" Giesen github:NiLuJe +// Cass Everitt Martins Mozeiko github:aloucks +// stoiko (Haemimont Games) Cap Petschulat github:oyvindjam +// Brian Hook Omar Cornut github:vassvik +// Walter van Niftrik Ryan Griege +// David Gow Peter LaValle +// David Given Sergey Popov +// Ivan-Assen Ivanov Giumo X. Clanjor +// Anthony Pesch Higor Euripedes +// Johan Duparc Thomas Fields +// Hou Qiming Derek Vinyard +// Rob Loach Cort Stratton +// Kenney Phillis Jr. Brian Costabile +// Ken Voskuil (kaesve) +// +// VERSION HISTORY +// +// 1.26 (2021-08-28) fix broken rasterizer +// 1.25 (2021-07-11) many fixes +// 1.24 (2020-02-05) fix warning +// 1.23 (2020-02-02) query SVG data for glyphs; query whole kerning table (but only kern not GPOS) +// 1.22 (2019-08-11) minimize missing-glyph duplication; fix kerning if both 'GPOS' and 'kern' are defined +// 1.21 (2019-02-25) fix warning +// 1.20 (2019-02-07) PackFontRange skips missing codepoints; GetScaleFontVMetrics() +// 1.19 (2018-02-11) GPOS kerning, STBTT_fmod +// 1.18 (2018-01-29) add missing function +// 1.17 (2017-07-23) make more arguments const; doc fix +// 1.16 (2017-07-12) SDF support +// 1.15 (2017-03-03) make more arguments const +// 1.14 (2017-01-16) num-fonts-in-TTC function +// 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts +// 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual +// 1.11 (2016-04-02) fix unused-variable warning +// 1.10 (2016-04-02) user-defined fabs(); rare memory leak; remove duplicate typedef +// 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use allocation userdata properly +// 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges +// 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints; +// variant PackFontRanges to pack and render in separate phases; +// fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?); +// fixed an assert() bug in the new rasterizer +// replace assert() with STBTT_assert() in new rasterizer +// +// Full history can be found at the end of this file. +// +// LICENSE +// +// See end of file for license information. +// +// USAGE +// +// Include this file in whatever places need to refer to it. In ONE C/C++ +// file, write: +// #define STB_TRUETYPE_IMPLEMENTATION +// before the #include of this file. This expands out the actual +// implementation into that C/C++ file. +// +// To make the implementation private to the file that generates the implementation, +// #define STBTT_STATIC +// +// Simple 3D API (don't ship this, but it's fine for tools and quick start) +// stbtt_BakeFontBitmap() -- bake a font to a bitmap for use as texture +// stbtt_GetBakedQuad() -- compute quad to draw for a given char +// +// Improved 3D API (more shippable): +// #include "stb_rect_pack.h" -- optional, but you really want it +// stbtt_PackBegin() +// stbtt_PackSetOversampling() -- for improved quality on small fonts +// stbtt_PackFontRanges() -- pack and renders +// stbtt_PackEnd() +// stbtt_GetPackedQuad() +// +// "Load" a font file from a memory buffer (you have to keep the buffer loaded) +// stbtt_InitFont() +// stbtt_GetFontOffsetForIndex() -- indexing for TTC font collections +// stbtt_GetNumberOfFonts() -- number of fonts for TTC font collections +// +// Render a unicode codepoint to a bitmap +// stbtt_GetCodepointBitmap() -- allocates and returns a bitmap +// stbtt_MakeCodepointBitmap() -- renders into bitmap you provide +// stbtt_GetCodepointBitmapBox() -- how big the bitmap must be +// +// Character advance/positioning +// stbtt_GetCodepointHMetrics() +// stbtt_GetFontVMetrics() +// stbtt_GetFontVMetricsOS2() +// stbtt_GetCodepointKernAdvance() +// +// Starting with version 1.06, the rasterizer was replaced with a new, +// faster and generally-more-precise rasterizer. The new rasterizer more +// accurately measures pixel coverage for anti-aliasing, except in the case +// where multiple shapes overlap, in which case it overestimates the AA pixel +// coverage. Thus, anti-aliasing of intersecting shapes may look wrong. If +// this turns out to be a problem, you can re-enable the old rasterizer with +// #define STBTT_RASTERIZER_VERSION 1 +// which will incur about a 15% speed hit. +// +// ADDITIONAL DOCUMENTATION +// +// Immediately after this block comment are a series of sample programs. +// +// After the sample programs is the "header file" section. This section +// includes documentation for each API function. +// +// Some important concepts to understand to use this library: +// +// Codepoint +// Characters are defined by unicode codepoints, e.g. 65 is +// uppercase A, 231 is lowercase c with a cedilla, 0x7e30 is +// the hiragana for "ma". +// +// Glyph +// A visual character shape (every codepoint is rendered as +// some glyph) +// +// Glyph index +// A font-specific integer ID representing a glyph +// +// Baseline +// Glyph shapes are defined relative to a baseline, which is the +// bottom of uppercase characters. Characters extend both above +// and below the baseline. +// +// Current Point +// As you draw text to the screen, you keep track of a "current point" +// which is the origin of each character. The current point's vertical +// position is the baseline. Even "baked fonts" use this model. +// +// Vertical Font Metrics +// The vertical qualities of the font, used to vertically position +// and space the characters. See docs for stbtt_GetFontVMetrics. +// +// Font Size in Pixels or Points +// The preferred interface for specifying font sizes in stb_truetype +// is to specify how tall the font's vertical extent should be in pixels. +// If that sounds good enough, skip the next paragraph. +// +// Most font APIs instead use "points", which are a common typographic +// measurement for describing font size, defined as 72 points per inch. +// stb_truetype provides a point API for compatibility. However, true +// "per inch" conventions don't make much sense on computer displays +// since different monitors have different number of pixels per +// inch. For example, Windows traditionally uses a convention that +// there are 96 pixels per inch, thus making 'inch' measurements have +// nothing to do with inches, and thus effectively defining a point to +// be 1.333 pixels. Additionally, the TrueType font data provides +// an explicit scale factor to scale a given font's glyphs to points, +// but the author has observed that this scale factor is often wrong +// for non-commercial fonts, thus making fonts scaled in points +// according to the TrueType spec incoherently sized in practice. +// +// DETAILED USAGE: +// +// Scale: +// Select how high you want the font to be, in points or pixels. +// Call ScaleForPixelHeight or ScaleForMappingEmToPixels to compute +// a scale factor SF that will be used by all other functions. +// +// Baseline: +// You need to select a y-coordinate that is the baseline of where +// your text will appear. Call GetFontBoundingBox to get the baseline-relative +// bounding box for all characters. SF*-y0 will be the distance in pixels +// that the worst-case character could extend above the baseline, so if +// you want the top edge of characters to appear at the top of the +// screen where y=0, then you would set the baseline to SF*-y0. +// +// Current point: +// Set the current point where the first character will appear. The +// first character could extend left of the current point; this is font +// dependent. You can either choose a current point that is the leftmost +// point and hope, or add some padding, or check the bounding box or +// left-side-bearing of the first character to be displayed and set +// the current point based on that. +// +// Displaying a character: +// Compute the bounding box of the character. It will contain signed values +// relative to . I.e. if it returns x0,y0,x1,y1, +// then the character should be displayed in the rectangle from +// to = 32 && *text < 128) { + stbtt_aligned_quad q; + stbtt_GetBakedQuad(cdata, 512,512, *text-32, &x,&y,&q,1);//1=opengl & d3d10+,0=d3d9 + glTexCoord2f(q.s0,q.t0); glVertex2f(q.x0,q.y0); + glTexCoord2f(q.s1,q.t0); glVertex2f(q.x1,q.y0); + glTexCoord2f(q.s1,q.t1); glVertex2f(q.x1,q.y1); + glTexCoord2f(q.s0,q.t1); glVertex2f(q.x0,q.y1); + } + ++text; + } + glEnd(); +} +#endif +// +// +////////////////////////////////////////////////////////////////////////////// +// +// Complete program (this compiles): get a single bitmap, print as ASCII art +// +#if 0 +#include +#define STB_TRUETYPE_IMPLEMENTATION // force following include to generate implementation +#include "stb_truetype.h" + +char ttf_buffer[1<<25]; + +int main(int argc, char **argv) +{ + stbtt_fontinfo font; + unsigned char *bitmap; + int w,h,i,j,c = (argc > 1 ? atoi(argv[1]) : 'a'), s = (argc > 2 ? atoi(argv[2]) : 20); + + fread(ttf_buffer, 1, 1<<25, fopen(argc > 3 ? argv[3] : "c:/windows/fonts/arialbd.ttf", "rb")); + + stbtt_InitFont(&font, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer,0)); + bitmap = stbtt_GetCodepointBitmap(&font, 0,stbtt_ScaleForPixelHeight(&font, s), c, &w, &h, 0,0); + + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) + putchar(" .:ioVM@"[bitmap[j*w+i]>>5]); + putchar('\n'); + } + return 0; +} +#endif +// +// Output: +// +// .ii. +// @@@@@@. +// V@Mio@@o +// :i. V@V +// :oM@@M +// :@@@MM@M +// @@o o@M +// :@@. M@M +// @@@o@@@@ +// :M@@V:@@. +// +////////////////////////////////////////////////////////////////////////////// +// +// Complete program: print "Hello World!" banner, with bugs +// +#if 0 +char buffer[24<<20]; +unsigned char screen[20][79]; + +int main(int arg, char **argv) +{ + stbtt_fontinfo font; + int i,j,ascent,baseline,ch=0; + float scale, xpos=2; // leave a little padding in case the character extends left + char *text = "Heljo World!"; // intentionally misspelled to show 'lj' brokenness + + fread(buffer, 1, 1000000, fopen("c:/windows/fonts/arialbd.ttf", "rb")); + stbtt_InitFont(&font, buffer, 0); + + scale = stbtt_ScaleForPixelHeight(&font, 15); + stbtt_GetFontVMetrics(&font, &ascent,0,0); + baseline = (int) (ascent*scale); + + while (text[ch]) { + int advance,lsb,x0,y0,x1,y1; + float x_shift = xpos - (float) floor(xpos); + stbtt_GetCodepointHMetrics(&font, text[ch], &advance, &lsb); + stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1); + stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(int) xpos + x0], x1-x0,y1-y0, 79, scale,scale,x_shift,0, text[ch]); + // note that this stomps the old data, so where character boxes overlap (e.g. 'lj') it's wrong + // because this API is really for baking character bitmaps into textures. if you want to render + // a sequence of characters, you really need to render each bitmap to a temp buffer, then + // "alpha blend" that into the working buffer + xpos += (advance * scale); + if (text[ch+1]) + xpos += scale*stbtt_GetCodepointKernAdvance(&font, text[ch],text[ch+1]); + ++ch; + } + + for (j=0; j < 20; ++j) { + for (i=0; i < 78; ++i) + putchar(" .:ioVM@"[screen[j][i]>>5]); + putchar('\n'); + } + + return 0; +} +#endif + + +////////////////////////////////////////////////////////////////////////////// +////////////////////////////////////////////////////////////////////////////// +//// +//// INTEGRATION WITH YOUR CODEBASE +//// +//// The following sections allow you to supply alternate definitions +//// of C library functions used by stb_truetype, e.g. if you don't +//// link with the C runtime library. + +#ifdef STB_TRUETYPE_IMPLEMENTATION + // #define your own (u)stbtt_int8/16/32 before including to override this + #ifndef stbtt_uint8 + typedef unsigned char stbtt_uint8; + typedef signed char stbtt_int8; + typedef unsigned short stbtt_uint16; + typedef signed short stbtt_int16; + typedef unsigned int stbtt_uint32; + typedef signed int stbtt_int32; + #endif + + typedef char stbtt__check_size32[sizeof(stbtt_int32)==4 ? 1 : -1]; + typedef char stbtt__check_size16[sizeof(stbtt_int16)==2 ? 1 : -1]; + + // e.g. #define your own STBTT_ifloor/STBTT_iceil() to avoid math.h + #ifndef STBTT_ifloor + #include + #define STBTT_ifloor(x) ((int) floor(x)) + #define STBTT_iceil(x) ((int) ceil(x)) + #endif + + #ifndef STBTT_sqrt + #include + #define STBTT_sqrt(x) sqrt(x) + #define STBTT_pow(x,y) pow(x,y) + #endif + + #ifndef STBTT_fmod + #include + #define STBTT_fmod(x,y) fmod(x,y) + #endif + + #ifndef STBTT_cos + #include + #define STBTT_cos(x) cos(x) + #define STBTT_acos(x) acos(x) + #endif + + #ifndef STBTT_fabs + #include + #define STBTT_fabs(x) fabs(x) + #endif + + // #define your own functions "STBTT_malloc" / "STBTT_free" to avoid malloc.h + #ifndef STBTT_malloc + #include + #define STBTT_malloc(x,u) ((void)(u),malloc(x)) + #define STBTT_free(x,u) ((void)(u),free(x)) + #endif + + #ifndef STBTT_assert + #include + #define STBTT_assert(x) assert(x) + #endif + + #ifndef STBTT_strlen + #include + #define STBTT_strlen(x) strlen(x) + #endif + + #ifndef STBTT_memcpy + #include + #define STBTT_memcpy memcpy + #define STBTT_memset memset + #endif +#endif + +/////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////// +//// +//// INTERFACE +//// +//// + +#ifndef __STB_INCLUDE_STB_TRUETYPE_H__ +#define __STB_INCLUDE_STB_TRUETYPE_H__ + +#ifdef STBTT_STATIC +#define STBTT_DEF static +#else +#define STBTT_DEF extern +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +// private structure +typedef struct +{ + unsigned char *data; + int cursor; + int size; +} stbtt__buf; + +////////////////////////////////////////////////////////////////////////////// +// +// TEXTURE BAKING API +// +// If you use this API, you only have to call two functions ever. +// + +typedef struct +{ + unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap + float xoff,yoff,xadvance; +} stbtt_bakedchar; + +STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, // font location (use offset=0 for plain .ttf) + float pixel_height, // height of font in pixels + unsigned char *pixels, int pw, int ph, // bitmap to be filled in + int first_char, int num_chars, // characters to bake + stbtt_bakedchar *chardata); // you allocate this, it's num_chars long +// if return is positive, the first unused row of the bitmap +// if return is negative, returns the negative of the number of characters that fit +// if return is 0, no characters fit and no rows were used +// This uses a very crappy packing. + +typedef struct +{ + float x0,y0,s0,t0; // top-left + float x1,y1,s1,t1; // bottom-right +} stbtt_aligned_quad; + +STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, // same data as above + int char_index, // character to display + float *xpos, float *ypos, // pointers to current position in screen pixel space + stbtt_aligned_quad *q, // output: quad to draw + int opengl_fillrule); // true if opengl fill rule; false if DX9 or earlier +// Call GetBakedQuad with char_index = 'character - first_char', and it +// creates the quad you need to draw and advances the current position. +// +// The coordinate system used assumes y increases downwards. +// +// Characters will extend both above and below the current position; +// see discussion of "BASELINE" above. +// +// It's inefficient; you might want to c&p it and optimize it. + +STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size, float *ascent, float *descent, float *lineGap); +// Query the font vertical metrics without having to create a font first. + + +////////////////////////////////////////////////////////////////////////////// +// +// NEW TEXTURE BAKING API +// +// This provides options for packing multiple fonts into one atlas, not +// perfectly but better than nothing. + +typedef struct +{ + unsigned short x0,y0,x1,y1; // coordinates of bbox in bitmap + float xoff,yoff,xadvance; + float xoff2,yoff2; +} stbtt_packedchar; + +typedef struct stbtt_pack_context stbtt_pack_context; +typedef struct stbtt_fontinfo stbtt_fontinfo; +#ifndef STB_RECT_PACK_VERSION +typedef struct stbrp_rect stbrp_rect; +#endif + +STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int width, int height, int stride_in_bytes, int padding, void *alloc_context); +// Initializes a packing context stored in the passed-in stbtt_pack_context. +// Future calls using this context will pack characters into the bitmap passed +// in here: a 1-channel bitmap that is width * height. stride_in_bytes is +// the distance from one row to the next (or 0 to mean they are packed tightly +// together). "padding" is the amount of padding to leave between each +// character (normally you want '1' for bitmaps you'll use as textures with +// bilinear filtering). +// +// Returns 0 on failure, 1 on success. + +STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc); +// Cleans up the packing context and frees all memory. + +#define STBTT_POINT_SIZE(x) (-(x)) + +STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size, + int first_unicode_char_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range); +// Creates character bitmaps from the font_index'th font found in fontdata (use +// font_index=0 if you don't know what that is). It creates num_chars_in_range +// bitmaps for characters with unicode values starting at first_unicode_char_in_range +// and increasing. Data for how to render them is stored in chardata_for_range; +// pass these to stbtt_GetPackedQuad to get back renderable quads. +// +// font_size is the full height of the character from ascender to descender, +// as computed by stbtt_ScaleForPixelHeight. To use a point size as computed +// by stbtt_ScaleForMappingEmToPixels, wrap the point size in STBTT_POINT_SIZE() +// and pass that result as 'font_size': +// ..., 20 , ... // font max minus min y is 20 pixels tall +// ..., STBTT_POINT_SIZE(20), ... // 'M' is 20 pixels tall + +typedef struct +{ + float font_size; + int first_unicode_codepoint_in_range; // if non-zero, then the chars are continuous, and this is the first codepoint + int *array_of_unicode_codepoints; // if non-zero, then this is an array of unicode codepoints + int num_chars; + stbtt_packedchar *chardata_for_range; // output + unsigned char h_oversample, v_oversample; // don't set these, they're used internally +} stbtt_pack_range; + +STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges); +// Creates character bitmaps from multiple ranges of characters stored in +// ranges. This will usually create a better-packed bitmap than multiple +// calls to stbtt_PackFontRange. Note that you can call this multiple +// times within a single PackBegin/PackEnd. + +STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample); +// Oversampling a font increases the quality by allowing higher-quality subpixel +// positioning, and is especially valuable at smaller text sizes. +// +// This function sets the amount of oversampling for all following calls to +// stbtt_PackFontRange(s) or stbtt_PackFontRangesGatherRects for a given +// pack context. The default (no oversampling) is achieved by h_oversample=1 +// and v_oversample=1. The total number of pixels required is +// h_oversample*v_oversample larger than the default; for example, 2x2 +// oversampling requires 4x the storage of 1x1. For best results, render +// oversampled textures with bilinear filtering. Look at the readme in +// stb/tests/oversample for information about oversampled fonts +// +// To use with PackFontRangesGather etc., you must set it before calls +// call to PackFontRangesGatherRects. + +STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip); +// If skip != 0, this tells stb_truetype to skip any codepoints for which +// there is no corresponding glyph. If skip=0, which is the default, then +// codepoints without a glyph received the font's "missing character" glyph, +// typically an empty box by convention. + +STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, // same data as above + int char_index, // character to display + float *xpos, float *ypos, // pointers to current position in screen pixel space + stbtt_aligned_quad *q, // output: quad to draw + int align_to_integer); + +STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects); +STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects); +STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects); +// Calling these functions in sequence is roughly equivalent to calling +// stbtt_PackFontRanges(). If you more control over the packing of multiple +// fonts, or if you want to pack custom data into a font texture, take a look +// at the source to of stbtt_PackFontRanges() and create a custom version +// using these functions, e.g. call GatherRects multiple times, +// building up a single array of rects, then call PackRects once, +// then call RenderIntoRects repeatedly. This may result in a +// better packing than calling PackFontRanges multiple times +// (or it may not). + +// this is an opaque structure that you shouldn't mess with which holds +// all the context needed from PackBegin to PackEnd. +struct stbtt_pack_context { + void *user_allocator_context; + void *pack_info; + int width; + int height; + int stride_in_bytes; + int padding; + int skip_missing; + unsigned int h_oversample, v_oversample; + unsigned char *pixels; + void *nodes; +}; + +////////////////////////////////////////////////////////////////////////////// +// +// FONT LOADING +// +// + +STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data); +// This function will determine the number of fonts in a font file. TrueType +// collection (.ttc) files may contain multiple fonts, while TrueType font +// (.ttf) files only contain one font. The number of fonts can be used for +// indexing with the previous function where the index is between zero and one +// less than the total fonts. If an error occurs, -1 is returned. + +STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index); +// Each .ttf/.ttc file may have more than one font. Each font has a sequential +// index number starting from 0. Call this function to get the font offset for +// a given index; it returns -1 if the index is out of range. A regular .ttf +// file will only define one font and it always be at offset 0, so it will +// return '0' for index 0, and -1 for all other indices. + +// The following structure is defined publicly so you can declare one on +// the stack or as a global or etc, but you should treat it as opaque. +struct stbtt_fontinfo +{ + void * userdata; + unsigned char * data; // pointer to .ttf file + int fontstart; // offset of start of font + + int numGlyphs; // number of glyphs, needed for range checking + + int loca,head,glyf,hhea,hmtx,kern,gpos,svg; // table locations as offset from start of .ttf + int index_map; // a cmap mapping for our chosen character encoding + int indexToLocFormat; // format needed to map from glyph index to glyph + + stbtt__buf cff; // cff font data + stbtt__buf charstrings; // the charstring index + stbtt__buf gsubrs; // global charstring subroutines index + stbtt__buf subrs; // private charstring subroutines index + stbtt__buf fontdicts; // array of font dicts + stbtt__buf fdselect; // map from glyph to fontdict +}; + +STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset); +// Given an offset into the file that defines a font, this function builds +// the necessary cached info for the rest of the system. You must allocate +// the stbtt_fontinfo yourself, and stbtt_InitFont will fill it out. You don't +// need to do anything special to free it, because the contents are pure +// value data with no additional data structures. Returns 0 on failure. + + +////////////////////////////////////////////////////////////////////////////// +// +// CHARACTER TO GLYPH-INDEX CONVERSIOn + +STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint); +// If you're going to perform multiple operations on the same character +// and you want a speed-up, call this function with the character you're +// going to process, then use glyph-based functions instead of the +// codepoint-based functions. +// Returns 0 if the character codepoint is not defined in the font. + + +////////////////////////////////////////////////////////////////////////////// +// +// CHARACTER PROPERTIES +// + +STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float pixels); +// computes a scale factor to produce a font whose "height" is 'pixels' tall. +// Height is measured as the distance from the highest ascender to the lowest +// descender; in other words, it's equivalent to calling stbtt_GetFontVMetrics +// and computing: +// scale = pixels / (ascent - descent) +// so if you prefer to measure height by the ascent only, use a similar calculation. + +STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels); +// computes a scale factor to produce a font whose EM size is mapped to +// 'pixels' tall. This is probably what traditional APIs compute, but +// I'm not positive. + +STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap); +// ascent is the coordinate above the baseline the font extends; descent +// is the coordinate below the baseline the font extends (i.e. it is typically negative) +// lineGap is the spacing between one row's descent and the next row's ascent... +// so you should advance the vertical position by "*ascent - *descent + *lineGap" +// these are expressed in unscaled coordinates, so you must multiply by +// the scale factor for a given size + +STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap); +// analogous to GetFontVMetrics, but returns the "typographic" values from the OS/2 +// table (specific to MS/Windows TTF files). +// +// Returns 1 on success (table present), 0 on failure. + +STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1); +// the bounding box around all possible characters + +STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing); +// leftSideBearing is the offset from the current horizontal position to the left edge of the character +// advanceWidth is the offset from the current horizontal position to the next horizontal position +// these are expressed in unscaled coordinates + +STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2); +// an additional amount to add to the 'advance' value between ch1 and ch2 + +STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1); +// Gets the bounding box of the visible part of the glyph, in unscaled coordinates + +STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing); +STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2); +STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1); +// as above, but takes one or more glyph indices for greater efficiency + +typedef struct stbtt_kerningentry +{ + int glyph1; // use stbtt_FindGlyphIndex + int glyph2; + int advance; +} stbtt_kerningentry; + +STBTT_DEF int stbtt_GetKerningTableLength(const stbtt_fontinfo *info); +STBTT_DEF int stbtt_GetKerningTable(const stbtt_fontinfo *info, stbtt_kerningentry* table, int table_length); +// Retrieves a complete list of all of the kerning pairs provided by the font +// stbtt_GetKerningTable never writes more than table_length entries and returns how many entries it did write. +// The table will be sorted by (a.glyph1 == b.glyph1)?(a.glyph2 < b.glyph2):(a.glyph1 < b.glyph1) + +////////////////////////////////////////////////////////////////////////////// +// +// GLYPH SHAPES (you probably don't need these, but they have to go before +// the bitmaps for C declaration-order reasons) +// + +#ifndef STBTT_vmove // you can predefine these to use different values (but why?) + enum { + STBTT_vmove=1, + STBTT_vline, + STBTT_vcurve, + STBTT_vcubic + }; +#endif + +#ifndef stbtt_vertex // you can predefine this to use different values + // (we share this with other code at RAD) + #define stbtt_vertex_type short // can't use stbtt_int16 because that's not visible in the header file + typedef struct + { + stbtt_vertex_type x,y,cx,cy,cx1,cy1; + unsigned char type,padding; + } stbtt_vertex; +#endif + +STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index); +// returns non-zero if nothing is drawn for this glyph + +STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices); +STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **vertices); +// returns # of vertices and fills *vertices with the pointer to them +// these are expressed in "unscaled" coordinates +// +// The shape is a series of contours. Each one starts with +// a STBTT_moveto, then consists of a series of mixed +// STBTT_lineto and STBTT_curveto segments. A lineto +// draws a line from previous endpoint to its x,y; a curveto +// draws a quadratic bezier from previous endpoint to +// its x,y, using cx,cy as the bezier control point. + +STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *vertices); +// frees the data allocated above + +STBTT_DEF unsigned char *stbtt_FindSVGDoc(const stbtt_fontinfo *info, int gl); +STBTT_DEF int stbtt_GetCodepointSVG(const stbtt_fontinfo *info, int unicode_codepoint, const char **svg); +STBTT_DEF int stbtt_GetGlyphSVG(const stbtt_fontinfo *info, int gl, const char **svg); +// fills svg with the character's SVG data. +// returns data size or 0 if SVG not found. + +////////////////////////////////////////////////////////////////////////////// +// +// BITMAP RENDERING +// + +STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata); +// frees the bitmap allocated below + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int *height, int *xoff, int *yoff); +// allocates a large-enough single-channel 8bpp bitmap and renders the +// specified character/glyph at the specified scale into it, with +// antialiasing. 0 is no coverage (transparent), 255 is fully covered (opaque). +// *width & *height are filled out with the width & height of the bitmap, +// which is stored left-to-right, top-to-bottom. +// +// xoff/yoff are the offset it pixel space from the glyph origin to the top-left of the bitmap + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff); +// the same as stbtt_GetCodepoitnBitmap, but you can specify a subpixel +// shift for the character + +STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint); +// the same as stbtt_GetCodepointBitmap, but you pass in storage for the bitmap +// in the form of 'output', with row spacing of 'out_stride' bytes. the bitmap +// is clipped to out_w/out_h bytes. Call stbtt_GetCodepointBitmapBox to get the +// width and height and positioning info for it first. + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint); +// same as stbtt_MakeCodepointBitmap, but you can specify a subpixel +// shift for the character + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint); +// same as stbtt_MakeCodepointBitmapSubpixel, but prefiltering +// is performed (see stbtt_PackSetOversampling) + +STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); +// get the bbox of the bitmap centered around the glyph origin; so the +// bitmap width is ix1-ix0, height is iy1-iy0, and location to place +// the bitmap top left is (leftSideBearing*scale,iy0). +// (Note that the bitmap uses y-increases-down, but the shape uses +// y-increases-up, so CodepointBitmapBox and CodepointBox are inverted.) + +STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); +// same as stbtt_GetCodepointBitmapBox, but you can specify a subpixel +// shift for the character + +// the following functions are equivalent to the above functions, but operate +// on glyph indices instead of Unicode codepoints (for efficiency) +STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff); +STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff); +STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int glyph); +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph); +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int glyph); +STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1); +STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1); + + +// @TODO: don't expose this structure +typedef struct +{ + int w,h,stride; + unsigned char *pixels; +} stbtt__bitmap; + +// rasterize a shape with quadratic beziers into a bitmap +STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, // 1-channel bitmap to draw into + float flatness_in_pixels, // allowable error of curve in pixels + stbtt_vertex *vertices, // array of vertices defining shape + int num_verts, // number of vertices in above array + float scale_x, float scale_y, // scale applied to input vertices + float shift_x, float shift_y, // translation applied to input vertices + int x_off, int y_off, // another translation applied to input + int invert, // if non-zero, vertically flip shape + void *userdata); // context for to STBTT_MALLOC + +////////////////////////////////////////////////////////////////////////////// +// +// Signed Distance Function (or Field) rendering + +STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata); +// frees the SDF bitmap allocated below + +STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff); +STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int codepoint, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff); +// These functions compute a discretized SDF field for a single character, suitable for storing +// in a single-channel texture, sampling with bilinear filtering, and testing against +// larger than some threshold to produce scalable fonts. +// info -- the font +// scale -- controls the size of the resulting SDF bitmap, same as it would be creating a regular bitmap +// glyph/codepoint -- the character to generate the SDF for +// padding -- extra "pixels" around the character which are filled with the distance to the character (not 0), +// which allows effects like bit outlines +// onedge_value -- value 0-255 to test the SDF against to reconstruct the character (i.e. the isocontour of the character) +// pixel_dist_scale -- what value the SDF should increase by when moving one SDF "pixel" away from the edge (on the 0..255 scale) +// if positive, > onedge_value is inside; if negative, < onedge_value is inside +// width,height -- output height & width of the SDF bitmap (including padding) +// xoff,yoff -- output origin of the character +// return value -- a 2D array of bytes 0..255, width*height in size +// +// pixel_dist_scale & onedge_value are a scale & bias that allows you to make +// optimal use of the limited 0..255 for your application, trading off precision +// and special effects. SDF values outside the range 0..255 are clamped to 0..255. +// +// Example: +// scale = stbtt_ScaleForPixelHeight(22) +// padding = 5 +// onedge_value = 180 +// pixel_dist_scale = 180/5.0 = 36.0 +// +// This will create an SDF bitmap in which the character is about 22 pixels +// high but the whole bitmap is about 22+5+5=32 pixels high. To produce a filled +// shape, sample the SDF at each pixel and fill the pixel if the SDF value +// is greater than or equal to 180/255. (You'll actually want to antialias, +// which is beyond the scope of this example.) Additionally, you can compute +// offset outlines (e.g. to stroke the character border inside & outside, +// or only outside). For example, to fill outside the character up to 3 SDF +// pixels, you would compare against (180-36.0*3)/255 = 72/255. The above +// choice of variables maps a range from 5 pixels outside the shape to +// 2 pixels inside the shape to 0..255; this is intended primarily for apply +// outside effects only (the interior range is needed to allow proper +// antialiasing of the font at *smaller* sizes) +// +// The function computes the SDF analytically at each SDF pixel, not by e.g. +// building a higher-res bitmap and approximating it. In theory the quality +// should be as high as possible for an SDF of this size & representation, but +// unclear if this is true in practice (perhaps building a higher-res bitmap +// and computing from that can allow drop-out prevention). +// +// The algorithm has not been optimized at all, so expect it to be slow +// if computing lots of characters or very large sizes. + + + +////////////////////////////////////////////////////////////////////////////// +// +// Finding the right font... +// +// You should really just solve this offline, keep your own tables +// of what font is what, and don't try to get it out of the .ttf file. +// That's because getting it out of the .ttf file is really hard, because +// the names in the file can appear in many possible encodings, in many +// possible languages, and e.g. if you need a case-insensitive comparison, +// the details of that depend on the encoding & language in a complex way +// (actually underspecified in truetype, but also gigantic). +// +// But you can use the provided functions in two possible ways: +// stbtt_FindMatchingFont() will use *case-sensitive* comparisons on +// unicode-encoded names to try to find the font you want; +// you can run this before calling stbtt_InitFont() +// +// stbtt_GetFontNameString() lets you get any of the various strings +// from the file yourself and do your own comparisons on them. +// You have to have called stbtt_InitFont() first. + + +STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags); +// returns the offset (not index) of the font that matches, or -1 if none +// if you use STBTT_MACSTYLE_DONTCARE, use a font name like "Arial Bold". +// if you use any other flag, use a font name like "Arial"; this checks +// the 'macStyle' header field; i don't know if fonts set this consistently +#define STBTT_MACSTYLE_DONTCARE 0 +#define STBTT_MACSTYLE_BOLD 1 +#define STBTT_MACSTYLE_ITALIC 2 +#define STBTT_MACSTYLE_UNDERSCORE 4 +#define STBTT_MACSTYLE_NONE 8 // <= not same as 0, this makes us check the bitfield is 0 + +STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2); +// returns 1/0 whether the first string interpreted as utf8 is identical to +// the second string interpreted as big-endian utf16... useful for strings from next func + +STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID); +// returns the string (which may be big-endian double byte, e.g. for unicode) +// and puts the length in bytes in *length. +// +// some of the values for the IDs are below; for more see the truetype spec: +// http://developer.apple.com/textfonts/TTRefMan/RM06/Chap6name.html +// http://www.microsoft.com/typography/otspec/name.htm + +enum { // platformID + STBTT_PLATFORM_ID_UNICODE =0, + STBTT_PLATFORM_ID_MAC =1, + STBTT_PLATFORM_ID_ISO =2, + STBTT_PLATFORM_ID_MICROSOFT =3 +}; + +enum { // encodingID for STBTT_PLATFORM_ID_UNICODE + STBTT_UNICODE_EID_UNICODE_1_0 =0, + STBTT_UNICODE_EID_UNICODE_1_1 =1, + STBTT_UNICODE_EID_ISO_10646 =2, + STBTT_UNICODE_EID_UNICODE_2_0_BMP=3, + STBTT_UNICODE_EID_UNICODE_2_0_FULL=4 +}; + +enum { // encodingID for STBTT_PLATFORM_ID_MICROSOFT + STBTT_MS_EID_SYMBOL =0, + STBTT_MS_EID_UNICODE_BMP =1, + STBTT_MS_EID_SHIFTJIS =2, + STBTT_MS_EID_UNICODE_FULL =10 +}; + +enum { // encodingID for STBTT_PLATFORM_ID_MAC; same as Script Manager codes + STBTT_MAC_EID_ROMAN =0, STBTT_MAC_EID_ARABIC =4, + STBTT_MAC_EID_JAPANESE =1, STBTT_MAC_EID_HEBREW =5, + STBTT_MAC_EID_CHINESE_TRAD =2, STBTT_MAC_EID_GREEK =6, + STBTT_MAC_EID_KOREAN =3, STBTT_MAC_EID_RUSSIAN =7 +}; + +enum { // languageID for STBTT_PLATFORM_ID_MICROSOFT; same as LCID... + // problematic because there are e.g. 16 english LCIDs and 16 arabic LCIDs + STBTT_MS_LANG_ENGLISH =0x0409, STBTT_MS_LANG_ITALIAN =0x0410, + STBTT_MS_LANG_CHINESE =0x0804, STBTT_MS_LANG_JAPANESE =0x0411, + STBTT_MS_LANG_DUTCH =0x0413, STBTT_MS_LANG_KOREAN =0x0412, + STBTT_MS_LANG_FRENCH =0x040c, STBTT_MS_LANG_RUSSIAN =0x0419, + STBTT_MS_LANG_GERMAN =0x0407, STBTT_MS_LANG_SPANISH =0x0409, + STBTT_MS_LANG_HEBREW =0x040d, STBTT_MS_LANG_SWEDISH =0x041D +}; + +enum { // languageID for STBTT_PLATFORM_ID_MAC + STBTT_MAC_LANG_ENGLISH =0 , STBTT_MAC_LANG_JAPANESE =11, + STBTT_MAC_LANG_ARABIC =12, STBTT_MAC_LANG_KOREAN =23, + STBTT_MAC_LANG_DUTCH =4 , STBTT_MAC_LANG_RUSSIAN =32, + STBTT_MAC_LANG_FRENCH =1 , STBTT_MAC_LANG_SPANISH =6 , + STBTT_MAC_LANG_GERMAN =2 , STBTT_MAC_LANG_SWEDISH =5 , + STBTT_MAC_LANG_HEBREW =10, STBTT_MAC_LANG_CHINESE_SIMPLIFIED =33, + STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19 +}; + +#ifdef __cplusplus +} +#endif + +#endif // __STB_INCLUDE_STB_TRUETYPE_H__ + +/////////////////////////////////////////////////////////////////////////////// +/////////////////////////////////////////////////////////////////////////////// +//// +//// IMPLEMENTATION +//// +//// + +#ifdef STB_TRUETYPE_IMPLEMENTATION + +#ifndef STBTT_MAX_OVERSAMPLE +#define STBTT_MAX_OVERSAMPLE 8 +#endif + +#if STBTT_MAX_OVERSAMPLE > 255 +#error "STBTT_MAX_OVERSAMPLE cannot be > 255" +#endif + +typedef int stbtt__test_oversample_pow2[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1)) == 0 ? 1 : -1]; + +#ifndef STBTT_RASTERIZER_VERSION +#define STBTT_RASTERIZER_VERSION 2 +#endif + +#ifdef _MSC_VER +#define STBTT__NOTUSED(v) (void)(v) +#else +#define STBTT__NOTUSED(v) (void)sizeof(v) +#endif + +////////////////////////////////////////////////////////////////////////// +// +// stbtt__buf helpers to parse data from file +// + +static stbtt_uint8 stbtt__buf_get8(stbtt__buf *b) +{ + if (b->cursor >= b->size) + return 0; + return b->data[b->cursor++]; +} + +static stbtt_uint8 stbtt__buf_peek8(stbtt__buf *b) +{ + if (b->cursor >= b->size) + return 0; + return b->data[b->cursor]; +} + +static void stbtt__buf_seek(stbtt__buf *b, int o) +{ + STBTT_assert(!(o > b->size || o < 0)); + b->cursor = (o > b->size || o < 0) ? b->size : o; +} + +static void stbtt__buf_skip(stbtt__buf *b, int o) +{ + stbtt__buf_seek(b, b->cursor + o); +} + +static stbtt_uint32 stbtt__buf_get(stbtt__buf *b, int n) +{ + stbtt_uint32 v = 0; + int i; + STBTT_assert(n >= 1 && n <= 4); + for (i = 0; i < n; i++) + v = (v << 8) | stbtt__buf_get8(b); + return v; +} + +static stbtt__buf stbtt__new_buf(const void *p, size_t size) +{ + stbtt__buf r; + STBTT_assert(size < 0x40000000); + r.data = (stbtt_uint8*) p; + r.size = (int) size; + r.cursor = 0; + return r; +} + +#define stbtt__buf_get16(b) stbtt__buf_get((b), 2) +#define stbtt__buf_get32(b) stbtt__buf_get((b), 4) + +static stbtt__buf stbtt__buf_range(const stbtt__buf *b, int o, int s) +{ + stbtt__buf r = stbtt__new_buf(NULL, 0); + if (o < 0 || s < 0 || o > b->size || s > b->size - o) return r; + r.data = b->data + o; + r.size = s; + return r; +} + +static stbtt__buf stbtt__cff_get_index(stbtt__buf *b) +{ + int count, start, offsize; + start = b->cursor; + count = stbtt__buf_get16(b); + if (count) { + offsize = stbtt__buf_get8(b); + STBTT_assert(offsize >= 1 && offsize <= 4); + stbtt__buf_skip(b, offsize * count); + stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1); + } + return stbtt__buf_range(b, start, b->cursor - start); +} + +static stbtt_uint32 stbtt__cff_int(stbtt__buf *b) +{ + int b0 = stbtt__buf_get8(b); + if (b0 >= 32 && b0 <= 246) return b0 - 139; + else if (b0 >= 247 && b0 <= 250) return (b0 - 247)*256 + stbtt__buf_get8(b) + 108; + else if (b0 >= 251 && b0 <= 254) return -(b0 - 251)*256 - stbtt__buf_get8(b) - 108; + else if (b0 == 28) return stbtt__buf_get16(b); + else if (b0 == 29) return stbtt__buf_get32(b); + STBTT_assert(0); + return 0; +} + +static void stbtt__cff_skip_operand(stbtt__buf *b) { + int v, b0 = stbtt__buf_peek8(b); + STBTT_assert(b0 >= 28); + if (b0 == 30) { + stbtt__buf_skip(b, 1); + while (b->cursor < b->size) { + v = stbtt__buf_get8(b); + if ((v & 0xF) == 0xF || (v >> 4) == 0xF) + break; + } + } else { + stbtt__cff_int(b); + } +} + +static stbtt__buf stbtt__dict_get(stbtt__buf *b, int key) +{ + stbtt__buf_seek(b, 0); + while (b->cursor < b->size) { + int start = b->cursor, end, op; + while (stbtt__buf_peek8(b) >= 28) + stbtt__cff_skip_operand(b); + end = b->cursor; + op = stbtt__buf_get8(b); + if (op == 12) op = stbtt__buf_get8(b) | 0x100; + if (op == key) return stbtt__buf_range(b, start, end-start); + } + return stbtt__buf_range(b, 0, 0); +} + +static void stbtt__dict_get_ints(stbtt__buf *b, int key, int outcount, stbtt_uint32 *out) +{ + int i; + stbtt__buf operands = stbtt__dict_get(b, key); + for (i = 0; i < outcount && operands.cursor < operands.size; i++) + out[i] = stbtt__cff_int(&operands); +} + +static int stbtt__cff_index_count(stbtt__buf *b) +{ + stbtt__buf_seek(b, 0); + return stbtt__buf_get16(b); +} + +static stbtt__buf stbtt__cff_index_get(stbtt__buf b, int i) +{ + int count, offsize, start, end; + stbtt__buf_seek(&b, 0); + count = stbtt__buf_get16(&b); + offsize = stbtt__buf_get8(&b); + STBTT_assert(i >= 0 && i < count); + STBTT_assert(offsize >= 1 && offsize <= 4); + stbtt__buf_skip(&b, i*offsize); + start = stbtt__buf_get(&b, offsize); + end = stbtt__buf_get(&b, offsize); + return stbtt__buf_range(&b, 2+(count+1)*offsize+start, end - start); +} + +////////////////////////////////////////////////////////////////////////// +// +// accessors to parse data from file +// + +// on platforms that don't allow misaligned reads, if we want to allow +// truetype fonts that aren't padded to alignment, define ALLOW_UNALIGNED_TRUETYPE + +#define ttBYTE(p) (* (stbtt_uint8 *) (p)) +#define ttCHAR(p) (* (stbtt_int8 *) (p)) +#define ttFixed(p) ttLONG(p) + +static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } +static stbtt_int16 ttSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; } +static stbtt_uint32 ttULONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } +static stbtt_int32 ttLONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; } + +#define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == (c3)) +#define stbtt_tag(p,str) stbtt_tag4(p,str[0],str[1],str[2],str[3]) + +static int stbtt__isfont(stbtt_uint8 *font) +{ + // check the version number + if (stbtt_tag4(font, '1',0,0,0)) return 1; // TrueType 1 + if (stbtt_tag(font, "typ1")) return 1; // TrueType with type 1 font -- we don't support this! + if (stbtt_tag(font, "OTTO")) return 1; // OpenType with CFF + if (stbtt_tag4(font, 0,1,0,0)) return 1; // OpenType 1.0 + if (stbtt_tag(font, "true")) return 1; // Apple specification for TrueType fonts + return 0; +} + +// @OPTIMIZE: binary search +static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart, const char *tag) +{ + stbtt_int32 num_tables = ttUSHORT(data+fontstart+4); + stbtt_uint32 tabledir = fontstart + 12; + stbtt_int32 i; + for (i=0; i < num_tables; ++i) { + stbtt_uint32 loc = tabledir + 16*i; + if (stbtt_tag(data+loc+0, tag)) + return ttULONG(data+loc+8); + } + return 0; +} + +static int stbtt_GetFontOffsetForIndex_internal(unsigned char *font_collection, int index) +{ + // if it's just a font, there's only one valid index + if (stbtt__isfont(font_collection)) + return index == 0 ? 0 : -1; + + // check if it's a TTC + if (stbtt_tag(font_collection, "ttcf")) { + // version 1? + if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) { + stbtt_int32 n = ttLONG(font_collection+8); + if (index >= n) + return -1; + return ttULONG(font_collection+12+index*4); + } + } + return -1; +} + +static int stbtt_GetNumberOfFonts_internal(unsigned char *font_collection) +{ + // if it's just a font, there's only one valid font + if (stbtt__isfont(font_collection)) + return 1; + + // check if it's a TTC + if (stbtt_tag(font_collection, "ttcf")) { + // version 1? + if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) { + return ttLONG(font_collection+8); + } + } + return 0; +} + +static stbtt__buf stbtt__get_subrs(stbtt__buf cff, stbtt__buf fontdict) +{ + stbtt_uint32 subrsoff = 0, private_loc[2] = { 0, 0 }; + stbtt__buf pdict; + stbtt__dict_get_ints(&fontdict, 18, 2, private_loc); + if (!private_loc[1] || !private_loc[0]) return stbtt__new_buf(NULL, 0); + pdict = stbtt__buf_range(&cff, private_loc[1], private_loc[0]); + stbtt__dict_get_ints(&pdict, 19, 1, &subrsoff); + if (!subrsoff) return stbtt__new_buf(NULL, 0); + stbtt__buf_seek(&cff, private_loc[1]+subrsoff); + return stbtt__cff_get_index(&cff); +} + +// since most people won't use this, find this table the first time it's needed +static int stbtt__get_svg(stbtt_fontinfo *info) +{ + stbtt_uint32 t; + if (info->svg < 0) { + t = stbtt__find_table(info->data, info->fontstart, "SVG "); + if (t) { + stbtt_uint32 offset = ttULONG(info->data + t + 2); + info->svg = t + offset; + } else { + info->svg = 0; + } + } + return info->svg; +} + +static int stbtt_InitFont_internal(stbtt_fontinfo *info, unsigned char *data, int fontstart) +{ + stbtt_uint32 cmap, t; + stbtt_int32 i,numTables; + + info->data = data; + info->fontstart = fontstart; + info->cff = stbtt__new_buf(NULL, 0); + + cmap = stbtt__find_table(data, fontstart, "cmap"); // required + info->loca = stbtt__find_table(data, fontstart, "loca"); // required + info->head = stbtt__find_table(data, fontstart, "head"); // required + info->glyf = stbtt__find_table(data, fontstart, "glyf"); // required + info->hhea = stbtt__find_table(data, fontstart, "hhea"); // required + info->hmtx = stbtt__find_table(data, fontstart, "hmtx"); // required + info->kern = stbtt__find_table(data, fontstart, "kern"); // not required + info->gpos = stbtt__find_table(data, fontstart, "GPOS"); // not required + + if (!cmap || !info->head || !info->hhea || !info->hmtx) + return 0; + if (info->glyf) { + // required for truetype + if (!info->loca) return 0; + } else { + // initialization for CFF / Type2 fonts (OTF) + stbtt__buf b, topdict, topdictidx; + stbtt_uint32 cstype = 2, charstrings = 0, fdarrayoff = 0, fdselectoff = 0; + stbtt_uint32 cff; + + cff = stbtt__find_table(data, fontstart, "CFF "); + if (!cff) return 0; + + info->fontdicts = stbtt__new_buf(NULL, 0); + info->fdselect = stbtt__new_buf(NULL, 0); + + // @TODO this should use size from table (not 512MB) + info->cff = stbtt__new_buf(data+cff, 512*1024*1024); + b = info->cff; + + // read the header + stbtt__buf_skip(&b, 2); + stbtt__buf_seek(&b, stbtt__buf_get8(&b)); // hdrsize + + // @TODO the name INDEX could list multiple fonts, + // but we just use the first one. + stbtt__cff_get_index(&b); // name INDEX + topdictidx = stbtt__cff_get_index(&b); + topdict = stbtt__cff_index_get(topdictidx, 0); + stbtt__cff_get_index(&b); // string INDEX + info->gsubrs = stbtt__cff_get_index(&b); + + stbtt__dict_get_ints(&topdict, 17, 1, &charstrings); + stbtt__dict_get_ints(&topdict, 0x100 | 6, 1, &cstype); + stbtt__dict_get_ints(&topdict, 0x100 | 36, 1, &fdarrayoff); + stbtt__dict_get_ints(&topdict, 0x100 | 37, 1, &fdselectoff); + info->subrs = stbtt__get_subrs(b, topdict); + + // we only support Type 2 charstrings + if (cstype != 2) return 0; + if (charstrings == 0) return 0; + + if (fdarrayoff) { + // looks like a CID font + if (!fdselectoff) return 0; + stbtt__buf_seek(&b, fdarrayoff); + info->fontdicts = stbtt__cff_get_index(&b); + info->fdselect = stbtt__buf_range(&b, fdselectoff, b.size-fdselectoff); + } + + stbtt__buf_seek(&b, charstrings); + info->charstrings = stbtt__cff_get_index(&b); + } + + t = stbtt__find_table(data, fontstart, "maxp"); + if (t) + info->numGlyphs = ttUSHORT(data+t+4); + else + info->numGlyphs = 0xffff; + + info->svg = -1; + + // find a cmap encoding table we understand *now* to avoid searching + // later. (todo: could make this installable) + // the same regardless of glyph. + numTables = ttUSHORT(data + cmap + 2); + info->index_map = 0; + for (i=0; i < numTables; ++i) { + stbtt_uint32 encoding_record = cmap + 4 + 8 * i; + // find an encoding we understand: + switch(ttUSHORT(data+encoding_record)) { + case STBTT_PLATFORM_ID_MICROSOFT: + switch (ttUSHORT(data+encoding_record+2)) { + case STBTT_MS_EID_UNICODE_BMP: + case STBTT_MS_EID_UNICODE_FULL: + // MS/Unicode + info->index_map = cmap + ttULONG(data+encoding_record+4); + break; + } + break; + case STBTT_PLATFORM_ID_UNICODE: + // Mac/iOS has these + // all the encodingIDs are unicode, so we don't bother to check it + info->index_map = cmap + ttULONG(data+encoding_record+4); + break; + } + } + if (info->index_map == 0) + return 0; + + info->indexToLocFormat = ttUSHORT(data+info->head + 50); + return 1; +} + +STBTT_DEF int stbtt_FindGlyphIndex(const stbtt_fontinfo *info, int unicode_codepoint) +{ + stbtt_uint8 *data = info->data; + stbtt_uint32 index_map = info->index_map; + + stbtt_uint16 format = ttUSHORT(data + index_map + 0); + if (format == 0) { // apple byte encoding + stbtt_int32 bytes = ttUSHORT(data + index_map + 2); + if (unicode_codepoint < bytes-6) + return ttBYTE(data + index_map + 6 + unicode_codepoint); + return 0; + } else if (format == 6) { + stbtt_uint32 first = ttUSHORT(data + index_map + 6); + stbtt_uint32 count = ttUSHORT(data + index_map + 8); + if ((stbtt_uint32) unicode_codepoint >= first && (stbtt_uint32) unicode_codepoint < first+count) + return ttUSHORT(data + index_map + 10 + (unicode_codepoint - first)*2); + return 0; + } else if (format == 2) { + STBTT_assert(0); // @TODO: high-byte mapping for japanese/chinese/korean + return 0; + } else if (format == 4) { // standard mapping for windows fonts: binary search collection of ranges + stbtt_uint16 segcount = ttUSHORT(data+index_map+6) >> 1; + stbtt_uint16 searchRange = ttUSHORT(data+index_map+8) >> 1; + stbtt_uint16 entrySelector = ttUSHORT(data+index_map+10); + stbtt_uint16 rangeShift = ttUSHORT(data+index_map+12) >> 1; + + // do a binary search of the segments + stbtt_uint32 endCount = index_map + 14; + stbtt_uint32 search = endCount; + + if (unicode_codepoint > 0xffff) + return 0; + + // they lie from endCount .. endCount + segCount + // but searchRange is the nearest power of two, so... + if (unicode_codepoint >= ttUSHORT(data + search + rangeShift*2)) + search += rangeShift*2; + + // now decrement to bias correctly to find smallest + search -= 2; + while (entrySelector) { + stbtt_uint16 end; + searchRange >>= 1; + end = ttUSHORT(data + search + searchRange*2); + if (unicode_codepoint > end) + search += searchRange*2; + --entrySelector; + } + search += 2; + + { + stbtt_uint16 offset, start, last; + stbtt_uint16 item = (stbtt_uint16) ((search - endCount) >> 1); + + start = ttUSHORT(data + index_map + 14 + segcount*2 + 2 + 2*item); + last = ttUSHORT(data + endCount + 2*item); + if (unicode_codepoint < start || unicode_codepoint > last) + return 0; + + offset = ttUSHORT(data + index_map + 14 + segcount*6 + 2 + 2*item); + if (offset == 0) + return (stbtt_uint16) (unicode_codepoint + ttSHORT(data + index_map + 14 + segcount*4 + 2 + 2*item)); + + return ttUSHORT(data + offset + (unicode_codepoint-start)*2 + index_map + 14 + segcount*6 + 2 + 2*item); + } + } else if (format == 12 || format == 13) { + stbtt_uint32 ngroups = ttULONG(data+index_map+12); + stbtt_int32 low,high; + low = 0; high = (stbtt_int32)ngroups; + // Binary search the right group. + while (low < high) { + stbtt_int32 mid = low + ((high-low) >> 1); // rounds down, so low <= mid < high + stbtt_uint32 start_char = ttULONG(data+index_map+16+mid*12); + stbtt_uint32 end_char = ttULONG(data+index_map+16+mid*12+4); + if ((stbtt_uint32) unicode_codepoint < start_char) + high = mid; + else if ((stbtt_uint32) unicode_codepoint > end_char) + low = mid+1; + else { + stbtt_uint32 start_glyph = ttULONG(data+index_map+16+mid*12+8); + if (format == 12) + return start_glyph + unicode_codepoint-start_char; + else // format == 13 + return start_glyph; + } + } + return 0; // not found + } + // @TODO + STBTT_assert(0); + return 0; +} + +STBTT_DEF int stbtt_GetCodepointShape(const stbtt_fontinfo *info, int unicode_codepoint, stbtt_vertex **vertices) +{ + return stbtt_GetGlyphShape(info, stbtt_FindGlyphIndex(info, unicode_codepoint), vertices); +} + +static void stbtt_setvertex(stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy) +{ + v->type = type; + v->x = (stbtt_int16) x; + v->y = (stbtt_int16) y; + v->cx = (stbtt_int16) cx; + v->cy = (stbtt_int16) cy; +} + +static int stbtt__GetGlyfOffset(const stbtt_fontinfo *info, int glyph_index) +{ + int g1,g2; + + STBTT_assert(!info->cff.size); + + if (glyph_index >= info->numGlyphs) return -1; // glyph index out of range + if (info->indexToLocFormat >= 2) return -1; // unknown index->glyph map format + + if (info->indexToLocFormat == 0) { + g1 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2) * 2; + g2 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2 + 2) * 2; + } else { + g1 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4); + g2 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4 + 4); + } + + return g1==g2 ? -1 : g1; // if length is 0, return -1 +} + +static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1); + +STBTT_DEF int stbtt_GetGlyphBox(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) +{ + if (info->cff.size) { + stbtt__GetGlyphInfoT2(info, glyph_index, x0, y0, x1, y1); + } else { + int g = stbtt__GetGlyfOffset(info, glyph_index); + if (g < 0) return 0; + + if (x0) *x0 = ttSHORT(info->data + g + 2); + if (y0) *y0 = ttSHORT(info->data + g + 4); + if (x1) *x1 = ttSHORT(info->data + g + 6); + if (y1) *y1 = ttSHORT(info->data + g + 8); + } + return 1; +} + +STBTT_DEF int stbtt_GetCodepointBox(const stbtt_fontinfo *info, int codepoint, int *x0, int *y0, int *x1, int *y1) +{ + return stbtt_GetGlyphBox(info, stbtt_FindGlyphIndex(info,codepoint), x0,y0,x1,y1); +} + +STBTT_DEF int stbtt_IsGlyphEmpty(const stbtt_fontinfo *info, int glyph_index) +{ + stbtt_int16 numberOfContours; + int g; + if (info->cff.size) + return stbtt__GetGlyphInfoT2(info, glyph_index, NULL, NULL, NULL, NULL) == 0; + g = stbtt__GetGlyfOffset(info, glyph_index); + if (g < 0) return 1; + numberOfContours = ttSHORT(info->data + g); + return numberOfContours == 0; +} + +static int stbtt__close_shape(stbtt_vertex *vertices, int num_vertices, int was_off, int start_off, + stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy) +{ + if (start_off) { + if (was_off) + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy); + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, sx,sy,scx,scy); + } else { + if (was_off) + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve,sx,sy,cx,cy); + else + stbtt_setvertex(&vertices[num_vertices++], STBTT_vline,sx,sy,0,0); + } + return num_vertices; +} + +static int stbtt__GetGlyphShapeTT(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) +{ + stbtt_int16 numberOfContours; + stbtt_uint8 *endPtsOfContours; + stbtt_uint8 *data = info->data; + stbtt_vertex *vertices=0; + int num_vertices=0; + int g = stbtt__GetGlyfOffset(info, glyph_index); + + *pvertices = NULL; + + if (g < 0) return 0; + + numberOfContours = ttSHORT(data + g); + + if (numberOfContours > 0) { + stbtt_uint8 flags=0,flagcount; + stbtt_int32 ins, i,j=0,m,n, next_move, was_off=0, off, start_off=0; + stbtt_int32 x,y,cx,cy,sx,sy, scx,scy; + stbtt_uint8 *points; + endPtsOfContours = (data + g + 10); + ins = ttUSHORT(data + g + 10 + numberOfContours * 2); + points = data + g + 10 + numberOfContours * 2 + 2 + ins; + + n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2); + + m = n + 2*numberOfContours; // a loose bound on how many vertices we might need + vertices = (stbtt_vertex *) STBTT_malloc(m * sizeof(vertices[0]), info->userdata); + if (vertices == 0) + return 0; + + next_move = 0; + flagcount=0; + + // in first pass, we load uninterpreted data into the allocated array + // above, shifted to the end of the array so we won't overwrite it when + // we create our final data starting from the front + + off = m - n; // starting offset for uninterpreted data, regardless of how m ends up being calculated + + // first load flags + + for (i=0; i < n; ++i) { + if (flagcount == 0) { + flags = *points++; + if (flags & 8) + flagcount = *points++; + } else + --flagcount; + vertices[off+i].type = flags; + } + + // now load x coordinates + x=0; + for (i=0; i < n; ++i) { + flags = vertices[off+i].type; + if (flags & 2) { + stbtt_int16 dx = *points++; + x += (flags & 16) ? dx : -dx; // ??? + } else { + if (!(flags & 16)) { + x = x + (stbtt_int16) (points[0]*256 + points[1]); + points += 2; + } + } + vertices[off+i].x = (stbtt_int16) x; + } + + // now load y coordinates + y=0; + for (i=0; i < n; ++i) { + flags = vertices[off+i].type; + if (flags & 4) { + stbtt_int16 dy = *points++; + y += (flags & 32) ? dy : -dy; // ??? + } else { + if (!(flags & 32)) { + y = y + (stbtt_int16) (points[0]*256 + points[1]); + points += 2; + } + } + vertices[off+i].y = (stbtt_int16) y; + } + + // now convert them to our format + num_vertices=0; + sx = sy = cx = cy = scx = scy = 0; + for (i=0; i < n; ++i) { + flags = vertices[off+i].type; + x = (stbtt_int16) vertices[off+i].x; + y = (stbtt_int16) vertices[off+i].y; + + if (next_move == i) { + if (i != 0) + num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy); + + // now start the new one + start_off = !(flags & 1); + if (start_off) { + // if we start off with an off-curve point, then when we need to find a point on the curve + // where we can start, and we need to save some state for when we wraparound. + scx = x; + scy = y; + if (!(vertices[off+i+1].type & 1)) { + // next point is also a curve point, so interpolate an on-point curve + sx = (x + (stbtt_int32) vertices[off+i+1].x) >> 1; + sy = (y + (stbtt_int32) vertices[off+i+1].y) >> 1; + } else { + // otherwise just use the next point as our start point + sx = (stbtt_int32) vertices[off+i+1].x; + sy = (stbtt_int32) vertices[off+i+1].y; + ++i; // we're using point i+1 as the starting point, so skip it + } + } else { + sx = x; + sy = y; + } + stbtt_setvertex(&vertices[num_vertices++], STBTT_vmove,sx,sy,0,0); + was_off = 0; + next_move = 1 + ttUSHORT(endPtsOfContours+j*2); + ++j; + } else { + if (!(flags & 1)) { // if it's a curve + if (was_off) // two off-curve control points in a row means interpolate an on-curve midpoint + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+x)>>1, (cy+y)>>1, cx, cy); + cx = x; + cy = y; + was_off = 1; + } else { + if (was_off) + stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, x,y, cx, cy); + else + stbtt_setvertex(&vertices[num_vertices++], STBTT_vline, x,y,0,0); + was_off = 0; + } + } + } + num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy); + } else if (numberOfContours < 0) { + // Compound shapes. + int more = 1; + stbtt_uint8 *comp = data + g + 10; + num_vertices = 0; + vertices = 0; + while (more) { + stbtt_uint16 flags, gidx; + int comp_num_verts = 0, i; + stbtt_vertex *comp_verts = 0, *tmp = 0; + float mtx[6] = {1,0,0,1,0,0}, m, n; + + flags = ttSHORT(comp); comp+=2; + gidx = ttSHORT(comp); comp+=2; + + if (flags & 2) { // XY values + if (flags & 1) { // shorts + mtx[4] = ttSHORT(comp); comp+=2; + mtx[5] = ttSHORT(comp); comp+=2; + } else { + mtx[4] = ttCHAR(comp); comp+=1; + mtx[5] = ttCHAR(comp); comp+=1; + } + } + else { + // @TODO handle matching point + STBTT_assert(0); + } + if (flags & (1<<3)) { // WE_HAVE_A_SCALE + mtx[0] = mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[1] = mtx[2] = 0; + } else if (flags & (1<<6)) { // WE_HAVE_AN_X_AND_YSCALE + mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[1] = mtx[2] = 0; + mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; + } else if (flags & (1<<7)) { // WE_HAVE_A_TWO_BY_TWO + mtx[0] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[1] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[2] = ttSHORT(comp)/16384.0f; comp+=2; + mtx[3] = ttSHORT(comp)/16384.0f; comp+=2; + } + + // Find transformation scales. + m = (float) STBTT_sqrt(mtx[0]*mtx[0] + mtx[1]*mtx[1]); + n = (float) STBTT_sqrt(mtx[2]*mtx[2] + mtx[3]*mtx[3]); + + // Get indexed glyph. + comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts); + if (comp_num_verts > 0) { + // Transform vertices. + for (i = 0; i < comp_num_verts; ++i) { + stbtt_vertex* v = &comp_verts[i]; + stbtt_vertex_type x,y; + x=v->x; y=v->y; + v->x = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4])); + v->y = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5])); + x=v->cx; y=v->cy; + v->cx = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4])); + v->cy = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5])); + } + // Append vertices. + tmp = (stbtt_vertex*)STBTT_malloc((num_vertices+comp_num_verts)*sizeof(stbtt_vertex), info->userdata); + if (!tmp) { + if (vertices) STBTT_free(vertices, info->userdata); + if (comp_verts) STBTT_free(comp_verts, info->userdata); + return 0; + } + if (num_vertices > 0 && vertices) STBTT_memcpy(tmp, vertices, num_vertices*sizeof(stbtt_vertex)); + STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*sizeof(stbtt_vertex)); + if (vertices) STBTT_free(vertices, info->userdata); + vertices = tmp; + STBTT_free(comp_verts, info->userdata); + num_vertices += comp_num_verts; + } + // More components ? + more = flags & (1<<5); + } + } else { + // numberOfCounters == 0, do nothing + } + + *pvertices = vertices; + return num_vertices; +} + +typedef struct +{ + int bounds; + int started; + float first_x, first_y; + float x, y; + stbtt_int32 min_x, max_x, min_y, max_y; + + stbtt_vertex *pvertices; + int num_vertices; +} stbtt__csctx; + +#define STBTT__CSCTX_INIT(bounds) {bounds,0, 0,0, 0,0, 0,0,0,0, NULL, 0} + +static void stbtt__track_vertex(stbtt__csctx *c, stbtt_int32 x, stbtt_int32 y) +{ + if (x > c->max_x || !c->started) c->max_x = x; + if (y > c->max_y || !c->started) c->max_y = y; + if (x < c->min_x || !c->started) c->min_x = x; + if (y < c->min_y || !c->started) c->min_y = y; + c->started = 1; +} + +static void stbtt__csctx_v(stbtt__csctx *c, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy, stbtt_int32 cx1, stbtt_int32 cy1) +{ + if (c->bounds) { + stbtt__track_vertex(c, x, y); + if (type == STBTT_vcubic) { + stbtt__track_vertex(c, cx, cy); + stbtt__track_vertex(c, cx1, cy1); + } + } else { + stbtt_setvertex(&c->pvertices[c->num_vertices], type, x, y, cx, cy); + c->pvertices[c->num_vertices].cx1 = (stbtt_int16) cx1; + c->pvertices[c->num_vertices].cy1 = (stbtt_int16) cy1; + } + c->num_vertices++; +} + +static void stbtt__csctx_close_shape(stbtt__csctx *ctx) +{ + if (ctx->first_x != ctx->x || ctx->first_y != ctx->y) + stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->first_x, (int)ctx->first_y, 0, 0, 0, 0); +} + +static void stbtt__csctx_rmove_to(stbtt__csctx *ctx, float dx, float dy) +{ + stbtt__csctx_close_shape(ctx); + ctx->first_x = ctx->x = ctx->x + dx; + ctx->first_y = ctx->y = ctx->y + dy; + stbtt__csctx_v(ctx, STBTT_vmove, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0); +} + +static void stbtt__csctx_rline_to(stbtt__csctx *ctx, float dx, float dy) +{ + ctx->x += dx; + ctx->y += dy; + stbtt__csctx_v(ctx, STBTT_vline, (int)ctx->x, (int)ctx->y, 0, 0, 0, 0); +} + +static void stbtt__csctx_rccurve_to(stbtt__csctx *ctx, float dx1, float dy1, float dx2, float dy2, float dx3, float dy3) +{ + float cx1 = ctx->x + dx1; + float cy1 = ctx->y + dy1; + float cx2 = cx1 + dx2; + float cy2 = cy1 + dy2; + ctx->x = cx2 + dx3; + ctx->y = cy2 + dy3; + stbtt__csctx_v(ctx, STBTT_vcubic, (int)ctx->x, (int)ctx->y, (int)cx1, (int)cy1, (int)cx2, (int)cy2); +} + +static stbtt__buf stbtt__get_subr(stbtt__buf idx, int n) +{ + int count = stbtt__cff_index_count(&idx); + int bias = 107; + if (count >= 33900) + bias = 32768; + else if (count >= 1240) + bias = 1131; + n += bias; + if (n < 0 || n >= count) + return stbtt__new_buf(NULL, 0); + return stbtt__cff_index_get(idx, n); +} + +static stbtt__buf stbtt__cid_get_glyph_subrs(const stbtt_fontinfo *info, int glyph_index) +{ + stbtt__buf fdselect = info->fdselect; + int nranges, start, end, v, fmt, fdselector = -1, i; + + stbtt__buf_seek(&fdselect, 0); + fmt = stbtt__buf_get8(&fdselect); + if (fmt == 0) { + // untested + stbtt__buf_skip(&fdselect, glyph_index); + fdselector = stbtt__buf_get8(&fdselect); + } else if (fmt == 3) { + nranges = stbtt__buf_get16(&fdselect); + start = stbtt__buf_get16(&fdselect); + for (i = 0; i < nranges; i++) { + v = stbtt__buf_get8(&fdselect); + end = stbtt__buf_get16(&fdselect); + if (glyph_index >= start && glyph_index < end) { + fdselector = v; + break; + } + start = end; + } + } + if (fdselector == -1) return stbtt__new_buf(NULL, 0); // [DEAR IMGUI] fixed, see #6007 and nothings/stb#1422 + return stbtt__get_subrs(info->cff, stbtt__cff_index_get(info->fontdicts, fdselector)); +} + +static int stbtt__run_charstring(const stbtt_fontinfo *info, int glyph_index, stbtt__csctx *c) +{ + int in_header = 1, maskbits = 0, subr_stack_height = 0, sp = 0, v, i, b0; + int has_subrs = 0, clear_stack; + float s[48]; + stbtt__buf subr_stack[10], subrs = info->subrs, b; + float f; + +#define STBTT__CSERR(s) (0) + + // this currently ignores the initial width value, which isn't needed if we have hmtx + b = stbtt__cff_index_get(info->charstrings, glyph_index); + while (b.cursor < b.size) { + i = 0; + clear_stack = 1; + b0 = stbtt__buf_get8(&b); + switch (b0) { + // @TODO implement hinting + case 0x13: // hintmask + case 0x14: // cntrmask + if (in_header) + maskbits += (sp / 2); // implicit "vstem" + in_header = 0; + stbtt__buf_skip(&b, (maskbits + 7) / 8); + break; + + case 0x01: // hstem + case 0x03: // vstem + case 0x12: // hstemhm + case 0x17: // vstemhm + maskbits += (sp / 2); + break; + + case 0x15: // rmoveto + in_header = 0; + if (sp < 2) return STBTT__CSERR("rmoveto stack"); + stbtt__csctx_rmove_to(c, s[sp-2], s[sp-1]); + break; + case 0x04: // vmoveto + in_header = 0; + if (sp < 1) return STBTT__CSERR("vmoveto stack"); + stbtt__csctx_rmove_to(c, 0, s[sp-1]); + break; + case 0x16: // hmoveto + in_header = 0; + if (sp < 1) return STBTT__CSERR("hmoveto stack"); + stbtt__csctx_rmove_to(c, s[sp-1], 0); + break; + + case 0x05: // rlineto + if (sp < 2) return STBTT__CSERR("rlineto stack"); + for (; i + 1 < sp; i += 2) + stbtt__csctx_rline_to(c, s[i], s[i+1]); + break; + + // hlineto/vlineto and vhcurveto/hvcurveto alternate horizontal and vertical + // starting from a different place. + + case 0x07: // vlineto + if (sp < 1) return STBTT__CSERR("vlineto stack"); + goto vlineto; + case 0x06: // hlineto + if (sp < 1) return STBTT__CSERR("hlineto stack"); + for (;;) { + if (i >= sp) break; + stbtt__csctx_rline_to(c, s[i], 0); + i++; + vlineto: + if (i >= sp) break; + stbtt__csctx_rline_to(c, 0, s[i]); + i++; + } + break; + + case 0x1F: // hvcurveto + if (sp < 4) return STBTT__CSERR("hvcurveto stack"); + goto hvcurveto; + case 0x1E: // vhcurveto + if (sp < 4) return STBTT__CSERR("vhcurveto stack"); + for (;;) { + if (i + 3 >= sp) break; + stbtt__csctx_rccurve_to(c, 0, s[i], s[i+1], s[i+2], s[i+3], (sp - i == 5) ? s[i + 4] : 0.0f); + i += 4; + hvcurveto: + if (i + 3 >= sp) break; + stbtt__csctx_rccurve_to(c, s[i], 0, s[i+1], s[i+2], (sp - i == 5) ? s[i+4] : 0.0f, s[i+3]); + i += 4; + } + break; + + case 0x08: // rrcurveto + if (sp < 6) return STBTT__CSERR("rcurveline stack"); + for (; i + 5 < sp; i += 6) + stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); + break; + + case 0x18: // rcurveline + if (sp < 8) return STBTT__CSERR("rcurveline stack"); + for (; i + 5 < sp - 2; i += 6) + stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); + if (i + 1 >= sp) return STBTT__CSERR("rcurveline stack"); + stbtt__csctx_rline_to(c, s[i], s[i+1]); + break; + + case 0x19: // rlinecurve + if (sp < 8) return STBTT__CSERR("rlinecurve stack"); + for (; i + 1 < sp - 6; i += 2) + stbtt__csctx_rline_to(c, s[i], s[i+1]); + if (i + 5 >= sp) return STBTT__CSERR("rlinecurve stack"); + stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]); + break; + + case 0x1A: // vvcurveto + case 0x1B: // hhcurveto + if (sp < 4) return STBTT__CSERR("(vv|hh)curveto stack"); + f = 0.0; + if (sp & 1) { f = s[i]; i++; } + for (; i + 3 < sp; i += 4) { + if (b0 == 0x1B) + stbtt__csctx_rccurve_to(c, s[i], f, s[i+1], s[i+2], s[i+3], 0.0); + else + stbtt__csctx_rccurve_to(c, f, s[i], s[i+1], s[i+2], 0.0, s[i+3]); + f = 0.0; + } + break; + + case 0x0A: // callsubr + if (!has_subrs) { + if (info->fdselect.size) + subrs = stbtt__cid_get_glyph_subrs(info, glyph_index); + has_subrs = 1; + } + // FALLTHROUGH + case 0x1D: // callgsubr + if (sp < 1) return STBTT__CSERR("call(g|)subr stack"); + v = (int) s[--sp]; + if (subr_stack_height >= 10) return STBTT__CSERR("recursion limit"); + subr_stack[subr_stack_height++] = b; + b = stbtt__get_subr(b0 == 0x0A ? subrs : info->gsubrs, v); + if (b.size == 0) return STBTT__CSERR("subr not found"); + b.cursor = 0; + clear_stack = 0; + break; + + case 0x0B: // return + if (subr_stack_height <= 0) return STBTT__CSERR("return outside subr"); + b = subr_stack[--subr_stack_height]; + clear_stack = 0; + break; + + case 0x0E: // endchar + stbtt__csctx_close_shape(c); + return 1; + + case 0x0C: { // two-byte escape + float dx1, dx2, dx3, dx4, dx5, dx6, dy1, dy2, dy3, dy4, dy5, dy6; + float dx, dy; + int b1 = stbtt__buf_get8(&b); + switch (b1) { + // @TODO These "flex" implementations ignore the flex-depth and resolution, + // and always draw beziers. + case 0x22: // hflex + if (sp < 7) return STBTT__CSERR("hflex stack"); + dx1 = s[0]; + dx2 = s[1]; + dy2 = s[2]; + dx3 = s[3]; + dx4 = s[4]; + dx5 = s[5]; + dx6 = s[6]; + stbtt__csctx_rccurve_to(c, dx1, 0, dx2, dy2, dx3, 0); + stbtt__csctx_rccurve_to(c, dx4, 0, dx5, -dy2, dx6, 0); + break; + + case 0x23: // flex + if (sp < 13) return STBTT__CSERR("flex stack"); + dx1 = s[0]; + dy1 = s[1]; + dx2 = s[2]; + dy2 = s[3]; + dx3 = s[4]; + dy3 = s[5]; + dx4 = s[6]; + dy4 = s[7]; + dx5 = s[8]; + dy5 = s[9]; + dx6 = s[10]; + dy6 = s[11]; + //fd is s[12] + stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3); + stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6); + break; + + case 0x24: // hflex1 + if (sp < 9) return STBTT__CSERR("hflex1 stack"); + dx1 = s[0]; + dy1 = s[1]; + dx2 = s[2]; + dy2 = s[3]; + dx3 = s[4]; + dx4 = s[5]; + dx5 = s[6]; + dy5 = s[7]; + dx6 = s[8]; + stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, 0); + stbtt__csctx_rccurve_to(c, dx4, 0, dx5, dy5, dx6, -(dy1+dy2+dy5)); + break; + + case 0x25: // flex1 + if (sp < 11) return STBTT__CSERR("flex1 stack"); + dx1 = s[0]; + dy1 = s[1]; + dx2 = s[2]; + dy2 = s[3]; + dx3 = s[4]; + dy3 = s[5]; + dx4 = s[6]; + dy4 = s[7]; + dx5 = s[8]; + dy5 = s[9]; + dx6 = dy6 = s[10]; + dx = dx1+dx2+dx3+dx4+dx5; + dy = dy1+dy2+dy3+dy4+dy5; + if (STBTT_fabs(dx) > STBTT_fabs(dy)) + dy6 = -dy; + else + dx6 = -dx; + stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3); + stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6); + break; + + default: + return STBTT__CSERR("unimplemented"); + } + } break; + + default: + if (b0 != 255 && b0 != 28 && b0 < 32) + return STBTT__CSERR("reserved operator"); + + // push immediate + if (b0 == 255) { + f = (float)(stbtt_int32)stbtt__buf_get32(&b) / 0x10000; + } else { + stbtt__buf_skip(&b, -1); + f = (float)(stbtt_int16)stbtt__cff_int(&b); + } + if (sp >= 48) return STBTT__CSERR("push stack overflow"); + s[sp++] = f; + clear_stack = 0; + break; + } + if (clear_stack) sp = 0; + } + return STBTT__CSERR("no endchar"); + +#undef STBTT__CSERR +} + +static int stbtt__GetGlyphShapeT2(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) +{ + // runs the charstring twice, once to count and once to output (to avoid realloc) + stbtt__csctx count_ctx = STBTT__CSCTX_INIT(1); + stbtt__csctx output_ctx = STBTT__CSCTX_INIT(0); + if (stbtt__run_charstring(info, glyph_index, &count_ctx)) { + *pvertices = (stbtt_vertex*)STBTT_malloc(count_ctx.num_vertices*sizeof(stbtt_vertex), info->userdata); + output_ctx.pvertices = *pvertices; + if (stbtt__run_charstring(info, glyph_index, &output_ctx)) { + STBTT_assert(output_ctx.num_vertices == count_ctx.num_vertices); + return output_ctx.num_vertices; + } + } + *pvertices = NULL; + return 0; +} + +static int stbtt__GetGlyphInfoT2(const stbtt_fontinfo *info, int glyph_index, int *x0, int *y0, int *x1, int *y1) +{ + stbtt__csctx c = STBTT__CSCTX_INIT(1); + int r = stbtt__run_charstring(info, glyph_index, &c); + if (x0) *x0 = r ? c.min_x : 0; + if (y0) *y0 = r ? c.min_y : 0; + if (x1) *x1 = r ? c.max_x : 0; + if (y1) *y1 = r ? c.max_y : 0; + return r ? c.num_vertices : 0; +} + +STBTT_DEF int stbtt_GetGlyphShape(const stbtt_fontinfo *info, int glyph_index, stbtt_vertex **pvertices) +{ + if (!info->cff.size) + return stbtt__GetGlyphShapeTT(info, glyph_index, pvertices); + else + return stbtt__GetGlyphShapeT2(info, glyph_index, pvertices); +} + +STBTT_DEF void stbtt_GetGlyphHMetrics(const stbtt_fontinfo *info, int glyph_index, int *advanceWidth, int *leftSideBearing) +{ + stbtt_uint16 numOfLongHorMetrics = ttUSHORT(info->data+info->hhea + 34); + if (glyph_index < numOfLongHorMetrics) { + if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*glyph_index); + if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*glyph_index + 2); + } else { + if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*(numOfLongHorMetrics-1)); + if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*numOfLongHorMetrics + 2*(glyph_index - numOfLongHorMetrics)); + } +} + +STBTT_DEF int stbtt_GetKerningTableLength(const stbtt_fontinfo *info) +{ + stbtt_uint8 *data = info->data + info->kern; + + // we only look at the first table. it must be 'horizontal' and format 0. + if (!info->kern) + return 0; + if (ttUSHORT(data+2) < 1) // number of tables, need at least 1 + return 0; + if (ttUSHORT(data+8) != 1) // horizontal flag must be set in format + return 0; + + return ttUSHORT(data+10); +} + +STBTT_DEF int stbtt_GetKerningTable(const stbtt_fontinfo *info, stbtt_kerningentry* table, int table_length) +{ + stbtt_uint8 *data = info->data + info->kern; + int k, length; + + // we only look at the first table. it must be 'horizontal' and format 0. + if (!info->kern) + return 0; + if (ttUSHORT(data+2) < 1) // number of tables, need at least 1 + return 0; + if (ttUSHORT(data+8) != 1) // horizontal flag must be set in format + return 0; + + length = ttUSHORT(data+10); + if (table_length < length) + length = table_length; + + for (k = 0; k < length; k++) + { + table[k].glyph1 = ttUSHORT(data+18+(k*6)); + table[k].glyph2 = ttUSHORT(data+20+(k*6)); + table[k].advance = ttSHORT(data+22+(k*6)); + } + + return length; +} + +static int stbtt__GetGlyphKernInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) +{ + stbtt_uint8 *data = info->data + info->kern; + stbtt_uint32 needle, straw; + int l, r, m; + + // we only look at the first table. it must be 'horizontal' and format 0. + if (!info->kern) + return 0; + if (ttUSHORT(data+2) < 1) // number of tables, need at least 1 + return 0; + if (ttUSHORT(data+8) != 1) // horizontal flag must be set in format + return 0; + + l = 0; + r = ttUSHORT(data+10) - 1; + needle = glyph1 << 16 | glyph2; + while (l <= r) { + m = (l + r) >> 1; + straw = ttULONG(data+18+(m*6)); // note: unaligned read + if (needle < straw) + r = m - 1; + else if (needle > straw) + l = m + 1; + else + return ttSHORT(data+22+(m*6)); + } + return 0; +} + +static stbtt_int32 stbtt__GetCoverageIndex(stbtt_uint8 *coverageTable, int glyph) +{ + stbtt_uint16 coverageFormat = ttUSHORT(coverageTable); + switch (coverageFormat) { + case 1: { + stbtt_uint16 glyphCount = ttUSHORT(coverageTable + 2); + + // Binary search. + stbtt_int32 l=0, r=glyphCount-1, m; + int straw, needle=glyph; + while (l <= r) { + stbtt_uint8 *glyphArray = coverageTable + 4; + stbtt_uint16 glyphID; + m = (l + r) >> 1; + glyphID = ttUSHORT(glyphArray + 2 * m); + straw = glyphID; + if (needle < straw) + r = m - 1; + else if (needle > straw) + l = m + 1; + else { + return m; + } + } + break; + } + + case 2: { + stbtt_uint16 rangeCount = ttUSHORT(coverageTable + 2); + stbtt_uint8 *rangeArray = coverageTable + 4; + + // Binary search. + stbtt_int32 l=0, r=rangeCount-1, m; + int strawStart, strawEnd, needle=glyph; + while (l <= r) { + stbtt_uint8 *rangeRecord; + m = (l + r) >> 1; + rangeRecord = rangeArray + 6 * m; + strawStart = ttUSHORT(rangeRecord); + strawEnd = ttUSHORT(rangeRecord + 2); + if (needle < strawStart) + r = m - 1; + else if (needle > strawEnd) + l = m + 1; + else { + stbtt_uint16 startCoverageIndex = ttUSHORT(rangeRecord + 4); + return startCoverageIndex + glyph - strawStart; + } + } + break; + } + + default: return -1; // unsupported + } + + return -1; +} + +static stbtt_int32 stbtt__GetGlyphClass(stbtt_uint8 *classDefTable, int glyph) +{ + stbtt_uint16 classDefFormat = ttUSHORT(classDefTable); + switch (classDefFormat) + { + case 1: { + stbtt_uint16 startGlyphID = ttUSHORT(classDefTable + 2); + stbtt_uint16 glyphCount = ttUSHORT(classDefTable + 4); + stbtt_uint8 *classDef1ValueArray = classDefTable + 6; + + if (glyph >= startGlyphID && glyph < startGlyphID + glyphCount) + return (stbtt_int32)ttUSHORT(classDef1ValueArray + 2 * (glyph - startGlyphID)); + break; + } + + case 2: { + stbtt_uint16 classRangeCount = ttUSHORT(classDefTable + 2); + stbtt_uint8 *classRangeRecords = classDefTable + 4; + + // Binary search. + stbtt_int32 l=0, r=classRangeCount-1, m; + int strawStart, strawEnd, needle=glyph; + while (l <= r) { + stbtt_uint8 *classRangeRecord; + m = (l + r) >> 1; + classRangeRecord = classRangeRecords + 6 * m; + strawStart = ttUSHORT(classRangeRecord); + strawEnd = ttUSHORT(classRangeRecord + 2); + if (needle < strawStart) + r = m - 1; + else if (needle > strawEnd) + l = m + 1; + else + return (stbtt_int32)ttUSHORT(classRangeRecord + 4); + } + break; + } + + default: + return -1; // Unsupported definition type, return an error. + } + + // "All glyphs not assigned to a class fall into class 0". (OpenType spec) + return 0; +} + +// Define to STBTT_assert(x) if you want to break on unimplemented formats. +#define STBTT_GPOS_TODO_assert(x) + +static stbtt_int32 stbtt__GetGlyphGPOSInfoAdvance(const stbtt_fontinfo *info, int glyph1, int glyph2) +{ + stbtt_uint16 lookupListOffset; + stbtt_uint8 *lookupList; + stbtt_uint16 lookupCount; + stbtt_uint8 *data; + stbtt_int32 i, sti; + + if (!info->gpos) return 0; + + data = info->data + info->gpos; + + if (ttUSHORT(data+0) != 1) return 0; // Major version 1 + if (ttUSHORT(data+2) != 0) return 0; // Minor version 0 + + lookupListOffset = ttUSHORT(data+8); + lookupList = data + lookupListOffset; + lookupCount = ttUSHORT(lookupList); + + for (i=0; i= pairSetCount) return 0; + + needle=glyph2; + r=pairValueCount-1; + l=0; + + // Binary search. + while (l <= r) { + stbtt_uint16 secondGlyph; + stbtt_uint8 *pairValue; + m = (l + r) >> 1; + pairValue = pairValueArray + (2 + valueRecordPairSizeInBytes) * m; + secondGlyph = ttUSHORT(pairValue); + straw = secondGlyph; + if (needle < straw) + r = m - 1; + else if (needle > straw) + l = m + 1; + else { + stbtt_int16 xAdvance = ttSHORT(pairValue + 2); + return xAdvance; + } + } + } else + return 0; + break; + } + + case 2: { + stbtt_uint16 valueFormat1 = ttUSHORT(table + 4); + stbtt_uint16 valueFormat2 = ttUSHORT(table + 6); + if (valueFormat1 == 4 && valueFormat2 == 0) { // Support more formats? + stbtt_uint16 classDef1Offset = ttUSHORT(table + 8); + stbtt_uint16 classDef2Offset = ttUSHORT(table + 10); + int glyph1class = stbtt__GetGlyphClass(table + classDef1Offset, glyph1); + int glyph2class = stbtt__GetGlyphClass(table + classDef2Offset, glyph2); + + stbtt_uint16 class1Count = ttUSHORT(table + 12); + stbtt_uint16 class2Count = ttUSHORT(table + 14); + stbtt_uint8 *class1Records, *class2Records; + stbtt_int16 xAdvance; + + if (glyph1class < 0 || glyph1class >= class1Count) return 0; // malformed + if (glyph2class < 0 || glyph2class >= class2Count) return 0; // malformed + + class1Records = table + 16; + class2Records = class1Records + 2 * (glyph1class * class2Count); + xAdvance = ttSHORT(class2Records + 2 * glyph2class); + return xAdvance; + } else + return 0; + break; + } + + default: + return 0; // Unsupported position format + } + } + } + + return 0; +} + +STBTT_DEF int stbtt_GetGlyphKernAdvance(const stbtt_fontinfo *info, int g1, int g2) +{ + int xAdvance = 0; + + if (info->gpos) + xAdvance += stbtt__GetGlyphGPOSInfoAdvance(info, g1, g2); + else if (info->kern) + xAdvance += stbtt__GetGlyphKernInfoAdvance(info, g1, g2); + + return xAdvance; +} + +STBTT_DEF int stbtt_GetCodepointKernAdvance(const stbtt_fontinfo *info, int ch1, int ch2) +{ + if (!info->kern && !info->gpos) // if no kerning table, don't waste time looking up both codepoint->glyphs + return 0; + return stbtt_GetGlyphKernAdvance(info, stbtt_FindGlyphIndex(info,ch1), stbtt_FindGlyphIndex(info,ch2)); +} + +STBTT_DEF void stbtt_GetCodepointHMetrics(const stbtt_fontinfo *info, int codepoint, int *advanceWidth, int *leftSideBearing) +{ + stbtt_GetGlyphHMetrics(info, stbtt_FindGlyphIndex(info,codepoint), advanceWidth, leftSideBearing); +} + +STBTT_DEF void stbtt_GetFontVMetrics(const stbtt_fontinfo *info, int *ascent, int *descent, int *lineGap) +{ + if (ascent ) *ascent = ttSHORT(info->data+info->hhea + 4); + if (descent) *descent = ttSHORT(info->data+info->hhea + 6); + if (lineGap) *lineGap = ttSHORT(info->data+info->hhea + 8); +} + +STBTT_DEF int stbtt_GetFontVMetricsOS2(const stbtt_fontinfo *info, int *typoAscent, int *typoDescent, int *typoLineGap) +{ + int tab = stbtt__find_table(info->data, info->fontstart, "OS/2"); + if (!tab) + return 0; + if (typoAscent ) *typoAscent = ttSHORT(info->data+tab + 68); + if (typoDescent) *typoDescent = ttSHORT(info->data+tab + 70); + if (typoLineGap) *typoLineGap = ttSHORT(info->data+tab + 72); + return 1; +} + +STBTT_DEF void stbtt_GetFontBoundingBox(const stbtt_fontinfo *info, int *x0, int *y0, int *x1, int *y1) +{ + *x0 = ttSHORT(info->data + info->head + 36); + *y0 = ttSHORT(info->data + info->head + 38); + *x1 = ttSHORT(info->data + info->head + 40); + *y1 = ttSHORT(info->data + info->head + 42); +} + +STBTT_DEF float stbtt_ScaleForPixelHeight(const stbtt_fontinfo *info, float height) +{ + int fheight = ttSHORT(info->data + info->hhea + 4) - ttSHORT(info->data + info->hhea + 6); + return (float) height / fheight; +} + +STBTT_DEF float stbtt_ScaleForMappingEmToPixels(const stbtt_fontinfo *info, float pixels) +{ + int unitsPerEm = ttUSHORT(info->data + info->head + 18); + return pixels / unitsPerEm; +} + +STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo *info, stbtt_vertex *v) +{ + STBTT_free(v, info->userdata); +} + +STBTT_DEF stbtt_uint8 *stbtt_FindSVGDoc(const stbtt_fontinfo *info, int gl) +{ + int i; + stbtt_uint8 *data = info->data; + stbtt_uint8 *svg_doc_list = data + stbtt__get_svg((stbtt_fontinfo *) info); + + int numEntries = ttUSHORT(svg_doc_list); + stbtt_uint8 *svg_docs = svg_doc_list + 2; + + for(i=0; i= ttUSHORT(svg_doc)) && (gl <= ttUSHORT(svg_doc + 2))) + return svg_doc; + } + return 0; +} + +STBTT_DEF int stbtt_GetGlyphSVG(const stbtt_fontinfo *info, int gl, const char **svg) +{ + stbtt_uint8 *data = info->data; + stbtt_uint8 *svg_doc; + + if (info->svg == 0) + return 0; + + svg_doc = stbtt_FindSVGDoc(info, gl); + if (svg_doc != NULL) { + *svg = (char *) data + info->svg + ttULONG(svg_doc + 4); + return ttULONG(svg_doc + 8); + } else { + return 0; + } +} + +STBTT_DEF int stbtt_GetCodepointSVG(const stbtt_fontinfo *info, int unicode_codepoint, const char **svg) +{ + return stbtt_GetGlyphSVG(info, stbtt_FindGlyphIndex(info, unicode_codepoint), svg); +} + +////////////////////////////////////////////////////////////////////////////// +// +// antialiasing software rasterizer +// + +STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + int x0=0,y0=0,x1,y1; // =0 suppresses compiler warning + if (!stbtt_GetGlyphBox(font, glyph, &x0,&y0,&x1,&y1)) { + // e.g. space character + if (ix0) *ix0 = 0; + if (iy0) *iy0 = 0; + if (ix1) *ix1 = 0; + if (iy1) *iy1 = 0; + } else { + // move to integral bboxes (treating pixels as little squares, what pixels get touched)? + if (ix0) *ix0 = STBTT_ifloor( x0 * scale_x + shift_x); + if (iy0) *iy0 = STBTT_ifloor(-y1 * scale_y + shift_y); + if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x); + if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y); + } +} + +STBTT_DEF void stbtt_GetGlyphBitmapBox(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1); +} + +STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + stbtt_GetGlyphBitmapBoxSubpixel(font, stbtt_FindGlyphIndex(font,codepoint), scale_x, scale_y,shift_x,shift_y, ix0,iy0,ix1,iy1); +} + +STBTT_DEF void stbtt_GetCodepointBitmapBox(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, int *ix0, int *iy0, int *ix1, int *iy1) +{ + stbtt_GetCodepointBitmapBoxSubpixel(font, codepoint, scale_x, scale_y,0.0f,0.0f, ix0,iy0,ix1,iy1); +} + +////////////////////////////////////////////////////////////////////////////// +// +// Rasterizer + +typedef struct stbtt__hheap_chunk +{ + struct stbtt__hheap_chunk *next; +} stbtt__hheap_chunk; + +typedef struct stbtt__hheap +{ + struct stbtt__hheap_chunk *head; + void *first_free; + int num_remaining_in_head_chunk; +} stbtt__hheap; + +static void *stbtt__hheap_alloc(stbtt__hheap *hh, size_t size, void *userdata) +{ + if (hh->first_free) { + void *p = hh->first_free; + hh->first_free = * (void **) p; + return p; + } else { + if (hh->num_remaining_in_head_chunk == 0) { + int count = (size < 32 ? 2000 : size < 128 ? 800 : 100); + stbtt__hheap_chunk *c = (stbtt__hheap_chunk *) STBTT_malloc(sizeof(stbtt__hheap_chunk) + size * count, userdata); + if (c == NULL) + return NULL; + c->next = hh->head; + hh->head = c; + hh->num_remaining_in_head_chunk = count; + } + --hh->num_remaining_in_head_chunk; + return (char *) (hh->head) + sizeof(stbtt__hheap_chunk) + size * hh->num_remaining_in_head_chunk; + } +} + +static void stbtt__hheap_free(stbtt__hheap *hh, void *p) +{ + *(void **) p = hh->first_free; + hh->first_free = p; +} + +static void stbtt__hheap_cleanup(stbtt__hheap *hh, void *userdata) +{ + stbtt__hheap_chunk *c = hh->head; + while (c) { + stbtt__hheap_chunk *n = c->next; + STBTT_free(c, userdata); + c = n; + } +} + +typedef struct stbtt__edge { + float x0,y0, x1,y1; + int invert; +} stbtt__edge; + + +typedef struct stbtt__active_edge +{ + struct stbtt__active_edge *next; + #if STBTT_RASTERIZER_VERSION==1 + int x,dx; + float ey; + int direction; + #elif STBTT_RASTERIZER_VERSION==2 + float fx,fdx,fdy; + float direction; + float sy; + float ey; + #else + #error "Unrecognized value of STBTT_RASTERIZER_VERSION" + #endif +} stbtt__active_edge; + +#if STBTT_RASTERIZER_VERSION == 1 +#define STBTT_FIXSHIFT 10 +#define STBTT_FIX (1 << STBTT_FIXSHIFT) +#define STBTT_FIXMASK (STBTT_FIX-1) + +static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata) +{ + stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata); + float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0); + STBTT_assert(z != NULL); + if (!z) return z; + + // round dx down to avoid overshooting + if (dxdy < 0) + z->dx = -STBTT_ifloor(STBTT_FIX * -dxdy); + else + z->dx = STBTT_ifloor(STBTT_FIX * dxdy); + + z->x = STBTT_ifloor(STBTT_FIX * e->x0 + z->dx * (start_point - e->y0)); // use z->dx so when we offset later it's by the same amount + z->x -= off_x * STBTT_FIX; + + z->ey = e->y1; + z->next = 0; + z->direction = e->invert ? 1 : -1; + return z; +} +#elif STBTT_RASTERIZER_VERSION == 2 +static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e, int off_x, float start_point, void *userdata) +{ + stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh, sizeof(*z), userdata); + float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0); + STBTT_assert(z != NULL); + //STBTT_assert(e->y0 <= start_point); + if (!z) return z; + z->fdx = dxdy; + z->fdy = dxdy != 0.0f ? (1.0f/dxdy) : 0.0f; + z->fx = e->x0 + dxdy * (start_point - e->y0); + z->fx -= off_x; + z->direction = e->invert ? 1.0f : -1.0f; + z->sy = e->y0; + z->ey = e->y1; + z->next = 0; + return z; +} +#else +#error "Unrecognized value of STBTT_RASTERIZER_VERSION" +#endif + +#if STBTT_RASTERIZER_VERSION == 1 +// note: this routine clips fills that extend off the edges... ideally this +// wouldn't happen, but it could happen if the truetype glyph bounding boxes +// are wrong, or if the user supplies a too-small bitmap +static void stbtt__fill_active_edges(unsigned char *scanline, int len, stbtt__active_edge *e, int max_weight) +{ + // non-zero winding fill + int x0=0, w=0; + + while (e) { + if (w == 0) { + // if we're currently at zero, we need to record the edge start point + x0 = e->x; w += e->direction; + } else { + int x1 = e->x; w += e->direction; + // if we went to zero, we need to draw + if (w == 0) { + int i = x0 >> STBTT_FIXSHIFT; + int j = x1 >> STBTT_FIXSHIFT; + + if (i < len && j >= 0) { + if (i == j) { + // x0,x1 are the same pixel, so compute combined coverage + scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT); + } else { + if (i >= 0) // add antialiasing for x0 + scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> STBTT_FIXSHIFT); + else + i = -1; // clip + + if (j < len) // add antialiasing for x1 + scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT); + else + j = len; // clip + + for (++i; i < j; ++i) // fill pixels between x0 and x1 + scanline[i] = scanline[i] + (stbtt_uint8) max_weight; + } + } + } + } + + e = e->next; + } +} + +static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata) +{ + stbtt__hheap hh = { 0, 0, 0 }; + stbtt__active_edge *active = NULL; + int y,j=0; + int max_weight = (255 / vsubsample); // weight per vertical scanline + int s; // vertical subsample index + unsigned char scanline_data[512], *scanline; + + if (result->w > 512) + scanline = (unsigned char *) STBTT_malloc(result->w, userdata); + else + scanline = scanline_data; + + y = off_y * vsubsample; + e[n].y0 = (off_y + result->h) * (float) vsubsample + 1; + + while (j < result->h) { + STBTT_memset(scanline, 0, result->w); + for (s=0; s < vsubsample; ++s) { + // find center of pixel for this scanline + float scan_y = y + 0.5f; + stbtt__active_edge **step = &active; + + // update all active edges; + // remove all active edges that terminate before the center of this scanline + while (*step) { + stbtt__active_edge * z = *step; + if (z->ey <= scan_y) { + *step = z->next; // delete from list + STBTT_assert(z->direction); + z->direction = 0; + stbtt__hheap_free(&hh, z); + } else { + z->x += z->dx; // advance to position for current scanline + step = &((*step)->next); // advance through list + } + } + + // resort the list if needed + for(;;) { + int changed=0; + step = &active; + while (*step && (*step)->next) { + if ((*step)->x > (*step)->next->x) { + stbtt__active_edge *t = *step; + stbtt__active_edge *q = t->next; + + t->next = q->next; + q->next = t; + *step = q; + changed = 1; + } + step = &(*step)->next; + } + if (!changed) break; + } + + // insert all edges that start before the center of this scanline -- omit ones that also end on this scanline + while (e->y0 <= scan_y) { + if (e->y1 > scan_y) { + stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y, userdata); + if (z != NULL) { + // find insertion point + if (active == NULL) + active = z; + else if (z->x < active->x) { + // insert at front + z->next = active; + active = z; + } else { + // find thing to insert AFTER + stbtt__active_edge *p = active; + while (p->next && p->next->x < z->x) + p = p->next; + // at this point, p->next->x is NOT < z->x + z->next = p->next; + p->next = z; + } + } + } + ++e; + } + + // now process all active edges in XOR fashion + if (active) + stbtt__fill_active_edges(scanline, result->w, active, max_weight); + + ++y; + } + STBTT_memcpy(result->pixels + j * result->stride, scanline, result->w); + ++j; + } + + stbtt__hheap_cleanup(&hh, userdata); + + if (scanline != scanline_data) + STBTT_free(scanline, userdata); +} + +#elif STBTT_RASTERIZER_VERSION == 2 + +// the edge passed in here does not cross the vertical line at x or the vertical line at x+1 +// (i.e. it has already been clipped to those) +static void stbtt__handle_clipped_edge(float *scanline, int x, stbtt__active_edge *e, float x0, float y0, float x1, float y1) +{ + if (y0 == y1) return; + STBTT_assert(y0 < y1); + STBTT_assert(e->sy <= e->ey); + if (y0 > e->ey) return; + if (y1 < e->sy) return; + if (y0 < e->sy) { + x0 += (x1-x0) * (e->sy - y0) / (y1-y0); + y0 = e->sy; + } + if (y1 > e->ey) { + x1 += (x1-x0) * (e->ey - y1) / (y1-y0); + y1 = e->ey; + } + + if (x0 == x) + STBTT_assert(x1 <= x+1); + else if (x0 == x+1) + STBTT_assert(x1 >= x); + else if (x0 <= x) + STBTT_assert(x1 <= x); + else if (x0 >= x+1) + STBTT_assert(x1 >= x+1); + else + STBTT_assert(x1 >= x && x1 <= x+1); + + if (x0 <= x && x1 <= x) + scanline[x] += e->direction * (y1-y0); + else if (x0 >= x+1 && x1 >= x+1) + ; + else { + STBTT_assert(x0 >= x && x0 <= x+1 && x1 >= x && x1 <= x+1); + scanline[x] += e->direction * (y1-y0) * (1-((x0-x)+(x1-x))/2); // coverage = 1 - average x position + } +} + +static float stbtt__sized_trapezoid_area(float height, float top_width, float bottom_width) +{ + STBTT_assert(top_width >= 0); + STBTT_assert(bottom_width >= 0); + return (top_width + bottom_width) / 2.0f * height; +} + +static float stbtt__position_trapezoid_area(float height, float tx0, float tx1, float bx0, float bx1) +{ + return stbtt__sized_trapezoid_area(height, tx1 - tx0, bx1 - bx0); +} + +static float stbtt__sized_triangle_area(float height, float width) +{ + return height * width / 2; +} + +static void stbtt__fill_active_edges_new(float *scanline, float *scanline_fill, int len, stbtt__active_edge *e, float y_top) +{ + float y_bottom = y_top+1; + + while (e) { + // brute force every pixel + + // compute intersection points with top & bottom + STBTT_assert(e->ey >= y_top); + + if (e->fdx == 0) { + float x0 = e->fx; + if (x0 < len) { + if (x0 >= 0) { + stbtt__handle_clipped_edge(scanline,(int) x0,e, x0,y_top, x0,y_bottom); + stbtt__handle_clipped_edge(scanline_fill-1,(int) x0+1,e, x0,y_top, x0,y_bottom); + } else { + stbtt__handle_clipped_edge(scanline_fill-1,0,e, x0,y_top, x0,y_bottom); + } + } + } else { + float x0 = e->fx; + float dx = e->fdx; + float xb = x0 + dx; + float x_top, x_bottom; + float sy0,sy1; + float dy = e->fdy; + STBTT_assert(e->sy <= y_bottom && e->ey >= y_top); + + // compute endpoints of line segment clipped to this scanline (if the + // line segment starts on this scanline. x0 is the intersection of the + // line with y_top, but that may be off the line segment. + if (e->sy > y_top) { + x_top = x0 + dx * (e->sy - y_top); + sy0 = e->sy; + } else { + x_top = x0; + sy0 = y_top; + } + if (e->ey < y_bottom) { + x_bottom = x0 + dx * (e->ey - y_top); + sy1 = e->ey; + } else { + x_bottom = xb; + sy1 = y_bottom; + } + + if (x_top >= 0 && x_bottom >= 0 && x_top < len && x_bottom < len) { + // from here on, we don't have to range check x values + + if ((int) x_top == (int) x_bottom) { + float height; + // simple case, only spans one pixel + int x = (int) x_top; + height = (sy1 - sy0) * e->direction; + STBTT_assert(x >= 0 && x < len); + scanline[x] += stbtt__position_trapezoid_area(height, x_top, x+1.0f, x_bottom, x+1.0f); + scanline_fill[x] += height; // everything right of this pixel is filled + } else { + int x,x1,x2; + float y_crossing, y_final, step, sign, area; + // covers 2+ pixels + if (x_top > x_bottom) { + // flip scanline vertically; signed area is the same + float t; + sy0 = y_bottom - (sy0 - y_top); + sy1 = y_bottom - (sy1 - y_top); + t = sy0, sy0 = sy1, sy1 = t; + t = x_bottom, x_bottom = x_top, x_top = t; + dx = -dx; + dy = -dy; + t = x0, x0 = xb, xb = t; + } + STBTT_assert(dy >= 0); + STBTT_assert(dx >= 0); + + x1 = (int) x_top; + x2 = (int) x_bottom; + // compute intersection with y axis at x1+1 + y_crossing = y_top + dy * (x1+1 - x0); + + // compute intersection with y axis at x2 + y_final = y_top + dy * (x2 - x0); + + // x1 x_top x2 x_bottom + // y_top +------|-----+------------+------------+--------|---+------------+ + // | | | | | | + // | | | | | | + // sy0 | Txxxxx|............|............|............|............| + // y_crossing | *xxxxx.......|............|............|............| + // | | xxxxx..|............|............|............| + // | | /- xx*xxxx........|............|............| + // | | dy < | xxxxxx..|............|............| + // y_final | | \- | xx*xxx.........|............| + // sy1 | | | | xxxxxB...|............| + // | | | | | | + // | | | | | | + // y_bottom +------------+------------+------------+------------+------------+ + // + // goal is to measure the area covered by '.' in each pixel + + // if x2 is right at the right edge of x1, y_crossing can blow up, github #1057 + // @TODO: maybe test against sy1 rather than y_bottom? + if (y_crossing > y_bottom) + y_crossing = y_bottom; + + sign = e->direction; + + // area of the rectangle covered from sy0..y_crossing + area = sign * (y_crossing-sy0); + + // area of the triangle (x_top,sy0), (x1+1,sy0), (x1+1,y_crossing) + scanline[x1] += stbtt__sized_triangle_area(area, x1+1 - x_top); + + // check if final y_crossing is blown up; no test case for this + if (y_final > y_bottom) { + int denom = (x2 - (x1+1)); + y_final = y_bottom; + if (denom != 0) { // [DEAR IMGUI] Avoid div by zero (https://github.com/nothings/stb/issues/1316) + dy = (y_final - y_crossing ) / denom; // if denom=0, y_final = y_crossing, so y_final <= y_bottom + } + } + + // in second pixel, area covered by line segment found in first pixel + // is always a rectangle 1 wide * the height of that line segment; this + // is exactly what the variable 'area' stores. it also gets a contribution + // from the line segment within it. the THIRD pixel will get the first + // pixel's rectangle contribution, the second pixel's rectangle contribution, + // and its own contribution. the 'own contribution' is the same in every pixel except + // the leftmost and rightmost, a trapezoid that slides down in each pixel. + // the second pixel's contribution to the third pixel will be the + // rectangle 1 wide times the height change in the second pixel, which is dy. + + step = sign * dy * 1; // dy is dy/dx, change in y for every 1 change in x, + // which multiplied by 1-pixel-width is how much pixel area changes for each step in x + // so the area advances by 'step' every time + + for (x = x1+1; x < x2; ++x) { + scanline[x] += area + step/2; // area of trapezoid is 1*step/2 + area += step; + } + STBTT_assert(STBTT_fabs(area) <= 1.01f); // accumulated error from area += step unless we round step down + STBTT_assert(sy1 > y_final-0.01f); + + // area covered in the last pixel is the rectangle from all the pixels to the left, + // plus the trapezoid filled by the line segment in this pixel all the way to the right edge + scanline[x2] += area + sign * stbtt__position_trapezoid_area(sy1-y_final, (float) x2, x2+1.0f, x_bottom, x2+1.0f); + + // the rest of the line is filled based on the total height of the line segment in this pixel + scanline_fill[x2] += sign * (sy1-sy0); + } + } else { + // if edge goes outside of box we're drawing, we require + // clipping logic. since this does not match the intended use + // of this library, we use a different, very slow brute + // force implementation + // note though that this does happen some of the time because + // x_top and x_bottom can be extrapolated at the top & bottom of + // the shape and actually lie outside the bounding box + int x; + for (x=0; x < len; ++x) { + // cases: + // + // there can be up to two intersections with the pixel. any intersection + // with left or right edges can be handled by splitting into two (or three) + // regions. intersections with top & bottom do not necessitate case-wise logic. + // + // the old way of doing this found the intersections with the left & right edges, + // then used some simple logic to produce up to three segments in sorted order + // from top-to-bottom. however, this had a problem: if an x edge was epsilon + // across the x border, then the corresponding y position might not be distinct + // from the other y segment, and it might ignored as an empty segment. to avoid + // that, we need to explicitly produce segments based on x positions. + + // rename variables to clearly-defined pairs + float y0 = y_top; + float x1 = (float) (x); + float x2 = (float) (x+1); + float x3 = xb; + float y3 = y_bottom; + + // x = e->x + e->dx * (y-y_top) + // (y-y_top) = (x - e->x) / e->dx + // y = (x - e->x) / e->dx + y_top + float y1 = (x - x0) / dx + y_top; + float y2 = (x+1 - x0) / dx + y_top; + + if (x0 < x1 && x3 > x2) { // three segments descending down-right + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); + } else if (x3 < x1 && x0 > x2) { // three segments descending down-left + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); + } else if (x0 < x1 && x3 > x1) { // two segments across x, down-right + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); + } else if (x3 < x1 && x0 > x1) { // two segments across x, down-left + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1); + stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3); + } else if (x0 < x2 && x3 > x2) { // two segments across x+1, down-right + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); + } else if (x3 < x2 && x0 > x2) { // two segments across x+1, down-left + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2); + stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3); + } else { // one segment + stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x3,y3); + } + } + } + } + e = e->next; + } +} + +// directly AA rasterize edges w/o supersampling +static void stbtt__rasterize_sorted_edges(stbtt__bitmap *result, stbtt__edge *e, int n, int vsubsample, int off_x, int off_y, void *userdata) +{ + stbtt__hheap hh = { 0, 0, 0 }; + stbtt__active_edge *active = NULL; + int y,j=0, i; + float scanline_data[129], *scanline, *scanline2; + + STBTT__NOTUSED(vsubsample); + + if (result->w > 64) + scanline = (float *) STBTT_malloc((result->w*2+1) * sizeof(float), userdata); + else + scanline = scanline_data; + + scanline2 = scanline + result->w; + + y = off_y; + e[n].y0 = (float) (off_y + result->h) + 1; + + while (j < result->h) { + // find center of pixel for this scanline + float scan_y_top = y + 0.0f; + float scan_y_bottom = y + 1.0f; + stbtt__active_edge **step = &active; + + STBTT_memset(scanline , 0, result->w*sizeof(scanline[0])); + STBTT_memset(scanline2, 0, (result->w+1)*sizeof(scanline[0])); + + // update all active edges; + // remove all active edges that terminate before the top of this scanline + while (*step) { + stbtt__active_edge * z = *step; + if (z->ey <= scan_y_top) { + *step = z->next; // delete from list + STBTT_assert(z->direction); + z->direction = 0; + stbtt__hheap_free(&hh, z); + } else { + step = &((*step)->next); // advance through list + } + } + + // insert all edges that start before the bottom of this scanline + while (e->y0 <= scan_y_bottom) { + if (e->y0 != e->y1) { + stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y_top, userdata); + if (z != NULL) { + if (j == 0 && off_y != 0) { + if (z->ey < scan_y_top) { + // this can happen due to subpixel positioning and some kind of fp rounding error i think + z->ey = scan_y_top; + } + } + STBTT_assert(z->ey >= scan_y_top); // if we get really unlucky a tiny bit of an edge can be out of bounds + // insert at front + z->next = active; + active = z; + } + } + ++e; + } + + // now process all active edges + if (active) + stbtt__fill_active_edges_new(scanline, scanline2+1, result->w, active, scan_y_top); + + { + float sum = 0; + for (i=0; i < result->w; ++i) { + float k; + int m; + sum += scanline2[i]; + k = scanline[i] + sum; + k = (float) STBTT_fabs(k)*255 + 0.5f; + m = (int) k; + if (m > 255) m = 255; + result->pixels[j*result->stride + i] = (unsigned char) m; + } + } + // advance all the edges + step = &active; + while (*step) { + stbtt__active_edge *z = *step; + z->fx += z->fdx; // advance to position for current scanline + step = &((*step)->next); // advance through list + } + + ++y; + ++j; + } + + stbtt__hheap_cleanup(&hh, userdata); + + if (scanline != scanline_data) + STBTT_free(scanline, userdata); +} +#else +#error "Unrecognized value of STBTT_RASTERIZER_VERSION" +#endif + +#define STBTT__COMPARE(a,b) ((a)->y0 < (b)->y0) + +static void stbtt__sort_edges_ins_sort(stbtt__edge *p, int n) +{ + int i,j; + for (i=1; i < n; ++i) { + stbtt__edge t = p[i], *a = &t; + j = i; + while (j > 0) { + stbtt__edge *b = &p[j-1]; + int c = STBTT__COMPARE(a,b); + if (!c) break; + p[j] = p[j-1]; + --j; + } + if (i != j) + p[j] = t; + } +} + +static void stbtt__sort_edges_quicksort(stbtt__edge *p, int n) +{ + /* threshold for transitioning to insertion sort */ + while (n > 12) { + stbtt__edge t; + int c01,c12,c,m,i,j; + + /* compute median of three */ + m = n >> 1; + c01 = STBTT__COMPARE(&p[0],&p[m]); + c12 = STBTT__COMPARE(&p[m],&p[n-1]); + /* if 0 >= mid >= end, or 0 < mid < end, then use mid */ + if (c01 != c12) { + /* otherwise, we'll need to swap something else to middle */ + int z; + c = STBTT__COMPARE(&p[0],&p[n-1]); + /* 0>mid && midn => n; 0 0 */ + /* 0n: 0>n => 0; 0 n */ + z = (c == c12) ? 0 : n-1; + t = p[z]; + p[z] = p[m]; + p[m] = t; + } + /* now p[m] is the median-of-three */ + /* swap it to the beginning so it won't move around */ + t = p[0]; + p[0] = p[m]; + p[m] = t; + + /* partition loop */ + i=1; + j=n-1; + for(;;) { + /* handling of equality is crucial here */ + /* for sentinels & efficiency with duplicates */ + for (;;++i) { + if (!STBTT__COMPARE(&p[i], &p[0])) break; + } + for (;;--j) { + if (!STBTT__COMPARE(&p[0], &p[j])) break; + } + /* make sure we haven't crossed */ + if (i >= j) break; + t = p[i]; + p[i] = p[j]; + p[j] = t; + + ++i; + --j; + } + /* recurse on smaller side, iterate on larger */ + if (j < (n-i)) { + stbtt__sort_edges_quicksort(p,j); + p = p+i; + n = n-i; + } else { + stbtt__sort_edges_quicksort(p+i, n-i); + n = j; + } + } +} + +static void stbtt__sort_edges(stbtt__edge *p, int n) +{ + stbtt__sort_edges_quicksort(p, n); + stbtt__sort_edges_ins_sort(p, n); +} + +typedef struct +{ + float x,y; +} stbtt__point; + +static void stbtt__rasterize(stbtt__bitmap *result, stbtt__point *pts, int *wcount, int windings, float scale_x, float scale_y, float shift_x, float shift_y, int off_x, int off_y, int invert, void *userdata) +{ + float y_scale_inv = invert ? -scale_y : scale_y; + stbtt__edge *e; + int n,i,j,k,m; +#if STBTT_RASTERIZER_VERSION == 1 + int vsubsample = result->h < 8 ? 15 : 5; +#elif STBTT_RASTERIZER_VERSION == 2 + int vsubsample = 1; +#else + #error "Unrecognized value of STBTT_RASTERIZER_VERSION" +#endif + // vsubsample should divide 255 evenly; otherwise we won't reach full opacity + + // now we have to blow out the windings into explicit edge lists + n = 0; + for (i=0; i < windings; ++i) + n += wcount[i]; + + e = (stbtt__edge *) STBTT_malloc(sizeof(*e) * (n+1), userdata); // add an extra one as a sentinel + if (e == 0) return; + n = 0; + + m=0; + for (i=0; i < windings; ++i) { + stbtt__point *p = pts + m; + m += wcount[i]; + j = wcount[i]-1; + for (k=0; k < wcount[i]; j=k++) { + int a=k,b=j; + // skip the edge if horizontal + if (p[j].y == p[k].y) + continue; + // add edge from j to k to the list + e[n].invert = 0; + if (invert ? p[j].y > p[k].y : p[j].y < p[k].y) { + e[n].invert = 1; + a=j,b=k; + } + e[n].x0 = p[a].x * scale_x + shift_x; + e[n].y0 = (p[a].y * y_scale_inv + shift_y) * vsubsample; + e[n].x1 = p[b].x * scale_x + shift_x; + e[n].y1 = (p[b].y * y_scale_inv + shift_y) * vsubsample; + ++n; + } + } + + // now sort the edges by their highest point (should snap to integer, and then by x) + //STBTT_sort(e, n, sizeof(e[0]), stbtt__edge_compare); + stbtt__sort_edges(e, n); + + // now, traverse the scanlines and find the intersections on each scanline, use xor winding rule + stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata); + + STBTT_free(e, userdata); +} + +static void stbtt__add_point(stbtt__point *points, int n, float x, float y) +{ + if (!points) return; // during first pass, it's unallocated + points[n].x = x; + points[n].y = y; +} + +// tessellate until threshold p is happy... @TODO warped to compensate for non-linear stretching +static int stbtt__tesselate_curve(stbtt__point *points, int *num_points, float x0, float y0, float x1, float y1, float x2, float y2, float objspace_flatness_squared, int n) +{ + // midpoint + float mx = (x0 + 2*x1 + x2)/4; + float my = (y0 + 2*y1 + y2)/4; + // versus directly drawn line + float dx = (x0+x2)/2 - mx; + float dy = (y0+y2)/2 - my; + if (n > 16) // 65536 segments on one curve better be enough! + return 1; + if (dx*dx+dy*dy > objspace_flatness_squared) { // half-pixel error allowed... need to be smaller if AA + stbtt__tesselate_curve(points, num_points, x0,y0, (x0+x1)/2.0f,(y0+y1)/2.0f, mx,my, objspace_flatness_squared,n+1); + stbtt__tesselate_curve(points, num_points, mx,my, (x1+x2)/2.0f,(y1+y2)/2.0f, x2,y2, objspace_flatness_squared,n+1); + } else { + stbtt__add_point(points, *num_points,x2,y2); + *num_points = *num_points+1; + } + return 1; +} + +static void stbtt__tesselate_cubic(stbtt__point *points, int *num_points, float x0, float y0, float x1, float y1, float x2, float y2, float x3, float y3, float objspace_flatness_squared, int n) +{ + // @TODO this "flatness" calculation is just made-up nonsense that seems to work well enough + float dx0 = x1-x0; + float dy0 = y1-y0; + float dx1 = x2-x1; + float dy1 = y2-y1; + float dx2 = x3-x2; + float dy2 = y3-y2; + float dx = x3-x0; + float dy = y3-y0; + float longlen = (float) (STBTT_sqrt(dx0*dx0+dy0*dy0)+STBTT_sqrt(dx1*dx1+dy1*dy1)+STBTT_sqrt(dx2*dx2+dy2*dy2)); + float shortlen = (float) STBTT_sqrt(dx*dx+dy*dy); + float flatness_squared = longlen*longlen-shortlen*shortlen; + + if (n > 16) // 65536 segments on one curve better be enough! + return; + + if (flatness_squared > objspace_flatness_squared) { + float x01 = (x0+x1)/2; + float y01 = (y0+y1)/2; + float x12 = (x1+x2)/2; + float y12 = (y1+y2)/2; + float x23 = (x2+x3)/2; + float y23 = (y2+y3)/2; + + float xa = (x01+x12)/2; + float ya = (y01+y12)/2; + float xb = (x12+x23)/2; + float yb = (y12+y23)/2; + + float mx = (xa+xb)/2; + float my = (ya+yb)/2; + + stbtt__tesselate_cubic(points, num_points, x0,y0, x01,y01, xa,ya, mx,my, objspace_flatness_squared,n+1); + stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1); + } else { + stbtt__add_point(points, *num_points,x3,y3); + *num_points = *num_points+1; + } +} + +// returns number of contours +static stbtt__point *stbtt_FlattenCurves(stbtt_vertex *vertices, int num_verts, float objspace_flatness, int **contour_lengths, int *num_contours, void *userdata) +{ + stbtt__point *points=0; + int num_points=0; + + float objspace_flatness_squared = objspace_flatness * objspace_flatness; + int i,n=0,start=0, pass; + + // count how many "moves" there are to get the contour count + for (i=0; i < num_verts; ++i) + if (vertices[i].type == STBTT_vmove) + ++n; + + *num_contours = n; + if (n == 0) return 0; + + *contour_lengths = (int *) STBTT_malloc(sizeof(**contour_lengths) * n, userdata); + + if (*contour_lengths == 0) { + *num_contours = 0; + return 0; + } + + // make two passes through the points so we don't need to realloc + for (pass=0; pass < 2; ++pass) { + float x=0,y=0; + if (pass == 1) { + points = (stbtt__point *) STBTT_malloc(num_points * sizeof(points[0]), userdata); + if (points == NULL) goto error; + } + num_points = 0; + n= -1; + for (i=0; i < num_verts; ++i) { + switch (vertices[i].type) { + case STBTT_vmove: + // start the next contour + if (n >= 0) + (*contour_lengths)[n] = num_points - start; + ++n; + start = num_points; + + x = vertices[i].x, y = vertices[i].y; + stbtt__add_point(points, num_points++, x,y); + break; + case STBTT_vline: + x = vertices[i].x, y = vertices[i].y; + stbtt__add_point(points, num_points++, x, y); + break; + case STBTT_vcurve: + stbtt__tesselate_curve(points, &num_points, x,y, + vertices[i].cx, vertices[i].cy, + vertices[i].x, vertices[i].y, + objspace_flatness_squared, 0); + x = vertices[i].x, y = vertices[i].y; + break; + case STBTT_vcubic: + stbtt__tesselate_cubic(points, &num_points, x,y, + vertices[i].cx, vertices[i].cy, + vertices[i].cx1, vertices[i].cy1, + vertices[i].x, vertices[i].y, + objspace_flatness_squared, 0); + x = vertices[i].x, y = vertices[i].y; + break; + } + } + (*contour_lengths)[n] = num_points - start; + } + + return points; +error: + STBTT_free(points, userdata); + STBTT_free(*contour_lengths, userdata); + *contour_lengths = 0; + *num_contours = 0; + return NULL; +} + +STBTT_DEF void stbtt_Rasterize(stbtt__bitmap *result, float flatness_in_pixels, stbtt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, void *userdata) +{ + float scale = scale_x > scale_y ? scale_y : scale_x; + int winding_count = 0; + int *winding_lengths = NULL; + stbtt__point *windings = stbtt_FlattenCurves(vertices, num_verts, flatness_in_pixels / scale, &winding_lengths, &winding_count, userdata); + if (windings) { + stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata); + STBTT_free(winding_lengths, userdata); + STBTT_free(windings, userdata); + } +} + +STBTT_DEF void stbtt_FreeBitmap(unsigned char *bitmap, void *userdata) +{ + STBTT_free(bitmap, userdata); +} + +STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff) +{ + int ix0,iy0,ix1,iy1; + stbtt__bitmap gbm; + stbtt_vertex *vertices; + int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices); + + if (scale_x == 0) scale_x = scale_y; + if (scale_y == 0) { + if (scale_x == 0) { + STBTT_free(vertices, info->userdata); + return NULL; + } + scale_y = scale_x; + } + + stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,&ix1,&iy1); + + // now we get the size + gbm.w = (ix1 - ix0); + gbm.h = (iy1 - iy0); + gbm.pixels = NULL; // in case we error + + if (width ) *width = gbm.w; + if (height) *height = gbm.h; + if (xoff ) *xoff = ix0; + if (yoff ) *yoff = iy0; + + if (gbm.w && gbm.h) { + gbm.pixels = (unsigned char *) STBTT_malloc(gbm.w * gbm.h, info->userdata); + if (gbm.pixels) { + gbm.stride = gbm.w; + + stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0, iy0, 1, info->userdata); + } + } + STBTT_free(vertices, info->userdata); + return gbm.pixels; +} + +STBTT_DEF unsigned char *stbtt_GetGlyphBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int glyph, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y, 0.0f, 0.0f, glyph, width, height, xoff, yoff); +} + +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph) +{ + int ix0,iy0; + stbtt_vertex *vertices; + int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices); + stbtt__bitmap gbm; + + stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,0,0); + gbm.pixels = output; + gbm.w = out_w; + gbm.h = out_h; + gbm.stride = out_stride; + + if (gbm.w && gbm.h) + stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0,iy0, 1, info->userdata); + + STBTT_free(vertices, info->userdata); +} + +STBTT_DEF void stbtt_MakeGlyphBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int glyph) +{ + stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, glyph); +} + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y,shift_x,shift_y, stbtt_FindGlyphIndex(info,codepoint), width,height,xoff,yoff); +} + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint) +{ + stbtt_MakeGlyphBitmapSubpixelPrefilter(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, oversample_x, oversample_y, sub_x, sub_y, stbtt_FindGlyphIndex(info,codepoint)); +} + +STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint) +{ + stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, stbtt_FindGlyphIndex(info,codepoint)); +} + +STBTT_DEF unsigned char *stbtt_GetCodepointBitmap(const stbtt_fontinfo *info, float scale_x, float scale_y, int codepoint, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetCodepointBitmapSubpixel(info, scale_x, scale_y, 0.0f,0.0f, codepoint, width,height,xoff,yoff); +} + +STBTT_DEF void stbtt_MakeCodepointBitmap(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, int codepoint) +{ + stbtt_MakeCodepointBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, codepoint); +} + +////////////////////////////////////////////////////////////////////////////// +// +// bitmap baking +// +// This is SUPER-CRAPPY packing to keep source code small + +static int stbtt_BakeFontBitmap_internal(unsigned char *data, int offset, // font location (use offset=0 for plain .ttf) + float pixel_height, // height of font in pixels + unsigned char *pixels, int pw, int ph, // bitmap to be filled in + int first_char, int num_chars, // characters to bake + stbtt_bakedchar *chardata) +{ + float scale; + int x,y,bottom_y, i; + stbtt_fontinfo f; + f.userdata = NULL; + if (!stbtt_InitFont(&f, data, offset)) + return -1; + STBTT_memset(pixels, 0, pw*ph); // background of 0 around pixels + x=y=1; + bottom_y = 1; + + scale = stbtt_ScaleForPixelHeight(&f, pixel_height); + + for (i=0; i < num_chars; ++i) { + int advance, lsb, x0,y0,x1,y1,gw,gh; + int g = stbtt_FindGlyphIndex(&f, first_char + i); + stbtt_GetGlyphHMetrics(&f, g, &advance, &lsb); + stbtt_GetGlyphBitmapBox(&f, g, scale,scale, &x0,&y0,&x1,&y1); + gw = x1-x0; + gh = y1-y0; + if (x + gw + 1 >= pw) + y = bottom_y, x = 1; // advance to next row + if (y + gh + 1 >= ph) // check if it fits vertically AFTER potentially moving to next row + return -i; + STBTT_assert(x+gw < pw); + STBTT_assert(y+gh < ph); + stbtt_MakeGlyphBitmap(&f, pixels+x+y*pw, gw,gh,pw, scale,scale, g); + chardata[i].x0 = (stbtt_int16) x; + chardata[i].y0 = (stbtt_int16) y; + chardata[i].x1 = (stbtt_int16) (x + gw); + chardata[i].y1 = (stbtt_int16) (y + gh); + chardata[i].xadvance = scale * advance; + chardata[i].xoff = (float) x0; + chardata[i].yoff = (float) y0; + x = x + gw + 1; + if (y+gh+1 > bottom_y) + bottom_y = y+gh+1; + } + return bottom_y; +} + +STBTT_DEF void stbtt_GetBakedQuad(const stbtt_bakedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int opengl_fillrule) +{ + float d3d_bias = opengl_fillrule ? 0 : -0.5f; + float ipw = 1.0f / pw, iph = 1.0f / ph; + const stbtt_bakedchar *b = chardata + char_index; + int round_x = STBTT_ifloor((*xpos + b->xoff) + 0.5f); + int round_y = STBTT_ifloor((*ypos + b->yoff) + 0.5f); + + q->x0 = round_x + d3d_bias; + q->y0 = round_y + d3d_bias; + q->x1 = round_x + b->x1 - b->x0 + d3d_bias; + q->y1 = round_y + b->y1 - b->y0 + d3d_bias; + + q->s0 = b->x0 * ipw; + q->t0 = b->y0 * iph; + q->s1 = b->x1 * ipw; + q->t1 = b->y1 * iph; + + *xpos += b->xadvance; +} + +////////////////////////////////////////////////////////////////////////////// +// +// rectangle packing replacement routines if you don't have stb_rect_pack.h +// + +#ifndef STB_RECT_PACK_VERSION + +typedef int stbrp_coord; + +//////////////////////////////////////////////////////////////////////////////////// +// // +// // +// COMPILER WARNING ?!?!? // +// // +// // +// if you get a compile warning due to these symbols being defined more than // +// once, move #include "stb_rect_pack.h" before #include "stb_truetype.h" // +// // +//////////////////////////////////////////////////////////////////////////////////// + +typedef struct +{ + int width,height; + int x,y,bottom_y; +} stbrp_context; + +typedef struct +{ + unsigned char x; +} stbrp_node; + +struct stbrp_rect +{ + stbrp_coord x,y; + int id,w,h,was_packed; +}; + +static void stbrp_init_target(stbrp_context *con, int pw, int ph, stbrp_node *nodes, int num_nodes) +{ + con->width = pw; + con->height = ph; + con->x = 0; + con->y = 0; + con->bottom_y = 0; + STBTT__NOTUSED(nodes); + STBTT__NOTUSED(num_nodes); +} + +static void stbrp_pack_rects(stbrp_context *con, stbrp_rect *rects, int num_rects) +{ + int i; + for (i=0; i < num_rects; ++i) { + if (con->x + rects[i].w > con->width) { + con->x = 0; + con->y = con->bottom_y; + } + if (con->y + rects[i].h > con->height) + break; + rects[i].x = con->x; + rects[i].y = con->y; + rects[i].was_packed = 1; + con->x += rects[i].w; + if (con->y + rects[i].h > con->bottom_y) + con->bottom_y = con->y + rects[i].h; + } + for ( ; i < num_rects; ++i) + rects[i].was_packed = 0; +} +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// bitmap baking +// +// This is SUPER-AWESOME (tm Ryan Gordon) packing using stb_rect_pack.h. If +// stb_rect_pack.h isn't available, it uses the BakeFontBitmap strategy. + +STBTT_DEF int stbtt_PackBegin(stbtt_pack_context *spc, unsigned char *pixels, int pw, int ph, int stride_in_bytes, int padding, void *alloc_context) +{ + stbrp_context *context = (stbrp_context *) STBTT_malloc(sizeof(*context) ,alloc_context); + int num_nodes = pw - padding; + stbrp_node *nodes = (stbrp_node *) STBTT_malloc(sizeof(*nodes ) * num_nodes,alloc_context); + + if (context == NULL || nodes == NULL) { + if (context != NULL) STBTT_free(context, alloc_context); + if (nodes != NULL) STBTT_free(nodes , alloc_context); + return 0; + } + + spc->user_allocator_context = alloc_context; + spc->width = pw; + spc->height = ph; + spc->pixels = pixels; + spc->pack_info = context; + spc->nodes = nodes; + spc->padding = padding; + spc->stride_in_bytes = stride_in_bytes != 0 ? stride_in_bytes : pw; + spc->h_oversample = 1; + spc->v_oversample = 1; + spc->skip_missing = 0; + + stbrp_init_target(context, pw-padding, ph-padding, nodes, num_nodes); + + if (pixels) + STBTT_memset(pixels, 0, pw*ph); // background of 0 around pixels + + return 1; +} + +STBTT_DEF void stbtt_PackEnd (stbtt_pack_context *spc) +{ + STBTT_free(spc->nodes , spc->user_allocator_context); + STBTT_free(spc->pack_info, spc->user_allocator_context); +} + +STBTT_DEF void stbtt_PackSetOversampling(stbtt_pack_context *spc, unsigned int h_oversample, unsigned int v_oversample) +{ + STBTT_assert(h_oversample <= STBTT_MAX_OVERSAMPLE); + STBTT_assert(v_oversample <= STBTT_MAX_OVERSAMPLE); + if (h_oversample <= STBTT_MAX_OVERSAMPLE) + spc->h_oversample = h_oversample; + if (v_oversample <= STBTT_MAX_OVERSAMPLE) + spc->v_oversample = v_oversample; +} + +STBTT_DEF void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc, int skip) +{ + spc->skip_missing = skip; +} + +#define STBTT__OVER_MASK (STBTT_MAX_OVERSAMPLE-1) + +static void stbtt__h_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width) +{ + unsigned char buffer[STBTT_MAX_OVERSAMPLE]; + int safe_w = w - kernel_width; + int j; + STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); // suppress bogus warning from VS2013 -analyze + for (j=0; j < h; ++j) { + int i; + unsigned int total; + STBTT_memset(buffer, 0, kernel_width); + + total = 0; + + // make kernel_width a constant in common cases so compiler can optimize out the divide + switch (kernel_width) { + case 2: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 2); + } + break; + case 3: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 3); + } + break; + case 4: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 4); + } + break; + case 5: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / 5); + } + break; + default: + for (i=0; i <= safe_w; ++i) { + total += pixels[i] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i]; + pixels[i] = (unsigned char) (total / kernel_width); + } + break; + } + + for (; i < w; ++i) { + STBTT_assert(pixels[i] == 0); + total -= buffer[i & STBTT__OVER_MASK]; + pixels[i] = (unsigned char) (total / kernel_width); + } + + pixels += stride_in_bytes; + } +} + +static void stbtt__v_prefilter(unsigned char *pixels, int w, int h, int stride_in_bytes, unsigned int kernel_width) +{ + unsigned char buffer[STBTT_MAX_OVERSAMPLE]; + int safe_h = h - kernel_width; + int j; + STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE); // suppress bogus warning from VS2013 -analyze + for (j=0; j < w; ++j) { + int i; + unsigned int total; + STBTT_memset(buffer, 0, kernel_width); + + total = 0; + + // make kernel_width a constant in common cases so compiler can optimize out the divide + switch (kernel_width) { + case 2: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 2); + } + break; + case 3: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 3); + } + break; + case 4: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 4); + } + break; + case 5: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / 5); + } + break; + default: + for (i=0; i <= safe_h; ++i) { + total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK]; + buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes]; + pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width); + } + break; + } + + for (; i < h; ++i) { + STBTT_assert(pixels[i*stride_in_bytes] == 0); + total -= buffer[i & STBTT__OVER_MASK]; + pixels[i*stride_in_bytes] = (unsigned char) (total / kernel_width); + } + + pixels += 1; + } +} + +static float stbtt__oversample_shift(int oversample) +{ + if (!oversample) + return 0.0f; + + // The prefilter is a box filter of width "oversample", + // which shifts phase by (oversample - 1)/2 pixels in + // oversampled space. We want to shift in the opposite + // direction to counter this. + return (float)-(oversample - 1) / (2.0f * (float)oversample); +} + +// rects array must be big enough to accommodate all characters in the given ranges +STBTT_DEF int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects) +{ + int i,j,k; + int missing_glyph_added = 0; + + k=0; + for (i=0; i < num_ranges; ++i) { + float fh = ranges[i].font_size; + float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh); + ranges[i].h_oversample = (unsigned char) spc->h_oversample; + ranges[i].v_oversample = (unsigned char) spc->v_oversample; + for (j=0; j < ranges[i].num_chars; ++j) { + int x0,y0,x1,y1; + int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j]; + int glyph = stbtt_FindGlyphIndex(info, codepoint); + if (glyph == 0 && (spc->skip_missing || missing_glyph_added)) { + rects[k].w = rects[k].h = 0; + } else { + stbtt_GetGlyphBitmapBoxSubpixel(info,glyph, + scale * spc->h_oversample, + scale * spc->v_oversample, + 0,0, + &x0,&y0,&x1,&y1); + rects[k].w = (stbrp_coord) (x1-x0 + spc->padding + spc->h_oversample-1); + rects[k].h = (stbrp_coord) (y1-y0 + spc->padding + spc->v_oversample-1); + if (glyph == 0) + missing_glyph_added = 1; + } + ++k; + } + } + + return k; +} + +STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int prefilter_x, int prefilter_y, float *sub_x, float *sub_y, int glyph) +{ + stbtt_MakeGlyphBitmapSubpixel(info, + output, + out_w - (prefilter_x - 1), + out_h - (prefilter_y - 1), + out_stride, + scale_x, + scale_y, + shift_x, + shift_y, + glyph); + + if (prefilter_x > 1) + stbtt__h_prefilter(output, out_w, out_h, out_stride, prefilter_x); + + if (prefilter_y > 1) + stbtt__v_prefilter(output, out_w, out_h, out_stride, prefilter_y); + + *sub_x = stbtt__oversample_shift(prefilter_x); + *sub_y = stbtt__oversample_shift(prefilter_y); +} + +// rects array must be big enough to accommodate all characters in the given ranges +STBTT_DEF int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc, const stbtt_fontinfo *info, stbtt_pack_range *ranges, int num_ranges, stbrp_rect *rects) +{ + int i,j,k, missing_glyph = -1, return_value = 1; + + // save current values + int old_h_over = spc->h_oversample; + int old_v_over = spc->v_oversample; + + k = 0; + for (i=0; i < num_ranges; ++i) { + float fh = ranges[i].font_size; + float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh); + float recip_h,recip_v,sub_x,sub_y; + spc->h_oversample = ranges[i].h_oversample; + spc->v_oversample = ranges[i].v_oversample; + recip_h = 1.0f / spc->h_oversample; + recip_v = 1.0f / spc->v_oversample; + sub_x = stbtt__oversample_shift(spc->h_oversample); + sub_y = stbtt__oversample_shift(spc->v_oversample); + for (j=0; j < ranges[i].num_chars; ++j) { + stbrp_rect *r = &rects[k]; + if (r->was_packed && r->w != 0 && r->h != 0) { + stbtt_packedchar *bc = &ranges[i].chardata_for_range[j]; + int advance, lsb, x0,y0,x1,y1; + int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j]; + int glyph = stbtt_FindGlyphIndex(info, codepoint); + stbrp_coord pad = (stbrp_coord) spc->padding; + + // pad on left and top + r->x += pad; + r->y += pad; + r->w -= pad; + r->h -= pad; + stbtt_GetGlyphHMetrics(info, glyph, &advance, &lsb); + stbtt_GetGlyphBitmapBox(info, glyph, + scale * spc->h_oversample, + scale * spc->v_oversample, + &x0,&y0,&x1,&y1); + stbtt_MakeGlyphBitmapSubpixel(info, + spc->pixels + r->x + r->y*spc->stride_in_bytes, + r->w - spc->h_oversample+1, + r->h - spc->v_oversample+1, + spc->stride_in_bytes, + scale * spc->h_oversample, + scale * spc->v_oversample, + 0,0, + glyph); + + if (spc->h_oversample > 1) + stbtt__h_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes, + r->w, r->h, spc->stride_in_bytes, + spc->h_oversample); + + if (spc->v_oversample > 1) + stbtt__v_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes, + r->w, r->h, spc->stride_in_bytes, + spc->v_oversample); + + bc->x0 = (stbtt_int16) r->x; + bc->y0 = (stbtt_int16) r->y; + bc->x1 = (stbtt_int16) (r->x + r->w); + bc->y1 = (stbtt_int16) (r->y + r->h); + bc->xadvance = scale * advance; + bc->xoff = (float) x0 * recip_h + sub_x; + bc->yoff = (float) y0 * recip_v + sub_y; + bc->xoff2 = (x0 + r->w) * recip_h + sub_x; + bc->yoff2 = (y0 + r->h) * recip_v + sub_y; + + if (glyph == 0) + missing_glyph = j; + } else if (spc->skip_missing) { + return_value = 0; + } else if (r->was_packed && r->w == 0 && r->h == 0 && missing_glyph >= 0) { + ranges[i].chardata_for_range[j] = ranges[i].chardata_for_range[missing_glyph]; + } else { + return_value = 0; // if any fail, report failure + } + + ++k; + } + } + + // restore original values + spc->h_oversample = old_h_over; + spc->v_oversample = old_v_over; + + return return_value; +} + +STBTT_DEF void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects, int num_rects) +{ + stbrp_pack_rects((stbrp_context *) spc->pack_info, rects, num_rects); +} + +STBTT_DEF int stbtt_PackFontRanges(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, stbtt_pack_range *ranges, int num_ranges) +{ + stbtt_fontinfo info; + int i, j, n, return_value; // [DEAR IMGUI] removed = 1; + //stbrp_context *context = (stbrp_context *) spc->pack_info; + stbrp_rect *rects; + + // flag all characters as NOT packed + for (i=0; i < num_ranges; ++i) + for (j=0; j < ranges[i].num_chars; ++j) + ranges[i].chardata_for_range[j].x0 = + ranges[i].chardata_for_range[j].y0 = + ranges[i].chardata_for_range[j].x1 = + ranges[i].chardata_for_range[j].y1 = 0; + + n = 0; + for (i=0; i < num_ranges; ++i) + n += ranges[i].num_chars; + + rects = (stbrp_rect *) STBTT_malloc(sizeof(*rects) * n, spc->user_allocator_context); + if (rects == NULL) + return 0; + + info.userdata = spc->user_allocator_context; + stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata,font_index)); + + n = stbtt_PackFontRangesGatherRects(spc, &info, ranges, num_ranges, rects); + + stbtt_PackFontRangesPackRects(spc, rects, n); + + return_value = stbtt_PackFontRangesRenderIntoRects(spc, &info, ranges, num_ranges, rects); + + STBTT_free(rects, spc->user_allocator_context); + return return_value; +} + +STBTT_DEF int stbtt_PackFontRange(stbtt_pack_context *spc, const unsigned char *fontdata, int font_index, float font_size, + int first_unicode_codepoint_in_range, int num_chars_in_range, stbtt_packedchar *chardata_for_range) +{ + stbtt_pack_range range; + range.first_unicode_codepoint_in_range = first_unicode_codepoint_in_range; + range.array_of_unicode_codepoints = NULL; + range.num_chars = num_chars_in_range; + range.chardata_for_range = chardata_for_range; + range.font_size = font_size; + return stbtt_PackFontRanges(spc, fontdata, font_index, &range, 1); +} + +STBTT_DEF void stbtt_GetScaledFontVMetrics(const unsigned char *fontdata, int index, float size, float *ascent, float *descent, float *lineGap) +{ + int i_ascent, i_descent, i_lineGap; + float scale; + stbtt_fontinfo info; + stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata, index)); + scale = size > 0 ? stbtt_ScaleForPixelHeight(&info, size) : stbtt_ScaleForMappingEmToPixels(&info, -size); + stbtt_GetFontVMetrics(&info, &i_ascent, &i_descent, &i_lineGap); + *ascent = (float) i_ascent * scale; + *descent = (float) i_descent * scale; + *lineGap = (float) i_lineGap * scale; +} + +STBTT_DEF void stbtt_GetPackedQuad(const stbtt_packedchar *chardata, int pw, int ph, int char_index, float *xpos, float *ypos, stbtt_aligned_quad *q, int align_to_integer) +{ + float ipw = 1.0f / pw, iph = 1.0f / ph; + const stbtt_packedchar *b = chardata + char_index; + + if (align_to_integer) { + float x = (float) STBTT_ifloor((*xpos + b->xoff) + 0.5f); + float y = (float) STBTT_ifloor((*ypos + b->yoff) + 0.5f); + q->x0 = x; + q->y0 = y; + q->x1 = x + b->xoff2 - b->xoff; + q->y1 = y + b->yoff2 - b->yoff; + } else { + q->x0 = *xpos + b->xoff; + q->y0 = *ypos + b->yoff; + q->x1 = *xpos + b->xoff2; + q->y1 = *ypos + b->yoff2; + } + + q->s0 = b->x0 * ipw; + q->t0 = b->y0 * iph; + q->s1 = b->x1 * ipw; + q->t1 = b->y1 * iph; + + *xpos += b->xadvance; +} + +////////////////////////////////////////////////////////////////////////////// +// +// sdf computation +// + +#define STBTT_min(a,b) ((a) < (b) ? (a) : (b)) +#define STBTT_max(a,b) ((a) < (b) ? (b) : (a)) + +static int stbtt__ray_intersect_bezier(float orig[2], float ray[2], float q0[2], float q1[2], float q2[2], float hits[2][2]) +{ + float q0perp = q0[1]*ray[0] - q0[0]*ray[1]; + float q1perp = q1[1]*ray[0] - q1[0]*ray[1]; + float q2perp = q2[1]*ray[0] - q2[0]*ray[1]; + float roperp = orig[1]*ray[0] - orig[0]*ray[1]; + + float a = q0perp - 2*q1perp + q2perp; + float b = q1perp - q0perp; + float c = q0perp - roperp; + + float s0 = 0., s1 = 0.; + int num_s = 0; + + if (a != 0.0) { + float discr = b*b - a*c; + if (discr > 0.0) { + float rcpna = -1 / a; + float d = (float) STBTT_sqrt(discr); + s0 = (b+d) * rcpna; + s1 = (b-d) * rcpna; + if (s0 >= 0.0 && s0 <= 1.0) + num_s = 1; + if (d > 0.0 && s1 >= 0.0 && s1 <= 1.0) { + if (num_s == 0) s0 = s1; + ++num_s; + } + } + } else { + // 2*b*s + c = 0 + // s = -c / (2*b) + s0 = c / (-2 * b); + if (s0 >= 0.0 && s0 <= 1.0) + num_s = 1; + } + + if (num_s == 0) + return 0; + else { + float rcp_len2 = 1 / (ray[0]*ray[0] + ray[1]*ray[1]); + float rayn_x = ray[0] * rcp_len2, rayn_y = ray[1] * rcp_len2; + + float q0d = q0[0]*rayn_x + q0[1]*rayn_y; + float q1d = q1[0]*rayn_x + q1[1]*rayn_y; + float q2d = q2[0]*rayn_x + q2[1]*rayn_y; + float rod = orig[0]*rayn_x + orig[1]*rayn_y; + + float q10d = q1d - q0d; + float q20d = q2d - q0d; + float q0rd = q0d - rod; + + hits[0][0] = q0rd + s0*(2.0f - 2.0f*s0)*q10d + s0*s0*q20d; + hits[0][1] = a*s0+b; + + if (num_s > 1) { + hits[1][0] = q0rd + s1*(2.0f - 2.0f*s1)*q10d + s1*s1*q20d; + hits[1][1] = a*s1+b; + return 2; + } else { + return 1; + } + } +} + +static int equal(float *a, float *b) +{ + return (a[0] == b[0] && a[1] == b[1]); +} + +static int stbtt__compute_crossings_x(float x, float y, int nverts, stbtt_vertex *verts) +{ + int i; + float orig[2], ray[2] = { 1, 0 }; + float y_frac; + int winding = 0; + + // make sure y never passes through a vertex of the shape + y_frac = (float) STBTT_fmod(y, 1.0f); + if (y_frac < 0.01f) + y += 0.01f; + else if (y_frac > 0.99f) + y -= 0.01f; + + orig[0] = x; + orig[1] = y; + + // test a ray from (-infinity,y) to (x,y) + for (i=0; i < nverts; ++i) { + if (verts[i].type == STBTT_vline) { + int x0 = (int) verts[i-1].x, y0 = (int) verts[i-1].y; + int x1 = (int) verts[i ].x, y1 = (int) verts[i ].y; + if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) { + float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0; + if (x_inter < x) + winding += (y0 < y1) ? 1 : -1; + } + } + if (verts[i].type == STBTT_vcurve) { + int x0 = (int) verts[i-1].x , y0 = (int) verts[i-1].y ; + int x1 = (int) verts[i ].cx, y1 = (int) verts[i ].cy; + int x2 = (int) verts[i ].x , y2 = (int) verts[i ].y ; + int ax = STBTT_min(x0,STBTT_min(x1,x2)), ay = STBTT_min(y0,STBTT_min(y1,y2)); + int by = STBTT_max(y0,STBTT_max(y1,y2)); + if (y > ay && y < by && x > ax) { + float q0[2],q1[2],q2[2]; + float hits[2][2]; + q0[0] = (float)x0; + q0[1] = (float)y0; + q1[0] = (float)x1; + q1[1] = (float)y1; + q2[0] = (float)x2; + q2[1] = (float)y2; + if (equal(q0,q1) || equal(q1,q2)) { + x0 = (int)verts[i-1].x; + y0 = (int)verts[i-1].y; + x1 = (int)verts[i ].x; + y1 = (int)verts[i ].y; + if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) { + float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0; + if (x_inter < x) + winding += (y0 < y1) ? 1 : -1; + } + } else { + int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hits); + if (num_hits >= 1) + if (hits[0][0] < 0) + winding += (hits[0][1] < 0 ? -1 : 1); + if (num_hits >= 2) + if (hits[1][0] < 0) + winding += (hits[1][1] < 0 ? -1 : 1); + } + } + } + } + return winding; +} + +static float stbtt__cuberoot( float x ) +{ + if (x<0) + return -(float) STBTT_pow(-x,1.0f/3.0f); + else + return (float) STBTT_pow( x,1.0f/3.0f); +} + +// x^3 + a*x^2 + b*x + c = 0 +static int stbtt__solve_cubic(float a, float b, float c, float* r) +{ + float s = -a / 3; + float p = b - a*a / 3; + float q = a * (2*a*a - 9*b) / 27 + c; + float p3 = p*p*p; + float d = q*q + 4*p3 / 27; + if (d >= 0) { + float z = (float) STBTT_sqrt(d); + float u = (-q + z) / 2; + float v = (-q - z) / 2; + u = stbtt__cuberoot(u); + v = stbtt__cuberoot(v); + r[0] = s + u + v; + return 1; + } else { + float u = (float) STBTT_sqrt(-p/3); + float v = (float) STBTT_acos(-STBTT_sqrt(-27/p3) * q / 2) / 3; // p3 must be negative, since d is negative + float m = (float) STBTT_cos(v); + float n = (float) STBTT_cos(v-3.141592/2)*1.732050808f; + r[0] = s + u * 2 * m; + r[1] = s - u * (m + n); + r[2] = s - u * (m - n); + + //STBTT_assert( STBTT_fabs(((r[0]+a)*r[0]+b)*r[0]+c) < 0.05f); // these asserts may not be safe at all scales, though they're in bezier t parameter units so maybe? + //STBTT_assert( STBTT_fabs(((r[1]+a)*r[1]+b)*r[1]+c) < 0.05f); + //STBTT_assert( STBTT_fabs(((r[2]+a)*r[2]+b)*r[2]+c) < 0.05f); + return 3; + } +} + +STBTT_DEF unsigned char * stbtt_GetGlyphSDF(const stbtt_fontinfo *info, float scale, int glyph, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff) +{ + float scale_x = scale, scale_y = scale; + int ix0,iy0,ix1,iy1; + int w,h; + unsigned char *data; + + if (scale == 0) return NULL; + + stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale, scale, 0.0f,0.0f, &ix0,&iy0,&ix1,&iy1); + + // if empty, return NULL + if (ix0 == ix1 || iy0 == iy1) + return NULL; + + ix0 -= padding; + iy0 -= padding; + ix1 += padding; + iy1 += padding; + + w = (ix1 - ix0); + h = (iy1 - iy0); + + if (width ) *width = w; + if (height) *height = h; + if (xoff ) *xoff = ix0; + if (yoff ) *yoff = iy0; + + // invert for y-downwards bitmaps + scale_y = -scale_y; + + { + int x,y,i,j; + float *precompute; + stbtt_vertex *verts; + int num_verts = stbtt_GetGlyphShape(info, glyph, &verts); + data = (unsigned char *) STBTT_malloc(w * h, info->userdata); + precompute = (float *) STBTT_malloc(num_verts * sizeof(float), info->userdata); + + for (i=0,j=num_verts-1; i < num_verts; j=i++) { + if (verts[i].type == STBTT_vline) { + float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y; + float x1 = verts[j].x*scale_x, y1 = verts[j].y*scale_y; + float dist = (float) STBTT_sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0)); + precompute[i] = (dist == 0) ? 0.0f : 1.0f / dist; + } else if (verts[i].type == STBTT_vcurve) { + float x2 = verts[j].x *scale_x, y2 = verts[j].y *scale_y; + float x1 = verts[i].cx*scale_x, y1 = verts[i].cy*scale_y; + float x0 = verts[i].x *scale_x, y0 = verts[i].y *scale_y; + float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2; + float len2 = bx*bx + by*by; + if (len2 != 0.0f) + precompute[i] = 1.0f / (bx*bx + by*by); + else + precompute[i] = 0.0f; + } else + precompute[i] = 0.0f; + } + + for (y=iy0; y < iy1; ++y) { + for (x=ix0; x < ix1; ++x) { + float val; + float min_dist = 999999.0f; + float sx = (float) x + 0.5f; + float sy = (float) y + 0.5f; + float x_gspace = (sx / scale_x); + float y_gspace = (sy / scale_y); + + int winding = stbtt__compute_crossings_x(x_gspace, y_gspace, num_verts, verts); // @OPTIMIZE: this could just be a rasterization, but needs to be line vs. non-tesselated curves so a new path + + for (i=0; i < num_verts; ++i) { + float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y; + + if (verts[i].type == STBTT_vline && precompute[i] != 0.0f) { + float x1 = verts[i-1].x*scale_x, y1 = verts[i-1].y*scale_y; + + float dist,dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy); + if (dist2 < min_dist*min_dist) + min_dist = (float) STBTT_sqrt(dist2); + + // coarse culling against bbox + //if (sx > STBTT_min(x0,x1)-min_dist && sx < STBTT_max(x0,x1)+min_dist && + // sy > STBTT_min(y0,y1)-min_dist && sy < STBTT_max(y0,y1)+min_dist) + dist = (float) STBTT_fabs((x1-x0)*(y0-sy) - (y1-y0)*(x0-sx)) * precompute[i]; + STBTT_assert(i != 0); + if (dist < min_dist) { + // check position along line + // x' = x0 + t*(x1-x0), y' = y0 + t*(y1-y0) + // minimize (x'-sx)*(x'-sx)+(y'-sy)*(y'-sy) + float dx = x1-x0, dy = y1-y0; + float px = x0-sx, py = y0-sy; + // minimize (px+t*dx)^2 + (py+t*dy)^2 = px*px + 2*px*dx*t + t^2*dx*dx + py*py + 2*py*dy*t + t^2*dy*dy + // derivative: 2*px*dx + 2*py*dy + (2*dx*dx+2*dy*dy)*t, set to 0 and solve + float t = -(px*dx + py*dy) / (dx*dx + dy*dy); + if (t >= 0.0f && t <= 1.0f) + min_dist = dist; + } + } else if (verts[i].type == STBTT_vcurve) { + float x2 = verts[i-1].x *scale_x, y2 = verts[i-1].y *scale_y; + float x1 = verts[i ].cx*scale_x, y1 = verts[i ].cy*scale_y; + float box_x0 = STBTT_min(STBTT_min(x0,x1),x2); + float box_y0 = STBTT_min(STBTT_min(y0,y1),y2); + float box_x1 = STBTT_max(STBTT_max(x0,x1),x2); + float box_y1 = STBTT_max(STBTT_max(y0,y1),y2); + // coarse culling against bbox to avoid computing cubic unnecessarily + if (sx > box_x0-min_dist && sx < box_x1+min_dist && sy > box_y0-min_dist && sy < box_y1+min_dist) { + int num=0; + float ax = x1-x0, ay = y1-y0; + float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2; + float mx = x0 - sx, my = y0 - sy; + float res[3] = {0.f,0.f,0.f}; + float px,py,t,it,dist2; + float a_inv = precompute[i]; + if (a_inv == 0.0) { // if a_inv is 0, it's 2nd degree so use quadratic formula + float a = 3*(ax*bx + ay*by); + float b = 2*(ax*ax + ay*ay) + (mx*bx+my*by); + float c = mx*ax+my*ay; + if (a == 0.0) { // if a is 0, it's linear + if (b != 0.0) { + res[num++] = -c/b; + } + } else { + float discriminant = b*b - 4*a*c; + if (discriminant < 0) + num = 0; + else { + float root = (float) STBTT_sqrt(discriminant); + res[0] = (-b - root)/(2*a); + res[1] = (-b + root)/(2*a); + num = 2; // don't bother distinguishing 1-solution case, as code below will still work + } + } + } else { + float b = 3*(ax*bx + ay*by) * a_inv; // could precompute this as it doesn't depend on sample point + float c = (2*(ax*ax + ay*ay) + (mx*bx+my*by)) * a_inv; + float d = (mx*ax+my*ay) * a_inv; + num = stbtt__solve_cubic(b, c, d, res); + } + dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy); + if (dist2 < min_dist*min_dist) + min_dist = (float) STBTT_sqrt(dist2); + + if (num >= 1 && res[0] >= 0.0f && res[0] <= 1.0f) { + t = res[0], it = 1.0f - t; + px = it*it*x0 + 2*t*it*x1 + t*t*x2; + py = it*it*y0 + 2*t*it*y1 + t*t*y2; + dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); + if (dist2 < min_dist * min_dist) + min_dist = (float) STBTT_sqrt(dist2); + } + if (num >= 2 && res[1] >= 0.0f && res[1] <= 1.0f) { + t = res[1], it = 1.0f - t; + px = it*it*x0 + 2*t*it*x1 + t*t*x2; + py = it*it*y0 + 2*t*it*y1 + t*t*y2; + dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); + if (dist2 < min_dist * min_dist) + min_dist = (float) STBTT_sqrt(dist2); + } + if (num >= 3 && res[2] >= 0.0f && res[2] <= 1.0f) { + t = res[2], it = 1.0f - t; + px = it*it*x0 + 2*t*it*x1 + t*t*x2; + py = it*it*y0 + 2*t*it*y1 + t*t*y2; + dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy); + if (dist2 < min_dist * min_dist) + min_dist = (float) STBTT_sqrt(dist2); + } + } + } + } + if (winding == 0) + min_dist = -min_dist; // if outside the shape, value is negative + val = onedge_value + pixel_dist_scale * min_dist; + if (val < 0) + val = 0; + else if (val > 255) + val = 255; + data[(y-iy0)*w+(x-ix0)] = (unsigned char) val; + } + } + STBTT_free(precompute, info->userdata); + STBTT_free(verts, info->userdata); + } + return data; +} + +STBTT_DEF unsigned char * stbtt_GetCodepointSDF(const stbtt_fontinfo *info, float scale, int codepoint, int padding, unsigned char onedge_value, float pixel_dist_scale, int *width, int *height, int *xoff, int *yoff) +{ + return stbtt_GetGlyphSDF(info, scale, stbtt_FindGlyphIndex(info, codepoint), padding, onedge_value, pixel_dist_scale, width, height, xoff, yoff); +} + +STBTT_DEF void stbtt_FreeSDF(unsigned char *bitmap, void *userdata) +{ + STBTT_free(bitmap, userdata); +} + +////////////////////////////////////////////////////////////////////////////// +// +// font name matching -- recommended not to use this +// + +// check if a utf8 string contains a prefix which is the utf16 string; if so return length of matching utf8 string +static stbtt_int32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 *s1, stbtt_int32 len1, stbtt_uint8 *s2, stbtt_int32 len2) +{ + stbtt_int32 i=0; + + // convert utf16 to utf8 and compare the results while converting + while (len2) { + stbtt_uint16 ch = s2[0]*256 + s2[1]; + if (ch < 0x80) { + if (i >= len1) return -1; + if (s1[i++] != ch) return -1; + } else if (ch < 0x800) { + if (i+1 >= len1) return -1; + if (s1[i++] != 0xc0 + (ch >> 6)) return -1; + if (s1[i++] != 0x80 + (ch & 0x3f)) return -1; + } else if (ch >= 0xd800 && ch < 0xdc00) { + stbtt_uint32 c; + stbtt_uint16 ch2 = s2[2]*256 + s2[3]; + if (i+3 >= len1) return -1; + c = ((ch - 0xd800) << 10) + (ch2 - 0xdc00) + 0x10000; + if (s1[i++] != 0xf0 + (c >> 18)) return -1; + if (s1[i++] != 0x80 + ((c >> 12) & 0x3f)) return -1; + if (s1[i++] != 0x80 + ((c >> 6) & 0x3f)) return -1; + if (s1[i++] != 0x80 + ((c ) & 0x3f)) return -1; + s2 += 2; // plus another 2 below + len2 -= 2; + } else if (ch >= 0xdc00 && ch < 0xe000) { + return -1; + } else { + if (i+2 >= len1) return -1; + if (s1[i++] != 0xe0 + (ch >> 12)) return -1; + if (s1[i++] != 0x80 + ((ch >> 6) & 0x3f)) return -1; + if (s1[i++] != 0x80 + ((ch ) & 0x3f)) return -1; + } + s2 += 2; + len2 -= 2; + } + return i; +} + +static int stbtt_CompareUTF8toUTF16_bigendian_internal(char *s1, int len1, char *s2, int len2) +{ + return len1 == stbtt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8*) s1, len1, (stbtt_uint8*) s2, len2); +} + +// returns results in whatever encoding you request... but note that 2-byte encodings +// will be BIG-ENDIAN... use stbtt_CompareUTF8toUTF16_bigendian() to compare +STBTT_DEF const char *stbtt_GetFontNameString(const stbtt_fontinfo *font, int *length, int platformID, int encodingID, int languageID, int nameID) +{ + stbtt_int32 i,count,stringOffset; + stbtt_uint8 *fc = font->data; + stbtt_uint32 offset = font->fontstart; + stbtt_uint32 nm = stbtt__find_table(fc, offset, "name"); + if (!nm) return NULL; + + count = ttUSHORT(fc+nm+2); + stringOffset = nm + ttUSHORT(fc+nm+4); + for (i=0; i < count; ++i) { + stbtt_uint32 loc = nm + 6 + 12 * i; + if (platformID == ttUSHORT(fc+loc+0) && encodingID == ttUSHORT(fc+loc+2) + && languageID == ttUSHORT(fc+loc+4) && nameID == ttUSHORT(fc+loc+6)) { + *length = ttUSHORT(fc+loc+8); + return (const char *) (fc+stringOffset+ttUSHORT(fc+loc+10)); + } + } + return NULL; +} + +static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nlen, stbtt_int32 target_id, stbtt_int32 next_id) +{ + stbtt_int32 i; + stbtt_int32 count = ttUSHORT(fc+nm+2); + stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm+4); + + for (i=0; i < count; ++i) { + stbtt_uint32 loc = nm + 6 + 12 * i; + stbtt_int32 id = ttUSHORT(fc+loc+6); + if (id == target_id) { + // find the encoding + stbtt_int32 platform = ttUSHORT(fc+loc+0), encoding = ttUSHORT(fc+loc+2), language = ttUSHORT(fc+loc+4); + + // is this a Unicode encoding? + if (platform == 0 || (platform == 3 && encoding == 1) || (platform == 3 && encoding == 10)) { + stbtt_int32 slen = ttUSHORT(fc+loc+8); + stbtt_int32 off = ttUSHORT(fc+loc+10); + + // check if there's a prefix match + stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,slen); + if (matchlen >= 0) { + // check for target_id+1 immediately following, with same encoding & language + if (i+1 < count && ttUSHORT(fc+loc+12+6) == next_id && ttUSHORT(fc+loc+12) == platform && ttUSHORT(fc+loc+12+2) == encoding && ttUSHORT(fc+loc+12+4) == language) { + slen = ttUSHORT(fc+loc+12+8); + off = ttUSHORT(fc+loc+12+10); + if (slen == 0) { + if (matchlen == nlen) + return 1; + } else if (matchlen < nlen && name[matchlen] == ' ') { + ++matchlen; + if (stbtt_CompareUTF8toUTF16_bigendian_internal((char*) (name+matchlen), nlen-matchlen, (char*)(fc+stringOffset+off),slen)) + return 1; + } + } else { + // if nothing immediately following + if (matchlen == nlen) + return 1; + } + } + } + + // @TODO handle other encodings + } + } + return 0; +} + +static int stbtt__matches(stbtt_uint8 *fc, stbtt_uint32 offset, stbtt_uint8 *name, stbtt_int32 flags) +{ + stbtt_int32 nlen = (stbtt_int32) STBTT_strlen((char *) name); + stbtt_uint32 nm,hd; + if (!stbtt__isfont(fc+offset)) return 0; + + // check italics/bold/underline flags in macStyle... + if (flags) { + hd = stbtt__find_table(fc, offset, "head"); + if ((ttUSHORT(fc+hd+44) & 7) != (flags & 7)) return 0; + } + + nm = stbtt__find_table(fc, offset, "name"); + if (!nm) return 0; + + if (flags) { + // if we checked the macStyle flags, then just check the family and ignore the subfamily + if (stbtt__matchpair(fc, nm, name, nlen, 16, -1)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 1, -1)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1; + } else { + if (stbtt__matchpair(fc, nm, name, nlen, 16, 17)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 1, 2)) return 1; + if (stbtt__matchpair(fc, nm, name, nlen, 3, -1)) return 1; + } + + return 0; +} + +static int stbtt_FindMatchingFont_internal(unsigned char *font_collection, char *name_utf8, stbtt_int32 flags) +{ + stbtt_int32 i; + for (i=0;;++i) { + stbtt_int32 off = stbtt_GetFontOffsetForIndex(font_collection, i); + if (off < 0) return off; + if (stbtt__matches((stbtt_uint8 *) font_collection, off, (stbtt_uint8*) name_utf8, flags)) + return off; + } +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wcast-qual" +#endif + +STBTT_DEF int stbtt_BakeFontBitmap(const unsigned char *data, int offset, + float pixel_height, unsigned char *pixels, int pw, int ph, + int first_char, int num_chars, stbtt_bakedchar *chardata) +{ + return stbtt_BakeFontBitmap_internal((unsigned char *) data, offset, pixel_height, pixels, pw, ph, first_char, num_chars, chardata); +} + +STBTT_DEF int stbtt_GetFontOffsetForIndex(const unsigned char *data, int index) +{ + return stbtt_GetFontOffsetForIndex_internal((unsigned char *) data, index); +} + +STBTT_DEF int stbtt_GetNumberOfFonts(const unsigned char *data) +{ + return stbtt_GetNumberOfFonts_internal((unsigned char *) data); +} + +STBTT_DEF int stbtt_InitFont(stbtt_fontinfo *info, const unsigned char *data, int offset) +{ + return stbtt_InitFont_internal(info, (unsigned char *) data, offset); +} + +STBTT_DEF int stbtt_FindMatchingFont(const unsigned char *fontdata, const char *name, int flags) +{ + return stbtt_FindMatchingFont_internal((unsigned char *) fontdata, (char *) name, flags); +} + +STBTT_DEF int stbtt_CompareUTF8toUTF16_bigendian(const char *s1, int len1, const char *s2, int len2) +{ + return stbtt_CompareUTF8toUTF16_bigendian_internal((char *) s1, len1, (char *) s2, len2); +} + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#endif // STB_TRUETYPE_IMPLEMENTATION + + +// FULL VERSION HISTORY +// +// 1.25 (2021-07-11) many fixes +// 1.24 (2020-02-05) fix warning +// 1.23 (2020-02-02) query SVG data for glyphs; query whole kerning table (but only kern not GPOS) +// 1.22 (2019-08-11) minimize missing-glyph duplication; fix kerning if both 'GPOS' and 'kern' are defined +// 1.21 (2019-02-25) fix warning +// 1.20 (2019-02-07) PackFontRange skips missing codepoints; GetScaleFontVMetrics() +// 1.19 (2018-02-11) OpenType GPOS kerning (horizontal only), STBTT_fmod +// 1.18 (2018-01-29) add missing function +// 1.17 (2017-07-23) make more arguments const; doc fix +// 1.16 (2017-07-12) SDF support +// 1.15 (2017-03-03) make more arguments const +// 1.14 (2017-01-16) num-fonts-in-TTC function +// 1.13 (2017-01-02) support OpenType fonts, certain Apple fonts +// 1.12 (2016-10-25) suppress warnings about casting away const with -Wcast-qual +// 1.11 (2016-04-02) fix unused-variable warning +// 1.10 (2016-04-02) allow user-defined fabs() replacement +// fix memory leak if fontsize=0.0 +// fix warning from duplicate typedef +// 1.09 (2016-01-16) warning fix; avoid crash on outofmem; use alloc userdata for PackFontRanges +// 1.08 (2015-09-13) document stbtt_Rasterize(); fixes for vertical & horizontal edges +// 1.07 (2015-08-01) allow PackFontRanges to accept arrays of sparse codepoints; +// allow PackFontRanges to pack and render in separate phases; +// fix stbtt_GetFontOFfsetForIndex (never worked for non-0 input?); +// fixed an assert() bug in the new rasterizer +// replace assert() with STBTT_assert() in new rasterizer +// 1.06 (2015-07-14) performance improvements (~35% faster on x86 and x64 on test machine) +// also more precise AA rasterizer, except if shapes overlap +// remove need for STBTT_sort +// 1.05 (2015-04-15) fix misplaced definitions for STBTT_STATIC +// 1.04 (2015-04-15) typo in example +// 1.03 (2015-04-12) STBTT_STATIC, fix memory leak in new packing, various fixes +// 1.02 (2014-12-10) fix various warnings & compile issues w/ stb_rect_pack, C++ +// 1.01 (2014-12-08) fix subpixel position when oversampling to exactly match +// non-oversampled; STBTT_POINT_SIZE for packed case only +// 1.00 (2014-12-06) add new PackBegin etc. API, w/ support for oversampling +// 0.99 (2014-09-18) fix multiple bugs with subpixel rendering (ryg) +// 0.9 (2014-08-07) support certain mac/iOS fonts without an MS platformID +// 0.8b (2014-07-07) fix a warning +// 0.8 (2014-05-25) fix a few more warnings +// 0.7 (2013-09-25) bugfix: subpixel glyph bug fixed in 0.5 had come back +// 0.6c (2012-07-24) improve documentation +// 0.6b (2012-07-20) fix a few more warnings +// 0.6 (2012-07-17) fix warnings; added stbtt_ScaleForMappingEmToPixels, +// stbtt_GetFontBoundingBox, stbtt_IsGlyphEmpty +// 0.5 (2011-12-09) bugfixes: +// subpixel glyph renderer computed wrong bounding box +// first vertex of shape can be off-curve (FreeSans) +// 0.4b (2011-12-03) fixed an error in the font baking example +// 0.4 (2011-12-01) kerning, subpixel rendering (tor) +// bugfixes for: +// codepoint-to-glyph conversion using table fmt=12 +// codepoint-to-glyph conversion using table fmt=4 +// stbtt_GetBakedQuad with non-square texture (Zer) +// updated Hello World! sample to use kerning and subpixel +// fixed some warnings +// 0.3 (2009-06-24) cmap fmt=12, compound shapes (MM) +// userdata, malloc-from-userdata, non-zero fill (stb) +// 0.2 (2009-03-11) Fix unsigned/signed char warnings +// 0.1 (2009-03-09) First public release +// + +/* +------------------------------------------------------------------------------ +This software is available under 2 licenses -- choose whichever you prefer. +------------------------------------------------------------------------------ +ALTERNATIVE A - MIT License +Copyright (c) 2017 Sean Barrett +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. +------------------------------------------------------------------------------ +ALTERNATIVE B - Public Domain (www.unlicense.org) +This is free and unencumbered software released into the public domain. +Anyone is free to copy, modify, publish, use, compile, sell, or distribute this +software, either in source code form or as a compiled binary, for any purpose, +commercial or non-commercial, and by any means. +In jurisdictions that recognize copyright laws, the author or authors of this +software dedicate any and all copyright interest in the software to the public +domain. We make this dedication for the benefit of the public at large and to +the detriment of our heirs and successors. We intend this dedication to be an +overt act of relinquishment in perpetuity of all present and future rights to +this software under copyright law. +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 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/external/lumin/thirdparty/imgui/misc/freetype/imgui_freetype.h b/external/lumin/thirdparty/imgui/misc/freetype/imgui_freetype.h new file mode 100644 index 0000000..1d1bb02 --- /dev/null +++ b/external/lumin/thirdparty/imgui/misc/freetype/imgui_freetype.h @@ -0,0 +1,5 @@ +#pragma once +// DayZ overlay integration: Lumin keeps imgui_freetype.h at the imgui root, but +// stock imgui_draw.cpp includes it via this "misc/freetype/" path when +// IMGUI_ENABLE_FREETYPE is defined. Forward to the real header. +#include "../../imgui_freetype.h" diff --git a/src/Config.cpp b/src/Config.cpp new file mode 100644 index 0000000..236461f --- /dev/null +++ b/src/Config.cpp @@ -0,0 +1,133 @@ +#include "Config.h" + +#include +#include + +#include +#include + +using json = nlohmann::json; + +static constexpr const char* kPath = "config/overlay.json"; + +// ------------------------------------------------------------------------- +// Load +// ------------------------------------------------------------------------- + +OverlayConfig OverlayConfig::Load(const std::string& path) { + OverlayConfig cfg; + + std::ifstream f(path); + if (!f.is_open()) { + spdlog::info("Config: {} not found, using defaults", path); + return cfg; + } + + try { + json j = json::parse(f); + + // ESP toggles + if (j.contains("showPlayers")) cfg.showPlayers = j["showPlayers"].get(); + if (j.contains("showAnimals")) cfg.showAnimals = j["showAnimals"].get(); + if (j.contains("showZombies")) cfg.showZombies = j["showZombies"].get(); + if (j.contains("showItems")) cfg.showItems = j["showItems"].get(); + if (j.contains("showBox")) cfg.showBox = j["showBox"].get(); + if (j.contains("showSkeleton")) cfg.showSkeleton = j["showSkeleton"].get(); + if (j.contains("showHeadDot")) cfg.showHeadDot = j["showHeadDot"].get(); + if (j.contains("showCorpses")) cfg.showCorpses = j["showCorpses"].get(); + if (j.contains("showWeapon")) cfg.showWeapon = j["showWeapon"].get(); + if (j.contains("showHealthBar")) cfg.showHealthBar = j["showHealthBar"].get(); + if (j.contains("showHealthNumber")) cfg.showHealthNumber = j["showHealthNumber"].get(); + + // Distances + if (j.contains("playerMaxDist")) cfg.playerMaxDist = j["playerMaxDist"].get(); + if (j.contains("animalMaxDist")) cfg.animalMaxDist = j["animalMaxDist"].get(); + if (j.contains("zombieMaxDist")) cfg.zombieMaxDist = j["zombieMaxDist"].get(); + if (j.contains("itemMaxDist")) cfg.itemMaxDist = j["itemMaxDist"].get(); + + // Per-category item toggles + if (j.contains("itemCategories") && j["itemCategories"].is_object()) { + for (auto& [key, val] : j["itemCategories"].items()) { + if (val.is_boolean()) cfg.itemCategories[key] = val.get(); + } + } + + // Resolution override + if (j.contains("overlayWidth")) cfg.overlayWidth = j["overlayWidth"].get(); + if (j.contains("overlayHeight")) cfg.overlayHeight = j["overlayHeight"].get(); + + // Stretched resolution + if (j.contains("renderWidth")) cfg.renderWidth = j["renderWidth"].get(); + if (j.contains("renderHeight")) cfg.renderHeight = j["renderHeight"].get(); + if (j.contains("stretchToFill")) cfg.stretchToFill = j["stretchToFill"].get(); + + // Web radar + if (j.contains("webBindAddress")) cfg.webBindAddress = j["webBindAddress"].get(); + if (j.contains("webPort")) cfg.webPort = j["webPort"].get(); + if (j.contains("webPassword")) cfg.webPassword = j["webPassword"].get(); + + spdlog::info("Config: loaded from {}", path); + } catch (const std::exception& ex) { + spdlog::warn("Config: parse error in {} — {} — using defaults", path, ex.what()); + } + + return cfg; +} + +// ------------------------------------------------------------------------- +// Save +// ------------------------------------------------------------------------- + +void OverlayConfig::Save(const std::string& path) const { + try { + std::filesystem::create_directories( + std::filesystem::path(path).parent_path()); + + json j; + + // ESP toggles + j["showPlayers"] = showPlayers; + j["showAnimals"] = showAnimals; + j["showZombies"] = showZombies; + j["showItems"] = showItems; + j["showBox"] = showBox; + j["showSkeleton"] = showSkeleton; + j["showHeadDot"] = showHeadDot; + j["showCorpses"] = showCorpses; + j["showWeapon"] = showWeapon; + j["showHealthBar"] = showHealthBar; + j["showHealthNumber"] = showHealthNumber; + + // Distances + j["playerMaxDist"] = playerMaxDist; + j["animalMaxDist"] = animalMaxDist; + j["zombieMaxDist"] = zombieMaxDist; + j["itemMaxDist"] = itemMaxDist; + + // Per-category item toggles + json cats = json::object(); + for (const auto& [key, enabled] : itemCategories) + cats[key] = enabled; + j["itemCategories"] = cats; + + // Resolution override + j["overlayWidth"] = overlayWidth; + j["overlayHeight"] = overlayHeight; + + // Stretched resolution + j["renderWidth"] = renderWidth; + j["renderHeight"] = renderHeight; + j["stretchToFill"] = stretchToFill; + + // Web radar + j["webBindAddress"] = webBindAddress; + j["webPort"] = webPort; + j["webPassword"] = webPassword; + + std::ofstream f(path); + f << j.dump(2); + spdlog::debug("Config: saved to {}", path); + } catch (const std::exception& ex) { + spdlog::warn("Config: failed to save {} — {}", path, ex.what()); + } +} diff --git a/src/Config.h b/src/Config.h new file mode 100644 index 0000000..47967d6 --- /dev/null +++ b/src/Config.h @@ -0,0 +1,66 @@ +#pragma once +#include +#include + +// ------------------------------------------------------------------------- +// OverlayConfig — all user-editable runtime settings. +// Persisted as config/overlay.json (nlohmann/json). +// ------------------------------------------------------------------------- + +struct OverlayConfig { + // ---- ESP toggles ---- + bool showPlayers = true; + bool showAnimals = true; + bool showZombies = true; + bool showItems = true; + bool showBox = true; // bounding box around players + bool showSkeleton = true; // bone skeleton lines + + // ---- Extra ESP options ---- + bool showHeadDot = false; // dot at head bone for players/zombies + bool showCorpses = false; // show dead players/zombies (dimmed grey) + bool showWeapon = true; // item-in-hands label below player name + bool showHealthBar = true; // vertical health bar to the right of the box + bool showHealthNumber = false; // numeric "xxx/100" beside the bar + + // ---- Draw-distance limits (metres) ---- + float playerMaxDist = 1000.0f; + float animalMaxDist = 1000.0f; + float zombieMaxDist = 500.0f; + float itemMaxDist = 200.0f; + + // ---- Per-category item toggles (key = filterKey from item_filters.json) ---- + // Missing key → enabled by default. + std::map itemCategories; + + // ---- Overlay resolution override ---- + // 0 = auto-detect from GetSystemMetrics (default behaviour). + // Set both to your MONITOR (display) resolution, not the game render resolution. + int overlayWidth = 0; + int overlayHeight = 0; + + // ---- Stretched resolution support ---- + // renderWidth / renderHeight: the resolution DayZ actually renders at + // (e.g. 1280x960 when running 4:3 stretched on a 1920x1080 monitor). + // Set to 0 to disable (assumes render == display). + // + // stretchToFill: true = GPU stretches the render to fill the monitor (no black bars). + // false = game maintains aspect ratio with letterbox/pillarbox bars. + // + // overlayWidth/Height should ALWAYS equal your monitor resolution regardless of mode. + int renderWidth = 0; + int renderHeight = 0; + bool stretchToFill = true; + + // ---- Web radar ---- + std::string webBindAddress = "0.0.0.0"; + int webPort = 7777; + std::string webPassword = ""; + + // ------------------------------------------------------------------ + // Load from path (returns default-constructed config on any error). + static OverlayConfig Load(const std::string& path); + + // Save to path (creates parent directories if needed). + void Save(const std::string& path) const; +}; diff --git a/src/Core/Models.h b/src/Core/Models.h new file mode 100644 index 0000000..04a804d --- /dev/null +++ b/src/Core/Models.h @@ -0,0 +1,234 @@ +#pragma once +#include +#include +#include + +// ------------------------------------------------------------------------- +// Primitive math types +// ------------------------------------------------------------------------- + +struct Vector3 { + float x = 0.0f; + float y = 0.0f; + float z = 0.0f; +}; + +// ------------------------------------------------------------------------- +// Local player +// ------------------------------------------------------------------------- + +struct LocalPlayerData { + uint64_t entityAddress = 0; + uint64_t visualStateAddress = 0; + Vector3 position; + float lookDirection = 0.0f; // heading in degrees +}; + +// ------------------------------------------------------------------------- +// Network / server metadata +// ------------------------------------------------------------------------- + +struct NetworkMetadata { + std::string serverName; + std::string gameVersion; + std::optional serverMapName; +}; + +// ------------------------------------------------------------------------- +// Scoreboard +// ------------------------------------------------------------------------- + +struct DayZScoreboardPlayer { + uint32_t networkId = 0; + std::string steamId; + std::string playerName; +}; + +// ------------------------------------------------------------------------- +// Near entity list +// ------------------------------------------------------------------------- + +struct DayZNearEntityEntry { + uint64_t address = 0; + uint32_t networkId = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; +}; + +// ------------------------------------------------------------------------- +// Far entity list (same schema as near) +// ------------------------------------------------------------------------- + +struct DayZFarEntityEntry { + uint64_t address = 0; + uint32_t networkId = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; +}; + +// ------------------------------------------------------------------------- +// Slow entity list (no networkId) +// ------------------------------------------------------------------------- + +struct DayZSlowEntityEntry { + uint64_t address = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; +}; + +// ------------------------------------------------------------------------- +// Skeleton bones (12 named bones used for segment rendering) +// Layout matches Spectre PLAYER_BONE_IDS / INFECTED_BONE_IDS segment topology. +// ------------------------------------------------------------------------- + +// Bone layout mirrors Spectre stable segments. +// Player: spine→neck→head; neck→shoulders→elbows→hands; spine→hips→knees→ankles +// Zombie: spine→neck→head; spine→shoulders→elbows→hands; spine→pelvis→hips→knees→ankles +struct SkeletonBones { + Vector3 neck; + Vector3 head; + Vector3 spine; // chest hub (player bone 18, zombie bone 19) + Vector3 pelvis; // zombie only — connects spine to hips + Vector3 rightShoulder; + Vector3 rightElbow; + Vector3 rightHand; + Vector3 leftShoulder; + Vector3 leftElbow; + Vector3 leftHand; + Vector3 rightHip; + Vector3 rightKnee; + Vector3 rightAnkle; + Vector3 leftHip; + Vector3 leftKnee; + Vector3 leftAnkle; + bool valid = false; +}; + +// ------------------------------------------------------------------------- +// Player entry (full) +// ------------------------------------------------------------------------- + +struct DayZPlayerEntry { + uint64_t address = 0; + uint32_t networkId = 0; + std::optional position; + std::optional headingDegrees; + bool isDead = false; + bool isAdmin = false; // model matches a known invisible/admin model path + std::string nickname; + std::string itemInHands; + std::string typeName; + std::string configName; + std::string modelName; + SkeletonBones skeleton; + // health in the range [0, 100]. -1.0f = not yet read / offset unknown. + float health = -1.0f; +}; + +// ------------------------------------------------------------------------- +// Bullet entry +// ------------------------------------------------------------------------- + +struct DayZBulletEntry { + uint64_t address = 0; + std::optional position; + std::optional direction; + std::optional headingDegrees; + std::string directionSource; // e.g. "visual", "raw" +}; + +// ------------------------------------------------------------------------- +// Item list entry +// ------------------------------------------------------------------------- + +struct DayZItemListEntry { + uint64_t address = 0; + std::optional position; + std::string entityName; + std::string cleanName; + std::string typeName; + std::string configName; + std::string modelName; + std::string filterKey; // lower-case composite for filtering +}; + +// ------------------------------------------------------------------------- +// Specialised slow-list entity types +// ------------------------------------------------------------------------- + +struct DayZAnimalEntry { + uint64_t address = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; +}; + +struct DayZZombieEntry { + uint64_t address = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; + SkeletonBones skeleton; +}; + +// Vehicles: cars, boats, helicopters, etc. +enum class VehicleKind : uint8_t { + Unknown = 0, + Car, + Boat, + Helicopter, + Plane, +}; + +struct DayZCarAndBoatEntry { + uint64_t address = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; + VehicleKind kind = VehicleKind::Unknown; +}; + +struct DayZOtherEntityEntry { + uint64_t address = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; +}; + +// ------------------------------------------------------------------------- +// Camera data (read from World+0x1B8 inline struct each frame) +// ------------------------------------------------------------------------- + +struct CameraData { + Vector3 invertedViewRight; + Vector3 invertedViewUp; + Vector3 invertedViewForward; + Vector3 translation; + float projectionD1x = 0.0f; // horizontal FOV scale + float projectionD2y = 0.0f; // vertical FOV scale + bool valid = false; +}; diff --git a/src/Core/RuntimeSession.h b/src/Core/RuntimeSession.h new file mode 100644 index 0000000..15b636b --- /dev/null +++ b/src/Core/RuntimeSession.h @@ -0,0 +1,9 @@ +#pragma once +#include + +struct RuntimeSession { + uint32_t processId = 0; + uint64_t gameBaseAddress = 0; + uint64_t worldAddress = 0; + uint64_t networkManagerAddress = 0; +}; diff --git a/src/EmbeddedMaps.h b/src/EmbeddedMaps.h new file mode 100644 index 0000000..81a2309 --- /dev/null +++ b/src/EmbeddedMaps.h @@ -0,0 +1,11 @@ +#pragma once +#include +#include +#include +#include + +// Returns a direct pointer into the Windows RCDATA resource for the given map +// ID, plus its byte length. The pointer is valid for the entire process lifetime +// — it points into the exe's memory-mapped image, so no copy is made. +// Returns {nullptr, 0} if the map was not compiled into the binary. +std::pair GetEmbeddedMap(const std::string& mapId); diff --git a/src/Logger.h b/src/Logger.h new file mode 100644 index 0000000..f19cf61 --- /dev/null +++ b/src/Logger.h @@ -0,0 +1,49 @@ +#pragma once +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include // needed before spdlog on MSVC to avoid winsock conflicts + +#include +#include +#include + +// ------------------------------------------------------------------------- +// AppLogger +// Call AppLogger::Init() once from main() before anything else. +// Then use spdlog::get("dayz") or the DAYZ_LOG_* macros everywhere. +// ------------------------------------------------------------------------- + +namespace AppLogger { + +inline void Init(spdlog::level::level_enum level = spdlog::level::info) { + auto console_sink = std::make_shared(); + console_sink->set_level(level); + console_sink->set_pattern("[%H:%M:%S.%e] [%^%l%$] [%n] %v"); + + auto file_sink = std::make_shared("logs/dayz-memory.log", /*truncate=*/true); + file_sink->set_level(spdlog::level::trace); + file_sink->set_pattern("[%Y-%m-%d %H:%M:%S.%e] [%l] [%n] %v"); + + auto logger = std::make_shared( + "dayz", + spdlog::sinks_init_list{console_sink, file_sink} + ); + logger->set_level(spdlog::level::trace); + logger->flush_on(spdlog::level::warn); + + spdlog::register_logger(logger); + spdlog::set_default_logger(logger); +} + +inline std::shared_ptr Get() { + return spdlog::get("dayz"); +} + +} // namespace AppLogger diff --git a/src/Memory/MemoryValidation.h b/src/Memory/MemoryValidation.h new file mode 100644 index 0000000..672feac --- /dev/null +++ b/src/Memory/MemoryValidation.h @@ -0,0 +1,156 @@ +#pragma once +#include +#include +#include +#include +#include // std::numbers::pi (C++20) + +#include "../Core/Models.h" + +// ------------------------------------------------------------------------- +// Header-only port of C# MemoryValidation.cs +// ------------------------------------------------------------------------- + +namespace MemoryValidation { + +// ------------------------------------------------------------------------- +// Address sanity +// ------------------------------------------------------------------------- + +/// Returns true if the address falls in the valid user-mode range: +/// [0x0000000100000000, 0x0000FFFF00000000) +[[nodiscard]] inline bool IsValidUserAddress(uint64_t address) noexcept { + constexpr uint64_t kLow = 0x0000000100000000ULL; + constexpr uint64_t kHigh = 0x0000FFFF00000000ULL; + return address >= kLow && address < kHigh; +} + +// ------------------------------------------------------------------------- +// Vector plausibility +// ------------------------------------------------------------------------- + +/// Returns true when all three components are finite and within ±100 000 units. +[[nodiscard]] inline bool IsValidVector(const Vector3& v) noexcept { + constexpr float kLimit = 100000.0f; + return std::isfinite(v.x) && std::isfinite(v.y) && std::isfinite(v.z) + && std::abs(v.x) < kLimit + && std::abs(v.y) < kLimit + && std::abs(v.z) < kLimit; +} + +// ------------------------------------------------------------------------- +// String helpers +// ------------------------------------------------------------------------- + +/// Returns true when the string is non-empty and not all whitespace. +[[nodiscard]] inline bool IsUsableString(const std::string& s) noexcept { + if (s.empty()) return false; + for (char c : s) { + if (c != ' ' && c != '\t' && c != '\r' && c != '\n') return true; + } + return false; +} + +namespace detail { + +/// Classifies a char as "readable": printable ASCII (0x20-0x7E) or high-byte +/// (Latin-1 / Windows-1251 printable range 0xA0-0xFF). +[[nodiscard]] inline bool IsReadableChar(unsigned char c) noexcept { + return (c >= 0x20 && c <= 0x7E) || (c >= 0xA0); +} + +/// Returns the fraction of chars that are readable (0.0–1.0). +[[nodiscard]] inline double ReadableRatio(const std::string& s) noexcept { + if (s.empty()) return 0.0; + int readable = 0; + for (unsigned char c : s) { + if (IsReadableChar(c)) ++readable; + } + return static_cast(readable) / static_cast(s.size()); +} + +/// Returns true when the string contains at least one control character +/// (excluding normal whitespace: space, tab, CR, LF). +[[nodiscard]] inline bool HasUnwantedControlChar(const std::string& s) noexcept { + for (unsigned char c : s) { + if (c < 0x20 && c != '\t' && c != '\r' && c != '\n') return true; + } + return false; +} + +} // namespace detail + +/// Returns true when the server name is plausible: +/// - length 3–96 +/// - no control characters +/// - readable-char ratio > 50 % +/// - contains at least one ASCII alphanumeric character +[[nodiscard]] inline bool IsPlausibleServerName(const std::string& s) noexcept { + if (s.size() < 3 || s.size() > 96) return false; + if (detail::HasUnwantedControlChar(s)) return false; + if (detail::ReadableRatio(s) < 0.5) return false; + for (char c : s) { + if (std::isalnum(static_cast(c))) return true; + } + return false; +} + +/// Returns true when the game version string is plausible: +/// - length 3–32 +/// - contains at least one digit +/// - contains at least one of '.', '-', '_' +[[nodiscard]] inline bool IsPlausibleGameVersion(const std::string& s) noexcept { + if (s.size() < 3 || s.size() > 32) return false; + bool hasDigit = false; + bool hasSeparator = false; + for (char c : s) { + if (std::isdigit(static_cast(c))) hasDigit = true; + if (c == '.' || c == '-' || c == '_') hasSeparator = true; + } + return hasDigit && hasSeparator; +} + +/// Sanitizes an entity string read from memory. +/// Returns empty string if the content has unwanted control characters +/// or if the readable-char ratio is below 50 %. +/// Otherwise returns the original string. +[[nodiscard]] inline std::string SanitizeEntityString(const std::string& s) { + if (s.empty()) return {}; + if (detail::HasUnwantedControlChar(s)) return {}; + if (detail::ReadableRatio(s) < 0.5) return {}; + return s; +} + +// ------------------------------------------------------------------------- +// Heading helpers +// ------------------------------------------------------------------------- + +/// Normalises an arbitrary heading (degrees) into [0, 360). +[[nodiscard]] inline float NormalizeHeading(float degrees) noexcept { + float result = std::fmod(degrees, 360.0f); + if (result < 0.0f) result += 360.0f; + return result; +} + +/// Computes a world heading (degrees, 0 = north/+Z) from a 2-D direction +/// vector (dirX, dirY) where dirY typically corresponds to the forward axis. +/// +/// Formula mirrors the C# original: +/// heading = atan2(dirY, dirX) * 180 / PI + 90 +/// then normalized to [0, 360). +/// +/// Returns false when the direction vector is degenerate (near-zero length). +[[nodiscard]] inline bool TryGetCorrectedHeadingFromDirection( + float dirX, float dirY, float& heading) noexcept +{ + constexpr float kEpsilon = 1e-6f; + if (std::abs(dirX) < kEpsilon && std::abs(dirY) < kEpsilon) { + heading = 0.0f; + return false; + } + constexpr float kRadToDeg = 180.0f / static_cast(std::numbers::pi); + heading = NormalizeHeading(std::atan2(dirY, dirX) * kRadToDeg + 90.0f); + return true; +} + +} // namespace MemoryValidation diff --git a/src/Memory/VmmAccessor.cpp b/src/Memory/VmmAccessor.cpp new file mode 100644 index 0000000..845f678 --- /dev/null +++ b/src/Memory/VmmAccessor.cpp @@ -0,0 +1,299 @@ +#include "VmmAccessor.h" + +// VmmAccessor.h includes with WIN32_LEAN_AND_MEAN, which strips +// . vmmdll.h needs NTSTATUS from , so pull it in +// explicitly here before including vmmdll.h. +#include + +// vmmdll.h is needed here only for VMMDLL_ConfigSet / VMMDLL_OPT_REFRESH_ALL. +#include "vmmdll.h" + +#include // std::find +#include + +// ------------------------------------------------------------------------- +// Initialize +// ------------------------------------------------------------------------- + +bool VmmAccessor::Initialize(bool useMemoryMap) { + std::unique_lock lk(m_accessMutex); + m_process.reset(); + m_attachedPid = 0; + spdlog::trace("VmmAccessor: initialising DMA (useMemoryMap={})...", useMemoryMap); + m_dma = std::make_unique(useMemoryMap); + if (!m_dma->is_initialized()) { + spdlog::error("VmmAccessor: DMA initialisation failed."); + return false; + } + spdlog::info("VmmAccessor: DMA initialised."); + return true; +} + +// ------------------------------------------------------------------------- +// ForceRefresh +// ------------------------------------------------------------------------- + +void VmmAccessor::ForceRefresh() { + if (!IsInitialized()) return; + VMMDLL_ConfigSet(m_dma->handle.get(), VMMDLL_OPT_REFRESH_ALL, 1); +} + +// ------------------------------------------------------------------------- +// TryFindProcess +// ------------------------------------------------------------------------- + +bool VmmAccessor::TryFindProcess(const std::string& processName, + uint32_t& outPid) { + if (!IsInitialized()) return false; + + DWORD pid = m_dma->get_process_id(processName); + if (pid == 0) return false; + + // Already attached to this exact PID — reuse the existing Process handle. + // WaitForSession re-attaches every 3 s while waiting for spawn; without this + // early-out we'd needlessly tear down a valid handle and re-run the CR3 fix + // (and log it) on every one of those ticks. + if (m_process && m_attachedPid == static_cast(pid)) { + outPid = m_attachedPid; + return true; + } + + // (Re-)create Process bound to this PID so all subsequent reads use it. + // Unique lock: blocks the camera thread's reads while the handle is swapped + // so it can never dereference a half-destroyed Process. + std::unique_lock lk(m_accessMutex); + m_process = std::make_unique(*m_dma, processName); + m_attachedPid = static_cast(pid); + outPid = m_attachedPid; + + // Apply the CR3 fix so reads use UserDirectoryTableBase instead of the + // kernel DTB. Required for games (including DayZ) that run user-mode + // code under a separate paging context. No-op if already on the right DTB. + if (!m_process->fix_cr3(processName)) { + spdlog::warn("VmmAccessor: fix_cr3 failed for '{}' — reads may be unreliable.", processName); + } else { + spdlog::info("VmmAccessor: CR3 fix applied for '{}'.", processName); + } + + spdlog::trace("VmmAccessor: attached to '{}' PID={}", processName, m_attachedPid); + return true; +} + +// ------------------------------------------------------------------------- +// TryGetModuleBase +// ------------------------------------------------------------------------- + +bool VmmAccessor::TryGetModuleBase(uint32_t /*pid*/, + const std::string& moduleName, + uint64_t& outBase) { + if (!IsAttached()) return false; + + uint64_t base = m_process->get_base_address(moduleName); + if (base == 0) { + spdlog::warn("VmmAccessor: module '{}' base not found.", moduleName); + return false; + } + spdlog::trace("VmmAccessor: module '{}' base=0x{:X}", moduleName, base); + outBase = base; + return true; +} + +// ------------------------------------------------------------------------- +// IsProcessAlive +// ------------------------------------------------------------------------- + +bool VmmAccessor::IsProcessAlive(uint32_t pid, + const std::string& processName) { + if (!IsInitialized()) return false; + + DWORD livePid = m_dma->get_process_id(processName); + return livePid != 0 && static_cast(livePid) == pid; +} + +// ------------------------------------------------------------------------- +// ReadRaw (private) +// ------------------------------------------------------------------------- + +bool VmmAccessor::ReadRaw(uint32_t /*pid*/, uint64_t address, + void* buf, size_t size) { + if (!buf || size == 0) return false; + std::shared_lock lk(m_accessMutex); + if (!m_process) return false; + return m_process->read(address, buf, size); +} + +// ------------------------------------------------------------------------- +// TryReadPointer +// ------------------------------------------------------------------------- + +bool VmmAccessor::TryReadPointer(uint32_t pid, uint64_t address, + uint64_t& outPointer) { + if (!MemoryValidation::IsValidUserAddress(address)) return false; + + uint64_t ptr = 0; + if (!ReadRaw(pid, address, &ptr, sizeof(ptr))) return false; + + if (!MemoryValidation::IsValidUserAddress(ptr)) return false; + + outPointer = ptr; + return true; +} + +// ------------------------------------------------------------------------- +// ScatterRead +// ------------------------------------------------------------------------- + +bool VmmAccessor::ScatterRead(uint32_t pid, std::vector& entries) { + if (entries.empty()) return false; + std::shared_lock lk(m_accessMutex); + if (!m_process) return false; + + VMMDLL_SCATTER_HANDLE hScatter = m_process->create_scatter(static_cast(pid)); + if (!hScatter) return false; + + for (auto& e : entries) { + if (e.buffer && e.size > 0 && MemoryValidation::IsValidUserAddress(e.address)) + m_process->add_read_scatter(hScatter, e.address, e.buffer, e.size); + } + + m_process->execute_scatter(hScatter, static_cast(pid)); + m_process->close_scatter(hScatter); + return true; +} + +// ------------------------------------------------------------------------- +// ReadBytes +// ------------------------------------------------------------------------- + +bool VmmAccessor::ReadBytes(uint32_t pid, + uint64_t address, + size_t count, + std::vector& outBytes) { + if (count == 0) { + outBytes.clear(); + return true; + } + outBytes.resize(count); + if (!ReadRaw(pid, address, outBytes.data(), count)) { + outBytes.clear(); + return false; + } + return true; +} + +// ------------------------------------------------------------------------- +// DecodeArmaBytes (static, private) +// ------------------------------------------------------------------------- + +std::string VmmAccessor::DecodeArmaBytes(const std::vector& bytes) { + if (bytes.empty()) return {}; + + // Determine effective length (stop at first null terminator). + size_t len = 0; + while (len < bytes.size() && bytes[len] != 0) ++len; + if (len == 0) return {}; + + // --- Attempt 1: validate as UTF-8 --- + auto isValidUtf8 = [](const uint8_t* data, size_t n) -> bool { + size_t i = 0; + while (i < n) { + uint8_t b = data[i]; + int seqLen = 0; + if ((b & 0x80) == 0x00) seqLen = 1; + else if ((b & 0xE0) == 0xC0) seqLen = 2; + else if ((b & 0xF0) == 0xE0) seqLen = 3; + else if ((b & 0xF8) == 0xF0) seqLen = 4; + else return false; + if (i + seqLen > n) return false; + for (int j = 1; j < seqLen; ++j) { + if ((data[i + j] & 0xC0) != 0x80) return false; + } + i += seqLen; + } + return true; + }; + + if (isValidUtf8(bytes.data(), len)) { + return std::string(reinterpret_cast(bytes.data()), len); + } + + // --- Attempt 2: treat as Windows CP1251, convert to UTF-8 --- + int wideLen = MultiByteToWideChar(1251 /*CP1251*/, 0, + reinterpret_cast(bytes.data()), + static_cast(len), + nullptr, 0); + if (wideLen <= 0) { + return std::string(reinterpret_cast(bytes.data()), len); + } + + std::wstring wide(static_cast(wideLen), L'\0'); + MultiByteToWideChar(1251, 0, + reinterpret_cast(bytes.data()), + static_cast(len), + wide.data(), wideLen); + + int utf8Len = WideCharToMultiByte(CP_UTF8, 0, + wide.data(), wideLen, + nullptr, 0, + nullptr, nullptr); + if (utf8Len <= 0) { + return std::string(reinterpret_cast(bytes.data()), len); + } + + std::string utf8(static_cast(utf8Len), '\0'); + WideCharToMultiByte(CP_UTF8, 0, + wide.data(), wideLen, + utf8.data(), utf8Len, + nullptr, nullptr); + return utf8; +} + +// ------------------------------------------------------------------------- +// ReadArmaString +// ------------------------------------------------------------------------- + +std::string VmmAccessor::ReadArmaString(uint32_t pid, uint64_t address, + size_t maxLength) { + if (!MemoryValidation::IsValidUserAddress(address)) return {}; + + // Read the 16-bit length field at address + 0x8 + uint16_t strLen = 0; + if (!ReadRaw(pid, address + 0x8, &strLen, sizeof(strLen))) return {}; + if (strLen == 0) return {}; + + size_t readLen = static_cast(strLen); + if (readLen > maxLength) readLen = maxLength; + + // Read the character data at address + 0x10 + std::vector buf(readLen); + if (!ReadRaw(pid, address + 0x10, buf.data(), readLen)) return {}; + + return DecodeArmaBytes(buf); +} + +// ------------------------------------------------------------------------- +// ReadCString +// ------------------------------------------------------------------------- + +std::string VmmAccessor::ReadCString(uint32_t pid, uint64_t address, + size_t maxLength) { + if (!MemoryValidation::IsValidUserAddress(address)) return {}; + if (maxLength == 0 || !IsAttached()) return {}; + + std::vector buf(maxLength); + if (!ReadRaw(pid, address, buf.data(), maxLength)) { + // Partial reads: try progressively smaller chunks down to 1 page. + // If even that fails, give up. + if (maxLength <= 64 || !ReadRaw(pid, address, buf.data(), 64)) { + return {}; + } + buf.resize(64); + } + + // Truncate at null terminator if present. + auto nullPos = std::find(buf.begin(), buf.end(), uint8_t{0}); + buf.erase(nullPos, buf.end()); + if (buf.empty()) return {}; + + return DecodeArmaBytes(buf); +} diff --git a/src/Memory/VmmAccessor.h b/src/Memory/VmmAccessor.h new file mode 100644 index 0000000..d2a6fb8 --- /dev/null +++ b/src/Memory/VmmAccessor.h @@ -0,0 +1,152 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include // memcpy + +// Windows must come before vmmdll / VolkDMA headers. +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include + +// VolkDMA wrapper classes (DMA handles FPGA init, Process handles per-process reads) +#include +#include + +#include "MemoryValidation.h" + +// ------------------------------------------------------------------------- +// VmmAccessor +// Thin wrapper around VolkDMA's DMA + Process classes providing the same +// read-oriented API used throughout this project. +// ------------------------------------------------------------------------- + +class VmmAccessor { +public: + VmmAccessor() = default; + ~VmmAccessor() = default; + + // Non-copyable, movable + VmmAccessor(const VmmAccessor&) = delete; + VmmAccessor& operator=(const VmmAccessor&) = delete; + VmmAccessor(VmmAccessor&&) = default; + VmmAccessor& operator=(VmmAccessor&&) = default; + + // ------------------------------------------------------------------ + // Lifecycle + // ------------------------------------------------------------------ + + /// Initialise the DMA handle. + /// @param useMemoryMap When true, VolkDMA auto-generates / loads memory_map.txt + /// for faster physical-memory resolution (recommended). + bool Initialize(bool useMemoryMap = true); + + /// Find a running process by name, store its PID, and create the + /// internal Process object. Must be called before any reads. + bool TryFindProcess(const std::string& processName, uint32_t& outPid); + + /// Get the base virtual address of a named module inside the attached process. + bool TryGetModuleBase(uint32_t pid, + const std::string& moduleName, + uint64_t& outBase); + + /// Returns true when the process is still alive (re-queries the DMA layer). + bool IsProcessAlive(uint32_t pid, const std::string& processName); + + /// Force a full refresh of VMMDLL's internal caches. + void ForceRefresh(); + + // ------------------------------------------------------------------ + // Memory reads + // ------------------------------------------------------------------ + + /// Read a 64-bit pointer. Validates both the source and result address. + bool TryReadPointer(uint32_t pid, uint64_t address, uint64_t& outPointer); + + /// Read a plain-old-data value of type T. + template + bool TryReadValue(uint32_t pid, uint64_t address, T& outValue); + + /// Read raw bytes into a caller-supplied vector. + bool ReadBytes(uint32_t pid, + uint64_t address, + size_t count, + std::vector& outBytes); + + // ------------------------------------------------------------------ + // Scatter reads — batch multiple reads into one DMA round-trip. + // ------------------------------------------------------------------ + + struct ScatterEntry { + uint64_t address; + void* buffer; + size_t size; + }; + + /// Queue all entries and execute them in a single DMA transaction. + /// Returns false only if the scatter handle itself couldn't be created. + /// Individual failed reads zero-fill their buffer (VMMDLL guarantee). + bool ScatterRead(uint32_t pid, std::vector& entries); + + /// Read an Arma/DayZ engine string (uint16_t length at addr+0x8, + /// data at addr+0x10). Falls back from UTF-8 to CP1251 if needed. + std::string ReadArmaString(uint32_t pid, uint64_t address, + size_t maxLength = 256); + + /// Read a null-terminated C string. + std::string ReadCString(uint32_t pid, uint64_t address, + size_t maxLength = 256); + + // ------------------------------------------------------------------ + // State + // ------------------------------------------------------------------ + + [[nodiscard]] bool IsInitialized() const noexcept { + return m_dma && m_dma->is_initialized(); + } + + [[nodiscard]] bool IsAttached() const noexcept { + return m_process != nullptr; + } + + +private: + std::unique_ptr m_dma; + std::unique_ptr m_process; + uint32_t m_attachedPid = 0; + + // Guards m_process / m_dma lifetime against concurrent reads. + // Reads (ReadRaw / ScatterRead) take a SHARED lock so they run in parallel; + // Initialize / TryFindProcess take a UNIQUE lock while swapping the handle. + // This lets the dedicated camera thread read concurrently with the main + // runtime thread without a use-after-free when a reconnect re-creates Process. + mutable std::shared_mutex m_accessMutex; + + /// Low-level read via VolkDMA Process. Returns false on read error. + bool ReadRaw(uint32_t pid, uint64_t address, void* buf, size_t size); + + /// Attempt to decode a byte buffer as UTF-8; if that fails, + /// re-interpret as Windows CP1251 and convert to UTF-8. + static std::string DecodeArmaBytes(const std::vector& bytes); +}; + +// ------------------------------------------------------------------------- +// Template implementation (must live in the header) +// ------------------------------------------------------------------------- + +template +bool VmmAccessor::TryReadValue(uint32_t pid, uint64_t address, T& outValue) { + static_assert(std::is_trivially_copyable_v, + "TryReadValue requires a trivially-copyable type"); + T tmp{}; + if (!ReadRaw(pid, address, &tmp, sizeof(T))) return false; + outValue = tmp; + return true; +} diff --git a/src/Offsets.h b/src/Offsets.h new file mode 100644 index 0000000..b811c23 --- /dev/null +++ b/src/Offsets.h @@ -0,0 +1,166 @@ +#pragma once +#include + +// ============================================================================ +// Offsets.h — DayZ Enfusion engine memory offsets +// +// Verification log (update whenever you confirm offsets against a live client): +// +// DayZ 1.29 | 2026-06-13 +// Base::* — SigScanner-scanned; patterns in SigScanner.cpp +// World::* — live-debugged via Spectre stable +// Common::*, Network::* — live-debugged; cross-checked with C# port +// Player::*, Inventory::* — live-debugged; SigScanner covers IsDead/Inventory +// Skeleton::* — animClass/matrixClass probed at runtime (see cands) +// +// When the game patches, update the SigScanner patterns first (they cover the +// most volatile offsets). Hard-coded offsets that the scanner does NOT cover +// are marked [manual] and must be verified by hand after each patch. +// ============================================================================ + +namespace Offsets { + + // [manual] Module-relative RVAs — also covered by SigScanner (World, NetworkManager) + namespace Base { + constexpr uint64_t World = 0x4264028; // v1.29 + constexpr uint64_t NetworkManager = 0x100FC10; // v1.29 + constexpr uint64_t Tick = 0xFF4998; // v1.29 [manual] + constexpr uint64_t Fov = 0x100A7D8; // v1.29 [manual] + } + + // World struct member offsets — also covered by SigScanner + namespace World { + constexpr uint64_t NearEntityList = 0xF48; // v1.29 + constexpr uint64_t NearTableSize = 0xF50; // v1.29 + constexpr uint64_t FarEntityList = 0x1090; // v1.29 + constexpr uint64_t FarTableSize = 0x1098; // v1.29 + constexpr uint64_t SlowEntityList = 0x2010; // v1.29 [manual] + constexpr uint64_t SlowTableAllocCount= 0x2018; // v1.29 [manual] + constexpr uint64_t SlowTableValidCount= 0x1FA0; // v1.29 [manual] + constexpr uint64_t LocalPlayer = 0x2960; // v1.29 [manual] + constexpr uint64_t ItemList = 0x2060; // v1.29 + constexpr uint64_t ItemTableAllocCount= 0x2068; // v1.29 + constexpr uint64_t ItemTableValidCount= 0x2070; // v1.29 + constexpr uint64_t BulletTable = 0xE00; // v1.29 + constexpr uint64_t BulletCount = 0xE08; // v1.29 + constexpr uint64_t Camera = 0x1B8; // v1.29 [manual] + } + + // [manual] Common entity struct offsets — VisualState also covered by SigScanner + namespace Common { + constexpr uint64_t Item = 0x18; // v1.29 + constexpr uint64_t Path = 0xB0; // v1.29 + constexpr uint64_t Size = 0x8; // v1.29 + constexpr uint64_t Type = 0x180; // v1.29 + constexpr uint64_t VisualState = 0x1C8; // v1.29 + constexpr uint64_t FutureVisualState = 0x120; // v1.29 [manual] + constexpr uint64_t DirectionX = 0x20; // v1.29 [manual] + constexpr uint64_t DirectionY = 0x28; // v1.29 [manual] + constexpr uint64_t Position = 0x2C; // v1.29 [manual] + } + + // [manual] Network manager struct offsets + namespace Network { + constexpr uint64_t ManagerNetworkClient = 0x50; // v1.29 + constexpr uint64_t EntityNetworkId = 0x6DC; // v1.29 + constexpr uint64_t ClientScoreboard = 0x18; // v1.29 + constexpr uint64_t ClientPlayerCount = 0x24; // v1.29 + constexpr uint64_t ClientPlayerIdentitySize = 0x170; // v1.29 + constexpr uint64_t PlayerIdentityNetworkId = 0x30; // v1.29 + constexpr uint64_t PlayerIdentitySteamId = 0xA0; // v1.29 + constexpr uint64_t PlayerIdentityPlayerName = 0xF8; // v1.29 + constexpr uint64_t PlayerCount = 0x24; // v1.29 + constexpr uint64_t ServerName = 0x308; // v1.29 [manual] + constexpr uint64_t GameVersion = 0x350; // v1.29 [manual] + constexpr uint64_t MapName = 0x38; // v1.29 [manual] + constexpr uint64_t ThirdPerson = 0x9C; // v1.29 [manual] + constexpr uint64_t Crosshair = 0xA0; // v1.29 [manual] + } + + // [manual] Entity type object offsets + namespace EntityType { + constexpr uint64_t ModelName = 0xB0; // v1.29 + constexpr uint64_t ConfigName = 0x98; // v1.29 + constexpr uint64_t TypeName = 0xD0; // v1.29 + constexpr uint64_t CleanName = 0x518; // v1.29 + } + + // [manual] Camera struct offsets (relative to World::Camera pointer target) + namespace Camera { + constexpr uint64_t InvertedViewRight = 0x8; // v1.29 + constexpr uint64_t InvertedViewUp = 0x14; // v1.29 + constexpr uint64_t InvertedViewForward = 0x20; // v1.29 + constexpr uint64_t Translation = 0x2C; // v1.29 + constexpr uint64_t ViewPortSize = 0x58; // v1.29 + constexpr uint64_t ProjectionD1 = 0xD0; // v1.29 + constexpr uint64_t ProjectionD2 = 0xDC; // v1.29 + } + + namespace CameraFov { + // Camera FOV offsets (derived from Base::Fov) + // Populated as needed; base offset is Base::Fov + } + + // Player entity struct offsets — IsDead/Inventory also covered by SigScanner + namespace Player { + constexpr uint64_t Skeleton = 0x7E0; // v1.29 [manual]; alt: 0x810 (external source) + constexpr uint64_t InputController = 0x7E8; // v1.29 [manual] + constexpr uint64_t IsDead = 0xE2; // v1.29 + constexpr uint64_t EntityDead = 0x15D; // v1.29 [manual] + // TODO: verify health offset for current game version. + // Set to 0 to disable health reading; set to the correct entity offset + // for a float in the range 0..100 once confirmed via RE. + constexpr uint64_t Health = 0x0; + } + + namespace Infected { + // Infected share common entity offsets; extend here as needed + // Skeleton pointer: see Skeleton::ZombieCand + } + + // Inventory struct offsets — Base/Hands also covered by SigScanner + namespace Inventory { + constexpr uint64_t Base = 0x650; // v1.29 + constexpr uint64_t ItemQuality = 0x194; // v1.29 [manual] + constexpr uint64_t Hands = 0x1B0; // v1.29 + constexpr uint64_t HandItemValid = 0x1CC; // v1.29 [manual] + constexpr uint64_t WornClothes = 0x150; // v1.29 [manual] — ptr to weared-clothes grid object + constexpr uint64_t PlayerCargoGrid = 0x150; // alias kept for compatibility + constexpr uint64_t CargoGridCount = 0xC; // v1.29 [manual] — uint32 count at grid+0xC + constexpr uint64_t ItemPtr = 0x8; // v1.29 [manual] — ptr to items array at grid+0x8 + constexpr uint64_t ItemSize = 0x10; // v1.29 [manual] — stride per item slot (16 bytes) + } + + namespace SlowTable { + constexpr uint64_t EntrySize = 0x18; // v1.29 + constexpr uint64_t EntryPointerOffset = 0x8; // v1.29 + } + + namespace Skeleton { + // Entity → skeleton pointer offset candidates (probed at runtime, first match wins). + // v1.29 confirmed: player=0x7E0, zombie=0x670. + // External source (unknown version): player=0x810, zombie=0x680. + constexpr uint64_t PlayerCand[2] = { 0x7E0, 0x810 }; + constexpr uint64_t ZombieCand[2] = { 0x670, 0x680 }; + + // Convenience aliases (first candidate = last-known-good). + constexpr uint64_t PlayerOffset = PlayerCand[0]; + constexpr uint64_t ZombieOffset = ZombieCand[0]; + + // Probed candidates: skeleton → animClass pointer (tried in order). + // 0x118 confirmed v1.29 (Spectre stable); 0xA8 confirmed by external source. + constexpr uint64_t AnimCand[4] = { 0x118, 0xA8, 0x98, 0xB0 }; + + // Probed candidates: animClass → matrixArray pointer (tried in order). + // 0xBE8 confirmed v1.29 (Spectre stable); 0xBF0 confirmed by external source. + constexpr uint64_t MatrixCand[5] = { 0xBE8, 0xBF0, 0xBD8, 0xB40, 0xB30 }; + + // Each bone entry is 48 bytes; translation (x,y,z) starts at byte offset 0x54 + // from the matrixArray base (effective: matrixArray + 0x54 + boneIndex*0x30). + // This gives boneIndex N the same world position as their boneIndex N+1 + // (the +0x54 vs +0x24 difference is exactly one stride). + constexpr uint32_t BoneStride = 48; // v1.29 + constexpr uint32_t BoneTranslationOffset = 0x54; // v1.29 + } + +} // namespace Offsets diff --git a/src/Overlay/GameOverlay.cpp b/src/Overlay/GameOverlay.cpp new file mode 100644 index 0000000..c670220 --- /dev/null +++ b/src/Overlay/GameOverlay.cpp @@ -0,0 +1,850 @@ +#include "GameOverlay.h" + +#include +#include +#include +#include +#include +#include +#include + +#include "Readers/EntityTypeCache.h" + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include +#include +#include +#include +#pragma comment(lib, "iphlpapi.lib") + +#include +#include + +#include "MenuBridge.h" + +// Per-frame bridge pointer consumed by the vendored Lumin menu (gui.cpp). +MenuBridge* g_menu = nullptr; + +// ------------------------------------------------------------------------- +// Bone interpolation / extrapolation helpers +// ------------------------------------------------------------------------- + +int64_t GameOverlay::NowMs() { + using namespace std::chrono; + return duration_cast(steady_clock::now().time_since_epoch()).count(); +} + +// Linearly interpolate (or extrapolate when t > 1) between two bone sets. +static SkeletonBones LerpBones(const SkeletonBones& a, const SkeletonBones& b, float t) { + auto lv = [t](const Vector3& p, const Vector3& q) -> Vector3 { + return { p.x + t*(q.x-p.x), p.y + t*(q.y-p.y), p.z + t*(q.z-p.z) }; + }; + SkeletonBones out; + out.valid = b.valid; + out.neck = lv(a.neck, b.neck); + out.head = lv(a.head, b.head); + out.spine = lv(a.spine, b.spine); + out.pelvis = lv(a.pelvis, b.pelvis); + out.rightShoulder = lv(a.rightShoulder, b.rightShoulder); + out.rightElbow = lv(a.rightElbow, b.rightElbow); + out.rightHand = lv(a.rightHand, b.rightHand); + out.leftShoulder = lv(a.leftShoulder, b.leftShoulder); + out.leftElbow = lv(a.leftElbow, b.leftElbow); + out.leftHand = lv(a.leftHand, b.leftHand); + out.rightHip = lv(a.rightHip, b.rightHip); + out.rightKnee = lv(a.rightKnee, b.rightKnee); + out.rightAnkle = lv(a.rightAnkle, b.rightAnkle); + out.leftHip = lv(a.leftHip, b.leftHip); + out.leftKnee = lv(a.leftKnee, b.leftKnee); + out.leftAnkle = lv(a.leftAnkle, b.leftAnkle); + return out; +} + +// Update the history when a new DMA read is detected (head bone moved). +static void UpdateBoneHistory(GameOverlay::BoneHistory& h, + const SkeletonBones& bones, int64_t nowMs) +{ + if (!h.initialized) { + h.prev = h.curr = bones; + h.prevMs = h.currMs = nowMs; + h.initialized = true; + return; + } + const Vector3& o = h.curr.head; + const Vector3& n = bones.head; + float dx = o.x-n.x, dy = o.y-n.y, dz = o.z-n.z; + float dist2 = dx*dx + dy*dy + dz*dz; + // Reject implausible jumps: > 3 m in one update cycle can't happen at + // any in-game speed — it means the scatter read returned garbage. + // Keeping the old history prevents one stale read from corrupting the + // extrapolation state; the DMA-side eviction (cache->valid=false) will + // fix the pointer within the next boneRefreshMs window. + if (dist2 > 9.0f) return; + if (dist2 > 1e-8f) { + h.prev = h.curr; + h.prevMs = h.currMs; + h.curr = bones; + h.currMs = nowMs; + } +} + +// Return bones extrapolated to nowMs using the recorded velocity. +// Alpha is clamped to 1.5 update intervals to limit overshoot on direction changes. +static SkeletonBones GetSmoothedBones(const GameOverlay::BoneHistory& h, int64_t nowMs) { + if (!h.initialized) return h.curr; + int64_t dt = h.currMs - h.prevMs; + if (dt <= 0) return h.curr; + float alpha = static_cast(nowMs - h.prevMs) / static_cast(dt); + alpha = std::min(alpha, 1.5f); + return LerpBones(h.prev, h.curr, alpha); +} + +// ------------------------------------------------------------------------- +// Helpers +// ------------------------------------------------------------------------- + +// ------------------------------------------------------------------------- +// SetWebRadarPort — resolve LAN IPs and build display URLs +// ------------------------------------------------------------------------- + +void GameOverlay::SetWebRadarPort(int port) { + m_webPort = port; + m_webUrls.clear(); + m_webUrls.push_back(std::format("http://localhost:{}", port)); + + // Enumerate all unicast IPv4 addresses. + ULONG bufLen = 15000; + std::vector buf(bufLen); + auto* table = reinterpret_cast(buf.data()); + DWORD ret = GetAdaptersAddresses(AF_INET, + GAA_FLAG_SKIP_ANYCAST | GAA_FLAG_SKIP_MULTICAST | GAA_FLAG_SKIP_DNS_SERVER, + nullptr, table, &bufLen); + if (ret == ERROR_BUFFER_OVERFLOW) { + buf.resize(bufLen); + table = reinterpret_cast(buf.data()); + ret = GetAdaptersAddresses(AF_INET, + GAA_FLAG_SKIP_ANYCAST | GAA_FLAG_SKIP_MULTICAST | GAA_FLAG_SKIP_DNS_SERVER, + nullptr, table, &bufLen); + } + + if (ret == NO_ERROR) { + for (auto* a = table; a; a = a->Next) { + if (a->OperStatus != IfOperStatusUp) continue; + for (auto* ua = a->FirstUnicastAddress; ua; ua = ua->Next) { + auto* sin = reinterpret_cast(ua->Address.lpSockaddr); + char ipStr[INET_ADDRSTRLEN] = {}; + inet_ntop(AF_INET, &sin->sin_addr, ipStr, sizeof(ipStr)); + std::string ip(ipStr); + if (ip == "127.0.0.1") continue; + m_webUrls.push_back(std::format("http://{}:{}", ip, port)); + } + } + } +} + +float GameOverlay::Dist(const Vector3& a, const Vector3& b) { + float dx = a.x - b.x, dy = a.y - b.y, dz = a.z - b.z; + return std::sqrtf(dx*dx + dy*dy + dz*dz); +} + +// Returns true if the world position is in front of the camera (depth >= 0.65). +// Uses the same depth calculation as WorldToScreen so the threshold is consistent. +// Call this before WorldToScreen to skip the full projection for behind-camera entities. +static bool IsFacingCamera(const CameraData& cam, const Vector3& pos) { + float tx = pos.x - cam.translation.x; + float ty = pos.y - cam.translation.y; + float tz = pos.z - cam.translation.z; + float depth = tx*cam.invertedViewForward.x + + ty*cam.invertedViewForward.y + + tz*cam.invertedViewForward.z; + return depth >= 0.65f; +} + +bool GameOverlay::WorldToScreen(const CameraData& cam, + const Vector3& world, + float& sx, float& sy, + float w, float h) +{ + float tx = world.x - cam.translation.x; + float ty = world.y - cam.translation.y; + float tz = world.z - cam.translation.z; + + float x = tx*cam.invertedViewRight.x + ty*cam.invertedViewRight.y + tz*cam.invertedViewRight.z; + float y = tx*cam.invertedViewUp.x + ty*cam.invertedViewUp.y + tz*cam.invertedViewUp.z; + float z = tx*cam.invertedViewForward.x + ty*cam.invertedViewForward.y + tz*cam.invertedViewForward.z; + + if (z < 0.65f) return false; + if (cam.projectionD1x == 0.0f || cam.projectionD2y == 0.0f) return false; + + float nx = (x / cam.projectionD1x) / z; + float ny = (y / cam.projectionD2y) / z; + + sx = roundf((w * 0.5f) + nx * (w * 0.5f)); + sy = roundf((h * 0.5f) - ny * (h * 0.5f)); + + return sx >= 0.0f && sx <= w && sy >= 0.0f && sy <= h; +} + +// Viewport-aware projection. +// For stretch-to-fill (or when no render res is configured) the viewport +// equals the full overlay — identical to calling WorldToScreen directly. +// For maintain-aspect-ratio with render != display, computes the inset +// viewport (letterbox top/bottom or pillarbox left/right) and offsets the +// result so entities land on the correct monitor pixels. +bool GameOverlay::Proj(const CameraData& cam, const Vector3& worldPos, + float& sx, float& sy, + float overlayW, float overlayH) const +{ + float vx = 0.0f, vy = 0.0f, vw = overlayW, vh = overlayH; + + if (m_renderW > 0 && m_renderH > 0 && !m_stretchToFill) { + float renderAr = static_cast(m_renderW) / static_cast(m_renderH); + float displayAr = overlayW / overlayH; + + if (renderAr > displayAr + 0.01f) { + // Render is wider than display → letterbox (black bars top/bottom) + vw = overlayW; + vh = overlayW / renderAr; + vy = (overlayH - vh) * 0.5f; + } else if (displayAr > renderAr + 0.01f) { + // Display is wider than render → pillarbox (black bars left/right) + vh = overlayH; + vw = overlayH * renderAr; + vx = (overlayW - vw) * 0.5f; + } + } + // stretch-to-fill: vx=0, vy=0, vw=overlayW, vh=overlayH — no change + + if (!WorldToScreen(cam, worldPos, sx, sy, vw, vh)) return false; + sx += vx; + sy += vy; + return sx >= 0.0f && sx <= overlayW && sy >= 0.0f && sy <= overlayH; +} + +// ------------------------------------------------------------------------- +// Draw — entry point called each ImGui frame +// ------------------------------------------------------------------------- + +void GameOverlay::SyncConfig() { + m_cfg.showPlayers = m_showPlayers; + m_cfg.showAnimals = m_showAnimals; + m_cfg.showZombies = m_showZombies; + m_cfg.showItems = m_showItems; + m_cfg.showBox = m_showBox; + m_cfg.showSkeleton = m_showSkeleton; + m_cfg.showHeadDot = m_showHeadDot; + m_cfg.showCorpses = m_showCorpses; + m_cfg.showWeapon = m_showWeapon; + m_cfg.showHealthBar = m_showHealthBar; + m_cfg.showHealthNumber = m_showHealthNumber; + m_cfg.itemCategories = m_itemCategories; + m_cfg.playerMaxDist = m_playerMaxDist; + m_cfg.animalMaxDist = m_animalMaxDist; + m_cfg.zombieMaxDist = m_zombieMaxDist; + m_cfg.itemMaxDist = m_itemMaxDist; + m_cfg.renderWidth = m_renderW; + m_cfg.renderHeight = m_renderH; + m_cfg.stretchToFill = m_stretchToFill; +} + +void GameOverlay::Draw(float w, float h) { + // Refresh snapshot once per frame — shared_ptr copy is 8 bytes, no vector alloc + m_snapshot = m_service.GetLatestUpdate(); + if (!m_snapshot) return; + const RuntimeUpdate& u = *m_snapshot; + + // Record frame time once; used by all bone-smoothing calls this frame. + m_frameTimeMs = NowMs(); + + // Feed new DMA bone reads into the per-entity history so extrapolation + // always has the two most recent samples to work from. + for (const auto& p : u.players) + if (p.skeleton.valid) + UpdateBoneHistory(m_playerBoneHistory[p.address], p.skeleton, m_frameTimeMs); + for (const auto& z : u.zombies) + if (z.skeleton.valid) + UpdateBoneHistory(m_zombieBoneHistory[z.address], z.skeleton, m_frameTimeMs); + + // Prune bone histories for entities no longer present in the snapshot. + // Prevents ghost extrapolation when a player logs out or leaves the scan zone: + // their history is cleared immediately so stale bones can't persist. + { + std::unordered_set livePlayers, liveZombies; + livePlayers.reserve(u.players.size()); + liveZombies.reserve(u.zombies.size()); + for (const auto& p : u.players) livePlayers.insert(p.address); + for (const auto& z : u.zombies) liveZombies.insert(z.address); + + for (auto it = m_playerBoneHistory.begin(); it != m_playerBoneHistory.end(); ) + it = livePlayers.count(it->first) ? std::next(it) : m_playerBoneHistory.erase(it); + for (auto it = m_zombieBoneHistory.begin(); it != m_zombieBoneHistory.end(); ) + it = liveZombies.count(it->first) ? std::next(it) : m_zombieBoneHistory.erase(it); + } + + // INSERT key toggles the menu + if (GetAsyncKeyState(VK_INSERT) & 1) { + m_menuOpen = !m_menuOpen; + m_menuAlpha = m_menuOpen ? 1.0f : 0.0f; + if (!m_menuOpen) { + // Persist settings back to config on close. + SyncConfig(); + m_cfg.Save(m_cfgPath); + } + } + + // ---- Lumin menu (vendored under external/lumin; driven via MenuBridge) ---- + if (m_menuOpen) { + static MenuBridge bridge; + + bridge.showPlayers = &m_showPlayers; + bridge.showAnimals = &m_showAnimals; + bridge.showZombies = &m_showZombies; + bridge.showItems = &m_showItems; + bridge.showBox = &m_showBox; + bridge.showSkeleton = &m_showSkeleton; + bridge.showHeadDot = &m_showHeadDot; + bridge.showWeapon = &m_showWeapon; + bridge.showHealthBar = &m_showHealthBar; + bridge.showHealthNumber = &m_showHealthNumber; + bridge.showCorpses = &m_showCorpses; + bridge.debugSkeleton = &m_debugSkeleton; + + bridge.playerMaxDist = &m_playerMaxDist; + bridge.animalMaxDist = &m_animalMaxDist; + bridge.zombieMaxDist = &m_zombieMaxDist; + bridge.itemMaxDist = &m_itemMaxDist; + + bridge.itemCategories = &m_itemCategories; + + bridge.pendingW = &m_pendingW; + bridge.pendingH = &m_pendingH; + bridge.pendingRW = &m_pendingRW; + bridge.pendingRH = &m_pendingRH; + bridge.stretchToFill = &m_stretchToFill; + + // Read-only info panels. + bridge.connected = u.areBaseObjectsReady; + bridge.serverName = u.serverName.value_or(""); + bridge.mapName = u.serverMapName.value_or(""); + bridge.status = u.status; + if (u.localPlayerPosition.has_value()) { + bridge.hasPos = true; + bridge.px = u.localPlayerPosition->x; + bridge.py = u.localPlayerPosition->y; + bridge.pz = u.localPlayerPosition->z; + } else { + bridge.hasPos = false; + } + bridge.nPlayers = u.players.size(); + bridge.nAnimals = u.animals.size(); + bridge.nZombies = u.zombies.size(); + bridge.nVehicles = u.carsAndBoats.size(); + bridge.nItems = u.items.size(); + bridge.nBullets = u.bullets.size(); + + bridge.webPort = m_webPort; + bridge.webUrls = m_webUrls; + + bridge.onSaveConfig = [this]() { + SyncConfig(); + m_cfg.Save(m_cfgPath); + }; + bridge.onExit = [this]() { + SyncConfig(); + m_cfg.Save(m_cfgPath); + if (m_exitCallback) m_exitCallback(); + }; + bridge.onApplyDisplayRes = [this]() { + m_cfg.overlayWidth = m_pendingW; + m_cfg.overlayHeight = m_pendingH; + m_cfg.Save(m_cfgPath); + if (m_resizeCallback) m_resizeCallback(m_pendingW, m_pendingH); + }; + bridge.onApplyRenderRes = [this]() { + m_renderW = m_pendingRW; + m_renderH = m_pendingRH; + m_cfg.renderWidth = m_pendingRW; + m_cfg.renderHeight = m_pendingRH; + m_cfg.stretchToFill = m_stretchToFill; + m_cfg.Save(m_cfgPath); + }; + + g_menu = &bridge; + RenderLuminMenu(); + } + + // ---- ESP draw lists — camera read directly from service every frame ---- + m_service.GetLatestCamera(m_liveCamera); + DrawESP(w, h, u, m_liveCamera); +} + +void GameOverlay::DrawESP(float w, float h, const RuntimeUpdate& u, const CameraData& cam) { + if (!u.areBaseObjectsReady || !cam.valid) return; + + ImDrawList* dl = ImGui::GetBackgroundDrawList(); + if (m_showPlayers) DrawPlayers(dl, u, cam, w, h); + if (m_showAnimals) DrawAnimals(dl, u, cam, w, h); + if (m_showZombies) DrawZombies(dl, u, cam, w, h); + if (m_showItems) DrawItems (dl, u, cam, w, h); + if (m_debugSkeleton) DrawSkeletonDebug(dl, u, cam, w, h); +} + +// ------------------------------------------------------------------------- +// DrawSkeleton — render 11 bone segments for one entity +// ------------------------------------------------------------------------- + +void GameOverlay::DrawSkeleton(ImDrawList* dl, const SkeletonBones& bones, + const CameraData& cam, + float w, float h, unsigned int color, + bool isZombie) const +{ + // Project each unique bone ONCE, then draw segments from cached screen coords. + // Old approach called WorldToScreen twice per segment; shared bones (neck, spine) + // were projected 3-4 times each. 16 projections replaces 28-30. + enum : int { + B_Neck=0, B_Head, B_Spine, B_Pelvis, + B_RShoulder, B_RElbow, B_RHand, + B_LShoulder, B_LElbow, B_LHand, + B_RHip, B_RKnee, B_RAnkle, + B_LHip, B_LKnee, B_LAnkle, + B_COUNT + }; + + const Vector3* const kWorld[B_COUNT] = { + &bones.neck, &bones.head, &bones.spine, &bones.pelvis, + &bones.rightShoulder, &bones.rightElbow, &bones.rightHand, + &bones.leftShoulder, &bones.leftElbow, &bones.leftHand, + &bones.rightHip, &bones.rightKnee, &bones.rightAnkle, + &bones.leftHip, &bones.leftKnee, &bones.leftAnkle, + }; + + struct SP { float x, y; bool ok; } scr[B_COUNT]; + for (int i = 0; i < B_COUNT; ++i) + scr[i].ok = Proj(cam, *kWorld[i], scr[i].x, scr[i].y, w, h); + + struct Seg { int8_t a, b; }; + static const Seg kPlayerSegs[14] = { + {B_Neck,B_Head}, + {B_Neck,B_RShoulder},{B_RShoulder,B_RElbow},{B_RElbow,B_RHand}, + {B_Neck,B_LShoulder},{B_LShoulder,B_LElbow},{B_LElbow,B_LHand}, + {B_Neck,B_Spine}, + {B_Spine,B_RHip},{B_RHip,B_RKnee},{B_RKnee,B_RAnkle}, + {B_Spine,B_LHip},{B_LHip,B_LKnee},{B_LKnee,B_LAnkle}, + }; + static const Seg kZombieSegs[15] = { + {B_Spine,B_Neck},{B_Neck,B_Head}, + {B_Spine,B_LShoulder},{B_LShoulder,B_LElbow},{B_LElbow,B_LHand}, + {B_Spine,B_RShoulder},{B_RShoulder,B_RElbow},{B_RElbow,B_RHand}, + {B_Spine,B_Pelvis}, + {B_Pelvis,B_RHip},{B_RHip,B_RKnee},{B_RKnee,B_RAnkle}, + {B_Pelvis,B_LHip},{B_LHip,B_LKnee},{B_LKnee,B_LAnkle}, + }; + + const Seg* segs = isZombie ? kZombieSegs : kPlayerSegs; + const int count = isZombie ? 15 : 14; + + for (int i = 0; i < count; ++i) { + const SP& a = scr[segs[i].a]; + const SP& b = scr[segs[i].b]; + if (!a.ok || !b.ok) continue; + dl->AddLine(ImVec2(a.x, a.y), ImVec2(b.x, b.y), color, 1.5f); + } +} + +// ------------------------------------------------------------------------- +// DrawSkeletonDebug — named bone dots for the closest player +// ------------------------------------------------------------------------- + +void GameOverlay::DrawSkeletonDebug(ImDrawList* dl, const RuntimeUpdate& u, + const CameraData& cam, float w, float h) const +{ + // Find the closest player that has skeleton data (valid or not). + const DayZPlayerEntry* target = nullptr; + float bestDist = 1e9f; + for (const auto& p : u.players) { + if (!p.position.has_value()) continue; + float d = Dist(cam.translation, *p.position); + if (d < 2.0f || d > m_playerMaxDist) continue; + if (d < bestDist) { bestDist = d; target = &p; } + } + + if (!target) return; + + // Top-left status block. + const float pad = 10.0f; + const float lineH = 16.0f; + float tx = pad, ty = pad; + + auto txt = [&](ImU32 col, std::string s) { + dl->AddText(ImVec2(tx, ty), col, s.c_str()); + ty += lineH; + }; + + const char* name = target->nickname.empty() ? "Player" : target->nickname.c_str(); + txt(IM_COL32(255,255,255,220), std::format("SkelDebug: {} | dist={:.1f}m", name, bestDist)); + txt(IM_COL32(200,200,200,180), std::format("skeleton.valid = {}", target->skeleton.valid ? "true" : "false")); + + if (!target->skeleton.valid) { + txt(IM_COL32(255,100,100,200), "No valid skeleton data -- check offsets"); + return; + } + + // Named bones with distinct colors — mirrors Spectre stable player bone layout. + struct BoneDef { const char* name; const Vector3& pos; ImU32 color; }; + const SkeletonBones& sk = target->skeleton; + const BoneDef bones[] = { + { "neck", sk.neck, IM_COL32(255,100, 0,255) }, + { "head", sk.head, IM_COL32(255, 60, 60,255) }, + { "spine", sk.spine, IM_COL32(255,165, 0,255) }, + { "rShoulder", sk.rightShoulder, IM_COL32( 80,255,180,255) }, + { "rElbow", sk.rightElbow, IM_COL32( 50,220,140,255) }, + { "rHand", sk.rightHand, IM_COL32( 30,200,120,255) }, + { "lShoulder", sk.leftShoulder, IM_COL32( 80,200,255,255) }, + { "lElbow", sk.leftElbow, IM_COL32( 50,160,230,255) }, + { "lHand", sk.leftHand, IM_COL32( 30,120,255,255) }, + { "rHip", sk.rightHip, IM_COL32(255,255, 0,255) }, + { "rKnee", sk.rightKnee, IM_COL32(220,220, 0,255) }, + { "rAnkle", sk.rightAnkle, IM_COL32(180,180, 0,255) }, + { "lHip", sk.leftHip, IM_COL32(200,100,255,255) }, + { "lKnee", sk.leftKnee, IM_COL32(170, 80,230,255) }, + { "lAnkle", sk.leftAnkle, IM_COL32(140, 60,200,255) }, + }; + + int projected = 0; + for (const auto& b : bones) { + float sx{}, sy{}; + bool onScreen = Proj(cam, b.pos, sx, sy, w, h); + + txt(b.color, std::format(" {} ({:.1f},{:.1f},{:.1f}) {}", + b.name, b.pos.x, b.pos.y, b.pos.z, + onScreen ? "" : "[off]")); + + if (!onScreen) continue; + ++projected; + + dl->AddCircleFilled(ImVec2(sx, sy), 4.0f, b.color); + dl->AddCircle(ImVec2(sx, sy), 4.0f, IM_COL32(0,0,0,200), 0, 1.5f); + dl->AddText(ImVec2(sx + 7.0f, sy - 6.0f), b.color, b.name); + } + + txt(IM_COL32(180,255,180,200), std::format(" {}/17 bones on screen", projected)); +} + +// ------------------------------------------------------------------------- +// Players — red bounding box + name + held item + distance +// ------------------------------------------------------------------------- + +void GameOverlay::DrawPlayers(ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h) { + + for (const auto& p : u.players) { + if (p.isDead && !m_showCorpses) continue; + if (!p.position.has_value()) continue; + + // Skip the local player by address — more reliable than proximity check. + if (u.localPlayerEntityAddress.has_value() + && p.address == *u.localPlayerEntityAddress) continue; + + const Vector3& pos = *p.position; + float dist = Dist(cam.translation, pos); + if (dist > m_playerMaxDist) continue; + + if (!IsFacingCamera(cam, pos)) continue; + + const ImU32 kColor = p.isAdmin ? IM_COL32(255, 200, 0, 255) // gold + : p.isDead ? IM_COL32(120, 120, 120, 160) // grey + : IM_COL32(255, 60, 60, 220); // red + + // ---- Smoothed skeleton (extrapolated between DMA reads) ---- + SkeletonBones smoothBones{}; + bool hasSmoothBones = false; + if (!p.isDead) { + auto hit = m_playerBoneHistory.find(p.address); + if (hit != m_playerBoneHistory.end() && hit->second.initialized + && (m_frameTimeMs - hit->second.currMs) < 500LL) { + smoothBones = GetSmoothedBones(hit->second, m_frameTimeMs); + hasSmoothBones = true; + } + } + + // ---- Bounding box ---- + // When the skeleton is valid, derive the box from the projected extents of + // all 16 bones. This keeps the box perfectly in sync with the skeleton + // (both come from the bone-scatter data, updated at ~60 Hz) instead of + // lagging one update behind because it uses the entity position (50 Hz). + float bx0 = 0.0f, by0 = 0.0f, bx1 = 0.0f, by1 = 0.0f; + bool boxReady = false; + + if (hasSmoothBones) { + const Vector3* const kBones[] = { + &smoothBones.neck, &smoothBones.head, + &smoothBones.spine, &smoothBones.pelvis, + &smoothBones.rightShoulder, &smoothBones.rightElbow, &smoothBones.rightHand, + &smoothBones.leftShoulder, &smoothBones.leftElbow, &smoothBones.leftHand, + &smoothBones.rightHip, &smoothBones.rightKnee, &smoothBones.rightAnkle, + &smoothBones.leftHip, &smoothBones.leftKnee, &smoothBones.leftAnkle, + }; + + float minX = 1e9f, maxX = -1e9f; + float minY = 1e9f, maxY = -1e9f; + int hits = 0; + for (const auto* bp : kBones) { + // Reject bones whose world position is > 3 m from the entity root. + // Garbage reads (zero-initialised bones, failed scatter reads) land + // at or near world origin and would drag the box hundreds of pixels + // off to the side of the actual player. + float dbx = bp->x - pos.x, dby = bp->y - pos.y, dbz = bp->z - pos.z; + if (dbx*dbx + dby*dby + dbz*dbz > 9.0f) continue; + + float bsx{}, bsy{}; + if (!Proj(cam, *bp, bsx, bsy, w, h)) continue; + if (bsx < minX) minX = bsx; + if (bsx > maxX) maxX = bsx; + if (bsy < minY) minY = bsy; + if (bsy > maxY) maxY = bsy; + ++hits; + } + + if (hits >= 4) { + constexpr float kPad = 4.0f; + bx0 = minX - kPad; + by0 = minY - kPad; + bx1 = maxX + kPad; + by1 = maxY + kPad; + boxReady = true; + } + } + + if (!boxReady) { + // Fallback: entity ground position + hardcoded 1.8 m head. + // Used for corpses (no skeleton) and when bones haven't been read yet. + float fx{}, fy{}, hx{}, hy{}; + if (!Proj(cam, pos, fx, fy, w, h)) continue; + Vector3 headPos{ pos.x, pos.y + 1.8f, pos.z }; + if (!Proj(cam, headPos, hx, hy, w, h)) continue; + float bH = fy - hy; + if (bH < 2.0f) continue; + float bW = bH * 0.4f; + bx0 = hx - bW * 0.5f; + by0 = hy; + bx1 = hx + bW * 0.5f; + by1 = fy; + } + + // ---- Head circle (computed before the box so by0 can be adjusted) ---- + float hbx{}, hby{}; + float headRadius = 0.0f; + bool hasHeadCircle = false; + + if (m_showHeadDot && !p.isDead && hasSmoothBones) { + if (Proj(cam, smoothBones.head, hbx, hby, w, h)) { + // Radius = 15% of the rendered body height so the circle scales + // naturally with distance. The head-neck pixel-distance approach + // collapses to minimum past ~30 m; box-height fraction stays + // proportional to the target at any range. + headRadius = std::clamp((by1 - by0) * 0.15f, 2.0f, 18.0f); + hasHeadCircle = true; + by0 = std::min(by0, hby - headRadius - 2.0f); + } + } + + if (by1 - by0 < 2.0f) continue; + + if (m_showBox) + dl->AddRect(ImVec2(bx0, by0), ImVec2(bx1, by1), kColor, 0.0f, 0, 1.5f); + + // ---- Skeleton + head circle (use extrapolated bones) ---- + if (!p.isDead && hasSmoothBones) { + if (m_showSkeleton) + DrawSkeleton(dl, smoothBones, cam, w, h, kColor, false); + + if (hasHeadCircle) { + dl->AddCircleFilled(ImVec2(hbx, hby), headRadius, IM_COL32(0, 0, 0, 80)); + dl->AddCircle(ImVec2(hbx, hby), headRadius, kColor, 0, 1.5f); + } + } + + // ---- Name + distance label (top-right of box) ---- + char lblBuf[256]; + const char* nick = p.nickname.empty() ? "Player" : p.nickname.c_str(); + if (p.isAdmin && p.isDead) + snprintf(lblBuf, sizeof(lblBuf), "[ADMIN] %s [DEAD] [%.0fm]", nick, dist); + else if (p.isAdmin) + snprintf(lblBuf, sizeof(lblBuf), "[ADMIN] %s [%.0fm]", nick, dist); + else if (p.isDead) + snprintf(lblBuf, sizeof(lblBuf), "%s [DEAD] [%.0fm]", nick, dist); + else + snprintf(lblBuf, sizeof(lblBuf), "%s [%.0fm]", nick, dist); + dl->AddText(ImVec2(bx1 + 3.0f, by0), kColor, lblBuf); + + // ---- Right-side extras (weapon, health bar, health number) ---- + const float kBarW = 4.0f; + const float kBarGap = 5.0f; + const float barX = bx1 + kBarGap; + const float boxH = by1 - by0; + + if (m_showWeapon && !p.isDead && !p.itemInHands.empty()) { + constexpr ImU32 kWeaponColor = IM_COL32(220, 220, 100, 200); + dl->AddText(ImVec2(barX, by0 + 13.0f), kWeaponColor, p.itemInHands.c_str()); + } + + const bool hasHealth = (p.health >= 0.0f); + if ((m_showHealthBar || m_showHealthNumber) && !p.isDead && hasHealth) { + const float hpFrac = std::min(p.health / 100.0f, 1.0f); + + if (m_showHealthBar) { + dl->AddRectFilled( + ImVec2(barX, by0), + ImVec2(barX + kBarW, by1), + IM_COL32(0, 0, 0, 140)); + + float r = hpFrac < 0.5f ? 1.0f : 2.0f * (1.0f - hpFrac); + float g = hpFrac > 0.5f ? 1.0f : 2.0f * hpFrac; + ImU32 hpColor = IM_COL32( + static_cast(r * 220), + static_cast(g * 220), + 0, 220); + + float filledTop = by0 + boxH * (1.0f - hpFrac); + dl->AddRectFilled( + ImVec2(barX, filledTop), + ImVec2(barX + kBarW, by1), + hpColor); + } + + if (m_showHealthNumber) { + char hpBuf[32]; + snprintf(hpBuf, sizeof(hpBuf), "%.0f/100", p.health); + float numX = m_showHealthBar ? barX + kBarW + 2.0f : barX; + dl->AddText(ImVec2(numX, by1 - 12.0f), + IM_COL32(200, 200, 200, 200), hpBuf); + } + } + } +} + +// ------------------------------------------------------------------------- +// Animals — green label +// ------------------------------------------------------------------------- + +void GameOverlay::DrawAnimals(ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h) { + constexpr ImU32 kGreen = IM_COL32(50, 230, 50, 200); + + for (const auto& a : u.animals) { + if (!a.position.has_value()) continue; + float dist = Dist(cam.translation, *a.position); + if (dist > m_animalMaxDist) continue; + if (!IsFacingCamera(cam, *a.position)) continue; + + float sx{}, sy{}; + if (!Proj(cam, *a.position, sx, sy, w, h)) continue; + + std::string raw = a.entityName.empty() ? a.typeName : a.entityName; + std::string fmtName = raw.empty() ? "Animal" : FormatEntityName(raw); + char abuf[256]; + snprintf(abuf, sizeof(abuf), "%s [%.0fm]", fmtName.c_str(), dist); + dl->AddText(ImVec2(sx, sy), kGreen, abuf); + } +} + +// ------------------------------------------------------------------------- +// Zombies — yellow label +// ------------------------------------------------------------------------- + +void GameOverlay::DrawZombies(ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h) { + constexpr ImU32 kYellow = IM_COL32(230, 230, 50, 180); + + for (const auto& z : u.zombies) { + // Resolve position: use fresh read if available, fall back to cache. + Vector3 pos; + if (z.position.has_value()) { + pos = *z.position; + m_zombieLastPos[z.address] = pos; + } else { + auto it = m_zombieLastPos.find(z.address); + if (it == m_zombieLastPos.end()) continue; + pos = it->second; + } + + float dist = Dist(cam.translation, pos); + if (dist > m_zombieMaxDist) continue; + if (!IsFacingCamera(cam, pos)) continue; + + float sx{}, sy{}; + if (!Proj(cam, pos, sx, sy, w, h)) continue; + + auto zhit = m_zombieBoneHistory.find(z.address); + if (zhit != m_zombieBoneHistory.end() && zhit->second.initialized + && (m_frameTimeMs - zhit->second.currMs) < 500LL) { + SkeletonBones zsm = GetSmoothedBones(zhit->second, m_frameTimeMs); + if (m_showSkeleton) + DrawSkeleton(dl, zsm, cam, w, h, kYellow, true); + if (m_showHeadDot) { + float hbx{}, hby{}; + if (Proj(cam, zsm.head, hbx, hby, w, h)) { + // Angular size of a ~25 cm head at the zombie's actual distance. + // Scales from ~18px at 5m down to ~3px at 50m; clamp keeps it + // always visible and never massive. + const float projD2y = std::max(cam.projectionD2y, 0.1f); + float zr = std::clamp((0.25f * h * 0.5f) / (dist * projD2y), 2.0f, 18.0f); + dl->AddCircleFilled(ImVec2(hbx, hby), zr, IM_COL32(0, 0, 0, 80)); + dl->AddCircle(ImVec2(hbx, hby), zr, kYellow, 0, 1.5f); + } + } + } + + char zbuf[32]; + snprintf(zbuf, sizeof(zbuf), "Z [%.0fm]", dist); + dl->AddText(ImVec2(sx, sy), kYellow, zbuf); + } +} + +// ------------------------------------------------------------------------- +// Items — white label +// ------------------------------------------------------------------------- + +void GameOverlay::DrawItems(ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h) { + constexpr ImU32 kWhite = IM_COL32(255, 255, 255, 200); + const float maxDistSq = m_itemMaxDist * m_itemMaxDist; + + for (const auto& item : u.items) { + // Per-category filter (missing key = enabled) + if (!item.filterKey.empty()) { + auto it = m_itemCategories.find(item.filterKey); + if (it != m_itemCategories.end() && !it->second) continue; + } + + if (!item.position.has_value()) continue; + + // Squared-distance cull avoids sqrtf for every item. + float dx = item.position->x - cam.translation.x; + float dy = item.position->y - cam.translation.y; + float dz = item.position->z - cam.translation.z; + float distSq = dx*dx + dy*dy + dz*dz; + if (distSq > maxDistSq) continue; + + if (!IsFacingCamera(cam, *item.position)) continue; + + float sx{}, sy{}; + if (!Proj(cam, *item.position, sx, sy, w, h)) continue; + + const std::string& name = item.cleanName.empty() + ? item.entityName + : item.cleanName; + if (name.empty()) continue; + + float dist = std::sqrtf(distSq); // sqrt only for items that will actually be drawn + + // Two-tier font: larger close up, smaller at range. + char ibuf[256]; + snprintf(ibuf, sizeof(ibuf), "%s [%.0fm]", name.c_str(), dist); + ImFont* font = (dist < 50.0f) ? m_fontLootClose : m_fontLootFar; + if (font) ImGui::PushFont(font); + dl->AddText(ImVec2(sx, sy), kWhite, ibuf); + if (font) ImGui::PopFont(); + } +} diff --git a/src/Overlay/GameOverlay.h b/src/Overlay/GameOverlay.h new file mode 100644 index 0000000..d145b33 --- /dev/null +++ b/src/Overlay/GameOverlay.h @@ -0,0 +1,190 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include +#include "Config.h" +#include "Runtime/DayZRuntimeService.h" + +struct ImDrawList; + +class GameOverlay { +public: + // Exposed so static helpers in GameOverlay.cpp can take it by reference. + struct BoneHistory { + SkeletonBones prev{}; + SkeletonBones curr{}; + int64_t prevMs = 0; + int64_t currMs = 0; + bool initialized = false; + }; + + explicit GameOverlay(DayZRuntimeService& service, + OverlayConfig cfg, + std::string cfgPath) + : m_service(service) + , m_cfg(std::move(cfg)) + , m_cfgPath(std::move(cfgPath)) + { + m_showPlayers = m_cfg.showPlayers; + m_showAnimals = m_cfg.showAnimals; + m_showZombies = m_cfg.showZombies; + m_showItems = m_cfg.showItems; + m_showBox = m_cfg.showBox; + m_showSkeleton = m_cfg.showSkeleton; + m_showHeadDot = m_cfg.showHeadDot; + m_showCorpses = m_cfg.showCorpses; + m_showWeapon = m_cfg.showWeapon; + m_showHealthBar = m_cfg.showHealthBar; + m_showHealthNumber = m_cfg.showHealthNumber; + m_itemCategories = m_cfg.itemCategories; + m_playerMaxDist = m_cfg.playerMaxDist; + m_animalMaxDist = m_cfg.animalMaxDist; + m_zombieMaxDist = m_cfg.zombieMaxDist; + m_itemMaxDist = m_cfg.itemMaxDist; + m_pendingW = m_cfg.overlayWidth; + m_pendingH = m_cfg.overlayHeight; + m_renderW = m_cfg.renderWidth; + m_renderH = m_cfg.renderHeight; + m_stretchToFill = m_cfg.stretchToFill; + m_pendingRW = m_cfg.renderWidth; + m_pendingRH = m_cfg.renderHeight; + } + + /// Called once after the web radar server has started so the Radar tab + /// knows what URL(s) to display. + void SetWebRadarPort(int port); + + /// Called once after ImGui fonts are built so DrawItems can tier by distance. + void SetLootFonts(ImFont* close, ImFont* lootFar) { + m_fontLootClose = close; + m_fontLootFar = lootFar; + } + + /// Register a callback invoked when the user clicks the exit button. + /// The caller should set its stop flag inside the callback. + void SetExitCallback(std::function cb) { m_exitCallback = std::move(cb); } + + /// Register a callback invoked when the user applies a new overlay resolution. + void SetResizeCallback(std::function cb) { m_resizeCallback = std::move(cb); } + + // Called each frame. w/h a re the overlay window pixel dimensions. + void Draw(float w, float h); + +private: + DayZRuntimeService& m_service; + OverlayConfig m_cfg; + std::string m_cfgPath; + + // Cached entity snapshot (updated once per frame via GetLatestUpdate). + std::shared_ptr m_snapshot; + +public: + bool IsMenuOpen() const { return m_menuOpen; } + +private: + + // Live camera — updated every frame directly from the service, + // bypassing the entity snapshot so it reflects the latest DMA read. + CameraData m_liveCamera; + + // Web radar + int m_webPort = 7777; + std::vector m_webUrls; // populated by SetWebRadarPort() + + // Exit callback — invoked when the user presses the exit button. + std::function m_exitCallback; + // Resize callback — invoked when the user applies a new resolution. + std::function m_resizeCallback; + + // Menu state + bool m_menuOpen = false; + float m_menuAlpha = 0.0f; + int m_tab = 0; + int m_subtab = 0; + + // ESP toggles (initialised from config in constructor) + bool m_showPlayers = true; + bool m_showAnimals = true; + bool m_showZombies = true; + bool m_showItems = true; + bool m_showBox = true; + bool m_showSkeleton = true; + bool m_showHeadDot = false; + bool m_showCorpses = false; + bool m_showWeapon = true; + bool m_showHealthBar = true; + bool m_showHealthNumber = false; + bool m_debugSkeleton = false; // draws named bone dots for the closest player + + // Per-category item enabled map (key = filterKey, missing = enabled) + std::map m_itemCategories; + + // Loot fonts — set once via SetLootFonts() after ImGui atlas is built. + ImFont* m_fontLootClose = nullptr; // 16 px — used for items within 50 m + ImFont* m_fontLootFar = nullptr; // 11 px — used for items >= 50 m + + // Last-known positions for zombies keyed by entity address. + // Used to avoid a single failed position read causing a visible blink. + std::unordered_map m_zombieLastPos; + + // ---- Bone interpolation / extrapolation ---- + std::unordered_map m_playerBoneHistory; + std::unordered_map m_zombieBoneHistory; + int64_t m_frameTimeMs = 0; // set once per Draw() call + + static int64_t NowMs(); + + // Pending resolution override — edited in menu, applied on button press. + int m_pendingW = 0; + int m_pendingH = 0; + int m_pendingRW = 0; // render width (stretched res) + int m_pendingRH = 0; // render height (stretched res) + + // Stretched resolution state (active values, applied on "Apply") + int m_renderW = 0; + int m_renderH = 0; + bool m_stretchToFill = true; + + // ESP distance limits (initialised from config in constructor) + float m_playerMaxDist = 1000.0f; + float m_animalMaxDist = 1000.0f; + float m_zombieMaxDist = 500.0f; + float m_itemMaxDist = 200.0f; + + // Low-level NDC projection helper — maps a world position to overlay pixels. + // Returns false if the position is behind the camera or off-screen. + static bool WorldToScreen(const CameraData& cam, + const Vector3& worldPos, + float& sx, float& sy, + float w, float h); + + // Viewport-aware projection wrapper. Use this instead of WorldToScreen + // directly — it applies stretched-resolution / letterbox offsets. + bool Proj(const CameraData& cam, const Vector3& worldPos, + float& sx, float& sy, float overlayW, float overlayH) const; + + static float Dist(const Vector3& a, const Vector3& b); + + // Copy live menu state (m_show*, distances, item categories, resolution) + // back into m_cfg prior to a Save. + void SyncConfig(); + + void DrawESP (float w, float h, const RuntimeUpdate& u, const CameraData& cam); + void DrawPlayers(ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h); + void DrawAnimals(ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h); + void DrawZombies(ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h); + void DrawItems (ImDrawList* dl, const RuntimeUpdate& u, const CameraData& cam, float w, float h); + + // Draw skeleton bone segments for a single entity. color = ImU32 (unsigned int). + void DrawSkeleton(ImDrawList* dl, const SkeletonBones& bones, + const CameraData& cam, float w, float h, + unsigned int color, bool isZombie) const; + + // Debug: draw every named bone as a labeled dot for the closest player. + void DrawSkeletonDebug(ImDrawList* dl, const RuntimeUpdate& u, + const CameraData& cam, float w, float h) const; +}; diff --git a/src/Overlay/MenuBridge.h b/src/Overlay/MenuBridge.h new file mode 100644 index 0000000..76f3804 --- /dev/null +++ b/src/Overlay/MenuBridge.h @@ -0,0 +1,77 @@ +#pragma once +// ------------------------------------------------------------------------- +// MenuBridge — the seam between the vendored Lumin ImGui menu (external/lumin) +// and this project's overlay state (GameOverlay). +// +// GameOverlay fills one of these every frame (pointers into its own members +// for the editable values, plain values for the read-only info panels) and +// the menu's render() reads/writes through the global pointer below. This +// keeps all the actual ESP state owned by GameOverlay while letting Lumin's +// widgets drive it. +// ------------------------------------------------------------------------- +#include +#include +#include +#include +#include + +struct MenuBridge { + // ---- ESP visibility toggles (point at GameOverlay members) ---- + bool* showPlayers = nullptr; + bool* showAnimals = nullptr; + bool* showZombies = nullptr; + bool* showItems = nullptr; + bool* showBox = nullptr; + bool* showSkeleton = nullptr; + bool* showHeadDot = nullptr; + bool* showWeapon = nullptr; + bool* showHealthBar = nullptr; + bool* showHealthNumber = nullptr; + bool* showCorpses = nullptr; + bool* debugSkeleton = nullptr; + + // ---- ESP draw-distance limits ---- + float* playerMaxDist = nullptr; + float* animalMaxDist = nullptr; + float* zombieMaxDist = nullptr; + float* itemMaxDist = nullptr; + + // ---- Per-category loot toggles (key = filterKey) ---- + std::map* itemCategories = nullptr; + + // ---- Read-only info (refreshed each frame) ---- + bool connected = false; + std::string serverName; + std::string mapName; + std::string status; + bool hasPos = false; + float px = 0.f, py = 0.f, pz = 0.f; + std::size_t nPlayers = 0, nAnimals = 0, nZombies = 0, + nVehicles = 0, nItems = 0, nBullets = 0; + + // ---- Web radar ---- + int webPort = 7777; + std::vector webUrls; + + // ---- Resolution settings (point at GameOverlay members) ---- + int* pendingW = nullptr; + int* pendingH = nullptr; + int* pendingRW = nullptr; + int* pendingRH = nullptr; + bool* stretchToFill = nullptr; + + // ---- Actions ---- + std::function onApplyDisplayRes; // applies pendingW/H + resize + std::function onApplyRenderRes; // applies pendingRW/RH + stretch + std::function onSaveConfig; + std::function onExit; +}; + +// Set by GameOverlay before each gui->render() call; read by the menu. +extern MenuBridge* g_menu; + +// Thin shim implemented in external/lumin/framework/gui.cpp. Lets GameOverlay +// drive the Lumin menu without pulling the whole framework header (and its +// `using namespace ImGui`) into GameOverlay's translation unit. Must be called +// between ImGui::NewFrame() and ImGui::Render(). +void RenderLuminMenu(); diff --git a/src/Overlay/OverlayWindow.cpp b/src/Overlay/OverlayWindow.cpp new file mode 100644 index 0000000..b314688 --- /dev/null +++ b/src/Overlay/OverlayWindow.cpp @@ -0,0 +1,296 @@ +#include "OverlayWindow.h" + +#include +#include +#include + +// Vendored Lumin framework — provides the FreeType-backed font system (`font`), +// shared state (`var`) and the embedded font data (inter_*, icon_font). +#include "framework/headers/includes.h" + +#include +#pragma comment(lib, "dwmapi.lib") + +#include + +extern IMGUI_IMPL_API LRESULT ImGui_ImplWin32_WndProcHandler(HWND, UINT, WPARAM, LPARAM); + +static constexpr wchar_t kWndClass[] = L"DayZEspWindow"; + +// ESP fonts go through the Lumin font system so they survive its atlas +// rebuilds. dpi is locked to 1.0 (variables.h) so these map to exact pixels. +static const char* kEspFontPath = "C:\\Windows\\Fonts\\tahoma.ttf"; + +// Register every font size the Lumin menu can request, so the atlas is built +// up front and (ideally) never rebuilt mid-run. Any size missed here is still +// handled gracefully by the per-frame rebuild check in Run(). +static void WarmMenuFonts() { + font->get(inter_medium, 10); + font->get(inter_medium, 11); + font->get(inter_semibold, 8); + font->get(inter_semibold, 10); + font->get(inter_semibold, 11); + font->get(inter_semibold, 12); + font->get(inter_semibold, 13); + font->get(inter_semibold, 16); + font->get(inter_semibold, 18); + font->get(icon_font, 13); + font->get(icon_font, 14); + font->get(icon_font, 15); + font->get_file(flaticon_uicons_regular_rounded_path, 12.0f, true); + font->get_file(flaticon_uicons_regular_rounded_path, 12.5f, true); + font->get_file("C:\\Windows\\Fonts\\segmdl2.ttf", 11.f, true); +} + +// ------------------------------------------------------------------------- +// WndProc +// ------------------------------------------------------------------------- + +LRESULT WINAPI OverlayWindow::WndProc(HWND h, UINT msg, WPARAM w, LPARAM l) { + if (ImGui_ImplWin32_WndProcHandler(h, msg, w, l)) return true; + switch (msg) { + case WM_SIZE: + if (w != SIZE_MINIMIZED) { + // Store pending resize; handled at top of render loop + if (auto* self = reinterpret_cast(GetWindowLongPtrW(h, GWLP_USERDATA))) { + self->m_resizeW = LOWORD(l); + self->m_resizeH = HIWORD(l); + } + } + return 0; + case WM_DESTROY: + PostQuitMessage(0); + return 0; + case WM_SYSCOMMAND: + if ((w & 0xFFF0) == SC_KEYMENU) return 0; + break; + } + return DefWindowProcW(h, msg, w, l); +} + +// ------------------------------------------------------------------------- +// CreateWin32Window +// ------------------------------------------------------------------------- + +bool OverlayWindow::CreateWin32Window() { + m_w = (m_overrideW > 0) ? m_overrideW : GetSystemMetrics(SM_CXSCREEN); + m_h = (m_overrideH > 0) ? m_overrideH : GetSystemMetrics(SM_CYSCREEN); + + WNDCLASSEXW wc{}; + wc.cbSize = sizeof(wc); + wc.style = CS_CLASSDC; + wc.lpfnWndProc = WndProc; + wc.hInstance = GetModuleHandle(nullptr); + wc.hCursor = LoadCursor(nullptr, IDC_ARROW); + wc.lpszClassName = kWndClass; + if (!RegisterClassExW(&wc)) return false; + + m_hwnd = CreateWindowExW( + WS_EX_APPWINDOW, + kWndClass, L"KarachiHook", + WS_POPUP | WS_VISIBLE, + 0, 0, m_w, m_h, + nullptr, nullptr, wc.hInstance, nullptr + ); + if (!m_hwnd) return false; + + // Store 'this' so WndProc can find us for resize events + SetWindowLongPtrW(m_hwnd, GWLP_USERDATA, reinterpret_cast(this)); + ShowWindow(m_hwnd, SW_SHOWDEFAULT); + UpdateWindow(m_hwnd); + return true; +} + +// ------------------------------------------------------------------------- +// ResizeTo +// ------------------------------------------------------------------------- + +void OverlayWindow::ResizeTo(int w, int h) { + if (!m_hwnd || w <= 0 || h <= 0) return; + SetWindowPos(m_hwnd, nullptr, 0, 0, w, h, + SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE); + // WM_SIZE will be posted; the render loop picks it up via m_resizeW/m_resizeH. +} + +// ------------------------------------------------------------------------- +// CreateDX11 +// ------------------------------------------------------------------------- + +bool OverlayWindow::CreateDX11() { + DXGI_SWAP_CHAIN_DESC sd{}; + sd.BufferCount = 2; + sd.BufferDesc.Width = 0; + sd.BufferDesc.Height = 0; + sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; + sd.BufferDesc.RefreshRate.Numerator = 60; + sd.BufferDesc.RefreshRate.Denominator = 1; + sd.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH; + sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; + sd.OutputWindow = m_hwnd; + sd.SampleDesc.Count = 1; + sd.Windowed = TRUE; + sd.SwapEffect = DXGI_SWAP_EFFECT_FLIP_DISCARD; + + const D3D_FEATURE_LEVEL fla[] = { D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_0 }; + D3D_FEATURE_LEVEL fl{}; + + HRESULT hr = D3D11CreateDeviceAndSwapChain( + nullptr, D3D_DRIVER_TYPE_HARDWARE, nullptr, 0, + fla, 2, D3D11_SDK_VERSION, + &sd, &m_sc, &m_dev, &fl, &m_ctx + ); + if (FAILED(hr)) + hr = D3D11CreateDeviceAndSwapChain( + nullptr, D3D_DRIVER_TYPE_WARP, nullptr, 0, + fla, 2, D3D11_SDK_VERSION, + &sd, &m_sc, &m_dev, &fl, &m_ctx); + + return SUCCEEDED(hr); +} + +// ------------------------------------------------------------------------- +// RTV helpers +// ------------------------------------------------------------------------- + +void OverlayWindow::CreateRTV() { + ID3D11Texture2D* back = nullptr; + if (SUCCEEDED(m_sc->GetBuffer(0, IID_PPV_ARGS(&back)))) { + m_dev->CreateRenderTargetView(back, nullptr, &m_rtv); + back->Release(); + } +} + +void OverlayWindow::CleanupRTV() { + if (m_rtv) { m_rtv->Release(); m_rtv = nullptr; } +} + +// ------------------------------------------------------------------------- +// Destroy +// ------------------------------------------------------------------------- + +void OverlayWindow::Destroy() { + ImGui_ImplDX11_Shutdown(); + ImGui_ImplWin32_Shutdown(); + if (ImGui::GetCurrentContext()) ImGui::DestroyContext(); + CleanupRTV(); + if (m_sc) { m_sc->Release(); m_sc = nullptr; } + if (m_ctx) { m_ctx->Release(); m_ctx = nullptr; } + if (m_dev) { m_dev->Release(); m_dev = nullptr; } + if (m_hwnd){ DestroyWindow(m_hwnd); m_hwnd = nullptr; } + UnregisterClassW(kWndClass, GetModuleHandle(nullptr)); +} + +// ------------------------------------------------------------------------- +// Run +// ------------------------------------------------------------------------- + +void OverlayWindow::Run(std::atomic& stopFlag) { + if (!CreateWin32Window() || !CreateDX11()) { + spdlog::error("OverlayWindow: init failed."); + Destroy(); + stopFlag.store(true); + return; + } + CreateRTV(); + + IMGUI_CHECKVERSION(); + ImGui::CreateContext(); + ImGuiIO& io = ImGui::GetIO(); + io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange; + + ImGui::StyleColorsDark(); + // Make window backgrounds semi-transparent so the game is partially visible + ImGui::GetStyle().Colors[ImGuiCol_WindowBg] = ImVec4(0.0f, 0.0f, 0.0f, 0.0f); + + ImGui_ImplWin32_Init(m_hwnd); + ImGui_ImplDX11_Init(m_dev, m_ctx); + + // ---- Fonts via the Lumin FreeType atlas (must run after backend init) ---- + WarmMenuFonts(); + font->get_file(kEspFontPath, 14.f); // ESP base -> io.FontDefault + font->get_file(kEspFontPath, 16.f); // loot close (<50 m) + font->get_file(kEspFontPath, 11.f); // loot far (>=50 m) + + var->gui.dpi_changed = true; + font->update(); // build the atlas once + + if (ImFont* base = font->get_file(kEspFontPath, 14.f)) io.FontDefault = base; + ImFont* fontLootClose = font->get_file(kEspFontPath, 16.f); + ImFont* fontLootFar = font->get_file(kEspFontPath, 11.f); + + // Notify caller that fonts are ready — must be done after the atlas build + // so the ImFont pointers are fully populated. + if (m_onFontReady) m_onFontReady(fontLootClose, fontLootFar); + + spdlog::info("ESP window running ({}x{}).", m_w, m_h); + + MSG msg{}; + bool done = false; + while (!stopFlag.load() && !done) { + while (PeekMessage(&msg, nullptr, 0, 0, PM_REMOVE)) { + TranslateMessage(&msg); + DispatchMessage(&msg); + if (msg.message == WM_QUIT) { done = true; break; } + } + if (done) break; + + // Handle deferred resize + if (m_resizeW != 0 && m_resizeH != 0) { + CleanupRTV(); + m_sc->ResizeBuffers(0, m_resizeW, m_resizeH, DXGI_FORMAT_UNKNOWN, 0); + m_w = static_cast(m_resizeW); + m_h = static_cast(m_resizeH); + m_resizeW = m_resizeH = 0; + CreateRTV(); + } + + // The Lumin menu registers font sizes lazily; rebuild the atlas when a + // new one appears (must happen outside a frame) and refresh the cached + // ESP font pointers so they never dangle across a rebuild. + if (var->gui.dpi_changed) { + font->update(); + if (ImFont* base = font->get_file(kEspFontPath, 14.f)) io.FontDefault = base; + if (m_onFontReady) + m_onFontReady(font->get_file(kEspFontPath, 16.f), + font->get_file(kEspFontPath, 11.f)); + } + + ImGui_ImplDX11_NewFrame(); + ImGui_ImplWin32_NewFrame(); + ImGui::NewFrame(); + + if (m_draw) m_draw(static_cast(m_w), static_cast(m_h)); + + // Toggle interactivity: remove WS_EX_NOACTIVATE when the menu is open + // so ImGui can receive mouse/keyboard input, restore it when closed so + // the overlay doesn't steal focus during gameplay. + if (m_queryInput) { + bool wantInput = m_queryInput(); + if (wantInput != m_prevWantInput) { + LONG_PTR ex = GetWindowLongPtrW(m_hwnd, GWL_EXSTYLE); + if (wantInput) { + ex &= ~static_cast(WS_EX_NOACTIVATE); + SetWindowLongPtrW(m_hwnd, GWL_EXSTYLE, ex); + SetForegroundWindow(m_hwnd); + } else { + ex |= WS_EX_NOACTIVATE; + SetWindowLongPtrW(m_hwnd, GWL_EXSTYLE, ex); + } + m_prevWantInput = wantInput; + } + } + + ImGui::Render(); + + // Pure black background + const float clear[4] = { 0.0f, 0.0f, 0.0f, 1.0f }; + m_ctx->OMSetRenderTargets(1, &m_rtv, nullptr); + m_ctx->ClearRenderTargetView(m_rtv, clear); + ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData()); + DwmFlush(); // sync to DWM compositor vblank before present + m_sc->Present(1, 0); // 1 = vsync interval + } + + Destroy(); + stopFlag.store(true); +} diff --git a/src/Overlay/OverlayWindow.h b/src/Overlay/OverlayWindow.h new file mode 100644 index 0000000..624a18f --- /dev/null +++ b/src/Overlay/OverlayWindow.h @@ -0,0 +1,74 @@ +#pragma once +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include +#include +#include + +// Standard ImGui + DX11 window, always-on-top, fullscreen popup. +// The game is visible through the mostly-dark background while ImGui +// draw-list calls render the ESP data on top. +class OverlayWindow { +public: + using DrawFn = std::function; + using InputQueryFn = std::function; + using FontReadyFn = std::function; + + OverlayWindow() = default; + ~OverlayWindow() = default; + + OverlayWindow(const OverlayWindow&) = delete; + OverlayWindow& operator=(const OverlayWindow&) = delete; + + void SetDrawCallback(DrawFn fn) { m_draw = std::move(fn); } + void SetInputQueryCallback(InputQueryFn fn) { m_queryInput = std::move(fn); } + // Called once after ImGui fonts are built, before the first frame. + void SetFontReadyCallback(FontReadyFn fn) { m_onFontReady = std::move(fn); } + + // Override the window size used at creation (0 = use GetSystemMetrics). + void SetResolutionOverride(int w, int h) { m_overrideW = w; m_overrideH = h; } + + // Resize the live window; triggers WM_SIZE which the render loop handles. + void ResizeTo(int w, int h); + + // Blocks until stopFlag becomes true or the window is closed. + void Run(std::atomic& stopFlag); + + // Called from WndProc for WM_SIZE + UINT m_resizeW = 0; + UINT m_resizeH = 0; + + // Resolution override — set before Run(); 0 = auto from screen metrics. + int m_overrideW = 0; + int m_overrideH = 0; + +private: + DrawFn m_draw; + InputQueryFn m_queryInput; + FontReadyFn m_onFontReady; + bool m_prevWantInput = false; + + HWND m_hwnd = nullptr; + ID3D11Device* m_dev = nullptr; + ID3D11DeviceContext* m_ctx = nullptr; + IDXGISwapChain* m_sc = nullptr; + ID3D11RenderTargetView* m_rtv = nullptr; + + int m_w = 0; + int m_h = 0; + + bool CreateWin32Window(); + bool CreateDX11(); + void CreateRTV(); + void CleanupRTV(); + void Destroy(); + + static LRESULT WINAPI WndProc(HWND h, UINT msg, WPARAM w, LPARAM l); +}; diff --git a/src/Readers/BulletTableReader.cpp b/src/Readers/BulletTableReader.cpp new file mode 100644 index 0000000..9200d97 --- /dev/null +++ b/src/Readers/BulletTableReader.cpp @@ -0,0 +1,261 @@ +#include "Readers/BulletTableReader.h" + +#include +#include +#include +#include +#include + +#include "Offsets.h" +#include "RuntimeOffsets.h" +#include "Memory/MemoryValidation.h" + +// ------------------------------------------------------------------------- +// TryRead +// ------------------------------------------------------------------------- + +bool BulletTableReader::TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries) +{ + entries.clear(); + const uint32_t pid = session.processId; + + // 1. Bullet count — read first; the table pointer is null when count==0 + int32_t rawCount = 0; + if (!mem.TryReadValue(pid, + session.worldAddress + RuntimeOffsets::World::BulletCount, + rawCount)) + { + return false; + } + + const int count = std::clamp(rawCount, 0, kMaxBullets); + + // 2. Nothing alive — table pointer may be null, safe to return early + if (count == 0) { + m_tableUnavailable = false; + m_lastPositions.clear(); + return true; + } + + // 3. Bullet table pointer (only valid when count > 0) + uint64_t bulletTablePtr = 0; + if (!mem.TryReadPointer(pid, + session.worldAddress + RuntimeOffsets::World::BulletTable, + bulletTablePtr)) + { + m_tableUnavailable = true; + return false; + } + m_tableUnavailable = false; + + // 4. Bulk-read the pointer table (count * 8 bytes) + const size_t tableBytes = static_cast(count) * 8; + std::vector buf; + buf.reserve(tableBytes); + if (!mem.ReadBytes(pid, bulletTablePtr, tableBytes, buf)) { + return false; + } + + // 5. Iterate pointers, build entries for valid distinct addresses + std::unordered_set seen; + seen.reserve(static_cast(count)); + + for (int i = 0; i < count; ++i) { + uint64_t addr = 0; + std::memcpy(&addr, buf.data() + static_cast(i) * 8, sizeof(uint64_t)); + + if (!MemoryValidation::IsValidUserAddress(addr)) continue; + if (!seen.insert(addr).second) continue; // skip duplicates + + entries.push_back(BuildBulletEntry(mem, session, addr)); + } + + // 6. Sort by address for deterministic ordering + std::sort(entries.begin(), entries.end(), + [](const DayZBulletEntry& a, const DayZBulletEntry& b) { + return a.address < b.address; + }); + + // 7. Sync last-position cache + UpdateLastPositions(entries); + + return true; +} + +// ------------------------------------------------------------------------- +// Reset +// ------------------------------------------------------------------------- + +void BulletTableReader::Reset() +{ + m_lastPositions.clear(); + m_tableUnavailable = false; +} + +// ------------------------------------------------------------------------- +// BuildBulletEntry +// ------------------------------------------------------------------------- + +DayZBulletEntry BulletTableReader::BuildBulletEntry(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t address) +{ + DayZBulletEntry entry; + entry.address = address; + + const uint32_t pid = session.processId; + + // 1. VisualState pointer + uint64_t visualStateAddr = 0; + if (!mem.TryReadPointer(pid, address + Offsets::Common::VisualState, visualStateAddr)) { + return entry; + } + + // 2. Position + Vector3 pos{}; + if (TryReadBulletPosition(mem, pid, visualStateAddr, pos)) { + entry.position = pos; + } + + // 3. Direction from stored visual vectors + Vector3 dir{}; + float heading = 0.0f; + if (TryReadBulletDirection(mem, pid, visualStateAddr, dir, heading)) { + entry.direction = dir; + entry.headingDegrees = heading; + entry.directionSource = "visual"; + return entry; + } + + // 4. Direction fallback: flight delta from previous position + if (entry.position.has_value()) { + auto prevIt = m_lastPositions.find(address); + if (prevIt != m_lastPositions.end()) { + Vector3 flightDir{}; + float flightHeading = 0.0f; + if (TryGetFlightDirection(prevIt->second, *entry.position, + flightDir, flightHeading)) + { + entry.direction = flightDir; + entry.headingDegrees = flightHeading; + entry.directionSource = "raw"; + } + } + } + + return entry; +} + +// ------------------------------------------------------------------------- +// TryReadBulletPosition +// ------------------------------------------------------------------------- + +bool BulletTableReader::TryReadBulletPosition(VmmAccessor& mem, + uint32_t pid, + uint64_t visualStateAddr, + Vector3& pos) +{ + if (!mem.TryReadValue(pid, + visualStateAddr + Offsets::Common::Position, + pos)) + { + return false; + } + return MemoryValidation::IsValidVector(pos); +} + +// ------------------------------------------------------------------------- +// TryReadBulletDirection +// ------------------------------------------------------------------------- + +bool BulletTableReader::TryReadBulletDirection(VmmAccessor& mem, + uint32_t pid, + uint64_t visualStateAddr, + Vector3& dir, + float& heading) +{ + // DirectionX and DirectionY are stored as float[3] each (x,y,z components + // of the engine's view-matrix row). We use X-component from each row to + // reconstruct a 2-D horizontal direction that matches the C# original. + float dirX = 0.0f; + float dirY = 0.0f; + if (!mem.TryReadValue(pid, visualStateAddr + Offsets::Common::DirectionX, dirX)) + return false; + if (!mem.TryReadValue(pid, visualStateAddr + Offsets::Common::DirectionY, dirY)) + return false; + + // Construct a normalized 3-D direction in the horizontal plane + const float len = std::sqrt(dirX * dirX + dirY * dirY); + if (len < kMinDirectionDelta) return false; + + dir.x = dirX / len; + dir.y = 0.0f; + dir.z = dirY / len; + + constexpr float kRadToDeg = 180.0f / static_cast(std::numbers::pi); + heading = MemoryValidation::NormalizeHeading( + std::atan2(dirY, dirX) * kRadToDeg + 90.0f); + + return true; +} + +// ------------------------------------------------------------------------- +// TryGetFlightDirection +// ------------------------------------------------------------------------- + +bool BulletTableReader::TryGetFlightDirection(const Vector3& prev, + const Vector3& curr, + Vector3& dir, + float& heading) +{ + const float dx = curr.x - prev.x; + const float dy = curr.y - prev.y; + const float dz = curr.z - prev.z; + + const float lenSq = dx * dx + dy * dy + dz * dz; + if (lenSq < kMinDirectionDelta * kMinDirectionDelta) return false; + + // Horizontal components must also be meaningful + const float hDelta = std::sqrt(dx * dx + dz * dz); + if (hDelta < kMinDirectionDelta) return false; + + const float len = std::sqrt(lenSq); + dir.x = dx / len; + dir.y = dy / len; + dir.z = dz / len; + + constexpr float kRadToDeg = 180.0f / static_cast(std::numbers::pi); + heading = MemoryValidation::NormalizeHeading( + std::atan2(dz, dx) * kRadToDeg + 90.0f); + + return true; +} + +// ------------------------------------------------------------------------- +// UpdateLastPositions +// ------------------------------------------------------------------------- + +void BulletTableReader::UpdateLastPositions(const std::vector& entries) +{ + // Collect the set of currently-alive bullet addresses + std::unordered_set alive; + alive.reserve(entries.size()); + + for (const auto& e : entries) { + alive.insert(e.address); + if (e.position.has_value()) { + m_lastPositions[e.address] = *e.position; + } + } + + // Remove entries that are no longer alive + for (auto it = m_lastPositions.begin(); it != m_lastPositions.end(); ) { + if (alive.find(it->first) == alive.end()) { + it = m_lastPositions.erase(it); + } else { + ++it; + } + } +} diff --git a/src/Readers/BulletTableReader.h b/src/Readers/BulletTableReader.h new file mode 100644 index 0000000..992904d --- /dev/null +++ b/src/Readers/BulletTableReader.h @@ -0,0 +1,73 @@ +#pragma once +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" + +// ------------------------------------------------------------------------- +// BulletTableReader +// Reads the world's active bullet table each call (non-incremental). +// Direction is derived from the visual state's stored direction vectors; +// if those are unavailable the reader falls back to computing a flight +// delta from the previous frame's position. +// ------------------------------------------------------------------------- + +class BulletTableReader { +public: + /// Read all active bullets into @p entries. + /// Returns false only when the bullet table pointer cannot be read. + bool TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries); + + /// Reset cached position state. Call when the game session restarts. + void Reset(); + +private: + // ------------------------------------------------------------------ + // Per-bullet state (previous-frame position for flight-delta fallback) + // ------------------------------------------------------------------ + std::unordered_map m_lastPositions; + + bool m_tableUnavailable = false; + + // ------------------------------------------------------------------ + // Entry construction + // ------------------------------------------------------------------ + DayZBulletEntry BuildBulletEntry(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t address); + + /// Read the bullet's current position from its visual state. + static bool TryReadBulletPosition(VmmAccessor& mem, + uint32_t pid, + uint64_t visualStateAddr, + Vector3& pos); + + /// Read the stored direction vectors (DirectionX / DirectionY) from the + /// visual state and derive a normalized world direction + heading. + static bool TryReadBulletDirection(VmmAccessor& mem, + uint32_t pid, + uint64_t visualStateAddr, + Vector3& dir, + float& heading); + + /// Derive flight direction from the delta between previous and current + /// positions. Returns false when the delta is too small to be useful. + bool TryGetFlightDirection(const Vector3& prev, + const Vector3& curr, + Vector3& dir, + float& heading); + + /// Sync m_lastPositions with the entries that were just built: + /// add/update entries still alive, remove entries no longer present. + void UpdateLastPositions(const std::vector& entries); + + // ------------------------------------------------------------------ + // Constants + // ------------------------------------------------------------------ + static constexpr int kMaxBullets = 512; + static constexpr float kMinDirectionDelta = 0.001f; +}; diff --git a/src/Readers/ClientScoreboardReader.cpp b/src/Readers/ClientScoreboardReader.cpp new file mode 100644 index 0000000..678844e --- /dev/null +++ b/src/Readers/ClientScoreboardReader.cpp @@ -0,0 +1,238 @@ +#include "Readers/ClientScoreboardReader.h" + +#include +#include +#include + +#include "Offsets.h" +#include "Memory/MemoryValidation.h" + +ClientScoreboardReader::ClientScoreboardReader(int refreshIntervalMs) + : m_networkIdRefreshInterval(refreshIntervalMs) +{} + +// ------------------------------------------------------------------------- +// RefreshNetworkId +// ------------------------------------------------------------------------- + +void ClientScoreboardReader::RefreshNetworkId(VmmAccessor& mem, + uint32_t pid, + uint64_t identityAddr, + IdentityMetadata& meta) +{ + uint32_t id = 0; + if (mem.TryReadValue(pid, + identityAddr + Offsets::Network::PlayerIdentityNetworkId, + id)) + { + meta.networkId = id; + } + meta.lastNetworkIdReadTime = std::chrono::steady_clock::now(); +} + +// ------------------------------------------------------------------------- +// TryRead +// ------------------------------------------------------------------------- + +bool ClientScoreboardReader::TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& players) +{ + const uint32_t pid = session.processId; + + // ----------------------------------------------------------------- + // 1. NetworkClient pointer + // ----------------------------------------------------------------- + uint64_t networkClientAddr = 0; + if (!mem.TryReadPointer(pid, + session.networkManagerAddress + Offsets::Network::ManagerNetworkClient, + networkClientAddr)) + { + return false; + } + + // ----------------------------------------------------------------- + // 2. Scoreboard base pointer + // ----------------------------------------------------------------- + uint64_t scoreboardPtr = 0; + if (!mem.TryReadPointer(pid, + networkClientAddr + Offsets::Network::ClientScoreboard, + scoreboardPtr)) + { + return false; + } + + // ----------------------------------------------------------------- + // 3. Player count + // ----------------------------------------------------------------- + int32_t rawPlayerCount = 0; + if (!mem.TryReadValue(pid, + networkClientAddr + Offsets::Network::ClientPlayerCount, + rawPlayerCount)) + { + return false; + } + + const int playerCount = std::clamp(rawPlayerCount, 0, kMaxPlayers); + if (playerCount == 0) { + players.clear(); + return true; + } + + // ----------------------------------------------------------------- + // 4. Bulk-read identity pointer array (kScoreboardCapacity * 8 bytes) + // ----------------------------------------------------------------- + const int slotsToRead = std::min(playerCount, kScoreboardCapacity); + std::vector ptrTable; + ptrTable.reserve(static_cast(slotsToRead) * 8); + if (!mem.ReadBytes(pid, scoreboardPtr, + static_cast(slotsToRead) * 8, ptrTable)) + { + return false; + } + + // ----------------------------------------------------------------- + // 5. Build list of valid identity addresses from the table + // ----------------------------------------------------------------- + std::vector validAddresses; + validAddresses.reserve(static_cast(slotsToRead)); + + for (int i = 0; i < slotsToRead; ++i) { + uint64_t identityAddr = 0; + std::memcpy(&identityAddr, + ptrTable.data() + static_cast(i) * 8, + sizeof(uint64_t)); + + if (!MemoryValidation::IsValidUserAddress(identityAddr)) { + continue; + } + validAddresses.push_back(identityAddr); + } + + // ----------------------------------------------------------------- + // 6. Ensure every address has a cached metadata entry + // Read identity strings once; they are stable for the session. + // ----------------------------------------------------------------- + for (uint64_t identityAddr : validAddresses) { + if (m_metadataByAddress.count(identityAddr)) { + continue; // already cached + } + + IdentityMetadata meta; + + // SteamId: read ptr at offset, then ArmaString + { + uint64_t steamIdPtr = 0; + if (mem.TryReadPointer(pid, + identityAddr + Offsets::Network::PlayerIdentitySteamId, + steamIdPtr)) + { + meta.steamId = mem.ReadArmaString(pid, steamIdPtr); + } + } + + // PlayerName: read ptr at offset, then ArmaString + { + uint64_t namePtr = 0; + if (mem.TryReadPointer(pid, + identityAddr + Offsets::Network::PlayerIdentityPlayerName, + namePtr)) + { + meta.playerName = mem.ReadArmaString(pid, namePtr); + } + } + + // NetworkId (initial read — will be refreshed on schedule) + RefreshNetworkId(mem, pid, identityAddr, meta); + + m_metadataByAddress[identityAddr] = std::move(meta); + } + + // ----------------------------------------------------------------- + // 7. Round-robin refresh of stale NetworkIds + // ----------------------------------------------------------------- + if (!validAddresses.empty()) { + const auto now = std::chrono::steady_clock::now(); + int refreshed = 0; + + const int total = static_cast(validAddresses.size()); + // Clamp cursor to valid range after potential list shrinkage + if (m_networkIdRefreshCursor >= total) { + m_networkIdRefreshCursor = 0; + } + + for (int attempt = 0; + attempt < total && refreshed < kNetworkIdRefreshBatchSize; + ++attempt) + { + const int idx = (m_networkIdRefreshCursor + attempt) % total; + uint64_t addr = validAddresses[static_cast(idx)]; + + auto it = m_metadataByAddress.find(addr); + if (it == m_metadataByAddress.end()) continue; + + IdentityMetadata& meta = it->second; + if (now - meta.lastNetworkIdReadTime >= m_networkIdRefreshInterval) { + RefreshNetworkId(mem, pid, addr, meta); + ++refreshed; + } + } + + m_networkIdRefreshCursor = + (m_networkIdRefreshCursor + refreshed) % total; + } + + // ----------------------------------------------------------------- + // 8. Build result, deduplicate by NetworkId (or playerName when id==0) + // ----------------------------------------------------------------- + std::vector result; + result.reserve(validAddresses.size()); + + std::unordered_set seenNetworkIds; + std::unordered_set seenNames; + + for (uint64_t identityAddr : validAddresses) { + auto it = m_metadataByAddress.find(identityAddr); + if (it == m_metadataByAddress.end()) continue; + + const IdentityMetadata& meta = it->second; + + if (meta.networkId != 0) { + if (!seenNetworkIds.insert(meta.networkId).second) { + continue; // duplicate + } + } else { + // No network ID yet — deduplicate by name + if (meta.playerName.empty()) continue; + if (!seenNames.insert(meta.playerName).second) { + continue; + } + } + + DayZScoreboardPlayer player; + player.networkId = meta.networkId; + player.steamId = meta.steamId; + player.playerName = meta.playerName; + result.push_back(std::move(player)); + } + + // Sort by player name (case-sensitive, matches C# behaviour) + std::sort(result.begin(), result.end(), + [](const DayZScoreboardPlayer& a, const DayZScoreboardPlayer& b) { + return a.playerName < b.playerName; + }); + + players = std::move(result); + return true; +} + +// ------------------------------------------------------------------------- +// Reset +// ------------------------------------------------------------------------- + +void ClientScoreboardReader::Reset() +{ + m_metadataByAddress.clear(); + m_cachedResult.clear(); + m_networkIdRefreshCursor = 0; +} diff --git a/src/Readers/ClientScoreboardReader.h b/src/Readers/ClientScoreboardReader.h new file mode 100644 index 0000000..f451233 --- /dev/null +++ b/src/Readers/ClientScoreboardReader.h @@ -0,0 +1,64 @@ +#pragma once +#include +#include +#include +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" + +// ------------------------------------------------------------------------- +// ClientScoreboardReader +// Reads the client-side player scoreboard from the network manager. +// +// Strategy +// -------- +// - Player identity strings (steamId, playerName) are cached by identity +// pointer address: they are stable for the lifetime of a session. +// - NetworkIds are re-read in a round-robin fashion because the engine +// updates them after map-load. Up to 16 IDs are refreshed per call; +// the refresh interval is configurable (default 30 s). +// - The final result is de-duplicated by NetworkId (or by playerName when +// networkId == 0) and sorted by playerName. +// ------------------------------------------------------------------------- + +class ClientScoreboardReader { +public: + explicit ClientScoreboardReader(int refreshIntervalMs = 30000); + + /// Populate @p players with the current scoreboard state. + /// Returns false only when the fundamental scoreboard reads fail. + bool TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& players); + + /// Clear all cached identity metadata. Call on session restart. + void Reset(); + +private: + // Maximum number of identity slots in the scoreboard array + static constexpr int kScoreboardCapacity = 120; + static constexpr int kMaxPlayers = 128; + // How many stale NetworkIds to refresh per TryRead call + static constexpr int kNetworkIdRefreshBatchSize = 16; + + struct IdentityMetadata { + std::string steamId; + std::string playerName; + uint32_t networkId = 0; + std::chrono::steady_clock::time_point lastNetworkIdReadTime{}; + }; + + std::unordered_map m_metadataByAddress; + std::vector m_cachedResult; + int m_networkIdRefreshCursor = 0; + std::chrono::milliseconds m_networkIdRefreshInterval; + + /// Read or refresh the NetworkId for a single identity entry. + void RefreshNetworkId(VmmAccessor& mem, + uint32_t pid, + uint64_t identityAddr, + IdentityMetadata& meta); +}; diff --git a/src/Readers/EntityCategoryProjector.cpp b/src/Readers/EntityCategoryProjector.cpp new file mode 100644 index 0000000..c604e35 --- /dev/null +++ b/src/Readers/EntityCategoryProjector.cpp @@ -0,0 +1,298 @@ +#include "Readers/EntityCategoryProjector.h" + +#include +#include +#include + +// Returns true if the player entity itself looks like an admin-invisible entity. +// Currently: entity has no model at all (empty model name = never a real survivor). +static bool IsAdminEntityModel(const std::string& modelName) +{ + return modelName.empty(); +} + +// ------------------------------------------------------------------------- +// EnumerateEntities +// Merges near + far + slow lists, deduplicates by address, and returns a +// stable-sorted flat vector. +// ------------------------------------------------------------------------- + +std::vector +EntityCategoryProjector::EnumerateEntities( + const std::vector& near, + const std::vector& far, + const std::vector& slow) +{ + std::unordered_set seen; + std::vector result; + + // Reserve a reasonable upper bound to avoid repeated reallocations. + result.reserve(near.size() + far.size() + slow.size()); + + // Lambda: insert an EntityProjection from a near or far entry (has networkId). + auto addWithId = [&](uint64_t address, uint32_t networkId, + const std::optional& pos, + const std::optional& heading, + const std::string& entityName, + const std::string& typeName, + const std::string& configName, + const std::string& modelName) + { + if (address == 0) return; + if (!seen.insert(address).second) return; // duplicate + + EntityProjection ep; + ep.address = address; + ep.networkId = networkId; + ep.position = pos; + ep.headingDegrees = heading; + ep.entityName = entityName; + ep.typeName = typeName; + ep.configName = configName; + ep.modelName = modelName; + result.push_back(std::move(ep)); + }; + + for (const auto& e : near) { + addWithId(e.address, e.networkId, e.position, e.headingDegrees, + e.entityName, e.typeName, e.configName, e.modelName); + } + + for (const auto& e : far) { + addWithId(e.address, e.networkId, e.position, e.headingDegrees, + e.entityName, e.typeName, e.configName, e.modelName); + } + + // Slow entries have no networkId. + for (const auto& e : slow) { + if (e.address == 0) continue; + if (!seen.insert(e.address).second) continue; + + EntityProjection ep; + ep.address = e.address; + ep.networkId = 0; + ep.position = e.position; + ep.headingDegrees = e.headingDegrees; + ep.entityName = e.entityName; + ep.typeName = e.typeName; + ep.configName = e.configName; + ep.modelName = e.modelName; + result.push_back(std::move(ep)); + } + + // Stable sort by (entityName, address) for deterministic output. + std::sort(result.begin(), result.end(), + [](const EntityProjection& a, const EntityProjection& b) { + if (a.entityName != b.entityName) return a.entityName < b.entityName; + return a.address < b.address; + }); + + return result; +} + +// ------------------------------------------------------------------------- +// IsKnownCategoryType +// ------------------------------------------------------------------------- + +bool EntityCategoryProjector::IsKnownCategoryType(const std::string& typeName) { + return typeName == kTypePlayer || + typeName == kTypeAnimal || + typeName == kTypeZombie || + typeName == kTypeBoat || + typeName == kTypeCar || + typeName == kTypeHeli || + typeName == kTypePlane; +} + +// ------------------------------------------------------------------------- +// GetVehicleKind +// ------------------------------------------------------------------------- + +std::optional +EntityCategoryProjector::GetVehicleKind(const std::string& typeName) { + if (typeName == kTypeCar) return VehicleKind::Car; + if (typeName == kTypeBoat) return VehicleKind::Boat; + if (typeName == kTypeHeli) return VehicleKind::Helicopter; + if (typeName == kTypePlane)return VehicleKind::Plane; + return std::nullopt; +} + +// ------------------------------------------------------------------------- +// BuildPlayers +// ------------------------------------------------------------------------- + +std::vector EntityCategoryProjector::BuildPlayers( + const std::vector& near, + const std::vector& far, + const std::vector& slow, + const std::unordered_map& scoreboardNames, + std::function deadResolver, + std::function heldItemResolver, + std::function healthResolver, + std::function adminResolver) +{ + auto all = EnumerateEntities(near, far, slow); + + std::vector result; + result.reserve(all.size()); + + for (const auto& ep : all) { + if (ep.typeName != kTypePlayer) continue; + + DayZPlayerEntry entry; + entry.address = ep.address; + entry.networkId = ep.networkId; + entry.position = ep.position; + entry.headingDegrees = ep.headingDegrees; + entry.typeName = ep.typeName; + entry.configName = ep.configName; + entry.modelName = ep.modelName; + // Entity has no model → almost certainly admin-invisible; otherwise check clothes. + entry.isAdmin = IsAdminEntityModel(ep.modelName) + || (adminResolver && adminResolver(ep.address)); + + // Nickname from scoreboard (keyed by networkId). + if (ep.networkId != 0) { + auto it = scoreboardNames.find(ep.networkId); + if (it != scoreboardNames.end()) { + entry.nickname = it->second; + } + } + + // Dead state, held item, and health — resolved via caller-provided callbacks. + if (deadResolver) entry.isDead = deadResolver(ep.address); + if (heldItemResolver)entry.itemInHands = heldItemResolver(ep.address); + if (healthResolver) entry.health = healthResolver(ep.address); + + result.push_back(std::move(entry)); + } + + return result; +} + +// ------------------------------------------------------------------------- +// BuildAnimals +// ------------------------------------------------------------------------- + +std::vector EntityCategoryProjector::BuildAnimals( + const std::vector& near, + const std::vector& far, + const std::vector& slow) +{ + auto all = EnumerateEntities(near, far, slow); + + std::vector result; + result.reserve(all.size()); + + for (const auto& ep : all) { + if (ep.typeName != kTypeAnimal) continue; + + DayZAnimalEntry entry; + entry.address = ep.address; + entry.position = ep.position; + entry.headingDegrees = ep.headingDegrees; + entry.entityName = ep.entityName; + entry.typeName = ep.typeName; + entry.configName = ep.configName; + entry.modelName = ep.modelName; + result.push_back(std::move(entry)); + } + + return result; +} + +// ------------------------------------------------------------------------- +// BuildZombies +// ------------------------------------------------------------------------- + +std::vector EntityCategoryProjector::BuildZombies( + const std::vector& near, + const std::vector& far, + const std::vector& slow) +{ + auto all = EnumerateEntities(near, far, slow); + + std::vector result; + result.reserve(all.size()); + + for (const auto& ep : all) { + if (ep.typeName != kTypeZombie) continue; + + DayZZombieEntry entry; + entry.address = ep.address; + entry.position = ep.position; + entry.headingDegrees = ep.headingDegrees; + entry.entityName = ep.entityName; + entry.typeName = ep.typeName; + entry.configName = ep.configName; + entry.modelName = ep.modelName; + result.push_back(std::move(entry)); + } + + return result; +} + +// ------------------------------------------------------------------------- +// BuildCarsAndBoats +// ------------------------------------------------------------------------- + +std::vector EntityCategoryProjector::BuildCarsAndBoats( + const std::vector& near, + const std::vector& far, + const std::vector& slow) +{ + auto all = EnumerateEntities(near, far, slow); + + std::vector result; + result.reserve(all.size()); + + for (const auto& ep : all) { + auto kind = GetVehicleKind(ep.typeName); + if (!kind.has_value()) continue; + + DayZCarAndBoatEntry entry; + entry.address = ep.address; + entry.position = ep.position; + entry.headingDegrees = ep.headingDegrees; + entry.entityName = ep.entityName; + entry.typeName = ep.typeName; + entry.configName = ep.configName; + entry.modelName = ep.modelName; + entry.kind = *kind; + result.push_back(std::move(entry)); + } + + return result; +} + +// ------------------------------------------------------------------------- +// BuildOtherEntities +// ------------------------------------------------------------------------- + +std::vector EntityCategoryProjector::BuildOtherEntities( + const std::vector& near, + const std::vector& far, + const std::vector& slow) +{ + auto all = EnumerateEntities(near, far, slow); + + std::vector result; + result.reserve(all.size()); + + for (const auto& ep : all) { + // Skip entities that belong to an explicitly-handled category. + if (IsKnownCategoryType(ep.typeName)) continue; + + DayZOtherEntityEntry entry; + entry.address = ep.address; + entry.position = ep.position; + entry.headingDegrees = ep.headingDegrees; + entry.entityName = ep.entityName; + entry.typeName = ep.typeName; + entry.configName = ep.configName; + entry.modelName = ep.modelName; + result.push_back(std::move(entry)); + } + + return result; +} diff --git a/src/Readers/EntityCategoryProjector.h b/src/Readers/EntityCategoryProjector.h new file mode 100644 index 0000000..67456bc --- /dev/null +++ b/src/Readers/EntityCategoryProjector.h @@ -0,0 +1,93 @@ +#pragma once +#include +#include +#include +#include +#include + +#include "Core/Models.h" + +// ------------------------------------------------------------------------- +// EntityCategoryProjector +// Merges the three entity lists (near / far / slow) and projects them into +// typed category vectors. All methods are static — no instance state. +// ------------------------------------------------------------------------- + +class EntityCategoryProjector { +public: + // ------------------------------------------------------------------ + // Public projection methods + // ------------------------------------------------------------------ + + static std::vector BuildPlayers( + const std::vector& near, + const std::vector& far, + const std::vector& slow, + const std::unordered_map& scoreboardNames, + std::function deadResolver, + std::function heldItemResolver, + std::function healthResolver, + std::function adminResolver = nullptr); + + static std::vector BuildAnimals( + const std::vector& near, + const std::vector& far, + const std::vector& slow); + + static std::vector BuildZombies( + const std::vector& near, + const std::vector& far, + const std::vector& slow); + + static std::vector BuildCarsAndBoats( + const std::vector& near, + const std::vector& far, + const std::vector& slow); + + static std::vector BuildOtherEntities( + const std::vector& near, + const std::vector& far, + const std::vector& slow); + +private: + // ------------------------------------------------------------------ + // Unified flattened view of one entity from any list + // ------------------------------------------------------------------ + struct EntityProjection { + uint64_t address = 0; + uint32_t networkId = 0; + std::optional position; + std::optional headingDegrees; + std::string entityName; + std::string typeName; + std::string configName; + std::string modelName; + }; + + // ------------------------------------------------------------------ + // Internal helpers + // ------------------------------------------------------------------ + + /// Merge all three lists, deduplicate by address, and sort by + /// (entityName, address) for deterministic ordering. + static std::vector EnumerateEntities( + const std::vector& near, + const std::vector& far, + const std::vector& slow); + + /// Returns true if typeName belongs to one of the explicitly-handled + /// categories (player, animal, zombie, vehicle). + static bool IsKnownCategoryType(const std::string& typeName); + + /// Returns the VehicleKind for known vehicle type names, or nullopt. + static std::optional GetVehicleKind(const std::string& typeName); + + // Type-name constants + static constexpr const char* kTypePlayer = "dayzplayer"; + static constexpr const char* kTypeAnimal = "dayzanimal"; + static constexpr const char* kTypeZombie = "dayzinfected"; + static constexpr const char* kTypeBoat = "boat"; + static constexpr const char* kTypeCar = "car"; + static constexpr const char* kTypeHeli = "helicopter"; + static constexpr const char* kTypePlane = "plane"; +}; diff --git a/src/Readers/EntityTypeCache.cpp b/src/Readers/EntityTypeCache.cpp new file mode 100644 index 0000000..f046575 --- /dev/null +++ b/src/Readers/EntityTypeCache.cpp @@ -0,0 +1,204 @@ +#include "Readers/EntityTypeCache.h" + +#include +#include +#include + +#include "Offsets.h" +#include "Memory/MemoryValidation.h" + +// ------------------------------------------------------------------------- +// FormatEntityName +// ------------------------------------------------------------------------- + +std::string FormatEntityName(const std::string& raw) +{ + if (raw.empty()) return raw; + + // Strip known prefixes (case-sensitive — DayZ uses "Dayz_" and "DayZ_") + std::string s = raw; + for (const char* prefix : { "DayZ_", "Dayz_", "dayz_", "DAYZ_" }) { + size_t len = std::strlen(prefix); + if (s.size() > len && s.compare(0, len, prefix) == 0) { + s = s.substr(len); + break; + } + } + + // Split PascalCase: insert space before an uppercase letter that is + // preceded by a lowercase letter or digit. + std::string result; + result.reserve(s.size() + 8); + for (size_t i = 0; i < s.size(); ++i) { + unsigned char c = static_cast(s[i]); + if (i > 0 && std::isupper(c)) { + unsigned char prev = static_cast(s[i - 1]); + if (std::islower(prev) || std::isdigit(prev)) + result += ' '; + } + result += static_cast(c == '_' ? ' ' : c); + } + + // Collapse multiple consecutive spaces (e.g. from "CQB_Rifle" → "CQB Rifle") + std::string out; + out.reserve(result.size()); + bool prevSpace = false; + for (char c : result) { + if (c == ' ') { if (!prevSpace) { out += ' '; prevSpace = true; } } + else { out += c; prevSpace = false; } + } + // Trim leading/trailing space + size_t start = out.find_first_not_of(' '); + size_t end = out.find_last_not_of(' '); + return (start == std::string::npos) ? "" : out.substr(start, end - start + 1); +} + +// ------------------------------------------------------------------------- +// SanitizeEntityString +// ------------------------------------------------------------------------- + +std::string SanitizeEntityString(const std::string& value) +{ + if (value.empty()) return {}; + + // Reject strings containing unwanted control characters + for (unsigned char c : value) { + if (c < 0x20 && c != '\t' && c != '\r' && c != '\n') { + return {}; + } + } + + // Count "readable" characters: letters, digits, whitespace, and common + // punctuation used in DayZ type names. + int readableCount = 0; + for (unsigned char c : value) { + if (std::isalpha(c) || + std::isdigit(c) || + std::isspace(c) || + c == '.' || c == ',' || c == ':' || c == ';' || + c == '-' || c == '_' || c == '+' || c == '/' || + c == '\\' || c == '(' || c == ')' || c == '[' || + c == ']' || c == '{' || c == '}' || c == '#') + { + ++readableCount; + } + } + + // Require readableCount * 2 >= length (i.e. >= 50 % readable) + if (readableCount * 2 < static_cast(value.size())) { + return {}; + } + + return value; +} + +// ------------------------------------------------------------------------- +// GetBestEntityName +// ------------------------------------------------------------------------- + +std::string GetBestEntityName(const std::string& typeName, + const std::string& configName, + const std::string& cleanName, + const std::string& modelName, + uint64_t entityAddress) +{ + if (!typeName.empty()) return typeName; + if (!configName.empty()) return configName; + if (!cleanName.empty()) return cleanName; + if (!modelName.empty()) return modelName; + + // Last resort: hex address + char buf[32]; + std::snprintf(buf, sizeof(buf), "0x%016llX", + static_cast(entityAddress)); + return buf; +} + +// ------------------------------------------------------------------------- +// ReadEntityTypeString +// ------------------------------------------------------------------------- + +std::string ReadEntityTypeString(VmmAccessor& mem, + uint32_t pid, + uint64_t typeAddress, + uint64_t offset) +{ + uint64_t strPtr = 0; + if (!mem.TryReadPointer(pid, typeAddress + offset, strPtr)) { + return {}; + } + return mem.ReadArmaString(pid, strPtr); +} + +// ------------------------------------------------------------------------- +// ReadEntityTypeMetadata +// ------------------------------------------------------------------------- + +EntityTypeMetadata ReadEntityTypeMetadata(VmmAccessor& mem, + uint32_t pid, + uint64_t typeAddress) +{ + EntityTypeMetadata meta; + + meta.typeName = SanitizeEntityString( + ReadEntityTypeString(mem, pid, typeAddress, Offsets::EntityType::TypeName)); + meta.configName = SanitizeEntityString( + ReadEntityTypeString(mem, pid, typeAddress, Offsets::EntityType::ConfigName)); + meta.cleanName = SanitizeEntityString( + ReadEntityTypeString(mem, pid, typeAddress, Offsets::EntityType::CleanName)); + meta.modelName = SanitizeEntityString( + ReadEntityTypeString(mem, pid, typeAddress, Offsets::EntityType::ModelName)); + + return meta; +} + +// ------------------------------------------------------------------------- +// ReadEntityTransform +// ------------------------------------------------------------------------- + +bool ReadEntityTransform(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t entityAddress, + std::optional& position, + std::optional& headingDegrees) +{ + const uint32_t pid = session.processId; + + // VisualState pointer + uint64_t visualStateAddr = 0; + if (!mem.TryReadPointer(pid, + entityAddress + Offsets::Common::VisualState, + visualStateAddr)) + { + return false; + } + + // Position + Vector3 pos{}; + if (!mem.TryReadValue(pid, + visualStateAddr + Offsets::Common::Position, + pos)) + { + return false; + } + + if (!MemoryValidation::IsValidVector(pos)) { + return false; + } + + position = pos; + + // Heading (non-fatal if direction reads fail) + float dirX = 0.0f; + float dirY = 0.0f; + if (mem.TryReadValue(pid, visualStateAddr + Offsets::Common::DirectionX, dirX) && + mem.TryReadValue(pid, visualStateAddr + Offsets::Common::DirectionY, dirY)) + { + float heading = 0.0f; + if (MemoryValidation::TryGetCorrectedHeadingFromDirection(dirX, dirY, heading)) { + headingDegrees = heading; + } + } + + return true; +} diff --git a/src/Readers/EntityTypeCache.h b/src/Readers/EntityTypeCache.h new file mode 100644 index 0000000..06a2ee9 --- /dev/null +++ b/src/Readers/EntityTypeCache.h @@ -0,0 +1,91 @@ +#pragma once +#include +#include +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" + +// ------------------------------------------------------------------------- +// EntityTypeMetadata +// All type-level strings read from the entity's type object. +// ------------------------------------------------------------------------- + +struct EntityTypeMetadata { + std::string typeName; + std::string configName; + std::string cleanName; + std::string modelName; +}; + +// ------------------------------------------------------------------------- +// EntityTypeCache +// In-process cache keyed by type object address. +// ------------------------------------------------------------------------- + +class EntityTypeCache { + std::unordered_map m_cache; +public: + /// Return true (and populate @p out) if the address is already cached. + bool GetOrRead(uint64_t typeAddress, EntityTypeMetadata& out) { + auto it = m_cache.find(typeAddress); + if (it != m_cache.end()) { out = it->second; return true; } + return false; + } + + void Set(uint64_t typeAddress, const EntityTypeMetadata& meta) { + m_cache[typeAddress] = meta; + } + + void Clear() { m_cache.clear(); } +}; + +// ------------------------------------------------------------------------- +// Free functions implemented in EntityTypeCache.cpp +// ------------------------------------------------------------------------- + +/// Format a raw PascalCase entity name into a human-readable string. +/// Strips prefixes like "Dayz_", splits on capital letter boundaries, +/// and replaces underscores with spaces. +/// e.g. "KizlyarKnife" → "Kizlyar Knife", "CivilianSedan" → "Civilian Sedan" +std::string FormatEntityName(const std::string& raw); + +/// Sanitize an entity type string read from memory. +/// Returns empty string if the value contains control characters or the +/// fraction of readable characters (letters/digits/whitespace/punctuation) is +/// below 50 %. +std::string SanitizeEntityString(const std::string& value); + +/// Pick the best display name from the four candidate strings. +/// Falls back through typeName -> configName -> cleanName -> modelName, then +/// to a hex address string if all are empty. +std::string GetBestEntityName(const std::string& typeName, + const std::string& configName, + const std::string& cleanName, + const std::string& modelName, + uint64_t entityAddress); + +/// Read a single type string: dereference ptr at typeAddress+offset, then +/// call ReadArmaString on the resulting pointer. +std::string ReadEntityTypeString(VmmAccessor& mem, + uint32_t pid, + uint64_t typeAddress, + uint64_t offset); + +/// Read all four type strings for a type object and return the populated +/// EntityTypeMetadata. +EntityTypeMetadata ReadEntityTypeMetadata(VmmAccessor& mem, + uint32_t pid, + uint64_t typeAddress); + +/// Read the entity transform (position + heading) from the entity's +/// VisualState. Both outputs are optional; if a read or validation step +/// fails the corresponding optional remains empty. +/// Returns true if at least position was read successfully. +bool ReadEntityTransform(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t entityAddress, + std::optional& position, + std::optional& headingDegrees); diff --git a/src/Readers/FarEntityListReader.cpp b/src/Readers/FarEntityListReader.cpp new file mode 100644 index 0000000..3dfa8ab --- /dev/null +++ b/src/Readers/FarEntityListReader.cpp @@ -0,0 +1,417 @@ +#include "Readers/FarEntityListReader.h" + +#include +#include + +#include "Offsets.h" +#include "RuntimeOffsets.h" +#include "Memory/MemoryValidation.h" +#include "Memory/VmmAccessor.h" + +// ------------------------------------------------------------------------- +// Constructor +// ------------------------------------------------------------------------- + +FarEntityListReader::FarEntityListReader(int batchSize, + int readBudgetMs, + int staleAfterMs) + : m_batchSize(batchSize) + , m_readBudget(readBudgetMs) + , m_staleAfter(staleAfterMs) +{} + +// ------------------------------------------------------------------------- +// TryRead +// ------------------------------------------------------------------------- + +bool FarEntityListReader::TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries) +{ + const uint32_t pid = session.processId; + + // 1. Far-entity list pointer + uint64_t farListPtr = 0; + if (!mem.TryReadPointer(pid, + session.worldAddress + RuntimeOffsets::World::FarEntityList, + farListPtr)) + { + return false; + } + + // 2. Table size + int32_t rawCount = 0; + if (!mem.TryReadValue(pid, + session.worldAddress + RuntimeOffsets::World::FarTableSize, + rawCount)) + { + return false; + } + + const int count = std::clamp(rawCount, 0, kMaxEntities); + + // 3. If cursor has reached the end of the table, complete the current scan + if (m_cursorOffset >= count * 8) { + auto now = std::chrono::steady_clock::now(); + CompleteScan(now); + PruneExpiredEntities(now); + entries = BuildResult(); + return true; + } + + // 4. Calculate chunk: how many pointer-sized slots remain vs batch limit + const int remaining = count - (m_cursorOffset / 8); + const int chunkEntries = std::min(remaining, m_batchSize); + + // 5. Bulk-read chunk of pointers + const size_t chunkBytes = static_cast(chunkEntries) * 8; + std::vector tableBytes; + tableBytes.reserve(chunkBytes); + if (!mem.ReadBytes(pid, farListPtr + static_cast(m_cursorOffset), + chunkBytes, tableBytes)) + { + // On failure advance cursor to avoid getting stuck + m_cursorOffset += static_cast(chunkBytes); + entries = BuildResult(); + return true; + } + + // 6. Process entities within the read budget + const auto batchStart = std::chrono::steady_clock::now(); + + for (int i = 0; i < chunkEntries; ++i) { + uint64_t entityAddr = 0; + std::memcpy(&entityAddr, + tableBytes.data() + static_cast(i) * 8, + sizeof(uint64_t)); + + if (MemoryValidation::IsValidUserAddress(entityAddr)) { + auto now = std::chrono::steady_clock::now(); + ProcessEntity(mem, session, entityAddr, now); + + // Check time budget after each entity + auto elapsed = std::chrono::duration_cast( + std::chrono::steady_clock::now() - batchStart); + if (elapsed >= m_readBudget) { + // Advance cursor to account for entities processed so far + m_cursorOffset += (i + 1) * 8; + PruneExpiredEntities(std::chrono::steady_clock::now()); + entries = BuildResult(); + return true; + } + } + } + + // 7. Advance cursor by the full chunk + m_cursorOffset += chunkEntries * 8; + + // 8. Prune stale entries + auto now = std::chrono::steady_clock::now(); + PruneExpiredEntities(now); + + // 9. If cursor reached end, complete scan + if (m_cursorOffset >= count * 8) { + CompleteScan(now); + } + + entries = BuildResult(); + return true; +} + +// ------------------------------------------------------------------------- +// Reset +// ------------------------------------------------------------------------- + +void FarEntityListReader::Reset() +{ + m_entities.clear(); + m_typeCache.Clear(); + m_cachedResult.clear(); + m_sortedAddresses.clear(); + m_cursorOffset = 0; + m_scanGeneration = 1; + m_hasCompletedScan = false; + m_sortDirty = true; + m_resultDirty = true; +} + +// ------------------------------------------------------------------------- +// ProcessEntity +// ------------------------------------------------------------------------- + +void FarEntityListReader::ProcessEntity(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t entityAddr, + std::chrono::steady_clock::time_point now) +{ + const uint32_t pid = session.processId; + + // Read entity type pointer + uint64_t typeAddr = 0; + if (!mem.TryReadPointer(pid, entityAddr + Offsets::Common::Type, typeAddr)) { + MarkTypeReadFailure(entityAddr, nullptr, now); + return; + } + + // Look up or read type metadata + EntityTypeMetadata typeMeta; + if (!m_typeCache.GetOrRead(typeAddr, typeMeta)) { + typeMeta = ReadEntityTypeMetadata(mem, pid, typeAddr); + if (typeMeta.typeName.empty() && typeMeta.configName.empty() && + typeMeta.cleanName.empty() && typeMeta.modelName.empty()) + { + // Type read produced nothing useful — track failure on cached entity + auto it = m_entities.find(entityAddr); + MarkTypeReadFailure(entityAddr, + (it != m_entities.end()) ? &it->second : nullptr, + now); + return; + } + m_typeCache.Set(typeAddr, typeMeta); + } + + // Network ID + uint32_t networkId = 0; + mem.TryReadValue(pid, entityAddr + Offsets::Network::EntityNetworkId, networkId); + + // Transform — use cached position/heading if the read fails. + // Also cache the VS pointer for use in RefreshPositions. + std::optional position; + std::optional heading; + + uint64_t vsAddr = 0; + mem.TryReadValue(pid, entityAddr + Offsets::Common::VisualState, vsAddr); + + bool transformOk = ReadEntityTransform(mem, session, entityAddr, position, heading); + + // Retrieve or create cached entry + auto& cached = m_entities[entityAddr]; + + if (vsAddr) cached.visualStateAddr = vsAddr; + + if (!transformOk && cached.entry.position.has_value()) { + position = cached.entry.position; + heading = cached.entry.headingDegrees; + } + + // Build display name + const std::string entityName = GetBestEntityName(typeMeta.typeName, + typeMeta.configName, + typeMeta.cleanName, + typeMeta.modelName, + entityAddr); + + // Update cached entry + cached.entry.address = entityAddr; + cached.entry.networkId = networkId; + cached.entry.position = position; + cached.entry.headingDegrees = heading; + cached.entry.entityName = entityName; + cached.entry.typeName = typeMeta.typeName; + cached.entry.configName = typeMeta.configName; + cached.entry.modelName = typeMeta.modelName; + cached.lastSeenGeneration = m_scanGeneration; + cached.failedTypeReads = 0; + + if (transformOk) { + cached.lastSuccessfulRead = now; + } + + m_resultDirty = true; +} + +// ------------------------------------------------------------------------- +// CompleteScan +// ------------------------------------------------------------------------- + +void FarEntityListReader::CompleteScan(std::chrono::steady_clock::time_point /*now*/) +{ + // Remove entities not seen in the current scan generation + for (auto it = m_entities.begin(); it != m_entities.end(); ) { + if (it->second.lastSeenGeneration != m_scanGeneration) { + it = m_entities.erase(it); + m_sortDirty = true; + m_resultDirty = true; + } else { + ++it; + } + } + + m_cursorOffset = 0; + m_hasCompletedScan = true; + ++m_scanGeneration; +} + +// ------------------------------------------------------------------------- +// PruneExpiredEntities +// ------------------------------------------------------------------------- + +void FarEntityListReader::PruneExpiredEntities(std::chrono::steady_clock::time_point now) +{ + for (auto it = m_entities.begin(); it != m_entities.end(); ) { + const auto age = std::chrono::duration_cast( + now - it->second.lastSuccessfulRead); + if (age > m_staleAfter) { + it = m_entities.erase(it); + m_sortDirty = true; + m_resultDirty = true; + } else { + ++it; + } + } +} + +// ------------------------------------------------------------------------- +// BuildResult +// ------------------------------------------------------------------------- + +std::vector& FarEntityListReader::BuildResult() +{ + if (!m_resultDirty) { + return m_cachedResult; + } + + // Rebuild sorted address list when topology changes + if (m_sortDirty) { + m_sortedAddresses.clear(); + m_sortedAddresses.reserve(m_entities.size()); + for (const auto& kv : m_entities) { + m_sortedAddresses.push_back(kv.first); + } + std::sort(m_sortedAddresses.begin(), m_sortedAddresses.end(), + [this](uint64_t a, uint64_t b) { + const auto& ea = m_entities.at(a).entry; + const auto& eb = m_entities.at(b).entry; + if (ea.entityName != eb.entityName) + return ea.entityName < eb.entityName; + return a < b; + }); + m_sortDirty = false; + } + + m_cachedResult.clear(); + m_cachedResult.reserve(m_sortedAddresses.size()); + for (uint64_t addr : m_sortedAddresses) { + auto it = m_entities.find(addr); + if (it != m_entities.end()) { + m_cachedResult.push_back(it->second.entry); + } + } + + m_resultDirty = false; + return m_cachedResult; +} + +// ------------------------------------------------------------------------- +// RefreshPositions +// Two-pass scatter read: all VS pointers in pass A, all positions in pass B. +// Entities with a stale/unknown VS pointer fall back to a sequential re-read. +// ------------------------------------------------------------------------- + +void FarEntityListReader::RefreshPositions(VmmAccessor& mem, + const RuntimeSession& session) +{ + if (m_entities.empty()) return; + + const uint32_t pid = session.processId; + + // Collect entities that have a cached VS pointer and those that don't. + struct PosSlot { + uint64_t entityAddr; + uint64_t vsAddr; + Vector3 posOut; + bool ok = false; + }; + + std::vector slots; + slots.reserve(m_entities.size()); + + // Pass A: scatter-read VS pointers for entities whose cached value is 0. + { + std::vector vsScatter; + // We need a stable backing store for the scatter buffers. + // Use a parallel vector of uint64_t. + std::vector vsBufs(m_entities.size(), 0); + int idx = 0; + for (auto& [addr, cached] : m_entities) { + PosSlot s; + s.entityAddr = addr; + s.vsAddr = cached.visualStateAddr; + slots.push_back(s); + + if (cached.visualStateAddr == 0) { + vsScatter.push_back({ addr + Offsets::Common::VisualState, + &vsBufs[idx], sizeof(uint64_t) }); + } + ++idx; + } + + if (!vsScatter.empty()) { + mem.ScatterRead(pid, vsScatter); + } + + // Fill cached VS pointers from scatter result. + idx = 0; + for (auto& [addr, cached] : m_entities) { + if (cached.visualStateAddr == 0 && vsBufs[idx] != 0) { + cached.visualStateAddr = vsBufs[idx]; + slots[idx].vsAddr = vsBufs[idx]; + } + ++idx; + } + } + + // Pass B: scatter-read positions for all slots that have a VS pointer. + { + std::vector posScatter; + posScatter.reserve(slots.size()); + + for (auto& slot : slots) { + if (slot.vsAddr == 0) continue; + posScatter.push_back({ slot.vsAddr + Offsets::Common::Position, + &slot.posOut, sizeof(Vector3) }); + } + + if (!posScatter.empty()) { + mem.ScatterRead(pid, posScatter); + } + } + + // Apply results: update position on cached entities. + auto now = std::chrono::steady_clock::now(); + for (auto& slot : slots) { + if (slot.vsAddr == 0) continue; + if (!MemoryValidation::IsValidVector(slot.posOut)) { + // Possibly stale VS pointer — invalidate so pass A re-reads it next time. + auto it = m_entities.find(slot.entityAddr); + if (it != m_entities.end()) + it->second.visualStateAddr = 0; + continue; + } + + auto it = m_entities.find(slot.entityAddr); + if (it != m_entities.end()) { + it->second.entry.position = slot.posOut; + it->second.lastSuccessfulRead = now; + m_resultDirty = true; + } + } +} + +// ------------------------------------------------------------------------- +// MarkTypeReadFailure +// ------------------------------------------------------------------------- + +void FarEntityListReader::MarkTypeReadFailure(uint64_t entityAddr, + CachedEntity* cached, + std::chrono::steady_clock::time_point now) +{ + if (cached == nullptr) { + // Entity not yet in cache — nothing more to do + return; + } + ++cached->failedTypeReads; + + // Still mark it seen this generation so it isn't pruned by CompleteScan + cached->lastSeenGeneration = m_scanGeneration; +} diff --git a/src/Readers/FarEntityListReader.h b/src/Readers/FarEntityListReader.h new file mode 100644 index 0000000..82bcd5b --- /dev/null +++ b/src/Readers/FarEntityListReader.h @@ -0,0 +1,87 @@ +#pragma once +#include +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" +#include "Readers/EntityTypeCache.h" + +// ------------------------------------------------------------------------- +// FarEntityListReader +// Incremental reader for the world's far-entity pointer table. +// Processes entities in time-budgeted batches across calls, maintains a +// cached result set, and prunes stale entries by timestamp. +// ------------------------------------------------------------------------- + +class FarEntityListReader { +public: + FarEntityListReader(int batchSize = 64, + int readBudgetMs = 5, + int staleAfterMs = 5000); + + /// Incrementally read far entities into @p entries. + /// Returns false only when the table pointer itself cannot be read. + bool TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries); + + /// Position-only scatter refresh: re-reads positions for all entities + /// already known from previous TryRead calls without advancing the cursor. + /// Call this every frame / playersRefreshMs for smooth movement. + void RefreshPositions(VmmAccessor& mem, const RuntimeSession& session); + + /// Reset all state. Call when the game session restarts. + void Reset(); + +private: + // ------------------------------------------------------------------ + // Per-entity bookkeeping + // ------------------------------------------------------------------ + struct CachedEntity { + DayZFarEntityEntry entry; + uint64_t visualStateAddr = 0; // cached for RefreshPositions + int lastSeenGeneration = 0; + std::chrono::steady_clock::time_point lastSuccessfulRead; + int failedTypeReads = 0; + }; + + // ------------------------------------------------------------------ + // Internal helpers + // ------------------------------------------------------------------ + void ProcessEntity(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t entityAddr, + std::chrono::steady_clock::time_point now); + + void CompleteScan(std::chrono::steady_clock::time_point now); + + void PruneExpiredEntities(std::chrono::steady_clock::time_point now); + + std::vector& BuildResult(); + + void MarkTypeReadFailure(uint64_t entityAddr, + CachedEntity* cached, + std::chrono::steady_clock::time_point now); + + // ------------------------------------------------------------------ + // State + // ------------------------------------------------------------------ + std::unordered_map m_entities; + EntityTypeCache m_typeCache; + std::vector m_cachedResult; + std::vector m_sortedAddresses; + + int m_cursorOffset = 0; + int m_scanGeneration = 1; + bool m_hasCompletedScan = false; + bool m_sortDirty = true; + bool m_resultDirty = true; + + int m_batchSize; + std::chrono::milliseconds m_readBudget; + std::chrono::milliseconds m_staleAfter; + + static constexpr int kMaxEntities = 4096; +}; diff --git a/src/Readers/ItemFilterCatalog.cpp b/src/Readers/ItemFilterCatalog.cpp new file mode 100644 index 0000000..d5e53c8 --- /dev/null +++ b/src/Readers/ItemFilterCatalog.cpp @@ -0,0 +1,271 @@ +#include "Readers/ItemFilterCatalog.h" + +#include +#include +#include +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include + +#include + +// ------------------------------------------------------------------------- +// Default config JSON written when item_filters.json is absent +// ------------------------------------------------------------------------- + +static constexpr const char* kDefaultConfigJson = R"({ + "isHouse": { + "desc": "Structures and storage", + "Color": "#06b6d4", + "ModelName": [ + "\\containers\\", + "\\camping\\", + "\\cooking\\" + ] + }, + "isWeapon": {"desc": "Weapons", "Color": "#f43f5e", "TypeName": "weapon"}, + "isAmmo": {"desc": "Ammo", "Color": "#f59e0b", "ModelName": "\\ammunition\\"}, + "isFood": {"desc": "Food and drinks", "Color": "#22c55e", "ModelName": ["\\food\\", "\\drinks\\"]}, + "isClothing": {"desc": "Clothing", "Color": "#eab308", "TypeName": "clothing"}, + "isBackpack": {"desc": "Backpacks", "Color": "#84cc16", "TypeName": "backpack"}, + "isMedical": {"desc": "Medical supplies", "Color": "#ec4899", "ModelName": "\\medical\\"}, + "isVehiclePart": {"desc": "Vehicle parts", "Color": "#0ea5e9", "TypeName": "carwheel"}, + "isTool": {"desc": "Tools", "Color": "#14b8a6", "ModelName": "\\tools\\"}, + "isCrafting": {"desc": "Crafting materials", "Color": "#c084fc", "ModelName": "\\crafting\\"}, + "isConsumables": {"desc": "Consumables", "Color": "#f97316", "ModelName": "\\consumables\\"}, + "isOptics": {"desc": "Optics", "Color": "#d946ef", "TypeName": "itemoptics"}, + "isMelee": {"desc": "Melee weapons", "Color": "#dc2626", "ModelName": "\\weapons\\melee\\"}, + "isWeaponAttachments": {"desc": "Weapon attachments", "Color": "#fbbf24", "ModelName": "weapons\\attachments\\"}, + "isExplosives": {"desc": "Explosives", "Color": "#fb923c", "ModelName": "\\explosives\\"}, + "isForBuilding": {"desc": "Base building", "Color": "#0891b2", "ModelName": "\\codelock\\"}, + "isOtherLoot": {"desc": "Other loot", "Color": "#64748b"} +})"; + +// ------------------------------------------------------------------------- +// Helpers: resolve exe-relative path +// ------------------------------------------------------------------------- + +static std::string GetExeDir() { + char buf[MAX_PATH] = {}; + GetModuleFileNameA(nullptr, buf, MAX_PATH); + std::filesystem::path p(buf); + return p.parent_path().string(); +} + +// ------------------------------------------------------------------------- +// Constructors +// ------------------------------------------------------------------------- + +ItemFilterCatalog::ItemFilterCatalog() + : m_configPath(GetExeDir() + "/config/item_filters.json") +{ + Load(); +} + +ItemFilterCatalog::ItemFilterCatalog(const std::string& configPath) + : m_configPath(configPath) +{ + Load(); +} + +// ------------------------------------------------------------------------- +// Load +// ------------------------------------------------------------------------- + +void ItemFilterCatalog::Load() { + namespace fs = std::filesystem; + + // Write default config if the file does not exist. + if (!fs::exists(m_configPath)) { + try { + fs::create_directories(fs::path(m_configPath).parent_path()); + } catch (const std::exception& e) { + std::cerr << "[ItemFilterCatalog] Could not create config directory: " + << e.what() << "\n"; + } + WriteDefaultConfig(); + } + + // Read and parse the JSON file. + std::ifstream ifs(m_configPath); + if (!ifs.is_open()) { + std::cerr << "[ItemFilterCatalog] Failed to open: " << m_configPath << "\n"; + return; + } + + nlohmann::json j; + try { + ifs >> j; + } catch (const nlohmann::json::parse_error& e) { + std::cerr << "[ItemFilterCatalog] JSON parse error in " << m_configPath + << ": " << e.what() << "\n"; + return; + } + + m_filters.clear(); + + // JSON object preserves insertion order via nlohmann's ordered_json — + // but we use the standard json type here, so iterate as-is. + for (auto& [key, val] : j.items()) { + ItemFilterDefinition def; + def.key = key; + + if (val.contains("desc") && val["desc"].is_string()) { + def.description = val["desc"].get(); + } + + if (val.contains("Color") && val["Color"].is_string()) { + def.color = val["Color"].get(); + } + + def.modelNames = NormalizeAll(ParseStringOrArray(val, "ModelName")); + def.configNames = NormalizeAll(ParseStringOrArray(val, "ConfigName")); + def.typeNames = NormalizeAll(ParseStringOrArray(val, "TypeName")); + def.names = NormalizeAll(ParseStringOrArray(val, "Name")); + + m_filters.push_back(std::move(def)); + } +} + +// ------------------------------------------------------------------------- +// WriteDefaultConfig +// ------------------------------------------------------------------------- + +void ItemFilterCatalog::WriteDefaultConfig() const { + std::ofstream ofs(m_configPath); + if (!ofs.is_open()) { + std::cerr << "[ItemFilterCatalog] Could not write default config to: " + << m_configPath << "\n"; + return; + } + ofs << kDefaultConfigJson; + std::cout << "[ItemFilterCatalog] Wrote default config to: " << m_configPath << "\n"; +} + +// ------------------------------------------------------------------------- +// Classify +// ------------------------------------------------------------------------- + +std::string ItemFilterCatalog::Classify(const std::string& entityName, + const std::string& typeName, + const std::string& configName, + const std::string& modelName) const +{ + const std::string normEntity = Normalize(entityName); + const std::string normType = Normalize(typeName); + const std::string normConfig = Normalize(configName); + const std::string normModel = Normalize(modelName); + + for (const auto& filter : m_filters) { + // Skip the fallback entry during forward scanning. + if (filter.key == kFallbackKey) { + continue; + } + + if (MatchesAny(filter.modelNames, normModel) || + MatchesAny(filter.configNames, normConfig) || + MatchesAny(filter.typeNames, normType) || + MatchesAny(filter.names, normEntity)) + { + return filter.key; + } + } + + return kFallbackKey; +} + +// ------------------------------------------------------------------------- +// MatchesAny +// ------------------------------------------------------------------------- + +bool ItemFilterCatalog::MatchesAny(const std::vector& patterns, + const std::string& value) +{ + if (patterns.empty() || value.empty()) return false; + + for (const auto& pattern : patterns) { + if (pattern.empty()) continue; + // Check if pattern is contained within value (substring match) + // or equals value exactly. + if (value.find(pattern) != std::string::npos) { + return true; + } + } + return false; +} + +// ------------------------------------------------------------------------- +// ParseStringOrArray +// ------------------------------------------------------------------------- + +std::vector ItemFilterCatalog::ParseStringOrArray( + const nlohmann::json& j, const std::string& key) +{ + if (!j.contains(key)) return {}; + + const auto& val = j[key]; + + if (val.is_string()) { + return { val.get() }; + } + + if (val.is_array()) { + std::vector result; + result.reserve(val.size()); + for (const auto& elem : val) { + if (elem.is_string()) { + result.push_back(elem.get()); + } + } + return result; + } + + return {}; +} + +// ------------------------------------------------------------------------- +// Normalize +// ------------------------------------------------------------------------- + +std::string ItemFilterCatalog::Normalize(const std::string& value) { + // Trim leading/trailing whitespace, then convert to lowercase. + auto start = value.begin(); + while (start != value.end() && std::isspace(static_cast(*start))) { + ++start; + } + auto end = value.end(); + while (end != start) { + --end; + if (!std::isspace(static_cast(*end))) { + ++end; + break; + } + } + + std::string result(start, end); + std::transform(result.begin(), result.end(), result.begin(), + [](unsigned char c) { return static_cast(std::tolower(c)); }); + return result; +} + +// ------------------------------------------------------------------------- +// NormalizeAll +// ------------------------------------------------------------------------- + +std::vector ItemFilterCatalog::NormalizeAll( + const std::vector& values) +{ + std::vector result; + result.reserve(values.size()); + for (const auto& v : values) { + result.push_back(Normalize(v)); + } + return result; +} diff --git a/src/Readers/ItemFilterCatalog.h b/src/Readers/ItemFilterCatalog.h new file mode 100644 index 0000000..b9ca0a0 --- /dev/null +++ b/src/Readers/ItemFilterCatalog.h @@ -0,0 +1,81 @@ +#pragma once +#include +#include +#include + +// nlohmann/json is included here only for the ParseStringOrArray helper. +// All other TUs that include this header will also pull in the JSON library, +// which is acceptable since nlohmann/json is header-only and already a project +// dependency. +#include + +struct ItemFilterDefinition { + std::string key; + std::string description; + std::optional color; + std::vector modelNames; + std::vector configNames; + std::vector typeNames; + std::vector names; +}; + +// ------------------------------------------------------------------------- +// ItemFilterCatalog +// Loads item-filter definitions from a JSON config file and classifies +// entities by matching their name/type/config/model strings against the +// patterns defined in each filter. +// ------------------------------------------------------------------------- + +class ItemFilterCatalog { +public: + /// Key used when no filter matches. + static constexpr const char* kFallbackKey = "isOtherLoot"; + + /// Default constructor — resolves config path relative to the executable. + ItemFilterCatalog(); + + /// Explicit config path constructor. + explicit ItemFilterCatalog(const std::string& configPath); + + // Non-copyable, movable + ItemFilterCatalog(const ItemFilterCatalog&) = delete; + ItemFilterCatalog& operator=(const ItemFilterCatalog&) = delete; + ItemFilterCatalog(ItemFilterCatalog&&) = default; + ItemFilterCatalog& operator=(ItemFilterCatalog&&) = default; + + /// Classify an entity against the loaded filters. + /// Returns the key of the first matching filter, or kFallbackKey. + std::string Classify(const std::string& entityName, + const std::string& typeName, + const std::string& configName, + const std::string& modelName) const; + + [[nodiscard]] const std::vector& GetFilters() const { + return m_filters; + } + +private: + std::vector m_filters; + std::string m_configPath; + + void Load(); + + /// Returns true if any pattern is a substring of (or equals) value + /// after both are normalised to lowercase. + static bool MatchesAny(const std::vector& patterns, + const std::string& value); + + /// Parse a JSON field that may be either a string or an array of strings. + /// Returns an empty vector when the key is absent. + static std::vector ParseStringOrArray(const nlohmann::json& j, + const std::string& key); + + /// Trim whitespace and convert to lowercase. + static std::string Normalize(const std::string& value); + + /// Apply Normalize to every element of a vector. + static std::vector NormalizeAll(const std::vector& values); + + /// Write a minimal default config to m_configPath. + void WriteDefaultConfig() const; +}; diff --git a/src/Readers/ItemListReader.cpp b/src/Readers/ItemListReader.cpp new file mode 100644 index 0000000..d754407 --- /dev/null +++ b/src/Readers/ItemListReader.cpp @@ -0,0 +1,379 @@ +#include "Readers/ItemListReader.h" + +#include +#include + +#include "Offsets.h" +#include "RuntimeOffsets.h" +#include "Memory/MemoryValidation.h" +#include "Readers/ItemFilterCatalog.h" + +// ------------------------------------------------------------------------- +// Constructor +// ------------------------------------------------------------------------- + +ItemListReader::ItemListReader(ItemFilterCatalog& catalog, + int batchSize, + int readBudgetMs, + int staleAfterMs) + : m_filterCatalog(catalog) + , m_batchSize(batchSize) + , m_readBudget(readBudgetMs) + , m_staleAfter(staleAfterMs) +{} + +// ------------------------------------------------------------------------- +// TryRead +// ------------------------------------------------------------------------- + +bool ItemListReader::TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& items) +{ + const uint32_t pid = session.processId; + + // 1. Item list pointer + uint64_t itemListPtr = 0; + if (!mem.TryReadPointer(pid, + session.worldAddress + RuntimeOffsets::World::ItemList, + itemListPtr)) + { + return false; + } + + // 2. Alloc count (total slots) and valid count (live items) + int32_t rawAllocCount = 0; + int32_t rawValidCount = 0; + if (!mem.TryReadValue(pid, + session.worldAddress + RuntimeOffsets::World::ItemTableAllocCount, + rawAllocCount)) + { + return false; + } + mem.TryReadValue(pid, + session.worldAddress + RuntimeOffsets::World::ItemTableValidCount, + rawValidCount); + + const int allocCount = std::clamp(rawAllocCount, 0, kMaxItems); + const int safeValidCount = std::clamp(rawValidCount, 0, allocCount); + + // 3. If cursor has reached the end, complete the current scan + if (m_cursorOffset >= allocCount) { + auto now = std::chrono::steady_clock::now(); + CompleteScan(now); + PruneExpiredItems(now); + items = BuildResult(); + return true; + } + + // 4. Chunk size: max(batchSize, kMinTableChunkEntries), clamped to remaining + const int remaining = allocCount - m_cursorOffset; + const int chunkEntries = std::min(remaining, + std::max(m_batchSize, kMinTableChunkEntries)); + + // 5. Bulk-read chunk — each slot is Offsets::SlowTable::EntrySize bytes + const size_t entrySize = static_cast(Offsets::SlowTable::EntrySize); + const size_t chunkBytes = static_cast(chunkEntries) * entrySize; + const uint64_t chunkAddr = itemListPtr + + static_cast(m_cursorOffset) * entrySize; + + std::vector tableBytes; + tableBytes.reserve(chunkBytes); + if (!mem.ReadBytes(pid, chunkAddr, chunkBytes, tableBytes)) { + m_cursorOffset += chunkEntries; + items = BuildResult(); + return true; + } + + // 6. Process entries within the read budget + const auto batchStart = std::chrono::steady_clock::now(); + bool budgetExceeded = false; + + for (int i = 0; i < chunkEntries; ++i) { + const uint8_t* slot = tableBytes.data() + static_cast(i) * entrySize; + + // Flag at offset 0 — uint16_t, valid == 1 + uint16_t flag = 0; + std::memcpy(&flag, slot, sizeof(uint16_t)); + if (flag != 1) continue; + + // Entity pointer at offset 0x8 + uint64_t itemAddr = 0; + std::memcpy(&itemAddr, + slot + static_cast(Offsets::SlowTable::EntryPointerOffset), + sizeof(uint64_t)); + + if (!MemoryValidation::IsValidUserAddress(itemAddr)) continue; + + ++m_validEntriesSeenInScan; + + auto now = std::chrono::steady_clock::now(); + ProcessItem(mem, session, itemAddr, now); + + // Stop early when all valid entries have been seen + if (safeValidCount > 0 && m_validEntriesSeenInScan >= safeValidCount) { + m_cursorOffset += (i + 1); + CompleteScan(now); + PruneExpiredItems(now); + items = BuildResult(); + return true; + } + + // Check time budget + auto elapsed = std::chrono::duration_cast( + std::chrono::steady_clock::now() - batchStart); + if (elapsed >= m_readBudget) { + m_cursorOffset += (i + 1); + budgetExceeded = true; + break; + } + } + + if (!budgetExceeded) { + m_cursorOffset += chunkEntries; + } + + auto now = std::chrono::steady_clock::now(); + PruneExpiredItems(now); + + if (m_cursorOffset >= allocCount) { + CompleteScan(now); + } + + items = BuildResult(); + return true; +} + +// ------------------------------------------------------------------------- +// Reset +// ------------------------------------------------------------------------- + +void ItemListReader::Reset() +{ + m_items.clear(); + m_typeCache.Clear(); + m_cachedResult.clear(); + m_sortedAddresses.clear(); + m_cursorOffset = 0; + m_validEntriesSeenInScan = 0; + m_scanGeneration = 1; + m_hasCompletedScan = false; + m_sortDirty = true; + m_resultDirty = true; +} + +// ------------------------------------------------------------------------- +// ProcessItem +// ------------------------------------------------------------------------- + +void ItemListReader::ProcessItem(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t itemAddr, + std::chrono::steady_clock::time_point now) +{ + const uint32_t pid = session.processId; + + // 1. Entity type pointer + uint64_t typeAddr = 0; + if (!mem.TryReadPointer(pid, itemAddr + Offsets::Common::Type, typeAddr)) { + auto it = m_items.find(itemAddr); + if (it != m_items.end()) { + ++it->second.failedTypeReads; + it->second.lastSeenGeneration = m_scanGeneration; + } + return; + } + + // 2. Type metadata (cached) + EntityTypeMetadata typeMeta; + if (!m_typeCache.GetOrRead(typeAddr, typeMeta)) { + typeMeta = ReadEntityTypeMetadata(mem, pid, typeAddr); + if (typeMeta.typeName.empty() && typeMeta.configName.empty() && + typeMeta.cleanName.empty() && typeMeta.modelName.empty()) + { + auto it = m_items.find(itemAddr); + if (it != m_items.end()) { + ++it->second.failedTypeReads; + it->second.lastSeenGeneration = m_scanGeneration; + } + return; + } + m_typeCache.Set(typeAddr, typeMeta); + } + + // 3. Position: VisualState ptr -> Vector3 at +Position + std::optional position; + uint64_t visualStateAddr = 0; + if (mem.TryReadPointer(pid, itemAddr + Offsets::Common::VisualState, visualStateAddr)) { + Vector3 pos{}; + if (mem.TryReadValue(pid, + visualStateAddr + Offsets::Common::Position, + pos) && + MemoryValidation::IsValidVector(pos)) + { + position = pos; + } + } + + // Use cached position if current read failed + auto& cached = m_items[itemAddr]; + if (!position.has_value() && cached.entry.position.has_value()) { + position = cached.entry.position; + ++cached.failedPositionReads; + } else if (!position.has_value()) { + ++cached.failedPositionReads; + } + + // 4. Build display name + const std::string entityName = GetBestItemName(typeMeta.cleanName, + typeMeta.configName, + typeMeta.modelName, + typeMeta.typeName, + itemAddr); + + // 5. Classify via filter catalog + const std::string filterKey = m_filterCatalog.Classify(entityName, + typeMeta.typeName, + typeMeta.configName, + typeMeta.modelName); + + // 6. Update cached entry + cached.entry.address = itemAddr; + cached.entry.position = position; + cached.entry.entityName = entityName; + cached.entry.cleanName = typeMeta.cleanName; + cached.entry.typeName = typeMeta.typeName; + cached.entry.configName = typeMeta.configName; + cached.entry.modelName = typeMeta.modelName; + cached.entry.filterKey = filterKey; + + cached.lastSeenGeneration = m_scanGeneration; + cached.lastSeenTime = now; + cached.failedTypeReads = 0; + + if (position.has_value()) { + cached.lastSuccessfulRead = now; + cached.failedPositionReads = 0; + } + + m_resultDirty = true; +} + +// ------------------------------------------------------------------------- +// CompleteScan +// ------------------------------------------------------------------------- + +void ItemListReader::CompleteScan(std::chrono::steady_clock::time_point /*now*/) +{ + for (auto it = m_items.begin(); it != m_items.end(); ) { + if (it->second.lastSeenGeneration != m_scanGeneration) { + it = m_items.erase(it); + m_sortDirty = true; + m_resultDirty = true; + } else { + ++it; + } + } + + m_cursorOffset = 0; + m_validEntriesSeenInScan = 0; + m_hasCompletedScan = true; + ++m_scanGeneration; +} + +// ------------------------------------------------------------------------- +// PruneExpiredItems +// ------------------------------------------------------------------------- + +void ItemListReader::PruneExpiredItems(std::chrono::steady_clock::time_point now) +{ + for (auto it = m_items.begin(); it != m_items.end(); ) { + const auto age = std::chrono::duration_cast( + now - it->second.lastSuccessfulRead); + if (age > m_staleAfter) { + it = m_items.erase(it); + m_sortDirty = true; + m_resultDirty = true; + } else { + ++it; + } + } +} + +// ------------------------------------------------------------------------- +// BuildResult +// ------------------------------------------------------------------------- + +std::vector& ItemListReader::BuildResult() +{ + if (!m_resultDirty) { + return m_cachedResult; + } + + if (m_sortDirty) { + m_sortedAddresses.clear(); + m_sortedAddresses.reserve(m_items.size()); + for (const auto& kv : m_items) { + m_sortedAddresses.push_back(kv.first); + } + std::sort(m_sortedAddresses.begin(), m_sortedAddresses.end(), + [this](uint64_t a, uint64_t b) { + const auto& ea = m_items.at(a).entry; + const auto& eb = m_items.at(b).entry; + if (ea.entityName != eb.entityName) + return ea.entityName < eb.entityName; + return a < b; + }); + m_sortDirty = false; + } + + m_cachedResult.clear(); + m_cachedResult.reserve(m_sortedAddresses.size()); + for (uint64_t addr : m_sortedAddresses) { + auto it = m_items.find(addr); + if (it != m_items.end()) { + m_cachedResult.push_back(it->second.entry); + } + } + + m_resultDirty = false; + return m_cachedResult; +} + +// ------------------------------------------------------------------------- +// GetBestItemName +// Priority: cleanName > configName > filename-from-modelName > typeName +// ------------------------------------------------------------------------- + +std::string ItemListReader::GetBestItemName(const std::string& cleanName, + const std::string& configName, + const std::string& modelName, + const std::string& typeName, + uint64_t itemAddress) +{ + if (!cleanName.empty()) return cleanName; + if (!configName.empty()) return configName; + + // Extract filename from model path (strip directory and extension) + if (!modelName.empty()) { + // Find last slash (forward or back) + const auto slashPos = modelName.find_last_of("/\\"); + std::string filename = (slashPos != std::string::npos) + ? modelName.substr(slashPos + 1) + : modelName; + // Strip extension + const auto dotPos = filename.rfind('.'); + if (dotPos != std::string::npos) { + filename = filename.substr(0, dotPos); + } + if (!filename.empty()) return filename; + } + + if (!typeName.empty()) return typeName; + + // Last resort: hex address + char buf[32]; + std::snprintf(buf, sizeof(buf), "0x%016llX", + static_cast(itemAddress)); + return buf; +} diff --git a/src/Readers/ItemListReader.h b/src/Readers/ItemListReader.h new file mode 100644 index 0000000..44d5fdb --- /dev/null +++ b/src/Readers/ItemListReader.h @@ -0,0 +1,97 @@ +#pragma once +#include +#include +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" +#include "Readers/EntityTypeCache.h" + +// Forward declaration — full definition lives in ItemFilterCatalog.h +class ItemFilterCatalog; + +// ------------------------------------------------------------------------- +// ItemListReader +// Incremental reader for the world's item slow-table. +// Uses the same SlowTable wire format (0x18-byte slots, flag at +0x0, +// entity pointer at +0x8) as SlowEntityListReader. +// Only items whose entity name passes the ItemFilterCatalog are kept. +// ------------------------------------------------------------------------- + +class ItemListReader { +public: + explicit ItemListReader(ItemFilterCatalog& catalog, + int batchSize = 64, + int readBudgetMs = 10, + int staleAfterMs = 5000); + + /// Incrementally read items into @p items. + /// Returns false only when the table pointer itself cannot be read. + bool TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& items); + + /// Reset all state. Call when the game session restarts. + void Reset(); + +private: + // ------------------------------------------------------------------ + // Per-item bookkeeping + // ------------------------------------------------------------------ + struct CachedItem { + DayZItemListEntry entry; + int lastSeenGeneration = 0; + std::chrono::steady_clock::time_point lastSeenTime; + std::chrono::steady_clock::time_point lastSuccessfulRead; + int failedTypeReads = 0; + int failedPositionReads = 0; + }; + + // ------------------------------------------------------------------ + // Internal helpers + // ------------------------------------------------------------------ + void ProcessItem(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t itemAddr, + std::chrono::steady_clock::time_point now); + + void CompleteScan(std::chrono::steady_clock::time_point now); + + void PruneExpiredItems(std::chrono::steady_clock::time_point now); + + std::vector& BuildResult(); + + /// Choose the best display name for an item from its type strings. + /// Priority: cleanName > configName > filename-from-modelName > typeName. + static std::string GetBestItemName(const std::string& cleanName, + const std::string& configName, + const std::string& modelName, + const std::string& typeName, + uint64_t itemAddress); + + // ------------------------------------------------------------------ + // State + // ------------------------------------------------------------------ + ItemFilterCatalog& m_filterCatalog; + + std::unordered_map m_items; + EntityTypeCache m_typeCache; + std::vector m_cachedResult; + std::vector m_sortedAddresses; + + int m_cursorOffset = 0; + int m_validEntriesSeenInScan = 0; + int m_scanGeneration = 1; + bool m_hasCompletedScan = false; + bool m_sortDirty = true; + bool m_resultDirty = true; + + int m_batchSize; + std::chrono::milliseconds m_readBudget; + std::chrono::milliseconds m_staleAfter; + + static constexpr int kMinTableChunkEntries = 256; + static constexpr int kMaxItems = 4096; +}; diff --git a/src/Readers/NearEntityListReader.cpp b/src/Readers/NearEntityListReader.cpp new file mode 100644 index 0000000..e522c86 --- /dev/null +++ b/src/Readers/NearEntityListReader.cpp @@ -0,0 +1,158 @@ +#include "Readers/NearEntityListReader.h" + +#include +#include + +#include "Offsets.h" +#include "RuntimeOffsets.h" +#include "Memory/MemoryValidation.h" + +bool NearEntityListReader::TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries) +{ + const uint32_t pid = session.processId; + + // ----------------------------------------------------------------- + // 1. Near-entity list base pointer + // ----------------------------------------------------------------- + uint64_t nearListPtr = 0; + if (!mem.TryReadPointer(pid, + session.worldAddress + RuntimeOffsets::World::NearEntityList, + nearListPtr)) + { + return false; + } + + // ----------------------------------------------------------------- + // 2. Table size + // ----------------------------------------------------------------- + int32_t rawCount = 0; + if (!mem.TryReadValue(pid, + session.worldAddress + RuntimeOffsets::World::NearTableSize, + rawCount)) + { + return false; + } + + const int count = std::clamp(rawCount, 0, kMaxEntities); + if (count == 0) { + entries.clear(); + return true; + } + + // ----------------------------------------------------------------- + // 3. Bulk-read pointer table (count * 8 bytes) + // ----------------------------------------------------------------- + std::vector tableBytes; + tableBytes.reserve(static_cast(count) * 8); + if (!mem.ReadBytes(pid, nearListPtr, static_cast(count) * 8, tableBytes)) { + return false; + } + + // Decode entity addresses and filter invalid ones. + struct EntitySlot { + uint64_t entityAddr; + int tableIndex; + }; + std::vector slots; + slots.reserve(static_cast(count)); + for (int i = 0; i < count; ++i) { + uint64_t addr = 0; + std::memcpy(&addr, tableBytes.data() + static_cast(i) * 8, 8); + if (MemoryValidation::IsValidUserAddress(addr)) + slots.push_back({ addr, i }); + } + + if (slots.empty()) { + entries.clear(); + return true; + } + + // ----------------------------------------------------------------- + // 4. Scatter pass A — read Type pointer + VisualState pointer + NetworkId + // for all valid entities in one DMA round-trip. + // ----------------------------------------------------------------- + struct PerEntity { + uint64_t typeAddr = 0; + uint64_t visualStatePtr = 0; + uint32_t networkId = 0; + uint32_t _pad = 0; + }; + std::vector perEntity(slots.size()); + + { + std::vector scat; + scat.reserve(slots.size() * 3); + for (size_t i = 0; i < slots.size(); ++i) { + uint64_t base = slots[i].entityAddr; + scat.push_back({ base + Offsets::Common::Type, + &perEntity[i].typeAddr, sizeof(uint64_t) }); + scat.push_back({ base + RuntimeOffsets::Common::VisualState, + &perEntity[i].visualStatePtr, sizeof(uint64_t) }); + scat.push_back({ base + Offsets::Network::EntityNetworkId, + &perEntity[i].networkId, sizeof(uint32_t) }); + } + mem.ScatterRead(pid, scat); + } + + // ----------------------------------------------------------------- + // 5. Scatter pass B — read position (Vector3) from each VisualState + // ----------------------------------------------------------------- + std::vector positions(slots.size(), Vector3{}); + + { + std::vector scat; + scat.reserve(slots.size()); + for (size_t i = 0; i < slots.size(); ++i) { + if (!MemoryValidation::IsValidUserAddress(perEntity[i].visualStatePtr)) + continue; + scat.push_back({ perEntity[i].visualStatePtr + Offsets::Common::Position, + &positions[i], sizeof(Vector3) }); + } + mem.ScatterRead(pid, scat); + } + + // ----------------------------------------------------------------- + // 6. Assemble entries + // ----------------------------------------------------------------- + entries.clear(); + entries.reserve(slots.size()); + + for (size_t i = 0; i < slots.size(); ++i) { + if (!MemoryValidation::IsValidUserAddress(perEntity[i].typeAddr)) + continue; + + EntityTypeMetadata typeMeta; + if (!m_typeCache.GetOrRead(perEntity[i].typeAddr, typeMeta)) { + typeMeta = ReadEntityTypeMetadata(mem, pid, perEntity[i].typeAddr); + m_typeCache.Set(perEntity[i].typeAddr, typeMeta); + } + + std::optional position; + if (MemoryValidation::IsValidVector(positions[i])) + position = positions[i]; + + DayZNearEntityEntry entry; + entry.address = slots[i].entityAddr; + entry.networkId = perEntity[i].networkId; + entry.position = position; + entry.headingDegrees = std::nullopt; + entry.typeName = typeMeta.typeName; + entry.configName = typeMeta.configName; + entry.modelName = typeMeta.modelName; + entry.entityName = GetBestEntityName(typeMeta.typeName, + typeMeta.configName, + typeMeta.cleanName, + typeMeta.modelName, + slots[i].entityAddr); + entries.push_back(std::move(entry)); + } + + return true; +} + +void NearEntityListReader::Reset() +{ + m_typeCache.Clear(); +} diff --git a/src/Readers/NearEntityListReader.h b/src/Readers/NearEntityListReader.h new file mode 100644 index 0000000..0e090fb --- /dev/null +++ b/src/Readers/NearEntityListReader.h @@ -0,0 +1,33 @@ +#pragma once +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" +#include "Readers/EntityTypeCache.h" + +// ------------------------------------------------------------------------- +// NearEntityListReader +// Reads the world's near-entity pointer table and builds a flat list of +// DayZNearEntityEntry values. Entity type metadata is cached across calls +// via an internal EntityTypeCache. +// ------------------------------------------------------------------------- + +class NearEntityListReader { +public: + /// Read the current near-entity list into @p entries. + /// Replaces the contents of @p entries on each successful call. + /// Returns false only when the initial table reads fail entirely. + bool TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries); + + /// Clear cached type metadata. Call when the game session restarts. + void Reset(); + +private: + static constexpr int kMaxEntities = 4096; + + EntityTypeCache m_typeCache; +}; diff --git a/src/Readers/SlowEntityListReader.cpp b/src/Readers/SlowEntityListReader.cpp new file mode 100644 index 0000000..6f2bf84 --- /dev/null +++ b/src/Readers/SlowEntityListReader.cpp @@ -0,0 +1,336 @@ +#include "Readers/SlowEntityListReader.h" + +#include +#include + +#include "Offsets.h" +#include "Memory/MemoryValidation.h" + +// ------------------------------------------------------------------------- +// Constructor +// ------------------------------------------------------------------------- + +SlowEntityListReader::SlowEntityListReader(int batchSize, + int readBudgetMs, + int staleAfterMs) + : m_batchSize(batchSize) + , m_readBudget(readBudgetMs) + , m_staleAfter(staleAfterMs) +{} + +// ------------------------------------------------------------------------- +// TryRead +// ------------------------------------------------------------------------- + +bool SlowEntityListReader::TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries) +{ + const uint32_t pid = session.processId; + + // 1. Slow-entity list pointer + uint64_t slowListPtr = 0; + if (!mem.TryReadPointer(pid, + session.worldAddress + Offsets::World::SlowEntityList, + slowListPtr)) + { + return false; + } + + // 2. Alloc count (total slots) and valid count (live entities) + int32_t rawAllocCount = 0; + int32_t rawValidCount = 0; + if (!mem.TryReadValue(pid, + session.worldAddress + Offsets::World::SlowTableAllocCount, + rawAllocCount)) + { + return false; + } + mem.TryReadValue(pid, + session.worldAddress + Offsets::World::SlowTableValidCount, + rawValidCount); + + const int allocCount = std::clamp(rawAllocCount, 0, kMaxEntities); + const int safeValidCount = std::clamp(rawValidCount, 0, allocCount); + + // 3. If cursor has reached the end of the table, complete the current scan + if (m_cursorOffset >= allocCount) { + auto now = std::chrono::steady_clock::now(); + CompleteScan(now); + PruneExpiredEntities(now); + entries = BuildResult(); + return true; + } + + // 4. Chunk size: max(batchSize, kMinTableChunkEntries) entries, clamped to remaining + const int remaining = allocCount - m_cursorOffset; + const int chunkEntries = std::min(remaining, + std::max(m_batchSize, kMinTableChunkEntries)); + + // 5. Bulk-read chunk — each slot is Offsets::SlowTable::EntrySize (0x18) bytes + const size_t entrySize = static_cast(Offsets::SlowTable::EntrySize); + const size_t chunkBytes = static_cast(chunkEntries) * entrySize; + const uint64_t chunkAddr = slowListPtr + + static_cast(m_cursorOffset) * entrySize; + + std::vector tableBytes; + tableBytes.reserve(chunkBytes); + if (!mem.ReadBytes(pid, chunkAddr, chunkBytes, tableBytes)) { + m_cursorOffset += chunkEntries; + entries = BuildResult(); + return true; + } + + // 6. Process entries within the read budget + const auto batchStart = std::chrono::steady_clock::now(); + bool budgetExceeded = false; + + for (int i = 0; i < chunkEntries; ++i) { + const uint8_t* slot = tableBytes.data() + static_cast(i) * entrySize; + + // Flag at offset 0 — uint16_t, valid == 1 + uint16_t flag = 0; + std::memcpy(&flag, slot, sizeof(uint16_t)); + if (flag != 1) continue; + + // Entity pointer at offset 0x8 + uint64_t entityAddr = 0; + std::memcpy(&entityAddr, + slot + static_cast(Offsets::SlowTable::EntryPointerOffset), + sizeof(uint64_t)); + + if (!MemoryValidation::IsValidUserAddress(entityAddr)) continue; + + ++m_validEntriesSeenInScan; + + auto now = std::chrono::steady_clock::now(); + ProcessEntity(mem, session, entityAddr, now); + + // Stop early when we have seen all valid entries + if (safeValidCount > 0 && m_validEntriesSeenInScan >= safeValidCount) { + m_cursorOffset += (i + 1); + CompleteScan(now); + PruneExpiredEntities(now); + entries = BuildResult(); + return true; + } + + // Check time budget + auto elapsed = std::chrono::duration_cast( + std::chrono::steady_clock::now() - batchStart); + if (elapsed >= m_readBudget) { + m_cursorOffset += (i + 1); + budgetExceeded = true; + break; + } + } + + if (!budgetExceeded) { + m_cursorOffset += chunkEntries; + } + + auto now = std::chrono::steady_clock::now(); + PruneExpiredEntities(now); + + if (m_cursorOffset >= allocCount) { + CompleteScan(now); + } + + entries = BuildResult(); + return true; +} + +// ------------------------------------------------------------------------- +// Reset +// ------------------------------------------------------------------------- + +void SlowEntityListReader::Reset() +{ + m_entities.clear(); + m_typeCache.Clear(); + m_cachedResult.clear(); + m_sortedAddresses.clear(); + m_cursorOffset = 0; + m_validEntriesSeenInScan = 0; + m_scanGeneration = 1; + m_hasCompletedScan = false; + m_sortDirty = true; + m_resultDirty = true; +} + +// ------------------------------------------------------------------------- +// ProcessEntity +// ------------------------------------------------------------------------- + +void SlowEntityListReader::ProcessEntity(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t entityAddr, + std::chrono::steady_clock::time_point now) +{ + const uint32_t pid = session.processId; + + // Read entity type pointer + uint64_t typeAddr = 0; + if (!mem.TryReadPointer(pid, entityAddr + Offsets::Common::Type, typeAddr)) { + auto it = m_entities.find(entityAddr); + MarkTypeReadFailure(entityAddr, + (it != m_entities.end()) ? &it->second : nullptr, + now); + return; + } + + // Look up or read type metadata + EntityTypeMetadata typeMeta; + if (!m_typeCache.GetOrRead(typeAddr, typeMeta)) { + typeMeta = ReadEntityTypeMetadata(mem, pid, typeAddr); + if (typeMeta.typeName.empty() && typeMeta.configName.empty() && + typeMeta.cleanName.empty() && typeMeta.modelName.empty()) + { + auto it = m_entities.find(entityAddr); + MarkTypeReadFailure(entityAddr, + (it != m_entities.end()) ? &it->second : nullptr, + now); + return; + } + m_typeCache.Set(typeAddr, typeMeta); + } + + // Skip entities with no model — slow list contains many invisible objects + if (typeMeta.modelName.empty()) { + return; + } + + // Transform + std::optional position; + std::optional heading; + bool transformOk = ReadEntityTransform(mem, session, entityAddr, position, heading); + + // Retrieve or create cached entry + auto& cached = m_entities[entityAddr]; + + if (!transformOk && cached.entry.position.has_value()) { + position = cached.entry.position; + heading = cached.entry.headingDegrees; + } + + // Build display name: configName first, then cleanName, typeName, modelName + const std::string entityName = GetBestEntityName(typeMeta.configName, + typeMeta.cleanName, + typeMeta.typeName, + typeMeta.modelName, + entityAddr); + + // Update cached entry + cached.entry.address = entityAddr; + cached.entry.position = position; + cached.entry.headingDegrees = heading; + cached.entry.entityName = entityName; + cached.entry.typeName = typeMeta.typeName; + cached.entry.configName = typeMeta.configName; + cached.entry.modelName = typeMeta.modelName; + cached.lastSeenGeneration = m_scanGeneration; + cached.failedTypeReads = 0; + + if (transformOk) { + cached.lastSuccessfulRead = now; + } + + m_resultDirty = true; +} + +// ------------------------------------------------------------------------- +// CompleteScan +// ------------------------------------------------------------------------- + +void SlowEntityListReader::CompleteScan(std::chrono::steady_clock::time_point /*now*/) +{ + // Remove entities not seen in the current scan generation + for (auto it = m_entities.begin(); it != m_entities.end(); ) { + if (it->second.lastSeenGeneration != m_scanGeneration) { + it = m_entities.erase(it); + m_sortDirty = true; + m_resultDirty = true; + } else { + ++it; + } + } + + m_cursorOffset = 0; + m_validEntriesSeenInScan = 0; + m_hasCompletedScan = true; + ++m_scanGeneration; +} + +// ------------------------------------------------------------------------- +// PruneExpiredEntities +// ------------------------------------------------------------------------- + +void SlowEntityListReader::PruneExpiredEntities(std::chrono::steady_clock::time_point now) +{ + for (auto it = m_entities.begin(); it != m_entities.end(); ) { + const auto age = std::chrono::duration_cast( + now - it->second.lastSuccessfulRead); + if (age > m_staleAfter) { + it = m_entities.erase(it); + m_sortDirty = true; + m_resultDirty = true; + } else { + ++it; + } + } +} + +// ------------------------------------------------------------------------- +// BuildResult +// ------------------------------------------------------------------------- + +std::vector& SlowEntityListReader::BuildResult() +{ + if (!m_resultDirty) { + return m_cachedResult; + } + + if (m_sortDirty) { + m_sortedAddresses.clear(); + m_sortedAddresses.reserve(m_entities.size()); + for (const auto& kv : m_entities) { + m_sortedAddresses.push_back(kv.first); + } + std::sort(m_sortedAddresses.begin(), m_sortedAddresses.end(), + [this](uint64_t a, uint64_t b) { + const auto& ea = m_entities.at(a).entry; + const auto& eb = m_entities.at(b).entry; + if (ea.entityName != eb.entityName) + return ea.entityName < eb.entityName; + return a < b; + }); + m_sortDirty = false; + } + + m_cachedResult.clear(); + m_cachedResult.reserve(m_sortedAddresses.size()); + for (uint64_t addr : m_sortedAddresses) { + auto it = m_entities.find(addr); + if (it != m_entities.end()) { + m_cachedResult.push_back(it->second.entry); + } + } + + m_resultDirty = false; + return m_cachedResult; +} + +// ------------------------------------------------------------------------- +// MarkTypeReadFailure +// ------------------------------------------------------------------------- + +void SlowEntityListReader::MarkTypeReadFailure(uint64_t /*entityAddr*/, + CachedEntity* cached, + std::chrono::steady_clock::time_point /*now*/) +{ + if (cached == nullptr) return; + + ++cached->failedTypeReads; + // Still mark it seen this generation so it isn't pruned by CompleteScan + cached->lastSeenGeneration = m_scanGeneration; +} diff --git a/src/Readers/SlowEntityListReader.h b/src/Readers/SlowEntityListReader.h new file mode 100644 index 0000000..4d48864 --- /dev/null +++ b/src/Readers/SlowEntityListReader.h @@ -0,0 +1,86 @@ +#pragma once +#include +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" +#include "Readers/EntityTypeCache.h" + +// ------------------------------------------------------------------------- +// SlowEntityListReader +// Incremental reader for the world's slow-entity table. +// Entries use the SlowTable format: 0x18-byte slots, uint16_t flag at +0x0 +// (valid == 1), entity pointer at +0x8. +// Processing stops early when validEntriesSeenInScan reaches safeValidCount. +// ------------------------------------------------------------------------- + +class SlowEntityListReader { +public: + SlowEntityListReader(int batchSize = 64, + int readBudgetMs = 5, + int staleAfterMs = 5000); + + /// Incrementally read slow entities into @p entries. + /// Returns false only when the table pointer itself cannot be read. + bool TryRead(VmmAccessor& mem, + const RuntimeSession& session, + std::vector& entries); + + /// Reset all state. Call when the game session restarts. + void Reset(); + +private: + // ------------------------------------------------------------------ + // Per-entity bookkeeping + // ------------------------------------------------------------------ + struct CachedEntity { + DayZSlowEntityEntry entry; + int lastSeenGeneration = 0; + std::chrono::steady_clock::time_point lastSuccessfulRead; + int failedTypeReads = 0; + }; + + // ------------------------------------------------------------------ + // Internal helpers + // ------------------------------------------------------------------ + void ProcessEntity(VmmAccessor& mem, + const RuntimeSession& session, + uint64_t entityAddr, + std::chrono::steady_clock::time_point now); + + void CompleteScan(std::chrono::steady_clock::time_point now); + + void PruneExpiredEntities(std::chrono::steady_clock::time_point now); + + std::vector& BuildResult(); + + void MarkTypeReadFailure(uint64_t entityAddr, + CachedEntity* cached, + std::chrono::steady_clock::time_point now); + + // ------------------------------------------------------------------ + // State + // ------------------------------------------------------------------ + std::unordered_map m_entities; + EntityTypeCache m_typeCache; + std::vector m_cachedResult; + std::vector m_sortedAddresses; + + int m_cursorOffset = 0; + int m_validEntriesSeenInScan = 0; + int m_scanGeneration = 1; + bool m_hasCompletedScan = false; + bool m_sortDirty = true; + bool m_resultDirty = true; + + int m_batchSize; + std::chrono::milliseconds m_readBudget; + std::chrono::milliseconds m_staleAfter; + + // Minimum number of table entries to read per chunk (ensures we always + // make meaningful progress even with a small batchSize). + static constexpr int kMinTableChunkEntries = 256; + static constexpr int kMaxEntities = 4096; +}; diff --git a/src/Resolvers/BaseObjectResolver.cpp b/src/Resolvers/BaseObjectResolver.cpp new file mode 100644 index 0000000..0fc3ff4 --- /dev/null +++ b/src/Resolvers/BaseObjectResolver.cpp @@ -0,0 +1,99 @@ +#include "Resolvers/BaseObjectResolver.h" + +#include "Offsets.h" +#include "RuntimeOffsets.h" +#include "Memory/MemoryValidation.h" + +#include + +bool BaseObjectResolver::TryResolve(VmmAccessor& mem, + uint32_t pid, + uint64_t gameBase, + RuntimeSession& session, + NetworkMetadata& metadata, + LocalPlayerData& player) +{ + // ----------------------------------------------------------------- + // 1. Validate the game base address + // ----------------------------------------------------------------- + if (!MemoryValidation::IsValidUserAddress(gameBase)) { + m_lastFailureReason = "gameBase is not a valid user address"; + return false; + } + + // ----------------------------------------------------------------- + // 2. World pointer (indirect read) + // ----------------------------------------------------------------- + uint64_t worldAddress = 0; + if (!mem.TryReadPointer(pid, gameBase + RuntimeOffsets::Base::World, worldAddress)) { + m_lastFailureReason = "Failed to read World pointer from gameBase"; + return false; + } + + // ----------------------------------------------------------------- + // 3. NetworkManager address (direct offset, NOT a pointer read) + // ----------------------------------------------------------------- + uint64_t networkManagerAddress = gameBase + RuntimeOffsets::Base::NetworkManager; + + if (!MemoryValidation::IsValidUserAddress(networkManagerAddress)) { + m_lastFailureReason = "Computed networkManagerAddress is not a valid user address"; + return false; + } + + // ----------------------------------------------------------------- + // 4. Build session + // ----------------------------------------------------------------- + session = RuntimeSession{ + .processId = pid, + .gameBaseAddress = gameBase, + .worldAddress = worldAddress, + .networkManagerAddress = networkManagerAddress, + }; + + // ----------------------------------------------------------------- + // 5. Network metadata (non-fatal — null NetworkClient is normal while + // the game is loading or in the main menu; the live loop retries it) + // ----------------------------------------------------------------- + if (!m_networkMetadataReader.TryRead(mem, session, metadata)) { + spdlog::debug("BaseObjectResolver: NetworkMetadata unavailable ({}); proceeding.", + m_networkMetadataReader.LastFailureReason()); + } + + // ----------------------------------------------------------------- + // 6. Local player — required to confirm the player is in-game + // ----------------------------------------------------------------- + if (!m_localPlayerResolver.TryResolve(mem, session, player)) { + m_lastFailureReason = "LocalPlayerResolver failed: " + + m_localPlayerResolver.LastFailureReason(); + return false; + } + + m_lastFailureReason.clear(); + return true; +} + +bool BaseObjectResolver::IsStillValid(VmmAccessor& mem, const RuntimeSession& session) +{ + const uint32_t pid = session.processId; + + // Re-read world pointer and compare + uint64_t currentWorld = 0; + if (!mem.TryReadPointer(pid, + session.gameBaseAddress + RuntimeOffsets::Base::World, + currentWorld)) + { + return false; + } + + if (currentWorld != session.worldAddress) { + return false; + } + + // Re-compute network manager and compare + uint64_t currentNetworkManager = session.gameBaseAddress + RuntimeOffsets::Base::NetworkManager; + if (currentNetworkManager != session.networkManagerAddress) { + return false; + } + + return true; +} diff --git a/src/Resolvers/BaseObjectResolver.h b/src/Resolvers/BaseObjectResolver.h new file mode 100644 index 0000000..aed201c --- /dev/null +++ b/src/Resolvers/BaseObjectResolver.h @@ -0,0 +1,42 @@ +#pragma once +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" +#include "Resolvers/LocalPlayerResolver.h" +#include "Resolvers/NetworkMetadataReader.h" + +// ------------------------------------------------------------------------- +// BaseObjectResolver +// Entry-point resolver that: +// - validates the game base address +// - resolves worldAddress and networkManagerAddress +// - constructs a RuntimeSession +// - delegates to NetworkMetadataReader and LocalPlayerResolver +// ------------------------------------------------------------------------- + +class BaseObjectResolver { +public: + /// Build a fresh RuntimeSession and populate metadata and player data. + /// Returns true only when all sub-resolvers succeed. + bool TryResolve(VmmAccessor& mem, + uint32_t pid, + uint64_t gameBase, + RuntimeSession& session, + NetworkMetadata& metadata, + LocalPlayerData& player); + + /// Validate that the currently-cached session is still coherent + /// (world pointer and network manager address have not changed). + bool IsStillValid(VmmAccessor& mem, const RuntimeSession& session); + + [[nodiscard]] const std::string& LastFailureReason() const noexcept { + return m_lastFailureReason; + } + +private: + NetworkMetadataReader m_networkMetadataReader; + LocalPlayerResolver m_localPlayerResolver; + std::string m_lastFailureReason; +}; diff --git a/src/Resolvers/LocalPlayerResolver.cpp b/src/Resolvers/LocalPlayerResolver.cpp new file mode 100644 index 0000000..a17d307 --- /dev/null +++ b/src/Resolvers/LocalPlayerResolver.cpp @@ -0,0 +1,98 @@ +#include "Resolvers/LocalPlayerResolver.h" + +#include "Offsets.h" +#include "Memory/MemoryValidation.h" + +bool LocalPlayerResolver::TryResolve(VmmAccessor& mem, + const RuntimeSession& session, + LocalPlayerData& player) +{ + const uint32_t pid = session.processId; + + // ----------------------------------------------------------------- + // 1. Read the local player pointer from the world object + // ----------------------------------------------------------------- + uint64_t localPlayerPointer = 0; + if (!mem.TryReadPointer(pid, + session.worldAddress + Offsets::World::LocalPlayer, + localPlayerPointer)) + { + m_lastFailureReason = "Failed to read LocalPlayer pointer from world"; + return false; + } + + // ----------------------------------------------------------------- + // 2. Second hop — the actual entity sits 0xA8 bytes before the + // pointed-to structure. + // ----------------------------------------------------------------- + uint64_t secondHop = 0; + if (!mem.TryReadValue(pid, localPlayerPointer + 0x8, secondHop)) { + m_lastFailureReason = "Failed to read secondHop from LocalPlayer"; + return false; + } + + if (secondHop <= 0xA8) { + m_lastFailureReason = "secondHop value too small"; + return false; + } + + uint64_t chainedEntity = secondHop - 0xA8; + + if (!MemoryValidation::IsValidUserAddress(chainedEntity)) { + m_lastFailureReason = "chainedEntity address is not a valid user address"; + return false; + } + + // ----------------------------------------------------------------- + // 3. VisualState pointer + // ----------------------------------------------------------------- + uint64_t visualStateAddr = 0; + if (!mem.TryReadPointer(pid, + chainedEntity + Offsets::Common::VisualState, + visualStateAddr)) + { + m_lastFailureReason = "Failed to read VisualState pointer"; + return false; + } + + // ----------------------------------------------------------------- + // 4. Position + // ----------------------------------------------------------------- + Vector3 pos{}; + if (!mem.TryReadValue(pid, + visualStateAddr + Offsets::Common::Position, + pos)) + { + m_lastFailureReason = "Failed to read position from VisualState"; + return false; + } + + if (!MemoryValidation::IsValidVector(pos)) { + m_lastFailureReason = "Position vector is not valid"; + return false; + } + + // ----------------------------------------------------------------- + // 5. Heading from direction vector + // ----------------------------------------------------------------- + float dirX = 0.0f; + float dirY = 0.0f; + mem.TryReadValue(pid, visualStateAddr + Offsets::Common::DirectionX, dirX); + mem.TryReadValue(pid, visualStateAddr + Offsets::Common::DirectionY, dirY); + + float heading = 0.0f; + MemoryValidation::TryGetCorrectedHeadingFromDirection(dirX, dirY, heading); + + // ----------------------------------------------------------------- + // 6. Commit + // ----------------------------------------------------------------- + player = LocalPlayerData{ + .entityAddress = chainedEntity, + .visualStateAddress = visualStateAddr, + .position = pos, + .lookDirection = heading, + }; + + m_lastFailureReason.clear(); + return true; +} diff --git a/src/Resolvers/LocalPlayerResolver.h b/src/Resolvers/LocalPlayerResolver.h new file mode 100644 index 0000000..78189bb --- /dev/null +++ b/src/Resolvers/LocalPlayerResolver.h @@ -0,0 +1,27 @@ +#pragma once +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" + +// ------------------------------------------------------------------------- +// LocalPlayerResolver +// Resolves the local player entity from the world's LocalPlayer pointer +// and reads its transform (position + heading). +// ------------------------------------------------------------------------- + +class LocalPlayerResolver { +public: + /// Attempt to resolve and populate @p player. + /// Returns true only when all required reads succeed and the position + /// passes the IsValidVector check. + bool TryResolve(VmmAccessor& mem, const RuntimeSession& session, LocalPlayerData& player); + + [[nodiscard]] const std::string& LastFailureReason() const noexcept { + return m_lastFailureReason; + } + +private: + std::string m_lastFailureReason; +}; diff --git a/src/Resolvers/NetworkMetadataReader.cpp b/src/Resolvers/NetworkMetadataReader.cpp new file mode 100644 index 0000000..b48fa3c --- /dev/null +++ b/src/Resolvers/NetworkMetadataReader.cpp @@ -0,0 +1,109 @@ +#include "Resolvers/NetworkMetadataReader.h" + +#include "Offsets.h" +#include "Memory/MemoryValidation.h" + +#include +#include + +bool NetworkMetadataReader::TryRead(VmmAccessor& mem, + const RuntimeSession& session, + NetworkMetadata& meta) +{ + const uint32_t pid = session.processId; + + // ----------------------------------------------------------------- + // 1. NetworkClient pointer + // ----------------------------------------------------------------- + uint64_t probeAddr = session.networkManagerAddress + Offsets::Network::ManagerNetworkClient; + spdlog::trace("NetworkMetadataReader: reading NetworkClient ptr at 0x{:X} " + "(networkManager=0x{:X} + 0x{:X})", + probeAddr, + session.networkManagerAddress, + Offsets::Network::ManagerNetworkClient); + + uint64_t networkClientAddr = 0; + if (!mem.TryReadPointer(pid, probeAddr, networkClientAddr)) + { + // Read the raw 8 bytes to see what value was there (may be 0 or an + // out-of-range pointer that failed IsValidUserAddress). + std::vector raw; + if (mem.ReadBytes(pid, probeAddr, sizeof(uint64_t), raw) && raw.size() == 8) { + uint64_t rawVal = 0; + std::memcpy(&rawVal, raw.data(), 8); + spdlog::debug("NetworkMetadataReader: NetworkClient ptr invalid " + "(raw=0x{:X}) at 0x{:X}", rawVal, probeAddr); + } else { + spdlog::debug("NetworkMetadataReader: NetworkClient ptr unreadable at 0x{:X}", + probeAddr); + } + m_lastFailureReason = "Failed to read NetworkClient pointer"; + return false; + } + spdlog::debug("NetworkMetadataReader: NetworkClient=0x{:X}", networkClientAddr); + + // ----------------------------------------------------------------- + // 2. Server name (ptr at networkClient + offset, then ArmaString) + // ----------------------------------------------------------------- + uint64_t serverNamePtr = 0; + if (!mem.TryReadPointer(pid, + networkClientAddr + Offsets::Network::ServerName, + serverNamePtr)) + { + m_lastFailureReason = "Failed to read ServerName pointer"; + return false; + } + + std::string serverName = mem.ReadArmaString(pid, serverNamePtr); + if (!MemoryValidation::IsUsableString(serverName)) { + m_lastFailureReason = "ServerName is not a usable string"; + return false; + } + + // ----------------------------------------------------------------- + // 3. Game version (ptr at networkClient + offset, then ArmaString) + // ----------------------------------------------------------------- + uint64_t gameVersionPtr = 0; + if (!mem.TryReadPointer(pid, + networkClientAddr + Offsets::Network::GameVersion, + gameVersionPtr)) + { + m_lastFailureReason = "Failed to read GameVersion pointer"; + return false; + } + + std::string gameVersion = mem.ReadArmaString(pid, gameVersionPtr); + if (!MemoryValidation::IsUsableString(gameVersion)) { + m_lastFailureReason = "GameVersion is not a usable string"; + return false; + } + + // ----------------------------------------------------------------- + // 4. Map name (optional — failure is non-fatal) + // ----------------------------------------------------------------- + std::optional mapName; + { + uint64_t mapNamePtr = 0; + if (mem.TryReadPointer(pid, + networkClientAddr + Offsets::Network::MapName, + mapNamePtr)) + { + std::string raw = mem.ReadArmaString(pid, mapNamePtr); + if (MemoryValidation::IsUsableString(raw)) { + mapName = std::move(raw); + } + } + } + + // ----------------------------------------------------------------- + // 5. Commit + // ----------------------------------------------------------------- + meta = NetworkMetadata{ + .serverName = std::move(serverName), + .gameVersion = std::move(gameVersion), + .serverMapName = std::move(mapName), + }; + + m_lastFailureReason.clear(); + return true; +} diff --git a/src/Resolvers/NetworkMetadataReader.h b/src/Resolvers/NetworkMetadataReader.h new file mode 100644 index 0000000..d077f7c --- /dev/null +++ b/src/Resolvers/NetworkMetadataReader.h @@ -0,0 +1,26 @@ +#pragma once +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" + +// ------------------------------------------------------------------------- +// NetworkMetadataReader +// Reads server name, game version, and map name from the game's network +// manager structures. +// ------------------------------------------------------------------------- + +class NetworkMetadataReader { +public: + /// Attempt to read network metadata into @p meta. + /// Returns true only when serverName and gameVersion are both usable. + bool TryRead(VmmAccessor& mem, const RuntimeSession& session, NetworkMetadata& meta); + + [[nodiscard]] const std::string& LastFailureReason() const noexcept { + return m_lastFailureReason; + } + +private: + std::string m_lastFailureReason; +}; diff --git a/src/Runtime/DayZRuntimeService.cpp b/src/Runtime/DayZRuntimeService.cpp new file mode 100644 index 0000000..a0321b1 --- /dev/null +++ b/src/Runtime/DayZRuntimeService.cpp @@ -0,0 +1,1359 @@ +#include "Runtime/DayZRuntimeService.h" + +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "Offsets.h" +#include "RuntimeOffsets.h" +#include "Readers/EntityTypeCache.h" +#include "Memory/MemoryValidation.h" + +// ------------------------------------------------------------------------- +// RuntimeConfig::Load — INI-style config/config.cfg parser +// ------------------------------------------------------------------------- + +RuntimeConfig RuntimeConfig::Load(const std::string& path) { + RuntimeConfig cfg; + std::ifstream f(path); + if (!f.is_open()) { + spdlog::info("RuntimeConfig: {} not found, using defaults", path); + return cfg; + } + + std::string line; + while (std::getline(f, line)) { + // Strip inline comments and leading/trailing whitespace + auto commentPos = line.find('#'); + if (commentPos != std::string::npos) line = line.substr(0, commentPos); + while (!line.empty() && (line.front() == ' ' || line.front() == '\t')) line.erase(line.begin()); + while (!line.empty() && (line.back() == ' ' || line.back() == '\t' || line.back() == '\r')) line.pop_back(); + if (line.empty()) continue; + + auto eq = line.find('='); + if (eq == std::string::npos) continue; + + std::string key = line.substr(0, eq); + std::string val = line.substr(eq + 1); + while (!key.empty() && key.back() == ' ') key.pop_back(); + while (!val.empty() && val.front() == ' ') val.erase(val.begin()); + + try { + if (key == "networkMetadataRefreshMs") cfg.networkMetadataRefreshMs = std::stoi(val); + else if (key == "scoreboardRefreshMs") cfg.scoreboardRefreshMs = std::stoi(val); + else if (key == "nearEntityRefreshMs") cfg.nearEntityRefreshMs = std::stoi(val); + else if (key == "farEntityRefreshMs") cfg.farEntityRefreshMs = std::stoi(val); + else if (key == "slowEntityRefreshMs") cfg.slowEntityRefreshMs = std::stoi(val); + else if (key == "bulletRefreshMs") cfg.bulletRefreshMs = std::stoi(val); + else if (key == "itemRefreshMs") cfg.itemRefreshMs = std::stoi(val); + else if (key == "playersRefreshMs") cfg.playersRefreshMs = std::stoi(val); + else if (key == "liveLoopIdleMs") cfg.liveLoopIdleMs = std::stoi(val); + else if (key == "reconnectThreshold") cfg.reconnectThreshold = std::stoi(val); + else if (key == "reconnectGracePeriodMs") cfg.reconnectGracePeriodMs = std::stoi(val); + else if (key == "farEntityBatchSize") cfg.farEntityBatchSize = std::stoi(val); + else if (key == "slowEntityBatchSize") cfg.slowEntityBatchSize = std::stoi(val); + else if (key == "itemBatchSize") cfg.itemBatchSize = std::stoi(val); + else if (key == "boneRefreshMs") cfg.boneRefreshMs = std::stoi(val); + else if (key == "bonePlayerMaxDist") cfg.bonePlayerMaxDist = std::stof(val); + else if (key == "boneZombieMaxDist") cfg.boneZombieMaxDist = std::stof(val); + else if (key == "vmmRefreshMs") cfg.vmmRefreshMs = std::stoi(val); + else if (key == "itemSpatialFilterRadius") cfg.itemSpatialFilterRadius = std::stof(val); + else if (key == "processName") cfg.processName = val; + else if (key == "useMemoryMap") cfg.useMemoryMap = (val == "true" || val == "1"); + } catch (...) { + spdlog::warn("RuntimeConfig: bad value for key '{}' = '{}'", key, val); + } + } + + spdlog::info("RuntimeConfig: loaded from {}", path); + return cfg; +} + +// ------------------------------------------------------------------------- +// Constructor / Destructor +// ------------------------------------------------------------------------- + +DayZRuntimeService::DayZRuntimeService(RuntimeConfig config) + : m_config(std::move(config)) + , m_filterCatalog() // resolves config/item_filters.json relative to exe + , m_farReader(m_config.farEntityBatchSize) + , m_slowReader(m_config.slowEntityBatchSize) + , m_itemReader(m_filterCatalog, m_config.itemBatchSize) + , m_scoreboardReader(m_config.scoreboardRefreshMs) +{ + // Initialise all throttle timestamps to "past" so every reader fires + // immediately on the first live-loop iteration. + auto past = std::chrono::steady_clock::time_point{}; + m_state.nextScoreboardRefresh = past; + m_state.nextNearRefresh = past; + m_state.nextFarRefresh = past; + m_state.nextSlowRefresh = past; + m_state.nextBulletRefresh = past; + m_state.nextItemRefresh = past; + m_state.nextPlayersRefresh = past; + m_state.nextNetworkMetadataRefresh = past; + m_state.nextBoneRefresh = past; + m_state.nextVmmRefresh = past; +} + +DayZRuntimeService::~DayZRuntimeService() { + Stop(); +} + +// ------------------------------------------------------------------------- +// Start / Stop +// ------------------------------------------------------------------------- + +void DayZRuntimeService::Start() { + if (m_runtimeThread.joinable()) { + return; // already running + } + m_stopRequested.store(false); + + spdlog::info("Initialising DMA (useMemoryMap={})...", m_config.useMemoryMap); + if (!m_memory.Initialize(m_config.useMemoryMap)) { + spdlog::error("DMA initialisation failed — ensure the DMA device is connected."); + // We still start the thread so it can retry / report status. + } + + m_runtimeThread = std::thread(&DayZRuntimeService::Run, this); + m_cameraThread = std::thread(&DayZRuntimeService::RunCameraLoop, this); +} + +void DayZRuntimeService::Stop() { + m_stopRequested.store(true); + if (m_runtimeThread.joinable()) { + m_runtimeThread.join(); + } + if (m_cameraThread.joinable()) { + m_cameraThread.join(); + } +} + +// ------------------------------------------------------------------------- +// GetLatestUpdate / SetUpdateCallback +// ------------------------------------------------------------------------- + +std::shared_ptr DayZRuntimeService::GetLatestUpdate() const { + std::lock_guard lock(m_updateMutex); + return m_latestUpdate; +} + +bool DayZRuntimeService::GetLatestCamera(CameraData& out) const { + std::lock_guard lock(m_camMutex); + if (!m_latestCamForOverlay.valid) return false; + out = m_latestCamForOverlay; + return true; +} + +void DayZRuntimeService::SetUpdateCallback(UpdateCallback cb) { + std::lock_guard lock(m_updateMutex); + m_callback = std::move(cb); +} + +// ------------------------------------------------------------------------- +// Run +// Top-level thread function: WaitForSession -> RunLiveLoop, loop on reconnect. +// ------------------------------------------------------------------------- + +void DayZRuntimeService::Run() { + while (!m_stopRequested.load()) { + try { + RuntimeSession session = WaitForSession(); + if (m_stopRequested.load()) break; + + spdlog::info("Session established. PID={}", session.processId); + + RunLiveLoop(session); + } + catch (const ReconnectException&) { + spdlog::warn("Session lost — reconnecting..."); + ResetAllReaders(); + + // Grace period before next attempt. + auto deadline = std::chrono::steady_clock::now() + + std::chrono::milliseconds(m_config.reconnectGracePeriodMs); + while (!m_stopRequested.load() && + std::chrono::steady_clock::now() < deadline) + { + std::this_thread::sleep_for(std::chrono::milliseconds(100)); + } + } + catch (const std::exception& ex) { + spdlog::error("Unhandled exception: {}", ex.what()); + ResetAllReaders(); + std::this_thread::sleep_for(std::chrono::milliseconds(1000)); + } + } + spdlog::info("Runtime thread exiting."); +} + +// ------------------------------------------------------------------------- +// WaitForSession +// ------------------------------------------------------------------------- + +RuntimeSession DayZRuntimeService::WaitForSession() { + using Clock = std::chrono::steady_clock; + using Ms = std::chrono::milliseconds; + + // Cached across iterations so we don't re-attach every 250 ms. + uint32_t cachedPid = 0; + uint64_t cachedBase = 0; + auto lastAttach = Clock::time_point{}; // force attach on first entry + std::string lastStatus; + + // Helper: publish a status update only when the message changes. + auto setStatus = [&](std::string msg) { + if (msg == lastStatus) return; + lastStatus = msg; + spdlog::info("WaitForSession: {}", msg); + RuntimeUpdate upd; + upd.areBaseObjectsReady = false; + upd.status = std::move(msg); + PublishUpdate(upd); + }; + + // Tracks consecutive VMM init failures so we can back off before retrying. + int vmmFailCount = 0; + + while (!m_stopRequested.load()) { + if (!m_memory.IsInitialized()) { + // The FPGA can enter a bad PCIe state after extended operation and + // fail to reinitialize (VMM INIT FAILED / Unable to locate DTB). + // Retry Initialize() with backoff — the FPGA usually self-recovers + // within a few seconds of the PCIe link being re-enumerated. + ++vmmFailCount; + int delaySec = std::min(vmmFailCount * 5, 60); + setStatus("VMM not initialised — retrying in " + std::to_string(delaySec) + "s (attempt " + std::to_string(vmmFailCount) + ")..."); + spdlog::warn("WaitForSession: VMM not initialised (attempt {}), reinit in {}s", vmmFailCount, delaySec); + std::this_thread::sleep_for(std::chrono::seconds(delaySec)); + if (!m_stopRequested.load()) { + m_memory.Initialize(m_config.useMemoryMap); + } + continue; + } + vmmFailCount = 0; + + // ---- Re-attach to process every 3 s (or on first entry) ---- + auto now = Clock::now(); + bool needAttach = (cachedPid == 0) || + (now - lastAttach >= std::chrono::seconds(3)); + + if (needAttach) { + m_memory.ForceRefresh(); + lastAttach = now; + + uint32_t pid = 0; + if (!m_memory.TryFindProcess(m_config.processName, pid)) { + cachedPid = 0; + cachedBase = 0; + setStatus("Waiting for " + m_config.processName + "..."); + std::this_thread::sleep_for(Ms(500)); + continue; + } + + uint64_t base = 0; + if (!m_memory.TryGetModuleBase(pid, m_config.processName, base)) { + cachedPid = 0; + cachedBase = 0; + setStatus("Waiting for module base of " + m_config.processName + "..."); + std::this_thread::sleep_for(Ms(500)); + continue; + } + + // Sig scanner — run once per unique module base. + if (base != m_lastScannedBase) { + spdlog::info("WaitForSession: running signature scanner (base=0x{:X})...", base); + auto scanResult = SigScanner::Scan(m_memory, pid, base); + SigScanner::Apply(scanResult); + m_lastScannedBase = base; + } + + cachedPid = pid; + cachedBase = base; + } + + // ---- Server-connection pre-check ---- + // NetworkClient is null when in the main menu or on a loading screen. + { + const uint64_t nmAddr = cachedBase + RuntimeOffsets::Base::NetworkManager; + uint64_t networkClientAddr = 0; + if (!m_memory.TryReadPointer(cachedPid, + nmAddr + Offsets::Network::ManagerNetworkClient, + networkClientAddr)) + { + std::vector raw; + uint64_t rawVal = 0; + if (m_memory.ReadBytes(cachedPid, + nmAddr + Offsets::Network::ManagerNetworkClient, + sizeof(uint64_t), raw) + && raw.size() == sizeof(uint64_t)) + { + std::memcpy(&rawVal, raw.data(), sizeof(uint64_t)); + } + setStatus(rawVal == 0 + ? "Waiting for server connection..." + : "NetworkClient pointer invalid — possible stale offset"); + std::this_thread::sleep_for(Ms(500)); + continue; + } + } + + // ---- TryResolve: world + local player ---- + RuntimeSession session; + NetworkMetadata metadata; + LocalPlayerData player; + + if (!m_baseResolver.TryResolve(m_memory, cachedPid, cachedBase, + session, metadata, player)) + { + setStatus("Waiting for player spawn..."); + std::this_thread::sleep_for(Ms(250)); + continue; + } + + m_metadata = metadata; + m_localPlayer = player; + return session; + } + + return RuntimeSession{}; +} + +// ------------------------------------------------------------------------- +// RunLiveLoop +// ------------------------------------------------------------------------- + +void DayZRuntimeService::RunLiveLoop(const RuntimeSession& session) { + using Clock = std::chrono::steady_clock; + using Ms = std::chrono::milliseconds; + + int consecutiveFailures = 0; + + // Hand the live session to the dedicated camera thread so it can begin + // reading the camera at high frequency. Cleared in ResetAllReaders(). + m_camWorldAddr.store(session.worldAddress, std::memory_order_release); + m_camPid.store(session.processId, std::memory_order_release); + + while (!m_stopRequested.load()) { + auto now = Clock::now(); + + // ------------------------------------------------------------------ + // 1. Validate the session is still coherent. + // ------------------------------------------------------------------ + if (!m_baseResolver.IsStillValid(m_memory, session)) { + throw ReconnectException{}; + } + + bool anyFailure = false; + + // ------------------------------------------------------------------ + // 2. Network metadata (low-frequency). + // ------------------------------------------------------------------ + if (now >= m_state.nextNetworkMetadataRefresh) { + NetworkMetadata meta; + if (m_networkMetadataReader.TryRead(m_memory, session, meta)) { + m_metadata = meta; + } + m_state.nextNetworkMetadataRefresh = + Clock::now() + Ms(m_config.networkMetadataRefreshMs); + } + + // ------------------------------------------------------------------ + // 3. Scoreboard (low-frequency, non-critical — failure = empty board). + // ------------------------------------------------------------------ + if (now >= m_state.nextScoreboardRefresh) { + if (!m_scoreboardReader.TryRead(m_memory, session, + m_state.scoreboard)) { + spdlog::trace("RunLiveLoop: scoreboard read failed (non-fatal)"); + } + m_state.nextScoreboardRefresh = + Clock::now() + Ms(m_config.scoreboardRefreshMs); + } + + // ------------------------------------------------------------------ + // 4. Near entities (critical — failure counts toward reconnect). + // ------------------------------------------------------------------ + if (now >= m_state.nextNearRefresh) { + if (!m_nearReader.TryRead(m_memory, session, + m_state.nearEntities)) { + spdlog::trace("RunLiveLoop: near entity read failed"); + anyFailure = true; + } + m_state.nextNearRefresh = + Clock::now() + Ms(m_config.nearEntityRefreshMs); + } + + // ------------------------------------------------------------------ + // 5. Far entities (critical — failure counts toward reconnect). + // ------------------------------------------------------------------ + if (now >= m_state.nextFarRefresh) { + if (!m_farReader.TryRead(m_memory, session, + m_state.farEntities)) { + spdlog::trace("RunLiveLoop: far entity read failed"); + anyFailure = true; + } + m_state.nextFarRefresh = + Clock::now() + Ms(m_config.farEntityRefreshMs); + } + + // ------------------------------------------------------------------ + // 6. Slow entities (critical — failure counts toward reconnect). + // ------------------------------------------------------------------ + if (now >= m_state.nextSlowRefresh) { + if (!m_slowReader.TryRead(m_memory, session, + m_state.slowEntities)) { + spdlog::trace("RunLiveLoop: slow entity read failed"); + anyFailure = true; + } + m_state.nextSlowRefresh = + Clock::now() + Ms(m_config.slowEntityRefreshMs); + } + + // ------------------------------------------------------------------ + // 7. Bullets (non-critical — failure = no bullet data). + // ------------------------------------------------------------------ + if (now >= m_state.nextBulletRefresh) { + if (!m_bulletReader.TryRead(m_memory, session, + m_state.bullets)) { + spdlog::trace("RunLiveLoop: bullet read failed (non-fatal)"); + } + m_state.nextBulletRefresh = + Clock::now() + Ms(m_config.bulletRefreshMs); + } + + // ------------------------------------------------------------------ + // 8. Items (non-critical — failure = no item data). + // ------------------------------------------------------------------ + if (now >= m_state.nextItemRefresh) { + if (!m_itemReader.TryRead(m_memory, session, + m_state.items)) { + spdlog::trace("RunLiveLoop: item read failed (non-fatal)"); + } + m_state.nextItemRefresh = + Clock::now() + Ms(m_config.itemRefreshMs); + } + + // ------------------------------------------------------------------ + // 9. Refresh local player transform. + // ------------------------------------------------------------------ + { + LocalPlayerData player; + if (m_localPlayerResolver.TryResolve(m_memory, session, player)) { + m_localPlayer = player; + } + } + + // ------------------------------------------------------------------ + // 9b. Read camera for the published snapshot (web radar + bone-range + // culling). The overlay does NOT use this copy — m_latestCamForOverlay + // is driven independently by the dedicated camera thread at much + // lower latency. This read just keeps m_camera current for the + // snapshot path; it's fine for it to run at the loop cadence. + // ------------------------------------------------------------------ + ReadCameraInto(session.processId, session.worldAddress, m_cachedCamBase, m_camera); + + // PID used by several gates below. + const uint32_t pid = session.processId; + + // ------------------------------------------------------------------ + // 10. Position-refresh scatter for far entities (every playersRefreshMs). + // Keeps far-entity positions smooth without waiting for the slow cursor + // scan to circle back around to each entity's table slot. + // ------------------------------------------------------------------ + if (now >= m_state.nextPlayersRefresh) { + m_farReader.RefreshPositions(m_memory, session); + } + + // ------------------------------------------------------------------ + // 11. Project entities into typed categories (throttled). + // ------------------------------------------------------------------ + if (now >= m_state.nextPlayersRefresh) { + auto scoreboardNames = BuildScoreboardNames(m_state.scoreboard); + + // --- isDead resolver --- + auto deadResolver = [&](uint64_t addr) -> bool { + uint8_t dead = 0; + m_memory.TryReadValue(pid, addr + RuntimeOffsets::Player::IsDead, dead); + return dead != 0; + }; + + // --- heldItemResolver --- + // Chain: entity → +0x650 → ptr → inventory obj + // inventory → +0x1CC → bool (HandItemValid) + // inventory → +0x1B0 → ptr → hand item entity + // hand item → +0x180 → ptr → type obj → clean name + auto heldItemResolver = [&](uint64_t addr) -> std::string { + uint64_t inventoryAddr = 0; + if (!m_memory.TryReadPointer(pid, addr + RuntimeOffsets::Inventory::Base, inventoryAddr) + || !MemoryValidation::IsValidUserAddress(inventoryAddr)) + return {}; + + uint8_t handValid = 0; + if (m_memory.TryReadValue(pid, inventoryAddr + Offsets::Inventory::HandItemValid, handValid) + && !handValid) + return {}; + + uint64_t handItemAddr = 0; + if (!m_memory.TryReadPointer(pid, inventoryAddr + RuntimeOffsets::Inventory::Hands, handItemAddr) + || !MemoryValidation::IsValidUserAddress(handItemAddr)) + return {}; + + uint64_t typeAddr = 0; + if (!m_memory.TryReadPointer(pid, handItemAddr + Offsets::Common::Type, typeAddr) + || !MemoryValidation::IsValidUserAddress(typeAddr)) + return {}; + + EntityTypeMetadata meta = ReadEntityTypeMetadata(m_memory, pid, typeAddr); + if (!meta.cleanName.empty()) return meta.cleanName; + if (!meta.typeName.empty()) return FormatEntityName(meta.typeName); + if (!meta.configName.empty()) return meta.configName; + return {}; + }; + + // --- adminResolver --- + // Detects admin-invisible players across known DayZ admin tools: + // + // VP Admin (classic) — equips clothing with configName ending in "_Admin" + // (Head_Admin, Top_Admin, Pants_Admin, Boots_Admin, + // Arms_Admin, Backpack_Admin) + // + // VPP Admin Tools — calls SetScale(0) on the entity, which zeroes the + // rotation columns of the VS transform matrix. + // A normal player's right-vector has magnitude ≈ 1.0; + // a scale-0 entity has magnitude ≈ 0.0. + // + // Zomberry Admin — uses same Enfusion SetScale / SetInvisible path as VPP; + // caught by the same scale check. + // + // CF (Community Framework) — pure RPC infrastructure, no own invisibility; + // no dedicated check needed. + // + // Entity empty-model check is handled cheaply in the projector before this runs. + // adminMethods records HOW each flagged player was detected, keyed by + // entity address, so the one-shot announce log can explain the trigger. + std::unordered_map adminMethods; + auto adminResolver = [&](uint64_t addr) -> bool { + + // ── Check 1: VPP / Zomberry — VS matrix scale ≈ 0 ────────────────────── + { + uint64_t vsAddr = 0; + if (m_memory.TryReadPointer(pid, addr + Offsets::Common::VisualState, vsAddr) + && MemoryValidation::IsValidUserAddress(vsAddr)) + { + struct VSMatrix { float m[12]; }; + VSMatrix vs{}; + if (m_memory.TryReadValue(pid, vsAddr + 8, vs)) { + // Right-vector = m[0..2]; magnitude < 0.01 means scale ≈ 0. + const float mag2 = vs.m[0]*vs.m[0] + vs.m[1]*vs.m[1] + vs.m[2]*vs.m[2]; + if (mag2 < 0.01f) { + adminMethods[addr] = "VS scale=0 (VPP/Zomberry SetScale)"; + return true; + } + } + } + } + + // ── Check 2: VP Admin classic — worn clothing configName ends in "_Admin" ─ + { + uint64_t inventoryAddr = 0; + if (!m_memory.TryReadPointer(pid, addr + RuntimeOffsets::Inventory::Base, inventoryAddr) + || !MemoryValidation::IsValidUserAddress(inventoryAddr)) + return false; + + uint64_t clothesGrid = 0; + if (!m_memory.TryReadPointer(pid, inventoryAddr + Offsets::Inventory::WornClothes, clothesGrid) + || !MemoryValidation::IsValidUserAddress(clothesGrid)) + return false; + + uint64_t itemsArray = 0; + uint32_t count = 0; + if (!m_memory.TryReadPointer(pid, clothesGrid + Offsets::Inventory::ItemPtr, itemsArray) + || !MemoryValidation::IsValidUserAddress(itemsArray)) + return false; + if (!m_memory.TryReadValue(pid, clothesGrid + Offsets::Inventory::CargoGridCount, count) + || count == 0 || count > 32) + return false; + + auto containsAdmin = [](const std::string& s) -> bool { + constexpr std::string_view kNeedle = "_admin"; + if (s.size() < kNeedle.size()) return false; + const size_t last = s.size() - kNeedle.size(); + for (size_t off = 0; off <= last; ++off) { + bool match = true; + for (size_t j = 0; j < kNeedle.size(); ++j) { + if (std::tolower((unsigned char)s[off + j]) != kNeedle[j]) { + match = false; + break; + } + } + if (match) return true; + } + return false; + }; + + for (uint32_t i = 0; i < count; ++i) { + uint64_t itemAddr = 0; + if (!m_memory.TryReadPointer(pid, itemsArray + i * sizeof(uint64_t), itemAddr) + || !MemoryValidation::IsValidUserAddress(itemAddr)) + continue; + + uint64_t typeAddr = 0; + if (!m_memory.TryReadPointer(pid, itemAddr + Offsets::Common::Type, typeAddr) + || !MemoryValidation::IsValidUserAddress(typeAddr)) + continue; + + EntityTypeMetadata meta = ReadEntityTypeMetadata(m_memory, pid, typeAddr); + if (containsAdmin(meta.configName) || containsAdmin(meta.typeName)) { + adminMethods[addr] = "_Admin clothing (VP Admin)"; + return true; + } + } + } + + return false; + }; + + // --- healthResolver --- + // Reads a float from entity + Offsets::Player::Health. + // Returns -1.0f when the offset is unset (0) or the value is out of range. + auto healthResolver = [&](uint64_t addr) -> float { + if (Offsets::Player::Health == 0) return -1.0f; + float hp = -1.0f; + if (!m_memory.TryReadValue(pid, addr + Offsets::Player::Health, hp) + || hp < 0.0f || hp > 100.0f) + return -1.0f; + return hp; + }; + + RuntimeUpdate update; + update.areBaseObjectsReady = true; + update.status = "Live"; + + if (!m_metadata.serverName.empty()) { + update.serverName = m_metadata.serverName; + update.gameVersion = m_metadata.gameVersion; + } + update.serverMapName = m_metadata.serverMapName; + + if (m_localPlayer.entityAddress != 0) { + update.localPlayerEntityAddress = m_localPlayer.entityAddress; + update.localPlayerPosition = m_localPlayer.position; + update.localPlayerLookDirection = m_localPlayer.lookDirection; + } + + if (m_camera.valid) update.camera = m_camera; + + update.scoreboardPlayers = m_state.scoreboard; + update.nearEntities = m_state.nearEntities; + update.farEntities = m_state.farEntities; + update.slowEntities = m_state.slowEntities; + update.bullets = m_state.bullets; + + // Spatial filter: only ship items within itemSpatialFilterRadius of + // the local player. Avoids sending thousands of server-wide items to + // the renderer on every publish tick. + if (m_localPlayer.entityAddress != 0) { + const Vector3& lp = m_localPlayer.position; + const float r2 = m_config.itemSpatialFilterRadius + * m_config.itemSpatialFilterRadius; + for (const auto& item : m_state.items) { + if (!item.position.has_value()) continue; + float dx = item.position->x - lp.x; + float dy = item.position->y - lp.y; + float dz = item.position->z - lp.z; + if (dx*dx + dy*dy + dz*dz <= r2) + update.items.push_back(item); + } + } else { + update.items = m_state.items; + } + + update.players = EntityCategoryProjector::BuildPlayers( + m_state.nearEntities, m_state.farEntities, m_state.slowEntities, + scoreboardNames, deadResolver, heldItemResolver, healthResolver, adminResolver); + + // ---- Announce newly-detected admins once each (name + how + range) ---- + { + std::unordered_set adminsThisCycle; + for (const auto& p : update.players) { + if (!p.isAdmin) continue; + adminsThisCycle.insert(p.address); + if (m_adminAnnounced.insert(p.address).second) { + const char* how = "unknown"; + if (auto it = adminMethods.find(p.address); it != adminMethods.end()) + how = it->second; + std::string name = !p.nickname.empty() ? p.nickname : ""; + float dist = -1.0f; + if (p.position && m_localPlayer.entityAddress != 0) { + float dx = p.position->x - m_localPlayer.position.x; + float dy = p.position->y - m_localPlayer.position.y; + float dz = p.position->z - m_localPlayer.position.z; + dist = std::sqrt(dx*dx + dy*dy + dz*dz); + } + spdlog::warn("ADMIN detected: '{}' @ {:.0f}m — via {} [0x{:X}]", + name, dist, how, p.address); + } + } + // Forget admins that left so a future re-join re-announces them. + for (auto it = m_adminAnnounced.begin(); it != m_adminAnnounced.end(); ) + it = adminsThisCycle.count(*it) ? std::next(it) + : m_adminAnnounced.erase(it); + } + + update.animals = EntityCategoryProjector::BuildAnimals( + m_state.nearEntities, m_state.farEntities, m_state.slowEntities); + + update.zombies = EntityCategoryProjector::BuildZombies( + m_state.nearEntities, m_state.farEntities, m_state.slowEntities); + + update.carsAndBoats = EntityCategoryProjector::BuildCarsAndBoats( + m_state.nearEntities, m_state.farEntities, m_state.slowEntities); + + // otherEntities: building parts, barrels, tents, etc. On modded + // servers with built bases this can be hundreds of objects server-wide. + // Apply the same spatial filter as items so only nearby ones are sent. + { + auto allOther = EntityCategoryProjector::BuildOtherEntities( + m_state.nearEntities, m_state.farEntities, m_state.slowEntities); + if (m_localPlayer.entityAddress != 0) { + const Vector3& lp = m_localPlayer.position; + const float r2 = m_config.itemSpatialFilterRadius + * m_config.itemSpatialFilterRadius; + for (auto& e : allOther) { + if (!e.position.has_value()) continue; + float dx = e.position->x - lp.x; + float dy = e.position->y - lp.y; + float dz = e.position->z - lp.z; + if (dx*dx + dy*dy + dz*dz <= r2) + update.otherEntities.push_back(std::move(e)); + } + } else { + update.otherEntities = std::move(allOther); + } + } + + // Store as baseline for the 16ms bone-scatter refresh. + m_liveUpdate = std::move(update); + PublishUpdate(m_liveUpdate); + + m_state.nextPlayersRefresh = + Clock::now() + Ms(m_config.playersRefreshMs); + } + + // ------------------------------------------------------------------ + // 11b. Bone-scatter refresh (~16 ms / ~60 Hz). + // Re-reads all skeleton bones using the warm pointer cache and + // a single DMA scatter call, then publishes with fresh bones. + // ------------------------------------------------------------------ + if (now >= m_state.nextBoneRefresh) { + if (!m_liveUpdate.players.empty() || !m_liveUpdate.zombies.empty()) { + RuntimeUpdate boneTick = m_liveUpdate; // copy entity list + RefreshBonesScatter(pid, boneTick.players, boneTick.zombies); + PublishUpdate(boneTick); + } + m_state.nextBoneRefresh = Clock::now() + Ms(m_config.boneRefreshMs); + } + + // ------------------------------------------------------------------ + // 12. Periodic VMMDLL cache flush. + // Without this, the page cache accumulates stale entries as the + // game heap reallocates over time, causing reads to silently return + // wrong data ~1 hour into a session. + // ------------------------------------------------------------------ + if (now >= m_state.nextVmmRefresh) { + m_memory.ForceRefresh(); + spdlog::trace("RunLiveLoop: VMM cache flushed."); + m_state.nextVmmRefresh = Clock::now() + Ms(m_config.vmmRefreshMs); + + // Prune bone pointer cache: evict addresses no longer in any + // entity list so the map doesn't grow unboundedly on busy servers. + std::unordered_set liveAddrs; + liveAddrs.reserve(m_state.nearEntities.size() + + m_state.farEntities.size() + + m_state.slowEntities.size()); + for (const auto& e : m_state.nearEntities) liveAddrs.insert(e.address); + for (const auto& e : m_state.farEntities) liveAddrs.insert(e.address); + for (const auto& e : m_state.slowEntities) liveAddrs.insert(e.address); + for (auto it = m_bonePointerCache.begin(); it != m_bonePointerCache.end(); ) { + it = liveAddrs.count(it->first) ? std::next(it) + : m_bonePointerCache.erase(it); + } + } + + // ------------------------------------------------------------------ + // 13. Consecutive-failure check. + // ------------------------------------------------------------------ + if (anyFailure) { + ++consecutiveFailures; + if (consecutiveFailures >= m_config.reconnectThreshold) { + spdlog::warn("{} consecutive reader failures — triggering reconnect.", consecutiveFailures); + throw ReconnectException{}; + } + } else { + consecutiveFailures = 0; + } + + // ------------------------------------------------------------------ + // 12. Idle sleep to avoid burning the CPU. + // ------------------------------------------------------------------ + std::this_thread::sleep_for(Ms(m_config.liveLoopIdleMs)); + } +} + +// ------------------------------------------------------------------------- +// PublishUpdate +// ------------------------------------------------------------------------- + +void DayZRuntimeService::PublishUpdate(const RuntimeUpdate& update) { + auto ptr = std::make_shared(update); + UpdateCallback cb; + { + std::lock_guard lock(m_updateMutex); + m_latestUpdate = ptr; + cb = m_callback; + } + if (cb) { + cb(update); + } +} + +// ------------------------------------------------------------------------- +// ReadCameraInto +// ------------------------------------------------------------------------- + +bool DayZRuntimeService::ReadCameraInto(uint32_t pid, uint64_t worldAddr, + uint64_t& camBaseCache, CameraData& out) +{ + if (camBaseCache == 0) { + uint64_t ptr = 0; + if (m_memory.TryReadValue(pid, + worldAddr + RuntimeOffsets::World::Camera, ptr) && ptr != 0) + camBaseCache = ptr; + else + return false; + } + + struct CamBlob { + uint8_t _pad0[0x8]; + float right[3]; // 0x08 – InvertedViewRight + float up[3]; // 0x14 – InvertedViewUp + float fwd[3]; // 0x20 – InvertedViewForward + float trans[3]; // 0x2C – Translation + uint8_t _pad1[0xD0 - 0x38]; + float proj1[3]; // 0xD0 – ProjectionD1 + float proj2[3]; // 0xDC – ProjectionD2 + }; + static_assert(sizeof(CamBlob) == 0xE8); + + CamBlob blob{}; + if (!m_memory.TryReadValue(pid, camBaseCache, blob)) { + camBaseCache = 0; // pointer went stale — re-resolve next call + return false; + } + + out.invertedViewRight = { blob.right[0], blob.right[1], blob.right[2] }; + out.invertedViewUp = { blob.up[0], blob.up[1], blob.up[2] }; + out.invertedViewForward = { blob.fwd[0], blob.fwd[1], blob.fwd[2] }; + out.translation = { blob.trans[0], blob.trans[1], blob.trans[2] }; + out.projectionD1x = blob.proj1[0]; + out.projectionD2y = blob.proj2[1]; + out.valid = true; + return true; +} + +// ------------------------------------------------------------------------- +// RunCameraLoop +// Dedicated low-latency camera reader. A single ~232-byte read per pass, +// run as fast as the DMA round-trip allows, so the overlay's projection +// matrix is never more than a read old. Without this the camera was only +// refreshed once per heavy main-loop iteration and lagged behind fast flicks. +// ------------------------------------------------------------------------- + +void DayZRuntimeService::RunCameraLoop() { + uint32_t lastPid = 0; + uint64_t lastWorld = 0; + uint64_t camBase = 0; + + while (!m_stopRequested.load()) { + const uint32_t pid = m_camPid.load(std::memory_order_acquire); + const uint64_t world = m_camWorldAddr.load(std::memory_order_acquire); + + if (pid == 0 || world == 0) { + // No live session — idle without burning a core. + lastPid = lastWorld = camBase = 0; + std::this_thread::sleep_for(std::chrono::milliseconds(10)); + continue; + } + + if (pid != lastPid || world != lastWorld) { + // Session (re)started — drop any stale cam-base pointer. + lastPid = pid; + lastWorld = world; + camBase = 0; + } + + CameraData cam; + if (ReadCameraInto(pid, world, camBase, cam)) { + std::lock_guard lk(m_camMutex); + m_latestCamForOverlay = cam; + } + + // Sub-millisecond yield; the DMA read itself dominates the cadence. + std::this_thread::sleep_for(std::chrono::microseconds(250)); + } +} + +// ------------------------------------------------------------------------- +// ResetAllReaders +// ------------------------------------------------------------------------- + +void DayZRuntimeService::ResetAllReaders() { + m_nearReader.Reset(); + m_farReader.Reset(); + m_slowReader.Reset(); + m_bulletReader.Reset(); + m_itemReader.Reset(); + m_scoreboardReader.Reset(); + + // Park the camera thread before tearing down camera state so it stops + // reading through a Process handle that's about to be re-created. + m_camPid.store(0, std::memory_order_release); + m_camWorldAddr.store(0, std::memory_order_release); + + m_camera = CameraData{}; + m_cachedCamBase = 0; + { + std::lock_guard lk(m_camMutex); + m_latestCamForOverlay = CameraData{}; + } + + // Reset cached bone offsets and per-entity pointer cache. + m_bonePlayerSkelOffset = -1; + m_boneZombieSkelOffset = -1; + m_boneAnimOffset = -1; + m_boneMatrixOffset = -1; + m_bonePointerCache.clear(); + + m_state.scoreboard.clear(); + m_state.nearEntities.clear(); + m_state.farEntities.clear(); + m_state.slowEntities.clear(); + m_state.bullets.clear(); + m_state.items.clear(); + + auto past = std::chrono::steady_clock::time_point{}; + m_state.nextScoreboardRefresh = past; + m_state.nextNearRefresh = past; + m_state.nextFarRefresh = past; + m_state.nextSlowRefresh = past; + m_state.nextBulletRefresh = past; + m_state.nextItemRefresh = past; + m_state.nextPlayersRefresh = past; + m_state.nextNetworkMetadataRefresh = past; + m_state.nextBoneRefresh = past; + m_state.nextVmmRefresh = past; +} + +// ------------------------------------------------------------------------- +// RefreshBonesScatter +// ------------------------------------------------------------------------- + +void DayZRuntimeService::RefreshBonesScatter( + uint32_t pid, + std::vector& players, + std::vector& zombies) +{ + // Bone indices for GetBonePositionWS scatter reads. + // Due to BoneTranslationOffset=0x54 vs the source's 0x24 (difference = 1 stride), + // our index N reads the same world position as their index N+1. All values below + // are already adjusted for this (-1 from the Enfusion PlayerBoneId/InfectedBoneId enums). + // + // Player: 15 bones. Verified against PlayerBoneId enum 2026-06-13. + static const int kPlayerBones[15] = { + 21, 23, 18, // neck(22), head(24), spine1(19) + 60, 63, 65, // leftShoulder(61), leftForearm(64), leftHand(66) + 93, 97, 99, // rightShoulder(94), rightForearm(98), rightHand(100) + 1, 4, 6, // leftUpLeg(2), leftLeg(5), leftFoot(7) + 9, 12, 14 // rightUpLeg(10), rightLeg(13), rightFoot(15) + }; + // Zombie: 16 bones. Verified against InfectedBoneId enum 2026-06-13. + static const int kZombieBones[16] = { + 19, 21, 18, 0, // neck(20), head(22), spine3(19), pelvis(1) + 23, 26, 28, // leftShoulder(24), leftForearm(27), leftHand(29) + 55, 59, 61, // rightShoulder(56), rightForearm(60), rightHand(62) + 1, 4, 6, // leftUpLeg(2), leftLeg(5), leftFoot(7) + 8, 11, 13 // rightUpLeg(9), rightLeg(12), rightFoot(14) + }; + + // Player max bone index = 99 (lHand), zombie = 60 (rHand). + // Read the full contiguous block from BoneTranslationOffset to cover all + // needed indices in one scatter entry instead of 15-16 individual reads. + // Block size: (maxIndex+1) * BoneStride bytes; zombies fit within players' block. + static constexpr int kMaxBoneIndex = 100; + static constexpr size_t kBoneBlockSize = kMaxBoneIndex * Offsets::Skeleton::BoneStride; // 4800 B + + // Per-entity bone read buffers. Must be stable in memory before we point + // scatter entries at them — reserve upfront, then only push_back. + struct PerEntityData { + float vsMatrix[12]; // VS transform (48 B) at vsAddr+8 + uint8_t boneBlock[kBoneBlockSize]; // contiguous bone matrix block + BonePointerCache* cache; + bool isZombie; + SkeletonBones* outSkel; + std::optional* outPos; // pointer back into boneTick entity list + int numBones; + const int* boneIdxs; + Vector3 entityPos; // fallback position if VS translation is zero + uint64_t addr; // entity address (for loss logging) + const std::string* label; // player nickname; nullptr for zombies + }; + + std::vector eds; + eds.reserve(players.size() + zombies.size()); + + // ---- Skeleton presence tracking → log valid→invalid transitions ---- + // Debounced so a flapping skeleton logs at most once every few seconds. + const int64_t nowMsBones = std::chrono::duration_cast( + std::chrono::steady_clock::now().time_since_epoch()).count(); + auto noteBoneOk = [&](uint64_t addr) { + m_bonesTracked.insert(addr); + }; + auto noteBoneLoss = [&](uint64_t addr, const std::string* label, + bool isZombie, const char* reason) { + // Only the valid→invalid edge is interesting; ignore entities that were + // never tracked (e.g. just appeared out of range). + auto it = m_bonesTracked.find(addr); + if (it == m_bonesTracked.end()) return; + m_bonesTracked.erase(it); + int64_t& last = m_boneLostLogAt[addr]; + if (nowMsBones - last < 3000) return; // debounce + last = nowMsBones; + const char* who = (label && !label->empty()) ? label->c_str() + : (isZombie ? "zombie" : ""); + spdlog::info("Skeleton lost: '{}' — {} [0x{:X}]", who, reason, addr); + }; + + // matBase is re-read from animClass every this many bone ticks while the cache + // entry is valid. At the default 4 ms bone cadence, 60 ticks ≈ 240 ms. + constexpr uint32_t kMatBaseResyncTicks = 60; + + // Resolve and cache the pointer chain for one entity (sequential reads, + // amortised over the lifetime of the entity). + auto ensureCached = [&](uint64_t entAddr, bool isZombie) -> BonePointerCache* { + { + auto it = m_bonePointerCache.find(entAddr); + if (it != m_bonePointerCache.end()) { + auto& c = it->second; + if (c.valid) { + if (++c.syncAge >= kMatBaseResyncTicks) { + c.syncAge = 0; + uint64_t freshMat = 0; + if (m_memory.TryReadValue(pid, + c.animClass + static_cast(m_boneMatrixOffset), + freshMat) && freshMat) { + c.matBase = freshMat; + } else { + c.valid = false; // animClass itself went stale + } + } + if (c.valid) return &c; + } + + // Cache was invalidated (stale matBase). If animClass is still + // cached we can skip the full 4-read pointer walk and just re-read + // vsAddr + matBase — 2 reads instead of 4, no probe retry needed. + if (c.animClass != 0 && m_boneAnimOffset >= 0 && m_boneMatrixOffset >= 0) { + uint64_t freshVs = 0, freshMat = 0; + if (m_memory.TryReadValue(pid, + entAddr + Offsets::Common::VisualState, freshVs) && freshVs && + m_memory.TryReadValue(pid, + c.animClass + static_cast(m_boneMatrixOffset), freshMat) && freshMat) + { + c.vsAddr = freshVs; + c.matBase = freshMat; + c.valid = true; + return &c; + } + // animClass also stale — clear it and fall through to full re-resolve. + c.animClass = 0; + } + } + } + + // ---- VS address ---- + uint64_t vsAddr = 0; + if (!m_memory.TryReadValue(pid, entAddr + Offsets::Common::VisualState, vsAddr) || !vsAddr) + return nullptr; + + // ---- Skeleton pointer + full probe (once per entity type per session) ---- + // Skel offset is per entity-type; anim/matrix offsets are shared. + // When any of the three is unknown, run the full triple probe so they are + // all validated against the same pointer chain simultaneously. + int64_t& skelOffCache = isZombie ? m_boneZombieSkelOffset : m_bonePlayerSkelOffset; + const uint64_t* skelCands = isZombie ? Offsets::Skeleton::ZombieCand + : Offsets::Skeleton::PlayerCand; + constexpr int skelCandCount = 2; + + uint64_t skelPtr = 0; + + if (skelOffCache >= 0 && m_boneAnimOffset >= 0 && m_boneMatrixOffset >= 0) { + // All offsets cached — fast path: single read. + if (!m_memory.TryReadValue(pid, + entAddr + static_cast(skelOffCache), skelPtr) || !skelPtr) + return nullptr; + } else { + // Full triple probe: skel × anim × matrix. + // Validates the entire chain before committing any cached value. + bool resolved = false; + for (int si = 0; si < skelCandCount && !resolved; ++si) { + uint64_t sp = 0; + if (!m_memory.TryReadValue(pid, entAddr + skelCands[si], sp) || !sp) continue; + for (uint64_t ac : Offsets::Skeleton::AnimCand) { + uint64_t animClass = 0; + if (!m_memory.TryReadValue(pid, sp + ac, animClass) || !animClass) continue; + for (uint64_t mc : Offsets::Skeleton::MatrixCand) { + uint64_t matBase = 0; + if (!m_memory.TryReadValue(pid, animClass + mc, matBase) || !matBase) continue; + struct Vec3f { float x, y, z; }; + Vec3f test{}; + const uint64_t testAddr = matBase + Offsets::Skeleton::BoneTranslationOffset + + 21 * Offsets::Skeleton::BoneStride; + if (!m_memory.TryReadValue(pid, testAddr, test)) continue; + // Reject all-zero (uninitialised page) and out-of-range garbage. + // Local bone translations are always within ±5 m of the skeleton root. + if (test.x == 0.0f && test.y == 0.0f && test.z == 0.0f) continue; + if (fabsf(test.x) > 5.0f || fabsf(test.y) > 5.0f || fabsf(test.z) > 5.0f) continue; + skelOffCache = static_cast(skelCands[si]); + m_boneAnimOffset = static_cast(ac); + m_boneMatrixOffset = static_cast(mc); + skelPtr = sp; + spdlog::info("RefreshBonesScatter: {} skelOff=0x{:X} animOff=0x{:X} matrixOff=0x{:X}", + isZombie ? "zombie" : "player", skelCands[si], ac, mc); + resolved = true; + break; + } + if (resolved) break; + } + } + if (!resolved) return nullptr; + } + + // ---- Resolve anim class → matBase ---- + uint64_t animClass = 0; + if (!m_memory.TryReadValue(pid, + skelPtr + static_cast(m_boneAnimOffset), animClass) || !animClass) + return nullptr; + + uint64_t matBase = 0; + if (!m_memory.TryReadValue(pid, + animClass + static_cast(m_boneMatrixOffset), matBase) || !matBase) + return nullptr; + + BonePointerCache c{ vsAddr, animClass, matBase, true }; + m_bonePointerCache[entAddr] = c; + return &m_bonePointerCache[entAddr]; + }; + + // Collect in-range entities into eds[]. + auto collect = [&](auto& entityVec, bool isZombie, float maxDist2) { + const int* boneIdxs = isZombie ? kZombieBones : kPlayerBones; + const int numBones = isZombie ? 16 : 15; + for (auto& e : entityVec) { + if (!e.position) continue; + float dx = e.position->x - m_camera.translation.x; + float dy = e.position->y - m_camera.translation.y; + float dz = e.position->z - m_camera.translation.z; + if (dx*dx + dy*dy + dz*dz > maxDist2) continue; + + using ElemT = std::decay_t; + const std::string* label = nullptr; + if constexpr (std::is_same_v) + label = &e.nickname; + + BonePointerCache* cache = ensureCached(e.address, isZombie); + if (!cache) { + // Pointer chain unresolved this tick — if the entity previously + // had a skeleton, that's a real disappearance worth logging. + noteBoneLoss(e.address, label, isZombie, "pointer chain unresolved"); + continue; + } + + eds.push_back({}); + auto& ed = eds.back(); + ed.cache = cache; + ed.isZombie = isZombie; + ed.outSkel = &e.skeleton; + ed.outPos = &e.position; + ed.numBones = numBones; + ed.boneIdxs = boneIdxs; + ed.entityPos = *e.position; + ed.addr = e.address; + ed.label = label; + std::memset(ed.vsMatrix, 0, sizeof(ed.vsMatrix)); + std::memset(ed.boneBlock, 0, sizeof(ed.boneBlock)); + } + }; + + const float pd = m_config.bonePlayerMaxDist; + const float zd = m_config.boneZombieMaxDist; + collect(players, false, pd * pd); + collect(zombies, true, zd * zd); + + if (eds.empty()) return; + + // Build scatter list — 2 entries per entity: + // [0] VS matrix (48 B at vsAddr+8) + // [1] bone block (4800 B at matBase+BoneTranslationOffset, covers indices 0-99) + // Previously: 17 entries per entity (1 VS + 16 individual bone reads). + // Now: 2 entries per entity regardless of bone count — 85% fewer DMA operations. + std::vector scatter; + scatter.reserve(eds.size() * 2); + + for (auto& ed : eds) { + scatter.push_back({ ed.cache->vsAddr + 8, + ed.vsMatrix, + sizeof(ed.vsMatrix) }); + scatter.push_back({ ed.cache->matBase + Offsets::Skeleton::BoneTranslationOffset, + ed.boneBlock, + kBoneBlockSize }); + } + + // Single DMA round-trip for ALL entities. + m_memory.ScatterRead(pid, scatter); + + // Transform local bone translations → world space using the VS matrix. + for (auto& ed : eds) { + const float* m = ed.vsMatrix; + + // Extract bone i's translation from the contiguous block. + // boneBlock starts at matBase+BoneTranslationOffset; bone i's entry + // begins at boneIdxs[slot]*BoneStride within the block, and the first + // 12 bytes are the local translation [x, y, z]. + auto transform = [&](int slot, Vector3& pos) { + const size_t off = static_cast(ed.boneIdxs[slot]) + * Offsets::Skeleton::BoneStride; + const float* t = reinterpret_cast(ed.boneBlock + off); + const float bx = t[0], by = t[1], bz = t[2]; + pos.x = bx * m[0] + by * m[3] + bz * m[6] + m[9]; + pos.y = bx * m[1] + by * m[4] + bz * m[7] + m[10]; + pos.z = bx * m[2] + by * m[5] + bz * m[8] + m[11]; + }; + + SkeletonBones& skel = *ed.outSkel; + int ok = 0; + + if (!ed.isZombie) { + Vector3* boneOut[15] = { + &skel.neck, &skel.head, &skel.spine, + &skel.rightShoulder, &skel.rightElbow, &skel.rightHand, + &skel.leftShoulder, &skel.leftElbow, &skel.leftHand, + &skel.rightHip, &skel.rightKnee, &skel.rightAnkle, + &skel.leftHip, &skel.leftKnee, &skel.leftAnkle + }; + for (int i = 0; i < 15; ++i) { + transform(i, *boneOut[i]); + if (boneOut[i]->x != 0.0f || boneOut[i]->y != 0.0f || boneOut[i]->z != 0.0f) ++ok; + } + } else { + Vector3* boneOut[16] = { + &skel.neck, &skel.head, &skel.spine, &skel.pelvis, + &skel.leftShoulder, &skel.leftElbow, &skel.leftHand, + &skel.rightShoulder, &skel.rightElbow, &skel.rightHand, + &skel.rightHip, &skel.rightKnee, &skel.rightAnkle, + &skel.leftHip, &skel.leftKnee, &skel.leftAnkle + }; + for (int i = 0; i < 16; ++i) { + transform(i, *boneOut[i]); + if (boneOut[i]->x != 0.0f || boneOut[i]->y != 0.0f || boneOut[i]->z != 0.0f) ++ok; + } + } + + skel.valid = (ok >= 4); + const char* lossReason = skel.valid ? nullptr : "insufficient bones in scatter"; + + // ---- Update entity position from VS matrix translation ---- + // The VS matrix is freshly read this scatter; its translation column + // (m[9..11]) is the entity's current visual position in world space. + // Writing it back to boneTick.players[i].position means every 60Hz bone + // tick publishes an up-to-date position, not the stale scan-time value. + // This eliminates the "ghost at old position" artifact between entity scans. + const float vsX = ed.vsMatrix[9]; + const float vsY = ed.vsMatrix[10]; + const float vsZ = ed.vsMatrix[11]; + const bool vsOk = (vsX != 0.0f || vsY != 0.0f || vsZ != 0.0f); + if (vsOk && ed.outPos) + *ed.outPos = Vector3{ vsX, vsY, vsZ }; + + // ---- Validate head bone against the FRESH VS translation ---- + // Previous code used ed.entityPos (scan-time, possibly seconds old). + // A player running between scans can move >3 m, causing false evictions + // that continuously re-resolved the pointer cache and dropped skeletons. + // Using the VS translation (same scatter, same timestamp as the bones) + // makes this check accurate regardless of entity scan frequency. + if (skel.valid) { + const float refX = vsOk ? vsX : ed.entityPos.x; + const float refY = vsOk ? vsY : ed.entityPos.y; + const float refZ = vsOk ? vsZ : ed.entityPos.z; + const float hx = skel.head.x - refX; + const float hy = skel.head.y - refY; + const float hz = skel.head.z - refZ; + if (hx*hx + hy*hy + hz*hz > 9.0f) { // > 3 m from VS origin → stale pointer + skel.valid = false; + ed.cache->valid = false; // force re-resolve next frame + lossReason = "stale pointer (head drift > 3m)"; + } + } + + // Detect stale matBase via "collapsed skeleton": when the boneBlock scatter + // returns all-zero local translations, the transform sets every bone to + // (vsX, vsY, vsZ). ok reaches 15 (all "non-zero") so the valid flag stays + // set, but head.y ≈ vsY — impossible for a standing or crouching player + // (head is always 1+ m above the entity root in DayZ). Evicting the cache + // here causes ensureCached to re-read a fresh matBase on the next tick via + // the fast 2-read path (animClass is still cached). + if (skel.valid && vsOk && (skel.head.y - vsY) < 0.3f) { + skel.valid = false; + ed.cache->valid = false; + lossReason = "collapsed skeleton (stale matBase)"; + } + + // Record presence / log the valid→invalid edge for diagnostics. + if (skel.valid) + noteBoneOk(ed.addr); + else + noteBoneLoss(ed.addr, ed.label, ed.isZombie, lossReason); + } + + // Drop loss-debounce timestamps for entities no longer tracked or pending, + // so the map can't grow without bound on busy servers. + if (m_boneLostLogAt.size() > 256) { + for (auto it = m_boneLostLogAt.begin(); it != m_boneLostLogAt.end(); ) + it = (nowMsBones - it->second > 10000) ? m_boneLostLogAt.erase(it) + : std::next(it); + } +} + +// ------------------------------------------------------------------------- +// BuildScoreboardNames +// ------------------------------------------------------------------------- + +std::unordered_map +DayZRuntimeService::BuildScoreboardNames( + const std::vector& scoreboard) +{ + std::unordered_map result; + result.reserve(scoreboard.size()); + for (const auto& player : scoreboard) { + if (player.networkId != 0) { + result[player.networkId] = player.playerName; + } + } + return result; +} diff --git a/src/Runtime/DayZRuntimeService.h b/src/Runtime/DayZRuntimeService.h new file mode 100644 index 0000000..3550a5a --- /dev/null +++ b/src/Runtime/DayZRuntimeService.h @@ -0,0 +1,296 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "Core/Models.h" +#include "Core/RuntimeSession.h" +#include "Memory/VmmAccessor.h" +#include "Readers/BulletTableReader.h" +#include "Readers/ClientScoreboardReader.h" +#include "Readers/EntityCategoryProjector.h" +#include "Readers/FarEntityListReader.h" +#include "Readers/ItemFilterCatalog.h" +#include "Readers/ItemListReader.h" +#include "Readers/NearEntityListReader.h" +#include "Readers/SlowEntityListReader.h" +#include "Resolvers/BaseObjectResolver.h" +#include "Resolvers/LocalPlayerResolver.h" +#include "Resolvers/NetworkMetadataReader.h" +#include "SigScanner/SigScanner.h" + +// ------------------------------------------------------------------------- +// RuntimeUpdate +// Snapshot of all reader state delivered to the callback on each cycle. +// ------------------------------------------------------------------------- + +struct RuntimeUpdate { + bool areBaseObjectsReady = false; + std::string status; + + std::optional serverName; + std::optional gameVersion; + std::optional serverMapName; + + std::optional localPlayerEntityAddress; + std::optional localPlayerPosition; + std::optional localPlayerLookDirection; + + std::vector scoreboardPlayers; + std::vector players; + std::vector animals; + std::vector zombies; + std::vector carsAndBoats; + std::vector otherEntities; + std::vector bullets; + std::vector items; + std::vector nearEntities; + std::vector farEntities; + std::vector slowEntities; + + std::optional camera; +}; + +// ------------------------------------------------------------------------- +// RuntimeConfig +// Tunable parameters for the service. +// ------------------------------------------------------------------------- + +struct RuntimeConfig { + std::string processName = "DayZ_x64.exe"; + bool useMemoryMap = true; // passed to VolkDMA; auto-generates memory_map.txt + + int networkMetadataRefreshMs = 30000; + int scoreboardRefreshMs = 30000; + int nearEntityRefreshMs = 20; // was 50 — 50 Hz keeps boxes smooth in combat + int farEntityRefreshMs = 50; // was 100 + int slowEntityRefreshMs = 100; + int bulletRefreshMs = 50; + int itemRefreshMs = 200; + int playersRefreshMs = 16; // was 50 — matches bone-scatter cadence (60 Hz rebuild) + int liveLoopIdleMs = 1; + int reconnectThreshold = 5; + int reconnectGracePeriodMs = 5000; + int farEntityBatchSize = 64; + int slowEntityBatchSize = 64; + int itemBatchSize = 64; + int boneRefreshMs = 4; // bone-scatter cadence — 4 ms = 250 Hz + float bonePlayerMaxDist = 500.0f; // players beyond this skip bone reads + float boneZombieMaxDist = 250.0f; // zombies beyond this skip bone reads + int vmmRefreshMs = 30000; // VMMDLL_OPT_REFRESH_ALL cadence — must be called + // periodically during the live loop or the page cache + // goes stale and reads silently return garbage (~1 h) + float itemSpatialFilterRadius = 300.0f; // items beyond this distance from the local player are + // excluded from the published snapshot entirely + + /// Load from an INI-style config.cfg (key = value, # comments). + /// Missing keys keep their default values. + static RuntimeConfig Load(const std::string& path); +}; + +// ------------------------------------------------------------------------- +// DayZRuntimeService +// Background service that attaches to DayZ, reads all entity/bullet/item +// data in a throttled loop, and delivers snapshots via a callback. +// ------------------------------------------------------------------------- + +class DayZRuntimeService { +public: + using UpdateCallback = std::function; + + explicit DayZRuntimeService(RuntimeConfig config = {}); + ~DayZRuntimeService(); + + // Non-copyable, non-movable (owns threads + mutexes) + DayZRuntimeService(const DayZRuntimeService&) = delete; + DayZRuntimeService& operator=(const DayZRuntimeService&) = delete; + DayZRuntimeService(DayZRuntimeService&&) = delete; + DayZRuntimeService& operator=(DayZRuntimeService&&) = delete; + + /// Start the background thread. Safe to call only once. + void Start(); + + /// Signal the background thread to stop and join it. + void Stop(); + + /// Thread-safe snapshot of the most recent entity update (50 ms cadence). + [[nodiscard]] std::shared_ptr GetLatestUpdate() const; + + /// Lightweight camera read — fills out with the latest camera data. + /// Updated every background loop tick (~1 ms), completely separate from the + /// entity snapshot so the overlay always gets the freshest camera. + /// Returns false if no valid camera is available yet. + bool GetLatestCamera(CameraData& out) const; + + /// Register a callback invoked (from the background thread) on each update. + void SetUpdateCallback(UpdateCallback cb); + +private: + // ------------------------------------------------------------------ + // Configuration + // ------------------------------------------------------------------ + RuntimeConfig m_config; + ItemFilterCatalog m_filterCatalog; + + // ------------------------------------------------------------------ + // Memory + resolvers + // ------------------------------------------------------------------ + VmmAccessor m_memory; + BaseObjectResolver m_baseResolver; + LocalPlayerResolver m_localPlayerResolver; + NetworkMetadataReader m_networkMetadataReader; + NearEntityListReader m_nearReader; + FarEntityListReader m_farReader; + SlowEntityListReader m_slowReader; + BulletTableReader m_bulletReader; + ItemListReader m_itemReader; + ClientScoreboardReader m_scoreboardReader; + + // Last module base address passed to the sig scanner. + uint64_t m_lastScannedBase = 0; + + // Cached camera base pointer (resolved once per session; 0 = not yet known). + // Caching this avoids re-reading World+0x1B8 on every tick. + uint64_t m_cachedCamBase = 0; + + // Resolved skeleton pointer-chain offsets (probed once, cached per session). + // Skel offsets are per entity-type (player vs zombie differ); anim/matrix are shared. + int64_t m_bonePlayerSkelOffset = -1; + int64_t m_boneZombieSkelOffset = -1; + int64_t m_boneAnimOffset = -1; + int64_t m_boneMatrixOffset = -1; + + // Per-entity bone pointer cache: entity address → (vsAddr, animClass, matBase). + // animClass is stable for the entity lifetime; matBase is dynamic (can be + // reallocated by the engine's animation system). Caching animClass separately + // lets re-resolve after a stale matBase skip the full 4-read pointer walk. + struct BonePointerCache { + uint64_t vsAddr = 0; + uint64_t animClass = 0; + uint64_t matBase = 0; + bool valid = false; + uint32_t syncAge = 0; // bone-tick counter; matBase re-read when this reaches kMatBaseResyncTicks + }; + std::unordered_map m_bonePointerCache; + + // ---- Diagnostic logging bookkeeping ---- + // Admins already announced to the log (so each is reported once, not every + // cycle). Cleared when the player leaves the snapshot so a re-join re-logs. + std::unordered_set m_adminAnnounced; + // Entities whose skeleton currently resolves to valid bones. Used to detect + // the valid→invalid edge so we can log when a skeleton drops out. + std::unordered_set m_bonesTracked; + // addr → steady-clock ms of the last "skeleton lost" log, for debouncing + // flapping skeletons to at most one message every few seconds. + std::unordered_map m_boneLostLogAt; + + // Separate lightweight camera state for the overlay. + // Updated by the dedicated camera thread (RunCameraLoop) at high frequency, + // decoupled from the heavy entity/bone reads so the overlay always projects + // through the freshest possible camera — this is what keeps boxes/skeletons + // glued to fast viewangle flicks instead of lagging a few ms behind. + mutable std::mutex m_camMutex; + CameraData m_latestCamForOverlay; + + // Session handoff for the camera thread. Set when a live session starts, + // cleared (0) on reconnect so the camera thread idles while the Process + // handle is being re-created. Atomics: written by the runtime thread, + // read by the camera thread. + std::atomic m_camPid{0}; + std::atomic m_camWorldAddr{0}; + + // ------------------------------------------------------------------ + // Threading + // ------------------------------------------------------------------ + std::thread m_runtimeThread; + std::thread m_cameraThread; + std::atomic m_stopRequested{false}; + mutable std::mutex m_updateMutex; + std::shared_ptr m_latestUpdate; + UpdateCallback m_callback; + + // ------------------------------------------------------------------ + // Live update baseline — entity lists refreshed every playersRefreshMs, + // camera/localPlayer overwritten every loop tick. + RuntimeUpdate m_liveUpdate; + + // ------------------------------------------------------------------ + // Per-iteration reader state / throttle timestamps + // ------------------------------------------------------------------ + struct ReaderState { + std::vector scoreboard; + std::vector nearEntities; + std::vector farEntities; + std::vector slowEntities; + std::vector bullets; + std::vector items; + + std::chrono::steady_clock::time_point nextScoreboardRefresh; + std::chrono::steady_clock::time_point nextNearRefresh; + std::chrono::steady_clock::time_point nextFarRefresh; + std::chrono::steady_clock::time_point nextSlowRefresh; + std::chrono::steady_clock::time_point nextBulletRefresh; + std::chrono::steady_clock::time_point nextItemRefresh; + std::chrono::steady_clock::time_point nextPlayersRefresh; + std::chrono::steady_clock::time_point nextNetworkMetadataRefresh; + std::chrono::steady_clock::time_point nextBoneRefresh; + std::chrono::steady_clock::time_point nextVmmRefresh; + } m_state; + + // Cached metadata, player data, and camera populated during session + NetworkMetadata m_metadata; + LocalPlayerData m_localPlayer; + CameraData m_camera; + + // ------------------------------------------------------------------ + // Exception used to trigger a reconnect from RunLiveLoop + // ------------------------------------------------------------------ + struct ReconnectException {}; + + // ------------------------------------------------------------------ + // Private methods + // ------------------------------------------------------------------ + void Run(); + + /// Block until a valid session is established. Returns the session. + RuntimeSession WaitForSession(); + + /// Main live-data loop. Throws ReconnectException when the session + /// is no longer valid or the consecutive-failure threshold is reached. + void RunLiveLoop(const RuntimeSession& session); + + /// Dedicated high-frequency camera reader. Runs for the whole program + /// lifetime; idles until m_camPid / m_camWorldAddr are set by a live session. + void RunCameraLoop(); + + /// Read the camera transform block into `out`. Resolves camBaseCache from + /// worldAddr when it is 0; resets it to 0 on a failed read to force a + /// re-resolve next call. Returns true on success. + bool ReadCameraInto(uint32_t pid, uint64_t worldAddr, + uint64_t& camBaseCache, CameraData& out); + + /// Publish an update snapshot under the mutex and invoke the callback. + void PublishUpdate(const RuntimeUpdate& update); + + /// Reset all readers and clear m_state vectors. + void ResetAllReaders(); + + /// Build a scoreboard lookup map (networkId -> playerName). + static std::unordered_map + BuildScoreboardNames(const std::vector& scoreboard); + + /// Scatter-read bones for all players/zombies in range using the pointer cache. + /// Cache misses resolve the pointer chain sequentially (one-time per entity). + /// All subsequent reads for cached entities are batched into one DMA call. + void RefreshBonesScatter(uint32_t pid, + std::vector& players, + std::vector& zombies); +}; diff --git a/src/RuntimeOffsets.h b/src/RuntimeOffsets.h new file mode 100644 index 0000000..6dcea2d --- /dev/null +++ b/src/RuntimeOffsets.h @@ -0,0 +1,60 @@ +#pragma once +#include +#include "Offsets.h" + +// --------------------------------------------------------------------------- +// RuntimeOffsets +// +// Mutable counterparts to the compile-time Offsets:: namespace. +// SigScanner::Apply() updates these at startup from scanned byte patterns. +// All memory readers use RuntimeOffsets:: so a single scanner run covers a +// game patch without needing a recompile. +// +// Defaults are the last-known good values from Offsets.h; the scanner will +// overwrite them when matching patterns are found in the game binary. +// --------------------------------------------------------------------------- +namespace RuntimeOffsets { + + // ----------------------------------------------------------------------- + // Base — module-relative RVAs of global variables + // (resolved via RIP-relative MOV/LEA, ScanType::MovCs) + // ----------------------------------------------------------------------- + namespace Base { + inline uint64_t World = Offsets::Base::World; + inline uint64_t NetworkManager = Offsets::Base::NetworkManager; + } + + // ----------------------------------------------------------------------- + // World — struct member offsets within the World object + // (resolved via MOV reg, [reg+offset], ScanType::MovReg) + // ----------------------------------------------------------------------- + namespace World { + inline uint64_t NearEntityList = Offsets::World::NearEntityList; + inline uint64_t NearTableSize = Offsets::World::NearTableSize; + inline uint64_t FarEntityList = Offsets::World::FarEntityList; + inline uint64_t FarTableSize = Offsets::World::FarTableSize; + inline uint64_t BulletTable = Offsets::World::BulletTable; + inline uint64_t BulletCount = Offsets::World::BulletCount; + inline uint64_t Camera = Offsets::World::Camera; + inline uint64_t ItemList = Offsets::World::ItemList; + inline uint64_t ItemTableAllocCount = Offsets::World::ItemTableAllocCount; + inline uint64_t ItemTableValidCount = Offsets::World::ItemTableValidCount; + } + + // ----------------------------------------------------------------------- + // Entity / common struct offsets + // ----------------------------------------------------------------------- + namespace Common { + inline uint64_t VisualState = Offsets::Common::VisualState; + } + + namespace Player { + inline uint64_t IsDead = Offsets::Player::IsDead; + } + + namespace Inventory { + inline uint64_t Base = Offsets::Inventory::Base; + inline uint64_t Hands = Offsets::Inventory::Hands; + } + +} // namespace RuntimeOffsets diff --git a/src/SigScanner/SigScanner.cpp b/src/SigScanner/SigScanner.cpp new file mode 100644 index 0000000..1de8219 --- /dev/null +++ b/src/SigScanner/SigScanner.cpp @@ -0,0 +1,360 @@ +#include "SigScanner/SigScanner.h" +#include "RuntimeOffsets.h" +#include "Offsets.h" + +#include +#include +#include +#include + +#include + +// ----------------------------------------------------------------------- +// Constants +// ----------------------------------------------------------------------- + +static constexpr size_t kChunkSize = 4 * 1024 * 1024; // 4 MB per DMA read +static constexpr size_t kOverlap = 512; // cross-boundary safety +static constexpr size_t kDefaultScanSize = 64 * 1024 * 1024; // fallback if PE read fails + +// ----------------------------------------------------------------------- +// ParsePattern +// ----------------------------------------------------------------------- +std::vector +SigScanner::ParsePattern(const std::string& hex) +{ + std::vector out; + std::istringstream ss(hex); + std::string token; + while (ss >> token) { + if (token == "?" || token == "??") { + out.push_back({ 0x00, true }); + } else { + uint8_t byte = static_cast(std::stoul(token, nullptr, 16)); + out.push_back({ byte, false }); + } + } + return out; +} + +// ----------------------------------------------------------------------- +// FindFirst +// ----------------------------------------------------------------------- +std::optional SigScanner::FindFirst( + const std::vector& haystack, + const std::vector& pattern, + size_t startPos) +{ + if (pattern.empty()) return std::nullopt; + const size_t patLen = pattern.size(); + if (haystack.size() < patLen) return std::nullopt; + const size_t limit = haystack.size() - patLen; + + for (size_t i = startPos; i <= limit; ++i) { + bool ok = true; + for (size_t j = 0; j < patLen; ++j) { + if (!pattern[j].wildcard && haystack[i + j] != pattern[j].value) { + ok = false; + break; + } + } + if (ok) return i; + } + return std::nullopt; +} + +// ----------------------------------------------------------------------- +// ReadU32 +// ----------------------------------------------------------------------- +uint32_t SigScanner::ReadU32(const std::vector& bytes, size_t offset) +{ + uint32_t v = 0; + std::memcpy(&v, bytes.data() + offset, sizeof(v)); + return v; +} + +// ----------------------------------------------------------------------- +// ResolveRip (MovCs) +// target = matchRva + instrLen + sign_extend(disp32) +// ----------------------------------------------------------------------- +uint64_t SigScanner::ResolveRip(uint64_t matchRva, int instrLen, uint32_t disp32Raw) +{ + const int32_t disp = static_cast(disp32Raw); + const int64_t target = static_cast(matchRva) + + static_cast(instrLen) + + static_cast(disp); + return static_cast(target); +} + +// ----------------------------------------------------------------------- +// ExtractMovReg +// Find the first wildcard byte in the pattern; read uint32 from that +// position in the original chunk. For DayZ, the 4 wildcard bytes that +// immediately follow the opcode prefix are the struct member offset. +// ----------------------------------------------------------------------- +uint32_t SigScanner::ExtractMovReg(const std::vector& chunk, + size_t matchPos, + const std::vector& pattern) +{ + for (size_t i = 0; i < pattern.size(); ++i) { + if (pattern[i].wildcard) { + return ReadU32(chunk, matchPos + i); + } + } + return 0; +} + +// ----------------------------------------------------------------------- +// ReadModuleSize +// ----------------------------------------------------------------------- +size_t SigScanner::ReadModuleSize(VmmAccessor& mem, uint32_t pid, uint64_t moduleBase) +{ + uint16_t magic = 0; + if (!mem.TryReadValue(pid, moduleBase, magic) || magic != 0x5A4D) return 0; + + uint32_t e_lfanew = 0; + if (!mem.TryReadValue(pid, moduleBase + 0x3C, e_lfanew)) return 0; + + uint32_t peSig = 0; + if (!mem.TryReadValue(pid, moduleBase + e_lfanew, peSig) || peSig != 0x00004550) return 0; + + // SizeOfImage: PE_header + 4 (PE sig) + 20 (COFF) + 0x38 (optional header offset) + uint32_t sizeOfImage = 0; + if (!mem.TryReadValue(pid, moduleBase + e_lfanew + 24 + 0x38, sizeOfImage)) return 0; + + return static_cast(sizeOfImage); +} + +// ----------------------------------------------------------------------- +// Scan +// ----------------------------------------------------------------------- +SigScanner::ScanResult +SigScanner::Scan(VmmAccessor& mem, uint32_t pid, uint64_t moduleBase) +{ + ScanResult result; + + // ---- Determine scan range ---- + size_t scanSize = ReadModuleSize(mem, pid, moduleBase); + if (scanSize == 0) { + spdlog::warn("SigScanner: PE header unreadable — defaulting to {} MB", + kDefaultScanSize / (1024 * 1024)); + scanSize = kDefaultScanSize; + } else { + spdlog::debug("SigScanner: SizeOfImage = {} MB", scanSize / (1024 * 1024)); + } + + // ==================================================================== + // Pattern table — DayZ 1.29 + // ==================================================================== + + // ---- MovCs: RIP-relative globals ---- + // Modbase::World (48 8B 05 [disp32] 48 8D 54 24 ?? 48 8B 48 30) + auto patWorld = ParsePattern( + "48 8B 05 ? ? ? ? 48 8D 54 24 ? 48 8B 48 30"); + + // Modbase::Network (48 8D 0D [disp32] E8 ?? ?? ?? ?? 48 8B 1D ?? ?? ?? ?? 84 C0 74 20 41) + auto patNetMgr = ParsePattern( + "48 8D 0D ? ? ? ? E8 ? ? ? ? 48 8B 1D ? ? ? ? 84 C0 74 20 41"); + + // ---- MovReg: World struct member offsets ---- + // World::NearEntList (48 8B 83 [off32] 49 8B 14 06 48 3B D5) + auto patNear = ParsePattern( + "48 8B 83 ? ? ? ? 49 8B 14 06 48 3B D5"); + + // World::FarEntList (48 8B 83 [off32] 49 8B 0C 06 48 3B CD ...) + auto patFar = ParsePattern( + "48 8B 83 ? ? ? ? 49 8B 0C 06 48 3B CD 74 17 80 B9 ? ? ? ? ? 75 0E"); + + // World::BulletList (48 8B 83 [off32] 49 8B CF 48 03 0C F8) + auto patBullet = ParsePattern( + "48 8B 83 ? ? ? ? 49 8B CF 48 03 0C F8"); + + // World::Camera (4C 8B 83 [off32] 4C 8B 11 48 89 70 08) + auto patCamera = ParsePattern( + "4C 8B 83 ? ? ? ? 4C 8B 11 48 89 70 08"); + + // World::ItemList (48 89 85 [off32] 48 8D 15 ?? ?? ?? ?? 48 89 9D ?? ?? ?? ?? 48 8D 8D) + auto patItem = ParsePattern( + "48 89 85 ? ? ? ? 48 8D 15 ? ? ? ? 48 89 9D ? ? ? ? 48 8D 8D"); + + // ---- MovReg: entity struct offsets ---- + // Human::VisualState (48 8B 9F [off32] 49 8B CE FF 90 ?? ?? ?? ?? 8B 10) + auto patVS = ParsePattern( + "48 8B 9F ? ? ? ? 49 8B CE FF 90 ? ? ? ? 8B 10"); + + // Human::IsDead (0F B6 9A [off32] 48 89 7C 24 20 41 0F B6 B8 ?? ?? ?? ?? FF 90 B0 00) + auto patDead = ParsePattern( + "0F B6 9A ? ? ? ? 48 89 7C 24 20 41 0F B6 B8 ? ? ? ? FF 90 B0 00"); + + // DayZPlayer::Inventory (48 8B 8B [off32] 48 8B 01 FF 90 ?? ?? ?? ?? EB 02) + auto patInv = ParsePattern( + "48 8B 8B ? ? ? ? 48 8B 01 FF 90 ? ? ? ? EB 02"); + + // DayZPlayerInventory::Hands (48 8B 8B [off32] 48 8B F8 48 85 C9) + auto patHands = ParsePattern( + "48 8B 8B ? ? ? ? 48 8B F8 48 85 C9"); + + // ==================================================================== + // Chunk scan + // ==================================================================== + std::vector chunk; + chunk.reserve(kChunkSize + kOverlap); + + size_t offset = 0; + while (offset < scanSize) { + // Early-out once everything is found + if (result.baseWorld && + result.baseNetworkManager && + result.worldNearEntList && + result.worldFarEntList && + result.worldBulletList && + result.worldCamera && + result.worldItemList && + result.humanVisualState && + result.humanIsDead && + result.playerInventory && + result.inventoryHands) + { + break; + } + + const size_t readSize = std::min(kChunkSize, scanSize - offset); + if (!mem.ReadBytes(pid, moduleBase + offset, readSize, chunk)) { + offset += readSize; + continue; + } + + // -- MovCs -- + if (!result.baseWorld) { + if (auto pos = FindFirst(chunk, patWorld)) { + result.baseWorld = ResolveRip(offset + *pos, 7, ReadU32(chunk, *pos + 3)); + } + } + if (!result.baseNetworkManager) { + if (auto pos = FindFirst(chunk, patNetMgr)) { + result.baseNetworkManager = ResolveRip(offset + *pos, 7, ReadU32(chunk, *pos + 3)); + } + } + + // -- MovReg (World struct) -- + if (!result.worldNearEntList) { + if (auto pos = FindFirst(chunk, patNear)) { + result.worldNearEntList = ExtractMovReg(chunk, *pos, patNear); + } + } + if (!result.worldFarEntList) { + if (auto pos = FindFirst(chunk, patFar)) { + result.worldFarEntList = ExtractMovReg(chunk, *pos, patFar); + } + } + if (!result.worldBulletList) { + if (auto pos = FindFirst(chunk, patBullet)) { + result.worldBulletList = ExtractMovReg(chunk, *pos, patBullet); + } + } + if (!result.worldCamera) { + if (auto pos = FindFirst(chunk, patCamera)) { + result.worldCamera = ExtractMovReg(chunk, *pos, patCamera); + } + } + if (!result.worldItemList) { + if (auto pos = FindFirst(chunk, patItem)) { + result.worldItemList = ExtractMovReg(chunk, *pos, patItem); + } + } + + // -- MovReg (entity struct) -- + if (!result.humanVisualState) { + if (auto pos = FindFirst(chunk, patVS)) { + result.humanVisualState = ExtractMovReg(chunk, *pos, patVS); + } + } + if (!result.humanIsDead) { + if (auto pos = FindFirst(chunk, patDead)) { + result.humanIsDead = ExtractMovReg(chunk, *pos, patDead); + } + } + if (!result.playerInventory) { + if (auto pos = FindFirst(chunk, patInv)) { + result.playerInventory = ExtractMovReg(chunk, *pos, patInv); + } + } + if (!result.inventoryHands) { + if (auto pos = FindFirst(chunk, patHands)) { + result.inventoryHands = ExtractMovReg(chunk, *pos, patHands); + } + } + + if (readSize <= kOverlap) break; + offset += readSize - kOverlap; + } + + // ---- Report ---- + auto log = [](const char* name, auto val) { + if (val) spdlog::info("SigScanner: {:35s} = 0x{:X}", name, *val); + else spdlog::warn("SigScanner: {:35s} NOT FOUND", name); + }; + log("base::world", result.baseWorld); + log("base::network_manager", result.baseNetworkManager); + log("World::NearEntityList", result.worldNearEntList); + log("World::FarEntityList", result.worldFarEntList); + log("World::BulletTable", result.worldBulletList); + log("World::Camera", result.worldCamera); + log("World::ItemList", result.worldItemList); + log("Common::VisualState", result.humanVisualState); + log("Player::IsDead", result.humanIsDead); + log("Inventory::Base", result.playerInventory); + log("Inventory::Hands", result.inventoryHands); + + return result; +} + +// ----------------------------------------------------------------------- +// Apply — write results into RuntimeOffsets, log each change +// ----------------------------------------------------------------------- +void SigScanner::Apply(const ScanResult& result) +{ + auto applyU64 = [](const char* name, uint64_t& dst, std::optional src) { + if (!src) return; + if (*src != dst) { + spdlog::info("SigScanner::Apply: {} 0x{:X} -> 0x{:X}", name, dst, *src); + dst = *src; + } + }; + auto applyU32 = [](const char* name, uint64_t& dst, std::optional src) { + if (!src) return; + if (static_cast(*src) != dst) { + spdlog::info("SigScanner::Apply: {} 0x{:X} -> 0x{:X}", name, dst, *src); + dst = static_cast(*src); + } + }; + + applyU64("Base::World", RuntimeOffsets::Base::World, result.baseWorld); + applyU64("Base::NetworkManager", RuntimeOffsets::Base::NetworkManager, result.baseNetworkManager); + + applyU32("World::NearEntityList", RuntimeOffsets::World::NearEntityList, result.worldNearEntList); + applyU32("World::FarEntityList", RuntimeOffsets::World::FarEntityList, result.worldFarEntList); + applyU32("World::BulletTable", RuntimeOffsets::World::BulletTable, result.worldBulletList); + applyU32("World::Camera", RuntimeOffsets::World::Camera, result.worldCamera); + applyU32("World::ItemList", RuntimeOffsets::World::ItemList, result.worldItemList); + + // Derive companion offsets that always follow the primary by +8 + if (result.worldNearEntList) { + RuntimeOffsets::World::NearTableSize = RuntimeOffsets::World::NearEntityList + 8; + } + if (result.worldFarEntList) { + RuntimeOffsets::World::FarTableSize = RuntimeOffsets::World::FarEntityList + 8; + } + if (result.worldBulletList) { + RuntimeOffsets::World::BulletCount = RuntimeOffsets::World::BulletTable + 8; + } + if (result.worldItemList) { + RuntimeOffsets::World::ItemTableAllocCount = RuntimeOffsets::World::ItemList + 8; + RuntimeOffsets::World::ItemTableValidCount = RuntimeOffsets::World::ItemList + 16; + } + + applyU32("Common::VisualState", RuntimeOffsets::Common::VisualState, result.humanVisualState); + applyU32("Player::IsDead", RuntimeOffsets::Player::IsDead, result.humanIsDead); + applyU32("Inventory::Base", RuntimeOffsets::Inventory::Base, result.playerInventory); + applyU32("Inventory::Hands", RuntimeOffsets::Inventory::Hands, result.inventoryHands); +} diff --git a/src/SigScanner/SigScanner.h b/src/SigScanner/SigScanner.h new file mode 100644 index 0000000..d28b821 --- /dev/null +++ b/src/SigScanner/SigScanner.h @@ -0,0 +1,85 @@ +#pragma once +#include +#include +#include +#include + +#include "Memory/VmmAccessor.h" + +// ----------------------------------------------------------------------- +// SigScanner +// +// Reads the game module in chunks via DMA and searches for byte patterns +// to extract offsets that change with each game update. +// +// Supported scan types: +// MovCs — RIP-relative MOV/LEA: read int32 disp from the first wildcard +// position, resolve to a module-relative RVA. +// MovReg — Struct-member access: read uint32 from the first wildcard +// position; the value IS the member offset within the struct. +// +// Usage: +// auto result = SigScanner::Scan(mem, pid, moduleBase); +// SigScanner::Apply(result); // writes into RuntimeOffsets +// ----------------------------------------------------------------------- +class SigScanner { +public: + struct ScanResult { + // ------------------------------------------------------------------ + // Base:: — module-relative RVAs of global-variable slots + // (MovCs — resolved from RIP-relative displacement) + // ------------------------------------------------------------------ + std::optional baseWorld; // Base::World + std::optional baseNetworkManager; // Base::NetworkManager + + // ------------------------------------------------------------------ + // World:: — struct member offsets within the World object + // (MovReg — 4-byte little-endian value at the first wildcard pos) + // ------------------------------------------------------------------ + std::optional worldNearEntList; // World::NearEntityList + std::optional worldFarEntList; // World::FarEntityList + std::optional worldBulletList; // World::BulletTable + std::optional worldCamera; // World::Camera + std::optional worldItemList; // World::ItemList + + // ------------------------------------------------------------------ + // Entity struct offsets (MovReg) + // ------------------------------------------------------------------ + std::optional humanVisualState; // Common::VisualState + std::optional humanIsDead; // Player::IsDead + std::optional playerInventory; // Inventory::Base + std::optional inventoryHands; // Inventory::Hands + }; + + // Scan the game module for all configured patterns. + // moduleBase: runtime VA of the module's first mapped byte. + static ScanResult Scan(VmmAccessor& mem, uint32_t pid, uint64_t moduleBase); + + // Write scanned values into RuntimeOffsets, logging each change. + static void Apply(const ScanResult& result); + +private: + struct PatternByte { uint8_t value; bool wildcard; }; + + // Parse a hex pattern string like "4C 8B 05 ? ? ? ? 48" into PatternByte vec. + static std::vector ParsePattern(const std::string& hex); + + // Return the byte-offset of the first match in [haystack], or nullopt. + static std::optional FindFirst(const std::vector& haystack, + const std::vector& pattern, + size_t startPos = 0); + + // Read a 4-byte little-endian uint32 from bytes[offset]. + static uint32_t ReadU32(const std::vector& bytes, size_t offset); + + // For MovCs: target = matchRva + instrLen + (int32_t)disp32 + static uint64_t ResolveRip(uint64_t matchRva, int instrLen, uint32_t disp32Raw); + + // For MovReg: return the uint32 at the first wildcard position in the pattern. + static uint32_t ExtractMovReg(const std::vector& chunk, + size_t matchPos, + const std::vector& pattern); + + // Read SizeOfImage from the module's PE optional header. + static size_t ReadModuleSize(VmmAccessor& mem, uint32_t pid, uint64_t moduleBase); +}; diff --git a/src/Web/BulletTrackCache.cpp b/src/Web/BulletTrackCache.cpp new file mode 100644 index 0000000..a4e0bec --- /dev/null +++ b/src/Web/BulletTrackCache.cpp @@ -0,0 +1,144 @@ +#include "Web/BulletTrackCache.h" + +#include +#include +#include + +// ------------------------------------------------------------------------- +// Helpers +// ------------------------------------------------------------------------- + +static float Distance3(const Vector3& a, const Vector3& b) { + float dx = b.x - a.x; + float dy = b.y - a.y; + float dz = b.z - a.z; + return std::sqrt(dx * dx + dy * dy + dz * dz); +} + +static float Length3(const Vector3& v) { + return std::sqrt(v.x * v.x + v.y * v.y + v.z * v.z); +} + +// ------------------------------------------------------------------------- +// BulletTrackCache::Update +// ------------------------------------------------------------------------- + +void BulletTrackCache::Update(const std::vector& bullets, + int64_t nowMs) +{ + std::lock_guard lk(m_mutex); + + // Build set of addresses present in this snapshot. + std::unordered_set liveSet; + liveSet.reserve(bullets.size()); + for (const auto& b : bullets) { + if (b.address != 0) + liveSet.insert(b.address); + } + + // ---------------------------------------------------------------- + // Process each live bullet entry. + // ---------------------------------------------------------------- + for (const auto& entry : bullets) { + if (entry.address == 0 || !entry.position.has_value()) continue; + + const Vector3& pos = entry.position.value(); + Vector3 dir = entry.direction.has_value() ? entry.direction.value() : Vector3{}; + + auto it = m_tracks.find(entry.address); + if (it == m_tracks.end()) { + // New bullet — create track. + BulletTrack t; + t.address = entry.address; + t.firstSeenMs = nowMs; + t.lastSeenMs = nowMs; + t.currentPos = pos; + t.initialPos = pos; + t.finalPos = pos; + t.initialDir = dir; + t.lastDir = dir; + t.speedMps = 0.0f; + t.isActive = true; + t.isPhantom = false; + t.isCompleted = false; + t.points.push_back({ nowMs, pos }); + m_tracks.emplace(entry.address, std::move(t)); + } else { + BulletTrack& t = it->second; + + // Speed calculation. + float elapsed = static_cast(nowMs - t.lastSeenMs) / 1000.0f; + if (elapsed > 0.0f) { + float dist = Distance3(t.currentPos, pos); + float speed = dist / elapsed; + // Clamp to [0, 900] m/s (well above any DayZ projectile). + t.speedMps = std::max(0.0f, std::min(900.0f, speed)); + } + + t.lastSeenMs = nowMs; + t.currentPos = pos; + t.finalPos = pos; + if (Length3(dir) > 0.001f) + t.lastDir = dir; + t.isActive = true; + t.isPhantom = false; + t.points.push_back({ nowMs, pos }); + + // Finalise check: last 2+ points within kStillM over kStillMs. + if (!t.isCompleted && t.points.size() >= 2) { + const auto& prev = t.points[t.points.size() - 2]; + int64_t span = nowMs - prev.first; + float dist = Distance3(prev.second, pos); + if (span >= kStillMs && dist <= kStillM) { + t.isCompleted = true; + t.finalizedMs = nowMs; + } + } + } + } + + // ---------------------------------------------------------------- + // Mark tracks not in this snapshot as phantom. + // ---------------------------------------------------------------- + for (auto& [addr, t] : m_tracks) { + if (liveSet.find(addr) == liveSet.end()) { + if (!t.isCompleted) { + t.isActive = false; + t.isPhantom = true; + } + } + } + + // ---------------------------------------------------------------- + // Erase stale tracks. + // ---------------------------------------------------------------- + for (auto it = m_tracks.begin(); it != m_tracks.end();) { + const BulletTrack& t = it->second; + bool erase = false; + + if (t.isCompleted) { + // Keep for kRetentionMs after finalisation. + erase = (nowMs - t.finalizedMs) > kRetentionMs; + } else if (t.isPhantom) { + erase = (nowMs - t.lastSeenMs) > kPhantomLifetimeMs; + } + + if (erase) + it = m_tracks.erase(it); + else + ++it; + } +} + +// ------------------------------------------------------------------------- +// BulletTrackCache::GetSnapshot +// ------------------------------------------------------------------------- + +std::vector BulletTrackCache::GetSnapshot() const { + std::lock_guard lk(m_mutex); + std::vector out; + out.reserve(m_tracks.size()); + for (const auto& [addr, t] : m_tracks) + out.push_back(t); + return out; +} diff --git a/src/Web/BulletTrackCache.h b/src/Web/BulletTrackCache.h new file mode 100644 index 0000000..b16726a --- /dev/null +++ b/src/Web/BulletTrackCache.h @@ -0,0 +1,65 @@ +#pragma once +#include +#include +#include +#include +#include +#include + +#include "Core/Models.h" + +// ------------------------------------------------------------------------- +// BulletTrack — full history for one bullet address. +// ------------------------------------------------------------------------- + +struct BulletTrack { + uint64_t address = 0; + + int64_t firstSeenMs = 0; + int64_t lastSeenMs = 0; + int64_t finalizedMs = 0; // 0 = not yet finalised + + Vector3 currentPos; + Vector3 initialPos; + Vector3 finalPos; + + Vector3 initialDir; + Vector3 lastDir; + + float speedMps = 0.0f; + + bool isActive = false; // seen in the most-recent update + bool isPhantom = false; // no longer in live list + bool isCompleted = false; // came to rest + + // (timestamp_ms, world-position) pairs, oldest first. + std::vector> points; +}; + +// ------------------------------------------------------------------------- +// BulletTrackCache +// ------------------------------------------------------------------------- + +class BulletTrackCache { +public: + /// Merge a fresh bullet snapshot into the cache. + void Update(const std::vector& bullets, int64_t nowMs); + + /// Thread-safe snapshot of all currently tracked bullets. + std::vector GetSnapshot() const; + +private: + mutable std::mutex m_mutex; + std::unordered_map m_tracks; + + // A bullet that hasn't moved more than kStillM over kStillMs is + // considered stopped and its track is finalised. + static constexpr int64_t kStillMs = 75; + static constexpr float kStillM = 0.05f; + + // How long to retain a completed track after it was finalised. + static constexpr int64_t kRetentionMs = 1500; + + // How long to keep a phantom (disappeared but not completed) track. + static constexpr int64_t kPhantomLifetimeMs = 5000; +}; diff --git a/src/Web/MapRegistry.cpp b/src/Web/MapRegistry.cpp new file mode 100644 index 0000000..cdd3705 --- /dev/null +++ b/src/Web/MapRegistry.cpp @@ -0,0 +1,126 @@ +#include "Web/MapRegistry.h" + +#include +#include +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include + +#include "EmbeddedMaps.h" + +// Returns the directory that contains the running exe. +// Used so that maps/ is always resolved relative to the exe, not the CWD. +static std::filesystem::path ExeDir() { + wchar_t buf[MAX_PATH] = {}; + GetModuleFileNameW(nullptr, buf, MAX_PATH); + return std::filesystem::path(buf).parent_path(); +} + +// ------------------------------------------------------------------------- +// Static map table +// ------------------------------------------------------------------------- + +static const MapInfo kMaps[] = { + { "chernarusplus", "ChernarusPlus", 15360, 0 }, + { "livonia", "Livonia", 15360, 1 }, + { "namalsk", "Namalsk", 12800, 2 }, + { "banov", "Banov", 15360, 3 }, + { "deadfall", "Deadfall", 10000, 4 }, + { "deerisle", "Deerisle", 16384, 5 }, + { "esseker", "Esseker", 12800, 6 }, + { "lux", "Lux", 15360, 7 }, + { "sakhal", "Sakhal", 15360, 8 }, + { "takistan", "Takistan", 12800, 9 }, + { "alteria", "Alteria", 8192, 10 }, +}; + +static constexpr int kMapCount = static_cast(sizeof(kMaps) / sizeof(kMaps[0])); + +// ------------------------------------------------------------------------- +// Alias table: normalised-key → canonical id +// ------------------------------------------------------------------------- + +struct Alias { const char* from; const char* to; }; + +static const Alias kAliases[] = { + { "enoch", "livonia" }, + { "chernarus", "chernarusplus" }, +}; + +// ------------------------------------------------------------------------- +// Normalise: lowercase, keep only alphanumeric chars. +// ------------------------------------------------------------------------- + +static std::string Normalise(std::string_view sv) { + std::string out; + out.reserve(sv.size()); + for (unsigned char c : sv) { + if (std::isalnum(c)) + out += static_cast(std::tolower(c)); + } + return out; +} + +// ------------------------------------------------------------------------- +// MapRegistry implementation +// ------------------------------------------------------------------------- + +const MapInfo* MapRegistry::Resolve(std::string_view serverMapName) { + std::string key = Normalise(serverMapName); + if (key.empty()) return nullptr; + + // Check alias table first. + for (const auto& alias : kAliases) { + if (key == alias.from) { + key = alias.to; + break; + } + } + + // Exact match against canonical id. + for (const auto& m : kMaps) { + if (key == m.id) + return &m; + } + + // Partial prefix match (e.g. "chernarusplus_2022" → "chernarusplus"). + for (const auto& m : kMaps) { + if (key.rfind(m.id, 0) == 0) + return &m; + } + + // Partial suffix / contains match (e.g. "dayz_namalsk"). + for (const auto& m : kMaps) { + if (key.find(m.id) != std::string::npos) + return &m; + } + + return nullptr; +} + +void MapRegistry::Translate(const MapInfo& m, float worldX, float worldZ, + float& outX, float& outY) { + if (m.id == "livonia") { + outX = worldX * 1.2f; + outY = (12800.0f - worldZ) * 1.2f; + } else { + outX = worldX; + outY = static_cast(m.worldSize) - worldZ; + } +} + +bool MapRegistry::HasMapImage(const MapInfo& m) { + std::filesystem::path p = ExeDir() / "maps" / (m.id + ".png"); + if (std::filesystem::exists(p)) return true; + auto [ptr, sz] = GetEmbeddedMap(m.id); + return ptr != nullptr; +} + +const MapInfo* MapRegistry::AllMaps(int& count) { + count = kMapCount; + return kMaps; +} diff --git a/src/Web/MapRegistry.h b/src/Web/MapRegistry.h new file mode 100644 index 0000000..5dfac30 --- /dev/null +++ b/src/Web/MapRegistry.h @@ -0,0 +1,38 @@ +#pragma once +#include +#include + +// ------------------------------------------------------------------------- +// MapInfo — metadata for a single supported DayZ map. +// ------------------------------------------------------------------------- + +struct MapInfo { + std::string id; // canonical lowercase key (e.g. "chernarusplus") + std::string name; // human-readable display name + int worldSize; // world-space units that span the full map + int index; // stable ordering index +}; + +// ------------------------------------------------------------------------- +// MapRegistry — static map database + helpers. +// ------------------------------------------------------------------------- + +class MapRegistry { +public: + MapRegistry() = delete; + + /// Return a pointer to the best-matching MapInfo for the given + /// server map name, or nullptr if no match is found. + static const MapInfo* Resolve(std::string_view serverMapName); + + /// Convert a world-space position (worldX, worldZ) to 2-D map-image + /// pixel-space coordinates (outX, outY). The transform differs per map. + static void Translate(const MapInfo& m, float worldX, float worldZ, + float& outX, float& outY); + + /// Return true if maps/.png exists relative to the working directory. + static bool HasMapImage(const MapInfo& m); + + /// Return the full list of known maps (used for bootstrap JSON). + static const MapInfo* AllMaps(int& count); +}; diff --git a/src/Web/MapTileService.cpp b/src/Web/MapTileService.cpp new file mode 100644 index 0000000..b9187f5 --- /dev/null +++ b/src/Web/MapTileService.cpp @@ -0,0 +1,158 @@ +#include "Web/MapTileService.h" + +#include +#include +#include +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include + +#include "EmbeddedMaps.h" + +static std::filesystem::path ExeDir() { + wchar_t buf[MAX_PATH] = {}; + GetModuleFileNameW(nullptr, buf, MAX_PATH); + return std::filesystem::path(buf).parent_path(); +} + +// stb_image / stb_image_write are implemented in stb_impl.cpp. +// Include the headers only — no implementation macros here. +#include +#include + +static constexpr int kTileSize = 512; +static constexpr int kChannels = 4; // RGBA + +// ------------------------------------------------------------------------- +// PNG write callback: appends bytes to a vector*. +// ------------------------------------------------------------------------- + +static void PngWriteCallback(void* context, void* data, int size) { + auto* buf = static_cast*>(context); + const auto* bytes = static_cast(data); + buf->insert(buf->end(), bytes, bytes + size); +} + +// ------------------------------------------------------------------------- +// MapTileService::LoadOrGet +// ------------------------------------------------------------------------- + +const MapTileService::Image* MapTileService::LoadOrGet(const std::string& mapId) { + // Caller must already hold m_mutex. + auto it = m_cache.find(mapId); + if (it != m_cache.end()) { + return &it->second; // cache hit + } + + // Disk file takes priority — allows map updates without rebuilding. + // Falls back to the PNG baked into the binary as a Windows RCDATA resource. + std::string path = (ExeDir() / "maps" / (mapId + ".png")).string(); + + int w = 0, h = 0, channels = 0; + unsigned char* raw = nullptr; + + if (std::filesystem::exists(path)) { + raw = stbi_load(path.c_str(), &w, &h, &channels, kChannels); + } else { + auto [ptr, sz] = GetEmbeddedMap(mapId); + if (ptr) + raw = stbi_load_from_memory(ptr, static_cast(sz), + &w, &h, &channels, kChannels); + } + + Image img; + if (raw && w > 0 && h > 0) { + img.w = w; + img.h = h; + img.pixels.assign(raw, raw + static_cast(w) * h * kChannels); + stbi_image_free(raw); + } else { + if (raw) stbi_image_free(raw); + // Don't cache the failure — the user may drop the PNG in while running. + return nullptr; + } + + auto [inserted_it, ok] = m_cache.emplace(mapId, std::move(img)); + (void)ok; + return &inserted_it->second; +} + +// ------------------------------------------------------------------------- +// MapTileService::GetTile +// ------------------------------------------------------------------------- + +std::vector MapTileService::GetTile(const MapInfo& map, int tileX, + int tileY, int& errCode) +{ + if (tileX < 0 || tileY < 0) { + errCode = 400; + return {}; + } + + std::lock_guard lk(m_mutex); + + const Image* img = LoadOrGet(map.id); + if (!img || img->pixels.empty() || img->w == 0 || img->h == 0) { + errCode = 404; + return {}; + } + + const int pixW = img->w; + const int pixH = img->h; + const float ws = static_cast(map.worldSize); + + const float scaleX = static_cast(pixW) / ws; + const float scaleY = static_cast(pixH) / ws; + + int srcX = static_cast(static_cast(tileX) * kTileSize * scaleX); + int srcY = static_cast(static_cast(tileY) * kTileSize * scaleY); + int srcW = static_cast(kTileSize * scaleX); + int srcH = static_cast(kTileSize * scaleY); + + // Clamp to image extents. + if (srcX >= pixW || srcY >= pixH) { + errCode = 404; + return {}; + } + srcW = std::max(1, std::min(srcW, pixW - srcX)); + srcH = std::max(1, std::min(srcH, pixH - srcY)); + + // Build 512×512 RGBA output via nearest-neighbour scaling. + std::vector tile(static_cast(kTileSize) * kTileSize * kChannels, 0); + + for (int ty = 0; ty < kTileSize; ++ty) { + // Map output pixel row → source row. + int sy = srcY + static_cast((static_cast(ty) / kTileSize) * srcH); + sy = std::clamp(sy, 0, pixH - 1); + + for (int tx = 0; tx < kTileSize; ++tx) { + int sx = srcX + static_cast((static_cast(tx) / kTileSize) * srcW); + sx = std::clamp(sx, 0, pixW - 1); + + const size_t srcOff = (static_cast(sy) * pixW + sx) * kChannels; + const size_t dstOff = (static_cast(ty) * kTileSize + tx) * kChannels; + + std::memcpy(tile.data() + dstOff, img->pixels.data() + srcOff, kChannels); + } + } + + // Encode to PNG. + std::vector png; + png.reserve(kTileSize * kTileSize); // rough estimate + + int ok = stbi_write_png_to_func(PngWriteCallback, &png, + kTileSize, kTileSize, kChannels, + tile.data(), + kTileSize * kChannels); + if (!ok || png.empty()) { + errCode = 500; + return {}; + } + + errCode = 200; + return png; +} diff --git a/src/Web/MapTileService.h b/src/Web/MapTileService.h new file mode 100644 index 0000000..3036e30 --- /dev/null +++ b/src/Web/MapTileService.h @@ -0,0 +1,36 @@ +#pragma once +#include +#include +#include +#include +#include + +#include "Web/MapRegistry.h" + +// ------------------------------------------------------------------------- +// MapTileService +// Loads a full map PNG on first request, caches it in memory, and serves +// 512×512 tiles on demand (nearest-neighbour resampled). +// ------------------------------------------------------------------------- + +class MapTileService { +public: + /// Return PNG-encoded bytes for the requested tile. + /// errCode is set to one of: 200, 400, 404, 500. + /// An empty vector is returned for any non-200 result. + std::vector GetTile(const MapInfo& map, int tileX, int tileY, + int& errCode); + +private: + struct Image { + std::vector pixels; // RGBA, row-major + int w = 0; + int h = 0; + }; + + std::mutex m_mutex; + std::unordered_map m_cache; // mapId → loaded image + + /// Return cached Image or attempt to load it. Returns nullptr on failure. + const Image* LoadOrGet(const std::string& mapId); +}; diff --git a/src/Web/WebRadarServer.cpp b/src/Web/WebRadarServer.cpp new file mode 100644 index 0000000..558eb39 --- /dev/null +++ b/src/Web/WebRadarServer.cpp @@ -0,0 +1,463 @@ +// Pull in Windows headers before httplib so WinSock2 is set up correctly. +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#ifndef NOMINMAX +#define NOMINMAX +#endif +#include + +// httplib is a single-header library; the full definition is only needed here. +#include + +#include "Web/WebRadarServer.h" + +#include +#include +#include +#include +#include +#include + +#include + +// ------------------------------------------------------------------------- +// Constructor / Destructor +// ------------------------------------------------------------------------- + +WebRadarServer::WebRadarServer(WebRadarConfig config) + : m_config(std::move(config)) +{} + +WebRadarServer::~WebRadarServer() { + Stop(); +} + +// ------------------------------------------------------------------------- +// Start / Stop +// ------------------------------------------------------------------------- + +void WebRadarServer::Start() { + // Pre-select the first map that has a PNG in maps/ so the browser + // can show tiles immediately, before the game session connects. + if (!m_currentMap) { + int mapCount = 0; + const MapInfo* allMaps = MapRegistry::AllMaps(mapCount); + for (int i = 0; i < mapCount; ++i) { + if (MapRegistry::HasMapImage(allMaps[i])) { + m_currentMap = &allMaps[i]; + spdlog::info("Web radar: pre-selected map '{}' from maps/ directory", + allMaps[i].id); + break; + } + } + if (!m_currentMap) { + spdlog::warn("Web radar: no map PNG found in maps/ — tiles will return 404 until " + "a PNG named after a map ID is placed there " + "(e.g. maps/chernarusplus.png, maps/sakhal.png)."); + } + } + + // Build the initial bootstrap JSON now so /api/bootstrap returns valid JSON + // immediately when the browser loads, before any game session connects. + // Without this, m_bootstrapJson is "" and response.json() throws in the JS, + // leaving the page with a black background and no map tiles. + { + RuntimeUpdate empty{}; + m_bootstrapJson = m_snapshotSvc.BuildBootstrapJson(empty, m_currentMap, m_config.port); + m_lastBootstrapMapId = m_currentMap ? m_currentMap->id : ""; + } + + m_server = std::make_unique(); + m_server->new_task_queue = [] { + return new httplib::ThreadPool(16); + }; + + SetupRoutes(); + + m_thread = std::thread([this] { + spdlog::info("Web radar listening on {}:{}", + m_config.bindAddress, m_config.port); + if (!m_server->listen(m_config.bindAddress, m_config.port)) { + spdlog::error("Web radar failed to bind {}:{}", + m_config.bindAddress, m_config.port); + } + }); +} + +void WebRadarServer::Stop() { + m_stopping.store(true); + m_cv.notify_all(); + if (m_server) m_server->stop(); + if (m_thread.joinable()) m_thread.join(); +} + +// ------------------------------------------------------------------------- +// PushSnapshot +// ------------------------------------------------------------------------- + +void WebRadarServer::PushSnapshot(const RuntimeUpdate& update) { + int64_t now = NowMs(); + + // Always update bullet tracks — they need sub-100ms freshness for + // trajectory rendering, and the update is cheap (no JSON involved). + m_bullets.Update(update.bullets, now); + + if (update.serverMapName.has_value()) { + const MapInfo* resolved = MapRegistry::Resolve(*update.serverMapName); + if (resolved) { + if (m_currentMap != resolved) + spdlog::info("Web radar: map changed to '{}'", resolved->id); + m_currentMap = resolved; + } else { + spdlog::warn("Web radar: unrecognised server map name '{}' — keeping current map", + *update.serverMapName); + } + } + + // Rate-limit JSON serialization. At 60 Hz with large entity counts + // (modded server, built bases) BuildStateJson can take several ms and + // produce hundreds of KB per call. 10 Hz is more than enough for a map. + if (now < m_nextSnapshotMs) return; + m_nextSnapshotMs = now + m_config.snapshotIntervalMs; + + std::string jsonStr = m_snapshotSvc.BuildStateJson( + update, m_bullets.GetSnapshot(), m_currentMap, now); + + { + std::lock_guard lk(m_cvMutex); + + // Bootstrap only changes when the active map changes — don't rebuild + // it every tick. + std::string mapId = m_currentMap ? m_currentMap->id : ""; + if (mapId != m_lastBootstrapMapId) { + m_bootstrapJson = m_snapshotSvc.BuildBootstrapJson( + update, m_currentMap, m_config.port); + m_lastBootstrapMapId = std::move(mapId); + } + + m_latestJson = std::move(jsonStr); + m_latestPayload = "event: state\ndata: " + m_latestJson + "\n\n"; + ++m_broadcastSeq; + } + m_cv.notify_all(); +} + +// ------------------------------------------------------------------------- +// SetupRoutes +// ------------------------------------------------------------------------- + +void WebRadarServer::SetupRoutes() { + // ---- Static files --------------------------------------------------- + + m_server->Get("/", [this](const httplib::Request& /*req*/, + httplib::Response& res) { + ServeFile(res, "index.html", "text/html; charset=utf-8"); + }); + + m_server->Get("/app.js", [this](const httplib::Request& /*req*/, + httplib::Response& res) { + ServeFile(res, "app.js", "application/javascript; charset=utf-8"); + }); + + m_server->Get("/style.css", [this](const httplib::Request& /*req*/, + httplib::Response& res) { + ServeFile(res, "style.css", "text/css; charset=utf-8"); + }); + + m_server->Get("/favicon.ico", [this](const httplib::Request& /*req*/, + httplib::Response& res) { + ServeFile(res, "favicon.ico", "image/x-icon"); + }); + + // ---- Bootstrap ------------------------------------------------------ + + m_server->Get("/api/bootstrap", + [this](const httplib::Request& req, httplib::Response& res) { + if (!Authorise(req.remote_addr, + req.get_param_value("password"))) { + res.status = 401; + return; + } + std::lock_guard lk(m_cvMutex); + res.set_content(m_bootstrapJson, "application/json"); + }); + + // ---- Polling state -------------------------------------------------- + + m_server->Get("/api/state", + [this](const httplib::Request& req, httplib::Response& res) { + if (!Authorise(req.remote_addr, + req.get_param_value("password"))) { + res.status = 401; + return; + } + std::lock_guard lk(m_cvMutex); + res.set_content(m_latestJson, "application/json"); + }); + + // ---- SSE stream ----------------------------------------------------- + + m_server->Get("/events", + [this](const httplib::Request& req, httplib::Response& res) { + if (!Authorise(req.remote_addr, + req.get_param_value("password"))) { + res.status = 401; + return; + } + + res.set_header("Cache-Control", "no-cache"); + res.set_header("X-Accel-Buffering", "no"); + + auto lastSeq = std::make_shared(-1); + + res.set_chunked_content_provider( + "text/event-stream", + [this, lastSeq](size_t /*offset*/, + httplib::DataSink& sink) -> bool { + if (m_stopping.load()) return false; + + std::string payload; + { + std::unique_lock lk(m_cvMutex); + m_cv.wait_for(lk, std::chrono::seconds(10), + [this, &lastSeq] { + return m_broadcastSeq != *lastSeq + || m_stopping.load(); + }); + + if (m_stopping.load()) return false; + + if (m_broadcastSeq == *lastSeq) { + // Keepalive comment to prevent proxy timeouts. + payload = ": keepalive\n\n"; + } else { + payload = m_latestPayload; + *lastSeq = m_broadcastSeq; + } + } + + return sink.write(payload.c_str(), payload.size()); + } + ); + }); + + // ---- Map tile ------------------------------------------------------- + + m_server->Get("/tile", + [this](const httplib::Request& req, httplib::Response& res) { + if (!Authorise(req.remote_addr, + req.get_param_value("password"))) { + res.status = 401; + return; + } + + // Prefer the explicit mapId param (sent by app.js); fall back to + // the currently active map resolved from the game session. + const MapInfo* tileMap = nullptr; + std::string mapIdParam = req.get_param_value("mapId"); + if (!mapIdParam.empty()) + tileMap = MapRegistry::Resolve(mapIdParam); + if (!tileMap) + tileMap = m_currentMap; + + if (!tileMap) { + res.status = 404; + return; + } + + int tx = 0, ty = 0; + try { + tx = std::stoi(req.get_param_value("x")); + ty = std::stoi(req.get_param_value("y")); + } catch (...) { + res.status = 400; + return; + } + + int code = 200; + auto bytes = m_tiles.GetTile(*tileMap, tx, ty, code); + res.status = code; + if (code == 200) { + // Cache tiles aggressively — they're static PNG slices that only + // change when the map PNG is replaced (different URL via mapId param). + // Cloudflare tunnel and browsers will both benefit from this. + res.set_header("Cache-Control", "public, max-age=86400"); + res.set_header("Vary", "Accept-Encoding"); + res.set_content( + std::string(bytes.begin(), bytes.end()), + "image/png"); + } + }); + + // ---- Full map image ------------------------------------------------- + + m_server->Get("/map-image", + [this](const httplib::Request& req, httplib::Response& res) { + if (!Authorise(req.remote_addr, + req.get_param_value("password"))) { + res.status = 401; + return; + } + + const MapInfo* imgMap = nullptr; + std::string mapIdParam = req.get_param_value("mapId"); + if (!mapIdParam.empty()) + imgMap = MapRegistry::Resolve(mapIdParam); + if (!imgMap) + imgMap = m_currentMap; + + if (!imgMap) { + res.status = 404; + return; + } + + wchar_t mapPathBuf[MAX_PATH] = {}; + GetModuleFileNameW(nullptr, mapPathBuf, MAX_PATH); + std::string path = (std::filesystem::path(mapPathBuf).parent_path() + / "maps" / (imgMap->id + ".png")).string(); + std::ifstream f(path, std::ios::binary); + if (!f) { + res.status = 404; + return; + } + + std::string content( + (std::istreambuf_iterator(f)), + std::istreambuf_iterator()); + res.set_content(std::move(content), "image/png"); + }); + + // ---- Debug ---------------------------------------------------------- + // No auth — purely diagnostic. Open /api/debug in a browser to see + // what the server sees: exe dir, maps/ path, which PNGs exist, and what + // the bootstrap JSON currently contains. + + m_server->Get("/api/debug", + [this](const httplib::Request& /*req*/, httplib::Response& res) { + namespace fs = std::filesystem; + + wchar_t exeBuf[MAX_PATH] = {}; + GetModuleFileNameW(nullptr, exeBuf, MAX_PATH); + fs::path exeDir = fs::path(exeBuf).parent_path(); + fs::path mapsDir = exeDir / "maps"; + + // Escape a string for inline JSON (handles backslashes in Windows paths). + auto jsStr = [](const std::string& s) { + std::string r; + r.reserve(s.size() + 4); + for (char c : s) { + if (c == '\\') r += "\\\\"; + else if (c == '"') r += "\\\""; + else r += c; + } + return r; + }; + + std::ostringstream j; + j << "{\n"; + j << " \"exeDir\": \"" << jsStr(exeDir.string()) << "\",\n"; + j << " \"mapsDir\": \"" << jsStr(mapsDir.string()) << "\",\n"; + j << " \"mapsDirExists\": " << (fs::exists(mapsDir) ? "true" : "false") << ",\n"; + j << " \"currentMapId\": \"" << (m_currentMap ? m_currentMap->id : "") << "\",\n"; + + // PNGs actually present in maps/. + j << " \"pngsFound\": ["; + { + std::error_code ec; + bool first = true; + for (const auto& e : fs::directory_iterator(mapsDir, ec)) { + if (!ec && e.path().extension() == ".png") { + if (!first) j << ", "; + j << "\"" << jsStr(e.path().filename().string()) << "\""; + first = false; + } + } + } + j << "],\n"; + + // All known map IDs with whether their PNG was found. + j << " \"knownMaps\": ["; + { + int mapCount = 0; + const MapInfo* allMaps = MapRegistry::AllMaps(mapCount); + for (int i = 0; i < mapCount; ++i) { + if (i > 0) j << ", "; + j << "{\"id\": \"" << allMaps[i].id << "\", \"hasImage\": " + << (MapRegistry::HasMapImage(allMaps[i]) ? "true" : "false") << "}"; + } + } + j << "]\n}"; + + res.set_content(j.str(), "application/json"); + }); +} + +// ------------------------------------------------------------------------- +// ServeFile +// ------------------------------------------------------------------------- + +void WebRadarServer::ServeFile(httplib::Response& res, + const std::string& filename, + const std::string& contentType) +{ + std::string path = WebrootPath(filename); + std::ifstream f(path, std::ios::binary); + if (!f) { + res.status = 404; + return; + } + + std::string content( + (std::istreambuf_iterator(f)), + std::istreambuf_iterator()); + res.set_content(std::move(content), contentType); +} + +// ------------------------------------------------------------------------- +// Authorise +// ------------------------------------------------------------------------- + +bool WebRadarServer::Authorise(const std::string& addr, + const std::string& pwd) const +{ + // Always allow loopback connections. + if (addr == "127.0.0.1" || addr == "::1" || addr == "localhost") + return true; + + // If no password configured, allow everyone. + if (m_config.password.empty()) + return true; + + return pwd == m_config.password; +} + +// ------------------------------------------------------------------------- +// WebrootPath +// ------------------------------------------------------------------------- + +std::string WebRadarServer::WebrootPath(const std::string& file) const { + wchar_t buf[MAX_PATH] = {}; + GetModuleFileNameW(nullptr, buf, MAX_PATH); + + // Convert wide string to narrow. + std::wstring wpath(buf); + // Strip the filename component to get the exe directory. + auto lastSlash = wpath.find_last_of(L"\\/"); + if (lastSlash != std::wstring::npos) + wpath = wpath.substr(0, lastSlash + 1); + + // Convert to std::string (ASCII/UTF-8 — path characters only). + std::string exeDir(wpath.begin(), wpath.end()); + return exeDir + "webroot\\" + file; +} + +// ------------------------------------------------------------------------- +// NowMs +// ------------------------------------------------------------------------- + +int64_t WebRadarServer::NowMs() { + using namespace std::chrono; + return duration_cast( + system_clock::now().time_since_epoch()).count(); +} diff --git a/src/Web/WebRadarServer.h b/src/Web/WebRadarServer.h new file mode 100644 index 0000000..a6b9761 --- /dev/null +++ b/src/Web/WebRadarServer.h @@ -0,0 +1,84 @@ +#pragma once +#include +#include +#include +#include +#include +#include + +#include "Web/BulletTrackCache.h" +#include "Web/MapRegistry.h" +#include "Web/MapTileService.h" +#include "Web/WebSnapshotService.h" + +// Forward-declare httplib types to avoid pulling the whole header (which +// includes ) into every translation unit that includes this header. +namespace httplib { class Server; struct Response; } + +// ------------------------------------------------------------------------- +// WebRadarConfig — tuneable startup parameters. +// ------------------------------------------------------------------------- + +struct WebRadarConfig { + std::string bindAddress = "0.0.0.0"; + int port = 7777; + std::string password = ""; + int snapshotIntervalMs = 100; // max web snapshot rate (default 10 Hz) +}; + +// ------------------------------------------------------------------------- +// WebRadarServer +// ------------------------------------------------------------------------- + +class WebRadarServer { +public: + explicit WebRadarServer(WebRadarConfig config = {}); + ~WebRadarServer(); + + WebRadarServer(const WebRadarServer&) = delete; + WebRadarServer& operator=(const WebRadarServer&) = delete; + + /// Start the HTTP server on a background thread. + void Start(); + + /// Stop the HTTP server and join the background thread. + void Stop(); + + /// Feed a new RuntimeUpdate into the server. Thread-safe. + void PushSnapshot(const RuntimeUpdate& update); + +private: + WebRadarConfig m_config; + WebSnapshotService m_snapshotSvc; + BulletTrackCache m_bullets; + MapTileService m_tiles; + const MapInfo* m_currentMap = nullptr; + + std::unique_ptr m_server; + std::thread m_thread; + + // SSE broadcast state. + mutable std::mutex m_cvMutex; + std::condition_variable m_cv; + std::string m_latestPayload; // full "event: state\ndata: ...\n\n" + std::string m_latestJson; // JSON only (for /api/state polling) + std::string m_bootstrapJson; // /api/bootstrap response + int64_t m_broadcastSeq = 0; + std::atomic m_stopping{false}; + int64_t m_nextSnapshotMs = 0; // rate-limit for JSON builds + std::string m_lastBootstrapMapId; // only rebuild bootstrap on map change + + void SetupRoutes(); + void ServeFile(httplib::Response& res, const std::string& filename, + const std::string& contentType); + + /// Returns true if the request is permitted (localhost, no password, or + /// correct password query parameter). + bool Authorise(const std::string& remoteAddr, + const std::string& passwordParam) const; + + /// Absolute path to webroot/ relative to the executable directory. + std::string WebrootPath(const std::string& file) const; + + static int64_t NowMs(); +}; diff --git a/src/Web/WebSnapshotService.cpp b/src/Web/WebSnapshotService.cpp new file mode 100644 index 0000000..a444f6c --- /dev/null +++ b/src/Web/WebSnapshotService.cpp @@ -0,0 +1,453 @@ +#include "Web/WebSnapshotService.h" + +#include +#include +#include + +#include + +using json = nlohmann::json; + +// ------------------------------------------------------------------------- +// Internal helpers +// ------------------------------------------------------------------------- + +static constexpr float kPi = 3.14159265358979323846f; + +/// Convert a world address to a hex-string id (e.g. "1A2B3C4D"). +static std::string AddrId(uint64_t address) { + return std::format("{:X}", address); +} + +/// Translate world-space (x, z) to map-image space. +/// If map is null, returns the raw coordinates. +static std::pair WorldToMap(const MapInfo* map, + float worldX, float worldZ) +{ + float ox = worldX, oy = worldZ; + if (map) + MapRegistry::Translate(*map, worldX, worldZ, ox, oy); + return { ox, oy }; +} + +// ------------------------------------------------------------------------- +// Entity JSON builders +// ------------------------------------------------------------------------- + +static json PlayerEntityJson(const DayZPlayerEntry& p, const MapInfo* map) { + json obj; + obj["id"] = AddrId(p.address); + obj["kind"] = "player"; + + // Label: prefer nickname, fall back to typeName. + obj["label"] = p.nickname.empty() ? p.typeName : p.nickname; + + if (p.position.has_value()) { + auto [mx, my] = WorldToMap(map, p.position->x, p.position->z); + obj["x"] = mx; + obj["y"] = my; + } else { + obj["x"] = 0.0f; + obj["y"] = 0.0f; + } + + // headingDegrees is already in degrees from the reader. + obj["rotation"] = p.headingDegrees.value_or(0.0f); + obj["distance"] = -1; + obj["networkId"] = p.networkId; + obj["steamId"] = ""; + obj["dead"] = p.isDead; + obj["handItem"] = p.itemInHands; + obj["visibleOnMap"] = true; + return obj; +} + +static json PlayerListEntryJson(const DayZPlayerEntry& p) { + json obj; + obj["networkId"] = p.networkId; + obj["label"] = p.nickname.empty() ? p.typeName : p.nickname; + obj["steamId"] = ""; + obj["visibleOnMap"] = true; + obj["dead"] = p.isDead; + obj["handItem"] = p.itemInHands; + obj["distance"] = -1; + return obj; +} + +static json ZombieEntityJson(const DayZZombieEntry& z, const MapInfo* map) { + json obj; + obj["id"] = AddrId(z.address); + obj["kind"] = "zombie"; + obj["label"] = z.entityName.empty() ? z.typeName : z.entityName; + + if (z.position.has_value()) { + auto [mx, my] = WorldToMap(map, z.position->x, z.position->z); + obj["x"] = mx; + obj["y"] = my; + } else { + obj["x"] = 0.0f; + obj["y"] = 0.0f; + } + + obj["rotation"] = z.headingDegrees.value_or(0.0f); + obj["distance"] = -1; + obj["visibleOnMap"] = true; + return obj; +} + +static json AnimalEntityJson(const DayZAnimalEntry& a, const MapInfo* map) { + json obj; + obj["id"] = AddrId(a.address); + obj["kind"] = "animal"; + obj["label"] = a.entityName.empty() ? a.typeName : a.entityName; + + if (a.position.has_value()) { + auto [mx, my] = WorldToMap(map, a.position->x, a.position->z); + obj["x"] = mx; + obj["y"] = my; + } else { + obj["x"] = 0.0f; + obj["y"] = 0.0f; + } + + obj["rotation"] = a.headingDegrees.value_or(0.0f); + obj["distance"] = -1; + obj["visibleOnMap"] = true; + return obj; +} + +static json VehicleEntityJson(const DayZCarAndBoatEntry& v, const MapInfo* map) { + json obj; + obj["id"] = AddrId(v.address); + obj["kind"] = "vehicle"; + obj["label"] = v.entityName.empty() ? v.typeName : v.entityName; + + if (v.position.has_value()) { + auto [mx, my] = WorldToMap(map, v.position->x, v.position->z); + obj["x"] = mx; + obj["y"] = my; + } else { + obj["x"] = 0.0f; + obj["y"] = 0.0f; + } + + obj["rotation"] = v.headingDegrees.value_or(0.0f); + obj["distance"] = -1; + obj["visibleOnMap"] = true; + return obj; +} + +static json OtherEntityJson(const DayZOtherEntityEntry& e, const MapInfo* map) { + json obj; + obj["id"] = AddrId(e.address); + obj["kind"] = "other-entity"; + obj["label"] = e.entityName.empty() ? e.typeName : e.entityName; + + if (e.position.has_value()) { + auto [mx, my] = WorldToMap(map, e.position->x, e.position->z); + obj["x"] = mx; + obj["y"] = my; + } else { + obj["x"] = 0.0f; + obj["y"] = 0.0f; + } + + obj["rotation"] = e.headingDegrees.value_or(0.0f); + obj["distance"] = -1; + obj["visibleOnMap"] = true; + return obj; +} + +static json LootEntityJson(const DayZItemListEntry& item, const MapInfo* map) { + json obj; + obj["id"] = AddrId(item.address); + obj["kind"] = "loot"; + obj["label"] = item.cleanName.empty() ? item.entityName : item.cleanName; + + if (item.position.has_value()) { + auto [mx, my] = WorldToMap(map, item.position->x, item.position->z); + obj["x"] = mx; + obj["y"] = my; + } else { + obj["x"] = 0.0f; + obj["y"] = 0.0f; + } + + obj["rotation"] = 0.0f; + obj["distance"] = -1; + obj["visibleOnMap"] = true; + obj["lootCategory"] = item.filterKey; // filterKey = lowercase composite from item_filters.json + return obj; +} + +// ------------------------------------------------------------------------- +// Bullet JSON builder +// ------------------------------------------------------------------------- + +static json BulletJson(const BulletTrack& t, const MapInfo* map) { + json obj; + obj["id"] = AddrId(t.address); + obj["label"] = "Bullet"; + obj["kind"] = "bullet"; + + auto [cx, cy] = WorldToMap(map, t.currentPos.x, t.currentPos.z); + obj["x"] = cx; + obj["y"] = cy; + + // Rotation from lastDir: atan2(x, z) gives bearing in radians; convert to degrees. + float bearing = std::atan2(t.lastDir.x, t.lastDir.z) * (180.0f / kPi); + obj["rotation"] = bearing; + obj["distance"] = -1; + obj["visibleOnMap"] = true; + + obj["isActive"] = t.isActive; + obj["isPhantom"] = t.isPhantom; + obj["isCompleted"] = t.isCompleted; + + obj["firstSeenAtUtcMs"] = t.firstSeenMs; + obj["lastSeenAtUtcMs"] = t.lastSeenMs; + + if (t.isCompleted) + obj["finalizedAtUtcMs"] = t.finalizedMs; + else + obj["finalizedAtUtcMs"] = nullptr; + + obj["predictionSpeed"] = t.speedMps; + obj["directionSource"] = "velocity"; + + // initialPosition + if (t.firstSeenMs > 0) { + auto [ix, iy] = WorldToMap(map, t.initialPos.x, t.initialPos.z); + obj["initialPosition"] = { {"x", ix}, {"y", iy} }; + } else { + obj["initialPosition"] = nullptr; + } + + // finalPosition + if (t.isCompleted) { + auto [fx, fy] = WorldToMap(map, t.finalPos.x, t.finalPos.z); + obj["finalPosition"] = { {"x", fx}, {"y", fy} }; + } else { + obj["finalPosition"] = nullptr; + } + + // initialDirection (3-D, world space) + obj["initialDirection"] = { + {"x", t.initialDir.x}, + {"y", t.initialDir.y}, + {"z", t.initialDir.z} + }; + + // lastDirection + obj["lastDirection"] = { + {"x", t.lastDir.x}, + {"y", t.lastDir.y}, + {"z", t.lastDir.z} + }; + + // Path (map-projected 2-D) + json path = json::array(); + for (const auto& [ts, pos] : t.points) { + auto [px, py] = WorldToMap(map, pos.x, pos.z); + path.push_back({ {"x", px}, {"y", py} }); + } + obj["path"] = std::move(path); + + // Predicted path: 20 points at 15 m intervals, up to 300 m. + json predictedPath = json::array(); + bool doPredict = !t.isCompleted && t.speedMps >= 1.0f; + if (doPredict) { + Vector3 cur = t.currentPos; + float step = 15.0f; + int nPts = 20; + for (int i = 1; i <= nPts; ++i) { + float dist = step * static_cast(i); + if (dist > 300.0f) break; + float px = cur.x + t.lastDir.x * dist; + float py_val = cur.y + t.lastDir.y * dist; + float pz = cur.z + t.lastDir.z * dist; + (void)py_val; + auto [mx, my] = WorldToMap(map, px, pz); + predictedPath.push_back({ {"x", mx}, {"y", my} }); + } + } + obj["predictedPath"] = std::move(predictedPath); + + return obj; +} + +// ------------------------------------------------------------------------- +// WebSnapshotService::BuildStateJson +// ------------------------------------------------------------------------- + +std::string WebSnapshotService::BuildStateJson(const RuntimeUpdate& update, + const std::vector& bullets, + const MapInfo* map, + int64_t nowMs) +{ + (void)nowMs; + int64_t seq = m_seq.fetch_add(1, std::memory_order_relaxed); + + int mapSize = map ? map->worldSize : 15360; + int tileCount = (mapSize + 511) / 512; + + json j; + j["cacheRefreshSequence"] = seq; + j["fastCacheRefreshSequence"] = seq; + j["slowCacheRefreshSequence"] = seq; + + j["mapId"] = map ? map->id : ""; + j["mapName"] = map ? map->name : ""; + j["mapSize"] = mapSize; + j["tileSize"] = 512; + j["tileCountX"] = tileCount; + j["tileCountY"] = tileCount; + + j["serverMapName"] = update.serverMapName.value_or(""); + j["serverName"] = update.serverName.value_or(""); + j["gameVersion"] = update.gameVersion.value_or(""); + + j["isAttached"] = update.areBaseObjectsReady; + j["isUsingMockData"] = false; + j["status"] = update.status; + + bool hasLocal = update.localPlayerPosition.has_value(); + j["hasLocalPlayer"] = hasLocal; + + if (hasLocal) { + const Vector3& lp = *update.localPlayerPosition; + auto [lx, ly] = WorldToMap(map, lp.x, lp.z); + j["localPlayer"] = { + { "x", lx }, + { "y", ly }, + { "rotation", update.localPlayerLookDirection.value_or(0.0f) }, + { "cameraRotation", 0.0 } + }; + } else { + j["localPlayer"] = nullptr; + } + + // playerList + json playerList = json::array(); + for (const auto& p : update.players) + playerList.push_back(PlayerListEntryJson(p)); + j["playerList"] = std::move(playerList); + + // players + json players = json::array(); + for (const auto& p : update.players) + players.push_back(PlayerEntityJson(p, map)); + j["players"] = std::move(players); + + // zombies + json zombies = json::array(); + for (const auto& z : update.zombies) + zombies.push_back(ZombieEntityJson(z, map)); + j["zombies"] = std::move(zombies); + + // animals + json animals = json::array(); + for (const auto& a : update.animals) + animals.push_back(AnimalEntityJson(a, map)); + j["animals"] = std::move(animals); + + // vehicles + json vehicles = json::array(); + for (const auto& v : update.carsAndBoats) + vehicles.push_back(VehicleEntityJson(v, map)); + j["vehicles"] = std::move(vehicles); + + // otherEntities + json others = json::array(); + for (const auto& e : update.otherEntities) + others.push_back(OtherEntityJson(e, map)); + j["otherEntities"] = std::move(others); + + // loot + json loot = json::array(); + for (const auto& item : update.items) + loot.push_back(LootEntityJson(item, map)); + j["loot"] = std::move(loot); + + // bullets + json bulletArr = json::array(); + for (const auto& t : bullets) + bulletArr.push_back(BulletJson(t, map)); + j["bullets"] = std::move(bulletArr); + + return j.dump(); +} + +// ------------------------------------------------------------------------- +// WebSnapshotService::BuildBootstrapJson +// ------------------------------------------------------------------------- + +std::string WebSnapshotService::BuildBootstrapJson(const RuntimeUpdate& update, + const MapInfo* map, + int port) +{ + int mapSize = map ? map->worldSize : 15360; + int tileCount = (mapSize + 511) / 512; + + json j; + j["mapId"] = map ? map->id : ""; + j["mapName"] = map ? map->name : ""; + j["serverMapName"] = update.serverMapName.value_or(""); + j["mapSize"] = mapSize; + j["tileSize"] = 512; + j["tileCountX"] = tileCount; + j["tileCountY"] = tileCount; + + j["server"] = { { "port", port } }; + + // All known maps. + int mapCount = 0; + const MapInfo* allMaps = MapRegistry::AllMaps(mapCount); + + json mapsArr = json::array(); + for (int i = 0; i < mapCount; ++i) { + const MapInfo& m = allMaps[i]; + mapsArr.push_back({ + { "id", m.id }, + { "name", m.name }, + { "worldSize", m.worldSize }, + { "index", m.index }, + { "hasImage", MapRegistry::HasMapImage(m) } + }); + } + j["maps"] = std::move(mapsArr); + + // Entity filter presets (fixed). + json filters = json::array({ + { {"key","player"}, {"label","Players"}, {"kind","player"}, {"color","#ff8800"} }, + { {"key","zombie"}, {"label","Zombies"}, {"kind","zombie"}, {"color","#00cc44"} }, + { {"key","animal"}, {"label","Animals"}, {"kind","animal"}, {"color","#44aaff"} }, + { {"key","vehicle"}, {"label","Vehicles"}, {"kind","vehicle"}, {"color","#aa44ff"} }, + { {"key","bullet"}, {"label","Bullets"}, {"kind","bullet"}, {"color","#ffff00"} }, + }); + + // Per-category loot filters — built from item_filters.json so that + // app.js can map item.lootCategory → the correct colour/label. + for (const auto& def : m_catalog.GetFilters()) { + json f; + f["key"] = "loot_" + def.key; // unique filter key + f["label"] = def.description.empty() ? def.key : def.description; + f["kind"] = "loot"; + f["category"] = def.key; // must match item.lootCategory + f["color"] = def.color.value_or("#ffffff"); + filters.push_back(std::move(f)); + } + + // Fallback "other" loot bucket for items that don't match any filter. + filters.push_back({ + {"key", "loot_other"}, + {"label", "Other"}, + {"kind", "loot"}, + {"category", ItemFilterCatalog::kFallbackKey}, + {"color", "#888888"} + }); + + j["filters"] = std::move(filters); + + return j.dump(); +} diff --git a/src/Web/WebSnapshotService.h b/src/Web/WebSnapshotService.h new file mode 100644 index 0000000..acbadd6 --- /dev/null +++ b/src/Web/WebSnapshotService.h @@ -0,0 +1,34 @@ +#pragma once +#include +#include +#include +#include + +#include "Web/BulletTrackCache.h" +#include "Web/MapRegistry.h" +#include "Readers/ItemFilterCatalog.h" +#include "Runtime/DayZRuntimeService.h" + +// ------------------------------------------------------------------------- +// WebSnapshotService +// Converts RuntimeUpdate snapshots into JSON strings consumed by the +// browser radar client. +// ------------------------------------------------------------------------- + +class WebSnapshotService { +public: + /// Build the main state JSON sent on every SSE push / polling request. + std::string BuildStateJson(const RuntimeUpdate& update, + const std::vector& bullets, + const MapInfo* map, + int64_t nowMs); + + /// Build the one-time bootstrap JSON (map list, filter presets, server info). + std::string BuildBootstrapJson(const RuntimeUpdate& update, + const MapInfo* map, + int port); + +private: + std::atomic m_seq{0}; + ItemFilterCatalog m_catalog; // loaded from config/item_filters.json +}; diff --git a/src/Web/stb_impl.cpp b/src/Web/stb_impl.cpp new file mode 100644 index 0000000..4399263 --- /dev/null +++ b/src/Web/stb_impl.cpp @@ -0,0 +1,20 @@ +// Single-translation-unit stb implementation. +// All other TUs must include stb_image / stb_image_write WITHOUT defining +// the implementation macros. + +#ifdef _MSC_VER +# pragma warning(push) +# pragma warning(disable: 4244 4996 4100) +#endif + +#define STB_IMAGE_IMPLEMENTATION +#define STB_IMAGE_WRITE_IMPLEMENTATION +#define STBI_ONLY_PNG +#define STBI_ONLY_JPEG + +#include +#include + +#ifdef _MSC_VER +# pragma warning(pop) +#endif diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..1e7fc4b --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,128 @@ +#include +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include + +#include +#include "Config.h" +#include "Logger.h" +#include "Overlay/GameOverlay.h" +#include "Overlay/OverlayWindow.h" +#include "Runtime/DayZRuntimeService.h" +#include "Web/WebRadarServer.h" + +// Shared stop flag so the console Ctrl+C / close handler can reach it. +static std::atomic* g_stopFlag = nullptr; + +static BOOL WINAPI ConsoleCtrlHandler(DWORD signal) { + if (signal == CTRL_C_EVENT || signal == CTRL_CLOSE_EVENT || + signal == CTRL_BREAK_EVENT) + { + if (g_stopFlag) g_stopFlag->store(true); + return TRUE; + } + return FALSE; +} + +int main() { + std::filesystem::create_directories("logs"); + AppLogger::Init(); + auto log = AppLogger::Get(); + log->info("DayZ Memory Reader - Starting"); + + RuntimeConfig rtCfg = RuntimeConfig::Load("config/config.cfg"); + DayZRuntimeService service(rtCfg); + + // ------------------------------------------------------------------------- + // Config — loaded from config/overlay.json (defaults if missing). + // ------------------------------------------------------------------------- + static const std::string kCfgPath = "config/overlay.json"; + OverlayConfig cfg = OverlayConfig::Load(kCfgPath); + + // ------------------------------------------------------------------------- + // Web radar server — settings come from config. + // ------------------------------------------------------------------------- + WebRadarConfig webCfg; + webCfg.bindAddress = cfg.webBindAddress; + webCfg.port = cfg.webPort; + webCfg.password = cfg.webPassword; + + WebRadarServer webRadar(webCfg); + webRadar.Start(); + + // ------------------------------------------------------------------------- + // Runtime service callback: log stats + push snapshot to web radar. + // ------------------------------------------------------------------------- + + service.SetUpdateCallback([&log, &webRadar](const RuntimeUpdate& update) { + // Always push to the web radar (even when not yet attached) so the + // browser client sees connection/status changes immediately. + webRadar.PushSnapshot(update); + + if (!update.areBaseObjectsReady) { + // Status messages are already de-duplicated inside WaitForSession. + return; + } + + // Periodic heartbeat at most once every 10 seconds. Kept terse — the + // interesting per-event detail (admins detected, skeletons lost) is logged + // as it happens by the runtime service, not polled here. + using Clock = std::chrono::steady_clock; + static auto nextLog = Clock::time_point{}; + auto now = Clock::now(); + if (now < nextLog) return; + nextLog = now + std::chrono::seconds(10); + + // Skeleton coverage: how many in-range players currently have valid bones. + size_t skelOk = 0, admins = 0; + for (const auto& p : update.players) { + if (p.skeleton.valid) ++skelOk; + if (p.isAdmin) ++admins; + } + + log->info("[Live] Players={} (bones {}/{}, admins {}) Zombies={} Vehicles={} Server='{}'", + update.players.size(), + skelOk, update.players.size(), admins, + update.zombies.size(), + update.carsAndBoats.size(), + update.serverName.value_or("?")); + }); + + service.Start(); + + // Overlay polls GetLatestUpdate() each frame; no extra callback needed. + std::atomic stopFlag{false}; + g_stopFlag = &stopFlag; + + GameOverlay overlay(service, cfg, kCfgPath); + overlay.SetWebRadarPort(webCfg.port); + overlay.SetExitCallback([&stopFlag]() { stopFlag.store(true); }); + OverlayWindow window; + window.SetResolutionOverride(cfg.overlayWidth, cfg.overlayHeight); + overlay.SetResizeCallback([&window](int w, int h) { window.ResizeTo(w, h); }); + + window.SetDrawCallback([&overlay](float w, float h) { + overlay.Draw(w, h); + }); + window.SetInputQueryCallback([&overlay]() { + return overlay.IsMenuOpen(); + }); + window.SetFontReadyCallback([&overlay](ImFont* close, ImFont* lootFar) { + overlay.SetLootFonts(close, lootFar); + }); + + SetConsoleCtrlHandler(ConsoleCtrlHandler, TRUE); + + // Blocks until the overlay window is closed or stopFlag is set externally. + window.Run(stopFlag); + + webRadar.Stop(); + service.Stop(); + log->info("Stopped."); + spdlog::shutdown(); + return 0; +} diff --git a/webroot/app.js b/webroot/app.js new file mode 100644 index 0000000..7921293 --- /dev/null +++ b/webroot/app.js @@ -0,0 +1,2424 @@ +const storageKey = "dayz-web-map-settings"; +const params = new URLSearchParams(window.location.search); +const password = params.get("password") || ""; +const favoriteLootColor = "#ef4444"; +const favoriteLootFilterDefinition = { key: "favoriteLoot", label: "Favorites", visibleKey: "showFavoriteLoot", kind: "loot", category: "favorite", color: favoriteLootColor, markerSize: 10, textSize: 14, showLabel: true }; +const lootPalette = ["#f43f5e", "#f59e0b", "#22c55e", "#eab308", "#84cc16", "#ec4899", "#0ea5e9", "#14b8a6", "#c084fc", "#f97316", "#d946ef", "#dc2626", "#fbbf24", "#fb923c", "#0891b2", "#64748b"]; +const entityFilterDefinitions = [ + { key: "players", label: "Players", visibleKey: "showPlayers", kind: "players", color: "#ff6b35", markerSize: 12, textSize: 14, showLabel: true, directionLength: 28 }, + { key: "zombies", label: "Zombies", visibleKey: "showZombies", kind: "zombies", color: "#65a30d", markerSize: 12, textSize: 14, showLabel: true }, + { key: "animals", label: "Animals", visibleKey: "showAnimals", kind: "animals", color: "#38bdf8", markerSize: 12, textSize: 14, showLabel: true }, + { key: "vehicles", label: "Vehicles", visibleKey: "showVehicles", kind: "vehicles", color: "#a855f7", markerSize: 14, textSize: 14, showLabel: true }, + { key: "bullets", label: "Bullets", visibleKey: "showBullets", kind: "bullets", color: "#facc15", markerSize: 6, textSize: 12, showLabel: false, showTrajectory: true, showPrediction: true, phantomLifetimeMs: 5000, predictionDistance: 250 }, + { key: "otherEntities", label: "Other Entity", visibleKey: "showOtherEntities", kind: "otherEntities", color: "#475569", markerSize: 10, textSize: 14, showLabel: true } +]; +const previousDefaultFilterColors = { + players: "#f97316", + zombies: "#22c55e", + animals: "#60a5fa", + vehicles: "#a855f7", + bullets: "#f8fafc", + otherEntities: "#94a3b8", + isHouse: "#fb7185", + isWeapon: "#4ade80", + isAmmo: "#f59e0b", + isFood: "#a3e635", + isClothing: "#fde047", + isBackpack: "#f0abfc", + isMedical: "#e5e7eb", + isVehiclePart: "#38bdf8", + isTool: "#22d3ee", + isCrafting: "#2dd4bf", + isConsumables: "#f43f5e", + isOptics: "#94a3b8", + isMelee: "#fb7185", + isWeaponAttachments: "#4ade80", + isExplosives: "#f59e0b", + isForBuilding: "#a3e635", + isOtherLoot: "#fde047" +}; +let filterDefinitions = [...entityFilterDefinitions]; + +const defaultSettings = { + settingsCollapsed: false, + labelSettingsOpen: false, + followPlayer: false, + showPlayers: true, + showZombies: true, + showAnimals: true, + showLoot: true, + showVehicles: true, + showBullets: true, + showOtherEntities: true, + showFavoriteLoot: true, + showLabels: true, + distanceFilter: 2000, + textSize: 14, + ordinaryLootSpread: 2, + groupedLootSpread: 2, + sameLootMergeRadius: 110, + lineAnchorMode: "bottom-center", + mergeSameLootLabels: true, + favoriteLootNames: [], + filterStyles: {}, + filterExpanded: {} +}; + +const savedSettings = (() => { + try { + const parsed = JSON.parse(localStorage.getItem(storageKey) || "{}"); + return { + ...defaultSettings, + ...parsed, + filterStyles: { ...(defaultSettings.filterStyles || {}), ...(parsed.filterStyles || {}) }, + filterExpanded: { ...(defaultSettings.filterExpanded || {}), ...(parsed.filterExpanded || {}) } + }; + } catch { + return { ...defaultSettings }; + } +})(); + +const state = { + settings: savedSettings, + scale: 0.6, + offsetX: 0, + offsetY: 0, + dragging: false, + lastX: 0, + lastY: 0, + bootstrap: null, + lastSnapshot: null, + tileState: {}, + initialCentered: false, + eventSource: null, + fallbackPollTimer: null, + reconnectTimer: null, + activePointers: new Map(), + pinchDistance: 0, + bulletVisuals: new Map(), + bulletAnimationFrame: null +}; + +const elements = { + status: document.getElementById("status"), + viewport: document.getElementById("viewport"), + canvas: document.getElementById("canvas"), + tiles: document.getElementById("tiles"), + paths: document.getElementById("paths"), + itemLabels: document.getElementById("itemLabels"), + markers: document.getElementById("markers"), + playersToggle: document.getElementById("playersToggle"), + playersPanel: document.getElementById("playersPanel"), + playersClose: document.getElementById("playersClose"), + playersList: document.getElementById("playersList"), + lootToggle: document.getElementById("lootToggle"), + lootPanel: document.getElementById("lootPanel"), + lootClose: document.getElementById("lootClose"), + lootInfo: document.getElementById("lootInfo"), + lootList: document.getElementById("lootList"), + serverInfo: document.getElementById("serverInfo"), + serverBadge: document.getElementById("serverBadge"), + settingsPanel: document.getElementById("settingsPanel"), + settingsPanelBody: document.getElementById("settingsPanelBody"), + settingsToggle: document.getElementById("settingsToggle"), + collapseButton: document.getElementById("collapseButton"), + labelSettingsToggle: document.getElementById("labelSettingsToggle"), + labelSettingsPanel: document.getElementById("labelSettingsPanel"), + labelSettingsBody: document.getElementById("labelSettingsBody"), + labelSettingsClose: document.getElementById("labelSettingsClose"), + labelSettingsReset: document.getElementById("labelSettingsReset"), + entityFilterList: document.getElementById("entityFilterList"), + lootFilterList: document.getElementById("lootFilterList"), + followPlayer: document.getElementById("followPlayer"), + showLoot: document.getElementById("showLoot"), + showLabels: document.getElementById("showLabels"), + distanceFilter: document.getElementById("distanceFilter"), + distanceValue: document.getElementById("distanceValue"), + textSize: document.getElementById("textSize"), + textSizeValue: document.getElementById("textSizeValue"), + ordinaryLootSpread: document.getElementById("ordinaryLootSpread"), + ordinaryLootSpreadValue: document.getElementById("ordinaryLootSpreadValue"), + groupedLootSpread: document.getElementById("groupedLootSpread"), + groupedLootSpreadValue: document.getElementById("groupedLootSpreadValue"), + sameLootMergeRadius: document.getElementById("sameLootMergeRadius"), + sameLootMergeRadiusValue: document.getElementById("sameLootMergeRadiusValue"), + lineAnchorMode: document.getElementById("lineAnchorMode"), + mergeSameLootLabels: document.getElementById("mergeSameLootLabels") +}; + +let filtersByKey = {}; +const filterKeyByKind = { + players: "players", + zombies: "zombies", + animals: "animals", + vehicles: "vehicles", + bullets: "bullets", + otherEntities: "otherEntities" +}; +let lootFilterKeyByCategory = {}; +const minMapScale = 0.02; +const maxMapScale = 1.5; +const textMeasureCanvas = document.createElement("canvas"); +const textMeasureContext = textMeasureCanvas.getContext("2d"); + +function rebuildFilterCaches() { + filtersByKey = Object.fromEntries(filterDefinitions.map((definition) => [definition.key, definition])); + lootFilterKeyByCategory = Object.fromEntries( + filterDefinitions + .filter((definition) => definition.kind === "loot") + .map((definition) => [definition.category, definition.key]) + ); +} + +function buildLootFilterDefinitions(dynamicFilters) { + return [favoriteLootFilterDefinition] + .concat((dynamicFilters || []) + .filter((definition) => definition.kind === "loot") + .sort((lhs, rhs) => Number((lhs.key || "").toLowerCase() === "isotherloot") - Number((rhs.key || "").toLowerCase() === "isotherloot")) + .map((definition, index) => ({ + key: definition.key, + label: definition.label || definition.key, + visibleKey: definition.key, + kind: "loot", + category: definition.category || definition.key, + color: definition.color || lootPalette[index % lootPalette.length], + markerSize: 8, + textSize: 14, + showLabel: true + }))); +} + +function sanitize(text) { + return String(text ?? "") + .replaceAll("&", "&") + .replaceAll("<", "<") + .replaceAll(">", ">") + .replaceAll('"', """); +} + +function renderSafeMultilineHtml(lines) { + return (Array.isArray(lines) ? lines : [String(lines || "")]) + .filter((line) => String(line || "").trim().length > 0) + .map((line) => sanitize(line)) + .join("
    "); +} + +function normalizeInlineText(value) { + return String(value || "") + .replace(/\s*\r?\n\s*/g, " ") + .replace(/\s+/g, " ") + .replace(/\s*-\s*/g, "-") + .trim(); +} + +function getEntityLabelLines(item) { + const baseLabel = normalizeInlineText(item?.label || "Unknown"); + const handItem = normalizeInlineText(item?.handItem || ""); + const distanceText = Number.isFinite(Number(item?.distance)) && Number(item.distance) >= 0 ? ` ${Math.round(Number(item.distance))}m` : ""; + const firstLine = item?.dead + ? `💀${baseLabel}${distanceText}🪦` + : `${baseLabel}${distanceText}`; + + return handItem.length > 0 + ? [firstLine.trim(), `🖐️${handItem}🔫`] + : [firstLine.trim()]; +} + +function ensureFilterSettings() { + for (const definition of filterDefinitions) { + const current = state.settings.filterStyles[definition.key] || {}; + const currentColor = String(current.color || "").toLowerCase(); + const previousDefaultColor = previousDefaultFilterColors[definition.key]; + state.settings.filterStyles[definition.key] = { + color: !currentColor || currentColor === previousDefaultColor ? definition.color : current.color, + markerSize: Number(current.markerSize || definition.markerSize), + textSize: Number(current.textSize || definition.textSize), + showLabel: current.showLabel !== false + }; + if (definition.key === "players") { + const rawDirectionLength = Number(current.directionLength || definition.directionLength || 28); + const safeDirectionLength = Number.isFinite(rawDirectionLength) ? rawDirectionLength : 28; + state.settings.filterStyles[definition.key].directionLength = Math.min(60, Math.max(10, safeDirectionLength)); + } + if (definition.key === "bullets") { + const rawPhantomLifetimeMs = Number(current.phantomLifetimeMs || definition.phantomLifetimeMs || 5000); + const rawPredictionDistance = Number(current.predictionDistance || definition.predictionDistance || 250); + state.settings.filterStyles[definition.key].showTrajectory = current.showTrajectory !== false; + state.settings.filterStyles[definition.key].showPrediction = current.showPrediction !== false; + state.settings.filterStyles[definition.key].phantomLifetimeMs = Math.min(60000, Math.max(0, Number.isFinite(rawPhantomLifetimeMs) ? rawPhantomLifetimeMs : 5000)); + state.settings.filterStyles[definition.key].predictionDistance = Math.min(1000, Math.max(25, Number.isFinite(rawPredictionDistance) ? rawPredictionDistance : 250)); + } + state.settings.filterExpanded[definition.key] = !!state.settings.filterExpanded[definition.key]; + if (typeof state.settings[definition.visibleKey] !== "boolean") { + state.settings[definition.visibleKey] = true; + } + } + if (!Array.isArray(state.settings.favoriteLootNames)) { + state.settings.favoriteLootNames = []; + } + state.settings.favoriteLootNames = Array.from(new Set(state.settings.favoriteLootNames.map((value) => String(value || "").trim().toLowerCase()).filter(Boolean))); + state.settings.ordinaryLootSpread = Math.min(4, Math.max(1, Number(state.settings.ordinaryLootSpread || defaultSettings.ordinaryLootSpread))); + state.settings.groupedLootSpread = Math.min(4, Math.max(1, Number(state.settings.groupedLootSpread || defaultSettings.groupedLootSpread))); + state.settings.sameLootMergeRadius = Math.min(240, Math.max(20, Number(state.settings.sameLootMergeRadius || defaultSettings.sameLootMergeRadius))); + state.settings.lineAnchorMode = ["auto-nearest", "top-left", "top-center", "top-right", "middle-left", "middle-right", "bottom-left", "bottom-center", "bottom-right"].includes(state.settings.lineAnchorMode) + ? state.settings.lineAnchorMode + : defaultSettings.lineAnchorMode; + state.settings.mergeSameLootLabels = state.settings.mergeSameLootLabels !== false; + state.settings.labelSettingsOpen = !!state.settings.labelSettingsOpen; +} + +function persistSettings() { + localStorage.setItem(storageKey, JSON.stringify(state.settings)); +} + +function normalizeLootName(name) { + return String(name || "").trim().toLowerCase(); +} + +function getFavoriteLootNames() { + return new Set(state.settings.favoriteLootNames || []); +} + +function isFavoriteLoot(item) { + return !!(item && getFavoriteLootNames().has(normalizeLootName(item.label))); +} + +function toggleFavoriteLoot(itemName) { + const normalized = normalizeLootName(itemName); + if (!normalized) { + return; + } + const favorites = getFavoriteLootNames(); + if (favorites.has(normalized)) { + favorites.delete(normalized); + } else { + favorites.add(normalized); + } + state.settings.favoriteLootNames = Array.from(favorites); + persistSettings(); + render(); +} + +function apiUrl(path) { + return password ? `${path}?password=${encodeURIComponent(password)}` : path; +} + +function tileUrl(tileX, tileY, retry = 0) { + const query = new URLSearchParams({ x: String(tileX), y: String(tileY), retry: String(retry) }); + if (state.bootstrap?.mapId) { + query.set("mapId", state.bootstrap.mapId); + } + if (password) { + query.set("password", password); + } + return `/tile?${query.toString()}`; +} + +function getViewportMetrics() { + const rect = elements.viewport.getBoundingClientRect(); + const mapSize = Number(state.bootstrap?.mapSize || 0); + return { + width: Math.max(0, rect.width), + height: Math.max(0, rect.height), + mapSize + }; +} + +function constrainViewState() { + const metrics = getViewportMetrics(); + if (metrics.mapSize <= 0 || metrics.width <= 0 || metrics.height <= 0) { + return; + } + + const minScaleForWidth = metrics.width / metrics.mapSize; + const minScaleForHeight = metrics.height / metrics.mapSize; + const effectiveMinScale = Math.max(minMapScale, minScaleForWidth, minScaleForHeight); + state.scale = Math.min(maxMapScale, Math.max(effectiveMinScale, state.scale)); + + const scaledMapWidth = metrics.mapSize * state.scale; + const scaledMapHeight = metrics.mapSize * state.scale; + const minOffsetX = metrics.width - scaledMapWidth; + const minOffsetY = metrics.height - scaledMapHeight; + + state.offsetX = clampNumber(state.offsetX, Math.min(minOffsetX, 0), 0); + state.offsetY = clampNumber(state.offsetY, Math.min(minOffsetY, 0), 0); +} + +function applyTransform() { + constrainViewState(); + elements.canvas.style.transform = `translate(${state.offsetX}px, ${state.offsetY}px) scale(${state.scale})`; + updateVisibleTiles(); +} + +function applyMapMetadata(metadata, clearTiles = false) { + if (!metadata) { + return false; + } + + const previous = state.bootstrap; + const next = { + ...(previous || {}), + ...metadata, + mapId: metadata.mapId || previous?.mapId || "", + mapName: metadata.mapName || previous?.mapName || "", + mapSize: Number(metadata.mapSize || previous?.mapSize || 0), + tileSize: Number(metadata.tileSize || previous?.tileSize || 512), + tileCountX: Number(metadata.tileCountX || previous?.tileCountX || 0), + tileCountY: Number(metadata.tileCountY || previous?.tileCountY || 0) + }; + const changed = !previous + || previous.mapId !== next.mapId + || previous.mapName !== next.mapName + || previous.mapSize !== next.mapSize + || previous.tileSize !== next.tileSize + || previous.tileCountX !== next.tileCountX + || previous.tileCountY !== next.tileCountY; + + state.bootstrap = next; + elements.canvas.style.width = `${next.mapSize}px`; + elements.canvas.style.height = `${next.mapSize}px`; + elements.tiles.style.width = `${next.mapSize}px`; + elements.tiles.style.height = `${next.mapSize}px`; + elements.paths.setAttribute("viewBox", `0 0 ${next.mapSize} ${next.mapSize}`); + elements.paths.setAttribute("width", `${next.mapSize}`); + elements.paths.setAttribute("height", `${next.mapSize}`); + elements.itemLabels.style.width = `${next.mapSize}px`; + elements.itemLabels.style.height = `${next.mapSize}px`; + elements.markers.style.width = `${next.mapSize}px`; + elements.markers.style.height = `${next.mapSize}px`; + + if (clearTiles || changed) { + state.tileState = {}; + elements.tiles.replaceChildren(); + } + + applyTransform(); + return changed; +} + +function setSettingsCollapsed(collapsed) { + state.settings.settingsCollapsed = collapsed; + persistSettings(); + elements.settingsPanel.classList.toggle("collapsed", collapsed); + elements.settingsToggle.classList.toggle("visible", collapsed); +} + +function setPanelOpen(panelElement, open) { + if (open && panelElement === elements.playersPanel) { + elements.lootPanel.classList.remove("open"); + } + if (open && panelElement === elements.lootPanel) { + elements.playersPanel.classList.remove("open"); + } + panelElement.classList.toggle("open", open); +} + +function setLabelSettingsOpen(open) { + state.settings.labelSettingsOpen = open; + persistSettings(); + elements.labelSettingsPanel.classList.toggle("open", open); +} + +function resetLabelSettings() { + state.settings.ordinaryLootSpread = defaultSettings.ordinaryLootSpread; + state.settings.groupedLootSpread = defaultSettings.groupedLootSpread; + state.settings.sameLootMergeRadius = defaultSettings.sameLootMergeRadius; + state.settings.lineAnchorMode = defaultSettings.lineAnchorMode; + state.settings.mergeSameLootLabels = defaultSettings.mergeSameLootLabels; +} + +function syncLabelSettingsUi() { + elements.ordinaryLootSpread.value = String(state.settings.ordinaryLootSpread); + elements.ordinaryLootSpreadValue.textContent = `${Number(state.settings.ordinaryLootSpread).toFixed(1)}x`; + elements.groupedLootSpread.value = String(state.settings.groupedLootSpread); + elements.groupedLootSpreadValue.textContent = `${Number(state.settings.groupedLootSpread).toFixed(1)}x`; + elements.sameLootMergeRadius.value = String(state.settings.sameLootMergeRadius); + elements.sameLootMergeRadiusValue.textContent = `${Math.round(Number(state.settings.sameLootMergeRadius))} px`; + elements.lineAnchorMode.value = state.settings.lineAnchorMode; + elements.mergeSameLootLabels.checked = !!state.settings.mergeSameLootLabels; + elements.labelSettingsPanel.classList.toggle("open", !!state.settings.labelSettingsOpen); +} + +function centerOn(point) { + if (!point) { + return; + } + const rect = elements.viewport.getBoundingClientRect(); + state.offsetX = (rect.width / 2) - (point.x * state.scale); + state.offsetY = (rect.height / 2) - (point.y * state.scale); + applyTransform(); +} + +function getFilterDefinition(kind, item) { + if (kind === "loot") { + if (isFavoriteLoot(item)) { + return filtersByKey.favoriteLoot || null; + } + const filterKey = lootFilterKeyByCategory[item.lootCategory || "other"] || "lootOther"; + return filtersByKey[filterKey] || null; + } + return filtersByKey[filterKeyByKind[kind]] || null; +} + +function getLootCategoryDefinition(item) { + const filterKey = lootFilterKeyByCategory[item?.lootCategory || "other"] || "lootOther"; + return filtersByKey[filterKey] || null; +} + +function getMarkerColor(kind, item) { + const filterDefinition = getFilterDefinition(kind, item); + const filterStyle = filterDefinition ? state.settings.filterStyles[filterDefinition.key] : null; + return filterStyle ? filterStyle.color : (kind === "loot" && isFavoriteLoot(item) ? favoriteLootColor : "#f8fafc"); +} + +function isLootCategoryEnabled(category) { + if (!category) { + return true; + } + + if (typeof state.settings[category] !== "boolean") { + state.settings[category] = true; + } + + return state.settings[category]; +} + +function isItemVisibleByFilters(kind, item) { + if (!item) { + return false; + } + if (kind === "loot" && isFavoriteLoot(item)) { + return state.settings.showFavoriteLoot !== false; + } + if (state.settings.distanceFilter > 0 && item.distance > state.settings.distanceFilter) { + return false; + } + if (kind === "loot") { + if (!state.settings.showLoot) { + return false; + } + if (!isLootCategoryEnabled(item.lootCategory)) { + return false; + } + } + if (kind === "players" && !state.settings.showPlayers) { + return false; + } + if (kind === "zombies" && !state.settings.showZombies) { + return false; + } + if (kind === "animals" && !state.settings.showAnimals) { + return false; + } + if (kind === "vehicles" && !state.settings.showVehicles) { + return false; + } + if (kind === "bullets" && !state.settings.showBullets) { + return false; + } + if (kind === "otherEntities" && !state.settings.showOtherEntities) { + return false; + } + if (kind === "bullets") { + const phantomLifetimeMs = Number(state.settings.filterStyles?.bullets?.phantomLifetimeMs || 0); + if (item.isPhantom && phantomLifetimeMs >= 0) { + const lastSeenAtUtcMs = Number(item.lastSeenAtUtcMs || 0); + if (lastSeenAtUtcMs > 0 && (Date.now() - lastSeenAtUtcMs) > phantomLifetimeMs) { + return false; + } + } + } + if (kind === "players" && state.lastSnapshot?.localPlayer) { + const dx = item.x - state.lastSnapshot.localPlayer.x; + const dy = item.y - state.lastSnapshot.localPlayer.y; + if ((dx * dx + dy * dy) <= 9.0) { + return false; + } + } + return true; +} + +function getVisibleCollection(kind, list) { + return (list || []).filter((item) => isItemVisibleByFilters(kind, item)); +} + +function buildLabelText(item) { + const distanceText = Number.isFinite(Number(item?.distance)) && Number(item.distance) >= 0 ? ` ${Math.round(Number(item.distance))}m` : ""; + if (item?.kind === "player") { + return getEntityLabelLines(item).join("\n"); + } + return `${String(item?.label || "Unknown")}${distanceText}`; +} + +function isEntityKind(kind) { + return kind !== "loot"; +} + +function getRenderPriority(kind, item) { + if (isEntityKind(kind)) { + return 3; + } + return isFavoriteLoot(item) ? 2 : 1; +} + +function getLayerClass(kind, item) { + const priority = getRenderPriority(kind, item); + if (priority === 3) { + return "layer-entity"; + } + if (priority === 2) { + return "layer-favorite"; + } + return "layer-loot"; +} + +function getLabelConfig(kind, item) { + const filterDefinition = getFilterDefinition(kind, item); + const filterStyle = filterDefinition ? state.settings.filterStyles[filterDefinition.key] : null; + if (kind === "bullets") { + return { + filterDefinition, + filterStyle, + showLabel: false, + textSize: filterStyle ? filterStyle.textSize : state.settings.textSize + }; + } + const showLabel = !!(state.settings.showLabels && item.label && (!filterStyle || filterStyle.showLabel)); + return { + filterDefinition, + filterStyle, + showLabel, + textSize: filterStyle ? filterStyle.textSize : state.settings.textSize + }; +} + +function useFixedScreenLabel(kind, itemOrGroup) { + if (kind === "players") { + return true; + } + if (kind === "loot") { + if (Object.prototype.hasOwnProperty.call(itemOrGroup || {}, "priority")) { + return itemOrGroup?.priority === 2; + } + return isFavoriteLoot(itemOrGroup); + } + return false; +} + +function clampScale(value) { + const metrics = getViewportMetrics(); + if (metrics.mapSize <= 0 || metrics.width <= 0 || metrics.height <= 0) { + return Math.min(maxMapScale, Math.max(minMapScale, value)); + } + + const minScaleForWidth = metrics.width / metrics.mapSize; + const minScaleForHeight = metrics.height / metrics.mapSize; + return Math.min(maxMapScale, Math.max(minMapScale, minScaleForWidth, minScaleForHeight, value)); +} + +function zoomAt(clientX, clientY, nextScale) { + const rect = elements.viewport.getBoundingClientRect(); + const localPlayer = state.settings.followPlayer && state.lastSnapshot?.hasLocalPlayer && state.lastSnapshot?.localPlayer + ? state.lastSnapshot.localPlayer + : null; + const originX = localPlayer + ? ((localPlayer.x * state.scale) + state.offsetX) + : (clientX - rect.left); + const originY = localPlayer + ? ((localPlayer.y * state.scale) + state.offsetY) + : (clientY - rect.top); + const worldX = (originX - state.offsetX) / state.scale; + const worldY = (originY - state.offsetY) / state.scale; + state.scale = clampScale(nextScale); + state.offsetX = originX - (worldX * state.scale); + state.offsetY = originY - (worldY * state.scale); + applyTransform(); +} + +function getActivePointerPair() { + const pointers = Array.from(state.activePointers.values()); + return pointers.length >= 2 ? [pointers[0], pointers[1]] : null; +} + +function getPointerDistance(first, second) { + const dx = second.clientX - first.clientX; + const dy = second.clientY - first.clientY; + return Math.hypot(dx, dy); +} + +function getPointerMidpoint(first, second) { + return { + clientX: (first.clientX + second.clientX) / 2, + clientY: (first.clientY + second.clientY) / 2 + }; +} + +function updateMapDrag(clientX, clientY) { + state.offsetX += clientX - state.lastX; + state.offsetY += clientY - state.lastY; + state.lastX = clientX; + state.lastY = clientY; + applyTransform(); +} + +function getRectIntersectionArea(first, second) { + const width = Math.max(0, Math.min(first.right, second.right) - Math.max(first.left, second.left)); + const height = Math.max(0, Math.min(first.bottom, second.bottom) - Math.max(first.top, second.top)); + return width * height; +} + +function getPlacementPenalty(rect, occupiedRects, viewportRect) { + let overlapArea = 0; + for (const occupied of occupiedRects) { + overlapArea += getRectIntersectionArea(rect, occupied); + } + + const overflowX = Math.max(0, viewportRect.left - rect.left) + Math.max(0, rect.right - viewportRect.right); + const overflowY = Math.max(0, viewportRect.top - rect.top) + Math.max(0, rect.bottom - viewportRect.bottom); + return (overlapArea * 10) + ((overflowX + overflowY) * 120); +} + +function estimateLabelSize(text, fontSize) { + const safeFontSize = Math.max(10, Number(fontSize) || 14); + const safeText = String(text || ""); + const lines = safeText.split("\n"); + const lineHeight = Math.max(1, Math.ceil(safeFontSize * 1.15)); + if (textMeasureContext) { + textMeasureContext.font = `700 ${safeFontSize}px Arial, sans-serif`; + let width = 1; + let ascent = Math.ceil(safeFontSize * 0.8); + let descent = Math.ceil(safeFontSize * 0.2); + for (const line of lines) { + const metrics = textMeasureContext.measureText(line || " "); + width = Math.max(width, Math.ceil(metrics.width)); + ascent = Math.max(ascent, Math.ceil(metrics.actualBoundingBoxAscent || (safeFontSize * 0.8))); + descent = Math.max(descent, Math.ceil(metrics.actualBoundingBoxDescent || (safeFontSize * 0.2))); + } + return { + width: Math.max(1, width), + height: Math.max(1, ascent + descent + ((lines.length - 1) * lineHeight)) + }; + } + + const longestLineLength = lines.reduce((maxLength, line) => Math.max(maxLength, String(line || "").length), 0); + return { + width: Math.max(1, Math.round(longestLineLength * safeFontSize * 0.52)), + height: Math.max(1, Math.round(safeFontSize + ((lines.length - 1) * lineHeight))) + }; +} + +function getScaledLabelLayoutSize(kind, itemOrGroup, text, fontSize) { + const size = estimateLabelSize(text, fontSize); + if (!useFixedScreenLabel(kind, itemOrGroup)) { + return size; + } + + const effectiveScale = Math.max(minMapScale, Number(state.scale) || 1); + return { + width: size.width / effectiveScale, + height: size.height / effectiveScale + }; +} + +function buildPinnedLabelCandidates(entry, size) { + const markerSize = entry.label.filterStyle ? entry.label.filterStyle.markerSize : (entry.kind === "vehicles" ? 14 : 12); + const radius = Math.max(6, markerSize * 0.7); + const gap = Math.max(2, Math.round(markerSize * 0.2)); + const sideCandidates = { + "middle-right": { left: radius + gap, top: -Math.round(size.height / 2), distance: gap }, + "middle-left": { left: -(size.width + radius + gap), top: -Math.round(size.height / 2), distance: gap }, + "top-center": { left: -Math.round(size.width / 2), top: -(size.height + radius + gap), distance: gap }, + "bottom-center": { left: -Math.round(size.width / 2), top: radius + gap, distance: gap } + }; + + return [ + sideCandidates["middle-left"], + sideCandidates["middle-right"], + sideCandidates["top-center"], + sideCandidates["bottom-center"] + ]; +} + +function buildScreenRect(screenX, screenY, candidate, size, scale) { + return { + left: screenX + (candidate.left * scale), + top: screenY + (candidate.top * scale), + right: screenX + ((candidate.left + size.width) * scale), + bottom: screenY + ((candidate.top + size.height) * scale) + }; +} + +function clampNumber(value, min, max) { + return Math.min(max, Math.max(min, value)); +} + +function isPointOutsideViewport(screenX, screenY, viewportRect) { + return screenX < viewportRect.left + || screenX > viewportRect.right + || screenY < viewportRect.top + || screenY > viewportRect.bottom; +} + +function getBlockedViewportRects() { + const viewportRect = elements.viewport.getBoundingClientRect(); + const blockedElements = []; + if (!elements.settingsPanel.classList.contains("collapsed")) { + blockedElements.push(elements.settingsPanel); + } + if (elements.playersPanel.classList.contains("open")) { + blockedElements.push(elements.playersPanel); + } + if (elements.lootPanel.classList.contains("open")) { + blockedElements.push(elements.lootPanel); + } + if (elements.labelSettingsPanel.classList.contains("open")) { + blockedElements.push(elements.labelSettingsPanel); + } + + return blockedElements + .map((element) => element.getBoundingClientRect()) + .map((rect) => ({ + left: rect.left - viewportRect.left, + top: rect.top - viewportRect.top, + right: rect.right - viewportRect.left, + bottom: rect.bottom - viewportRect.top + })); +} + +function buildViewportEdgeCandidates(screenX, screenY, size, viewportRect) { + const padding = 10; + const labelScreenWidth = size.width * state.scale; + const labelScreenHeight = size.height * state.scale; + const availableLeft = viewportRect.left + padding; + const availableTop = viewportRect.top + padding; + const availableRight = viewportRect.right - labelScreenWidth - padding; + const availableBottom = viewportRect.bottom - labelScreenHeight - padding; + const overflowLeft = screenX < viewportRect.left ? viewportRect.left - screenX : Number.POSITIVE_INFINITY; + const overflowRight = screenX > viewportRect.right ? screenX - viewportRect.right : Number.POSITIVE_INFINITY; + const overflowTop = screenY < viewportRect.top ? viewportRect.top - screenY : Number.POSITIVE_INFINITY; + const overflowBottom = screenY > viewportRect.bottom ? screenY - viewportRect.bottom : Number.POSITIVE_INFINITY; + const edgeCandidates = [ + { + edge: "left", + overflow: overflowLeft, + left: availableLeft, + top: clampNumber(screenY - (labelScreenHeight / 2), Math.min(availableTop, availableBottom), Math.max(availableTop, availableBottom)) + }, + { + edge: "right", + overflow: overflowRight, + left: availableRight, + top: clampNumber(screenY - (labelScreenHeight / 2), Math.min(availableTop, availableBottom), Math.max(availableTop, availableBottom)) + }, + { + edge: "top", + overflow: overflowTop, + left: clampNumber(screenX - (labelScreenWidth / 2), Math.min(availableLeft, availableRight), Math.max(availableLeft, availableRight)), + top: availableTop + }, + { + edge: "bottom", + overflow: overflowBottom, + left: clampNumber(screenX - (labelScreenWidth / 2), Math.min(availableLeft, availableRight), Math.max(availableLeft, availableRight)), + top: availableBottom + } + ]; + + return edgeCandidates + .sort((lhs, rhs) => lhs.overflow - rhs.overflow) + .map((candidate) => ({ + left: (candidate.left - screenX) / state.scale, + top: (candidate.top - screenY) / state.scale, + anchorX: 0, + anchorY: 0, + distance: Number.isFinite(candidate.overflow) ? candidate.overflow : 100000 + })); +} + +function normalizeGroupLootLabel(label) { + return String(label || "").trim().toLowerCase(); +} + +function getLootGroupingKey(item) { + return `${normalizeGroupLootLabel(item?.label)}:${String(item?.lootCategory || "other").trim().toLowerCase()}`; +} + +function canUsePriorityGrouping(entry) { + return getRenderPriority(entry.kind, entry.item) >= 2 && entry.kind !== "players"; +} + +function buildPriorityLabelGroups(entries) { + const groups = []; + const groupableEntries = entries + .filter((entry) => canUsePriorityGrouping(entry) && entry.label.showLabel) + .map((entry) => ({ + entry, + key: `${entry.kind}:${getRenderPriority(entry.kind, entry.item)}:${entry.kind === "loot" ? getLootGroupingKey(entry.item) : normalizeGroupLootLabel(entry.item.label)}`, + screenX: (entry.item.x * state.scale) + state.offsetX, + screenY: (entry.item.y * state.scale) + state.offsetY + })) + .sort((lhs, rhs) => { + const byKey = lhs.key.localeCompare(rhs.key); + if (byKey !== 0) { + return byKey; + } + if (lhs.screenY !== rhs.screenY) { + return lhs.screenY - rhs.screenY; + } + return lhs.screenX - rhs.screenX; + }); + + const clusterDistance = Math.max(24, Math.round(Number(state.settings.sameLootMergeRadius || defaultSettings.sameLootMergeRadius) * 0.55)); + + for (const candidate of groupableEntries) { + let bestGroup = null; + let bestDistance = Number.POSITIVE_INFINITY; + + for (const group of groups) { + if (group.key !== candidate.key) { + continue; + } + const dx = candidate.screenX - group.screenX; + const dy = candidate.screenY - group.screenY; + const distance = Math.hypot(dx, dy); + if (distance <= clusterDistance && distance < bestDistance) { + bestDistance = distance; + bestGroup = group; + } + } + + if (!bestGroup) { + groups.push({ + key: candidate.key, + kind: candidate.entry.kind, + priority: getRenderPriority(candidate.entry.kind, candidate.entry.item), + entries: [candidate.entry], + label: candidate.entry.label, + markerColor: candidate.entry.markerColor, + baseText: String(candidate.entry.item.label || "Unknown"), + anchorX: candidate.entry.item.x, + anchorY: candidate.entry.item.y, + screenX: candidate.screenX, + screenY: candidate.screenY, + labelText: String(candidate.entry.item.label || "Unknown"), + labelPlacement: null + }); + continue; + } + + bestGroup.entries.push(candidate.entry); + const count = bestGroup.entries.length; + bestGroup.anchorX = ((bestGroup.anchorX * (count - 1)) + candidate.entry.item.x) / count; + bestGroup.anchorY = ((bestGroup.anchorY * (count - 1)) + candidate.entry.item.y) / count; + bestGroup.screenX = ((bestGroup.screenX * (count - 1)) + candidate.screenX) / count; + bestGroup.screenY = ((bestGroup.screenY * (count - 1)) + candidate.screenY) / count; + } + + for (const group of groups) { + let maxWorldRadius = 0; + for (const entry of group.entries) { + const worldDx = entry.item.x - group.anchorX; + const worldDy = entry.item.y - group.anchorY; + maxWorldRadius = Math.max(maxWorldRadius, Math.hypot(worldDx, worldDy)); + } + group.clusterRadiusWorld = maxWorldRadius; + group.labelText = group.entries.length > 1 ? `${group.baseText} x${group.entries.length}` : group.baseText; + } + + return { + groups: groups.filter((group) => group.entries.length > 1), + groupedEntries: new Set(groups.filter((group) => group.entries.length > 1).flatMap((group) => group.entries)) + }; +} + +function buildOrdinaryLootLabelGroups(entries) { + if (!state.settings.mergeSameLootLabels) { + return entries + .filter((entry) => getRenderPriority(entry.kind, entry.item) === 1 && entry.label.showLabel) + .map((entry) => ({ + labelKey: getLootGroupingKey(entry.item), + entries: [entry], + label: entry.label, + markerColor: entry.markerColor, + baseText: String(entry.item.label || "Unknown"), + anchorX: entry.item.x, + anchorY: entry.item.y, + screenX: (entry.item.x * state.scale) + state.offsetX, + screenY: (entry.item.y * state.scale) + state.offsetY, + clusterRadiusScreen: 0, + clusterRadiusWorld: 0, + labelText: String(entry.item.label || "Unknown"), + labelPlacement: null + })); + } + + const groups = []; + const groupableEntries = entries + .filter((entry) => getRenderPriority(entry.kind, entry.item) === 1 && entry.label.showLabel) + .map((entry) => ({ + entry, + labelKey: getLootGroupingKey(entry.item), + screenX: (entry.item.x * state.scale) + state.offsetX, + screenY: (entry.item.y * state.scale) + state.offsetY + })) + .sort((lhs, rhs) => { + const byLabel = lhs.labelKey.localeCompare(rhs.labelKey); + if (byLabel !== 0) { + return byLabel; + } + if (lhs.screenY !== rhs.screenY) { + return lhs.screenY - rhs.screenY; + } + return lhs.screenX - rhs.screenX; + }); + + const clusterDistance = Number(state.settings.sameLootMergeRadius || defaultSettings.sameLootMergeRadius); + + for (const candidate of groupableEntries) { + let bestGroup = null; + let bestDistance = Number.POSITIVE_INFINITY; + + for (const group of groups) { + if (group.labelKey !== candidate.labelKey) { + continue; + } + const dx = candidate.screenX - group.screenX; + const dy = candidate.screenY - group.screenY; + const distance = Math.hypot(dx, dy); + if (distance <= clusterDistance && distance < bestDistance) { + bestDistance = distance; + bestGroup = group; + } + } + + if (!bestGroup) { + groups.push({ + labelKey: candidate.labelKey, + entries: [candidate.entry], + label: candidate.entry.label, + markerColor: candidate.entry.markerColor, + baseText: String(candidate.entry.item.label || "Unknown"), + anchorX: candidate.entry.item.x, + anchorY: candidate.entry.item.y, + screenX: candidate.screenX, + screenY: candidate.screenY + }); + continue; + } + + bestGroup.entries.push(candidate.entry); + const count = bestGroup.entries.length; + bestGroup.anchorX = ((bestGroup.anchorX * (count - 1)) + candidate.entry.item.x) / count; + bestGroup.anchorY = ((bestGroup.anchorY * (count - 1)) + candidate.entry.item.y) / count; + bestGroup.screenX = ((bestGroup.screenX * (count - 1)) + candidate.screenX) / count; + bestGroup.screenY = ((bestGroup.screenY * (count - 1)) + candidate.screenY) / count; + } + + for (const group of groups) { + let maxScreenRadius = 0; + let maxWorldRadius = 0; + for (const entry of group.entries) { + const screenDx = ((entry.item.x * state.scale) + state.offsetX) - group.screenX; + const screenDy = ((entry.item.y * state.scale) + state.offsetY) - group.screenY; + maxScreenRadius = Math.max(maxScreenRadius, Math.hypot(screenDx, screenDy)); + + const worldDx = entry.item.x - group.anchorX; + const worldDy = entry.item.y - group.anchorY; + maxWorldRadius = Math.max(maxWorldRadius, Math.hypot(worldDx, worldDy)); + } + + group.clusterRadiusScreen = maxScreenRadius; + group.clusterRadiusWorld = maxWorldRadius; + group.labelText = group.entries.length > 1 ? `${group.baseText} x${group.entries.length}` : group.baseText; + group.labelPlacement = null; + } + + return groups; +} + +function buildOrdinaryGroupLabelCandidates(group, size) { + const spreadMultiplier = Number(state.settings.ordinaryLootSpread || 1) * Number(state.settings.groupedLootSpread || 1); + const radius = Math.max(8, group.clusterRadiusWorld + 8); + const primaryGap = Math.round(14 * spreadMultiplier); + const secondaryGap = Math.round(26 * spreadMultiplier); + + return [ + { left: radius + primaryGap, top: 2, anchorX: 2, anchorY: 0, distance: primaryGap }, + { left: radius + primaryGap, top: -size.height - 2, anchorX: 2, anchorY: size.height, distance: primaryGap }, + { left: -(size.width + radius + primaryGap), top: 2, anchorX: size.width - 2, anchorY: 0, distance: primaryGap }, + { left: -(size.width + radius + primaryGap), top: -size.height - 2, anchorX: size.width - 2, anchorY: size.height, distance: primaryGap }, + { left: radius + secondaryGap, top: secondaryGap, anchorX: 2, anchorY: 0, distance: secondaryGap + 6 }, + { left: radius + secondaryGap, top: -(size.height + secondaryGap), anchorX: 2, anchorY: size.height, distance: secondaryGap + 6 }, + { left: -(size.width + radius + secondaryGap), top: secondaryGap, anchorX: size.width - 2, anchorY: 0, distance: secondaryGap + 6 }, + { left: -(size.width + radius + secondaryGap), top: -(size.height + secondaryGap), anchorX: size.width - 2, anchorY: size.height, distance: secondaryGap + 6 } + ]; +} + +function getLabelAnchorPoints(labelPlacement, labelSize) { + const width = labelSize.width; + const height = labelSize.height; + const left = labelPlacement.left; + const top = labelPlacement.top; + const middleX = left + (width / 2); + const middleY = top + (height / 2); + const right = left + width; + const bottom = top + height; + + return { + "top-left": { x: left, y: top }, + "top-center": { x: middleX, y: top }, + "top-right": { x: right, y: top }, + "middle-left": { x: left, y: middleY }, + "middle-right": { x: right, y: middleY }, + "bottom-left": { x: left, y: bottom }, + "bottom-center": { x: middleX, y: bottom }, + "bottom-right": { x: right, y: bottom } + }; +} + +function getLabelLineTarget(labelPlacement, labelSize, sourceX = 0, sourceY = 0) { + const anchorPoints = getLabelAnchorPoints(labelPlacement, labelSize); + if (state.settings.lineAnchorMode !== "auto-nearest") { + return anchorPoints[state.settings.lineAnchorMode] || anchorPoints[defaultSettings.lineAnchorMode]; + } + + let bestPoint = anchorPoints["bottom-center"]; + let bestDistance = Number.POSITIVE_INFINITY; + + for (const point of Object.values(anchorPoints)) { + const dx = point.x - sourceX; + const dy = point.y - sourceY; + const distance = (dx * dx) + (dy * dy); + if (distance < bestDistance) { + bestDistance = distance; + bestPoint = point; + } + } + + return bestPoint; +} + +function computeLabelPlacements(entries) { + const viewportRect = { + left: 0, + top: 0, + right: elements.viewport.clientWidth, + bottom: elements.viewport.clientHeight + }; + const occupiedRects = [...getBlockedViewportRects()]; + const priorityGrouping = buildPriorityLabelGroups(entries); + + for (const entry of entries) { + entry.labelPlacement = null; + } + + for (const entry of entries) { + if (!entry.label.showLabel) { + continue; + } + + const priority = getRenderPriority(entry.kind, entry.item); + const nearAnchor = priority >= 2; + const size = getScaledLabelLayoutSize(entry.kind, entry.item, entry.labelText, entry.label.textSize); + const screenX = (entry.item.x * state.scale) + state.offsetX; + const screenY = (entry.item.y * state.scale) + state.offsetY; + const useViewportEdgePlacement = entry.kind === "players" && isPointOutsideViewport(screenX, screenY, viewportRect); + + if (!nearAnchor) { + continue; + } + + if (priorityGrouping.groupedEntries.has(entry)) { + continue; + } + + const candidates = useViewportEdgePlacement + ? buildViewportEdgeCandidates(screenX, screenY, size, viewportRect) + : buildPinnedLabelCandidates(entry, size); + let bestPlacement = null; + let bestScore = Number.POSITIVE_INFINITY; + + for (const candidate of candidates) { + const rect = buildScreenRect(screenX, screenY, candidate, size, state.scale); + const penalty = getPlacementPenalty(rect, occupiedRects, viewportRect); + const score = penalty + (candidate.distance * (nearAnchor ? 16 : 8)); + if (score < bestScore) { + bestScore = score; + bestPlacement = { ...candidate, rect }; + } + } + + if (!bestPlacement) { + entry.labelPlacement = null; + continue; + } + + if (!nearAnchor && bestScore > 1400) { + entry.labelPlacement = null; + continue; + } + + occupiedRects.push(bestPlacement.rect); + entry.labelPlacement = { + left: bestPlacement.left, + top: bestPlacement.top, + anchorX: bestPlacement.anchorX, + anchorY: bestPlacement.anchorY + }; + } + + for (const group of priorityGrouping.groups) { + const size = getScaledLabelLayoutSize(group.kind, group, group.labelText, group.label.textSize); + const groupEntry = group.entries[0]; + const candidates = buildPinnedLabelCandidates(groupEntry, size); + let bestPlacement = null; + let bestScore = Number.POSITIVE_INFINITY; + + for (const candidate of candidates) { + const rect = buildScreenRect(group.screenX, group.screenY, candidate, size, state.scale); + const penalty = getPlacementPenalty(rect, occupiedRects, viewportRect); + const score = penalty + (candidate.distance * 20); + if (score < bestScore) { + bestScore = score; + bestPlacement = { ...candidate, rect }; + } + } + + if (!bestPlacement) { + group.labelPlacement = null; + continue; + } + + occupiedRects.push(bestPlacement.rect); + group.labelPlacement = { + left: bestPlacement.left, + top: bestPlacement.top, + anchorX: bestPlacement.anchorX, + anchorY: bestPlacement.anchorY + }; + } + + const groups = buildOrdinaryLootLabelGroups(entries); + + for (const group of groups) { + const size = estimateLabelSize(group.labelText, group.label.textSize); + const candidates = buildOrdinaryGroupLabelCandidates(group, size); + let bestPlacement = null; + let bestScore = Number.POSITIVE_INFINITY; + + for (const candidate of candidates) { + const rect = buildScreenRect(group.screenX, group.screenY, candidate, size, state.scale); + const penalty = getPlacementPenalty(rect, occupiedRects, viewportRect); + const score = penalty + (candidate.distance * 8); + if (score < bestScore) { + bestScore = score; + bestPlacement = { ...candidate, rect }; + } + } + + if (!bestPlacement) { + group.labelPlacement = null; + continue; + } + + occupiedRects.push(bestPlacement.rect); + group.labelPlacement = { + left: bestPlacement.left, + top: bestPlacement.top, + anchorX: bestPlacement.anchorX, + anchorY: bestPlacement.anchorY + }; + } + + return { + ordinaryGroups: groups, + priorityGroups: priorityGrouping.groups + }; +} + +function renderFilterCards() { + const buildCard = (definition) => { + const style = state.settings.filterStyles[definition.key]; + const visible = !!state.settings[definition.visibleKey]; + const expanded = !!state.settings.filterExpanded[definition.key]; + + const card = document.createElement("section"); + card.className = `filter-card${expanded ? " expanded" : ""}`; + const directionControl = definition.key === "players" ? ` + ` : ""; + const bulletControls = definition.key === "bullets" ? ` + + + + ` : ""; + const textSizeControl = definition.key !== "bullets" ? ` + ` : ""; + const showLabelControl = definition.key !== "bullets" ? ` + ` : ""; + + card.innerHTML = ` +

    +
    + + + ${textSizeControl} + ${directionControl} + ${bulletControls} + ${showLabelControl} +
    `; + + const visibleInput = card.querySelector(".filter-main input"); + const gearButton = card.querySelector(".filter-gear"); + const colorInput = card.querySelector('input[type="color"]'); + const markerRange = card.querySelector(".range-marker"); + const textRange = card.querySelector(".range-text"); + const labelInput = card.querySelector(".toggle-show-label input"); + const markerValue = card.querySelector(".value-marker"); + const textValue = card.querySelector(".value-text"); + const directionRange = card.querySelector(".range-direction"); + const directionValue = card.querySelector(".value-direction"); + const swatch = card.querySelector(".filter-swatch"); + const trajectoryInput = card.querySelector(".bullet-toggle-trajectory input"); + const predictionInput = card.querySelector(".bullet-toggle-prediction input"); + const phantomRange = card.querySelector(".range-phantom"); + const phantomValue = card.querySelector(".value-phantom"); + const predictionRange = card.querySelector(".range-prediction"); + const predictionValue = card.querySelector(".value-prediction"); + + visibleInput.addEventListener("change", () => { + state.settings[definition.visibleKey] = visibleInput.checked; + persistSettings(); + render(); + }); + gearButton.addEventListener("click", () => { + state.settings.filterExpanded[definition.key] = !state.settings.filterExpanded[definition.key]; + persistSettings(); + renderFilterCards(); + }); + colorInput.addEventListener("input", () => { + state.settings.filterStyles[definition.key].color = colorInput.value; + persistSettings(); + if (swatch) { + swatch.style.background = colorInput.value; + } + render(); + }); + markerRange.addEventListener("input", () => { + state.settings.filterStyles[definition.key].markerSize = Number(markerRange.value); + markerValue.textContent = `${markerRange.value}px`; + persistSettings(); + render(); + }); + if (textRange && textValue) { + textRange.addEventListener("input", () => { + state.settings.filterStyles[definition.key].textSize = Number(textRange.value); + textValue.textContent = `${textRange.value}px`; + persistSettings(); + render(); + }); + } + if (labelInput) { + labelInput.addEventListener("change", () => { + state.settings.filterStyles[definition.key].showLabel = labelInput.checked; + persistSettings(); + render(); + }); + } + if (directionRange && directionValue) { + directionRange.addEventListener("input", () => { + state.settings.filterStyles[definition.key].directionLength = Number(directionRange.value); + directionValue.textContent = `${directionRange.value}px`; + persistSettings(); + render(); + }); + } + if (trajectoryInput) { + trajectoryInput.addEventListener("change", () => { + state.settings.filterStyles[definition.key].showTrajectory = trajectoryInput.checked; + persistSettings(); + render(); + }); + } + if (predictionInput) { + predictionInput.addEventListener("change", () => { + state.settings.filterStyles[definition.key].showPrediction = predictionInput.checked; + syncBulletVisuals(state.lastSnapshot?.bullets || []); + ensureBulletAnimation(); + persistSettings(); + render(); + }); + } + if (phantomRange && phantomValue) { + phantomRange.addEventListener("input", () => { + state.settings.filterStyles[definition.key].phantomLifetimeMs = Number(phantomRange.value); + phantomValue.textContent = `${phantomRange.value}ms`; + persistSettings(); + render(); + }); + } + if (predictionRange && predictionValue) { + predictionRange.addEventListener("input", () => { + state.settings.filterStyles[definition.key].predictionDistance = Number(predictionRange.value); + predictionValue.textContent = `${predictionRange.value}m`; + syncBulletVisuals(state.lastSnapshot?.bullets || []); + ensureBulletAnimation(); + persistSettings(); + render(); + }); + } + return card; + }; + + elements.entityFilterList.replaceChildren(...filterDefinitions.filter((definition) => definition.kind !== "loot").map(buildCard)); + elements.lootFilterList.replaceChildren(...filterDefinitions.filter((definition) => definition.kind === "loot").map(buildCard)); +} + +function renderPlayersList() { + if (!state.lastSnapshot) { + return; + } + + const players = Array.isArray(state.lastSnapshot.playerList) ? state.lastSnapshot.playerList.slice() : []; + const visibleOnMapByFilters = (player) => { + if (!player.visibleOnMap) { + return false; + } + if (!state.settings.showPlayers) { + return false; + } + if (state.settings.distanceFilter > 0 && player.distance >= 0 && player.distance > state.settings.distanceFilter) { + return false; + } + return true; + }; + + const visiblePlayers = players.filter((player) => player.visibleOnMap && player.distance >= 0); + const maxDistance = visiblePlayers.reduce((value, player) => Math.max(value, Number(player.distance || 0)), 1); + const sortVisiblePlayers = (lhs, rhs) => { + if ((lhs.distance || 0) !== (rhs.distance || 0)) { + return (lhs.distance || 0) - (rhs.distance || 0); + } + return String(lhs.steamId || "").localeCompare(String(rhs.steamId || "")); + }; + const sortHiddenPlayers = (lhs, rhs) => { + const byLabel = String(lhs.label || "").localeCompare(String(rhs.label || ""), undefined, { sensitivity: "base" }); + if (byLabel !== 0) { + return byLabel; + } + return String(lhs.steamId || "").localeCompare(String(rhs.steamId || "")); + }; + const renderPlayerRow = (player) => { + const normalized = player.visibleOnMap && player.distance >= 0 + ? Math.max(0, Math.min(1, 1 - ((player.distance || 0) / maxDistance))) + : 0; + const red = player.visibleOnMap ? 170 + Math.round(85 * normalized) : 180; + const greenBlue = player.visibleOnMap ? 35 + Math.round(60 * (1 - normalized)) : 140; + const nameColor = `rgb(${red},${greenBlue},${greenBlue})`; + const steamId = player.steamId && String(player.steamId).trim().length > 0 ? String(player.steamId) : "unknown"; + const steamUrl = steamId !== "unknown" ? `https://steamcommunity.com/profiles/${encodeURIComponent(steamId)}` : ""; + return ` +
    `; + }; + + const visibleRows = players.filter(visibleOnMapByFilters).sort(sortVisiblePlayers).map(renderPlayerRow).join(""); + const hiddenRows = players.filter((player) => !visibleOnMapByFilters(player)).sort(sortHiddenPlayers).map(renderPlayerRow).join(""); + + let rows = ""; + if (visibleRows.length > 0) { + rows += '
    Visible On Map
    '; + rows += visibleRows; + } + if (hiddenRows.length > 0) { + rows += `${rows.length > 0 ? '
    Hidden / Off Map
    ' : '
    Players
    '}`; + rows += hiddenRows; + } + + elements.playersList.innerHTML = rows || '
    No players
    '; +} + +function renderLootList() { + if (!state.lastSnapshot) { + elements.lootList.innerHTML = '
    No loot
    '; + elements.lootInfo.textContent = "Loot: waiting for snapshot..."; + return; + } + + const categoryOrder = new Map(filterDefinitions.filter((definition) => definition.kind === "loot").map((definition, index) => [definition.category || "other", index])); + const sortLootItems = (lhs, rhs) => { + const lhsCategory = String(lhs.lootCategory || "other"); + const rhsCategory = String(rhs.lootCategory || "other"); + const byCategory = (categoryOrder.get(lhsCategory) ?? 999) - (categoryOrder.get(rhsCategory) ?? 999); + if (byCategory !== 0) { + return byCategory; + } + if ((lhs.distance || 0) !== (rhs.distance || 0)) { + return (lhs.distance || 0) - (rhs.distance || 0); + } + const byLabel = String(lhs.label || "").localeCompare(String(rhs.label || "")); + if (byLabel !== 0) { + return byLabel; + } + return String(lhs.id || "").localeCompare(String(rhs.id || "")); + }; + + const lootItems = getVisibleCollection("loot", state.lastSnapshot.loot || []).slice().sort(sortLootItems); + + const favoriteItems = lootItems.filter((item) => isFavoriteLoot(item)); + const regularItems = lootItems.filter((item) => !isFavoriteLoot(item)); + + elements.lootInfo.textContent = `Loot: ${lootItems.length} visible item${lootItems.length === 1 ? "" : "s"} (filters respected)`; + + const renderRow = (item) => { + const favorite = isFavoriteLoot(item); + const color = getMarkerColor("loot", item); + const categoryLabel = getLootCategoryDefinition(item)?.label || "Other"; + return ` + `; + }; + + let rows = ""; + if (favoriteItems.length > 0) { + let currentCategory = ""; + rows += '
    Favorites
    '; + for (const item of favoriteItems) { + const category = String(item.lootCategory || "other"); + if (category !== currentCategory) { + currentCategory = category; + rows += `
    ${sanitize(getLootCategoryDefinition(item)?.label || "Other")}
    `; + } + rows += renderRow(item); + } + } + if (regularItems.length > 0) { + let currentCategory = ""; + if (rows.length > 0) { + rows += '
    Visible Loot
    '; + } + for (const item of regularItems) { + const category = String(item.lootCategory || "other"); + if (category !== currentCategory) { + currentCategory = category; + rows += `
    ${sanitize(getLootCategoryDefinition(item)?.label || "Other")}
    `; + } + rows += renderRow(item); + } + } + elements.lootList.innerHTML = rows || '
    No loot matches current filters
    '; +} + +function createMarker(entry) { + const { kind, item, markerColor, labelText, label } = entry; + const filterStyle = label.filterStyle; + const markerSize = filterStyle ? filterStyle.markerSize : (kind === "vehicles" ? 14 : 12); + const borderSize = Math.max(1, Math.round(markerSize * 0.16)); + const favorite = kind === "loot" && isFavoriteLoot(item); + const labelPlacement = entry.labelPlacement; + + const marker = document.createElement("div"); + marker.className = `entity ${getLayerClass(kind, item)}${kind === "players" ? " player-entity" : ""}${kind === "bullets" && item.isPhantom ? " bullet-phantom" : ""}${kind === "bullets" && item.isCompleted ? " bullet-completed" : ""}`; + marker.style.left = `${item.x}px`; + marker.style.top = `${item.y}px`; + + const glyph = document.createElement("div"); + glyph.className = `marker ${kind}${favorite ? " favorite" : ""}`; + glyph.style.width = `${markerSize}px`; + glyph.style.height = `${markerSize}px`; + glyph.style.background = markerColor; + glyph.style.borderWidth = `${borderSize}px`; + glyph.style.color = markerColor; + + if (kind === "players") { + const direction = document.createElement("div"); + direction.className = "direction entity-direction"; + direction.style.transform = `translate(-50%, -100%) rotate(${180 - (item.rotation || 0)}deg)`; + direction.style.color = markerColor; + direction.style.height = `${Math.max(10, Number(filterStyle?.directionLength || 28))}px`; + marker.appendChild(direction); + } + + marker.appendChild(glyph); + + if (label.showLabel && labelPlacement && getRenderPriority(kind, item) >= 2) { + const labelNode = document.createElement("span"); + labelNode.className = `label${favorite ? " favorite" : ""}`; + labelNode.textContent = labelText; + labelNode.style.fontSize = `${label.textSize}px`; + labelNode.style.color = markerColor; + labelNode.style.left = `${labelPlacement.left}px`; + labelNode.style.top = `${labelPlacement.top}px`; + if (useFixedScreenLabel(kind, item)) { + const effectiveScale = Math.max(minMapScale, Number(state.scale) || 1); + labelNode.style.transformOrigin = "0 0"; + labelNode.style.transform = `scale(${1 / effectiveScale})`; + } + marker.appendChild(labelNode); + } + + return marker; +} + +function createPriorityLabelGroup(group) { + const labelPlacement = group.labelPlacement; + if (!labelPlacement) { + return null; + } + + const marker = document.createElement("div"); + marker.className = `entity ${group.priority >= 3 ? "layer-entity" : "layer-favorite"}`; + marker.style.left = `${group.anchorX}px`; + marker.style.top = `${group.anchorY}px`; + + const labelNode = document.createElement("span"); + labelNode.className = `label${group.priority === 2 ? " favorite" : ""}`; + labelNode.textContent = group.labelText; + labelNode.style.fontSize = `${group.label.textSize}px`; + labelNode.style.color = group.markerColor; + labelNode.style.left = `${labelPlacement.left}px`; + labelNode.style.top = `${labelPlacement.top}px`; + if (useFixedScreenLabel(group.kind, group)) { + const effectiveScale = Math.max(minMapScale, Number(state.scale) || 1); + labelNode.style.transformOrigin = "0 0"; + labelNode.style.transform = `scale(${1 / effectiveScale})`; + } + marker.appendChild(labelNode); + + const labelSize = getScaledLabelLayoutSize(group.kind, group, group.labelText, group.label.textSize); + for (const entry of group.entries) { + const labelLine = document.createElement("span"); + labelLine.className = `label-line${group.priority === 2 ? " favorite" : ""}`; + const itemDx = entry.item.x - group.anchorX; + const itemDy = entry.item.y - group.anchorY; + const lineTarget = getLabelLineTarget(labelPlacement, labelSize, itemDx, itemDy); + const startX = itemDx; + const startY = itemDy; + const drawX = lineTarget.x - startX; + const drawY = lineTarget.y - startY; + const angle = Math.atan2(drawY, drawX) * (180 / Math.PI); + const length = Math.hypot(drawX, drawY); + labelLine.style.left = `${startX}px`; + labelLine.style.top = `${startY}px`; + labelLine.style.width = `${Math.max(4, length)}px`; + labelLine.style.transform = `rotate(${angle}deg)`; + labelLine.style.color = group.markerColor; + marker.appendChild(labelLine); + } + + return marker; +} + +function createLootLabelGroup(group) { + const labelPlacement = group.labelPlacement; + if (!labelPlacement) { + return null; + } + const labelSize = estimateLabelSize(group.labelText, group.label.textSize); + + const marker = document.createElement("div"); + marker.className = "item-label-anchor"; + marker.style.left = `${group.anchorX}px`; + marker.style.top = `${group.anchorY}px`; + + const labelNode = document.createElement("span"); + labelNode.className = "label loot-label"; + labelNode.textContent = group.labelText; + labelNode.style.fontSize = `${group.label.textSize}px`; + labelNode.style.color = group.markerColor; + labelNode.style.left = `${labelPlacement.left}px`; + labelNode.style.top = `${labelPlacement.top}px`; + marker.appendChild(labelNode); + + for (const entry of group.entries) { + const labelLine = document.createElement("span"); + labelLine.className = "label-line loot-line"; + const itemDx = entry.item.x - group.anchorX; + const itemDy = entry.item.y - group.anchorY; + const lineTarget = getLabelLineTarget(labelPlacement, labelSize, itemDx, itemDy); + const startX = itemDx; + const startY = itemDy; + const drawX = lineTarget.x - startX; + const drawY = lineTarget.y - startY; + const angle = Math.atan2(drawY, drawX) * (180 / Math.PI); + const length = Math.hypot(drawX, drawY); + labelLine.style.left = `${startX}px`; + labelLine.style.top = `${startY}px`; + labelLine.style.width = `${Math.max(4, length)}px`; + labelLine.style.transform = `rotate(${angle}deg)`; + labelLine.style.color = group.markerColor; + marker.appendChild(labelLine); + } + + return marker; +} + +function buildRenderEntries() { + const collections = [ + { kind: "players", items: getVisibleCollection("players", state.lastSnapshot?.players || []) }, + { kind: "vehicles", items: getVisibleCollection("vehicles", state.lastSnapshot?.vehicles || []) }, + { kind: "zombies", items: getVisibleCollection("zombies", state.lastSnapshot?.zombies || []) }, + { kind: "animals", items: getVisibleCollection("animals", state.lastSnapshot?.animals || []) }, + { kind: "bullets", items: getVisibleCollection("bullets", state.lastSnapshot?.bullets || []) }, + { kind: "otherEntities", items: getVisibleCollection("otherEntities", state.lastSnapshot?.otherEntities || []) }, + { kind: "loot", items: getVisibleCollection("loot", state.lastSnapshot?.loot || []) } + ]; + + const entries = []; + for (const collection of collections) { + for (const item of collection.items) { + entries.push({ + kind: collection.kind, + item, + markerColor: getMarkerColor(collection.kind, item), + labelText: buildLabelText(item), + label: getLabelConfig(collection.kind, item) + }); + } + } + entries.sort((lhs, rhs) => { + const priorityDiff = getRenderPriority(rhs.kind, rhs.item) - getRenderPriority(lhs.kind, lhs.item); + if (priorityDiff !== 0) { + return priorityDiff; + } + return Number(lhs.item?.distance || 0) - Number(rhs.item?.distance || 0); + }); + return entries; +} + +function createSvgNode(tagName) { + return document.createElementNS("http://www.w3.org/2000/svg", tagName); +} + +function getBulletFilterStyle() { + return state.settings.filterStyles?.bullets || {}; +} + +function syncBulletVisuals(bullets) { + const now = performance.now(); + const visibleIds = new Set(); + const bulletStyle = getBulletFilterStyle(); + const predictionLimit = bulletStyle.showPrediction === false ? 0 : Number(bulletStyle.predictionDistance || 250); + + for (const bullet of bullets || []) { + visibleIds.add(bullet.id); + const visual = state.bulletVisuals.get(bullet.id) || { revealedDistance: 0, lastTick: now, targetDistance: 0, speed: 0 }; + visual.lastTick = now; + visual.speed = Math.max(30, Number(bullet.predictionSpeed || 0)); + visual.targetDistance = bullet.isCompleted ? 0 : predictionLimit; + if (visual.revealedDistance > visual.targetDistance) { + visual.revealedDistance = visual.targetDistance; + } + state.bulletVisuals.set(bullet.id, visual); + } + + for (const id of Array.from(state.bulletVisuals.keys())) { + if (!visibleIds.has(id)) { + state.bulletVisuals.delete(id); + } + } +} + +function advanceBulletVisuals(now) { + let needsFrame = false; + let changed = false; + + for (const visual of state.bulletVisuals.values()) { + const elapsedSeconds = Math.max(0, (now - visual.lastTick) / 1000); + visual.lastTick = now; + if (visual.revealedDistance < visual.targetDistance) { + const nextDistance = Math.min(visual.targetDistance, visual.revealedDistance + (visual.speed * elapsedSeconds)); + if (nextDistance !== visual.revealedDistance) { + visual.revealedDistance = nextDistance; + changed = true; + } + } + if (visual.revealedDistance + 0.5 < visual.targetDistance) { + needsFrame = true; + } + } + + return { needsFrame, changed }; +} + +function ensureBulletAnimation() { + if (state.bulletAnimationFrame) { + return; + } + + const hasPendingPrediction = Array.from(state.bulletVisuals.values()).some((visual) => visual.revealedDistance + 0.5 < visual.targetDistance); + if (!hasPendingPrediction) { + return; + } + + const tick = (now) => { + state.bulletAnimationFrame = null; + const { needsFrame, changed } = advanceBulletVisuals(now); + if (changed) { + render(); + } + if (needsFrame) { + state.bulletAnimationFrame = window.requestAnimationFrame(tick); + } + }; + + state.bulletAnimationFrame = window.requestAnimationFrame(tick); +} + +function buildClippedLine(points, maxDistance) { + if (!Array.isArray(points) || points.length < 2 || maxDistance <= 0) { + return []; + } + + const clipped = [points[0]]; + let remaining = maxDistance; + for (let index = 1; index < points.length; index += 1) { + const previous = points[index - 1]; + const current = points[index]; + const dx = Number(current.x || 0) - Number(previous.x || 0); + const dy = Number(current.y || 0) - Number(previous.y || 0); + const segmentLength = Math.hypot(dx, dy); + if (segmentLength <= 0) { + continue; + } + if (remaining >= segmentLength) { + clipped.push(current); + remaining -= segmentLength; + continue; + } + const ratio = remaining / segmentLength; + clipped.push({ x: Number(previous.x || 0) + (dx * ratio), y: Number(previous.y || 0) + (dy * ratio) }); + break; + } + + return clipped; +} + +function buildBulletPathNodes(bullets) { + const style = getBulletFilterStyle(); + if (style.showTrajectory === false && style.showPrediction === false) { + return []; + } + + const nodes = []; + for (const bullet of bullets || []) { + const color = getMarkerColor("bullets", bullet); + + if (style.showTrajectory !== false && Array.isArray(bullet.path) && bullet.path.length >= 2) { + const actual = createSvgNode("polyline"); + actual.setAttribute("class", `bullet-path-actual${bullet.isPhantom ? " bullet-path-phantom" : ""}`); + actual.setAttribute("stroke", color); + actual.setAttribute("points", bullet.path.map((point) => `${point.x},${point.y}`).join(" ")); + nodes.push(actual); + } + + if (style.showPrediction !== false && !bullet.isCompleted && Array.isArray(bullet.predictedPath) && bullet.predictedPath.length >= 2) { + const visual = state.bulletVisuals.get(bullet.id); + const clippedPoints = buildClippedLine(bullet.predictedPath, Number(visual?.revealedDistance || 0)); + if (clippedPoints.length >= 2) { + const predicted = createSvgNode("polyline"); + predicted.setAttribute("class", `bullet-path-predicted${bullet.isPhantom ? " bullet-path-phantom" : ""}`); + predicted.setAttribute("stroke", color); + predicted.setAttribute("points", clippedPoints.map((point) => `${point.x},${point.y}`).join(" ")); + nodes.push(predicted); + } + } + } + + return nodes; +} + +function updateVisibleTiles() { + if (!state.bootstrap) { + return; + } + + const rect = elements.viewport.getBoundingClientRect(); + const left = Math.max(0, Math.floor((-state.offsetX) / state.scale)); + const top = Math.max(0, Math.floor((-state.offsetY) / state.scale)); + const right = Math.min(state.bootstrap.mapSize, Math.ceil((rect.width - state.offsetX) / state.scale)); + const bottom = Math.min(state.bootstrap.mapSize, Math.ceil((rect.height - state.offsetY) / state.scale)); + + const tileSize = state.bootstrap.tileSize; + const preloadMargin = 2; + const keepMargin = 4; + const minTileX = Math.max(0, Math.floor(left / tileSize) - preloadMargin); + const minTileY = Math.max(0, Math.floor(top / tileSize) - preloadMargin); + const maxTileX = Math.min(state.bootstrap.tileCountX - 1, Math.floor(right / tileSize) + preloadMargin); + const maxTileY = Math.min(state.bootstrap.tileCountY - 1, Math.floor(bottom / tileSize) + preloadMargin); + + const ensureTile = (tileX, tileY, key) => { + let img = elements.tiles.querySelector(`[data-key="${key}"]`); + if (!img) { + img = document.createElement("img"); + img.className = "map-tile loading"; + img.dataset.key = key; + img.dataset.x = String(tileX); + img.dataset.y = String(tileY); + img.dataset.retry = "0"; + img.draggable = false; + img.style.left = `${tileX * tileSize}px`; + img.style.top = `${tileY * tileSize}px`; + img.style.width = `${tileSize}px`; + img.style.height = `${tileSize}px`; + + const loadTile = (retryCount) => { + img.dataset.retry = String(retryCount); + img.classList.remove("failed", "loaded"); + img.classList.add("loading"); + img.src = tileUrl(tileX, tileY, retryCount); + }; + + img.addEventListener("load", () => { + state.tileState[key] = "loaded"; + img.classList.remove("loading", "failed"); + img.classList.add("loaded"); + }); + + img.addEventListener("error", () => { + const nextRetry = Number(img.dataset.retry || "0") + 1; + state.tileState[key] = "failed"; + img.classList.remove("loading"); + img.classList.add("failed"); + if (nextRetry <= 4) { + window.setTimeout(() => { + if (!document.body.contains(img)) { + return; + } + loadTile(nextRetry); + }, 300 * nextRetry); + } + }); + + loadTile(0); + elements.tiles.appendChild(img); + return; + } + + if (img.classList.contains("failed")) { + const nextRetry = Number(img.dataset.retry || "0") + 1; + if (nextRetry <= 4) { + img.dataset.retry = String(nextRetry); + img.classList.remove("failed"); + img.classList.add("loading"); + img.src = tileUrl(tileX, tileY, nextRetry); + } + } + }; + + for (let tileY = minTileY; tileY <= maxTileY; tileY += 1) { + for (let tileX = minTileX; tileX <= maxTileX; tileX += 1) { + const key = `${tileX}:${tileY}`; + ensureTile(tileX, tileY, key); + } + } + + for (const node of Array.from(elements.tiles.querySelectorAll(".map-tile"))) { + const tileX = Number(node.dataset.x || "0"); + const tileY = Number(node.dataset.y || "0"); + const keep = tileX >= Math.max(0, minTileX - keepMargin) + && tileX <= Math.min(state.bootstrap.tileCountX - 1, maxTileX + keepMargin) + && tileY >= Math.max(0, minTileY - keepMargin) + && tileY <= Math.min(state.bootstrap.tileCountY - 1, maxTileY + keepMargin); + if (!keep) { + delete state.tileState[node.dataset.key]; + node.remove(); + } + } +} + +function render() { + if (!state.lastSnapshot || !state.bootstrap) { + return; + } + + if (state.settings.followPlayer && state.lastSnapshot.hasLocalPlayer && state.lastSnapshot.localPlayer) { + centerOn(state.lastSnapshot.localPlayer); + } + + const markerNodes = []; + const itemLabelNodes = []; + const pathNodes = buildBulletPathNodes(getVisibleCollection("bullets", state.lastSnapshot?.bullets || [])); + + const localPlayer = state.lastSnapshot.hasLocalPlayer ? state.lastSnapshot.localPlayer : null; + if (localPlayer) { + const marker = document.createElement("div"); + marker.className = "entity local-player-entity"; + marker.style.left = `${localPlayer.x}px`; + marker.style.top = `${localPlayer.y}px`; + + const glyph = document.createElement("div"); + glyph.className = "marker local-player"; + const direction = document.createElement("div"); + direction.className = "direction entity-direction local-direction"; + direction.style.transform = `translate(-50%, -100%) rotate(${180 - (localPlayer.cameraRotation || localPlayer.rotation || 0)}deg)`; + direction.style.height = `${Math.max(10, Number(state.settings.filterStyles?.players?.directionLength || 28))}px`; + marker.appendChild(direction); + marker.appendChild(glyph); + markerNodes.push(marker); + } + + const entries = buildRenderEntries(); + const labelGroups = computeLabelPlacements(entries); + + for (const entry of entries) { + markerNodes.push(createMarker(entry)); + } + + for (const group of labelGroups.priorityGroups || []) { + const markerNode = createPriorityLabelGroup(group); + if (markerNode) { + markerNodes.push(markerNode); + } + } + + for (const group of labelGroups.ordinaryGroups || []) { + const itemLabelNode = createLootLabelGroup(group); + if (itemLabelNode) { + itemLabelNodes.push(itemLabelNode); + } + } + + elements.itemLabels.replaceChildren(...itemLabelNodes); + elements.paths.replaceChildren(...pathNodes); + elements.markers.replaceChildren(...markerNodes); + + if (elements.playersPanel.classList.contains("open")) { + renderPlayersList(); + } + + if (elements.lootPanel.classList.contains("open")) { + renderLootList(); + } +} + +function stopFallbackPolling() { + if (state.fallbackPollTimer) { + window.clearInterval(state.fallbackPollTimer); + state.fallbackPollTimer = null; + } +} + +function startFallbackPolling() { + if (state.fallbackPollTimer) { + return; + } + + const poll = () => { + fetch(apiUrl("/api/state"), { cache: "no-store" }) + .then((response) => { + if (!response.ok) { + throw new Error(response.status === 401 ? "Unauthorized" : `HTTP ${response.status}`); + } + return response.json(); + }) + .then((snapshot) => applySnapshot(snapshot)) + .catch((error) => { + elements.status.textContent = error?.message || String(error); + }); + }; + + poll(); + state.fallbackPollTimer = window.setInterval(poll, 3000); +} + +function clearReconnectTimer() { + if (state.reconnectTimer) { + window.clearTimeout(state.reconnectTimer); + state.reconnectTimer = null; + } +} + +function scheduleReconnect() { + if (state.reconnectTimer) { + return; + } + state.reconnectTimer = window.setTimeout(() => { + state.reconnectTimer = null; + connectEvents(); + }, 3000); +} + +function applySnapshot(snapshot) { + const previousSnapshot = state.lastSnapshot; + state.lastSnapshot = snapshot; + const mapChanged = applyMapMetadata({ + mapId: snapshot.mapId, + mapName: snapshot.mapName, + serverMapName: snapshot.serverMapName, + mapSize: snapshot.mapSize, + tileSize: snapshot.tileSize, + tileCountX: snapshot.tileCountX, + tileCountY: snapshot.tileCountY + }); + if (snapshot.mapId) clearMapNotice(); + if (mapChanged) { + state.initialCentered = false; + } + syncBulletVisuals(snapshot?.bullets || []); + ensureBulletAnimation(); + + const snapshotChanged = !previousSnapshot + || previousSnapshot.cacheRefreshSequence !== snapshot.cacheRefreshSequence + || previousSnapshot.fastCacheRefreshSequence !== snapshot.fastCacheRefreshSequence + || previousSnapshot.slowCacheRefreshSequence !== snapshot.slowCacheRefreshSequence + || previousSnapshot.status !== snapshot.status + || previousSnapshot.serverName !== snapshot.serverName + || previousSnapshot.mapName !== snapshot.mapName + || previousSnapshot.serverMapName !== snapshot.serverMapName + || previousSnapshot.gameVersion !== snapshot.gameVersion + || previousSnapshot.hasLocalPlayer !== snapshot.hasLocalPlayer + || mapChanged; + + if (!state.initialCentered && snapshot.hasLocalPlayer && snapshot.localPlayer) { + centerOn(snapshot.localPlayer); + state.initialCentered = true; + } + + const serverTitle = snapshot.serverName && snapshot.serverName.length > 0 ? snapshot.serverName : "Unavailable"; + const versionText = snapshot.gameVersion && snapshot.gameVersion.length > 0 ? snapshot.gameVersion : "n/a"; + const mapText = snapshot.serverMapName && snapshot.serverMapName.length > 0 ? snapshot.serverMapName : snapshot.mapName; + + elements.serverInfo.textContent = `Server: ${serverTitle} | Map: ${mapText} | Version: ${versionText}`; + elements.serverBadge.textContent = `Server: ${serverTitle}`; + elements.status.textContent = snapshot.hasLocalPlayer ? `Live: ${snapshot.mapName}` : "Waiting for local player..."; + + if (!snapshotChanged) { + return; + } + + render(); +} + +function showMapNotice(msg) { + const existing = document.getElementById("map-notice"); + if (existing) existing.remove(); + const el = document.createElement("div"); + el.id = "map-notice"; + el.style.cssText = [ + "position:fixed", "top:0", "left:0", "right:0", + "background:#b91c1c", "color:#fff", + "padding:10px 16px", "font-size:13px", + "z-index:9999", "text-align:center", + "cursor:pointer" + ].join(";"); + el.textContent = msg + " (click to dismiss)"; + el.addEventListener("click", () => el.remove()); + document.body.prepend(el); +} + +function clearMapNotice() { + const el = document.getElementById("map-notice"); + if (el) el.remove(); +} + +async function bootstrap() { + const response = await fetch(apiUrl("/api/bootstrap"), { cache: "no-store" }); + if (!response.ok) { + throw new Error(response.status === 401 ? "Unauthorized" : `HTTP ${response.status}`); + } + const bootstrapData = await response.json(); + applyMapMetadata(bootstrapData, true); + + // Surface missing-map-image problems immediately with a visible red banner. + const mapsWithImages = (bootstrapData.maps || []).filter(m => m.hasImage); + if (!bootstrapData.mapId) { + if (mapsWithImages.length === 0) { + showMapNotice( + "No map PNG found — place a PNG named after a map ID next to the exe in a maps/ folder " + + "(e.g. maps/chernarusplus.png). Open /api/debug for the exact expected path." + ); + } else { + showMapNotice( + "Map PNGs exist (" + mapsWithImages.map(m => m.id).join(", ") + ") but server returned no mapId — " + + "open /api/debug for details." + ); + } + } + + filterDefinitions = [...entityFilterDefinitions, ...buildLootFilterDefinitions((state.bootstrap.filters || []).filter((definition) => definition.kind === "loot"))]; + rebuildFilterCaches(); + ensureFilterSettings(); + renderFilterCards(); + centerOn({ x: state.bootstrap.mapSize / 2, y: state.bootstrap.mapSize / 2 }); + setSettingsCollapsed(!!state.settings.settingsCollapsed); + syncLabelSettingsUi(); +} + +function connectEvents() { + if (typeof window.EventSource !== "function") { + startFallbackPolling(); + return; + } + + clearReconnectTimer(); + + if (state.eventSource) { + state.eventSource.close(); + } + + const source = new EventSource(apiUrl("/events")); + state.eventSource = source; + + source.addEventListener("state", (event) => { + stopFallbackPolling(); + applySnapshot(JSON.parse(event.data)); + }); + + source.onerror = () => { + if (state.eventSource === source) { + state.eventSource.close(); + state.eventSource = null; + } + elements.status.textContent = "Connection lost"; + startFallbackPolling(); + scheduleReconnect(); + }; +} + +function bindUi() { + for (const [key, element] of Object.entries({ + followPlayer: elements.followPlayer, + showLoot: elements.showLoot, + showLabels: elements.showLabels + })) { + element.checked = !!state.settings[key]; + element.addEventListener("change", () => { + state.settings[key] = element.checked; + persistSettings(); + render(); + }); + } + + elements.distanceFilter.value = String(state.settings.distanceFilter); + elements.distanceValue.textContent = `${state.settings.distanceFilter} m`; + elements.distanceFilter.addEventListener("input", () => { + state.settings.distanceFilter = Number(elements.distanceFilter.value); + elements.distanceValue.textContent = `${state.settings.distanceFilter} m`; + persistSettings(); + render(); + }); + + elements.textSize.value = String(state.settings.textSize); + elements.textSizeValue.textContent = `${state.settings.textSize} px`; + elements.textSize.addEventListener("input", () => { + state.settings.textSize = Number(elements.textSize.value); + elements.textSizeValue.textContent = `${state.settings.textSize} px`; + persistSettings(); + render(); + }); + + syncLabelSettingsUi(); + elements.labelSettingsToggle.addEventListener("click", () => setLabelSettingsOpen(!elements.labelSettingsPanel.classList.contains("open"))); + elements.labelSettingsClose.addEventListener("click", () => setLabelSettingsOpen(false)); + elements.labelSettingsReset.addEventListener("click", () => { + resetLabelSettings(); + ensureFilterSettings(); + syncLabelSettingsUi(); + persistSettings(); + render(); + }); + + elements.ordinaryLootSpread.addEventListener("input", () => { + state.settings.ordinaryLootSpread = Number(elements.ordinaryLootSpread.value); + syncLabelSettingsUi(); + persistSettings(); + render(); + }); + + elements.groupedLootSpread.addEventListener("input", () => { + state.settings.groupedLootSpread = Number(elements.groupedLootSpread.value); + syncLabelSettingsUi(); + persistSettings(); + render(); + }); + + elements.sameLootMergeRadius.addEventListener("input", () => { + state.settings.sameLootMergeRadius = Number(elements.sameLootMergeRadius.value); + syncLabelSettingsUi(); + persistSettings(); + render(); + }); + + elements.lineAnchorMode.addEventListener("change", () => { + state.settings.lineAnchorMode = elements.lineAnchorMode.value; + syncLabelSettingsUi(); + persistSettings(); + render(); + }); + + elements.mergeSameLootLabels.addEventListener("change", () => { + state.settings.mergeSameLootLabels = elements.mergeSameLootLabels.checked; + syncLabelSettingsUi(); + persistSettings(); + render(); + }); + + elements.settingsToggle.addEventListener("click", () => setSettingsCollapsed(false)); + elements.collapseButton.addEventListener("click", () => setSettingsCollapsed(!state.settings.settingsCollapsed)); + elements.playersToggle.addEventListener("click", () => setPanelOpen(elements.playersPanel, !elements.playersPanel.classList.contains("open"))); + elements.playersClose.addEventListener("click", () => setPanelOpen(elements.playersPanel, false)); + elements.lootToggle.addEventListener("click", () => setPanelOpen(elements.lootPanel, !elements.lootPanel.classList.contains("open"))); + elements.lootClose.addEventListener("click", () => setPanelOpen(elements.lootPanel, false)); + elements.settingsPanelBody.addEventListener("wheel", (event) => event.stopPropagation(), { passive: true }); + elements.labelSettingsBody.addEventListener("wheel", (event) => event.stopPropagation(), { passive: true }); + elements.playersPanel.addEventListener("wheel", (event) => event.stopPropagation(), { passive: true }); + elements.lootPanel.addEventListener("wheel", (event) => event.stopPropagation(), { passive: true }); + elements.lootList.addEventListener("click", (event) => { + const row = event.target.closest(".loot-row"); + if (!row) { + return; + } + toggleFavoriteLoot(row.dataset.lootName || ""); + }); + + elements.viewport.addEventListener("pointerdown", (event) => { + if (event.pointerType === "mouse" && event.button !== 0) { + return; + } + elements.viewport.setPointerCapture(event.pointerId); + state.activePointers.set(event.pointerId, { clientX: event.clientX, clientY: event.clientY }); + if (state.activePointers.size === 1) { + state.dragging = !state.settings.followPlayer; + state.lastX = event.clientX; + state.lastY = event.clientY; + state.pinchDistance = 0; + return; + } + const pointerPair = getActivePointerPair(); + if (pointerPair) { + state.dragging = false; + state.pinchDistance = getPointerDistance(pointerPair[0], pointerPair[1]); + } + }); + + elements.viewport.addEventListener("pointermove", (event) => { + if (!state.activePointers.has(event.pointerId)) { + return; + } + + state.activePointers.set(event.pointerId, { clientX: event.clientX, clientY: event.clientY }); + const pointerPair = getActivePointerPair(); + if (pointerPair) { + const nextDistance = getPointerDistance(pointerPair[0], pointerPair[1]); + if (state.pinchDistance > 0 && nextDistance > 0) { + const midpoint = getPointerMidpoint(pointerPair[0], pointerPair[1]); + zoomAt(midpoint.clientX, midpoint.clientY, state.scale * (nextDistance / state.pinchDistance)); + } + state.pinchDistance = nextDistance; + return; + } + + if (!state.dragging) { + return; + } + updateMapDrag(event.clientX, event.clientY); + }); + + const stopPointerGesture = (event) => { + state.activePointers.delete(event.pointerId); + if (state.activePointers.size === 0) { + state.dragging = false; + state.pinchDistance = 0; + return; + } + + const [remainingPointer] = state.activePointers.values(); + if (remainingPointer) { + state.dragging = true; + state.lastX = remainingPointer.clientX; + state.lastY = remainingPointer.clientY; + } + state.pinchDistance = 0; + }; + + elements.viewport.addEventListener("pointerup", stopPointerGesture); + elements.viewport.addEventListener("pointercancel", stopPointerGesture); + + elements.viewport.addEventListener("wheel", (event) => { + if (event.target.closest("#settingsPanel") || event.target.closest("#playersPanel") || event.target.closest("#lootPanel")) { + return; + } + event.preventDefault(); + zoomAt(event.clientX, event.clientY, state.scale * (event.deltaY < 0 ? 1.1 : 0.9)); + }, { passive: false }); + + window.addEventListener("resize", () => { + if (state.settings.followPlayer && state.lastSnapshot?.hasLocalPlayer && state.lastSnapshot.localPlayer) { + centerOn(state.lastSnapshot.localPlayer); + return; + } + applyTransform(); + }); +} + +rebuildFilterCaches(); +ensureFilterSettings(); +renderFilterCards(); +bindUi(); + +bootstrap() + .then(() => fetch(apiUrl("/api/state"), { cache: "no-store" })) + .then((response) => { + if (!response.ok) { + throw new Error("Unauthorized"); + } + return response.json(); + }) + .then((snapshot) => { + applySnapshot(snapshot); + connectEvents(); + }) + .catch((err) => { + const msg = (err && err.message) || "unknown error"; + if (msg === "Unauthorized") { + document.body.innerHTML = '
    Unauthorized — check password
    '; + } else { + document.body.innerHTML = + `
    Failed to connect: ${msg}.
    ` + + `Is the server running? Open /api/debug for diagnostics.
    `; + } + }); diff --git a/webroot/index.html b/webroot/index.html new file mode 100644 index 0000000..571a4c9 --- /dev/null +++ b/webroot/index.html @@ -0,0 +1,134 @@ + + + + + + DayZ Web Map + + + + +
    + + + +
    + + + +
    + +
    +
    +
    + +
    +
    +
    +
    +
    + + + diff --git a/webroot/style.css b/webroot/style.css new file mode 100644 index 0000000..9b9ba01 --- /dev/null +++ b/webroot/style.css @@ -0,0 +1,783 @@ +:root { + color-scheme: dark; + font-family: Arial, sans-serif; +} + +* { + box-sizing: border-box; +} + +html, +body { + margin: 0; + min-height: 100%; +} + +body { + background: #111827; + color: #e5e7eb; + overflow: hidden; +} + +button, +input, +label, +a { + touch-action: manipulation; +} + +.settings-toggle { + position: fixed; + top: 16px; + left: 16px; + z-index: 30; + display: inline-flex; + align-items: center; + justify-content: center; + width: 44px; + height: 44px; + font-size: 20px; + opacity: 0; + pointer-events: none; + transition: opacity 0.18s ease; +} + +.settings-toggle.visible { + opacity: 1; + pointer-events: auto; +} + +.top-right-toggles { + position: fixed; + top: 16px; + right: 16px; + z-index: 31; + display: flex; + gap: 8px; +} + +.players-toggle, +.loot-toggle, +.collapse-button, +.settings-toggle, +.filter-gear { + border: 1px solid #334155; + background: #111827; + color: #e5e7eb; + border-radius: 0; + padding: 8px 12px; + cursor: pointer; +} + +.players-toggle, +.loot-toggle { + padding: 10px 14px; +} + +.label-settings-panel { + position: fixed; + top: 16px; + left: 50%; + transform: translate(-50%, calc(-100% - 24px)); + width: min(760px, calc(100vw - 32px)); + max-height: min(72vh, 760px); + z-index: 35; + border: 1px solid #1f2937; + border-radius: 0; + background: rgba(15, 23, 42, 0.97); + box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45); + opacity: 0; + pointer-events: none; + transition: transform 0.18s ease, opacity 0.18s ease; + overflow: hidden; +} + +.label-settings-panel.open { + transform: translate(-50%, 0); + opacity: 1; + pointer-events: auto; +} + +.label-settings-header { + display: flex; + align-items: flex-start; + justify-content: space-between; + gap: 12px; + padding: 14px 16px 12px; + border-bottom: 1px solid #1f2937; +} + +.label-settings-subtitle { + margin-top: 4px; + color: #94a3b8; + font-size: 12px; +} + +.label-settings-actions { + display: flex; + gap: 8px; +} + +.label-settings-body { + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr)); + gap: 12px; + padding: 16px; + overflow-y: auto; + max-height: calc(72vh - 70px); +} + +.setting-card { + display: grid; + gap: 8px; + padding: 12px; + border: 1px solid #334155; + border-radius: 0; + background: rgba(15, 23, 42, 0.72); +} + +.setting-title { + color: #e5e7eb; + font-weight: 700; +} + +.setting-value { + color: #93c5fd; + font-size: 12px; +} + +.setting-help { + color: #94a3b8; + font-size: 12px; + line-height: 1.35; +} + +.setting-card select, +.setting-card input[type="range"] { + width: 100%; +} + +.setting-card select { + border: 1px solid #334155; + background: #111827; + color: #e5e7eb; + border-radius: 0; + padding: 9px 10px; +} + +.toggle-setting { + grid-template-columns: 1fr auto; + align-items: center; +} + +.toggle-setting .setting-help { + grid-column: 1 / -1; +} + +.players-panel, +.loot-panel { + position: fixed; + top: 68px; + right: 16px; + bottom: 16px; + width: min(420px, calc(100vw - 32px)); + z-index: 30; + border: 1px solid #1f2937; + border-radius: 0; + background: rgba(15, 23, 42, 0.95); + box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45); + display: grid; + grid-template-rows: auto auto 1fr; + transform: translateX(calc(100% + 24px)); + opacity: 0; + pointer-events: none; + transition: transform 0.18s ease, opacity 0.18s ease; +} + +.players-panel.open, +.loot-panel.open { + transform: translateX(0); + opacity: 1; + pointer-events: auto; +} + +.players-panel-header { + display: flex; + align-items: center; + justify-content: space-between; + gap: 8px; + padding: 12px 12px 8px; + border-bottom: 1px solid #1f2937; +} + +.players-server { + padding: 8px 12px; + color: #93c5fd; + font-size: 12px; + border-bottom: 1px solid #1f2937; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.players-list, +.loot-list { + overflow-y: auto; + overscroll-behavior: contain; + padding: 8px; +} + +.players-row { + display: grid; + grid-template-columns: 1fr; + gap: 6px; + border: 1px solid #263244; + border-radius: 0; + background: rgba(2, 6, 23, 0.55); + padding: 8px 10px; + margin-bottom: 8px; +} + +.players-name { + font-family: Arial, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; + font-weight: 600; + white-space: pre-line; +} + +.players-steam { + grid-column: 1 / -1; + font-size: 12px; +} + +.players-steam a { + color: #93c5fd; + text-decoration: none; +} + +.players-empty { + color: #94a3b8; + font-size: 13px; + padding: 10px; +} + +.loot-row { + width: 100%; + display: grid; + grid-template-columns: 1fr auto; + gap: 6px 12px; + text-align: left; + border: 1px solid rgba(51, 65, 85, 0.85); + border-left: 4px solid var(--loot-color, #94a3b8); + border-radius: 0; + background: rgba(2, 6, 23, 0.68); + color: #e5e7eb; + padding: 10px 12px; + margin-bottom: 8px; + cursor: pointer; +} + +.loot-row.favorite { + border-color: rgba(239, 68, 68, 0.9); + box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.5), 0 0 18px rgba(239, 68, 68, 0.18); +} + +.loot-name { + font-weight: 700; + color: var(--loot-color, #e5e7eb); +} + +.loot-distance { + color: #cbd5e1; + font-size: 12px; +} + +.loot-meta { + grid-column: 1 / -1; + color: #94a3b8; + font-size: 12px; +} + +.loot-section-title, +.loot-group-title { + color: #93c5fd; + font-size: 11px; + font-weight: 700; + letter-spacing: 0.08em; + text-transform: uppercase; + padding: 8px 4px 6px; +} + +.loot-group-title { + color: #cbd5e1; + letter-spacing: 0.04em; + padding-top: 4px; +} + +.shell { + min-height: 100vh; +} + +.panel { + position: fixed; + top: 16px; + left: 16px; + bottom: 16px; + width: min(360px, calc(100vw - 32px)); + z-index: 20; + background: #0f172a; + border: 1px solid #1f2937; + border-radius: 0; + display: flex; + flex-direction: column; + box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45); + transition: transform 0.18s ease, opacity 0.18s ease; + overflow: hidden; +} + +.panel.collapsed { + transform: translateX(calc(-100% - 24px)); + opacity: 0; + pointer-events: none; +} + +.panel-header { + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; + padding: 16px 16px 12px; + border-bottom: 1px solid #1f2937; +} + +h1 { + margin: 0 0 6px; + font-size: 28px; +} + +.server-badge { + margin-top: 4px; + color: #93c5fd; + font-size: 12px; + max-width: 230px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.panel-body { + flex: 1; + overflow-y: auto; + overscroll-behavior: contain; + padding: 16px; + display: flex; + flex-direction: column; + gap: 16px; +} + +.group { + display: flex; + flex-direction: column; + gap: 8px; +} + +.group-title { + color: #93c5fd; + font-size: 13px; + letter-spacing: 0.08em; + text-transform: uppercase; + margin-top: 8px; +} + +.toggle-row { + display: grid; + grid-template-columns: 20px 1fr; + align-items: center; + gap: 8px; +} + +.toggle-row input { + margin: 0; +} + +.toggle-row.compact { + margin-top: 4px; +} + +.range-row { + display: flex; + flex-direction: column; + gap: 6px; +} + +.filter-list { + display: flex; + flex-direction: column; + gap: 10px; +} + +.filter-card { + border: 1px solid #334155; + border-radius: 0; + background: rgba(15, 23, 42, 0.72); +} + +.filter-row { + display: grid; + grid-template-columns: 1fr auto; + align-items: center; + gap: 8px; + padding: 10px 12px; +} + +.filter-main { + display: grid; + grid-template-columns: 18px 14px 1fr; + align-items: center; + gap: 10px; +} + +.filter-main input { + margin: 0; +} + +.filter-swatch { + width: 14px; + height: 14px; + border-radius: 999px; + border: 1px solid rgba(248, 250, 252, 0.3); +} + +.filter-extra { + display: none; + padding: 0 12px 12px; + border-top: 1px solid rgba(51, 65, 85, 0.65); + gap: 10px; +} + +.filter-card.expanded .filter-extra { + display: grid; +} + +.mini-control { + display: grid; + grid-template-columns: 90px 1fr auto; + align-items: center; + gap: 10px; +} + +.mini-control strong { + color: #94a3b8; + font-size: 12px; + font-weight: 600; +} + +.viewport { + position: fixed; + inset: 0; + overflow: hidden; + touch-action: none; + overscroll-behavior: none; + background: #000; + user-select: none; + -webkit-user-select: none; +} + +.canvas { + position: absolute; + transform-origin: 0 0; + user-select: none; + -webkit-user-select: none; +} + +#tiles, +#paths, +#itemLabels, +#markers { + position: absolute; + inset: 0; +} + +#paths { + z-index: 7; + pointer-events: none; + overflow: visible; +} + +#itemLabels { + z-index: 5; + pointer-events: none; +} + +#markers { + z-index: 10; +} + +.map-tile { + position: absolute; + image-rendering: auto; + user-select: none; + -webkit-user-drag: none; + background: #000; + opacity: 0; + transition: opacity 0.15s ease; +} + +.map-tile.loaded { + opacity: 1; +} + +.map-tile.loading, +.map-tile.failed { + opacity: 0.35; +} + +.entity { + position: absolute; + transform: translate(-50%, -50%); + z-index: 10; +} + +.item-label-anchor { + position: absolute; + transform: translate(-50%, -50%); +} + +.entity.layer-loot { + z-index: 10; +} + +.entity.layer-favorite { + z-index: 20; +} + +.entity.layer-entity { + z-index: 30; +} + +.entity.player-entity { + z-index: 40; +} + +.entity.local-player-entity { + z-index: 50; +} + +.marker { + position: absolute; + left: 0; + top: 0; + width: 12px; + height: 12px; + border-radius: 999px; + border: 2px solid #000; + transform: translate(-50%, -50%); + z-index: 2; +} + +.marker.players { + background: #f97316; +} + +.marker.zombies { + background: #22c55e; +} + +.marker.animals { + background: #60a5fa; +} + +.marker.loot { + background: #facc15; + width: 8px; + height: 8px; +} + +.marker.vehicles { + background: #a855f7; + width: 14px; + height: 14px; +} + +.marker.bullets { + background: #f8fafc; + width: 6px; + height: 6px; + border-radius: 2px; + box-shadow: 0 0 10px rgba(248, 250, 252, 0.65); +} + +.marker.otherEntities { + background: #94a3b8; + width: 10px; + height: 10px; +} + +.marker.local-player { + background: #ef4444; + width: 16px; + height: 16px; +} + +.marker.favorite { + box-shadow: 0 0 0 2px rgba(127, 29, 29, 0.85), 0 0 14px rgba(239, 68, 68, 0.85); + border-color: #fee2e2; +} + +.entity.bullet-phantom .marker.bullets { + opacity: 0.45; + box-shadow: 0 0 6px rgba(148, 163, 184, 0.45); +} + +.entity.bullet-completed .marker.bullets { + border-color: rgba(15, 23, 42, 0.8); +} + +.bullet-path-actual, +.bullet-path-predicted { + fill: none; + stroke-linecap: round; + stroke-linejoin: round; + stroke-width: 2; +} + +.bullet-path-actual { + opacity: 0.9; +} + +.bullet-path-predicted { + stroke-dasharray: 8 6; + opacity: 0.7; +} + +.bullet-path-phantom { + opacity: 0.35; +} + +.direction { + position: absolute; + left: 50%; + top: 50%; + width: 2px; + height: 28px; + background: #f8fafc; + transform-origin: 50% 100%; +} + +.entity-direction { + left: 0; + top: 0; + z-index: 1; +} + +.direction::before { + content: ""; + position: absolute; + left: 50%; + top: -8px; + width: 0; + height: 0; + border-left: 5px solid transparent; + border-right: 5px solid transparent; + border-bottom: 8px solid currentColor; + transform: translateX(-50%); +} + +.local-direction { + color: #ef4444; +} + +.label { + position: absolute; + left: 0; + top: 0; + display: inline-block; + white-space: nowrap; + font-family: Arial, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; + color: #f8fafc; + padding: 0; + line-height: 1.15; + font-weight: 700; + text-shadow: 0 1px 2px rgba(2, 6, 23, 0.9); + pointer-events: none; + z-index: 3; +} + +.entity.player-entity .label { + white-space: pre; +} + +.label.favorite { + text-shadow: 0 1px 2px rgba(127, 29, 29, 0.85); +} + +.label-line { + position: absolute; + left: 0; + top: 0; + height: 1px; + background: currentColor; + transform-origin: 0 50%; + opacity: 0.9; + pointer-events: none; + z-index: 2; +} + +.label-line.favorite { + opacity: 1; +} + +.loot-line { + z-index: 1; +} + +.loot-label { + z-index: 2; +} + +.hint { + color: #94a3b8; + font-size: 13px; +} + +.unauthorized { + display: grid; + place-items: center; + min-height: 100vh; + font-size: 24px; +} + +@media (max-width: 900px) { + .label-settings-panel { + top: 12px; + width: min(760px, calc(100vw - 24px)); + } + + .label-settings-body { + grid-template-columns: 1fr; + } + + .panel { + top: 12px; + left: 12px; + bottom: 12px; + width: min(340px, calc(100vw - 24px)); + } + + .mini-control { + grid-template-columns: 1fr; + align-items: start; + } + + .top-right-toggles { + top: 12px; + right: 12px; + } + + .players-panel, + .loot-panel { + top: 64px; + right: 12px; + bottom: 12px; + width: min(420px, calc(100vw - 24px)); + } +}

    QCLX2kOu@zsh<)u-w1J|h)>xW{r2Yj*X@Slh}} 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

  2. pb?+l5tT)g=8ZEw;A3HZ=&UD-;$s`e%Y67XSs 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�M(< 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